From bbcce036b874a38d24f5ea5600b3e3ac8f614767 Mon Sep 17 00:00:00 2001 From: Gawuww Date: Thu, 25 Jun 2026 12:52:39 +0300 Subject: [PATCH 1/7] FIX: Request Lifecycle - 1.1, 1.2, 1.3 --- includes/blocks/render/form-hidden-fields.php | 14 ++- includes/form-handler.php | 86 +++++++++++++++++-- 2 files changed, 92 insertions(+), 8 deletions(-) diff --git a/includes/blocks/render/form-hidden-fields.php b/includes/blocks/render/form-hidden-fields.php index 9f9d43b4c..fd7520a1b 100644 --- a/includes/blocks/render/form-hidden-fields.php +++ b/includes/blocks/render/form-hidden-fields.php @@ -50,11 +50,23 @@ public static function render() { $fields .= Live_Form::force_render_field( 'hidden-field', array( - 'field_value' => Live_Form::instance()->post->ID ?? - 1, + 'field_value' => Live_Form::instance()->post->ID ?? 0, 'name' => jet_fb_handler()->post_id_key, ) ); + $fields .= Live_Form::force_render_field( + 'hidden-field', + array( + 'field_value' => jet_fb_handler()->get_post_context_signature( + Live_Form::instance()->post->ID ?? 0, + jet_fb_live()->form_id, + Http_Tools::get_form_refer_url() + ), + 'name' => jet_fb_handler()->post_id_sig_key, + ) + ); + if ( Module::instance()->is_user_journey_enabled() ) { $fields .= Live_Form::force_render_field( 'hidden-field', diff --git a/includes/form-handler.php b/includes/form-handler.php index 8d60825ee..cde6ad179 100644 --- a/includes/form-handler.php +++ b/includes/form-handler.php @@ -51,6 +51,7 @@ class Form_Handler { public $form_key = '_jet_engine_booking_form_id'; public $refer_key = '_jet_engine_refer'; public $post_id_key = '__queried_post_id'; + public $post_id_sig_key = '__queried_post_sig'; public $user_journey_key = '_user_journey'; /** * @var Request_Handler @@ -101,7 +102,7 @@ public function core_fields() { 'callback' => array( $this, 'set_referrer' ), ), $this->post_id_key => array( - 'callback' => array( Tools::class, 'set_current_post' ), + 'callback' => array( $this, 'set_current_post_context' ), ), $this->user_journey_key => array( 'callback' => array( $this, 'set_user_journey_data' ), @@ -134,12 +135,7 @@ public function get_user_journey_data() { public function set_referrer( $url ): Form_Handler { - $refer = remove_query_arg( - array( 'values', 'status', 'fields' ), - esc_url_raw( $url ) - ); - - $this->refer = wp_validate_redirect( $refer ); + $this->refer = $this->normalize_referrer( $url ); return $this; } @@ -148,6 +144,15 @@ public function get_referrer() { return $this->refer; } + private function normalize_referrer( $url ): string { + $refer = remove_query_arg( + array( 'values', 'status', 'fields' ), + esc_url_raw( $url ) + ); + + return (string) wp_validate_redirect( $refer, '' ); + } + public function set_form_id( $form_id ) { $form_id = absint( $form_id ); @@ -160,6 +165,73 @@ public function get_form_id() { return $this->form_id; } + public function get_post_context_signature( int $post_id, int $form_id, string $referrer ): string { + $data = implode( + '|', + array( + $form_id, + $post_id, + $this->normalize_referrer( $referrer ), + ) + ); + + return wp_hash( $data, 'nonce' ); + } + + public function set_current_post_context( $post_id ) { + $post_id = $this->normalize_post_id( $post_id ); + + if ( ! $this->is_valid_post_context_signature( $post_id ) ) { + $post_id = $this->resolve_referrer_post_id(); + } + + Tools::set_current_post( $post_id ); + + return $this; + } + + private function normalize_post_id( $post_id ): int { + if ( is_numeric( $post_id ) ) { + $post_id = (int) $post_id; + + return $post_id > 0 ? $post_id : 0; + } + + return 0; + } + + private function is_valid_post_context_signature( int $post_id ): bool { + if ( ! $post_id || ! $this->form_id || ! $this->refer ) { + return false; + } + + // phpcs:disable WordPress.Security.NonceVerification.Missing + $signature = sanitize_text_field( + wp_unslash( $_POST[ $this->post_id_sig_key ] ?? '' ) + ); + // phpcs:enable WordPress.Security.NonceVerification.Missing + + if ( '' === $signature ) { + return false; + } + + $expected = $this->get_post_context_signature( + $post_id, + (int) $this->form_id, + (string) $this->refer + ); + + return hash_equals( $expected, $signature ); + } + + private function resolve_referrer_post_id(): int { + if ( ! $this->refer ) { + return 0; + } + + return $this->normalize_post_id( url_to_postid( $this->refer ) ); + } + /** * Is ajax form processing or not * From 0f18f7497860571f26df223fad28500ffce6cfdf Mon Sep 17 00:00:00 2001 From: Gawuww Date: Fri, 26 Jun 2026 13:19:00 +0300 Subject: [PATCH 2/7] FIX: Custom CSRF Layer - 2.2 ADD: unit tests --- .gitignore | 11 +- assets/build/admin/package.asset.php | 2 +- assets/build/admin/package.js | 2 +- assets/build/editor/form.builder.asset.php | 2 +- assets/build/editor/form.builder.js | 2 +- assets/build/editor/package.asset.php | 2 +- assets/build/editor/package.js | 2 +- assets/build/frontend/main.asset.php | 2 +- assets/build/frontend/main.js | 2 +- assets/src/frontend/main/submit/AjaxSubmit.js | 27 +++- codeception.dist.yml | 3 +- modules/security/csrf/csrf-tools.php | 4 + modules/security/csrf/module.php | 30 +++-- tests/_envs/.env | 12 +- tests/_envs/.env.local.example | 7 + tests/wpunit/CsrfTokenLifecycleTest.php | 125 ++++++++++++++++++ tests/wpunit/FormHandlerPostContextTest.php | 106 +++++++++++++++ 17 files changed, 312 insertions(+), 29 deletions(-) create mode 100644 tests/_envs/.env.local.example create mode 100644 tests/wpunit/CsrfTokenLifecycleTest.php create mode 100644 tests/wpunit/FormHandlerPostContextTest.php diff --git a/.gitignore b/.gitignore index c9fc09eeb..3c34fbb12 100644 --- a/.gitignore +++ b/.gitignore @@ -20,9 +20,16 @@ package-lock.json /.artifacts .codex/ -tests/ test-results/ AGENTS.md .env.e2e .env.e2e.example -bootstrap-project.js \ No newline at end of file +bootstrap-project.js + +# Local test environment overrides +tests/_envs/.env.local + +# Codeception runtime artifacts +tests/_output/* +!tests/_output/.gitignore +tests/_support/_generated/ diff --git a/assets/build/admin/package.asset.php b/assets/build/admin/package.asset.php index 2b6877fe3..25a539b68 100644 --- a/assets/build/admin/package.asset.php +++ b/assets/build/admin/package.asset.php @@ -1 +1 @@ - array('wp-i18n'), 'version' => '94ba9a9d32ea506460c6'); + array('wp-i18n'), 'version' => 'cd879d1903e305e67f49'); diff --git a/assets/build/admin/package.js b/assets/build/admin/package.js index 326e11eae..a0ab1be31 100644 --- a/assets/build/admin/package.js +++ b/assets/build/admin/package.js @@ -1 +1 @@ -(()=>{var t={2373(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-component[data-v-327e05fd]{flex-direction:column;width:100%;border-top:unset;gap:.7em}.cx-vui-component.padding-side-unset[data-v-327e05fd]{padding-left:unset;padding-right:unset}.padding-top-bottom-unset[data-v-327e05fd]{padding-top:unset;padding-bottom:unset}.padding-unset[data-v-327e05fd]{padding:unset}",""]);const r=o},7944(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-collapse-mini__wrap{padding:0 0 20px}.cx-vui-collapse-mini__item:first-child{border-top:1px solid #ececec}.cx-vui-collapse-mini__item:last-child{margin-bottom:unset}.cx-vui-collapse-mini__item--active .cx-vui-collapse-mini__header-label>svg{transform:rotate(90deg)}.cx-vui-collapse-mini__item{border-bottom:1px solid #ececec}.cx-vui-collapse-mini__header{padding:1.2rem;display:flex;align-items:center;cursor:pointer;column-gap:1em}.cx-vui-collapse-mini__header-label{font-weight:500;font-size:15px;line-height:23px;color:#007cba;display:flex;align-items:center}.cx-vui-collapse-mini__header-desc{font-size:15px;line-height:23px;color:#7b7e81}.cx-vui-collapse-mini__header-label svg{margin:-1px 8px 0 0;transition:.3s}.cx-vui-collapse-mini--disabled{opacity:.5}.cx-vui-collapse-mini--disabled .cx-vui-collapse-mini__header{cursor:not-allowed}.cx-vui-collapse-mini__content{padding:0 1.5rem 1.5rem}",""]);const r=o},6278(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-input--warning-danger[data-v-13c6d87e]{border:1px solid #d63638}",""]);const r=o},5965(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-popup__close[data-v-7acae1c9]{position:unset}.cx-vui-popup__header[data-v-7acae1c9]{display:flex;justify-content:space-between;padding-bottom:10px;margin:unset;border-bottom:1px solid #ececec}.cx-vui-popup.sticky-header .cx-vui-popup__body[data-v-7acae1c9],.cx-vui-popup.sticky-footer .cx-vui-popup__body[data-v-7acae1c9]{max-height:80vh;overflow-y:auto}.cx-vui-popup.sticky-header .cx-vui-popup__header[data-v-7acae1c9]{position:sticky;top:0;background-color:#fff;padding-top:20px;z-index:1}.cx-vui-popup.sticky-header .cx-vui-popup__body[data-v-7acae1c9]{padding-top:0}.cx-vui-popup.sticky-footer .cx-vui-popup__body[data-v-7acae1c9]{padding-bottom:0}.cx-vui-popup.sticky-footer .cx-vui-popup__content[data-v-7acae1c9]{padding-bottom:40px}.cx-vui-popup.sticky-footer .cx-vui-popup__footer[data-v-7acae1c9]{position:sticky;bottom:0;background-color:#fff;padding-bottom:20px;border-top:1px solid #ececec}",""]);const r=o},1618(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-select[data-v-b31905c2]{line-height:2em;padding:6px 24px 6px 8px}.cx-vui-select.fullwidth[data-v-b31905c2]{width:100%}",""]);const r=o},6291(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-tabs__nav-item--disabled{opacity:.5;cursor:not-allowed}.cx-vui-tabs__nav-item--disabled:hover{color:unset}.cx-vui-tabs__nav-item--has-icon{display:flex;justify-content:space-between;column-gap:1em}.cx-vui-tabs--layout-vertical>.cx-vui-tabs__nav{width:unset;flex:unset;max-width:unset}.cx-vui-tabs--layout-vertical>.cx-vui-tabs__content{flex:1}",""]);const r=o},4761(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,"hr.jfb[data-v-362c518d]{border:0;border-top:1px solid #ececec;margin:unset}",""]);const r=o},1700(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".table-details{display:flex;flex-direction:column}",""]);const r=o},1418(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".table-details-row{display:flex;justify-content:space-between;font-size:1.1em}.table-details-row:first-child{font-weight:bold}.table-details-row:nth-child(even){background-color:#eee}.table-details-row-column{padding:.5em 1em}.table-details-row--heading{flex:1;text-align:right}.table-details-row-role--default.table-details-row--heading{font-weight:600}.table-details-row--content{flex:2}.table-details-row--actions{flex:.3}.table-details-row h3{padding:.5em;border-bottom:1px solid #aaa;width:50%;margin:1em auto;text-align:center;color:#aaa;font-weight:400}",""]);const r=o},4965(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,'.fade-enter-active[data-v-7d75afce],.fade-leave-active[data-v-7d75afce]{transition:opacity .5s}.fade-enter[data-v-7d75afce],.fade-leave-to[data-v-7d75afce]{opacity:0}.jfb-recursive-details[data-v-7d75afce]:not(.jfb-recursive-details--indent){margin-top:unset}.jfb-recursive-details--indent[data-v-7d75afce]{margin-left:1.5em;margin-top:.5em}.jfb-recursive-details-row[data-v-7d75afce]:not(:last-child){margin-bottom:.5em;padding-bottom:.5em}.jfb-recursive-details-item--content[data-v-7d75afce]{border-bottom:1px solid #ccc}.jfb-recursive-details-item-without-children>.jfb-recursive-details-item--heading[data-v-7d75afce]::after{content:":"}.jfb-recursive-details-item-with-children>.jfb-recursive-details-item--heading[data-v-7d75afce]{cursor:pointer}.jfb-recursive-details-item-with-children>.jfb-recursive-details-item--heading[data-v-7d75afce]:hover{color:#2271b1;border-bottom-color:#2271b1}',""]);const r=o},4244(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-external-link__icon{width:1em;height:1em;fill:currentcolor;vertical-align:middle}",""]);const r=o},8984(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".size--1-x-2 .cx-vui-component__meta[data-v-6f5201e4]{flex:1}.size--1-x-2 .cx-vui-component__control[data-v-6f5201e4]{flex:2}.padding-side-unset.cx-vui-component[data-v-6f5201e4]{padding-left:unset;padding-right:unset}.cx-vui-component__control-actions[data-v-6f5201e4]{display:flex;justify-content:flex-end;gap:1em;margin-top:.5em}",""]);const r=o},1292(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".jfb-tooltip[data-v-431c7ba2]{position:relative;display:inline-block}.jfb-tooltip-has-help[data-v-431c7ba2]{cursor:pointer}.jfb-tooltip-has-text[data-v-431c7ba2]{display:flex;column-gap:.5em;align-items:center}.jfb-tooltip--text[data-v-431c7ba2]{text-overflow:ellipsis;overflow:hidden;padding:.1em 0}.jfb-tooltip .dashicons-dismiss[data-v-431c7ba2]{color:#d63638}.jfb-tooltip .dashicons-warning[data-v-431c7ba2]{color:orange}.jfb-tooltip .dashicons-warning.danger[data-v-431c7ba2]{color:#d63638}.jfb-tooltip .dashicons-yes-alt[data-v-431c7ba2]{color:#32cd32}.jfb-tooltip .dashicons-info[data-v-431c7ba2]{color:#90c6db}.jfb-tooltip .dashicons-hourglass[data-v-431c7ba2]{color:#b5b5b5}.jfb-tooltip .dashicons-update.loading[data-v-431c7ba2]{animation:jfb-tooltip-loading-icon-data-v-431c7ba2 1.5s infinite linear}.jfb-tooltip .cx-vui-tooltip[data-v-431c7ba2]{width:fit-content;bottom:calc(100% + 15px);box-sizing:border-box;pointer-events:none;transition:all .18s linear;opacity:0;padding-left:1em;padding-right:1em;position:absolute;z-index:2}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]{right:-1.2em}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]:after{right:20px;left:unset}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]{left:-0.9em}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]:after{left:20px;right:unset}.jfb-tooltip:hover .cx-vui-tooltip[data-v-431c7ba2]{opacity:1}.jfb-tooltip:hover .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]{bottom:100%}.jfb-tooltip:hover .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]{bottom:100%}.jfb-tooltip-position--top-right[data-v-431c7ba2]{flex-direction:row-reverse}@keyframes jfb-tooltip-loading-icon-data-v-431c7ba2{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}",""]);const r=o},5598(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,"\n@media print {\n.cx-vui-button[data-v-aa3950ea] {\n\t\tdisplay: none;\n}\n}\n",""]);const r=o},935(t){"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var i="",a=void 0!==e[5];return e[4]&&(i+="@supports (".concat(e[4],") {")),e[2]&&(i+="@media ".concat(e[2]," {")),a&&(i+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),i+=t(e),a&&(i+="}"),e[2]&&(i+="}"),e[4]&&(i+="}"),i}).join("")},e.i=function(t,i,a,n,s){"string"==typeof t&&(t=[[null,t,void 0]]);var o={};if(a)for(var r=0;r0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=s),i&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=i):u[2]=i),n&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=n):u[4]="".concat(n)),e.push(u))}},e}},6758(t){"use strict";t.exports=function(t){return t[1]}},6945(t,e,i){var a=i(2373);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("b1875a50",a,!1,{})},9356(t,e,i){var a=i(7944);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("30df35ee",a,!1,{})},9330(t,e,i){var a=i(6278);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("21fb632e",a,!1,{})},1041(t,e,i){var a=i(5965);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("0c7f7908",a,!1,{})},2310(t,e,i){var a=i(1618);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("2e7817a3",a,!1,{})},799(t,e,i){var a=i(6291);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("4168dbce",a,!1,{})},5981(t,e,i){var a=i(4761);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("8c144c80",a,!1,{})},6168(t,e,i){var a=i(1700);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("206d9f3c",a,!1,{})},8862(t,e,i){var a=i(1418);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("6aaa4088",a,!1,{})},7393(t,e,i){var a=i(4965);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("29e569e4",a,!1,{})},8528(t,e,i){var a=i(4244);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("45767117",a,!1,{})},8036(t,e,i){var a=i(8984);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("57efcfaf",a,!1,{})},6608(t,e,i){var a=i(1292);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("3a21f3b2",a,!1,{})},7922(t,e,i){var a=i(5598);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("7e55f3a9",a,!1,{})},611(t,e,i){"use strict";function a(t,e){for(var i=[],a={},n=0;nf});var n="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!n)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},o=n&&(document.head||document.getElementsByTagName("head")[0]),r=null,l=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",v="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(t,e,i,n){c=i,d=n||{};var o=a(t,e);return h(o),function(e){for(var i=[],n=0;ni.parts.length&&(a.parts.length=i.parts.length)}else{var o=[];for(n=0;n{var e=t&&t.__esModule?()=>t.default:()=>t;return i.d(e,{a:e}),e},i.d=(t,e)=>{for(var a in e)i.o(e,a)&&!i.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:e[a]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),i.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},(()=>{"use strict";class t extends Error{constructor(e=!1,i=""){super(i),Error.captureStackTrace&&Error.captureStackTrace(this,t),this.name="ApiInputError",this.noticeOptions=e}}const e=t;var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:{"cx-vui-panel":t.withPanel,"cx-vui-collapse-mini--disabled":t.disabled,"cx-vui-collapse-mini__item":!0,"cx-vui-collapse-mini__item--active":t.isActive}},[i("div",{staticClass:"cx-vui-collapse-mini__header",on:{click:t.collapse}},[i("div",{staticClass:"cx-vui-collapse-mini__header-label"},[i("svg",{attrs:{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[i("path",{attrs:{d:"M14 13.9999L14 -0.00012207L0 -0.000121458L6.11959e-07 13.9999L14 13.9999Z",fill:"white"}}),t._v(" "),i("path",{attrs:{d:"M5.32911 1L11 7L5.32911 13L4 11.5938L8.34177 7L4 2.40625L5.32911 1Z",fill:"#007CBA"}})]),t._v("\n\t\t\t"+t._s(t.label)+"\n\t\t")]),t._v(" "),t.icon?i("div",{staticClass:"cx-vui-collapse-mini__header-desc"},["object"==typeof t.icon?i(t.icon,{tag:"component"}):t._e()],1):t.desc?i("div",{staticClass:"cx-vui-collapse-mini__header-desc"},[t._v("\n\t\t\t"+t._s(t.desc)+"\n\t\t")]):t._e(),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-collapse-mini__header-custom-description"},[t._t("description")],2):t._e()]),t._v(" "),t.disabled?t._e():[this.$slots.default?[i("div",{directives:[{name:"show",rawName:"v-show",value:t.isActive,expression:"isActive"}],staticClass:"cx-vui-collapse-mini__content"},[t._t("default")],2)]:[t._t("custom",null,{state:{isActive:t.isActive}})]]],2)};a._withStripped=!0;const n={name:"cx-vui-collapse-mini",props:{withPanel:{type:Boolean,default:!1},initialActive:{type:Boolean,default:!1},label:{type:String,default:"Collapse Mini"},desc:{type:String,default:""},disabled:{type:Boolean,default:!1},icon:{type:[Object,String],default:""}},data:()=>({isActive:!1}),created(){this.isActive=this.initialActive},methods:{collapse(){this.disabled||(this.isActive=!this.isActive,this.$emit("change",this.isActive))}}};function s(t,e,i,a,n,s,o,r){var l,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=i,c._compiled=!0),a&&(c.functional=!0),s&&(c._scopeId="data-v-"+s),o?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),n&&n.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},c._ssrRegister=l):n&&(l=r?function(){n.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:n),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(t,e){return l.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:t,options:c}}i(9356);const o=s(n,a,[],!1,null,null,null).exports,r={methods:{getIncoming:t=>t?window.JetFBPageConfig[t]:window.JetFBPageConfig}},l={methods:{saveByAjax(t,e){const i=this;let a={};try{a=this.getAjaxObject(t,e)}catch(t){if(!t)return;return"object"==typeof t.noticeOptions?void i.$CXNotice.add({message:"Invalid request data.",type:"error",duration:2e3,...t.noticeOptions}):void i.$CXNotice.add({message:t,type:"error",duration:2e3})}jfbEventBus.$emit("request-state",{state:"begin",slug:e}),jQuery.ajax(a).done(function(a){"function"==typeof t.onSaveDone?t.onSaveDone(a):a.success?(i.$CXNotice.add({message:a.data.message,type:"success",duration:5e3}),"function"==typeof t.onSaveDoneSuccess&&t.onSaveDoneSuccess(a)):(i.$CXNotice.add({message:a.data.message,type:"error",duration:5e3}),"function"==typeof t.onSaveDoneError&&t.onSaveDoneError(a)),jfbEventBus.$emit("request-state",{state:"end",slug:e})}).fail(function(a,n,s){"function"==typeof t.onSaveFail?t.onSaveFail(a,n,s):i.$CXNotice.add({message:s,type:"error",duration:5e3}),jfbEventBus.$emit("request-state",{state:"end",slug:e})})},getAjaxObject(t,e){const i={url:window.ajaxurl,type:"POST",dataType:"json",...t.getRequestOnSave()};return i.data={action:`jet_fb_save_tab__${e}`,...i.data},window?.JetFBPageConfigPackage?.nonce&&(i.data._nonce=window.JetFBPageConfigPackage.nonce),i}}},c={props:["value","full-entry","entry-id","scope"],computed:{parsedJson(){return JSON.parse(JSON.stringify(this.value))}}},u={methods:{promiseWrapper(t){const e=t=>"object"==typeof t?t?.message:t;return(i,a,...n)=>{const s=t=>{"function"==typeof i&&i(),this.$CXNotice.add({message:e(t),type:"success",duration:4e3})},o=t=>{"function"==typeof i&&i(),this.$CXNotice.add({message:e(t),type:"error",duration:4e3})};try{t.call(this,{resolve:s,reject:o},...n)}catch(t){o(t.message)}}}}};var d=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("section",{staticClass:"table-details"},t._l(t.columns,function(e,a){return t.canShow(a)?i("DetailsTableRow",{key:a,attrs:{type:t.getType(a)},scopedSlots:t._u([{key:"name",fn:function(){return[t._v(t._s(e.label))]},proxy:!0},{key:"value",fn:function(){return["object"==typeof t.getColumnValue(a,!1)?[i("DetailsTableRowValue",{attrs:{value:t.getColumnValue(a,!1),columns:e.children||{}}})]:[t._v(t._s(t.getColumnValue(a,"")))]]},proxy:!0}],null,!0)}):t._e()}),1)};d._withStripped=!0;var p=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("ul",{directives:[{name:"show",rawName:"v-show",value:!this.withIndent,expression:"! this.withIndent"}],class:t.rootClasses},t._l(t.value,function(e,a){return t.isHiddenLevel(a)?i("li",{key:a,staticClass:"jfb-recursive-details-row"},[t.isSkipLevel(a)?[i("DetailsTableRowValue",{attrs:{value:e,columns:t.getChildren(a)}})]:[t.isObject(e)?i("span",{class:t.itemClasses(!0)},[i("span",{staticClass:"jfb-recursive-details-item--heading",on:{click:function(e){return t.toggleNext(a)}}},[t._v("\n\t\t\t\t\t"+t._s(t.getItemLabel(a))+"\n\t\t\t\t\t"),i("span",{class:t.arrowClasses(a)})]),t._v(" "),i("span",{staticClass:"jfb-recursive-details-item--content"},[i("transition",{attrs:{name:"fade"}},[i("DetailsTableRowValue",{directives:[{name:"show",rawName:"v-show",value:t.isShow(a),expression:"isShow( itemName )"}],attrs:{value:e,"with-indent":!0,columns:t.getChildren(a)}})],1)],1)]):i("span",{class:t.itemClasses(!1)},[i("span",{staticClass:"jfb-recursive-details-item--heading"},[t._v(t._s(t.getItemLabel(a)))]),t._v(" \n\t\t\t\t"),i("span",{staticClass:"jfb-recursive-details-item--content"},[t._v(t._s(e))])])]],2):t._e()}),0)};p._withStripped=!0;const v={name:"DetailsTableRowValue",props:{value:Object,withIndent:{type:Boolean,default:!1},columns:{type:Object,default:()=>({})}},data:()=>({showNext:{}}),computed:{rootClasses(){return{"jfb-recursive-details":!0,"jfb-recursive-details--indent":this.withIndent}}},methods:{getChildren(t){return this.columns[t]?.children||[]},getItemLabel(t){return this.columns[t]?this.columns[t].label:t},isObject:t=>"object"==typeof t,toggleNext(t){const e=this.showNext[t]||!1;this.$set(this.showNext,t,!e)},isShow(t){return"undefined"===this.showNext[t]||this.showNext[t]},itemClasses:(t=!0)=>({"jfb-recursive-details-item":!0,"jfb-recursive-details-item-with-children":t,"jfb-recursive-details-item-without-children":!t}),arrowClasses(t){return{dashicons:!0,"dashicons-arrow-down-alt2":!this.isShow(t),"dashicons-arrow-up-alt2":this.isShow(t)}},isSkipLevel(t){return this.columns[t]?.skip_level},isHiddenLevel(t){return!this.columns[t]?.hide}}};i(7393);const f=s(v,p,[],!1,null,"7d75afce",null).exports;var h=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"table-details-row"},["rowValue"===t.type?[i("div",{class:t.headingClasses},["default"!==t.role?[t._v(t._s("Name"))]:[t._t("name"),t._v("\n\t\t\t\t:\n\t\t\t")]],2),t._v(" "),i("div",{class:t.contentClasses},["default"!==t.role?[t._v(t._s("Value"))]:[t._t("value")]],2),t._v(" "),i("div",{class:t.actionClasses},["default"!==t.role?[t._v(t._s("Actions"))]:[t._t("actions")]],2)]:[i("h3",[t._t("name")],2)]],2)};h._withStripped=!0;const m={name:"DetailsTableRow",props:{role:{type:String,default:"default",validator:function(t){return-1!==["header","default","footer"].indexOf(t)}},type:{type:String,default:"rowValue",validator:function(t){return-1!==["rowValue","heading"].indexOf(t)}}},computed:{headingClasses(){return this.classes({"table-details-row--heading":!0})},contentClasses(){return this.classes({"table-details-row--content":!0})},actionClasses(){return this.classes({"table-details-row--actions":!0})}},methods:{classes(t){return{"table-details-row-column":!0,...t,["table-details-row-role--"+this.role]:!0}}}};i(8862);const _={name:"DetailsTable",components:{DetailsTableRow:s(m,h,[],!1,null,null,null).exports,DetailsTableRowValue:f},props:{columns:{type:Object},source:{type:Object}},methods:{getColumnValue(t,e=!1){return this.source[t]?this.source[t].value:e},hasValueOrAnotherType(t){return this.getColumnValue(t)||"rowValue"!==this.getType(t)},getType(t){var e;return null!==(e=this.columns[t].type)&&void 0!==e?e:"rowValue"},canShow(t){const e=this.getType(t),i=!1!==this.columns[t].show_in_details,a=this.getColumnValue(t);return i&&("rowValue"!==e||a)}}};i(6168);const b=s(_,d,[],!1,null,null,null).exports;var g=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[t.$slots.meta?i("div",{staticClass:"cx-vui-component__meta"},[t._t("meta")],2):t.$slots.label||t.$slots.description?i("div",{staticClass:"cx-vui-component__meta"},[t.$slots.label?i("label",{staticClass:"cx-vui-component__label",attrs:{for:t.elementIdData}},[t.stateType?[i("Tooltip",{attrs:{icon:t.stateType,position:"top-right"},scopedSlots:t._u([{key:"help",fn:function(){return[t._v(t._s(t.stateHelp))]},proxy:!0},{key:"default",fn:function(){return[t._t("label")]},proxy:!0}],null,!0)})]:[t._t("label")]],2):t._e(),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-component__desc"},[t._t("description")],2):t._e()]):t._e(),t._v(" "),i("div",{staticClass:"cx-vui-component__control"},[t._t("default"),t._v(" "),t.$slots.actions?i("div",{staticClass:"cx-vui-component__control-actions"},[t._t("actions")],2):t._e()],2)])};g._withStripped=!0;var y=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.wrapperClasses},[i("span",{class:t.dashIconClass}),t._v(" "),t.$slots.default?i("span",{staticClass:"jfb-icon-status--text"},[t._t("default")],2):t._e(),t._v(" "),t.$slots.help?i("div",{class:t.tooltipClasses},[t._t("help")],2):t._e()])};y._withStripped=!0;const x={success:"dashicons-yes-alt",warning:"dashicons-warning","warning-danger":["dashicons-warning","danger"],info:"dashicons-info",pending:"dashicons-hourglass",error:"dashicons-dismiss",loading:["dashicons-update","loading"]},w={name:"Tooltip",props:{icon:{type:String,validator:t=>Object.keys(x).includes(t),default:"info"},position:{type:String,validator:t=>["top-right","top-left"].includes(t),default:"top-left"}},computed:{wrapperClasses(){return{"jfb-tooltip":!0,"jfb-tooltip-has-text":!!this.$slots.default,"jfb-tooltip-has-help":!!this.$slots.help,["jfb-tooltip-position--"+this.position]:!0}},dashIconClass(){var t;let e=null!==(t=x[this.icon])&&void 0!==t?t:"";return Array.isArray(e)||(e=[e]),["dashicons",...e]},tooltipClasses(){return{"cx-vui-tooltip":!0,["tooltip-position-"+this.position]:!0}}}};i(6608);const C=s(w,y,[],!1,null,"431c7ba2",null).exports,j={name:"RowWrapper",components:{Tooltip:C},props:{elementId:{type:String},state:{type:[String,Object],validator:t=>(t=>["warning-danger","warning","loading",""].includes(t))("string"==typeof t?t:t.type),default:""},classNames:{type:Object,default:()=>({"cx-vui-component--equalwidth":!0})}},data(){return{elementIdData:`cx_${this.elementId}`}},computed:{className(){return{"cx-vui-component":!0,["cx-vui-component--is-"+this.stateType]:this.stateType,...this.classNames}},stateType(){return"string"==typeof this.state?this.state:this.state.type},stateHelp(){return"string"==typeof this.state?"":this.state.message}},provide(){return{elementId:this.elementIdData,stateType:()=>this.stateType}}};i(8036);const S=s(j,g,[],!1,null,"6f5201e4",null).exports,O=window.wp.i18n,k={methods:{__:(t,e)=>(0,O.__)(t,e),sprintf:(t,...e)=>(0,O.sprintf)(t,...e),__s:(t,e,...i)=>(0,O.sprintf)((0,O.__)(t,e),...i)}},{doAction:$}=wp.hooks;function T(){return window.location.pathname}function L(){const t={};return window.location.search.replace("?","").split("&").forEach(e=>{const[i,a]=e.split("=");t[i]=a}),t}function I(t,e){if("object"!=typeof e)return[[t,e]];const i=[];for(let[a,n]of Object.entries(e))a=`${t}[${a}]`,i.push(...I(a,n));return i}var N=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"jfb-list-components"},[t._l(t.components,function(e,a){return i("div",{key:"entry_"+a,staticClass:"jfb-list-components-item"},[i("keep-alive",[i(e,{tag:"component",attrs:{scope:t.scope}})],1)],1)}),t._v(" "),t._t("default")],2)};N._withStripped=!0;const A=s({name:"ListComponents",props:{components:Array,scope:String}},N,[],!1,null,null,null).exports;var E=function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{directives:[{name:"show",rawName:"v-show",value:t.show,expression:"show"}],staticClass:"cx-vui-tabs-panel"},[t._t("default")],2)};E._withStripped=!0;const D=s({name:"cx-vui-tabs-panel",props:{tab:{type:String,default:""},name:{type:String,default:""},label:{type:String,default:""},disabled:{type:Boolean,default:!1},icon:{type:[Object,String],default:""}},data:()=>({show:!1})},E,[],!1,null,null,null).exports;var V=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:{"cx-vui-tabs":!0,"cx-vui-tabs--invert":t.invert,"cx-vui-tabs--layout-vertical":"vertical"===this.layout,"cx-vui-tabs--layout-horizontal":"horizontal"===this.layout,"cx-vui-tabs--in-panel":t.inPanel}},[i("div",{staticClass:"cx-vui-tabs__nav"},t._l(t.navList,function(e){return i("div",{class:{"cx-vui-tabs__nav-item":!0,"cx-vui-tabs__nav-item--active":t.isActive(e.name),"cx-vui-tabs__nav-item--disabled":t.isDisabled(e.name),"cx-vui-tabs__nav-item--has-icon":!!e.icon},on:{click:function(i){return t.onTabClick(e.name)}}},[i("span",{staticClass:"item-label"},[t._v(t._s(e.label))]),t._v(" "),e.icon?i("span",{staticClass:"item-icon"},["object"==typeof e.icon?i(e.icon,{tag:"component",attrs:{"is-active":t.isActive(e.name)}}):t._e()],1):t._e()])}),0),t._v(" "),i("div",{staticClass:"cx-vui-tabs__content"},[t._t("default")],2)])};V._withStripped=!0;const P={name:"cx-vui-tabs",props:{value:{type:[String,Number],default:""},name:{type:String,default:""},invert:{type:Boolean,default:!1},inPanel:{type:Boolean,default:!1},layout:{validator:t=>["horizontal","vertical"].includes(t),default:"horizontal"},conditions:{type:Array,default:()=>[]}},data(){return{navList:[],activeTab:this.value,disabledTabs:[]}},mounted(){const t=this.getTabs();this.disabledTabs=this.getDisabledTabs(),this.navList=t,this.activeTab||(this.activeTab=t[0].name),this.updateState()},methods:{isActive(t){return t===this.activeTab},isDisabled(t){return this.disabledTabs.includes(t)},getDisabledTabs(){const t=[];for(const e of this.$children)e.disabled&&t.push(e.name);return t},onTabClick(t){this.isDisabled(t)||(this.activeTab=t,this.$emit("input",this.activeTab),this.updateState())},updateState(){const t=this.getTabs();this.navList=t,t.forEach(t=>{t.show=this.activeTab===t.name})},getTabs(){const t=this.$children.filter(t=>"cx-vui-tabs-panel"===t.$options.name),e=[];return t.forEach(t=>{t.tab&&this.name?t.tab===this.name&&e.push(t):e.push(t)}),e}}};i(799);const B=s(P,V,[],!1,null,null,null).exports,F="JetFBConfig";function M(t){localStorage.setItem(F,JSON.stringify(t))}function R(){const t=localStorage.getItem(F);return null===t?{}:JSON.parse(t)}function z(t,e){let i=R();i={...i,[t]:e},M(i)}function q(t,e=!1){var i;return null!==(i=R()[t])&&void 0!==i?i:e}const J={setStorage:M,getStorage:R,setItem:z,getItem:q,storage:function(t){const e={setStorage(e){z(t,e)},getStorage:()=>q(t,{})};return{...e,setItem(t,i){let a=e.getStorage();a={...a,[t]:i},e.setStorage(a)},getItem(t,i=!1){var a;return null!==(a=e.getStorage()[t])&&void 0!==a?a:i}}}};var U=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("a",{staticClass:"cx-vui-external-link",attrs:{href:t.href,target:"_blank",rel:"external noreferrer noopener"}},[t._t("default"),t._v(" "),i("svg",{staticClass:"cx-vui-external-link__icon",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"}},[i("path",{attrs:{d:"M18.2 17c0 .7-.6 1.2-1.2 1.2H7c-.7 0-1.2-.6-1.2-1.2V7c0-.7.6-1.2 1.2-1.2h3.2V4.2H7C5.5 4.2 4.2 5.5 4.2 7v10c0 1.5 1.2 2.8 2.8 2.8h10c1.5 0 2.8-1.2 2.8-2.8v-3.6h-1.5V17zM14.9 3v1.5h3.7l-6.4 6.4 1.1 1.1 6.4-6.4v3.7h1.5V3h-6.3z"}})])],2)};U._withStripped=!0;const H={name:"ExternalLink",mixins:[k],props:{href:{type:String,default:""}}};i(8528);const W=s(H,U,[],!1,null,null,null).exports;var X=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[t.$slots.label?i("label",{staticClass:"cx-vui-component__label",attrs:{for:t.elementIdData}},[t._t("label")],2):t._e(),t._v(" "),t._t("default"),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-component__desc"},[t._t("description")],2):t._e()],2)};X._withStripped=!0;const Z={name:"ColumnWrapper",props:{elementId:{type:String,required:!0},classNames:{type:Object,default:()=>({})}},data(){return{elementIdData:`cx_${this.elementId}`}},computed:{className(){return{"cx-vui-component":!0,...this.classNames}}},provide(){return{elementId:this.elementIdData}}};i(6945);const G=s(Z,X,[],!1,null,"327e05fd",null).exports;var Q=function(){var t=this,e=t.$createElement;return(t._self._c||e)("select",{class:t.className,attrs:{name:t.elementId,id:t.elementId},domProps:{value:t.value},on:{input:t.handleInput}},[t._t("default")],2)};Q._withStripped=!0;const K={name:"CxVuiSelect",props:{value:{type:[String,Number],default:""},elementId:{type:String},classNames:{type:Object,default:()=>({})}},computed:{className(){return{"cx-vui-select":!0,...this.classNames}}},methods:{handleInput(t){this.$emit("input",t.target.value)}},inject:["elementId"]};i(2310);const Y=s(K,Q,[],!1,null,"b31905c2",null).exports;var tt=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[i("div",{staticClass:"cx-vui-popup__overlay",on:{click:function(e){return t.$emit("close")}}}),t._v(" "),i("div",{staticClass:"cx-vui-popup__body"},[t.$slots.title?i("h2",{staticClass:"cx-vui-popup__header"},[t._t("title"),t._v(" "),t.$slots.close?[t._t("close")]:i("div",{staticClass:"cx-vui-popup__close",on:{click:function(e){return t.$emit("close")}}},[i("svg",{attrs:{width:"20",height:"20",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[i("path",{attrs:{d:"M12 3.00671L8.00671 7L12 10.9933L10.9933 12L7 8.00671L3.00671 12L2 10.9933L5.99329 7L2 3.00671L3.00671 2L7 5.99329L10.9933 2L12 3.00671Z"}})])])],2):t._e(),t._v(" "),i("div",{staticClass:"cx-vui-popup__content"},[t._t("content")],2),t._v(" "),t.$slots.footer?i("div",{staticClass:"cx-vui-popup__footer"},[t._t("footer")],2):t._e()])])};tt._withStripped=!0;const et={name:"CxVuiPopup",props:{classNames:{type:Object,default:()=>({})},stickyFooter:{type:Boolean,default:!1}},computed:{className(){return{"cx-vui-popup":!0,...this.classNames}}}};i(1041);const it=s(et,tt,[],!1,null,"7acae1c9",null).exports;var at=function(){var t,e=this,i=e.$createElement,a=e._self._c||i;return a("div",{staticClass:"cx-vui-f-select"},[a("div",{class:{"cx-vui-f-select__selected":!0,"cx-vui-f-select__selected-not-empty":this.value.length>0}},e._l(e.value,function(t){return a("div",{staticClass:"cx-vui-f-select__selected-option",on:{click:function(i){return e.handleResultClick(t)}}},[e.$slots["option-"+t]?[e._t("option-"+t)]:[e.isNonRemovable(t)?e._e():a("span",{staticClass:"cx-vui-f-select__selected-option-icon"},[a("svg",{attrs:{width:"10",height:"10",viewBox:"0 0 10 10",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M10 1.00671L6.00671 5L10 8.99329L8.99329 10L5 6.00671L1.00671 10L0 8.99329L3.99329 5L0 1.00671L1.00671 0L5 3.99329L8.99329 0L10 1.00671Z"}})])]),e._v("\n\t\t\t\t"+e._s(e.getOptionLabel(t))+"\n\t\t\t")]],2)}),0),e._v(" "),a("div",{directives:[{name:"click-outside",rawName:"v-click-outside.capture",value:e.onClickOutside,expression:"onClickOutside",modifiers:{capture:!0}},{name:"click-outside",rawName:"v-click-outside:mousedown.capture",value:e.onClickOutside,expression:"onClickOutside",arg:"mousedown",modifiers:{capture:!0}},{name:"click-outside",rawName:"v-click-outside:touchstart.capture",value:e.onClickOutside,expression:"onClickOutside",arg:"touchstart",modifiers:{capture:!0}}],staticClass:"cx-vui-f-select__control",on:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),e.handleOptionsNav.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),e.handleOptionsNav.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:e.handleOptionsNav.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.handleEnter.apply(null,arguments)}]}},[a("input",{class:(t={"cx-vui-f-select__input":!0,"cx-vui-input--in-focus":e.inFocus,"cx-vui-input":!0},t["cx-vui-input--"+e.stateType()]=e.stateType(),t["size-fullwidth"]=!0,t["has-error"]=e.error,t),attrs:{id:e.elementId,placeholder:e.placeholder,autocomplete:e.autocomplete,type:"text"},domProps:{value:e.query},on:{input:e.handleInput,focus:e.handleFocus}}),e._v(" "),e.inFocus?a("div",{staticClass:"cx-vui-f-select__results"},[e.filteredOptions.length?a("div",e._l(e.filteredOptions,function(t,i){return a("div",{class:{"cx-vui-f-select__result":!0,"in-focus":i===e.optionInFocus,"is-selected":e.isSelectedOption(t)},on:{click:function(i){return e.handleResultClick(t.value)}}},[e._v(e._s(e.getOptionLabel(t))+"\n\t\t\t\t")])}),0):a("div",{staticClass:"cx-vui-f-select__results-message",domProps:{innerHTML:e._s(e.notFoundMeassge)}})]):e._e()]),e._v(" "),a("select",{staticClass:"cx-vui-f-select__select-tag",attrs:{placeholder:e.placeholder,disabled:e.disabled,readonly:e.readonly,multiple:e.multiple},domProps:{value:e.currentValues}},e._l(e.currentValues,function(t){return a("option",{attrs:{selected:""},domProps:{value:t}})}),0)])};function nt(t){return nt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},nt(t)}function st(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),i.push.apply(i,a)}return i}function ot(t){for(var e=1;e["on","off"].includes(t),default:"off"},conditions:{type:Array,default:function(){return[]}},remote:{type:Boolean,default:!1},remoteCallback:{type:Function},remoteTrigger:{type:Number,default:3},remoteTriggerMessage:{type:String,default:"Please enter %d char(s) to start search"},notFoundMeassge:{type:String,default:"There is no items find matching this query"},loadingMessage:{type:String,default:"Loading..."},preventWrap:{type:Boolean,default:!1},wrapperCss:{type:Array,default:function(){return[]}},elementId:{type:String},stateType:{type:Function}},data:()=>({query:"",inFocus:!1,optionInFocus:!1,loading:!1,loaded:!1}),created(){this.currentValues||(this.currentValues=[])},computed:{filteredOptions(){return this.query?this.optionsList.filter(t=>t.label.includes(this.query)||t.value.includes(this.query)):this.optionsList}},methods:{handleFocus(t){this.inFocus=!0,this.$emit("on-focus",t)},handleOptionsNav(t){"ArrowUp"!==t.key&&"Tab"!==t.key||this.navigateOptions(-1),"ArrowDown"===t.key&&this.navigateOptions(1)},navigateOptions(t){!1===this.optionInFocus&&(this.optionInFocus=-1);let e=this.optionInFocus+t,i=this.filteredOptions.length-1;i<0&&(i=0),e<0?e=0:e>i&&(e=i),this.optionInFocus=e},onClickOutside(t){this.inFocus&&(this.inFocus=!1,this.$emit("on-blur",t))},handleInput(t){this.$emit("input",t.target.value),this.query=t.target.value,this.inFocus||(this.inFocus=!0)},handleEnter(){if(!1===this.optionInFocus||!this.optionsList[this.optionInFocus])return;let t=this.filteredOptions[this.optionInFocus].value;this.handleResultClick(t)},handleResultClick(t){this.isNonRemovable(t)||(this.value.includes(t)?this.removeValue(t):this.multiple?this.storeValues([...new Set(this.value),t]):this.storeValues(t),this.inFocus=!1,this.optionInFocus=!1,this.query="")},removeValue(t){this.multiple||this.storeValues("");const e=this.value.filter(e=>e!==t);this.storeValues(e)},storeValues(t){this.$emit("change",this.sanitizeValue(t))},getOptionLabel(t){var e;const i="string"==typeof t?t:t.value,a=this.optionsList.find(({value:t})=>t===i);return null!==(e=a?.label)&&void 0!==e?e:""},sanitizeValue(t){return this.multiple?Array.isArray(t)?t:[t].filter(Boolean):Array.isArray(t)?t[0]:t},isSelectedOption(t){const e="string"==typeof t?t:t.value;return this.value.includes(e)},isNonRemovable(t){var e;const i="string"==typeof t?t:t.value,a=this.optionsList.find(({value:t})=>t===i);return null!==(e=a?.nonRemovable)&&void 0!==e&&e}},inject:["elementId","stateType"]};i(9330);const mt=s(ht,at,[],!1,null,"13c6d87e",null).exports;var _t=function(){var t=this,e=t.$createElement;return(t._self._c||e)("input",{staticClass:"cx-vui-input size-fullwidth",attrs:{type:"date",name:t.elementId,id:t.elementId,max:t.max,min:t.min},domProps:{value:t.value},on:{input:t.handleInput}})};_t._withStripped=!0;let bt=new Date(Date.now()-864e4).toJSON();[bt]=bt.split("T");const gt=t=>!!["now"].includes(t)||!Number.isNaN(new Date(t).getTime()),yt=s({name:"CxVuiDate",props:{value:{type:String},maxDate:{validator:gt},minDate:{validator:gt},elementId:{type:String}},data(){return{max:"now"===this.maxDate?bt:this.maxDate,min:"now"===this.minDate?bt:this.minDate}},methods:{handleInput(t){this.$emit("input",t.target.value)}},inject:["elementId"]},_t,[],!1,null,"1707aa50",null).exports;var xt=function(){var t=this.$createElement;return(this._self._c||t)("hr",{staticClass:"jfb"})};xt._withStripped=!0;i(5981);const wt=s({name:"Delimiter"},xt,[],!1,null,"362c518d",null).exports;var Ct=function(){var t=this,e=t.$createElement;return(t._self._c||e)("cx-vui-button",{attrs:{"button-style":"accent",size:"mini"},on:{click:t.print},scopedSlots:t._u([{key:"label",fn:function(){return[t.$slots.default?[t._t("default")]:[t._v("\n\t\t\t"+t._s(t.__("Print","jet-form-builder"))+"\n\t\t")]]},proxy:!0}],null,!0)})};Ct._withStripped=!0;const jt={name:"PrintButton",methods:{print(){window.print()}},mixins:[k]};i(7922);const St=s(jt,Ct,[],!1,null,"aa3950ea",null).exports;window.JetFBActions={renderCurrentPage:function(t,e={}){const i=new Vue({el:"#jet-form-builder_page_"+t.name,render:e=>e(t),...e});$("jet.fb.render.page",i)},getCurrentPath:T,getSearch:L,createPath:function(t={},e={},i=[]){const a=[];t={...L(),...t};for(const[e,n]of Object.entries(t))i.includes(e)||a.push(`${e}=${encodeURIComponent(n)}`);return[T(),a.join("&")].filter(t=>t).join("?")},addQueryArgs:function(t,e){e=new URL(e);const i=new URLSearchParams(e.search),a=[];for(const[e,i]of Object.entries(t))a.push(...I(e,i));for(const[t,e]of a)e&&i.append(t,e);return e.origin+e.pathname+"?"+i},LocalStorage:J,resolveRestUrl:function(t,e){if("object"!=typeof e||!Object.keys(e)?.length)return t;for(let[i,a]of Object.entries(e)){const e=new RegExp(`\\{${i}\\}`,"g");if(t.match(e)){t=t.replace(e,String(a));continue}const n=new RegExp(`\\(\\?P<${i}>(.*?)\\)`),s=t.match(n);if(Array.isArray(s)){if(a=""+a,!new RegExp(s[1]).test(a))throw new Error((0,O.sprintf)((0,O.__)("Invalid parameter for rest url. RegExp: %1$s, Value: %2$s","jet-form-builder"),s[1],a));t=t.replace(n,a)}}return t}},window.JetFBErrors={ApiInputError:e},window.JetFBComponents={CxVuiCollapseMini:o,DetailsTable:b,SimpleWrapperComponent:S,ListComponents:A,CxVuiTabsPanel:D,CxVuiTabs:B,ExternalLink:W,RowWrapper:S,ColumnWrapper:G,CxVuiSelect:Y,CxVuiPopup:it,CxVuiFSelect:mt,CxVuiDate:yt,Tooltip:C,Delimiter:wt,PrintButton:St},window.JetFBMixins={GetIncoming:r,SaveTabByAjax:l,i18n:k,ParseIncomingValueMixin:c,PromiseWrapper:u}})()})(); \ No newline at end of file +(()=>{var t={2373(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-component[data-v-327e05fd]{flex-direction:column;width:100%;border-top:unset;gap:.7em}.cx-vui-component.padding-side-unset[data-v-327e05fd]{padding-left:unset;padding-right:unset}.padding-top-bottom-unset[data-v-327e05fd]{padding-top:unset;padding-bottom:unset}.padding-unset[data-v-327e05fd]{padding:unset}",""]);const r=o},7944(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-collapse-mini__wrap{padding:0 0 20px}.cx-vui-collapse-mini__item{border-bottom:1px solid #ececec}.cx-vui-collapse-mini__item:first-child{border-top:1px solid #ececec}.cx-vui-collapse-mini__item:last-child{margin-bottom:unset}.cx-vui-collapse-mini__item--active .cx-vui-collapse-mini__header-label>svg{transform:rotate(90deg)}.cx-vui-collapse-mini__header{padding:1.2rem;display:flex;align-items:center;cursor:pointer;column-gap:1em}.cx-vui-collapse-mini__header-label{font-weight:500;font-size:15px;line-height:23px;color:#007cba;display:flex;align-items:center}.cx-vui-collapse-mini__header-desc{font-size:15px;line-height:23px;color:#7b7e81}.cx-vui-collapse-mini__header-label svg{margin:-1px 8px 0 0;transition:.3s}.cx-vui-collapse-mini--disabled{opacity:.5}.cx-vui-collapse-mini--disabled .cx-vui-collapse-mini__header{cursor:not-allowed}.cx-vui-collapse-mini__content{padding:0 1.5rem 1.5rem}",""]);const r=o},6278(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-input--warning-danger[data-v-13c6d87e]{border:1px solid #d63638}",""]);const r=o},5965(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-popup__close[data-v-7acae1c9]{position:unset}.cx-vui-popup__header[data-v-7acae1c9]{display:flex;justify-content:space-between;padding-bottom:10px;margin:unset;border-bottom:1px solid #ececec}.cx-vui-popup.sticky-header .cx-vui-popup__body[data-v-7acae1c9],.cx-vui-popup.sticky-footer .cx-vui-popup__body[data-v-7acae1c9]{max-height:80vh;overflow-y:auto}.cx-vui-popup.sticky-header .cx-vui-popup__header[data-v-7acae1c9]{position:sticky;top:0;background-color:#fff;padding-top:20px;z-index:1}.cx-vui-popup.sticky-header .cx-vui-popup__body[data-v-7acae1c9]{padding-top:0}.cx-vui-popup.sticky-footer .cx-vui-popup__body[data-v-7acae1c9]{padding-bottom:0}.cx-vui-popup.sticky-footer .cx-vui-popup__content[data-v-7acae1c9]{padding-bottom:40px}.cx-vui-popup.sticky-footer .cx-vui-popup__footer[data-v-7acae1c9]{position:sticky;bottom:0;background-color:#fff;padding-bottom:20px;border-top:1px solid #ececec}",""]);const r=o},1618(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-select[data-v-b31905c2]{line-height:2em;padding:6px 24px 6px 8px}.cx-vui-select.fullwidth[data-v-b31905c2]{width:100%}",""]);const r=o},6291(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-tabs__nav-item--disabled{opacity:.5;cursor:not-allowed}.cx-vui-tabs__nav-item--disabled:hover{color:unset}.cx-vui-tabs__nav-item--has-icon{display:flex;justify-content:space-between;column-gap:1em}.cx-vui-tabs--layout-vertical>.cx-vui-tabs__nav{width:unset;flex:unset;max-width:unset}.cx-vui-tabs--layout-vertical>.cx-vui-tabs__content{flex:1}",""]);const r=o},4761(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,"hr.jfb[data-v-362c518d]{border:0;border-top:1px solid #ececec;margin:unset}",""]);const r=o},1700(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".table-details{display:flex;flex-direction:column}",""]);const r=o},1418(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".table-details-row{display:flex;justify-content:space-between;font-size:1.1em}.table-details-row:first-child{font-weight:bold}.table-details-row:nth-child(even){background-color:#eee}.table-details-row-column{padding:.5em 1em}.table-details-row--heading{flex:1;text-align:right}.table-details-row-role--default.table-details-row--heading{font-weight:600}.table-details-row--content{flex:2}.table-details-row--actions{flex:.3}.table-details-row h3{padding:.5em;border-bottom:1px solid #aaa;width:50%;margin:1em auto;text-align:center;color:#aaa;font-weight:400}",""]);const r=o},4965(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,'.fade-enter-active[data-v-7d75afce],.fade-leave-active[data-v-7d75afce]{transition:opacity .5s}.fade-enter[data-v-7d75afce],.fade-leave-to[data-v-7d75afce]{opacity:0}.jfb-recursive-details[data-v-7d75afce]:not(.jfb-recursive-details--indent){margin-top:unset}.jfb-recursive-details--indent[data-v-7d75afce]{margin-left:1.5em;margin-top:.5em}.jfb-recursive-details-row[data-v-7d75afce]:not(:last-child){margin-bottom:.5em;padding-bottom:.5em}.jfb-recursive-details-item--content[data-v-7d75afce]{border-bottom:1px solid #ccc}.jfb-recursive-details-item-without-children>.jfb-recursive-details-item--heading[data-v-7d75afce]::after{content:":"}.jfb-recursive-details-item-with-children>.jfb-recursive-details-item--heading[data-v-7d75afce]{cursor:pointer}.jfb-recursive-details-item-with-children>.jfb-recursive-details-item--heading[data-v-7d75afce]:hover{color:#2271b1;border-bottom-color:#2271b1}',""]);const r=o},4244(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-external-link__icon{width:1em;height:1em;fill:currentcolor;vertical-align:middle}",""]);const r=o},8984(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".size--1-x-2 .cx-vui-component__meta[data-v-6f5201e4]{flex:1}.size--1-x-2 .cx-vui-component__control[data-v-6f5201e4]{flex:2}.padding-side-unset.cx-vui-component[data-v-6f5201e4]{padding-left:unset;padding-right:unset}.cx-vui-component__control-actions[data-v-6f5201e4]{display:flex;justify-content:flex-end;gap:1em;margin-top:.5em}",""]);const r=o},1292(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".jfb-tooltip[data-v-431c7ba2]{position:relative;display:inline-block}.jfb-tooltip-has-help[data-v-431c7ba2]{cursor:pointer}.jfb-tooltip-has-text[data-v-431c7ba2]{display:flex;column-gap:.5em;align-items:center}.jfb-tooltip--text[data-v-431c7ba2]{text-overflow:ellipsis;overflow:hidden;padding:.1em 0}.jfb-tooltip .dashicons-dismiss[data-v-431c7ba2]{color:#d63638}.jfb-tooltip .dashicons-warning[data-v-431c7ba2]{color:orange}.jfb-tooltip .dashicons-warning.danger[data-v-431c7ba2]{color:#d63638}.jfb-tooltip .dashicons-yes-alt[data-v-431c7ba2]{color:#32cd32}.jfb-tooltip .dashicons-info[data-v-431c7ba2]{color:#90c6db}.jfb-tooltip .dashicons-hourglass[data-v-431c7ba2]{color:#b5b5b5}.jfb-tooltip .dashicons-update.loading[data-v-431c7ba2]{animation:jfb-tooltip-loading-icon-data-v-431c7ba2 1.5s infinite linear}.jfb-tooltip .cx-vui-tooltip[data-v-431c7ba2]{width:fit-content;bottom:calc(100% + 15px);box-sizing:border-box;pointer-events:none;transition:all .18s linear;opacity:0;padding-left:1em;padding-right:1em;position:absolute;z-index:2}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]{right:-1.2em}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]:after{right:20px;left:unset}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]{left:-0.9em}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]:after{left:20px;right:unset}.jfb-tooltip:hover .cx-vui-tooltip[data-v-431c7ba2]{opacity:1}.jfb-tooltip:hover .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]{bottom:100%}.jfb-tooltip:hover .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]{bottom:100%}.jfb-tooltip-position--top-right[data-v-431c7ba2]{flex-direction:row-reverse}@keyframes jfb-tooltip-loading-icon-data-v-431c7ba2{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}",""]);const r=o},5598(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,"\n@media print {\n.cx-vui-button[data-v-aa3950ea] {\n\t\tdisplay: none;\n}\n}\n",""]);const r=o},935(t){"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var i="",a=void 0!==e[5];return e[4]&&(i+="@supports (".concat(e[4],") {")),e[2]&&(i+="@media ".concat(e[2]," {")),a&&(i+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),i+=t(e),a&&(i+="}"),e[2]&&(i+="}"),e[4]&&(i+="}"),i}).join("")},e.i=function(t,i,a,n,s){"string"==typeof t&&(t=[[null,t,void 0]]);var o={};if(a)for(var r=0;r0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=s),i&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=i):u[2]=i),n&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=n):u[4]="".concat(n)),e.push(u))}},e}},6758(t){"use strict";t.exports=function(t){return t[1]}},6945(t,e,i){var a=i(2373);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("b1875a50",a,!1,{})},9356(t,e,i){var a=i(7944);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("30df35ee",a,!1,{})},9330(t,e,i){var a=i(6278);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("21fb632e",a,!1,{})},1041(t,e,i){var a=i(5965);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("0c7f7908",a,!1,{})},2310(t,e,i){var a=i(1618);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("2e7817a3",a,!1,{})},799(t,e,i){var a=i(6291);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("4168dbce",a,!1,{})},5981(t,e,i){var a=i(4761);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("8c144c80",a,!1,{})},6168(t,e,i){var a=i(1700);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("206d9f3c",a,!1,{})},8862(t,e,i){var a=i(1418);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("6aaa4088",a,!1,{})},7393(t,e,i){var a=i(4965);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("29e569e4",a,!1,{})},8528(t,e,i){var a=i(4244);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("45767117",a,!1,{})},8036(t,e,i){var a=i(8984);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("57efcfaf",a,!1,{})},6608(t,e,i){var a=i(1292);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("3a21f3b2",a,!1,{})},7922(t,e,i){var a=i(5598);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("7e55f3a9",a,!1,{})},611(t,e,i){"use strict";function a(t,e){for(var i=[],a={},n=0;nf});var n="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!n)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},o=n&&(document.head||document.getElementsByTagName("head")[0]),r=null,l=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",v="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(t,e,i,n){c=i,d=n||{};var o=a(t,e);return h(o),function(e){for(var i=[],n=0;ni.parts.length&&(a.parts.length=i.parts.length)}else{var o=[];for(n=0;n{var e=t&&t.__esModule?()=>t.default:()=>t;return i.d(e,{a:e}),e},i.d=(t,e)=>{for(var a in e)i.o(e,a)&&!i.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:e[a]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),i.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},(()=>{"use strict";class t extends Error{constructor(e=!1,i=""){super(i),Error.captureStackTrace&&Error.captureStackTrace(this,t),this.name="ApiInputError",this.noticeOptions=e}}const e=t;var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:{"cx-vui-panel":t.withPanel,"cx-vui-collapse-mini--disabled":t.disabled,"cx-vui-collapse-mini__item":!0,"cx-vui-collapse-mini__item--active":t.isActive}},[i("div",{staticClass:"cx-vui-collapse-mini__header",on:{click:t.collapse}},[i("div",{staticClass:"cx-vui-collapse-mini__header-label"},[i("svg",{attrs:{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[i("path",{attrs:{d:"M14 13.9999L14 -0.00012207L0 -0.000121458L6.11959e-07 13.9999L14 13.9999Z",fill:"white"}}),t._v(" "),i("path",{attrs:{d:"M5.32911 1L11 7L5.32911 13L4 11.5938L8.34177 7L4 2.40625L5.32911 1Z",fill:"#007CBA"}})]),t._v("\n\t\t\t"+t._s(t.label)+"\n\t\t")]),t._v(" "),t.icon?i("div",{staticClass:"cx-vui-collapse-mini__header-desc"},["object"==typeof t.icon?i(t.icon,{tag:"component"}):t._e()],1):t.desc?i("div",{staticClass:"cx-vui-collapse-mini__header-desc"},[t._v("\n\t\t\t"+t._s(t.desc)+"\n\t\t")]):t._e(),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-collapse-mini__header-custom-description"},[t._t("description")],2):t._e()]),t._v(" "),t.disabled?t._e():[this.$slots.default?[i("div",{directives:[{name:"show",rawName:"v-show",value:t.isActive,expression:"isActive"}],staticClass:"cx-vui-collapse-mini__content"},[t._t("default")],2)]:[t._t("custom",null,{state:{isActive:t.isActive}})]]],2)};a._withStripped=!0;const n={name:"cx-vui-collapse-mini",props:{withPanel:{type:Boolean,default:!1},initialActive:{type:Boolean,default:!1},label:{type:String,default:"Collapse Mini"},desc:{type:String,default:""},disabled:{type:Boolean,default:!1},icon:{type:[Object,String],default:""}},data:()=>({isActive:!1}),created(){this.isActive=this.initialActive},methods:{collapse(){this.disabled||(this.isActive=!this.isActive,this.$emit("change",this.isActive))}}};function s(t,e,i,a,n,s,o,r){var l,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=i,c._compiled=!0),a&&(c.functional=!0),s&&(c._scopeId="data-v-"+s),o?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),n&&n.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},c._ssrRegister=l):n&&(l=r?function(){n.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:n),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(t,e){return l.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:t,options:c}}i(9356);const o=s(n,a,[],!1,null,null,null).exports,r={methods:{getIncoming:t=>t?window.JetFBPageConfig[t]:window.JetFBPageConfig}},l={methods:{saveByAjax(t,e){const i=this;let a={};try{a=this.getAjaxObject(t,e)}catch(t){if(!t)return;return"object"==typeof t.noticeOptions?void i.$CXNotice.add({message:"Invalid request data.",type:"error",duration:2e3,...t.noticeOptions}):void i.$CXNotice.add({message:t,type:"error",duration:2e3})}jfbEventBus.$emit("request-state",{state:"begin",slug:e}),jQuery.ajax(a).done(function(a){"function"==typeof t.onSaveDone?t.onSaveDone(a):a.success?(i.$CXNotice.add({message:a.data.message,type:"success",duration:5e3}),"function"==typeof t.onSaveDoneSuccess&&t.onSaveDoneSuccess(a)):(i.$CXNotice.add({message:a.data.message,type:"error",duration:5e3}),"function"==typeof t.onSaveDoneError&&t.onSaveDoneError(a)),jfbEventBus.$emit("request-state",{state:"end",slug:e})}).fail(function(a,n,s){"function"==typeof t.onSaveFail?t.onSaveFail(a,n,s):i.$CXNotice.add({message:s,type:"error",duration:5e3}),jfbEventBus.$emit("request-state",{state:"end",slug:e})})},getAjaxObject(t,e){const i={url:window.ajaxurl,type:"POST",dataType:"json",...t.getRequestOnSave()};return i.data={action:`jet_fb_save_tab__${e}`,...i.data},window?.JetFBPageConfigPackage?.nonce&&(i.data._nonce=window.JetFBPageConfigPackage.nonce),i}}},c={props:["value","full-entry","entry-id","scope"],computed:{parsedJson(){return JSON.parse(JSON.stringify(this.value))}}},u={methods:{promiseWrapper(t){const e=t=>"object"==typeof t?t?.message:t;return(i,a,...n)=>{const s=t=>{"function"==typeof i&&i(),this.$CXNotice.add({message:e(t),type:"success",duration:4e3})},o=t=>{"function"==typeof i&&i(),this.$CXNotice.add({message:e(t),type:"error",duration:4e3})};try{t.call(this,{resolve:s,reject:o},...n)}catch(t){o(t.message)}}}}};var d=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("section",{staticClass:"table-details"},t._l(t.columns,function(e,a){return t.canShow(a)?i("DetailsTableRow",{key:a,attrs:{type:t.getType(a)},scopedSlots:t._u([{key:"name",fn:function(){return[t._v(t._s(e.label))]},proxy:!0},{key:"value",fn:function(){return["object"==typeof t.getColumnValue(a,!1)?[i("DetailsTableRowValue",{attrs:{value:t.getColumnValue(a,!1),columns:e.children||{}}})]:[t._v(t._s(t.getColumnValue(a,"")))]]},proxy:!0}],null,!0)}):t._e()}),1)};d._withStripped=!0;var p=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("ul",{directives:[{name:"show",rawName:"v-show",value:!this.withIndent,expression:"! this.withIndent"}],class:t.rootClasses},t._l(t.value,function(e,a){return t.isHiddenLevel(a)?i("li",{key:a,staticClass:"jfb-recursive-details-row"},[t.isSkipLevel(a)?[i("DetailsTableRowValue",{attrs:{value:e,columns:t.getChildren(a)}})]:[t.isObject(e)?i("span",{class:t.itemClasses(!0)},[i("span",{staticClass:"jfb-recursive-details-item--heading",on:{click:function(e){return t.toggleNext(a)}}},[t._v("\n\t\t\t\t\t"+t._s(t.getItemLabel(a))+"\n\t\t\t\t\t"),i("span",{class:t.arrowClasses(a)})]),t._v(" "),i("span",{staticClass:"jfb-recursive-details-item--content"},[i("transition",{attrs:{name:"fade"}},[i("DetailsTableRowValue",{directives:[{name:"show",rawName:"v-show",value:t.isShow(a),expression:"isShow( itemName )"}],attrs:{value:e,"with-indent":!0,columns:t.getChildren(a)}})],1)],1)]):i("span",{class:t.itemClasses(!1)},[i("span",{staticClass:"jfb-recursive-details-item--heading"},[t._v(t._s(t.getItemLabel(a)))]),t._v(" \n\t\t\t\t"),i("span",{staticClass:"jfb-recursive-details-item--content"},[t._v(t._s(e))])])]],2):t._e()}),0)};p._withStripped=!0;const v={name:"DetailsTableRowValue",props:{value:Object,withIndent:{type:Boolean,default:!1},columns:{type:Object,default:()=>({})}},data:()=>({showNext:{}}),computed:{rootClasses(){return{"jfb-recursive-details":!0,"jfb-recursive-details--indent":this.withIndent}}},methods:{getChildren(t){return this.columns[t]?.children||[]},getItemLabel(t){return this.columns[t]?this.columns[t].label:t},isObject:t=>"object"==typeof t,toggleNext(t){const e=this.showNext[t]||!1;this.$set(this.showNext,t,!e)},isShow(t){return"undefined"===this.showNext[t]||this.showNext[t]},itemClasses:(t=!0)=>({"jfb-recursive-details-item":!0,"jfb-recursive-details-item-with-children":t,"jfb-recursive-details-item-without-children":!t}),arrowClasses(t){return{dashicons:!0,"dashicons-arrow-down-alt2":!this.isShow(t),"dashicons-arrow-up-alt2":this.isShow(t)}},isSkipLevel(t){return this.columns[t]?.skip_level},isHiddenLevel(t){return!this.columns[t]?.hide}}};i(7393);const f=s(v,p,[],!1,null,"7d75afce",null).exports;var h=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"table-details-row"},["rowValue"===t.type?[i("div",{class:t.headingClasses},["default"!==t.role?[t._v(t._s("Name"))]:[t._t("name"),t._v("\n\t\t\t\t:\n\t\t\t")]],2),t._v(" "),i("div",{class:t.contentClasses},["default"!==t.role?[t._v(t._s("Value"))]:[t._t("value")]],2),t._v(" "),i("div",{class:t.actionClasses},["default"!==t.role?[t._v(t._s("Actions"))]:[t._t("actions")]],2)]:[i("h3",[t._t("name")],2)]],2)};h._withStripped=!0;const m={name:"DetailsTableRow",props:{role:{type:String,default:"default",validator:function(t){return-1!==["header","default","footer"].indexOf(t)}},type:{type:String,default:"rowValue",validator:function(t){return-1!==["rowValue","heading"].indexOf(t)}}},computed:{headingClasses(){return this.classes({"table-details-row--heading":!0})},contentClasses(){return this.classes({"table-details-row--content":!0})},actionClasses(){return this.classes({"table-details-row--actions":!0})}},methods:{classes(t){return{"table-details-row-column":!0,...t,["table-details-row-role--"+this.role]:!0}}}};i(8862);const _={name:"DetailsTable",components:{DetailsTableRow:s(m,h,[],!1,null,null,null).exports,DetailsTableRowValue:f},props:{columns:{type:Object},source:{type:Object}},methods:{getColumnValue(t,e=!1){return this.source[t]?this.source[t].value:e},hasValueOrAnotherType(t){return this.getColumnValue(t)||"rowValue"!==this.getType(t)},getType(t){var e;return null!==(e=this.columns[t].type)&&void 0!==e?e:"rowValue"},canShow(t){const e=this.getType(t),i=!1!==this.columns[t].show_in_details,a=this.getColumnValue(t);return i&&("rowValue"!==e||a)}}};i(6168);const b=s(_,d,[],!1,null,null,null).exports;var g=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[t.$slots.meta?i("div",{staticClass:"cx-vui-component__meta"},[t._t("meta")],2):t.$slots.label||t.$slots.description?i("div",{staticClass:"cx-vui-component__meta"},[t.$slots.label?i("label",{staticClass:"cx-vui-component__label",attrs:{for:t.elementIdData}},[t.stateType?[i("Tooltip",{attrs:{icon:t.stateType,position:"top-right"},scopedSlots:t._u([{key:"help",fn:function(){return[t._v(t._s(t.stateHelp))]},proxy:!0},{key:"default",fn:function(){return[t._t("label")]},proxy:!0}],null,!0)})]:[t._t("label")]],2):t._e(),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-component__desc"},[t._t("description")],2):t._e()]):t._e(),t._v(" "),i("div",{staticClass:"cx-vui-component__control"},[t._t("default"),t._v(" "),t.$slots.actions?i("div",{staticClass:"cx-vui-component__control-actions"},[t._t("actions")],2):t._e()],2)])};g._withStripped=!0;var y=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.wrapperClasses},[i("span",{class:t.dashIconClass}),t._v(" "),t.$slots.default?i("span",{staticClass:"jfb-icon-status--text"},[t._t("default")],2):t._e(),t._v(" "),t.$slots.help?i("div",{class:t.tooltipClasses},[t._t("help")],2):t._e()])};y._withStripped=!0;const x={success:"dashicons-yes-alt",warning:"dashicons-warning","warning-danger":["dashicons-warning","danger"],info:"dashicons-info",pending:"dashicons-hourglass",error:"dashicons-dismiss",loading:["dashicons-update","loading"]},w={name:"Tooltip",props:{icon:{type:String,validator:t=>Object.keys(x).includes(t),default:"info"},position:{type:String,validator:t=>["top-right","top-left"].includes(t),default:"top-left"}},computed:{wrapperClasses(){return{"jfb-tooltip":!0,"jfb-tooltip-has-text":!!this.$slots.default,"jfb-tooltip-has-help":!!this.$slots.help,["jfb-tooltip-position--"+this.position]:!0}},dashIconClass(){var t;let e=null!==(t=x[this.icon])&&void 0!==t?t:"";return Array.isArray(e)||(e=[e]),["dashicons",...e]},tooltipClasses(){return{"cx-vui-tooltip":!0,["tooltip-position-"+this.position]:!0}}}};i(6608);const C=s(w,y,[],!1,null,"431c7ba2",null).exports,j={name:"RowWrapper",components:{Tooltip:C},props:{elementId:{type:String},state:{type:[String,Object],validator:t=>(t=>["warning-danger","warning","loading",""].includes(t))("string"==typeof t?t:t.type),default:""},classNames:{type:Object,default:()=>({"cx-vui-component--equalwidth":!0})}},data(){return{elementIdData:`cx_${this.elementId}`}},computed:{className(){return{"cx-vui-component":!0,["cx-vui-component--is-"+this.stateType]:this.stateType,...this.classNames}},stateType(){return"string"==typeof this.state?this.state:this.state.type},stateHelp(){return"string"==typeof this.state?"":this.state.message}},provide(){return{elementId:this.elementIdData,stateType:()=>this.stateType}}};i(8036);const S=s(j,g,[],!1,null,"6f5201e4",null).exports,O=window.wp.i18n,k={methods:{__:(t,e)=>(0,O.__)(t,e),sprintf:(t,...e)=>(0,O.sprintf)(t,...e),__s:(t,e,...i)=>(0,O.sprintf)((0,O.__)(t,e),...i)}},{doAction:$}=wp.hooks;function T(){return window.location.pathname}function L(){const t={};return window.location.search.replace("?","").split("&").forEach(e=>{const[i,a]=e.split("=");t[i]=a}),t}function I(t,e){if("object"!=typeof e)return[[t,e]];const i=[];for(let[a,n]of Object.entries(e))a=`${t}[${a}]`,i.push(...I(a,n));return i}var N=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"jfb-list-components"},[t._l(t.components,function(e,a){return i("div",{key:"entry_"+a,staticClass:"jfb-list-components-item"},[i("keep-alive",[i(e,{tag:"component",attrs:{scope:t.scope}})],1)],1)}),t._v(" "),t._t("default")],2)};N._withStripped=!0;const A=s({name:"ListComponents",props:{components:Array,scope:String}},N,[],!1,null,null,null).exports;var E=function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{directives:[{name:"show",rawName:"v-show",value:t.show,expression:"show"}],staticClass:"cx-vui-tabs-panel"},[t._t("default")],2)};E._withStripped=!0;const D=s({name:"cx-vui-tabs-panel",props:{tab:{type:String,default:""},name:{type:String,default:""},label:{type:String,default:""},disabled:{type:Boolean,default:!1},icon:{type:[Object,String],default:""}},data:()=>({show:!1})},E,[],!1,null,null,null).exports;var V=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:{"cx-vui-tabs":!0,"cx-vui-tabs--invert":t.invert,"cx-vui-tabs--layout-vertical":"vertical"===this.layout,"cx-vui-tabs--layout-horizontal":"horizontal"===this.layout,"cx-vui-tabs--in-panel":t.inPanel}},[i("div",{staticClass:"cx-vui-tabs__nav"},t._l(t.navList,function(e){return i("div",{class:{"cx-vui-tabs__nav-item":!0,"cx-vui-tabs__nav-item--active":t.isActive(e.name),"cx-vui-tabs__nav-item--disabled":t.isDisabled(e.name),"cx-vui-tabs__nav-item--has-icon":!!e.icon},on:{click:function(i){return t.onTabClick(e.name)}}},[i("span",{staticClass:"item-label"},[t._v(t._s(e.label))]),t._v(" "),e.icon?i("span",{staticClass:"item-icon"},["object"==typeof e.icon?i(e.icon,{tag:"component",attrs:{"is-active":t.isActive(e.name)}}):t._e()],1):t._e()])}),0),t._v(" "),i("div",{staticClass:"cx-vui-tabs__content"},[t._t("default")],2)])};V._withStripped=!0;const P={name:"cx-vui-tabs",props:{value:{type:[String,Number],default:""},name:{type:String,default:""},invert:{type:Boolean,default:!1},inPanel:{type:Boolean,default:!1},layout:{validator:t=>["horizontal","vertical"].includes(t),default:"horizontal"},conditions:{type:Array,default:()=>[]}},data(){return{navList:[],activeTab:this.value,disabledTabs:[]}},mounted(){const t=this.getTabs();this.disabledTabs=this.getDisabledTabs(),this.navList=t,this.activeTab||(this.activeTab=t[0].name),this.updateState()},methods:{isActive(t){return t===this.activeTab},isDisabled(t){return this.disabledTabs.includes(t)},getDisabledTabs(){const t=[];for(const e of this.$children)e.disabled&&t.push(e.name);return t},onTabClick(t){this.isDisabled(t)||(this.activeTab=t,this.$emit("input",this.activeTab),this.updateState())},updateState(){const t=this.getTabs();this.navList=t,t.forEach(t=>{t.show=this.activeTab===t.name})},getTabs(){const t=this.$children.filter(t=>"cx-vui-tabs-panel"===t.$options.name),e=[];return t.forEach(t=>{t.tab&&this.name?t.tab===this.name&&e.push(t):e.push(t)}),e}}};i(799);const B=s(P,V,[],!1,null,null,null).exports,F="JetFBConfig";function M(t){localStorage.setItem(F,JSON.stringify(t))}function R(){const t=localStorage.getItem(F);return null===t?{}:JSON.parse(t)}function z(t,e){let i=R();i={...i,[t]:e},M(i)}function q(t,e=!1){var i;return null!==(i=R()[t])&&void 0!==i?i:e}const J={setStorage:M,getStorage:R,setItem:z,getItem:q,storage:function(t){const e={setStorage(e){z(t,e)},getStorage:()=>q(t,{})};return{...e,setItem(t,i){let a=e.getStorage();a={...a,[t]:i},e.setStorage(a)},getItem(t,i=!1){var a;return null!==(a=e.getStorage()[t])&&void 0!==a?a:i}}}};var U=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("a",{staticClass:"cx-vui-external-link",attrs:{href:t.href,target:"_blank",rel:"external noreferrer noopener"}},[t._t("default"),t._v(" "),i("svg",{staticClass:"cx-vui-external-link__icon",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"}},[i("path",{attrs:{d:"M18.2 17c0 .7-.6 1.2-1.2 1.2H7c-.7 0-1.2-.6-1.2-1.2V7c0-.7.6-1.2 1.2-1.2h3.2V4.2H7C5.5 4.2 4.2 5.5 4.2 7v10c0 1.5 1.2 2.8 2.8 2.8h10c1.5 0 2.8-1.2 2.8-2.8v-3.6h-1.5V17zM14.9 3v1.5h3.7l-6.4 6.4 1.1 1.1 6.4-6.4v3.7h1.5V3h-6.3z"}})])],2)};U._withStripped=!0;const H={name:"ExternalLink",mixins:[k],props:{href:{type:String,default:""}}};i(8528);const W=s(H,U,[],!1,null,null,null).exports;var X=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[t.$slots.label?i("label",{staticClass:"cx-vui-component__label",attrs:{for:t.elementIdData}},[t._t("label")],2):t._e(),t._v(" "),t._t("default"),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-component__desc"},[t._t("description")],2):t._e()],2)};X._withStripped=!0;const Z={name:"ColumnWrapper",props:{elementId:{type:String,required:!0},classNames:{type:Object,default:()=>({})}},data(){return{elementIdData:`cx_${this.elementId}`}},computed:{className(){return{"cx-vui-component":!0,...this.classNames}}},provide(){return{elementId:this.elementIdData}}};i(6945);const G=s(Z,X,[],!1,null,"327e05fd",null).exports;var Q=function(){var t=this,e=t.$createElement;return(t._self._c||e)("select",{class:t.className,attrs:{name:t.elementId,id:t.elementId},domProps:{value:t.value},on:{input:t.handleInput}},[t._t("default")],2)};Q._withStripped=!0;const K={name:"CxVuiSelect",props:{value:{type:[String,Number],default:""},elementId:{type:String},classNames:{type:Object,default:()=>({})}},computed:{className(){return{"cx-vui-select":!0,...this.classNames}}},methods:{handleInput(t){this.$emit("input",t.target.value)}},inject:["elementId"]};i(2310);const Y=s(K,Q,[],!1,null,"b31905c2",null).exports;var tt=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[i("div",{staticClass:"cx-vui-popup__overlay",on:{click:function(e){return t.$emit("close")}}}),t._v(" "),i("div",{staticClass:"cx-vui-popup__body"},[t.$slots.title?i("h2",{staticClass:"cx-vui-popup__header"},[t._t("title"),t._v(" "),t.$slots.close?[t._t("close")]:i("div",{staticClass:"cx-vui-popup__close",on:{click:function(e){return t.$emit("close")}}},[i("svg",{attrs:{width:"20",height:"20",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[i("path",{attrs:{d:"M12 3.00671L8.00671 7L12 10.9933L10.9933 12L7 8.00671L3.00671 12L2 10.9933L5.99329 7L2 3.00671L3.00671 2L7 5.99329L10.9933 2L12 3.00671Z"}})])])],2):t._e(),t._v(" "),i("div",{staticClass:"cx-vui-popup__content"},[t._t("content")],2),t._v(" "),t.$slots.footer?i("div",{staticClass:"cx-vui-popup__footer"},[t._t("footer")],2):t._e()])])};tt._withStripped=!0;const et={name:"CxVuiPopup",props:{classNames:{type:Object,default:()=>({})},stickyFooter:{type:Boolean,default:!1}},computed:{className(){return{"cx-vui-popup":!0,...this.classNames}}}};i(1041);const it=s(et,tt,[],!1,null,"7acae1c9",null).exports;var at=function(){var t,e=this,i=e.$createElement,a=e._self._c||i;return a("div",{staticClass:"cx-vui-f-select"},[a("div",{class:{"cx-vui-f-select__selected":!0,"cx-vui-f-select__selected-not-empty":this.value.length>0}},e._l(e.value,function(t){return a("div",{staticClass:"cx-vui-f-select__selected-option",on:{click:function(i){return e.handleResultClick(t)}}},[e.$slots["option-"+t]?[e._t("option-"+t)]:[e.isNonRemovable(t)?e._e():a("span",{staticClass:"cx-vui-f-select__selected-option-icon"},[a("svg",{attrs:{width:"10",height:"10",viewBox:"0 0 10 10",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M10 1.00671L6.00671 5L10 8.99329L8.99329 10L5 6.00671L1.00671 10L0 8.99329L3.99329 5L0 1.00671L1.00671 0L5 3.99329L8.99329 0L10 1.00671Z"}})])]),e._v("\n\t\t\t\t"+e._s(e.getOptionLabel(t))+"\n\t\t\t")]],2)}),0),e._v(" "),a("div",{directives:[{name:"click-outside",rawName:"v-click-outside.capture",value:e.onClickOutside,expression:"onClickOutside",modifiers:{capture:!0}},{name:"click-outside",rawName:"v-click-outside:mousedown.capture",value:e.onClickOutside,expression:"onClickOutside",arg:"mousedown",modifiers:{capture:!0}},{name:"click-outside",rawName:"v-click-outside:touchstart.capture",value:e.onClickOutside,expression:"onClickOutside",arg:"touchstart",modifiers:{capture:!0}}],staticClass:"cx-vui-f-select__control",on:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),e.handleOptionsNav.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),e.handleOptionsNav.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:e.handleOptionsNav.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.handleEnter.apply(null,arguments)}]}},[a("input",{class:(t={"cx-vui-f-select__input":!0,"cx-vui-input--in-focus":e.inFocus,"cx-vui-input":!0},t["cx-vui-input--"+e.stateType()]=e.stateType(),t["size-fullwidth"]=!0,t["has-error"]=e.error,t),attrs:{id:e.elementId,placeholder:e.placeholder,autocomplete:e.autocomplete,type:"text"},domProps:{value:e.query},on:{input:e.handleInput,focus:e.handleFocus}}),e._v(" "),e.inFocus?a("div",{staticClass:"cx-vui-f-select__results"},[e.filteredOptions.length?a("div",e._l(e.filteredOptions,function(t,i){return a("div",{class:{"cx-vui-f-select__result":!0,"in-focus":i===e.optionInFocus,"is-selected":e.isSelectedOption(t)},on:{click:function(i){return e.handleResultClick(t.value)}}},[e._v(e._s(e.getOptionLabel(t))+"\n\t\t\t\t")])}),0):a("div",{staticClass:"cx-vui-f-select__results-message",domProps:{innerHTML:e._s(e.notFoundMeassge)}})]):e._e()]),e._v(" "),a("select",{staticClass:"cx-vui-f-select__select-tag",attrs:{placeholder:e.placeholder,disabled:e.disabled,readonly:e.readonly,multiple:e.multiple},domProps:{value:e.currentValues}},e._l(e.currentValues,function(t){return a("option",{attrs:{selected:""},domProps:{value:t}})}),0)])};function nt(t){return nt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},nt(t)}function st(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),i.push.apply(i,a)}return i}function ot(t){for(var e=1;e["on","off"].includes(t),default:"off"},conditions:{type:Array,default:function(){return[]}},remote:{type:Boolean,default:!1},remoteCallback:{type:Function},remoteTrigger:{type:Number,default:3},remoteTriggerMessage:{type:String,default:"Please enter %d char(s) to start search"},notFoundMeassge:{type:String,default:"There is no items find matching this query"},loadingMessage:{type:String,default:"Loading..."},preventWrap:{type:Boolean,default:!1},wrapperCss:{type:Array,default:function(){return[]}},elementId:{type:String},stateType:{type:Function}},data:()=>({query:"",inFocus:!1,optionInFocus:!1,loading:!1,loaded:!1}),created(){this.currentValues||(this.currentValues=[])},computed:{filteredOptions(){return this.query?this.optionsList.filter(t=>t.label.includes(this.query)||t.value.includes(this.query)):this.optionsList}},methods:{handleFocus(t){this.inFocus=!0,this.$emit("on-focus",t)},handleOptionsNav(t){"ArrowUp"!==t.key&&"Tab"!==t.key||this.navigateOptions(-1),"ArrowDown"===t.key&&this.navigateOptions(1)},navigateOptions(t){!1===this.optionInFocus&&(this.optionInFocus=-1);let e=this.optionInFocus+t,i=this.filteredOptions.length-1;i<0&&(i=0),e<0?e=0:e>i&&(e=i),this.optionInFocus=e},onClickOutside(t){this.inFocus&&(this.inFocus=!1,this.$emit("on-blur",t))},handleInput(t){this.$emit("input",t.target.value),this.query=t.target.value,this.inFocus||(this.inFocus=!0)},handleEnter(){if(!1===this.optionInFocus||!this.optionsList[this.optionInFocus])return;let t=this.filteredOptions[this.optionInFocus].value;this.handleResultClick(t)},handleResultClick(t){this.isNonRemovable(t)||(this.value.includes(t)?this.removeValue(t):this.multiple?this.storeValues([...new Set(this.value),t]):this.storeValues(t),this.inFocus=!1,this.optionInFocus=!1,this.query="")},removeValue(t){this.multiple||this.storeValues("");const e=this.value.filter(e=>e!==t);this.storeValues(e)},storeValues(t){this.$emit("change",this.sanitizeValue(t))},getOptionLabel(t){var e;const i="string"==typeof t?t:t.value,a=this.optionsList.find(({value:t})=>t===i);return null!==(e=a?.label)&&void 0!==e?e:""},sanitizeValue(t){return this.multiple?Array.isArray(t)?t:[t].filter(Boolean):Array.isArray(t)?t[0]:t},isSelectedOption(t){const e="string"==typeof t?t:t.value;return this.value.includes(e)},isNonRemovable(t){var e;const i="string"==typeof t?t:t.value,a=this.optionsList.find(({value:t})=>t===i);return null!==(e=a?.nonRemovable)&&void 0!==e&&e}},inject:["elementId","stateType"]};i(9330);const mt=s(ht,at,[],!1,null,"13c6d87e",null).exports;var _t=function(){var t=this,e=t.$createElement;return(t._self._c||e)("input",{staticClass:"cx-vui-input size-fullwidth",attrs:{type:"date",name:t.elementId,id:t.elementId,max:t.max,min:t.min},domProps:{value:t.value},on:{input:t.handleInput}})};_t._withStripped=!0;let bt=new Date(Date.now()-864e4).toJSON();[bt]=bt.split("T");const gt=t=>!!["now"].includes(t)||!Number.isNaN(new Date(t).getTime()),yt=s({name:"CxVuiDate",props:{value:{type:String},maxDate:{validator:gt},minDate:{validator:gt},elementId:{type:String}},data(){return{max:"now"===this.maxDate?bt:this.maxDate,min:"now"===this.minDate?bt:this.minDate}},methods:{handleInput(t){this.$emit("input",t.target.value)}},inject:["elementId"]},_t,[],!1,null,"1707aa50",null).exports;var xt=function(){var t=this.$createElement;return(this._self._c||t)("hr",{staticClass:"jfb"})};xt._withStripped=!0;i(5981);const wt=s({name:"Delimiter"},xt,[],!1,null,"362c518d",null).exports;var Ct=function(){var t=this,e=t.$createElement;return(t._self._c||e)("cx-vui-button",{attrs:{"button-style":"accent",size:"mini"},on:{click:t.print},scopedSlots:t._u([{key:"label",fn:function(){return[t.$slots.default?[t._t("default")]:[t._v("\n\t\t\t"+t._s(t.__("Print","jet-form-builder"))+"\n\t\t")]]},proxy:!0}],null,!0)})};Ct._withStripped=!0;const jt={name:"PrintButton",methods:{print(){window.print()}},mixins:[k]};i(7922);const St=s(jt,Ct,[],!1,null,"aa3950ea",null).exports;window.JetFBActions={renderCurrentPage:function(t,e={}){const i=new Vue({el:"#jet-form-builder_page_"+t.name,render:e=>e(t),...e});$("jet.fb.render.page",i)},getCurrentPath:T,getSearch:L,createPath:function(t={},e={},i=[]){const a=[];t={...L(),...t};for(const[e,n]of Object.entries(t))i.includes(e)||a.push(`${e}=${encodeURIComponent(n)}`);return[T(),a.join("&")].filter(t=>t).join("?")},addQueryArgs:function(t,e){e=new URL(e);const i=new URLSearchParams(e.search),a=[];for(const[e,i]of Object.entries(t))a.push(...I(e,i));for(const[t,e]of a)e&&i.append(t,e);return e.origin+e.pathname+"?"+i},LocalStorage:J,resolveRestUrl:function(t,e){if("object"!=typeof e||!Object.keys(e)?.length)return t;for(let[i,a]of Object.entries(e)){const e=new RegExp(`\\{${i}\\}`,"g");if(t.match(e)){t=t.replace(e,String(a));continue}const n=new RegExp(`\\(\\?P<${i}>(.*?)\\)`),s=t.match(n);if(Array.isArray(s)){if(a=""+a,!new RegExp(s[1]).test(a))throw new Error((0,O.sprintf)((0,O.__)("Invalid parameter for rest url. RegExp: %1$s, Value: %2$s","jet-form-builder"),s[1],a));t=t.replace(n,a)}}return t}},window.JetFBErrors={ApiInputError:e},window.JetFBComponents={CxVuiCollapseMini:o,DetailsTable:b,SimpleWrapperComponent:S,ListComponents:A,CxVuiTabsPanel:D,CxVuiTabs:B,ExternalLink:W,RowWrapper:S,ColumnWrapper:G,CxVuiSelect:Y,CxVuiPopup:it,CxVuiFSelect:mt,CxVuiDate:yt,Tooltip:C,Delimiter:wt,PrintButton:St},window.JetFBMixins={GetIncoming:r,SaveTabByAjax:l,i18n:k,ParseIncomingValueMixin:c,PromiseWrapper:u}})()})(); \ No newline at end of file diff --git a/assets/build/editor/form.builder.asset.php b/assets/build/editor/form.builder.asset.php index 147f106d7..569e43d0f 100644 --- a/assets/build/editor/form.builder.asset.php +++ b/assets/build/editor/form.builder.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-data', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins'), 'version' => '62f366da7e196eddbd94'); + array('react', 'wp-components', 'wp-data', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins'), 'version' => 'f88c58075d1ea734c3c8'); diff --git a/assets/build/editor/form.builder.js b/assets/build/editor/form.builder.js index 0c8fcc35d..b88726800 100644 --- a/assets/build/editor/form.builder.js +++ b/assets/build/editor/form.builder.js @@ -1 +1 @@ -(()=>{var e={5207(e,C,t){"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".s1ip8zmx.buddypress-active>div{height:auto;}\n",""]);const i=a},8525(e,C,t){"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".mqz01w{gap:1em;}\n.mqjtk22{background-color:#ffffff;}\n",""]);const i=a},5545(e,C,t){"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".f13zt8l2{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;gap:12px;}.f13zt8l2 .sortable-chosen{box-shadow:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)) 0 1px 4px;}\n.am4szan{border:1px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));margin-bottom:1px;}.am4szan .components-panel__body-title{background-color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));}.am4szan .components-panel__body-title .components-button{color:var(--wp-components-color-accent-inverted, #fff);}.am4szan.is-opened{background-color:rgba(var(--wp-admin-theme-color--rgb), .07);}.am4szan.is-opened .components-panel__body-title{background-color:transparent;}.am4szan.is-opened .components-panel__body-title .components-button{color:#1e1e1e;}.am4szan .components-panel__body-title:hover{background-color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));opacity:0.7;}.am4szan .components-panel__body-title:hover .components-button{color:var(--wp-components-color-accent-inverted, #fff);}\n.s8wdwdc.buddypress-active{height:auto;}\n",""]);const i=a},935(e){"use strict";e.exports=function(e){var C=[];return C.toString=function(){return this.map(function(C){var t="",l=void 0!==C[5];return C[4]&&(t+="@supports (".concat(C[4],") {")),C[2]&&(t+="@media ".concat(C[2]," {")),l&&(t+="@layer".concat(C[5].length>0?" ".concat(C[5]):""," {")),t+=e(C),l&&(t+="}"),C[2]&&(t+="}"),C[4]&&(t+="}"),t}).join("")},C.i=function(e,t,l,r,n){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(l)for(var i=0;i0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=n),t&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=t):c[2]=t),r&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=r):c[4]="".concat(r)),C.push(c))}},C}},6758(e){"use strict";e.exports=function(e){return e[1]}},6987(e,C,t){var l=t(5207);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("6979fc60",l,!1,{})},2065(e,C,t){var l=t(8525);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("cbeea060",l,!1,{})},1669(e,C,t){var l=t(5545);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("2bfdb416",l,!1,{})},611(e,C,t){"use strict";function l(e,C){for(var t=[],l={},r=0;rp});var r="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!r)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var n={},a=r&&(document.head||document.getElementsByTagName("head")[0]),i=null,o=0,s=!1,c=function(){},d=null,m="data-vue-ssr-id",u="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function p(e,C,t,r){s=t,d=r||{};var a=l(e,C);return f(a),function(C){for(var t=[],r=0;rt.parts.length&&(l.parts.length=t.parts.length)}else{var a=[];for(r=0;r{var C=e&&e.__esModule?()=>e.default:()=>e;return t.d(C,{a:C}),C},t.d=(e,C)=>{for(var l in C)t.o(C,l)&&!t.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:C[l]})},t.o=(e,C)=>Object.prototype.hasOwnProperty.call(e,C),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.dn=e=>{(Object.getOwnPropertyDescriptor(e,"name")||{}).writable||Object.defineProperty(e,"name",{value:"default",configurable:!0})},(()=>{"use strict";var e={};t.r(e),t.d(e,{metadata:()=>YC,name:()=>et,settings:()=>tt});var C={};t.r(C),t.d(C,{metadata:()=>fl,name:()=>El,settings:()=>vl});var l={};t.r(l),t.d(l,{metadata:()=>er,name:()=>lr,settings:()=>nr});var r={};t.r(r),t.d(r,{metadata:()=>jr,name:()=>Br,settings:()=>Pr});var n={};t.r(n),t.d(n,{metadata:()=>Kr,name:()=>Xr,settings:()=>en});var a={};t.r(a),t.d(a,{metadata:()=>an,name:()=>cn,settings:()=>mn});var i={};t.r(i),t.d(i,{metadata:()=>bn,name:()=>gn,settings:()=>yn});var o={};t.r(o),t.d(o,{metadata:()=>la,name:()=>ma,settings:()=>pa});var s={};t.r(s),t.d(s,{metadata:()=>qa,name:()=>Ua,settings:()=>Wa});var c={};t.r(c),t.d(c,{metadata:()=>bi,name:()=>gi,settings:()=>yi});var d={};t.r(d),t.d(d,{metadata:()=>Wi,name:()=>Yi,settings:()=>Qi});var m={};t.r(m),t.d(m,{metadata:()=>uo,name:()=>Ro,settings:()=>Do});var u={};t.r(u),t.d(u,{metadata:()=>fs,name:()=>hs,settings:()=>Ms});var p={};t.r(p),t.d(p,{metadata:()=>zs,name:()=>Ws,settings:()=>$s});var f={};t.r(f),t.d(f,{metadata:()=>sc,name:()=>mc,settings:()=>pc});var V={};t.r(V),t.d(V,{metadata:()=>yc,name:()=>wc,settings:()=>_c});var H={};t.r(H),t.d(H,{metadata:()=>Sc,name:()=>Nc,settings:()=>Oc});const h=window.React,b=window.wp.data,M=window.wp.i18n,L=window.wp.components,g=window.jfb.components,Z=window.jfb.actions,y=window.wp.element,E=(0,y.forwardRef)(function({icon:e,size:C=24,...t},l){return(0,y.cloneElement)(e,{width:C,height:C,...t,ref:l})});function w(e){var C=Object.create(null);return function(t){return void 0===C[t]&&(C[t]=e(t)),C[t]}}var v=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_=w(function(e){return v.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),k=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),C={},t=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,t]=e.split("_");C[t]=e}else t.push(e)})});const l=[];for(const e in C)Object.prototype.hasOwnProperty.call(C,e)&&l.push(C[e]);return l.push(...t),l.join(" ")},j=(e,C)=>{const t={};return Object.keys(e).filter((e=>C=>-1===e.indexOf(C))(C)).forEach(C=>{t[C]=e[C]}),t},x=(e,C)=>{},F=function(e){let C="";return t=>{const l=(l,r)=>{const{as:n=e,class:a=C}=l;var i;const o=function(e,C){const t=j(C,["as","class"]);if(!e){const e="function"==typeof _?{default:_}:_;Object.keys(t).forEach(C=>{e.default(C)||delete t[C]})}return t}(void 0===t.propsAsIs?!("string"==typeof n&&-1===n.indexOf("-")&&(i=n[0],i.toUpperCase()!==i)):t.propsAsIs,l);o.ref=r,o.className=t.atomic?k(t.class,o.className||a):k(o.className||a,t.class);const{vars:s}=t;if(s){const e={};for(const C in s){const r=s[C],n=r[0],a=r[1]||"",i="function"==typeof n?n(l):n;x(0,t.name),e[`--${C}`]=`${i}${a}`}const C=o.style||{},r=Object.keys(C);r.length>0&&r.forEach(t=>{e[t]=C[t]}),o.style=e}return e.__wyw_meta&&e!==n?(o.as=n,(0,h.createElement)(e,o)):(0,h.createElement)(n,o)},r=h.forwardRef?(0,h.forwardRef)(l):e=>{const C=j(e,["innerRef"]);return l(C,e.innerRef)};return r.displayName=t.name,r.__wyw_meta={className:t.class||C,extends:e},r}};const B=".components-modal__frame",{ActionModal:A,ActionModalHeaderSlotFill:P,ActionModalFooterSlotFill:S,ActionModalBackButton:N,ActionModalCloseButton:I}=JetFBComponents,{useCurrentAction:T,useActionCallback:O,useUpdateCurrentAction:J,useUpdateCurrentActionMeta:R}=JetFBHooks,q=F("div")({name:"ModalHeading",class:"mqz01w",propsAsIs:!1}),D=F("div")({name:"ModalHeader",class:"mqjtk22",propsAsIs:!1}),z=function(){var e;(0,y.useEffect)(()=>{const e=e=>{(e=>{const C=e.metaKey&&!e.ctrlKey,t=e.ctrlKey&&!e.metaKey;return(C||t)&&"z"===e.key.toLowerCase()&&!e.altKey})(e)&&(e=>{const C=e.composedPath?.();return C?.length?C.some(e=>e instanceof Element&&e.matches?.(B)):e.target?.closest?.(B)})(e)&&e.stopPropagation()};return window.addEventListener("keydown",e,!0),()=>{window.removeEventListener("keydown",e,!0)}},[]);const C=O(),t=R(),{setTypeSettings:l,clearCurrent:r}=J(),{currentAction:n,currentSettings:a}=T(),{editMeta:i}=(0,b.useDispatch)("jet-forms/actions"),{isSettingsModal:o,actionType:s,isShowErrorNotice:c}=(0,b.useSelect)(e=>({isSettingsModal:e("jet-forms/actions").isSettingsModal(),actionType:e("jet-forms/actions").getAction(n.type),isShowErrorNotice:e("jet-forms/actions").getErrorVisibility()}),[n.type]),d=(0,Z.useActionErrors)(o?n:{});if(!o)return null;const m=function(e={},C=""){const t=e?.editor_name;return"string"==typeof t&&t.trim()?t.trim():C}(n,null!==(e=s?.label)&&void 0!==e?e:""),u=Boolean(d.length)&&c;return(0,h.createElement)(A,{size:"large",__experimentalHideHeader:!0,onRequestClose:r,onCancelClick:r,onUpdateClick:()=>{t(n),r()}},(0,h.createElement)(D,{className:"components-modal__header"},(0,h.createElement)(q,{className:"components-modal__header-heading-container"},s.icon&&(0,h.createElement)(E,{icon:s.icon}),(0,h.createElement)("h1",{className:"components-modal__header-heading"},(0,M.sprintf)((0,M.__)("Edit %s","jet-form-builder"),m)),(0,h.createElement)(P.Slot,null)),(0,h.createElement)(N,null),(0,h.createElement)(I,null)),(0,h.createElement)("div",{style:{height:"40px"}}),C&&(0,h.createElement)(C,{settings:a,actionId:n.id,onChange:e=>l(e)}),(0,h.createElement)(S.Fill,null,({updateClick:e,cancelClick:C})=>(0,h.createElement)(g.StickyModalActions,{justify:"space-between"},(0,h.createElement)(L.Flex,{justify:"flex-start",gap:3,style:{flex:1}},(0,h.createElement)(L.Button,{isPrimary:!0,onClick:()=>{d?.length?i({errorsShow:!0}):e()}},(0,M.__)("Update","jet-form-builder")),(0,h.createElement)(L.Button,{isSecondary:!0,onClick:C},(0,M.__)("Cancel","jet-form-builder")),u&&(0,h.createElement)(g.IconText,null,(0,M.__)("You have errors in some fields","jet-form-builder"))),u&&(0,h.createElement)(L.Button,{variant:"tertiary",onClick:e},(0,M.__)("Update anyway","jet-form-builder")))))};t(2065);const U=window.JetFormEditorData.actionConditionSettings,{RepeaterItemContext:G,Repeater:W,RepeaterAddNew:K,AdvancedModalControl:$,RepeaterState:Y,BaseHelp:X}=JetFBComponents,{useRequestEvents:Q,useCurrentAction:ee,useUpdateCurrentAction:Ce,useMetaState:te}=JetFBHooks,{getFormFieldsBlocks:le}=JetFBActions,{SelectControl:re,TextareaControl:ne,ToggleControl:ae,FormTokenField:ie,TabPanel:oe}=wp.components,{__:se}=wp.i18n,{useSelect:ce}=wp.data,{useEffect:de,useState:me,useContext:ue,RawHTML:pe}=wp.element,fe=[{value:"and",label:se("AND (ALL conditions must be met)","jet-form-builder")},{value:"or",label:se("OR (at least ONE condition must be met)","jet-form-builder")}],Ve=window.JetFormEditorData.actionConditionExcludeEvents;function He(e,C){const t=U[e].find(e=>e.value===C);return(e,C="")=>t&&t[e]||C}function he({formFields:e}){const{currentItem:C,changeCurrentItem:t}=ue(G);let l=se("To fulfill this condition, the result of the check must be","jet-form-builder")+" ";l+=C.execute?"TRUE":"FALSE";const r=He("compare_value_formats",C.compare_value_format),n=He("operators",C.operator);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ae,{label:l,checked:C.execute,onChange:e=>{t({execute:e})}}),(0,h.createElement)(re,{label:"Operator",labelPosition:"side",help:n("help"),value:C.operator,options:U.operators,onChange:e=>t({operator:e})}),(0,h.createElement)(re,{label:"Field",labelPosition:"side",value:C.field,options:e,onChange:e=>t({field:e})}),(0,h.createElement)(re,{label:se("Type transform comparing value","jet-form-builder"),labelPosition:"side",value:C.compare_value_format,options:U.compare_value_formats,onChange:e=>{t({compare_value_format:e})}}),r("help").length>0&&(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:r("help")}}),(0,h.createElement)($,{value:C.default,label:se("Value to Compare","jet-form-builder"),macroWithCurrent:!0,onChangePreset:e=>{t({default:e})}},({instanceId:e})=>(0,h.createElement)(ne,{id:e,value:C.default,help:n("need_explode")?U.help_for_exploding_compare:"",onChange:e=>{t({default:e})}})))}function be({events:e}){var C;const{currentAction:t}=ee(),{setCurrentAction:l}=Ce(),[r,n]=me(!1),a=ce(e=>e("jet-forms/events").getHelpMap());return de(()=>{if(Ve[t.type]&&t.events.length){const e=t.events.filter(e=>!Ve[t.type].includes(e));t.events.some(C=>!e.includes(C))&&l({...t,events:e})}},[t,l]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ie,{label:se("Add event","jet-form-builder"),value:null!==(C=t.events)&&void 0!==C?C:[],suggestions:e,onChange:e=>l({...t,events:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0,__experimentalShowHowTo:""}),(0,h.createElement)(X,null,se("Separate with commas, spaces, or press Enter.","jet-form-builder")+" ",(0,h.createElement)("a",{href:"#",role:"button",onClick:()=>n(e=>!e)},se(r?"Hide":"Details","jet-form-builder"))),r&&(0,h.createElement)("ul",{className:"jet-fb-ul-revert-layer"},e.map(e=>(0,h.createElement)("li",{key:e},(0,h.createElement)("b",null,e),": ",(0,h.createElement)(pe,null,a[e])))))}function Me(){var e;const[C,t]=me([]);de(()=>{t(le([],"--"))},[]);const{currentAction:l}=ee(),{setCurrentAction:r,updateCurrentConditions:n}=Ce();return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(re,{key:"SelectControl-operator",label:se("Condition Operator","jet-form-builder"),labelPosition:"side",value:l.condition_operator||"and",options:fe,onChange:e=>r({...l,condition_operator:e})}),(0,h.createElement)(Y,{state:n},(0,h.createElement)(W,{items:null!==(e=l.conditions)&&void 0!==e?e:[]},(0,h.createElement)(he,{formFields:C})),(0,h.createElement)(K,{item:{execute:!0}},se("Add New Condition","jet-form-builder"))))}const Le=function(){var e;let C=Q();const{currentAction:t}=ee(),[l]=te("_jf_gateways",{}),r=ce(e=>e("jet-forms/events").getEventValuesByGateway());if("manual"===l?.mode&&r&&"object"==typeof r){const e=Object.keys(r).filter(e=>!!l?.[e]?.show_on_front).flatMap(e=>{var C;return null!==(C=r?.[e])&&void 0!==C?C:[]});C=Array.from(new Set([...null!=C?C:[],...e]))}if(Ve?.[t.type]){const e=Ve[t.type];C=(null!=C?C:[]).filter(C=>!e.includes(C))}return 1===(null!==(e=C?.length)&&void 0!==e?e:0)?(0,h.createElement)(Me,null):(0,h.createElement)(h.Fragment,null,(0,h.createElement)(oe,{className:"jfb-conditions-tab-panel",initialTabName:"fields",tabs:[{name:"fields",title:se("Fields comparison","jet-form-builder"),edit:(0,h.createElement)(Me,null)},{name:"events",title:se("Events match","jet-form-builder"),edit:(0,h.createElement)(be,{events:C})}]},e=>e.edit))},{__:ge}=wp.i18n,{ActionModal:Ze}=JetFBComponents,{useRequestEvents:ye,useUpdateCurrentActionMeta:Ee,useCurrentAction:we}=JetFBHooks,{useDispatch:ve,useSelect:_e}=wp.data,ke=function(){const e=_e(e=>e("jet-forms/actions").isConditionalModal()),{clearCurrent:C}=ve("jet-forms/actions",[]),t=Ee(),{currentAction:l}=we(),r=ye();if(!e)return null;const n=["width-60"];return 1!==r.length&&n.push("without-margin"),(0,h.createElement)(Ze,{classNames:n,title:ge("Edit Action Conditions & Events","jet-form-builder"),onRequestClose:C,onCancelClick:C,onUpdateClick:()=>{t({...l}),C()}},(0,h.createElement)(Le,null))},je=window.wp.editor,xe=(0,L.withFilters)("jet.fb.action.item")(Z.ListActionItem),Fe=F(g.Sortable)({name:"FlexSortable",class:"f13zt8l2",propsAsIs:!0}),Be=F(je.PluginDocumentSettingPanel)({name:"ActionsPanel",class:"am4szan",propsAsIs:!0}),Ae=F(L.Flex)({name:"StyledFlex",class:"s8wdwdc",propsAsIs:!0});t(1669);const Pe={base:{name:"jf-actions-panel",jfbApiVersion:2},settings:{render:function(){const[e,C]=(0,Z.useActions)(),t=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return(0,h.createElement)(Be,{title:(0,M.__)("Post Submit Actions","jet-form-builder")},(0,h.createElement)(Ae,{direction:"column",gap:3,className:t?"buddypress-active":""},(0,h.createElement)(Fe,{list:e,setList:C,direction:"vertical",handle:".jfb-action-handle",draggable:".jet-form-action.draggable"},e.map((e,C)=>(0,h.createElement)(y.Fragment,{key:e.id},(0,h.createElement)(Z.ActionListItemContext.Provider,{value:{index:C,action:e}},(0,h.createElement)(xe,null))))),(0,h.createElement)(Z.ActionsAfterNewButtonSlotFill.Slot,null,e=>(0,h.createElement)(L.Flex,{className:"jfb-actions-panel--buttons"},(0,h.createElement)(Z.AddActionButton,null),e))),(0,h.createElement)(Z.AllProActionsLink,null),(0,h.createElement)(z,null),(0,h.createElement)(ke,null))}}},{useMetaState:Se}=JetFBHooks,{TextControl:Ne,SelectControl:Ie,ToggleControl:Te}=wp.components,{__:Oe}=wp.i18n,Je=window.JetFormEditorData.argumentsSource||{},{__:Re}=wp.i18n,qe={base:{name:"jf-args-panel",title:Re("Form Settings","jet-form-builder"),jfbTest:2},settings:{render:function(){var e,C,t,l,r,n,a;const[i,o]=Se("_jf_args"),s=window.location.href.includes("post-new.php");let c="label",d="fieldset";var m,u;return s||(c=null!==(m=i?.fields_label_tag)&&void 0!==m?m:"div",d=null!==(u=i?.markup_type)&&void 0!==u?u:"div"),(0,h.useEffect)(()=>{i?.fields_label_tag||o(e=>({...e,fields_label_tag:c}))},[i,c,o]),(0,h.useEffect)(()=>{i?.markup_type||o(e=>({...e,markup_type:d}))},[i,d,o]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ie,{label:Oe("Fields Layout","jet-form-builder"),value:null!==(e=i?.fields_layout)&&void 0!==e?e:"",options:Je.fields_layout,onChange:e=>{o(C=>({...C,fields_layout:e}))}}),(0,h.createElement)(Ne,{label:Oe("Required Mark","jet-form-builder"),value:null!==(C=i?.required_mark)&&void 0!==C?C:"",onChange:e=>{o(C=>({...C,required_mark:e}))}}),(0,h.createElement)(Ie,{label:Oe("Fields label HTML tag","jet-form-builder"),value:null!==(t=i?.fields_label_tag)&&void 0!==t?t:c,options:Je.fields_label_tag,onChange:e=>{o(C=>({...C,fields_label_tag:e}))}}),(0,h.createElement)(Ie,{label:Oe("Markup type","jet-form-builder"),value:null!==(l=i?.markup_type)&&void 0!==l?l:d,options:Je.markup_type,onChange:e=>{o(C=>({...C,markup_type:e}))}}),(0,h.createElement)(Ie,{label:Oe("Submit Type","jet-form-builder"),value:null!==(r=i?.submit_type)&&void 0!==r?r:"",options:Je.submit_type,onChange:e=>{o(C=>({...C,submit_type:e}))}}),(0,h.createElement)(Te,{key:"enable_progress",label:Oe("Enable form pages progress","jet-form-builder"),checked:null!==(n=i?.enable_progress)&&void 0!==n&&n,help:Oe("Displays the progress of a multi-page form","jet-form-builder"),onChange:()=>{o(e=>{const C=!Boolean(e.enable_progress);return{...e,enable_progress:C}})}}),(0,h.createElement)(Te,{key:"clear_on_ajax",label:Oe("Clear data on success submit","jet-form-builder"),checked:null!==(a=i?.clear)&&void 0!==a&&a,help:Oe("Remove input values on successful submit","jet-form-builder"),onChange:()=>{o(e=>({...e,clear:!Boolean(e.clear)}))}}))},icon:"admin-settings"}},{GlobalField:De,AvailableMapField:ze}=JetFBComponents,{withPreset:Ue}=JetFBActions,Ge=Ue(function({value:e,availableFields:C,isMapFieldVisible:t,isVisible:l,onChange:r}){const n=(C,t)=>{r({...e,[t]:C})};return(0,h.createElement)(L.Flex,{direction:"column",gap:4},window.JetFormEditorData.presetConfig.global_fields.map((C,t)=>(0,h.createElement)(De,{key:C.name+t,value:e,index:t,data:C,options:C.options,onChangeValue:n,isVisible:l,position:"general"})),e.from&&C.map((C,l)=>(0,h.createElement)(ze,{key:C+l,fieldsMap:e.fields_map,field:C,index:l,onChangeValue:n,isMapFieldVisible:t,value:e})))}),{useMetaState:We}=JetFBHooks,{getAvailableFields:Ke}=JetFBActions,{__:$e}=wp.i18n,{__:Ye}=wp.i18n,Xe={base:{name:"jf-preset-panel",title:Ye("Preset Settings","jet-form-builder")},settings:{render:function(){var e,C;const{ToggleControl:t}=wp.components,[l,r]=We("_jf_preset"),n=(0,y.useMemo)(()=>l.enabled?Ke([],"preset"):[],[l.enabled]);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(t,{key:"enable_preset",label:$e("Enable","jet-form-builder"),checked:l.enabled,help:"Check this to enable global form preset",onChange:e=>{r(C=>({...C,enabled:e}))}}),l.enabled&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ge,{key:"_jf_preset_general",value:l,onChange:e=>{r(C=>({...C,...e,enabled:C.enabled}))},availableFields:n}),(0,h.createElement)(t,{label:$e("Restrict access","jet-form-builder"),checked:null===(e=l.restricted)||void 0===e||e,help:null===(C=l.restricted)||void 0===C||C?$e("Will set default value from preset only for users who allowed to edit this value","jet-form-builder"):$e("Always set default value from preset. Make sure it can't be accidentally changed from form Actions","jet-form-builder"),onChange:e=>{r(C=>({...C,restricted:e?void 0:e}))}})))},icon:"database-import"}},{TextControl:Qe}=wp.components,{useMetaState:eC}=JetFBHooks,{__:CC}=wp.i18n,tC={base:{name:"jf-messages-panel",title:CC("General Messages Settings","jet-form-builder")},settings:{render:function(){const[e,C]=eC("_jf_messages");return(0,h.createElement)(h.Fragment,null,Object.entries(JetFormEditorData.messagesDefault).map(([t,{label:l,value:r}],n)=>{var a;return(0,h.createElement)(Qe,{key:t+n,label:l,value:null!==(a=e[t])&&void 0!==a?a:r,onChange:e=>C(C=>({...C,[t]:e}))})}))},icon:"format-status"}},{__:lC}=wp.i18n,{__:rC}=wp.i18n,nC={base:{name:"jf-limit-responses-panel",title:rC("Limit Form Responses","jet-form-builder")},settings:{render:function(){const{limitResponses:e}=JetFormEditorData.utmLinks;return(0,h.createElement)("p",null,lC("You’re using free version of JetFormBuilder.","jet-form-builder")+"\n",(0,h.createElement)("a",{href:e,target:"_blank",rel:"noreferrer"},lC("Upgrade","jet-form-builder"))," "+lC("to unlock this feature.","jet-form-builder"))},icon:"lock"}},{__:aC}=wp.i18n,{__:iC}=wp.i18n,oC={base:{name:"jf-schedule-panel",title:iC("Form Schedule","jet-form-builder")},settings:{render:function(){const{scheduleForm:e}=JetFormEditorData.utmLinks;return(0,h.createElement)("p",null,aC("You’re using free version of JetFormBuilder.","jet-form-builder")+"\n",(0,h.createElement)("a",{href:e,target:"_blank",rel:"noreferrer"},aC("Upgrade","jet-form-builder"))," "+aC("to unlock this feature.","jet-form-builder"))},icon:"lock"}},{ActionModalContext:sC,ValidationMetaMessage:cC}=JetFBComponents,{useMetaState:dC,useGroupedValidationMessages:mC}=JetFBHooks,uC=function(){const[e,C]=dC("_jf_validation","{}",[]),t=mC(),[l,r]=(0,y.useState)(()=>{var C;return null!==(C=e.messages)&&void 0!==C?C:{}}),{actionClick:n,onRequestClose:a}=(0,y.useContext)(sC);return(0,y.useEffect)(()=>{n&&C(e=>({...e,messages:l})),null!==n&&a()},[n]),(0,h.createElement)(L.Flex,{gap:4,direction:"column"},t.map((e,C)=>(0,h.createElement)(cC,{key:"message_item"+e.id,message:e,messages:l,update:r,value:l[e.id],className:0!==C?"jet-control-full":"",style:0!==C?{}:{paddingBottom:"5px"}})))},{Button:pC,ToggleControl:fC,__experimentalToggleGroupControl:VC,__experimentalToggleGroupControlOption:HC}=wp.components,{__:hC}=wp.i18n,{useState:bC,useEffect:MC}=wp.element,{useMetaState:LC}=JetFBHooks,{ActionModal:gC}=JetFBComponents,{formats:ZC}=window.jetFormValidation,{__:yC}=wp.i18n,EC={base:{name:"jf-validation-panel",title:yC("Validation","jet-form-builder")},settings:{render:function(){var e,C,t;const[l,r]=LC("_jf_validation"),[n,a]=LC("_jf_args"),[i,o]=bC(!1),[s,c]=bC("render"===n.load_nonce);return MC(()=>{a(e=>({...e,load_nonce:s?"render":"hide"}))},[s]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(fC,{key:"load_nonce",label:hC("Enable form safety","jet-form-builder"),checked:s,help:hC("Protects the form with a WordPress nonce. Toggle this option off if the form's page's caching can't be disabled","jet-form-builder"),onChange:()=>{c(e=>!e)}}),(0,h.createElement)(fC,{label:hC("Enable csrf protection","jet-form-builder"),checked:null!==(e=n?.use_csrf)&&void 0!==e&&e,onChange:()=>{a(e=>{const C=!Boolean(e.use_csrf);return{...e,use_csrf:C}})}}),(0,h.createElement)(fC,{label:hC("Enable Honeypot protection","jet-form-builder"),checked:null!==(C=n?.use_honeypot)&&void 0!==C&&C,onChange:()=>{a(e=>({...e,use_honeypot:!Boolean(e.use_honeypot)}))}}),(0,h.createElement)(VC,{onChange:e=>r(C=>({...C,type:e})),value:null!==(t=l?.type)&&void 0!==t?t:"browser",label:hC("Validation type","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},ZC.map(e=>(0,h.createElement)(HC,{key:e.value+"_key",label:e.label,value:e.value,"aria-label":e.title,showTooltip:!0}))),"advanced"===l.type&&(0,h.createElement)(pC,{className:"jet-fb-button w-100 jc-center",isSecondary:!0,isSmall:!0,icon:"edit",onClick:()=>o(!0)},hC("Edit validation messages","jet-form-builder")),i&&(0,h.createElement)(gC,{title:"Edit Manual Options",onRequestClose:()=>o(!1),classNames:["width-60"]},(0,h.createElement)(uC,null)))},icon:"shield-alt"}},wC=window.wp.plugins;(0,wC.registerPlugin)("jf-rating-popover",{render:()=>((()=>{const e=jQuery(".interface-interface-skeleton__footer");e.find(".jet-fb-rating-message").remove();const C=(0,M.sprintf)((0,M.__)('Liked JetFormBuilder? Please rate it ★★★★★. For troubleshooting, contact Crocoblock support.',"jet-form-builder"),"https://wordpress.org/support/plugin/jetformbuilder/reviews/?filter=5","https://support.crocoblock.com/support/home/");e.append(`\n\t
${C}
\n`)})(),null)});const vC=window.wp.hooks,_C=e=>{const{base:C,settings:t}=e;C.jfbApiVersion&&1!==C.jfbApiVersion||(t.render=((e,C)=>{const t=e.render;return()=>(0,h.createElement)(je.PluginDocumentSettingPanel,{key:`plugin-panel-${C.name}`,...C},(0,h.createElement)(t,{key:`plugin-render-${C.name}`}))})(t,C)),(0,wC.getPlugin)(C.name)&&(0,wC.unregisterPlugin)(C.name),(0,wC.registerPlugin)(C.name,t)};JetFormEditorData.isActivePro||(0,vC.addFilter)("jet.fb.register.plugin.jf-actions-panel.after","jet-form-builder",e=>(e.push(oC,nC),e),0);const kC=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("g",{clipPath:"url(#clip0_273_2176)"},(0,h.createElement)("path",{d:"M22.4785 28.4268V29.5H17.208V28.4268H22.4785ZM17.4746 19.5469V29.5H16.1553V19.5469H17.4746ZM21.7812 23.8262V24.8994H17.208V23.8262H21.7812ZM22.4102 19.5469V20.627H17.208V19.5469H22.4102ZM24.7754 22.1035L26.3955 24.7969L28.0361 22.1035H29.5195L27.0996 25.7539L29.5947 29.5H28.1318L26.4229 26.7246L24.7139 29.5H23.2441L25.7324 25.7539L23.3193 22.1035H24.7754ZM33.9629 22.1035V23.0742H29.9639V22.1035H33.9629ZM31.3174 20.3057H32.582V27.668C32.582 27.9186 32.6208 28.1077 32.6982 28.2354C32.7757 28.363 32.876 28.4473 32.999 28.4883C33.1221 28.5293 33.2542 28.5498 33.3955 28.5498C33.5003 28.5498 33.6097 28.5407 33.7236 28.5225C33.8421 28.4997 33.931 28.4814 33.9902 28.4678L33.9971 29.5C33.8968 29.5319 33.7646 29.5615 33.6006 29.5889C33.4411 29.6208 33.2474 29.6367 33.0195 29.6367C32.7096 29.6367 32.4248 29.5752 32.165 29.4521C31.9053 29.3291 31.6979 29.124 31.543 28.8369C31.3926 28.5452 31.3174 28.1533 31.3174 27.6611V20.3057ZM36.7109 23.2656V29.5H35.4463V22.1035H36.6768L36.7109 23.2656ZM39.0215 22.0625L39.0146 23.2383C38.9098 23.2155 38.8096 23.2018 38.7139 23.1973C38.6227 23.1882 38.5179 23.1836 38.3994 23.1836C38.1077 23.1836 37.8503 23.2292 37.627 23.3203C37.4036 23.4115 37.2145 23.5391 37.0596 23.7031C36.9046 23.8672 36.7816 24.0632 36.6904 24.291C36.6038 24.5143 36.5469 24.7604 36.5195 25.0293L36.1641 25.2344C36.1641 24.7878 36.2074 24.3685 36.2939 23.9766C36.3851 23.5846 36.5241 23.2383 36.7109 22.9375C36.8978 22.6322 37.1348 22.3952 37.4219 22.2266C37.7135 22.0534 38.0599 21.9668 38.4609 21.9668C38.5521 21.9668 38.6569 21.9782 38.7754 22.001C38.8939 22.0192 38.9759 22.0397 39.0215 22.0625ZM44.2783 28.2354V24.4277C44.2783 24.1361 44.2191 23.8831 44.1006 23.6689C43.9867 23.4502 43.8135 23.2816 43.5811 23.1631C43.3486 23.0446 43.0615 22.9854 42.7197 22.9854C42.4007 22.9854 42.1204 23.04 41.8789 23.1494C41.6419 23.2588 41.4551 23.4023 41.3184 23.5801C41.1862 23.7578 41.1201 23.9492 41.1201 24.1543H39.8555C39.8555 23.89 39.9238 23.6279 40.0605 23.3682C40.1973 23.1084 40.3932 22.8737 40.6484 22.6641C40.9082 22.4499 41.2181 22.2812 41.5781 22.1582C41.9427 22.0306 42.3483 21.9668 42.7949 21.9668C43.3327 21.9668 43.8066 22.0579 44.2168 22.2402C44.6315 22.4225 44.9551 22.6982 45.1875 23.0674C45.4245 23.432 45.543 23.89 45.543 24.4414V27.8867C45.543 28.1328 45.5635 28.3949 45.6045 28.6729C45.6501 28.9508 45.7161 29.1901 45.8027 29.3906V29.5H44.4834C44.4196 29.3542 44.3695 29.1605 44.333 28.9189C44.2965 28.6729 44.2783 28.445 44.2783 28.2354ZM44.4971 25.0156L44.5107 25.9043H43.2324C42.8724 25.9043 42.5511 25.9339 42.2686 25.9932C41.986 26.0479 41.749 26.1322 41.5576 26.2461C41.3662 26.36 41.2204 26.5036 41.1201 26.6768C41.0199 26.8454 40.9697 27.0436 40.9697 27.2715C40.9697 27.5039 41.0221 27.7158 41.127 27.9072C41.2318 28.0986 41.389 28.2513 41.5986 28.3652C41.8128 28.4746 42.0749 28.5293 42.3848 28.5293C42.7721 28.5293 43.1139 28.4473 43.4102 28.2832C43.7064 28.1191 43.9411 27.9186 44.1143 27.6816C44.292 27.4447 44.3877 27.2145 44.4014 26.9912L44.9414 27.5996C44.9095 27.791 44.8229 28.0029 44.6816 28.2354C44.5404 28.4678 44.3512 28.6911 44.1143 28.9053C43.8818 29.1149 43.6038 29.2904 43.2803 29.4316C42.9613 29.5684 42.6012 29.6367 42.2002 29.6367C41.6989 29.6367 41.2591 29.5387 40.8809 29.3428C40.5072 29.1468 40.2155 28.8848 40.0059 28.5566C39.8008 28.224 39.6982 27.8525 39.6982 27.4424C39.6982 27.0459 39.7757 26.6973 39.9307 26.3965C40.0856 26.0911 40.3089 25.8382 40.6006 25.6377C40.8923 25.4326 41.2432 25.2777 41.6533 25.1729C42.0635 25.068 42.5215 25.0156 43.0273 25.0156H44.4971ZM55.3115 27.5381C55.3115 27.3558 55.2705 27.1872 55.1885 27.0322C55.111 26.8727 54.9492 26.7292 54.7031 26.6016C54.4616 26.4694 54.097 26.3555 53.6094 26.2598C53.1992 26.1732 52.8278 26.0706 52.4951 25.9521C52.167 25.8337 51.8867 25.6901 51.6543 25.5215C51.4264 25.3529 51.251 25.1546 51.1279 24.9268C51.0049 24.6989 50.9434 24.4323 50.9434 24.127C50.9434 23.8353 51.0072 23.5596 51.1348 23.2998C51.2669 23.04 51.4515 22.8099 51.6885 22.6094C51.93 22.4089 52.2194 22.2516 52.5566 22.1377C52.8939 22.0238 53.2699 21.9668 53.6846 21.9668C54.277 21.9668 54.7829 22.0716 55.2021 22.2812C55.6214 22.4909 55.9427 22.7712 56.166 23.1221C56.3893 23.4684 56.501 23.8535 56.501 24.2773H55.2363C55.2363 24.0723 55.1748 23.874 55.0518 23.6826C54.9333 23.4867 54.7578 23.3249 54.5254 23.1973C54.2975 23.0697 54.0173 23.0059 53.6846 23.0059C53.3337 23.0059 53.0488 23.0605 52.8301 23.1699C52.6159 23.2747 52.4587 23.4092 52.3584 23.5732C52.2627 23.7373 52.2148 23.9105 52.2148 24.0928C52.2148 24.2295 52.2376 24.3525 52.2832 24.4619C52.3333 24.5667 52.4199 24.6647 52.543 24.7559C52.666 24.8424 52.8392 24.9245 53.0625 25.002C53.2858 25.0794 53.5706 25.1569 53.917 25.2344C54.5231 25.3711 55.0221 25.5352 55.4141 25.7266C55.806 25.918 56.0977 26.1527 56.2891 26.4307C56.4805 26.7087 56.5762 27.0459 56.5762 27.4424C56.5762 27.766 56.5078 28.0622 56.3711 28.3311C56.2389 28.5999 56.0452 28.8324 55.79 29.0283C55.5394 29.2197 55.2386 29.3701 54.8877 29.4795C54.5413 29.5843 54.1517 29.6367 53.7188 29.6367C53.0671 29.6367 52.5156 29.5205 52.0645 29.2881C51.6133 29.0557 51.2715 28.7549 51.0391 28.3857C50.8066 28.0166 50.6904 27.627 50.6904 27.2168H51.9619C51.9801 27.5632 52.0804 27.8389 52.2627 28.0439C52.445 28.2445 52.6683 28.388 52.9326 28.4746C53.1969 28.5566 53.459 28.5977 53.7188 28.5977C54.0651 28.5977 54.3545 28.5521 54.5869 28.4609C54.8239 28.3698 55.0039 28.2445 55.127 28.085C55.25 27.9255 55.3115 27.7432 55.3115 27.5381ZM61.3066 29.6367C60.7917 29.6367 60.3245 29.5501 59.9053 29.377C59.4906 29.1992 59.1328 28.9508 58.832 28.6318C58.5358 28.3128 58.3079 27.9346 58.1484 27.4971C57.9889 27.0596 57.9092 26.5811 57.9092 26.0615V25.7744C57.9092 25.1729 57.998 24.6374 58.1758 24.168C58.3535 23.694 58.5951 23.293 58.9004 22.9648C59.2057 22.6367 59.5521 22.3883 59.9395 22.2197C60.3268 22.0511 60.7279 21.9668 61.1426 21.9668C61.6712 21.9668 62.127 22.0579 62.5098 22.2402C62.8971 22.4225 63.2139 22.6777 63.46 23.0059C63.7061 23.3294 63.8883 23.7122 64.0068 24.1543C64.1253 24.5918 64.1846 25.0703 64.1846 25.5898V26.1572H58.6611V25.125H62.9199V25.0293C62.9017 24.7012 62.8333 24.3822 62.7148 24.0723C62.6009 23.7624 62.4186 23.5072 62.168 23.3066C61.9173 23.1061 61.5755 23.0059 61.1426 23.0059C60.8555 23.0059 60.5911 23.0674 60.3496 23.1904C60.1081 23.3089 59.9007 23.4867 59.7275 23.7236C59.5544 23.9606 59.4199 24.25 59.3242 24.5918C59.2285 24.9336 59.1807 25.3278 59.1807 25.7744V26.0615C59.1807 26.4124 59.2285 26.7428 59.3242 27.0527C59.4245 27.3581 59.568 27.627 59.7549 27.8594C59.9463 28.0918 60.1764 28.2741 60.4453 28.4062C60.7188 28.5384 61.0286 28.6045 61.375 28.6045C61.8216 28.6045 62.1999 28.5133 62.5098 28.3311C62.8197 28.1488 63.0908 27.9049 63.3232 27.5996L64.0889 28.208C63.9294 28.4495 63.7266 28.6797 63.4805 28.8984C63.2344 29.1172 62.9313 29.2949 62.5713 29.4316C62.2158 29.5684 61.7943 29.6367 61.3066 29.6367ZM66.9258 23.2656V29.5H65.6611V22.1035H66.8916L66.9258 23.2656ZM69.2363 22.0625L69.2295 23.2383C69.1247 23.2155 69.0244 23.2018 68.9287 23.1973C68.8376 23.1882 68.7327 23.1836 68.6143 23.1836C68.3226 23.1836 68.0651 23.2292 67.8418 23.3203C67.6185 23.4115 67.4294 23.5391 67.2744 23.7031C67.1195 23.8672 66.9964 24.0632 66.9053 24.291C66.8187 24.5143 66.7617 24.7604 66.7344 25.0293L66.3789 25.2344C66.3789 24.7878 66.4222 24.3685 66.5088 23.9766C66.5999 23.5846 66.7389 23.2383 66.9258 22.9375C67.1126 22.6322 67.3496 22.3952 67.6367 22.2266C67.9284 22.0534 68.2747 21.9668 68.6758 21.9668C68.7669 21.9668 68.8717 21.9782 68.9902 22.001C69.1087 22.0192 69.1908 22.0397 69.2363 22.0625ZM72.7773 28.3584L74.8008 22.1035H76.0928L73.4336 29.5H72.5859L72.7773 28.3584ZM71.0889 22.1035L73.1738 28.3926L73.3174 29.5H72.4697L69.79 22.1035H71.0889ZM78.6836 22.1035V29.5H77.4121V22.1035H78.6836ZM77.3164 20.1416C77.3164 19.9365 77.3779 19.7633 77.501 19.6221C77.6286 19.4808 77.8154 19.4102 78.0615 19.4102C78.3031 19.4102 78.4876 19.4808 78.6152 19.6221C78.7474 19.7633 78.8135 19.9365 78.8135 20.1416C78.8135 20.3376 78.7474 20.5062 78.6152 20.6475C78.4876 20.7842 78.3031 20.8525 78.0615 20.8525C77.8154 20.8525 77.6286 20.7842 77.501 20.6475C77.3779 20.5062 77.3164 20.3376 77.3164 20.1416ZM83.6738 28.5977C83.9746 28.5977 84.2526 28.5361 84.5078 28.4131C84.763 28.29 84.9727 28.1214 85.1367 27.9072C85.3008 27.6885 85.3942 27.4401 85.417 27.1621H86.6201C86.5973 27.5996 86.4492 28.0075 86.1758 28.3857C85.9069 28.7594 85.5537 29.0625 85.1162 29.2949C84.6787 29.5228 84.1979 29.6367 83.6738 29.6367C83.1178 29.6367 82.6325 29.5387 82.2178 29.3428C81.8076 29.1468 81.4658 28.8779 81.1924 28.5361C80.9235 28.1943 80.7207 27.8024 80.584 27.3604C80.4518 26.9137 80.3857 26.4421 80.3857 25.9453V25.6582C80.3857 25.1615 80.4518 24.6921 80.584 24.25C80.7207 23.8034 80.9235 23.4092 81.1924 23.0674C81.4658 22.7256 81.8076 22.4567 82.2178 22.2607C82.6325 22.0648 83.1178 21.9668 83.6738 21.9668C84.2526 21.9668 84.7585 22.0853 85.1914 22.3223C85.6243 22.5547 85.9639 22.8737 86.21 23.2793C86.4606 23.6803 86.5973 24.1361 86.6201 24.6465H85.417C85.3942 24.3411 85.3076 24.0654 85.1572 23.8193C85.0114 23.5732 84.8109 23.3773 84.5557 23.2314C84.305 23.0811 84.0111 23.0059 83.6738 23.0059C83.2865 23.0059 82.9606 23.0833 82.6963 23.2383C82.4365 23.3887 82.2292 23.5938 82.0742 23.8535C81.9238 24.1087 81.8145 24.3936 81.7461 24.708C81.6823 25.0179 81.6504 25.3346 81.6504 25.6582V25.9453C81.6504 26.2689 81.6823 26.5879 81.7461 26.9023C81.8099 27.2168 81.917 27.5016 82.0674 27.7568C82.2223 28.012 82.4297 28.2171 82.6895 28.3721C82.9538 28.5225 83.2819 28.5977 83.6738 28.5977ZM91.1113 29.6367C90.5964 29.6367 90.1292 29.5501 89.71 29.377C89.2952 29.1992 88.9375 28.9508 88.6367 28.6318C88.3405 28.3128 88.1126 27.9346 87.9531 27.4971C87.7936 27.0596 87.7139 26.5811 87.7139 26.0615V25.7744C87.7139 25.1729 87.8027 24.6374 87.9805 24.168C88.1582 23.694 88.3997 23.293 88.7051 22.9648C89.0104 22.6367 89.3568 22.3883 89.7441 22.2197C90.1315 22.0511 90.5326 21.9668 90.9473 21.9668C91.4759 21.9668 91.9316 22.0579 92.3145 22.2402C92.7018 22.4225 93.0186 22.6777 93.2646 23.0059C93.5107 23.3294 93.693 23.7122 93.8115 24.1543C93.93 24.5918 93.9893 25.0703 93.9893 25.5898V26.1572H88.4658V25.125H92.7246V25.0293C92.7064 24.7012 92.638 24.3822 92.5195 24.0723C92.4056 23.7624 92.2233 23.5072 91.9727 23.3066C91.722 23.1061 91.3802 23.0059 90.9473 23.0059C90.6602 23.0059 90.3958 23.0674 90.1543 23.1904C89.9128 23.3089 89.7054 23.4867 89.5322 23.7236C89.359 23.9606 89.2246 24.25 89.1289 24.5918C89.0332 24.9336 88.9854 25.3278 88.9854 25.7744V26.0615C88.9854 26.4124 89.0332 26.7428 89.1289 27.0527C89.2292 27.3581 89.3727 27.627 89.5596 27.8594C89.751 28.0918 89.9811 28.2741 90.25 28.4062C90.5234 28.5384 90.8333 28.6045 91.1797 28.6045C91.6263 28.6045 92.0046 28.5133 92.3145 28.3311C92.6243 28.1488 92.8955 27.9049 93.1279 27.5996L93.8936 28.208C93.734 28.4495 93.5312 28.6797 93.2852 28.8984C93.0391 29.1172 92.736 29.2949 92.376 29.4316C92.0205 29.5684 91.599 29.6367 91.1113 29.6367ZM99.7725 27.5381C99.7725 27.3558 99.7314 27.1872 99.6494 27.0322C99.5719 26.8727 99.4102 26.7292 99.1641 26.6016C98.9225 26.4694 98.5579 26.3555 98.0703 26.2598C97.6602 26.1732 97.2887 26.0706 96.9561 25.9521C96.6279 25.8337 96.3477 25.6901 96.1152 25.5215C95.8874 25.3529 95.7119 25.1546 95.5889 24.9268C95.4658 24.6989 95.4043 24.4323 95.4043 24.127C95.4043 23.8353 95.4681 23.5596 95.5957 23.2998C95.7279 23.04 95.9124 22.8099 96.1494 22.6094C96.391 22.4089 96.6803 22.2516 97.0176 22.1377C97.3548 22.0238 97.7308 21.9668 98.1455 21.9668C98.738 21.9668 99.2438 22.0716 99.6631 22.2812C100.082 22.4909 100.404 22.7712 100.627 23.1221C100.85 23.4684 100.962 23.8535 100.962 24.2773H99.6973C99.6973 24.0723 99.6357 23.874 99.5127 23.6826C99.3942 23.4867 99.2188 23.3249 98.9863 23.1973C98.7585 23.0697 98.4782 23.0059 98.1455 23.0059C97.7946 23.0059 97.5098 23.0605 97.291 23.1699C97.0768 23.2747 96.9196 23.4092 96.8193 23.5732C96.7236 23.7373 96.6758 23.9105 96.6758 24.0928C96.6758 24.2295 96.6986 24.3525 96.7441 24.4619C96.7943 24.5667 96.8809 24.6647 97.0039 24.7559C97.127 24.8424 97.3001 24.9245 97.5234 25.002C97.7467 25.0794 98.0316 25.1569 98.3779 25.2344C98.984 25.3711 99.4831 25.5352 99.875 25.7266C100.267 25.918 100.559 26.1527 100.75 26.4307C100.941 26.7087 101.037 27.0459 101.037 27.4424C101.037 27.766 100.969 28.0622 100.832 28.3311C100.7 28.5999 100.506 28.8324 100.251 29.0283C100 29.2197 99.6995 29.3701 99.3486 29.4795C99.0023 29.5843 98.6126 29.6367 98.1797 29.6367C97.528 29.6367 96.9766 29.5205 96.5254 29.2881C96.0742 29.0557 95.7324 28.7549 95.5 28.3857C95.2676 28.0166 95.1514 27.627 95.1514 27.2168H96.4229C96.4411 27.5632 96.5413 27.8389 96.7236 28.0439C96.9059 28.2445 97.1292 28.388 97.3936 28.4746C97.6579 28.5566 97.9199 28.5977 98.1797 28.5977C98.526 28.5977 98.8154 28.5521 99.0479 28.4609C99.2848 28.3698 99.4648 28.2445 99.5879 28.085C99.7109 27.9255 99.7725 27.7432 99.7725 27.5381Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M29.25 41.25V51.75H18.75V41.25H29.25ZM29.25 39.75H18.75C17.925 39.75 17.25 40.425 17.25 41.25V51.75C17.25 52.575 17.925 53.25 18.75 53.25H29.25C30.075 53.25 30.75 52.575 30.75 51.75V41.25C30.75 40.425 30.075 39.75 29.25 39.75Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M40.3672 46.6772H38.0249L38.0122 45.6934H40.1387C40.4899 45.6934 40.7967 45.6341 41.0591 45.5156C41.3215 45.3971 41.5246 45.2279 41.6685 45.0078C41.8166 44.7835 41.8906 44.5169 41.8906 44.208C41.8906 43.8695 41.825 43.5944 41.6938 43.3828C41.5669 43.167 41.3701 43.0104 41.1035 42.9131C40.8411 42.8115 40.5068 42.7607 40.1006 42.7607H38.2979V51H37.0728V41.7578H40.1006C40.5745 41.7578 40.9977 41.8065 41.3701 41.9038C41.7425 41.9969 42.0578 42.145 42.3159 42.3481C42.5783 42.547 42.7772 42.8009 42.9126 43.1099C43.048 43.4188 43.1157 43.7891 43.1157 44.2207C43.1157 44.6016 43.0184 44.9465 42.8237 45.2554C42.6291 45.5601 42.3582 45.8097 42.0112 46.0044C41.6685 46.1991 41.2664 46.3239 40.8052 46.3789L40.3672 46.6772ZM40.3101 51H37.5425L38.2344 50.0034H40.3101C40.6994 50.0034 41.0295 49.9357 41.3003 49.8003C41.5754 49.6649 41.7848 49.4744 41.9287 49.229C42.0726 48.9793 42.1445 48.6852 42.1445 48.3467C42.1445 48.0039 42.0832 47.7077 41.9604 47.458C41.8377 47.2083 41.6452 47.0158 41.3828 46.8804C41.1204 46.745 40.7819 46.6772 40.3672 46.6772H38.6216L38.6343 45.6934H41.021L41.2812 46.0488C41.7256 46.0869 42.1022 46.2139 42.4111 46.4297C42.7201 46.6413 42.9549 46.9121 43.1157 47.2422C43.2808 47.5723 43.3633 47.9362 43.3633 48.334C43.3633 48.9095 43.2363 49.3962 42.9824 49.7939C42.7327 50.1875 42.3794 50.488 41.9224 50.6953C41.4653 50.8984 40.9279 51 40.3101 51ZM46.1689 45.2109V51H44.9946V44.1318H46.1372L46.1689 45.2109ZM48.3145 44.0938L48.3081 45.1855C48.2108 45.1644 48.1177 45.1517 48.0288 45.1475C47.9442 45.139 47.8468 45.1348 47.7368 45.1348C47.466 45.1348 47.2269 45.1771 47.0195 45.2617C46.8122 45.3464 46.6366 45.4648 46.4927 45.6172C46.3488 45.7695 46.2345 45.9515 46.1499 46.1631C46.0695 46.3704 46.0166 46.599 45.9912 46.8486L45.6611 47.0391C45.6611 46.6243 45.7013 46.235 45.7817 45.8711C45.8664 45.5072 45.9954 45.1855 46.1689 44.9062C46.3424 44.6227 46.5625 44.4027 46.8291 44.2461C47.0999 44.0853 47.4215 44.0049 47.7939 44.0049C47.8786 44.0049 47.9759 44.0155 48.0859 44.0366C48.196 44.0535 48.2721 44.0726 48.3145 44.0938ZM52.123 51.127C51.6449 51.127 51.2111 51.0465 50.8218 50.8857C50.4367 50.7207 50.1045 50.4901 49.8252 50.1938C49.5501 49.8976 49.3385 49.5464 49.1904 49.1401C49.0423 48.7339 48.9683 48.2896 48.9683 47.8071V47.5405C48.9683 46.9819 49.0508 46.4847 49.2158 46.0488C49.3809 45.6087 49.6051 45.2363 49.8887 44.9316C50.1722 44.627 50.4938 44.3963 50.8535 44.2397C51.2132 44.0832 51.5856 44.0049 51.9707 44.0049C52.4616 44.0049 52.8848 44.0895 53.2402 44.2588C53.5999 44.4281 53.894 44.665 54.1226 44.9697C54.3511 45.2702 54.5203 45.6257 54.6304 46.0361C54.7404 46.4424 54.7954 46.8867 54.7954 47.3691V47.896H49.6665V46.9375H53.6211V46.8486C53.6042 46.5439 53.5407 46.2477 53.4307 45.96C53.3249 45.6722 53.1556 45.4352 52.9229 45.249C52.6901 45.0628 52.3727 44.9697 51.9707 44.9697C51.7041 44.9697 51.4587 45.0269 51.2344 45.1411C51.0101 45.2511 50.8175 45.4162 50.6567 45.6362C50.4959 45.8563 50.3711 46.125 50.2822 46.4424C50.1934 46.7598 50.1489 47.1258 50.1489 47.5405V47.8071C50.1489 48.133 50.1934 48.4398 50.2822 48.7275C50.3753 49.0111 50.5086 49.2607 50.6821 49.4766C50.8599 49.6924 51.0736 49.8617 51.3232 49.9844C51.5771 50.1071 51.8649 50.1685 52.1865 50.1685C52.6012 50.1685 52.9525 50.0838 53.2402 49.9146C53.528 49.7453 53.7798 49.5189 53.9956 49.2354L54.7065 49.8003C54.5584 50.0246 54.3701 50.2383 54.1416 50.4414C53.9131 50.6445 53.6317 50.8096 53.2974 50.9365C52.9673 51.0635 52.5758 51.127 52.123 51.127ZM60.2163 49.8257V46.29C60.2163 46.0192 60.1613 45.7843 60.0513 45.5854C59.9455 45.3823 59.7847 45.2257 59.5688 45.1157C59.353 45.0057 59.0864 44.9507 58.769 44.9507C58.4728 44.9507 58.2126 45.0015 57.9883 45.103C57.7682 45.2046 57.5947 45.3379 57.4678 45.5029C57.3451 45.668 57.2837 45.8457 57.2837 46.0361H56.1094C56.1094 45.7907 56.1729 45.5474 56.2998 45.3062C56.4268 45.0649 56.6087 44.847 56.8457 44.6523C57.0869 44.4535 57.3747 44.2969 57.709 44.1826C58.0475 44.0641 58.4242 44.0049 58.8389 44.0049C59.3382 44.0049 59.7783 44.0895 60.1592 44.2588C60.5443 44.4281 60.8447 44.6841 61.0605 45.0269C61.2806 45.3654 61.3906 45.7907 61.3906 46.3027V49.502C61.3906 49.7305 61.4097 49.9738 61.4478 50.2319C61.4901 50.4901 61.5514 50.7122 61.6318 50.8984V51H60.4067C60.3475 50.8646 60.3009 50.6847 60.2671 50.4604C60.2332 50.2319 60.2163 50.0203 60.2163 49.8257ZM60.4194 46.8359L60.4321 47.6611H59.2451C58.9108 47.6611 58.6125 47.6886 58.3501 47.7437C58.0877 47.7944 57.8677 47.8727 57.6899 47.9785C57.5122 48.0843 57.3768 48.2176 57.2837 48.3784C57.1906 48.535 57.144 48.7191 57.144 48.9307C57.144 49.1465 57.1927 49.3433 57.29 49.521C57.3874 49.6987 57.5334 49.8405 57.728 49.9463C57.9269 50.0479 58.1702 50.0986 58.458 50.0986C58.8177 50.0986 59.1351 50.0225 59.4102 49.8701C59.6852 49.7178 59.9032 49.5316 60.064 49.3115C60.229 49.0915 60.3179 48.8778 60.3306 48.6704L60.832 49.2354C60.8024 49.4131 60.722 49.6099 60.5908 49.8257C60.4596 50.0415 60.284 50.2489 60.064 50.4478C59.8481 50.6424 59.59 50.8053 59.2896 50.9365C58.9933 51.0635 58.659 51.127 58.2866 51.127C57.8211 51.127 57.4128 51.036 57.0615 50.854C56.7145 50.672 56.4437 50.4287 56.249 50.124C56.0586 49.8151 55.9634 49.4702 55.9634 49.0894C55.9634 48.7212 56.0353 48.3975 56.1792 48.1182C56.3231 47.8346 56.5304 47.5998 56.8013 47.4136C57.0721 47.2231 57.3979 47.0793 57.7788 46.9819C58.1597 46.8846 58.585 46.8359 59.0547 46.8359H60.4194ZM64.4185 41.25V51H63.2378V41.25H64.4185ZM68.6143 44.1318L65.6182 47.3374L63.9424 49.0767L63.8472 47.8262L65.0469 46.3916L67.1797 44.1318H68.6143ZM67.5415 51L65.0913 47.7246L65.7007 46.6772L68.9253 51H67.5415ZM71.5786 51H70.4043V43.4082C70.4043 42.9131 70.4932 42.4963 70.6709 42.1577C70.8529 41.8149 71.1131 41.5568 71.4517 41.3833C71.7902 41.2056 72.1922 41.1167 72.6577 41.1167C72.7931 41.1167 72.9285 41.1252 73.064 41.1421C73.2036 41.159 73.339 41.1844 73.4702 41.2183L73.4067 42.1768C73.3179 42.1556 73.2163 42.1408 73.1021 42.1323C72.992 42.1239 72.882 42.1196 72.772 42.1196C72.5223 42.1196 72.3065 42.1704 72.1245 42.272C71.9468 42.3693 71.8114 42.5132 71.7183 42.7036C71.6252 42.894 71.5786 43.1289 71.5786 43.4082V51ZM73.0386 44.1318V45.0332H69.3188V44.1318H73.0386ZM78.396 49.8257V46.29C78.396 46.0192 78.341 45.7843 78.231 45.5854C78.1252 45.3823 77.9644 45.2257 77.7485 45.1157C77.5327 45.0057 77.2661 44.9507 76.9487 44.9507C76.6525 44.9507 76.3923 45.0015 76.168 45.103C75.9479 45.2046 75.7744 45.3379 75.6475 45.5029C75.5247 45.668 75.4634 45.8457 75.4634 46.0361H74.2891C74.2891 45.7907 74.3525 45.5474 74.4795 45.3062C74.6064 45.0649 74.7884 44.847 75.0254 44.6523C75.2666 44.4535 75.5544 44.2969 75.8887 44.1826C76.2272 44.0641 76.6038 44.0049 77.0186 44.0049C77.5179 44.0049 77.958 44.0895 78.3389 44.2588C78.724 44.4281 79.0244 44.6841 79.2402 45.0269C79.4603 45.3654 79.5703 45.7907 79.5703 46.3027V49.502C79.5703 49.7305 79.5894 49.9738 79.6274 50.2319C79.6698 50.4901 79.7311 50.7122 79.8115 50.8984V51H78.5864C78.5272 50.8646 78.4806 50.6847 78.4468 50.4604C78.4129 50.2319 78.396 50.0203 78.396 49.8257ZM78.5991 46.8359L78.6118 47.6611H77.4248C77.0905 47.6611 76.7922 47.6886 76.5298 47.7437C76.2674 47.7944 76.0474 47.8727 75.8696 47.9785C75.6919 48.0843 75.5565 48.2176 75.4634 48.3784C75.3703 48.535 75.3237 48.7191 75.3237 48.9307C75.3237 49.1465 75.3724 49.3433 75.4697 49.521C75.5671 49.6987 75.7131 49.8405 75.9077 49.9463C76.1066 50.0479 76.3499 50.0986 76.6377 50.0986C76.9974 50.0986 77.3148 50.0225 77.5898 49.8701C77.8649 49.7178 78.0828 49.5316 78.2437 49.3115C78.4087 49.0915 78.4976 48.8778 78.5103 48.6704L79.0117 49.2354C78.9821 49.4131 78.9017 49.6099 78.7705 49.8257C78.6393 50.0415 78.4637 50.2489 78.2437 50.4478C78.0278 50.6424 77.7697 50.8053 77.4692 50.9365C77.173 51.0635 76.8387 51.127 76.4663 51.127C76.0008 51.127 75.5924 51.036 75.2412 50.854C74.8942 50.672 74.6234 50.4287 74.4287 50.124C74.2383 49.8151 74.1431 49.4702 74.1431 49.0894C74.1431 48.7212 74.215 48.3975 74.3589 48.1182C74.5028 47.8346 74.7101 47.5998 74.981 47.4136C75.2518 47.2231 75.5776 47.0793 75.9585 46.9819C76.3394 46.8846 76.7646 46.8359 77.2344 46.8359H78.5991ZM85.4165 49.1782C85.4165 49.009 85.3784 48.8524 85.3022 48.7085C85.2303 48.5604 85.0801 48.4271 84.8516 48.3086C84.6273 48.1859 84.2887 48.0801 83.8359 47.9912C83.4551 47.9108 83.1102 47.8156 82.8013 47.7056C82.4966 47.5955 82.2363 47.4622 82.0205 47.3057C81.8089 47.1491 81.646 46.965 81.5317 46.7534C81.4175 46.5418 81.3604 46.2943 81.3604 46.0107C81.3604 45.7399 81.4196 45.4839 81.5381 45.2427C81.6608 45.0015 81.8322 44.7878 82.0522 44.6016C82.2765 44.4154 82.5452 44.2694 82.8584 44.1636C83.1715 44.0578 83.5207 44.0049 83.9058 44.0049C84.4559 44.0049 84.9256 44.1022 85.3149 44.2969C85.7043 44.4915 86.0026 44.7518 86.21 45.0776C86.4173 45.3993 86.521 45.7568 86.521 46.1504H85.3467C85.3467 45.96 85.2896 45.7759 85.1753 45.5981C85.0653 45.4162 84.9023 45.266 84.6865 45.1475C84.4749 45.029 84.2147 44.9697 83.9058 44.9697C83.5799 44.9697 83.3154 45.0205 83.1123 45.1221C82.9134 45.2194 82.7674 45.3442 82.6743 45.4966C82.5854 45.6489 82.541 45.8097 82.541 45.979C82.541 46.106 82.5622 46.2202 82.6045 46.3218C82.651 46.4191 82.7314 46.5101 82.8457 46.5947C82.96 46.6751 83.1208 46.7513 83.3281 46.8232C83.5355 46.8952 83.8 46.9671 84.1216 47.0391C84.6844 47.166 85.1478 47.3184 85.5117 47.4961C85.8757 47.6738 86.1465 47.8918 86.3242 48.1499C86.502 48.408 86.5908 48.7212 86.5908 49.0894C86.5908 49.3898 86.5273 49.6649 86.4004 49.9146C86.2777 50.1642 86.0978 50.38 85.8608 50.562C85.6281 50.7397 85.3488 50.8794 85.0229 50.981C84.7013 51.0783 84.3395 51.127 83.9375 51.127C83.3324 51.127 82.8203 51.019 82.4014 50.8032C81.9824 50.5874 81.665 50.3081 81.4492 49.9653C81.2334 49.6226 81.1255 49.2607 81.1255 48.8799H82.3062C82.3231 49.2015 82.4162 49.4575 82.5854 49.6479C82.7547 49.8341 82.9621 49.9674 83.2075 50.0479C83.453 50.124 83.6963 50.1621 83.9375 50.1621C84.2591 50.1621 84.5278 50.1198 84.7437 50.0352C84.9637 49.9505 85.1309 49.8341 85.2451 49.686C85.3594 49.5379 85.4165 49.3687 85.4165 49.1782ZM91.0088 44.1318V45.0332H87.2954V44.1318H91.0088ZM88.5522 42.4624H89.7266V49.2988C89.7266 49.5316 89.7625 49.7072 89.8345 49.8257C89.9064 49.9442 89.9995 50.0225 90.1138 50.0605C90.228 50.0986 90.3507 50.1177 90.4819 50.1177C90.5793 50.1177 90.6808 50.1092 90.7866 50.0923C90.8966 50.0711 90.9792 50.0542 91.0342 50.0415L91.0405 51C90.9474 51.0296 90.8247 51.0571 90.6724 51.0825C90.5243 51.1121 90.3444 51.127 90.1328 51.127C89.8451 51.127 89.5806 51.0698 89.3394 50.9556C89.0981 50.8413 88.9056 50.6509 88.7617 50.3843C88.6221 50.1134 88.5522 49.7495 88.5522 49.2925V42.4624ZM101.546 46.0425V47.147H95.2109V46.0425H101.546ZM98.9688 43.3447V50.0732H97.7944V43.3447H98.9688ZM109.595 40.2598V42.1958H108.643V40.2598H109.595ZM109.48 50.6255V52.3203H108.535V50.6255H109.48ZM110.75 48.6196C110.75 48.3657 110.693 48.1372 110.579 47.9341C110.464 47.731 110.276 47.5448 110.014 47.3755C109.751 47.2062 109.4 47.0496 108.96 46.9058C108.427 46.7407 107.965 46.5397 107.576 46.3027C107.191 46.0658 106.893 45.7716 106.681 45.4204C106.474 45.0692 106.37 44.6439 106.37 44.1445C106.37 43.624 106.482 43.1755 106.707 42.7988C106.931 42.4222 107.248 42.1323 107.659 41.9292C108.069 41.7261 108.552 41.6245 109.106 41.6245C109.538 41.6245 109.923 41.6901 110.261 41.8213C110.6 41.9482 110.885 42.1387 111.118 42.3926C111.355 42.6465 111.535 42.9575 111.658 43.3257C111.785 43.6938 111.848 44.1191 111.848 44.6016H110.68C110.68 44.318 110.646 44.0578 110.579 43.8208C110.511 43.5838 110.409 43.3786 110.274 43.2051C110.139 43.0273 109.973 42.8919 109.779 42.7988C109.584 42.7015 109.36 42.6528 109.106 42.6528C108.75 42.6528 108.456 42.7142 108.224 42.8369C107.995 42.9596 107.826 43.1331 107.716 43.3574C107.606 43.5775 107.551 43.8335 107.551 44.1255C107.551 44.3963 107.606 44.6333 107.716 44.8364C107.826 45.0396 108.012 45.2236 108.274 45.3887C108.541 45.5495 108.907 45.7082 109.373 45.8647C109.918 46.0382 110.382 46.2435 110.763 46.4805C111.144 46.7132 111.433 47.001 111.632 47.3438C111.831 47.6823 111.931 48.1034 111.931 48.6069C111.931 49.1528 111.808 49.6141 111.562 49.9907C111.317 50.3631 110.972 50.6466 110.528 50.8413C110.083 51.036 109.563 51.1333 108.966 51.1333C108.607 51.1333 108.251 51.0846 107.9 50.9873C107.549 50.89 107.231 50.7313 106.948 50.5112C106.664 50.2869 106.438 49.9928 106.269 49.6289C106.099 49.2607 106.015 48.8101 106.015 48.2769H107.195C107.195 48.6366 107.246 48.9349 107.348 49.1719C107.453 49.4046 107.593 49.5908 107.767 49.7305C107.94 49.8659 108.131 49.9632 108.338 50.0225C108.549 50.0775 108.759 50.105 108.966 50.105C109.347 50.105 109.669 50.0457 109.931 49.9272C110.198 49.8045 110.401 49.631 110.541 49.4067C110.68 49.1825 110.75 48.9201 110.75 48.6196ZM117.256 41.707V51H116.082V43.1733L113.714 44.0366V42.9766L117.072 41.707H117.256ZM122.195 46.6011L121.255 46.3599L121.719 41.7578H126.46V42.8433H122.715L122.436 45.3569C122.605 45.2596 122.819 45.1686 123.077 45.084C123.34 44.9993 123.64 44.957 123.979 44.957C124.406 44.957 124.789 45.0311 125.127 45.1792C125.466 45.3231 125.754 45.5304 125.991 45.8013C126.232 46.0721 126.416 46.3979 126.543 46.7788C126.67 47.1597 126.733 47.585 126.733 48.0547C126.733 48.499 126.672 48.9074 126.549 49.2798C126.431 49.6522 126.251 49.978 126.01 50.2573C125.769 50.5324 125.464 50.7461 125.096 50.8984C124.732 51.0508 124.302 51.127 123.807 51.127C123.435 51.127 123.081 51.0762 122.747 50.9746C122.417 50.8688 122.121 50.7101 121.858 50.4985C121.6 50.2827 121.389 50.0161 121.224 49.6987C121.063 49.3771 120.961 49.0005 120.919 48.5688H122.036C122.087 48.9159 122.188 49.2078 122.341 49.4448C122.493 49.6818 122.692 49.8617 122.938 49.9844C123.187 50.1029 123.477 50.1621 123.807 50.1621C124.086 50.1621 124.334 50.1134 124.55 50.0161C124.766 49.9188 124.948 49.7791 125.096 49.5972C125.244 49.4152 125.356 49.1951 125.432 48.937C125.513 48.6789 125.553 48.389 125.553 48.0674C125.553 47.7754 125.513 47.5046 125.432 47.2549C125.352 47.0052 125.231 46.7873 125.07 46.6011C124.914 46.4149 124.721 46.271 124.493 46.1694C124.264 46.0636 124.002 46.0107 123.706 46.0107C123.312 46.0107 123.014 46.0636 122.811 46.1694C122.612 46.2752 122.406 46.4191 122.195 46.6011Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M22.8563 72.4813L28.275 67.0438L27.4688 66.2375L22.8563 70.8687L20.625 68.6375L19.8188 69.4438L22.8563 72.4813ZM18.375 76.25C18.075 76.25 17.8125 76.1375 17.5875 75.9125C17.3625 75.6875 17.25 75.425 17.25 75.125V63.875C17.25 63.575 17.3625 63.3125 17.5875 63.0875C17.8125 62.8625 18.075 62.75 18.375 62.75H29.625C29.925 62.75 30.1875 62.8625 30.4125 63.0875C30.6375 63.3125 30.75 63.575 30.75 63.875V75.125C30.75 75.425 30.6375 75.6875 30.4125 75.9125C30.1875 76.1375 29.925 76.25 29.625 76.25H18.375Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M40.4878 64.7578V74H39.2817V64.7578H40.4878ZM43.4585 64.7578V65.7607H36.3174V64.7578H43.4585ZM45.3438 68.2109V74H44.1694V67.1318H45.312L45.3438 68.2109ZM47.4893 67.0938L47.4829 68.1855C47.3856 68.1644 47.2925 68.1517 47.2036 68.1475C47.119 68.139 47.0216 68.1348 46.9116 68.1348C46.6408 68.1348 46.4017 68.1771 46.1943 68.2617C45.987 68.3464 45.8114 68.4648 45.6675 68.6172C45.5236 68.7695 45.4093 68.9515 45.3247 69.1631C45.2443 69.3704 45.1914 69.599 45.166 69.8486L44.8359 70.0391C44.8359 69.6243 44.8761 69.235 44.9565 68.8711C45.0412 68.5072 45.1702 68.1855 45.3438 67.9062C45.5173 67.6227 45.7373 67.4027 46.0039 67.2461C46.2747 67.0853 46.5964 67.0049 46.9688 67.0049C47.0534 67.0049 47.1507 67.0155 47.2607 67.0366C47.3708 67.0535 47.4469 67.0726 47.4893 67.0938ZM52.3706 72.8257V69.29C52.3706 69.0192 52.3156 68.7843 52.2056 68.5854C52.0998 68.3823 51.939 68.2257 51.7231 68.1157C51.5073 68.0057 51.2407 67.9507 50.9233 67.9507C50.6271 67.9507 50.3669 68.0015 50.1426 68.103C49.9225 68.2046 49.749 68.3379 49.6221 68.5029C49.4993 68.668 49.438 68.8457 49.438 69.0361H48.2637C48.2637 68.7907 48.3271 68.5474 48.4541 68.3062C48.5811 68.0649 48.763 67.847 49 67.6523C49.2412 67.4535 49.529 67.2969 49.8633 67.1826C50.2018 67.0641 50.5785 67.0049 50.9932 67.0049C51.4925 67.0049 51.9326 67.0895 52.3135 67.2588C52.6986 67.4281 52.999 67.6841 53.2148 68.0269C53.4349 68.3654 53.5449 68.7907 53.5449 69.3027V72.502C53.5449 72.7305 53.564 72.9738 53.6021 73.2319C53.6444 73.4901 53.7057 73.7122 53.7861 73.8984V74H52.561C52.5018 73.8646 52.4552 73.6847 52.4214 73.4604C52.3875 73.2319 52.3706 73.0203 52.3706 72.8257ZM52.5737 69.8359L52.5864 70.6611H51.3994C51.0651 70.6611 50.7668 70.6886 50.5044 70.7437C50.242 70.7944 50.022 70.8727 49.8442 70.9785C49.6665 71.0843 49.5311 71.2176 49.438 71.3784C49.3449 71.535 49.2983 71.7191 49.2983 71.9307C49.2983 72.1465 49.347 72.3433 49.4443 72.521C49.5417 72.6987 49.6877 72.8405 49.8823 72.9463C50.0812 73.0479 50.3245 73.0986 50.6123 73.0986C50.972 73.0986 51.2894 73.0225 51.5645 72.8701C51.8395 72.7178 52.0575 72.5316 52.2183 72.3115C52.3833 72.0915 52.4722 71.8778 52.4849 71.6704L52.9863 72.2354C52.9567 72.4131 52.8763 72.6099 52.7451 72.8257C52.6139 73.0415 52.4383 73.2489 52.2183 73.4478C52.0024 73.6424 51.7443 73.8053 51.4438 73.9365C51.1476 74.0635 50.8133 74.127 50.4409 74.127C49.9754 74.127 49.5671 74.036 49.2158 73.854C48.8688 73.672 48.598 73.4287 48.4033 73.124C48.2129 72.8151 48.1177 72.4702 48.1177 72.0894C48.1177 71.7212 48.1896 71.3975 48.3335 71.1182C48.4774 70.8346 48.6847 70.5998 48.9556 70.4136C49.2264 70.2231 49.5522 70.0793 49.9331 69.9819C50.314 69.8846 50.7393 69.8359 51.209 69.8359H52.5737ZM56.5664 68.5981V74H55.3921V67.1318H56.5029L56.5664 68.5981ZM56.2871 70.3057L55.7983 70.2866C55.8026 69.8169 55.8724 69.3831 56.0078 68.9854C56.1432 68.5833 56.3337 68.2342 56.5791 67.938C56.8245 67.6418 57.1165 67.4132 57.4551 67.2524C57.7979 67.0874 58.1766 67.0049 58.5913 67.0049C58.9299 67.0049 59.2345 67.0514 59.5054 67.1445C59.7762 67.2334 60.0068 67.3773 60.1973 67.5762C60.3919 67.7751 60.54 68.0332 60.6416 68.3506C60.7432 68.6637 60.7939 69.0467 60.7939 69.4995V74H59.6133V69.4868C59.6133 69.1271 59.5604 68.8394 59.4546 68.6235C59.3488 68.4035 59.1943 68.2448 58.9912 68.1475C58.7881 68.0459 58.5384 67.9951 58.2422 67.9951C57.9502 67.9951 57.6836 68.0565 57.4424 68.1792C57.2054 68.3019 57.0002 68.4712 56.8267 68.687C56.6574 68.9028 56.5241 69.1504 56.4268 69.4297C56.3337 69.7048 56.2871 69.9967 56.2871 70.3057ZM66.5767 72.1782C66.5767 72.009 66.5386 71.8524 66.4624 71.7085C66.3905 71.5604 66.2402 71.4271 66.0117 71.3086C65.7874 71.1859 65.4489 71.0801 64.9961 70.9912C64.6152 70.9108 64.2703 70.8156 63.9614 70.7056C63.6567 70.5955 63.3965 70.4622 63.1807 70.3057C62.9691 70.1491 62.8062 69.965 62.6919 69.7534C62.5776 69.5418 62.5205 69.2943 62.5205 69.0107C62.5205 68.7399 62.5798 68.4839 62.6982 68.2427C62.821 68.0015 62.9924 67.7878 63.2124 67.6016C63.4367 67.4154 63.7054 67.2694 64.0186 67.1636C64.3317 67.0578 64.6808 67.0049 65.0659 67.0049C65.616 67.0049 66.0858 67.1022 66.4751 67.2969C66.8644 67.4915 67.1628 67.7518 67.3701 68.0776C67.5775 68.3993 67.6812 68.7568 67.6812 69.1504H66.5068C66.5068 68.96 66.4497 68.7759 66.3354 68.5981C66.2254 68.4162 66.0625 68.266 65.8467 68.1475C65.6351 68.029 65.3748 67.9697 65.0659 67.9697C64.7401 67.9697 64.4756 68.0205 64.2725 68.1221C64.0736 68.2194 63.9276 68.3442 63.8345 68.4966C63.7456 68.6489 63.7012 68.8097 63.7012 68.979C63.7012 69.106 63.7223 69.2202 63.7646 69.3218C63.8112 69.4191 63.8916 69.5101 64.0059 69.5947C64.1201 69.6751 64.2809 69.7513 64.4883 69.8232C64.6956 69.8952 64.9601 69.9671 65.2817 70.0391C65.8446 70.166 66.3079 70.3184 66.6719 70.4961C67.0358 70.6738 67.3066 70.8918 67.4844 71.1499C67.6621 71.408 67.751 71.7212 67.751 72.0894C67.751 72.3898 67.6875 72.6649 67.5605 72.9146C67.4378 73.1642 67.258 73.38 67.021 73.562C66.7882 73.7397 66.509 73.8794 66.1831 73.981C65.8615 74.0783 65.4997 74.127 65.0977 74.127C64.4925 74.127 63.9805 74.019 63.5615 73.8032C63.1426 73.5874 62.8252 73.3081 62.6094 72.9653C62.3936 72.6226 62.2856 72.2607 62.2856 71.8799H63.4663C63.4832 72.2015 63.5763 72.4575 63.7456 72.6479C63.9149 72.8341 64.1222 72.9674 64.3677 73.0479C64.6131 73.124 64.8564 73.1621 65.0977 73.1621C65.4193 73.1621 65.688 73.1198 65.9038 73.0352C66.1239 72.9505 66.291 72.8341 66.4053 72.686C66.5195 72.5379 66.5767 72.3687 66.5767 72.1782ZM71.0454 74H69.8711V66.4082C69.8711 65.9131 69.96 65.4963 70.1377 65.1577C70.3197 64.8149 70.5799 64.5568 70.9185 64.3833C71.257 64.2056 71.659 64.1167 72.1245 64.1167C72.2599 64.1167 72.3953 64.1252 72.5308 64.1421C72.6704 64.159 72.8058 64.1844 72.937 64.2183L72.8735 65.1768C72.7847 65.1556 72.6831 65.1408 72.5688 65.1323C72.4588 65.1239 72.3488 65.1196 72.2388 65.1196C71.9891 65.1196 71.7733 65.1704 71.5913 65.272C71.4136 65.3693 71.2782 65.5132 71.1851 65.7036C71.092 65.894 71.0454 66.1289 71.0454 66.4082V74ZM72.5054 67.1318V68.0332H68.7856V67.1318H72.5054ZM76.5107 74.127C76.0326 74.127 75.5988 74.0465 75.2095 73.8857C74.8244 73.7207 74.4922 73.4901 74.2129 73.1938C73.9378 72.8976 73.7262 72.5464 73.5781 72.1401C73.43 71.7339 73.356 71.2896 73.356 70.8071V70.5405C73.356 69.9819 73.4385 69.4847 73.6035 69.0488C73.7686 68.6087 73.9928 68.2363 74.2764 67.9316C74.5599 67.627 74.8815 67.3963 75.2412 67.2397C75.6009 67.0832 75.9733 67.0049 76.3584 67.0049C76.8493 67.0049 77.2725 67.0895 77.6279 67.2588C77.9876 67.4281 78.2817 67.665 78.5103 67.9697C78.7388 68.2702 78.908 68.6257 79.0181 69.0361C79.1281 69.4424 79.1831 69.8867 79.1831 70.3691V70.896H74.0542V69.9375H78.0088V69.8486C77.9919 69.5439 77.9284 69.2477 77.8184 68.96C77.7126 68.6722 77.5433 68.4352 77.3105 68.249C77.0778 68.0628 76.7604 67.9697 76.3584 67.9697C76.0918 67.9697 75.8464 68.0269 75.6221 68.1411C75.3978 68.2511 75.2052 68.4162 75.0444 68.6362C74.8836 68.8563 74.7588 69.125 74.6699 69.4424C74.5811 69.7598 74.5366 70.1258 74.5366 70.5405V70.8071C74.5366 71.133 74.5811 71.4398 74.6699 71.7275C74.763 72.0111 74.8963 72.2607 75.0698 72.4766C75.2476 72.6924 75.4613 72.8617 75.7109 72.9844C75.9648 73.1071 76.2526 73.1685 76.5742 73.1685C76.9889 73.1685 77.3402 73.0838 77.6279 72.9146C77.9157 72.7453 78.1675 72.5189 78.3833 72.2354L79.0942 72.8003C78.9461 73.0246 78.7578 73.2383 78.5293 73.4414C78.3008 73.6445 78.0194 73.8096 77.6851 73.9365C77.355 74.0635 76.9635 74.127 76.5107 74.127ZM81.7285 68.2109V74H80.5542V67.1318H81.6968L81.7285 68.2109ZM83.874 67.0938L83.8677 68.1855C83.7703 68.1644 83.6772 68.1517 83.5884 68.1475C83.5037 68.139 83.4064 68.1348 83.2964 68.1348C83.0256 68.1348 82.7865 68.1771 82.5791 68.2617C82.3717 68.3464 82.1961 68.4648 82.0522 68.6172C81.9084 68.7695 81.7941 68.9515 81.7095 69.1631C81.6291 69.3704 81.5762 69.599 81.5508 69.8486L81.2207 70.0391C81.2207 69.6243 81.2609 69.235 81.3413 68.8711C81.4259 68.5072 81.555 68.1855 81.7285 67.9062C81.902 67.6227 82.1221 67.4027 82.3887 67.2461C82.6595 67.0853 82.9811 67.0049 83.3535 67.0049C83.4382 67.0049 83.5355 67.0155 83.6455 67.0366C83.7555 67.0535 83.8317 67.0726 83.874 67.0938ZM94.1191 69.0425V70.147H87.7842V69.0425H94.1191ZM91.542 66.3447V73.0732H90.3677V66.3447H91.542ZM102.168 63.2598V65.1958H101.216V63.2598H102.168ZM102.054 73.6255V75.3203H101.108V73.6255H102.054ZM103.323 71.6196C103.323 71.3657 103.266 71.1372 103.152 70.9341C103.038 70.731 102.849 70.5448 102.587 70.3755C102.325 70.2062 101.973 70.0496 101.533 69.9058C101 69.7407 100.539 69.5397 100.149 69.3027C99.7643 69.0658 99.466 68.7716 99.2544 68.4204C99.047 68.0692 98.9434 67.6439 98.9434 67.1445C98.9434 66.624 99.0555 66.1755 99.2798 65.7988C99.5041 65.4222 99.8215 65.1323 100.232 64.9292C100.642 64.7261 101.125 64.6245 101.679 64.6245C102.111 64.6245 102.496 64.6901 102.834 64.8213C103.173 64.9482 103.459 65.1387 103.691 65.3926C103.928 65.6465 104.108 65.9575 104.231 66.3257C104.358 66.6938 104.421 67.1191 104.421 67.6016H103.253C103.253 67.318 103.22 67.0578 103.152 66.8208C103.084 66.5838 102.983 66.3786 102.847 66.2051C102.712 66.0273 102.547 65.8919 102.352 65.7988C102.157 65.7015 101.933 65.6528 101.679 65.6528C101.324 65.6528 101.03 65.7142 100.797 65.8369C100.568 65.9596 100.399 66.1331 100.289 66.3574C100.179 66.5775 100.124 66.8335 100.124 67.1255C100.124 67.3963 100.179 67.6333 100.289 67.8364C100.399 68.0396 100.585 68.2236 100.848 68.3887C101.114 68.5495 101.48 68.7082 101.946 68.8647C102.492 69.0382 102.955 69.2435 103.336 69.4805C103.717 69.7132 104.007 70.001 104.206 70.3438C104.404 70.6823 104.504 71.1034 104.504 71.6069C104.504 72.1528 104.381 72.6141 104.136 72.9907C103.89 73.3631 103.545 73.6466 103.101 73.8413C102.657 74.036 102.136 74.1333 101.54 74.1333C101.18 74.1333 100.824 74.0846 100.473 73.9873C100.122 73.89 99.8045 73.7313 99.521 73.5112C99.2375 73.2869 99.0111 72.9928 98.8418 72.6289C98.6725 72.2607 98.5879 71.8101 98.5879 71.2769H99.7686C99.7686 71.6366 99.8193 71.9349 99.9209 72.1719C100.027 72.4046 100.166 72.5908 100.34 72.7305C100.513 72.8659 100.704 72.9632 100.911 73.0225C101.123 73.0775 101.332 73.105 101.54 73.105C101.92 73.105 102.242 73.0457 102.504 72.9272C102.771 72.8045 102.974 72.631 103.114 72.4067C103.253 72.1825 103.323 71.9201 103.323 71.6196ZM107.684 68.8013H108.522C108.932 68.8013 109.271 68.7336 109.538 68.5981C109.808 68.4585 110.009 68.2702 110.141 68.0332C110.276 67.792 110.344 67.5212 110.344 67.2207C110.344 66.8652 110.285 66.5669 110.166 66.3257C110.048 66.0845 109.87 65.9025 109.633 65.7798C109.396 65.6571 109.095 65.5957 108.731 65.5957C108.401 65.5957 108.109 65.6613 107.855 65.7925C107.606 65.9194 107.409 66.1014 107.265 66.3384C107.125 66.5754 107.056 66.8547 107.056 67.1763H105.881C105.881 66.7065 106 66.2791 106.237 65.894C106.474 65.509 106.806 65.2021 107.233 64.9736C107.665 64.7451 108.164 64.6309 108.731 64.6309C109.29 64.6309 109.779 64.7303 110.198 64.9292C110.617 65.1239 110.943 65.4159 111.175 65.8052C111.408 66.1903 111.524 66.6706 111.524 67.2461C111.524 67.4788 111.469 67.7285 111.359 67.9951C111.254 68.2575 111.086 68.5029 110.858 68.7314C110.634 68.96 110.342 69.1483 109.982 69.2964C109.622 69.4403 109.191 69.5122 108.687 69.5122H107.684V68.8013ZM107.684 69.7661V69.0615H108.687C109.275 69.0615 109.762 69.1313 110.147 69.271C110.532 69.4106 110.835 69.5968 111.055 69.8296C111.279 70.0623 111.436 70.3184 111.524 70.5977C111.618 70.8727 111.664 71.1478 111.664 71.4229C111.664 71.8545 111.59 72.2375 111.442 72.5718C111.298 72.9061 111.093 73.1896 110.826 73.4224C110.564 73.6551 110.255 73.8307 109.899 73.9492C109.544 74.0677 109.157 74.127 108.738 74.127C108.336 74.127 107.957 74.0698 107.602 73.9556C107.25 73.8413 106.939 73.6763 106.668 73.4604C106.398 73.2404 106.186 72.9717 106.034 72.6543C105.881 72.3327 105.805 71.9666 105.805 71.5562H106.979C106.979 71.8778 107.049 72.1592 107.189 72.4004C107.333 72.6416 107.536 72.8299 107.798 72.9653C108.065 73.0965 108.378 73.1621 108.738 73.1621C109.097 73.1621 109.406 73.1007 109.665 72.978C109.927 72.8511 110.128 72.6606 110.268 72.4067C110.411 72.1528 110.483 71.8333 110.483 71.4482C110.483 71.0632 110.403 70.7479 110.242 70.5024C110.081 70.2528 109.853 70.0687 109.557 69.9502C109.265 69.8275 108.92 69.7661 108.522 69.7661H107.684ZM119.084 68.6426V70.0518C119.084 70.8092 119.017 71.4482 118.881 71.9688C118.746 72.4893 118.551 72.9082 118.297 73.2256C118.043 73.543 117.737 73.7736 117.377 73.9175C117.021 74.0571 116.619 74.127 116.171 74.127C115.815 74.127 115.487 74.0825 115.187 73.9937C114.887 73.9048 114.616 73.763 114.375 73.5684C114.138 73.3695 113.934 73.1113 113.765 72.7939C113.596 72.4766 113.467 72.0915 113.378 71.6387C113.289 71.1859 113.245 70.6569 113.245 70.0518V68.6426C113.245 67.8851 113.312 67.2503 113.448 66.7383C113.587 66.2262 113.784 65.8158 114.038 65.5068C114.292 65.1937 114.597 64.9694 114.952 64.834C115.312 64.6986 115.714 64.6309 116.158 64.6309C116.518 64.6309 116.848 64.6753 117.148 64.7642C117.453 64.8488 117.724 64.9863 117.961 65.1768C118.198 65.363 118.399 65.6126 118.564 65.9258C118.733 66.2347 118.862 66.6134 118.951 67.062C119.04 67.5106 119.084 68.0374 119.084 68.6426ZM117.904 70.2422V68.4458C117.904 68.0311 117.878 67.6672 117.828 67.354C117.781 67.0366 117.711 66.7658 117.618 66.5415C117.525 66.3172 117.407 66.1353 117.263 65.9956C117.123 65.856 116.96 65.7544 116.774 65.6909C116.592 65.6232 116.387 65.5894 116.158 65.5894C115.879 65.5894 115.631 65.6423 115.416 65.748C115.2 65.8496 115.018 66.0125 114.87 66.2368C114.726 66.4611 114.616 66.7552 114.54 67.1191C114.463 67.4831 114.425 67.9253 114.425 68.4458V70.2422C114.425 70.6569 114.449 71.0229 114.495 71.3403C114.546 71.6577 114.62 71.9328 114.717 72.1655C114.815 72.394 114.933 72.5824 115.073 72.7305C115.212 72.8786 115.373 72.9886 115.555 73.0605C115.741 73.1283 115.947 73.1621 116.171 73.1621C116.459 73.1621 116.71 73.1071 116.926 72.9971C117.142 72.887 117.322 72.7157 117.466 72.4829C117.614 72.2459 117.724 71.9434 117.796 71.5752C117.868 71.2028 117.904 70.7585 117.904 70.2422Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"15",y:"88.5",width:"268",height:"38",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M31.6523 108.561H32.8711C32.8076 109.145 32.6405 109.668 32.3696 110.129C32.0988 110.59 31.7158 110.956 31.2207 111.227C30.7256 111.494 30.1077 111.627 29.3672 111.627C28.8255 111.627 28.3325 111.525 27.8882 111.322C27.4481 111.119 27.0693 110.831 26.752 110.459C26.4346 110.082 26.1891 109.632 26.0156 109.107C25.8464 108.578 25.7617 107.99 25.7617 107.342V106.422C25.7617 105.774 25.8464 105.188 26.0156 104.664C26.1891 104.135 26.4367 103.682 26.7583 103.305C27.0841 102.929 27.4756 102.639 27.9326 102.436C28.3896 102.232 28.9038 102.131 29.4751 102.131C30.1733 102.131 30.7637 102.262 31.2461 102.524C31.7285 102.787 32.103 103.151 32.3696 103.616C32.6405 104.077 32.8076 104.613 32.8711 105.222H31.6523C31.5931 104.791 31.4831 104.42 31.3223 104.111C31.1615 103.798 30.9329 103.557 30.6367 103.388C30.3405 103.218 29.9533 103.134 29.4751 103.134C29.0646 103.134 28.7028 103.212 28.3896 103.369C28.0807 103.525 27.8205 103.747 27.6089 104.035C27.4015 104.323 27.245 104.668 27.1392 105.07C27.0334 105.472 26.9805 105.918 26.9805 106.409V107.342C26.9805 107.795 27.027 108.22 27.1201 108.618C27.2174 109.016 27.3634 109.365 27.5581 109.666C27.7528 109.966 28.0003 110.203 28.3008 110.376C28.6012 110.546 28.9567 110.63 29.3672 110.63C29.8877 110.63 30.3024 110.548 30.6113 110.383C30.9202 110.218 31.153 109.981 31.3096 109.672C31.4704 109.363 31.5846 108.993 31.6523 108.561ZM38.4126 110.326V106.79C38.4126 106.519 38.3576 106.284 38.2476 106.085C38.1418 105.882 37.981 105.726 37.7651 105.616C37.5493 105.506 37.2827 105.451 36.9653 105.451C36.6691 105.451 36.4089 105.501 36.1846 105.603C35.9645 105.705 35.791 105.838 35.6641 106.003C35.5413 106.168 35.48 106.346 35.48 106.536H34.3057C34.3057 106.291 34.3691 106.047 34.4961 105.806C34.623 105.565 34.805 105.347 35.042 105.152C35.2832 104.953 35.571 104.797 35.9053 104.683C36.2438 104.564 36.6204 104.505 37.0352 104.505C37.5345 104.505 37.9746 104.59 38.3555 104.759C38.7406 104.928 39.041 105.184 39.2568 105.527C39.4769 105.865 39.5869 106.291 39.5869 106.803V110.002C39.5869 110.23 39.606 110.474 39.644 110.732C39.6864 110.99 39.7477 111.212 39.8281 111.398V111.5H38.603C38.5438 111.365 38.4972 111.185 38.4634 110.96C38.4295 110.732 38.4126 110.52 38.4126 110.326ZM38.6157 107.336L38.6284 108.161H37.4414C37.1071 108.161 36.8088 108.189 36.5464 108.244C36.284 108.294 36.064 108.373 35.8862 108.479C35.7085 108.584 35.5731 108.718 35.48 108.878C35.3869 109.035 35.3403 109.219 35.3403 109.431C35.3403 109.646 35.389 109.843 35.4863 110.021C35.5837 110.199 35.7297 110.34 35.9243 110.446C36.1232 110.548 36.3665 110.599 36.6543 110.599C37.014 110.599 37.3314 110.522 37.6064 110.37C37.8815 110.218 38.0994 110.032 38.2603 109.812C38.4253 109.591 38.5142 109.378 38.5269 109.17L39.0283 109.735C38.9987 109.913 38.9183 110.11 38.7871 110.326C38.6559 110.542 38.4803 110.749 38.2603 110.948C38.0444 111.142 37.7863 111.305 37.4858 111.437C37.1896 111.563 36.8553 111.627 36.4829 111.627C36.0174 111.627 35.609 111.536 35.2578 111.354C34.9108 111.172 34.64 110.929 34.4453 110.624C34.2549 110.315 34.1597 109.97 34.1597 109.589C34.1597 109.221 34.2316 108.897 34.3755 108.618C34.5194 108.335 34.7267 108.1 34.9976 107.914C35.2684 107.723 35.5942 107.579 35.9751 107.482C36.356 107.385 36.7812 107.336 37.251 107.336H38.6157ZM42.71 101.75V111.5H41.5293V101.75H42.71ZM47.3438 110.662C47.623 110.662 47.8812 110.605 48.1182 110.491C48.3551 110.376 48.5498 110.22 48.7021 110.021C48.8545 109.818 48.9412 109.587 48.9624 109.329H50.0796C50.0584 109.735 49.9209 110.114 49.667 110.465C49.4173 110.812 49.0894 111.094 48.6831 111.31C48.2769 111.521 47.8304 111.627 47.3438 111.627C46.8275 111.627 46.3768 111.536 45.9917 111.354C45.6108 111.172 45.2935 110.922 45.0396 110.605C44.7899 110.288 44.6016 109.924 44.4746 109.513C44.3519 109.098 44.2905 108.66 44.2905 108.199V107.933C44.2905 107.471 44.3519 107.035 44.4746 106.625C44.6016 106.21 44.7899 105.844 45.0396 105.527C45.2935 105.209 45.6108 104.96 45.9917 104.778C46.3768 104.596 46.8275 104.505 47.3438 104.505C47.8812 104.505 48.3509 104.615 48.7529 104.835C49.1549 105.051 49.4702 105.347 49.6987 105.724C49.9315 106.096 50.0584 106.519 50.0796 106.993H48.9624C48.9412 106.71 48.8608 106.454 48.7212 106.225C48.5858 105.997 48.3996 105.815 48.1626 105.679C47.9299 105.54 47.6569 105.47 47.3438 105.47C46.984 105.47 46.6815 105.542 46.436 105.686C46.1948 105.825 46.0023 106.016 45.8584 106.257C45.7188 106.494 45.6172 106.758 45.5537 107.05C45.4945 107.338 45.4648 107.632 45.4648 107.933V108.199C45.4648 108.5 45.4945 108.796 45.5537 109.088C45.613 109.38 45.7124 109.644 45.8521 109.881C45.9959 110.118 46.1885 110.309 46.4297 110.453C46.6751 110.592 46.9798 110.662 47.3438 110.662ZM55.6021 109.913V104.632H56.7827V111.5H55.6592L55.6021 109.913ZM55.8242 108.466L56.313 108.453C56.313 108.91 56.2643 109.333 56.167 109.723C56.0739 110.108 55.9215 110.442 55.71 110.726C55.4984 111.009 55.2212 111.231 54.8784 111.392C54.5356 111.549 54.1188 111.627 53.6279 111.627C53.2936 111.627 52.9868 111.578 52.7075 111.481C52.4325 111.384 52.1955 111.233 51.9966 111.03C51.7977 110.827 51.6432 110.563 51.5332 110.237C51.4274 109.911 51.3745 109.52 51.3745 109.062V104.632H52.5488V109.075C52.5488 109.384 52.5827 109.64 52.6504 109.843C52.7223 110.042 52.8175 110.201 52.936 110.319C53.0588 110.434 53.1942 110.514 53.3423 110.561C53.4946 110.607 53.6512 110.63 53.812 110.63C54.3114 110.63 54.707 110.535 54.999 110.345C55.291 110.15 55.5005 109.89 55.6274 109.564C55.7586 109.234 55.8242 108.868 55.8242 108.466ZM59.8486 101.75V111.5H58.668V101.75H59.8486ZM65.7837 110.326V106.79C65.7837 106.519 65.7287 106.284 65.6187 106.085C65.5129 105.882 65.3521 105.726 65.1362 105.616C64.9204 105.506 64.6538 105.451 64.3364 105.451C64.0402 105.451 63.7799 105.501 63.5557 105.603C63.3356 105.705 63.1621 105.838 63.0352 106.003C62.9124 106.168 62.8511 106.346 62.8511 106.536H61.6768C61.6768 106.291 61.7402 106.047 61.8672 105.806C61.9941 105.565 62.1761 105.347 62.4131 105.152C62.6543 104.953 62.9421 104.797 63.2764 104.683C63.6149 104.564 63.9915 104.505 64.4062 104.505C64.9056 104.505 65.3457 104.59 65.7266 104.759C66.1117 104.928 66.4121 105.184 66.6279 105.527C66.848 105.865 66.958 106.291 66.958 106.803V110.002C66.958 110.23 66.9771 110.474 67.0151 110.732C67.0575 110.99 67.1188 111.212 67.1992 111.398V111.5H65.9741C65.9149 111.365 65.8683 111.185 65.8345 110.96C65.8006 110.732 65.7837 110.52 65.7837 110.326ZM65.9868 107.336L65.9995 108.161H64.8125C64.4782 108.161 64.1799 108.189 63.9175 108.244C63.6551 108.294 63.4351 108.373 63.2573 108.479C63.0796 108.584 62.9442 108.718 62.8511 108.878C62.758 109.035 62.7114 109.219 62.7114 109.431C62.7114 109.646 62.7601 109.843 62.8574 110.021C62.9548 110.199 63.1007 110.34 63.2954 110.446C63.4943 110.548 63.7376 110.599 64.0254 110.599C64.3851 110.599 64.7025 110.522 64.9775 110.37C65.2526 110.218 65.4705 110.032 65.6313 109.812C65.7964 109.591 65.8853 109.378 65.8979 109.17L66.3994 109.735C66.3698 109.913 66.2894 110.11 66.1582 110.326C66.027 110.542 65.8514 110.749 65.6313 110.948C65.4155 111.142 65.1574 111.305 64.8569 111.437C64.5607 111.563 64.2264 111.627 63.854 111.627C63.3885 111.627 62.9801 111.536 62.6289 111.354C62.2819 111.172 62.0111 110.929 61.8164 110.624C61.626 110.315 61.5308 109.97 61.5308 109.589C61.5308 109.221 61.6027 108.897 61.7466 108.618C61.8905 108.335 62.0978 108.1 62.3687 107.914C62.6395 107.723 62.9653 107.579 63.3462 107.482C63.7271 107.385 64.1523 107.336 64.6221 107.336H65.9868ZM71.6807 104.632V105.533H67.9673V104.632H71.6807ZM69.2241 102.962H70.3984V109.799C70.3984 110.032 70.4344 110.207 70.5063 110.326C70.5783 110.444 70.6714 110.522 70.7856 110.561C70.8999 110.599 71.0226 110.618 71.1538 110.618C71.2511 110.618 71.3527 110.609 71.4585 110.592C71.5685 110.571 71.651 110.554 71.7061 110.542L71.7124 111.5C71.6193 111.53 71.4966 111.557 71.3442 111.583C71.1961 111.612 71.0163 111.627 70.8047 111.627C70.5169 111.627 70.2524 111.57 70.0112 111.456C69.77 111.341 69.5775 111.151 69.4336 110.884C69.2939 110.613 69.2241 110.25 69.2241 109.792V102.962ZM75.9082 111.627C75.43 111.627 74.9963 111.547 74.6069 111.386C74.2218 111.221 73.8896 110.99 73.6104 110.694C73.3353 110.398 73.1237 110.046 72.9756 109.64C72.8275 109.234 72.7534 108.79 72.7534 108.307V108.041C72.7534 107.482 72.8359 106.985 73.001 106.549C73.166 106.109 73.3903 105.736 73.6738 105.432C73.9574 105.127 74.279 104.896 74.6387 104.74C74.9984 104.583 75.3708 104.505 75.7559 104.505C76.2467 104.505 76.6699 104.59 77.0254 104.759C77.3851 104.928 77.6792 105.165 77.9077 105.47C78.1362 105.77 78.3055 106.126 78.4155 106.536C78.5256 106.942 78.5806 107.387 78.5806 107.869V108.396H73.4517V107.438H77.4062V107.349C77.3893 107.044 77.3258 106.748 77.2158 106.46C77.11 106.172 76.9408 105.935 76.708 105.749C76.4753 105.563 76.1579 105.47 75.7559 105.47C75.4893 105.47 75.2438 105.527 75.0195 105.641C74.7952 105.751 74.6027 105.916 74.4419 106.136C74.2811 106.356 74.1562 106.625 74.0674 106.942C73.9785 107.26 73.9341 107.626 73.9341 108.041V108.307C73.9341 108.633 73.9785 108.94 74.0674 109.228C74.1605 109.511 74.2938 109.761 74.4673 109.977C74.645 110.192 74.8587 110.362 75.1084 110.484C75.3623 110.607 75.6501 110.668 75.9717 110.668C76.3864 110.668 76.7376 110.584 77.0254 110.415C77.3132 110.245 77.5649 110.019 77.7808 109.735L78.4917 110.3C78.3436 110.525 78.1553 110.738 77.9268 110.941C77.6982 111.145 77.4168 111.31 77.0825 111.437C76.7524 111.563 76.361 111.627 75.9082 111.627ZM84.2808 110.167V101.75H85.4614V111.5H84.3823L84.2808 110.167ZM79.6597 108.142V108.009C79.6597 107.484 79.7231 107.008 79.8501 106.581C79.9813 106.149 80.1654 105.779 80.4023 105.47C80.6436 105.161 80.9292 104.924 81.2593 104.759C81.5936 104.59 81.966 104.505 82.3765 104.505C82.8081 104.505 83.1847 104.581 83.5063 104.733C83.8322 104.882 84.1073 105.099 84.3315 105.387C84.5601 105.671 84.7399 106.014 84.8711 106.416C85.0023 106.818 85.0933 107.272 85.144 107.78V108.364C85.0975 108.868 85.0065 109.321 84.8711 109.723C84.7399 110.125 84.5601 110.467 84.3315 110.751C84.1073 111.035 83.8322 111.252 83.5063 111.405C83.1805 111.553 82.7996 111.627 82.3638 111.627C81.9618 111.627 81.5936 111.54 81.2593 111.367C80.9292 111.193 80.6436 110.95 80.4023 110.637C80.1654 110.324 79.9813 109.955 79.8501 109.532C79.7231 109.105 79.6597 108.641 79.6597 108.142ZM80.8403 108.009V108.142C80.8403 108.485 80.8742 108.806 80.9419 109.107C81.0138 109.407 81.1239 109.672 81.272 109.9C81.4201 110.129 81.6084 110.309 81.8369 110.44C82.0654 110.567 82.3384 110.63 82.6558 110.63C83.0451 110.63 83.3646 110.548 83.6143 110.383C83.8682 110.218 84.0713 110 84.2236 109.729C84.376 109.458 84.4945 109.164 84.5791 108.847V107.317C84.5283 107.084 84.4543 106.86 84.3569 106.644C84.2638 106.424 84.1411 106.229 83.9888 106.06C83.8407 105.887 83.6566 105.749 83.4365 105.647C83.2207 105.546 82.9647 105.495 82.6685 105.495C82.3468 105.495 82.0697 105.563 81.8369 105.698C81.6084 105.829 81.4201 106.011 81.272 106.244C81.1239 106.473 81.0138 106.739 80.9419 107.044C80.8742 107.344 80.8403 107.666 80.8403 108.009ZM91.6885 105.952V114.141H90.5078V104.632H91.5869L91.6885 105.952ZM96.3159 108.009V108.142C96.3159 108.641 96.2567 109.105 96.1382 109.532C96.0197 109.955 95.8462 110.324 95.6177 110.637C95.3934 110.95 95.1162 111.193 94.7861 111.367C94.4561 111.54 94.0773 111.627 93.6499 111.627C93.214 111.627 92.8289 111.555 92.4946 111.411C92.1603 111.267 91.8768 111.058 91.644 110.783C91.4113 110.508 91.2251 110.178 91.0854 109.792C90.95 109.407 90.8569 108.974 90.8062 108.491V107.78C90.8569 107.272 90.9521 106.818 91.0918 106.416C91.2314 106.014 91.4155 105.671 91.644 105.387C91.8768 105.099 92.1582 104.882 92.4883 104.733C92.8184 104.581 93.1992 104.505 93.6309 104.505C94.0625 104.505 94.4455 104.59 94.7798 104.759C95.1141 104.924 95.3955 105.161 95.624 105.47C95.8525 105.779 96.0239 106.149 96.1382 106.581C96.2567 107.008 96.3159 107.484 96.3159 108.009ZM95.1353 108.142V108.009C95.1353 107.666 95.0993 107.344 95.0273 107.044C94.9554 106.739 94.8433 106.473 94.6909 106.244C94.5428 106.011 94.3524 105.829 94.1196 105.698C93.8869 105.563 93.6097 105.495 93.2881 105.495C92.9919 105.495 92.7337 105.546 92.5137 105.647C92.2979 105.749 92.1138 105.887 91.9614 106.06C91.8091 106.229 91.6842 106.424 91.5869 106.644C91.4938 106.86 91.424 107.084 91.3774 107.317V108.961C91.4621 109.257 91.5806 109.536 91.7329 109.799C91.8853 110.057 92.0884 110.266 92.3423 110.427C92.5962 110.584 92.9157 110.662 93.3008 110.662C93.6182 110.662 93.8911 110.597 94.1196 110.465C94.3524 110.33 94.5428 110.146 94.6909 109.913C94.8433 109.68 94.9554 109.414 95.0273 109.113C95.0993 108.809 95.1353 108.485 95.1353 108.142ZM98.9883 105.711V111.5H97.814V104.632H98.9565L98.9883 105.711ZM101.134 104.594L101.127 105.686C101.03 105.664 100.937 105.652 100.848 105.647C100.764 105.639 100.666 105.635 100.556 105.635C100.285 105.635 100.046 105.677 99.8389 105.762C99.6315 105.846 99.4559 105.965 99.312 106.117C99.1681 106.27 99.0539 106.451 98.9692 106.663C98.8888 106.87 98.8359 107.099 98.8105 107.349L98.4805 107.539C98.4805 107.124 98.5207 106.735 98.6011 106.371C98.6857 106.007 98.8148 105.686 98.9883 105.406C99.1618 105.123 99.3818 104.903 99.6484 104.746C99.9193 104.585 100.241 104.505 100.613 104.505C100.698 104.505 100.795 104.515 100.905 104.537C101.015 104.554 101.091 104.573 101.134 104.594ZM103.495 104.632V111.5H102.314V104.632H103.495ZM102.226 102.81C102.226 102.62 102.283 102.459 102.397 102.328C102.515 102.196 102.689 102.131 102.917 102.131C103.142 102.131 103.313 102.196 103.432 102.328C103.554 102.459 103.616 102.62 103.616 102.81C103.616 102.992 103.554 103.149 103.432 103.28C103.313 103.407 103.142 103.47 102.917 103.47C102.689 103.47 102.515 103.407 102.397 103.28C102.283 103.149 102.226 102.992 102.226 102.81ZM108.129 110.662C108.408 110.662 108.666 110.605 108.903 110.491C109.14 110.376 109.335 110.22 109.487 110.021C109.64 109.818 109.726 109.587 109.748 109.329H110.865C110.844 109.735 110.706 110.114 110.452 110.465C110.202 110.812 109.875 111.094 109.468 111.31C109.062 111.521 108.616 111.627 108.129 111.627C107.613 111.627 107.162 111.536 106.777 111.354C106.396 111.172 106.079 110.922 105.825 110.605C105.575 110.288 105.387 109.924 105.26 109.513C105.137 109.098 105.076 108.66 105.076 108.199V107.933C105.076 107.471 105.137 107.035 105.26 106.625C105.387 106.21 105.575 105.844 105.825 105.527C106.079 105.209 106.396 104.96 106.777 104.778C107.162 104.596 107.613 104.505 108.129 104.505C108.666 104.505 109.136 104.615 109.538 104.835C109.94 105.051 110.255 105.347 110.484 105.724C110.717 106.096 110.844 106.519 110.865 106.993H109.748C109.726 106.71 109.646 106.454 109.506 106.225C109.371 105.997 109.185 105.815 108.948 105.679C108.715 105.54 108.442 105.47 108.129 105.47C107.769 105.47 107.467 105.542 107.221 105.686C106.98 105.825 106.787 106.016 106.644 106.257C106.504 106.494 106.402 106.758 106.339 107.05C106.28 107.338 106.25 107.632 106.25 107.933V108.199C106.25 108.5 106.28 108.796 106.339 109.088C106.398 109.38 106.498 109.644 106.637 109.881C106.781 110.118 106.974 110.309 107.215 110.453C107.46 110.592 107.765 110.662 108.129 110.662ZM115.035 111.627C114.557 111.627 114.123 111.547 113.734 111.386C113.349 111.221 113.017 110.99 112.737 110.694C112.462 110.398 112.251 110.046 112.103 109.64C111.954 109.234 111.88 108.79 111.88 108.307V108.041C111.88 107.482 111.963 106.985 112.128 106.549C112.293 106.109 112.517 105.736 112.801 105.432C113.084 105.127 113.406 104.896 113.766 104.74C114.125 104.583 114.498 104.505 114.883 104.505C115.374 104.505 115.797 104.59 116.152 104.759C116.512 104.928 116.806 105.165 117.035 105.47C117.263 105.77 117.432 106.126 117.542 106.536C117.653 106.942 117.708 107.387 117.708 107.869V108.396H112.579V107.438H116.533V107.349C116.516 107.044 116.453 106.748 116.343 106.46C116.237 106.172 116.068 105.935 115.835 105.749C115.602 105.563 115.285 105.47 114.883 105.47C114.616 105.47 114.371 105.527 114.146 105.641C113.922 105.751 113.73 105.916 113.569 106.136C113.408 106.356 113.283 106.625 113.194 106.942C113.105 107.26 113.061 107.626 113.061 108.041V108.307C113.061 108.633 113.105 108.94 113.194 109.228C113.287 109.511 113.421 109.761 113.594 109.977C113.772 110.192 113.986 110.362 114.235 110.484C114.489 110.607 114.777 110.668 115.099 110.668C115.513 110.668 115.865 110.584 116.152 110.415C116.44 110.245 116.692 110.019 116.908 109.735L117.619 110.3C117.471 110.525 117.282 110.738 117.054 110.941C116.825 111.145 116.544 111.31 116.209 111.437C115.879 111.563 115.488 111.627 115.035 111.627ZM119.028 110.878C119.028 110.679 119.089 110.512 119.212 110.376C119.339 110.237 119.521 110.167 119.758 110.167C119.995 110.167 120.175 110.237 120.297 110.376C120.424 110.512 120.488 110.679 120.488 110.878C120.488 111.073 120.424 111.238 120.297 111.373C120.175 111.508 119.995 111.576 119.758 111.576C119.521 111.576 119.339 111.508 119.212 111.373C119.089 111.238 119.028 111.073 119.028 110.878ZM119.034 105.273C119.034 105.074 119.096 104.907 119.218 104.771C119.345 104.632 119.527 104.562 119.764 104.562C120.001 104.562 120.181 104.632 120.304 104.771C120.431 104.907 120.494 105.074 120.494 105.273C120.494 105.468 120.431 105.633 120.304 105.768C120.181 105.903 120.001 105.971 119.764 105.971C119.527 105.971 119.345 105.903 119.218 105.768C119.096 105.633 119.034 105.468 119.034 105.273Z",fill:"white"}),(0,h.createElement)("path",{d:"M131.45 100.792V102.664H130.459V100.792H131.45ZM131.329 111.157V112.865H130.339V111.157H131.329ZM132.027 109.075C132.027 108.834 131.983 108.629 131.894 108.459C131.809 108.29 131.67 108.14 131.475 108.009C131.285 107.878 131.027 107.751 130.701 107.628C130.151 107.416 129.666 107.192 129.247 106.955C128.832 106.714 128.509 106.416 128.276 106.06C128.043 105.7 127.927 105.245 127.927 104.695C127.927 104.171 128.052 103.716 128.301 103.331C128.551 102.945 128.896 102.649 129.336 102.442C129.78 102.23 130.297 102.125 130.885 102.125C131.333 102.125 131.74 102.192 132.104 102.328C132.467 102.459 132.781 102.653 133.043 102.912C133.305 103.166 133.506 103.477 133.646 103.845C133.786 104.213 133.855 104.634 133.855 105.108H132.034C132.034 104.854 132.006 104.63 131.951 104.435C131.896 104.24 131.816 104.077 131.71 103.946C131.608 103.815 131.486 103.718 131.342 103.654C131.198 103.587 131.039 103.553 130.866 103.553C130.608 103.553 130.396 103.604 130.231 103.705C130.066 103.807 129.945 103.944 129.869 104.118C129.797 104.287 129.761 104.482 129.761 104.702C129.761 104.917 129.799 105.106 129.875 105.267C129.956 105.427 130.093 105.576 130.288 105.711C130.483 105.842 130.749 105.978 131.088 106.117C131.638 106.329 132.12 106.557 132.535 106.803C132.95 107.048 133.274 107.349 133.506 107.704C133.739 108.06 133.855 108.512 133.855 109.062C133.855 109.608 133.729 110.074 133.475 110.459C133.221 110.84 132.865 111.132 132.408 111.335C131.951 111.534 131.422 111.633 130.821 111.633C130.432 111.633 130.045 111.583 129.66 111.481C129.275 111.375 128.925 111.206 128.612 110.973C128.299 110.74 128.049 110.431 127.863 110.046C127.677 109.657 127.584 109.179 127.584 108.612H129.412C129.412 108.921 129.452 109.179 129.533 109.386C129.613 109.589 129.719 109.752 129.85 109.875C129.986 109.993 130.138 110.078 130.307 110.129C130.476 110.18 130.648 110.205 130.821 110.205C131.092 110.205 131.314 110.156 131.488 110.059C131.666 109.962 131.799 109.828 131.888 109.659C131.981 109.486 132.027 109.291 132.027 109.075ZM141.422 110.072V111.5H135.1V110.281L138.089 107.076C138.39 106.741 138.627 106.447 138.8 106.193C138.974 105.935 139.099 105.705 139.175 105.501C139.255 105.294 139.295 105.097 139.295 104.911C139.295 104.632 139.249 104.393 139.156 104.194C139.063 103.991 138.925 103.834 138.743 103.724C138.565 103.614 138.345 103.559 138.083 103.559C137.804 103.559 137.562 103.627 137.359 103.762C137.16 103.898 137.008 104.086 136.902 104.327C136.801 104.568 136.75 104.841 136.75 105.146H134.916C134.916 104.596 135.047 104.092 135.309 103.635C135.571 103.174 135.942 102.808 136.42 102.537C136.898 102.262 137.465 102.125 138.121 102.125C138.769 102.125 139.314 102.23 139.759 102.442C140.207 102.649 140.546 102.95 140.774 103.343C141.007 103.733 141.124 104.198 141.124 104.74C141.124 105.044 141.075 105.343 140.978 105.635C140.88 105.923 140.741 106.21 140.559 106.498C140.381 106.782 140.165 107.069 139.911 107.361C139.657 107.653 139.376 107.956 139.067 108.269L137.461 110.072H141.422ZM148.785 106.066V107.666C148.785 108.36 148.711 108.959 148.563 109.462C148.415 109.962 148.201 110.372 147.922 110.694C147.647 111.011 147.319 111.246 146.938 111.398C146.557 111.551 146.134 111.627 145.668 111.627C145.296 111.627 144.949 111.58 144.627 111.487C144.306 111.39 144.016 111.24 143.758 111.037C143.504 110.833 143.284 110.577 143.098 110.269C142.916 109.955 142.776 109.583 142.679 109.151C142.581 108.72 142.533 108.225 142.533 107.666V106.066C142.533 105.372 142.607 104.778 142.755 104.283C142.907 103.783 143.121 103.375 143.396 103.058C143.675 102.74 144.005 102.507 144.386 102.359C144.767 102.207 145.19 102.131 145.656 102.131C146.028 102.131 146.373 102.18 146.69 102.277C147.012 102.37 147.302 102.516 147.56 102.715C147.818 102.914 148.038 103.17 148.22 103.483C148.402 103.792 148.542 104.162 148.639 104.594C148.736 105.021 148.785 105.512 148.785 106.066ZM146.951 107.907V105.819C146.951 105.485 146.932 105.193 146.894 104.943C146.86 104.693 146.807 104.482 146.735 104.308C146.663 104.13 146.574 103.986 146.468 103.876C146.362 103.766 146.242 103.686 146.106 103.635C145.971 103.584 145.821 103.559 145.656 103.559C145.448 103.559 145.264 103.599 145.104 103.68C144.947 103.76 144.814 103.889 144.704 104.067C144.594 104.24 144.509 104.473 144.45 104.765C144.395 105.053 144.367 105.404 144.367 105.819V107.907C144.367 108.242 144.384 108.536 144.418 108.79C144.456 109.043 144.511 109.261 144.583 109.443C144.659 109.621 144.748 109.767 144.85 109.881C144.955 109.991 145.076 110.072 145.211 110.123C145.351 110.173 145.503 110.199 145.668 110.199C145.872 110.199 146.051 110.159 146.208 110.078C146.369 109.993 146.504 109.862 146.614 109.685C146.729 109.503 146.813 109.266 146.868 108.974C146.923 108.682 146.951 108.326 146.951 107.907ZM156.25 106.066V107.666C156.25 108.36 156.176 108.959 156.028 109.462C155.88 109.962 155.666 110.372 155.387 110.694C155.112 111.011 154.784 111.246 154.403 111.398C154.022 111.551 153.599 111.627 153.133 111.627C152.761 111.627 152.414 111.58 152.092 111.487C151.771 111.39 151.481 111.24 151.223 111.037C150.969 110.833 150.749 110.577 150.562 110.269C150.381 109.955 150.241 109.583 150.144 109.151C150.046 108.72 149.998 108.225 149.998 107.666V106.066C149.998 105.372 150.072 104.778 150.22 104.283C150.372 103.783 150.586 103.375 150.861 103.058C151.14 102.74 151.47 102.507 151.851 102.359C152.232 102.207 152.655 102.131 153.121 102.131C153.493 102.131 153.838 102.18 154.155 102.277C154.477 102.37 154.767 102.516 155.025 102.715C155.283 102.914 155.503 103.17 155.685 103.483C155.867 103.792 156.007 104.162 156.104 104.594C156.201 105.021 156.25 105.512 156.25 106.066ZM154.416 107.907V105.819C154.416 105.485 154.396 105.193 154.358 104.943C154.325 104.693 154.272 104.482 154.2 104.308C154.128 104.13 154.039 103.986 153.933 103.876C153.827 103.766 153.707 103.686 153.571 103.635C153.436 103.584 153.286 103.559 153.121 103.559C152.913 103.559 152.729 103.599 152.568 103.68C152.412 103.76 152.278 103.889 152.168 104.067C152.058 104.24 151.974 104.473 151.915 104.765C151.86 105.053 151.832 105.404 151.832 105.819V107.907C151.832 108.242 151.849 108.536 151.883 108.79C151.921 109.043 151.976 109.261 152.048 109.443C152.124 109.621 152.213 109.767 152.314 109.881C152.42 109.991 152.541 110.072 152.676 110.123C152.816 110.173 152.968 110.199 153.133 110.199C153.336 110.199 153.516 110.159 153.673 110.078C153.834 109.993 153.969 109.862 154.079 109.685C154.193 109.503 154.278 109.266 154.333 108.974C154.388 108.682 154.416 108.326 154.416 107.907ZM157.659 110.618C157.659 110.347 157.752 110.12 157.938 109.938C158.129 109.757 158.381 109.666 158.694 109.666C159.007 109.666 159.257 109.757 159.443 109.938C159.633 110.12 159.729 110.347 159.729 110.618C159.729 110.889 159.633 111.115 159.443 111.297C159.257 111.479 159.007 111.57 158.694 111.57C158.381 111.57 158.129 111.479 157.938 111.297C157.752 111.115 157.659 110.889 157.659 110.618ZM167.485 106.066V107.666C167.485 108.36 167.411 108.959 167.263 109.462C167.115 109.962 166.901 110.372 166.622 110.694C166.347 111.011 166.019 111.246 165.638 111.398C165.257 111.551 164.834 111.627 164.369 111.627C163.996 111.627 163.649 111.58 163.328 111.487C163.006 111.39 162.716 111.24 162.458 111.037C162.204 110.833 161.984 110.577 161.798 110.269C161.616 109.955 161.476 109.583 161.379 109.151C161.282 108.72 161.233 108.225 161.233 107.666V106.066C161.233 105.372 161.307 104.778 161.455 104.283C161.607 103.783 161.821 103.375 162.096 103.058C162.375 102.74 162.706 102.507 163.086 102.359C163.467 102.207 163.89 102.131 164.356 102.131C164.728 102.131 165.073 102.18 165.391 102.277C165.712 102.37 166.002 102.516 166.26 102.715C166.518 102.914 166.738 103.17 166.92 103.483C167.102 103.792 167.242 104.162 167.339 104.594C167.437 105.021 167.485 105.512 167.485 106.066ZM165.651 107.907V105.819C165.651 105.485 165.632 105.193 165.594 104.943C165.56 104.693 165.507 104.482 165.435 104.308C165.363 104.13 165.274 103.986 165.168 103.876C165.063 103.766 164.942 103.686 164.807 103.635C164.671 103.584 164.521 103.559 164.356 103.559C164.149 103.559 163.965 103.599 163.804 103.68C163.647 103.76 163.514 103.889 163.404 104.067C163.294 104.24 163.209 104.473 163.15 104.765C163.095 105.053 163.067 105.404 163.067 105.819V107.907C163.067 108.242 163.084 108.536 163.118 108.79C163.156 109.043 163.211 109.261 163.283 109.443C163.359 109.621 163.448 109.767 163.55 109.881C163.656 109.991 163.776 110.072 163.912 110.123C164.051 110.173 164.204 110.199 164.369 110.199C164.572 110.199 164.752 110.159 164.908 110.078C165.069 109.993 165.204 109.862 165.314 109.685C165.429 109.503 165.513 109.266 165.568 108.974C165.623 108.682 165.651 108.326 165.651 107.907ZM174.95 106.066V107.666C174.95 108.36 174.876 108.959 174.728 109.462C174.58 109.962 174.366 110.372 174.087 110.694C173.812 111.011 173.484 111.246 173.103 111.398C172.722 111.551 172.299 111.627 171.833 111.627C171.461 111.627 171.114 111.58 170.792 111.487C170.471 111.39 170.181 111.24 169.923 111.037C169.669 110.833 169.449 110.577 169.263 110.269C169.081 109.955 168.941 109.583 168.844 109.151C168.746 108.72 168.698 108.225 168.698 107.666V106.066C168.698 105.372 168.772 104.778 168.92 104.283C169.072 103.783 169.286 103.375 169.561 103.058C169.84 102.74 170.17 102.507 170.551 102.359C170.932 102.207 171.355 102.131 171.821 102.131C172.193 102.131 172.538 102.18 172.855 102.277C173.177 102.37 173.467 102.516 173.725 102.715C173.983 102.914 174.203 103.17 174.385 103.483C174.567 103.792 174.707 104.162 174.804 104.594C174.902 105.021 174.95 105.512 174.95 106.066ZM173.116 107.907V105.819C173.116 105.485 173.097 105.193 173.059 104.943C173.025 104.693 172.972 104.482 172.9 104.308C172.828 104.13 172.739 103.986 172.633 103.876C172.528 103.766 172.407 103.686 172.271 103.635C172.136 103.584 171.986 103.559 171.821 103.559C171.613 103.559 171.429 103.599 171.269 103.68C171.112 103.76 170.979 103.889 170.869 104.067C170.759 104.24 170.674 104.473 170.615 104.765C170.56 105.053 170.532 105.404 170.532 105.819V107.907C170.532 108.242 170.549 108.536 170.583 108.79C170.621 109.043 170.676 109.261 170.748 109.443C170.824 109.621 170.913 109.767 171.015 109.881C171.12 109.991 171.241 110.072 171.376 110.123C171.516 110.173 171.668 110.199 171.833 110.199C172.037 110.199 172.216 110.159 172.373 110.078C172.534 109.993 172.669 109.862 172.779 109.685C172.894 109.503 172.978 109.266 173.033 108.974C173.088 108.682 173.116 108.326 173.116 107.907Z",fill:"white"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_273_2176"},(0,h.createElement)("rect",{x:"15",y:"16.5",width:"268",height:"110",rx:"4",fill:"white"})))),{AdvancedFields:jC,FieldWrapper:xC,FieldSettingsWrapper:FC,ToolBarFields:BC,BlockName:AC,BlockDescription:PC,BlockLabel:SC,MacrosFields:NC,ClientSideMacros:IC}=JetFBComponents,{useUniqueNameOnDuplicate:TC}=JetFBHooks,{__:OC}=wp.i18n,{InspectorControls:JC,useBlockProps:RC}=wp.blockEditor,{TextControl:qC,TextareaControl:DC,ToggleControl:zC,PanelBody:UC,SelectControl:GC,__experimentalNumberControl:WC}=wp.components,KC=WC,$C={calc_hidden:OC("Check this to hide calculated field","jet-form-builder")},YC=JSON.parse('{"apiVersion":3,"name":"jet-forms/calculated-field","category":"jet-form-builder-fields","title":"Calculated Field","description":"Calculate and display your number values","icon":"\\n\\n","keywords":["jetformbuilder","field","calculated"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"validation":{"type":"object","default":{}},"value_type":{"type":"string","default":"number"},"date_format":{"type":"string","default":"YYYY-MM-DD"},"separate_decimals":{"type":"string","default":"."},"separate_thousands":{"type":"string","default":""},"calc_formula":{"type":"string","default":""},"precision":{"type":"number","default":2},"calc_prefix":{"type":"string","default":"","jfb":{"rich":true}},"calc_suffix":{"type":"string","default":"","jfb":{"rich":true}},"calc_hidden":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"placeholder":{"type":"string","default":""},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:XC}=wp.i18n,{createBlock:QC}=wp.blocks,{name:et,icon:Ct}=YC,tt={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ct}}),description:XC("Pull out the values from the form fields and meta fields and use them to calculate the formula of any complexity you've set before.","jet-form-builder"),edit:function(e){const C=RC();TC();const{attributes:t,setAttributes:l,isSelected:r,editProps:{uniqKey:n}}=e,a=(0,h.useRef)(null);return t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},kC):[(0,h.createElement)(BC,{key:n("ToolBarFields"),...e},(0,h.createElement)(IC,{withThis:!0},(0,h.createElement)(NC,{onClick:(e,C,r)=>{const n="option-label"===r?e.replace(/%$/,"::label%"):e,i=t.calc_formula||"",o=a.current;if(o){const e=o.selectionStart,C=o.selectionEnd,t=i.slice(0,e)+n+i.slice(C);l({calc_formula:t}),setTimeout(()=>{o.focus(),o.selectionStart=o.selectionEnd=e+n.length})}}}))),r&&(0,h.createElement)(JC,{key:n("InspectorControls")},(0,h.createElement)(UC,{title:OC("General","jet-form-builder"),key:"jet-form-general-fields"},(0,h.createElement)(SC,null),(0,h.createElement)(AC,null),(0,h.createElement)(PC,null)),(0,h.createElement)(FC,{...e},"date"!==t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:JetFormCalculatedField.field_desc}})):null,(0,h.createElement)(GC,{label:OC("Value type","jet-form-builder"),labelPosition:"top",value:t.value_type,onChange:e=>l({value_type:e}),options:[{value:"number",label:OC("as Number","jet-form-builder")},{value:"string",label:OC("as String","jet-form-builder")},{value:"date",label:OC("as Date","jet-form-builder")}]}),"date"===t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)(qC,{key:"calc_date_format",label:OC("Date Format","jet-form-builder"),value:t.date_format,onChange:e=>l({date_format:e})}),(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:JetFormCalculatedField.date_format}})):null,"number"===t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)(KC,{label:OC("Decimal Places Number","jet-form-builder"),labelPosition:"top",key:"precision",value:t.precision,onChange:e=>{l({precision:parseInt(e)})}}),(0,h.createElement)(qC,{key:"calc_separate_decimals",label:OC("Decimals separator","jet-form-builder"),value:t.separate_decimals,onChange:e=>l({separate_decimals:e})}),(0,h.createElement)(qC,{key:"calc_separate_thousands",label:OC("Thousands separator","jet-form-builder"),value:t.separate_thousands,onChange:e=>l({separate_thousands:e})}),(0,h.createElement)(qC,{key:"calc_prefix",label:OC("Calculated Value Prefix","jet-form-builder"),value:t.calc_prefix,help:OC("For space before or after text use:  ","jet-form-builder"),onChange:e=>{l({calc_prefix:e})}}),(0,h.createElement)(qC,{key:"calc_suffix",label:OC("Calculated Value Suffix","jet-form-builder"),value:t.calc_suffix,help:OC("For space before or after text use:  ","jet-form-builder"),onChange:e=>{l({calc_suffix:e})}})):null,(0,h.createElement)(zC,{key:"calc_hidden",label:OC("Hidden","jet-form-builder"),checked:t.calc_hidden,help:$C.calc_hidden,onChange:e=>{l({calc_hidden:Boolean(e)})}})),(0,h.createElement)(jC,{key:n("JetForm-advanced"),...e})),(0,h.createElement)("div",{...C,key:n("viewBlock")},(0,h.createElement)(xC,{key:n("FieldWrapper"),...e},(0,h.createElement)("div",{className:"jet-form-builder__calculated-field"},(0,h.createElement)("div",{className:"calc-prefix"},t.calc_prefix),(0,h.createElement)("div",{className:"calc-formula"},t.calc_formula),(0,h.createElement)("div",{className:"calc-suffix"},t.calc_suffix)),e.isSelected&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(DC,{key:"calc_formula",value:t.calc_formula,onChange:e=>{l({calc_formula:e})},ref:a}),(0,h.createElement)("div",{className:"jet-form-builder__calculated-field_info"},OC("You may use JavaScript's built-in ","jet-form-builder"),(0,h.createElement)("a",{href:"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math",target:"_blank",rel:"noopener noreferrer"},OC("Math","jet-form-builder")),OC(" object (e.g., Math.sqrt(16) returns 4) to perform more sophisticated operations.","jet-form-builder"),(0,h.createElement)("br",null),OC("You can also explore","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters",target:"_blank",rel:"noopener noreferrer"},OC("Filters","jet-form-builder")),", ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros",target:"_blank",rel:"noopener noreferrer"},OC("External Macros","jet-form-builder"))," ",OC("and","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Field-Attributes",target:"_blank",rel:"noopener noreferrer"},OC("Field Attributes","jet-form-builder"))," ",OC("for deeper customization.","jet-form-builder"),(0,h.createElement)("br",null),OC("Additionally, you can use the ternary operator (?:) for conditional calculations. For example: ((%field_one% + %field_two%) > 20) ? 10 : 5","jet-form-builder"),(0,h.createElement)("br",null),OC("For more details on using calculated fields, check out the Block Field section or read our in-depth guide","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://jetformbuilder.com/features/calculated-field",target:"_blank",rel:"noopener noreferrer"},OC("here","jet-form-builder")),"."))))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/number-field"],transform:e=>QC("jet-forms/number-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/number-field","jet-forms/text-field"],transform:e=>QC(et,{...e}),priority:0}]}};t.dn(yt);const{Repeater:lt,RepeaterAddNew:rt,RepeaterAddOrOperator:nt,ConditionItem:at,RepeaterState:it,ToggleControl:ot,ConditionsRepeaterContextProvider:st}=JetFBComponents,{useState:ct}=wp.element,{useBlockAttributes:dt,useBlockConditions:mt,useUniqKey:ut,useOnUpdateModal:pt}=JetFBHooks;let{SelectControl:ft,withFilters:Vt,Button:Ht,ToggleGroupControl:ht,__experimentalToggleGroupControl:bt}=wp.components;const{__:Mt}=wp.i18n,{addFilter:Lt}=wp.hooks;ht=ht||bt;const gt=e=>e.func_type&&e?.func_settings?.hasOwnProperty(e.func_type)?e?.func_settings[e.func_type]:{};Lt("jet.fb.block.condition.settings","jet-form-builder",e=>C=>{var t;const{current:l,settings:r,update:n}=C;return["show","hide"].includes(l.func_type)?(0,h.createElement)(ot,{checked:null!==(t=r?.dom)&&void 0!==t&&t,onChange:e=>n({dom:Boolean(e)})},Mt("Remove hidden elements from page HTML","jet-form-builder")+" ",(0,h.createElement)(Ht,{isLink:!0,onClick:()=>{},label:Mt("If this block is removed from the HTML, then when sending the form, the values from the inner fields will be empty","jet-form-builder"),showTooltip:!0},"(?)")):(0,h.createElement)(e,{...C})});const Zt=Vt("jet.fb.block.condition.settings")(()=>null);function yt(){var e;const[C,t]=dt(),[l,r]=ct(()=>C),{functions:n}=mt(),a=ut(),i=e=>{const C="function"==typeof e?e(l.conditions):e;r(e=>({...e,conditions:C}))};pt(()=>t(l));const o=gt(l);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ft,{key:a("SelectControl-operator"),label:Mt("Which function need execute?","jet-form-builder"),labelPosition:"side",value:l.func_type,options:n,onChange:e=>r(C=>({...C,func_type:e}))}),(0,h.createElement)(Zt,{current:l,settings:o,update:e=>r(C=>{var t;return{...C,func_settings:{...null!==(t=C?.func_settings)&&void 0!==t?t:{},[C.func_type]:{...o,...e}}}})}),(0,h.createElement)(st,null,(0,h.createElement)(lt,{items:null!==(e=l.conditions)&&void 0!==e?e:[],onSetState:i},(0,h.createElement)(at,null))),(0,h.createElement)(it,{state:i},(0,h.createElement)(ht,{style:{display:"flex"},hideLabelFromVision:!0,className:"jfb-toggle-group-control jfb-toggle-group-control--no-gap"},(0,h.createElement)(rt,null,Mt("Add Condition","jet-form-builder")),Boolean(l?.conditions?.length)&&(0,h.createElement)(nt,null,Mt("Add OR Operator","jet-form-builder")))))}const{ActionModal:Et}=JetFBComponents;function wt(e){const{setShowModal:C}=e;return(0,h.createElement)(Et,{classNames:["width-60"],onRequestClose:()=>C(!1),title:"Conditional Logic"},(0,h.createElement)(yt,null))}const{createContext:vt}=wp.element,_t=vt({showModal:!1,setShowModal:()=>{}}),{DetailsContainer:kt,HoverContainer:jt,HumanReadableConditions:xt}=JetFBComponents,{useBlockAttributes:Ft}=JetFBHooks,{useState:Bt,useContext:At}=wp.element,{__:Pt}=wp.i18n,{Button:St}=wp.components,Nt=function({group:e}){const[C,t]=Bt(!1),{setShowModal:l}=At(_t),[r,n]=Ft(),a=e.map(({condition:e})=>e),i=e.map(({index:e})=>e);return(0,h.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>t(!0),onFocus:()=>t(!0),onMouseOut:()=>t(!1),onBlur:()=>t(!1)},(0,h.createElement)(jt,{isHover:C},(0,h.createElement)(St,{isSmall:!0,isSecondary:!0,icon:"edit",onClick:()=>{n(({conditions:e})=>e.map((e,C)=>(e.__visible=C===i[0],e))),l(e=>!e)}},Pt("Edit","jet-form-builder")),(0,h.createElement)(St,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{n({conditions:r.conditions.filter((e,C)=>!i.includes(C))})}},Pt("Delete","jet-form-builder"))),(0,h.createElement)(kt,null,(0,h.createElement)(xt,{conditions:a,showWarning:!0})))},{DetailsContainer:It,HoverContainer:Tt}=JetFBComponents,{useBlockAttributes:Ot}=JetFBHooks,{useContext:Jt,useState:Rt}=wp.element,{__:qt}=wp.i18n,{Button:Dt}=wp.components,zt=function(){const{setShowModal:e}=Jt(_t),[C,t]=Ot(),[l,r]=Rt(!1);return(0,h.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>r(!0),onFocus:()=>r(!0),onMouseOut:()=>r(!1),onBlur:()=>r(!1)},(0,h.createElement)(Tt,{isHover:l},(0,h.createElement)(Dt,{isSmall:!0,isSecondary:!0,icon:"plus-alt2",onClick:()=>{t({conditions:[...JSON.parse(JSON.stringify(C.conditions)),{__visible:!0}]}),e(e=>!e)}},qt("Add new","jet-form-builder"))),(0,h.createElement)(It,null,(0,h.createElement)("span",{"data-title":qt("You have no conditions in this block.","jet-form-builder")}),(0,h.createElement)("span",{"data-title":qt("Please click here to add new.","jet-form-builder")})))},{__:Ut}=wp.i18n,{Children:Gt,cloneElement:Wt}=wp.element,{ContainersList:Kt}=JetFBComponents,$t=e=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)("b",null,Ut("OR","jet-form-builder")),(0,h.createElement)(Nt,{group:e})),Yt=function({attributes:e}){return Boolean(e?.conditions?.length)?(0,h.createElement)(Kt,null,Gt.map((e=>{let C={},t=0,l=0;for(const n of e){var r;n.hasOwnProperty("or_operator")?(t++,l++):(C[t]=null!==(r=C[t])&&void 0!==r?r:[],C[t].push({condition:n,index:l}),l++)}C=Object.values(C);const n=C.filter((e,C)=>0!==C);return[(0,h.createElement)(Nt,{group:C[0],key:"first_item"}),...n.map($t)]})(e.conditions),Wt)):(0,h.createElement)(zt,null)},Xt=(0,h.createElement)("svg",{width:"298",height:"149",viewBox:"0 0 298 149",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"149",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M18.7734 19.9922L20.749 13.0469H21.7061L21.1523 15.7471L19.0264 23H18.0762L18.7734 19.9922ZM16.7295 13.0469L18.3018 19.8555L18.7734 23H17.8301L15.417 13.0469H16.7295ZM24.2627 19.8486L25.8008 13.0469H27.1201L24.7139 23H23.7705L24.2627 19.8486ZM21.8496 13.0469L23.7705 19.9922L24.4678 23H23.5176L21.4668 15.7471L20.9062 13.0469H21.8496ZM29.6562 12.5V23H28.3916V12.5H29.6562ZM29.3555 19.0215L28.8291 19.001C28.8337 18.4951 28.9089 18.028 29.0547 17.5996C29.2005 17.1667 29.4056 16.7907 29.6699 16.4717C29.9342 16.1527 30.2487 15.9066 30.6133 15.7334C30.9824 15.5557 31.3903 15.4668 31.8369 15.4668C32.2015 15.4668 32.5296 15.5169 32.8213 15.6172C33.113 15.7129 33.3613 15.8678 33.5664 16.082C33.776 16.2962 33.9355 16.5742 34.0449 16.916C34.1543 17.2533 34.209 17.6657 34.209 18.1533V23H32.9375V18.1396C32.9375 17.7523 32.8805 17.4424 32.7666 17.21C32.6527 16.973 32.4863 16.8021 32.2676 16.6973C32.0488 16.5879 31.7799 16.5332 31.4609 16.5332C31.1465 16.5332 30.8594 16.5993 30.5996 16.7314C30.3444 16.8636 30.1234 17.0459 29.9365 17.2783C29.7542 17.5107 29.6107 17.7773 29.5059 18.0781C29.4056 18.3743 29.3555 18.6888 29.3555 19.0215ZM40.4639 21.7354V17.9277C40.4639 17.6361 40.4046 17.3831 40.2861 17.1689C40.1722 16.9502 39.999 16.7816 39.7666 16.6631C39.5342 16.5446 39.2471 16.4854 38.9053 16.4854C38.5863 16.4854 38.306 16.54 38.0645 16.6494C37.8275 16.7588 37.6406 16.9023 37.5039 17.0801C37.3717 17.2578 37.3057 17.4492 37.3057 17.6543H36.041C36.041 17.39 36.1094 17.1279 36.2461 16.8682C36.3828 16.6084 36.5788 16.3737 36.834 16.1641C37.0938 15.9499 37.4036 15.7812 37.7637 15.6582C38.1283 15.5306 38.5339 15.4668 38.9805 15.4668C39.5182 15.4668 39.9922 15.5579 40.4023 15.7402C40.8171 15.9225 41.1406 16.1982 41.373 16.5674C41.61 16.932 41.7285 17.39 41.7285 17.9414V21.3867C41.7285 21.6328 41.749 21.8949 41.79 22.1729C41.8356 22.4508 41.9017 22.6901 41.9883 22.8906V23H40.6689C40.6051 22.8542 40.555 22.6605 40.5186 22.4189C40.4821 22.1729 40.4639 21.945 40.4639 21.7354ZM40.6826 18.5156L40.6963 19.4043H39.418C39.0579 19.4043 38.7367 19.4339 38.4541 19.4932C38.1715 19.5479 37.9346 19.6322 37.7432 19.7461C37.5518 19.86 37.4059 20.0036 37.3057 20.1768C37.2054 20.3454 37.1553 20.5436 37.1553 20.7715C37.1553 21.0039 37.2077 21.2158 37.3125 21.4072C37.4173 21.5986 37.5745 21.7513 37.7842 21.8652C37.9984 21.9746 38.2604 22.0293 38.5703 22.0293C38.9577 22.0293 39.2995 21.9473 39.5957 21.7832C39.8919 21.6191 40.1266 21.4186 40.2998 21.1816C40.4775 20.9447 40.5732 20.7145 40.5869 20.4912L41.127 21.0996C41.0951 21.291 41.0085 21.5029 40.8672 21.7354C40.7259 21.9678 40.5368 22.1911 40.2998 22.4053C40.0674 22.6149 39.7894 22.7904 39.4658 22.9316C39.1468 23.0684 38.7868 23.1367 38.3857 23.1367C37.8844 23.1367 37.4447 23.0387 37.0664 22.8428C36.6927 22.6468 36.401 22.3848 36.1914 22.0566C35.9863 21.724 35.8838 21.3525 35.8838 20.9424C35.8838 20.5459 35.9613 20.1973 36.1162 19.8965C36.2712 19.5911 36.4945 19.3382 36.7861 19.1377C37.0778 18.9326 37.4287 18.7777 37.8389 18.6729C38.249 18.568 38.707 18.5156 39.2129 18.5156H40.6826ZM46.8145 15.6035V16.5742H42.8154V15.6035H46.8145ZM44.1689 13.8057H45.4336V21.168C45.4336 21.4186 45.4723 21.6077 45.5498 21.7354C45.6273 21.863 45.7275 21.9473 45.8506 21.9883C45.9736 22.0293 46.1058 22.0498 46.2471 22.0498C46.3519 22.0498 46.4613 22.0407 46.5752 22.0225C46.6937 21.9997 46.7826 21.9814 46.8418 21.9678L46.8486 23C46.7484 23.0319 46.6162 23.0615 46.4521 23.0889C46.2926 23.1208 46.099 23.1367 45.8711 23.1367C45.5612 23.1367 45.2764 23.0752 45.0166 22.9521C44.7568 22.8291 44.5495 22.624 44.3945 22.3369C44.2441 22.0452 44.1689 21.6533 44.1689 21.1611V13.8057ZM54.8672 15.6035V16.5742H50.8682V15.6035H54.8672ZM52.2217 13.8057H53.4863V21.168C53.4863 21.4186 53.5251 21.6077 53.6025 21.7354C53.68 21.863 53.7803 21.9473 53.9033 21.9883C54.0264 22.0293 54.1585 22.0498 54.2998 22.0498C54.4046 22.0498 54.514 22.0407 54.6279 22.0225C54.7464 21.9997 54.8353 21.9814 54.8945 21.9678L54.9014 23C54.8011 23.0319 54.6689 23.0615 54.5049 23.0889C54.3454 23.1208 54.1517 23.1367 53.9238 23.1367C53.6139 23.1367 53.3291 23.0752 53.0693 22.9521C52.8096 22.8291 52.6022 22.624 52.4473 22.3369C52.2969 22.0452 52.2217 21.6533 52.2217 21.1611V13.8057ZM57.6152 16.7656V23H56.3506V15.6035H57.5811L57.6152 16.7656ZM59.9258 15.5625L59.9189 16.7383C59.8141 16.7155 59.7139 16.7018 59.6182 16.6973C59.527 16.6882 59.4222 16.6836 59.3037 16.6836C59.012 16.6836 58.7546 16.7292 58.5312 16.8203C58.3079 16.9115 58.1188 17.0391 57.9639 17.2031C57.8089 17.3672 57.6859 17.5632 57.5947 17.791C57.5081 18.0143 57.4512 18.2604 57.4238 18.5293L57.0684 18.7344C57.0684 18.2878 57.1117 17.8685 57.1982 17.4766C57.2894 17.0846 57.4284 16.7383 57.6152 16.4375C57.8021 16.1322 58.0391 15.8952 58.3262 15.7266C58.6178 15.5534 58.9642 15.4668 59.3652 15.4668C59.4564 15.4668 59.5612 15.4782 59.6797 15.501C59.7982 15.5192 59.8802 15.5397 59.9258 15.5625ZM65.1826 21.7354V17.9277C65.1826 17.6361 65.1234 17.3831 65.0049 17.1689C64.891 16.9502 64.7178 16.7816 64.4854 16.6631C64.2529 16.5446 63.9658 16.4854 63.624 16.4854C63.305 16.4854 63.0247 16.54 62.7832 16.6494C62.5462 16.7588 62.3594 16.9023 62.2227 17.0801C62.0905 17.2578 62.0244 17.4492 62.0244 17.6543H60.7598C60.7598 17.39 60.8281 17.1279 60.9648 16.8682C61.1016 16.6084 61.2975 16.3737 61.5527 16.1641C61.8125 15.9499 62.1224 15.7812 62.4824 15.6582C62.847 15.5306 63.2526 15.4668 63.6992 15.4668C64.237 15.4668 64.7109 15.5579 65.1211 15.7402C65.5358 15.9225 65.8594 16.1982 66.0918 16.5674C66.3288 16.932 66.4473 17.39 66.4473 17.9414V21.3867C66.4473 21.6328 66.4678 21.8949 66.5088 22.1729C66.5544 22.4508 66.6204 22.6901 66.707 22.8906V23H65.3877C65.3239 22.8542 65.2738 22.6605 65.2373 22.4189C65.2008 22.1729 65.1826 21.945 65.1826 21.7354ZM65.4014 18.5156L65.415 19.4043H64.1367C63.7767 19.4043 63.4554 19.4339 63.1729 19.4932C62.8903 19.5479 62.6533 19.6322 62.4619 19.7461C62.2705 19.86 62.1247 20.0036 62.0244 20.1768C61.9242 20.3454 61.874 20.5436 61.874 20.7715C61.874 21.0039 61.9264 21.2158 62.0312 21.4072C62.1361 21.5986 62.2933 21.7513 62.5029 21.8652C62.7171 21.9746 62.9792 22.0293 63.2891 22.0293C63.6764 22.0293 64.0182 21.9473 64.3145 21.7832C64.6107 21.6191 64.8454 21.4186 65.0186 21.1816C65.1963 20.9447 65.292 20.7145 65.3057 20.4912L65.8457 21.0996C65.8138 21.291 65.7272 21.5029 65.5859 21.7354C65.4447 21.9678 65.2555 22.1911 65.0186 22.4053C64.7861 22.6149 64.5081 22.7904 64.1846 22.9316C63.8656 23.0684 63.5055 23.1367 63.1045 23.1367C62.6032 23.1367 62.1634 23.0387 61.7852 22.8428C61.4115 22.6468 61.1198 22.3848 60.9102 22.0566C60.7051 21.724 60.6025 21.3525 60.6025 20.9424C60.6025 20.5459 60.68 20.1973 60.835 19.8965C60.9899 19.5911 61.2132 19.3382 61.5049 19.1377C61.7965 18.9326 62.1475 18.7777 62.5576 18.6729C62.9678 18.568 63.4258 18.5156 63.9316 18.5156H65.4014ZM69.7012 17.1826V23H68.4365V15.6035H69.6328L69.7012 17.1826ZM69.4004 19.0215L68.874 19.001C68.8786 18.4951 68.9538 18.028 69.0996 17.5996C69.2454 17.1667 69.4505 16.7907 69.7148 16.4717C69.9792 16.1527 70.2936 15.9066 70.6582 15.7334C71.0273 15.5557 71.4352 15.4668 71.8818 15.4668C72.2464 15.4668 72.5745 15.5169 72.8662 15.6172C73.1579 15.7129 73.4062 15.8678 73.6113 16.082C73.821 16.2962 73.9805 16.5742 74.0898 16.916C74.1992 17.2533 74.2539 17.6657 74.2539 18.1533V23H72.9824V18.1396C72.9824 17.7523 72.9255 17.4424 72.8115 17.21C72.6976 16.973 72.5312 16.8021 72.3125 16.6973C72.0938 16.5879 71.8249 16.5332 71.5059 16.5332C71.1914 16.5332 70.9043 16.5993 70.6445 16.7314C70.3893 16.8636 70.1683 17.0459 69.9814 17.2783C69.7992 17.5107 69.6556 17.7773 69.5508 18.0781C69.4505 18.3743 69.4004 18.6888 69.4004 19.0215ZM80.4814 21.0381C80.4814 20.8558 80.4404 20.6872 80.3584 20.5322C80.2809 20.3727 80.1191 20.2292 79.873 20.1016C79.6315 19.9694 79.2669 19.8555 78.7793 19.7598C78.3691 19.6732 77.9977 19.5706 77.665 19.4521C77.3369 19.3337 77.0566 19.1901 76.8242 19.0215C76.5964 18.8529 76.4209 18.6546 76.2979 18.4268C76.1748 18.1989 76.1133 17.9323 76.1133 17.627C76.1133 17.3353 76.1771 17.0596 76.3047 16.7998C76.4368 16.54 76.6214 16.3099 76.8584 16.1094C77.0999 15.9089 77.3893 15.7516 77.7266 15.6377C78.0638 15.5238 78.4398 15.4668 78.8545 15.4668C79.4469 15.4668 79.9528 15.5716 80.3721 15.7812C80.7913 15.9909 81.1126 16.2712 81.3359 16.6221C81.5592 16.9684 81.6709 17.3535 81.6709 17.7773H80.4062C80.4062 17.5723 80.3447 17.374 80.2217 17.1826C80.1032 16.9867 79.9277 16.8249 79.6953 16.6973C79.4674 16.5697 79.1872 16.5059 78.8545 16.5059C78.5036 16.5059 78.2188 16.5605 78 16.6699C77.7858 16.7747 77.6286 16.9092 77.5283 17.0732C77.4326 17.2373 77.3848 17.4105 77.3848 17.5928C77.3848 17.7295 77.4076 17.8525 77.4531 17.9619C77.5033 18.0667 77.5898 18.1647 77.7129 18.2559C77.8359 18.3424 78.0091 18.4245 78.2324 18.502C78.4557 18.5794 78.7406 18.6569 79.0869 18.7344C79.693 18.8711 80.1921 19.0352 80.584 19.2266C80.9759 19.418 81.2676 19.6527 81.459 19.9307C81.6504 20.2087 81.7461 20.5459 81.7461 20.9424C81.7461 21.266 81.6777 21.5622 81.541 21.8311C81.4089 22.0999 81.2152 22.3324 80.96 22.5283C80.7093 22.7197 80.4085 22.8701 80.0576 22.9795C79.7113 23.0843 79.3216 23.1367 78.8887 23.1367C78.237 23.1367 77.6855 23.0205 77.2344 22.7881C76.7832 22.5557 76.4414 22.2549 76.209 21.8857C75.9766 21.5166 75.8604 21.127 75.8604 20.7168H77.1318C77.1501 21.0632 77.2503 21.3389 77.4326 21.5439C77.6149 21.7445 77.8382 21.888 78.1025 21.9746C78.3669 22.0566 78.6289 22.0977 78.8887 22.0977C79.235 22.0977 79.5244 22.0521 79.7568 21.9609C79.9938 21.8698 80.1738 21.7445 80.2969 21.585C80.4199 21.4255 80.4814 21.2432 80.4814 21.0381ZM84.6719 17.0254V25.8438H83.4004V15.6035H84.5625L84.6719 17.0254ZM89.6553 19.2402V19.3838C89.6553 19.9215 89.5915 20.4206 89.4639 20.8809C89.3363 21.3366 89.1494 21.7331 88.9033 22.0703C88.6618 22.4076 88.3633 22.6696 88.0078 22.8564C87.6523 23.0433 87.2445 23.1367 86.7842 23.1367C86.3148 23.1367 85.9001 23.0592 85.54 22.9043C85.18 22.7493 84.8747 22.5238 84.624 22.2275C84.3734 21.9313 84.1729 21.5758 84.0225 21.1611C83.8766 20.7464 83.7764 20.2793 83.7217 19.7598V18.9941C83.7764 18.4473 83.8789 17.9574 84.0293 17.5244C84.1797 17.0915 84.3779 16.7223 84.624 16.417C84.8747 16.1071 85.1777 15.8724 85.5332 15.7129C85.8887 15.5488 86.2988 15.4668 86.7637 15.4668C87.2285 15.4668 87.641 15.5579 88.001 15.7402C88.361 15.918 88.6641 16.1732 88.9102 16.5059C89.1562 16.8385 89.3408 17.2373 89.4639 17.7021C89.5915 18.1624 89.6553 18.6751 89.6553 19.2402ZM88.3838 19.3838V19.2402C88.3838 18.8711 88.3451 18.5247 88.2676 18.2012C88.1901 17.873 88.0693 17.5859 87.9053 17.3398C87.7458 17.0892 87.5407 16.8932 87.29 16.752C87.0394 16.6061 86.7409 16.5332 86.3945 16.5332C86.0755 16.5332 85.7975 16.5879 85.5605 16.6973C85.3281 16.8066 85.1299 16.9548 84.9658 17.1416C84.8018 17.3239 84.6673 17.5335 84.5625 17.7705C84.4622 18.0029 84.387 18.2445 84.3369 18.4951V20.2656C84.4281 20.5846 84.5557 20.8854 84.7197 21.168C84.8838 21.446 85.1025 21.6715 85.376 21.8447C85.6494 22.0133 85.9935 22.0977 86.4082 22.0977C86.75 22.0977 87.0439 22.027 87.29 21.8857C87.5407 21.7399 87.7458 21.5417 87.9053 21.291C88.0693 21.0404 88.1901 20.7533 88.2676 20.4297C88.3451 20.1016 88.3838 19.7529 88.3838 19.3838ZM90.9336 19.3838V19.2266C90.9336 18.6934 91.0111 18.1989 91.166 17.7432C91.321 17.2829 91.5443 16.8841 91.8359 16.5469C92.1276 16.2051 92.4808 15.9408 92.8955 15.7539C93.3102 15.5625 93.7751 15.4668 94.29 15.4668C94.8096 15.4668 95.2767 15.5625 95.6914 15.7539C96.1107 15.9408 96.4661 16.2051 96.7578 16.5469C97.054 16.8841 97.2796 17.2829 97.4346 17.7432C97.5895 18.1989 97.667 18.6934 97.667 19.2266V19.3838C97.667 19.917 97.5895 20.4115 97.4346 20.8672C97.2796 21.3229 97.054 21.7217 96.7578 22.0635C96.4661 22.4007 96.113 22.665 95.6982 22.8564C95.2881 23.0433 94.8232 23.1367 94.3037 23.1367C93.7842 23.1367 93.3171 23.0433 92.9023 22.8564C92.4876 22.665 92.1322 22.4007 91.8359 22.0635C91.5443 21.7217 91.321 21.3229 91.166 20.8672C91.0111 20.4115 90.9336 19.917 90.9336 19.3838ZM92.1982 19.2266V19.3838C92.1982 19.7529 92.2415 20.1016 92.3281 20.4297C92.4147 20.7533 92.5446 21.0404 92.7178 21.291C92.8955 21.5417 93.1165 21.7399 93.3809 21.8857C93.6452 22.027 93.9528 22.0977 94.3037 22.0977C94.6501 22.0977 94.9531 22.027 95.2129 21.8857C95.4772 21.7399 95.696 21.5417 95.8691 21.291C96.0423 21.0404 96.1722 20.7533 96.2588 20.4297C96.3499 20.1016 96.3955 19.7529 96.3955 19.3838V19.2266C96.3955 18.862 96.3499 18.5179 96.2588 18.1943C96.1722 17.8662 96.04 17.5768 95.8623 17.3262C95.6891 17.071 95.4704 16.8704 95.2061 16.7246C94.9463 16.5788 94.641 16.5059 94.29 16.5059C93.9437 16.5059 93.6383 16.5788 93.374 16.7246C93.1143 16.8704 92.8955 17.071 92.7178 17.3262C92.5446 17.5768 92.4147 17.8662 92.3281 18.1943C92.2415 18.5179 92.1982 18.862 92.1982 19.2266ZM100.518 16.7656V23H99.2529V15.6035H100.483L100.518 16.7656ZM102.828 15.5625L102.821 16.7383C102.716 16.7155 102.616 16.7018 102.521 16.6973C102.429 16.6882 102.325 16.6836 102.206 16.6836C101.914 16.6836 101.657 16.7292 101.434 16.8203C101.21 16.9115 101.021 17.0391 100.866 17.2031C100.711 17.3672 100.588 17.5632 100.497 17.791C100.41 18.0143 100.354 18.2604 100.326 18.5293L99.9707 18.7344C99.9707 18.2878 100.014 17.8685 100.101 17.4766C100.192 17.0846 100.331 16.7383 100.518 16.4375C100.704 16.1322 100.941 15.8952 101.229 15.7266C101.52 15.5534 101.867 15.4668 102.268 15.4668C102.359 15.4668 102.464 15.4782 102.582 15.501C102.701 15.5192 102.783 15.5397 102.828 15.5625ZM107.436 15.6035V16.5742H103.437V15.6035H107.436ZM104.79 13.8057H106.055V21.168C106.055 21.4186 106.093 21.6077 106.171 21.7354C106.248 21.863 106.349 21.9473 106.472 21.9883C106.595 22.0293 106.727 22.0498 106.868 22.0498C106.973 22.0498 107.082 22.0407 107.196 22.0225C107.315 21.9997 107.404 21.9814 107.463 21.9678L107.47 23C107.369 23.0319 107.237 23.0615 107.073 23.0889C106.914 23.1208 106.72 23.1367 106.492 23.1367C106.182 23.1367 105.897 23.0752 105.638 22.9521C105.378 22.8291 105.171 22.624 105.016 22.3369C104.865 22.0452 104.79 21.6533 104.79 21.1611V13.8057ZM114.265 21.6875L116.165 15.6035H116.999L116.835 16.8135L114.9 23H114.087L114.265 21.6875ZM112.986 15.6035L114.606 21.7559L114.723 23H113.868L111.722 15.6035H112.986ZM118.817 21.708L120.362 15.6035H121.62L119.474 23H118.626L118.817 21.708ZM117.184 15.6035L119.043 21.585L119.255 23H118.448L116.459 16.7998L116.295 15.6035H117.184ZM124.293 15.6035V23H123.021V15.6035H124.293ZM122.926 13.6416C122.926 13.4365 122.987 13.2633 123.11 13.1221C123.238 12.9808 123.425 12.9102 123.671 12.9102C123.912 12.9102 124.097 12.9808 124.225 13.1221C124.357 13.2633 124.423 13.4365 124.423 13.6416C124.423 13.8376 124.357 14.0062 124.225 14.1475C124.097 14.2842 123.912 14.3525 123.671 14.3525C123.425 14.3525 123.238 14.2842 123.11 14.1475C122.987 14.0062 122.926 13.8376 122.926 13.6416ZM127.697 12.5V23H126.426V12.5H127.697ZM131.102 12.5V23H129.83V12.5H131.102ZM138.683 22.2344L140.74 15.6035H142.094L139.127 24.1416C139.059 24.3239 138.967 24.5199 138.854 24.7295C138.744 24.9437 138.603 25.1465 138.43 25.3379C138.257 25.5293 138.047 25.6842 137.801 25.8027C137.559 25.9258 137.27 25.9873 136.933 25.9873C136.832 25.9873 136.705 25.9736 136.55 25.9463C136.395 25.9189 136.285 25.8962 136.222 25.8779L136.215 24.8525C136.251 24.8571 136.308 24.8617 136.386 24.8662C136.468 24.8753 136.525 24.8799 136.557 24.8799C136.844 24.8799 137.088 24.8411 137.288 24.7637C137.489 24.6908 137.657 24.5654 137.794 24.3877C137.935 24.2145 138.056 23.9753 138.156 23.6699L138.683 22.2344ZM137.172 15.6035L139.093 21.3457L139.421 22.6787L138.512 23.1436L135.791 15.6035H137.172ZM142.791 19.3838V19.2266C142.791 18.6934 142.868 18.1989 143.023 17.7432C143.178 17.2829 143.402 16.8841 143.693 16.5469C143.985 16.2051 144.338 15.9408 144.753 15.7539C145.168 15.5625 145.632 15.4668 146.147 15.4668C146.667 15.4668 147.134 15.5625 147.549 15.7539C147.968 15.9408 148.324 16.2051 148.615 16.5469C148.911 16.8841 149.137 17.2829 149.292 17.7432C149.447 18.1989 149.524 18.6934 149.524 19.2266V19.3838C149.524 19.917 149.447 20.4115 149.292 20.8672C149.137 21.3229 148.911 21.7217 148.615 22.0635C148.324 22.4007 147.97 22.665 147.556 22.8564C147.146 23.0433 146.681 23.1367 146.161 23.1367C145.642 23.1367 145.174 23.0433 144.76 22.8564C144.345 22.665 143.99 22.4007 143.693 22.0635C143.402 21.7217 143.178 21.3229 143.023 20.8672C142.868 20.4115 142.791 19.917 142.791 19.3838ZM144.056 19.2266V19.3838C144.056 19.7529 144.099 20.1016 144.186 20.4297C144.272 20.7533 144.402 21.0404 144.575 21.291C144.753 21.5417 144.974 21.7399 145.238 21.8857C145.503 22.027 145.81 22.0977 146.161 22.0977C146.507 22.0977 146.811 22.027 147.07 21.8857C147.335 21.7399 147.553 21.5417 147.727 21.291C147.9 21.0404 148.03 20.7533 148.116 20.4297C148.207 20.1016 148.253 19.7529 148.253 19.3838V19.2266C148.253 18.862 148.207 18.5179 148.116 18.1943C148.03 17.8662 147.897 17.5768 147.72 17.3262C147.547 17.071 147.328 16.8704 147.063 16.7246C146.804 16.5788 146.498 16.5059 146.147 16.5059C145.801 16.5059 145.496 16.5788 145.231 16.7246C144.972 16.8704 144.753 17.071 144.575 17.3262C144.402 17.5768 144.272 17.8662 144.186 18.1943C144.099 18.5179 144.056 18.862 144.056 19.2266ZM155.636 21.291V15.6035H156.907V23H155.697L155.636 21.291ZM155.875 19.7324L156.401 19.7188C156.401 20.2109 156.349 20.6667 156.244 21.0859C156.144 21.5007 155.98 21.8607 155.752 22.166C155.524 22.4714 155.226 22.7106 154.856 22.8838C154.487 23.0524 154.038 23.1367 153.51 23.1367C153.15 23.1367 152.819 23.0843 152.519 22.9795C152.222 22.8747 151.967 22.7129 151.753 22.4941C151.539 22.2754 151.372 21.9906 151.254 21.6396C151.14 21.2887 151.083 20.8672 151.083 20.375V15.6035H152.348V20.3887C152.348 20.7214 152.384 20.9971 152.457 21.2158C152.535 21.43 152.637 21.6009 152.765 21.7285C152.897 21.8516 153.043 21.9382 153.202 21.9883C153.366 22.0384 153.535 22.0635 153.708 22.0635C154.246 22.0635 154.672 21.9609 154.986 21.7559C155.301 21.5462 155.526 21.266 155.663 20.915C155.804 20.5596 155.875 20.1654 155.875 19.7324ZM166.833 21.291V15.6035H168.104V23H166.895L166.833 21.291ZM167.072 19.7324L167.599 19.7188C167.599 20.2109 167.546 20.6667 167.441 21.0859C167.341 21.5007 167.177 21.8607 166.949 22.166C166.721 22.4714 166.423 22.7106 166.054 22.8838C165.685 23.0524 165.236 23.1367 164.707 23.1367C164.347 23.1367 164.017 23.0843 163.716 22.9795C163.42 22.8747 163.164 22.7129 162.95 22.4941C162.736 22.2754 162.57 21.9906 162.451 21.6396C162.337 21.2887 162.28 20.8672 162.28 20.375V15.6035H163.545V20.3887C163.545 20.7214 163.581 20.9971 163.654 21.2158C163.732 21.43 163.834 21.6009 163.962 21.7285C164.094 21.8516 164.24 21.9382 164.399 21.9883C164.563 22.0384 164.732 22.0635 164.905 22.0635C165.443 22.0635 165.869 21.9609 166.184 21.7559C166.498 21.5462 166.724 21.266 166.86 20.915C167.002 20.5596 167.072 20.1654 167.072 19.7324ZM174.339 21.0381C174.339 20.8558 174.298 20.6872 174.216 20.5322C174.138 20.3727 173.977 20.2292 173.73 20.1016C173.489 19.9694 173.124 19.8555 172.637 19.7598C172.227 19.6732 171.855 19.5706 171.522 19.4521C171.194 19.3337 170.914 19.1901 170.682 19.0215C170.454 18.8529 170.278 18.6546 170.155 18.4268C170.032 18.1989 169.971 17.9323 169.971 17.627C169.971 17.3353 170.035 17.0596 170.162 16.7998C170.294 16.54 170.479 16.3099 170.716 16.1094C170.957 15.9089 171.247 15.7516 171.584 15.6377C171.921 15.5238 172.297 15.4668 172.712 15.4668C173.304 15.4668 173.81 15.5716 174.229 15.7812C174.649 15.9909 174.97 16.2712 175.193 16.6221C175.417 16.9684 175.528 17.3535 175.528 17.7773H174.264C174.264 17.5723 174.202 17.374 174.079 17.1826C173.961 16.9867 173.785 16.8249 173.553 16.6973C173.325 16.5697 173.045 16.5059 172.712 16.5059C172.361 16.5059 172.076 16.5605 171.857 16.6699C171.643 16.7747 171.486 16.9092 171.386 17.0732C171.29 17.2373 171.242 17.4105 171.242 17.5928C171.242 17.7295 171.265 17.8525 171.311 17.9619C171.361 18.0667 171.447 18.1647 171.57 18.2559C171.693 18.3424 171.867 18.4245 172.09 18.502C172.313 18.5794 172.598 18.6569 172.944 18.7344C173.55 18.8711 174.049 19.0352 174.441 19.2266C174.833 19.418 175.125 19.6527 175.316 19.9307C175.508 20.2087 175.604 20.5459 175.604 20.9424C175.604 21.266 175.535 21.5622 175.398 21.8311C175.266 22.0999 175.073 22.3324 174.817 22.5283C174.567 22.7197 174.266 22.8701 173.915 22.9795C173.569 23.0843 173.179 23.1367 172.746 23.1367C172.094 23.1367 171.543 23.0205 171.092 22.7881C170.641 22.5557 170.299 22.2549 170.066 21.8857C169.834 21.5166 169.718 21.127 169.718 20.7168H170.989C171.007 21.0632 171.108 21.3389 171.29 21.5439C171.472 21.7445 171.696 21.888 171.96 21.9746C172.224 22.0566 172.486 22.0977 172.746 22.0977C173.092 22.0977 173.382 22.0521 173.614 21.9609C173.851 21.8698 174.031 21.7445 174.154 21.585C174.277 21.4255 174.339 21.2432 174.339 21.0381ZM180.334 23.1367C179.819 23.1367 179.352 23.0501 178.933 22.877C178.518 22.6992 178.16 22.4508 177.859 22.1318C177.563 21.8128 177.335 21.4346 177.176 20.9971C177.016 20.5596 176.937 20.0811 176.937 19.5615V19.2744C176.937 18.6729 177.025 18.1374 177.203 17.668C177.381 17.194 177.622 16.793 177.928 16.4648C178.233 16.1367 178.579 15.8883 178.967 15.7197C179.354 15.5511 179.755 15.4668 180.17 15.4668C180.699 15.4668 181.154 15.5579 181.537 15.7402C181.924 15.9225 182.241 16.1777 182.487 16.5059C182.733 16.8294 182.916 17.2122 183.034 17.6543C183.153 18.0918 183.212 18.5703 183.212 19.0898V19.6572H177.688V18.625H181.947V18.5293C181.929 18.2012 181.861 17.8822 181.742 17.5723C181.628 17.2624 181.446 17.0072 181.195 16.8066C180.945 16.6061 180.603 16.5059 180.17 16.5059C179.883 16.5059 179.618 16.5674 179.377 16.6904C179.135 16.8089 178.928 16.9867 178.755 17.2236C178.582 17.4606 178.447 17.75 178.352 18.0918C178.256 18.4336 178.208 18.8278 178.208 19.2744V19.5615C178.208 19.9124 178.256 20.2428 178.352 20.5527C178.452 20.8581 178.595 21.127 178.782 21.3594C178.974 21.5918 179.204 21.7741 179.473 21.9062C179.746 22.0384 180.056 22.1045 180.402 22.1045C180.849 22.1045 181.227 22.0133 181.537 21.8311C181.847 21.6488 182.118 21.4049 182.351 21.0996L183.116 21.708C182.957 21.9495 182.754 22.1797 182.508 22.3984C182.262 22.6172 181.959 22.7949 181.599 22.9316C181.243 23.0684 180.822 23.1367 180.334 23.1367ZM187.437 20.1973H186.165C186.17 19.7598 186.208 19.402 186.281 19.124C186.359 18.8415 186.484 18.584 186.657 18.3516C186.83 18.1191 187.061 17.8548 187.348 17.5586C187.557 17.3444 187.749 17.1439 187.922 16.957C188.1 16.7656 188.243 16.5605 188.353 16.3418C188.462 16.1185 188.517 15.8519 188.517 15.542C188.517 15.2275 188.46 14.9564 188.346 14.7285C188.236 14.5007 188.072 14.3252 187.854 14.2021C187.639 14.0791 187.373 14.0176 187.054 14.0176C186.789 14.0176 186.539 14.0654 186.302 14.1611C186.065 14.2568 185.873 14.4049 185.728 14.6055C185.582 14.8014 185.507 15.0589 185.502 15.3779H184.237C184.246 14.863 184.374 14.4209 184.62 14.0518C184.871 13.6826 185.208 13.4001 185.632 13.2041C186.056 13.0081 186.53 12.9102 187.054 12.9102C187.632 12.9102 188.125 13.015 188.53 13.2246C188.94 13.4342 189.253 13.735 189.467 14.127C189.681 14.5143 189.788 14.9746 189.788 15.5078C189.788 15.918 189.704 16.2962 189.535 16.6426C189.371 16.9844 189.159 17.3057 188.899 17.6064C188.64 17.9072 188.364 18.1943 188.072 18.4678C187.822 18.7002 187.653 18.9622 187.566 19.2539C187.48 19.5456 187.437 19.86 187.437 20.1973ZM186.11 22.3643C186.11 22.1592 186.174 21.986 186.302 21.8447C186.429 21.7035 186.614 21.6328 186.855 21.6328C187.102 21.6328 187.288 21.7035 187.416 21.8447C187.544 21.986 187.607 22.1592 187.607 22.3643C187.607 22.5602 187.544 22.7288 187.416 22.8701C187.288 23.0114 187.102 23.082 186.855 23.082C186.614 23.082 186.429 23.0114 186.302 22.8701C186.174 22.7288 186.11 22.5602 186.11 22.3643Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M24 32.5C19.86 32.5 16.5 35.86 16.5 40C16.5 44.14 19.86 47.5 24 47.5C28.14 47.5 31.5 44.14 31.5 40C31.5 35.86 28.14 32.5 24 32.5ZM24 46C20.685 46 18 43.315 18 40C18 36.685 20.685 34 24 34C27.315 34 30 36.685 30 40C30 43.315 27.315 46 24 46Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M40.4814 40.8755H38.0122V39.8789H40.4814C40.9596 39.8789 41.3468 39.8027 41.6431 39.6504C41.9393 39.498 42.1551 39.2865 42.2905 39.0156C42.4302 38.7448 42.5 38.4359 42.5 38.0889C42.5 37.7715 42.4302 37.4731 42.2905 37.1938C42.1551 36.9146 41.9393 36.6903 41.6431 36.521C41.3468 36.3475 40.9596 36.2607 40.4814 36.2607H38.2979V44.5H37.0728V35.2578H40.4814C41.1797 35.2578 41.77 35.3784 42.2524 35.6196C42.7349 35.8608 43.1009 36.1951 43.3506 36.6226C43.6003 37.0457 43.7251 37.5303 43.7251 38.0762C43.7251 38.6686 43.6003 39.1743 43.3506 39.5933C43.1009 40.0122 42.7349 40.3317 42.2524 40.5518C41.77 40.7676 41.1797 40.8755 40.4814 40.8755ZM49.2983 42.9131V37.6318H50.479V44.5H49.3555L49.2983 42.9131ZM49.5205 41.4658L50.0093 41.4531C50.0093 41.9102 49.9606 42.3333 49.8633 42.7227C49.7702 43.1077 49.6178 43.4421 49.4062 43.7256C49.1947 44.0091 48.9175 44.2313 48.5747 44.3921C48.2319 44.5487 47.8151 44.627 47.3242 44.627C46.9899 44.627 46.6831 44.5783 46.4038 44.481C46.1287 44.3836 45.8918 44.2334 45.6929 44.0303C45.494 43.8271 45.3395 43.5627 45.2295 43.2368C45.1237 42.911 45.0708 42.5195 45.0708 42.0625V37.6318H46.2451V42.0752C46.2451 42.3841 46.279 42.6401 46.3467 42.8433C46.4186 43.0422 46.5138 43.2008 46.6323 43.3193C46.755 43.4336 46.8905 43.514 47.0386 43.5605C47.1909 43.6071 47.3475 43.6304 47.5083 43.6304C48.0076 43.6304 48.4033 43.5352 48.6953 43.3447C48.9873 43.1501 49.1968 42.8898 49.3237 42.564C49.4549 42.2339 49.5205 41.8678 49.5205 41.4658ZM52.2627 34.75H53.4434V43.167L53.3418 44.5H52.2627V34.75ZM58.0835 41.0088V41.1421C58.0835 41.6414 58.0243 42.1048 57.9058 42.5322C57.7873 42.9554 57.6138 43.3236 57.3853 43.6367C57.1567 43.9499 56.8774 44.1932 56.5474 44.3667C56.2173 44.5402 55.8385 44.627 55.4111 44.627C54.9753 44.627 54.5923 44.5529 54.2622 44.4048C53.9364 44.2524 53.6613 44.0345 53.437 43.751C53.2127 43.4674 53.0329 43.1247 52.8975 42.7227C52.7663 42.3206 52.6753 41.8678 52.6245 41.3643V40.7803C52.6753 40.2725 52.7663 39.8175 52.8975 39.4155C53.0329 39.0135 53.2127 38.6707 53.437 38.3872C53.6613 38.0994 53.9364 37.8815 54.2622 37.7334C54.5881 37.5811 54.9668 37.5049 55.3984 37.5049C55.8301 37.5049 56.2131 37.5895 56.5474 37.7588C56.8817 37.9238 57.161 38.1608 57.3853 38.4697C57.6138 38.7786 57.7873 39.1489 57.9058 39.5806C58.0243 40.008 58.0835 40.484 58.0835 41.0088ZM56.9028 41.1421V41.0088C56.9028 40.666 56.8711 40.3444 56.8076 40.0439C56.7441 39.7393 56.6426 39.4727 56.5029 39.2441C56.3633 39.0114 56.1792 38.8294 55.9507 38.6982C55.7222 38.5628 55.4408 38.4951 55.1064 38.4951C54.8102 38.4951 54.5521 38.5459 54.332 38.6475C54.1162 38.749 53.9321 38.8866 53.7798 39.0601C53.6274 39.2293 53.5026 39.424 53.4053 39.644C53.3122 39.8599 53.2424 40.0841 53.1958 40.3169V41.8467C53.2635 42.1429 53.3735 42.4285 53.5259 42.7036C53.6825 42.9744 53.8898 43.1966 54.1479 43.3701C54.4103 43.5436 54.734 43.6304 55.1191 43.6304C55.4365 43.6304 55.7074 43.5669 55.9316 43.4399C56.1602 43.3088 56.3442 43.1289 56.4839 42.9004C56.6278 42.6719 56.7336 42.4074 56.8013 42.1069C56.869 41.8065 56.9028 41.4849 56.9028 41.1421ZM60.8447 34.75V44.5H59.6641V34.75H60.8447ZM64.0059 37.6318V44.5H62.8252V37.6318H64.0059ZM62.7363 35.8101C62.7363 35.6196 62.7935 35.4588 62.9077 35.3276C63.0262 35.1965 63.1997 35.1309 63.4282 35.1309C63.6525 35.1309 63.8239 35.1965 63.9424 35.3276C64.0651 35.4588 64.1265 35.6196 64.1265 35.8101C64.1265 35.992 64.0651 36.1486 63.9424 36.2798C63.8239 36.4067 63.6525 36.4702 63.4282 36.4702C63.1997 36.4702 63.0262 36.4067 62.9077 36.2798C62.7935 36.1486 62.7363 35.992 62.7363 35.8101ZM68.6396 43.6621C68.9189 43.6621 69.1771 43.605 69.4141 43.4907C69.651 43.3765 69.8457 43.2199 69.998 43.021C70.1504 42.8179 70.2371 42.5872 70.2583 42.3291H71.3755C71.3543 42.7354 71.2168 43.1141 70.9629 43.4653C70.7132 43.8123 70.3853 44.0938 69.979 44.3096C69.5728 44.5212 69.1263 44.627 68.6396 44.627C68.1234 44.627 67.6727 44.536 67.2876 44.354C66.9067 44.172 66.5894 43.9224 66.3354 43.605C66.0858 43.2876 65.8975 42.9237 65.7705 42.5132C65.6478 42.0985 65.5864 41.6605 65.5864 41.1992V40.9326C65.5864 40.4714 65.6478 40.0355 65.7705 39.625C65.8975 39.2103 66.0858 38.8442 66.3354 38.5269C66.5894 38.2095 66.9067 37.9598 67.2876 37.7778C67.6727 37.5959 68.1234 37.5049 68.6396 37.5049C69.1771 37.5049 69.6468 37.6149 70.0488 37.835C70.4508 38.0508 70.7661 38.347 70.9946 38.7236C71.2274 39.096 71.3543 39.5192 71.3755 39.9932H70.2583C70.2371 39.7096 70.1567 39.4536 70.0171 39.2251C69.8817 38.9966 69.6955 38.8146 69.4585 38.6792C69.2257 38.5396 68.9528 38.4697 68.6396 38.4697C68.2799 38.4697 67.9774 38.5417 67.7319 38.6855C67.4907 38.8252 67.2982 39.0156 67.1543 39.2568C67.0146 39.4938 66.9131 39.7583 66.8496 40.0503C66.7904 40.3381 66.7607 40.6322 66.7607 40.9326V41.1992C66.7607 41.4997 66.7904 41.7959 66.8496 42.0879C66.9089 42.3799 67.0083 42.6444 67.1479 42.8813C67.2918 43.1183 67.4844 43.3088 67.7256 43.4526C67.971 43.5923 68.2757 43.6621 68.6396 43.6621Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M24 59.25C21.93 59.25 20.25 60.93 20.25 63C20.25 65.07 21.93 66.75 24 66.75C26.07 66.75 27.75 65.07 27.75 63C27.75 60.93 26.07 59.25 24 59.25ZM24 55.5C19.86 55.5 16.5 58.86 16.5 63C16.5 67.14 19.86 70.5 24 70.5C28.14 70.5 31.5 67.14 31.5 63C31.5 58.86 28.14 55.5 24 55.5ZM24 69C20.685 69 18 66.315 18 63C18 59.685 20.685 57 24 57C27.315 57 30 59.685 30 63C30 66.315 27.315 69 24 69Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M42.6523 64.561H43.8711C43.8076 65.145 43.6405 65.6676 43.3696 66.1289C43.0988 66.5902 42.7158 66.9562 42.2207 67.2271C41.7256 67.4937 41.1077 67.627 40.3672 67.627C39.8255 67.627 39.3325 67.5254 38.8882 67.3223C38.4481 67.1191 38.0693 66.8314 37.752 66.459C37.4346 66.0824 37.1891 65.6317 37.0156 65.1069C36.8464 64.578 36.7617 63.9897 36.7617 63.3423V62.4219C36.7617 61.7744 36.8464 61.1883 37.0156 60.6636C37.1891 60.1346 37.4367 59.6818 37.7583 59.3052C38.0841 58.9285 38.4756 58.6387 38.9326 58.4355C39.3896 58.2324 39.9038 58.1309 40.4751 58.1309C41.1733 58.1309 41.7637 58.262 42.2461 58.5244C42.7285 58.7868 43.103 59.1507 43.3696 59.6162C43.6405 60.0775 43.8076 60.6128 43.8711 61.2222H42.6523C42.5931 60.7905 42.4831 60.4202 42.3223 60.1113C42.1615 59.7982 41.9329 59.557 41.6367 59.3877C41.3405 59.2184 40.9533 59.1338 40.4751 59.1338C40.0646 59.1338 39.7028 59.2121 39.3896 59.3687C39.0807 59.5252 38.8205 59.7474 38.6089 60.0352C38.4015 60.3229 38.245 60.6678 38.1392 61.0698C38.0334 61.4718 37.9805 61.9183 37.9805 62.4092V63.3423C37.9805 63.7951 38.027 64.2204 38.1201 64.6182C38.2174 65.016 38.3634 65.3651 38.5581 65.6655C38.7528 65.966 39.0003 66.203 39.3008 66.3765C39.6012 66.5457 39.9567 66.6304 40.3672 66.6304C40.8877 66.6304 41.3024 66.5479 41.6113 66.3828C41.9202 66.2178 42.153 65.9808 42.3096 65.6719C42.4704 65.363 42.5846 64.9927 42.6523 64.561ZM49.4126 66.3257V62.79C49.4126 62.5192 49.3576 62.2843 49.2476 62.0854C49.1418 61.8823 48.981 61.7257 48.7651 61.6157C48.5493 61.5057 48.2827 61.4507 47.9653 61.4507C47.6691 61.4507 47.4089 61.5015 47.1846 61.603C46.9645 61.7046 46.791 61.8379 46.6641 62.0029C46.5413 62.168 46.48 62.3457 46.48 62.5361H45.3057C45.3057 62.2907 45.3691 62.0474 45.4961 61.8062C45.623 61.5649 45.805 61.347 46.042 61.1523C46.2832 60.9535 46.571 60.7969 46.9053 60.6826C47.2438 60.5641 47.6204 60.5049 48.0352 60.5049C48.5345 60.5049 48.9746 60.5895 49.3555 60.7588C49.7406 60.9281 50.041 61.1841 50.2568 61.5269C50.4769 61.8654 50.5869 62.2907 50.5869 62.8027V66.002C50.5869 66.2305 50.606 66.4738 50.644 66.7319C50.6864 66.9901 50.7477 67.2122 50.8281 67.3984V67.5H49.603C49.5438 67.3646 49.4972 67.1847 49.4634 66.9604C49.4295 66.7319 49.4126 66.5203 49.4126 66.3257ZM49.6157 63.3359L49.6284 64.1611H48.4414C48.1071 64.1611 47.8088 64.1886 47.5464 64.2437C47.284 64.2944 47.064 64.3727 46.8862 64.4785C46.7085 64.5843 46.5731 64.7176 46.48 64.8784C46.3869 65.035 46.3403 65.2191 46.3403 65.4307C46.3403 65.6465 46.389 65.8433 46.4863 66.021C46.5837 66.1987 46.7297 66.3405 46.9243 66.4463C47.1232 66.5479 47.3665 66.5986 47.6543 66.5986C48.014 66.5986 48.3314 66.5225 48.6064 66.3701C48.8815 66.2178 49.0994 66.0316 49.2603 65.8115C49.4253 65.5915 49.5142 65.3778 49.5269 65.1704L50.0283 65.7354C49.9987 65.9131 49.9183 66.1099 49.7871 66.3257C49.6559 66.5415 49.4803 66.7489 49.2603 66.9478C49.0444 67.1424 48.7863 67.3053 48.4858 67.4365C48.1896 67.5635 47.8553 67.627 47.4829 67.627C47.0174 67.627 46.609 67.536 46.2578 67.354C45.9108 67.172 45.64 66.9287 45.4453 66.624C45.2549 66.3151 45.1597 65.9702 45.1597 65.5894C45.1597 65.2212 45.2316 64.8975 45.3755 64.6182C45.5194 64.3346 45.7267 64.0998 45.9976 63.9136C46.2684 63.7231 46.5942 63.5793 46.9751 63.4819C47.356 63.3846 47.7812 63.3359 48.251 63.3359H49.6157ZM53.6084 61.7109V67.5H52.4341V60.6318H53.5767L53.6084 61.7109ZM55.7539 60.5938L55.7476 61.6855C55.6502 61.6644 55.5571 61.6517 55.4683 61.6475C55.3836 61.639 55.2863 61.6348 55.1763 61.6348C54.9054 61.6348 54.6663 61.6771 54.459 61.7617C54.2516 61.8464 54.076 61.9648 53.9321 62.1172C53.7882 62.2695 53.674 62.4515 53.5894 62.6631C53.509 62.8704 53.4561 63.099 53.4307 63.3486L53.1006 63.5391C53.1006 63.1243 53.1408 62.735 53.2212 62.3711C53.3058 62.0072 53.4349 61.6855 53.6084 61.4062C53.7819 61.1227 54.002 60.9027 54.2686 60.7461C54.5394 60.5853 54.861 60.5049 55.2334 60.5049C55.318 60.5049 55.4154 60.5155 55.5254 60.5366C55.6354 60.5535 55.7116 60.5726 55.7539 60.5938Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M49.8262 86.0967H47.167V85.0234H49.8262C50.3411 85.0234 50.7581 84.9414 51.0771 84.7773C51.3962 84.6133 51.6286 84.3854 51.7744 84.0938C51.9248 83.8021 52 83.4694 52 83.0957C52 82.7539 51.9248 82.4326 51.7744 82.1318C51.6286 81.8311 51.3962 81.5895 51.0771 81.4072C50.7581 81.2204 50.3411 81.127 49.8262 81.127H47.4746V90H46.1553V80.0469H49.8262C50.5781 80.0469 51.2139 80.1768 51.7334 80.4365C52.2529 80.6963 52.6471 81.0563 52.916 81.5166C53.1849 81.9723 53.3193 82.4941 53.3193 83.082C53.3193 83.7201 53.1849 84.2646 52.916 84.7158C52.6471 85.167 52.2529 85.5111 51.7334 85.748C51.2139 85.9805 50.5781 86.0967 49.8262 86.0967ZM59.0752 88.7354V84.9277C59.0752 84.6361 59.016 84.3831 58.8975 84.1689C58.7835 83.9502 58.6104 83.7816 58.3779 83.6631C58.1455 83.5446 57.8584 83.4854 57.5166 83.4854C57.1976 83.4854 56.9173 83.54 56.6758 83.6494C56.4388 83.7588 56.252 83.9023 56.1152 84.0801C55.9831 84.2578 55.917 84.4492 55.917 84.6543H54.6523C54.6523 84.39 54.7207 84.1279 54.8574 83.8682C54.9941 83.6084 55.1901 83.3737 55.4453 83.1641C55.7051 82.9499 56.015 82.7812 56.375 82.6582C56.7396 82.5306 57.1452 82.4668 57.5918 82.4668C58.1296 82.4668 58.6035 82.5579 59.0137 82.7402C59.4284 82.9225 59.752 83.1982 59.9844 83.5674C60.2214 83.932 60.3398 84.39 60.3398 84.9414V88.3867C60.3398 88.6328 60.3604 88.8949 60.4014 89.1729C60.4469 89.4508 60.513 89.6901 60.5996 89.8906V90H59.2803C59.2165 89.8542 59.1663 89.6605 59.1299 89.4189C59.0934 89.1729 59.0752 88.945 59.0752 88.7354ZM59.2939 85.5156L59.3076 86.4043H58.0293C57.6693 86.4043 57.348 86.4339 57.0654 86.4932C56.7829 86.5479 56.5459 86.6322 56.3545 86.7461C56.1631 86.86 56.0173 87.0036 55.917 87.1768C55.8167 87.3454 55.7666 87.5436 55.7666 87.7715C55.7666 88.0039 55.819 88.2158 55.9238 88.4072C56.0286 88.5986 56.1859 88.7513 56.3955 88.8652C56.6097 88.9746 56.8717 89.0293 57.1816 89.0293C57.569 89.0293 57.9108 88.9473 58.207 88.7832C58.5033 88.6191 58.738 88.4186 58.9111 88.1816C59.0889 87.9447 59.1846 87.7145 59.1982 87.4912L59.7383 88.0996C59.7064 88.291 59.6198 88.5029 59.4785 88.7354C59.3372 88.9678 59.1481 89.1911 58.9111 89.4053C58.6787 89.6149 58.4007 89.7904 58.0771 89.9316C57.7581 90.0684 57.3981 90.1367 56.9971 90.1367C56.4958 90.1367 56.056 90.0387 55.6777 89.8428C55.304 89.6468 55.0124 89.3848 54.8027 89.0566C54.5977 88.724 54.4951 88.3525 54.4951 87.9424C54.4951 87.5459 54.5726 87.1973 54.7275 86.8965C54.8825 86.5911 55.1058 86.3382 55.3975 86.1377C55.6891 85.9326 56.04 85.7777 56.4502 85.6729C56.8604 85.568 57.3184 85.5156 57.8242 85.5156H59.2939ZM63.5938 83.7656V90H62.3291V82.6035H63.5596L63.5938 83.7656ZM65.9043 82.5625L65.8975 83.7383C65.7926 83.7155 65.6924 83.7018 65.5967 83.6973C65.5055 83.6882 65.4007 83.6836 65.2822 83.6836C64.9906 83.6836 64.7331 83.7292 64.5098 83.8203C64.2865 83.9115 64.0973 84.0391 63.9424 84.2031C63.7874 84.3672 63.6644 84.5632 63.5732 84.791C63.4867 85.0143 63.4297 85.2604 63.4023 85.5293L63.0469 85.7344C63.0469 85.2878 63.0902 84.8685 63.1768 84.4766C63.2679 84.0846 63.4069 83.7383 63.5938 83.4375C63.7806 83.1322 64.0176 82.8952 64.3047 82.7266C64.5964 82.5534 64.9427 82.4668 65.3438 82.4668C65.4349 82.4668 65.5397 82.4782 65.6582 82.501C65.7767 82.5192 65.8587 82.5397 65.9043 82.5625ZM68.3447 79.5V90H67.0732V79.5H68.3447ZM72.8633 82.6035L69.6367 86.0557L67.832 87.9287L67.7295 86.582L69.0215 85.0371L71.3184 82.6035H72.8633ZM71.708 90L69.0693 86.4727L69.7256 85.3447L73.1982 90H71.708ZM75.543 82.6035V90H74.2715V82.6035H75.543ZM74.1758 80.6416C74.1758 80.4365 74.2373 80.2633 74.3604 80.1221C74.488 79.9808 74.6748 79.9102 74.9209 79.9102C75.1624 79.9102 75.347 79.9808 75.4746 80.1221C75.6068 80.2633 75.6729 80.4365 75.6729 80.6416C75.6729 80.8376 75.6068 81.0062 75.4746 81.1475C75.347 81.2842 75.1624 81.3525 74.9209 81.3525C74.6748 81.3525 74.488 81.2842 74.3604 81.1475C74.2373 81.0062 74.1758 80.8376 74.1758 80.6416ZM78.8379 84.1826V90H77.5732V82.6035H78.7695L78.8379 84.1826ZM78.5371 86.0215L78.0107 86.001C78.0153 85.4951 78.0905 85.028 78.2363 84.5996C78.3822 84.1667 78.5872 83.7907 78.8516 83.4717C79.1159 83.1527 79.4303 82.9066 79.7949 82.7334C80.1641 82.5557 80.5719 82.4668 81.0186 82.4668C81.3831 82.4668 81.7113 82.5169 82.0029 82.6172C82.2946 82.7129 82.543 82.8678 82.748 83.082C82.9577 83.2962 83.1172 83.5742 83.2266 83.916C83.3359 84.2533 83.3906 84.6657 83.3906 85.1533V90H82.1191V85.1396C82.1191 84.7523 82.0622 84.4424 81.9482 84.21C81.8343 83.973 81.668 83.8021 81.4492 83.6973C81.2305 83.5879 80.9616 83.5332 80.6426 83.5332C80.3281 83.5332 80.041 83.5993 79.7812 83.7314C79.526 83.8636 79.305 84.0459 79.1182 84.2783C78.9359 84.5107 78.7923 84.7773 78.6875 85.0781C78.5872 85.3743 78.5371 85.6888 78.5371 86.0215ZM90.1035 82.6035H91.252V89.8428C91.252 90.4945 91.1198 91.0505 90.8555 91.5107C90.5911 91.971 90.222 92.3197 89.748 92.5566C89.2786 92.7982 88.7363 92.9189 88.1211 92.9189C87.8659 92.9189 87.5651 92.8779 87.2188 92.7959C86.877 92.7184 86.5397 92.584 86.207 92.3926C85.8789 92.2057 85.6032 91.9528 85.3799 91.6338L86.043 90.8818C86.3529 91.2555 86.6764 91.5153 87.0137 91.6611C87.3555 91.807 87.6927 91.8799 88.0254 91.8799C88.4264 91.8799 88.7728 91.8047 89.0645 91.6543C89.3561 91.5039 89.5817 91.2806 89.7412 90.9844C89.9053 90.6927 89.9873 90.3327 89.9873 89.9043V84.2305L90.1035 82.6035ZM85.0107 86.3838V86.2402C85.0107 85.6751 85.0768 85.1624 85.209 84.7021C85.3457 84.2373 85.5394 83.8385 85.79 83.5059C86.0452 83.1732 86.3529 82.918 86.7129 82.7402C87.0729 82.5579 87.4785 82.4668 87.9297 82.4668C88.3945 82.4668 88.8001 82.5488 89.1465 82.7129C89.4974 82.8724 89.7936 83.1071 90.0352 83.417C90.2812 83.7223 90.4749 84.0915 90.6162 84.5244C90.7575 84.9574 90.8555 85.4473 90.9102 85.9941V86.623C90.86 87.1654 90.762 87.653 90.6162 88.0859C90.4749 88.5189 90.2812 88.888 90.0352 89.1934C89.7936 89.4987 89.4974 89.7334 89.1465 89.8975C88.7956 90.057 88.3854 90.1367 87.916 90.1367C87.474 90.1367 87.0729 90.0433 86.7129 89.8564C86.3574 89.6696 86.0521 89.4076 85.7969 89.0703C85.5417 88.7331 85.3457 88.3366 85.209 87.8809C85.0768 87.4206 85.0107 86.9215 85.0107 86.3838ZM86.2754 86.2402V86.3838C86.2754 86.7529 86.3118 87.0993 86.3848 87.4229C86.4622 87.7464 86.5785 88.0312 86.7334 88.2773C86.8929 88.5234 87.0957 88.7171 87.3418 88.8584C87.5879 88.9951 87.8818 89.0635 88.2236 89.0635C88.6429 89.0635 88.9893 88.9746 89.2627 88.7969C89.5361 88.6191 89.7526 88.3844 89.9121 88.0928C90.0762 87.8011 90.2038 87.4844 90.2949 87.1426V85.4951C90.2448 85.2445 90.1673 85.0029 90.0625 84.7705C89.9622 84.5335 89.8301 84.3239 89.666 84.1416C89.5065 83.9548 89.3083 83.8066 89.0713 83.6973C88.8343 83.5879 88.5563 83.5332 88.2373 83.5332C87.891 83.5332 87.5924 83.6061 87.3418 83.752C87.0957 83.8932 86.8929 84.0892 86.7334 84.3398C86.5785 84.5859 86.4622 84.873 86.3848 85.2012C86.3118 85.5247 86.2754 85.8711 86.2754 86.2402ZM97.9102 84.0254V92.8438H96.6387V82.6035H97.8008L97.9102 84.0254ZM102.894 86.2402V86.3838C102.894 86.9215 102.83 87.4206 102.702 87.8809C102.575 88.3366 102.388 88.7331 102.142 89.0703C101.9 89.4076 101.602 89.6696 101.246 89.8564C100.891 90.0433 100.483 90.1367 100.022 90.1367C99.5531 90.1367 99.1383 90.0592 98.7783 89.9043C98.4183 89.7493 98.113 89.5238 97.8623 89.2275C97.6117 88.9313 97.4111 88.5758 97.2607 88.1611C97.1149 87.7464 97.0146 87.2793 96.96 86.7598V85.9941C97.0146 85.4473 97.1172 84.9574 97.2676 84.5244C97.418 84.0915 97.6162 83.7223 97.8623 83.417C98.113 83.1071 98.416 82.8724 98.7715 82.7129C99.127 82.5488 99.5371 82.4668 100.002 82.4668C100.467 82.4668 100.879 82.5579 101.239 82.7402C101.599 82.918 101.902 83.1732 102.148 83.5059C102.395 83.8385 102.579 84.2373 102.702 84.7021C102.83 85.1624 102.894 85.6751 102.894 86.2402ZM101.622 86.3838V86.2402C101.622 85.8711 101.583 85.5247 101.506 85.2012C101.428 84.873 101.308 84.5859 101.144 84.3398C100.984 84.0892 100.779 83.8932 100.528 83.752C100.278 83.6061 99.9792 83.5332 99.6328 83.5332C99.3138 83.5332 99.0358 83.5879 98.7988 83.6973C98.5664 83.8066 98.3682 83.9548 98.2041 84.1416C98.04 84.3239 97.9056 84.5335 97.8008 84.7705C97.7005 85.0029 97.6253 85.2445 97.5752 85.4951V87.2656C97.6663 87.5846 97.7939 87.8854 97.958 88.168C98.1221 88.446 98.3408 88.6715 98.6143 88.8447C98.8877 89.0133 99.2318 89.0977 99.6465 89.0977C99.9883 89.0977 100.282 89.027 100.528 88.8857C100.779 88.7399 100.984 88.5417 101.144 88.291C101.308 88.0404 101.428 87.7533 101.506 87.4297C101.583 87.1016 101.622 86.7529 101.622 86.3838ZM105.881 79.5V90H104.609V79.5H105.881ZM112.272 88.7354V84.9277C112.272 84.6361 112.213 84.3831 112.095 84.1689C111.981 83.9502 111.808 83.7816 111.575 83.6631C111.343 83.5446 111.056 83.4854 110.714 83.4854C110.395 83.4854 110.115 83.54 109.873 83.6494C109.636 83.7588 109.449 83.9023 109.312 84.0801C109.18 84.2578 109.114 84.4492 109.114 84.6543H107.85C107.85 84.39 107.918 84.1279 108.055 83.8682C108.191 83.6084 108.387 83.3737 108.643 83.1641C108.902 82.9499 109.212 82.7812 109.572 82.6582C109.937 82.5306 110.342 82.4668 110.789 82.4668C111.327 82.4668 111.801 82.5579 112.211 82.7402C112.626 82.9225 112.949 83.1982 113.182 83.5674C113.419 83.932 113.537 84.39 113.537 84.9414V88.3867C113.537 88.6328 113.558 88.8949 113.599 89.1729C113.644 89.4508 113.71 89.6901 113.797 89.8906V90H112.478C112.414 89.8542 112.364 89.6605 112.327 89.4189C112.291 89.1729 112.272 88.945 112.272 88.7354ZM112.491 85.5156L112.505 86.4043H111.227C110.867 86.4043 110.545 86.4339 110.263 86.4932C109.98 86.5479 109.743 86.6322 109.552 86.7461C109.36 86.86 109.215 87.0036 109.114 87.1768C109.014 87.3454 108.964 87.5436 108.964 87.7715C108.964 88.0039 109.016 88.2158 109.121 88.4072C109.226 88.5986 109.383 88.7513 109.593 88.8652C109.807 88.9746 110.069 89.0293 110.379 89.0293C110.766 89.0293 111.108 88.9473 111.404 88.7832C111.701 88.6191 111.935 88.4186 112.108 88.1816C112.286 87.9447 112.382 87.7145 112.396 87.4912L112.936 88.0996C112.904 88.291 112.817 88.5029 112.676 88.7354C112.535 88.9678 112.345 89.1911 112.108 89.4053C111.876 89.6149 111.598 89.7904 111.274 89.9316C110.955 90.0684 110.595 90.1367 110.194 90.1367C109.693 90.1367 109.253 90.0387 108.875 89.8428C108.501 89.6468 108.21 89.3848 108 89.0566C107.795 88.724 107.692 88.3525 107.692 87.9424C107.692 87.5459 107.77 87.1973 107.925 86.8965C108.08 86.5911 108.303 86.3382 108.595 86.1377C108.886 85.9326 109.237 85.7777 109.647 85.6729C110.058 85.568 110.516 85.5156 111.021 85.5156H112.491ZM118.486 89.0977C118.787 89.0977 119.065 89.0361 119.32 88.9131C119.576 88.79 119.785 88.6214 119.949 88.4072C120.113 88.1885 120.207 87.9401 120.229 87.6621H121.433C121.41 88.0996 121.262 88.5075 120.988 88.8857C120.719 89.2594 120.366 89.5625 119.929 89.7949C119.491 90.0228 119.01 90.1367 118.486 90.1367C117.93 90.1367 117.445 90.0387 117.03 89.8428C116.62 89.6468 116.278 89.3779 116.005 89.0361C115.736 88.6943 115.533 88.3024 115.396 87.8604C115.264 87.4137 115.198 86.9421 115.198 86.4453V86.1582C115.198 85.6615 115.264 85.1921 115.396 84.75C115.533 84.3034 115.736 83.9092 116.005 83.5674C116.278 83.2256 116.62 82.9567 117.03 82.7607C117.445 82.5648 117.93 82.4668 118.486 82.4668C119.065 82.4668 119.571 82.5853 120.004 82.8223C120.437 83.0547 120.776 83.3737 121.022 83.7793C121.273 84.1803 121.41 84.6361 121.433 85.1465H120.229C120.207 84.8411 120.12 84.5654 119.97 84.3193C119.824 84.0732 119.623 83.8773 119.368 83.7314C119.118 83.5811 118.824 83.5059 118.486 83.5059C118.099 83.5059 117.773 83.5833 117.509 83.7383C117.249 83.8887 117.042 84.0938 116.887 84.3535C116.736 84.6087 116.627 84.8936 116.559 85.208C116.495 85.5179 116.463 85.8346 116.463 86.1582V86.4453C116.463 86.7689 116.495 87.0879 116.559 87.4023C116.622 87.7168 116.729 88.0016 116.88 88.2568C117.035 88.512 117.242 88.7171 117.502 88.8721C117.766 89.0225 118.094 89.0977 118.486 89.0977ZM125.924 90.1367C125.409 90.1367 124.942 90.0501 124.522 89.877C124.108 89.6992 123.75 89.4508 123.449 89.1318C123.153 88.8128 122.925 88.4346 122.766 87.9971C122.606 87.5596 122.526 87.0811 122.526 86.5615V86.2744C122.526 85.6729 122.615 85.1374 122.793 84.668C122.971 84.194 123.212 83.793 123.518 83.4648C123.823 83.1367 124.169 82.8883 124.557 82.7197C124.944 82.5511 125.345 82.4668 125.76 82.4668C126.288 82.4668 126.744 82.5579 127.127 82.7402C127.514 82.9225 127.831 83.1777 128.077 83.5059C128.323 83.8294 128.506 84.2122 128.624 84.6543C128.743 85.0918 128.802 85.5703 128.802 86.0898V86.6572H123.278V85.625H127.537V85.5293C127.519 85.2012 127.451 84.8822 127.332 84.5723C127.218 84.2624 127.036 84.0072 126.785 83.8066C126.535 83.6061 126.193 83.5059 125.76 83.5059C125.473 83.5059 125.208 83.5674 124.967 83.6904C124.725 83.8089 124.518 83.9867 124.345 84.2236C124.172 84.4606 124.037 84.75 123.941 85.0918C123.846 85.4336 123.798 85.8278 123.798 86.2744V86.5615C123.798 86.9124 123.846 87.2428 123.941 87.5527C124.042 87.8581 124.185 88.127 124.372 88.3594C124.563 88.5918 124.794 88.7741 125.062 88.9062C125.336 89.0384 125.646 89.1045 125.992 89.1045C126.439 89.1045 126.817 89.0133 127.127 88.8311C127.437 88.6488 127.708 88.4049 127.94 88.0996L128.706 88.708C128.547 88.9495 128.344 89.1797 128.098 89.3984C127.852 89.6172 127.549 89.7949 127.188 89.9316C126.833 90.0684 126.411 90.1367 125.924 90.1367ZM133.026 87.1973H131.755C131.759 86.7598 131.798 86.402 131.871 86.124C131.949 85.8415 132.074 85.584 132.247 85.3516C132.42 85.1191 132.65 84.8548 132.938 84.5586C133.147 84.3444 133.339 84.1439 133.512 83.957C133.689 83.7656 133.833 83.5605 133.942 83.3418C134.052 83.1185 134.106 82.8519 134.106 82.542C134.106 82.2275 134.049 81.9564 133.936 81.7285C133.826 81.5007 133.662 81.3252 133.443 81.2021C133.229 81.0791 132.963 81.0176 132.644 81.0176C132.379 81.0176 132.129 81.0654 131.892 81.1611C131.655 81.2568 131.463 81.4049 131.317 81.6055C131.172 81.8014 131.096 82.0589 131.092 82.3779H129.827C129.836 81.863 129.964 81.4209 130.21 81.0518C130.461 80.6826 130.798 80.4001 131.222 80.2041C131.646 80.0081 132.119 79.9102 132.644 79.9102C133.222 79.9102 133.715 80.015 134.12 80.2246C134.53 80.4342 134.842 80.735 135.057 81.127C135.271 81.5143 135.378 81.9746 135.378 82.5078C135.378 82.918 135.294 83.2962 135.125 83.6426C134.961 83.9844 134.749 84.3057 134.489 84.6064C134.229 84.9072 133.954 85.1943 133.662 85.4678C133.411 85.7002 133.243 85.9622 133.156 86.2539C133.07 86.5456 133.026 86.86 133.026 87.1973ZM131.7 89.3643C131.7 89.1592 131.764 88.986 131.892 88.8447C132.019 88.7035 132.204 88.6328 132.445 88.6328C132.691 88.6328 132.878 88.7035 133.006 88.8447C133.133 88.986 133.197 89.1592 133.197 89.3643C133.197 89.5602 133.133 89.7288 133.006 89.8701C132.878 90.0114 132.691 90.082 132.445 90.082C132.204 90.082 132.019 90.0114 131.892 89.8701C131.764 89.7288 131.7 89.5602 131.7 89.3643Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M54 99.5C49.86 99.5 46.5 102.86 46.5 107C46.5 111.14 49.86 114.5 54 114.5C58.14 114.5 61.5 111.14 61.5 107C61.5 102.86 58.14 99.5 54 99.5ZM54 113C50.685 113 48 110.315 48 107C48 103.685 50.685 101 54 101C57.315 101 60 103.685 60 107C60 110.315 57.315 113 54 113Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M67.498 102.258L69.8975 106.898L72.3032 102.258H73.6934L70.5068 108.047V111.5H69.2817V108.047L66.0952 102.258H67.498ZM77.1338 111.627C76.6556 111.627 76.2218 111.547 75.8325 111.386C75.4474 111.221 75.1152 110.99 74.8359 110.694C74.5609 110.398 74.3493 110.046 74.2012 109.64C74.0531 109.234 73.979 108.79 73.979 108.307V108.041C73.979 107.482 74.0615 106.985 74.2266 106.549C74.3916 106.109 74.6159 105.736 74.8994 105.432C75.1829 105.127 75.5046 104.896 75.8643 104.74C76.224 104.583 76.5964 104.505 76.9814 104.505C77.4723 104.505 77.8955 104.59 78.251 104.759C78.6107 104.928 78.9048 105.165 79.1333 105.47C79.3618 105.77 79.5311 106.126 79.6411 106.536C79.7511 106.942 79.8062 107.387 79.8062 107.869V108.396H74.6772V107.438H78.6318V107.349C78.6149 107.044 78.5514 106.748 78.4414 106.46C78.3356 106.172 78.1663 105.935 77.9336 105.749C77.7008 105.563 77.3835 105.47 76.9814 105.47C76.7148 105.47 76.4694 105.527 76.2451 105.641C76.0208 105.751 75.8283 105.916 75.6675 106.136C75.5067 106.356 75.3818 106.625 75.293 106.942C75.2041 107.26 75.1597 107.626 75.1597 108.041V108.307C75.1597 108.633 75.2041 108.94 75.293 109.228C75.3861 109.511 75.5194 109.761 75.6929 109.977C75.8706 110.192 76.0843 110.362 76.334 110.484C76.5879 110.607 76.8757 110.668 77.1973 110.668C77.612 110.668 77.9632 110.584 78.251 110.415C78.5387 110.245 78.7905 110.019 79.0063 109.735L79.7173 110.3C79.5692 110.525 79.3809 110.738 79.1523 110.941C78.9238 111.145 78.6424 111.31 78.3081 111.437C77.978 111.563 77.5866 111.627 77.1338 111.627ZM85.1763 109.678C85.1763 109.509 85.1382 109.352 85.062 109.208C84.9901 109.06 84.8398 108.927 84.6113 108.809C84.387 108.686 84.0485 108.58 83.5957 108.491C83.2148 108.411 82.87 108.316 82.561 108.206C82.2563 108.096 81.9961 107.962 81.7803 107.806C81.5687 107.649 81.4058 107.465 81.2915 107.253C81.1772 107.042 81.1201 106.794 81.1201 106.511C81.1201 106.24 81.1794 105.984 81.2979 105.743C81.4206 105.501 81.592 105.288 81.812 105.102C82.0363 104.915 82.305 104.769 82.6182 104.664C82.9313 104.558 83.2804 104.505 83.6655 104.505C84.2157 104.505 84.6854 104.602 85.0747 104.797C85.464 104.992 85.7624 105.252 85.9697 105.578C86.1771 105.899 86.2808 106.257 86.2808 106.65H85.1064C85.1064 106.46 85.0493 106.276 84.9351 106.098C84.825 105.916 84.6621 105.766 84.4463 105.647C84.2347 105.529 83.9744 105.47 83.6655 105.47C83.3397 105.47 83.0752 105.521 82.8721 105.622C82.6732 105.719 82.5272 105.844 82.4341 105.997C82.3452 106.149 82.3008 106.31 82.3008 106.479C82.3008 106.606 82.3219 106.72 82.3643 106.822C82.4108 106.919 82.4912 107.01 82.6055 107.095C82.7197 107.175 82.8805 107.251 83.0879 107.323C83.2952 107.395 83.5597 107.467 83.8813 107.539C84.4442 107.666 84.9076 107.818 85.2715 107.996C85.6354 108.174 85.9062 108.392 86.084 108.65C86.2617 108.908 86.3506 109.221 86.3506 109.589C86.3506 109.89 86.2871 110.165 86.1602 110.415C86.0374 110.664 85.8576 110.88 85.6206 111.062C85.3879 111.24 85.1086 111.379 84.7827 111.481C84.4611 111.578 84.0993 111.627 83.6973 111.627C83.0921 111.627 82.5801 111.519 82.1611 111.303C81.7422 111.087 81.4248 110.808 81.209 110.465C80.9932 110.123 80.8853 109.761 80.8853 109.38H82.0659C82.0828 109.701 82.1759 109.958 82.3452 110.148C82.5145 110.334 82.7218 110.467 82.9673 110.548C83.2127 110.624 83.4561 110.662 83.6973 110.662C84.0189 110.662 84.2876 110.62 84.5034 110.535C84.7235 110.451 84.8906 110.334 85.0049 110.186C85.1191 110.038 85.1763 109.869 85.1763 109.678Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M54 122.5C49.86 122.5 46.5 125.86 46.5 130C46.5 134.14 49.86 137.5 54 137.5C58.14 137.5 61.5 134.14 61.5 130C61.5 125.86 58.14 122.5 54 122.5ZM54 136C50.685 136 48 133.315 48 130C48 126.685 50.685 124 54 124C57.315 124 60 126.685 60 130C60 133.315 57.315 136 54 136Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M74.1821 125.258V134.5H72.9507L68.2979 127.372V134.5H67.0728V125.258H68.2979L72.9697 132.405V125.258H74.1821ZM75.8643 131.142V130.996C75.8643 130.501 75.9362 130.042 76.0801 129.619C76.224 129.191 76.4313 128.821 76.7021 128.508C76.973 128.19 77.3009 127.945 77.686 127.771C78.0711 127.594 78.5028 127.505 78.981 127.505C79.4634 127.505 79.8971 127.594 80.2822 127.771C80.6715 127.945 81.0016 128.19 81.2725 128.508C81.5475 128.821 81.757 129.191 81.9009 129.619C82.0448 130.042 82.1167 130.501 82.1167 130.996V131.142C82.1167 131.637 82.0448 132.096 81.9009 132.52C81.757 132.943 81.5475 133.313 81.2725 133.63C81.0016 133.944 80.6737 134.189 80.2886 134.367C79.9077 134.54 79.4761 134.627 78.9937 134.627C78.5112 134.627 78.0775 134.54 77.6924 134.367C77.3073 134.189 76.9772 133.944 76.7021 133.63C76.4313 133.313 76.224 132.943 76.0801 132.52C75.9362 132.096 75.8643 131.637 75.8643 131.142ZM77.0386 130.996V131.142C77.0386 131.485 77.0788 131.809 77.1592 132.113C77.2396 132.414 77.3602 132.68 77.521 132.913C77.686 133.146 77.8913 133.33 78.1367 133.465C78.3822 133.597 78.6678 133.662 78.9937 133.662C79.3153 133.662 79.5967 133.597 79.8379 133.465C80.0833 133.33 80.2865 133.146 80.4473 132.913C80.6081 132.68 80.7287 132.414 80.8091 132.113C80.8937 131.809 80.936 131.485 80.936 131.142V130.996C80.936 130.658 80.8937 130.338 80.8091 130.038C80.7287 129.733 80.606 129.464 80.4409 129.231C80.2801 128.994 80.077 128.808 79.8315 128.673C79.5903 128.537 79.3068 128.47 78.981 128.47C78.6593 128.47 78.3758 128.537 78.1304 128.673C77.8892 128.808 77.686 128.994 77.521 129.231C77.3602 129.464 77.2396 129.733 77.1592 130.038C77.0788 130.338 77.0386 130.658 77.0386 130.996Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M39.7071 84.2929C40.0976 84.6834 40.0976 85.3166 39.7071 85.7071L33.3431 92.0711C32.9526 92.4616 32.3195 92.4616 31.9289 92.0711C31.5384 91.6805 31.5384 91.0474 31.9289 90.6569L37.5858 85L31.9289 79.3431C31.5384 78.9526 31.5384 78.3195 31.9289 77.9289C32.3195 77.5384 32.9526 77.5384 33.3431 77.9289L39.7071 84.2929ZM25 70V75H23V70H25ZM34 84H39V86H34V84ZM25 75C25 79.9706 29.0294 84 34 84V86C27.9249 86 23 81.0751 23 75H25Z",fill:"#4272F9"})),{getCurrentInnerBlocks:Qt}=JetFBActions,{__:el}=wp.i18n,{useSelect:Cl}=wp.data,{BlockControls:tl,InnerBlocks:ll,useBlockProps:rl,InspectorControls:nl}=wp.blockEditor,{Button:al,ToolbarGroup:il,TextControl:ol,PanelBody:sl,Tip:cl}=wp.components,{useState:dl,useEffect:ml,RawHTML:ul}=wp.element;function pl(e){return e.some(({name:e})=>e.includes("form-break-field"))}const fl=JSON.parse('{"apiVersion":3,"name":"jet-forms/conditional-block","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","conditonal"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Conditional Block","icon":"\\n\\n\\n\\n","attributes":{"name":{"type":"string","default":""},"last_page_name":{"type":"string","default":""},"func_type":{"type":"string","default":""},"func_settings":{"type":"object","default":{}},"conditions":{"type":"array","default":[]},"className":{"type":"string","default":""},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"providesContext":{"jet-forms/conditional-block--name":"name","jet-forms/conditional-block--last_page_name":"last_page_name"}}'),{InnerBlocks:Vl}=wp.blockEditor?wp.blockEditor:wp.editor;function Hl(){return(0,h.createElement)(Vl.Content,null)}const{dispatch:hl}=wp.data,{Tools:bl}=JetFBActions,Ml={attributes:fl.attributes,supports:fl.supports,save:Hl,isEligible(e){const{func_type:C=!1,conditions:t=[]}=e;return!1===C&&t?.length},migrate(e,C){const t={};let l=null;const[r]=C||[],n=[],a=e.conditions.sort(e=>"show"===e.type?-1:1);for(const e of a){var i;e.type=null!==(i=e.type)&&void 0!==i?i:"show","set_value"!==e.type?["show","hide"].includes(e.type)&&(null===l&&(l=e.type),delete e.type,"hide"===l&&Object.keys(t).length&&(t[e.field+"_or"]={or_operator:!0}),t[e.field]=e):n.push(e)}return n.length&&"object"==typeof r&&function(e,C){if(!e.name.includes("jet-forms/")||!e.attributes.hasOwnProperty("value"))return;const{updateBlock:t}=hl("core/block-editor"),l=[];for(const{field:e,operator:t,set_value:r,value:n}of C){const C={id:bl.getRandomID(),conditions:[{field:e,operator:t,value:n}],to_set:null!=r?r:""};l.push(C)}setTimeout(()=>{t(e.clientId,{attributes:{value:{groups:l}}})})}(r,n),l=null!=l?l:"show",{...e,func_type:l,conditions:Object.values(t)}}},{__:Ll,sprintf:gl}=wp.i18n,{createBlock:Zl,createBlocksFromInnerBlocksTemplate:yl}=wp.blocks,{name:El,icon:wl=""}=fl,vl={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:wl}}),description:Ll("Utilize the Conditional Visibility functionality allowing to make fields of the form invisible to the users until some conditions are met.","jet-form-builder"),edit:function(e){const C=rl(),{setAttributes:t,attributes:l,clientId:r,editProps:{uniqKey:n}}=e;ml(()=>{t({name:r})},[r,t]);const a=Qt(),i=a.reduce((e,{name:C})=>e+C,""),[o,s]=dl(!1),[c,d]=dl(()=>pl(a));ml(()=>{d(pl(a))},[i]);const m=Cl(e=>e("jet-forms/block-conditions").getFunctionDisplay(l.func_type||"show"),[l.func_type]),u=l?.conditions?.length?(0,h.createElement)("span",{className:"dashicon dashicons dashicons-randomize","data-count":l.conditions.reduce((e,C)=>C?.or_operator?e:e+1,0)}):(0,h.createElement)("span",{className:"dashicon dashicons dashicons-randomize"});return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Xt):(0,h.createElement)(h.Fragment,null,(0,h.createElement)("div",{...C},(0,h.createElement)("div",{className:"jet-form-builder__conditional"},(0,h.createElement)(ll,{key:n("conditional-fields")}))),o&&(0,h.createElement)(wt,{key:n("ConditionsModal"),setShowModal:s}),(0,h.createElement)(tl,null,(0,h.createElement)(il,{key:n("ToolbarGroup")},(0,h.createElement)(al,{className:"jet-fb-button",key:n("randomize"),isTertiary:!0,isSmall:!0,icon:u,onClick:()=>s(!0)}))),(0,h.createElement)(nl,null,(0,h.createElement)(sl,{title:el("Conditions","jet-form-builder"),initialOpen:!0},(0,h.createElement)("p",{className:"jet-fb flex ai-center gap-05em"},(0,h.createElement)("b",null,m),(0,h.createElement)(al,{isTertiary:!0,isSmall:!0,icon:"edit",onClick:()=>s(!0)})),(0,h.createElement)(_t.Provider,{value:{showModal:o,setShowModal:s}},(0,h.createElement)(Yt,{attributes:l}))),c&&(0,h.createElement)(sl,{title:el("Multistep","jet-form-builder")},(0,h.createElement)(ol,{label:el("Last Page Name","jet-form-builder"),key:n("last_page_name"),value:l.last_page_name,help:el('The value of this field will be set as the name of the last page with the "Progress Bar" block.',"jet-form-builder"),onChange:e=>t({last_page_name:e})}))),(0,h.createElement)(nl,{group:"advanced"},(0,h.createElement)("div",{style:{marginBottom:"1.5em"}},(0,h.createElement)(cl,null,(0,h.createElement)(ul,null,el("Add the CSS class jet-form-builder--hidden to make this block hidden by default.","jet-form-builder")))),(0,h.createElement)(ol,{label:el("Additional CSS class(es)","jet-form-builder"),help:el("Separate multiple classes with spaces.","jet-form-builder"),value:l.class_name,onChange:e=>t({class_name:e})})))},save:Hl,useEditProps:["uniqKey"],jfbGetFields:()=>[],__experimentalLabel:(e,{context:C})=>{var t;if("list-view"!==C)return;const l=wp.data.select("jet-forms/block-conditions").getFunction(e?.func_type),r=l?.label,n=null!==(t=e?.conditions?.reduce((e,C)=>C?.or_operator?e:e+1,0))&&void 0!==t?t:0;return gl(Ll("%1$s %2$d condition(s)","jet-form-builder"),r,n)},example:{attributes:{isPreview:!0}},transforms:{from:[{type:"block",blocks:["*"],isMultiBlock:!0,__experimentalConvert:e=>{const C=e.map(({name:e,attributes:C,innerBlocks:t})=>[e,{...C},t]);return Zl(El,{},yl(C))},priority:0}]},deprecated:[Ml]},_l=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_75_1407)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"20.5",width:"22",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.3887 29.4028V30.3677H28.0283V29.4028H34.3887ZM42.9199 29.4028V30.3677H36.5596V29.4028H42.9199Z",fill:"white"}),(0,h.createElement)("path",{d:"M49.8442 33.8779C49.8442 33.679 49.9056 33.5119 50.0283 33.3765C50.1553 33.2368 50.3372 33.167 50.5742 33.167C50.8112 33.167 50.991 33.2368 51.1138 33.3765C51.2407 33.5119 51.3042 33.679 51.3042 33.8779C51.3042 34.0726 51.2407 34.2376 51.1138 34.373C50.991 34.5085 50.8112 34.5762 50.5742 34.5762C50.3372 34.5762 50.1553 34.5085 50.0283 34.373C49.9056 34.2376 49.8442 34.0726 49.8442 33.8779ZM49.8506 28.2729C49.8506 28.0741 49.9119 27.9069 50.0347 27.7715C50.1616 27.6318 50.3436 27.562 50.5806 27.562C50.8175 27.562 50.9974 27.6318 51.1201 27.7715C51.2471 27.9069 51.3105 28.0741 51.3105 28.2729C51.3105 28.4676 51.2471 28.6326 51.1201 28.7681C50.9974 28.9035 50.8175 28.9712 50.5806 28.9712C50.3436 28.9712 50.1616 28.9035 50.0347 28.7681C49.9119 28.6326 49.8506 28.4676 49.8506 28.2729ZM62.7617 29.4028V30.3677H56.4014V29.4028H62.7617ZM71.293 29.4028V30.3677H64.9326V29.4028H71.293ZM76.5044 33.8779C76.5044 33.679 76.5658 33.5119 76.6885 33.3765C76.8154 33.2368 76.9974 33.167 77.2344 33.167C77.4714 33.167 77.6512 33.2368 77.7739 33.3765C77.9009 33.5119 77.9644 33.679 77.9644 33.8779C77.9644 34.0726 77.9009 34.2376 77.7739 34.373C77.6512 34.5085 77.4714 34.5762 77.2344 34.5762C76.9974 34.5762 76.8154 34.5085 76.6885 34.373C76.5658 34.2376 76.5044 34.0726 76.5044 33.8779ZM76.5107 28.2729C76.5107 28.0741 76.5721 27.9069 76.6948 27.7715C76.8218 27.6318 77.0037 27.562 77.2407 27.562C77.4777 27.562 77.6576 27.6318 77.7803 27.7715C77.9072 27.9069 77.9707 28.0741 77.9707 28.2729C77.9707 28.4676 77.9072 28.6326 77.7803 28.7681C77.6576 28.9035 77.4777 28.9712 77.2407 28.9712C77.0037 28.9712 76.8218 28.9035 76.6948 28.7681C76.5721 28.6326 76.5107 28.4676 76.5107 28.2729ZM89.4219 29.4028V30.3677H83.0615V29.4028H89.4219ZM97.9531 29.4028V30.3677H91.5928V29.4028H97.9531Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270 24V38C270 39.1 269.1 40 268 40H254C252.89 40 252 39.1 252 38L252.01 24C252.01 22.9 252.89 22 254 22H255V20H257V22H265V20H267V22H268C269.1 22 270 22.9 270 24ZM254 26H268V24H254V26ZM268 38V28H254V38H268Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"15",y:"45",width:"268",height:"231",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M26.6948 57.7578H28.3071L30.6812 64.5435L33.0552 57.7578H34.6675L31.3286 67H30.0337L26.6948 57.7578ZM25.8252 57.7578H27.4312L27.7231 64.3721V67H25.8252V57.7578ZM33.9312 57.7578H35.5435V67H33.6392V64.3721L33.9312 57.7578ZM40.8057 65.4512V62.3916C40.8057 62.1715 40.7697 61.9832 40.6978 61.8267C40.6258 61.6659 40.5137 61.541 40.3613 61.4521C40.2132 61.3633 40.0207 61.3188 39.7837 61.3188C39.5806 61.3188 39.4049 61.3548 39.2568 61.4268C39.1087 61.4945 38.9945 61.5939 38.9141 61.7251C38.8337 61.8521 38.7935 62.0023 38.7935 62.1758H36.9653C36.9653 61.8838 37.033 61.6066 37.1685 61.3442C37.3039 61.0819 37.5007 60.8512 37.7588 60.6523C38.0169 60.4492 38.3237 60.2905 38.6792 60.1763C39.0389 60.062 39.4409 60.0049 39.8853 60.0049C40.4185 60.0049 40.8924 60.0938 41.3071 60.2715C41.7218 60.4492 42.0477 60.7158 42.2847 61.0713C42.5259 61.4268 42.6465 61.8711 42.6465 62.4043V65.3433C42.6465 65.7199 42.6698 66.0288 42.7163 66.27C42.7629 66.507 42.8306 66.7144 42.9194 66.8921V67H41.0723C40.9834 66.8138 40.9157 66.5811 40.8691 66.3018C40.8268 66.0182 40.8057 65.7347 40.8057 65.4512ZM41.0469 62.8169L41.0596 63.8516H40.0376C39.7964 63.8516 39.5869 63.8791 39.4092 63.9341C39.2314 63.9891 39.0854 64.0674 38.9712 64.1689C38.8569 64.2663 38.7723 64.3805 38.7173 64.5117C38.6665 64.6429 38.6411 64.7868 38.6411 64.9434C38.6411 65.0999 38.6771 65.2417 38.749 65.3687C38.821 65.4914 38.9246 65.5887 39.0601 65.6606C39.1955 65.7284 39.3542 65.7622 39.5361 65.7622C39.8112 65.7622 40.0503 65.7072 40.2534 65.5972C40.4565 65.4871 40.6131 65.3517 40.7231 65.1909C40.8374 65.0301 40.8966 64.8778 40.9009 64.7339L41.3833 65.5083C41.3156 65.6818 41.2225 65.8617 41.104 66.0479C40.9897 66.234 40.8438 66.4097 40.666 66.5747C40.4883 66.7355 40.2746 66.8688 40.0249 66.9746C39.7752 67.0762 39.479 67.127 39.1362 67.127C38.7004 67.127 38.3047 67.0402 37.9492 66.8667C37.598 66.689 37.3187 66.4456 37.1113 66.1367C36.9082 65.8236 36.8066 65.4681 36.8066 65.0703C36.8066 64.7106 36.8743 64.3911 37.0098 64.1118C37.1452 63.8325 37.3441 63.5977 37.6064 63.4072C37.873 63.2126 38.2052 63.0666 38.603 62.9692C39.0008 62.8677 39.4621 62.8169 39.9868 62.8169H41.0469ZM45.8838 61.6299V67H44.0557V60.1318H45.7759L45.8838 61.6299ZM47.9531 60.0874L47.9214 61.7822C47.8325 61.7695 47.7246 61.759 47.5977 61.7505C47.4749 61.7378 47.3628 61.7314 47.2612 61.7314C47.0031 61.7314 46.7788 61.7653 46.5884 61.833C46.4022 61.8965 46.2456 61.9917 46.1187 62.1187C45.9959 62.2456 45.9028 62.4001 45.8394 62.582C45.7801 62.764 45.7463 62.9714 45.7378 63.2041L45.3696 63.0898C45.3696 62.6455 45.4141 62.2371 45.5029 61.8647C45.5918 61.4881 45.7209 61.1602 45.8901 60.8809C46.0636 60.6016 46.2752 60.3857 46.5249 60.2334C46.7746 60.0811 47.0602 60.0049 47.3818 60.0049C47.4834 60.0049 47.5871 60.0133 47.6929 60.0303C47.7987 60.043 47.8854 60.062 47.9531 60.0874ZM51.5269 65.6987C51.7511 65.6987 51.95 65.6564 52.1235 65.5718C52.297 65.4829 52.4325 65.3602 52.5298 65.2036C52.6313 65.0428 52.6842 64.8545 52.6885 64.6387H54.4087C54.4045 65.1211 54.2754 65.5506 54.0215 65.9272C53.7676 66.2996 53.4269 66.5938 52.9995 66.8096C52.5721 67.0212 52.0939 67.127 51.5649 67.127C51.0317 67.127 50.5662 67.0381 50.1685 66.8604C49.7749 66.6826 49.4469 66.4372 49.1846 66.124C48.9222 65.8066 48.7254 65.4385 48.5942 65.0195C48.4631 64.5964 48.3975 64.1436 48.3975 63.6611V63.4771C48.3975 62.9904 48.4631 62.5376 48.5942 62.1187C48.7254 61.6955 48.9222 61.3273 49.1846 61.0142C49.4469 60.6968 49.7749 60.4492 50.1685 60.2715C50.562 60.0938 51.0233 60.0049 51.5522 60.0049C52.1151 60.0049 52.6081 60.1128 53.0312 60.3286C53.4587 60.5444 53.793 60.8534 54.0342 61.2554C54.2796 61.6532 54.4045 62.125 54.4087 62.6709H52.6885C52.6842 62.4424 52.6356 62.235 52.5425 62.0488C52.4536 61.8626 52.3224 61.7145 52.1489 61.6045C51.9797 61.4902 51.7702 61.4331 51.5205 61.4331C51.2539 61.4331 51.036 61.4902 50.8667 61.6045C50.6974 61.7145 50.5662 61.8669 50.4731 62.0615C50.38 62.252 50.3145 62.4699 50.2764 62.7153C50.2425 62.9565 50.2256 63.2104 50.2256 63.4771V63.6611C50.2256 63.9277 50.2425 64.1838 50.2764 64.4292C50.3102 64.6746 50.3737 64.8926 50.4668 65.083C50.5641 65.2734 50.6974 65.4237 50.8667 65.5337C51.036 65.6437 51.256 65.6987 51.5269 65.6987ZM57.2524 57.25V67H55.4243V57.25H57.2524ZM56.9922 63.3247H56.4907C56.495 62.8465 56.5584 62.4064 56.6812 62.0044C56.8039 61.5981 56.9795 61.2469 57.208 60.9507C57.4365 60.6502 57.7095 60.4175 58.0269 60.2524C58.3485 60.0874 58.7039 60.0049 59.0933 60.0049C59.4318 60.0049 59.7386 60.0535 60.0137 60.1509C60.293 60.244 60.5321 60.3963 60.731 60.6079C60.9341 60.8153 61.0907 61.0882 61.2007 61.4268C61.3107 61.7653 61.3657 62.1758 61.3657 62.6582V67H59.5249V62.6455C59.5249 62.3408 59.4805 62.1017 59.3916 61.9282C59.307 61.7505 59.1821 61.6257 59.0171 61.5537C58.8563 61.4775 58.6574 61.4395 58.4204 61.4395C58.158 61.4395 57.9338 61.4881 57.7476 61.5854C57.5656 61.6828 57.4196 61.8182 57.3096 61.9917C57.1995 62.161 57.1191 62.3599 57.0684 62.5884C57.0176 62.8169 56.9922 63.0623 56.9922 63.3247ZM72.2393 65.5718V67H65.917V65.7812L68.9067 62.5757C69.2072 62.2414 69.4442 61.9473 69.6177 61.6934C69.7912 61.4352 69.916 61.2046 69.9922 61.0015C70.0726 60.7941 70.1128 60.5973 70.1128 60.4111C70.1128 60.1318 70.0662 59.8927 69.9731 59.6938C69.88 59.4907 69.7425 59.3341 69.5605 59.2241C69.3828 59.1141 69.1628 59.0591 68.9004 59.0591C68.6211 59.0591 68.3799 59.1268 68.1768 59.2622C67.9779 59.3976 67.8255 59.5859 67.7197 59.8271C67.6182 60.0684 67.5674 60.3413 67.5674 60.646H65.7329C65.7329 60.0959 65.8641 59.5923 66.1265 59.1353C66.3888 58.674 66.7591 58.3079 67.2373 58.0371C67.7155 57.762 68.2826 57.6245 68.9385 57.6245C69.5859 57.6245 70.1318 57.7303 70.5762 57.9419C71.0247 58.1493 71.3633 58.4497 71.5918 58.8433C71.8245 59.2326 71.9409 59.6981 71.9409 60.2397C71.9409 60.5444 71.8923 60.8428 71.7949 61.1348C71.6976 61.4225 71.5579 61.7103 71.376 61.998C71.1982 62.2816 70.9824 62.5693 70.7285 62.8613C70.4746 63.1533 70.1932 63.4559 69.8843 63.769L68.2783 65.5718H72.2393ZM79.6025 61.5664V63.166C79.6025 63.86 79.5285 64.4588 79.3804 64.9624C79.2323 65.4618 79.0186 65.8722 78.7393 66.1938C78.4642 66.5112 78.1362 66.7461 77.7554 66.8984C77.3745 67.0508 76.9513 67.127 76.4858 67.127C76.1134 67.127 75.7664 67.0804 75.4448 66.9873C75.1232 66.89 74.8333 66.7397 74.5752 66.5366C74.3213 66.3335 74.1012 66.0775 73.915 65.7686C73.7331 65.4554 73.5934 65.083 73.4961 64.6514C73.3988 64.2197 73.3501 63.7246 73.3501 63.166V61.5664C73.3501 60.8724 73.4242 60.2778 73.5723 59.7827C73.7246 59.2834 73.9383 58.875 74.2134 58.5576C74.4927 58.2402 74.8228 58.0075 75.2036 57.8594C75.5845 57.707 76.0076 57.6309 76.4731 57.6309C76.8455 57.6309 77.1904 57.6795 77.5078 57.7769C77.8294 57.87 78.1193 58.016 78.3774 58.2148C78.6356 58.4137 78.8556 58.6698 79.0376 58.9829C79.2196 59.2918 79.3592 59.6621 79.4565 60.0938C79.5539 60.5212 79.6025 61.012 79.6025 61.5664ZM77.7681 63.4072V61.3188C77.7681 60.9845 77.749 60.6925 77.7109 60.4429C77.6771 60.1932 77.6242 59.9816 77.5522 59.8081C77.4803 59.6304 77.3914 59.4865 77.2856 59.3765C77.1799 59.2664 77.0592 59.186 76.9238 59.1353C76.7884 59.0845 76.6382 59.0591 76.4731 59.0591C76.2658 59.0591 76.0817 59.0993 75.9209 59.1797C75.7643 59.2601 75.631 59.3892 75.521 59.5669C75.411 59.7404 75.3263 59.9731 75.2671 60.2651C75.2121 60.5529 75.1846 60.9041 75.1846 61.3188V63.4072C75.1846 63.7415 75.2015 64.0356 75.2354 64.2896C75.2734 64.5435 75.3285 64.7614 75.4004 64.9434C75.4766 65.1211 75.5654 65.2671 75.667 65.3813C75.7728 65.4914 75.8934 65.5718 76.0288 65.6226C76.1685 65.6733 76.3208 65.6987 76.4858 65.6987C76.689 65.6987 76.8688 65.6585 77.0254 65.5781C77.1862 65.4935 77.3216 65.3623 77.4316 65.1846C77.5459 65.0026 77.6305 64.7656 77.6855 64.4736C77.7406 64.1816 77.7681 63.8262 77.7681 63.4072ZM87.1689 65.5718V67H80.8467V65.7812L83.8364 62.5757C84.1369 62.2414 84.3739 61.9473 84.5474 61.6934C84.7209 61.4352 84.8457 61.2046 84.9219 61.0015C85.0023 60.7941 85.0425 60.5973 85.0425 60.4111C85.0425 60.1318 84.9959 59.8927 84.9028 59.6938C84.8097 59.4907 84.6722 59.3341 84.4902 59.2241C84.3125 59.1141 84.0924 59.0591 83.8301 59.0591C83.5508 59.0591 83.3096 59.1268 83.1064 59.2622C82.9076 59.3976 82.7552 59.5859 82.6494 59.8271C82.5479 60.0684 82.4971 60.3413 82.4971 60.646H80.6626C80.6626 60.0959 80.7938 59.5923 81.0562 59.1353C81.3185 58.674 81.6888 58.3079 82.167 58.0371C82.6452 57.762 83.2122 57.6245 83.8682 57.6245C84.5156 57.6245 85.0615 57.7303 85.5059 57.9419C85.9544 58.1493 86.293 58.4497 86.5215 58.8433C86.7542 59.2326 86.8706 59.6981 86.8706 60.2397C86.8706 60.5444 86.8219 60.8428 86.7246 61.1348C86.6273 61.4225 86.4876 61.7103 86.3057 61.998C86.1279 62.2816 85.9121 62.5693 85.6582 62.8613C85.4043 63.1533 85.1229 63.4559 84.814 63.769L83.208 65.5718H87.1689ZM92.7676 57.7388V67H90.9395V59.8462L88.7432 60.5444V59.1035L92.5708 57.7388H92.7676Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1407)"},(0,h.createElement)("path",{d:"M99.7917 61.4167L102.5 64.1251L105.208 61.4167H99.7917Z",fill:"#64748B"})),(0,h.createElement)("path",{d:"M249.167 62.4999L249.93 63.2637L252.958 60.2412L252.958 66.8333L254.042 66.8333L254.042 60.2412L257.07 63.2637L257.833 62.4999L253.5 58.1666L249.167 62.4999Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270.833 62.5001L270.07 61.7363L267.042 64.7588L267.042 58.1667L265.958 58.1667L265.958 64.7588L262.93 61.7363L262.167 62.5001L266.5 66.8334L270.833 62.5001Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M37.3305 89.6641C37.3305 89.4482 37.2967 89.2578 37.2289 89.0928C37.1655 88.9235 37.0512 88.7712 36.8862 88.6357C36.7254 88.5003 36.5011 88.3713 36.2133 88.2485C35.9298 88.1258 35.5701 88.001 35.1342 87.874C34.6772 87.7386 34.2646 87.5884 33.8964 87.4233C33.5283 87.2541 33.213 87.0615 32.9506 86.8457C32.6883 86.6299 32.4873 86.3823 32.3476 86.103C32.208 85.8237 32.1381 85.5042 32.1381 85.1445C32.1381 84.7848 32.2122 84.4526 32.3603 84.1479C32.5084 83.8433 32.72 83.5788 32.9951 83.3545C33.2744 83.126 33.6066 82.9482 33.9916 82.8213C34.3767 82.6943 34.8063 82.6309 35.2802 82.6309C35.9742 82.6309 36.5624 82.7642 37.0449 83.0308C37.5315 83.2931 37.9018 83.638 38.1557 84.0654C38.4096 84.4886 38.5366 84.9414 38.5366 85.4238H37.3178C37.3178 85.0768 37.2438 84.77 37.0956 84.5034C36.9475 84.2326 36.7233 84.021 36.4228 83.8687C36.1223 83.7121 35.7415 83.6338 35.2802 83.6338C34.8443 83.6338 34.4846 83.6994 34.2011 83.8306C33.9176 83.9618 33.706 84.1395 33.5664 84.3638C33.4309 84.5881 33.3632 84.8441 33.3632 85.1318C33.3632 85.3265 33.4034 85.5042 33.4838 85.665C33.5685 85.8216 33.6975 85.9676 33.871 86.103C34.0488 86.2384 34.2731 86.3633 34.5439 86.4775C34.819 86.5918 35.1469 86.7018 35.5278 86.8076C36.0525 86.9557 36.5053 87.1208 36.8862 87.3027C37.267 87.4847 37.5802 87.6899 37.8256 87.9185C38.0753 88.1427 38.2594 88.3988 38.3779 88.6865C38.5006 88.9701 38.562 89.2917 38.562 89.6514C38.562 90.028 38.4858 90.3687 38.3334 90.6733C38.1811 90.978 37.9632 91.2383 37.6796 91.4541C37.3961 91.6699 37.0554 91.8371 36.6577 91.9556C36.2641 92.0698 35.824 92.127 35.3373 92.127C34.9099 92.127 34.4889 92.0677 34.0742 91.9492C33.6637 91.8307 33.2892 91.653 32.9506 91.416C32.6163 91.179 32.3476 90.887 32.1445 90.54C31.9456 90.1888 31.8461 89.7826 31.8461 89.3213H33.0649C33.0649 89.6387 33.1262 89.9116 33.249 90.1401C33.3717 90.3644 33.5388 90.5506 33.7504 90.6987C33.9663 90.8468 34.2096 90.9569 34.4804 91.0288C34.7555 91.0965 35.0411 91.1304 35.3373 91.1304C35.7648 91.1304 36.1266 91.0711 36.4228 90.9526C36.719 90.8341 36.9433 90.6649 37.0956 90.4448C37.2522 90.2248 37.3305 89.9645 37.3305 89.6641ZM44.1479 90.4131V85.1318H45.3286V92H44.205L44.1479 90.4131ZM44.3701 88.9658L44.8588 88.9531C44.8588 89.4102 44.8102 89.8333 44.7128 90.2227C44.6197 90.6077 44.4674 90.9421 44.2558 91.2256C44.0442 91.5091 43.767 91.7313 43.4243 91.8921C43.0815 92.0487 42.6647 92.127 42.1738 92.127C41.8395 92.127 41.5327 92.0783 41.2534 91.981C40.9783 91.8836 40.7413 91.7334 40.5424 91.5303C40.3435 91.3271 40.1891 91.0627 40.079 90.7368C39.9733 90.411 39.9204 90.0195 39.9204 89.5625V85.1318H41.0947V89.5752C41.0947 89.8841 41.1285 90.1401 41.1962 90.3433C41.2682 90.5422 41.3634 90.7008 41.4819 90.8193C41.6046 90.9336 41.74 91.014 41.8881 91.0605C42.0405 91.1071 42.197 91.1304 42.3579 91.1304C42.8572 91.1304 43.2529 91.0352 43.5449 90.8447C43.8369 90.6501 44.0463 90.3898 44.1733 90.064C44.3045 89.7339 44.3701 89.3678 44.3701 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M109.587 82.7578V92H108.381V82.7578H109.587ZM112.558 82.7578V83.7607H105.417V82.7578H112.558ZM117.344 90.4131V85.1318H118.525V92H117.401L117.344 90.4131ZM117.566 88.9658L118.055 88.9531C118.055 89.4102 118.006 89.8333 117.909 90.2227C117.816 90.6077 117.663 90.9421 117.452 91.2256C117.24 91.5091 116.963 91.7313 116.62 91.8921C116.278 92.0487 115.861 92.127 115.37 92.127C115.036 92.127 114.729 92.0783 114.449 91.981C114.174 91.8836 113.937 91.7334 113.738 91.5303C113.54 91.3271 113.385 91.0627 113.275 90.7368C113.169 90.411 113.116 90.0195 113.116 89.5625V85.1318H114.291V89.5752C114.291 89.8841 114.325 90.1401 114.392 90.3433C114.464 90.5422 114.559 90.7008 114.678 90.8193C114.801 90.9336 114.936 91.014 115.084 91.0605C115.237 91.1071 115.393 91.1304 115.554 91.1304C116.053 91.1304 116.449 91.0352 116.741 90.8447C117.033 90.6501 117.242 90.3898 117.369 90.064C117.501 89.7339 117.566 89.3678 117.566 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M182.77 82.7578V92H181.564V82.7578H182.77ZM185.74 82.7578V83.7607H178.599V82.7578H185.74ZM188.108 82.25V92H186.934V82.25H188.108ZM187.829 88.3057L187.34 88.2866C187.344 87.8169 187.414 87.3831 187.55 86.9854C187.685 86.5833 187.875 86.2342 188.121 85.938C188.366 85.6418 188.658 85.4132 188.997 85.2524C189.34 85.0874 189.718 85.0049 190.133 85.0049C190.472 85.0049 190.776 85.0514 191.047 85.1445C191.318 85.2334 191.549 85.3773 191.739 85.5762C191.934 85.7751 192.082 86.0332 192.183 86.3506C192.285 86.6637 192.336 87.0467 192.336 87.4995V92H191.155V87.4868C191.155 87.1271 191.102 86.8394 190.996 86.6235C190.89 86.4035 190.736 86.2448 190.533 86.1475C190.33 86.0459 190.08 85.9951 189.784 85.9951C189.492 85.9951 189.225 86.0565 188.984 86.1792C188.747 86.3019 188.542 86.4712 188.368 86.687C188.199 86.9028 188.066 87.1504 187.968 87.4297C187.875 87.7048 187.829 87.9967 187.829 88.3057Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M257.826 89.6641C257.826 89.4482 257.792 89.2578 257.724 89.0928C257.661 88.9235 257.546 88.7712 257.381 88.6357C257.22 88.5003 256.996 88.3713 256.708 88.2485C256.425 88.1258 256.065 88.001 255.629 87.874C255.172 87.7386 254.76 87.5884 254.392 87.4233C254.023 87.2541 253.708 87.0615 253.446 86.8457C253.183 86.6299 252.982 86.3823 252.843 86.103C252.703 85.8237 252.633 85.5042 252.633 85.1445C252.633 84.7848 252.707 84.4526 252.855 84.1479C253.004 83.8433 253.215 83.5788 253.49 83.3545C253.769 83.126 254.102 82.9482 254.487 82.8213C254.872 82.6943 255.301 82.6309 255.775 82.6309C256.469 82.6309 257.058 82.7642 257.54 83.0308C258.027 83.2931 258.397 83.638 258.651 84.0654C258.905 84.4886 259.032 84.9414 259.032 85.4238H257.813C257.813 85.0768 257.739 84.77 257.591 84.5034C257.443 84.2326 257.218 84.021 256.918 83.8687C256.617 83.7121 256.237 83.6338 255.775 83.6338C255.339 83.6338 254.98 83.6994 254.696 83.8306C254.413 83.9618 254.201 84.1395 254.061 84.3638C253.926 84.5881 253.858 84.8441 253.858 85.1318C253.858 85.3265 253.899 85.5042 253.979 85.665C254.064 85.8216 254.193 85.9676 254.366 86.103C254.544 86.2384 254.768 86.3633 255.039 86.4775C255.314 86.5918 255.642 86.7018 256.023 86.8076C256.548 86.9557 257 87.1208 257.381 87.3027C257.762 87.4847 258.075 87.6899 258.321 87.9185C258.57 88.1427 258.755 88.3988 258.873 88.6865C258.996 88.9701 259.057 89.2917 259.057 89.6514C259.057 90.028 258.981 90.3687 258.829 90.6733C258.676 90.978 258.458 91.2383 258.175 91.4541C257.891 91.6699 257.551 91.8371 257.153 91.9556C256.759 92.0698 256.319 92.127 255.832 92.127C255.405 92.127 254.984 92.0677 254.569 91.9492C254.159 91.8307 253.784 91.653 253.446 91.416C253.111 91.179 252.843 90.887 252.64 90.54C252.441 90.1888 252.341 89.7826 252.341 89.3213H253.56C253.56 89.6387 253.621 89.9116 253.744 90.1401C253.867 90.3644 254.034 90.5506 254.246 90.6987C254.461 90.8468 254.705 90.9569 254.976 91.0288C255.251 91.0965 255.536 91.1304 255.832 91.1304C256.26 91.1304 256.622 91.0711 256.918 90.9526C257.214 90.8341 257.438 90.6649 257.591 90.4448C257.747 90.2248 257.826 89.9645 257.826 89.6641ZM264.491 90.8257V87.29C264.491 87.0192 264.436 86.7843 264.326 86.5854C264.22 86.3823 264.059 86.2257 263.843 86.1157C263.627 86.0057 263.361 85.9507 263.043 85.9507C262.747 85.9507 262.487 86.0015 262.263 86.103C262.043 86.2046 261.869 86.3379 261.742 86.5029C261.619 86.668 261.558 86.8457 261.558 87.0361H260.384C260.384 86.7907 260.447 86.5474 260.574 86.3062C260.701 86.0649 260.883 85.847 261.12 85.6523C261.361 85.4535 261.649 85.2969 261.983 85.1826C262.322 85.0641 262.699 85.0049 263.113 85.0049C263.613 85.0049 264.053 85.0895 264.434 85.2588C264.819 85.4281 265.119 85.6841 265.335 86.0269C265.555 86.3654 265.665 86.7907 265.665 87.3027V90.502C265.665 90.7305 265.684 90.9738 265.722 91.2319C265.764 91.4901 265.826 91.7122 265.906 91.8984V92H264.681C264.622 91.8646 264.575 91.6847 264.541 91.4604C264.508 91.2319 264.491 91.0203 264.491 90.8257ZM264.694 87.8359L264.706 88.6611H263.519C263.185 88.6611 262.887 88.6886 262.624 88.7437C262.362 88.7944 262.142 88.8727 261.964 88.9785C261.787 89.0843 261.651 89.2176 261.558 89.3784C261.465 89.535 261.418 89.7191 261.418 89.9307C261.418 90.1465 261.467 90.3433 261.564 90.521C261.662 90.6987 261.808 90.8405 262.002 90.9463C262.201 91.0479 262.445 91.0986 262.732 91.0986C263.092 91.0986 263.409 91.0225 263.685 90.8701C263.96 90.7178 264.178 90.5316 264.338 90.3115C264.503 90.0915 264.592 89.8778 264.605 89.6704L265.106 90.2354C265.077 90.4131 264.996 90.6099 264.865 90.8257C264.734 91.0415 264.558 91.2489 264.338 91.4478C264.123 91.6424 263.864 91.8053 263.564 91.9365C263.268 92.0635 262.933 92.127 262.561 92.127C262.095 92.127 261.687 92.036 261.336 91.854C260.989 91.672 260.718 91.4287 260.523 91.124C260.333 90.8151 260.238 90.4702 260.238 90.0894C260.238 89.7212 260.31 89.3975 260.454 89.1182C260.597 88.8346 260.805 88.5998 261.076 88.4136C261.346 88.2231 261.672 88.0793 262.053 87.9819C262.434 87.8846 262.859 87.8359 263.329 87.8359H264.694Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M67.5966 82.7578H68.7836L71.8115 90.2925L74.833 82.7578H76.0263L72.2685 92H71.3417L67.5966 82.7578ZM67.2094 82.7578H68.2568L68.4282 88.3945V92H67.2094V82.7578ZM75.3598 82.7578H76.4072V92H75.1884V88.3945L75.3598 82.7578ZM78.0703 88.6421V88.4961C78.0703 88.001 78.1422 87.5418 78.2861 87.1187C78.43 86.6912 78.6373 86.321 78.9081 86.0078C79.179 85.6904 79.5069 85.445 79.892 85.2715C80.2771 85.0938 80.7088 85.0049 81.187 85.0049C81.6694 85.0049 82.1031 85.0938 82.4882 85.2715C82.8775 85.445 83.2076 85.6904 83.4785 86.0078C83.7535 86.321 83.963 86.6912 84.1069 87.1187C84.2508 87.5418 84.3227 88.001 84.3227 88.4961V88.6421C84.3227 89.1372 84.2508 89.5964 84.1069 90.0195C83.963 90.4427 83.7535 90.813 83.4785 91.1304C83.2076 91.4435 82.8797 91.689 82.4946 91.8667C82.1137 92.0402 81.6821 92.127 81.1997 92.127C80.7172 92.127 80.2835 92.0402 79.8984 91.8667C79.5133 91.689 79.1832 91.4435 78.9081 91.1304C78.6373 90.813 78.43 90.4427 78.2861 90.0195C78.1422 89.5964 78.0703 89.1372 78.0703 88.6421ZM79.2446 88.4961V88.6421C79.2446 88.9849 79.2848 89.3086 79.3652 89.6133C79.4456 89.9137 79.5662 90.1803 79.727 90.4131C79.892 90.6458 80.0973 90.8299 80.3427 90.9653C80.5882 91.0965 80.8738 91.1621 81.1997 91.1621C81.5213 91.1621 81.8027 91.0965 82.0439 90.9653C82.2893 90.8299 82.4925 90.6458 82.6533 90.4131C82.8141 90.1803 82.9347 89.9137 83.0151 89.6133C83.0997 89.3086 83.142 88.9849 83.142 88.6421V88.4961C83.142 88.1576 83.0997 87.8381 83.0151 87.5376C82.9347 87.2329 82.812 86.9642 82.6469 86.7314C82.4861 86.4945 82.283 86.3083 82.0375 86.1729C81.7963 86.0374 81.5128 85.9697 81.187 85.9697C80.8653 85.9697 80.5818 86.0374 80.3364 86.1729C80.0952 86.3083 79.892 86.4945 79.727 86.7314C79.5662 86.9642 79.4456 87.2329 79.3652 87.5376C79.2848 87.8381 79.2446 88.1576 79.2446 88.4961Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M143.389 89.207L145.223 82.7578H146.112L145.598 85.2651L143.624 92H142.741L143.389 89.207ZM141.491 82.7578L142.951 89.0801L143.389 92H142.513L140.272 82.7578H141.491ZM148.486 89.0737L149.914 82.7578H151.139L148.905 92H148.029L148.486 89.0737ZM146.245 82.7578L148.029 89.207L148.676 92H147.794L145.89 85.2651L145.369 82.7578H146.245ZM154.967 92.127C154.489 92.127 154.055 92.0465 153.666 91.8857C153.281 91.7207 152.948 91.4901 152.669 91.1938C152.394 90.8976 152.182 90.5464 152.034 90.1401C151.886 89.7339 151.812 89.2896 151.812 88.8071V88.5405C151.812 87.9819 151.895 87.4847 152.06 87.0488C152.225 86.6087 152.449 86.2363 152.733 85.9316C153.016 85.627 153.338 85.3963 153.697 85.2397C154.057 85.0832 154.43 85.0049 154.815 85.0049C155.306 85.0049 155.729 85.0895 156.084 85.2588C156.444 85.4281 156.738 85.665 156.966 85.9697C157.195 86.2702 157.364 86.6257 157.474 87.0361C157.584 87.4424 157.639 87.8867 157.639 88.3691V88.896H152.51V87.9375H156.465V87.8486C156.448 87.5439 156.385 87.2477 156.275 86.96C156.169 86.6722 156 86.4352 155.767 86.249C155.534 86.0628 155.217 85.9697 154.815 85.9697C154.548 85.9697 154.303 86.0269 154.078 86.1411C153.854 86.2511 153.661 86.4162 153.501 86.6362C153.34 86.8563 153.215 87.125 153.126 87.4424C153.037 87.7598 152.993 88.1258 152.993 88.5405V88.8071C152.993 89.133 153.037 89.4398 153.126 89.7275C153.219 90.0111 153.353 90.2607 153.526 90.4766C153.704 90.6924 153.918 90.8617 154.167 90.9844C154.421 91.1071 154.709 91.1685 155.03 91.1685C155.445 91.1685 155.796 91.0838 156.084 90.9146C156.372 90.7453 156.624 90.5189 156.84 90.2354L157.55 90.8003C157.402 91.0246 157.214 91.2383 156.986 91.4414C156.757 91.6445 156.476 91.8096 156.141 91.9365C155.811 92.0635 155.42 92.127 154.967 92.127Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M219.066 82.7578V92H217.841V82.7578H219.066ZM222.938 86.9155V87.9185H218.8V86.9155H222.938ZM223.567 82.7578V83.7607H218.8V82.7578H223.567ZM225.858 86.2109V92H224.684V85.1318H225.826L225.858 86.2109ZM228.004 85.0938L227.997 86.1855C227.9 86.1644 227.807 86.1517 227.718 86.1475C227.633 86.139 227.536 86.1348 227.426 86.1348C227.155 86.1348 226.916 86.1771 226.709 86.2617C226.501 86.3464 226.326 86.4648 226.182 86.6172C226.038 86.7695 225.924 86.9515 225.839 87.1631C225.759 87.3704 225.706 87.599 225.68 87.8486L225.35 88.0391C225.35 87.6243 225.391 87.235 225.471 86.8711C225.556 86.5072 225.685 86.1855 225.858 85.9062C226.032 85.6227 226.252 85.4027 226.518 85.2461C226.789 85.0853 227.111 85.0049 227.483 85.0049C227.568 85.0049 227.665 85.0155 227.775 85.0366C227.885 85.0535 227.961 85.0726 228.004 85.0938Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"212",y:"100",width:"21",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{opacity:"0.4",d:"M38.289 114.035V115H32.2397V114.156L35.2675 110.785C35.6399 110.37 35.9277 110.019 36.1308 109.731C36.3382 109.439 36.482 109.179 36.5624 108.951C36.6471 108.718 36.6894 108.481 36.6894 108.24C36.6894 107.935 36.6259 107.66 36.499 107.415C36.3762 107.165 36.1943 106.966 35.9531 106.818C35.7119 106.67 35.4199 106.596 35.0771 106.596C34.6666 106.596 34.3238 106.676 34.0488 106.837C33.7779 106.993 33.5748 107.214 33.4394 107.497C33.304 107.781 33.2363 108.106 33.2363 108.475H32.062C32.062 107.954 32.1762 107.478 32.4047 107.046C32.6332 106.615 32.9718 106.272 33.4204 106.018C33.8689 105.76 34.4212 105.631 35.0771 105.631C35.6611 105.631 36.1604 105.735 36.5751 105.942C36.9899 106.145 37.3072 106.433 37.5273 106.805C37.7516 107.173 37.8637 107.605 37.8637 108.1C37.8637 108.371 37.8172 108.646 37.7241 108.925C37.6352 109.2 37.5104 109.475 37.3496 109.75C37.193 110.026 37.0089 110.296 36.7973 110.563C36.59 110.83 36.3678 111.092 36.1308 111.35L33.6552 114.035H38.289ZM45.373 112.499C45.373 113.062 45.2418 113.54 44.9794 113.934C44.7213 114.323 44.3701 114.619 43.9257 114.822C43.4856 115.025 42.9884 115.127 42.434 115.127C41.8797 115.127 41.3803 115.025 40.936 114.822C40.4916 114.619 40.1404 114.323 39.8823 113.934C39.6241 113.54 39.4951 113.062 39.4951 112.499C39.4951 112.131 39.5649 111.794 39.7045 111.49C39.8484 111.181 40.0494 110.912 40.3076 110.684C40.5699 110.455 40.8789 110.279 41.2343 110.157C41.594 110.03 41.9897 109.966 42.4213 109.966C42.9884 109.966 43.4941 110.076 43.9384 110.296C44.3828 110.512 44.7319 110.811 44.9858 111.191C45.2439 111.572 45.373 112.008 45.373 112.499ZM44.1923 112.474C44.1923 112.131 44.1183 111.828 43.9702 111.566C43.822 111.299 43.6147 111.092 43.3481 110.944C43.0815 110.796 42.7726 110.722 42.4213 110.722C42.0616 110.722 41.7506 110.796 41.4882 110.944C41.2301 111.092 41.0291 111.299 40.8852 111.566C40.7413 111.828 40.6694 112.131 40.6694 112.474C40.6694 112.829 40.7392 113.134 40.8789 113.388C41.0227 113.637 41.2259 113.83 41.4882 113.965C41.7548 114.097 42.0701 114.162 42.434 114.162C42.798 114.162 43.1111 114.097 43.3735 113.965C43.6359 113.83 43.8369 113.637 43.9765 113.388C44.1204 113.134 44.1923 112.829 44.1923 112.474ZM45.1572 108.164C45.1572 108.612 45.0387 109.016 44.8017 109.376C44.5647 109.736 44.241 110.019 43.8305 110.227C43.42 110.434 42.9545 110.538 42.434 110.538C41.9051 110.538 41.4332 110.434 41.0185 110.227C40.608 110.019 40.2864 109.736 40.0537 109.376C39.8209 109.016 39.7045 108.612 39.7045 108.164C39.7045 107.626 39.8209 107.169 40.0537 106.792C40.2906 106.416 40.6144 106.128 41.0248 105.929C41.4353 105.73 41.9029 105.631 42.4277 105.631C42.9567 105.631 43.4264 105.73 43.8369 105.929C44.2473 106.128 44.569 106.416 44.8017 106.792C45.0387 107.169 45.1572 107.626 45.1572 108.164ZM43.9829 108.183C43.9829 107.874 43.9173 107.601 43.7861 107.364C43.6549 107.127 43.4729 106.941 43.2402 106.805C43.0074 106.666 42.7366 106.596 42.4277 106.596C42.1188 106.596 41.8479 106.661 41.6152 106.792C41.3867 106.919 41.2068 107.101 41.0756 107.338C40.9487 107.575 40.8852 107.857 40.8852 108.183C40.8852 108.5 40.9487 108.777 41.0756 109.014C41.2068 109.251 41.3888 109.435 41.6215 109.566C41.8543 109.698 42.1251 109.763 42.434 109.763C42.7429 109.763 43.0117 109.698 43.2402 109.566C43.4729 109.435 43.6549 109.251 43.7861 109.014C43.9173 108.777 43.9829 108.5 43.9829 108.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M115.427 114.035V115H109.378V114.156L112.405 110.785C112.778 110.37 113.066 110.019 113.269 109.731C113.476 109.439 113.62 109.179 113.7 108.951C113.785 108.718 113.827 108.481 113.827 108.24C113.827 107.935 113.764 107.66 113.637 107.415C113.514 107.165 113.332 106.966 113.091 106.818C112.85 106.67 112.558 106.596 112.215 106.596C111.805 106.596 111.462 106.676 111.187 106.837C110.916 106.993 110.713 107.214 110.577 107.497C110.442 107.781 110.374 108.106 110.374 108.475H109.2C109.2 107.954 109.314 107.478 109.543 107.046C109.771 106.615 110.11 106.272 110.558 106.018C111.007 105.76 111.559 105.631 112.215 105.631C112.799 105.631 113.298 105.735 113.713 105.942C114.128 106.145 114.445 106.433 114.665 106.805C114.89 107.173 115.002 107.605 115.002 108.1C115.002 108.371 114.955 108.646 114.862 108.925C114.773 109.2 114.648 109.475 114.487 109.75C114.331 110.026 114.147 110.296 113.935 110.563C113.728 110.83 113.506 111.092 113.269 111.35L110.793 114.035H115.427Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M189.098 111.89V112.854H182.421V112.163L186.559 105.758H187.518L186.489 107.611L183.754 111.89H189.098ZM187.81 105.758V115H186.635V105.758H187.81Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.841 105.745H260.942V106.742H260.841C260.219 106.742 259.698 106.843 259.279 107.046C258.86 107.245 258.528 107.514 258.283 107.853C258.037 108.187 257.859 108.563 257.749 108.982C257.644 109.401 257.591 109.827 257.591 110.258V111.617C257.591 112.027 257.639 112.391 257.737 112.708C257.834 113.022 257.967 113.286 258.137 113.502C258.306 113.718 258.496 113.881 258.708 113.991C258.924 114.101 259.148 114.156 259.381 114.156C259.652 114.156 259.893 114.105 260.104 114.003C260.316 113.898 260.494 113.752 260.638 113.565C260.786 113.375 260.898 113.151 260.974 112.893C261.05 112.634 261.088 112.351 261.088 112.042C261.088 111.767 261.054 111.502 260.987 111.249C260.919 110.99 260.815 110.762 260.676 110.563C260.536 110.36 260.36 110.201 260.149 110.087C259.942 109.968 259.694 109.909 259.406 109.909C259.08 109.909 258.776 109.99 258.492 110.15C258.213 110.307 257.982 110.514 257.8 110.772C257.623 111.026 257.521 111.304 257.496 111.604L256.873 111.598C256.933 111.124 257.043 110.72 257.204 110.385C257.369 110.047 257.572 109.772 257.813 109.56C258.058 109.344 258.331 109.188 258.632 109.09C258.936 108.989 259.258 108.938 259.597 108.938C260.058 108.938 260.456 109.025 260.79 109.198C261.124 109.372 261.399 109.604 261.615 109.896C261.831 110.184 261.99 110.51 262.091 110.874C262.197 111.234 262.25 111.604 262.25 111.985C262.25 112.421 262.189 112.829 262.066 113.21C261.943 113.591 261.759 113.925 261.514 114.213C261.272 114.501 260.974 114.725 260.619 114.886C260.263 115.047 259.851 115.127 259.381 115.127C258.881 115.127 258.446 115.025 258.073 114.822C257.701 114.615 257.392 114.34 257.146 113.997C256.901 113.654 256.717 113.273 256.594 112.854C256.471 112.436 256.41 112.01 256.41 111.579V111.026C256.41 110.375 256.476 109.736 256.607 109.109C256.738 108.483 256.964 107.916 257.286 107.408C257.612 106.9 258.063 106.496 258.638 106.196C259.214 105.895 259.948 105.745 260.841 105.745Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M76.4897 105.707V115H75.3154V107.173L72.9477 108.037V106.977L76.3056 105.707H76.4897Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M147.826 109.801H148.664C149.074 109.801 149.413 109.734 149.679 109.598C149.95 109.458 150.151 109.27 150.282 109.033C150.418 108.792 150.486 108.521 150.486 108.221C150.486 107.865 150.426 107.567 150.308 107.326C150.189 107.084 150.012 106.903 149.775 106.78C149.538 106.657 149.237 106.596 148.873 106.596C148.543 106.596 148.251 106.661 147.997 106.792C147.748 106.919 147.551 107.101 147.407 107.338C147.267 107.575 147.197 107.855 147.197 108.176H146.023C146.023 107.707 146.142 107.279 146.379 106.894C146.616 106.509 146.948 106.202 147.375 105.974C147.807 105.745 148.306 105.631 148.873 105.631C149.432 105.631 149.921 105.73 150.34 105.929C150.758 106.124 151.084 106.416 151.317 106.805C151.55 107.19 151.666 107.671 151.666 108.246C151.666 108.479 151.611 108.729 151.501 108.995C151.395 109.257 151.228 109.503 151 109.731C150.775 109.96 150.483 110.148 150.124 110.296C149.764 110.44 149.332 110.512 148.829 110.512H147.826V109.801ZM147.826 110.766V110.062H148.829C149.417 110.062 149.904 110.131 150.289 110.271C150.674 110.411 150.976 110.597 151.196 110.83C151.421 111.062 151.577 111.318 151.666 111.598C151.759 111.873 151.806 112.148 151.806 112.423C151.806 112.854 151.732 113.237 151.584 113.572C151.44 113.906 151.235 114.19 150.968 114.422C150.706 114.655 150.397 114.831 150.041 114.949C149.686 115.068 149.299 115.127 148.88 115.127C148.478 115.127 148.099 115.07 147.743 114.956C147.392 114.841 147.081 114.676 146.81 114.46C146.539 114.24 146.328 113.972 146.175 113.654C146.023 113.333 145.947 112.967 145.947 112.556H147.121C147.121 112.878 147.191 113.159 147.331 113.4C147.475 113.642 147.678 113.83 147.94 113.965C148.207 114.097 148.52 114.162 148.88 114.162C149.239 114.162 149.548 114.101 149.806 113.978C150.069 113.851 150.27 113.661 150.409 113.407C150.553 113.153 150.625 112.833 150.625 112.448C150.625 112.063 150.545 111.748 150.384 111.502C150.223 111.253 149.995 111.069 149.698 110.95C149.406 110.827 149.062 110.766 148.664 110.766H147.826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M221.104 110.792L219.644 110.442L220.171 105.758H225.363V107.237H221.675L221.447 109.287C221.569 109.215 221.756 109.139 222.005 109.059C222.255 108.974 222.534 108.932 222.843 108.932C223.292 108.932 223.689 109.001 224.036 109.141C224.383 109.281 224.678 109.484 224.919 109.75C225.164 110.017 225.35 110.343 225.477 110.728C225.604 111.113 225.668 111.549 225.668 112.036C225.668 112.446 225.604 112.838 225.477 113.21C225.35 113.578 225.158 113.908 224.9 114.2C224.642 114.488 224.318 114.714 223.929 114.879C223.539 115.044 223.078 115.127 222.545 115.127C222.147 115.127 221.762 115.068 221.389 114.949C221.021 114.831 220.689 114.655 220.393 114.422C220.101 114.19 219.866 113.908 219.688 113.578C219.515 113.244 219.424 112.863 219.415 112.436H221.231C221.256 112.698 221.324 112.924 221.434 113.115C221.548 113.301 221.698 113.445 221.885 113.546C222.071 113.648 222.289 113.699 222.538 113.699C222.771 113.699 222.97 113.654 223.135 113.565C223.3 113.477 223.433 113.354 223.535 113.197C223.637 113.036 223.711 112.85 223.757 112.639C223.808 112.423 223.833 112.19 223.833 111.94C223.833 111.691 223.804 111.464 223.744 111.261C223.685 111.058 223.594 110.882 223.472 110.734C223.349 110.586 223.192 110.472 223.002 110.392C222.816 110.311 222.598 110.271 222.348 110.271C222.009 110.271 221.747 110.324 221.561 110.43C221.379 110.535 221.227 110.656 221.104 110.792Z",fill:"white"}),(0,h.createElement)("path",{d:"M41.8627 128.758V129.418L38.0351 138H36.7973L40.6186 129.723H35.6166V128.758H41.8627Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M110.539 137.016H110.66C111.337 137.016 111.887 136.921 112.31 136.73C112.733 136.54 113.059 136.284 113.288 135.962C113.516 135.641 113.673 135.279 113.758 134.877C113.842 134.471 113.884 134.054 113.884 133.626V132.211C113.884 131.792 113.836 131.42 113.738 131.094C113.645 130.768 113.514 130.495 113.345 130.275C113.18 130.055 112.992 129.888 112.78 129.773C112.568 129.659 112.344 129.602 112.107 129.602C111.836 129.602 111.593 129.657 111.377 129.767C111.166 129.873 110.986 130.023 110.838 130.218C110.694 130.412 110.584 130.641 110.508 130.903C110.431 131.166 110.393 131.451 110.393 131.76C110.393 132.035 110.427 132.302 110.495 132.56C110.563 132.818 110.666 133.051 110.806 133.258C110.946 133.466 111.119 133.631 111.326 133.753C111.538 133.872 111.786 133.931 112.069 133.931C112.331 133.931 112.577 133.88 112.805 133.779C113.038 133.673 113.243 133.531 113.421 133.354C113.603 133.172 113.747 132.966 113.853 132.738C113.963 132.509 114.026 132.27 114.043 132.021H114.602C114.602 132.372 114.532 132.719 114.392 133.062C114.257 133.4 114.066 133.709 113.821 133.988C113.576 134.268 113.288 134.492 112.958 134.661C112.628 134.826 112.268 134.909 111.879 134.909C111.422 134.909 111.026 134.82 110.692 134.642C110.357 134.464 110.082 134.227 109.866 133.931C109.655 133.635 109.496 133.305 109.39 132.941C109.289 132.573 109.238 132.2 109.238 131.824C109.238 131.384 109.299 130.971 109.422 130.586C109.545 130.201 109.727 129.862 109.968 129.57C110.209 129.274 110.508 129.043 110.863 128.878C111.223 128.713 111.637 128.631 112.107 128.631C112.636 128.631 113.087 128.737 113.459 128.948C113.832 129.16 114.134 129.443 114.367 129.799C114.604 130.154 114.777 130.554 114.887 130.999C114.997 131.443 115.052 131.9 115.052 132.37V132.795C115.052 133.273 115.021 133.76 114.957 134.255C114.898 134.746 114.782 135.215 114.608 135.664C114.439 136.113 114.191 136.515 113.865 136.87C113.54 137.221 113.114 137.501 112.59 137.708C112.069 137.911 111.426 138.013 110.66 138.013H110.539V137.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M183.055 128.707V138H181.881V130.173L179.513 131.037V129.977L182.871 128.707H183.055ZM190.368 128.707V138H189.194V130.173L186.826 131.037V129.977L190.184 128.707H190.368Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M256.537 128.707V138H255.363V130.173L252.995 131.037V129.977L256.353 128.707H256.537ZM261.704 132.801H262.542C262.952 132.801 263.291 132.734 263.558 132.598C263.828 132.458 264.029 132.27 264.161 132.033C264.296 131.792 264.364 131.521 264.364 131.221C264.364 130.865 264.304 130.567 264.186 130.326C264.067 130.084 263.89 129.903 263.653 129.78C263.416 129.657 263.115 129.596 262.751 129.596C262.421 129.596 262.129 129.661 261.875 129.792C261.626 129.919 261.429 130.101 261.285 130.338C261.145 130.575 261.076 130.855 261.076 131.176H259.901C259.901 130.707 260.02 130.279 260.257 129.894C260.494 129.509 260.826 129.202 261.253 128.974C261.685 128.745 262.184 128.631 262.751 128.631C263.31 128.631 263.799 128.73 264.218 128.929C264.637 129.124 264.963 129.416 265.195 129.805C265.428 130.19 265.544 130.671 265.544 131.246C265.544 131.479 265.489 131.729 265.379 131.995C265.274 132.257 265.106 132.503 264.878 132.731C264.654 132.96 264.362 133.148 264.002 133.296C263.642 133.44 263.211 133.512 262.707 133.512H261.704V132.801ZM261.704 133.766V133.062H262.707C263.295 133.062 263.782 133.131 264.167 133.271C264.552 133.411 264.855 133.597 265.075 133.83C265.299 134.062 265.456 134.318 265.544 134.598C265.637 134.873 265.684 135.148 265.684 135.423C265.684 135.854 265.61 136.237 265.462 136.572C265.318 136.906 265.113 137.19 264.846 137.422C264.584 137.655 264.275 137.831 263.919 137.949C263.564 138.068 263.177 138.127 262.758 138.127C262.356 138.127 261.977 138.07 261.622 137.956C261.27 137.841 260.959 137.676 260.688 137.46C260.418 137.24 260.206 136.972 260.054 136.654C259.901 136.333 259.825 135.967 259.825 135.556H260.999C260.999 135.878 261.069 136.159 261.209 136.4C261.353 136.642 261.556 136.83 261.818 136.965C262.085 137.097 262.398 137.162 262.758 137.162C263.117 137.162 263.426 137.101 263.685 136.978C263.947 136.851 264.148 136.661 264.288 136.407C264.431 136.153 264.503 135.833 264.503 135.448C264.503 135.063 264.423 134.748 264.262 134.502C264.101 134.253 263.873 134.069 263.577 133.95C263.285 133.827 262.94 133.766 262.542 133.766H261.704Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M78.4575 135.499C78.4575 136.062 78.3263 136.54 78.0639 136.934C77.8058 137.323 77.4545 137.619 77.0102 137.822C76.5701 138.025 76.0729 138.127 75.5185 138.127C74.9641 138.127 74.4648 138.025 74.0205 137.822C73.5761 137.619 73.2249 137.323 72.9667 136.934C72.7086 136.54 72.5795 136.062 72.5795 135.499C72.5795 135.131 72.6494 134.794 72.789 134.49C72.9329 134.181 73.1339 133.912 73.392 133.684C73.6544 133.455 73.9633 133.279 74.3188 133.157C74.6785 133.03 75.0742 132.966 75.5058 132.966C76.0729 132.966 76.5786 133.076 77.0229 133.296C77.4672 133.512 77.8164 133.811 78.0703 134.191C78.3284 134.572 78.4575 135.008 78.4575 135.499ZM77.2768 135.474C77.2768 135.131 77.2027 134.828 77.0546 134.566C76.9065 134.299 76.6992 134.092 76.4326 133.944C76.166 133.796 75.857 133.722 75.5058 133.722C75.1461 133.722 74.8351 133.796 74.5727 133.944C74.3146 134.092 74.1136 134.299 73.9697 134.566C73.8258 134.828 73.7539 135.131 73.7539 135.474C73.7539 135.829 73.8237 136.134 73.9633 136.388C74.1072 136.637 74.3103 136.83 74.5727 136.965C74.8393 137.097 75.1546 137.162 75.5185 137.162C75.8824 137.162 76.1956 137.097 76.458 136.965C76.7203 136.83 76.9213 136.637 77.061 136.388C77.2049 136.134 77.2768 135.829 77.2768 135.474ZM78.2416 131.164C78.2416 131.612 78.1232 132.016 77.8862 132.376C77.6492 132.736 77.3255 133.019 76.915 133.227C76.5045 133.434 76.039 133.538 75.5185 133.538C74.9895 133.538 74.5177 133.434 74.103 133.227C73.6925 133.019 73.3709 132.736 73.1381 132.376C72.9054 132.016 72.789 131.612 72.789 131.164C72.789 130.626 72.9054 130.169 73.1381 129.792C73.3751 129.416 73.6988 129.128 74.1093 128.929C74.5198 128.73 74.9874 128.631 75.5122 128.631C76.0411 128.631 76.5109 128.73 76.9213 128.929C77.3318 129.128 77.6534 129.416 77.8862 129.792C78.1232 130.169 78.2416 130.626 78.2416 131.164ZM77.0673 131.183C77.0673 130.874 77.0017 130.601 76.8706 130.364C76.7394 130.127 76.5574 129.941 76.3247 129.805C76.0919 129.666 75.8211 129.596 75.5122 129.596C75.2032 129.596 74.9324 129.661 74.6997 129.792C74.4711 129.919 74.2913 130.101 74.1601 130.338C74.0331 130.575 73.9697 130.857 73.9697 131.183C73.9697 131.5 74.0331 131.777 74.1601 132.014C74.2913 132.251 74.4733 132.435 74.706 132.566C74.9387 132.698 75.2096 132.763 75.5185 132.763C75.8274 132.763 76.0961 132.698 76.3247 132.566C76.5574 132.435 76.7394 132.251 76.8706 132.014C77.0017 131.777 77.0673 131.5 77.0673 131.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M146.315 128.707V138H145.141V130.173L142.773 131.037V129.977L146.131 128.707H146.315ZM155.57 132.643V134.052C155.57 134.809 155.502 135.448 155.367 135.969C155.231 136.489 155.037 136.908 154.783 137.226C154.529 137.543 154.222 137.774 153.862 137.917C153.507 138.057 153.105 138.127 152.656 138.127C152.301 138.127 151.973 138.083 151.673 137.994C151.372 137.905 151.101 137.763 150.86 137.568C150.623 137.369 150.42 137.111 150.251 136.794C150.081 136.477 149.952 136.091 149.863 135.639C149.775 135.186 149.73 134.657 149.73 134.052V132.643C149.73 131.885 149.798 131.25 149.933 130.738C150.073 130.226 150.27 129.816 150.524 129.507C150.778 129.194 151.082 128.969 151.438 128.834C151.797 128.699 152.199 128.631 152.644 128.631C153.003 128.631 153.334 128.675 153.634 128.764C153.939 128.849 154.209 128.986 154.446 129.177C154.683 129.363 154.884 129.613 155.05 129.926C155.219 130.235 155.348 130.613 155.437 131.062C155.526 131.511 155.57 132.037 155.57 132.643ZM154.389 134.242V132.446C154.389 132.031 154.364 131.667 154.313 131.354C154.267 131.037 154.197 130.766 154.104 130.542C154.011 130.317 153.892 130.135 153.748 129.996C153.609 129.856 153.446 129.754 153.259 129.691C153.078 129.623 152.872 129.589 152.644 129.589C152.364 129.589 152.117 129.642 151.901 129.748C151.685 129.85 151.503 130.013 151.355 130.237C151.211 130.461 151.101 130.755 151.025 131.119C150.949 131.483 150.911 131.925 150.911 132.446V134.242C150.911 134.657 150.934 135.023 150.981 135.34C151.031 135.658 151.105 135.933 151.203 136.166C151.3 136.394 151.419 136.582 151.558 136.73C151.698 136.879 151.859 136.989 152.041 137.061C152.227 137.128 152.432 137.162 152.656 137.162C152.944 137.162 153.196 137.107 153.412 136.997C153.628 136.887 153.807 136.716 153.951 136.483C154.099 136.246 154.209 135.943 154.281 135.575C154.353 135.203 154.389 134.758 154.389 134.242Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M219.796 128.707V138H218.622V130.173L216.254 131.037V129.977L219.612 128.707H219.796ZM229.305 137.035V138H223.256V137.156L226.284 133.785C226.656 133.37 226.944 133.019 227.147 132.731C227.354 132.439 227.498 132.179 227.578 131.951C227.663 131.718 227.705 131.481 227.705 131.24C227.705 130.935 227.642 130.66 227.515 130.415C227.392 130.165 227.21 129.966 226.969 129.818C226.728 129.67 226.436 129.596 226.093 129.596C225.683 129.596 225.34 129.676 225.065 129.837C224.794 129.993 224.591 130.214 224.455 130.497C224.32 130.781 224.252 131.106 224.252 131.475H223.078C223.078 130.954 223.192 130.478 223.421 130.046C223.649 129.615 223.988 129.272 224.436 129.018C224.885 128.76 225.437 128.631 226.093 128.631C226.677 128.631 227.176 128.735 227.591 128.942C228.006 129.145 228.323 129.433 228.543 129.805C228.768 130.173 228.88 130.605 228.88 131.1C228.88 131.371 228.833 131.646 228.74 131.925C228.651 132.2 228.526 132.475 228.366 132.75C228.209 133.026 228.025 133.296 227.813 133.563C227.606 133.83 227.384 134.092 227.147 134.35L224.671 137.035H229.305Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1407"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1407"},(0,h.createElement)("rect",{width:"13",height:"13",fill:"white",transform:"translate(96 56)"})))),{ToolBarFields:kl,BlockLabel:jl,BlockName:xl,BlockDescription:Fl,BlockAdvancedValue:Bl,AdvancedFields:Al,FieldWrapper:Pl,FieldSettingsWrapper:Sl,AdvancedInspectorControl:Nl,ClientSideMacros:Il,ValidationToggleGroup:Tl,ValidationBlockMessage:Ol,AttributeHelp:Jl}=JetFBComponents,{useInsertMacro:Rl,useIsAdvancedValidation:ql,useUniqueNameOnDuplicate:Dl}=JetFBHooks,{__:zl}=wp.i18n,{InspectorControls:Ul,useBlockProps:Gl}=wp.blockEditor,{TextControl:Wl,ToggleControl:Kl,PanelBody:$l,__experimentalInputControl:Yl,ExternalLink:Xl}=wp.components;let{InputControl:Ql}=wp.components;void 0===Ql&&(Ql=Yl);const er=JSON.parse('{"apiVersion":3,"name":"jet-forms/date-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","date"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Date Field","icon":"\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":"string","default":"","jfb":{"macro":true,"dynamic":true}},"max":{"type":"string","default":""},"is_timestamp":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Cr}=wp.i18n,{createBlock:tr}=wp.blocks,{name:lr,icon:rr=""}=er,nr={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:rr}}),description:Cr("Insert the date manually with Date Field, utilizing a drop-down calendar to choose the date from there conveniently.","jet-form-builder"),edit:function(e){const C=Gl(),[t,l]=Rl("min"),[r,n]=Rl("max"),{attributes:a,isSelected:i,setAttributes:o,editProps:{uniqKey:s,blockName:c,attrHelp:d}}=e,m=ql();if(Dl(),a.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},_l);const u=(0,h.createElement)(h.Fragment,null,zl("Plain date should be in yyyy-mm-dd format.","jet-form-builder")," ",zl("Or you can use","jet-form-builder")," ",(0,h.createElement)(Xl,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},zl("macros","jet-form-builder"))," ",zl("and","jet-form-builder")," ",(0,h.createElement)(Xl,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},zl("filters","jet-form-builder")),".");return[(0,h.createElement)(kl,{key:s("JetForm-toolbar"),...e}),i&&(0,h.createElement)(Ul,{key:s("InspectorControls")},(0,h.createElement)($l,{title:zl("General","jet-form-builder")},(0,h.createElement)(jl,null),(0,h.createElement)(xl,null),(0,h.createElement)(Fl,null)),(0,h.createElement)($l,{title:zl("Value","jet-form-builder")},(0,h.createElement)(Bl,{help:u,style:{marginBottom:"1em"}}),(0,h.createElement)(Il,null,(0,h.createElement)(Nl,{value:a.min,label:zl("Starting from date","jet-form-builder"),onChangePreset:e=>o({min:e}),onChangeMacros:l},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Wl,{id:e,ref:t,className:"jet-fb m-unset",value:a.min,onChange:e=>o({min:e})}),(0,h.createElement)(Jl,null,u))),(0,h.createElement)(Nl,{value:a.max,label:zl("Limit dates to","jet-form-builder"),onChangePreset:e=>o({max:e}),onChangeMacros:n},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Wl,{id:e,ref:r,className:"jet-fb m-unset",value:a.max,onChange:e=>o({max:e})}),(0,h.createElement)(Jl,null,u))))),(0,h.createElement)(Sl,{...e},(0,h.createElement)(Kl,{key:"is_timestamp",label:zl("Is Timestamp","jet-form-builder"),checked:a.is_timestamp,help:d("is_timestamp"),onChange:e=>{o({is_timestamp:Boolean(e)})}})),(0,h.createElement)($l,{title:zl("Validation","jet-form-builder")},(0,h.createElement)(Tl,null),m&&(0,h.createElement)(h.Fragment,null,Boolean(a.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ol,{name:"date_min"})),Boolean(a.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ol,{name:"date_max"})),(0,h.createElement)(Ol,{name:"empty"}))),(0,h.createElement)(Al,null)),(0,h.createElement)("div",{...C,key:s("viewBlock")},(0,h.createElement)(Pl,{key:s("FieldWrapper"),...e},(0,h.createElement)(Wl,{onChange:()=>{},className:"jet-form-builder__field-preview",key:`place_holder_block_${c}`,placeholder:'Input type="date"'})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>tr("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/time-field","jet-forms/datetime-field"],transform:e=>tr(lr,{...e}),priority:0}]}},ar=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_75_1425)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M31.5698 29.1426V30.5518C31.5698 31.3092 31.5021 31.9482 31.3667 32.4688C31.2313 32.9893 31.0366 33.4082 30.7827 33.7256C30.5288 34.043 30.222 34.2736 29.8623 34.4175C29.5068 34.5571 29.1048 34.627 28.6562 34.627C28.3008 34.627 27.9728 34.5825 27.6724 34.4937C27.3719 34.4048 27.1011 34.263 26.8599 34.0684C26.6229 33.8695 26.4198 33.6113 26.2505 33.2939C26.0812 32.9766 25.9521 32.5915 25.8633 32.1387C25.7744 31.6859 25.73 31.1569 25.73 30.5518V29.1426C25.73 28.3851 25.7977 27.7503 25.9331 27.2383C26.0728 26.7262 26.2695 26.3158 26.5234 26.0068C26.7773 25.6937 27.082 25.4694 27.4375 25.334C27.7972 25.1986 28.1992 25.1309 28.6436 25.1309C29.0033 25.1309 29.3333 25.1753 29.6338 25.2642C29.9385 25.3488 30.2093 25.4863 30.4463 25.6768C30.6833 25.863 30.8843 26.1126 31.0493 26.4258C31.2186 26.7347 31.3477 27.1134 31.4365 27.562C31.5254 28.0106 31.5698 28.5374 31.5698 29.1426ZM30.3892 30.7422V28.9458C30.3892 28.5311 30.3638 28.1672 30.313 27.854C30.2664 27.5366 30.1966 27.2658 30.1035 27.0415C30.0104 26.8172 29.8919 26.6353 29.748 26.4956C29.6084 26.356 29.4455 26.2544 29.2593 26.1909C29.0773 26.1232 28.8721 26.0894 28.6436 26.0894C28.3643 26.0894 28.1167 26.1423 27.9009 26.248C27.6851 26.3496 27.5031 26.5125 27.355 26.7368C27.2111 26.9611 27.1011 27.2552 27.0249 27.6191C26.9487 27.9831 26.9106 28.4253 26.9106 28.9458V30.7422C26.9106 31.1569 26.9339 31.5229 26.9805 31.8403C27.0312 32.1577 27.1053 32.4328 27.2026 32.6655C27.3 32.894 27.4185 33.0824 27.5581 33.2305C27.6978 33.3786 27.8586 33.4886 28.0405 33.5605C28.2267 33.6283 28.432 33.6621 28.6562 33.6621C28.944 33.6621 29.1958 33.6071 29.4116 33.4971C29.6274 33.387 29.8073 33.2157 29.9512 32.9829C30.0993 32.7459 30.2093 32.4434 30.2812 32.0752C30.3532 31.7028 30.3892 31.2585 30.3892 30.7422ZM34.7944 29.3013H35.6323C36.0428 29.3013 36.3813 29.2336 36.6479 29.0981C36.9188 28.9585 37.1198 28.7702 37.251 28.5332C37.3864 28.292 37.4541 28.0212 37.4541 27.7207C37.4541 27.3652 37.3949 27.0669 37.2764 26.8257C37.1579 26.5845 36.9801 26.4025 36.7432 26.2798C36.5062 26.1571 36.2057 26.0957 35.8418 26.0957C35.5117 26.0957 35.2197 26.1613 34.9658 26.2925C34.7161 26.4194 34.5194 26.6014 34.3755 26.8384C34.2358 27.0754 34.166 27.3547 34.166 27.6763H32.9917C32.9917 27.2065 33.1102 26.7791 33.3472 26.394C33.5841 26.009 33.9163 25.7021 34.3438 25.4736C34.7754 25.2451 35.2747 25.1309 35.8418 25.1309C36.4004 25.1309 36.8892 25.2303 37.3081 25.4292C37.7271 25.6239 38.0529 25.9159 38.2856 26.3052C38.5184 26.6903 38.6348 27.1706 38.6348 27.7461C38.6348 27.9788 38.5798 28.2285 38.4697 28.4951C38.3639 28.7575 38.1968 29.0029 37.9683 29.2314C37.744 29.46 37.452 29.6483 37.0923 29.7964C36.7326 29.9403 36.3009 30.0122 35.7974 30.0122H34.7944V29.3013ZM34.7944 30.2661V29.5615H35.7974C36.3856 29.5615 36.8722 29.6313 37.2573 29.771C37.6424 29.9106 37.945 30.0968 38.165 30.3296C38.3893 30.5623 38.5459 30.8184 38.6348 31.0977C38.7279 31.3727 38.7744 31.6478 38.7744 31.9229C38.7744 32.3545 38.7004 32.7375 38.5522 33.0718C38.4084 33.4061 38.2031 33.6896 37.9365 33.9224C37.6742 34.1551 37.3652 34.3307 37.0098 34.4492C36.6543 34.5677 36.2671 34.627 35.8481 34.627C35.4461 34.627 35.0674 34.5698 34.7119 34.4556C34.3607 34.3413 34.0496 34.1763 33.7788 33.9604C33.508 33.7404 33.2964 33.4717 33.144 33.1543C32.9917 32.8327 32.9155 32.4666 32.9155 32.0562H34.0898C34.0898 32.3778 34.1597 32.6592 34.2993 32.9004C34.4432 33.1416 34.6463 33.3299 34.9087 33.4653C35.1753 33.5965 35.4884 33.6621 35.8481 33.6621C36.2078 33.6621 36.5168 33.6007 36.7749 33.478C37.0373 33.3511 37.2383 33.1606 37.3779 32.9067C37.5218 32.6528 37.5938 32.3333 37.5938 31.9482C37.5938 31.5632 37.5133 31.2479 37.3525 31.0024C37.1917 30.7528 36.9632 30.5687 36.667 30.4502C36.375 30.3275 36.0301 30.2661 35.6323 30.2661H34.7944Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M46.9829 25.2578L43.1299 35.2935H42.1206L45.98 25.2578H46.9829Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"50",y:"20.5",width:"19",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M57.2241 33.167V24.75H58.4048V34.5H57.3257L57.2241 33.167ZM52.603 31.1421V31.0088C52.603 30.484 52.6665 30.008 52.7935 29.5806C52.9246 29.1489 53.1087 28.7786 53.3457 28.4697C53.5869 28.1608 53.8726 27.9238 54.2026 27.7588C54.5369 27.5895 54.9093 27.5049 55.3198 27.5049C55.7515 27.5049 56.1281 27.5811 56.4497 27.7334C56.7756 27.8815 57.0506 28.0994 57.2749 28.3872C57.5034 28.6707 57.6833 29.0135 57.8145 29.4155C57.9456 29.8175 58.0366 30.2725 58.0874 30.7803V31.3643C58.0409 31.8678 57.9499 32.3206 57.8145 32.7227C57.6833 33.1247 57.5034 33.4674 57.2749 33.751C57.0506 34.0345 56.7756 34.2524 56.4497 34.4048C56.1239 34.5529 55.743 34.627 55.3071 34.627C54.9051 34.627 54.5369 34.5402 54.2026 34.3667C53.8726 34.1932 53.5869 33.9499 53.3457 33.6367C53.1087 33.3236 52.9246 32.9554 52.7935 32.5322C52.6665 32.1048 52.603 31.6414 52.603 31.1421ZM53.7837 31.0088V31.1421C53.7837 31.4849 53.8175 31.8065 53.8853 32.1069C53.9572 32.4074 54.0672 32.6719 54.2153 32.9004C54.3634 33.1289 54.5518 33.3088 54.7803 33.4399C55.0088 33.5669 55.2817 33.6304 55.5991 33.6304C55.9884 33.6304 56.3079 33.5479 56.5576 33.3828C56.8115 33.2178 57.0146 32.9998 57.167 32.729C57.3193 32.4582 57.4378 32.1641 57.5225 31.8467V30.3169C57.4717 30.0841 57.3976 29.8599 57.3003 29.644C57.2072 29.424 57.0845 29.2293 56.9321 29.0601C56.784 28.8866 56.5999 28.749 56.3799 28.6475C56.1641 28.5459 55.908 28.4951 55.6118 28.4951C55.2902 28.4951 55.013 28.5628 54.7803 28.6982C54.5518 28.8294 54.3634 29.0114 54.2153 29.2441C54.0672 29.4727 53.9572 29.7393 53.8853 30.0439C53.8175 30.3444 53.7837 30.666 53.7837 31.0088ZM64.562 33.167V24.75H65.7427V34.5H64.6636L64.562 33.167ZM59.9409 31.1421V31.0088C59.9409 30.484 60.0044 30.008 60.1313 29.5806C60.2625 29.1489 60.4466 28.7786 60.6836 28.4697C60.9248 28.1608 61.2104 27.9238 61.5405 27.7588C61.8748 27.5895 62.2472 27.5049 62.6577 27.5049C63.0894 27.5049 63.466 27.5811 63.7876 27.7334C64.1134 27.8815 64.3885 28.0994 64.6128 28.3872C64.8413 28.6707 65.0212 29.0135 65.1523 29.4155C65.2835 29.8175 65.3745 30.2725 65.4253 30.7803V31.3643C65.3787 31.8678 65.2878 32.3206 65.1523 32.7227C65.0212 33.1247 64.8413 33.4674 64.6128 33.751C64.3885 34.0345 64.1134 34.2524 63.7876 34.4048C63.4618 34.5529 63.0809 34.627 62.645 34.627C62.243 34.627 61.8748 34.5402 61.5405 34.3667C61.2104 34.1932 60.9248 33.9499 60.6836 33.6367C60.4466 33.3236 60.2625 32.9554 60.1313 32.5322C60.0044 32.1048 59.9409 31.6414 59.9409 31.1421ZM61.1216 31.0088V31.1421C61.1216 31.4849 61.1554 31.8065 61.2231 32.1069C61.2951 32.4074 61.4051 32.6719 61.5532 32.9004C61.7013 33.1289 61.8896 33.3088 62.1182 33.4399C62.3467 33.5669 62.6196 33.6304 62.937 33.6304C63.3263 33.6304 63.6458 33.5479 63.8955 33.3828C64.1494 33.2178 64.3525 32.9998 64.5049 32.729C64.6572 32.4582 64.7757 32.1641 64.8604 31.8467V30.3169C64.8096 30.0841 64.7355 29.8599 64.6382 29.644C64.5451 29.424 64.4224 29.2293 64.27 29.0601C64.1219 28.8866 63.9378 28.749 63.7178 28.6475C63.502 28.5459 63.2459 28.4951 62.9497 28.4951C62.6281 28.4951 62.3509 28.5628 62.1182 28.6982C61.8896 28.8294 61.7013 29.0114 61.5532 29.2441C61.4051 29.4727 61.2951 29.7393 61.2231 30.0439C61.1554 30.3444 61.1216 30.666 61.1216 31.0088Z",fill:"white"}),(0,h.createElement)("path",{d:"M75.9829 25.2578L72.1299 35.2935H71.1206L74.98 25.2578H75.9829Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M81.8247 33.7891L83.7354 27.6318H84.9922L82.2373 35.5601C82.1738 35.7293 82.0892 35.9113 81.9834 36.106C81.8818 36.3049 81.7507 36.4932 81.5898 36.6709C81.429 36.8486 81.2344 36.9925 81.0059 37.1025C80.7816 37.2168 80.5129 37.2739 80.1997 37.2739C80.1066 37.2739 79.9881 37.2612 79.8442 37.2358C79.7004 37.2104 79.5988 37.1893 79.5396 37.1724L79.5332 36.2202C79.5671 36.2244 79.62 36.2287 79.6919 36.2329C79.7681 36.2414 79.821 36.2456 79.8506 36.2456C80.1172 36.2456 80.3436 36.2096 80.5298 36.1377C80.716 36.07 80.8726 35.9536 80.9995 35.7886C81.1307 35.6278 81.2428 35.4056 81.3359 35.1221L81.8247 33.7891ZM80.4219 27.6318L82.2056 32.9639L82.5103 34.2017L81.666 34.6333L79.1396 27.6318H80.4219ZM87.9819 33.7891L89.8926 27.6318H91.1494L88.3945 35.5601C88.3311 35.7293 88.2464 35.9113 88.1406 36.106C88.0391 36.3049 87.9079 36.4932 87.7471 36.6709C87.5863 36.8486 87.3916 36.9925 87.1631 37.1025C86.9388 37.2168 86.6701 37.2739 86.3569 37.2739C86.2638 37.2739 86.1453 37.2612 86.0015 37.2358C85.8576 37.2104 85.756 37.1893 85.6968 37.1724L85.6904 36.2202C85.7243 36.2244 85.7772 36.2287 85.8491 36.2329C85.9253 36.2414 85.9782 36.2456 86.0078 36.2456C86.2744 36.2456 86.5008 36.2096 86.687 36.1377C86.8732 36.07 87.0298 35.9536 87.1567 35.7886C87.2879 35.6278 87.4001 35.4056 87.4932 35.1221L87.9819 33.7891ZM86.5791 27.6318L88.3628 32.9639L88.6675 34.2017L87.8232 34.6333L85.2969 27.6318H86.5791ZM94.1392 33.7891L96.0498 27.6318H97.3066L94.5518 35.5601C94.4883 35.7293 94.4036 35.9113 94.2979 36.106C94.1963 36.3049 94.0651 36.4932 93.9043 36.6709C93.7435 36.8486 93.5488 36.9925 93.3203 37.1025C93.096 37.2168 92.8273 37.2739 92.5142 37.2739C92.4211 37.2739 92.3026 37.2612 92.1587 37.2358C92.0148 37.2104 91.9132 37.1893 91.854 37.1724L91.8477 36.2202C91.8815 36.2244 91.9344 36.2287 92.0063 36.2329C92.0825 36.2414 92.1354 36.2456 92.165 36.2456C92.4316 36.2456 92.658 36.2096 92.8442 36.1377C93.0304 36.07 93.187 35.9536 93.314 35.7886C93.4451 35.6278 93.5573 35.4056 93.6504 35.1221L94.1392 33.7891ZM92.7363 27.6318L94.52 32.9639L94.8247 34.2017L93.9805 34.6333L91.4541 27.6318H92.7363ZM100.296 33.7891L102.207 27.6318H103.464L100.709 35.5601C100.646 35.7293 100.561 35.9113 100.455 36.106C100.354 36.3049 100.222 36.4932 100.062 36.6709C99.9007 36.8486 99.7061 36.9925 99.4775 37.1025C99.2533 37.2168 98.9845 37.2739 98.6714 37.2739C98.5783 37.2739 98.4598 37.2612 98.3159 37.2358C98.172 37.2104 98.0705 37.1893 98.0112 37.1724L98.0049 36.2202C98.0387 36.2244 98.0916 36.2287 98.1636 36.2329C98.2397 36.2414 98.2926 36.2456 98.3223 36.2456C98.5889 36.2456 98.8153 36.2096 99.0015 36.1377C99.1877 36.07 99.3442 35.9536 99.4712 35.7886C99.6024 35.6278 99.7145 35.4056 99.8076 35.1221L100.296 33.7891ZM98.8936 27.6318L100.677 32.9639L100.982 34.2017L100.138 34.6333L97.6113 27.6318H98.8936Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270 24V38C270 39.1 269.1 40 268 40H254C252.89 40 252 39.1 252 38L252.01 24C252.01 22.9 252.89 22 254 22H255V20H257V22H265V20H267V22H268C269.1 22 270 22.9 270 24ZM254 26H268V24H254V26ZM268 38V28H254V38H268Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"15",y:"45",width:"268",height:"189",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M26.6948 60.7578H28.3071L30.6812 67.5435L33.0552 60.7578H34.6675L31.3286 70H30.0337L26.6948 60.7578ZM25.8252 60.7578H27.4312L27.7231 67.3721V70H25.8252V60.7578ZM33.9312 60.7578H35.5435V70H33.6392V67.3721L33.9312 60.7578ZM40.8057 68.4512V65.3916C40.8057 65.1715 40.7697 64.9832 40.6978 64.8267C40.6258 64.6659 40.5137 64.541 40.3613 64.4521C40.2132 64.3633 40.0207 64.3188 39.7837 64.3188C39.5806 64.3188 39.4049 64.3548 39.2568 64.4268C39.1087 64.4945 38.9945 64.5939 38.9141 64.7251C38.8337 64.8521 38.7935 65.0023 38.7935 65.1758H36.9653C36.9653 64.8838 37.033 64.6066 37.1685 64.3442C37.3039 64.0819 37.5007 63.8512 37.7588 63.6523C38.0169 63.4492 38.3237 63.2905 38.6792 63.1763C39.0389 63.062 39.4409 63.0049 39.8853 63.0049C40.4185 63.0049 40.8924 63.0938 41.3071 63.2715C41.7218 63.4492 42.0477 63.7158 42.2847 64.0713C42.5259 64.4268 42.6465 64.8711 42.6465 65.4043V68.3433C42.6465 68.7199 42.6698 69.0288 42.7163 69.27C42.7629 69.507 42.8306 69.7144 42.9194 69.8921V70H41.0723C40.9834 69.8138 40.9157 69.5811 40.8691 69.3018C40.8268 69.0182 40.8057 68.7347 40.8057 68.4512ZM41.0469 65.8169L41.0596 66.8516H40.0376C39.7964 66.8516 39.5869 66.8791 39.4092 66.9341C39.2314 66.9891 39.0854 67.0674 38.9712 67.1689C38.8569 67.2663 38.7723 67.3805 38.7173 67.5117C38.6665 67.6429 38.6411 67.7868 38.6411 67.9434C38.6411 68.0999 38.6771 68.2417 38.749 68.3687C38.821 68.4914 38.9246 68.5887 39.0601 68.6606C39.1955 68.7284 39.3542 68.7622 39.5361 68.7622C39.8112 68.7622 40.0503 68.7072 40.2534 68.5972C40.4565 68.4871 40.6131 68.3517 40.7231 68.1909C40.8374 68.0301 40.8966 67.8778 40.9009 67.7339L41.3833 68.5083C41.3156 68.6818 41.2225 68.8617 41.104 69.0479C40.9897 69.234 40.8438 69.4097 40.666 69.5747C40.4883 69.7355 40.2746 69.8688 40.0249 69.9746C39.7752 70.0762 39.479 70.127 39.1362 70.127C38.7004 70.127 38.3047 70.0402 37.9492 69.8667C37.598 69.689 37.3187 69.4456 37.1113 69.1367C36.9082 68.8236 36.8066 68.4681 36.8066 68.0703C36.8066 67.7106 36.8743 67.3911 37.0098 67.1118C37.1452 66.8325 37.3441 66.5977 37.6064 66.4072C37.873 66.2126 38.2052 66.0666 38.603 65.9692C39.0008 65.8677 39.4621 65.8169 39.9868 65.8169H41.0469ZM45.8838 64.6299V70H44.0557V63.1318H45.7759L45.8838 64.6299ZM47.9531 63.0874L47.9214 64.7822C47.8325 64.7695 47.7246 64.759 47.5977 64.7505C47.4749 64.7378 47.3628 64.7314 47.2612 64.7314C47.0031 64.7314 46.7788 64.7653 46.5884 64.833C46.4022 64.8965 46.2456 64.9917 46.1187 65.1187C45.9959 65.2456 45.9028 65.4001 45.8394 65.582C45.7801 65.764 45.7463 65.9714 45.7378 66.2041L45.3696 66.0898C45.3696 65.6455 45.4141 65.2371 45.5029 64.8647C45.5918 64.4881 45.7209 64.1602 45.8901 63.8809C46.0636 63.6016 46.2752 63.3857 46.5249 63.2334C46.7746 63.0811 47.0602 63.0049 47.3818 63.0049C47.4834 63.0049 47.5871 63.0133 47.6929 63.0303C47.7987 63.043 47.8854 63.062 47.9531 63.0874ZM51.5269 68.6987C51.7511 68.6987 51.95 68.6564 52.1235 68.5718C52.297 68.4829 52.4325 68.3602 52.5298 68.2036C52.6313 68.0428 52.6842 67.8545 52.6885 67.6387H54.4087C54.4045 68.1211 54.2754 68.5506 54.0215 68.9272C53.7676 69.2996 53.4269 69.5938 52.9995 69.8096C52.5721 70.0212 52.0939 70.127 51.5649 70.127C51.0317 70.127 50.5662 70.0381 50.1685 69.8604C49.7749 69.6826 49.4469 69.4372 49.1846 69.124C48.9222 68.8066 48.7254 68.4385 48.5942 68.0195C48.4631 67.5964 48.3975 67.1436 48.3975 66.6611V66.4771C48.3975 65.9904 48.4631 65.5376 48.5942 65.1187C48.7254 64.6955 48.9222 64.3273 49.1846 64.0142C49.4469 63.6968 49.7749 63.4492 50.1685 63.2715C50.562 63.0938 51.0233 63.0049 51.5522 63.0049C52.1151 63.0049 52.6081 63.1128 53.0312 63.3286C53.4587 63.5444 53.793 63.8534 54.0342 64.2554C54.2796 64.6532 54.4045 65.125 54.4087 65.6709H52.6885C52.6842 65.4424 52.6356 65.235 52.5425 65.0488C52.4536 64.8626 52.3224 64.7145 52.1489 64.6045C51.9797 64.4902 51.7702 64.4331 51.5205 64.4331C51.2539 64.4331 51.036 64.4902 50.8667 64.6045C50.6974 64.7145 50.5662 64.8669 50.4731 65.0615C50.38 65.252 50.3145 65.4699 50.2764 65.7153C50.2425 65.9565 50.2256 66.2104 50.2256 66.4771V66.6611C50.2256 66.9277 50.2425 67.1838 50.2764 67.4292C50.3102 67.6746 50.3737 67.8926 50.4668 68.083C50.5641 68.2734 50.6974 68.4237 50.8667 68.5337C51.036 68.6437 51.256 68.6987 51.5269 68.6987ZM57.2524 60.25V70H55.4243V60.25H57.2524ZM56.9922 66.3247H56.4907C56.495 65.8465 56.5584 65.4064 56.6812 65.0044C56.8039 64.5981 56.9795 64.2469 57.208 63.9507C57.4365 63.6502 57.7095 63.4175 58.0269 63.2524C58.3485 63.0874 58.7039 63.0049 59.0933 63.0049C59.4318 63.0049 59.7386 63.0535 60.0137 63.1509C60.293 63.244 60.5321 63.3963 60.731 63.6079C60.9341 63.8153 61.0907 64.0882 61.2007 64.4268C61.3107 64.7653 61.3657 65.1758 61.3657 65.6582V70H59.5249V65.6455C59.5249 65.3408 59.4805 65.1017 59.3916 64.9282C59.307 64.7505 59.1821 64.6257 59.0171 64.5537C58.8563 64.4775 58.6574 64.4395 58.4204 64.4395C58.158 64.4395 57.9338 64.4881 57.7476 64.5854C57.5656 64.6828 57.4196 64.8182 57.3096 64.9917C57.1995 65.161 57.1191 65.3599 57.0684 65.5884C57.0176 65.8169 56.9922 66.0623 56.9922 66.3247ZM72.2393 68.5718V70H65.917V68.7812L68.9067 65.5757C69.2072 65.2414 69.4442 64.9473 69.6177 64.6934C69.7912 64.4352 69.916 64.2046 69.9922 64.0015C70.0726 63.7941 70.1128 63.5973 70.1128 63.4111C70.1128 63.1318 70.0662 62.8927 69.9731 62.6938C69.88 62.4907 69.7425 62.3341 69.5605 62.2241C69.3828 62.1141 69.1628 62.0591 68.9004 62.0591C68.6211 62.0591 68.3799 62.1268 68.1768 62.2622C67.9779 62.3976 67.8255 62.5859 67.7197 62.8271C67.6182 63.0684 67.5674 63.3413 67.5674 63.646H65.7329C65.7329 63.0959 65.8641 62.5923 66.1265 62.1353C66.3888 61.674 66.7591 61.3079 67.2373 61.0371C67.7155 60.762 68.2826 60.6245 68.9385 60.6245C69.5859 60.6245 70.1318 60.7303 70.5762 60.9419C71.0247 61.1493 71.3633 61.4497 71.5918 61.8433C71.8245 62.2326 71.9409 62.6981 71.9409 63.2397C71.9409 63.5444 71.8923 63.8428 71.7949 64.1348C71.6976 64.4225 71.5579 64.7103 71.376 64.998C71.1982 65.2816 70.9824 65.5693 70.7285 65.8613C70.4746 66.1533 70.1932 66.4559 69.8843 66.769L68.2783 68.5718H72.2393ZM79.6025 64.5664V66.166C79.6025 66.86 79.5285 67.4588 79.3804 67.9624C79.2323 68.4618 79.0186 68.8722 78.7393 69.1938C78.4642 69.5112 78.1362 69.7461 77.7554 69.8984C77.3745 70.0508 76.9513 70.127 76.4858 70.127C76.1134 70.127 75.7664 70.0804 75.4448 69.9873C75.1232 69.89 74.8333 69.7397 74.5752 69.5366C74.3213 69.3335 74.1012 69.0775 73.915 68.7686C73.7331 68.4554 73.5934 68.083 73.4961 67.6514C73.3988 67.2197 73.3501 66.7246 73.3501 66.166V64.5664C73.3501 63.8724 73.4242 63.2778 73.5723 62.7827C73.7246 62.2834 73.9383 61.875 74.2134 61.5576C74.4927 61.2402 74.8228 61.0075 75.2036 60.8594C75.5845 60.707 76.0076 60.6309 76.4731 60.6309C76.8455 60.6309 77.1904 60.6795 77.5078 60.7769C77.8294 60.87 78.1193 61.016 78.3774 61.2148C78.6356 61.4137 78.8556 61.6698 79.0376 61.9829C79.2196 62.2918 79.3592 62.6621 79.4565 63.0938C79.5539 63.5212 79.6025 64.012 79.6025 64.5664ZM77.7681 66.4072V64.3188C77.7681 63.9845 77.749 63.6925 77.7109 63.4429C77.6771 63.1932 77.6242 62.9816 77.5522 62.8081C77.4803 62.6304 77.3914 62.4865 77.2856 62.3765C77.1799 62.2664 77.0592 62.186 76.9238 62.1353C76.7884 62.0845 76.6382 62.0591 76.4731 62.0591C76.2658 62.0591 76.0817 62.0993 75.9209 62.1797C75.7643 62.2601 75.631 62.3892 75.521 62.5669C75.411 62.7404 75.3263 62.9731 75.2671 63.2651C75.2121 63.5529 75.1846 63.9041 75.1846 64.3188V66.4072C75.1846 66.7415 75.2015 67.0356 75.2354 67.2896C75.2734 67.5435 75.3285 67.7614 75.4004 67.9434C75.4766 68.1211 75.5654 68.2671 75.667 68.3813C75.7728 68.4914 75.8934 68.5718 76.0288 68.6226C76.1685 68.6733 76.3208 68.6987 76.4858 68.6987C76.689 68.6987 76.8688 68.6585 77.0254 68.5781C77.1862 68.4935 77.3216 68.3623 77.4316 68.1846C77.5459 68.0026 77.6305 67.7656 77.6855 67.4736C77.7406 67.1816 77.7681 66.8262 77.7681 66.4072ZM87.1689 68.5718V70H80.8467V68.7812L83.8364 65.5757C84.1369 65.2414 84.3739 64.9473 84.5474 64.6934C84.7209 64.4352 84.8457 64.2046 84.9219 64.0015C85.0023 63.7941 85.0425 63.5973 85.0425 63.4111C85.0425 63.1318 84.9959 62.8927 84.9028 62.6938C84.8097 62.4907 84.6722 62.3341 84.4902 62.2241C84.3125 62.1141 84.0924 62.0591 83.8301 62.0591C83.5508 62.0591 83.3096 62.1268 83.1064 62.2622C82.9076 62.3976 82.7552 62.5859 82.6494 62.8271C82.5479 63.0684 82.4971 63.3413 82.4971 63.646H80.6626C80.6626 63.0959 80.7938 62.5923 81.0562 62.1353C81.3185 61.674 81.6888 61.3079 82.167 61.0371C82.6452 60.762 83.2122 60.6245 83.8682 60.6245C84.5156 60.6245 85.0615 60.7303 85.5059 60.9419C85.9544 61.1493 86.293 61.4497 86.5215 61.8433C86.7542 62.2326 86.8706 62.6981 86.8706 63.2397C86.8706 63.5444 86.8219 63.8428 86.7246 64.1348C86.6273 64.4225 86.4876 64.7103 86.3057 64.998C86.1279 65.2816 85.9121 65.5693 85.6582 65.8613C85.4043 66.1533 85.1229 66.4559 84.814 66.769L83.208 68.5718H87.1689ZM92.7676 60.7388V70H90.9395V62.8462L88.7432 63.5444V62.1035L92.5708 60.7388H92.7676Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1425)"},(0,h.createElement)("path",{d:"M99.7917 64.4167L102.5 67.1251L105.208 64.4167H99.7917Z",fill:"#64748B"})),(0,h.createElement)("path",{d:"M184.167 65.4999L184.93 66.2637L187.958 63.2412L187.958 69.8333L189.042 69.8333L189.042 63.2412L192.07 66.2637L192.833 65.4999L188.5 61.1666L184.167 65.4999Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M205.833 65.5001L205.07 64.7363L202.042 67.7588L202.042 61.1667L200.958 61.1667L200.958 67.7588L197.93 64.7363L197.167 65.5001L201.5 69.8334L205.833 65.5001Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M33.7192 89.6641C33.7192 89.4482 33.6853 89.2578 33.6176 89.0928C33.5541 88.9235 33.4399 88.7712 33.2748 88.6357C33.114 88.5003 32.8898 88.3713 32.602 88.2485C32.3185 88.1258 31.9588 88.001 31.5229 87.874C31.0659 87.7386 30.6533 87.5884 30.2851 87.4233C29.9169 87.2541 29.6017 87.0615 29.3393 86.8457C29.0769 86.6299 28.8759 86.3823 28.7363 86.103C28.5966 85.8237 28.5268 85.5042 28.5268 85.1445C28.5268 84.7848 28.6009 84.4526 28.749 84.1479C28.8971 83.8433 29.1087 83.5788 29.3837 83.3545C29.663 83.126 29.9952 82.9482 30.3803 82.8213C30.7654 82.6943 31.1949 82.6309 31.6689 82.6309C32.3629 82.6309 32.9511 82.7642 33.4335 83.0308C33.9202 83.2931 34.2905 83.638 34.5444 84.0654C34.7983 84.4886 34.9252 84.9414 34.9252 85.4238H33.7065C33.7065 85.0768 33.6324 84.77 33.4843 84.5034C33.3362 84.2326 33.1119 84.021 32.8115 83.8687C32.511 83.7121 32.1302 83.6338 31.6689 83.6338C31.233 83.6338 30.8733 83.6994 30.5898 83.8306C30.3063 83.9618 30.0947 84.1395 29.955 84.3638C29.8196 84.5881 29.7519 84.8441 29.7519 85.1318C29.7519 85.3265 29.7921 85.5042 29.8725 85.665C29.9571 85.8216 30.0862 85.9676 30.2597 86.103C30.4374 86.2384 30.6617 86.3633 30.9326 86.4775C31.2076 86.5918 31.5356 86.7018 31.9164 86.8076C32.4412 86.9557 32.894 87.1208 33.2748 87.3027C33.6557 87.4847 33.9689 87.6899 34.2143 87.9185C34.464 88.1427 34.6481 88.3988 34.7665 88.6865C34.8893 88.9701 34.9506 89.2917 34.9506 89.6514C34.9506 90.028 34.8745 90.3687 34.7221 90.6733C34.5698 90.978 34.3518 91.2383 34.0683 91.4541C33.7848 91.6699 33.4441 91.8371 33.0463 91.9556C32.6528 92.0698 32.2127 92.127 31.726 92.127C31.2986 92.127 30.8775 92.0677 30.4628 91.9492C30.0524 91.8307 29.6778 91.653 29.3393 91.416C29.005 91.179 28.7363 90.887 28.5331 90.54C28.3343 90.1888 28.2348 89.7826 28.2348 89.3213H29.4536C29.4536 89.6387 29.5149 89.9116 29.6376 90.1401C29.7604 90.3644 29.9275 90.5506 30.1391 90.6987C30.3549 90.8468 30.5983 90.9569 30.8691 91.0288C31.1442 91.0965 31.4298 91.1304 31.726 91.1304C32.1534 91.1304 32.5152 91.0711 32.8115 90.9526C33.1077 90.8341 33.332 90.6649 33.4843 90.4448C33.6409 90.2248 33.7192 89.9645 33.7192 89.6641ZM40.5366 90.4131V85.1318H41.7172V92H40.5937L40.5366 90.4131ZM40.7587 88.9658L41.2475 88.9531C41.2475 89.4102 41.1988 89.8333 41.1015 90.2227C41.0084 90.6077 40.8561 90.9421 40.6445 91.2256C40.4329 91.5091 40.1557 91.7313 39.8129 91.8921C39.4702 92.0487 39.0533 92.127 38.5624 92.127C38.2281 92.127 37.9213 92.0783 37.642 91.981C37.367 91.8836 37.13 91.7334 36.9311 91.5303C36.7322 91.3271 36.5777 91.0627 36.4677 90.7368C36.3619 90.411 36.309 90.0195 36.309 89.5625V85.1318H37.4833V89.5752C37.4833 89.8841 37.5172 90.1401 37.5849 90.3433C37.6568 90.5422 37.7521 90.7008 37.8706 90.8193C37.9933 90.9336 38.1287 91.014 38.2768 91.0605C38.4291 91.1071 38.5857 91.1304 38.7465 91.1304C39.2459 91.1304 39.6415 91.0352 39.9335 90.8447C40.2255 90.6501 40.435 90.3898 40.562 90.064C40.6931 89.7339 40.7587 89.3678 40.7587 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M86.7169 82.7578V92H85.5108V82.7578H86.7169ZM89.6876 82.7578V83.7607H82.5465V82.7578H89.6876ZM94.4737 90.4131V85.1318H95.6544V92H94.5308L94.4737 90.4131ZM94.6959 88.9658L95.1846 88.9531C95.1846 89.4102 95.136 89.8333 95.0386 90.2227C94.9455 90.6077 94.7932 90.9421 94.5816 91.2256C94.37 91.5091 94.0928 91.7313 93.7501 91.8921C93.4073 92.0487 92.9905 92.127 92.4996 92.127C92.1653 92.127 91.8585 92.0783 91.5792 91.981C91.3041 91.8836 91.0671 91.7334 90.8682 91.5303C90.6693 91.3271 90.5149 91.0627 90.4049 90.7368C90.2991 90.411 90.2462 90.0195 90.2462 89.5625V85.1318H91.4205V89.5752C91.4205 89.8841 91.4543 90.1401 91.522 90.3433C91.594 90.5422 91.6892 90.7008 91.8077 90.8193C91.9304 90.9336 92.0658 91.014 92.2139 91.0605C92.3663 91.1071 92.5229 91.1304 92.6837 91.1304C93.183 91.1304 93.5787 91.0352 93.8707 90.8447C94.1627 90.6501 94.3721 90.3898 94.4991 90.064C94.6303 89.7339 94.6959 89.3678 94.6959 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M140.637 82.7578V92H139.431V82.7578H140.637ZM143.608 82.7578V83.7607H136.467V82.7578H143.608ZM145.976 82.25V92H144.801V82.25H145.976ZM145.696 88.3057L145.208 88.2866C145.212 87.8169 145.282 87.3831 145.417 86.9854C145.553 86.5833 145.743 86.2342 145.988 85.938C146.234 85.6418 146.526 85.4132 146.864 85.2524C147.207 85.0874 147.586 85.0049 148.001 85.0049C148.339 85.0049 148.644 85.0514 148.915 85.1445C149.186 85.2334 149.416 85.3773 149.607 85.5762C149.801 85.7751 149.949 86.0332 150.051 86.3506C150.153 86.6637 150.203 87.0467 150.203 87.4995V92H149.023V87.4868C149.023 87.1271 148.97 86.8394 148.864 86.6235C148.758 86.4035 148.604 86.2448 148.401 86.1475C148.197 86.0459 147.948 85.9951 147.652 85.9951C147.36 85.9951 147.093 86.0565 146.852 86.1792C146.615 86.3019 146.41 86.4712 146.236 86.687C146.067 86.9028 145.933 87.1504 145.836 87.4297C145.743 87.7048 145.696 87.9967 145.696 88.3057Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M196.437 89.6641C196.437 89.4482 196.403 89.2578 196.335 89.0928C196.272 88.9235 196.158 88.7712 195.992 88.6357C195.832 88.5003 195.607 88.3713 195.32 88.2485C195.036 88.1258 194.676 88.001 194.241 87.874C193.784 87.7386 193.371 87.5884 193.003 87.4233C192.635 87.2541 192.319 87.0615 192.057 86.8457C191.795 86.6299 191.594 86.3823 191.454 86.103C191.314 85.8237 191.244 85.5042 191.244 85.1445C191.244 84.7848 191.319 84.4526 191.467 84.1479C191.615 83.8433 191.826 83.5788 192.101 83.3545C192.381 83.126 192.713 82.9482 193.098 82.8213C193.483 82.6943 193.913 82.6309 194.387 82.6309C195.081 82.6309 195.669 82.7642 196.151 83.0308C196.638 83.2931 197.008 83.638 197.262 84.0654C197.516 84.4886 197.643 84.9414 197.643 85.4238H196.424C196.424 85.0768 196.35 84.77 196.202 84.5034C196.054 84.2326 195.83 84.021 195.529 83.8687C195.229 83.7121 194.848 83.6338 194.387 83.6338C193.951 83.6338 193.591 83.6994 193.307 83.8306C193.024 83.9618 192.812 84.1395 192.673 84.3638C192.537 84.5881 192.47 84.8441 192.47 85.1318C192.47 85.3265 192.51 85.5042 192.59 85.665C192.675 85.8216 192.804 85.9676 192.977 86.103C193.155 86.2384 193.379 86.3633 193.65 86.4775C193.925 86.5918 194.253 86.7018 194.634 86.8076C195.159 86.9557 195.612 87.1208 195.992 87.3027C196.373 87.4847 196.687 87.6899 196.932 87.9185C197.182 88.1427 197.366 88.3988 197.484 88.6865C197.607 88.9701 197.668 89.2917 197.668 89.6514C197.668 90.028 197.592 90.3687 197.44 90.6733C197.287 90.978 197.069 91.2383 196.786 91.4541C196.502 91.6699 196.162 91.8371 195.764 91.9556C195.37 92.0698 194.93 92.127 194.444 92.127C194.016 92.127 193.595 92.0677 193.18 91.9492C192.77 91.8307 192.395 91.653 192.057 91.416C191.723 91.179 191.454 90.887 191.251 90.54C191.052 90.1888 190.952 89.7826 190.952 89.3213H192.171C192.171 89.6387 192.233 89.9116 192.355 90.1401C192.478 90.3644 192.645 90.5506 192.857 90.6987C193.073 90.8468 193.316 90.9569 193.587 91.0288C193.862 91.0965 194.147 91.1304 194.444 91.1304C194.871 91.1304 195.233 91.0711 195.529 90.9526C195.825 90.8341 196.05 90.6649 196.202 90.4448C196.359 90.2248 196.437 89.9645 196.437 89.6641ZM203.102 90.8257V87.29C203.102 87.0192 203.047 86.7843 202.937 86.5854C202.831 86.3823 202.67 86.2257 202.454 86.1157C202.239 86.0057 201.972 85.9507 201.655 85.9507C201.358 85.9507 201.098 86.0015 200.874 86.103C200.654 86.2046 200.48 86.3379 200.353 86.5029C200.231 86.668 200.169 86.8457 200.169 87.0361H198.995C198.995 86.7907 199.058 86.5474 199.185 86.3062C199.312 86.0649 199.494 85.847 199.731 85.6523C199.972 85.4535 200.26 85.2969 200.595 85.1826C200.933 85.0641 201.31 85.0049 201.724 85.0049C202.224 85.0049 202.664 85.0895 203.045 85.2588C203.43 85.4281 203.73 85.6841 203.946 86.0269C204.166 86.3654 204.276 86.7907 204.276 87.3027V90.502C204.276 90.7305 204.295 90.9738 204.333 91.2319C204.376 91.4901 204.437 91.7122 204.517 91.8984V92H203.292C203.233 91.8646 203.187 91.6847 203.153 91.4604C203.119 91.2319 203.102 91.0203 203.102 90.8257ZM203.305 87.8359L203.318 88.6611H202.131C201.796 88.6611 201.498 88.6886 201.236 88.7437C200.973 88.7944 200.753 88.8727 200.576 88.9785C200.398 89.0843 200.262 89.2176 200.169 89.3784C200.076 89.535 200.03 89.7191 200.03 89.9307C200.03 90.1465 200.078 90.3433 200.176 90.521C200.273 90.6987 200.419 90.8405 200.614 90.9463C200.812 91.0479 201.056 91.0986 201.344 91.0986C201.703 91.0986 202.021 91.0225 202.296 90.8701C202.571 90.7178 202.789 90.5316 202.95 90.3115C203.115 90.0915 203.203 89.8778 203.216 89.6704L203.718 90.2354C203.688 90.4131 203.608 90.6099 203.476 90.8257C203.345 91.0415 203.17 91.2489 202.95 91.4478C202.734 91.6424 202.476 91.8053 202.175 91.9365C201.879 92.0635 201.545 92.127 201.172 92.127C200.707 92.127 200.298 92.036 199.947 91.854C199.6 91.672 199.329 91.4287 199.135 91.124C198.944 90.8151 198.849 90.4702 198.849 90.0894C198.849 89.7212 198.921 89.3975 199.065 89.1182C199.209 88.8346 199.416 88.5998 199.687 88.4136C199.958 88.2231 200.284 88.0793 200.664 87.9819C201.045 87.8846 201.471 87.8359 201.94 87.8359H203.305Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M54.3552 82.7578H55.5422L58.57 90.2925L61.5915 82.7578H62.7849L59.027 92H58.1003L54.3552 82.7578ZM53.968 82.7578H55.0153L55.1867 88.3945V92H53.968V82.7578ZM62.1184 82.7578H63.1657V92H61.947V88.3945L62.1184 82.7578ZM64.8288 88.6421V88.4961C64.8288 88.001 64.9007 87.5418 65.0446 87.1187C65.1885 86.6912 65.3959 86.321 65.6667 86.0078C65.9375 85.6904 66.2655 85.445 66.6506 85.2715C67.0357 85.0938 67.4673 85.0049 67.9455 85.0049C68.4279 85.0049 68.8617 85.0938 69.2468 85.2715C69.6361 85.445 69.9662 85.6904 70.237 86.0078C70.5121 86.321 70.7215 86.6912 70.8654 87.1187C71.0093 87.5418 71.0812 88.001 71.0812 88.4961V88.6421C71.0812 89.1372 71.0093 89.5964 70.8654 90.0195C70.7215 90.4427 70.5121 90.813 70.237 91.1304C69.9662 91.4435 69.6382 91.689 69.2531 91.8667C68.8723 92.0402 68.4406 92.127 67.9582 92.127C67.4758 92.127 67.042 92.0402 66.6569 91.8667C66.2718 91.689 65.9418 91.4435 65.6667 91.1304C65.3959 90.813 65.1885 90.4427 65.0446 90.0195C64.9007 89.5964 64.8288 89.1372 64.8288 88.6421ZM66.0031 88.4961V88.6421C66.0031 88.9849 66.0433 89.3086 66.1237 89.6133C66.2041 89.9137 66.3247 90.1803 66.4855 90.4131C66.6506 90.6458 66.8558 90.8299 67.1013 90.9653C67.3467 91.0965 67.6324 91.1621 67.9582 91.1621C68.2798 91.1621 68.5612 91.0965 68.8024 90.9653C69.0479 90.8299 69.251 90.6458 69.4118 90.4131C69.5726 90.1803 69.6932 89.9137 69.7736 89.6133C69.8583 89.3086 69.9006 88.9849 69.9006 88.6421V88.4961C69.9006 88.1576 69.8583 87.8381 69.7736 87.5376C69.6932 87.2329 69.5705 86.9642 69.4055 86.7314C69.2447 86.4945 69.0415 86.3083 68.7961 86.1729C68.5549 86.0374 68.2713 85.9697 67.9455 85.9697C67.6239 85.9697 67.3404 86.0374 67.0949 86.1729C66.8537 86.3083 66.6506 86.4945 66.4855 86.7314C66.3247 86.9642 66.2041 87.2329 66.1237 87.5376C66.0433 87.8381 66.0031 88.1576 66.0031 88.4961Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M110.886 89.207L112.721 82.7578H113.609L113.095 85.2651L111.121 92H110.239L110.886 89.207ZM108.988 82.7578L110.448 89.0801L110.886 92H110.01L107.769 82.7578H108.988ZM115.983 89.0737L117.411 82.7578H118.637L116.402 92H115.526L115.983 89.0737ZM113.742 82.7578L115.526 89.207L116.174 92H115.291L113.387 85.2651L112.867 82.7578H113.742ZM122.464 92.127C121.986 92.127 121.552 92.0465 121.163 91.8857C120.778 91.7207 120.446 91.4901 120.166 91.1938C119.891 90.8976 119.68 90.5464 119.532 90.1401C119.383 89.7339 119.309 89.2896 119.309 88.8071V88.5405C119.309 87.9819 119.392 87.4847 119.557 87.0488C119.722 86.6087 119.946 86.2363 120.23 85.9316C120.513 85.627 120.835 85.3963 121.195 85.2397C121.554 85.0832 121.927 85.0049 122.312 85.0049C122.803 85.0049 123.226 85.0895 123.581 85.2588C123.941 85.4281 124.235 85.665 124.464 85.9697C124.692 86.2702 124.861 86.6257 124.972 87.0361C125.082 87.4424 125.137 87.8867 125.137 88.3691V88.896H120.008V87.9375H123.962V87.8486C123.945 87.5439 123.882 87.2477 123.772 86.96C123.666 86.6722 123.497 86.4352 123.264 86.249C123.031 86.0628 122.714 85.9697 122.312 85.9697C122.045 85.9697 121.8 86.0269 121.576 86.1411C121.351 86.2511 121.159 86.4162 120.998 86.6362C120.837 86.8563 120.712 87.125 120.623 87.4424C120.534 87.7598 120.49 88.1258 120.49 88.5405V88.8071C120.49 89.133 120.534 89.4398 120.623 89.7275C120.716 90.0111 120.85 90.2607 121.023 90.4766C121.201 90.6924 121.415 90.8617 121.664 90.9844C121.918 91.1071 122.206 91.1685 122.528 91.1685C122.942 91.1685 123.294 91.0838 123.581 90.9146C123.869 90.7453 124.121 90.5189 124.337 90.2354L125.048 90.8003C124.9 91.0246 124.711 91.2383 124.483 91.4414C124.254 91.6445 123.973 91.8096 123.638 91.9365C123.308 92.0635 122.917 92.127 122.464 92.127Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M167.305 82.7578V92H166.08V82.7578H167.305ZM171.177 86.9155V87.9185H167.038V86.9155H171.177ZM171.805 82.7578V83.7607H167.038V82.7578H171.805ZM174.097 86.2109V92H172.922V85.1318H174.065L174.097 86.2109ZM176.242 85.0938L176.236 86.1855C176.138 86.1644 176.045 86.1517 175.956 86.1475C175.872 86.139 175.775 86.1348 175.664 86.1348C175.394 86.1348 175.155 86.1771 174.947 86.2617C174.74 86.3464 174.564 86.4648 174.42 86.6172C174.276 86.7695 174.162 86.9515 174.078 87.1631C173.997 87.3704 173.944 87.599 173.919 87.8486L173.589 88.0391C173.589 87.6243 173.629 87.235 173.709 86.8711C173.794 86.5072 173.923 86.1855 174.097 85.9062C174.27 85.6227 174.49 85.4027 174.757 85.2461C175.028 85.0853 175.349 85.0049 175.722 85.0049C175.806 85.0049 175.904 85.0155 176.014 85.0366C176.124 85.0535 176.2 85.0726 176.242 85.0938Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"160.002",y:"100",width:"20.9999",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.6777 115.035V116H28.6284V115.156L31.6562 111.785C32.0286 111.37 32.3164 111.019 32.5195 110.731C32.7269 110.439 32.8707 110.179 32.9511 109.951C33.0358 109.718 33.0781 109.481 33.0781 109.24C33.0781 108.935 33.0146 108.66 32.8877 108.415C32.7649 108.165 32.583 107.966 32.3418 107.818C32.1006 107.67 31.8086 107.596 31.4658 107.596C31.0553 107.596 30.7125 107.676 30.4375 107.837C30.1666 107.993 29.9635 108.214 29.8281 108.497C29.6927 108.781 29.625 109.106 29.625 109.475H28.4507C28.4507 108.954 28.5649 108.478 28.7934 108.046C29.0219 107.615 29.3605 107.272 29.8091 107.018C30.2576 106.76 30.8099 106.631 31.4658 106.631C32.0498 106.631 32.5491 106.735 32.9638 106.942C33.3786 107.145 33.6959 107.433 33.916 107.805C34.1403 108.173 34.2524 108.605 34.2524 109.1C34.2524 109.371 34.2059 109.646 34.1128 109.925C34.0239 110.2 33.8991 110.475 33.7383 110.75C33.5817 111.026 33.3976 111.296 33.186 111.563C32.9786 111.83 32.7565 112.092 32.5195 112.35L30.0439 115.035H34.6777ZM41.7617 113.499C41.7617 114.062 41.6305 114.54 41.3681 114.934C41.11 115.323 40.7588 115.619 40.3144 115.822C39.8743 116.025 39.3771 116.127 38.8227 116.127C38.2684 116.127 37.769 116.025 37.3247 115.822C36.8803 115.619 36.5291 115.323 36.271 114.934C36.0128 114.54 35.8838 114.062 35.8838 113.499C35.8838 113.131 35.9536 112.794 36.0932 112.49C36.2371 112.181 36.4381 111.912 36.6963 111.684C36.9586 111.455 37.2675 111.279 37.623 111.157C37.9827 111.03 38.3784 110.966 38.81 110.966C39.3771 110.966 39.8828 111.076 40.3271 111.296C40.7715 111.512 41.1206 111.811 41.3745 112.191C41.6326 112.572 41.7617 113.008 41.7617 113.499ZM40.581 113.474C40.581 113.131 40.507 112.828 40.3589 112.566C40.2107 112.299 40.0034 112.092 39.7368 111.944C39.4702 111.796 39.1613 111.722 38.81 111.722C38.4503 111.722 38.1393 111.796 37.8769 111.944C37.6188 112.092 37.4178 112.299 37.2739 112.566C37.13 112.828 37.0581 113.131 37.0581 113.474C37.0581 113.829 37.1279 114.134 37.2675 114.388C37.4114 114.637 37.6146 114.83 37.8769 114.965C38.1435 115.097 38.4588 115.162 38.8227 115.162C39.1867 115.162 39.4998 115.097 39.7622 114.965C40.0245 114.83 40.2256 114.637 40.3652 114.388C40.5091 114.134 40.581 113.829 40.581 113.474ZM41.5459 109.164C41.5459 109.612 41.4274 110.016 41.1904 110.376C40.9534 110.736 40.6297 111.019 40.2192 111.227C39.8087 111.434 39.3432 111.538 38.8227 111.538C38.2938 111.538 37.8219 111.434 37.4072 111.227C36.9967 111.019 36.6751 110.736 36.4424 110.376C36.2096 110.016 36.0932 109.612 36.0932 109.164C36.0932 108.626 36.2096 108.169 36.4424 107.792C36.6793 107.416 37.0031 107.128 37.4135 106.929C37.824 106.73 38.2916 106.631 38.8164 106.631C39.3453 106.631 39.8151 106.73 40.2256 106.929C40.636 107.128 40.9577 107.416 41.1904 107.792C41.4274 108.169 41.5459 108.626 41.5459 109.164ZM40.3716 109.183C40.3716 108.874 40.306 108.601 40.1748 108.364C40.0436 108.127 39.8616 107.941 39.6289 107.805C39.3961 107.666 39.1253 107.596 38.8164 107.596C38.5075 107.596 38.2366 107.661 38.0039 107.792C37.7754 107.919 37.5955 108.101 37.4643 108.338C37.3374 108.575 37.2739 108.857 37.2739 109.183C37.2739 109.5 37.3374 109.777 37.4643 110.014C37.5955 110.251 37.7775 110.435 38.0102 110.566C38.243 110.698 38.5138 110.763 38.8227 110.763C39.1316 110.763 39.4004 110.698 39.6289 110.566C39.8616 110.435 40.0436 110.251 40.1748 110.014C40.306 109.777 40.3716 109.5 40.3716 109.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M92.5573 115.035V116H86.508V115.156L89.5359 111.785C89.9083 111.37 90.196 111.019 90.3991 110.731C90.6065 110.439 90.7504 110.179 90.8308 109.951C90.9154 109.718 90.9577 109.481 90.9577 109.24C90.9577 108.935 90.8943 108.66 90.7673 108.415C90.6446 108.165 90.4626 107.966 90.2214 107.818C89.9802 107.67 89.6882 107.596 89.3454 107.596C88.9349 107.596 88.5922 107.676 88.3171 107.837C88.0463 107.993 87.8432 108.214 87.7077 108.497C87.5723 108.781 87.5046 109.106 87.5046 109.475H86.3303C86.3303 108.954 86.4446 108.478 86.6731 108.046C86.9016 107.615 87.2401 107.272 87.6887 107.018C88.1373 106.76 88.6895 106.631 89.3454 106.631C89.9294 106.631 90.4288 106.735 90.8435 106.942C91.2582 107.145 91.5756 107.433 91.7956 107.805C92.0199 108.173 92.1321 108.605 92.1321 109.1C92.1321 109.371 92.0855 109.646 91.9924 109.925C91.9035 110.2 91.7787 110.475 91.6179 110.75C91.4613 111.026 91.2772 111.296 91.0656 111.563C90.8583 111.83 90.6361 112.092 90.3991 112.35L87.9236 115.035H92.5573Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M146.97 112.89V113.854H140.292V113.163L144.431 106.758H145.389L144.361 108.611L141.625 112.89H146.97ZM145.681 106.758V116H144.507V106.758H145.681Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M199.452 106.745H199.554V107.742H199.452C198.83 107.742 198.309 107.843 197.89 108.046C197.472 108.245 197.139 108.514 196.894 108.853C196.648 109.187 196.471 109.563 196.361 109.982C196.255 110.401 196.202 110.827 196.202 111.258V112.617C196.202 113.027 196.251 113.391 196.348 113.708C196.445 114.022 196.579 114.286 196.748 114.502C196.917 114.718 197.108 114.881 197.319 114.991C197.535 115.101 197.759 115.156 197.992 115.156C198.263 115.156 198.504 115.105 198.716 115.003C198.927 114.898 199.105 114.752 199.249 114.565C199.397 114.375 199.509 114.151 199.585 113.893C199.661 113.634 199.7 113.351 199.7 113.042C199.7 112.767 199.666 112.502 199.598 112.249C199.53 111.99 199.427 111.762 199.287 111.563C199.147 111.36 198.972 111.201 198.76 111.087C198.553 110.968 198.305 110.909 198.017 110.909C197.692 110.909 197.387 110.99 197.103 111.15C196.824 111.307 196.593 111.514 196.411 111.772C196.234 112.026 196.132 112.304 196.107 112.604L195.485 112.598C195.544 112.124 195.654 111.72 195.815 111.385C195.98 111.047 196.183 110.772 196.424 110.56C196.67 110.344 196.943 110.188 197.243 110.09C197.548 109.989 197.869 109.938 198.208 109.938C198.669 109.938 199.067 110.025 199.401 110.198C199.736 110.372 200.011 110.604 200.226 110.896C200.442 111.184 200.601 111.51 200.702 111.874C200.808 112.234 200.861 112.604 200.861 112.985C200.861 113.421 200.8 113.829 200.677 114.21C200.554 114.591 200.37 114.925 200.125 115.213C199.884 115.501 199.585 115.725 199.23 115.886C198.874 116.047 198.462 116.127 197.992 116.127C197.493 116.127 197.057 116.025 196.684 115.822C196.312 115.615 196.003 115.34 195.758 114.997C195.512 114.654 195.328 114.273 195.205 113.854C195.083 113.436 195.021 113.01 195.021 112.579V112.026C195.021 111.375 195.087 110.736 195.218 110.109C195.349 109.483 195.576 108.916 195.897 108.408C196.223 107.9 196.674 107.496 197.249 107.196C197.825 106.895 198.559 106.745 199.452 106.745Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M63.2484 106.707V116H62.0741V108.173L59.7064 109.037V107.977L63.0643 106.707H63.2484Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M115.324 110.801H116.162C116.573 110.801 116.911 110.734 117.178 110.598C117.449 110.458 117.65 110.27 117.781 110.033C117.916 109.792 117.984 109.521 117.984 109.221C117.984 108.865 117.925 108.567 117.806 108.326C117.688 108.084 117.51 107.903 117.273 107.78C117.036 107.657 116.735 107.596 116.372 107.596C116.041 107.596 115.749 107.661 115.496 107.792C115.246 107.919 115.049 108.101 114.905 108.338C114.766 108.575 114.696 108.855 114.696 109.176H113.521C113.521 108.707 113.64 108.279 113.877 107.894C114.114 107.509 114.446 107.202 114.874 106.974C115.305 106.745 115.804 106.631 116.372 106.631C116.93 106.631 117.419 106.73 117.838 106.929C118.257 107.124 118.583 107.416 118.815 107.805C119.048 108.19 119.165 108.671 119.165 109.246C119.165 109.479 119.11 109.729 118.999 109.995C118.894 110.257 118.727 110.503 118.498 110.731C118.274 110.96 117.982 111.148 117.622 111.296C117.262 111.44 116.831 111.512 116.327 111.512H115.324V110.801ZM115.324 111.766V111.062H116.327C116.915 111.062 117.402 111.131 117.787 111.271C118.172 111.411 118.475 111.597 118.695 111.83C118.919 112.062 119.076 112.318 119.165 112.598C119.258 112.873 119.304 113.148 119.304 113.423C119.304 113.854 119.23 114.237 119.082 114.572C118.938 114.906 118.733 115.19 118.466 115.422C118.204 115.655 117.895 115.831 117.54 115.949C117.184 116.068 116.797 116.127 116.378 116.127C115.976 116.127 115.597 116.07 115.242 115.956C114.89 115.841 114.579 115.676 114.309 115.46C114.038 115.24 113.826 114.972 113.674 114.654C113.521 114.333 113.445 113.967 113.445 113.556H114.62C114.62 113.878 114.689 114.159 114.829 114.4C114.973 114.642 115.176 114.83 115.438 114.965C115.705 115.097 116.018 115.162 116.378 115.162C116.738 115.162 117.047 115.101 117.305 114.978C117.567 114.851 117.768 114.661 117.908 114.407C118.052 114.153 118.124 113.833 118.124 113.448C118.124 113.063 118.043 112.748 117.882 112.502C117.721 112.253 117.493 112.069 117.197 111.95C116.905 111.827 116.56 111.766 116.162 111.766H115.324Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M169.344 111.792L167.884 111.442L168.411 106.758H173.603V108.237H169.915L169.687 110.287C169.81 110.215 169.996 110.139 170.246 110.059C170.495 109.974 170.775 109.932 171.083 109.932C171.532 109.932 171.93 110.001 172.277 110.141C172.624 110.281 172.918 110.484 173.159 110.75C173.405 111.017 173.591 111.343 173.718 111.728C173.845 112.113 173.908 112.549 173.908 113.036C173.908 113.446 173.845 113.838 173.718 114.21C173.591 114.578 173.398 114.908 173.14 115.2C172.882 115.488 172.558 115.714 172.169 115.879C171.78 116.044 171.318 116.127 170.785 116.127C170.387 116.127 170.002 116.068 169.63 115.949C169.262 115.831 168.929 115.655 168.633 115.422C168.341 115.19 168.106 114.908 167.929 114.578C167.755 114.244 167.664 113.863 167.656 113.436H169.471C169.497 113.698 169.564 113.924 169.674 114.115C169.789 114.301 169.939 114.445 170.125 114.546C170.311 114.648 170.529 114.699 170.779 114.699C171.012 114.699 171.21 114.654 171.375 114.565C171.54 114.477 171.674 114.354 171.775 114.197C171.877 114.036 171.951 113.85 171.998 113.639C172.048 113.423 172.074 113.19 172.074 112.94C172.074 112.691 172.044 112.464 171.985 112.261C171.926 112.058 171.835 111.882 171.712 111.734C171.589 111.586 171.433 111.472 171.242 111.392C171.056 111.311 170.838 111.271 170.588 111.271C170.25 111.271 169.987 111.324 169.801 111.43C169.619 111.535 169.467 111.656 169.344 111.792Z",fill:"white"}),(0,h.createElement)("path",{d:"M38.2515 131.758V132.418L34.4238 141H33.186L37.0073 132.723H32.0054V131.758H38.2515Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M87.6686 140.016H87.7892C88.4663 140.016 89.0164 139.921 89.4396 139.73C89.8628 139.54 90.1886 139.284 90.4171 138.962C90.6456 138.641 90.8022 138.279 90.8868 137.877C90.9715 137.471 91.0138 137.054 91.0138 136.626V135.211C91.0138 134.792 90.9651 134.42 90.8678 134.094C90.7747 133.768 90.6435 133.495 90.4742 133.275C90.3092 133.055 90.1209 132.888 89.9093 132.773C89.6977 132.659 89.4734 132.602 89.2365 132.602C88.9656 132.602 88.7223 132.657 88.5065 132.767C88.2949 132.873 88.115 133.023 87.9669 133.218C87.823 133.412 87.713 133.641 87.6368 133.903C87.5607 134.166 87.5226 134.451 87.5226 134.76C87.5226 135.035 87.5564 135.302 87.6241 135.56C87.6919 135.818 87.7955 136.051 87.9352 136.258C88.0748 136.466 88.2483 136.631 88.4557 136.753C88.6673 136.872 88.9148 136.931 89.1984 136.931C89.4607 136.931 89.7062 136.88 89.9347 136.779C90.1674 136.673 90.3727 136.531 90.5504 136.354C90.7324 136.172 90.8763 135.966 90.9821 135.738C91.0921 135.509 91.1556 135.27 91.1725 135.021H91.7311C91.7311 135.372 91.6613 135.719 91.5216 136.062C91.3862 136.4 91.1958 136.709 90.9503 136.988C90.7049 137.268 90.4171 137.492 90.087 137.661C89.757 137.826 89.3973 137.909 89.0079 137.909C88.5509 137.909 88.1552 137.82 87.8209 137.642C87.4866 137.464 87.2115 137.227 86.9957 136.931C86.7841 136.635 86.6254 136.305 86.5197 135.941C86.4181 135.573 86.3673 135.2 86.3673 134.824C86.3673 134.384 86.4287 133.971 86.5514 133.586C86.6741 133.201 86.8561 132.862 87.0973 132.57C87.3385 132.274 87.6368 132.043 87.9923 131.878C88.352 131.713 88.7667 131.631 89.2365 131.631C89.7654 131.631 90.2161 131.737 90.5885 131.948C90.9609 132.16 91.2635 132.443 91.4962 132.799C91.7332 133.154 91.9067 133.554 92.0167 133.999C92.1268 134.443 92.1818 134.9 92.1818 135.37V135.795C92.1818 136.273 92.15 136.76 92.0865 137.255C92.0273 137.746 91.9109 138.215 91.7374 138.664C91.5682 139.113 91.3206 139.515 90.9948 139.87C90.6689 140.221 90.2436 140.501 89.7189 140.708C89.1984 140.911 88.5551 141.013 87.7892 141.013H87.6686V140.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M140.923 131.707V141H139.749V133.173L137.381 134.037V132.977L140.739 131.707H140.923ZM148.236 131.707V141H147.061V133.173L144.694 134.037V132.977L148.052 131.707H148.236Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M195.148 131.707V141H193.974V133.173L191.606 134.037V132.977L194.964 131.707H195.148ZM200.315 135.801H201.153C201.564 135.801 201.902 135.734 202.169 135.598C202.44 135.458 202.641 135.27 202.772 135.033C202.907 134.792 202.975 134.521 202.975 134.221C202.975 133.865 202.916 133.567 202.797 133.326C202.679 133.084 202.501 132.903 202.264 132.78C202.027 132.657 201.727 132.596 201.363 132.596C201.033 132.596 200.741 132.661 200.487 132.792C200.237 132.919 200.04 133.101 199.896 133.338C199.757 133.575 199.687 133.855 199.687 134.176H198.513C198.513 133.707 198.631 133.279 198.868 132.894C199.105 132.509 199.437 132.202 199.865 131.974C200.296 131.745 200.796 131.631 201.363 131.631C201.921 131.631 202.41 131.73 202.829 131.929C203.248 132.124 203.574 132.416 203.807 132.805C204.039 133.19 204.156 133.671 204.156 134.246C204.156 134.479 204.101 134.729 203.991 134.995C203.885 135.257 203.718 135.503 203.489 135.731C203.265 135.96 202.973 136.148 202.613 136.296C202.254 136.44 201.822 136.512 201.318 136.512H200.315V135.801ZM200.315 136.766V136.062H201.318C201.907 136.062 202.393 136.131 202.778 136.271C203.163 136.411 203.466 136.597 203.686 136.83C203.91 137.062 204.067 137.318 204.156 137.598C204.249 137.873 204.295 138.148 204.295 138.423C204.295 138.854 204.221 139.237 204.073 139.572C203.929 139.906 203.724 140.19 203.458 140.422C203.195 140.655 202.886 140.831 202.531 140.949C202.175 141.068 201.788 141.127 201.369 141.127C200.967 141.127 200.588 141.07 200.233 140.956C199.882 140.841 199.571 140.676 199.3 140.46C199.029 140.24 198.817 139.972 198.665 139.654C198.513 139.333 198.437 138.967 198.437 138.556H199.611C199.611 138.878 199.681 139.159 199.82 139.4C199.964 139.642 200.167 139.83 200.43 139.965C200.696 140.097 201.009 140.162 201.369 140.162C201.729 140.162 202.038 140.101 202.296 139.978C202.558 139.851 202.759 139.661 202.899 139.407C203.043 139.153 203.115 138.833 203.115 138.448C203.115 138.063 203.034 137.748 202.874 137.502C202.713 137.253 202.484 137.069 202.188 136.95C201.896 136.827 201.551 136.766 201.153 136.766H200.315Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M65.2155 138.499C65.2155 139.062 65.0843 139.54 64.8219 139.934C64.5638 140.323 64.2125 140.619 63.7682 140.822C63.3281 141.025 62.8309 141.127 62.2765 141.127C61.7221 141.127 61.2228 141.025 60.7784 140.822C60.3341 140.619 59.9829 140.323 59.7247 139.934C59.4666 139.54 59.3375 139.062 59.3375 138.499C59.3375 138.131 59.4074 137.794 59.547 137.49C59.6909 137.181 59.8919 136.912 60.15 136.684C60.4124 136.455 60.7213 136.279 61.0768 136.157C61.4365 136.03 61.8322 135.966 62.2638 135.966C62.8309 135.966 63.3365 136.076 63.7809 136.296C64.2252 136.512 64.5743 136.811 64.8282 137.191C65.0864 137.572 65.2155 138.008 65.2155 138.499ZM64.0348 138.474C64.0348 138.131 63.9607 137.828 63.8126 137.566C63.6645 137.299 63.4572 137.092 63.1906 136.944C62.924 136.796 62.615 136.722 62.2638 136.722C61.9041 136.722 61.5931 136.796 61.3307 136.944C61.0726 137.092 60.8715 137.299 60.7277 137.566C60.5838 137.828 60.5118 138.131 60.5118 138.474C60.5118 138.829 60.5817 139.134 60.7213 139.388C60.8652 139.637 61.0683 139.83 61.3307 139.965C61.5973 140.097 61.9126 140.162 62.2765 140.162C62.6404 140.162 62.9536 140.097 63.2159 139.965C63.4783 139.83 63.6793 139.637 63.819 139.388C63.9629 139.134 64.0348 138.829 64.0348 138.474ZM64.9996 134.164C64.9996 134.612 64.8811 135.016 64.6442 135.376C64.4072 135.736 64.0835 136.019 63.673 136.227C63.2625 136.434 62.797 136.538 62.2765 136.538C61.7475 136.538 61.2757 136.434 60.861 136.227C60.4505 136.019 60.1289 135.736 59.8961 135.376C59.6634 135.016 59.547 134.612 59.547 134.164C59.547 133.626 59.6634 133.169 59.8961 132.792C60.1331 132.416 60.4568 132.128 60.8673 131.929C61.2778 131.73 61.7454 131.631 62.2701 131.631C62.7991 131.631 63.2688 131.73 63.6793 131.929C64.0898 132.128 64.4114 132.416 64.6442 132.792C64.8811 133.169 64.9996 133.626 64.9996 134.164ZM63.8253 134.183C63.8253 133.874 63.7597 133.601 63.6285 133.364C63.4974 133.127 63.3154 132.941 63.0826 132.805C62.8499 132.666 62.5791 132.596 62.2701 132.596C61.9612 132.596 61.6904 132.661 61.4576 132.792C61.2291 132.919 61.0493 133.101 60.9181 133.338C60.7911 133.575 60.7277 133.857 60.7277 134.183C60.7277 134.5 60.7911 134.777 60.9181 135.014C61.0493 135.251 61.2312 135.435 61.464 135.566C61.6967 135.698 61.9676 135.763 62.2765 135.763C62.5854 135.763 62.8541 135.698 63.0826 135.566C63.3154 135.435 63.4974 135.251 63.6285 135.014C63.7597 134.777 63.8253 134.5 63.8253 134.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M113.813 131.707V141H112.638V133.173L110.271 134.037V132.977L113.628 131.707H113.813ZM123.067 135.643V137.052C123.067 137.809 123 138.448 122.864 138.969C122.729 139.489 122.534 139.908 122.28 140.226C122.026 140.543 121.72 140.774 121.36 140.917C121.004 141.057 120.602 141.127 120.154 141.127C119.798 141.127 119.47 141.083 119.17 140.994C118.869 140.905 118.599 140.763 118.357 140.568C118.12 140.369 117.917 140.111 117.748 139.794C117.579 139.477 117.45 139.091 117.361 138.639C117.272 138.186 117.228 137.657 117.228 137.052V135.643C117.228 134.885 117.295 134.25 117.431 133.738C117.57 133.226 117.767 132.816 118.021 132.507C118.275 132.194 118.58 131.969 118.935 131.834C119.295 131.699 119.697 131.631 120.141 131.631C120.501 131.631 120.831 131.675 121.131 131.764C121.436 131.849 121.707 131.986 121.944 132.177C122.181 132.363 122.382 132.613 122.547 132.926C122.716 133.235 122.845 133.613 122.934 134.062C123.023 134.511 123.067 135.037 123.067 135.643ZM121.887 137.242V135.446C121.887 135.031 121.861 134.667 121.811 134.354C121.764 134.037 121.694 133.766 121.601 133.542C121.508 133.317 121.389 133.135 121.246 132.996C121.106 132.856 120.943 132.754 120.757 132.691C120.575 132.623 120.37 132.589 120.141 132.589C119.862 132.589 119.614 132.642 119.398 132.748C119.183 132.85 119.001 133.013 118.853 133.237C118.709 133.461 118.599 133.755 118.522 134.119C118.446 134.483 118.408 134.925 118.408 135.446V137.242C118.408 137.657 118.431 138.023 118.478 138.34C118.529 138.658 118.603 138.933 118.7 139.166C118.798 139.394 118.916 139.582 119.056 139.73C119.195 139.879 119.356 139.989 119.538 140.061C119.724 140.128 119.93 140.162 120.154 140.162C120.442 140.162 120.693 140.107 120.909 139.997C121.125 139.887 121.305 139.716 121.449 139.483C121.597 139.246 121.707 138.943 121.779 138.575C121.851 138.203 121.887 137.758 121.887 137.242Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M168.036 131.707V141H166.861V133.173L164.494 134.037V132.977L167.852 131.707H168.036ZM177.545 140.035V141H171.495V140.156L174.523 136.785C174.895 136.37 175.183 136.019 175.386 135.731C175.594 135.439 175.738 135.179 175.818 134.951C175.903 134.718 175.945 134.481 175.945 134.24C175.945 133.935 175.881 133.66 175.755 133.415C175.632 133.165 175.45 132.966 175.209 132.818C174.967 132.67 174.675 132.596 174.333 132.596C173.922 132.596 173.579 132.676 173.304 132.837C173.033 132.993 172.83 133.214 172.695 133.497C172.56 133.781 172.492 134.106 172.492 134.475H171.318C171.318 133.954 171.432 133.478 171.66 133.046C171.889 132.615 172.227 132.272 172.676 132.018C173.124 131.76 173.677 131.631 174.333 131.631C174.917 131.631 175.416 131.735 175.831 131.942C176.245 132.145 176.563 132.433 176.783 132.805C177.007 133.173 177.119 133.605 177.119 134.1C177.119 134.371 177.073 134.646 176.98 134.925C176.891 135.2 176.766 135.475 176.605 135.75C176.449 136.026 176.264 136.296 176.053 136.563C175.846 136.83 175.623 137.092 175.386 137.35L172.911 140.035H177.545Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"223",y:"55",width:"23.5",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M232.376 60.7388V70H230.548V62.8462L228.352 63.5444V62.1035L232.179 60.7388H232.376ZM239.841 60.7388V70H238.013V62.8462L235.816 63.5444V62.1035L239.644 60.7388H239.841Z",fill:"white"}),(0,h.createElement)("rect",{x:"249.5",y:"55",width:"23.5",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M260.742 68.5718V70H254.42V68.7812L257.41 65.5757C257.71 65.2414 257.947 64.9473 258.121 64.6934C258.294 64.4352 258.419 64.2046 258.495 64.0015C258.576 63.7941 258.616 63.5973 258.616 63.4111C258.616 63.1318 258.569 62.8927 258.476 62.6938C258.383 62.4907 258.245 62.3341 258.063 62.2241C257.886 62.1141 257.666 62.0591 257.403 62.0591C257.124 62.0591 256.883 62.1268 256.68 62.2622C256.481 62.3976 256.328 62.5859 256.223 62.8271C256.121 63.0684 256.07 63.3413 256.07 63.646H254.236C254.236 63.0959 254.367 62.5923 254.629 62.1353C254.892 61.674 255.262 61.3079 255.74 61.0371C256.218 60.762 256.785 60.6245 257.441 60.6245C258.089 60.6245 258.635 60.7303 259.079 60.9419C259.528 61.1493 259.866 61.4497 260.095 61.8433C260.327 62.2326 260.444 62.6981 260.444 63.2397C260.444 63.5444 260.395 63.8428 260.298 64.1348C260.201 64.4225 260.061 64.7103 259.879 64.998C259.701 65.2816 259.485 65.5693 259.231 65.8613C258.978 66.1533 258.696 66.4559 258.387 66.769L256.781 68.5718H260.742ZM268.163 60.7578V61.7417L264.589 70H262.659L266.233 62.186H261.631V60.7578H268.163Z",fill:"white"}),(0,h.createElement)("path",{d:"M232.065 86.707V96H230.891V88.1733L228.523 89.0366V87.9766L231.881 86.707H232.065ZM241.574 95.0352V96H235.524V95.1558L238.552 91.7852C238.925 91.3704 239.212 91.0192 239.416 90.7314C239.623 90.4395 239.767 90.1792 239.847 89.9507C239.932 89.7179 239.974 89.481 239.974 89.2397C239.974 88.9351 239.911 88.66 239.784 88.4146C239.661 88.1649 239.479 87.966 239.238 87.8179C238.997 87.6698 238.705 87.5957 238.362 87.5957C237.951 87.5957 237.609 87.6761 237.333 87.8369C237.063 87.9935 236.86 88.2135 236.724 88.4971C236.589 88.7806 236.521 89.1064 236.521 89.4746H235.347C235.347 88.9541 235.461 88.478 235.689 88.0464C235.918 87.6147 236.257 87.272 236.705 87.0181C237.154 86.7599 237.706 86.6309 238.362 86.6309C238.946 86.6309 239.445 86.7345 239.86 86.9419C240.275 87.145 240.592 87.4328 240.812 87.8052C241.036 88.1733 241.148 88.605 241.148 89.1001C241.148 89.3709 241.102 89.646 241.009 89.9253C240.92 90.2004 240.795 90.4754 240.634 90.7505C240.478 91.0256 240.294 91.2964 240.082 91.563C239.875 91.8296 239.653 92.092 239.416 92.3501L236.94 95.0352H241.574Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.761 95.0352V96H254.712V95.1558L257.74 91.7852C258.112 91.3704 258.4 91.0192 258.603 90.7314C258.81 90.4395 258.954 90.1792 259.035 89.9507C259.119 89.7179 259.162 89.481 259.162 89.2397C259.162 88.9351 259.098 88.66 258.971 88.4146C258.848 88.1649 258.667 87.966 258.425 87.8179C258.184 87.6698 257.892 87.5957 257.549 87.5957C257.139 87.5957 256.796 87.6761 256.521 87.8369C256.25 87.9935 256.047 88.2135 255.912 88.4971C255.776 88.7806 255.708 89.1064 255.708 89.4746H254.534C254.534 88.9541 254.648 88.478 254.877 88.0464C255.105 87.6147 255.444 87.272 255.893 87.0181C256.341 86.7599 256.893 86.6309 257.549 86.6309C258.133 86.6309 258.633 86.7345 259.047 86.9419C259.462 87.145 259.779 87.4328 260 87.8052C260.224 88.1733 260.336 88.605 260.336 89.1001C260.336 89.3709 260.289 89.646 260.196 89.9253C260.107 90.2004 259.983 90.4754 259.822 90.7505C259.665 91.0256 259.481 91.2964 259.27 91.563C259.062 91.8296 258.84 92.092 258.603 92.3501L256.127 95.0352H260.761ZM267.845 93.499C267.845 94.0618 267.714 94.54 267.452 94.9336C267.194 95.3229 266.842 95.6191 266.398 95.8223C265.958 96.0254 265.461 96.127 264.906 96.127C264.352 96.127 263.853 96.0254 263.408 95.8223C262.964 95.6191 262.613 95.3229 262.354 94.9336C262.096 94.54 261.967 94.0618 261.967 93.499C261.967 93.1309 262.037 92.7944 262.177 92.4897C262.321 92.1808 262.522 91.9121 262.78 91.6836C263.042 91.4551 263.351 91.2795 263.707 91.1567C264.066 91.0298 264.462 90.9663 264.894 90.9663C265.461 90.9663 265.966 91.0763 266.411 91.2964C266.855 91.5122 267.204 91.8105 267.458 92.1914C267.716 92.5723 267.845 93.0081 267.845 93.499ZM266.665 93.4736C266.665 93.1309 266.59 92.8283 266.442 92.5659C266.294 92.2993 266.087 92.092 265.82 91.9438C265.554 91.7957 265.245 91.7217 264.894 91.7217C264.534 91.7217 264.223 91.7957 263.96 91.9438C263.702 92.092 263.501 92.2993 263.357 92.5659C263.214 92.8283 263.142 93.1309 263.142 93.4736C263.142 93.8291 263.211 94.1338 263.351 94.3877C263.495 94.6374 263.698 94.8299 263.96 94.9653C264.227 95.0965 264.542 95.1621 264.906 95.1621C265.27 95.1621 265.583 95.0965 265.846 94.9653C266.108 94.8299 266.309 94.6374 266.449 94.3877C266.593 94.1338 266.665 93.8291 266.665 93.4736ZM267.629 89.1636C267.629 89.6121 267.511 90.0163 267.274 90.376C267.037 90.7357 266.713 91.0192 266.303 91.2266C265.892 91.4339 265.427 91.5376 264.906 91.5376C264.377 91.5376 263.905 91.4339 263.491 91.2266C263.08 91.0192 262.759 90.7357 262.526 90.376C262.293 90.0163 262.177 89.6121 262.177 89.1636C262.177 88.6261 262.293 88.1691 262.526 87.7925C262.763 87.4159 263.087 87.1281 263.497 86.9292C263.908 86.7303 264.375 86.6309 264.9 86.6309C265.429 86.6309 265.899 86.7303 266.309 86.9292C266.72 87.1281 267.041 87.4159 267.274 87.7925C267.511 88.1691 267.629 88.6261 267.629 89.1636ZM266.455 89.1826C266.455 88.8737 266.389 88.6007 266.258 88.3638C266.127 88.1268 265.945 87.9406 265.712 87.8052C265.48 87.6655 265.209 87.5957 264.9 87.5957C264.591 87.5957 264.32 87.6613 264.087 87.7925C263.859 87.9194 263.679 88.1014 263.548 88.3384C263.421 88.5754 263.357 88.8568 263.357 89.1826C263.357 89.5 263.421 89.7772 263.548 90.0142C263.679 90.2511 263.861 90.4352 264.094 90.5664C264.326 90.6976 264.597 90.7632 264.906 90.7632C265.215 90.7632 265.484 90.6976 265.712 90.5664C265.945 90.4352 266.127 90.2511 266.258 90.0142C266.389 89.7772 266.455 89.5 266.455 89.1826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M232.065 110.707V120H230.891V112.173L228.523 113.037V111.977L231.881 110.707H232.065ZM237.232 114.801H238.07C238.48 114.801 238.819 114.734 239.085 114.598C239.356 114.458 239.557 114.27 239.688 114.033C239.824 113.792 239.892 113.521 239.892 113.221C239.892 112.865 239.832 112.567 239.714 112.326C239.595 112.084 239.418 111.903 239.181 111.78C238.944 111.657 238.643 111.596 238.279 111.596C237.949 111.596 237.657 111.661 237.403 111.792C237.154 111.919 236.957 112.101 236.813 112.338C236.673 112.575 236.604 112.855 236.604 113.176H235.429C235.429 112.707 235.548 112.279 235.785 111.894C236.022 111.509 236.354 111.202 236.781 110.974C237.213 110.745 237.712 110.631 238.279 110.631C238.838 110.631 239.327 110.73 239.746 110.929C240.165 111.124 240.49 111.416 240.723 111.805C240.956 112.19 241.072 112.671 241.072 113.246C241.072 113.479 241.017 113.729 240.907 113.995C240.801 114.257 240.634 114.503 240.406 114.731C240.181 114.96 239.889 115.148 239.53 115.296C239.17 115.44 238.738 115.512 238.235 115.512H237.232V114.801ZM237.232 115.766V115.062H238.235C238.823 115.062 239.31 115.131 239.695 115.271C240.08 115.411 240.382 115.597 240.603 115.83C240.827 116.062 240.983 116.318 241.072 116.598C241.165 116.873 241.212 117.148 241.212 117.423C241.212 117.854 241.138 118.237 240.99 118.572C240.846 118.906 240.641 119.19 240.374 119.422C240.112 119.655 239.803 119.831 239.447 119.949C239.092 120.068 238.705 120.127 238.286 120.127C237.884 120.127 237.505 120.07 237.149 119.956C236.798 119.841 236.487 119.676 236.216 119.46C235.945 119.24 235.734 118.972 235.582 118.654C235.429 118.333 235.353 117.967 235.353 117.556H236.527C236.527 117.878 236.597 118.159 236.737 118.4C236.881 118.642 237.084 118.83 237.346 118.965C237.613 119.097 237.926 119.162 238.286 119.162C238.645 119.162 238.954 119.101 239.212 118.978C239.475 118.851 239.676 118.661 239.815 118.407C239.959 118.153 240.031 117.833 240.031 117.448C240.031 117.063 239.951 116.748 239.79 116.502C239.629 116.253 239.401 116.069 239.104 115.95C238.812 115.827 238.468 115.766 238.07 115.766H237.232Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.761 119.035V120H254.712V119.156L257.74 115.785C258.112 115.37 258.4 115.019 258.603 114.731C258.81 114.439 258.954 114.179 259.035 113.951C259.119 113.718 259.162 113.481 259.162 113.24C259.162 112.935 259.098 112.66 258.971 112.415C258.848 112.165 258.667 111.966 258.425 111.818C258.184 111.67 257.892 111.596 257.549 111.596C257.139 111.596 256.796 111.676 256.521 111.837C256.25 111.993 256.047 112.214 255.912 112.497C255.776 112.781 255.708 113.106 255.708 113.475H254.534C254.534 112.954 254.648 112.478 254.877 112.046C255.105 111.615 255.444 111.272 255.893 111.018C256.341 110.76 256.893 110.631 257.549 110.631C258.133 110.631 258.633 110.735 259.047 110.942C259.462 111.145 259.779 111.433 260 111.805C260.224 112.173 260.336 112.605 260.336 113.1C260.336 113.371 260.289 113.646 260.196 113.925C260.107 114.2 259.983 114.475 259.822 114.75C259.665 115.026 259.481 115.296 259.27 115.563C259.062 115.83 258.84 116.092 258.603 116.35L256.127 119.035H260.761ZM263.186 119.016H263.307C263.984 119.016 264.534 118.921 264.957 118.73C265.38 118.54 265.706 118.284 265.935 117.962C266.163 117.641 266.32 117.279 266.404 116.877C266.489 116.471 266.531 116.054 266.531 115.626V114.211C266.531 113.792 266.483 113.42 266.385 113.094C266.292 112.768 266.161 112.495 265.992 112.275C265.827 112.055 265.638 111.888 265.427 111.773C265.215 111.659 264.991 111.602 264.754 111.602C264.483 111.602 264.24 111.657 264.024 111.767C263.812 111.873 263.632 112.023 263.484 112.218C263.34 112.412 263.23 112.641 263.154 112.903C263.078 113.166 263.04 113.451 263.04 113.76C263.04 114.035 263.074 114.302 263.142 114.56C263.209 114.818 263.313 115.051 263.453 115.258C263.592 115.466 263.766 115.631 263.973 115.753C264.185 115.872 264.432 115.931 264.716 115.931C264.978 115.931 265.224 115.88 265.452 115.779C265.685 115.673 265.89 115.531 266.068 115.354C266.25 115.172 266.394 114.966 266.5 114.738C266.61 114.509 266.673 114.27 266.69 114.021H267.249C267.249 114.372 267.179 114.719 267.039 115.062C266.904 115.4 266.713 115.709 266.468 115.988C266.222 116.268 265.935 116.492 265.604 116.661C265.274 116.826 264.915 116.909 264.525 116.909C264.068 116.909 263.673 116.82 263.338 116.642C263.004 116.464 262.729 116.227 262.513 115.931C262.302 115.635 262.143 115.305 262.037 114.941C261.936 114.573 261.885 114.2 261.885 113.824C261.885 113.384 261.946 112.971 262.069 112.586C262.192 112.201 262.374 111.862 262.615 111.57C262.856 111.274 263.154 111.043 263.51 110.878C263.869 110.713 264.284 110.631 264.754 110.631C265.283 110.631 265.734 110.737 266.106 110.948C266.478 111.16 266.781 111.443 267.014 111.799C267.251 112.154 267.424 112.554 267.534 112.999C267.644 113.443 267.699 113.9 267.699 114.37V114.795C267.699 115.273 267.667 115.76 267.604 116.255C267.545 116.746 267.428 117.215 267.255 117.664C267.086 118.113 266.838 118.515 266.512 118.87C266.186 119.221 265.761 119.501 265.236 119.708C264.716 119.911 264.073 120.013 263.307 120.013H263.186V119.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M231.858 134.492V144.5H230.594V136.071L228.044 137.001V135.859L231.66 134.492H231.858ZM242.304 141.15V142.189H235.112V141.444L239.569 134.547H240.602L239.494 136.543L236.548 141.15H242.304ZM240.916 134.547V144.5H239.651V134.547H240.916Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M256.048 138.901H256.95C257.392 138.901 257.757 138.828 258.044 138.683C258.336 138.532 258.552 138.329 258.693 138.074C258.839 137.814 258.912 137.523 258.912 137.199C258.912 136.816 258.848 136.495 258.721 136.235C258.593 135.976 258.402 135.78 258.146 135.647C257.891 135.515 257.568 135.449 257.176 135.449C256.82 135.449 256.506 135.52 256.232 135.661C255.964 135.798 255.752 135.994 255.597 136.249C255.446 136.504 255.371 136.805 255.371 137.151H254.106C254.106 136.646 254.234 136.185 254.489 135.771C254.744 135.356 255.102 135.025 255.562 134.779C256.027 134.533 256.565 134.41 257.176 134.41C257.777 134.41 258.304 134.517 258.755 134.731C259.206 134.941 259.557 135.256 259.808 135.675C260.058 136.09 260.184 136.607 260.184 137.227C260.184 137.477 260.124 137.746 260.006 138.033C259.892 138.316 259.712 138.58 259.466 138.826C259.224 139.072 258.91 139.275 258.522 139.435C258.135 139.59 257.67 139.667 257.128 139.667H256.048V138.901ZM256.048 139.94V139.182H257.128C257.761 139.182 258.285 139.257 258.7 139.407C259.115 139.558 259.441 139.758 259.678 140.009C259.919 140.259 260.088 140.535 260.184 140.836C260.284 141.132 260.334 141.428 260.334 141.725C260.334 142.189 260.254 142.602 260.095 142.962C259.94 143.322 259.719 143.627 259.432 143.878C259.149 144.129 258.816 144.318 258.434 144.445C258.051 144.573 257.634 144.637 257.183 144.637C256.75 144.637 256.342 144.575 255.959 144.452C255.581 144.329 255.246 144.151 254.954 143.919C254.662 143.682 254.435 143.393 254.271 143.051C254.106 142.704 254.024 142.31 254.024 141.868H255.289C255.289 142.215 255.364 142.518 255.515 142.777C255.67 143.037 255.888 143.24 256.171 143.386C256.458 143.527 256.795 143.598 257.183 143.598C257.57 143.598 257.903 143.532 258.181 143.399C258.463 143.263 258.68 143.058 258.83 142.784C258.985 142.511 259.062 142.167 259.062 141.752C259.062 141.337 258.976 140.998 258.803 140.733C258.63 140.465 258.383 140.266 258.064 140.139C257.75 140.007 257.379 139.94 256.95 139.94H256.048ZM268.325 138.73V140.248C268.325 141.064 268.252 141.752 268.106 142.312C267.961 142.873 267.751 143.324 267.478 143.666C267.204 144.008 266.874 144.256 266.486 144.411C266.104 144.562 265.671 144.637 265.188 144.637C264.805 144.637 264.451 144.589 264.128 144.493C263.804 144.397 263.513 144.245 263.253 144.035C262.998 143.821 262.779 143.543 262.597 143.201C262.414 142.859 262.275 142.445 262.18 141.957C262.084 141.469 262.036 140.9 262.036 140.248V138.73C262.036 137.915 262.109 137.231 262.255 136.68C262.405 136.128 262.617 135.686 262.891 135.354C263.164 135.016 263.492 134.775 263.875 134.629C264.262 134.483 264.695 134.41 265.174 134.41C265.561 134.41 265.917 134.458 266.24 134.554C266.568 134.645 266.86 134.793 267.115 134.998C267.37 135.199 267.587 135.467 267.765 135.805C267.947 136.137 268.086 136.545 268.182 137.028C268.277 137.511 268.325 138.079 268.325 138.73ZM267.054 140.453V138.519C267.054 138.072 267.026 137.68 266.972 137.343C266.922 137.001 266.846 136.709 266.746 136.468C266.646 136.226 266.518 136.03 266.363 135.88C266.213 135.729 266.037 135.62 265.837 135.552C265.641 135.479 265.42 135.442 265.174 135.442C264.873 135.442 264.606 135.499 264.374 135.613C264.142 135.723 263.946 135.898 263.786 136.14C263.631 136.381 263.513 136.698 263.431 137.09C263.349 137.482 263.308 137.958 263.308 138.519V140.453C263.308 140.9 263.333 141.294 263.383 141.636C263.438 141.978 263.517 142.274 263.622 142.524C263.727 142.771 263.854 142.973 264.005 143.133C264.155 143.292 264.328 143.411 264.524 143.488C264.725 143.561 264.946 143.598 265.188 143.598C265.497 143.598 265.769 143.538 266.001 143.42C266.233 143.301 266.427 143.117 266.582 142.866C266.742 142.611 266.86 142.285 266.938 141.889C267.015 141.488 267.054 141.009 267.054 140.453Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1425"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1425"},(0,h.createElement)("rect",{width:"13",height:"13",fill:"white",transform:"translate(96 59)"})))),{ToolBarFields:ir,BlockName:or,BlockLabel:sr,BlockDescription:cr,BlockAdvancedValue:dr,AdvancedFields:mr,FieldWrapper:ur,FieldSettingsWrapper:pr,AdvancedInspectorControl:fr,ValidationToggleGroup:Vr,ValidationBlockMessage:Hr,ClientSideMacros:hr,AttributeHelp:br}=JetFBComponents,{useInsertMacro:Mr,useIsAdvancedValidation:Lr,useUniqueNameOnDuplicate:gr}=JetFBHooks,{__:Zr}=wp.i18n,{InspectorControls:yr,useBlockProps:Er}=wp.blockEditor,{TextControl:wr,ToggleControl:vr,PanelBody:_r,ExternalLink:kr}=wp.components,jr=JSON.parse('{"apiVersion":3,"name":"jet-forms/datetime-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","date"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Datetime Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"is_timestamp":{"type":"boolean","default":false},"min":{"type":"string","default":""},"max":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:xr}=wp.i18n,{createBlock:Fr}=wp.blocks,{name:Br,icon:Ar=""}=jr,Pr={className:Br.replace("/","-"),icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ar}}),description:xr("Type in the date and time manually following the input mask or choose the values from the calendar and timer.","jet-form-builder"),edit:function(e){const C=Er(),[t,l]=Mr("min"),[r,n]=Mr("max"),{attributes:a,setAttributes:i,isSelected:o,editProps:{uniqKey:s,attrHelp:c}}=e,d=Lr();if(gr(),a.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},ar);const m=(0,h.createElement)(h.Fragment,null,Zr("Plain date should be in yyyy-MM-ddThh:mm format.","jet-form-builder")," ",Zr("Or you can use","jet-form-builder")," ",(0,h.createElement)(kr,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},Zr("macros","jet-form-builder"))," ",Zr("and","jet-form-builder")," ",(0,h.createElement)(kr,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},Zr("filters","jet-form-builder")),".");return[(0,h.createElement)(ir,{key:s("ToolBarFields"),...e}),o&&(0,h.createElement)(yr,{key:s("InspectorControls")},(0,h.createElement)(_r,{title:Zr("General","jet-form-builder")},(0,h.createElement)(sr,null),(0,h.createElement)(or,null),(0,h.createElement)(cr,null)),(0,h.createElement)(_r,{title:Zr("Value","jet-form-builder")},(0,h.createElement)(dr,{help:m,style:{marginBottom:"1em"}}),(0,h.createElement)(hr,null,(0,h.createElement)(fr,{value:a.min,label:Zr("Starting from date","jet-form-builder"),onChangePreset:e=>i({min:e}),onChangeMacros:l},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(wr,{id:e,ref:t,className:"jet-fb m-unset",value:a.min,onChange:e=>i({min:e})}),(0,h.createElement)(br,null,m))),(0,h.createElement)(fr,{value:a.max,label:Zr("Limit dates to","jet-form-builder"),onChangePreset:e=>i({max:e}),onChangeMacros:n},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(wr,{id:e,ref:r,className:"jet-fb m-unset",value:a.max,onChange:e=>i({max:e})}),(0,h.createElement)(br,null,m))))),(0,h.createElement)(pr,{...e},(0,h.createElement)(vr,{key:s("is_timestamp"),label:Zr("Is Timestamp","jet-form-builder"),checked:a.is_timestamp,help:c("is_timestamp"),onChange:e=>{i({is_timestamp:Boolean(e)})}})),(0,h.createElement)(_r,{title:Zr("Validation","jet-form-builder")},(0,h.createElement)(Vr,null),d&&(0,h.createElement)(h.Fragment,null,Boolean(a.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Hr,{name:"date_min"})),Boolean(a.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Hr,{name:"date_max"})),(0,h.createElement)(Hr,{name:"empty"}))),(0,h.createElement)(mr,null)),(0,h.createElement)("div",{...C,key:s("viewBlock")},(0,h.createElement)(ur,{key:s("FieldWrapper"),...e},(0,h.createElement)(wr,{onChange:()=>{},className:"jet-form-builder__field-preview",key:s("place_holder_block"),placeholder:'Input type="datetime-local"'})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Fr("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/time-field","jet-forms/date-field"],transform:e=>Fr(Br,{...e}),priority:0}]}},Sr=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M0 0H298V144H0V0Z",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M23.5107 33.5439V37.1875C23.3877 37.3698 23.1917 37.5749 22.9229 37.8027C22.654 38.026 22.2826 38.222 21.8086 38.3906C21.3392 38.5547 20.7331 38.6367 19.9902 38.6367C19.3841 38.6367 18.8258 38.5319 18.3154 38.3223C17.8096 38.1081 17.3698 37.7982 16.9961 37.3926C16.627 36.9824 16.3398 36.4857 16.1348 35.9023C15.9342 35.3145 15.834 34.6491 15.834 33.9062V33.1338C15.834 32.391 15.9206 31.7279 16.0938 31.1445C16.2715 30.5612 16.5312 30.0667 16.873 29.6611C17.2148 29.251 17.6341 28.9411 18.1309 28.7314C18.6276 28.5173 19.1973 28.4102 19.8398 28.4102C20.6009 28.4102 21.2367 28.5423 21.7471 28.8066C22.262 29.0664 22.6631 29.4264 22.9502 29.8867C23.2419 30.347 23.4287 30.8711 23.5107 31.459H22.1914C22.1322 31.099 22.0137 30.7708 21.8359 30.4746C21.6628 30.1784 21.4144 29.9414 21.0908 29.7637C20.7673 29.5814 20.3503 29.4902 19.8398 29.4902C19.3796 29.4902 18.9808 29.5745 18.6436 29.7432C18.3063 29.9118 18.0283 30.1533 17.8096 30.4678C17.5908 30.7822 17.4268 31.1628 17.3174 31.6094C17.2126 32.056 17.1602 32.5596 17.1602 33.1201V33.9062C17.1602 34.4805 17.2262 34.9932 17.3584 35.4443C17.4951 35.8955 17.6888 36.2806 17.9395 36.5996C18.1901 36.9141 18.4886 37.1533 18.835 37.3174C19.1859 37.4814 19.5732 37.5635 19.9971 37.5635C20.4665 37.5635 20.847 37.5247 21.1387 37.4473C21.4303 37.3652 21.6582 37.2695 21.8223 37.1602C21.9863 37.0462 22.1117 36.9391 22.1982 36.8389V34.6104H19.8945V33.5439H23.5107ZM28.5762 38.6367C28.0612 38.6367 27.5941 38.5501 27.1748 38.377C26.7601 38.1992 26.4023 37.9508 26.1016 37.6318C25.8053 37.3128 25.5775 36.9346 25.418 36.4971C25.2585 36.0596 25.1787 35.5811 25.1787 35.0615V34.7744C25.1787 34.1729 25.2676 33.6374 25.4453 33.168C25.623 32.694 25.8646 32.293 26.1699 31.9648C26.4753 31.6367 26.8216 31.3883 27.209 31.2197C27.5964 31.0511 27.9974 30.9668 28.4121 30.9668C28.9408 30.9668 29.3965 31.0579 29.7793 31.2402C30.1667 31.4225 30.4834 31.6777 30.7295 32.0059C30.9756 32.3294 31.1579 32.7122 31.2764 33.1543C31.3949 33.5918 31.4541 34.0703 31.4541 34.5898V35.1572H25.9307V34.125H30.1895V34.0293C30.1712 33.7012 30.1029 33.3822 29.9844 33.0723C29.8704 32.7624 29.6882 32.5072 29.4375 32.3066C29.1868 32.1061 28.8451 32.0059 28.4121 32.0059C28.125 32.0059 27.8607 32.0674 27.6191 32.1904C27.3776 32.3089 27.1702 32.4867 26.9971 32.7236C26.8239 32.9606 26.6895 33.25 26.5938 33.5918C26.498 33.9336 26.4502 34.3278 26.4502 34.7744V35.0615C26.4502 35.4124 26.498 35.7428 26.5938 36.0527C26.694 36.3581 26.8376 36.627 27.0244 36.8594C27.2158 37.0918 27.446 37.2741 27.7148 37.4062C27.9883 37.5384 28.2982 37.6045 28.6445 37.6045C29.0911 37.6045 29.4694 37.5133 29.7793 37.3311C30.0892 37.1488 30.3604 36.9049 30.5928 36.5996L31.3584 37.208C31.1989 37.4495 30.9961 37.6797 30.75 37.8984C30.5039 38.1172 30.2008 38.2949 29.8408 38.4316C29.4854 38.5684 29.0638 38.6367 28.5762 38.6367ZM34.1953 32.6826V38.5H32.9307V31.1035H34.127L34.1953 32.6826ZM33.8945 34.5215L33.3682 34.501C33.3727 33.9951 33.4479 33.528 33.5938 33.0996C33.7396 32.6667 33.9447 32.2907 34.209 31.9717C34.4733 31.6527 34.7878 31.4066 35.1523 31.2334C35.5215 31.0557 35.9294 30.9668 36.376 30.9668C36.7406 30.9668 37.0687 31.0169 37.3604 31.1172C37.652 31.2129 37.9004 31.3678 38.1055 31.582C38.3151 31.7962 38.4746 32.0742 38.584 32.416C38.6934 32.7533 38.748 33.1657 38.748 33.6533V38.5H37.4766V33.6396C37.4766 33.2523 37.4196 32.9424 37.3057 32.71C37.1917 32.473 37.0254 32.3021 36.8066 32.1973C36.5879 32.0879 36.319 32.0332 36 32.0332C35.6855 32.0332 35.3984 32.0993 35.1387 32.2314C34.8835 32.3636 34.6624 32.5459 34.4756 32.7783C34.2933 33.0107 34.1497 33.2773 34.0449 33.5781C33.9447 33.8743 33.8945 34.1888 33.8945 34.5215ZM43.7383 38.6367C43.2233 38.6367 42.7562 38.5501 42.3369 38.377C41.9222 38.1992 41.5645 37.9508 41.2637 37.6318C40.9674 37.3128 40.7396 36.9346 40.5801 36.4971C40.4206 36.0596 40.3408 35.5811 40.3408 35.0615V34.7744C40.3408 34.1729 40.4297 33.6374 40.6074 33.168C40.7852 32.694 41.0267 32.293 41.332 31.9648C41.6374 31.6367 41.9837 31.3883 42.3711 31.2197C42.7585 31.0511 43.1595 30.9668 43.5742 30.9668C44.1029 30.9668 44.5586 31.0579 44.9414 31.2402C45.3288 31.4225 45.6455 31.6777 45.8916 32.0059C46.1377 32.3294 46.32 32.7122 46.4385 33.1543C46.557 33.5918 46.6162 34.0703 46.6162 34.5898V35.1572H41.0928V34.125H45.3516V34.0293C45.3333 33.7012 45.265 33.3822 45.1465 33.0723C45.0326 32.7624 44.8503 32.5072 44.5996 32.3066C44.349 32.1061 44.0072 32.0059 43.5742 32.0059C43.2871 32.0059 43.0228 32.0674 42.7812 32.1904C42.5397 32.3089 42.3324 32.4867 42.1592 32.7236C41.986 32.9606 41.8516 33.25 41.7559 33.5918C41.6602 33.9336 41.6123 34.3278 41.6123 34.7744V35.0615C41.6123 35.4124 41.6602 35.7428 41.7559 36.0527C41.8561 36.3581 41.9997 36.627 42.1865 36.8594C42.3779 37.0918 42.6081 37.2741 42.877 37.4062C43.1504 37.5384 43.4603 37.6045 43.8066 37.6045C44.2533 37.6045 44.6315 37.5133 44.9414 37.3311C45.2513 37.1488 45.5225 36.9049 45.7549 36.5996L46.5205 37.208C46.361 37.4495 46.1582 37.6797 45.9121 37.8984C45.666 38.1172 45.363 38.2949 45.0029 38.4316C44.6475 38.5684 44.2259 38.6367 43.7383 38.6367ZM49.3574 32.2656V38.5H48.0928V31.1035H49.3232L49.3574 32.2656ZM51.668 31.0625L51.6611 32.2383C51.5563 32.2155 51.4561 32.2018 51.3604 32.1973C51.2692 32.1882 51.1644 32.1836 51.0459 32.1836C50.7542 32.1836 50.4967 32.2292 50.2734 32.3203C50.0501 32.4115 49.861 32.5391 49.7061 32.7031C49.5511 32.8672 49.4281 33.0632 49.3369 33.291C49.2503 33.5143 49.1934 33.7604 49.166 34.0293L48.8105 34.2344C48.8105 33.7878 48.8538 33.3685 48.9404 32.9766C49.0316 32.5846 49.1706 32.2383 49.3574 31.9375C49.5443 31.6322 49.7812 31.3952 50.0684 31.2266C50.36 31.0534 50.7064 30.9668 51.1074 30.9668C51.1986 30.9668 51.3034 30.9782 51.4219 31.001C51.5404 31.0192 51.6224 31.0397 51.668 31.0625ZM56.9248 37.2354V33.4277C56.9248 33.1361 56.8656 32.8831 56.7471 32.6689C56.6331 32.4502 56.46 32.2816 56.2275 32.1631C55.9951 32.0446 55.708 31.9854 55.3662 31.9854C55.0472 31.9854 54.7669 32.04 54.5254 32.1494C54.2884 32.2588 54.1016 32.4023 53.9648 32.5801C53.8327 32.7578 53.7666 32.9492 53.7666 33.1543H52.502C52.502 32.89 52.5703 32.6279 52.707 32.3682C52.8438 32.1084 53.0397 31.8737 53.2949 31.6641C53.5547 31.4499 53.8646 31.2812 54.2246 31.1582C54.5892 31.0306 54.9948 30.9668 55.4414 30.9668C55.9792 30.9668 56.4531 31.0579 56.8633 31.2402C57.278 31.4225 57.6016 31.6982 57.834 32.0674C58.071 32.432 58.1895 32.89 58.1895 33.4414V36.8867C58.1895 37.1328 58.21 37.3949 58.251 37.6729C58.2965 37.9508 58.3626 38.1901 58.4492 38.3906V38.5H57.1299C57.0661 38.3542 57.016 38.1605 56.9795 37.9189C56.943 37.6729 56.9248 37.445 56.9248 37.2354ZM57.1436 34.0156L57.1572 34.9043H55.8789C55.5189 34.9043 55.1976 34.9339 54.915 34.9932C54.6325 35.0479 54.3955 35.1322 54.2041 35.2461C54.0127 35.36 53.8669 35.5036 53.7666 35.6768C53.6663 35.8454 53.6162 36.0436 53.6162 36.2715C53.6162 36.5039 53.6686 36.7158 53.7734 36.9072C53.8783 37.0986 54.0355 37.2513 54.2451 37.3652C54.4593 37.4746 54.7214 37.5293 55.0312 37.5293C55.4186 37.5293 55.7604 37.4473 56.0566 37.2832C56.3529 37.1191 56.5876 36.9186 56.7607 36.6816C56.9385 36.4447 57.0342 36.2145 57.0479 35.9912L57.5879 36.5996C57.556 36.791 57.4694 37.0029 57.3281 37.2354C57.1868 37.4678 56.9977 37.6911 56.7607 37.9053C56.5283 38.1149 56.2503 38.2904 55.9268 38.4316C55.6077 38.5684 55.2477 38.6367 54.8467 38.6367C54.3454 38.6367 53.9056 38.5387 53.5273 38.3428C53.1536 38.1468 52.862 37.8848 52.6523 37.5566C52.4473 37.224 52.3447 36.8525 52.3447 36.4424C52.3447 36.0459 52.4222 35.6973 52.5771 35.3965C52.7321 35.0911 52.9554 34.8382 53.2471 34.6377C53.5387 34.4326 53.8896 34.2777 54.2998 34.1729C54.71 34.068 55.168 34.0156 55.6738 34.0156H57.1436ZM61.5527 28V38.5H60.2812V28H61.5527ZM68.4297 31.1035V38.5H67.1582V31.1035H68.4297ZM67.0625 29.1416C67.0625 28.9365 67.124 28.7633 67.2471 28.6221C67.3747 28.4808 67.5615 28.4102 67.8076 28.4102C68.0492 28.4102 68.2337 28.4808 68.3613 28.6221C68.4935 28.7633 68.5596 28.9365 68.5596 29.1416C68.5596 29.3376 68.4935 29.5062 68.3613 29.6475C68.2337 29.7842 68.0492 29.8525 67.8076 29.8525C67.5615 29.8525 67.3747 29.7842 67.2471 29.6475C67.124 29.5062 67.0625 29.3376 67.0625 29.1416ZM71.7246 32.6826V38.5H70.46V31.1035H71.6562L71.7246 32.6826ZM71.4238 34.5215L70.8975 34.501C70.902 33.9951 70.9772 33.528 71.123 33.0996C71.2689 32.6667 71.474 32.2907 71.7383 31.9717C72.0026 31.6527 72.3171 31.4066 72.6816 31.2334C73.0508 31.0557 73.4587 30.9668 73.9053 30.9668C74.2699 30.9668 74.598 31.0169 74.8896 31.1172C75.1813 31.2129 75.4297 31.3678 75.6348 31.582C75.8444 31.7962 76.0039 32.0742 76.1133 32.416C76.2227 32.7533 76.2773 33.1657 76.2773 33.6533V38.5H75.0059V33.6396C75.0059 33.2523 74.9489 32.9424 74.835 32.71C74.721 32.473 74.5547 32.3021 74.3359 32.1973C74.1172 32.0879 73.8483 32.0332 73.5293 32.0332C73.2148 32.0332 72.9277 32.0993 72.668 32.2314C72.4128 32.3636 72.1917 32.5459 72.0049 32.7783C71.8226 33.0107 71.679 33.2773 71.5742 33.5781C71.474 33.8743 71.4238 34.1888 71.4238 34.5215ZM80.085 38.5H78.8203V30.3242C78.8203 29.791 78.916 29.3421 79.1074 28.9775C79.3034 28.6084 79.5837 28.3304 79.9482 28.1436C80.3128 27.9521 80.7458 27.8564 81.2471 27.8564C81.3929 27.8564 81.5387 27.8656 81.6846 27.8838C81.835 27.902 81.9808 27.9294 82.1221 27.9658L82.0537 28.998C81.958 28.9753 81.8486 28.9593 81.7256 28.9502C81.6071 28.9411 81.4886 28.9365 81.3701 28.9365C81.1012 28.9365 80.8688 28.9912 80.6729 29.1006C80.4814 29.2054 80.3356 29.3604 80.2354 29.5654C80.1351 29.7705 80.085 30.0234 80.085 30.3242V38.5ZM81.6572 31.1035V32.0742H77.6514V31.1035H81.6572ZM82.7305 34.8838V34.7266C82.7305 34.1934 82.8079 33.6989 82.9629 33.2432C83.1178 32.7829 83.3411 32.3841 83.6328 32.0469C83.9245 31.7051 84.2777 31.4408 84.6924 31.2539C85.1071 31.0625 85.5719 30.9668 86.0869 30.9668C86.6064 30.9668 87.0736 31.0625 87.4883 31.2539C87.9076 31.4408 88.263 31.7051 88.5547 32.0469C88.8509 32.3841 89.0765 32.7829 89.2314 33.2432C89.3864 33.6989 89.4639 34.1934 89.4639 34.7266V34.8838C89.4639 35.417 89.3864 35.9115 89.2314 36.3672C89.0765 36.8229 88.8509 37.2217 88.5547 37.5635C88.263 37.9007 87.9098 38.165 87.4951 38.3564C87.085 38.5433 86.6201 38.6367 86.1006 38.6367C85.5811 38.6367 85.1139 38.5433 84.6992 38.3564C84.2845 38.165 83.929 37.9007 83.6328 37.5635C83.3411 37.2217 83.1178 36.8229 82.9629 36.3672C82.8079 35.9115 82.7305 35.417 82.7305 34.8838ZM83.9951 34.7266V34.8838C83.9951 35.2529 84.0384 35.6016 84.125 35.9297C84.2116 36.2533 84.3415 36.5404 84.5146 36.791C84.6924 37.0417 84.9134 37.2399 85.1777 37.3857C85.4421 37.527 85.7497 37.5977 86.1006 37.5977C86.4469 37.5977 86.75 37.527 87.0098 37.3857C87.2741 37.2399 87.4928 37.0417 87.666 36.791C87.8392 36.5404 87.9691 36.2533 88.0557 35.9297C88.1468 35.6016 88.1924 35.2529 88.1924 34.8838V34.7266C88.1924 34.362 88.1468 34.0179 88.0557 33.6943C87.9691 33.3662 87.8369 33.0768 87.6592 32.8262C87.486 32.571 87.2673 32.3704 87.0029 32.2246C86.7432 32.0788 86.4378 32.0059 86.0869 32.0059C85.7406 32.0059 85.4352 32.0788 85.1709 32.2246C84.9111 32.3704 84.6924 32.571 84.5146 32.8262C84.3415 33.0768 84.2116 33.3662 84.125 33.6943C84.0384 34.0179 83.9951 34.362 83.9951 34.7266ZM92.3145 32.2656V38.5H91.0498V31.1035H92.2803L92.3145 32.2656ZM94.625 31.0625L94.6182 32.2383C94.5133 32.2155 94.4131 32.2018 94.3174 32.1973C94.2262 32.1882 94.1214 32.1836 94.0029 32.1836C93.7113 32.1836 93.4538 32.2292 93.2305 32.3203C93.0072 32.4115 92.818 32.5391 92.6631 32.7031C92.5081 32.8672 92.3851 33.0632 92.2939 33.291C92.2074 33.5143 92.1504 33.7604 92.123 34.0293L91.7676 34.2344C91.7676 33.7878 91.8109 33.3685 91.8975 32.9766C91.9886 32.5846 92.1276 32.2383 92.3145 31.9375C92.5013 31.6322 92.7383 31.3952 93.0254 31.2266C93.3171 31.0534 93.6634 30.9668 94.0645 30.9668C94.1556 30.9668 94.2604 30.9782 94.3789 31.001C94.4974 31.0192 94.5794 31.0397 94.625 31.0625ZM97.0518 32.5732V38.5H95.7803V31.1035H96.9834L97.0518 32.5732ZM96.792 34.5215L96.2041 34.501C96.2087 33.9951 96.2747 33.528 96.4023 33.0996C96.5299 32.6667 96.7191 32.2907 96.9697 31.9717C97.2204 31.6527 97.5326 31.4066 97.9062 31.2334C98.2799 31.0557 98.7129 30.9668 99.2051 30.9668C99.5514 30.9668 99.8704 31.0169 100.162 31.1172C100.454 31.2129 100.707 31.3656 100.921 31.5752C101.135 31.7848 101.301 32.0537 101.42 32.3818C101.538 32.71 101.598 33.1064 101.598 33.5713V38.5H100.333V33.6328C100.333 33.2454 100.267 32.9355 100.135 32.7031C100.007 32.4707 99.8249 32.3021 99.5879 32.1973C99.3509 32.0879 99.0729 32.0332 98.7539 32.0332C98.3802 32.0332 98.068 32.0993 97.8174 32.2314C97.5667 32.3636 97.3662 32.5459 97.2158 32.7783C97.0654 33.0107 96.9561 33.2773 96.8877 33.5781C96.8239 33.8743 96.792 34.1888 96.792 34.5215ZM101.584 33.8242L100.736 34.084C100.741 33.6784 100.807 33.2887 100.935 32.915C101.067 32.5413 101.256 32.2087 101.502 31.917C101.753 31.6253 102.06 31.3952 102.425 31.2266C102.789 31.0534 103.206 30.9668 103.676 30.9668C104.072 30.9668 104.423 31.0192 104.729 31.124C105.038 31.2288 105.298 31.3906 105.508 31.6094C105.722 31.8236 105.884 32.0993 105.993 32.4365C106.103 32.7738 106.157 33.1748 106.157 33.6396V38.5H104.886V33.626C104.886 33.2113 104.82 32.89 104.688 32.6621C104.56 32.4297 104.378 32.2679 104.141 32.1768C103.908 32.0811 103.63 32.0332 103.307 32.0332C103.029 32.0332 102.783 32.0811 102.568 32.1768C102.354 32.2725 102.174 32.4046 102.028 32.5732C101.882 32.7373 101.771 32.9264 101.693 33.1406C101.62 33.3548 101.584 33.5827 101.584 33.8242ZM112.433 37.2354V33.4277C112.433 33.1361 112.373 32.8831 112.255 32.6689C112.141 32.4502 111.968 32.2816 111.735 32.1631C111.503 32.0446 111.216 31.9854 110.874 31.9854C110.555 31.9854 110.275 32.04 110.033 32.1494C109.796 32.2588 109.609 32.4023 109.473 32.5801C109.34 32.7578 109.274 32.9492 109.274 33.1543H108.01C108.01 32.89 108.078 32.6279 108.215 32.3682C108.352 32.1084 108.548 31.8737 108.803 31.6641C109.062 31.4499 109.372 31.2812 109.732 31.1582C110.097 31.0306 110.503 30.9668 110.949 30.9668C111.487 30.9668 111.961 31.0579 112.371 31.2402C112.786 31.4225 113.109 31.6982 113.342 32.0674C113.579 32.432 113.697 32.89 113.697 33.4414V36.8867C113.697 37.1328 113.718 37.3949 113.759 37.6729C113.804 37.9508 113.87 38.1901 113.957 38.3906V38.5H112.638C112.574 38.3542 112.524 38.1605 112.487 37.9189C112.451 37.6729 112.433 37.445 112.433 37.2354ZM112.651 34.0156L112.665 34.9043H111.387C111.027 34.9043 110.705 34.9339 110.423 34.9932C110.14 35.0479 109.903 35.1322 109.712 35.2461C109.521 35.36 109.375 35.5036 109.274 35.6768C109.174 35.8454 109.124 36.0436 109.124 36.2715C109.124 36.5039 109.176 36.7158 109.281 36.9072C109.386 37.0986 109.543 37.2513 109.753 37.3652C109.967 37.4746 110.229 37.5293 110.539 37.5293C110.926 37.5293 111.268 37.4473 111.564 37.2832C111.861 37.1191 112.095 36.9186 112.269 36.6816C112.446 36.4447 112.542 36.2145 112.556 35.9912L113.096 36.5996C113.064 36.791 112.977 37.0029 112.836 37.2354C112.695 37.4678 112.506 37.6911 112.269 37.9053C112.036 38.1149 111.758 38.2904 111.435 38.4316C111.116 38.5684 110.756 38.6367 110.354 38.6367C109.853 38.6367 109.413 38.5387 109.035 38.3428C108.661 38.1468 108.37 37.8848 108.16 37.5566C107.955 37.224 107.853 36.8525 107.853 36.4424C107.853 36.0459 107.93 35.6973 108.085 35.3965C108.24 35.0911 108.463 34.8382 108.755 34.6377C109.047 34.4326 109.397 34.2777 109.808 34.1729C110.218 34.068 110.676 34.0156 111.182 34.0156H112.651ZM118.783 31.1035V32.0742H114.784V31.1035H118.783ZM116.138 29.3057H117.402V36.668C117.402 36.9186 117.441 37.1077 117.519 37.2354C117.596 37.363 117.696 37.4473 117.819 37.4883C117.942 37.5293 118.075 37.5498 118.216 37.5498C118.321 37.5498 118.43 37.5407 118.544 37.5225C118.662 37.4997 118.751 37.4814 118.811 37.4678L118.817 38.5C118.717 38.5319 118.585 38.5615 118.421 38.5889C118.261 38.6208 118.068 38.6367 117.84 38.6367C117.53 38.6367 117.245 38.5752 116.985 38.4521C116.726 38.3291 116.518 38.124 116.363 37.8369C116.213 37.5452 116.138 37.1533 116.138 36.6611V29.3057ZM121.641 31.1035V38.5H120.369V31.1035H121.641ZM120.273 29.1416C120.273 28.9365 120.335 28.7633 120.458 28.6221C120.586 28.4808 120.772 28.4102 121.019 28.4102C121.26 28.4102 121.445 28.4808 121.572 28.6221C121.704 28.7633 121.771 28.9365 121.771 29.1416C121.771 29.3376 121.704 29.5062 121.572 29.6475C121.445 29.7842 121.26 29.8525 121.019 29.8525C120.772 29.8525 120.586 29.7842 120.458 29.6475C120.335 29.5062 120.273 29.3376 120.273 29.1416ZM123.336 34.8838V34.7266C123.336 34.1934 123.413 33.6989 123.568 33.2432C123.723 32.7829 123.947 32.3841 124.238 32.0469C124.53 31.7051 124.883 31.4408 125.298 31.2539C125.713 31.0625 126.177 30.9668 126.692 30.9668C127.212 30.9668 127.679 31.0625 128.094 31.2539C128.513 31.4408 128.868 31.7051 129.16 32.0469C129.456 32.3841 129.682 32.7829 129.837 33.2432C129.992 33.6989 130.069 34.1934 130.069 34.7266V34.8838C130.069 35.417 129.992 35.9115 129.837 36.3672C129.682 36.8229 129.456 37.2217 129.16 37.5635C128.868 37.9007 128.515 38.165 128.101 38.3564C127.69 38.5433 127.226 38.6367 126.706 38.6367C126.187 38.6367 125.719 38.5433 125.305 38.3564C124.89 38.165 124.535 37.9007 124.238 37.5635C123.947 37.2217 123.723 36.8229 123.568 36.3672C123.413 35.9115 123.336 35.417 123.336 34.8838ZM124.601 34.7266V34.8838C124.601 35.2529 124.644 35.6016 124.73 35.9297C124.817 36.2533 124.947 36.5404 125.12 36.791C125.298 37.0417 125.519 37.2399 125.783 37.3857C126.048 37.527 126.355 37.5977 126.706 37.5977C127.052 37.5977 127.355 37.527 127.615 37.3857C127.88 37.2399 128.098 37.0417 128.271 36.791C128.445 36.5404 128.575 36.2533 128.661 35.9297C128.752 35.6016 128.798 35.2529 128.798 34.8838V34.7266C128.798 34.362 128.752 34.0179 128.661 33.6943C128.575 33.3662 128.442 33.0768 128.265 32.8262C128.091 32.571 127.873 32.3704 127.608 32.2246C127.349 32.0788 127.043 32.0059 126.692 32.0059C126.346 32.0059 126.041 32.0788 125.776 32.2246C125.517 32.3704 125.298 32.571 125.12 32.8262C124.947 33.0768 124.817 33.3662 124.73 33.6943C124.644 34.0179 124.601 34.362 124.601 34.7266ZM132.92 32.6826V38.5H131.655V31.1035H132.852L132.92 32.6826ZM132.619 34.5215L132.093 34.501C132.097 33.9951 132.173 33.528 132.318 33.0996C132.464 32.6667 132.669 32.2907 132.934 31.9717C133.198 31.6527 133.512 31.4066 133.877 31.2334C134.246 31.0557 134.654 30.9668 135.101 30.9668C135.465 30.9668 135.793 31.0169 136.085 31.1172C136.377 31.2129 136.625 31.3678 136.83 31.582C137.04 31.7962 137.199 32.0742 137.309 32.416C137.418 32.7533 137.473 33.1657 137.473 33.6533V38.5H136.201V33.6396C136.201 33.2523 136.144 32.9424 136.03 32.71C135.916 32.473 135.75 32.3021 135.531 32.1973C135.312 32.0879 135.044 32.0332 134.725 32.0332C134.41 32.0332 134.123 32.0993 133.863 32.2314C133.608 32.3636 133.387 32.5459 133.2 32.7783C133.018 33.0107 132.874 33.2773 132.77 33.5781C132.669 33.8743 132.619 34.1888 132.619 34.5215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15.5",y:"47",width:"267",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("path",{d:"M27.3867 56.7578V66H26.1616V56.7578H27.3867ZM30.6113 60.5981V66H29.437V59.1318H30.5479L30.6113 60.5981ZM30.332 62.3057L29.8433 62.2866C29.8475 61.8169 29.9173 61.3831 30.0527 60.9854C30.1882 60.5833 30.3786 60.2342 30.624 59.938C30.8695 59.6418 31.1615 59.4132 31.5 59.2524C31.8428 59.0874 32.2215 59.0049 32.6362 59.0049C32.9748 59.0049 33.2795 59.0514 33.5503 59.1445C33.8211 59.2334 34.0518 59.3773 34.2422 59.5762C34.4368 59.7751 34.585 60.0332 34.6865 60.3506C34.7881 60.6637 34.8389 61.0467 34.8389 61.4995V66H33.6582V61.4868C33.6582 61.1271 33.6053 60.8394 33.4995 60.6235C33.3937 60.4035 33.2393 60.2448 33.0361 60.1475C32.833 60.0459 32.5833 59.9951 32.2871 59.9951C31.9951 59.9951 31.7285 60.0565 31.4873 60.1792C31.2503 60.3019 31.0451 60.4712 30.8716 60.687C30.7023 60.9028 30.569 61.1504 30.4717 61.4297C30.3786 61.7048 30.332 61.9967 30.332 62.3057ZM37.7969 60.4521V68.6406H36.6162V59.1318H37.6953L37.7969 60.4521ZM42.4243 62.5088V62.6421C42.4243 63.1414 42.3651 63.6048 42.2466 64.0322C42.1281 64.4554 41.9546 64.8236 41.7261 65.1367C41.5018 65.4499 41.2246 65.6932 40.8945 65.8667C40.5645 66.0402 40.1857 66.127 39.7583 66.127C39.3224 66.127 38.9373 66.055 38.603 65.9111C38.2687 65.7673 37.9852 65.5578 37.7524 65.2827C37.5197 65.0076 37.3335 64.6776 37.1938 64.2925C37.0584 63.9074 36.9653 63.4736 36.9146 62.9912V62.2803C36.9653 61.7725 37.0605 61.3175 37.2002 60.9155C37.3398 60.5135 37.5239 60.1707 37.7524 59.8872C37.9852 59.5994 38.2666 59.3815 38.5967 59.2334C38.9268 59.0811 39.3076 59.0049 39.7393 59.0049C40.1709 59.0049 40.5539 59.0895 40.8882 59.2588C41.2225 59.4238 41.5039 59.6608 41.7324 59.9697C41.9609 60.2786 42.1323 60.6489 42.2466 61.0806C42.3651 61.508 42.4243 61.984 42.4243 62.5088ZM41.2437 62.6421V62.5088C41.2437 62.166 41.2077 61.8444 41.1357 61.5439C41.0638 61.2393 40.9517 60.9727 40.7993 60.7441C40.6512 60.5114 40.4608 60.3294 40.228 60.1982C39.9953 60.0628 39.7181 59.9951 39.3965 59.9951C39.1003 59.9951 38.8421 60.0459 38.6221 60.1475C38.4062 60.249 38.2222 60.3866 38.0698 60.5601C37.9175 60.7293 37.7926 60.924 37.6953 61.144C37.6022 61.3599 37.5324 61.5841 37.4858 61.8169V63.4609C37.5705 63.7572 37.689 64.0365 37.8413 64.2988C37.9937 64.557 38.1968 64.7664 38.4507 64.9272C38.7046 65.0838 39.0241 65.1621 39.4092 65.1621C39.7266 65.1621 39.9995 65.0965 40.228 64.9653C40.4608 64.8299 40.6512 64.6458 40.7993 64.4131C40.9517 64.1803 41.0638 63.9137 41.1357 63.6133C41.2077 63.3086 41.2437 62.9849 41.2437 62.6421ZM48.1245 64.4131V59.1318H49.3052V66H48.1816L48.1245 64.4131ZM48.3467 62.9658L48.8354 62.9531C48.8354 63.4102 48.7868 63.8333 48.6895 64.2227C48.5964 64.6077 48.444 64.9421 48.2324 65.2256C48.0208 65.5091 47.7437 65.7313 47.4009 65.8921C47.0581 66.0487 46.6413 66.127 46.1504 66.127C45.8161 66.127 45.5093 66.0783 45.23 65.981C44.9549 65.8836 44.7179 65.7334 44.519 65.5303C44.3201 65.3271 44.1657 65.0627 44.0557 64.7368C43.9499 64.411 43.897 64.0195 43.897 63.5625V59.1318H45.0713V63.5752C45.0713 63.8841 45.1051 64.1401 45.1729 64.3433C45.2448 64.5422 45.34 64.7008 45.4585 64.8193C45.5812 64.9336 45.7166 65.014 45.8647 65.0605C46.0171 65.1071 46.1737 65.1304 46.3345 65.1304C46.8338 65.1304 47.2295 65.0352 47.5215 64.8447C47.8135 64.6501 48.0229 64.3898 48.1499 64.064C48.2811 63.7339 48.3467 63.3678 48.3467 62.9658ZM53.9707 59.1318V60.0332H50.2573V59.1318H53.9707ZM51.5142 57.4624H52.6885V64.2988C52.6885 64.5316 52.7244 64.7072 52.7964 64.8257C52.8683 64.9442 52.9614 65.0225 53.0757 65.0605C53.1899 65.0986 53.3127 65.1177 53.4438 65.1177C53.5412 65.1177 53.6427 65.1092 53.7485 65.0923C53.8586 65.0711 53.9411 65.0542 53.9961 65.0415L54.0024 66C53.9093 66.0296 53.7866 66.0571 53.6343 66.0825C53.4862 66.1121 53.3063 66.127 53.0947 66.127C52.807 66.127 52.5425 66.0698 52.3013 65.9556C52.0601 65.8413 51.8675 65.6509 51.7236 65.3843C51.584 65.1134 51.5142 64.7495 51.5142 64.2925V57.4624ZM60.1406 66H58.9663V58.5352C58.9663 58.0146 59.0679 57.5745 59.271 57.2148C59.4741 56.8551 59.764 56.5822 60.1406 56.396C60.5173 56.2098 60.9637 56.1167 61.48 56.1167C61.7847 56.1167 62.083 56.1548 62.375 56.231C62.667 56.3029 62.9674 56.3939 63.2764 56.5039L63.0796 57.4941C62.8849 57.418 62.6585 57.346 62.4004 57.2783C62.1465 57.2064 61.8672 57.1704 61.5625 57.1704C61.0589 57.1704 60.695 57.2847 60.4707 57.5132C60.2507 57.7375 60.1406 58.0781 60.1406 58.5352V66ZM61.5435 59.1318V60.0332H57.8809V59.1318H61.5435ZM63.854 59.1318V66H62.6797V59.1318H63.854ZM68.6338 66.127C68.1556 66.127 67.7218 66.0465 67.3325 65.8857C66.9474 65.7207 66.6152 65.4901 66.3359 65.1938C66.0609 64.8976 65.8493 64.5464 65.7012 64.1401C65.5531 63.7339 65.479 63.2896 65.479 62.8071V62.5405C65.479 61.9819 65.5615 61.4847 65.7266 61.0488C65.8916 60.6087 66.1159 60.2363 66.3994 59.9316C66.6829 59.627 67.0046 59.3963 67.3643 59.2397C67.724 59.0832 68.0964 59.0049 68.4814 59.0049C68.9723 59.0049 69.3955 59.0895 69.751 59.2588C70.1107 59.4281 70.4048 59.665 70.6333 59.9697C70.8618 60.2702 71.0311 60.6257 71.1411 61.0361C71.2511 61.4424 71.3062 61.8867 71.3062 62.3691V62.896H66.1772V61.9375H70.1318V61.8486C70.1149 61.5439 70.0514 61.2477 69.9414 60.96C69.8356 60.6722 69.6663 60.4352 69.4336 60.249C69.2008 60.0628 68.8835 59.9697 68.4814 59.9697C68.2148 59.9697 67.9694 60.0269 67.7451 60.1411C67.5208 60.2511 67.3283 60.4162 67.1675 60.6362C67.0067 60.8563 66.8818 61.125 66.793 61.4424C66.7041 61.7598 66.6597 62.1258 66.6597 62.5405V62.8071C66.6597 63.133 66.7041 63.4398 66.793 63.7275C66.8861 64.0111 67.0194 64.2607 67.1929 64.4766C67.3706 64.6924 67.5843 64.8617 67.834 64.9844C68.0879 65.1071 68.3757 65.1685 68.6973 65.1685C69.112 65.1685 69.4632 65.0838 69.751 64.9146C70.0387 64.7453 70.2905 64.5189 70.5063 64.2354L71.2173 64.8003C71.0692 65.0246 70.8809 65.2383 70.6523 65.4414C70.4238 65.6445 70.1424 65.8096 69.8081 65.9365C69.478 66.0635 69.0866 66.127 68.6338 66.127ZM73.9531 56.25V66H72.7725V56.25H73.9531ZM80.1675 64.667V56.25H81.3481V66H80.269L80.1675 64.667ZM75.5464 62.6421V62.5088C75.5464 61.984 75.6099 61.508 75.7368 61.0806C75.868 60.6489 76.0521 60.2786 76.2891 59.9697C76.5303 59.6608 76.8159 59.4238 77.146 59.2588C77.4803 59.0895 77.8527 59.0049 78.2632 59.0049C78.6948 59.0049 79.0715 59.0811 79.3931 59.2334C79.7189 59.3815 79.994 59.5994 80.2183 59.8872C80.4468 60.1707 80.6266 60.5135 80.7578 60.9155C80.889 61.3175 80.98 61.7725 81.0308 62.2803V62.8643C80.9842 63.3678 80.8932 63.8206 80.7578 64.2227C80.6266 64.6247 80.4468 64.9674 80.2183 65.251C79.994 65.5345 79.7189 65.7524 79.3931 65.9048C79.0672 66.0529 78.6864 66.127 78.2505 66.127C77.8485 66.127 77.4803 66.0402 77.146 65.8667C76.8159 65.6932 76.5303 65.4499 76.2891 65.1367C76.0521 64.8236 75.868 64.4554 75.7368 64.0322C75.6099 63.6048 75.5464 63.1414 75.5464 62.6421ZM76.7271 62.5088V62.6421C76.7271 62.9849 76.7609 63.3065 76.8286 63.6069C76.9006 63.9074 77.0106 64.1719 77.1587 64.4004C77.3068 64.6289 77.4951 64.8088 77.7236 64.9399C77.9521 65.0669 78.2251 65.1304 78.5425 65.1304C78.9318 65.1304 79.2513 65.0479 79.501 64.8828C79.7549 64.7178 79.958 64.4998 80.1104 64.229C80.2627 63.9582 80.3812 63.6641 80.4658 63.3467V61.8169C80.415 61.5841 80.341 61.3599 80.2437 61.144C80.1506 60.924 80.0278 60.7293 79.8755 60.5601C79.7274 60.3866 79.5433 60.249 79.3232 60.1475C79.1074 60.0459 78.8514 59.9951 78.5552 59.9951C78.2336 59.9951 77.9564 60.0628 77.7236 60.1982C77.4951 60.3294 77.3068 60.5114 77.1587 60.7441C77.0106 60.9727 76.9006 61.2393 76.8286 61.5439C76.7609 61.8444 76.7271 62.166 76.7271 62.5088Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15.5",y:"47",width:"267",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M57.6997 107V97.9H60.9367C61.6344 97.9 62.2237 98.004 62.7047 98.212C63.1857 98.42 63.5497 98.7407 63.7967 99.174C64.0481 99.6073 64.1737 100.162 64.1737 100.838C64.1737 101.523 64.0502 102.088 63.8032 102.534C63.5562 102.976 63.1944 103.306 62.7177 103.522C62.2411 103.735 61.6604 103.841 60.9757 103.841H59.3637V107H57.6997ZM59.3637 102.45H60.7807C61.3484 102.45 61.7731 102.322 62.0547 102.066C62.3407 101.811 62.4837 101.41 62.4837 100.864C62.4837 100.318 62.3386 99.9193 62.0482 99.668C61.7622 99.4167 61.3267 99.291 60.7417 99.291H59.3637V102.45ZM65.0953 107V100.5H66.6033L66.6423 101.189C66.807 101.007 67.0388 100.825 67.3378 100.643C67.6368 100.461 67.964 100.37 68.3193 100.37C68.4233 100.37 68.5186 100.379 68.6053 100.396L68.4883 101.982C68.393 101.956 68.2976 101.939 68.2023 101.93C68.1113 101.921 68.0203 101.917 67.9293 101.917C67.6563 101.917 67.4071 101.98 67.1818 102.105C66.9565 102.231 66.7983 102.385 66.7073 102.567V107H65.0953ZM72.4051 107.13C71.6207 107.13 70.9664 106.974 70.4421 106.662C69.9221 106.346 69.5321 105.93 69.2721 105.414C69.0121 104.894 68.8821 104.326 68.8821 103.711C68.8821 103.117 69.0034 102.569 69.2461 102.066C69.4931 101.564 69.8527 101.161 70.3251 100.857C70.7974 100.55 71.3737 100.396 72.0541 100.396C72.6781 100.396 73.1981 100.524 73.6141 100.779C74.0301 101.035 74.3421 101.377 74.5501 101.806C74.7581 102.231 74.8621 102.701 74.8621 103.217C74.8621 103.36 74.8534 103.505 74.8361 103.652C74.8187 103.795 74.7927 103.945 74.7581 104.101H70.5591C70.6197 104.504 70.7454 104.831 70.9361 105.082C71.1311 105.329 71.3672 105.511 71.6446 105.628C71.9262 105.745 72.2274 105.804 72.5481 105.804C72.9251 105.804 73.2761 105.756 73.6011 105.661C73.9261 105.561 74.2251 105.431 74.4981 105.271L74.5761 106.636C74.3291 106.766 74.0214 106.881 73.6531 106.98C73.2847 107.08 72.8687 107.13 72.4051 107.13ZM70.5981 103.009H73.2241C73.2241 102.814 73.1872 102.619 73.1136 102.424C73.0399 102.225 72.9164 102.058 72.7431 101.923C72.5741 101.789 72.3444 101.722 72.0541 101.722C71.6381 101.722 71.3109 101.843 71.0726 102.086C70.8342 102.329 70.6761 102.636 70.5981 103.009ZM77.68 107L75.184 100.5H76.77L78.369 104.998L79.968 100.5H81.554L79.058 107H77.68ZM82.3482 107V100.5H83.9602V107H82.3482ZM82.3482 99.512V97.9H83.9602V99.512H82.3482ZM88.4223 107.13C87.716 107.13 87.1136 106.976 86.6153 106.668C86.117 106.361 85.7356 105.951 85.4713 105.44C85.2113 104.929 85.0813 104.37 85.0813 103.763C85.0813 103.152 85.2113 102.589 85.4713 102.073C85.7356 101.557 86.117 101.146 86.6153 100.838C87.1136 100.526 87.716 100.37 88.4223 100.37C89.1286 100.37 89.731 100.526 90.2293 100.838C90.7276 101.146 91.1068 101.557 91.3668 102.073C91.6311 102.589 91.7633 103.152 91.7633 103.763C91.7633 104.37 91.6311 104.929 91.3668 105.44C91.1068 105.951 90.7276 106.361 90.2293 106.668C89.731 106.976 89.1286 107.13 88.4223 107.13ZM88.4223 105.804C88.964 105.804 89.38 105.615 89.6703 105.238C89.965 104.857 90.1123 104.365 90.1123 103.763C90.1123 103.152 89.965 102.656 89.6703 102.274C89.38 101.889 88.964 101.696 88.4223 101.696C87.885 101.696 87.469 101.889 87.1743 102.274C86.8796 102.656 86.7323 103.152 86.7323 103.763C86.7323 104.365 86.8796 104.857 87.1743 105.238C87.469 105.615 87.885 105.804 88.4223 105.804ZM95.5763 107.13C94.9003 107.13 94.3608 106.996 93.9578 106.727C93.5548 106.458 93.2645 106.09 93.0868 105.622C92.9092 105.15 92.8203 104.608 92.8203 103.997V100.5H94.4323V103.997C94.4323 104.599 94.532 105.048 94.7313 105.342C94.935 105.633 95.2643 105.778 95.7193 105.778C96.0833 105.778 96.3845 105.691 96.6228 105.518C96.8655 105.345 97.067 105.102 97.2273 104.79L96.9413 105.609V100.5H98.5533V107H97.0453L96.9673 105.869L97.3183 106.324C97.1623 106.523 96.9153 106.707 96.5773 106.876C96.2437 107.046 95.91 107.13 95.5763 107.13ZM101.904 107.13C101.475 107.13 101.087 107.089 100.741 107.007C100.398 106.924 100.054 106.805 99.7072 106.649L99.8502 105.271C100.184 105.466 100.511 105.624 100.832 105.745C101.157 105.862 101.497 105.921 101.852 105.921C102.173 105.921 102.418 105.869 102.587 105.765C102.756 105.661 102.84 105.496 102.84 105.271C102.84 105.102 102.795 104.963 102.704 104.855C102.617 104.747 102.485 104.649 102.307 104.562C102.13 104.476 101.909 104.383 101.644 104.283C101.246 104.136 100.905 103.975 100.624 103.802C100.346 103.629 100.134 103.421 99.9867 103.178C99.8437 102.931 99.7722 102.628 99.7722 102.268C99.7722 101.895 99.8697 101.566 100.065 101.28C100.26 100.994 100.537 100.771 100.897 100.61C101.256 100.45 101.683 100.37 102.177 100.37C102.589 100.37 102.957 100.415 103.282 100.506C103.612 100.597 103.915 100.721 104.192 100.877L104.049 102.255C103.759 102.051 103.466 101.884 103.172 101.754C102.877 101.62 102.554 101.553 102.203 101.553C101.926 101.553 101.711 101.609 101.56 101.722C101.408 101.835 101.332 101.995 101.332 102.203C101.332 102.454 101.438 102.643 101.651 102.768C101.863 102.894 102.203 103.048 102.671 103.23C102.975 103.347 103.237 103.468 103.458 103.594C103.683 103.72 103.869 103.858 104.017 104.01C104.164 104.162 104.272 104.335 104.342 104.53C104.415 104.721 104.452 104.942 104.452 105.193C104.452 105.605 104.353 105.956 104.153 106.246C103.958 106.532 103.67 106.751 103.289 106.902C102.912 107.054 102.45 107.13 101.904 107.13Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"16",y:"87.5",width:"129.5",height:"30",rx:"15",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"151.5",y:"86.5",width:"131.5",height:"32",rx:"16",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M204.997 107V97.9H206.635L210.522 103.776V97.9H212.186V107H210.821L206.661 100.76V107H204.997ZM216.897 107.13C216.112 107.13 215.458 106.974 214.934 106.662C214.414 106.346 214.024 105.93 213.764 105.414C213.504 104.894 213.374 104.326 213.374 103.711C213.374 103.117 213.495 102.569 213.738 102.066C213.985 101.564 214.344 101.161 214.817 100.857C215.289 100.55 215.865 100.396 216.546 100.396C217.17 100.396 217.69 100.524 218.106 100.779C218.522 101.035 218.834 101.377 219.042 101.806C219.25 102.231 219.354 102.701 219.354 103.217C219.354 103.36 219.345 103.505 219.328 103.652C219.31 103.795 219.284 103.945 219.25 104.101H215.051C215.111 104.504 215.237 104.831 215.428 105.082C215.623 105.329 215.859 105.511 216.136 105.628C216.418 105.745 216.719 105.804 217.04 105.804C217.417 105.804 217.768 105.756 218.093 105.661C218.418 105.561 218.717 105.431 218.99 105.271L219.068 106.636C218.821 106.766 218.513 106.881 218.145 106.98C217.776 107.08 217.36 107.13 216.897 107.13ZM215.09 103.009H217.716C217.716 102.814 217.679 102.619 217.605 102.424C217.532 102.225 217.408 102.058 217.235 101.923C217.066 101.789 216.836 101.722 216.546 101.722C216.13 101.722 215.803 101.843 215.564 102.086C215.326 102.329 215.168 102.636 215.09 103.009ZM219.779 107L221.937 103.75L219.779 100.5H221.703L222.886 102.385L223.978 100.5H225.902L223.744 103.75L225.902 107H223.978L222.795 105.115L221.703 107H219.779ZM228.908 107.13C228.501 107.13 228.169 107.048 227.914 106.883C227.658 106.714 227.469 106.499 227.348 106.239C227.227 105.979 227.166 105.709 227.166 105.427V101.826H226.243L226.386 100.5H227.166V99.07L228.778 98.901V100.5H230.208V101.826H228.778V104.764C228.778 105.093 228.798 105.332 228.837 105.479C228.876 105.622 228.964 105.713 229.103 105.752C229.242 105.787 229.463 105.804 229.766 105.804H230.208L230.065 107.13H228.908Z",fill:"white"})),{BlockClassName:Nr,BlockAddPrevButton:Ir,BlockPrevButtonLabel:Tr}=JetFBComponents,{__:Or}=wp.i18n,{InspectorControls:Jr,useBlockProps:Rr,RichText:qr}=wp.blockEditor?wp.blockEditor:wp.editor,{TextareaControl:Dr,TextControl:zr,PanelBody:Ur,Button:Gr,ToggleControl:Wr}=wp.components,Kr=JSON.parse('{"apiVersion":3,"name":"jet-forms/form-break-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","break","pagebreak","formbreak"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Form Page Break","icon":"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"add_next_button":{"type":"boolean","default":true},"page_break_disabled":{"type":"string","default":"","jfb":{"rich":true}},"label_progress":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:$r}=wp.i18n,{createBlock:Yr}=wp.blocks,{name:Xr,icon:Qr=""}=Kr,en={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Qr}}),description:$r("With the help of Form Break Field, divide one big form into several parts and make those parts appear after filling in the previous part.","jet-form-builder"),edit:function(e){const C=Rr(),{attributes:t,setAttributes:l,editProps:{uniqKey:r,attrHelp:n}}=e;return t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Sr):[e.isSelected&&(0,h.createElement)(Jr,{key:r("InspectorControls")},(0,h.createElement)(Ur,{title:Or("Buttons Settings","jet-form-builder")},(0,h.createElement)(Wr,{key:r("add_next_button"),label:Or('Enable "Next" Button',"jet-form-builder"),checked:t.add_next_button,help:n("add_next_button"),onChange:e=>l({add_next_button:e})}),t.add_next_button&&(0,h.createElement)(zr,{label:Or("Next Button label","jet-form-builder"),value:t.label,onChange:e=>l({label:e})}),(0,h.createElement)(Ir,null),(0,h.createElement)(Tr,null)),(0,h.createElement)(Ur,{title:Or("Page Settings","jet-form-builder")},(0,h.createElement)(zr,{label:Or("Label of progress","jet-form-builder"),value:t.label_progress,help:n("label_progress"),onChange:C=>{e.setAttributes({label_progress:C})}}),(0,h.createElement)(Dr,{key:"page_break_disabled",value:t.page_break_disabled,label:Or("Validation message","jet-form-builder"),help:n("page_break_disabled"),onChange:e=>{l({page_break_disabled:e})}})),(0,h.createElement)(Ur,{title:Or("Advanced","jet-form-builder")},(0,h.createElement)(Nr,null))),(0,h.createElement)("div",{...C,key:r("viewBlock")},(0,h.createElement)("div",{className:"jet-form-builder__next-page-wrap jet-form-builder__bottom-line"},t.add_next_button&&(0,h.createElement)(Gr,{isSecondary:!0,key:"next_page_button",className:"jet-form-builder__next-page"},(0,h.createElement)(qr,{placeholder:"Next...",allowedFormats:[],value:t.label,onChange:e=>l({label:e})})),t.add_prev&&(0,h.createElement)(Gr,{isSecondary:!0,key:"prev_page_button",className:"jet-form-builder__prev-page"},(0,h.createElement)(qr,{placeholder:"Prev...",allowedFormats:[],value:t.prev_label,onChange:e=>l({prev_label:e})})),!t.add_next_button&&!t.add_prev&&(0,h.createElement)("span",null,Or("Form Break","jet-form-builder"))))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Yr("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["jet-forms/submit-field"],isMatch:e=>e.add_next_button,transform:e=>Yr("jet-forms/submit-field",{...e,action_type:"next"}),priority:0},{type:"block",blocks:["core/buttons"],isMatch:e=>e.add_next_button,transform:({label:e=""})=>Yr("core/buttons",{},[Yr("core/button",{text:e})]),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Yr(Xr,{...e}),priority:0},{type:"block",blocks:["jet-forms/submit-field"],isMatch:e=>"next"===e.action_type,transform:e=>Yr(Xr,{...e}),priority:0},{type:"block",blocks:["core/buttons"],transform:(e,C)=>Yr(Xr,{label:C[0]?.attributes?.text||"Next"}),priority:0}]}},Cn=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M47.0752 33.2305V34.748C47.0752 35.5638 47.0023 36.252 46.8564 36.8125C46.7106 37.373 46.501 37.8242 46.2275 38.166C45.9541 38.5078 45.6237 38.7562 45.2363 38.9111C44.8535 39.0615 44.4206 39.1367 43.9375 39.1367C43.5547 39.1367 43.2015 39.0889 42.8779 38.9932C42.5544 38.8975 42.2627 38.7448 42.0029 38.5352C41.7477 38.321 41.529 38.043 41.3467 37.7012C41.1644 37.3594 41.0254 36.9447 40.9297 36.457C40.834 35.9694 40.7861 35.3997 40.7861 34.748V33.2305C40.7861 32.4147 40.859 31.7311 41.0049 31.1797C41.1553 30.6283 41.3672 30.1862 41.6406 29.8535C41.9141 29.5163 42.2422 29.2747 42.625 29.1289C43.0124 28.9831 43.4453 28.9102 43.9238 28.9102C44.3112 28.9102 44.6667 28.958 44.9902 29.0537C45.3184 29.1449 45.61 29.293 45.8652 29.498C46.1204 29.6986 46.3369 29.9674 46.5146 30.3047C46.6969 30.6374 46.8359 31.0452 46.9316 31.5283C47.0273 32.0114 47.0752 32.5788 47.0752 33.2305ZM45.8037 34.9531V33.0186C45.8037 32.5719 45.7764 32.18 45.7217 31.8428C45.6715 31.501 45.5964 31.2093 45.4961 30.9678C45.3958 30.7262 45.2682 30.5303 45.1133 30.3799C44.9629 30.2295 44.7874 30.1201 44.5869 30.0518C44.391 29.9788 44.1699 29.9424 43.9238 29.9424C43.623 29.9424 43.3564 29.9993 43.124 30.1133C42.8916 30.2227 42.6956 30.3981 42.5361 30.6396C42.3812 30.8812 42.2627 31.1979 42.1807 31.5898C42.0986 31.9818 42.0576 32.458 42.0576 33.0186V34.9531C42.0576 35.3997 42.0827 35.7939 42.1328 36.1357C42.1875 36.4775 42.2673 36.7738 42.3721 37.0244C42.4769 37.2705 42.6045 37.4733 42.7549 37.6328C42.9053 37.7923 43.0785 37.9108 43.2744 37.9883C43.4749 38.0612 43.696 38.0977 43.9375 38.0977C44.2474 38.0977 44.5186 38.0384 44.751 37.9199C44.9834 37.8014 45.1771 37.6169 45.332 37.3662C45.4915 37.111 45.61 36.7852 45.6875 36.3887C45.765 35.9876 45.8037 35.5091 45.8037 34.9531ZM52.8584 28.9922V39H51.5938V30.5713L49.0439 31.501V30.3594L52.6602 28.9922H52.8584ZM56.7344 38.3301C56.7344 38.1159 56.8005 37.9359 56.9326 37.79C57.0693 37.6396 57.2653 37.5645 57.5205 37.5645C57.7757 37.5645 57.9694 37.6396 58.1016 37.79C58.2383 37.9359 58.3066 38.1159 58.3066 38.3301C58.3066 38.5397 58.2383 38.7174 58.1016 38.8633C57.9694 39.0091 57.7757 39.082 57.5205 39.082C57.2653 39.082 57.0693 39.0091 56.9326 38.8633C56.8005 38.7174 56.7344 38.5397 56.7344 38.3301ZM71.4248 34.0439V37.6875C71.3018 37.8698 71.1058 38.0749 70.8369 38.3027C70.568 38.526 70.1966 38.722 69.7227 38.8906C69.2533 39.0547 68.6471 39.1367 67.9043 39.1367C67.2982 39.1367 66.7399 39.0319 66.2295 38.8223C65.7236 38.6081 65.2839 38.2982 64.9102 37.8926C64.541 37.4824 64.2539 36.9857 64.0488 36.4023C63.8483 35.8145 63.748 35.1491 63.748 34.4062V33.6338C63.748 32.891 63.8346 32.2279 64.0078 31.6445C64.1855 31.0612 64.4453 30.5667 64.7871 30.1611C65.1289 29.751 65.5482 29.4411 66.0449 29.2314C66.5417 29.0173 67.1113 28.9102 67.7539 28.9102C68.515 28.9102 69.1507 29.0423 69.6611 29.3066C70.1761 29.5664 70.5771 29.9264 70.8643 30.3867C71.1559 30.847 71.3428 31.3711 71.4248 31.959H70.1055C70.0462 31.599 69.9277 31.2708 69.75 30.9746C69.5768 30.6784 69.3285 30.4414 69.0049 30.2637C68.6813 30.0814 68.2643 29.9902 67.7539 29.9902C67.2936 29.9902 66.8949 30.0745 66.5576 30.2432C66.2204 30.4118 65.9424 30.6533 65.7236 30.9678C65.5049 31.2822 65.3408 31.6628 65.2314 32.1094C65.1266 32.556 65.0742 33.0596 65.0742 33.6201V34.4062C65.0742 34.9805 65.1403 35.4932 65.2725 35.9443C65.4092 36.3955 65.6029 36.7806 65.8535 37.0996C66.1042 37.4141 66.4027 37.6533 66.749 37.8174C67.0999 37.9814 67.4873 38.0635 67.9111 38.0635C68.3805 38.0635 68.7611 38.0247 69.0527 37.9473C69.3444 37.8652 69.5723 37.7695 69.7363 37.6602C69.9004 37.5462 70.0257 37.4391 70.1123 37.3389V35.1104H67.8086V34.0439H71.4248ZM76.4902 39.1367C75.9753 39.1367 75.5081 39.0501 75.0889 38.877C74.6742 38.6992 74.3164 38.4508 74.0156 38.1318C73.7194 37.8128 73.4915 37.4346 73.332 36.9971C73.1725 36.5596 73.0928 36.0811 73.0928 35.5615V35.2744C73.0928 34.6729 73.1816 34.1374 73.3594 33.668C73.5371 33.194 73.7786 32.793 74.084 32.4648C74.3893 32.1367 74.7357 31.8883 75.123 31.7197C75.5104 31.5511 75.9115 31.4668 76.3262 31.4668C76.8548 31.4668 77.3105 31.5579 77.6934 31.7402C78.0807 31.9225 78.3975 32.1777 78.6436 32.5059C78.8896 32.8294 79.0719 33.2122 79.1904 33.6543C79.3089 34.0918 79.3682 34.5703 79.3682 35.0898V35.6572H73.8447V34.625H78.1035V34.5293C78.0853 34.2012 78.0169 33.8822 77.8984 33.5723C77.7845 33.2624 77.6022 33.0072 77.3516 32.8066C77.1009 32.6061 76.7591 32.5059 76.3262 32.5059C76.0391 32.5059 75.7747 32.5674 75.5332 32.6904C75.2917 32.8089 75.0843 32.9867 74.9111 33.2236C74.738 33.4606 74.6035 33.75 74.5078 34.0918C74.4121 34.4336 74.3643 34.8278 74.3643 35.2744V35.5615C74.3643 35.9124 74.4121 36.2428 74.5078 36.5527C74.6081 36.8581 74.7516 37.127 74.9385 37.3594C75.1299 37.5918 75.36 37.7741 75.6289 37.9062C75.9023 38.0384 76.2122 38.1045 76.5586 38.1045C77.0052 38.1045 77.3835 38.0133 77.6934 37.8311C78.0033 37.6488 78.2744 37.4049 78.5068 37.0996L79.2725 37.708C79.113 37.9495 78.9102 38.1797 78.6641 38.3984C78.418 38.6172 78.1149 38.7949 77.7549 38.9316C77.3994 39.0684 76.9779 39.1367 76.4902 39.1367ZM82.1094 33.1826V39H80.8447V31.6035H82.041L82.1094 33.1826ZM81.8086 35.0215L81.2822 35.001C81.2868 34.4951 81.362 34.028 81.5078 33.5996C81.6536 33.1667 81.8587 32.7907 82.123 32.4717C82.3874 32.1527 82.7018 31.9066 83.0664 31.7334C83.4355 31.5557 83.8434 31.4668 84.29 31.4668C84.6546 31.4668 84.9827 31.5169 85.2744 31.6172C85.5661 31.7129 85.8145 31.8678 86.0195 32.082C86.2292 32.2962 86.3887 32.5742 86.498 32.916C86.6074 33.2533 86.6621 33.6657 86.6621 34.1533V39H85.3906V34.1396C85.3906 33.7523 85.3337 33.4424 85.2197 33.21C85.1058 32.973 84.9395 32.8021 84.7207 32.6973C84.502 32.5879 84.2331 32.5332 83.9141 32.5332C83.5996 32.5332 83.3125 32.5993 83.0527 32.7314C82.7975 32.8636 82.5765 33.0459 82.3896 33.2783C82.2074 33.5107 82.0638 33.7773 81.959 34.0781C81.8587 34.3743 81.8086 34.6888 81.8086 35.0215ZM91.6523 39.1367C91.1374 39.1367 90.6702 39.0501 90.251 38.877C89.8363 38.6992 89.4785 38.4508 89.1777 38.1318C88.8815 37.8128 88.6536 37.4346 88.4941 36.9971C88.3346 36.5596 88.2549 36.0811 88.2549 35.5615V35.2744C88.2549 34.6729 88.3438 34.1374 88.5215 33.668C88.6992 33.194 88.9408 32.793 89.2461 32.4648C89.5514 32.1367 89.8978 31.8883 90.2852 31.7197C90.6725 31.5511 91.0736 31.4668 91.4883 31.4668C92.0169 31.4668 92.4727 31.5579 92.8555 31.7402C93.2428 31.9225 93.5596 32.1777 93.8057 32.5059C94.0518 32.8294 94.234 33.2122 94.3525 33.6543C94.471 34.0918 94.5303 34.5703 94.5303 35.0898V35.6572H89.0068V34.625H93.2656V34.5293C93.2474 34.2012 93.179 33.8822 93.0605 33.5723C92.9466 33.2624 92.7643 33.0072 92.5137 32.8066C92.263 32.6061 91.9212 32.5059 91.4883 32.5059C91.2012 32.5059 90.9368 32.5674 90.6953 32.6904C90.4538 32.8089 90.2464 32.9867 90.0732 33.2236C89.9001 33.4606 89.7656 33.75 89.6699 34.0918C89.5742 34.4336 89.5264 34.8278 89.5264 35.2744V35.5615C89.5264 35.9124 89.5742 36.2428 89.6699 36.5527C89.7702 36.8581 89.9137 37.127 90.1006 37.3594C90.292 37.5918 90.5221 37.7741 90.791 37.9062C91.0645 38.0384 91.3743 38.1045 91.7207 38.1045C92.1673 38.1045 92.5456 38.0133 92.8555 37.8311C93.1654 37.6488 93.4365 37.4049 93.6689 37.0996L94.4346 37.708C94.2751 37.9495 94.0723 38.1797 93.8262 38.3984C93.5801 38.6172 93.277 38.7949 92.917 38.9316C92.5615 39.0684 92.14 39.1367 91.6523 39.1367ZM97.2715 32.7656V39H96.0068V31.6035H97.2373L97.2715 32.7656ZM99.582 31.5625L99.5752 32.7383C99.4704 32.7155 99.3701 32.7018 99.2744 32.6973C99.1833 32.6882 99.0785 32.6836 98.96 32.6836C98.6683 32.6836 98.4108 32.7292 98.1875 32.8203C97.9642 32.9115 97.7751 33.0391 97.6201 33.2031C97.4652 33.3672 97.3421 33.5632 97.251 33.791C97.1644 34.0143 97.1074 34.2604 97.0801 34.5293L96.7246 34.7344C96.7246 34.2878 96.7679 33.8685 96.8545 33.4766C96.9456 33.0846 97.0846 32.7383 97.2715 32.4375C97.4583 32.1322 97.6953 31.8952 97.9824 31.7266C98.2741 31.5534 98.6204 31.4668 99.0215 31.4668C99.1126 31.4668 99.2174 31.4782 99.3359 31.501C99.4544 31.5192 99.5365 31.5397 99.582 31.5625ZM104.839 37.7354V33.9277C104.839 33.6361 104.78 33.3831 104.661 33.1689C104.547 32.9502 104.374 32.7816 104.142 32.6631C103.909 32.5446 103.622 32.4854 103.28 32.4854C102.961 32.4854 102.681 32.54 102.439 32.6494C102.202 32.7588 102.016 32.9023 101.879 33.0801C101.747 33.2578 101.681 33.4492 101.681 33.6543H100.416C100.416 33.39 100.484 33.1279 100.621 32.8682C100.758 32.6084 100.954 32.3737 101.209 32.1641C101.469 31.9499 101.779 31.7812 102.139 31.6582C102.503 31.5306 102.909 31.4668 103.355 31.4668C103.893 31.4668 104.367 31.5579 104.777 31.7402C105.192 31.9225 105.516 32.1982 105.748 32.5674C105.985 32.932 106.104 33.39 106.104 33.9414V37.3867C106.104 37.6328 106.124 37.8949 106.165 38.1729C106.211 38.4508 106.277 38.6901 106.363 38.8906V39H105.044C104.98 38.8542 104.93 38.6605 104.894 38.4189C104.857 38.1729 104.839 37.945 104.839 37.7354ZM105.058 34.5156L105.071 35.4043H103.793C103.433 35.4043 103.112 35.4339 102.829 35.4932C102.547 35.5479 102.31 35.6322 102.118 35.7461C101.927 35.86 101.781 36.0036 101.681 36.1768C101.58 36.3454 101.53 36.5436 101.53 36.7715C101.53 37.0039 101.583 37.2158 101.688 37.4072C101.792 37.5986 101.95 37.7513 102.159 37.8652C102.373 37.9746 102.635 38.0293 102.945 38.0293C103.333 38.0293 103.674 37.9473 103.971 37.7832C104.267 37.6191 104.502 37.4186 104.675 37.1816C104.853 36.9447 104.948 36.7145 104.962 36.4912L105.502 37.0996C105.47 37.291 105.383 37.5029 105.242 37.7354C105.101 37.9678 104.912 38.1911 104.675 38.4053C104.442 38.6149 104.164 38.7904 103.841 38.9316C103.522 39.0684 103.162 39.1367 102.761 39.1367C102.259 39.1367 101.82 39.0387 101.441 38.8428C101.068 38.6468 100.776 38.3848 100.566 38.0566C100.361 37.724 100.259 37.3525 100.259 36.9424C100.259 36.5459 100.336 36.1973 100.491 35.8965C100.646 35.5911 100.869 35.3382 101.161 35.1377C101.453 34.9326 101.804 34.7777 102.214 34.6729C102.624 34.568 103.082 34.5156 103.588 34.5156H105.058ZM109.467 28.5V39H108.195V28.5H109.467ZM116.344 31.6035V39H115.072V31.6035H116.344ZM114.977 29.6416C114.977 29.4365 115.038 29.2633 115.161 29.1221C115.289 28.9808 115.476 28.9102 115.722 28.9102C115.963 28.9102 116.148 28.9808 116.275 29.1221C116.408 29.2633 116.474 29.4365 116.474 29.6416C116.474 29.8376 116.408 30.0062 116.275 30.1475C116.148 30.2842 115.963 30.3525 115.722 30.3525C115.476 30.3525 115.289 30.2842 115.161 30.1475C115.038 30.0062 114.977 29.8376 114.977 29.6416ZM119.639 33.1826V39H118.374V31.6035H119.57L119.639 33.1826ZM119.338 35.0215L118.812 35.001C118.816 34.4951 118.891 34.028 119.037 33.5996C119.183 33.1667 119.388 32.7907 119.652 32.4717C119.917 32.1527 120.231 31.9066 120.596 31.7334C120.965 31.5557 121.373 31.4668 121.819 31.4668C122.184 31.4668 122.512 31.5169 122.804 31.6172C123.095 31.7129 123.344 31.8678 123.549 32.082C123.758 32.2962 123.918 32.5742 124.027 32.916C124.137 33.2533 124.191 33.6657 124.191 34.1533V39H122.92V34.1396C122.92 33.7523 122.863 33.4424 122.749 33.21C122.635 32.973 122.469 32.8021 122.25 32.6973C122.031 32.5879 121.762 32.5332 121.443 32.5332C121.129 32.5332 120.842 32.5993 120.582 32.7314C120.327 32.8636 120.106 33.0459 119.919 33.2783C119.737 33.5107 119.593 33.7773 119.488 34.0781C119.388 34.3743 119.338 34.6888 119.338 35.0215ZM127.999 39H126.734V30.8242C126.734 30.291 126.83 29.8421 127.021 29.4775C127.217 29.1084 127.498 28.8304 127.862 28.6436C128.227 28.4521 128.66 28.3564 129.161 28.3564C129.307 28.3564 129.453 28.3656 129.599 28.3838C129.749 28.402 129.895 28.4294 130.036 28.4658L129.968 29.498C129.872 29.4753 129.763 29.4593 129.64 29.4502C129.521 29.4411 129.403 29.4365 129.284 29.4365C129.015 29.4365 128.783 29.4912 128.587 29.6006C128.396 29.7054 128.25 29.8604 128.149 30.0654C128.049 30.2705 127.999 30.5234 127.999 30.8242V39ZM129.571 31.6035V32.5742H125.565V31.6035H129.571ZM130.645 35.3838V35.2266C130.645 34.6934 130.722 34.1989 130.877 33.7432C131.032 33.2829 131.255 32.8841 131.547 32.5469C131.839 32.2051 132.192 31.9408 132.606 31.7539C133.021 31.5625 133.486 31.4668 134.001 31.4668C134.521 31.4668 134.988 31.5625 135.402 31.7539C135.822 31.9408 136.177 32.2051 136.469 32.5469C136.765 32.8841 136.991 33.2829 137.146 33.7432C137.3 34.1989 137.378 34.6934 137.378 35.2266V35.3838C137.378 35.917 137.3 36.4115 137.146 36.8672C136.991 37.3229 136.765 37.7217 136.469 38.0635C136.177 38.4007 135.824 38.665 135.409 38.8564C134.999 39.0433 134.534 39.1367 134.015 39.1367C133.495 39.1367 133.028 39.0433 132.613 38.8564C132.199 38.665 131.843 38.4007 131.547 38.0635C131.255 37.7217 131.032 37.3229 130.877 36.8672C130.722 36.4115 130.645 35.917 130.645 35.3838ZM131.909 35.2266V35.3838C131.909 35.7529 131.952 36.1016 132.039 36.4297C132.126 36.7533 132.256 37.0404 132.429 37.291C132.606 37.5417 132.827 37.7399 133.092 37.8857C133.356 38.027 133.664 38.0977 134.015 38.0977C134.361 38.0977 134.664 38.027 134.924 37.8857C135.188 37.7399 135.407 37.5417 135.58 37.291C135.753 37.0404 135.883 36.7533 135.97 36.4297C136.061 36.1016 136.106 35.7529 136.106 35.3838V35.2266C136.106 34.862 136.061 34.5179 135.97 34.1943C135.883 33.8662 135.751 33.5768 135.573 33.3262C135.4 33.071 135.181 32.8704 134.917 32.7246C134.657 32.5788 134.352 32.5059 134.001 32.5059C133.655 32.5059 133.349 32.5788 133.085 32.7246C132.825 32.8704 132.606 33.071 132.429 33.3262C132.256 33.5768 132.126 33.8662 132.039 34.1943C131.952 34.5179 131.909 34.862 131.909 35.2266ZM140.229 32.7656V39H138.964V31.6035H140.194L140.229 32.7656ZM142.539 31.5625L142.532 32.7383C142.427 32.7155 142.327 32.7018 142.231 32.6973C142.14 32.6882 142.035 32.6836 141.917 32.6836C141.625 32.6836 141.368 32.7292 141.145 32.8203C140.921 32.9115 140.732 33.0391 140.577 33.2031C140.422 33.3672 140.299 33.5632 140.208 33.791C140.121 34.0143 140.064 34.2604 140.037 34.5293L139.682 34.7344C139.682 34.2878 139.725 33.8685 139.812 33.4766C139.903 33.0846 140.042 32.7383 140.229 32.4375C140.415 32.1322 140.652 31.8952 140.939 31.7266C141.231 31.5534 141.577 31.4668 141.979 31.4668C142.07 31.4668 142.174 31.4782 142.293 31.501C142.411 31.5192 142.493 31.5397 142.539 31.5625ZM144.966 33.0732V39H143.694V31.6035H144.897L144.966 33.0732ZM144.706 35.0215L144.118 35.001C144.123 34.4951 144.189 34.028 144.316 33.5996C144.444 33.1667 144.633 32.7907 144.884 32.4717C145.134 32.1527 145.447 31.9066 145.82 31.7334C146.194 31.5557 146.627 31.4668 147.119 31.4668C147.465 31.4668 147.785 31.5169 148.076 31.6172C148.368 31.7129 148.621 31.8656 148.835 32.0752C149.049 32.2848 149.215 32.5537 149.334 32.8818C149.452 33.21 149.512 33.6064 149.512 34.0713V39H148.247V34.1328C148.247 33.7454 148.181 33.4355 148.049 33.2031C147.921 32.9707 147.739 32.8021 147.502 32.6973C147.265 32.5879 146.987 32.5332 146.668 32.5332C146.294 32.5332 145.982 32.5993 145.731 32.7314C145.481 32.8636 145.28 33.0459 145.13 33.2783C144.979 33.5107 144.87 33.7773 144.802 34.0781C144.738 34.3743 144.706 34.6888 144.706 35.0215ZM149.498 34.3242L148.65 34.584C148.655 34.1784 148.721 33.7887 148.849 33.415C148.981 33.0413 149.17 32.7087 149.416 32.417C149.667 32.1253 149.974 31.8952 150.339 31.7266C150.703 31.5534 151.12 31.4668 151.59 31.4668C151.986 31.4668 152.337 31.5192 152.643 31.624C152.952 31.7288 153.212 31.8906 153.422 32.1094C153.636 32.3236 153.798 32.5993 153.907 32.9365C154.017 33.2738 154.071 33.6748 154.071 34.1396V39H152.8V34.126C152.8 33.7113 152.734 33.39 152.602 33.1621C152.474 32.9297 152.292 32.7679 152.055 32.6768C151.822 32.5811 151.544 32.5332 151.221 32.5332C150.943 32.5332 150.697 32.5811 150.482 32.6768C150.268 32.7725 150.088 32.9046 149.942 33.0732C149.797 33.2373 149.685 33.4264 149.607 33.6406C149.535 33.8548 149.498 34.0827 149.498 34.3242ZM160.347 37.7354V33.9277C160.347 33.6361 160.287 33.3831 160.169 33.1689C160.055 32.9502 159.882 32.7816 159.649 32.6631C159.417 32.5446 159.13 32.4854 158.788 32.4854C158.469 32.4854 158.189 32.54 157.947 32.6494C157.71 32.7588 157.523 32.9023 157.387 33.0801C157.255 33.2578 157.188 33.4492 157.188 33.6543H155.924C155.924 33.39 155.992 33.1279 156.129 32.8682C156.266 32.6084 156.462 32.3737 156.717 32.1641C156.977 31.9499 157.286 31.7812 157.646 31.6582C158.011 31.5306 158.417 31.4668 158.863 31.4668C159.401 31.4668 159.875 31.5579 160.285 31.7402C160.7 31.9225 161.023 32.1982 161.256 32.5674C161.493 32.932 161.611 33.39 161.611 33.9414V37.3867C161.611 37.6328 161.632 37.8949 161.673 38.1729C161.718 38.4508 161.785 38.6901 161.871 38.8906V39H160.552C160.488 38.8542 160.438 38.6605 160.401 38.4189C160.365 38.1729 160.347 37.945 160.347 37.7354ZM160.565 34.5156L160.579 35.4043H159.301C158.941 35.4043 158.619 35.4339 158.337 35.4932C158.054 35.5479 157.817 35.6322 157.626 35.7461C157.435 35.86 157.289 36.0036 157.188 36.1768C157.088 36.3454 157.038 36.5436 157.038 36.7715C157.038 37.0039 157.09 37.2158 157.195 37.4072C157.3 37.5986 157.457 37.7513 157.667 37.8652C157.881 37.9746 158.143 38.0293 158.453 38.0293C158.84 38.0293 159.182 37.9473 159.479 37.7832C159.775 37.6191 160.009 37.4186 160.183 37.1816C160.36 36.9447 160.456 36.7145 160.47 36.4912L161.01 37.0996C160.978 37.291 160.891 37.5029 160.75 37.7354C160.609 37.9678 160.42 38.1911 160.183 38.4053C159.95 38.6149 159.672 38.7904 159.349 38.9316C159.03 39.0684 158.67 39.1367 158.269 39.1367C157.767 39.1367 157.327 39.0387 156.949 38.8428C156.576 38.6468 156.284 38.3848 156.074 38.0566C155.869 37.724 155.767 37.3525 155.767 36.9424C155.767 36.5459 155.844 36.1973 155.999 35.8965C156.154 35.5911 156.377 35.3382 156.669 35.1377C156.961 34.9326 157.312 34.7777 157.722 34.6729C158.132 34.568 158.59 34.5156 159.096 34.5156H160.565ZM166.697 31.6035V32.5742H162.698V31.6035H166.697ZM164.052 29.8057H165.316V37.168C165.316 37.4186 165.355 37.6077 165.433 37.7354C165.51 37.863 165.61 37.9473 165.733 37.9883C165.856 38.0293 165.989 38.0498 166.13 38.0498C166.235 38.0498 166.344 38.0407 166.458 38.0225C166.576 37.9997 166.665 37.9814 166.725 37.9678L166.731 39C166.631 39.0319 166.499 39.0615 166.335 39.0889C166.175 39.1208 165.982 39.1367 165.754 39.1367C165.444 39.1367 165.159 39.0752 164.899 38.9521C164.64 38.8291 164.432 38.624 164.277 38.3369C164.127 38.0452 164.052 37.6533 164.052 37.1611V29.8057ZM169.555 31.6035V39H168.283V31.6035H169.555ZM168.188 29.6416C168.188 29.4365 168.249 29.2633 168.372 29.1221C168.5 28.9808 168.687 28.9102 168.933 28.9102C169.174 28.9102 169.359 28.9808 169.486 29.1221C169.618 29.2633 169.685 29.4365 169.685 29.6416C169.685 29.8376 169.618 30.0062 169.486 30.1475C169.359 30.2842 169.174 30.3525 168.933 30.3525C168.687 30.3525 168.5 30.2842 168.372 30.1475C168.249 30.0062 168.188 29.8376 168.188 29.6416ZM171.25 35.3838V35.2266C171.25 34.6934 171.327 34.1989 171.482 33.7432C171.637 33.2829 171.861 32.8841 172.152 32.5469C172.444 32.2051 172.797 31.9408 173.212 31.7539C173.627 31.5625 174.091 31.4668 174.606 31.4668C175.126 31.4668 175.593 31.5625 176.008 31.7539C176.427 31.9408 176.783 32.2051 177.074 32.5469C177.37 32.8841 177.596 33.2829 177.751 33.7432C177.906 34.1989 177.983 34.6934 177.983 35.2266V35.3838C177.983 35.917 177.906 36.4115 177.751 36.8672C177.596 37.3229 177.37 37.7217 177.074 38.0635C176.783 38.4007 176.429 38.665 176.015 38.8564C175.604 39.0433 175.14 39.1367 174.62 39.1367C174.101 39.1367 173.633 39.0433 173.219 38.8564C172.804 38.665 172.449 38.4007 172.152 38.0635C171.861 37.7217 171.637 37.3229 171.482 36.8672C171.327 36.4115 171.25 35.917 171.25 35.3838ZM172.515 35.2266V35.3838C172.515 35.7529 172.558 36.1016 172.645 36.4297C172.731 36.7533 172.861 37.0404 173.034 37.291C173.212 37.5417 173.433 37.7399 173.697 37.8857C173.962 38.027 174.269 38.0977 174.62 38.0977C174.966 38.0977 175.27 38.027 175.529 37.8857C175.794 37.7399 176.012 37.5417 176.186 37.291C176.359 37.0404 176.489 36.7533 176.575 36.4297C176.666 36.1016 176.712 35.7529 176.712 35.3838V35.2266C176.712 34.862 176.666 34.5179 176.575 34.1943C176.489 33.8662 176.356 33.5768 176.179 33.3262C176.006 33.071 175.787 32.8704 175.522 32.7246C175.263 32.5788 174.957 32.5059 174.606 32.5059C174.26 32.5059 173.955 32.5788 173.69 32.7246C173.431 32.8704 173.212 33.071 173.034 33.3262C172.861 33.5768 172.731 33.8662 172.645 34.1943C172.558 34.5179 172.515 34.862 172.515 35.2266ZM180.834 33.1826V39H179.569V31.6035H180.766L180.834 33.1826ZM180.533 35.0215L180.007 35.001C180.011 34.4951 180.087 34.028 180.232 33.5996C180.378 33.1667 180.583 32.7907 180.848 32.4717C181.112 32.1527 181.426 31.9066 181.791 31.7334C182.16 31.5557 182.568 31.4668 183.015 31.4668C183.379 31.4668 183.707 31.5169 183.999 31.6172C184.291 31.7129 184.539 31.8678 184.744 32.082C184.954 32.2962 185.113 32.5742 185.223 32.916C185.332 33.2533 185.387 33.6657 185.387 34.1533V39H184.115V34.1396C184.115 33.7523 184.058 33.4424 183.944 33.21C183.83 32.973 183.664 32.8021 183.445 32.6973C183.227 32.5879 182.958 32.5332 182.639 32.5332C182.324 32.5332 182.037 32.5993 181.777 32.7314C181.522 32.8636 181.301 33.0459 181.114 33.2783C180.932 33.5107 180.788 33.7773 180.684 34.0781C180.583 34.3743 180.533 34.6888 180.533 35.0215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15",y:"52",width:"268",height:"40",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M258 72H40",stroke:"#4272F9",strokeWidth:"3",strokeLinecap:"round"}),(0,h.createElement)("path",{d:"M47.0752 109.23V110.748C47.0752 111.564 47.0023 112.252 46.8564 112.812C46.7106 113.373 46.501 113.824 46.2275 114.166C45.9541 114.508 45.6237 114.756 45.2363 114.911C44.8535 115.062 44.4206 115.137 43.9375 115.137C43.5547 115.137 43.2015 115.089 42.8779 114.993C42.5544 114.897 42.2627 114.745 42.0029 114.535C41.7477 114.321 41.529 114.043 41.3467 113.701C41.1644 113.359 41.0254 112.945 40.9297 112.457C40.834 111.969 40.7861 111.4 40.7861 110.748V109.23C40.7861 108.415 40.859 107.731 41.0049 107.18C41.1553 106.628 41.3672 106.186 41.6406 105.854C41.9141 105.516 42.2422 105.275 42.625 105.129C43.0124 104.983 43.4453 104.91 43.9238 104.91C44.3112 104.91 44.6667 104.958 44.9902 105.054C45.3184 105.145 45.61 105.293 45.8652 105.498C46.1204 105.699 46.3369 105.967 46.5146 106.305C46.6969 106.637 46.8359 107.045 46.9316 107.528C47.0273 108.011 47.0752 108.579 47.0752 109.23ZM45.8037 110.953V109.019C45.8037 108.572 45.7764 108.18 45.7217 107.843C45.6715 107.501 45.5964 107.209 45.4961 106.968C45.3958 106.726 45.2682 106.53 45.1133 106.38C44.9629 106.229 44.7874 106.12 44.5869 106.052C44.391 105.979 44.1699 105.942 43.9238 105.942C43.623 105.942 43.3564 105.999 43.124 106.113C42.8916 106.223 42.6956 106.398 42.5361 106.64C42.3812 106.881 42.2627 107.198 42.1807 107.59C42.0986 107.982 42.0576 108.458 42.0576 109.019V110.953C42.0576 111.4 42.0827 111.794 42.1328 112.136C42.1875 112.478 42.2673 112.774 42.3721 113.024C42.4769 113.271 42.6045 113.473 42.7549 113.633C42.9053 113.792 43.0785 113.911 43.2744 113.988C43.4749 114.061 43.696 114.098 43.9375 114.098C44.2474 114.098 44.5186 114.038 44.751 113.92C44.9834 113.801 45.1771 113.617 45.332 113.366C45.4915 113.111 45.61 112.785 45.6875 112.389C45.765 111.988 45.8037 111.509 45.8037 110.953ZM55.2236 113.961V115H48.709V114.091L51.9697 110.461C52.3708 110.014 52.6807 109.636 52.8994 109.326C53.1227 109.012 53.2777 108.731 53.3643 108.485C53.4554 108.235 53.501 107.979 53.501 107.72C53.501 107.392 53.4326 107.095 53.2959 106.831C53.1637 106.562 52.9678 106.348 52.708 106.188C52.4482 106.029 52.1338 105.949 51.7646 105.949C51.3226 105.949 50.9535 106.036 50.6572 106.209C50.3656 106.378 50.1468 106.615 50.001 106.92C49.8551 107.225 49.7822 107.576 49.7822 107.973H48.5176C48.5176 107.412 48.6406 106.899 48.8867 106.435C49.1328 105.97 49.4974 105.601 49.9805 105.327C50.4635 105.049 51.0583 104.91 51.7646 104.91C52.3936 104.91 52.9313 105.022 53.3779 105.245C53.8245 105.464 54.1663 105.774 54.4033 106.175C54.6449 106.571 54.7656 107.036 54.7656 107.569C54.7656 107.861 54.7155 108.157 54.6152 108.458C54.5195 108.754 54.3851 109.05 54.2119 109.347C54.0433 109.643 53.8451 109.935 53.6172 110.222C53.3939 110.509 53.1546 110.791 52.8994 111.069L50.2334 113.961H55.2236ZM56.7344 114.33C56.7344 114.116 56.8005 113.936 56.9326 113.79C57.0693 113.64 57.2653 113.564 57.5205 113.564C57.7757 113.564 57.9694 113.64 58.1016 113.79C58.2383 113.936 58.3066 114.116 58.3066 114.33C58.3066 114.54 58.2383 114.717 58.1016 114.863C57.9694 115.009 57.7757 115.082 57.5205 115.082C57.2653 115.082 57.0693 115.009 56.9326 114.863C56.8005 114.717 56.7344 114.54 56.7344 114.33ZM67.7402 111.097H65.0811V110.023H67.7402C68.2552 110.023 68.6722 109.941 68.9912 109.777C69.3102 109.613 69.5426 109.385 69.6885 109.094C69.8389 108.802 69.9141 108.469 69.9141 108.096C69.9141 107.754 69.8389 107.433 69.6885 107.132C69.5426 106.831 69.3102 106.59 68.9912 106.407C68.6722 106.22 68.2552 106.127 67.7402 106.127H65.3887V115H64.0693V105.047H67.7402C68.4922 105.047 69.1279 105.177 69.6475 105.437C70.167 105.696 70.5612 106.056 70.8301 106.517C71.099 106.972 71.2334 107.494 71.2334 108.082C71.2334 108.72 71.099 109.265 70.8301 109.716C70.5612 110.167 70.167 110.511 69.6475 110.748C69.1279 110.98 68.4922 111.097 67.7402 111.097ZM75.6836 115.137C75.1686 115.137 74.7015 115.05 74.2822 114.877C73.8675 114.699 73.5098 114.451 73.209 114.132C72.9128 113.813 72.6849 113.435 72.5254 112.997C72.3659 112.56 72.2861 112.081 72.2861 111.562V111.274C72.2861 110.673 72.375 110.137 72.5527 109.668C72.7305 109.194 72.972 108.793 73.2773 108.465C73.5827 108.137 73.929 107.888 74.3164 107.72C74.7038 107.551 75.1048 107.467 75.5195 107.467C76.0482 107.467 76.5039 107.558 76.8867 107.74C77.2741 107.923 77.5908 108.178 77.8369 108.506C78.083 108.829 78.2653 109.212 78.3838 109.654C78.5023 110.092 78.5615 110.57 78.5615 111.09V111.657H73.0381V110.625H77.2969V110.529C77.2786 110.201 77.2103 109.882 77.0918 109.572C76.9779 109.262 76.7956 109.007 76.5449 108.807C76.2943 108.606 75.9525 108.506 75.5195 108.506C75.2324 108.506 74.9681 108.567 74.7266 108.69C74.485 108.809 74.2777 108.987 74.1045 109.224C73.9313 109.461 73.7969 109.75 73.7012 110.092C73.6055 110.434 73.5576 110.828 73.5576 111.274V111.562C73.5576 111.912 73.6055 112.243 73.7012 112.553C73.8014 112.858 73.945 113.127 74.1318 113.359C74.3232 113.592 74.5534 113.774 74.8223 113.906C75.0957 114.038 75.4056 114.104 75.752 114.104C76.1986 114.104 76.5768 114.013 76.8867 113.831C77.1966 113.649 77.4678 113.405 77.7002 113.1L78.4658 113.708C78.3063 113.95 78.1035 114.18 77.8574 114.398C77.6113 114.617 77.3083 114.795 76.9482 114.932C76.5928 115.068 76.1712 115.137 75.6836 115.137ZM81.3027 108.766V115H80.0381V107.604H81.2686L81.3027 108.766ZM83.6133 107.562L83.6064 108.738C83.5016 108.715 83.4014 108.702 83.3057 108.697C83.2145 108.688 83.1097 108.684 82.9912 108.684C82.6995 108.684 82.4421 108.729 82.2188 108.82C81.9954 108.911 81.8063 109.039 81.6514 109.203C81.4964 109.367 81.3734 109.563 81.2822 109.791C81.1956 110.014 81.1387 110.26 81.1113 110.529L80.7559 110.734C80.7559 110.288 80.7992 109.868 80.8857 109.477C80.9769 109.085 81.1159 108.738 81.3027 108.438C81.4896 108.132 81.7266 107.895 82.0137 107.727C82.3053 107.553 82.6517 107.467 83.0527 107.467C83.1439 107.467 83.2487 107.478 83.3672 107.501C83.4857 107.519 83.5677 107.54 83.6133 107.562ZM89.0889 113.038C89.0889 112.856 89.0479 112.687 88.9658 112.532C88.8883 112.373 88.7266 112.229 88.4805 112.102C88.2389 111.969 87.8743 111.855 87.3867 111.76C86.9766 111.673 86.6051 111.571 86.2725 111.452C85.9443 111.334 85.6641 111.19 85.4316 111.021C85.2038 110.853 85.0283 110.655 84.9053 110.427C84.7822 110.199 84.7207 109.932 84.7207 109.627C84.7207 109.335 84.7845 109.06 84.9121 108.8C85.0443 108.54 85.2288 108.31 85.4658 108.109C85.7074 107.909 85.9967 107.752 86.334 107.638C86.6712 107.524 87.0472 107.467 87.4619 107.467C88.0544 107.467 88.5602 107.572 88.9795 107.781C89.3988 107.991 89.7201 108.271 89.9434 108.622C90.1667 108.968 90.2783 109.354 90.2783 109.777H89.0137C89.0137 109.572 88.9521 109.374 88.8291 109.183C88.7106 108.987 88.5352 108.825 88.3027 108.697C88.0749 108.57 87.7946 108.506 87.4619 108.506C87.111 108.506 86.8262 108.561 86.6074 108.67C86.3932 108.775 86.236 108.909 86.1357 109.073C86.04 109.237 85.9922 109.41 85.9922 109.593C85.9922 109.729 86.015 109.853 86.0605 109.962C86.1107 110.067 86.1973 110.165 86.3203 110.256C86.4434 110.342 86.6165 110.424 86.8398 110.502C87.0632 110.579 87.348 110.657 87.6943 110.734C88.3005 110.871 88.7995 111.035 89.1914 111.227C89.5833 111.418 89.875 111.653 90.0664 111.931C90.2578 112.209 90.3535 112.546 90.3535 112.942C90.3535 113.266 90.2852 113.562 90.1484 113.831C90.0163 114.1 89.8226 114.332 89.5674 114.528C89.3167 114.72 89.016 114.87 88.665 114.979C88.3187 115.084 87.929 115.137 87.4961 115.137C86.8444 115.137 86.293 115.021 85.8418 114.788C85.3906 114.556 85.0488 114.255 84.8164 113.886C84.584 113.517 84.4678 113.127 84.4678 112.717H85.7393C85.7575 113.063 85.8577 113.339 86.04 113.544C86.2223 113.744 86.4456 113.888 86.71 113.975C86.9743 114.057 87.2363 114.098 87.4961 114.098C87.8424 114.098 88.1318 114.052 88.3643 113.961C88.6012 113.87 88.7812 113.744 88.9043 113.585C89.0273 113.425 89.0889 113.243 89.0889 113.038ZM91.6797 111.384V111.227C91.6797 110.693 91.7572 110.199 91.9121 109.743C92.0671 109.283 92.2904 108.884 92.582 108.547C92.8737 108.205 93.2269 107.941 93.6416 107.754C94.0563 107.562 94.5212 107.467 95.0361 107.467C95.5557 107.467 96.0228 107.562 96.4375 107.754C96.8568 107.941 97.2122 108.205 97.5039 108.547C97.8001 108.884 98.0257 109.283 98.1807 109.743C98.3356 110.199 98.4131 110.693 98.4131 111.227V111.384C98.4131 111.917 98.3356 112.411 98.1807 112.867C98.0257 113.323 97.8001 113.722 97.5039 114.063C97.2122 114.401 96.859 114.665 96.4443 114.856C96.0342 115.043 95.5693 115.137 95.0498 115.137C94.5303 115.137 94.0632 115.043 93.6484 114.856C93.2337 114.665 92.8783 114.401 92.582 114.063C92.2904 113.722 92.0671 113.323 91.9121 112.867C91.7572 112.411 91.6797 111.917 91.6797 111.384ZM92.9443 111.227V111.384C92.9443 111.753 92.9876 112.102 93.0742 112.43C93.1608 112.753 93.2907 113.04 93.4639 113.291C93.6416 113.542 93.8626 113.74 94.127 113.886C94.3913 114.027 94.6989 114.098 95.0498 114.098C95.3962 114.098 95.6992 114.027 95.959 113.886C96.2233 113.74 96.4421 113.542 96.6152 113.291C96.7884 113.04 96.9183 112.753 97.0049 112.43C97.096 112.102 97.1416 111.753 97.1416 111.384V111.227C97.1416 110.862 97.096 110.518 97.0049 110.194C96.9183 109.866 96.7861 109.577 96.6084 109.326C96.4352 109.071 96.2165 108.87 95.9521 108.725C95.6924 108.579 95.387 108.506 95.0361 108.506C94.6898 108.506 94.3844 108.579 94.1201 108.725C93.8604 108.87 93.6416 109.071 93.4639 109.326C93.2907 109.577 93.1608 109.866 93.0742 110.194C92.9876 110.518 92.9443 110.862 92.9443 111.227ZM101.264 109.183V115H99.999V107.604H101.195L101.264 109.183ZM100.963 111.021L100.437 111.001C100.441 110.495 100.516 110.028 100.662 109.6C100.808 109.167 101.013 108.791 101.277 108.472C101.542 108.153 101.856 107.907 102.221 107.733C102.59 107.556 102.998 107.467 103.444 107.467C103.809 107.467 104.137 107.517 104.429 107.617C104.72 107.713 104.969 107.868 105.174 108.082C105.383 108.296 105.543 108.574 105.652 108.916C105.762 109.253 105.816 109.666 105.816 110.153V115H104.545V110.14C104.545 109.752 104.488 109.442 104.374 109.21C104.26 108.973 104.094 108.802 103.875 108.697C103.656 108.588 103.387 108.533 103.068 108.533C102.754 108.533 102.467 108.599 102.207 108.731C101.952 108.864 101.731 109.046 101.544 109.278C101.362 109.511 101.218 109.777 101.113 110.078C101.013 110.374 100.963 110.689 100.963 111.021ZM112.099 113.735V109.928C112.099 109.636 112.039 109.383 111.921 109.169C111.807 108.95 111.634 108.782 111.401 108.663C111.169 108.545 110.882 108.485 110.54 108.485C110.221 108.485 109.941 108.54 109.699 108.649C109.462 108.759 109.275 108.902 109.139 109.08C109.007 109.258 108.94 109.449 108.94 109.654H107.676C107.676 109.39 107.744 109.128 107.881 108.868C108.018 108.608 108.214 108.374 108.469 108.164C108.729 107.95 109.038 107.781 109.398 107.658C109.763 107.531 110.169 107.467 110.615 107.467C111.153 107.467 111.627 107.558 112.037 107.74C112.452 107.923 112.775 108.198 113.008 108.567C113.245 108.932 113.363 109.39 113.363 109.941V113.387C113.363 113.633 113.384 113.895 113.425 114.173C113.47 114.451 113.536 114.69 113.623 114.891V115H112.304C112.24 114.854 112.19 114.66 112.153 114.419C112.117 114.173 112.099 113.945 112.099 113.735ZM112.317 110.516L112.331 111.404H111.053C110.693 111.404 110.371 111.434 110.089 111.493C109.806 111.548 109.569 111.632 109.378 111.746C109.187 111.86 109.041 112.004 108.94 112.177C108.84 112.345 108.79 112.544 108.79 112.771C108.79 113.004 108.842 113.216 108.947 113.407C109.052 113.599 109.209 113.751 109.419 113.865C109.633 113.975 109.895 114.029 110.205 114.029C110.592 114.029 110.934 113.947 111.23 113.783C111.527 113.619 111.761 113.419 111.935 113.182C112.112 112.945 112.208 112.715 112.222 112.491L112.762 113.1C112.73 113.291 112.643 113.503 112.502 113.735C112.361 113.968 112.172 114.191 111.935 114.405C111.702 114.615 111.424 114.79 111.101 114.932C110.782 115.068 110.422 115.137 110.021 115.137C109.519 115.137 109.079 115.039 108.701 114.843C108.327 114.647 108.036 114.385 107.826 114.057C107.621 113.724 107.519 113.353 107.519 112.942C107.519 112.546 107.596 112.197 107.751 111.896C107.906 111.591 108.129 111.338 108.421 111.138C108.713 110.933 109.063 110.778 109.474 110.673C109.884 110.568 110.342 110.516 110.848 110.516H112.317ZM116.727 104.5V115H115.455V104.5H116.727ZM123.604 107.604V115H122.332V107.604H123.604ZM122.236 105.642C122.236 105.437 122.298 105.263 122.421 105.122C122.549 104.981 122.735 104.91 122.981 104.91C123.223 104.91 123.408 104.981 123.535 105.122C123.667 105.263 123.733 105.437 123.733 105.642C123.733 105.838 123.667 106.006 123.535 106.147C123.408 106.284 123.223 106.353 122.981 106.353C122.735 106.353 122.549 106.284 122.421 106.147C122.298 106.006 122.236 105.838 122.236 105.642ZM126.898 109.183V115H125.634V107.604H126.83L126.898 109.183ZM126.598 111.021L126.071 111.001C126.076 110.495 126.151 110.028 126.297 109.6C126.443 109.167 126.648 108.791 126.912 108.472C127.176 108.153 127.491 107.907 127.855 107.733C128.225 107.556 128.632 107.467 129.079 107.467C129.444 107.467 129.772 107.517 130.063 107.617C130.355 107.713 130.604 107.868 130.809 108.082C131.018 108.296 131.178 108.574 131.287 108.916C131.396 109.253 131.451 109.666 131.451 110.153V115H130.18V110.14C130.18 109.752 130.123 109.442 130.009 109.21C129.895 108.973 129.729 108.802 129.51 108.697C129.291 108.588 129.022 108.533 128.703 108.533C128.389 108.533 128.102 108.599 127.842 108.731C127.587 108.864 127.366 109.046 127.179 109.278C126.996 109.511 126.853 109.777 126.748 110.078C126.648 110.374 126.598 110.689 126.598 111.021ZM135.259 115H133.994V106.824C133.994 106.291 134.09 105.842 134.281 105.478C134.477 105.108 134.757 104.83 135.122 104.644C135.487 104.452 135.92 104.356 136.421 104.356C136.567 104.356 136.713 104.366 136.858 104.384C137.009 104.402 137.155 104.429 137.296 104.466L137.228 105.498C137.132 105.475 137.022 105.459 136.899 105.45C136.781 105.441 136.662 105.437 136.544 105.437C136.275 105.437 136.043 105.491 135.847 105.601C135.655 105.705 135.509 105.86 135.409 106.065C135.309 106.271 135.259 106.523 135.259 106.824V115ZM136.831 107.604V108.574H132.825V107.604H136.831ZM137.904 111.384V111.227C137.904 110.693 137.982 110.199 138.137 109.743C138.292 109.283 138.515 108.884 138.807 108.547C139.098 108.205 139.451 107.941 139.866 107.754C140.281 107.562 140.746 107.467 141.261 107.467C141.78 107.467 142.247 107.562 142.662 107.754C143.081 107.941 143.437 108.205 143.729 108.547C144.025 108.884 144.25 109.283 144.405 109.743C144.56 110.199 144.638 110.693 144.638 111.227V111.384C144.638 111.917 144.56 112.411 144.405 112.867C144.25 113.323 144.025 113.722 143.729 114.063C143.437 114.401 143.084 114.665 142.669 114.856C142.259 115.043 141.794 115.137 141.274 115.137C140.755 115.137 140.288 115.043 139.873 114.856C139.458 114.665 139.103 114.401 138.807 114.063C138.515 113.722 138.292 113.323 138.137 112.867C137.982 112.411 137.904 111.917 137.904 111.384ZM139.169 111.227V111.384C139.169 111.753 139.212 112.102 139.299 112.43C139.385 112.753 139.515 113.04 139.688 113.291C139.866 113.542 140.087 113.74 140.352 113.886C140.616 114.027 140.924 114.098 141.274 114.098C141.621 114.098 141.924 114.027 142.184 113.886C142.448 113.74 142.667 113.542 142.84 113.291C143.013 113.04 143.143 112.753 143.229 112.43C143.321 112.102 143.366 111.753 143.366 111.384V111.227C143.366 110.862 143.321 110.518 143.229 110.194C143.143 109.866 143.011 109.577 142.833 109.326C142.66 109.071 142.441 108.87 142.177 108.725C141.917 108.579 141.612 108.506 141.261 108.506C140.914 108.506 140.609 108.579 140.345 108.725C140.085 108.87 139.866 109.071 139.688 109.326C139.515 109.577 139.385 109.866 139.299 110.194C139.212 110.518 139.169 110.862 139.169 111.227ZM147.488 108.766V115H146.224V107.604H147.454L147.488 108.766ZM149.799 107.562L149.792 108.738C149.687 108.715 149.587 108.702 149.491 108.697C149.4 108.688 149.295 108.684 149.177 108.684C148.885 108.684 148.628 108.729 148.404 108.82C148.181 108.911 147.992 109.039 147.837 109.203C147.682 109.367 147.559 109.563 147.468 109.791C147.381 110.014 147.324 110.26 147.297 110.529L146.941 110.734C146.941 110.288 146.985 109.868 147.071 109.477C147.162 109.085 147.301 108.738 147.488 108.438C147.675 108.132 147.912 107.895 148.199 107.727C148.491 107.553 148.837 107.467 149.238 107.467C149.329 107.467 149.434 107.478 149.553 107.501C149.671 107.519 149.753 107.54 149.799 107.562ZM152.226 109.073V115H150.954V107.604H152.157L152.226 109.073ZM151.966 111.021L151.378 111.001C151.382 110.495 151.449 110.028 151.576 109.6C151.704 109.167 151.893 108.791 152.144 108.472C152.394 108.153 152.706 107.907 153.08 107.733C153.454 107.556 153.887 107.467 154.379 107.467C154.725 107.467 155.044 107.517 155.336 107.617C155.628 107.713 155.881 107.866 156.095 108.075C156.309 108.285 156.475 108.554 156.594 108.882C156.712 109.21 156.771 109.606 156.771 110.071V115H155.507V110.133C155.507 109.745 155.441 109.436 155.309 109.203C155.181 108.971 154.999 108.802 154.762 108.697C154.525 108.588 154.247 108.533 153.928 108.533C153.554 108.533 153.242 108.599 152.991 108.731C152.741 108.864 152.54 109.046 152.39 109.278C152.239 109.511 152.13 109.777 152.062 110.078C151.998 110.374 151.966 110.689 151.966 111.021ZM156.758 110.324L155.91 110.584C155.915 110.178 155.981 109.789 156.108 109.415C156.241 109.041 156.43 108.709 156.676 108.417C156.926 108.125 157.234 107.895 157.599 107.727C157.963 107.553 158.38 107.467 158.85 107.467C159.246 107.467 159.597 107.519 159.902 107.624C160.212 107.729 160.472 107.891 160.682 108.109C160.896 108.324 161.058 108.599 161.167 108.937C161.276 109.274 161.331 109.675 161.331 110.14V115H160.06V110.126C160.06 109.711 159.993 109.39 159.861 109.162C159.734 108.93 159.551 108.768 159.314 108.677C159.082 108.581 158.804 108.533 158.48 108.533C158.202 108.533 157.956 108.581 157.742 108.677C157.528 108.772 157.348 108.905 157.202 109.073C157.056 109.237 156.945 109.426 156.867 109.641C156.794 109.855 156.758 110.083 156.758 110.324ZM167.606 113.735V109.928C167.606 109.636 167.547 109.383 167.429 109.169C167.315 108.95 167.142 108.782 166.909 108.663C166.677 108.545 166.39 108.485 166.048 108.485C165.729 108.485 165.449 108.54 165.207 108.649C164.97 108.759 164.783 108.902 164.646 109.08C164.514 109.258 164.448 109.449 164.448 109.654H163.184C163.184 109.39 163.252 109.128 163.389 108.868C163.525 108.608 163.721 108.374 163.977 108.164C164.236 107.95 164.546 107.781 164.906 107.658C165.271 107.531 165.676 107.467 166.123 107.467C166.661 107.467 167.135 107.558 167.545 107.74C167.96 107.923 168.283 108.198 168.516 108.567C168.753 108.932 168.871 109.39 168.871 109.941V113.387C168.871 113.633 168.892 113.895 168.933 114.173C168.978 114.451 169.044 114.69 169.131 114.891V115H167.812C167.748 114.854 167.698 114.66 167.661 114.419C167.625 114.173 167.606 113.945 167.606 113.735ZM167.825 110.516L167.839 111.404H166.561C166.201 111.404 165.879 111.434 165.597 111.493C165.314 111.548 165.077 111.632 164.886 111.746C164.694 111.86 164.549 112.004 164.448 112.177C164.348 112.345 164.298 112.544 164.298 112.771C164.298 113.004 164.35 113.216 164.455 113.407C164.56 113.599 164.717 113.751 164.927 113.865C165.141 113.975 165.403 114.029 165.713 114.029C166.1 114.029 166.442 113.947 166.738 113.783C167.035 113.619 167.269 113.419 167.442 113.182C167.62 112.945 167.716 112.715 167.729 112.491L168.27 113.1C168.238 113.291 168.151 113.503 168.01 113.735C167.868 113.968 167.679 114.191 167.442 114.405C167.21 114.615 166.932 114.79 166.608 114.932C166.289 115.068 165.929 115.137 165.528 115.137C165.027 115.137 164.587 115.039 164.209 114.843C163.835 114.647 163.544 114.385 163.334 114.057C163.129 113.724 163.026 113.353 163.026 112.942C163.026 112.546 163.104 112.197 163.259 111.896C163.414 111.591 163.637 111.338 163.929 111.138C164.22 110.933 164.571 110.778 164.981 110.673C165.392 110.568 165.85 110.516 166.355 110.516H167.825ZM173.957 107.604V108.574H169.958V107.604H173.957ZM171.312 105.806H172.576V113.168C172.576 113.419 172.615 113.608 172.692 113.735C172.77 113.863 172.87 113.947 172.993 113.988C173.116 114.029 173.248 114.05 173.39 114.05C173.494 114.05 173.604 114.041 173.718 114.022C173.836 114 173.925 113.981 173.984 113.968L173.991 115C173.891 115.032 173.759 115.062 173.595 115.089C173.435 115.121 173.242 115.137 173.014 115.137C172.704 115.137 172.419 115.075 172.159 114.952C171.899 114.829 171.692 114.624 171.537 114.337C171.387 114.045 171.312 113.653 171.312 113.161V105.806ZM176.814 107.604V115H175.543V107.604H176.814ZM175.447 105.642C175.447 105.437 175.509 105.263 175.632 105.122C175.759 104.981 175.946 104.91 176.192 104.91C176.434 104.91 176.618 104.981 176.746 105.122C176.878 105.263 176.944 105.437 176.944 105.642C176.944 105.838 176.878 106.006 176.746 106.147C176.618 106.284 176.434 106.353 176.192 106.353C175.946 106.353 175.759 106.284 175.632 106.147C175.509 106.006 175.447 105.838 175.447 105.642ZM178.51 111.384V111.227C178.51 110.693 178.587 110.199 178.742 109.743C178.897 109.283 179.12 108.884 179.412 108.547C179.704 108.205 180.057 107.941 180.472 107.754C180.886 107.562 181.351 107.467 181.866 107.467C182.386 107.467 182.853 107.562 183.268 107.754C183.687 107.941 184.042 108.205 184.334 108.547C184.63 108.884 184.856 109.283 185.011 109.743C185.166 110.199 185.243 110.693 185.243 111.227V111.384C185.243 111.917 185.166 112.411 185.011 112.867C184.856 113.323 184.63 113.722 184.334 114.063C184.042 114.401 183.689 114.665 183.274 114.856C182.864 115.043 182.399 115.137 181.88 115.137C181.36 115.137 180.893 115.043 180.479 114.856C180.064 114.665 179.708 114.401 179.412 114.063C179.12 113.722 178.897 113.323 178.742 112.867C178.587 112.411 178.51 111.917 178.51 111.384ZM179.774 111.227V111.384C179.774 111.753 179.818 112.102 179.904 112.43C179.991 112.753 180.121 113.04 180.294 113.291C180.472 113.542 180.693 113.74 180.957 113.886C181.221 114.027 181.529 114.098 181.88 114.098C182.226 114.098 182.529 114.027 182.789 113.886C183.053 113.74 183.272 113.542 183.445 113.291C183.618 113.04 183.748 112.753 183.835 112.43C183.926 112.102 183.972 111.753 183.972 111.384V111.227C183.972 110.862 183.926 110.518 183.835 110.194C183.748 109.866 183.616 109.577 183.438 109.326C183.265 109.071 183.047 108.87 182.782 108.725C182.522 108.579 182.217 108.506 181.866 108.506C181.52 108.506 181.215 108.579 180.95 108.725C180.69 108.87 180.472 109.071 180.294 109.326C180.121 109.577 179.991 109.866 179.904 110.194C179.818 110.518 179.774 110.862 179.774 111.227ZM188.094 109.183V115H186.829V107.604H188.025L188.094 109.183ZM187.793 111.021L187.267 111.001C187.271 110.495 187.346 110.028 187.492 109.6C187.638 109.167 187.843 108.791 188.107 108.472C188.372 108.153 188.686 107.907 189.051 107.733C189.42 107.556 189.828 107.467 190.274 107.467C190.639 107.467 190.967 107.517 191.259 107.617C191.55 107.713 191.799 107.868 192.004 108.082C192.214 108.296 192.373 108.574 192.482 108.916C192.592 109.253 192.646 109.666 192.646 110.153V115H191.375V110.14C191.375 109.752 191.318 109.442 191.204 109.21C191.09 108.973 190.924 108.802 190.705 108.697C190.486 108.588 190.217 108.533 189.898 108.533C189.584 108.533 189.297 108.599 189.037 108.731C188.782 108.864 188.561 109.046 188.374 109.278C188.192 109.511 188.048 109.777 187.943 110.078C187.843 110.374 187.793 110.689 187.793 111.021Z",fill:"#64748B"})),{AdvancedFields:tn}=JetFBComponents,{__:ln}=wp.i18n,{InspectorControls:rn,useBlockProps:nn}=wp.blockEditor?wp.blockEditor:wp.editor,an=JSON.parse('{"apiVersion":3,"name":"jet-forms/group-break-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","conditonal"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Group Break Field","icon":"\\n\\n\\n\\n","attributes":{"visibility":{"type":"string","default":""},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:on}=wp.i18n,{createBlock:sn}=wp.blocks,{name:cn,icon:dn=""}=an,mn={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:dn}}),description:on("Create a break between two fields with a horizontal line. Separate different form parts without dividing form on two pages.","jet-form-builder"),edit:function(e){const C=nn(),{isSelected:t,attributes:l,editProps:{uniqKey:r}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Cn):(0,h.createElement)(h.Fragment,null,t&&(0,h.createElement)(rn,{key:r("InspectorControls")},(0,h.createElement)(tn,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{...C},(0,h.createElement)("div",{className:"jet-form-builder__group-break jet-form-builder__bottom-line"},(0,h.createElement)("span",null,ln("GROUP BREAK","jet-form-builder")))))},useEditProps:["uniqKey"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>sn("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["core/separator"],transform:()=>sn("core/separator",{}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>sn(cn,{...e}),priority:0},{type:"block",blocks:["core/separator"],transform:()=>sn(cn,{}),priority:0}]}},un=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_274_2880)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{width:"268",height:"143",transform:"translate(15 15)",fill:"white"}),(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V45H15V19Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M37.6562 29.3262V30.3994H32.2695V29.3262H37.6562ZM32.4746 25.0469V35H31.1553V25.0469H32.4746ZM38.8047 25.0469V35H37.4922V25.0469H38.8047ZM44.0273 35.1367C43.5124 35.1367 43.0452 35.0501 42.626 34.877C42.2113 34.6992 41.8535 34.4508 41.5527 34.1318C41.2565 33.8128 41.0286 33.4346 40.8691 32.9971C40.7096 32.5596 40.6299 32.0811 40.6299 31.5615V31.2744C40.6299 30.6729 40.7188 30.1374 40.8965 29.668C41.0742 29.194 41.3158 28.793 41.6211 28.4648C41.9264 28.1367 42.2728 27.8883 42.6602 27.7197C43.0475 27.5511 43.4486 27.4668 43.8633 27.4668C44.3919 27.4668 44.8477 27.5579 45.2305 27.7402C45.6178 27.9225 45.9346 28.1777 46.1807 28.5059C46.4268 28.8294 46.609 29.2122 46.7275 29.6543C46.846 30.0918 46.9053 30.5703 46.9053 31.0898V31.6572H41.3818V30.625H45.6406V30.5293C45.6224 30.2012 45.554 29.8822 45.4355 29.5723C45.3216 29.2624 45.1393 29.0072 44.8887 28.8066C44.638 28.6061 44.2962 28.5059 43.8633 28.5059C43.5762 28.5059 43.3118 28.5674 43.0703 28.6904C42.8288 28.8089 42.6214 28.9867 42.4482 29.2236C42.2751 29.4606 42.1406 29.75 42.0449 30.0918C41.9492 30.4336 41.9014 30.8278 41.9014 31.2744V31.5615C41.9014 31.9124 41.9492 32.2428 42.0449 32.5527C42.1452 32.8581 42.2887 33.127 42.4756 33.3594C42.667 33.5918 42.8971 33.7741 43.166 33.9062C43.4395 34.0384 43.7493 34.1045 44.0957 34.1045C44.5423 34.1045 44.9206 34.0133 45.2305 33.8311C45.5404 33.6488 45.8115 33.4049 46.0439 33.0996L46.8096 33.708C46.6501 33.9495 46.4473 34.1797 46.2012 34.3984C45.9551 34.6172 45.652 34.7949 45.292 34.9316C44.9365 35.0684 44.515 35.1367 44.0273 35.1367ZM52.7432 33.7354V29.9277C52.7432 29.6361 52.6839 29.3831 52.5654 29.1689C52.4515 28.9502 52.2783 28.7816 52.0459 28.6631C51.8135 28.5446 51.5264 28.4854 51.1846 28.4854C50.8656 28.4854 50.5853 28.54 50.3438 28.6494C50.1068 28.7588 49.9199 28.9023 49.7832 29.0801C49.651 29.2578 49.585 29.4492 49.585 29.6543H48.3203C48.3203 29.39 48.3887 29.1279 48.5254 28.8682C48.6621 28.6084 48.8581 28.3737 49.1133 28.1641C49.373 27.9499 49.6829 27.7812 50.043 27.6582C50.4076 27.5306 50.8132 27.4668 51.2598 27.4668C51.7975 27.4668 52.2715 27.5579 52.6816 27.7402C53.0964 27.9225 53.4199 28.1982 53.6523 28.5674C53.8893 28.932 54.0078 29.39 54.0078 29.9414V33.3867C54.0078 33.6328 54.0283 33.8949 54.0693 34.1729C54.1149 34.4508 54.181 34.6901 54.2676 34.8906V35H52.9482C52.8844 34.8542 52.8343 34.6605 52.7979 34.4189C52.7614 34.1729 52.7432 33.945 52.7432 33.7354ZM52.9619 30.5156L52.9756 31.4043H51.6973C51.3372 31.4043 51.016 31.4339 50.7334 31.4932C50.4508 31.5479 50.2139 31.6322 50.0225 31.7461C49.8311 31.86 49.6852 32.0036 49.585 32.1768C49.4847 32.3454 49.4346 32.5436 49.4346 32.7715C49.4346 33.0039 49.487 33.2158 49.5918 33.4072C49.6966 33.5986 49.8538 33.7513 50.0635 33.8652C50.2777 33.9746 50.5397 34.0293 50.8496 34.0293C51.237 34.0293 51.5788 33.9473 51.875 33.7832C52.1712 33.6191 52.4059 33.4186 52.5791 33.1816C52.7568 32.9447 52.8525 32.7145 52.8662 32.4912L53.4062 33.0996C53.3743 33.291 53.2878 33.5029 53.1465 33.7354C53.0052 33.9678 52.8161 34.1911 52.5791 34.4053C52.3467 34.6149 52.0687 34.7904 51.7451 34.9316C51.4261 35.0684 51.0661 35.1367 50.665 35.1367C50.1637 35.1367 49.724 35.0387 49.3457 34.8428C48.972 34.6468 48.6803 34.3848 48.4707 34.0566C48.2656 33.724 48.1631 33.3525 48.1631 32.9424C48.1631 32.5459 48.2406 32.1973 48.3955 31.8965C48.5505 31.5911 48.7738 31.3382 49.0654 31.1377C49.3571 30.9326 49.708 30.7777 50.1182 30.6729C50.5283 30.568 50.9863 30.5156 51.4922 30.5156H52.9619ZM60.6592 33.5645V24.5H61.9307V35H60.7686L60.6592 33.5645ZM55.6826 31.3838V31.2402C55.6826 30.6751 55.751 30.1624 55.8877 29.7021C56.029 29.2373 56.2272 28.8385 56.4824 28.5059C56.7422 28.1732 57.0498 27.918 57.4053 27.7402C57.7653 27.5579 58.1663 27.4668 58.6084 27.4668C59.0732 27.4668 59.4788 27.5488 59.8252 27.7129C60.1761 27.8724 60.4723 28.1071 60.7139 28.417C60.96 28.7223 61.1536 29.0915 61.2949 29.5244C61.4362 29.9574 61.5342 30.4473 61.5889 30.9941V31.623C61.5387 32.1654 61.4408 32.653 61.2949 33.0859C61.1536 33.5189 60.96 33.888 60.7139 34.1934C60.4723 34.4987 60.1761 34.7334 59.8252 34.8975C59.4743 35.057 59.0641 35.1367 58.5947 35.1367C58.1618 35.1367 57.7653 35.0433 57.4053 34.8564C57.0498 34.6696 56.7422 34.4076 56.4824 34.0703C56.2272 33.7331 56.029 33.3366 55.8877 32.8809C55.751 32.4206 55.6826 31.9215 55.6826 31.3838ZM56.9541 31.2402V31.3838C56.9541 31.7529 56.9906 32.0993 57.0635 32.4229C57.141 32.7464 57.2594 33.0312 57.4189 33.2773C57.5785 33.5234 57.7812 33.7171 58.0273 33.8584C58.2734 33.9951 58.5674 34.0635 58.9092 34.0635C59.3285 34.0635 59.6725 33.9746 59.9414 33.7969C60.2148 33.6191 60.4336 33.3844 60.5977 33.0928C60.7617 32.8011 60.8893 32.4844 60.9805 32.1426V30.4951C60.9258 30.2445 60.846 30.0029 60.7412 29.7705C60.641 29.5335 60.5088 29.3239 60.3447 29.1416C60.1852 28.9548 59.987 28.8066 59.75 28.6973C59.5176 28.5879 59.2419 28.5332 58.9229 28.5332C58.5765 28.5332 58.278 28.6061 58.0273 28.752C57.7812 28.8932 57.5785 29.0892 57.4189 29.3398C57.2594 29.5859 57.141 29.873 57.0635 30.2012C56.9906 30.5247 56.9541 30.8711 56.9541 31.2402ZM65.2734 27.6035V35H64.002V27.6035H65.2734ZM63.9062 25.6416C63.9062 25.4365 63.9678 25.2633 64.0908 25.1221C64.2184 24.9808 64.4053 24.9102 64.6514 24.9102C64.8929 24.9102 65.0775 24.9808 65.2051 25.1221C65.3372 25.2633 65.4033 25.4365 65.4033 25.6416C65.4033 25.8376 65.3372 26.0062 65.2051 26.1475C65.0775 26.2842 64.8929 26.3525 64.6514 26.3525C64.4053 26.3525 64.2184 26.2842 64.0908 26.1475C63.9678 26.0062 63.9062 25.8376 63.9062 25.6416ZM68.5684 29.1826V35H67.3037V27.6035H68.5L68.5684 29.1826ZM68.2676 31.0215L67.7412 31.001C67.7458 30.4951 67.821 30.028 67.9668 29.5996C68.1126 29.1667 68.3177 28.7907 68.582 28.4717C68.8464 28.1527 69.1608 27.9066 69.5254 27.7334C69.8945 27.5557 70.3024 27.4668 70.749 27.4668C71.1136 27.4668 71.4417 27.5169 71.7334 27.6172C72.0251 27.7129 72.2734 27.8678 72.4785 28.082C72.6882 28.2962 72.8477 28.5742 72.957 28.916C73.0664 29.2533 73.1211 29.6657 73.1211 30.1533V35H71.8496V30.1396C71.8496 29.7523 71.7926 29.4424 71.6787 29.21C71.5648 28.973 71.3984 28.8021 71.1797 28.6973C70.9609 28.5879 70.6921 28.5332 70.373 28.5332C70.0586 28.5332 69.7715 28.5993 69.5117 28.7314C69.2565 28.8636 69.0355 29.0459 68.8486 29.2783C68.6663 29.5107 68.5228 29.7773 68.418 30.0781C68.3177 30.3743 68.2676 30.6888 68.2676 31.0215ZM79.834 27.6035H80.9824V34.8428C80.9824 35.4945 80.8503 36.0505 80.5859 36.5107C80.3216 36.971 79.9525 37.3197 79.4785 37.5566C79.0091 37.7982 78.4668 37.9189 77.8516 37.9189C77.5964 37.9189 77.2956 37.8779 76.9492 37.7959C76.6074 37.7184 76.2702 37.584 75.9375 37.3926C75.6094 37.2057 75.3337 36.9528 75.1104 36.6338L75.7734 35.8818C76.0833 36.2555 76.4069 36.5153 76.7441 36.6611C77.0859 36.807 77.4232 36.8799 77.7559 36.8799C78.1569 36.8799 78.5033 36.8047 78.7949 36.6543C79.0866 36.5039 79.3122 36.2806 79.4717 35.9844C79.6357 35.6927 79.7178 35.3327 79.7178 34.9043V29.2305L79.834 27.6035ZM74.7412 31.3838V31.2402C74.7412 30.6751 74.8073 30.1624 74.9395 29.7021C75.0762 29.2373 75.2699 28.8385 75.5205 28.5059C75.7757 28.1732 76.0833 27.918 76.4434 27.7402C76.8034 27.5579 77.209 27.4668 77.6602 27.4668C78.125 27.4668 78.5306 27.5488 78.877 27.7129C79.2279 27.8724 79.5241 28.1071 79.7656 28.417C80.0117 28.7223 80.2054 29.0915 80.3467 29.5244C80.488 29.9574 80.5859 30.4473 80.6406 30.9941V31.623C80.5905 32.1654 80.4925 32.653 80.3467 33.0859C80.2054 33.5189 80.0117 33.888 79.7656 34.1934C79.5241 34.4987 79.2279 34.7334 78.877 34.8975C78.526 35.057 78.1159 35.1367 77.6465 35.1367C77.2044 35.1367 76.8034 35.0433 76.4434 34.8564C76.0879 34.6696 75.7826 34.4076 75.5273 34.0703C75.2721 33.7331 75.0762 33.3366 74.9395 32.8809C74.8073 32.4206 74.7412 31.9215 74.7412 31.3838ZM76.0059 31.2402V31.3838C76.0059 31.7529 76.0423 32.0993 76.1152 32.4229C76.1927 32.7464 76.3089 33.0312 76.4639 33.2773C76.6234 33.5234 76.8262 33.7171 77.0723 33.8584C77.3184 33.9951 77.6123 34.0635 77.9541 34.0635C78.3734 34.0635 78.7197 33.9746 78.9932 33.7969C79.2666 33.6191 79.4831 33.3844 79.6426 33.0928C79.8066 32.8011 79.9342 32.4844 80.0254 32.1426V30.4951C79.9753 30.2445 79.8978 30.0029 79.793 29.7705C79.6927 29.5335 79.5605 29.3239 79.3965 29.1416C79.237 28.9548 79.0387 28.8066 78.8018 28.6973C78.5648 28.5879 78.2868 28.5332 77.9678 28.5332C77.6214 28.5332 77.3229 28.6061 77.0723 28.752C76.8262 28.8932 76.6234 29.0892 76.4639 29.3398C76.3089 29.5859 76.1927 29.873 76.1152 30.2012C76.0423 30.5247 76.0059 30.8711 76.0059 31.2402Z",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"55",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"25.5",y:"64.5",width:"247",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"25.5",y:"64.5",width:"247",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("rect",{x:"25",y:"109",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"25.5",y:"118.5",width:"247",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"25.5",y:"118.5",width:"247",height:"29",rx:"3.5",stroke:"#E2E8F0"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_274_2880"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})))),{GeneralFields:pn,AdvancedFields:fn,FieldWrapper:Vn}=JetFBComponents,{InspectorControls:Hn,useBlockProps:hn}=wp.blockEditor?wp.blockEditor:wp.editor,bn=JSON.parse('{"apiVersion":3,"name":"jet-forms/heading-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","field","heading"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Heading Field","icon":"\\n\\n","attributes":{"label":{"type":"string","default":"","jfb":{"rich":true}},"desc":{"type":"string","default":"","jfb":{"rich":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:Mn}=wp.i18n,{createBlock:Ln}=wp.blocks,{name:gn,icon:Zn=""}=bn,yn={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Zn}}),description:Mn("Build a heading for the form that can’t be changed by the users. Add the labels and descriptions to the different parts of the form.","jet-form-builder"),edit:function(e){const C=hn(),{isSelected:t,attributes:l,editProps:{uniqKey:r}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},un):[t&&(0,h.createElement)(Hn,{key:r("InspectorControls")},(0,h.createElement)(pn,{key:r("GeneralFields"),...e}),(0,h.createElement)(fn,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{...C,key:r("viewBlock")},(0,h.createElement)(Vn,{key:r("FieldWrapper"),valueIfEmptyLabel:"Heading",...e}))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},__experimentalLabel:(e,{context:C})=>{if("list-view"===C)return e.label||bn.title},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Ln("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["core/paragraph"],transform:({label:e=""})=>Ln("core/paragraph",{content:e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Ln(gn,{...e}),priority:0},{type:"block",blocks:["core/paragraph"],transform:({content:e=""})=>Ln(gn,{label:e}),priority:0}]}},{ToggleControl:En,withFilters:wn}=wp.components,{__:vn}=wp.i18n,{useBlockAttributes:_n}=JetFBHooks;let kn=function(){const[e,C]=_n();return(0,h.createElement)(h.Fragment,null,"referer_url"!==e.field_value&&(0,h.createElement)(En,{label:vn("Render in HTML","jet-form-builder"),checked:e.render,help:vn("Enable this option if you use this field in Calculated Field, Conditional Block, Advanced Validation, Global Macros, or Dynamic Value.","jet-form-builder"),onChange:e=>C({render:Boolean(e)})}),(0,h.createElement)(En,{label:vn("Return the raw value","jet-form-builder"),help:vn("If this option is enabled, the value of the field will be JSON-encoded if the value is an array or object","jet-form-builder"),checked:e.return_raw,onChange:e=>C({return_raw:e})}))};kn=wn("jfb.hidden-field.header.controls")(kn);const jn=kn,{__:xn}=wp.i18n,{TextControl:Fn,withFilters:Bn}=wp.components;let An=function({attributes:e,setAttributes:C}){return(0,h.createElement)(h.Fragment,null,["post_meta","user_meta"].includes(e.field_value)&&(0,h.createElement)(Fn,{key:"hidden_value_field",label:"Meta Field to Get Value From",value:e.hidden_value_field,onChange:e=>C({hidden_value_field:e})}),"query_var"===e.field_value&&(0,h.createElement)(Fn,{key:"query_var_key",label:"Query Variable Key",value:e.query_var_key,onChange:e=>C({query_var_key:e})}),"current_date"===e.field_value&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Fn,{key:"date_format",label:"Format",value:e.date_format,onChange:e=>C({date_format:e})}),(0,h.createElement)("b",null,xn("Example:","jet-form-builder")),(0,h.createElement)("br",null),(0,h.createElement)("i",null,"Y-m-d\\TH:i - "),xn("datetime format","jet-form-builder"),(0,h.createElement)("br",null),(0,h.createElement)("i",null,"U - "),xn("timestamp format","jet-form-builder")),"manual_input"===e.field_value&&(0,h.createElement)(Fn,{key:"hidden_value",label:"Value",value:e.hidden_value,onChange:e=>{C({hidden_value:e})}}))};An=Bn("jfb.hidden-field.field-value.controls")(An);const Pn=An,{useBlockAttributes:Sn}=JetFBHooks,{SelectControl:Nn}=wp.components,In=function(){const[e,C]=Sn();return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(jn,{attributes:e,setAttributes:C}),(0,h.createElement)(Nn,{key:"field_value",label:"Field Value",labelPosition:"top",value:e.field_value,onChange:t=>{C({field_value:t}),(t=>{!t||e.name&&"hidden_field_name"!==e.name||C({name:t})})(t)},options:JetFormHiddenField.sources}),(0,h.createElement)(Pn,{attributes:e,setAttributes:C}))},Tn=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("g",{clipPath:"url(#clip0_75_1466)"},(0,h.createElement)("path",{d:"M22.6562 48.3262V49.3994H17.2695V48.3262H22.6562ZM17.4746 44.0469V54H16.1553V44.0469H17.4746ZM23.8047 44.0469V54H22.4922V44.0469H23.8047ZM27.332 46.6035V54H26.0605V46.6035H27.332ZM25.9648 44.6416C25.9648 44.4365 26.0264 44.2633 26.1494 44.1221C26.277 43.9808 26.4639 43.9102 26.71 43.9102C26.9515 43.9102 27.1361 43.9808 27.2637 44.1221C27.3958 44.2633 27.4619 44.4365 27.4619 44.6416C27.4619 44.8376 27.3958 45.0062 27.2637 45.1475C27.1361 45.2842 26.9515 45.3525 26.71 45.3525C26.4639 45.3525 26.277 45.2842 26.1494 45.1475C26.0264 45.0062 25.9648 44.8376 25.9648 44.6416ZM34.0244 52.5645V43.5H35.2959V54H34.1338L34.0244 52.5645ZM29.0479 50.3838V50.2402C29.0479 49.6751 29.1162 49.1624 29.2529 48.7021C29.3942 48.2373 29.5924 47.8385 29.8477 47.5059C30.1074 47.1732 30.415 46.918 30.7705 46.7402C31.1305 46.5579 31.5316 46.4668 31.9736 46.4668C32.4385 46.4668 32.8441 46.5488 33.1904 46.7129C33.5413 46.8724 33.8376 47.1071 34.0791 47.417C34.3252 47.7223 34.5189 48.0915 34.6602 48.5244C34.8014 48.9574 34.8994 49.4473 34.9541 49.9941V50.623C34.904 51.1654 34.806 51.653 34.6602 52.0859C34.5189 52.5189 34.3252 52.888 34.0791 53.1934C33.8376 53.4987 33.5413 53.7334 33.1904 53.8975C32.8395 54.057 32.4294 54.1367 31.96 54.1367C31.527 54.1367 31.1305 54.0433 30.7705 53.8564C30.415 53.6696 30.1074 53.4076 29.8477 53.0703C29.5924 52.7331 29.3942 52.3366 29.2529 51.8809C29.1162 51.4206 29.0479 50.9215 29.0479 50.3838ZM30.3193 50.2402V50.3838C30.3193 50.7529 30.3558 51.0993 30.4287 51.4229C30.5062 51.7464 30.6247 52.0312 30.7842 52.2773C30.9437 52.5234 31.1465 52.7171 31.3926 52.8584C31.6387 52.9951 31.9326 53.0635 32.2744 53.0635C32.6937 53.0635 33.0378 52.9746 33.3066 52.7969C33.5801 52.6191 33.7988 52.3844 33.9629 52.0928C34.127 51.8011 34.2546 51.4844 34.3457 51.1426V49.4951C34.291 49.2445 34.2113 49.0029 34.1064 48.7705C34.0062 48.5335 33.874 48.3239 33.71 48.1416C33.5505 47.9548 33.3522 47.8066 33.1152 47.6973C32.8828 47.5879 32.6071 47.5332 32.2881 47.5332C31.9417 47.5332 31.6432 47.6061 31.3926 47.752C31.1465 47.8932 30.9437 48.0892 30.7842 48.3398C30.6247 48.5859 30.5062 48.873 30.4287 49.2012C30.3558 49.5247 30.3193 49.8711 30.3193 50.2402ZM41.9268 52.5645V43.5H43.1982V54H42.0361L41.9268 52.5645ZM36.9502 50.3838V50.2402C36.9502 49.6751 37.0186 49.1624 37.1553 48.7021C37.2965 48.2373 37.4948 47.8385 37.75 47.5059C38.0098 47.1732 38.3174 46.918 38.6729 46.7402C39.0329 46.5579 39.4339 46.4668 39.876 46.4668C40.3408 46.4668 40.7464 46.5488 41.0928 46.7129C41.4437 46.8724 41.7399 47.1071 41.9814 47.417C42.2275 47.7223 42.4212 48.0915 42.5625 48.5244C42.7038 48.9574 42.8018 49.4473 42.8564 49.9941V50.623C42.8063 51.1654 42.7083 51.653 42.5625 52.0859C42.4212 52.5189 42.2275 52.888 41.9814 53.1934C41.7399 53.4987 41.4437 53.7334 41.0928 53.8975C40.7419 54.057 40.3317 54.1367 39.8623 54.1367C39.4294 54.1367 39.0329 54.0433 38.6729 53.8564C38.3174 53.6696 38.0098 53.4076 37.75 53.0703C37.4948 52.7331 37.2965 52.3366 37.1553 51.8809C37.0186 51.4206 36.9502 50.9215 36.9502 50.3838ZM38.2217 50.2402V50.3838C38.2217 50.7529 38.2581 51.0993 38.3311 51.4229C38.4085 51.7464 38.527 52.0312 38.6865 52.2773C38.846 52.5234 39.0488 52.7171 39.2949 52.8584C39.541 52.9951 39.835 53.0635 40.1768 53.0635C40.596 53.0635 40.9401 52.9746 41.209 52.7969C41.4824 52.6191 41.7012 52.3844 41.8652 52.0928C42.0293 51.8011 42.1569 51.4844 42.248 51.1426V49.4951C42.1934 49.2445 42.1136 49.0029 42.0088 48.7705C41.9085 48.5335 41.7764 48.3239 41.6123 48.1416C41.4528 47.9548 41.2546 47.8066 41.0176 47.6973C40.7852 47.5879 40.5094 47.5332 40.1904 47.5332C39.8441 47.5332 39.5456 47.6061 39.2949 47.752C39.0488 47.8932 38.846 48.0892 38.6865 48.3398C38.527 48.5859 38.4085 48.873 38.3311 49.2012C38.2581 49.5247 38.2217 49.8711 38.2217 50.2402ZM48.2363 54.1367C47.7214 54.1367 47.2542 54.0501 46.835 53.877C46.4202 53.6992 46.0625 53.4508 45.7617 53.1318C45.4655 52.8128 45.2376 52.4346 45.0781 51.9971C44.9186 51.5596 44.8389 51.0811 44.8389 50.5615V50.2744C44.8389 49.6729 44.9277 49.1374 45.1055 48.668C45.2832 48.194 45.5247 47.793 45.8301 47.4648C46.1354 47.1367 46.4818 46.8883 46.8691 46.7197C47.2565 46.5511 47.6576 46.4668 48.0723 46.4668C48.6009 46.4668 49.0566 46.5579 49.4395 46.7402C49.8268 46.9225 50.1436 47.1777 50.3896 47.5059C50.6357 47.8294 50.818 48.2122 50.9365 48.6543C51.055 49.0918 51.1143 49.5703 51.1143 50.0898V50.6572H45.5908V49.625H49.8496V49.5293C49.8314 49.2012 49.763 48.8822 49.6445 48.5723C49.5306 48.2624 49.3483 48.0072 49.0977 47.8066C48.847 47.6061 48.5052 47.5059 48.0723 47.5059C47.7852 47.5059 47.5208 47.5674 47.2793 47.6904C47.0378 47.8089 46.8304 47.9867 46.6572 48.2236C46.484 48.4606 46.3496 48.75 46.2539 49.0918C46.1582 49.4336 46.1104 49.8278 46.1104 50.2744V50.5615C46.1104 50.9124 46.1582 51.2428 46.2539 51.5527C46.3542 51.8581 46.4977 52.127 46.6846 52.3594C46.876 52.5918 47.1061 52.7741 47.375 52.9062C47.6484 53.0384 47.9583 53.1045 48.3047 53.1045C48.7513 53.1045 49.1296 53.0133 49.4395 52.8311C49.7493 52.6488 50.0205 52.4049 50.2529 52.0996L51.0186 52.708C50.859 52.9495 50.6562 53.1797 50.4102 53.3984C50.1641 53.6172 49.861 53.7949 49.501 53.9316C49.1455 54.0684 48.724 54.1367 48.2363 54.1367ZM53.8555 48.1826V54H52.5908V46.6035H53.7871L53.8555 48.1826ZM53.5547 50.0215L53.0283 50.001C53.0329 49.4951 53.1081 49.028 53.2539 48.5996C53.3997 48.1667 53.6048 47.7907 53.8691 47.4717C54.1335 47.1527 54.4479 46.9066 54.8125 46.7334C55.1816 46.5557 55.5895 46.4668 56.0361 46.4668C56.4007 46.4668 56.7288 46.5169 57.0205 46.6172C57.3122 46.7129 57.5605 46.8678 57.7656 47.082C57.9753 47.2962 58.1348 47.5742 58.2441 47.916C58.3535 48.2533 58.4082 48.6657 58.4082 49.1533V54H57.1367V49.1396C57.1367 48.7523 57.0798 48.4424 56.9658 48.21C56.8519 47.973 56.6855 47.8021 56.4668 47.6973C56.248 47.5879 55.9792 47.5332 55.6602 47.5332C55.3457 47.5332 55.0586 47.5993 54.7988 47.7314C54.5436 47.8636 54.3226 48.0459 54.1357 48.2783C53.9535 48.5107 53.8099 48.7773 53.7051 49.0781C53.6048 49.3743 53.5547 49.6888 53.5547 50.0215ZM65.4902 54H64.2256V45.9609C64.2256 45.4004 64.335 44.9264 64.5537 44.5391C64.7725 44.1517 65.0846 43.8577 65.4902 43.6572C65.8958 43.4567 66.3766 43.3564 66.9326 43.3564C67.2607 43.3564 67.582 43.3975 67.8965 43.4795C68.2109 43.557 68.5345 43.6549 68.8672 43.7734L68.6553 44.8398C68.4456 44.7578 68.2018 44.6803 67.9238 44.6074C67.6504 44.5299 67.3496 44.4912 67.0215 44.4912C66.4792 44.4912 66.0872 44.6143 65.8457 44.8604C65.6087 45.1019 65.4902 45.4688 65.4902 45.9609V54ZM67.001 46.6035V47.5742H63.0566V46.6035H67.001ZM69.4893 46.6035V54H68.2246V46.6035H69.4893ZM74.6367 54.1367C74.1217 54.1367 73.6546 54.0501 73.2354 53.877C72.8206 53.6992 72.4629 53.4508 72.1621 53.1318C71.8659 52.8128 71.638 52.4346 71.4785 51.9971C71.319 51.5596 71.2393 51.0811 71.2393 50.5615V50.2744C71.2393 49.6729 71.3281 49.1374 71.5059 48.668C71.6836 48.194 71.9251 47.793 72.2305 47.4648C72.5358 47.1367 72.8822 46.8883 73.2695 46.7197C73.6569 46.5511 74.0579 46.4668 74.4727 46.4668C75.0013 46.4668 75.457 46.5579 75.8398 46.7402C76.2272 46.9225 76.5439 47.1777 76.79 47.5059C77.0361 47.8294 77.2184 48.2122 77.3369 48.6543C77.4554 49.0918 77.5146 49.5703 77.5146 50.0898V50.6572H71.9912V49.625H76.25V49.5293C76.2318 49.2012 76.1634 48.8822 76.0449 48.5723C75.931 48.2624 75.7487 48.0072 75.498 47.8066C75.2474 47.6061 74.9056 47.5059 74.4727 47.5059C74.1855 47.5059 73.9212 47.5674 73.6797 47.6904C73.4382 47.8089 73.2308 47.9867 73.0576 48.2236C72.8844 48.4606 72.75 48.75 72.6543 49.0918C72.5586 49.4336 72.5107 49.8278 72.5107 50.2744V50.5615C72.5107 50.9124 72.5586 51.2428 72.6543 51.5527C72.7546 51.8581 72.8981 52.127 73.085 52.3594C73.2764 52.5918 73.5065 52.7741 73.7754 52.9062C74.0488 53.0384 74.3587 53.1045 74.7051 53.1045C75.1517 53.1045 75.5299 53.0133 75.8398 52.8311C76.1497 52.6488 76.4209 52.4049 76.6533 52.0996L77.4189 52.708C77.2594 52.9495 77.0566 53.1797 76.8105 53.3984C76.5645 53.6172 76.2614 53.7949 75.9014 53.9316C75.5459 54.0684 75.1243 54.1367 74.6367 54.1367ZM80.3652 43.5V54H79.0938V43.5H80.3652ZM87.0576 52.5645V43.5H88.3291V54H87.167L87.0576 52.5645ZM82.0811 50.3838V50.2402C82.0811 49.6751 82.1494 49.1624 82.2861 48.7021C82.4274 48.2373 82.6257 47.8385 82.8809 47.5059C83.1406 47.1732 83.4482 46.918 83.8037 46.7402C84.1637 46.5579 84.5648 46.4668 85.0068 46.4668C85.4717 46.4668 85.8773 46.5488 86.2236 46.7129C86.5745 46.8724 86.8708 47.1071 87.1123 47.417C87.3584 47.7223 87.5521 48.0915 87.6934 48.5244C87.8346 48.9574 87.9326 49.4473 87.9873 49.9941V50.623C87.9372 51.1654 87.8392 51.653 87.6934 52.0859C87.5521 52.5189 87.3584 52.888 87.1123 53.1934C86.8708 53.4987 86.5745 53.7334 86.2236 53.8975C85.8727 54.057 85.4626 54.1367 84.9932 54.1367C84.5602 54.1367 84.1637 54.0433 83.8037 53.8564C83.4482 53.6696 83.1406 53.4076 82.8809 53.0703C82.6257 52.7331 82.4274 52.3366 82.2861 51.8809C82.1494 51.4206 82.0811 50.9215 82.0811 50.3838ZM83.3525 50.2402V50.3838C83.3525 50.7529 83.389 51.0993 83.4619 51.4229C83.5394 51.7464 83.6579 52.0312 83.8174 52.2773C83.9769 52.5234 84.1797 52.7171 84.4258 52.8584C84.6719 52.9951 84.9658 53.0635 85.3076 53.0635C85.7269 53.0635 86.071 52.9746 86.3398 52.7969C86.6133 52.6191 86.832 52.3844 86.9961 52.0928C87.1602 51.8011 87.2878 51.4844 87.3789 51.1426V49.4951C87.3242 49.2445 87.2445 49.0029 87.1396 48.7705C87.0394 48.5335 86.9072 48.3239 86.7432 48.1416C86.5837 47.9548 86.3854 47.8066 86.1484 47.6973C85.916 47.5879 85.6403 47.5332 85.3213 47.5332C84.9749 47.5332 84.6764 47.6061 84.4258 47.752C84.1797 47.8932 83.9769 48.0892 83.8174 48.3398C83.6579 48.5859 83.5394 48.873 83.4619 49.2012C83.389 49.5247 83.3525 49.8711 83.3525 50.2402ZM94.6045 52.0381C94.6045 51.8558 94.5635 51.6872 94.4814 51.5322C94.404 51.3727 94.2422 51.2292 93.9961 51.1016C93.7546 50.9694 93.39 50.8555 92.9023 50.7598C92.4922 50.6732 92.1208 50.5706 91.7881 50.4521C91.46 50.3337 91.1797 50.1901 90.9473 50.0215C90.7194 49.8529 90.5439 49.6546 90.4209 49.4268C90.2979 49.1989 90.2363 48.9323 90.2363 48.627C90.2363 48.3353 90.3001 48.0596 90.4277 47.7998C90.5599 47.54 90.7445 47.3099 90.9814 47.1094C91.223 46.9089 91.5124 46.7516 91.8496 46.6377C92.1868 46.5238 92.5628 46.4668 92.9775 46.4668C93.57 46.4668 94.0758 46.5716 94.4951 46.7812C94.9144 46.9909 95.2357 47.2712 95.459 47.6221C95.6823 47.9684 95.7939 48.3535 95.7939 48.7773H94.5293C94.5293 48.5723 94.4678 48.374 94.3447 48.1826C94.2262 47.9867 94.0508 47.8249 93.8184 47.6973C93.5905 47.5697 93.3102 47.5059 92.9775 47.5059C92.6266 47.5059 92.3418 47.5605 92.123 47.6699C91.9089 47.7747 91.7516 47.9092 91.6514 48.0732C91.5557 48.2373 91.5078 48.4105 91.5078 48.5928C91.5078 48.7295 91.5306 48.8525 91.5762 48.9619C91.6263 49.0667 91.7129 49.1647 91.8359 49.2559C91.959 49.3424 92.1322 49.4245 92.3555 49.502C92.5788 49.5794 92.8636 49.6569 93.21 49.7344C93.8161 49.8711 94.3151 50.0352 94.707 50.2266C95.099 50.418 95.3906 50.6527 95.582 50.9307C95.7734 51.2087 95.8691 51.5459 95.8691 51.9424C95.8691 52.266 95.8008 52.5622 95.6641 52.8311C95.5319 53.0999 95.3382 53.3324 95.083 53.5283C94.8324 53.7197 94.5316 53.8701 94.1807 53.9795C93.8343 54.0843 93.4447 54.1367 93.0117 54.1367C92.36 54.1367 91.8086 54.0205 91.3574 53.7881C90.9062 53.5557 90.5645 53.2549 90.332 52.8857C90.0996 52.5166 89.9834 52.127 89.9834 51.7168H91.2549C91.2731 52.0632 91.3734 52.3389 91.5557 52.5439C91.738 52.7445 91.9613 52.888 92.2256 52.9746C92.4899 53.0566 92.752 53.0977 93.0117 53.0977C93.3581 53.0977 93.6475 53.0521 93.8799 52.9609C94.1169 52.8698 94.2969 52.7445 94.4199 52.585C94.543 52.4255 94.6045 52.2432 94.6045 52.0381Z",fill:"#64748B"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1466)"},(0,h.createElement)("path",{d:"M24.0001 67.25C26.0701 67.25 27.7501 68.93 27.7501 71C27.7501 71.4875 27.6526 71.945 27.4801 72.3725L29.6701 74.5625C30.8026 73.6175 31.6951 72.395 32.2426 71C30.9451 67.7075 27.7426 65.375 23.9926 65.375C22.9426 65.375 21.9376 65.5625 21.0076 65.9L22.6276 67.52C23.0551 67.3475 23.5126 67.25 24.0001 67.25ZM16.5001 65.2025L18.2101 66.9125L18.5551 67.2575C17.3101 68.225 16.3351 69.515 15.7501 71C17.0476 74.2925 20.2501 76.625 24.0001 76.625C25.1626 76.625 26.2726 76.4 27.2851 75.995L27.6001 76.31L29.7976 78.5L30.7501 77.5475L17.4526 64.25L16.5001 65.2025ZM20.6476 69.35L21.8101 70.5125C21.7726 70.67 21.7501 70.835 21.7501 71C21.7501 72.245 22.7551 73.25 24.0001 73.25C24.1651 73.25 24.3301 73.2275 24.4876 73.19L25.6501 74.3525C25.1476 74.6 24.5926 74.75 24.0001 74.75C21.9301 74.75 20.2501 73.07 20.2501 71C20.2501 70.4075 20.4001 69.8525 20.6476 69.35ZM23.8801 68.765L26.2426 71.1275L26.2576 71.0075C26.2576 69.7625 25.2526 68.7575 24.0076 68.7575L23.8801 68.765Z",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M40.0693 65.75V75.5H38.895V65.75H40.0693ZM39.79 71.8057L39.3013 71.7866C39.3055 71.3169 39.3753 70.8831 39.5107 70.4854C39.6462 70.0833 39.8366 69.7342 40.082 69.438C40.3275 69.1418 40.6195 68.9132 40.958 68.7524C41.3008 68.5874 41.6795 68.5049 42.0942 68.5049C42.4328 68.5049 42.7375 68.5514 43.0083 68.6445C43.2791 68.7334 43.5098 68.8773 43.7002 69.0762C43.8949 69.2751 44.043 69.5332 44.1445 69.8506C44.2461 70.1637 44.2969 70.5467 44.2969 70.9995V75.5H43.1162V70.9868C43.1162 70.6271 43.0633 70.3394 42.9575 70.1235C42.8517 69.9035 42.6973 69.7448 42.4941 69.6475C42.291 69.5459 42.0413 69.4951 41.7451 69.4951C41.4531 69.4951 41.1865 69.5565 40.9453 69.6792C40.7083 69.8019 40.5031 69.9712 40.3296 70.187C40.1603 70.4028 40.027 70.6504 39.9297 70.9297C39.8366 71.2048 39.79 71.4967 39.79 71.8057ZM47.3311 68.6318V75.5H46.1504V68.6318H47.3311ZM46.0615 66.8101C46.0615 66.6196 46.1187 66.4588 46.2329 66.3276C46.3514 66.1965 46.5249 66.1309 46.7534 66.1309C46.9777 66.1309 47.1491 66.1965 47.2676 66.3276C47.3903 66.4588 47.4517 66.6196 47.4517 66.8101C47.4517 66.992 47.3903 67.1486 47.2676 67.2798C47.1491 67.4067 46.9777 67.4702 46.7534 67.4702C46.5249 67.4702 46.3514 67.4067 46.2329 67.2798C46.1187 67.1486 46.0615 66.992 46.0615 66.8101ZM53.5454 74.167V65.75H54.7261V75.5H53.647L53.5454 74.167ZM48.9243 72.1421V72.0088C48.9243 71.484 48.9878 71.008 49.1147 70.5806C49.2459 70.1489 49.43 69.7786 49.667 69.4697C49.9082 69.1608 50.1938 68.9238 50.5239 68.7588C50.8582 68.5895 51.2306 68.5049 51.6411 68.5049C52.0728 68.5049 52.4494 68.5811 52.771 68.7334C53.0968 68.8815 53.3719 69.0994 53.5962 69.3872C53.8247 69.6707 54.0046 70.0135 54.1357 70.4155C54.2669 70.8175 54.3579 71.2725 54.4087 71.7803V72.3643C54.3621 72.8678 54.2712 73.3206 54.1357 73.7227C54.0046 74.1247 53.8247 74.4674 53.5962 74.751C53.3719 75.0345 53.0968 75.2524 52.771 75.4048C52.4451 75.5529 52.0643 75.627 51.6284 75.627C51.2264 75.627 50.8582 75.5402 50.5239 75.3667C50.1938 75.1932 49.9082 74.9499 49.667 74.6367C49.43 74.3236 49.2459 73.9554 49.1147 73.5322C48.9878 73.1048 48.9243 72.6414 48.9243 72.1421ZM50.105 72.0088V72.1421C50.105 72.4849 50.1388 72.8065 50.2065 73.1069C50.2785 73.4074 50.3885 73.6719 50.5366 73.9004C50.6847 74.1289 50.873 74.3088 51.1016 74.4399C51.3301 74.5669 51.603 74.6304 51.9204 74.6304C52.3097 74.6304 52.6292 74.5479 52.8789 74.3828C53.1328 74.2178 53.3359 73.9998 53.4883 73.729C53.6406 73.4582 53.7591 73.1641 53.8438 72.8467V71.3169C53.793 71.0841 53.7189 70.8599 53.6216 70.644C53.5285 70.424 53.4058 70.2293 53.2534 70.0601C53.1053 69.8866 52.9212 69.749 52.7012 69.6475C52.4854 69.5459 52.2293 69.4951 51.9331 69.4951C51.6115 69.4951 51.3343 69.5628 51.1016 69.6982C50.873 69.8294 50.6847 70.0114 50.5366 70.2441C50.3885 70.4727 50.2785 70.7393 50.2065 71.0439C50.1388 71.3444 50.105 71.666 50.105 72.0088ZM60.8833 74.167V65.75H62.064V75.5H60.9849L60.8833 74.167ZM56.2622 72.1421V72.0088C56.2622 71.484 56.3257 71.008 56.4526 70.5806C56.5838 70.1489 56.7679 69.7786 57.0049 69.4697C57.2461 69.1608 57.5317 68.9238 57.8618 68.7588C58.1961 68.5895 58.5685 68.5049 58.979 68.5049C59.4106 68.5049 59.7873 68.5811 60.1089 68.7334C60.4347 68.8815 60.7098 69.0994 60.9341 69.3872C61.1626 69.6707 61.3424 70.0135 61.4736 70.4155C61.6048 70.8175 61.6958 71.2725 61.7466 71.7803V72.3643C61.7 72.8678 61.609 73.3206 61.4736 73.7227C61.3424 74.1247 61.1626 74.4674 60.9341 74.751C60.7098 75.0345 60.4347 75.2524 60.1089 75.4048C59.783 75.5529 59.4022 75.627 58.9663 75.627C58.5643 75.627 58.1961 75.5402 57.8618 75.3667C57.5317 75.1932 57.2461 74.9499 57.0049 74.6367C56.7679 74.3236 56.5838 73.9554 56.4526 73.5322C56.3257 73.1048 56.2622 72.6414 56.2622 72.1421ZM57.4429 72.0088V72.1421C57.4429 72.4849 57.4767 72.8065 57.5444 73.1069C57.6164 73.4074 57.7264 73.6719 57.8745 73.9004C58.0226 74.1289 58.2109 74.3088 58.4395 74.4399C58.668 74.5669 58.9409 74.6304 59.2583 74.6304C59.6476 74.6304 59.9671 74.5479 60.2168 74.3828C60.4707 74.2178 60.6738 73.9998 60.8262 73.729C60.9785 73.4582 61.097 73.1641 61.1816 72.8467V71.3169C61.1309 71.0841 61.0568 70.8599 60.9595 70.644C60.8664 70.424 60.7437 70.2293 60.5913 70.0601C60.4432 69.8866 60.2591 69.749 60.0391 69.6475C59.8232 69.5459 59.5672 69.4951 59.271 69.4951C58.9494 69.4951 58.6722 69.5628 58.4395 69.6982C58.2109 69.8294 58.0226 70.0114 57.8745 70.2441C57.7264 70.4727 57.6164 70.7393 57.5444 71.0439C57.4767 71.3444 57.4429 71.666 57.4429 72.0088ZM66.7422 75.627C66.264 75.627 65.8302 75.5465 65.4409 75.3857C65.0558 75.2207 64.7236 74.9901 64.4443 74.6938C64.1693 74.3976 63.9577 74.0464 63.8096 73.6401C63.6615 73.2339 63.5874 72.7896 63.5874 72.3071V72.0405C63.5874 71.4819 63.6699 70.9847 63.835 70.5488C64 70.1087 64.2243 69.7363 64.5078 69.4316C64.7913 69.127 65.113 68.8963 65.4727 68.7397C65.8324 68.5832 66.2048 68.5049 66.5898 68.5049C67.0807 68.5049 67.5039 68.5895 67.8594 68.7588C68.2191 68.9281 68.5132 69.165 68.7417 69.4697C68.9702 69.7702 69.1395 70.1257 69.2495 70.5361C69.3595 70.9424 69.4146 71.3867 69.4146 71.8691V72.396H64.2856V71.4375H68.2402V71.3486C68.2233 71.0439 68.1598 70.7477 68.0498 70.46C67.944 70.1722 67.7747 69.9352 67.542 69.749C67.3092 69.5628 66.9919 69.4697 66.5898 69.4697C66.3232 69.4697 66.0778 69.5269 65.8535 69.6411C65.6292 69.7511 65.4367 69.9162 65.2759 70.1362C65.1151 70.3563 64.9902 70.625 64.9014 70.9424C64.8125 71.2598 64.7681 71.6258 64.7681 72.0405V72.3071C64.7681 72.633 64.8125 72.9398 64.9014 73.2275C64.9945 73.5111 65.1278 73.7607 65.3013 73.9766C65.479 74.1924 65.6927 74.3617 65.9424 74.4844C66.1963 74.6071 66.484 74.6685 66.8057 74.6685C67.2204 74.6685 67.5716 74.5838 67.8594 74.4146C68.1471 74.2453 68.3989 74.0189 68.6147 73.7354L69.3257 74.3003C69.1776 74.5246 68.9893 74.7383 68.7607 74.9414C68.5322 75.1445 68.2508 75.3096 67.9165 75.4365C67.5864 75.5635 67.195 75.627 66.7422 75.627ZM71.96 70.0981V75.5H70.7856V68.6318H71.8965L71.96 70.0981ZM71.6807 71.8057L71.1919 71.7866C71.1961 71.3169 71.266 70.8831 71.4014 70.4854C71.5368 70.0833 71.7272 69.7342 71.9727 69.438C72.2181 69.1418 72.5101 68.9132 72.8486 68.7524C73.1914 68.5874 73.5701 68.5049 73.9849 68.5049C74.3234 68.5049 74.6281 68.5514 74.8989 68.6445C75.1698 68.7334 75.4004 68.8773 75.5908 69.0762C75.7855 69.2751 75.9336 69.5332 76.0352 69.8506C76.1367 70.1637 76.1875 70.5467 76.1875 70.9995V75.5H75.0068V70.9868C75.0068 70.6271 74.9539 70.3394 74.8481 70.1235C74.7424 69.9035 74.5879 69.7448 74.3848 69.6475C74.1816 69.5459 73.932 69.4951 73.6357 69.4951C73.3438 69.4951 73.0771 69.5565 72.8359 69.6792C72.599 69.8019 72.3937 69.9712 72.2202 70.187C72.0509 70.4028 71.9176 70.6504 71.8203 70.9297C71.7272 71.2048 71.6807 71.4967 71.6807 71.8057ZM82.9224 75.5V76.4648H77.1016V75.5H82.9224ZM86.7119 68.6318V69.5332H82.9985V68.6318H86.7119ZM84.2554 66.9624H85.4297V73.7988C85.4297 74.0316 85.4657 74.2072 85.5376 74.3257C85.6095 74.4442 85.7026 74.5225 85.8169 74.5605C85.9312 74.5986 86.0539 74.6177 86.1851 74.6177C86.2824 74.6177 86.384 74.6092 86.4897 74.5923C86.5998 74.5711 86.6823 74.5542 86.7373 74.5415L86.7437 75.5C86.6506 75.5296 86.5278 75.5571 86.3755 75.5825C86.2274 75.6121 86.0475 75.627 85.8359 75.627C85.5482 75.627 85.2837 75.5698 85.0425 75.4556C84.8013 75.3413 84.6087 75.1509 84.4648 74.8843C84.3252 74.6134 84.2554 74.2495 84.2554 73.7925V66.9624ZM92.1392 74.3257V70.79C92.1392 70.5192 92.0841 70.2843 91.9741 70.0854C91.8683 69.8823 91.7075 69.7257 91.4917 69.6157C91.2759 69.5057 91.0093 69.4507 90.6919 69.4507C90.3957 69.4507 90.1354 69.5015 89.9111 69.603C89.6911 69.7046 89.5176 69.8379 89.3906 70.0029C89.2679 70.168 89.2065 70.3457 89.2065 70.5361H88.0322C88.0322 70.2907 88.0957 70.0474 88.2227 69.8062C88.3496 69.5649 88.5316 69.347 88.7686 69.1523C89.0098 68.9535 89.2975 68.7969 89.6318 68.6826C89.9704 68.5641 90.347 68.5049 90.7617 68.5049C91.2611 68.5049 91.7012 68.5895 92.082 68.7588C92.4671 68.9281 92.7676 69.1841 92.9834 69.5269C93.2035 69.8654 93.3135 70.2907 93.3135 70.8027V74.002C93.3135 74.2305 93.3325 74.4738 93.3706 74.7319C93.4129 74.9901 93.4743 75.2122 93.5547 75.3984V75.5H92.3296C92.2703 75.3646 92.2238 75.1847 92.1899 74.9604C92.1561 74.7319 92.1392 74.5203 92.1392 74.3257ZM92.3423 71.3359L92.355 72.1611H91.168C90.8337 72.1611 90.5353 72.1886 90.2729 72.2437C90.0106 72.2944 89.7905 72.3727 89.6128 72.4785C89.4351 72.5843 89.2996 72.7176 89.2065 72.8784C89.1134 73.035 89.0669 73.2191 89.0669 73.4307C89.0669 73.6465 89.1156 73.8433 89.2129 74.021C89.3102 74.1987 89.4562 74.3405 89.6509 74.4463C89.8498 74.5479 90.0931 74.5986 90.3809 74.5986C90.7406 74.5986 91.0579 74.5225 91.333 74.3701C91.6081 74.2178 91.826 74.0316 91.9868 73.8115C92.1519 73.5915 92.2407 73.3778 92.2534 73.1704L92.7549 73.7354C92.7253 73.9131 92.6449 74.1099 92.5137 74.3257C92.3825 74.5415 92.2069 74.7489 91.9868 74.9478C91.771 75.1424 91.5129 75.3053 91.2124 75.4365C90.9162 75.5635 90.5819 75.627 90.2095 75.627C89.744 75.627 89.3356 75.536 88.9844 75.354C88.6374 75.172 88.3665 74.9287 88.1719 74.624C87.9814 74.3151 87.8862 73.9702 87.8862 73.5894C87.8862 73.2212 87.9582 72.8975 88.1021 72.6182C88.2459 72.3346 88.4533 72.0998 88.7241 71.9136C88.995 71.7231 89.3208 71.5793 89.7017 71.4819C90.0825 71.3846 90.5078 71.3359 90.9775 71.3359H92.3423ZM95.9541 68.6318L97.4585 71.1328L98.9819 68.6318H100.359L98.1123 72.0215L100.429 75.5H99.0708L97.4839 72.9229L95.897 75.5H94.5322L96.8428 72.0215L94.6021 68.6318H95.9541ZM106.561 75.5V76.4648H100.74V75.5H106.561ZM108.649 69.9521V78.1406H107.469V68.6318H108.548L108.649 69.9521ZM113.277 72.0088V72.1421C113.277 72.6414 113.218 73.1048 113.099 73.5322C112.981 73.9554 112.807 74.3236 112.579 74.6367C112.354 74.9499 112.077 75.1932 111.747 75.3667C111.417 75.5402 111.038 75.627 110.611 75.627C110.175 75.627 109.79 75.555 109.456 75.4111C109.121 75.2673 108.838 75.0578 108.605 74.7827C108.372 74.5076 108.186 74.1776 108.046 73.7925C107.911 73.4074 107.818 72.9736 107.767 72.4912V71.7803C107.818 71.2725 107.913 70.8175 108.053 70.4155C108.192 70.0135 108.376 69.6707 108.605 69.3872C108.838 69.0994 109.119 68.8815 109.449 68.7334C109.779 68.5811 110.16 68.5049 110.592 68.5049C111.023 68.5049 111.406 68.5895 111.741 68.7588C112.075 68.9238 112.356 69.1608 112.585 69.4697C112.813 69.7786 112.985 70.1489 113.099 70.5806C113.218 71.008 113.277 71.484 113.277 72.0088ZM112.096 72.1421V72.0088C112.096 71.666 112.06 71.3444 111.988 71.0439C111.916 70.7393 111.804 70.4727 111.652 70.2441C111.504 70.0114 111.313 69.8294 111.081 69.6982C110.848 69.5628 110.571 69.4951 110.249 69.4951C109.953 69.4951 109.695 69.5459 109.475 69.6475C109.259 69.749 109.075 69.8866 108.922 70.0601C108.77 70.2293 108.645 70.424 108.548 70.644C108.455 70.8599 108.385 71.0841 108.338 71.3169V72.9609C108.423 73.2572 108.542 73.5365 108.694 73.7988C108.846 74.057 109.049 74.2664 109.303 74.4272C109.557 74.5838 109.877 74.6621 110.262 74.6621C110.579 74.6621 110.852 74.5965 111.081 74.4653C111.313 74.3299 111.504 74.1458 111.652 73.9131C111.804 73.6803 111.916 73.4137 111.988 73.1133C112.06 72.8086 112.096 72.4849 112.096 72.1421ZM117.625 75.627C117.147 75.627 116.713 75.5465 116.324 75.3857C115.939 75.2207 115.606 74.9901 115.327 74.6938C115.052 74.3976 114.84 74.0464 114.692 73.6401C114.544 73.2339 114.47 72.7896 114.47 72.3071V72.0405C114.47 71.4819 114.553 70.9847 114.718 70.5488C114.883 70.1087 115.107 69.7363 115.391 69.4316C115.674 69.127 115.996 68.8963 116.355 68.7397C116.715 68.5832 117.088 68.5049 117.473 68.5049C117.964 68.5049 118.387 68.5895 118.742 68.7588C119.102 68.9281 119.396 69.165 119.625 69.4697C119.853 69.7702 120.022 70.1257 120.132 70.5361C120.242 70.9424 120.297 71.3867 120.297 71.8691V72.396H115.168V71.4375H119.123V71.3486C119.106 71.0439 119.043 70.7477 118.933 70.46C118.827 70.1722 118.658 69.9352 118.425 69.749C118.192 69.5628 117.875 69.4697 117.473 69.4697C117.206 69.4697 116.961 69.5269 116.736 69.6411C116.512 69.7511 116.319 69.9162 116.159 70.1362C115.998 70.3563 115.873 70.625 115.784 70.9424C115.695 71.2598 115.651 71.6258 115.651 72.0405V72.3071C115.651 72.633 115.695 72.9398 115.784 73.2275C115.877 73.5111 116.011 73.7607 116.184 73.9766C116.362 74.1924 116.576 74.3617 116.825 74.4844C117.079 74.6071 117.367 74.6685 117.688 74.6685C118.103 74.6685 118.454 74.5838 118.742 74.4146C119.03 74.2453 119.282 74.0189 119.498 73.7354L120.208 74.3003C120.06 74.5246 119.872 74.7383 119.644 74.9414C119.415 75.1445 119.134 75.3096 118.799 75.4365C118.469 75.5635 118.078 75.627 117.625 75.627ZM122.843 69.7109V75.5H121.668V68.6318H122.811L122.843 69.7109ZM124.988 68.5938L124.982 69.6855C124.885 69.6644 124.792 69.6517 124.703 69.6475C124.618 69.639 124.521 69.6348 124.411 69.6348C124.14 69.6348 123.901 69.6771 123.693 69.7617C123.486 69.8464 123.31 69.9648 123.167 70.1172C123.023 70.2695 122.908 70.4515 122.824 70.6631C122.743 70.8704 122.69 71.099 122.665 71.3486L122.335 71.5391C122.335 71.1243 122.375 70.735 122.456 70.3711C122.54 70.0072 122.669 69.6855 122.843 69.4062C123.016 69.1227 123.236 68.9027 123.503 68.7461C123.774 68.5853 124.095 68.5049 124.468 68.5049C124.552 68.5049 124.65 68.5155 124.76 68.5366C124.87 68.5535 124.946 68.5726 124.988 68.5938ZM128.695 74.6621C128.975 74.6621 129.233 74.605 129.47 74.4907C129.707 74.3765 129.901 74.2199 130.054 74.021C130.206 73.8179 130.293 73.5872 130.314 73.3291H131.431C131.41 73.7354 131.272 74.1141 131.019 74.4653C130.769 74.8123 130.441 75.0938 130.035 75.3096C129.628 75.5212 129.182 75.627 128.695 75.627C128.179 75.627 127.728 75.536 127.343 75.354C126.962 75.172 126.645 74.9224 126.391 74.605C126.141 74.2876 125.953 73.9237 125.826 73.5132C125.703 73.0985 125.642 72.6605 125.642 72.1992V71.9326C125.642 71.4714 125.703 71.0355 125.826 70.625C125.953 70.2103 126.141 69.8442 126.391 69.5269C126.645 69.2095 126.962 68.9598 127.343 68.7778C127.728 68.5959 128.179 68.5049 128.695 68.5049C129.233 68.5049 129.702 68.6149 130.104 68.835C130.507 69.0508 130.822 69.347 131.05 69.7236C131.283 70.096 131.41 70.5192 131.431 70.9932H130.314C130.293 70.7096 130.212 70.4536 130.073 70.2251C129.937 69.9966 129.751 69.8146 129.514 69.6792C129.281 69.5396 129.008 69.4697 128.695 69.4697C128.336 69.4697 128.033 69.5417 127.788 69.6855C127.546 69.8252 127.354 70.0156 127.21 70.2568C127.07 70.4938 126.969 70.7583 126.905 71.0503C126.846 71.3381 126.816 71.6322 126.816 71.9326V72.1992C126.816 72.4997 126.846 72.7959 126.905 73.0879C126.965 73.3799 127.064 73.6444 127.204 73.8813C127.347 74.1183 127.54 74.3088 127.781 74.4526C128.027 74.5923 128.331 74.6621 128.695 74.6621ZM135.602 75.627C135.123 75.627 134.69 75.5465 134.3 75.3857C133.915 75.2207 133.583 74.9901 133.304 74.6938C133.029 74.3976 132.817 74.0464 132.669 73.6401C132.521 73.2339 132.447 72.7896 132.447 72.3071V72.0405C132.447 71.4819 132.529 70.9847 132.694 70.5488C132.859 70.1087 133.084 69.7363 133.367 69.4316C133.651 69.127 133.972 68.8963 134.332 68.7397C134.692 68.5832 135.064 68.5049 135.449 68.5049C135.94 68.5049 136.363 68.5895 136.719 68.7588C137.078 68.9281 137.373 69.165 137.601 69.4697C137.83 69.7702 137.999 70.1257 138.109 70.5361C138.219 70.9424 138.274 71.3867 138.274 71.8691V72.396H133.145V71.4375H137.1V71.3486C137.083 71.0439 137.019 70.7477 136.909 70.46C136.803 70.1722 136.634 69.9352 136.401 69.749C136.169 69.5628 135.851 69.4697 135.449 69.4697C135.183 69.4697 134.937 69.5269 134.713 69.6411C134.489 69.7511 134.296 69.9162 134.135 70.1362C133.974 70.3563 133.85 70.625 133.761 70.9424C133.672 71.2598 133.627 71.6258 133.627 72.0405V72.3071C133.627 72.633 133.672 72.9398 133.761 73.2275C133.854 73.5111 133.987 73.7607 134.161 73.9766C134.338 74.1924 134.552 74.3617 134.802 74.4844C135.056 74.6071 135.343 74.6685 135.665 74.6685C136.08 74.6685 136.431 74.5838 136.719 74.4146C137.007 74.2453 137.258 74.0189 137.474 73.7354L138.185 74.3003C138.037 74.5246 137.849 74.7383 137.62 74.9414C137.392 75.1445 137.11 75.3096 136.776 75.4365C136.446 75.5635 136.054 75.627 135.602 75.627ZM140.819 70.0981V75.5H139.645V68.6318H140.756L140.819 70.0981ZM140.54 71.8057L140.051 71.7866C140.056 71.3169 140.125 70.8831 140.261 70.4854C140.396 70.0833 140.587 69.7342 140.832 69.438C141.077 69.1418 141.369 68.9132 141.708 68.7524C142.051 68.5874 142.43 68.5049 142.844 68.5049C143.183 68.5049 143.487 68.5514 143.758 68.6445C144.029 68.7334 144.26 68.8773 144.45 69.0762C144.645 69.2751 144.793 69.5332 144.895 69.8506C144.996 70.1637 145.047 70.5467 145.047 70.9995V75.5H143.866V70.9868C143.866 70.6271 143.813 70.3394 143.708 70.1235C143.602 69.9035 143.447 69.7448 143.244 69.6475C143.041 69.5459 142.791 69.4951 142.495 69.4951C142.203 69.4951 141.937 69.5565 141.695 69.6792C141.458 69.8019 141.253 69.9712 141.08 70.187C140.91 70.4028 140.777 70.6504 140.68 70.9297C140.587 71.2048 140.54 71.4967 140.54 71.8057ZM149.706 68.6318V69.5332H145.993V68.6318H149.706ZM147.25 66.9624H148.424V73.7988C148.424 74.0316 148.46 74.2072 148.532 74.3257C148.604 74.4442 148.697 74.5225 148.811 74.5605C148.925 74.5986 149.048 74.6177 149.179 74.6177C149.277 74.6177 149.378 74.6092 149.484 74.5923C149.594 74.5711 149.676 74.5542 149.731 74.5415L149.738 75.5C149.645 75.5296 149.522 75.5571 149.37 75.5825C149.222 75.6121 149.042 75.627 148.83 75.627C148.542 75.627 148.278 75.5698 148.037 75.4556C147.795 75.3413 147.603 75.1509 147.459 74.8843C147.319 74.6134 147.25 74.2495 147.25 73.7925V66.9624Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M255.253 71.1011L254.314 70.8599L254.777 66.2578H259.519V67.3433H255.774L255.495 69.8569C255.664 69.7596 255.878 69.6686 256.136 69.584C256.398 69.4993 256.699 69.457 257.037 69.457C257.465 69.457 257.847 69.5311 258.186 69.6792C258.525 69.8231 258.812 70.0304 259.049 70.3013C259.291 70.5721 259.475 70.8979 259.602 71.2788C259.729 71.6597 259.792 72.085 259.792 72.5547C259.792 72.999 259.731 73.4074 259.608 73.7798C259.489 74.1522 259.31 74.478 259.068 74.7573C258.827 75.0324 258.522 75.2461 258.154 75.3984C257.79 75.5508 257.361 75.627 256.866 75.627C256.493 75.627 256.14 75.5762 255.806 75.4746C255.476 75.3688 255.179 75.2101 254.917 74.9985C254.659 74.7827 254.447 74.5161 254.282 74.1987C254.121 73.8771 254.02 73.5005 253.978 73.0688H255.095C255.146 73.4159 255.247 73.7078 255.399 73.9448C255.552 74.1818 255.751 74.3617 255.996 74.4844C256.246 74.6029 256.536 74.6621 256.866 74.6621C257.145 74.6621 257.393 74.6134 257.608 74.5161C257.824 74.4188 258.006 74.2791 258.154 74.0972C258.302 73.9152 258.415 73.6951 258.491 73.437C258.571 73.1789 258.611 72.889 258.611 72.5674C258.611 72.2754 258.571 72.0046 258.491 71.7549C258.41 71.5052 258.29 71.2873 258.129 71.1011C257.972 70.9149 257.78 70.771 257.551 70.6694C257.323 70.5636 257.06 70.5107 256.764 70.5107C256.371 70.5107 256.072 70.5636 255.869 70.6694C255.67 70.7752 255.465 70.9191 255.253 71.1011ZM260.979 68.5239V68.0352C260.979 67.6839 261.055 67.3644 261.208 67.0767C261.36 66.7889 261.578 66.5583 261.861 66.3848C262.145 66.2113 262.481 66.1245 262.871 66.1245C263.268 66.1245 263.607 66.2113 263.886 66.3848C264.17 66.5583 264.388 66.7889 264.54 67.0767C264.692 67.3644 264.769 67.6839 264.769 68.0352V68.5239C264.769 68.8667 264.692 69.182 264.54 69.4697C264.392 69.7575 264.176 69.9881 263.893 70.1616C263.613 70.3351 263.277 70.4219 262.883 70.4219C262.49 70.4219 262.149 70.3351 261.861 70.1616C261.578 69.9881 261.36 69.7575 261.208 69.4697C261.055 69.182 260.979 68.8667 260.979 68.5239ZM261.861 68.0352V68.5239C261.861 68.7186 261.897 68.9027 261.969 69.0762C262.045 69.2497 262.16 69.3914 262.312 69.5015C262.464 69.6073 262.655 69.6602 262.883 69.6602C263.112 69.6602 263.3 69.6073 263.448 69.5015C263.596 69.3914 263.706 69.2497 263.778 69.0762C263.85 68.9027 263.886 68.7186 263.886 68.5239V68.0352C263.886 67.8363 263.848 67.6501 263.772 67.4766C263.7 67.2988 263.588 67.1571 263.436 67.0513C263.287 66.9412 263.099 66.8862 262.871 66.8862C262.646 66.8862 262.458 66.9412 262.306 67.0513C262.158 67.1571 262.045 67.2988 261.969 67.4766C261.897 67.6501 261.861 67.8363 261.861 68.0352ZM265.479 73.729V73.2339C265.479 72.8869 265.556 72.5695 265.708 72.2817C265.86 71.994 266.078 71.7633 266.362 71.5898C266.645 71.4163 266.982 71.3296 267.371 71.3296C267.769 71.3296 268.107 71.4163 268.387 71.5898C268.67 71.7633 268.888 71.994 269.041 72.2817C269.193 72.5695 269.269 72.8869 269.269 73.2339V73.729C269.269 74.076 269.193 74.3934 269.041 74.6812C268.892 74.9689 268.677 75.1995 268.393 75.373C268.114 75.5465 267.777 75.6333 267.384 75.6333C266.99 75.6333 266.652 75.5465 266.368 75.373C266.085 75.1995 265.865 74.9689 265.708 74.6812C265.556 74.3934 265.479 74.076 265.479 73.729ZM266.362 73.2339V73.729C266.362 73.9237 266.398 74.1099 266.47 74.2876C266.546 74.4611 266.66 74.6029 266.812 74.7129C266.965 74.8187 267.155 74.8716 267.384 74.8716C267.612 74.8716 267.801 74.8187 267.949 74.7129C268.101 74.6029 268.213 74.4611 268.285 74.2876C268.357 74.1141 268.393 73.9279 268.393 73.729V73.2339C268.393 73.035 268.355 72.8488 268.279 72.6753C268.207 72.5018 268.095 72.3621 267.942 72.2563C267.794 72.1463 267.604 72.0913 267.371 72.0913C267.147 72.0913 266.958 72.1463 266.806 72.2563C266.658 72.3621 266.546 72.5018 266.47 72.6753C266.398 72.8488 266.362 73.035 266.362 73.2339ZM267.663 67.5718L263.15 74.7954L262.49 74.3765L267.003 67.1528L267.663 67.5718Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip2_75_1466)"},(0,h.createElement)("path",{d:"M24.0001 90.25C26.0701 90.25 27.7501 91.93 27.7501 94C27.7501 94.4875 27.6526 94.945 27.4801 95.3725L29.6701 97.5625C30.8026 96.6175 31.6951 95.395 32.2426 94C30.9451 90.7075 27.7426 88.375 23.9926 88.375C22.9426 88.375 21.9376 88.5625 21.0076 88.9L22.6276 90.52C23.0551 90.3475 23.5126 90.25 24.0001 90.25ZM16.5001 88.2025L18.2101 89.9125L18.5551 90.2575C17.3101 91.225 16.3351 92.515 15.7501 94C17.0476 97.2925 20.2501 99.625 24.0001 99.625C25.1626 99.625 26.2726 99.4 27.2851 98.995L27.6001 99.31L29.7976 101.5L30.7501 100.547L17.4526 87.25L16.5001 88.2025ZM20.6476 92.35L21.8101 93.5125C21.7726 93.67 21.7501 93.835 21.7501 94C21.7501 95.245 22.7551 96.25 24.0001 96.25C24.1651 96.25 24.3301 96.2275 24.4876 96.19L25.6501 97.3525C25.1476 97.6 24.5926 97.75 24.0001 97.75C21.9301 97.75 20.2501 96.07 20.2501 94C20.2501 93.4075 20.4001 92.8525 20.6476 92.35ZM23.8801 91.765L26.2426 94.1275L26.2576 94.0075C26.2576 92.7625 25.2526 91.7575 24.0076 91.7575L23.8801 91.765Z",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M40.0693 88.75V98.5H38.895V88.75H40.0693ZM39.79 94.8057L39.3013 94.7866C39.3055 94.3169 39.3753 93.8831 39.5107 93.4854C39.6462 93.0833 39.8366 92.7342 40.082 92.438C40.3275 92.1418 40.6195 91.9132 40.958 91.7524C41.3008 91.5874 41.6795 91.5049 42.0942 91.5049C42.4328 91.5049 42.7375 91.5514 43.0083 91.6445C43.2791 91.7334 43.5098 91.8773 43.7002 92.0762C43.8949 92.2751 44.043 92.5332 44.1445 92.8506C44.2461 93.1637 44.2969 93.5467 44.2969 93.9995V98.5H43.1162V93.9868C43.1162 93.6271 43.0633 93.3394 42.9575 93.1235C42.8517 92.9035 42.6973 92.7448 42.4941 92.6475C42.291 92.5459 42.0413 92.4951 41.7451 92.4951C41.4531 92.4951 41.1865 92.5565 40.9453 92.6792C40.7083 92.8019 40.5031 92.9712 40.3296 93.187C40.1603 93.4028 40.027 93.6504 39.9297 93.9297C39.8366 94.2048 39.79 94.4967 39.79 94.8057ZM47.3311 91.6318V98.5H46.1504V91.6318H47.3311ZM46.0615 89.8101C46.0615 89.6196 46.1187 89.4588 46.2329 89.3276C46.3514 89.1965 46.5249 89.1309 46.7534 89.1309C46.9777 89.1309 47.1491 89.1965 47.2676 89.3276C47.3903 89.4588 47.4517 89.6196 47.4517 89.8101C47.4517 89.992 47.3903 90.1486 47.2676 90.2798C47.1491 90.4067 46.9777 90.4702 46.7534 90.4702C46.5249 90.4702 46.3514 90.4067 46.2329 90.2798C46.1187 90.1486 46.0615 89.992 46.0615 89.8101ZM53.5454 97.167V88.75H54.7261V98.5H53.647L53.5454 97.167ZM48.9243 95.1421V95.0088C48.9243 94.484 48.9878 94.008 49.1147 93.5806C49.2459 93.1489 49.43 92.7786 49.667 92.4697C49.9082 92.1608 50.1938 91.9238 50.5239 91.7588C50.8582 91.5895 51.2306 91.5049 51.6411 91.5049C52.0728 91.5049 52.4494 91.5811 52.771 91.7334C53.0968 91.8815 53.3719 92.0994 53.5962 92.3872C53.8247 92.6707 54.0046 93.0135 54.1357 93.4155C54.2669 93.8175 54.3579 94.2725 54.4087 94.7803V95.3643C54.3621 95.8678 54.2712 96.3206 54.1357 96.7227C54.0046 97.1247 53.8247 97.4674 53.5962 97.751C53.3719 98.0345 53.0968 98.2524 52.771 98.4048C52.4451 98.5529 52.0643 98.627 51.6284 98.627C51.2264 98.627 50.8582 98.5402 50.5239 98.3667C50.1938 98.1932 49.9082 97.9499 49.667 97.6367C49.43 97.3236 49.2459 96.9554 49.1147 96.5322C48.9878 96.1048 48.9243 95.6414 48.9243 95.1421ZM50.105 95.0088V95.1421C50.105 95.4849 50.1388 95.8065 50.2065 96.1069C50.2785 96.4074 50.3885 96.6719 50.5366 96.9004C50.6847 97.1289 50.873 97.3088 51.1016 97.4399C51.3301 97.5669 51.603 97.6304 51.9204 97.6304C52.3097 97.6304 52.6292 97.5479 52.8789 97.3828C53.1328 97.2178 53.3359 96.9998 53.4883 96.729C53.6406 96.4582 53.7591 96.1641 53.8438 95.8467V94.3169C53.793 94.0841 53.7189 93.8599 53.6216 93.644C53.5285 93.424 53.4058 93.2293 53.2534 93.0601C53.1053 92.8866 52.9212 92.749 52.7012 92.6475C52.4854 92.5459 52.2293 92.4951 51.9331 92.4951C51.6115 92.4951 51.3343 92.5628 51.1016 92.6982C50.873 92.8294 50.6847 93.0114 50.5366 93.2441C50.3885 93.4727 50.2785 93.7393 50.2065 94.0439C50.1388 94.3444 50.105 94.666 50.105 95.0088ZM60.8833 97.167V88.75H62.064V98.5H60.9849L60.8833 97.167ZM56.2622 95.1421V95.0088C56.2622 94.484 56.3257 94.008 56.4526 93.5806C56.5838 93.1489 56.7679 92.7786 57.0049 92.4697C57.2461 92.1608 57.5317 91.9238 57.8618 91.7588C58.1961 91.5895 58.5685 91.5049 58.979 91.5049C59.4106 91.5049 59.7873 91.5811 60.1089 91.7334C60.4347 91.8815 60.7098 92.0994 60.9341 92.3872C61.1626 92.6707 61.3424 93.0135 61.4736 93.4155C61.6048 93.8175 61.6958 94.2725 61.7466 94.7803V95.3643C61.7 95.8678 61.609 96.3206 61.4736 96.7227C61.3424 97.1247 61.1626 97.4674 60.9341 97.751C60.7098 98.0345 60.4347 98.2524 60.1089 98.4048C59.783 98.5529 59.4022 98.627 58.9663 98.627C58.5643 98.627 58.1961 98.5402 57.8618 98.3667C57.5317 98.1932 57.2461 97.9499 57.0049 97.6367C56.7679 97.3236 56.5838 96.9554 56.4526 96.5322C56.3257 96.1048 56.2622 95.6414 56.2622 95.1421ZM57.4429 95.0088V95.1421C57.4429 95.4849 57.4767 95.8065 57.5444 96.1069C57.6164 96.4074 57.7264 96.6719 57.8745 96.9004C58.0226 97.1289 58.2109 97.3088 58.4395 97.4399C58.668 97.5669 58.9409 97.6304 59.2583 97.6304C59.6476 97.6304 59.9671 97.5479 60.2168 97.3828C60.4707 97.2178 60.6738 96.9998 60.8262 96.729C60.9785 96.4582 61.097 96.1641 61.1816 95.8467V94.3169C61.1309 94.0841 61.0568 93.8599 60.9595 93.644C60.8664 93.424 60.7437 93.2293 60.5913 93.0601C60.4432 92.8866 60.2591 92.749 60.0391 92.6475C59.8232 92.5459 59.5672 92.4951 59.271 92.4951C58.9494 92.4951 58.6722 92.5628 58.4395 92.6982C58.2109 92.8294 58.0226 93.0114 57.8745 93.2441C57.7264 93.4727 57.6164 93.7393 57.5444 94.0439C57.4767 94.3444 57.4429 94.666 57.4429 95.0088ZM66.7422 98.627C66.264 98.627 65.8302 98.5465 65.4409 98.3857C65.0558 98.2207 64.7236 97.9901 64.4443 97.6938C64.1693 97.3976 63.9577 97.0464 63.8096 96.6401C63.6615 96.2339 63.5874 95.7896 63.5874 95.3071V95.0405C63.5874 94.4819 63.6699 93.9847 63.835 93.5488C64 93.1087 64.2243 92.7363 64.5078 92.4316C64.7913 92.127 65.113 91.8963 65.4727 91.7397C65.8324 91.5832 66.2048 91.5049 66.5898 91.5049C67.0807 91.5049 67.5039 91.5895 67.8594 91.7588C68.2191 91.9281 68.5132 92.165 68.7417 92.4697C68.9702 92.7702 69.1395 93.1257 69.2495 93.5361C69.3595 93.9424 69.4146 94.3867 69.4146 94.8691V95.396H64.2856V94.4375H68.2402V94.3486C68.2233 94.0439 68.1598 93.7477 68.0498 93.46C67.944 93.1722 67.7747 92.9352 67.542 92.749C67.3092 92.5628 66.9919 92.4697 66.5898 92.4697C66.3232 92.4697 66.0778 92.5269 65.8535 92.6411C65.6292 92.7511 65.4367 92.9162 65.2759 93.1362C65.1151 93.3563 64.9902 93.625 64.9014 93.9424C64.8125 94.2598 64.7681 94.6258 64.7681 95.0405V95.3071C64.7681 95.633 64.8125 95.9398 64.9014 96.2275C64.9945 96.5111 65.1278 96.7607 65.3013 96.9766C65.479 97.1924 65.6927 97.3617 65.9424 97.4844C66.1963 97.6071 66.484 97.6685 66.8057 97.6685C67.2204 97.6685 67.5716 97.5838 67.8594 97.4146C68.1471 97.2453 68.3989 97.0189 68.6147 96.7354L69.3257 97.3003C69.1776 97.5246 68.9893 97.7383 68.7607 97.9414C68.5322 98.1445 68.2508 98.3096 67.9165 98.4365C67.5864 98.5635 67.195 98.627 66.7422 98.627ZM71.96 93.0981V98.5H70.7856V91.6318H71.8965L71.96 93.0981ZM71.6807 94.8057L71.1919 94.7866C71.1961 94.3169 71.266 93.8831 71.4014 93.4854C71.5368 93.0833 71.7272 92.7342 71.9727 92.438C72.2181 92.1418 72.5101 91.9132 72.8486 91.7524C73.1914 91.5874 73.5701 91.5049 73.9849 91.5049C74.3234 91.5049 74.6281 91.5514 74.8989 91.6445C75.1698 91.7334 75.4004 91.8773 75.5908 92.0762C75.7855 92.2751 75.9336 92.5332 76.0352 92.8506C76.1367 93.1637 76.1875 93.5467 76.1875 93.9995V98.5H75.0068V93.9868C75.0068 93.6271 74.9539 93.3394 74.8481 93.1235C74.7424 92.9035 74.5879 92.7448 74.3848 92.6475C74.1816 92.5459 73.932 92.4951 73.6357 92.4951C73.3438 92.4951 73.0771 92.5565 72.8359 92.6792C72.599 92.8019 72.3937 92.9712 72.2202 93.187C72.0509 93.4028 71.9176 93.6504 71.8203 93.9297C71.7272 94.2048 71.6807 94.4967 71.6807 94.8057ZM82.9224 98.5V99.4648H77.1016V98.5H82.9224ZM88.1655 97.167V88.75H89.3462V98.5H88.2671L88.1655 97.167ZM83.5444 95.1421V95.0088C83.5444 94.484 83.6079 94.008 83.7349 93.5806C83.866 93.1489 84.0501 92.7786 84.2871 92.4697C84.5283 92.1608 84.814 91.9238 85.144 91.7588C85.4784 91.5895 85.8507 91.5049 86.2612 91.5049C86.6929 91.5049 87.0695 91.5811 87.3911 91.7334C87.717 91.8815 87.992 92.0994 88.2163 92.3872C88.4448 92.6707 88.6247 93.0135 88.7559 93.4155C88.887 93.8175 88.978 94.2725 89.0288 94.7803V95.3643C88.9823 95.8678 88.8913 96.3206 88.7559 96.7227C88.6247 97.1247 88.4448 97.4674 88.2163 97.751C87.992 98.0345 87.717 98.2524 87.3911 98.4048C87.0653 98.5529 86.6844 98.627 86.2485 98.627C85.8465 98.627 85.4784 98.5402 85.144 98.3667C84.814 98.1932 84.5283 97.9499 84.2871 97.6367C84.0501 97.3236 83.866 96.9554 83.7349 96.5322C83.6079 96.1048 83.5444 95.6414 83.5444 95.1421ZM84.7251 95.0088V95.1421C84.7251 95.4849 84.759 95.8065 84.8267 96.1069C84.8986 96.4074 85.0086 96.6719 85.1567 96.9004C85.3049 97.1289 85.4932 97.3088 85.7217 97.4399C85.9502 97.5669 86.2231 97.6304 86.5405 97.6304C86.9299 97.6304 87.2493 97.5479 87.499 97.3828C87.7529 97.2178 87.9561 96.9998 88.1084 96.729C88.2607 96.4582 88.3792 96.1641 88.4639 95.8467V94.3169C88.4131 94.0841 88.339 93.8599 88.2417 93.644C88.1486 93.424 88.0259 93.2293 87.8735 93.0601C87.7254 92.8866 87.5413 92.749 87.3213 92.6475C87.1055 92.5459 86.8494 92.4951 86.5532 92.4951C86.2316 92.4951 85.9544 92.5628 85.7217 92.6982C85.4932 92.8294 85.3049 93.0114 85.1567 93.2441C85.0086 93.4727 84.8986 93.7393 84.8267 94.0439C84.759 94.3444 84.7251 94.666 84.7251 95.0088ZM94.0244 98.627C93.5462 98.627 93.1125 98.5465 92.7231 98.3857C92.3381 98.2207 92.0059 97.9901 91.7266 97.6938C91.4515 97.3976 91.2399 97.0464 91.0918 96.6401C90.9437 96.2339 90.8696 95.7896 90.8696 95.3071V95.0405C90.8696 94.4819 90.9521 93.9847 91.1172 93.5488C91.2822 93.1087 91.5065 92.7363 91.79 92.4316C92.0736 92.127 92.3952 91.8963 92.7549 91.7397C93.1146 91.5832 93.487 91.5049 93.8721 91.5049C94.363 91.5049 94.7861 91.5895 95.1416 91.7588C95.5013 91.9281 95.7954 92.165 96.0239 92.4697C96.2524 92.7702 96.4217 93.1257 96.5317 93.5361C96.6418 93.9424 96.6968 94.3867 96.6968 94.8691V95.396H91.5679V94.4375H95.5225V94.3486C95.5055 94.0439 95.4421 93.7477 95.332 93.46C95.2262 93.1722 95.057 92.9352 94.8242 92.749C94.5915 92.5628 94.2741 92.4697 93.8721 92.4697C93.6055 92.4697 93.36 92.5269 93.1357 92.6411C92.9115 92.7511 92.7189 92.9162 92.5581 93.1362C92.3973 93.3563 92.2725 93.625 92.1836 93.9424C92.0947 94.2598 92.0503 94.6258 92.0503 95.0405V95.3071C92.0503 95.633 92.0947 95.9398 92.1836 96.2275C92.2767 96.5111 92.41 96.7607 92.5835 96.9766C92.7612 97.1924 92.9749 97.3617 93.2246 97.4844C93.4785 97.6071 93.7663 97.6685 94.0879 97.6685C94.5026 97.6685 94.8538 97.5838 95.1416 97.4146C95.4294 97.2453 95.6812 97.0189 95.897 96.7354L96.6079 97.3003C96.4598 97.5246 96.2715 97.7383 96.043 97.9414C95.8145 98.1445 95.533 98.3096 95.1987 98.4365C94.8687 98.5635 94.4772 98.627 94.0244 98.627ZM99.3438 88.75V98.5H98.1631V88.75H99.3438ZM102.505 91.6318V98.5H101.324V91.6318H102.505ZM101.235 89.8101C101.235 89.6196 101.292 89.4588 101.407 89.3276C101.525 89.1965 101.699 89.1309 101.927 89.1309C102.152 89.1309 102.323 89.1965 102.441 89.3276C102.564 89.4588 102.625 89.6196 102.625 89.8101C102.625 89.992 102.564 90.1486 102.441 90.2798C102.323 90.4067 102.152 90.4702 101.927 90.4702C101.699 90.4702 101.525 90.4067 101.407 90.2798C101.292 90.1486 101.235 89.992 101.235 89.8101ZM106.479 97.4399L108.357 91.6318H109.557L107.088 98.5H106.301L106.479 97.4399ZM104.911 91.6318L106.847 97.4717L106.98 98.5H106.193L103.705 91.6318H104.911ZM113.448 98.627C112.97 98.627 112.536 98.5465 112.147 98.3857C111.762 98.2207 111.43 97.9901 111.15 97.6938C110.875 97.3976 110.664 97.0464 110.516 96.6401C110.368 96.2339 110.293 95.7896 110.293 95.3071V95.0405C110.293 94.4819 110.376 93.9847 110.541 93.5488C110.706 93.1087 110.93 92.7363 111.214 92.4316C111.497 92.127 111.819 91.8963 112.179 91.7397C112.538 91.5832 112.911 91.5049 113.296 91.5049C113.787 91.5049 114.21 91.5895 114.565 91.7588C114.925 91.9281 115.219 92.165 115.448 92.4697C115.676 92.7702 115.846 93.1257 115.956 93.5361C116.066 93.9424 116.121 94.3867 116.121 94.8691V95.396H110.992V94.4375H114.946V94.3486C114.929 94.0439 114.866 93.7477 114.756 93.46C114.65 93.1722 114.481 92.9352 114.248 92.749C114.015 92.5628 113.698 92.4697 113.296 92.4697C113.029 92.4697 112.784 92.5269 112.56 92.6411C112.335 92.7511 112.143 92.9162 111.982 93.1362C111.821 93.3563 111.696 93.625 111.607 93.9424C111.519 94.2598 111.474 94.6258 111.474 95.0405V95.3071C111.474 95.633 111.519 95.9398 111.607 96.2275C111.701 96.5111 111.834 96.7607 112.007 96.9766C112.185 97.1924 112.399 97.3617 112.648 97.4844C112.902 97.6071 113.19 97.6685 113.512 97.6685C113.926 97.6685 114.278 97.5838 114.565 97.4146C114.853 97.2453 115.105 97.0189 115.321 96.7354L116.032 97.3003C115.884 97.5246 115.695 97.7383 115.467 97.9414C115.238 98.1445 114.957 98.3096 114.623 98.4365C114.292 98.5635 113.901 98.627 113.448 98.627ZM118.666 92.7109V98.5H117.492V91.6318H118.634L118.666 92.7109ZM120.812 91.5938L120.805 92.6855C120.708 92.6644 120.615 92.6517 120.526 92.6475C120.441 92.639 120.344 92.6348 120.234 92.6348C119.963 92.6348 119.724 92.6771 119.517 92.7617C119.309 92.8464 119.134 92.9648 118.99 93.1172C118.846 93.2695 118.732 93.4515 118.647 93.6631C118.567 93.8704 118.514 94.099 118.488 94.3486L118.158 94.5391C118.158 94.1243 118.198 93.735 118.279 93.3711C118.363 93.0072 118.493 92.6855 118.666 92.4062C118.84 92.1227 119.06 91.9027 119.326 91.7461C119.597 91.5853 119.919 91.5049 120.291 91.5049C120.376 91.5049 120.473 91.5155 120.583 91.5366C120.693 91.5535 120.769 91.5726 120.812 91.5938ZM123.941 97.7891L125.852 91.6318H127.108L124.354 99.5601C124.29 99.7293 124.205 99.9113 124.1 100.106C123.998 100.305 123.867 100.493 123.706 100.671C123.545 100.849 123.351 100.993 123.122 101.103C122.898 101.217 122.629 101.274 122.316 101.274C122.223 101.274 122.104 101.261 121.96 101.236C121.817 101.21 121.715 101.189 121.656 101.172L121.649 100.22C121.683 100.224 121.736 100.229 121.808 100.233C121.884 100.241 121.937 100.246 121.967 100.246C122.233 100.246 122.46 100.21 122.646 100.138C122.832 100.07 122.989 99.9536 123.116 99.7886C123.247 99.6278 123.359 99.4056 123.452 99.1221L123.941 97.7891ZM122.538 91.6318L124.322 96.9639L124.626 98.2017L123.782 98.6333L121.256 91.6318H122.538Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M257.278 87.7598V89.6958H256.326V87.7598H257.278ZM257.164 98.1255V99.8203H256.218V98.1255H257.164ZM258.434 96.1196C258.434 95.8657 258.376 95.6372 258.262 95.4341C258.148 95.231 257.96 95.0448 257.697 94.8755C257.435 94.7062 257.084 94.5496 256.644 94.4058C256.11 94.2407 255.649 94.0397 255.26 93.8027C254.875 93.5658 254.576 93.2716 254.365 92.9204C254.157 92.5692 254.054 92.1439 254.054 91.6445C254.054 91.124 254.166 90.6755 254.39 90.2988C254.614 89.9222 254.932 89.6323 255.342 89.4292C255.753 89.2261 256.235 89.1245 256.79 89.1245C257.221 89.1245 257.606 89.1901 257.945 89.3213C258.283 89.4482 258.569 89.6387 258.802 89.8926C259.039 90.1465 259.219 90.4575 259.341 90.8257C259.468 91.1938 259.532 91.6191 259.532 92.1016H258.364C258.364 91.818 258.33 91.5578 258.262 91.3208C258.194 91.0838 258.093 90.8786 257.958 90.7051C257.822 90.5273 257.657 90.3919 257.462 90.2988C257.268 90.2015 257.043 90.1528 256.79 90.1528C256.434 90.1528 256.14 90.2142 255.907 90.3369C255.679 90.4596 255.509 90.6331 255.399 90.8574C255.289 91.0775 255.234 91.3335 255.234 91.6255C255.234 91.8963 255.289 92.1333 255.399 92.3364C255.509 92.5396 255.696 92.7236 255.958 92.8887C256.225 93.0495 256.591 93.2082 257.056 93.3647C257.602 93.5382 258.065 93.7435 258.446 93.9805C258.827 94.2132 259.117 94.501 259.316 94.8438C259.515 95.1823 259.614 95.6034 259.614 96.1069C259.614 96.6528 259.492 97.1141 259.246 97.4907C259.001 97.8631 258.656 98.1466 258.211 98.3413C257.767 98.536 257.247 98.6333 256.65 98.6333C256.29 98.6333 255.935 98.5846 255.583 98.4873C255.232 98.39 254.915 98.2313 254.631 98.0112C254.348 97.7869 254.121 97.4928 253.952 97.1289C253.783 96.7607 253.698 96.3101 253.698 95.7769H254.879C254.879 96.1366 254.93 96.4349 255.031 96.6719C255.137 96.9046 255.277 97.0908 255.45 97.2305C255.624 97.3659 255.814 97.4632 256.021 97.5225C256.233 97.5775 256.443 97.605 256.65 97.605C257.031 97.605 257.352 97.5457 257.615 97.4272C257.881 97.3045 258.084 97.131 258.224 96.9067C258.364 96.6825 258.434 96.4201 258.434 96.1196ZM267.136 97.5352V98.5H261.087V97.6558L264.115 94.2852C264.487 93.8704 264.775 93.5192 264.978 93.2314C265.185 92.9395 265.329 92.6792 265.41 92.4507C265.494 92.2179 265.537 91.981 265.537 91.7397C265.537 91.4351 265.473 91.16 265.346 90.9146C265.223 90.6649 265.042 90.466 264.8 90.3179C264.559 90.1698 264.267 90.0957 263.924 90.0957C263.514 90.0957 263.171 90.1761 262.896 90.3369C262.625 90.4935 262.422 90.7135 262.287 90.9971C262.151 91.2806 262.083 91.6064 262.083 91.9746H260.909C260.909 91.4541 261.023 90.978 261.252 90.5464C261.48 90.1147 261.819 89.772 262.268 89.5181C262.716 89.2599 263.268 89.1309 263.924 89.1309C264.508 89.1309 265.008 89.2345 265.422 89.4419C265.837 89.645 266.154 89.9328 266.375 90.3052C266.599 90.6733 266.711 91.105 266.711 91.6001C266.711 91.8709 266.664 92.146 266.571 92.4253C266.482 92.7004 266.358 92.9754 266.197 93.2505C266.04 93.5256 265.856 93.7964 265.645 94.063C265.437 94.3296 265.215 94.592 264.978 94.8501L262.502 97.5352H267.136ZM269.878 94.1011L268.939 93.8599L269.402 89.2578H274.144V90.3433H270.399L270.12 92.8569C270.289 92.7596 270.503 92.6686 270.761 92.584C271.023 92.4993 271.324 92.457 271.662 92.457C272.09 92.457 272.472 92.5311 272.811 92.6792C273.15 92.8231 273.437 93.0304 273.674 93.3013C273.916 93.5721 274.1 93.8979 274.227 94.2788C274.354 94.6597 274.417 95.085 274.417 95.5547C274.417 95.999 274.356 96.4074 274.233 96.7798C274.114 97.1522 273.935 97.478 273.693 97.7573C273.452 98.0324 273.147 98.2461 272.779 98.3984C272.415 98.5508 271.986 98.627 271.491 98.627C271.118 98.627 270.765 98.5762 270.431 98.4746C270.101 98.3688 269.804 98.2101 269.542 97.9985C269.284 97.7827 269.072 97.5161 268.907 97.1987C268.746 96.8771 268.645 96.5005 268.603 96.0688H269.72C269.771 96.4159 269.872 96.7078 270.024 96.9448C270.177 97.1818 270.376 97.3617 270.621 97.4844C270.871 97.6029 271.161 97.6621 271.491 97.6621C271.77 97.6621 272.018 97.6134 272.233 97.5161C272.449 97.4188 272.631 97.2791 272.779 97.0972C272.927 96.9152 273.04 96.6951 273.116 96.437C273.196 96.1789 273.236 95.889 273.236 95.5674C273.236 95.2754 273.196 95.0046 273.116 94.7549C273.035 94.5052 272.915 94.2873 272.754 94.1011C272.597 93.9149 272.405 93.771 272.176 93.6694C271.948 93.5636 271.685 93.5107 271.389 93.5107C270.996 93.5107 270.697 93.5636 270.494 93.6694C270.295 93.7752 270.09 93.9191 269.878 94.1011Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1466"},(0,h.createElement)("rect",{x:"15",y:"41",width:"268",height:"62",rx:"4",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1466"},(0,h.createElement)("rect",{width:"18",height:"18",fill:"white",transform:"translate(15 62)"})),(0,h.createElement)("clipPath",{id:"clip2_75_1466"},(0,h.createElement)("rect",{width:"18",height:"18",fill:"white",transform:"translate(15 85)"})))),{__:On}=wp.i18n,{AdvancedFields:Jn,FieldSettingsWrapper:Rn,BlockLabel:qn,BlockDescription:Dn,BlockAdvancedValue:zn,BlockName:Un}=JetFBComponents,{useBlockAttributes:Gn,useUniqueNameOnDuplicate:Wn}=JetFBHooks,{InspectorControls:Kn,useBlockProps:$n,RichText:Yn}=wp.blockEditor,{CardHeader:Xn,CardBody:Qn,PanelBody:ea}=wp.components,{useEffect:Ca}=wp.element,ta=F(L.Card)({name:"StyledCard",class:"s1ip8zmx",propsAsIs:!0});t(6987);const la=JSON.parse('{"apiVersion":3,"name":"jet-forms/hidden-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","hidden"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Hidden Field","icon":"\\n\\n","attributes":{"return_raw":{"type":"boolean","default":false},"value":{"type":"object","default":{}},"render":{"type":"boolean","default":true},"field_value":{"type":"string","default":"post_id"},"hidden_value_field":{"type":"string","default":""},"query_var_key":{"type":"string","default":""},"date_format":{"type":"string","default":""},"hidden_value":{"type":"string","default":""},"name":{"type":"string","default":"hidden_field_name"},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false},"random":{"type":"object","default":{"length":10,"upper":true,"lower":true,"numbers":true,"symbols":true}}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:ra}=wp.i18n,{RangeControl:na,CheckboxControl:aa}=wp.components,{ToggleControl:ia}=wp.components,{__:oa}=wp.i18n,{addFilter:sa}=wp.hooks;sa("jfb.hidden-field.field-value.controls","jet-form-builder/random-string-controls",function(e){return C=>{var t;const{attributes:l,setAttributes:r}=C;if("random_string"!==l.field_value)return(0,h.createElement)(e,{...C});const n=Object.values({...l.random,length:void 0}).filter(Boolean).length,a=e=>{const[C]=Object.keys(e);l.random[C]&&1===n||r({random:{...l.random,...e}})};return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(na,{label:ra("String length","jet-form-builder"),value:null!==(t=l.random?.length)&&void 0!==t?t:10,onChange:e=>r({random:{...l.random,length:e}}),allowReset:!0,resetFallbackValue:10,min:1,max:50}),(0,h.createElement)(aa,{label:ra("Uppercase","jet-form-builder"),checked:l.random.upper,onChange:e=>a({upper:e})}),(0,h.createElement)(aa,{label:ra("Lowercase","jet-form-builder"),checked:l.random.lower,onChange:e=>a({lower:e})}),(0,h.createElement)(aa,{label:ra("Numbers","jet-form-builder"),checked:l.random.numbers,onChange:e=>a({numbers:e})}),(0,h.createElement)(aa,{label:ra("Symbols","jet-form-builder"),checked:l.random.symbols,onChange:e=>a({symbols:e})}))}}),sa("jfb.hidden-field.header.controls","jet-form-builder/disable-raw-value-control",function(e){return C=>{const{attributes:t,setAttributes:l}=C;return"random_string"!==t.field_value?(0,h.createElement)(e,{...C}):(0,h.createElement)(ia,{label:oa("Render in HTML","jet-form-builder"),checked:t.render,help:oa("Enable this option if you use this field in Calculated Field, Conditional Block, Advanced Validation, Global Macros, or Dynamic Value.","jet-form-builder"),onChange:e=>l({render:Boolean(e)})})}});const{__:ca}=wp.i18n,{createBlock:da}=wp.blocks,{name:ma,icon:ua=""}=la,pa={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:ua}}),description:ca("Insert Hidden field invisible on the frontend with the assigned value to use it in calculations or for other purposes.","jet-form-builder"),edit:function(e){const{attributes:C,setAttributes:t,isSelected:l,editProps:{uniqKey:r}}=e,n=$n();Wn();const[,a]=Gn();if(Ca(()=>{"referer_url"===C.field_value&&t({render:!0})},[C.field_value]),C.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Tn);const{label:i="Please set `Field Value`"}=JetFormHiddenField.sources.find(e=>e.value===C.field_value)||{label:"--",value:""},o=[i];switch(C.field_value){case"post_meta":case"user_meta":o.push(C.hidden_value_field);break;case"query_var":o.push(C.query_var_key);break;case"current_date":o.push(C.date_format);break;case"manual_input":o.push(C.hidden_value)}const s=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return[l&&(0,h.createElement)(Kn,{key:r("InspectorControls")},(0,h.createElement)(ea,{title:On("General","jet-form-builder")},(0,h.createElement)(qn,null),(0,h.createElement)(Un,null),(0,h.createElement)(Dn,null)),(0,h.createElement)(ea,{title:On("Value","jet-form-builder")},(0,h.createElement)(zn,null)),(0,h.createElement)(Rn,{...e},(0,h.createElement)(In,null)),(0,h.createElement)(Jn,null)),(0,h.createElement)("div",{...n,key:r("viewBlock")},(0,h.createElement)(ta,{elevation:2,className:s?"buddypress-active":""},(0,h.createElement)(Xn,null,(0,h.createElement)(Yn,{placeholder:"hidden_field_name...",allowedFormats:[],value:C.name,onChange:e=>a({name:e})})),(0,h.createElement)(Qn,null,l&&(0,h.createElement)(In,null),!l&&o.join(": "))))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>da("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>((e.default?.length||Object.keys(e.value)?.length)&&(e.field_value=""),da(ma,{...e})),priority:0}]}},{Tools:fa}=JetFBActions,Va=fa.withPlaceholder([{value:"all",label:"Any registered user"},{value:"upload_files",label:"Any user, who allowed to upload files"},{value:"edit_posts",label:"Any user, who allowed to edit posts"},{value:"any_user",label:"Any user ( incl. Guest )"}]),Ha=fa.withPlaceholder([{value:"id",label:"Attachment ID"},{value:"url",label:"Attachment URL"},{value:"both",label:"Array with attachment ID and URL"},{value:"ids",label:"Array of attachment IDs"}]),ha=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"15.5",y:"47.5",width:"156",height:"29",rx:"3.5",fill:"#E2E8F0"}),(0,h.createElement)("path",{d:"M62.6523 63.561H63.8711C63.8076 64.145 63.6405 64.6676 63.3696 65.1289C63.0988 65.5902 62.7158 65.9562 62.2207 66.2271C61.7256 66.4937 61.1077 66.627 60.3672 66.627C59.8255 66.627 59.3325 66.5254 58.8882 66.3223C58.4481 66.1191 58.0693 65.8314 57.752 65.459C57.4346 65.0824 57.1891 64.6317 57.0156 64.1069C56.8464 63.578 56.7617 62.9897 56.7617 62.3423V61.4219C56.7617 60.7744 56.8464 60.1883 57.0156 59.6636C57.1891 59.1346 57.4367 58.6818 57.7583 58.3052C58.0841 57.9285 58.4756 57.6387 58.9326 57.4355C59.3896 57.2324 59.9038 57.1309 60.4751 57.1309C61.1733 57.1309 61.7637 57.262 62.2461 57.5244C62.7285 57.7868 63.103 58.1507 63.3696 58.6162C63.6405 59.0775 63.8076 59.6128 63.8711 60.2222H62.6523C62.5931 59.7905 62.4831 59.4202 62.3223 59.1113C62.1615 58.7982 61.9329 58.557 61.6367 58.3877C61.3405 58.2184 60.9533 58.1338 60.4751 58.1338C60.0646 58.1338 59.7028 58.2121 59.3896 58.3687C59.0807 58.5252 58.8205 58.7474 58.6089 59.0352C58.4015 59.3229 58.245 59.6678 58.1392 60.0698C58.0334 60.4718 57.9805 60.9183 57.9805 61.4092V62.3423C57.9805 62.7951 58.027 63.2204 58.1201 63.6182C58.2174 64.016 58.3634 64.3651 58.5581 64.6655C58.7528 64.966 59.0003 65.203 59.3008 65.3765C59.6012 65.5457 59.9567 65.6304 60.3672 65.6304C60.8877 65.6304 61.3024 65.5479 61.6113 65.3828C61.9202 65.2178 62.153 64.9808 62.3096 64.6719C62.4704 64.363 62.5846 63.9927 62.6523 63.561ZM66.5371 56.75V66.5H65.3628V56.75H66.5371ZM66.2578 62.8057L65.769 62.7866C65.7733 62.3169 65.8431 61.8831 65.9785 61.4854C66.1139 61.0833 66.3044 60.7342 66.5498 60.438C66.7952 60.1418 67.0872 59.9132 67.4258 59.7524C67.7686 59.5874 68.1473 59.5049 68.562 59.5049C68.9006 59.5049 69.2052 59.5514 69.4761 59.6445C69.7469 59.7334 69.9775 59.8773 70.168 60.0762C70.3626 60.2751 70.5107 60.5332 70.6123 60.8506C70.7139 61.1637 70.7646 61.5467 70.7646 61.9995V66.5H69.584V61.9868C69.584 61.6271 69.5311 61.3394 69.4253 61.1235C69.3195 60.9035 69.165 60.7448 68.9619 60.6475C68.7588 60.5459 68.5091 60.4951 68.2129 60.4951C67.9209 60.4951 67.6543 60.5565 67.4131 60.6792C67.1761 60.8019 66.9709 60.9712 66.7974 61.187C66.6281 61.4028 66.4948 61.6504 66.3975 61.9297C66.3044 62.2048 66.2578 62.4967 66.2578 62.8057ZM72.2119 63.1421V62.9961C72.2119 62.501 72.2839 62.0418 72.4277 61.6187C72.5716 61.1912 72.779 60.821 73.0498 60.5078C73.3206 60.1904 73.6486 59.945 74.0337 59.7715C74.4188 59.5938 74.8504 59.5049 75.3286 59.5049C75.811 59.5049 76.2448 59.5938 76.6299 59.7715C77.0192 59.945 77.3493 60.1904 77.6201 60.5078C77.8952 60.821 78.1047 61.1912 78.2485 61.6187C78.3924 62.0418 78.4644 62.501 78.4644 62.9961V63.1421C78.4644 63.6372 78.3924 64.0964 78.2485 64.5195C78.1047 64.9427 77.8952 65.313 77.6201 65.6304C77.3493 65.9435 77.0213 66.189 76.6362 66.3667C76.2554 66.5402 75.8237 66.627 75.3413 66.627C74.8589 66.627 74.4251 66.5402 74.04 66.3667C73.6549 66.189 73.3249 65.9435 73.0498 65.6304C72.779 65.313 72.5716 64.9427 72.4277 64.5195C72.2839 64.0964 72.2119 63.6372 72.2119 63.1421ZM73.3862 62.9961V63.1421C73.3862 63.4849 73.4264 63.8086 73.5068 64.1133C73.5872 64.4137 73.7078 64.6803 73.8687 64.9131C74.0337 65.1458 74.2389 65.3299 74.4844 65.4653C74.7298 65.5965 75.0155 65.6621 75.3413 65.6621C75.6629 65.6621 75.9443 65.5965 76.1855 65.4653C76.431 65.3299 76.6341 65.1458 76.7949 64.9131C76.9557 64.6803 77.0763 64.4137 77.1567 64.1133C77.2414 63.8086 77.2837 63.4849 77.2837 63.1421V62.9961C77.2837 62.6576 77.2414 62.3381 77.1567 62.0376C77.0763 61.7329 76.9536 61.4642 76.7886 61.2314C76.6278 60.9945 76.4246 60.8083 76.1792 60.6729C75.938 60.5374 75.6545 60.4697 75.3286 60.4697C75.007 60.4697 74.7235 60.5374 74.478 60.6729C74.2368 60.8083 74.0337 60.9945 73.8687 61.2314C73.7078 61.4642 73.5872 61.7329 73.5068 62.0376C73.4264 62.3381 73.3862 62.6576 73.3862 62.9961ZM79.626 63.1421V62.9961C79.626 62.501 79.6979 62.0418 79.8418 61.6187C79.9857 61.1912 80.193 60.821 80.4639 60.5078C80.7347 60.1904 81.0627 59.945 81.4478 59.7715C81.8328 59.5938 82.2645 59.5049 82.7427 59.5049C83.2251 59.5049 83.6589 59.5938 84.0439 59.7715C84.4333 59.945 84.7633 60.1904 85.0342 60.5078C85.3092 60.821 85.5187 61.1912 85.6626 61.6187C85.8065 62.0418 85.8784 62.501 85.8784 62.9961V63.1421C85.8784 63.6372 85.8065 64.0964 85.6626 64.5195C85.5187 64.9427 85.3092 65.313 85.0342 65.6304C84.7633 65.9435 84.4354 66.189 84.0503 66.3667C83.6694 66.5402 83.2378 66.627 82.7554 66.627C82.2729 66.627 81.8392 66.5402 81.4541 66.3667C81.069 66.189 80.7389 65.9435 80.4639 65.6304C80.193 65.313 79.9857 64.9427 79.8418 64.5195C79.6979 64.0964 79.626 63.6372 79.626 63.1421ZM80.8003 62.9961V63.1421C80.8003 63.4849 80.8405 63.8086 80.9209 64.1133C81.0013 64.4137 81.1219 64.6803 81.2827 64.9131C81.4478 65.1458 81.653 65.3299 81.8984 65.4653C82.1439 65.5965 82.4295 65.6621 82.7554 65.6621C83.077 65.6621 83.3584 65.5965 83.5996 65.4653C83.8451 65.3299 84.0482 65.1458 84.209 64.9131C84.3698 64.6803 84.4904 64.4137 84.5708 64.1133C84.6554 63.8086 84.6978 63.4849 84.6978 63.1421V62.9961C84.6978 62.6576 84.6554 62.3381 84.5708 62.0376C84.4904 61.7329 84.3677 61.4642 84.2026 61.2314C84.0418 60.9945 83.8387 60.8083 83.5933 60.6729C83.3521 60.5374 83.0685 60.4697 82.7427 60.4697C82.4211 60.4697 82.1375 60.5374 81.8921 60.6729C81.6509 60.8083 81.4478 60.9945 81.2827 61.2314C81.1219 61.4642 81.0013 61.7329 80.9209 62.0376C80.8405 62.3381 80.8003 62.6576 80.8003 62.9961ZM91.3501 64.6782C91.3501 64.509 91.312 64.3524 91.2358 64.2085C91.1639 64.0604 91.0137 63.9271 90.7852 63.8086C90.5609 63.6859 90.2223 63.5801 89.7695 63.4912C89.3887 63.4108 89.0438 63.3156 88.7349 63.2056C88.4302 63.0955 88.1699 62.9622 87.9541 62.8057C87.7425 62.6491 87.5796 62.465 87.4653 62.2534C87.3511 62.0418 87.2939 61.7943 87.2939 61.5107C87.2939 61.2399 87.3532 60.9839 87.4717 60.7427C87.5944 60.5015 87.7658 60.2878 87.9858 60.1016C88.2101 59.9154 88.4788 59.7694 88.792 59.6636C89.1051 59.5578 89.4543 59.5049 89.8394 59.5049C90.3895 59.5049 90.8592 59.6022 91.2485 59.7969C91.6379 59.9915 91.9362 60.2518 92.1436 60.5776C92.3509 60.8993 92.4546 61.2568 92.4546 61.6504H91.2803C91.2803 61.46 91.2231 61.2759 91.1089 61.0981C90.9989 60.9162 90.8359 60.766 90.6201 60.6475C90.4085 60.529 90.1483 60.4697 89.8394 60.4697C89.5135 60.4697 89.249 60.5205 89.0459 60.6221C88.847 60.7194 88.701 60.8442 88.6079 60.9966C88.519 61.1489 88.4746 61.3097 88.4746 61.479C88.4746 61.606 88.4958 61.7202 88.5381 61.8218C88.5846 61.9191 88.665 62.0101 88.7793 62.0947C88.8936 62.1751 89.0544 62.2513 89.2617 62.3232C89.4691 62.3952 89.7336 62.4671 90.0552 62.5391C90.618 62.666 91.0814 62.8184 91.4453 62.9961C91.8092 63.1738 92.0801 63.3918 92.2578 63.6499C92.4355 63.908 92.5244 64.2212 92.5244 64.5894C92.5244 64.8898 92.4609 65.1649 92.334 65.4146C92.2113 65.6642 92.0314 65.88 91.7944 66.062C91.5617 66.2397 91.2824 66.3794 90.9565 66.481C90.6349 66.5783 90.2731 66.627 89.8711 66.627C89.266 66.627 88.7539 66.519 88.335 66.3032C87.916 66.0874 87.5986 65.8081 87.3828 65.4653C87.167 65.1226 87.0591 64.7607 87.0591 64.3799H88.2397C88.2567 64.7015 88.3498 64.9575 88.519 65.1479C88.6883 65.3341 88.8957 65.4674 89.1411 65.5479C89.3866 65.624 89.6299 65.6621 89.8711 65.6621C90.1927 65.6621 90.4614 65.6198 90.6772 65.5352C90.8973 65.4505 91.0645 65.3341 91.1787 65.186C91.293 65.0379 91.3501 64.8687 91.3501 64.6782ZM96.917 66.627C96.4388 66.627 96.005 66.5465 95.6157 66.3857C95.2306 66.2207 94.8984 65.9901 94.6191 65.6938C94.3441 65.3976 94.1325 65.0464 93.9844 64.6401C93.8363 64.2339 93.7622 63.7896 93.7622 63.3071V63.0405C93.7622 62.4819 93.8447 61.9847 94.0098 61.5488C94.1748 61.1087 94.3991 60.7363 94.6826 60.4316C94.9661 60.127 95.2878 59.8963 95.6475 59.7397C96.0072 59.5832 96.3796 59.5049 96.7646 59.5049C97.2555 59.5049 97.6787 59.5895 98.0342 59.7588C98.3939 59.9281 98.688 60.165 98.9165 60.4697C99.145 60.7702 99.3143 61.1257 99.4243 61.5361C99.5343 61.9424 99.5894 62.3867 99.5894 62.8691V63.396H94.4604V62.4375H98.415V62.3486C98.3981 62.0439 98.3346 61.7477 98.2246 61.46C98.1188 61.1722 97.9495 60.9352 97.7168 60.749C97.484 60.5628 97.1667 60.4697 96.7646 60.4697C96.498 60.4697 96.2526 60.5269 96.0283 60.6411C95.804 60.7511 95.6115 60.9162 95.4507 61.1362C95.2899 61.3563 95.165 61.625 95.0762 61.9424C94.9873 62.2598 94.9429 62.6258 94.9429 63.0405V63.3071C94.9429 63.633 94.9873 63.9398 95.0762 64.2275C95.1693 64.5111 95.3026 64.7607 95.4761 64.9766C95.6538 65.1924 95.8675 65.3617 96.1172 65.4844C96.3711 65.6071 96.6589 65.6685 96.9805 65.6685C97.3952 65.6685 97.7464 65.5838 98.0342 65.4146C98.3219 65.2453 98.5737 65.0189 98.7896 64.7354L99.5005 65.3003C99.3524 65.5246 99.1641 65.7383 98.9355 65.9414C98.707 66.1445 98.4256 66.3096 98.0913 66.4365C97.7612 66.5635 97.3698 66.627 96.917 66.627ZM105.588 57.2578V66.5H104.363V57.2578H105.588ZM109.46 61.4155V62.4185H105.321V61.4155H109.46ZM110.088 57.2578V58.2607H105.321V57.2578H110.088ZM112.646 59.6318V66.5H111.466V59.6318H112.646ZM111.377 57.8101C111.377 57.6196 111.434 57.4588 111.548 57.3276C111.667 57.1965 111.84 57.1309 112.069 57.1309C112.293 57.1309 112.465 57.1965 112.583 57.3276C112.706 57.4588 112.767 57.6196 112.767 57.8101C112.767 57.992 112.706 58.1486 112.583 58.2798C112.465 58.4067 112.293 58.4702 112.069 58.4702C111.84 58.4702 111.667 58.4067 111.548 58.2798C111.434 58.1486 111.377 57.992 111.377 57.8101ZM115.808 56.75V66.5H114.627V56.75H115.808ZM120.543 66.627C120.065 66.627 119.631 66.5465 119.242 66.3857C118.857 66.2207 118.524 65.9901 118.245 65.6938C117.97 65.3976 117.758 65.0464 117.61 64.6401C117.462 64.2339 117.388 63.7896 117.388 63.3071V63.0405C117.388 62.4819 117.471 61.9847 117.636 61.5488C117.801 61.1087 118.025 60.7363 118.309 60.4316C118.592 60.127 118.914 59.8963 119.273 59.7397C119.633 59.5832 120.006 59.5049 120.391 59.5049C120.882 59.5049 121.305 59.5895 121.66 59.7588C122.02 59.9281 122.314 60.165 122.542 60.4697C122.771 60.7702 122.94 61.1257 123.05 61.5361C123.16 61.9424 123.215 62.3867 123.215 62.8691V63.396H118.086V62.4375H122.041V62.3486C122.024 62.0439 121.961 61.7477 121.851 61.46C121.745 61.1722 121.576 60.9352 121.343 60.749C121.11 60.5628 120.793 60.4697 120.391 60.4697C120.124 60.4697 119.879 60.5269 119.654 60.6411C119.43 60.7511 119.237 60.9162 119.077 61.1362C118.916 61.3563 118.791 61.625 118.702 61.9424C118.613 62.2598 118.569 62.6258 118.569 63.0405V63.3071C118.569 63.633 118.613 63.9398 118.702 64.2275C118.795 64.5111 118.929 64.7607 119.102 64.9766C119.28 65.1924 119.493 65.3617 119.743 65.4844C119.997 65.6071 120.285 65.6685 120.606 65.6685C121.021 65.6685 121.372 65.5838 121.66 65.4146C121.948 65.2453 122.2 65.0189 122.416 64.7354L123.126 65.3003C122.978 65.5246 122.79 65.7383 122.562 65.9414C122.333 66.1445 122.052 66.3096 121.717 66.4365C121.387 66.5635 120.996 66.627 120.543 66.627ZM128.585 64.6782C128.585 64.509 128.547 64.3524 128.471 64.2085C128.399 64.0604 128.249 63.9271 128.021 63.8086C127.796 63.6859 127.458 63.5801 127.005 63.4912C126.624 63.4108 126.279 63.3156 125.97 63.2056C125.666 63.0955 125.405 62.9622 125.189 62.8057C124.978 62.6491 124.815 62.465 124.701 62.2534C124.586 62.0418 124.529 61.7943 124.529 61.5107C124.529 61.2399 124.589 60.9839 124.707 60.7427C124.83 60.5015 125.001 60.2878 125.221 60.1016C125.445 59.9154 125.714 59.7694 126.027 59.6636C126.34 59.5578 126.69 59.5049 127.075 59.5049C127.625 59.5049 128.095 59.6022 128.484 59.7969C128.873 59.9915 129.172 60.2518 129.379 60.5776C129.586 60.8993 129.69 61.2568 129.69 61.6504H128.516C128.516 61.46 128.458 61.2759 128.344 61.0981C128.234 60.9162 128.071 60.766 127.855 60.6475C127.644 60.529 127.384 60.4697 127.075 60.4697C126.749 60.4697 126.484 60.5205 126.281 60.6221C126.082 60.7194 125.936 60.8442 125.843 60.9966C125.754 61.1489 125.71 61.3097 125.71 61.479C125.71 61.606 125.731 61.7202 125.773 61.8218C125.82 61.9191 125.9 62.0101 126.015 62.0947C126.129 62.1751 126.29 62.2513 126.497 62.3232C126.704 62.3952 126.969 62.4671 127.291 62.5391C127.853 62.666 128.317 62.8184 128.681 62.9961C129.045 63.1738 129.315 63.3918 129.493 63.6499C129.671 63.908 129.76 64.2212 129.76 64.5894C129.76 64.8898 129.696 65.1649 129.569 65.4146C129.447 65.6642 129.267 65.88 129.03 66.062C128.797 66.2397 128.518 66.3794 128.192 66.481C127.87 66.5783 127.508 66.627 127.106 66.627C126.501 66.627 125.989 66.519 125.57 66.3032C125.151 66.0874 124.834 65.8081 124.618 65.4653C124.402 65.1226 124.294 64.7607 124.294 64.3799H125.475C125.492 64.7015 125.585 64.9575 125.754 65.1479C125.924 65.3341 126.131 65.4674 126.376 65.5479C126.622 65.624 126.865 65.6621 127.106 65.6621C127.428 65.6621 127.697 65.6198 127.913 65.5352C128.133 65.4505 128.3 65.3341 128.414 65.186C128.528 65.0379 128.585 64.8687 128.585 64.6782Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"15.5",y:"47.5",width:"156",height:"29",rx:"3.5",stroke:"#0F172A"}),(0,h.createElement)("path",{d:"M188.182 57.2578V66.5H186.951L182.298 59.3716V66.5H181.073V57.2578H182.298L186.97 64.4053V57.2578H188.182ZM189.864 63.1421V62.9961C189.864 62.501 189.936 62.0418 190.08 61.6187C190.224 61.1912 190.431 60.821 190.702 60.5078C190.973 60.1904 191.301 59.945 191.686 59.7715C192.071 59.5938 192.503 59.5049 192.981 59.5049C193.463 59.5049 193.897 59.5938 194.282 59.7715C194.672 59.945 195.002 60.1904 195.272 60.5078C195.548 60.821 195.757 61.1912 195.901 61.6187C196.045 62.0418 196.117 62.501 196.117 62.9961V63.1421C196.117 63.6372 196.045 64.0964 195.901 64.5195C195.757 64.9427 195.548 65.313 195.272 65.6304C195.002 65.9435 194.674 66.189 194.289 66.3667C193.908 66.5402 193.476 66.627 192.994 66.627C192.511 66.627 192.077 66.5402 191.692 66.3667C191.307 66.189 190.977 65.9435 190.702 65.6304C190.431 65.313 190.224 64.9427 190.08 64.5195C189.936 64.0964 189.864 63.6372 189.864 63.1421ZM191.039 62.9961V63.1421C191.039 63.4849 191.079 63.8086 191.159 64.1133C191.24 64.4137 191.36 64.6803 191.521 64.9131C191.686 65.1458 191.891 65.3299 192.137 65.4653C192.382 65.5965 192.668 65.6621 192.994 65.6621C193.315 65.6621 193.597 65.5965 193.838 65.4653C194.083 65.3299 194.286 65.1458 194.447 64.9131C194.608 64.6803 194.729 64.4137 194.809 64.1133C194.894 63.8086 194.936 63.4849 194.936 63.1421V62.9961C194.936 62.6576 194.894 62.3381 194.809 62.0376C194.729 61.7329 194.606 61.4642 194.441 61.2314C194.28 60.9945 194.077 60.8083 193.832 60.6729C193.59 60.5374 193.307 60.4697 192.981 60.4697C192.659 60.4697 192.376 60.5374 192.13 60.6729C191.889 60.8083 191.686 60.9945 191.521 61.2314C191.36 61.4642 191.24 61.7329 191.159 62.0376C191.079 62.3381 191.039 62.6576 191.039 62.9961ZM202.382 66.5H201.208V59.0352C201.208 58.5146 201.309 58.0745 201.512 57.7148C201.715 57.3551 202.005 57.0822 202.382 56.896C202.758 56.7098 203.205 56.6167 203.721 56.6167C204.026 56.6167 204.324 56.6548 204.616 56.731C204.908 56.8029 205.209 56.8939 205.518 57.0039L205.321 57.9941C205.126 57.918 204.9 57.846 204.642 57.7783C204.388 57.7064 204.108 57.6704 203.804 57.6704C203.3 57.6704 202.936 57.7847 202.712 58.0132C202.492 58.2375 202.382 58.5781 202.382 59.0352V66.5ZM203.785 59.6318V60.5332H200.122V59.6318H203.785ZM206.095 59.6318V66.5H204.921V59.6318H206.095ZM209.301 56.75V66.5H208.12V56.75H209.301ZM214.036 66.627C213.558 66.627 213.124 66.5465 212.735 66.3857C212.35 66.2207 212.018 65.9901 211.738 65.6938C211.463 65.3976 211.252 65.0464 211.104 64.6401C210.955 64.2339 210.881 63.7896 210.881 63.3071V63.0405C210.881 62.4819 210.964 61.9847 211.129 61.5488C211.294 61.1087 211.518 60.7363 211.802 60.4316C212.085 60.127 212.407 59.8963 212.767 59.7397C213.126 59.5832 213.499 59.5049 213.884 59.5049C214.375 59.5049 214.798 59.5895 215.153 59.7588C215.513 59.9281 215.807 60.165 216.036 60.4697C216.264 60.7702 216.433 61.1257 216.543 61.5361C216.653 61.9424 216.708 62.3867 216.708 62.8691V63.396H211.58V62.4375H215.534V62.3486C215.517 62.0439 215.454 61.7477 215.344 61.46C215.238 61.1722 215.069 60.9352 214.836 60.749C214.603 60.5628 214.286 60.4697 213.884 60.4697C213.617 60.4697 213.372 60.5269 213.147 60.6411C212.923 60.7511 212.731 60.9162 212.57 61.1362C212.409 61.3563 212.284 61.625 212.195 61.9424C212.106 62.2598 212.062 62.6258 212.062 63.0405V63.3071C212.062 63.633 212.106 63.9398 212.195 64.2275C212.288 64.5111 212.422 64.7607 212.595 64.9766C212.773 65.1924 212.987 65.3617 213.236 65.4844C213.49 65.6071 213.778 65.6685 214.1 65.6685C214.514 65.6685 214.866 65.5838 215.153 65.4146C215.441 65.2453 215.693 65.0189 215.909 64.7354L216.62 65.3003C216.472 65.5246 216.283 65.7383 216.055 65.9414C215.826 66.1445 215.545 66.3096 215.21 66.4365C214.88 66.5635 214.489 66.627 214.036 66.627ZM224.053 65.6621C224.332 65.6621 224.59 65.605 224.827 65.4907C225.064 65.3765 225.259 65.2199 225.411 65.021C225.563 64.8179 225.65 64.5872 225.671 64.3291H226.789C226.767 64.7354 226.63 65.1141 226.376 65.4653C226.126 65.8123 225.798 66.0938 225.392 66.3096C224.986 66.5212 224.539 66.627 224.053 66.627C223.536 66.627 223.086 66.536 222.701 66.354C222.32 66.172 222.002 65.9224 221.749 65.605C221.499 65.2876 221.311 64.9237 221.184 64.5132C221.061 64.0985 221 63.6605 221 63.1992V62.9326C221 62.4714 221.061 62.0355 221.184 61.625C221.311 61.2103 221.499 60.8442 221.749 60.5269C222.002 60.2095 222.32 59.9598 222.701 59.7778C223.086 59.5959 223.536 59.5049 224.053 59.5049C224.59 59.5049 225.06 59.6149 225.462 59.835C225.864 60.0508 226.179 60.347 226.408 60.7236C226.64 61.096 226.767 61.5192 226.789 61.9932H225.671C225.65 61.7096 225.57 61.4536 225.43 61.2251C225.295 60.9966 225.109 60.8146 224.872 60.6792C224.639 60.5396 224.366 60.4697 224.053 60.4697C223.693 60.4697 223.39 60.5417 223.145 60.6855C222.904 60.8252 222.711 61.0156 222.567 61.2568C222.428 61.4938 222.326 61.7583 222.263 62.0503C222.203 62.3381 222.174 62.6322 222.174 62.9326V63.1992C222.174 63.4997 222.203 63.7959 222.263 64.0879C222.322 64.3799 222.421 64.6444 222.561 64.8813C222.705 65.1183 222.897 65.3088 223.139 65.4526C223.384 65.5923 223.689 65.6621 224.053 65.6621ZM229.283 56.75V66.5H228.109V56.75H229.283ZM229.004 62.8057L228.515 62.7866C228.519 62.3169 228.589 61.8831 228.725 61.4854C228.86 61.0833 229.05 60.7342 229.296 60.438C229.541 60.1418 229.833 59.9132 230.172 59.7524C230.515 59.5874 230.893 59.5049 231.308 59.5049C231.647 59.5049 231.951 59.5514 232.222 59.6445C232.493 59.7334 232.724 59.8773 232.914 60.0762C233.109 60.2751 233.257 60.5332 233.358 60.8506C233.46 61.1637 233.511 61.5467 233.511 61.9995V66.5H232.33V61.9868C232.33 61.6271 232.277 61.3394 232.171 61.1235C232.066 60.9035 231.911 60.7448 231.708 60.6475C231.505 60.5459 231.255 60.4951 230.959 60.4951C230.667 60.4951 230.4 60.5565 230.159 60.6792C229.922 60.8019 229.717 60.9712 229.543 61.187C229.374 61.4028 229.241 61.6504 229.144 61.9297C229.05 62.2048 229.004 62.4967 229.004 62.8057ZM234.958 63.1421V62.9961C234.958 62.501 235.03 62.0418 235.174 61.6187C235.318 61.1912 235.525 60.821 235.796 60.5078C236.067 60.1904 236.395 59.945 236.78 59.7715C237.165 59.5938 237.597 59.5049 238.075 59.5049C238.557 59.5049 238.991 59.5938 239.376 59.7715C239.765 59.945 240.095 60.1904 240.366 60.5078C240.641 60.821 240.851 61.1912 240.995 61.6187C241.139 62.0418 241.21 62.501 241.21 62.9961V63.1421C241.21 63.6372 241.139 64.0964 240.995 64.5195C240.851 64.9427 240.641 65.313 240.366 65.6304C240.095 65.9435 239.767 66.189 239.382 66.3667C239.001 66.5402 238.57 66.627 238.087 66.627C237.605 66.627 237.171 66.5402 236.786 66.3667C236.401 66.189 236.071 65.9435 235.796 65.6304C235.525 65.313 235.318 64.9427 235.174 64.5195C235.03 64.0964 234.958 63.6372 234.958 63.1421ZM236.132 62.9961V63.1421C236.132 63.4849 236.173 63.8086 236.253 64.1133C236.333 64.4137 236.454 64.6803 236.615 64.9131C236.78 65.1458 236.985 65.3299 237.23 65.4653C237.476 65.5965 237.762 65.6621 238.087 65.6621C238.409 65.6621 238.69 65.5965 238.932 65.4653C239.177 65.3299 239.38 65.1458 239.541 64.9131C239.702 64.6803 239.822 64.4137 239.903 64.1133C239.987 63.8086 240.03 63.4849 240.03 63.1421V62.9961C240.03 62.6576 239.987 62.3381 239.903 62.0376C239.822 61.7329 239.7 61.4642 239.535 61.2314C239.374 60.9945 239.171 60.8083 238.925 60.6729C238.684 60.5374 238.401 60.4697 238.075 60.4697C237.753 60.4697 237.47 60.5374 237.224 60.6729C236.983 60.8083 236.78 60.9945 236.615 61.2314C236.454 61.4642 236.333 61.7329 236.253 62.0376C236.173 62.3381 236.132 62.6576 236.132 62.9961ZM246.682 64.6782C246.682 64.509 246.644 64.3524 246.568 64.2085C246.496 64.0604 246.346 63.9271 246.117 63.8086C245.893 63.6859 245.554 63.5801 245.102 63.4912C244.721 63.4108 244.376 63.3156 244.067 63.2056C243.762 63.0955 243.502 62.9622 243.286 62.8057C243.075 62.6491 242.912 62.465 242.797 62.2534C242.683 62.0418 242.626 61.7943 242.626 61.5107C242.626 61.2399 242.685 60.9839 242.804 60.7427C242.926 60.5015 243.098 60.2878 243.318 60.1016C243.542 59.9154 243.811 59.7694 244.124 59.6636C244.437 59.5578 244.786 59.5049 245.171 59.5049C245.722 59.5049 246.191 59.6022 246.581 59.7969C246.97 59.9915 247.268 60.2518 247.476 60.5776C247.683 60.8993 247.787 61.2568 247.787 61.6504H246.612C246.612 61.46 246.555 61.2759 246.441 61.0981C246.331 60.9162 246.168 60.766 245.952 60.6475C245.741 60.529 245.48 60.4697 245.171 60.4697C244.846 60.4697 244.581 60.5205 244.378 60.6221C244.179 60.7194 244.033 60.8442 243.94 60.9966C243.851 61.1489 243.807 61.3097 243.807 61.479C243.807 61.606 243.828 61.7202 243.87 61.8218C243.917 61.9191 243.997 62.0101 244.111 62.0947C244.226 62.1751 244.386 62.2513 244.594 62.3232C244.801 62.3952 245.066 62.4671 245.387 62.5391C245.95 62.666 246.413 62.8184 246.777 62.9961C247.141 63.1738 247.412 63.3918 247.59 63.6499C247.768 63.908 247.856 64.2212 247.856 64.5894C247.856 64.8898 247.793 65.1649 247.666 65.4146C247.543 65.6642 247.363 65.88 247.126 66.062C246.894 66.2397 246.614 66.3794 246.289 66.481C245.967 66.5783 245.605 66.627 245.203 66.627C244.598 66.627 244.086 66.519 243.667 66.3032C243.248 66.0874 242.931 65.8081 242.715 65.4653C242.499 65.1226 242.391 64.7607 242.391 64.3799H243.572C243.589 64.7015 243.682 64.9575 243.851 65.1479C244.02 65.3341 244.228 65.4674 244.473 65.5479C244.719 65.624 244.962 65.6621 245.203 65.6621C245.525 65.6621 245.793 65.6198 246.009 65.5352C246.229 65.4505 246.396 65.3341 246.511 65.186C246.625 65.0379 246.682 64.8687 246.682 64.6782ZM252.249 66.627C251.771 66.627 251.337 66.5465 250.948 66.3857C250.563 66.2207 250.23 65.9901 249.951 65.6938C249.676 65.3976 249.465 65.0464 249.316 64.6401C249.168 64.2339 249.094 63.7896 249.094 63.3071V63.0405C249.094 62.4819 249.177 61.9847 249.342 61.5488C249.507 61.1087 249.731 60.7363 250.015 60.4316C250.298 60.127 250.62 59.8963 250.979 59.7397C251.339 59.5832 251.712 59.5049 252.097 59.5049C252.588 59.5049 253.011 59.5895 253.366 59.7588C253.726 59.9281 254.02 60.165 254.249 60.4697C254.477 60.7702 254.646 61.1257 254.756 61.5361C254.866 61.9424 254.921 62.3867 254.921 62.8691V63.396H249.792V62.4375H253.747V62.3486C253.73 62.0439 253.667 61.7477 253.557 61.46C253.451 61.1722 253.282 60.9352 253.049 60.749C252.816 60.5628 252.499 60.4697 252.097 60.4697C251.83 60.4697 251.585 60.5269 251.36 60.6411C251.136 60.7511 250.944 60.9162 250.783 61.1362C250.622 61.3563 250.497 61.625 250.408 61.9424C250.319 62.2598 250.275 62.6258 250.275 63.0405V63.3071C250.275 63.633 250.319 63.9398 250.408 64.2275C250.501 64.5111 250.635 64.7607 250.808 64.9766C250.986 65.1924 251.2 65.3617 251.449 65.4844C251.703 65.6071 251.991 65.6685 252.312 65.6685C252.727 65.6685 253.078 65.5838 253.366 65.4146C253.654 65.2453 253.906 65.0189 254.122 64.7354L254.833 65.3003C254.684 65.5246 254.496 65.7383 254.268 65.9414C254.039 66.1445 253.758 66.3096 253.423 66.4365C253.093 66.5635 252.702 66.627 252.249 66.627ZM257.467 61.0981V66.5H256.292V59.6318H257.403L257.467 61.0981ZM257.188 62.8057L256.699 62.7866C256.703 62.3169 256.773 61.8831 256.908 61.4854C257.044 61.0833 257.234 60.7342 257.479 60.438C257.725 60.1418 258.017 59.9132 258.355 59.7524C258.698 59.5874 259.077 59.5049 259.492 59.5049C259.83 59.5049 260.135 59.5514 260.406 59.6445C260.677 59.7334 260.907 59.8773 261.098 60.0762C261.292 60.2751 261.44 60.5332 261.542 60.8506C261.644 61.1637 261.694 61.5467 261.694 61.9995V66.5H260.514V61.9868C260.514 61.6271 260.461 61.3394 260.355 61.1235C260.249 60.9035 260.095 60.7448 259.892 60.6475C259.688 60.5459 259.439 60.4951 259.143 60.4951C258.851 60.4951 258.584 60.5565 258.343 60.6792C258.106 60.8019 257.901 60.9712 257.727 61.187C257.558 61.4028 257.424 61.6504 257.327 61.9297C257.234 62.2048 257.188 62.4967 257.188 62.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M16.46 84.7578H17.647L20.6748 92.2925L23.6963 84.7578H24.8896L21.1318 94H20.2051L16.46 84.7578ZM16.0728 84.7578H17.1201L17.2915 90.3945V94H16.0728V84.7578ZM24.2231 84.7578H25.2705V94H24.0518V90.3945L24.2231 84.7578ZM31.2944 92.8257V89.29C31.2944 89.0192 31.2394 88.7843 31.1294 88.5854C31.0236 88.3823 30.8628 88.2257 30.647 88.1157C30.4312 88.0057 30.1646 87.9507 29.8472 87.9507C29.5509 87.9507 29.2907 88.0015 29.0664 88.103C28.8464 88.2046 28.6729 88.3379 28.5459 88.5029C28.4232 88.668 28.3618 88.8457 28.3618 89.0361H27.1875C27.1875 88.7907 27.251 88.5474 27.3779 88.3062C27.5049 88.0649 27.6868 87.847 27.9238 87.6523C28.165 87.4535 28.4528 87.2969 28.7871 87.1826C29.1257 87.0641 29.5023 87.0049 29.917 87.0049C30.4163 87.0049 30.8564 87.0895 31.2373 87.2588C31.6224 87.4281 31.9229 87.6841 32.1387 88.0269C32.3587 88.3654 32.4688 88.7907 32.4688 89.3027V92.502C32.4688 92.7305 32.4878 92.9738 32.5259 93.2319C32.5682 93.4901 32.6296 93.7122 32.71 93.8984V94H31.4849C31.4256 93.8646 31.3791 93.6847 31.3452 93.4604C31.3114 93.2319 31.2944 93.0203 31.2944 92.8257ZM31.4976 89.8359L31.5103 90.6611H30.3232C29.9889 90.6611 29.6906 90.6886 29.4282 90.7437C29.1659 90.7944 28.9458 90.8727 28.7681 90.9785C28.5903 91.0843 28.4549 91.2176 28.3618 91.3784C28.2687 91.535 28.2222 91.7191 28.2222 91.9307C28.2222 92.1465 28.2708 92.3433 28.3682 92.521C28.4655 92.6987 28.6115 92.8405 28.8062 92.9463C29.005 93.0479 29.2484 93.0986 29.5361 93.0986C29.8958 93.0986 30.2132 93.0225 30.4883 92.8701C30.7633 92.7178 30.9813 92.5316 31.1421 92.3115C31.3071 92.0915 31.396 91.8778 31.4087 91.6704L31.9102 92.2354C31.8805 92.4131 31.8001 92.6099 31.6689 92.8257C31.5378 93.0415 31.3621 93.2489 31.1421 93.4478C30.9263 93.6424 30.6681 93.8053 30.3677 93.9365C30.0715 94.0635 29.7371 94.127 29.3647 94.127C28.8993 94.127 28.4909 94.036 28.1396 93.854C27.7926 93.672 27.5218 93.4287 27.3271 93.124C27.1367 92.8151 27.0415 92.4702 27.0415 92.0894C27.0415 91.7212 27.1134 91.3975 27.2573 91.1182C27.4012 90.8346 27.6086 90.5998 27.8794 90.4136C28.1502 90.2231 28.4761 90.0793 28.8569 89.9819C29.2378 89.8846 29.6631 89.8359 30.1328 89.8359H31.4976ZM35.1094 87.1318L36.6138 89.6328L38.1372 87.1318H39.5146L37.2676 90.5215L39.5845 94H38.2261L36.6392 91.4229L35.0522 94H33.6875L35.998 90.5215L33.7573 87.1318H35.1094ZM42.041 87.1318V94H40.8604V87.1318H42.041ZM40.7715 85.3101C40.7715 85.1196 40.8286 84.9588 40.9429 84.8276C41.0614 84.6965 41.2349 84.6309 41.4634 84.6309C41.6877 84.6309 41.859 84.6965 41.9775 84.8276C42.1003 84.9588 42.1616 85.1196 42.1616 85.3101C42.1616 85.492 42.1003 85.6486 41.9775 85.7798C41.859 85.9067 41.6877 85.9702 41.4634 85.9702C41.2349 85.9702 41.0614 85.9067 40.9429 85.7798C40.8286 85.6486 40.7715 85.492 40.7715 85.3101ZM45.0942 88.4966V94H43.9136V87.1318H45.0308L45.0942 88.4966ZM44.853 90.3057L44.3071 90.2866C44.3114 89.8169 44.3727 89.3831 44.4912 88.9854C44.6097 88.5833 44.7853 88.2342 45.0181 87.938C45.2508 87.6418 45.5407 87.4132 45.8877 87.2524C46.2347 87.0874 46.6367 87.0049 47.0938 87.0049C47.4154 87.0049 47.7116 87.0514 47.9824 87.1445C48.2533 87.2334 48.4881 87.3752 48.687 87.5698C48.8859 87.7645 49.0404 88.0142 49.1504 88.3188C49.2604 88.6235 49.3154 88.9917 49.3154 89.4233V94H48.1411V89.4805C48.1411 89.1208 48.0798 88.833 47.957 88.6172C47.8385 88.4014 47.6693 88.2448 47.4492 88.1475C47.2292 88.0459 46.971 87.9951 46.6748 87.9951C46.3278 87.9951 46.0379 88.0565 45.8052 88.1792C45.5724 88.3019 45.3862 88.4712 45.2466 88.687C45.1069 88.9028 45.0054 89.1504 44.9419 89.4297C44.8826 89.7048 44.853 89.9967 44.853 90.3057ZM49.3027 89.6582L48.5156 89.8994C48.5199 89.5228 48.5812 89.161 48.6997 88.814C48.8224 88.467 48.998 88.158 49.2266 87.8872C49.4593 87.6164 49.745 87.4027 50.0835 87.2461C50.422 87.0853 50.8092 87.0049 51.2451 87.0049C51.6133 87.0049 51.9391 87.0535 52.2227 87.1509C52.5104 87.2482 52.7516 87.3984 52.9463 87.6016C53.1452 87.8005 53.2954 88.0565 53.397 88.3696C53.4985 88.6828 53.5493 89.0552 53.5493 89.4868V94H52.3687V89.4741C52.3687 89.089 52.3073 88.7907 52.1846 88.5791C52.0661 88.3633 51.8968 88.2131 51.6768 88.1284C51.4609 88.0396 51.2028 87.9951 50.9023 87.9951C50.6442 87.9951 50.4157 88.0396 50.2168 88.1284C50.0179 88.2173 49.8507 88.34 49.7153 88.4966C49.5799 88.6489 49.4762 88.8245 49.4043 89.0234C49.3366 89.2223 49.3027 89.4339 49.3027 89.6582ZM59.5288 92.4131V87.1318H60.7095V94H59.5859L59.5288 92.4131ZM59.751 90.9658L60.2397 90.9531C60.2397 91.4102 60.1911 91.8333 60.0938 92.2227C60.0007 92.6077 59.8483 92.9421 59.6367 93.2256C59.4251 93.5091 59.1479 93.7313 58.8052 93.8921C58.4624 94.0487 58.0456 94.127 57.5547 94.127C57.2204 94.127 56.9136 94.0783 56.6343 93.981C56.3592 93.8836 56.1222 93.7334 55.9233 93.5303C55.7244 93.3271 55.57 93.0627 55.46 92.7368C55.3542 92.411 55.3013 92.0195 55.3013 91.5625V87.1318H56.4756V91.5752C56.4756 91.8841 56.5094 92.1401 56.5771 92.3433C56.6491 92.5422 56.7443 92.7008 56.8628 92.8193C56.9855 92.9336 57.1209 93.014 57.269 93.0605C57.4214 93.1071 57.578 93.1304 57.7388 93.1304C58.2381 93.1304 58.6338 93.0352 58.9258 92.8447C59.2178 92.6501 59.4272 92.3898 59.5542 92.064C59.6854 91.7339 59.751 91.3678 59.751 90.9658ZM63.6675 88.4966V94H62.4868V87.1318H63.604L63.6675 88.4966ZM63.4263 90.3057L62.8804 90.2866C62.8846 89.8169 62.946 89.3831 63.0645 88.9854C63.1829 88.5833 63.3586 88.2342 63.5913 87.938C63.8241 87.6418 64.1139 87.4132 64.4609 87.2524C64.8079 87.0874 65.21 87.0049 65.667 87.0049C65.9886 87.0049 66.2848 87.0514 66.5557 87.1445C66.8265 87.2334 67.0614 87.3752 67.2603 87.5698C67.4591 87.7645 67.6136 88.0142 67.7236 88.3188C67.8337 88.6235 67.8887 88.9917 67.8887 89.4233V94H66.7144V89.4805C66.7144 89.1208 66.653 88.833 66.5303 88.6172C66.4118 88.4014 66.2425 88.2448 66.0225 88.1475C65.8024 88.0459 65.5443 87.9951 65.248 87.9951C64.901 87.9951 64.6112 88.0565 64.3784 88.1792C64.1457 88.3019 63.9595 88.4712 63.8198 88.687C63.6802 88.9028 63.5786 89.1504 63.5151 89.4297C63.4559 89.7048 63.4263 89.9967 63.4263 90.3057ZM67.876 89.6582L67.0889 89.8994C67.0931 89.5228 67.1545 89.161 67.2729 88.814C67.3957 88.467 67.5713 88.158 67.7998 87.8872C68.0326 87.6164 68.3182 87.4027 68.6567 87.2461C68.9953 87.0853 69.3825 87.0049 69.8184 87.0049C70.1865 87.0049 70.5124 87.0535 70.7959 87.1509C71.0837 87.2482 71.3249 87.3984 71.5195 87.6016C71.7184 87.8005 71.8687 88.0565 71.9702 88.3696C72.0718 88.6828 72.1226 89.0552 72.1226 89.4868V94H70.9419V89.4741C70.9419 89.089 70.8805 88.7907 70.7578 88.5791C70.6393 88.3633 70.4701 88.2131 70.25 88.1284C70.0342 88.0396 69.776 87.9951 69.4756 87.9951C69.2174 87.9951 68.9889 88.0396 68.79 88.1284C68.5911 88.2173 68.424 88.34 68.2886 88.4966C68.1532 88.6489 68.0495 88.8245 67.9775 89.0234C67.9098 89.2223 67.876 89.4339 67.876 89.6582ZM78.6924 94H77.5181V86.5352C77.5181 86.0146 77.6196 85.5745 77.8228 85.2148C78.0259 84.8551 78.3158 84.5822 78.6924 84.396C79.069 84.2098 79.5155 84.1167 80.0317 84.1167C80.3364 84.1167 80.6348 84.1548 80.9268 84.231C81.2188 84.3029 81.5192 84.3939 81.8281 84.5039L81.6313 85.4941C81.4367 85.418 81.2103 85.346 80.9521 85.2783C80.6982 85.2064 80.4189 85.1704 80.1143 85.1704C79.6107 85.1704 79.2467 85.2847 79.0225 85.5132C78.8024 85.7375 78.6924 86.0781 78.6924 86.5352V94ZM80.0952 87.1318V88.0332H76.4326V87.1318H80.0952ZM82.4058 87.1318V94H81.2314V87.1318H82.4058ZM85.6113 84.25V94H84.4307V84.25H85.6113ZM90.3467 94.127C89.8685 94.127 89.4347 94.0465 89.0454 93.8857C88.6603 93.7207 88.3281 93.4901 88.0488 93.1938C87.7738 92.8976 87.5622 92.5464 87.4141 92.1401C87.266 91.7339 87.1919 91.2896 87.1919 90.8071V90.5405C87.1919 89.9819 87.2744 89.4847 87.4395 89.0488C87.6045 88.6087 87.8288 88.2363 88.1123 87.9316C88.3958 87.627 88.7174 87.3963 89.0771 87.2397C89.4368 87.0832 89.8092 87.0049 90.1943 87.0049C90.6852 87.0049 91.1084 87.0895 91.4639 87.2588C91.8236 87.4281 92.1177 87.665 92.3462 87.9697C92.5747 88.2702 92.744 88.6257 92.854 89.0361C92.964 89.4424 93.019 89.8867 93.019 90.3691V90.896H87.8901V89.9375H91.8447V89.8486C91.8278 89.5439 91.7643 89.2477 91.6543 88.96C91.5485 88.6722 91.3792 88.4352 91.1465 88.249C90.9137 88.0628 90.5964 87.9697 90.1943 87.9697C89.9277 87.9697 89.6823 88.0269 89.458 88.1411C89.2337 88.2511 89.0412 88.4162 88.8804 88.6362C88.7196 88.8563 88.5947 89.125 88.5059 89.4424C88.417 89.7598 88.3726 90.1258 88.3726 90.5405V90.8071C88.3726 91.133 88.417 91.4398 88.5059 91.7275C88.599 92.0111 88.7323 92.2607 88.9058 92.4766C89.0835 92.6924 89.2972 92.8617 89.5469 92.9844C89.8008 93.1071 90.0885 93.1685 90.4102 93.1685C90.8249 93.1685 91.1761 93.0838 91.4639 92.9146C91.7516 92.7453 92.0034 92.5189 92.2192 92.2354L92.9302 92.8003C92.7821 93.0246 92.5938 93.2383 92.3652 93.4414C92.1367 93.6445 91.8553 93.8096 91.521 93.9365C91.1909 94.0635 90.7995 94.127 90.3467 94.127ZM101.614 92.1782C101.614 92.009 101.576 91.8524 101.5 91.7085C101.428 91.5604 101.277 91.4271 101.049 91.3086C100.825 91.1859 100.486 91.0801 100.033 90.9912C99.6523 90.9108 99.3075 90.8156 98.9985 90.7056C98.6938 90.5955 98.4336 90.4622 98.2178 90.3057C98.0062 90.1491 97.8433 89.965 97.729 89.7534C97.6147 89.5418 97.5576 89.2943 97.5576 89.0107C97.5576 88.7399 97.6169 88.4839 97.7354 88.2427C97.8581 88.0015 98.0295 87.7878 98.2495 87.6016C98.4738 87.4154 98.7425 87.2694 99.0557 87.1636C99.3688 87.0578 99.7179 87.0049 100.103 87.0049C100.653 87.0049 101.123 87.1022 101.512 87.2969C101.902 87.4915 102.2 87.7518 102.407 88.0776C102.615 88.3993 102.718 88.7568 102.718 89.1504H101.544C101.544 88.96 101.487 88.7759 101.373 88.5981C101.263 88.4162 101.1 88.266 100.884 88.1475C100.672 88.029 100.412 87.9697 100.103 87.9697C99.7772 87.9697 99.5127 88.0205 99.3096 88.1221C99.1107 88.2194 98.9647 88.3442 98.8716 88.4966C98.7827 88.6489 98.7383 88.8097 98.7383 88.979C98.7383 89.106 98.7594 89.2202 98.8018 89.3218C98.8483 89.4191 98.9287 89.5101 99.043 89.5947C99.1572 89.6751 99.318 89.7513 99.5254 89.8232C99.7327 89.8952 99.9972 89.9671 100.319 90.0391C100.882 90.166 101.345 90.3184 101.709 90.4961C102.073 90.6738 102.344 90.8918 102.521 91.1499C102.699 91.408 102.788 91.7212 102.788 92.0894C102.788 92.3898 102.725 92.6649 102.598 92.9146C102.475 93.1642 102.295 93.38 102.058 93.562C101.825 93.7397 101.546 93.8794 101.22 93.981C100.899 94.0783 100.537 94.127 100.135 94.127C99.5296 94.127 99.0176 94.019 98.5986 93.8032C98.1797 93.5874 97.8623 93.3081 97.6465 92.9653C97.4307 92.6226 97.3228 92.2607 97.3228 91.8799H98.5034C98.5203 92.2015 98.6134 92.4575 98.7827 92.6479C98.952 92.8341 99.1593 92.9674 99.4048 93.0479C99.6502 93.124 99.8936 93.1621 100.135 93.1621C100.456 93.1621 100.725 93.1198 100.941 93.0352C101.161 92.9505 101.328 92.8341 101.442 92.686C101.557 92.5379 101.614 92.3687 101.614 92.1782ZM105.606 87.1318V94H104.426V87.1318H105.606ZM104.337 85.3101C104.337 85.1196 104.394 84.9588 104.508 84.8276C104.627 84.6965 104.8 84.6309 105.029 84.6309C105.253 84.6309 105.424 84.6965 105.543 84.8276C105.666 84.9588 105.727 85.1196 105.727 85.3101C105.727 85.492 105.666 85.6486 105.543 85.7798C105.424 85.9067 105.253 85.9702 105.029 85.9702C104.8 85.9702 104.627 85.9067 104.508 85.7798C104.394 85.6486 104.337 85.492 104.337 85.3101ZM112.608 93.0352V94H107.612V93.0352H112.608ZM112.424 87.9634L107.879 94H107.162V93.1367L111.675 87.1318H112.424V87.9634ZM111.903 87.1318V88.103H107.212V87.1318H111.903ZM116.689 94.127C116.211 94.127 115.778 94.0465 115.388 93.8857C115.003 93.7207 114.671 93.4901 114.392 93.1938C114.117 92.8976 113.905 92.5464 113.757 92.1401C113.609 91.7339 113.535 91.2896 113.535 90.8071V90.5405C113.535 89.9819 113.617 89.4847 113.782 89.0488C113.947 88.6087 114.172 88.2363 114.455 87.9316C114.739 87.627 115.06 87.3963 115.42 87.2397C115.78 87.0832 116.152 87.0049 116.537 87.0049C117.028 87.0049 117.451 87.0895 117.807 87.2588C118.166 87.4281 118.46 87.665 118.689 87.9697C118.917 88.2702 119.087 88.6257 119.197 89.0361C119.307 89.4424 119.362 89.8867 119.362 90.3691V90.896H114.233V89.9375H118.188V89.8486C118.171 89.5439 118.107 89.2477 117.997 88.96C117.891 88.6722 117.722 88.4352 117.489 88.249C117.257 88.0628 116.939 87.9697 116.537 87.9697C116.271 87.9697 116.025 88.0269 115.801 88.1411C115.576 88.2511 115.384 88.4162 115.223 88.6362C115.062 88.8563 114.938 89.125 114.849 89.4424C114.76 89.7598 114.715 90.1258 114.715 90.5405V90.8071C114.715 91.133 114.76 91.4398 114.849 91.7275C114.942 92.0111 115.075 92.2607 115.249 92.4766C115.426 92.6924 115.64 92.8617 115.89 92.9844C116.144 93.1071 116.431 93.1685 116.753 93.1685C117.168 93.1685 117.519 93.0838 117.807 92.9146C118.094 92.7453 118.346 92.5189 118.562 92.2354L119.273 92.8003C119.125 93.0246 118.937 93.2383 118.708 93.4414C118.479 93.6445 118.198 93.8096 117.864 93.9365C117.534 94.0635 117.142 94.127 116.689 94.127ZM120.682 93.3779C120.682 93.179 120.743 93.0119 120.866 92.8765C120.993 92.7368 121.175 92.667 121.412 92.667C121.649 92.667 121.829 92.7368 121.952 92.8765C122.079 93.0119 122.142 93.179 122.142 93.3779C122.142 93.5726 122.079 93.7376 121.952 93.873C121.829 94.0085 121.649 94.0762 121.412 94.0762C121.175 94.0762 120.993 94.0085 120.866 93.873C120.743 93.7376 120.682 93.5726 120.682 93.3779ZM120.688 87.7729C120.688 87.5741 120.75 87.4069 120.873 87.2715C121 87.1318 121.181 87.062 121.418 87.062C121.655 87.062 121.835 87.1318 121.958 87.2715C122.085 87.4069 122.148 87.5741 122.148 87.7729C122.148 87.9676 122.085 88.1326 121.958 88.2681C121.835 88.4035 121.655 88.4712 121.418 88.4712C121.181 88.4712 121 88.4035 120.873 88.2681C120.75 88.1326 120.688 87.9676 120.688 87.7729ZM130.838 84.707V94H129.664V86.1733L127.296 87.0366V85.9766L130.654 84.707H130.838ZM140.093 88.6426V90.0518C140.093 90.8092 140.026 91.4482 139.89 91.9688C139.755 92.4893 139.56 92.9082 139.306 93.2256C139.052 93.543 138.745 93.7736 138.386 93.9175C138.03 94.0571 137.628 94.127 137.18 94.127C136.824 94.127 136.496 94.0825 136.196 93.9937C135.895 93.9048 135.625 93.763 135.383 93.5684C135.146 93.3695 134.943 93.1113 134.774 92.7939C134.605 92.4766 134.476 92.0915 134.387 91.6387C134.298 91.1859 134.253 90.6569 134.253 90.0518V88.6426C134.253 87.8851 134.321 87.2503 134.457 86.7383C134.596 86.2262 134.793 85.8158 135.047 85.5068C135.301 85.1937 135.605 84.9694 135.961 84.834C136.321 84.6986 136.723 84.6309 137.167 84.6309C137.527 84.6309 137.857 84.6753 138.157 84.7642C138.462 84.8488 138.733 84.9863 138.97 85.1768C139.207 85.363 139.408 85.6126 139.573 85.9258C139.742 86.2347 139.871 86.6134 139.96 87.062C140.049 87.5106 140.093 88.0374 140.093 88.6426ZM138.913 90.2422V88.4458C138.913 88.0311 138.887 87.6672 138.836 87.354C138.79 87.0366 138.72 86.7658 138.627 86.5415C138.534 86.3172 138.415 86.1353 138.271 85.9956C138.132 85.856 137.969 85.7544 137.783 85.6909C137.601 85.6232 137.396 85.5894 137.167 85.5894C136.888 85.5894 136.64 85.6423 136.424 85.748C136.208 85.8496 136.027 86.0125 135.878 86.2368C135.735 86.4611 135.625 86.7552 135.548 87.1191C135.472 87.4831 135.434 87.9253 135.434 88.4458V90.2422C135.434 90.6569 135.457 91.0229 135.504 91.3403C135.555 91.6577 135.629 91.9328 135.726 92.1655C135.823 92.394 135.942 92.5824 136.082 92.7305C136.221 92.8786 136.382 92.9886 136.564 93.0605C136.75 93.1283 136.955 93.1621 137.18 93.1621C137.467 93.1621 137.719 93.1071 137.935 92.9971C138.151 92.887 138.331 92.7157 138.475 92.4829C138.623 92.2459 138.733 91.9434 138.805 91.5752C138.877 91.2028 138.913 90.7585 138.913 90.2422ZM145.521 84.7578H146.708L149.735 92.2925L152.757 84.7578H153.95L150.192 94H149.266L145.521 84.7578ZM145.133 84.7578H146.181L146.352 90.3945V94H145.133V84.7578ZM153.284 84.7578H154.331V94H153.112V90.3945L153.284 84.7578ZM159.777 89.6772H157.435L157.422 88.6934H159.549C159.9 88.6934 160.207 88.6341 160.469 88.5156C160.732 88.3971 160.935 88.2279 161.079 88.0078C161.227 87.7835 161.301 87.5169 161.301 87.208C161.301 86.8695 161.235 86.5944 161.104 86.3828C160.977 86.167 160.78 86.0104 160.514 85.9131C160.251 85.8115 159.917 85.7607 159.511 85.7607H157.708V94H156.483V84.7578H159.511C159.985 84.7578 160.408 84.8065 160.78 84.9038C161.153 84.9969 161.468 85.145 161.726 85.3481C161.988 85.547 162.187 85.8009 162.323 86.1099C162.458 86.4188 162.526 86.7891 162.526 87.2207C162.526 87.6016 162.429 87.9465 162.234 88.2554C162.039 88.5601 161.768 88.8097 161.421 89.0044C161.079 89.1991 160.677 89.3239 160.215 89.3789L159.777 89.6772ZM159.72 94H156.953L157.645 93.0034H159.72C160.11 93.0034 160.44 92.9357 160.71 92.8003C160.986 92.6649 161.195 92.4744 161.339 92.229C161.483 91.9793 161.555 91.6852 161.555 91.3467C161.555 91.0039 161.493 90.7077 161.371 90.458C161.248 90.2083 161.055 90.0158 160.793 89.8804C160.531 89.745 160.192 89.6772 159.777 89.6772H158.032L158.044 88.6934H160.431L160.691 89.0488C161.136 89.0869 161.512 89.2139 161.821 89.4297C162.13 89.6413 162.365 89.9121 162.526 90.2422C162.691 90.5723 162.773 90.9362 162.773 91.334C162.773 91.9095 162.646 92.3962 162.393 92.7939C162.143 93.1875 161.79 93.488 161.333 93.6953C160.875 93.8984 160.338 94 159.72 94Z",fill:"#64748B"})),{ToolBarFields:ba,GeneralFields:Ma,AdvancedFields:La,FieldWrapper:ga,FieldSettingsWrapper:Za,ValidationBlockMessage:ya,ValidationToggleGroup:Ea,AdvancedInspectorControl:wa,AttributeHelp:va}=JetFBComponents,{useIsAdvancedValidation:_a,useUniqueNameOnDuplicate:ka}=JetFBHooks,{__:ja}=wp.i18n,{useBlockProps:xa,InspectorControls:Fa}=wp.blockEditor,{SelectControl:Ba,ToggleControl:Aa,FormTokenField:Pa,TextControl:Sa,__experimentalNumberControl:Na,__experimentalInputControl:Ia,PanelBody:Ta}=wp.components;let{NumberControl:Oa,InputControl:Ja}=wp.components;void 0===Oa&&(Oa=Na),void 0===Ja&&(Ja=Ia);const Ra=window.jetFormMediaFieldData,qa=JSON.parse('{"apiVersion":3,"name":"jet-forms/media-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","media","image","file"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Media Field","icon":"\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{"messages":{"max_size":"Maximum file size: %max_size%"}}},"allowed_user_cap":{"type":"string","default":""},"insert_attachment":{"type":"boolean","default":false},"value_format":{"type":"string","default":""},"delete_uploaded_attachment":{"type":"boolean","default":false},"max_files":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max_size":{"type":["number","string"],"default":"","jfb":{"rich":true}},"allowed_mimes":{"type":"array","default":[]},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Da}=wp.i18n,{createBlock:za}=wp.blocks,{name:Ua,icon:Ga=""}=qa,Wa={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ga}}),description:Da("Gives users the opportunity to upload media files to your website, e.g., users photos or images of the product for sale.","jet-form-builder"),edit:function(e){var C;const t=xa(),l=_a();ka();const{attributes:r,setAttributes:n,isSelected:a,editProps:{uniqKey:i,attrHelp:o}}=e,s=!r.allowed_user_cap,c=["id","ids","both"],d=r.insert_attachment&&c.includes(r.value_format);return r.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},ha):[(0,h.createElement)(ba,{key:i("ToolBarFields"),...e}),a&&(0,h.createElement)(Fa,{key:i("InspectorControls")},(0,h.createElement)(Ma,null),(0,h.createElement)(Za,{...e},(0,h.createElement)("div",{className:["jet-form-builder__user-access-control",s?"jet-form-builder__user-access-control--error":""].filter(Boolean).join(" ")},(0,h.createElement)(Ba,{key:"allowed_user_cap",label:ja("User access","jet-form-builder"),labelPosition:"top",value:r.allowed_user_cap,onChange:e=>{n({allowed_user_cap:e})},options:Va,required:!0,help:s?ja("Please select who is allowed to upload files.","jet-form-builder"):void 0})),"any_user"!==r.allowed_user_cap&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Aa,{key:"insert_attachment",label:ja("Insert attachment","jet-form-builder"),checked:r.insert_attachment,help:o("insert_attachment"),onChange:e=>{const C=Boolean(e);n({insert_attachment:C,delete_uploaded_attachment:!!C&&r.delete_uploaded_attachment})}}),r.insert_attachment&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ba,{key:"value_format",label:ja("Field value","jet-form-builder"),labelPosition:"top",value:r.value_format,onChange:e=>{n({value_format:e,delete_uploaded_attachment:!!c.includes(e)&&r.delete_uploaded_attachment})},options:Ha,help:ja("If you're using this field for an ACF Gallery, always select **Array of attachment IDs**. For JetEngine, match the format used in the corresponding JetEngine meta field.","jet-form-builder")}),d&&(0,h.createElement)(Aa,{key:"delete_uploaded_attachment",label:ja("Delete removed attachments","jet-form-builder"),checked:r.delete_uploaded_attachment,help:ja("Permanently deletes old attachments from the Media Library after the form is submitted. Enable only if these files are not used anywhere else.","jet-form-builder"),onChange:e=>{n({delete_uploaded_attachment:Boolean(e)})}}))),(0,h.createElement)(wa,{value:r.max_files,label:ja("Maximum allowed files to upload","jet-form-builder"),onChangePreset:e=>n({max_files:e})},({instanceId:e})=>(0,h.createElement)(Sa,{id:e,className:"jet-fb m-unset",value:r.max_files,onChange:e=>n({max_files:e})})),(0,h.createElement)(va,{name:"max_files"},ja("If not set allow to upload 1 file.","jet-form-builder")),(0,h.createElement)(wa,{value:r.max_size,label:ja("Maximum size in Mb","jet-form-builder"),onChangePreset:e=>n({max_size:e})},({instanceId:e})=>(0,h.createElement)(Sa,{id:e,className:"jet-fb m-unset",value:r.max_size,onChange:e=>n({max_size:e})})),(0,h.createElement)(va,{name:"max_size"}),(0,h.createElement)(Sa,{label:ja("Maximum file size message","jet-form-builder"),value:null!==(C=r?.validation?.messages?.max_size)&&void 0!==C?C:"Maximum file size: %max_size%",onChange:e=>{n({validation:{messages:{max_size:e}}})},help:ja("Use the %max_size% macro to display the maximum allowed file size","jet-form-builder")}),(0,h.createElement)(Pa,{key:"allowed_mimes",value:r.allowed_mimes,label:ja("Allow MIME types","jet-form-builder"),suggestions:Ra.mime_types,onChange:e=>n({allowed_mimes:e}),tokenizeOnSpace:!0})),(0,h.createElement)(Ta,{title:ja("Validation","jet-form-builder")},(0,h.createElement)(Ea,null),l&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ya,{name:"max_files"}),(0,h.createElement)(ya,{name:"file_max_size"}),Boolean(r.allowed_mimes.length)&&(0,h.createElement)(ya,{name:"file_ext"}))),(0,h.createElement)(La,{key:i("AdvancedFields"),...e})),(0,h.createElement)("div",{...t,key:i("viewBlock")},(0,h.createElement)(ga,{key:i("FieldWrapper"),...e},(0,h.createElement)(Ja,{key:i("place_holder_block_new"),type:"file",className:"jet-form-builder__field-preview",disabled:!0})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>za("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>za(Ua,{...e}),priority:0}]}},Ka=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M23.8115 49.5469V59.5H22.4854L17.4746 51.8232V59.5H16.1553V49.5469H17.4746L22.5059 57.2441V49.5469H23.8115ZM30.4834 57.791V52.1035H31.7549V59.5H30.5449L30.4834 57.791ZM30.7227 56.2324L31.249 56.2188C31.249 56.7109 31.1966 57.1667 31.0918 57.5859C30.9915 58.0007 30.8275 58.3607 30.5996 58.666C30.3717 58.9714 30.0732 59.2106 29.7041 59.3838C29.335 59.5524 28.8861 59.6367 28.3574 59.6367C27.9974 59.6367 27.667 59.5843 27.3662 59.4795C27.07 59.3747 26.8148 59.2129 26.6006 58.9941C26.3864 58.7754 26.2201 58.4906 26.1016 58.1396C25.9876 57.7887 25.9307 57.3672 25.9307 56.875V52.1035H27.1953V56.8887C27.1953 57.2214 27.2318 57.4971 27.3047 57.7158C27.3822 57.93 27.4847 58.1009 27.6123 58.2285C27.7445 58.3516 27.8903 58.4382 28.0498 58.4883C28.2139 58.5384 28.3825 58.5635 28.5557 58.5635C29.0934 58.5635 29.5195 58.4609 29.834 58.2559C30.1484 58.0462 30.374 57.766 30.5107 57.415C30.652 57.0596 30.7227 56.6654 30.7227 56.2324ZM34.9404 53.5732V59.5H33.6689V52.1035H34.8721L34.9404 53.5732ZM34.6807 55.5215L34.0928 55.501C34.0973 54.9951 34.1634 54.528 34.291 54.0996C34.4186 53.6667 34.6077 53.2907 34.8584 52.9717C35.109 52.6527 35.4212 52.4066 35.7949 52.2334C36.1686 52.0557 36.6016 51.9668 37.0938 51.9668C37.4401 51.9668 37.7591 52.0169 38.0508 52.1172C38.3424 52.2129 38.5954 52.3656 38.8096 52.5752C39.0238 52.7848 39.1901 53.0537 39.3086 53.3818C39.4271 53.71 39.4863 54.1064 39.4863 54.5713V59.5H38.2217V54.6328C38.2217 54.2454 38.1556 53.9355 38.0234 53.7031C37.8958 53.4707 37.7135 53.3021 37.4766 53.1973C37.2396 53.0879 36.9616 53.0332 36.6426 53.0332C36.2689 53.0332 35.9567 53.0993 35.7061 53.2314C35.4554 53.3636 35.2549 53.5459 35.1045 53.7783C34.9541 54.0107 34.8447 54.2773 34.7764 54.5781C34.7126 54.8743 34.6807 55.1888 34.6807 55.5215ZM39.4727 54.8242L38.625 55.084C38.6296 54.6784 38.6956 54.2887 38.8232 53.915C38.9554 53.5413 39.1445 53.2087 39.3906 52.917C39.6413 52.6253 39.9489 52.3952 40.3135 52.2266C40.6781 52.0534 41.0951 51.9668 41.5645 51.9668C41.9609 51.9668 42.3118 52.0192 42.6172 52.124C42.9271 52.2288 43.1868 52.3906 43.3965 52.6094C43.6107 52.8236 43.7725 53.0993 43.8818 53.4365C43.9912 53.7738 44.0459 54.1748 44.0459 54.6396V59.5H42.7744V54.626C42.7744 54.2113 42.7083 53.89 42.5762 53.6621C42.4486 53.4297 42.2663 53.2679 42.0293 53.1768C41.7969 53.0811 41.5189 53.0332 41.1953 53.0332C40.9173 53.0332 40.6712 53.0811 40.457 53.1768C40.2428 53.2725 40.0628 53.4046 39.917 53.5732C39.7712 53.7373 39.6595 53.9264 39.582 54.1406C39.5091 54.3548 39.4727 54.5827 39.4727 54.8242ZM45.9531 49H47.2246V58.0645L47.1152 59.5H45.9531V49ZM52.2217 55.7402V55.8838C52.2217 56.4215 52.1579 56.9206 52.0303 57.3809C51.9027 57.8366 51.7158 58.2331 51.4697 58.5703C51.2236 58.9076 50.9229 59.1696 50.5674 59.3564C50.2119 59.5433 49.804 59.6367 49.3438 59.6367C48.8743 59.6367 48.4619 59.557 48.1064 59.3975C47.7555 59.2334 47.4593 58.9987 47.2178 58.6934C46.9762 58.388 46.7826 58.0189 46.6367 57.5859C46.4954 57.153 46.3975 56.6654 46.3428 56.123V55.4941C46.3975 54.9473 46.4954 54.4574 46.6367 54.0244C46.7826 53.5915 46.9762 53.2223 47.2178 52.917C47.4593 52.6071 47.7555 52.3724 48.1064 52.2129C48.4574 52.0488 48.8652 51.9668 49.3301 51.9668C49.7949 51.9668 50.2074 52.0579 50.5674 52.2402C50.9274 52.418 51.2282 52.6732 51.4697 53.0059C51.7158 53.3385 51.9027 53.7373 52.0303 54.2021C52.1579 54.6624 52.2217 55.1751 52.2217 55.7402ZM50.9502 55.8838V55.7402C50.9502 55.3711 50.916 55.0247 50.8477 54.7012C50.7793 54.373 50.6699 54.0859 50.5195 53.8398C50.3691 53.5892 50.1709 53.3932 49.9248 53.252C49.6787 53.1061 49.3757 53.0332 49.0156 53.0332C48.6966 53.0332 48.4186 53.0879 48.1816 53.1973C47.9492 53.3066 47.751 53.4548 47.5869 53.6416C47.4229 53.8239 47.2884 54.0335 47.1836 54.2705C47.0833 54.5029 47.0081 54.7445 46.958 54.9951V56.6426C47.0309 56.9616 47.1494 57.2692 47.3135 57.5654C47.4821 57.8571 47.7054 58.0964 47.9834 58.2832C48.266 58.4701 48.6146 58.5635 49.0293 58.5635C49.3711 58.5635 49.6628 58.4951 49.9043 58.3584C50.1504 58.2171 50.3486 58.0234 50.499 57.7773C50.654 57.5312 50.7679 57.2464 50.8408 56.9229C50.9137 56.5993 50.9502 56.2529 50.9502 55.8838ZM56.8906 59.6367C56.3757 59.6367 55.9085 59.5501 55.4893 59.377C55.0745 59.1992 54.7168 58.9508 54.416 58.6318C54.1198 58.3128 53.8919 57.9346 53.7324 57.4971C53.5729 57.0596 53.4932 56.5811 53.4932 56.0615V55.7744C53.4932 55.1729 53.582 54.6374 53.7598 54.168C53.9375 53.694 54.179 53.293 54.4844 52.9648C54.7897 52.6367 55.1361 52.3883 55.5234 52.2197C55.9108 52.0511 56.3118 51.9668 56.7266 51.9668C57.2552 51.9668 57.7109 52.0579 58.0938 52.2402C58.4811 52.4225 58.7979 52.6777 59.0439 53.0059C59.29 53.3294 59.4723 53.7122 59.5908 54.1543C59.7093 54.5918 59.7686 55.0703 59.7686 55.5898V56.1572H54.2451V55.125H58.5039V55.0293C58.4857 54.7012 58.4173 54.3822 58.2988 54.0723C58.1849 53.7624 58.0026 53.5072 57.752 53.3066C57.5013 53.1061 57.1595 53.0059 56.7266 53.0059C56.4395 53.0059 56.1751 53.0674 55.9336 53.1904C55.6921 53.3089 55.4847 53.4867 55.3115 53.7236C55.1383 53.9606 55.0039 54.25 54.9082 54.5918C54.8125 54.9336 54.7646 55.3278 54.7646 55.7744V56.0615C54.7646 56.4124 54.8125 56.7428 54.9082 57.0527C55.0085 57.3581 55.152 57.627 55.3389 57.8594C55.5303 58.0918 55.7604 58.2741 56.0293 58.4062C56.3027 58.5384 56.6126 58.6045 56.959 58.6045C57.4056 58.6045 57.7839 58.5133 58.0938 58.3311C58.4036 58.1488 58.6748 57.9049 58.9072 57.5996L59.6729 58.208C59.5133 58.4495 59.3105 58.6797 59.0645 58.8984C58.8184 59.1172 58.5153 59.2949 58.1553 59.4316C57.7998 59.5684 57.3783 59.6367 56.8906 59.6367ZM62.5098 53.2656V59.5H61.2451V52.1035H62.4756L62.5098 53.2656ZM64.8203 52.0625L64.8135 53.2383C64.7087 53.2155 64.6084 53.2018 64.5127 53.1973C64.4215 53.1882 64.3167 53.1836 64.1982 53.1836C63.9066 53.1836 63.6491 53.2292 63.4258 53.3203C63.2025 53.4115 63.0133 53.5391 62.8584 53.7031C62.7035 53.8672 62.5804 54.0632 62.4893 54.291C62.4027 54.5143 62.3457 54.7604 62.3184 55.0293L61.9629 55.2344C61.9629 54.7878 62.0062 54.3685 62.0928 53.9766C62.1839 53.5846 62.3229 53.2383 62.5098 52.9375C62.6966 52.6322 62.9336 52.3952 63.2207 52.2266C63.5124 52.0534 63.8587 51.9668 64.2598 51.9668C64.3509 51.9668 64.4557 51.9782 64.5742 52.001C64.6927 52.0192 64.7747 52.0397 64.8203 52.0625ZM69.127 55.8838V55.7266C69.127 55.1934 69.2044 54.6989 69.3594 54.2432C69.5143 53.7829 69.7376 53.3841 70.0293 53.0469C70.321 52.7051 70.6742 52.4408 71.0889 52.2539C71.5036 52.0625 71.9684 51.9668 72.4834 51.9668C73.0029 51.9668 73.4701 52.0625 73.8848 52.2539C74.304 52.4408 74.6595 52.7051 74.9512 53.0469C75.2474 53.3841 75.473 53.7829 75.6279 54.2432C75.7829 54.6989 75.8604 55.1934 75.8604 55.7266V55.8838C75.8604 56.417 75.7829 56.9115 75.6279 57.3672C75.473 57.8229 75.2474 58.2217 74.9512 58.5635C74.6595 58.9007 74.3063 59.165 73.8916 59.3564C73.4814 59.5433 73.0166 59.6367 72.4971 59.6367C71.9775 59.6367 71.5104 59.5433 71.0957 59.3564C70.681 59.165 70.3255 58.9007 70.0293 58.5635C69.7376 58.2217 69.5143 57.8229 69.3594 57.3672C69.2044 56.9115 69.127 56.417 69.127 55.8838ZM70.3916 55.7266V55.8838C70.3916 56.2529 70.4349 56.6016 70.5215 56.9297C70.6081 57.2533 70.738 57.5404 70.9111 57.791C71.0889 58.0417 71.3099 58.2399 71.5742 58.3857C71.8385 58.527 72.1462 58.5977 72.4971 58.5977C72.8434 58.5977 73.1465 58.527 73.4062 58.3857C73.6706 58.2399 73.8893 58.0417 74.0625 57.791C74.2357 57.5404 74.3656 57.2533 74.4521 56.9297C74.5433 56.6016 74.5889 56.2529 74.5889 55.8838V55.7266C74.5889 55.362 74.5433 55.0179 74.4521 54.6943C74.3656 54.3662 74.2334 54.0768 74.0557 53.8262C73.8825 53.571 73.6637 53.3704 73.3994 53.2246C73.1396 53.0788 72.8343 53.0059 72.4834 53.0059C72.137 53.0059 71.8317 53.0788 71.5674 53.2246C71.3076 53.3704 71.0889 53.571 70.9111 53.8262C70.738 54.0768 70.6081 54.3662 70.5215 54.6943C70.4349 55.0179 70.3916 55.362 70.3916 55.7266ZM79.333 59.5H78.0684V51.3242C78.0684 50.791 78.1641 50.3421 78.3555 49.9775C78.5514 49.6084 78.8317 49.3304 79.1963 49.1436C79.5609 48.9521 79.9938 48.8564 80.4951 48.8564C80.641 48.8564 80.7868 48.8656 80.9326 48.8838C81.083 48.902 81.2288 48.9294 81.3701 48.9658L81.3018 49.998C81.2061 49.9753 81.0967 49.9593 80.9736 49.9502C80.8551 49.9411 80.7367 49.9365 80.6182 49.9365C80.3493 49.9365 80.1169 49.9912 79.9209 50.1006C79.7295 50.2054 79.5837 50.3604 79.4834 50.5654C79.3831 50.7705 79.333 51.0234 79.333 51.3242V59.5ZM80.9053 52.1035V53.0742H76.8994V52.1035H80.9053ZM90.5781 52.1035H91.7266V59.3428C91.7266 59.9945 91.5944 60.5505 91.3301 61.0107C91.0658 61.471 90.6966 61.8197 90.2227 62.0566C89.7533 62.2982 89.2109 62.4189 88.5957 62.4189C88.3405 62.4189 88.0397 62.3779 87.6934 62.2959C87.3516 62.2184 87.0143 62.084 86.6816 61.8926C86.3535 61.7057 86.0778 61.4528 85.8545 61.1338L86.5176 60.3818C86.8275 60.7555 87.151 61.0153 87.4883 61.1611C87.8301 61.307 88.1673 61.3799 88.5 61.3799C88.901 61.3799 89.2474 61.3047 89.5391 61.1543C89.8307 61.0039 90.0563 60.7806 90.2158 60.4844C90.3799 60.1927 90.4619 59.8327 90.4619 59.4043V53.7305L90.5781 52.1035ZM85.4854 55.8838V55.7402C85.4854 55.1751 85.5514 54.6624 85.6836 54.2021C85.8203 53.7373 86.014 53.3385 86.2646 53.0059C86.5199 52.6732 86.8275 52.418 87.1875 52.2402C87.5475 52.0579 87.9531 51.9668 88.4043 51.9668C88.8691 51.9668 89.2747 52.0488 89.6211 52.2129C89.972 52.3724 90.2682 52.6071 90.5098 52.917C90.7559 53.2223 90.9495 53.5915 91.0908 54.0244C91.2321 54.4574 91.3301 54.9473 91.3848 55.4941V56.123C91.3346 56.6654 91.2367 57.153 91.0908 57.5859C90.9495 58.0189 90.7559 58.388 90.5098 58.6934C90.2682 58.9987 89.972 59.2334 89.6211 59.3975C89.2702 59.557 88.86 59.6367 88.3906 59.6367C87.9486 59.6367 87.5475 59.5433 87.1875 59.3564C86.832 59.1696 86.5267 58.9076 86.2715 58.5703C86.0163 58.2331 85.8203 57.8366 85.6836 57.3809C85.5514 56.9206 85.4854 56.4215 85.4854 55.8838ZM86.75 55.7402V55.8838C86.75 56.2529 86.7865 56.5993 86.8594 56.9229C86.9368 57.2464 87.0531 57.5312 87.208 57.7773C87.3675 58.0234 87.5703 58.2171 87.8164 58.3584C88.0625 58.4951 88.3564 58.5635 88.6982 58.5635C89.1175 58.5635 89.4639 58.4746 89.7373 58.2969C90.0107 58.1191 90.2272 57.8844 90.3867 57.5928C90.5508 57.3011 90.6784 56.9844 90.7695 56.6426V54.9951C90.7194 54.7445 90.6419 54.5029 90.5371 54.2705C90.4368 54.0335 90.3047 53.8239 90.1406 53.6416C89.9811 53.4548 89.7829 53.3066 89.5459 53.1973C89.3089 53.0879 89.0309 53.0332 88.7119 53.0332C88.3656 53.0332 88.0671 53.1061 87.8164 53.252C87.5703 53.3932 87.3675 53.5892 87.208 53.8398C87.0531 54.0859 86.9368 54.373 86.8594 54.7012C86.7865 55.0247 86.75 55.3711 86.75 55.7402ZM98.1729 57.791V52.1035H99.4443V59.5H98.2344L98.1729 57.791ZM98.4121 56.2324L98.9385 56.2188C98.9385 56.7109 98.8861 57.1667 98.7812 57.5859C98.681 58.0007 98.5169 58.3607 98.2891 58.666C98.0612 58.9714 97.7627 59.2106 97.3936 59.3838C97.0244 59.5524 96.5755 59.6367 96.0469 59.6367C95.6868 59.6367 95.3564 59.5843 95.0557 59.4795C94.7594 59.3747 94.5042 59.2129 94.29 58.9941C94.0758 58.7754 93.9095 58.4906 93.791 58.1396C93.6771 57.7887 93.6201 57.3672 93.6201 56.875V52.1035H94.8848V56.8887C94.8848 57.2214 94.9212 57.4971 94.9941 57.7158C95.0716 57.93 95.1742 58.1009 95.3018 58.2285C95.4339 58.3516 95.5798 58.4382 95.7393 58.4883C95.9033 58.5384 96.0719 58.5635 96.2451 58.5635C96.7829 58.5635 97.209 58.4609 97.5234 58.2559C97.8379 58.0462 98.0635 57.766 98.2002 57.415C98.3415 57.0596 98.4121 56.6654 98.4121 56.2324ZM104.441 59.6367C103.926 59.6367 103.459 59.5501 103.04 59.377C102.625 59.1992 102.268 58.9508 101.967 58.6318C101.671 58.3128 101.443 57.9346 101.283 57.4971C101.124 57.0596 101.044 56.5811 101.044 56.0615V55.7744C101.044 55.1729 101.133 54.6374 101.311 54.168C101.488 53.694 101.73 53.293 102.035 52.9648C102.34 52.6367 102.687 52.3883 103.074 52.2197C103.462 52.0511 103.863 51.9668 104.277 51.9668C104.806 51.9668 105.262 52.0579 105.645 52.2402C106.032 52.4225 106.349 52.6777 106.595 53.0059C106.841 53.3294 107.023 53.7122 107.142 54.1543C107.26 54.5918 107.319 55.0703 107.319 55.5898V56.1572H101.796V55.125H106.055V55.0293C106.036 54.7012 105.968 54.3822 105.85 54.0723C105.736 53.7624 105.553 53.5072 105.303 53.3066C105.052 53.1061 104.71 53.0059 104.277 53.0059C103.99 53.0059 103.726 53.0674 103.484 53.1904C103.243 53.3089 103.035 53.4867 102.862 53.7236C102.689 53.9606 102.555 54.25 102.459 54.5918C102.363 54.9336 102.315 55.3278 102.315 55.7744V56.0615C102.315 56.4124 102.363 56.7428 102.459 57.0527C102.559 57.3581 102.703 57.627 102.89 57.8594C103.081 58.0918 103.311 58.2741 103.58 58.4062C103.854 58.5384 104.163 58.6045 104.51 58.6045C104.956 58.6045 105.335 58.5133 105.645 58.3311C105.954 58.1488 106.226 57.9049 106.458 57.5996L107.224 58.208C107.064 58.4495 106.861 58.6797 106.615 58.8984C106.369 59.1172 106.066 59.2949 105.706 59.4316C105.351 59.5684 104.929 59.6367 104.441 59.6367ZM113.103 57.5381C113.103 57.3558 113.062 57.1872 112.979 57.0322C112.902 56.8727 112.74 56.7292 112.494 56.6016C112.253 56.4694 111.888 56.3555 111.4 56.2598C110.99 56.1732 110.619 56.0706 110.286 55.9521C109.958 55.8337 109.678 55.6901 109.445 55.5215C109.217 55.3529 109.042 55.1546 108.919 54.9268C108.796 54.6989 108.734 54.4323 108.734 54.127C108.734 53.8353 108.798 53.5596 108.926 53.2998C109.058 53.04 109.243 52.8099 109.479 52.6094C109.721 52.4089 110.01 52.2516 110.348 52.1377C110.685 52.0238 111.061 51.9668 111.476 51.9668C112.068 51.9668 112.574 52.0716 112.993 52.2812C113.412 52.4909 113.734 52.7712 113.957 53.1221C114.18 53.4684 114.292 53.8535 114.292 54.2773H113.027C113.027 54.0723 112.966 53.874 112.843 53.6826C112.724 53.4867 112.549 53.3249 112.316 53.1973C112.089 53.0697 111.808 53.0059 111.476 53.0059C111.125 53.0059 110.84 53.0605 110.621 53.1699C110.407 53.2747 110.25 53.4092 110.149 53.5732C110.054 53.7373 110.006 53.9105 110.006 54.0928C110.006 54.2295 110.029 54.3525 110.074 54.4619C110.124 54.5667 110.211 54.6647 110.334 54.7559C110.457 54.8424 110.63 54.9245 110.854 55.002C111.077 55.0794 111.362 55.1569 111.708 55.2344C112.314 55.3711 112.813 55.5352 113.205 55.7266C113.597 55.918 113.889 56.1527 114.08 56.4307C114.271 56.7087 114.367 57.0459 114.367 57.4424C114.367 57.766 114.299 58.0622 114.162 58.3311C114.03 58.5999 113.836 58.8324 113.581 59.0283C113.33 59.2197 113.03 59.3701 112.679 59.4795C112.332 59.5843 111.943 59.6367 111.51 59.6367C110.858 59.6367 110.307 59.5205 109.855 59.2881C109.404 59.0557 109.062 58.7549 108.83 58.3857C108.598 58.0166 108.481 57.627 108.481 57.2168H109.753C109.771 57.5632 109.871 57.8389 110.054 58.0439C110.236 58.2445 110.459 58.388 110.724 58.4746C110.988 58.5566 111.25 58.5977 111.51 58.5977C111.856 58.5977 112.146 58.5521 112.378 58.4609C112.615 58.3698 112.795 58.2445 112.918 58.085C113.041 57.9255 113.103 57.7432 113.103 57.5381ZM119.125 52.1035V53.0742H115.126V52.1035H119.125ZM116.479 50.3057H117.744V57.668C117.744 57.9186 117.783 58.1077 117.86 58.2354C117.938 58.363 118.038 58.4473 118.161 58.4883C118.284 58.5293 118.416 58.5498 118.558 58.5498C118.662 58.5498 118.772 58.5407 118.886 58.5225C119.004 58.4997 119.093 58.4814 119.152 58.4678L119.159 59.5C119.059 59.5319 118.927 59.5615 118.763 59.5889C118.603 59.6208 118.41 59.6367 118.182 59.6367C117.872 59.6367 117.587 59.5752 117.327 59.4521C117.067 59.3291 116.86 59.124 116.705 58.8369C116.555 58.5452 116.479 58.1533 116.479 57.6611V50.3057ZM124.915 57.5381C124.915 57.3558 124.874 57.1872 124.792 57.0322C124.715 56.8727 124.553 56.7292 124.307 56.6016C124.065 56.4694 123.701 56.3555 123.213 56.2598C122.803 56.1732 122.431 56.0706 122.099 55.9521C121.771 55.8337 121.49 55.6901 121.258 55.5215C121.03 55.3529 120.854 55.1546 120.731 54.9268C120.608 54.6989 120.547 54.4323 120.547 54.127C120.547 53.8353 120.611 53.5596 120.738 53.2998C120.87 53.04 121.055 52.8099 121.292 52.6094C121.534 52.4089 121.823 52.2516 122.16 52.1377C122.497 52.0238 122.873 51.9668 123.288 51.9668C123.881 51.9668 124.386 52.0716 124.806 52.2812C125.225 52.4909 125.546 52.7712 125.77 53.1221C125.993 53.4684 126.104 53.8535 126.104 54.2773H124.84C124.84 54.0723 124.778 53.874 124.655 53.6826C124.537 53.4867 124.361 53.3249 124.129 53.1973C123.901 53.0697 123.621 53.0059 123.288 53.0059C122.937 53.0059 122.652 53.0605 122.434 53.1699C122.219 53.2747 122.062 53.4092 121.962 53.5732C121.866 53.7373 121.818 53.9105 121.818 54.0928C121.818 54.2295 121.841 54.3525 121.887 54.4619C121.937 54.5667 122.023 54.6647 122.146 54.7559C122.27 54.8424 122.443 54.9245 122.666 55.002C122.889 55.0794 123.174 55.1569 123.521 55.2344C124.127 55.3711 124.626 55.5352 125.018 55.7266C125.41 55.918 125.701 56.1527 125.893 56.4307C126.084 56.7087 126.18 57.0459 126.18 57.4424C126.18 57.766 126.111 58.0622 125.975 58.3311C125.842 58.5999 125.649 58.8324 125.394 59.0283C125.143 59.2197 124.842 59.3701 124.491 59.4795C124.145 59.5843 123.755 59.6367 123.322 59.6367C122.671 59.6367 122.119 59.5205 121.668 59.2881C121.217 59.0557 120.875 58.7549 120.643 58.3857C120.41 58.0166 120.294 57.627 120.294 57.2168H121.565C121.584 57.5632 121.684 57.8389 121.866 58.0439C122.049 58.2445 122.272 58.388 122.536 58.4746C122.8 58.5566 123.062 58.5977 123.322 58.5977C123.669 58.5977 123.958 58.5521 124.19 58.4609C124.427 58.3698 124.607 58.2445 124.73 58.085C124.854 57.9255 124.915 57.7432 124.915 57.5381Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"68.5",width:"265",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M27.4819 81.8013H28.3198C28.7303 81.8013 29.0688 81.7336 29.3354 81.5981C29.6063 81.4585 29.8073 81.2702 29.9385 81.0332C30.0739 80.792 30.1416 80.5212 30.1416 80.2207C30.1416 79.8652 30.0824 79.5669 29.9639 79.3257C29.8454 79.0845 29.6676 78.9025 29.4307 78.7798C29.1937 78.6571 28.8932 78.5957 28.5293 78.5957C28.1992 78.5957 27.9072 78.6613 27.6533 78.7925C27.4036 78.9194 27.2069 79.1014 27.063 79.3384C26.9233 79.5754 26.8535 79.8547 26.8535 80.1763H25.6792C25.6792 79.7065 25.7977 79.2791 26.0347 78.894C26.2716 78.509 26.6038 78.2021 27.0312 77.9736C27.4629 77.7451 27.9622 77.6309 28.5293 77.6309C29.0879 77.6309 29.5767 77.7303 29.9956 77.9292C30.4146 78.1239 30.7404 78.4159 30.9731 78.8052C31.2059 79.1903 31.3223 79.6706 31.3223 80.2461C31.3223 80.4788 31.2673 80.7285 31.1572 80.9951C31.0514 81.2575 30.8843 81.5029 30.6558 81.7314C30.4315 81.96 30.1395 82.1483 29.7798 82.2964C29.4201 82.4403 28.9884 82.5122 28.4849 82.5122H27.4819V81.8013ZM27.4819 82.7661V82.0615H28.4849C29.0731 82.0615 29.5597 82.1313 29.9448 82.271C30.3299 82.4106 30.6325 82.5968 30.8525 82.8296C31.0768 83.0623 31.2334 83.3184 31.3223 83.5977C31.4154 83.8727 31.4619 84.1478 31.4619 84.4229C31.4619 84.8545 31.3879 85.2375 31.2397 85.5718C31.0959 85.9061 30.8906 86.1896 30.624 86.4224C30.3617 86.6551 30.0527 86.8307 29.6973 86.9492C29.3418 87.0677 28.9546 87.127 28.5356 87.127C28.1336 87.127 27.7549 87.0698 27.3994 86.9556C27.0482 86.8413 26.7371 86.6763 26.4663 86.4604C26.1955 86.2404 25.9839 85.9717 25.8315 85.6543C25.6792 85.3327 25.603 84.9666 25.603 84.5562H26.7773C26.7773 84.8778 26.8472 85.1592 26.9868 85.4004C27.1307 85.6416 27.3338 85.8299 27.5962 85.9653C27.8628 86.0965 28.1759 86.1621 28.5356 86.1621C28.8953 86.1621 29.2043 86.1007 29.4624 85.978C29.7248 85.8511 29.9258 85.6606 30.0654 85.4067C30.2093 85.1528 30.2812 84.8333 30.2812 84.4482C30.2812 84.0632 30.2008 83.7479 30.04 83.5024C29.8792 83.2528 29.6507 83.0687 29.3545 82.9502C29.0625 82.8275 28.7176 82.7661 28.3198 82.7661H27.4819Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M261.761 85.7886L264.773 91.2693L267.784 85.7886H261.761Z",fill:"#CBD5E1"}),(0,h.createElement)("path",{d:"M267.784 79.2117L264.773 73.7309L261.761 79.2117L267.784 79.2117Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"16",y:"68.5",width:"265",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),{ToolBarFields:$a,BlockLabel:Ya,BlockDescription:Xa,BlockAdvancedValue:Qa,BlockName:ei,AdvancedFields:Ci,FieldWrapper:ti,FieldSettingsWrapper:li,ValidationToggleGroup:ri,ValidationBlockMessage:ni,AdvancedInspectorControl:ai,AttributeHelp:ii}=JetFBComponents,{useIsAdvancedValidation:oi,useUniqueNameOnDuplicate:si}=JetFBHooks,{__:ci}=wp.i18n,{InspectorControls:di,useBlockProps:mi}=wp.blockEditor,{PanelBody:ui,TextControl:pi,__experimentalInputControl:fi,__experimentalNumberControl:Vi}=wp.components;let{InputControl:Hi,NumberControl:hi}=wp.components;void 0===Hi&&(Hi=fi),void 0===hi&&(hi=Vi);const bi=JSON.parse('{"apiVersion":3,"name":"jet-forms/number-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","media","image","file"],"textdomain":"jet-form-builder","title":"Number Field","icon":"\\n\\n\\n\\n\\n","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max":{"type":["number","string"],"default":"","jfb":{"rich":true}},"step":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Mi}=wp.i18n,{createBlock:Li}=wp.blocks,{name:gi,icon:Zi=""}=bi,yi={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Zi}}),description:Mi("Make a bar in the form that will be filled with numbers or set a range with the Min/Max Value options for the user to choose from.","jet-form-builder"),edit:function(e){const C=mi(),t=oi();si();const{attributes:l,setAttributes:r,isSelected:n,editProps:{uniqKey:a}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ka):[(0,h.createElement)($a,{key:a("ToolBarFields"),...e}),n&&(0,h.createElement)(di,{key:a("InspectorControls")},(0,h.createElement)(ui,{title:ci("General","jet-form-builder")},(0,h.createElement)(Ya,null),(0,h.createElement)(ei,null),(0,h.createElement)(Xa,null)),(0,h.createElement)(ui,{title:ci("Value","jet-form-builder")},(0,h.createElement)(Qa,null)),(0,h.createElement)(li,{...e},(0,h.createElement)(ai,{value:l.min,label:ci("Min Value","jet-form-builder"),onChangePreset:e=>r({min:e})},({instanceId:e})=>(0,h.createElement)(pi,{id:e,className:"jet-fb m-unset",value:l.min,onChange:e=>r({min:e})})),(0,h.createElement)(ii,{name:"min"}),(0,h.createElement)(ai,{value:l.max,label:ci("Max Value","jet-form-builder"),onChangePreset:e=>r({max:e})},({instanceId:e})=>(0,h.createElement)(pi,{id:e,className:"jet-fb m-unset",value:l.max,onChange:e=>r({max:e})})),(0,h.createElement)(ii,{name:"max"}),(0,h.createElement)(ai,{value:l.step,label:ci("Step","jet-form-builder"),onChangePreset:e=>r({step:e})},({instanceId:e})=>(0,h.createElement)(pi,{id:e,className:"jet-fb m-unset",value:l.step,onChange:e=>r({step:e})})),(0,h.createElement)(ii,{name:"step"})),(0,h.createElement)(ui,{title:ci("Validation","jet-form-builder")},(0,h.createElement)(ri,null),t&&(0,h.createElement)(h.Fragment,null,null!==l.min&&(0,h.createElement)(ni,{name:"number_min"}),null!==l.max&&(0,h.createElement)(ni,{name:"number_max"}),(0,h.createElement)(ni,{name:"empty"}))),(0,h.createElement)(Ci,null)),(0,h.createElement)("div",{...C,key:a("viewBlock")},(0,h.createElement)(ti,{key:a("FieldWrapper"),...e},(0,h.createElement)(hi,{placeholder:l.placeholder,className:"jet-form-builder__field-preview",key:a("place_holder_block"),min:l.min||0,max:l.max||1e3,step:l.step||1})))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Li("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/range-field"],transform:e=>Li(gi,{...e}),priority:0}]}},Ei=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M19.8262 57.0967H17.167V56.0234H19.8262C20.3411 56.0234 20.7581 55.9414 21.0771 55.7773C21.3962 55.6133 21.6286 55.3854 21.7744 55.0938C21.9248 54.8021 22 54.4694 22 54.0957C22 53.7539 21.9248 53.4326 21.7744 53.1318C21.6286 52.8311 21.3962 52.5895 21.0771 52.4072C20.7581 52.2204 20.3411 52.127 19.8262 52.127H17.4746V61H16.1553V51.0469H19.8262C20.5781 51.0469 21.2139 51.1768 21.7334 51.4365C22.2529 51.6963 22.6471 52.0563 22.916 52.5166C23.1849 52.9723 23.3193 53.4941 23.3193 54.082C23.3193 54.7201 23.1849 55.2646 22.916 55.7158C22.6471 56.167 22.2529 56.5111 21.7334 56.748C21.2139 56.9805 20.5781 57.0967 19.8262 57.0967ZM26.0605 54.7656V61H24.7959V53.6035H26.0264L26.0605 54.7656ZM28.3711 53.5625L28.3643 54.7383C28.2594 54.7155 28.1592 54.7018 28.0635 54.6973C27.9723 54.6882 27.8675 54.6836 27.749 54.6836C27.4574 54.6836 27.1999 54.7292 26.9766 54.8203C26.7533 54.9115 26.5641 55.0391 26.4092 55.2031C26.2542 55.3672 26.1312 55.5632 26.04 55.791C25.9535 56.0143 25.8965 56.2604 25.8691 56.5293L25.5137 56.7344C25.5137 56.2878 25.557 55.8685 25.6436 55.4766C25.7347 55.0846 25.8737 54.7383 26.0605 54.4375C26.2474 54.1322 26.4844 53.8952 26.7715 53.7266C27.0632 53.5534 27.4095 53.4668 27.8105 53.4668C27.9017 53.4668 28.0065 53.4782 28.125 53.501C28.2435 53.5192 28.3255 53.5397 28.3711 53.5625ZM30.9141 53.6035V61H29.6426V53.6035H30.9141ZM29.5469 51.6416C29.5469 51.4365 29.6084 51.2633 29.7314 51.1221C29.859 50.9808 30.0459 50.9102 30.292 50.9102C30.5335 50.9102 30.7181 50.9808 30.8457 51.1221C30.9779 51.2633 31.0439 51.4365 31.0439 51.6416C31.0439 51.8376 30.9779 52.0062 30.8457 52.1475C30.7181 52.2842 30.5335 52.3525 30.292 52.3525C30.0459 52.3525 29.859 52.2842 29.7314 52.1475C29.6084 52.0062 29.5469 51.8376 29.5469 51.6416ZM35.9043 60.0977C36.2051 60.0977 36.4831 60.0361 36.7383 59.9131C36.9935 59.79 37.2031 59.6214 37.3672 59.4072C37.5312 59.1885 37.6247 58.9401 37.6475 58.6621H38.8506C38.8278 59.0996 38.6797 59.5075 38.4062 59.8857C38.1374 60.2594 37.7842 60.5625 37.3467 60.7949C36.9092 61.0228 36.4284 61.1367 35.9043 61.1367C35.3483 61.1367 34.863 61.0387 34.4482 60.8428C34.0381 60.6468 33.6963 60.3779 33.4229 60.0361C33.154 59.6943 32.9512 59.3024 32.8145 58.8604C32.6823 58.4137 32.6162 57.9421 32.6162 57.4453V57.1582C32.6162 56.6615 32.6823 56.1921 32.8145 55.75C32.9512 55.3034 33.154 54.9092 33.4229 54.5674C33.6963 54.2256 34.0381 53.9567 34.4482 53.7607C34.863 53.5648 35.3483 53.4668 35.9043 53.4668C36.4831 53.4668 36.9889 53.5853 37.4219 53.8223C37.8548 54.0547 38.1943 54.3737 38.4404 54.7793C38.6911 55.1803 38.8278 55.6361 38.8506 56.1465H37.6475C37.6247 55.8411 37.5381 55.5654 37.3877 55.3193C37.2419 55.0732 37.0413 54.8773 36.7861 54.7314C36.5355 54.5811 36.2415 54.5059 35.9043 54.5059C35.5169 54.5059 35.1911 54.5833 34.9268 54.7383C34.667 54.8887 34.4596 55.0938 34.3047 55.3535C34.1543 55.6087 34.0449 55.8936 33.9766 56.208C33.9128 56.5179 33.8809 56.8346 33.8809 57.1582V57.4453C33.8809 57.7689 33.9128 58.0879 33.9766 58.4023C34.0404 58.7168 34.1475 59.0016 34.2979 59.2568C34.4528 59.512 34.6602 59.7171 34.9199 59.8721C35.1842 60.0225 35.5124 60.0977 35.9043 60.0977ZM43.3418 61.1367C42.8268 61.1367 42.3597 61.0501 41.9404 60.877C41.5257 60.6992 41.168 60.4508 40.8672 60.1318C40.571 59.8128 40.3431 59.4346 40.1836 58.9971C40.0241 58.5596 39.9443 58.0811 39.9443 57.5615V57.2744C39.9443 56.6729 40.0332 56.1374 40.2109 55.668C40.3887 55.194 40.6302 54.793 40.9355 54.4648C41.2409 54.1367 41.5872 53.8883 41.9746 53.7197C42.362 53.5511 42.763 53.4668 43.1777 53.4668C43.7064 53.4668 44.1621 53.5579 44.5449 53.7402C44.9323 53.9225 45.249 54.1777 45.4951 54.5059C45.7412 54.8294 45.9235 55.2122 46.042 55.6543C46.1605 56.0918 46.2197 56.5703 46.2197 57.0898V57.6572H40.6963V56.625H44.9551V56.5293C44.9368 56.2012 44.8685 55.8822 44.75 55.5723C44.6361 55.2624 44.4538 55.0072 44.2031 54.8066C43.9525 54.6061 43.6107 54.5059 43.1777 54.5059C42.8906 54.5059 42.6263 54.5674 42.3848 54.6904C42.1432 54.8089 41.9359 54.9867 41.7627 55.2236C41.5895 55.4606 41.4551 55.75 41.3594 56.0918C41.2637 56.4336 41.2158 56.8278 41.2158 57.2744V57.5615C41.2158 57.9124 41.2637 58.2428 41.3594 58.5527C41.4596 58.8581 41.6032 59.127 41.79 59.3594C41.9814 59.5918 42.2116 59.7741 42.4805 59.9062C42.7539 60.0384 43.0638 60.1045 43.4102 60.1045C43.8568 60.1045 44.235 60.0133 44.5449 59.8311C44.8548 59.6488 45.126 59.4049 45.3584 59.0996L46.124 59.708C45.9645 59.9495 45.7617 60.1797 45.5156 60.3984C45.2695 60.6172 44.9665 60.7949 44.6064 60.9316C44.251 61.0684 43.8294 61.1367 43.3418 61.1367ZM52.4336 55.0254V63.8438H51.1621V53.6035H52.3242L52.4336 55.0254ZM57.417 57.2402V57.3838C57.417 57.9215 57.3532 58.4206 57.2256 58.8809C57.098 59.3366 56.9111 59.7331 56.665 60.0703C56.4235 60.4076 56.125 60.6696 55.7695 60.8564C55.4141 61.0433 55.0062 61.1367 54.5459 61.1367C54.0765 61.1367 53.6618 61.0592 53.3018 60.9043C52.9417 60.7493 52.6364 60.5238 52.3857 60.2275C52.1351 59.9313 51.9346 59.5758 51.7842 59.1611C51.6383 58.7464 51.5381 58.2793 51.4834 57.7598V56.9941C51.5381 56.4473 51.6406 55.9574 51.791 55.5244C51.9414 55.0915 52.1396 54.7223 52.3857 54.417C52.6364 54.1071 52.9395 53.8724 53.2949 53.7129C53.6504 53.5488 54.0605 53.4668 54.5254 53.4668C54.9902 53.4668 55.4027 53.5579 55.7627 53.7402C56.1227 53.918 56.4258 54.1732 56.6719 54.5059C56.918 54.8385 57.1025 55.2373 57.2256 55.7021C57.3532 56.1624 57.417 56.6751 57.417 57.2402ZM56.1455 57.3838V57.2402C56.1455 56.8711 56.1068 56.5247 56.0293 56.2012C55.9518 55.873 55.8311 55.5859 55.667 55.3398C55.5075 55.0892 55.3024 54.8932 55.0518 54.752C54.8011 54.6061 54.5026 54.5332 54.1562 54.5332C53.8372 54.5332 53.5592 54.5879 53.3223 54.6973C53.0898 54.8066 52.8916 54.9548 52.7275 55.1416C52.5635 55.3239 52.429 55.5335 52.3242 55.7705C52.224 56.0029 52.1488 56.2445 52.0986 56.4951V58.2656C52.1898 58.5846 52.3174 58.8854 52.4814 59.168C52.6455 59.446 52.8643 59.6715 53.1377 59.8447C53.4111 60.0133 53.7552 60.0977 54.1699 60.0977C54.5117 60.0977 54.8057 60.027 55.0518 59.8857C55.3024 59.7399 55.5075 59.5417 55.667 59.291C55.8311 59.0404 55.9518 58.7533 56.0293 58.4297C56.1068 58.1016 56.1455 57.7529 56.1455 57.3838ZM62.0996 61.1367C61.5846 61.1367 61.1175 61.0501 60.6982 60.877C60.2835 60.6992 59.9258 60.4508 59.625 60.1318C59.3288 59.8128 59.1009 59.4346 58.9414 58.9971C58.7819 58.5596 58.7021 58.0811 58.7021 57.5615V57.2744C58.7021 56.6729 58.791 56.1374 58.9688 55.668C59.1465 55.194 59.388 54.793 59.6934 54.4648C59.9987 54.1367 60.3451 53.8883 60.7324 53.7197C61.1198 53.5511 61.5208 53.4668 61.9355 53.4668C62.4642 53.4668 62.9199 53.5579 63.3027 53.7402C63.6901 53.9225 64.0068 54.1777 64.2529 54.5059C64.499 54.8294 64.6813 55.2122 64.7998 55.6543C64.9183 56.0918 64.9775 56.5703 64.9775 57.0898V57.6572H59.4541V56.625H63.7129V56.5293C63.6947 56.2012 63.6263 55.8822 63.5078 55.5723C63.3939 55.2624 63.2116 55.0072 62.9609 54.8066C62.7103 54.6061 62.3685 54.5059 61.9355 54.5059C61.6484 54.5059 61.3841 54.5674 61.1426 54.6904C60.901 54.8089 60.6937 54.9867 60.5205 55.2236C60.3473 55.4606 60.2129 55.75 60.1172 56.0918C60.0215 56.4336 59.9736 56.8278 59.9736 57.2744V57.5615C59.9736 57.9124 60.0215 58.2428 60.1172 58.5527C60.2174 58.8581 60.361 59.127 60.5479 59.3594C60.7393 59.5918 60.9694 59.7741 61.2383 59.9062C61.5117 60.0384 61.8216 60.1045 62.168 60.1045C62.6146 60.1045 62.9928 60.0133 63.3027 59.8311C63.6126 59.6488 63.8838 59.4049 64.1162 59.0996L64.8818 59.708C64.7223 59.9495 64.5195 60.1797 64.2734 60.3984C64.0273 60.6172 63.7243 60.7949 63.3643 60.9316C63.0088 61.0684 62.5872 61.1367 62.0996 61.1367ZM67.7188 54.7656V61H66.4541V53.6035H67.6846L67.7188 54.7656ZM70.0293 53.5625L70.0225 54.7383C69.9176 54.7155 69.8174 54.7018 69.7217 54.6973C69.6305 54.6882 69.5257 54.6836 69.4072 54.6836C69.1156 54.6836 68.8581 54.7292 68.6348 54.8203C68.4115 54.9115 68.2223 55.0391 68.0674 55.2031C67.9124 55.3672 67.7894 55.5632 67.6982 55.791C67.6117 56.0143 67.5547 56.2604 67.5273 56.5293L67.1719 56.7344C67.1719 56.2878 67.2152 55.8685 67.3018 55.4766C67.3929 55.0846 67.5319 54.7383 67.7188 54.4375C67.9056 54.1322 68.1426 53.8952 68.4297 53.7266C68.7214 53.5534 69.0677 53.4668 69.4688 53.4668C69.5599 53.4668 69.6647 53.4782 69.7832 53.501C69.9017 53.5192 69.9837 53.5397 70.0293 53.5625ZM75.9355 55.1826V61H74.6709V53.6035H75.8672L75.9355 55.1826ZM75.6348 57.0215L75.1084 57.001C75.113 56.4951 75.1882 56.028 75.334 55.5996C75.4798 55.1667 75.6849 54.7907 75.9492 54.4717C76.2135 54.1527 76.528 53.9066 76.8926 53.7334C77.2617 53.5557 77.6696 53.4668 78.1162 53.4668C78.4808 53.4668 78.8089 53.5169 79.1006 53.6172C79.3923 53.7129 79.6406 53.8678 79.8457 54.082C80.0553 54.2962 80.2148 54.5742 80.3242 54.916C80.4336 55.2533 80.4883 55.6657 80.4883 56.1533V61H79.2168V56.1396C79.2168 55.7523 79.1598 55.4424 79.0459 55.21C78.932 54.973 78.7656 54.8021 78.5469 54.6973C78.3281 54.5879 78.0592 54.5332 77.7402 54.5332C77.4258 54.5332 77.1387 54.5993 76.8789 54.7314C76.6237 54.8636 76.4027 55.0459 76.2158 55.2783C76.0335 55.5107 75.89 55.7773 75.7852 56.0781C75.6849 56.3743 75.6348 56.6888 75.6348 57.0215ZM83.7832 53.6035V61H82.5117V53.6035H83.7832ZM82.416 51.6416C82.416 51.4365 82.4775 51.2633 82.6006 51.1221C82.7282 50.9808 82.915 50.9102 83.1611 50.9102C83.4027 50.9102 83.5872 50.9808 83.7148 51.1221C83.847 51.2633 83.9131 51.4365 83.9131 51.6416C83.9131 51.8376 83.847 52.0062 83.7148 52.1475C83.5872 52.2842 83.4027 52.3525 83.1611 52.3525C82.915 52.3525 82.7282 52.2842 82.6006 52.1475C82.4775 52.0062 82.416 51.8376 82.416 51.6416ZM90.6055 53.6035H91.7539V60.8428C91.7539 61.4945 91.6217 62.0505 91.3574 62.5107C91.0931 62.971 90.724 63.3197 90.25 63.5566C89.7806 63.7982 89.2383 63.9189 88.623 63.9189C88.3678 63.9189 88.0671 63.8779 87.7207 63.7959C87.3789 63.7184 87.0417 63.584 86.709 63.3926C86.3809 63.2057 86.1051 62.9528 85.8818 62.6338L86.5449 61.8818C86.8548 62.2555 87.1784 62.5153 87.5156 62.6611C87.8574 62.807 88.1947 62.8799 88.5273 62.8799C88.9284 62.8799 89.2747 62.8047 89.5664 62.6543C89.8581 62.5039 90.0837 62.2806 90.2432 61.9844C90.4072 61.6927 90.4893 61.3327 90.4893 60.9043V55.2305L90.6055 53.6035ZM85.5127 57.3838V57.2402C85.5127 56.6751 85.5788 56.1624 85.7109 55.7021C85.8477 55.2373 86.0413 54.8385 86.292 54.5059C86.5472 54.1732 86.8548 53.918 87.2148 53.7402C87.5749 53.5579 87.9805 53.4668 88.4316 53.4668C88.8965 53.4668 89.3021 53.5488 89.6484 53.7129C89.9993 53.8724 90.2956 54.1071 90.5371 54.417C90.7832 54.7223 90.9769 55.0915 91.1182 55.5244C91.2594 55.9574 91.3574 56.4473 91.4121 56.9941V57.623C91.362 58.1654 91.264 58.653 91.1182 59.0859C90.9769 59.5189 90.7832 59.888 90.5371 60.1934C90.2956 60.4987 89.9993 60.7334 89.6484 60.8975C89.2975 61.057 88.8874 61.1367 88.418 61.1367C87.9759 61.1367 87.5749 61.0433 87.2148 60.8564C86.8594 60.6696 86.554 60.4076 86.2988 60.0703C86.0436 59.7331 85.8477 59.3366 85.7109 58.8809C85.5788 58.4206 85.5127 57.9215 85.5127 57.3838ZM86.7773 57.2402V57.3838C86.7773 57.7529 86.8138 58.0993 86.8867 58.4229C86.9642 58.7464 87.0804 59.0312 87.2354 59.2773C87.3949 59.5234 87.5977 59.7171 87.8438 59.8584C88.0898 59.9951 88.3838 60.0635 88.7256 60.0635C89.1449 60.0635 89.4912 59.9746 89.7646 59.7969C90.0381 59.6191 90.2546 59.3844 90.4141 59.0928C90.5781 58.8011 90.7057 58.4844 90.7969 58.1426V56.4951C90.7467 56.2445 90.6693 56.0029 90.5645 55.7705C90.4642 55.5335 90.332 55.3239 90.168 55.1416C90.0085 54.9548 89.8102 54.8066 89.5732 54.6973C89.3363 54.5879 89.0583 54.5332 88.7393 54.5332C88.3929 54.5332 88.0944 54.6061 87.8438 54.752C87.5977 54.8932 87.3949 55.0892 87.2354 55.3398C87.0804 55.5859 86.9642 55.873 86.8867 56.2012C86.8138 56.5247 86.7773 56.8711 86.7773 57.2402ZM94.9395 50.5V61H93.6748V50.5H94.9395ZM94.6387 57.0215L94.1123 57.001C94.1169 56.4951 94.1921 56.028 94.3379 55.5996C94.4837 55.1667 94.6888 54.7907 94.9531 54.4717C95.2174 54.1527 95.5319 53.9066 95.8965 53.7334C96.2656 53.5557 96.6735 53.4668 97.1201 53.4668C97.4847 53.4668 97.8128 53.5169 98.1045 53.6172C98.3962 53.7129 98.6445 53.8678 98.8496 54.082C99.0592 54.2962 99.2188 54.5742 99.3281 54.916C99.4375 55.2533 99.4922 55.6657 99.4922 56.1533V61H98.2207V56.1396C98.2207 55.7523 98.1637 55.4424 98.0498 55.21C97.9359 54.973 97.7695 54.8021 97.5508 54.6973C97.332 54.5879 97.0632 54.5332 96.7441 54.5332C96.4297 54.5332 96.1426 54.5993 95.8828 54.7314C95.6276 54.8636 95.4066 55.0459 95.2197 55.2783C95.0374 55.5107 94.8939 55.7773 94.7891 56.0781C94.6888 56.3743 94.6387 56.6888 94.6387 57.0215ZM104.482 53.6035V54.5742H100.483V53.6035H104.482ZM101.837 51.8057H103.102V59.168C103.102 59.4186 103.14 59.6077 103.218 59.7354C103.295 59.863 103.396 59.9473 103.519 59.9883C103.642 60.0293 103.774 60.0498 103.915 60.0498C104.02 60.0498 104.129 60.0407 104.243 60.0225C104.362 59.9997 104.451 59.9814 104.51 59.9678L104.517 61C104.416 61.0319 104.284 61.0615 104.12 61.0889C103.961 61.1208 103.767 61.1367 103.539 61.1367C103.229 61.1367 102.944 61.0752 102.685 60.9521C102.425 60.8291 102.217 60.624 102.062 60.3369C101.912 60.0452 101.837 59.6533 101.837 59.1611V51.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M19.8574 78.4336V80.5186H18.832V78.4336H19.8574ZM19.7344 89.5967V91.4219H18.7158V89.5967H19.7344ZM21.1016 87.4365C21.1016 87.1631 21.04 86.917 20.917 86.6982C20.7939 86.4795 20.5911 86.279 20.3086 86.0967C20.026 85.9144 19.6478 85.7458 19.1738 85.5908C18.5996 85.4131 18.1029 85.1966 17.6836 84.9414C17.2689 84.6862 16.9476 84.3695 16.7197 83.9912C16.4964 83.613 16.3848 83.1549 16.3848 82.6172C16.3848 82.0566 16.5055 81.5736 16.7471 81.168C16.9886 80.7624 17.3304 80.4502 17.7725 80.2314C18.2145 80.0127 18.734 79.9033 19.3311 79.9033C19.7959 79.9033 20.2106 79.974 20.5752 80.1152C20.9398 80.252 21.2474 80.457 21.498 80.7305C21.7533 81.0039 21.9469 81.3389 22.0791 81.7354C22.2158 82.1318 22.2842 82.5898 22.2842 83.1094H21.0264C21.0264 82.804 20.9899 82.5238 20.917 82.2686C20.8441 82.0133 20.7347 81.7923 20.5889 81.6055C20.443 81.4141 20.2653 81.2682 20.0557 81.168C19.846 81.0632 19.6045 81.0107 19.3311 81.0107C18.9482 81.0107 18.6315 81.0768 18.3809 81.209C18.1348 81.3411 17.9525 81.528 17.834 81.7695C17.7155 82.0065 17.6562 82.2822 17.6562 82.5967C17.6562 82.8883 17.7155 83.1436 17.834 83.3623C17.9525 83.5811 18.153 83.7793 18.4355 83.957C18.7227 84.1302 19.1169 84.3011 19.6182 84.4697C20.2061 84.6566 20.7051 84.8776 21.1152 85.1328C21.5254 85.3835 21.8376 85.6934 22.0518 86.0625C22.266 86.4271 22.373 86.8805 22.373 87.4229C22.373 88.0107 22.2409 88.5075 21.9766 88.9131C21.7122 89.3141 21.3408 89.6195 20.8623 89.8291C20.3838 90.0387 19.8232 90.1436 19.1807 90.1436C18.7933 90.1436 18.4105 90.0911 18.0322 89.9863C17.654 89.8815 17.3122 89.7106 17.0068 89.4736C16.7015 89.2321 16.4577 88.9154 16.2754 88.5234C16.0931 88.127 16.002 87.6416 16.002 87.0674H17.2734C17.2734 87.4548 17.3281 87.776 17.4375 88.0312C17.5514 88.2819 17.7018 88.4824 17.8887 88.6328C18.0755 88.7786 18.2806 88.8835 18.5039 88.9473C18.7318 89.0065 18.9574 89.0361 19.1807 89.0361C19.5908 89.0361 19.9372 88.9723 20.2197 88.8447C20.5068 88.7126 20.7256 88.5257 20.876 88.2842C21.0264 88.0426 21.1016 87.7601 21.1016 87.4365ZM30.2002 84.2305V85.748C30.2002 86.5638 30.1273 87.252 29.9814 87.8125C29.8356 88.373 29.626 88.8242 29.3525 89.166C29.0791 89.5078 28.7487 89.7562 28.3613 89.9111C27.9785 90.0615 27.5456 90.1367 27.0625 90.1367C26.6797 90.1367 26.3265 90.0889 26.0029 89.9932C25.6794 89.8975 25.3877 89.7448 25.1279 89.5352C24.8727 89.321 24.654 89.043 24.4717 88.7012C24.2894 88.3594 24.1504 87.9447 24.0547 87.457C23.959 86.9694 23.9111 86.3997 23.9111 85.748V84.2305C23.9111 83.4147 23.984 82.7311 24.1299 82.1797C24.2803 81.6283 24.4922 81.1862 24.7656 80.8535C25.0391 80.5163 25.3672 80.2747 25.75 80.1289C26.1374 79.9831 26.5703 79.9102 27.0488 79.9102C27.4362 79.9102 27.7917 79.958 28.1152 80.0537C28.4434 80.1449 28.735 80.293 28.9902 80.498C29.2454 80.6986 29.4619 80.9674 29.6396 81.3047C29.8219 81.6374 29.9609 82.0452 30.0566 82.5283C30.1523 83.0114 30.2002 83.5788 30.2002 84.2305ZM28.9287 85.9531V84.0186C28.9287 83.5719 28.9014 83.18 28.8467 82.8428C28.7965 82.501 28.7214 82.2093 28.6211 81.9678C28.5208 81.7262 28.3932 81.5303 28.2383 81.3799C28.0879 81.2295 27.9124 81.1201 27.7119 81.0518C27.516 80.9788 27.2949 80.9424 27.0488 80.9424C26.748 80.9424 26.4814 80.9993 26.249 81.1133C26.0166 81.2227 25.8206 81.3981 25.6611 81.6396C25.5062 81.8812 25.3877 82.1979 25.3057 82.5898C25.2236 82.9818 25.1826 83.458 25.1826 84.0186V85.9531C25.1826 86.3997 25.2077 86.7939 25.2578 87.1357C25.3125 87.4775 25.3923 87.7738 25.4971 88.0244C25.6019 88.2705 25.7295 88.4733 25.8799 88.6328C26.0303 88.7923 26.2035 88.9108 26.3994 88.9883C26.5999 89.0612 26.821 89.0977 27.0625 89.0977C27.3724 89.0977 27.6436 89.0384 27.876 88.9199C28.1084 88.8014 28.3021 88.6169 28.457 88.3662C28.6165 88.111 28.735 87.7852 28.8125 87.3887C28.89 86.9876 28.9287 86.5091 28.9287 85.9531Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"41",y:"83.5",width:"200",height:"2",rx:"1",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"41",y:"83.5",width:"122",height:"2",rx:"1",fill:"#4272F9"}),(0,h.createElement)("g",{filter:"url(#filter0_d_76_1271)"},(0,h.createElement)("circle",{cx:"163",cy:"84.5",r:"11",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M256.107 78.4336V80.5186H255.082V78.4336H256.107ZM255.984 89.5967V91.4219H254.966V89.5967H255.984ZM257.352 87.4365C257.352 87.1631 257.29 86.917 257.167 86.6982C257.044 86.4795 256.841 86.279 256.559 86.0967C256.276 85.9144 255.898 85.7458 255.424 85.5908C254.85 85.4131 254.353 85.1966 253.934 84.9414C253.519 84.6862 253.198 84.3695 252.97 83.9912C252.746 83.613 252.635 83.1549 252.635 82.6172C252.635 82.0566 252.756 81.5736 252.997 81.168C253.239 80.7624 253.58 80.4502 254.022 80.2314C254.465 80.0127 254.984 79.9033 255.581 79.9033C256.046 79.9033 256.461 79.974 256.825 80.1152C257.19 80.252 257.497 80.457 257.748 80.7305C258.003 81.0039 258.197 81.3389 258.329 81.7354C258.466 82.1318 258.534 82.5898 258.534 83.1094H257.276C257.276 82.804 257.24 82.5238 257.167 82.2686C257.094 82.0133 256.985 81.7923 256.839 81.6055C256.693 81.4141 256.515 81.2682 256.306 81.168C256.096 81.0632 255.854 81.0107 255.581 81.0107C255.198 81.0107 254.882 81.0768 254.631 81.209C254.385 81.3411 254.202 81.528 254.084 81.7695C253.965 82.0065 253.906 82.2822 253.906 82.5967C253.906 82.8883 253.965 83.1436 254.084 83.3623C254.202 83.5811 254.403 83.7793 254.686 83.957C254.973 84.1302 255.367 84.3011 255.868 84.4697C256.456 84.6566 256.955 84.8776 257.365 85.1328C257.775 85.3835 258.088 85.6934 258.302 86.0625C258.516 86.4271 258.623 86.8805 258.623 87.4229C258.623 88.0107 258.491 88.5075 258.227 88.9131C257.962 89.3141 257.591 89.6195 257.112 89.8291C256.634 90.0387 256.073 90.1436 255.431 90.1436C255.043 90.1436 254.66 90.0911 254.282 89.9863C253.904 89.8815 253.562 89.7106 253.257 89.4736C252.951 89.2321 252.708 88.9154 252.525 88.5234C252.343 88.127 252.252 87.6416 252.252 87.0674H253.523C253.523 87.4548 253.578 87.776 253.688 88.0312C253.801 88.2819 253.952 88.4824 254.139 88.6328C254.326 88.7786 254.531 88.8835 254.754 88.9473C254.982 89.0065 255.207 89.0361 255.431 89.0361C255.841 89.0361 256.187 88.9723 256.47 88.8447C256.757 88.7126 256.976 88.5257 257.126 88.2842C257.276 88.0426 257.352 87.7601 257.352 87.4365ZM266.724 88.9609V90H260.209V89.0908L263.47 85.4609C263.871 85.0143 264.181 84.6361 264.399 84.3262C264.623 84.0117 264.778 83.7314 264.864 83.4854C264.955 83.2347 265.001 82.9795 265.001 82.7197C265.001 82.3916 264.933 82.0954 264.796 81.8311C264.664 81.5622 264.468 81.348 264.208 81.1885C263.948 81.029 263.634 80.9492 263.265 80.9492C262.823 80.9492 262.453 81.0358 262.157 81.209C261.866 81.3776 261.647 81.6146 261.501 81.9199C261.355 82.2253 261.282 82.5762 261.282 82.9727H260.018C260.018 82.4121 260.141 81.8994 260.387 81.4346C260.633 80.9697 260.997 80.6006 261.48 80.3271C261.964 80.0492 262.558 79.9102 263.265 79.9102C263.894 79.9102 264.431 80.0218 264.878 80.2451C265.325 80.4639 265.666 80.7738 265.903 81.1748C266.145 81.5713 266.266 82.0361 266.266 82.5693C266.266 82.861 266.215 83.1572 266.115 83.458C266.02 83.7542 265.885 84.0505 265.712 84.3467C265.543 84.6429 265.345 84.9346 265.117 85.2217C264.894 85.5088 264.655 85.7913 264.399 86.0693L261.733 88.9609H266.724ZM272.233 79.9922V90H270.969V81.5713L268.419 82.501V81.3594L272.035 79.9922H272.233ZM282.2 84.2305V85.748C282.2 86.5638 282.127 87.252 281.981 87.8125C281.836 88.373 281.626 88.8242 281.353 89.166C281.079 89.5078 280.749 89.7562 280.361 89.9111C279.979 90.0615 279.546 90.1367 279.062 90.1367C278.68 90.1367 278.326 90.0889 278.003 89.9932C277.679 89.8975 277.388 89.7448 277.128 89.5352C276.873 89.321 276.654 89.043 276.472 88.7012C276.289 88.3594 276.15 87.9447 276.055 87.457C275.959 86.9694 275.911 86.3997 275.911 85.748V84.2305C275.911 83.4147 275.984 82.7311 276.13 82.1797C276.28 81.6283 276.492 81.1862 276.766 80.8535C277.039 80.5163 277.367 80.2747 277.75 80.1289C278.137 79.9831 278.57 79.9102 279.049 79.9102C279.436 79.9102 279.792 79.958 280.115 80.0537C280.443 80.1449 280.735 80.293 280.99 80.498C281.245 80.6986 281.462 80.9674 281.64 81.3047C281.822 81.6374 281.961 82.0452 282.057 82.5283C282.152 83.0114 282.2 83.5788 282.2 84.2305ZM280.929 85.9531V84.0186C280.929 83.5719 280.901 83.18 280.847 82.8428C280.797 82.501 280.721 82.2093 280.621 81.9678C280.521 81.7262 280.393 81.5303 280.238 81.3799C280.088 81.2295 279.912 81.1201 279.712 81.0518C279.516 80.9788 279.295 80.9424 279.049 80.9424C278.748 80.9424 278.481 80.9993 278.249 81.1133C278.017 81.2227 277.821 81.3981 277.661 81.6396C277.506 81.8812 277.388 82.1979 277.306 82.5898C277.224 82.9818 277.183 83.458 277.183 84.0186V85.9531C277.183 86.3997 277.208 86.7939 277.258 87.1357C277.312 87.4775 277.392 87.7738 277.497 88.0244C277.602 88.2705 277.729 88.4733 277.88 88.6328C278.03 88.7923 278.203 88.9108 278.399 88.9883C278.6 89.0612 278.821 89.0977 279.062 89.0977C279.372 89.0977 279.644 89.0384 279.876 88.9199C280.108 88.8014 280.302 88.6169 280.457 88.3662C280.617 88.111 280.735 87.7852 280.812 87.3887C280.89 86.9876 280.929 86.5091 280.929 85.9531Z",fill:"#0F172A"}),(0,h.createElement)("defs",null,(0,h.createElement)("filter",{id:"filter0_d_76_1271",x:"140",y:"65.5",width:"46",height:"46",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB"},(0,h.createElement)("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),(0,h.createElement)("feColorMatrix",{in:"SourceAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",result:"hardAlpha"}),(0,h.createElement)("feOffset",{dy:"4"}),(0,h.createElement)("feGaussianBlur",{stdDeviation:"6"}),(0,h.createElement)("feColorMatrix",{type:"matrix",values:"0 0 0 0 0.258824 0 0 0 0 0.447059 0 0 0 0 0.976471 0 0 0 0.5 0"}),(0,h.createElement)("feBlend",{mode:"normal",in2:"BackgroundImageFix",result:"effect1_dropShadow_76_1271"}),(0,h.createElement)("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_dropShadow_76_1271",result:"shape"})))),{BlockLabel:wi,BlockDescription:vi,BlockAdvancedValue:_i,BlockName:ki,AdvancedFields:ji,FieldWrapper:xi,ValidationToggleGroup:Fi,ValidationBlockMessage:Bi,AdvancedInspectorControl:Ai,AttributeHelp:Pi}=JetFBComponents,{useIsAdvancedValidation:Si,useUniqueNameOnDuplicate:Ni}=JetFBHooks,{__:Ii}=wp.i18n,{InspectorControls:Ti,useBlockProps:Oi}=wp.blockEditor,{TextControl:Ji,PanelBody:Ri,__experimentalNumberControl:qi,__experimentalInputControl:Di}=wp.components,{useState:zi}=wp.element;let{NumberControl:Ui,InputControl:Gi}=wp.components;void 0===Ui&&(Ui=qi),void 0===Gi&&(Gi=Di);const Wi=JSON.parse('{"apiVersion":3,"name":"jet-forms/range-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","range"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Range Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max":{"type":["number","string"],"default":"","jfb":{"rich":true}},"step":{"type":["number","string"],"default":"","jfb":{"rich":true}},"prefix":{"type":"string","default":"","jfb":{"rich":true}},"suffix":{"type":"string","default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Ki}=wp.i18n,{createBlock:$i}=wp.blocks,{name:Yi,icon:Xi=""}=Wi,Qi={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Xi}}),description:Ki("Insert a range with a slider in the form for the users to move it. So the visitors can set the desired price range for products they want to buy.","jet-form-builder"),edit:function(e){const C=Oi(),t=Si();Ni();const[l,r]=zi(50),{attributes:n,setAttributes:a,editProps:{uniqKey:i,attrHelp:o}}=e;return n.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ei):[e.isSelected&&(0,h.createElement)(Ti,{key:i("InspectorControls")},(0,h.createElement)(Ri,{title:Ii("General","jet-form-builder")},(0,h.createElement)(wi,null),(0,h.createElement)(ki,null),(0,h.createElement)(vi,null)),(0,h.createElement)(Ri,{title:Ii("Value","jet-form-builder")},(0,h.createElement)(_i,null)),(0,h.createElement)(Ri,{title:Ii("Field","jet-form-builder"),key:i("PanelBody")},(0,h.createElement)(Ai,{value:n.min,label:Ii("Min Value","jet-form-builder"),onChangePreset:e=>a({min:e})},({instanceId:e})=>(0,h.createElement)(Ji,{id:e,className:"jet-fb m-unset",value:n.min,onChange:e=>a({min:e})})),(0,h.createElement)(Pi,{name:"min"}),(0,h.createElement)(Ai,{value:n.max,label:Ii("Max Value","jet-form-builder"),onChangePreset:e=>a({max:e})},({instanceId:e})=>(0,h.createElement)(Ji,{id:e,className:"jet-fb m-unset",value:n.max,onChange:e=>a({max:e})})),(0,h.createElement)(Pi,{name:"max"}),(0,h.createElement)(Ai,{value:n.step,label:Ii("Step","jet-form-builder"),onChangePreset:e=>a({step:e})},({instanceId:e})=>(0,h.createElement)(Ji,{id:e,className:"jet-fb m-unset",value:n.step,onChange:e=>a({step:e})})),(0,h.createElement)(Pi,{name:"step"}),(0,h.createElement)(Ji,{key:"prefix",label:Ii("Value prefix","jet-form-builder"),value:n.prefix,help:o("prefix_suffix"),onChange:e=>{a({prefix:e})}}),(0,h.createElement)(Ji,{key:"suffix",label:Ii("Value suffix","jet-form-builder"),value:n.suffix,help:o("prefix_suffix"),onChange:e=>{a({suffix:e})}})),(0,h.createElement)(Ri,{title:Ii("Validation","jet-form-builder")},(0,h.createElement)(Fi,null),t&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Bi,{name:"empty"}),(0,h.createElement)(Bi,{name:"number_max"}),(0,h.createElement)(Bi,{name:"number_min"}))),(0,h.createElement)(ji,{key:i("AdvancedFields"),...e})),(0,h.createElement)("div",{...C,key:i("viewBlock")},(0,h.createElement)(xi,{key:i("FieldWrapper"),wrapClasses:["range-wrap"],...e},(0,h.createElement)("div",{className:"range-flex-wrap jet-form-builder__field-preview"},(0,h.createElement)(Gi,{key:i("placeholder_block"),type:"range",min:n.min||0,max:n.max||100,step:n.step||1,onChange:r}),(0,h.createElement)("div",{className:"jet-form-builder__field-value"},(0,h.createElement)("span",{className:"jet-form-builder__field-value-prefix"},n.prefix),(0,h.createElement)("span",null,l),(0,h.createElement)("span",{className:"jet-form-builder__field-value-suffix"},n.suffix)))))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>$i("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/number-field"],transform:e=>$i(Yi,{...e}),priority:0}]}},eo=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"70",y:"44",width:"158",height:"56",rx:"28",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M99.8051 79.28C99.2384 79.28 98.6551 79.2233 98.0551 79.11C97.4551 79.0033 96.8984 78.8733 96.3851 78.72C95.8717 78.56 95.4651 78.4067 95.1651 78.26L95.4651 75.54C95.9317 75.7667 96.4184 75.9767 96.9251 76.17C97.4317 76.3633 97.9517 76.52 98.4851 76.64C99.0184 76.76 99.5584 76.82 100.105 76.82C100.785 76.82 101.332 76.6867 101.745 76.42C102.158 76.1533 102.365 75.7467 102.365 75.2C102.365 74.78 102.248 74.4433 102.015 74.19C101.782 73.93 101.425 73.7 100.945 73.5C100.465 73.2933 99.8517 73.06 99.1051 72.8C98.3584 72.54 97.6884 72.2467 97.0951 71.92C96.5017 71.5867 96.0317 71.1667 95.6851 70.66C95.3384 70.1533 95.1651 69.5067 95.1651 68.72C95.1651 67.9467 95.3551 67.26 95.7351 66.66C96.1151 66.0533 96.6817 65.58 97.4351 65.24C98.1951 64.8933 99.1384 64.72 100.265 64.72C101.118 64.72 101.932 64.8167 102.705 65.01C103.478 65.1967 104.138 65.4 104.685 65.62L104.425 68.24C103.638 67.8867 102.898 67.62 102.205 67.44C101.518 67.2533 100.818 67.16 100.105 67.16C99.3584 67.16 98.7817 67.2833 98.3751 67.53C97.9684 67.7767 97.7651 68.1467 97.7651 68.64C97.7651 69.0333 97.8784 69.35 98.1051 69.59C98.3317 69.83 98.6551 70.0367 99.0751 70.21C99.4951 70.3767 99.9984 70.5533 100.585 70.74C101.598 71.06 102.448 71.4133 103.135 71.8C103.828 72.18 104.348 72.6433 104.695 73.19C105.048 73.73 105.225 74.4 105.225 75.2C105.225 75.6 105.162 76.0367 105.035 76.51C104.908 76.9767 104.658 77.42 104.285 77.84C103.912 78.26 103.365 78.6067 102.645 78.88C101.932 79.1467 100.985 79.28 99.8051 79.28ZM110.989 79.2C109.949 79.2 109.119 78.9933 108.499 78.58C107.879 78.1667 107.433 77.6 107.159 76.88C106.886 76.1533 106.749 75.32 106.749 74.38V69H109.229V74.38C109.229 75.3067 109.383 75.9967 109.689 76.45C110.003 76.8967 110.509 77.12 111.209 77.12C111.769 77.12 112.233 76.9867 112.599 76.72C112.973 76.4533 113.283 76.08 113.529 75.6L113.089 76.86V69H115.569V79H113.249L113.129 77.26L113.669 77.96C113.429 78.2667 113.049 78.55 112.529 78.81C112.016 79.07 111.503 79.2 110.989 79.2ZM123.085 79.2C122.325 79.2 121.668 79.0767 121.115 78.83C120.561 78.5833 120.045 78.2467 119.565 77.82L120.305 77.3L120.185 79H117.865V64H120.345V70.66L119.745 70.28C120.185 69.8267 120.675 69.4733 121.215 69.22C121.761 68.9667 122.385 68.84 123.085 68.84C124.065 68.84 124.888 69.0767 125.555 69.55C126.221 70.0233 126.725 70.6533 127.065 71.44C127.411 72.2267 127.585 73.0867 127.585 74.02C127.585 74.9533 127.411 75.8133 127.065 76.6C126.725 77.3867 126.221 78.0167 125.555 78.49C124.888 78.9633 124.065 79.2 123.085 79.2ZM122.725 77.16C123.218 77.16 123.638 77.0267 123.985 76.76C124.331 76.4933 124.595 76.1267 124.775 75.66C124.955 75.1867 125.045 74.64 125.045 74.02C125.045 73.4 124.955 72.8567 124.775 72.39C124.595 71.9167 124.331 71.5467 123.985 71.28C123.638 71.0133 123.218 70.88 122.725 70.88C122.145 70.88 121.671 71.0133 121.305 71.28C120.938 71.5467 120.665 71.9167 120.485 72.39C120.311 72.8567 120.225 73.4 120.225 74.02C120.225 74.64 120.311 75.1867 120.485 75.66C120.665 76.1267 120.938 76.4933 121.305 76.76C121.671 77.0267 122.145 77.16 122.725 77.16ZM129.31 79V69H131.43L131.59 70.46L131.23 70.02C131.61 69.72 132.064 69.45 132.59 69.21C133.124 68.9633 133.744 68.84 134.45 68.84C134.984 68.84 135.454 68.92 135.86 69.08C136.274 69.2333 136.627 69.4567 136.92 69.75C137.214 70.0367 137.45 70.38 137.63 70.78L137.03 70.64C137.35 70.0667 137.817 69.6233 138.43 69.31C139.05 68.9967 139.75 68.84 140.53 68.84C141.45 68.84 142.2 69.03 142.78 69.41C143.36 69.79 143.787 70.3267 144.06 71.02C144.334 71.7067 144.47 72.5133 144.47 73.44V79H141.99V73.62C141.99 72.6867 141.844 71.9967 141.55 71.55C141.264 71.1033 140.784 70.88 140.11 70.88C139.777 70.88 139.484 70.94 139.23 71.06C138.984 71.1733 138.777 71.3433 138.61 71.57C138.45 71.79 138.33 72.06 138.25 72.38C138.17 72.6933 138.13 73.0467 138.13 73.44V79H135.65V73.62C135.65 73 135.584 72.4867 135.45 72.08C135.324 71.6733 135.117 71.3733 134.83 71.18C134.55 70.98 134.184 70.88 133.73 70.88C133.15 70.88 132.674 71.0167 132.3 71.29C131.934 71.5567 131.61 71.92 131.33 72.38L131.79 71.04V79H129.31ZM146.693 79V69H149.173V79H146.693ZM146.693 67.48V65H149.173V67.48H146.693ZM154.758 79.2C154.131 79.2 153.621 79.0733 153.228 78.82C152.835 78.56 152.545 78.23 152.358 77.83C152.171 77.43 152.078 77.0133 152.078 76.58V71.04H150.658L150.878 69H152.078V66.8L154.558 66.54V69H156.758V71.04H154.558V75.56C154.558 76.0667 154.588 76.4333 154.648 76.66C154.708 76.88 154.845 77.02 155.058 77.08C155.271 77.1333 155.611 77.16 156.078 77.16H156.758L156.538 79.2H154.758ZM163.465 79V71.04H162.045L162.265 69H163.465V66.88C163.465 66 163.725 65.3 164.245 64.78C164.772 64.26 165.525 64 166.505 64C166.825 64 167.118 64.0167 167.385 64.05C167.658 64.0833 167.905 64.1267 168.125 64.18L167.905 66.18C167.805 66.1467 167.695 66.1233 167.575 66.11C167.455 66.09 167.305 66.08 167.125 66.08C166.765 66.08 166.478 66.1767 166.265 66.37C166.052 66.5633 165.945 66.88 165.945 67.32V69H168.145V71.04H165.945V79H163.465ZM174.104 79.2C173.018 79.2 172.091 78.9633 171.324 78.49C170.558 78.0167 169.971 77.3867 169.564 76.6C169.164 75.8133 168.964 74.9533 168.964 74.02C168.964 73.08 169.164 72.2133 169.564 71.42C169.971 70.6267 170.558 69.9933 171.324 69.52C172.091 69.04 173.018 68.8 174.104 68.8C175.191 68.8 176.118 69.04 176.884 69.52C177.651 69.9933 178.234 70.6267 178.634 71.42C179.041 72.2133 179.244 73.08 179.244 74.02C179.244 74.9533 179.041 75.8133 178.634 76.6C178.234 77.3867 177.651 78.0167 176.884 78.49C176.118 78.9633 175.191 79.2 174.104 79.2ZM174.104 77.16C174.938 77.16 175.578 76.87 176.024 76.29C176.478 75.7033 176.704 74.9467 176.704 74.02C176.704 73.08 176.478 72.3167 176.024 71.73C175.578 71.1367 174.938 70.84 174.104 70.84C173.278 70.84 172.638 71.1367 172.184 71.73C171.731 72.3167 171.504 73.08 171.504 74.02C171.504 74.9467 171.731 75.7033 172.184 76.29C172.638 76.87 173.278 77.16 174.104 77.16ZM180.971 79V69H183.291L183.351 70.06C183.604 69.78 183.961 69.5 184.421 69.22C184.881 68.94 185.384 68.8 185.931 68.8C186.091 68.8 186.237 68.8133 186.371 68.84L186.191 71.28C186.044 71.24 185.897 71.2133 185.751 71.2C185.611 71.1867 185.471 71.18 185.331 71.18C184.911 71.18 184.527 71.2767 184.181 71.47C183.834 71.6633 183.591 71.9 183.451 72.18V79H180.971ZM187.572 79V69H189.692L189.852 70.46L189.492 70.02C189.872 69.72 190.325 69.45 190.852 69.21C191.385 68.9633 192.005 68.84 192.712 68.84C193.245 68.84 193.715 68.92 194.122 69.08C194.535 69.2333 194.889 69.4567 195.182 69.75C195.475 70.0367 195.712 70.38 195.892 70.78L195.292 70.64C195.612 70.0667 196.079 69.6233 196.692 69.31C197.312 68.9967 198.012 68.84 198.792 68.84C199.712 68.84 200.462 69.03 201.042 69.41C201.622 69.79 202.049 70.3267 202.322 71.02C202.595 71.7067 202.732 72.5133 202.732 73.44V79H200.252V73.62C200.252 72.6867 200.105 71.9967 199.812 71.55C199.525 71.1033 199.045 70.88 198.372 70.88C198.039 70.88 197.745 70.94 197.492 71.06C197.245 71.1733 197.039 71.3433 196.872 71.57C196.712 71.79 196.592 72.06 196.512 72.38C196.432 72.6933 196.392 73.0467 196.392 73.44V79H193.912V73.62C193.912 73 193.845 72.4867 193.712 72.08C193.585 71.6733 193.379 71.3733 193.092 71.18C192.812 70.98 192.445 70.88 191.992 70.88C191.412 70.88 190.935 71.0167 190.562 71.29C190.195 71.5567 189.872 71.92 189.592 72.38L190.052 71.04V79H187.572Z",fill:"white"})),{GeneralFields:Co,AdvancedFields:to,ActionButtonPlaceholder:lo}=JetFBComponents,{InspectorControls:ro}=wp.blockEditor,{useState:no,useEffect:ao}=wp.element,{withFilters:io}=wp.components,oo=["jet-form-builder__action-button"],so=["jet-form-builder__action-button-wrapper"],co=io("jet.fb.block.action-button.edit")(lo),mo=e=>{var C;const{attributes:t,setAttributes:l}=e,r=()=>{if(!t.action_type)return oo;const e=JetFormActionButton.actions.find(e=>t.action_type===e.value);return e?(t.label||l({label:e.preset_label}),[...oo,e.button_class]):oo},n=()=>{if(!t.action_type)return[...so];const e=JetFormActionButton.actions.find(e=>t.action_type===e.value);return e?[...so,e.wrapper_class]:[...so]},[a,i]=no(r),[o,s]=no(n);return ao(()=>{i(r()),s(n())},[t.action_type]),(0,h.createElement)(co,{attributes:t,setAttributes:l,setActionAttributes:e=>{var C;const r=JSON.parse(JSON.stringify(t.buttons)),n=null!==(C=r[t.action_type])&&void 0!==C?C:{};r[t.action_type]={...n,...e},l({buttons:r})},actionAttributes:null!==(C=t.buttons[t.action_type])&&void 0!==C?C:{},buttonClasses:a,wrapperClasses:o})},uo=JSON.parse('{"apiVersion":3,"name":"jet-forms/submit-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","field","submit","break","next","prev","action","button"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Action Button","icon":"\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"label":{"type":"string","default":"Submit","jfb":{"rich":true}},"action_type":{"type":"string","default":"submit"},"buttons":{"type":"object","default":{}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""}}}'),{__:po}=wp.i18n,fo={name:"submit",isDefault:!0,title:po("Action Button","jet-form-builder"),isActive:["action_type"],description:po("Add the button by clicking which users can submit the form","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M24.8828 29.3223H23.0029C22.9619 29.7415 22.8639 30.0924 22.709 30.375C22.5586 30.6576 22.3376 30.8717 22.0459 31.0176C21.7588 31.1634 21.3851 31.2363 20.9248 31.2363C20.5465 31.2363 20.2207 31.1634 19.9473 31.0176C19.6738 30.8717 19.4505 30.6598 19.2773 30.3818C19.1042 30.1038 18.9766 29.7643 18.8945 29.3633C18.8125 28.9622 18.7715 28.5088 18.7715 28.0029V27.2305C18.7715 26.7018 18.8171 26.237 18.9082 25.8359C18.9993 25.4303 19.1361 25.0931 19.3184 24.8242C19.5007 24.5508 19.7285 24.3457 20.002 24.209C20.2799 24.0723 20.6012 24.0039 20.9658 24.0039C21.4352 24.0039 21.8112 24.0814 22.0938 24.2363C22.3809 24.3867 22.5951 24.6077 22.7363 24.8994C22.8822 25.1911 22.9733 25.5465 23.0098 25.9658H24.8896C24.8258 25.2913 24.639 24.6943 24.3291 24.1748C24.0192 23.6553 23.584 23.2474 23.0234 22.9512C22.4629 22.6504 21.777 22.5 20.9658 22.5C20.3415 22.5 19.7764 22.6117 19.2705 22.835C18.7692 23.0583 18.3385 23.3773 17.9785 23.792C17.623 24.2021 17.3496 24.6989 17.1582 25.2822C16.9668 25.8656 16.8711 26.5195 16.8711 27.2441V28.0029C16.8711 28.7275 16.9645 29.3815 17.1514 29.9648C17.3382 30.5436 17.6071 31.0404 17.958 31.4551C18.3135 31.8652 18.7396 32.182 19.2363 32.4053C19.7376 32.624 20.3005 32.7334 20.9248 32.7334C21.736 32.7334 22.4264 32.5876 22.9961 32.2959C23.5658 32.0042 24.0101 31.6032 24.3291 31.0928C24.6481 30.5778 24.8327 29.9876 24.8828 29.3223Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5371 22.6436L16.2764 32.5967H14.2803L13.5324 30.3818H9.81555L9.07129 32.5967H7.08203L10.8008 22.6436H12.5371ZM10.314 28.8984H13.0316L11.6695 24.8646L10.314 28.8984Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M30.4062 24.127V32.5967H28.5332V24.127H25.4775V22.6436H33.4961V24.127H30.4062Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M36.75 32.5967V22.6436H34.8701V32.5967H36.75Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M46.8398 27.3672V27.8799C46.8398 28.6318 46.7396 29.3086 46.5391 29.9102C46.3385 30.5072 46.0537 31.0153 45.6846 31.4346C45.3154 31.8538 44.8757 32.1751 44.3652 32.3984C43.8548 32.6217 43.2874 32.7334 42.6631 32.7334C42.0479 32.7334 41.4827 32.6217 40.9678 32.3984C40.4574 32.1751 40.0153 31.8538 39.6416 31.4346C39.2679 31.0153 38.9785 30.5072 38.7734 29.9102C38.5684 29.3086 38.4658 28.6318 38.4658 27.8799V27.3672C38.4658 26.6107 38.5684 25.9339 38.7734 25.3369C38.9785 24.7399 39.2656 24.2318 39.6348 23.8125C40.0039 23.3887 40.4437 23.0651 40.9541 22.8418C41.4691 22.6185 42.0342 22.5068 42.6494 22.5068C43.2738 22.5068 43.8411 22.6185 44.3516 22.8418C44.862 23.0651 45.3018 23.3887 45.6709 23.8125C46.0446 24.2318 46.3317 24.7399 46.5322 25.3369C46.7373 25.9339 46.8398 26.6107 46.8398 27.3672ZM44.9395 27.8799V27.3535C44.9395 26.8112 44.8893 26.335 44.7891 25.9248C44.6888 25.5101 44.5407 25.1615 44.3447 24.8789C44.1488 24.5964 43.9072 24.3844 43.6201 24.2432C43.333 24.0973 43.0094 24.0244 42.6494 24.0244C42.2848 24.0244 41.9613 24.0973 41.6787 24.2432C41.4007 24.3844 41.1637 24.5964 40.9678 24.8789C40.7718 25.1615 40.6214 25.5101 40.5166 25.9248C40.4163 26.335 40.3662 26.8112 40.3662 27.3535V27.8799C40.3662 28.4176 40.4163 28.8939 40.5166 29.3086C40.6214 29.7233 40.7718 30.0742 40.9678 30.3613C41.1683 30.6439 41.4098 30.8581 41.6924 31.0039C41.9749 31.1497 42.2985 31.2227 42.6631 31.2227C43.0277 31.2227 43.3512 31.1497 43.6338 31.0039C43.9163 30.8581 44.1533 30.6439 44.3447 30.3613C44.5407 30.0742 44.6888 29.7233 44.7891 29.3086C44.8893 28.8939 44.9395 28.4176 44.9395 27.8799Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M56.4307 32.5967V22.6436H54.5576V29.5547L50.3125 22.6436H48.4326V32.5967H50.3125V25.6924L54.5439 32.5967H56.4307Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M56.8581 44H60C62.2091 44 64 42.2091 64 40V15C64 12.7909 62.2091 11 60 11H4C1.79086 11 0 12.7909 0 15V40C0 42.2091 1.79086 44 4 44H40.778L42.9403 53.0096C43.0578 53.5382 43.3396 53.9897 43.7233 54.3254C44.0972 54.6525 44.5724 54.8763 45.1109 54.9302C45.6268 54.9818 46.1288 54.8712 46.5658 54.6285C47.0573 54.3554 47.415 53.9381 47.6217 53.4573L48.5248 51.4717L51.0479 54.0031L51.0743 54.0278C51.3798 54.3129 51.7296 54.5489 52.1209 54.7228L52.1642 54.742L52.2083 54.7592C52.6273 54.9221 53.0636 55 53.5023 55C53.941 55 54.3773 54.9221 54.7963 54.7592L54.8404 54.742L54.8837 54.7228C55.275 54.5489 55.6249 54.3129 55.9303 54.0278L55.9679 53.9927L56.0036 53.9557C56.6466 53.2906 57 52.4405 57 51.5023C57 50.5641 56.6466 49.714 56.0036 49.0489L55.9907 49.0355L53.4717 46.5248L55.4573 45.6217C55.9381 45.415 56.3554 45.0573 56.6285 44.5658C56.7279 44.3869 56.8051 44.1972 56.8581 44ZM60 13H4C2.89543 13 2 13.8954 2 15V40C2 41.1046 2.89543 42 4 42H40.298L40.0716 41.0566C39.9751 40.6621 39.9762 40.2536 40.0747 39.8594L40.1023 39.7489L40.1423 39.6422C40.2437 39.3718 40.3918 39.1023 40.5984 38.8544L40.6564 38.7847L40.7206 38.7206C41.029 38.4122 41.4173 38.1852 41.8594 38.0747C42.2536 37.9762 42.6621 37.9751 43.0566 38.0716L55.0096 40.9403C55.5382 41.0578 55.9897 41.3396 56.3254 41.7233C56.4015 41.8102 56.4719 41.9026 56.536 42H60C61.1046 42 62 41.1046 62 40V15C62 13.8954 61.1046 13 60 13ZM50.0127 45.9009L54.6555 43.7892C54.7554 43.7492 54.8303 43.6843 54.8802 43.5945C54.9301 43.5046 54.9501 43.4098 54.9401 43.3099C54.9301 43.2101 54.8902 43.1202 54.8203 43.0403C54.7504 42.9604 54.6655 42.9105 54.5657 42.8906L42.5841 40.015C42.5042 39.995 42.4243 39.995 42.3445 40.015C42.2646 40.0349 42.1947 40.0749 42.1348 40.1348C42.0849 40.1947 42.0449 40.2646 42.015 40.3445C41.995 40.4243 41.995 40.5042 42.015 40.5841L44.8906 52.5657C44.9105 52.6655 44.9604 52.7504 45.0403 52.8203C45.1202 52.8902 45.2101 52.9301 45.3099 52.9401C45.4098 52.9501 45.5046 52.9301 45.5945 52.8802C45.6843 52.8303 45.7492 52.7554 45.7892 52.6555L47.9009 48.0127L52.4389 52.5657C52.5887 52.7055 52.7535 52.8153 52.9332 52.8952C53.1129 52.9651 53.3026 53 53.5023 53C53.702 53 53.8917 52.9651 54.0714 52.8952C54.2512 52.8153 54.4159 52.7055 54.5657 52.5657C54.8552 52.2661 55 51.9117 55 51.5023C55 51.0929 54.8552 50.7385 54.5657 50.4389L50.0127 45.9009Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"submit"}},{registerBlockVariation:Vo}=wp.blocks;Vo("jet-forms/submit-field",fo);const{__:Ho}=wp.i18n,ho={name:"update",title:Ho("Update Field","jet-form-builder"),isActive:["action_type"],description:Ho("Update dependent fields without submitting the form","jet-form-builder"),icon:"update-alt",scope:["block","inserter","transform"],attributes:{action_type:"update"}};var bo;const{registerBlockVariation:Mo,getBlockVariations:Lo}=wp.blocks;(null!==(bo=Lo?.("jet-forms/submit-field"))&&void 0!==bo?bo:[]).some(e=>"update"===e?.name||"update"===e?.attributes?.action_type)||Mo("jet-forms/submit-field",ho);const{__:go}=wp.i18n,Zo={name:"next",title:go("Next Page","jet-form-builder"),isActive:["action_type"],description:go("Go to Next Page button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M48.615 39.6867C48.1972 40.1045 47.5236 40.1045 47.1058 39.6867C46.688 39.2774 46.688 38.5953 47.0973 38.186L53.279 32.0043L47.1058 25.8225C46.688 25.4047 46.688 24.7311 47.1058 24.3133C47.5236 23.8955 48.1972 23.8955 48.615 24.3133L55.7005 31.3989C56.0331 31.7314 56.0331 32.2686 55.7005 32.6011L48.615 39.6867Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M39 54C41.2091 54 43 52.2091 43 50H58C60.2091 50 62 48.2091 62 46V18C62 15.7909 60.2091 14 58 14H43C43 11.7909 41.2091 10 39 10H6C3.79086 10 2 11.7909 2 14V50C2 52.2091 3.79086 54 6 54H39ZM39 12H6C4.89543 12 4 12.8954 4 14V50C4 51.1046 4.89543 52 6 52H39C40.1046 52 41 51.1046 41 50V14C41 12.8954 40.1046 12 39 12ZM43 48V16H58C59.1046 16 60 16.8954 60 18V46C60 47.1046 59.1046 48 58 48H43Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"next"}},{registerBlockVariation:yo}=wp.blocks;yo("jet-forms/submit-field",Zo);const{__:Eo}=wp.i18n,wo={name:"prev",title:Eo("Prev Page","jet-form-builder"),isActive:["action_type"],description:Eo("Go to Prev Page button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M15.385 39.6867C15.8028 40.1045 16.4764 40.1045 16.8942 39.6867C17.312 39.2774 17.312 38.5953 16.9027 38.186L10.721 32.0043L16.8942 25.8225C17.312 25.4047 17.312 24.7311 16.8942 24.3133C16.4764 23.8955 15.8028 23.8955 15.385 24.3133L8.29947 31.3989C7.96694 31.7314 7.96694 32.2686 8.29947 32.6011L15.385 39.6867Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M25 54C22.7909 54 21 52.2091 21 50H6C3.79086 50 2 48.2091 2 46V18C2 15.7909 3.79086 14 6 14H21C21 11.7909 22.7909 10 25 10H58C60.2091 10 62 11.7909 62 14V50C62 52.2091 60.2091 54 58 54H25ZM25 12H58C59.1046 12 60 12.8954 60 14V50C60 51.1046 59.1046 52 58 52H25C23.8954 52 23 51.1046 23 50V14C23 12.8954 23.8954 12 25 12ZM21 48V16H6C4.89543 16 4 16.8954 4 18V46C4 47.1046 4.89543 48 6 48H21Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"prev"}},{registerBlockVariation:vo}=wp.blocks;vo("jet-forms/submit-field",wo);const{__:_o}=wp.i18n,ko={name:"switch-state",title:_o("Change Render State","jet-form-builder"),isActive:(e,C)=>e.action_type===C.action_type,description:_o("Change Render State button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M28 39V46C28 48.2091 26.2091 50 24 50H4C1.79086 50 0 48.2091 0 46V18C0 15.7909 1.79086 14 4 14H24C26.2091 14 28 15.7909 28 18V25H36V18C36 15.7909 37.7909 14 40 14H60C62.2091 14 64 15.7909 64 18V46C64 48.2091 62.2091 50 60 50H40C37.7909 50 36 48.2091 36 46V39H28ZM4 16H24C25.1046 16 26 16.8954 26 18V37H15.4142L20.0711 32.3431C20.4616 31.9526 20.4616 31.3195 20.0711 30.9289C19.6805 30.5384 19.0474 30.5384 18.6569 30.9289L12.2929 37.2929C11.9024 37.6834 11.9024 38.3166 12.2929 38.7071L18.6569 45.0711C19.0474 45.4616 19.6805 45.4616 20.0711 45.0711C20.4616 44.6805 20.4616 44.0474 20.0711 43.6569L15.4142 39H26V46C26 47.1046 25.1046 48 24 48H4C2.89543 48 2 47.1046 2 46V18C2 16.8954 2.89543 16 4 16ZM28 37H36V27H28V37ZM38 46C38 47.1046 38.8954 48 40 48H60C61.1046 48 62 47.1046 62 46V18C62 16.8954 61.1046 16 60 16H40C38.8954 16 38 16.8954 38 18V25H48.5858L43.9289 20.3431C43.5384 19.9526 43.5384 19.3195 43.9289 18.9289C44.3195 18.5384 44.9526 18.5384 45.3431 18.9289L51.7071 25.2929C52.0976 25.6834 52.0976 26.3166 51.7071 26.7071L45.3431 33.0711C44.9526 33.4616 44.3195 33.4616 43.9289 33.0711C43.5384 32.6805 43.5384 32.0474 43.9289 31.6569L48.5858 27H38V46Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"switch-state"}},{__:jo}=wp.i18n,{useSelect:xo}=wp.data,{FormTokenField:Fo,PanelBody:Bo}=wp.components,{InspectorControls:Ao}=wp.blockEditor,{useUniqKey:Po}=JetFBHooks,{ActionButtonPlaceholder:So}=JetFBComponents,{column:No}=JetFBActions,Io=function(e){const{actionAttributes:C,setActionAttributes:t}=e,l=Po(),r=xo(e=>No(e("jet-forms/block-conditions").getSwitchableRenderStates(),"value"),[]);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(So,{...e}),(0,h.createElement)(Ao,null,(0,h.createElement)(Bo,{title:jo("Change Render State","jet-form-builder")},(0,h.createElement)(Fo,{key:l("switch_on"),label:jo("Switch state","jet-form-builder"),value:C.switch_on,suggestions:r,onChange:e=>t({switch_on:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0}))))},{registerBlockVariation:To}=wp.blocks,{addFilter:Oo}=wp.hooks;To("jet-forms/submit-field",ko),Oo("jet.fb.block.action-button.edit","jet-form-builder/switch-state-variation",e=>C=>"switch-state"!==C.attributes?.action_type?(0,h.createElement)(e,{...C}):(0,h.createElement)(Io,{...C}));const{createBlock:Jo}=wp.blocks,{name:Ro,icon:qo=""}=uo;uo.attributes.isPreview={type:"boolean",default:!1};const Do={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:qo}}),edit:function(e){const{attributes:C,setAttributes:t}=e;return C.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},eo):(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ro,null,(0,h.createElement)(Co,{...e}),(0,h.createElement)(to,{...e})),(0,h.createElement)(mo,{attributes:C,setAttributes:t}))},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Jo("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Jo(Ro,{...e}),priority:0},{type:"block",blocks:["core/buttons"],transform:(e,C)=>Jo(Ro,{label:C[0]?.attributes?.text||""}),priority:0}]}},zo=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M19.8398 23.9287L16.5449 33H15.1982L18.9922 23.0469H19.8604L19.8398 23.9287ZM22.6016 33L19.2998 23.9287L19.2793 23.0469H20.1475L23.9551 33H22.6016ZM22.4307 29.3154V30.3955H16.8389V29.3154H22.4307ZM29.7588 31.5645V22.5H31.0303V33H29.8682L29.7588 31.5645ZM24.7822 29.3838V29.2402C24.7822 28.6751 24.8506 28.1624 24.9873 27.7021C25.1286 27.2373 25.3268 26.8385 25.582 26.5059C25.8418 26.1732 26.1494 25.918 26.5049 25.7402C26.8649 25.5579 27.266 25.4668 27.708 25.4668C28.1729 25.4668 28.5785 25.5488 28.9248 25.7129C29.2757 25.8724 29.5719 26.1071 29.8135 26.417C30.0596 26.7223 30.2533 27.0915 30.3945 27.5244C30.5358 27.9574 30.6338 28.4473 30.6885 28.9941V29.623C30.6383 30.1654 30.5404 30.653 30.3945 31.0859C30.2533 31.5189 30.0596 31.888 29.8135 32.1934C29.5719 32.4987 29.2757 32.7334 28.9248 32.8975C28.5739 33.057 28.1637 33.1367 27.6943 33.1367C27.2614 33.1367 26.8649 33.0433 26.5049 32.8564C26.1494 32.6696 25.8418 32.4076 25.582 32.0703C25.3268 31.7331 25.1286 31.3366 24.9873 30.8809C24.8506 30.4206 24.7822 29.9215 24.7822 29.3838ZM26.0537 29.2402V29.3838C26.0537 29.7529 26.0902 30.0993 26.1631 30.4229C26.2406 30.7464 26.359 31.0312 26.5186 31.2773C26.6781 31.5234 26.8809 31.7171 27.127 31.8584C27.373 31.9951 27.667 32.0635 28.0088 32.0635C28.4281 32.0635 28.7721 31.9746 29.041 31.7969C29.3145 31.6191 29.5332 31.3844 29.6973 31.0928C29.8613 30.8011 29.9889 30.4844 30.0801 30.1426V28.4951C30.0254 28.2445 29.9456 28.0029 29.8408 27.7705C29.7406 27.5335 29.6084 27.3239 29.4443 27.1416C29.2848 26.9548 29.0866 26.8066 28.8496 26.6973C28.6172 26.5879 28.3415 26.5332 28.0225 26.5332C27.6761 26.5332 27.3776 26.6061 27.127 26.752C26.8809 26.8932 26.6781 27.0892 26.5186 27.3398C26.359 27.5859 26.2406 27.873 26.1631 28.2012C26.0902 28.5247 26.0537 28.8711 26.0537 29.2402ZM37.6611 31.5645V22.5H38.9326V33H37.7705L37.6611 31.5645ZM32.6846 29.3838V29.2402C32.6846 28.6751 32.7529 28.1624 32.8896 27.7021C33.0309 27.2373 33.2292 26.8385 33.4844 26.5059C33.7441 26.1732 34.0518 25.918 34.4072 25.7402C34.7673 25.5579 35.1683 25.4668 35.6104 25.4668C36.0752 25.4668 36.4808 25.5488 36.8271 25.7129C37.1781 25.8724 37.4743 26.1071 37.7158 26.417C37.9619 26.7223 38.1556 27.0915 38.2969 27.5244C38.4382 27.9574 38.5361 28.4473 38.5908 28.9941V29.623C38.5407 30.1654 38.4427 30.653 38.2969 31.0859C38.1556 31.5189 37.9619 31.888 37.7158 32.1934C37.4743 32.4987 37.1781 32.7334 36.8271 32.8975C36.4762 33.057 36.0661 33.1367 35.5967 33.1367C35.1637 33.1367 34.7673 33.0433 34.4072 32.8564C34.0518 32.6696 33.7441 32.4076 33.4844 32.0703C33.2292 31.7331 33.0309 31.3366 32.8896 30.8809C32.7529 30.4206 32.6846 29.9215 32.6846 29.3838ZM33.9561 29.2402V29.3838C33.9561 29.7529 33.9925 30.0993 34.0654 30.4229C34.1429 30.7464 34.2614 31.0312 34.4209 31.2773C34.5804 31.5234 34.7832 31.7171 35.0293 31.8584C35.2754 31.9951 35.5693 32.0635 35.9111 32.0635C36.3304 32.0635 36.6745 31.9746 36.9434 31.7969C37.2168 31.6191 37.4355 31.3844 37.5996 31.0928C37.7637 30.8011 37.8913 30.4844 37.9824 30.1426V28.4951C37.9277 28.2445 37.848 28.0029 37.7432 27.7705C37.6429 27.5335 37.5107 27.3239 37.3467 27.1416C37.1872 26.9548 36.9889 26.8066 36.752 26.6973C36.5195 26.5879 36.2438 26.5332 35.9248 26.5332C35.5785 26.5332 35.2799 26.6061 35.0293 26.752C34.7832 26.8932 34.5804 27.0892 34.4209 27.3398C34.2614 27.5859 34.1429 27.873 34.0654 28.2012C33.9925 28.5247 33.9561 28.8711 33.9561 29.2402ZM42.2754 25.6035V33H41.0039V25.6035H42.2754ZM40.9082 23.6416C40.9082 23.4365 40.9697 23.2633 41.0928 23.1221C41.2204 22.9808 41.4072 22.9102 41.6533 22.9102C41.8949 22.9102 42.0794 22.9808 42.207 23.1221C42.3392 23.2633 42.4053 23.4365 42.4053 23.6416C42.4053 23.8376 42.3392 24.0062 42.207 24.1475C42.0794 24.2842 41.8949 24.3525 41.6533 24.3525C41.4072 24.3525 41.2204 24.2842 41.0928 24.1475C40.9697 24.0062 40.9082 23.8376 40.9082 23.6416ZM47.4023 25.6035V26.5742H43.4033V25.6035H47.4023ZM44.7568 23.8057H46.0215V31.168C46.0215 31.4186 46.0602 31.6077 46.1377 31.7354C46.2152 31.863 46.3154 31.9473 46.4385 31.9883C46.5615 32.0293 46.6937 32.0498 46.835 32.0498C46.9398 32.0498 47.0492 32.0407 47.1631 32.0225C47.2816 31.9997 47.3704 31.9814 47.4297 31.9678L47.4365 33C47.3363 33.0319 47.2041 33.0615 47.04 33.0889C46.8805 33.1208 46.6868 33.1367 46.459 33.1367C46.1491 33.1367 45.8643 33.0752 45.6045 32.9521C45.3447 32.8291 45.1374 32.624 44.9824 32.3369C44.832 32.0452 44.7568 31.6533 44.7568 31.1611V23.8057ZM50.2598 25.6035V33H48.9883V25.6035H50.2598ZM48.8926 23.6416C48.8926 23.4365 48.9541 23.2633 49.0771 23.1221C49.2048 22.9808 49.3916 22.9102 49.6377 22.9102C49.8792 22.9102 50.0638 22.9808 50.1914 23.1221C50.3236 23.2633 50.3896 23.4365 50.3896 23.6416C50.3896 23.8376 50.3236 24.0062 50.1914 24.1475C50.0638 24.2842 49.8792 24.3525 49.6377 24.3525C49.3916 24.3525 49.2048 24.2842 49.0771 24.1475C48.9541 24.0062 48.8926 23.8376 48.8926 23.6416ZM51.9551 29.3838V29.2266C51.9551 28.6934 52.0326 28.1989 52.1875 27.7432C52.3424 27.2829 52.5658 26.8841 52.8574 26.5469C53.1491 26.2051 53.5023 25.9408 53.917 25.7539C54.3317 25.5625 54.7965 25.4668 55.3115 25.4668C55.8311 25.4668 56.2982 25.5625 56.7129 25.7539C57.1322 25.9408 57.4876 26.2051 57.7793 26.5469C58.0755 26.8841 58.3011 27.2829 58.4561 27.7432C58.611 28.1989 58.6885 28.6934 58.6885 29.2266V29.3838C58.6885 29.917 58.611 30.4115 58.4561 30.8672C58.3011 31.3229 58.0755 31.7217 57.7793 32.0635C57.4876 32.4007 57.1344 32.665 56.7197 32.8564C56.3096 33.0433 55.8447 33.1367 55.3252 33.1367C54.8057 33.1367 54.3385 33.0433 53.9238 32.8564C53.5091 32.665 53.1536 32.4007 52.8574 32.0635C52.5658 31.7217 52.3424 31.3229 52.1875 30.8672C52.0326 30.4115 51.9551 29.917 51.9551 29.3838ZM53.2197 29.2266V29.3838C53.2197 29.7529 53.263 30.1016 53.3496 30.4297C53.4362 30.7533 53.5661 31.0404 53.7393 31.291C53.917 31.5417 54.138 31.7399 54.4023 31.8857C54.6667 32.027 54.9743 32.0977 55.3252 32.0977C55.6715 32.0977 55.9746 32.027 56.2344 31.8857C56.4987 31.7399 56.7174 31.5417 56.8906 31.291C57.0638 31.0404 57.1937 30.7533 57.2803 30.4297C57.3714 30.1016 57.417 29.7529 57.417 29.3838V29.2266C57.417 28.862 57.3714 28.5179 57.2803 28.1943C57.1937 27.8662 57.0615 27.5768 56.8838 27.3262C56.7106 27.071 56.4919 26.8704 56.2275 26.7246C55.9678 26.5788 55.6624 26.5059 55.3115 26.5059C54.9652 26.5059 54.6598 26.5788 54.3955 26.7246C54.1357 26.8704 53.917 27.071 53.7393 27.3262C53.5661 27.5768 53.4362 27.8662 53.3496 28.1943C53.263 28.5179 53.2197 28.862 53.2197 29.2266ZM61.5391 27.1826V33H60.2744V25.6035H61.4707L61.5391 27.1826ZM61.2383 29.0215L60.7119 29.001C60.7165 28.4951 60.7917 28.028 60.9375 27.5996C61.0833 27.1667 61.2884 26.7907 61.5527 26.4717C61.8171 26.1527 62.1315 25.9066 62.4961 25.7334C62.8652 25.5557 63.2731 25.4668 63.7197 25.4668C64.0843 25.4668 64.4124 25.5169 64.7041 25.6172C64.9958 25.7129 65.2441 25.8678 65.4492 26.082C65.6589 26.2962 65.8184 26.5742 65.9277 26.916C66.0371 27.2533 66.0918 27.6657 66.0918 28.1533V33H64.8203V28.1396C64.8203 27.7523 64.7633 27.4424 64.6494 27.21C64.5355 26.973 64.3691 26.8021 64.1504 26.6973C63.9316 26.5879 63.6628 26.5332 63.3438 26.5332C63.0293 26.5332 62.7422 26.5993 62.4824 26.7314C62.2272 26.8636 62.0062 27.0459 61.8193 27.2783C61.637 27.5107 61.4935 27.7773 61.3887 28.0781C61.2884 28.3743 61.2383 28.6888 61.2383 29.0215ZM72.374 31.7354V27.9277C72.374 27.6361 72.3148 27.3831 72.1963 27.1689C72.0824 26.9502 71.9092 26.7816 71.6768 26.6631C71.4443 26.5446 71.1572 26.4854 70.8154 26.4854C70.4964 26.4854 70.2161 26.54 69.9746 26.6494C69.7376 26.7588 69.5508 26.9023 69.4141 27.0801C69.2819 27.2578 69.2158 27.4492 69.2158 27.6543H67.9512C67.9512 27.39 68.0195 27.1279 68.1562 26.8682C68.293 26.6084 68.4889 26.3737 68.7441 26.1641C69.0039 25.9499 69.3138 25.7812 69.6738 25.6582C70.0384 25.5306 70.444 25.4668 70.8906 25.4668C71.4284 25.4668 71.9023 25.5579 72.3125 25.7402C72.7272 25.9225 73.0508 26.1982 73.2832 26.5674C73.5202 26.932 73.6387 27.39 73.6387 27.9414V31.3867C73.6387 31.6328 73.6592 31.8949 73.7002 32.1729C73.7458 32.4508 73.8118 32.6901 73.8984 32.8906V33H72.5791C72.5153 32.8542 72.4652 32.6605 72.4287 32.4189C72.3923 32.1729 72.374 31.945 72.374 31.7354ZM72.5928 28.5156L72.6064 29.4043H71.3281C70.9681 29.4043 70.6468 29.4339 70.3643 29.4932C70.0817 29.5479 69.8447 29.6322 69.6533 29.7461C69.4619 29.86 69.3161 30.0036 69.2158 30.1768C69.1156 30.3454 69.0654 30.5436 69.0654 30.7715C69.0654 31.0039 69.1178 31.2158 69.2227 31.4072C69.3275 31.5986 69.4847 31.7513 69.6943 31.8652C69.9085 31.9746 70.1706 32.0293 70.4805 32.0293C70.8678 32.0293 71.2096 31.9473 71.5059 31.7832C71.8021 31.6191 72.0368 31.4186 72.21 31.1816C72.3877 30.9447 72.4834 30.7145 72.4971 30.4912L73.0371 31.0996C73.0052 31.291 72.9186 31.5029 72.7773 31.7354C72.6361 31.9678 72.4469 32.1911 72.21 32.4053C71.9775 32.6149 71.6995 32.7904 71.376 32.9316C71.057 33.0684 70.6969 33.1367 70.2959 33.1367C69.7946 33.1367 69.3548 33.0387 68.9766 32.8428C68.6029 32.6468 68.3112 32.3848 68.1016 32.0566C67.8965 31.724 67.7939 31.3525 67.7939 30.9424C67.7939 30.5459 67.8714 30.1973 68.0264 29.8965C68.1813 29.5911 68.4046 29.3382 68.6963 29.1377C68.988 28.9326 69.3389 28.7777 69.749 28.6729C70.1592 28.568 70.6172 28.5156 71.123 28.5156H72.5928ZM77.002 22.5V33H75.7305V22.5H77.002ZM83.8789 25.6035V33H82.6074V25.6035H83.8789ZM82.5117 23.6416C82.5117 23.4365 82.5732 23.2633 82.6963 23.1221C82.8239 22.9808 83.0107 22.9102 83.2568 22.9102C83.4984 22.9102 83.6829 22.9808 83.8105 23.1221C83.9427 23.2633 84.0088 23.4365 84.0088 23.6416C84.0088 23.8376 83.9427 24.0062 83.8105 24.1475C83.6829 24.2842 83.4984 24.3525 83.2568 24.3525C83.0107 24.3525 82.8239 24.2842 82.6963 24.1475C82.5732 24.0062 82.5117 23.8376 82.5117 23.6416ZM87.1738 27.1826V33H85.9092V25.6035H87.1055L87.1738 27.1826ZM86.873 29.0215L86.3467 29.001C86.3512 28.4951 86.4264 28.028 86.5723 27.5996C86.7181 27.1667 86.9232 26.7907 87.1875 26.4717C87.4518 26.1527 87.7663 25.9066 88.1309 25.7334C88.5 25.5557 88.9079 25.4668 89.3545 25.4668C89.7191 25.4668 90.0472 25.5169 90.3389 25.6172C90.6305 25.7129 90.8789 25.8678 91.084 26.082C91.2936 26.2962 91.4531 26.5742 91.5625 26.916C91.6719 27.2533 91.7266 27.6657 91.7266 28.1533V33H90.4551V28.1396C90.4551 27.7523 90.3981 27.4424 90.2842 27.21C90.1702 26.973 90.0039 26.8021 89.7852 26.6973C89.5664 26.5879 89.2975 26.5332 88.9785 26.5332C88.6641 26.5332 88.377 26.5993 88.1172 26.7314C87.862 26.8636 87.641 27.0459 87.4541 27.2783C87.2718 27.5107 87.1283 27.7773 87.0234 28.0781C86.9232 28.3743 86.873 28.6888 86.873 29.0215ZM95.5342 33H94.2695V24.8242C94.2695 24.291 94.3652 23.8421 94.5566 23.4775C94.7526 23.1084 95.0329 22.8304 95.3975 22.6436C95.762 22.4521 96.195 22.3564 96.6963 22.3564C96.8421 22.3564 96.988 22.3656 97.1338 22.3838C97.2842 22.402 97.43 22.4294 97.5713 22.4658L97.5029 23.498C97.4072 23.4753 97.2979 23.4593 97.1748 23.4502C97.0563 23.4411 96.9378 23.4365 96.8193 23.4365C96.5505 23.4365 96.318 23.4912 96.1221 23.6006C95.9307 23.7054 95.7848 23.8604 95.6846 24.0654C95.5843 24.2705 95.5342 24.5234 95.5342 24.8242V33ZM97.1064 25.6035V26.5742H93.1006V25.6035H97.1064ZM98.1797 29.3838V29.2266C98.1797 28.6934 98.2572 28.1989 98.4121 27.7432C98.5671 27.2829 98.7904 26.8841 99.082 26.5469C99.3737 26.2051 99.7269 25.9408 100.142 25.7539C100.556 25.5625 101.021 25.4668 101.536 25.4668C102.056 25.4668 102.523 25.5625 102.938 25.7539C103.357 25.9408 103.712 26.2051 104.004 26.5469C104.3 26.8841 104.526 27.2829 104.681 27.7432C104.836 28.1989 104.913 28.6934 104.913 29.2266V29.3838C104.913 29.917 104.836 30.4115 104.681 30.8672C104.526 31.3229 104.3 31.7217 104.004 32.0635C103.712 32.4007 103.359 32.665 102.944 32.8564C102.534 33.0433 102.069 33.1367 101.55 33.1367C101.03 33.1367 100.563 33.0433 100.148 32.8564C99.7337 32.665 99.3783 32.4007 99.082 32.0635C98.7904 31.7217 98.5671 31.3229 98.4121 30.8672C98.2572 30.4115 98.1797 29.917 98.1797 29.3838ZM99.4443 29.2266V29.3838C99.4443 29.7529 99.4876 30.1016 99.5742 30.4297C99.6608 30.7533 99.7907 31.0404 99.9639 31.291C100.142 31.5417 100.363 31.7399 100.627 31.8857C100.891 32.027 101.199 32.0977 101.55 32.0977C101.896 32.0977 102.199 32.027 102.459 31.8857C102.723 31.7399 102.942 31.5417 103.115 31.291C103.288 31.0404 103.418 30.7533 103.505 30.4297C103.596 30.1016 103.642 29.7529 103.642 29.3838V29.2266C103.642 28.862 103.596 28.5179 103.505 28.1943C103.418 27.8662 103.286 27.5768 103.108 27.3262C102.935 27.071 102.716 26.8704 102.452 26.7246C102.192 26.5788 101.887 26.5059 101.536 26.5059C101.19 26.5059 100.884 26.5788 100.62 26.7246C100.36 26.8704 100.142 27.071 99.9639 27.3262C99.7907 27.5768 99.6608 27.8662 99.5742 28.1943C99.4876 28.5179 99.4443 28.862 99.4443 29.2266ZM107.764 26.7656V33H106.499V25.6035H107.729L107.764 26.7656ZM110.074 25.5625L110.067 26.7383C109.963 26.7155 109.862 26.7018 109.767 26.6973C109.675 26.6882 109.571 26.6836 109.452 26.6836C109.16 26.6836 108.903 26.7292 108.68 26.8203C108.456 26.9115 108.267 27.0391 108.112 27.2031C107.957 27.3672 107.834 27.5632 107.743 27.791C107.657 28.0143 107.6 28.2604 107.572 28.5293L107.217 28.7344C107.217 28.2878 107.26 27.8685 107.347 27.4766C107.438 27.0846 107.577 26.7383 107.764 26.4375C107.951 26.1322 108.188 25.8952 108.475 25.7266C108.766 25.5534 109.113 25.4668 109.514 25.4668C109.605 25.4668 109.71 25.4782 109.828 25.501C109.947 25.5192 110.029 25.5397 110.074 25.5625ZM112.501 27.0732V33H111.229V25.6035H112.433L112.501 27.0732ZM112.241 29.0215L111.653 29.001C111.658 28.4951 111.724 28.028 111.852 27.5996C111.979 27.1667 112.168 26.7907 112.419 26.4717C112.67 26.1527 112.982 25.9066 113.355 25.7334C113.729 25.5557 114.162 25.4668 114.654 25.4668C115.001 25.4668 115.32 25.5169 115.611 25.6172C115.903 25.7129 116.156 25.8656 116.37 26.0752C116.584 26.2848 116.751 26.5537 116.869 26.8818C116.988 27.21 117.047 27.6064 117.047 28.0713V33H115.782V28.1328C115.782 27.7454 115.716 27.4355 115.584 27.2031C115.456 26.9707 115.274 26.8021 115.037 26.6973C114.8 26.5879 114.522 26.5332 114.203 26.5332C113.829 26.5332 113.517 26.5993 113.267 26.7314C113.016 26.8636 112.815 27.0459 112.665 27.2783C112.515 27.5107 112.405 27.7773 112.337 28.0781C112.273 28.3743 112.241 28.6888 112.241 29.0215ZM117.033 28.3242L116.186 28.584C116.19 28.1784 116.256 27.7887 116.384 27.415C116.516 27.0413 116.705 26.7087 116.951 26.417C117.202 26.1253 117.509 25.8952 117.874 25.7266C118.239 25.5534 118.656 25.4668 119.125 25.4668C119.521 25.4668 119.872 25.5192 120.178 25.624C120.488 25.7288 120.747 25.8906 120.957 26.1094C121.171 26.3236 121.333 26.5993 121.442 26.9365C121.552 27.2738 121.606 27.6748 121.606 28.1396V33H120.335V28.126C120.335 27.7113 120.269 27.39 120.137 27.1621C120.009 26.9297 119.827 26.7679 119.59 26.6768C119.357 26.5811 119.079 26.5332 118.756 26.5332C118.478 26.5332 118.232 26.5811 118.018 26.6768C117.803 26.7725 117.623 26.9046 117.478 27.0732C117.332 27.2373 117.22 27.4264 117.143 27.6406C117.07 27.8548 117.033 28.0827 117.033 28.3242ZM127.882 31.7354V27.9277C127.882 27.6361 127.823 27.3831 127.704 27.1689C127.59 26.9502 127.417 26.7816 127.185 26.6631C126.952 26.5446 126.665 26.4854 126.323 26.4854C126.004 26.4854 125.724 26.54 125.482 26.6494C125.245 26.7588 125.059 26.9023 124.922 27.0801C124.79 27.2578 124.724 27.4492 124.724 27.6543H123.459C123.459 27.39 123.527 27.1279 123.664 26.8682C123.801 26.6084 123.997 26.3737 124.252 26.1641C124.512 25.9499 124.822 25.7812 125.182 25.6582C125.546 25.5306 125.952 25.4668 126.398 25.4668C126.936 25.4668 127.41 25.5579 127.82 25.7402C128.235 25.9225 128.559 26.1982 128.791 26.5674C129.028 26.932 129.146 27.39 129.146 27.9414V31.3867C129.146 31.6328 129.167 31.8949 129.208 32.1729C129.254 32.4508 129.32 32.6901 129.406 32.8906V33H128.087C128.023 32.8542 127.973 32.6605 127.937 32.4189C127.9 32.1729 127.882 31.945 127.882 31.7354ZM128.101 28.5156L128.114 29.4043H126.836C126.476 29.4043 126.155 29.4339 125.872 29.4932C125.59 29.5479 125.353 29.6322 125.161 29.7461C124.97 29.86 124.824 30.0036 124.724 30.1768C124.623 30.3454 124.573 30.5436 124.573 30.7715C124.573 31.0039 124.626 31.2158 124.73 31.4072C124.835 31.5986 124.993 31.7513 125.202 31.8652C125.416 31.9746 125.678 32.0293 125.988 32.0293C126.376 32.0293 126.717 31.9473 127.014 31.7832C127.31 31.6191 127.545 31.4186 127.718 31.1816C127.896 30.9447 127.991 30.7145 128.005 30.4912L128.545 31.0996C128.513 31.291 128.426 31.5029 128.285 31.7354C128.144 31.9678 127.955 32.1911 127.718 32.4053C127.485 32.6149 127.207 32.7904 126.884 32.9316C126.565 33.0684 126.205 33.1367 125.804 33.1367C125.302 33.1367 124.863 33.0387 124.484 32.8428C124.111 32.6468 123.819 32.3848 123.609 32.0566C123.404 31.724 123.302 31.3525 123.302 30.9424C123.302 30.5459 123.379 30.1973 123.534 29.8965C123.689 29.5911 123.912 29.3382 124.204 29.1377C124.496 28.9326 124.847 28.7777 125.257 28.6729C125.667 28.568 126.125 28.5156 126.631 28.5156H128.101ZM134.232 25.6035V26.5742H130.233V25.6035H134.232ZM131.587 23.8057H132.852V31.168C132.852 31.4186 132.89 31.6077 132.968 31.7354C133.045 31.863 133.146 31.9473 133.269 31.9883C133.392 32.0293 133.524 32.0498 133.665 32.0498C133.77 32.0498 133.879 32.0407 133.993 32.0225C134.112 31.9997 134.201 31.9814 134.26 31.9678L134.267 33C134.166 33.0319 134.034 33.0615 133.87 33.0889C133.711 33.1208 133.517 33.1367 133.289 33.1367C132.979 33.1367 132.694 33.0752 132.435 32.9521C132.175 32.8291 131.967 32.624 131.812 32.3369C131.662 32.0452 131.587 31.6533 131.587 31.1611V23.8057ZM137.09 25.6035V33H135.818V25.6035H137.09ZM135.723 23.6416C135.723 23.4365 135.784 23.2633 135.907 23.1221C136.035 22.9808 136.222 22.9102 136.468 22.9102C136.709 22.9102 136.894 22.9808 137.021 23.1221C137.154 23.2633 137.22 23.4365 137.22 23.6416C137.22 23.8376 137.154 24.0062 137.021 24.1475C136.894 24.2842 136.709 24.3525 136.468 24.3525C136.222 24.3525 136.035 24.2842 135.907 24.1475C135.784 24.0062 135.723 23.8376 135.723 23.6416ZM138.785 29.3838V29.2266C138.785 28.6934 138.863 28.1989 139.018 27.7432C139.173 27.2829 139.396 26.8841 139.688 26.5469C139.979 26.2051 140.332 25.9408 140.747 25.7539C141.162 25.5625 141.627 25.4668 142.142 25.4668C142.661 25.4668 143.128 25.5625 143.543 25.7539C143.962 25.9408 144.318 26.2051 144.609 26.5469C144.906 26.8841 145.131 27.2829 145.286 27.7432C145.441 28.1989 145.519 28.6934 145.519 29.2266V29.3838C145.519 29.917 145.441 30.4115 145.286 30.8672C145.131 31.3229 144.906 31.7217 144.609 32.0635C144.318 32.4007 143.965 32.665 143.55 32.8564C143.14 33.0433 142.675 33.1367 142.155 33.1367C141.636 33.1367 141.169 33.0433 140.754 32.8564C140.339 32.665 139.984 32.4007 139.688 32.0635C139.396 31.7217 139.173 31.3229 139.018 30.8672C138.863 30.4115 138.785 29.917 138.785 29.3838ZM140.05 29.2266V29.3838C140.05 29.7529 140.093 30.1016 140.18 30.4297C140.266 30.7533 140.396 31.0404 140.569 31.291C140.747 31.5417 140.968 31.7399 141.232 31.8857C141.497 32.027 141.804 32.0977 142.155 32.0977C142.502 32.0977 142.805 32.027 143.064 31.8857C143.329 31.7399 143.548 31.5417 143.721 31.291C143.894 31.0404 144.024 30.7533 144.11 30.4297C144.201 30.1016 144.247 29.7529 144.247 29.3838V29.2266C144.247 28.862 144.201 28.5179 144.11 28.1943C144.024 27.8662 143.892 27.5768 143.714 27.3262C143.541 27.071 143.322 26.8704 143.058 26.7246C142.798 26.5788 142.493 26.5059 142.142 26.5059C141.795 26.5059 141.49 26.5788 141.226 26.7246C140.966 26.8704 140.747 27.071 140.569 27.3262C140.396 27.5768 140.266 27.8662 140.18 28.1943C140.093 28.5179 140.05 28.862 140.05 29.2266ZM148.369 27.1826V33H147.104V25.6035H148.301L148.369 27.1826ZM148.068 29.0215L147.542 29.001C147.547 28.4951 147.622 28.028 147.768 27.5996C147.913 27.1667 148.118 26.7907 148.383 26.4717C148.647 26.1527 148.962 25.9066 149.326 25.7334C149.695 25.5557 150.103 25.4668 150.55 25.4668C150.914 25.4668 151.243 25.5169 151.534 25.6172C151.826 25.7129 152.074 25.8678 152.279 26.082C152.489 26.2962 152.648 26.5742 152.758 26.916C152.867 27.2533 152.922 27.6657 152.922 28.1533V33H151.65V28.1396C151.65 27.7523 151.593 27.4424 151.479 27.21C151.366 26.973 151.199 26.8021 150.98 26.6973C150.762 26.5879 150.493 26.5332 150.174 26.5332C149.859 26.5332 149.572 26.5993 149.312 26.7314C149.057 26.8636 148.836 27.0459 148.649 27.2783C148.467 27.5107 148.324 27.7773 148.219 28.0781C148.118 28.3743 148.068 28.6888 148.068 29.0215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"42",width:"266",height:"81",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M29.4814 59.3755H27.0122V58.3789H29.4814C29.9596 58.3789 30.3468 58.3027 30.6431 58.1504C30.9393 57.998 31.1551 57.7865 31.2905 57.5156C31.4302 57.2448 31.5 56.9359 31.5 56.5889C31.5 56.2715 31.4302 55.9731 31.2905 55.6938C31.1551 55.4146 30.9393 55.1903 30.6431 55.021C30.3468 54.8475 29.9596 54.7607 29.4814 54.7607H27.2979V63H26.0728V53.7578H29.4814C30.1797 53.7578 30.77 53.8784 31.2524 54.1196C31.7349 54.3608 32.1009 54.6951 32.3506 55.1226C32.6003 55.5457 32.7251 56.0303 32.7251 56.5762C32.7251 57.1686 32.6003 57.6743 32.3506 58.0933C32.1009 58.5122 31.7349 58.8317 31.2524 59.0518C30.77 59.2676 30.1797 59.3755 29.4814 59.3755ZM35.3721 56.1318V63H34.1914V56.1318H35.3721ZM34.1025 54.3101C34.1025 54.1196 34.1597 53.9588 34.2739 53.8276C34.3924 53.6965 34.5659 53.6309 34.7944 53.6309C35.0187 53.6309 35.1901 53.6965 35.3086 53.8276C35.4313 53.9588 35.4927 54.1196 35.4927 54.3101C35.4927 54.492 35.4313 54.6486 35.3086 54.7798C35.1901 54.9067 35.0187 54.9702 34.7944 54.9702C34.5659 54.9702 34.3924 54.9067 34.2739 54.7798C34.1597 54.6486 34.1025 54.492 34.1025 54.3101ZM40.0059 62.1621C40.2852 62.1621 40.5433 62.105 40.7803 61.9907C41.0173 61.8765 41.2119 61.7199 41.3643 61.521C41.5166 61.3179 41.6034 61.0872 41.6245 60.8291H42.7417C42.7205 61.2354 42.583 61.6141 42.3291 61.9653C42.0794 62.3123 41.7515 62.5938 41.3452 62.8096C40.939 63.0212 40.4925 63.127 40.0059 63.127C39.4896 63.127 39.0389 63.036 38.6538 62.854C38.2729 62.672 37.9556 62.4224 37.7017 62.105C37.452 61.7876 37.2637 61.4237 37.1367 61.0132C37.014 60.5985 36.9526 60.1605 36.9526 59.6992V59.4326C36.9526 58.9714 37.014 58.5355 37.1367 58.125C37.2637 57.7103 37.452 57.3442 37.7017 57.0269C37.9556 56.7095 38.2729 56.4598 38.6538 56.2778C39.0389 56.0959 39.4896 56.0049 40.0059 56.0049C40.5433 56.0049 41.013 56.1149 41.415 56.335C41.8171 56.5508 42.1323 56.847 42.3608 57.2236C42.5936 57.596 42.7205 58.0192 42.7417 58.4932H41.6245C41.6034 58.2096 41.5229 57.9536 41.3833 57.7251C41.2479 57.4966 41.0617 57.3146 40.8247 57.1792C40.592 57.0396 40.319 56.9697 40.0059 56.9697C39.6462 56.9697 39.3436 57.0417 39.0981 57.1855C38.8569 57.3252 38.6644 57.5156 38.5205 57.7568C38.3809 57.9938 38.2793 58.2583 38.2158 58.5503C38.1566 58.8381 38.127 59.1322 38.127 59.4326V59.6992C38.127 59.9997 38.1566 60.2959 38.2158 60.5879C38.2751 60.8799 38.3745 61.1444 38.5142 61.3813C38.658 61.6183 38.8506 61.8088 39.0918 61.9526C39.3372 62.0923 39.6419 62.1621 40.0059 62.1621ZM45.2427 53.25V63H44.062V53.25H45.2427ZM49.4385 56.1318L46.4424 59.3374L44.7666 61.0767L44.6714 59.8262L45.8711 58.3916L48.0039 56.1318H49.4385ZM48.3657 63L45.9155 59.7246L46.5249 58.6772L49.7495 63H48.3657ZM55.0435 57.4966V63H53.8628V56.1318H54.98L55.0435 57.4966ZM54.8022 59.3057L54.2563 59.2866C54.2606 58.8169 54.3219 58.3831 54.4404 57.9854C54.5589 57.5833 54.7345 57.2342 54.9673 56.938C55.2 56.6418 55.4899 56.4132 55.8369 56.2524C56.1839 56.0874 56.5859 56.0049 57.043 56.0049C57.3646 56.0049 57.6608 56.0514 57.9316 56.1445C58.2025 56.2334 58.4373 56.3752 58.6362 56.5698C58.8351 56.7645 58.9896 57.0142 59.0996 57.3188C59.2096 57.6235 59.2646 57.9917 59.2646 58.4233V63H58.0903V58.4805C58.0903 58.1208 58.029 57.833 57.9062 57.6172C57.7878 57.4014 57.6185 57.2448 57.3984 57.1475C57.1784 57.0459 56.9202 56.9951 56.624 56.9951C56.277 56.9951 55.9871 57.0565 55.7544 57.1792C55.5216 57.3019 55.3354 57.4712 55.1958 57.687C55.0562 57.9028 54.9546 58.1504 54.8911 58.4297C54.8319 58.7048 54.8022 58.9967 54.8022 59.3057ZM59.252 58.6582L58.4648 58.8994C58.4691 58.5228 58.5304 58.161 58.6489 57.814C58.7716 57.467 58.9473 57.158 59.1758 56.8872C59.4085 56.6164 59.6942 56.4027 60.0327 56.2461C60.3713 56.0853 60.7585 56.0049 61.1943 56.0049C61.5625 56.0049 61.8883 56.0535 62.1719 56.1509C62.4596 56.2482 62.7008 56.3984 62.8955 56.6016C63.0944 56.8005 63.2446 57.0565 63.3462 57.3696C63.4478 57.6828 63.4985 58.0552 63.4985 58.4868V63H62.3179V58.4741C62.3179 58.089 62.2565 57.7907 62.1338 57.5791C62.0153 57.3633 61.846 57.2131 61.626 57.1284C61.4102 57.0396 61.152 56.9951 60.8516 56.9951C60.5934 56.9951 60.3649 57.0396 60.166 57.1284C59.9671 57.2173 59.8 57.34 59.6646 57.4966C59.5291 57.6489 59.4255 57.8245 59.3535 58.0234C59.2858 58.2223 59.252 58.4339 59.252 58.6582ZM68.126 63.127C67.6478 63.127 67.214 63.0465 66.8247 62.8857C66.4396 62.7207 66.1074 62.4901 65.8281 62.1938C65.5531 61.8976 65.3415 61.5464 65.1934 61.1401C65.0452 60.7339 64.9712 60.2896 64.9712 59.8071V59.5405C64.9712 58.9819 65.0537 58.4847 65.2188 58.0488C65.3838 57.6087 65.6081 57.2363 65.8916 56.9316C66.1751 56.627 66.4967 56.3963 66.8564 56.2397C67.2161 56.0832 67.5885 56.0049 67.9736 56.0049C68.4645 56.0049 68.8877 56.0895 69.2432 56.2588C69.6029 56.4281 69.897 56.665 70.1255 56.9697C70.354 57.2702 70.5233 57.6257 70.6333 58.0361C70.7433 58.4424 70.7983 58.8867 70.7983 59.3691V59.896H65.6694V58.9375H69.624V58.8486C69.6071 58.5439 69.5436 58.2477 69.4336 57.96C69.3278 57.6722 69.1585 57.4352 68.9258 57.249C68.693 57.0628 68.3757 56.9697 67.9736 56.9697C67.707 56.9697 67.4616 57.0269 67.2373 57.1411C67.013 57.2511 66.8205 57.4162 66.6597 57.6362C66.4989 57.8563 66.374 58.125 66.2852 58.4424C66.1963 58.7598 66.1519 59.1258 66.1519 59.5405V59.8071C66.1519 60.133 66.1963 60.4398 66.2852 60.7275C66.3783 61.0111 66.5116 61.2607 66.6851 61.4766C66.8628 61.6924 67.0765 61.8617 67.3262 61.9844C67.5801 62.1071 67.8678 62.1685 68.1895 62.1685C68.6042 62.1685 68.9554 62.0838 69.2432 61.9146C69.5309 61.7453 69.7827 61.5189 69.9985 61.2354L70.7095 61.8003C70.5614 62.0246 70.373 62.2383 70.1445 62.4414C69.916 62.6445 69.6346 62.8096 69.3003 62.9365C68.9702 63.0635 68.5788 63.127 68.126 63.127ZM79.5962 61.4131V56.1318H80.7769V63H79.6533L79.5962 61.4131ZM79.8184 59.9658L80.3071 59.9531C80.3071 60.4102 80.2585 60.8333 80.1611 61.2227C80.068 61.6077 79.9157 61.9421 79.7041 62.2256C79.4925 62.5091 79.2153 62.7313 78.8726 62.8921C78.5298 63.0487 78.113 63.127 77.6221 63.127C77.2878 63.127 76.981 63.0783 76.7017 62.981C76.4266 62.8836 76.1896 62.7334 75.9907 62.5303C75.7918 62.3271 75.6374 62.0627 75.5273 61.7368C75.4215 61.411 75.3687 61.0195 75.3687 60.5625V56.1318H76.543V60.5752C76.543 60.8841 76.5768 61.1401 76.6445 61.3433C76.7165 61.5422 76.8117 61.7008 76.9302 61.8193C77.0529 61.9336 77.1883 62.014 77.3364 62.0605C77.4888 62.1071 77.6453 62.1304 77.8062 62.1304C78.3055 62.1304 78.7012 62.0352 78.9932 61.8447C79.2852 61.6501 79.4946 61.3898 79.6216 61.064C79.7528 60.7339 79.8184 60.3678 79.8184 59.9658ZM83.7412 57.4521V65.6406H82.5605V56.1318H83.6396L83.7412 57.4521ZM88.3687 59.5088V59.6421C88.3687 60.1414 88.3094 60.6048 88.1909 61.0322C88.0724 61.4554 87.8989 61.8236 87.6704 62.1367C87.4461 62.4499 87.1689 62.6932 86.8389 62.8667C86.5088 63.0402 86.13 63.127 85.7026 63.127C85.2668 63.127 84.8817 63.055 84.5474 62.9111C84.2131 62.7673 83.9295 62.5578 83.6968 62.2827C83.464 62.0076 83.2778 61.6776 83.1382 61.2925C83.0028 60.9074 82.9097 60.4736 82.8589 59.9912V59.2803C82.9097 58.7725 83.0049 58.3175 83.1445 57.9155C83.2842 57.5135 83.4683 57.1707 83.6968 56.8872C83.9295 56.5994 84.2109 56.3815 84.541 56.2334C84.8711 56.0811 85.252 56.0049 85.6836 56.0049C86.1152 56.0049 86.4982 56.0895 86.8325 56.2588C87.1668 56.4238 87.4482 56.6608 87.6768 56.9697C87.9053 57.2786 88.0767 57.6489 88.1909 58.0806C88.3094 58.508 88.3687 58.984 88.3687 59.5088ZM87.188 59.6421V59.5088C87.188 59.166 87.152 58.8444 87.0801 58.5439C87.0081 58.2393 86.896 57.9727 86.7437 57.7441C86.5955 57.5114 86.4051 57.3294 86.1724 57.1982C85.9396 57.0628 85.6624 56.9951 85.3408 56.9951C85.0446 56.9951 84.7865 57.0459 84.5664 57.1475C84.3506 57.249 84.1665 57.3866 84.0142 57.5601C83.8618 57.7293 83.737 57.924 83.6396 58.144C83.5465 58.3599 83.4767 58.5841 83.4302 58.8169V60.4609C83.5148 60.7572 83.6333 61.0365 83.7856 61.2988C83.938 61.557 84.1411 61.7664 84.395 61.9272C84.6489 62.0838 84.9684 62.1621 85.3535 62.1621C85.6709 62.1621 85.9438 62.0965 86.1724 61.9653C86.4051 61.8299 86.5955 61.6458 86.7437 61.4131C86.896 61.1803 87.0081 60.9137 87.0801 60.6133C87.152 60.3086 87.188 59.9849 87.188 59.6421ZM97.1411 61.8257V58.29C97.1411 58.0192 97.0861 57.7843 96.9761 57.5854C96.8703 57.3823 96.7095 57.2257 96.4937 57.1157C96.2778 57.0057 96.0112 56.9507 95.6938 56.9507C95.3976 56.9507 95.1374 57.0015 94.9131 57.103C94.693 57.2046 94.5195 57.3379 94.3926 57.5029C94.2699 57.668 94.2085 57.8457 94.2085 58.0361H93.0342C93.0342 57.7907 93.0977 57.5474 93.2246 57.3062C93.3516 57.0649 93.5335 56.847 93.7705 56.6523C94.0117 56.4535 94.2995 56.2969 94.6338 56.1826C94.9723 56.0641 95.349 56.0049 95.7637 56.0049C96.263 56.0049 96.7031 56.0895 97.084 56.2588C97.4691 56.4281 97.7695 56.6841 97.9854 57.0269C98.2054 57.3654 98.3154 57.7907 98.3154 58.3027V61.502C98.3154 61.7305 98.3345 61.9738 98.3726 62.2319C98.4149 62.4901 98.4762 62.7122 98.5566 62.8984V63H97.3315C97.2723 62.8646 97.2257 62.6847 97.1919 62.4604C97.158 62.2319 97.1411 62.0203 97.1411 61.8257ZM97.3442 58.8359L97.3569 59.6611H96.1699C95.8356 59.6611 95.5373 59.6886 95.2749 59.7437C95.0125 59.7944 94.7925 59.8727 94.6147 59.9785C94.437 60.0843 94.3016 60.2176 94.2085 60.3784C94.1154 60.535 94.0688 60.7191 94.0688 60.9307C94.0688 61.1465 94.1175 61.3433 94.2148 61.521C94.3122 61.6987 94.4582 61.8405 94.6528 61.9463C94.8517 62.0479 95.0951 62.0986 95.3828 62.0986C95.7425 62.0986 96.0599 62.0225 96.335 61.8701C96.61 61.7178 96.828 61.5316 96.9888 61.3115C97.1538 61.0915 97.2427 60.8778 97.2554 60.6704L97.7568 61.2354C97.7272 61.4131 97.6468 61.6099 97.5156 61.8257C97.3844 62.0415 97.2088 62.2489 96.9888 62.4478C96.7729 62.6424 96.5148 62.8053 96.2144 62.9365C95.9181 63.0635 95.5838 63.127 95.2114 63.127C94.7459 63.127 94.3376 63.036 93.9863 62.854C93.6393 62.672 93.3685 62.4287 93.1738 62.124C92.9834 61.8151 92.8882 61.4702 92.8882 61.0894C92.8882 60.7212 92.9601 60.3975 93.104 60.1182C93.2479 59.8346 93.4552 59.5998 93.7261 59.4136C93.9969 59.2231 94.3228 59.0793 94.7036 58.9819C95.0845 58.8846 95.5098 58.8359 95.9795 58.8359H97.3442ZM103.038 56.1318V57.0332H99.3247V56.1318H103.038ZM100.582 54.4624H101.756V61.2988C101.756 61.5316 101.792 61.7072 101.864 61.8257C101.936 61.9442 102.029 62.0225 102.143 62.0605C102.257 62.0986 102.38 62.1177 102.511 62.1177C102.609 62.1177 102.71 62.1092 102.816 62.0923C102.926 62.0711 103.008 62.0542 103.063 62.0415L103.07 63C102.977 63.0296 102.854 63.0571 102.702 63.0825C102.554 63.1121 102.374 63.127 102.162 63.127C101.874 63.127 101.61 63.0698 101.369 62.9556C101.127 62.8413 100.935 62.6509 100.791 62.3843C100.651 62.1134 100.582 61.7495 100.582 61.2925V54.4624ZM110.516 56.1318V57.0332H106.802V56.1318H110.516ZM108.059 54.4624H109.233V61.2988C109.233 61.5316 109.269 61.7072 109.341 61.8257C109.413 61.9442 109.506 62.0225 109.621 62.0605C109.735 62.0986 109.858 62.1177 109.989 62.1177C110.086 62.1177 110.188 62.1092 110.293 62.0923C110.403 62.0711 110.486 62.0542 110.541 62.0415L110.547 63C110.454 63.0296 110.332 63.0571 110.179 63.0825C110.031 63.1121 109.851 63.127 109.64 63.127C109.352 63.127 109.087 63.0698 108.846 62.9556C108.605 62.8413 108.412 62.6509 108.269 62.3843C108.129 62.1134 108.059 61.7495 108.059 61.2925V54.4624ZM113.067 53.25V63H111.893V53.25H113.067ZM112.788 59.3057L112.299 59.2866C112.304 58.8169 112.373 58.3831 112.509 57.9854C112.644 57.5833 112.835 57.2342 113.08 56.938C113.326 56.6418 113.618 56.4132 113.956 56.2524C114.299 56.0874 114.678 56.0049 115.092 56.0049C115.431 56.0049 115.736 56.0514 116.006 56.1445C116.277 56.2334 116.508 56.3773 116.698 56.5762C116.893 56.7751 117.041 57.0332 117.143 57.3506C117.244 57.6637 117.295 58.0467 117.295 58.4995V63H116.114V58.4868C116.114 58.1271 116.061 57.8394 115.956 57.6235C115.85 57.4035 115.695 57.2448 115.492 57.1475C115.289 57.0459 115.039 56.9951 114.743 56.9951C114.451 56.9951 114.185 57.0565 113.943 57.1792C113.706 57.3019 113.501 57.4712 113.328 57.687C113.158 57.9028 113.025 58.1504 112.928 58.4297C112.835 58.7048 112.788 58.9967 112.788 59.3057ZM121.903 63.127C121.425 63.127 120.991 63.0465 120.602 62.8857C120.217 62.7207 119.885 62.4901 119.605 62.1938C119.33 61.8976 119.119 61.5464 118.971 61.1401C118.823 60.7339 118.749 60.2896 118.749 59.8071V59.5405C118.749 58.9819 118.831 58.4847 118.996 58.0488C119.161 57.6087 119.385 57.2363 119.669 56.9316C119.952 56.627 120.274 56.3963 120.634 56.2397C120.993 56.0832 121.366 56.0049 121.751 56.0049C122.242 56.0049 122.665 56.0895 123.021 56.2588C123.38 56.4281 123.674 56.665 123.903 56.9697C124.131 57.2702 124.301 57.6257 124.411 58.0361C124.521 58.4424 124.576 58.8867 124.576 59.3691V59.896H119.447V58.9375H123.401V58.8486C123.384 58.5439 123.321 58.2477 123.211 57.96C123.105 57.6722 122.936 57.4352 122.703 57.249C122.47 57.0628 122.153 56.9697 121.751 56.9697C121.484 56.9697 121.239 57.0269 121.015 57.1411C120.79 57.2511 120.598 57.4162 120.437 57.6362C120.276 57.8563 120.151 58.125 120.062 58.4424C119.974 58.7598 119.929 59.1258 119.929 59.5405V59.8071C119.929 60.133 119.974 60.4398 120.062 60.7275C120.156 61.0111 120.289 61.2607 120.462 61.4766C120.64 61.6924 120.854 61.8617 121.104 61.9844C121.357 62.1071 121.645 62.1685 121.967 62.1685C122.382 62.1685 122.733 62.0838 123.021 61.9146C123.308 61.7453 123.56 61.5189 123.776 61.2354L124.487 61.8003C124.339 62.0246 124.15 62.2383 123.922 62.4414C123.693 62.6445 123.412 62.8096 123.078 62.9365C122.748 63.0635 122.356 63.127 121.903 63.127ZM133.221 61.8257V58.29C133.221 58.0192 133.166 57.7843 133.056 57.5854C132.95 57.3823 132.79 57.2257 132.574 57.1157C132.358 57.0057 132.091 56.9507 131.774 56.9507C131.478 56.9507 131.217 57.0015 130.993 57.103C130.773 57.2046 130.6 57.3379 130.473 57.5029C130.35 57.668 130.289 57.8457 130.289 58.0361H129.114C129.114 57.7907 129.178 57.5474 129.305 57.3062C129.432 57.0649 129.614 56.847 129.851 56.6523C130.092 56.4535 130.38 56.2969 130.714 56.1826C131.052 56.0641 131.429 56.0049 131.844 56.0049C132.343 56.0049 132.783 56.0895 133.164 56.2588C133.549 56.4281 133.85 56.6841 134.065 57.0269C134.285 57.3654 134.396 57.7907 134.396 58.3027V61.502C134.396 61.7305 134.415 61.9738 134.453 62.2319C134.495 62.4901 134.556 62.7122 134.637 62.8984V63H133.412C133.352 62.8646 133.306 62.6847 133.272 62.4604C133.238 62.2319 133.221 62.0203 133.221 61.8257ZM133.424 58.8359L133.437 59.6611H132.25C131.916 59.6611 131.617 59.6886 131.355 59.7437C131.093 59.7944 130.873 59.8727 130.695 59.9785C130.517 60.0843 130.382 60.2176 130.289 60.3784C130.195 60.535 130.149 60.7191 130.149 60.9307C130.149 61.1465 130.198 61.3433 130.295 61.521C130.392 61.6987 130.538 61.8405 130.733 61.9463C130.932 62.0479 131.175 62.0986 131.463 62.0986C131.823 62.0986 132.14 62.0225 132.415 61.8701C132.69 61.7178 132.908 61.5316 133.069 61.3115C133.234 61.0915 133.323 60.8778 133.335 60.6704L133.837 61.2354C133.807 61.4131 133.727 61.6099 133.596 61.8257C133.465 62.0415 133.289 62.2489 133.069 62.4478C132.853 62.6424 132.595 62.8053 132.294 62.9365C131.998 63.0635 131.664 63.127 131.292 63.127C130.826 63.127 130.418 63.036 130.066 62.854C129.719 62.672 129.449 62.4287 129.254 62.124C129.063 61.8151 128.968 61.4702 128.968 61.0894C128.968 60.7212 129.04 60.3975 129.184 60.1182C129.328 59.8346 129.535 59.5998 129.806 59.4136C130.077 59.2231 130.403 59.0793 130.784 58.9819C131.165 58.8846 131.59 58.8359 132.06 58.8359H133.424ZM137.519 56.1318V63H136.338V56.1318H137.519ZM136.249 54.3101C136.249 54.1196 136.306 53.9588 136.42 53.8276C136.539 53.6965 136.712 53.6309 136.941 53.6309C137.165 53.6309 137.337 53.6965 137.455 53.8276C137.578 53.9588 137.639 54.1196 137.639 54.3101C137.639 54.492 137.578 54.6486 137.455 54.7798C137.337 54.9067 137.165 54.9702 136.941 54.9702C136.712 54.9702 136.539 54.9067 136.42 54.7798C136.306 54.6486 136.249 54.492 136.249 54.3101ZM140.578 57.2109V63H139.404V56.1318H140.546L140.578 57.2109ZM142.724 56.0938L142.717 57.1855C142.62 57.1644 142.527 57.1517 142.438 57.1475C142.353 57.139 142.256 57.1348 142.146 57.1348C141.875 57.1348 141.636 57.1771 141.429 57.2617C141.221 57.3464 141.046 57.4648 140.902 57.6172C140.758 57.7695 140.644 57.9515 140.559 58.1631C140.479 58.3704 140.426 58.599 140.4 58.8486L140.07 59.0391C140.07 58.6243 140.111 58.235 140.191 57.8711C140.276 57.5072 140.405 57.1855 140.578 56.9062C140.752 56.6227 140.972 56.4027 141.238 56.2461C141.509 56.0853 141.831 56.0049 142.203 56.0049C142.288 56.0049 142.385 56.0155 142.495 56.0366C142.605 56.0535 142.681 56.0726 142.724 56.0938ZM144.983 57.4521V65.6406H143.803V56.1318H144.882L144.983 57.4521ZM149.611 59.5088V59.6421C149.611 60.1414 149.552 60.6048 149.433 61.0322C149.315 61.4554 149.141 61.8236 148.913 62.1367C148.688 62.4499 148.411 62.6932 148.081 62.8667C147.751 63.0402 147.372 63.127 146.945 63.127C146.509 63.127 146.124 63.055 145.79 62.9111C145.455 62.7673 145.172 62.5578 144.939 62.2827C144.706 62.0076 144.52 61.6776 144.38 61.2925C144.245 60.9074 144.152 60.4736 144.101 59.9912V59.2803C144.152 58.7725 144.247 58.3175 144.387 57.9155C144.526 57.5135 144.71 57.1707 144.939 56.8872C145.172 56.5994 145.453 56.3815 145.783 56.2334C146.113 56.0811 146.494 56.0049 146.926 56.0049C147.357 56.0049 147.74 56.0895 148.075 56.2588C148.409 56.4238 148.69 56.6608 148.919 56.9697C149.147 57.2786 149.319 57.6489 149.433 58.0806C149.552 58.508 149.611 58.984 149.611 59.5088ZM148.43 59.6421V59.5088C148.43 59.166 148.394 58.8444 148.322 58.5439C148.25 58.2393 148.138 57.9727 147.986 57.7441C147.838 57.5114 147.647 57.3294 147.415 57.1982C147.182 57.0628 146.905 56.9951 146.583 56.9951C146.287 56.9951 146.029 57.0459 145.809 57.1475C145.593 57.249 145.409 57.3866 145.256 57.5601C145.104 57.7293 144.979 57.924 144.882 58.144C144.789 58.3599 144.719 58.5841 144.672 58.8169V60.4609C144.757 60.7572 144.875 61.0365 145.028 61.2988C145.18 61.557 145.383 61.7664 145.637 61.9272C145.891 62.0838 146.211 62.1621 146.596 62.1621C146.913 62.1621 147.186 62.0965 147.415 61.9653C147.647 61.8299 147.838 61.6458 147.986 61.4131C148.138 61.1803 148.25 60.9137 148.322 60.6133C148.394 60.3086 148.43 59.9849 148.43 59.6421ZM150.798 59.6421V59.4961C150.798 59.001 150.87 58.5418 151.014 58.1187C151.158 57.6912 151.365 57.321 151.636 57.0078C151.907 56.6904 152.235 56.445 152.62 56.2715C153.005 56.0938 153.436 56.0049 153.915 56.0049C154.397 56.0049 154.831 56.0938 155.216 56.2715C155.605 56.445 155.935 56.6904 156.206 57.0078C156.481 57.321 156.691 57.6912 156.834 58.1187C156.978 58.5418 157.05 59.001 157.05 59.4961V59.6421C157.05 60.1372 156.978 60.5964 156.834 61.0195C156.691 61.4427 156.481 61.813 156.206 62.1304C155.935 62.4435 155.607 62.689 155.222 62.8667C154.841 63.0402 154.41 63.127 153.927 63.127C153.445 63.127 153.011 63.0402 152.626 62.8667C152.241 62.689 151.911 62.4435 151.636 62.1304C151.365 61.813 151.158 61.4427 151.014 61.0195C150.87 60.5964 150.798 60.1372 150.798 59.6421ZM151.972 59.4961V59.6421C151.972 59.9849 152.012 60.3086 152.093 60.6133C152.173 60.9137 152.294 61.1803 152.455 61.4131C152.62 61.6458 152.825 61.8299 153.07 61.9653C153.316 62.0965 153.601 62.1621 153.927 62.1621C154.249 62.1621 154.53 62.0965 154.771 61.9653C155.017 61.8299 155.22 61.6458 155.381 61.4131C155.542 61.1803 155.662 60.9137 155.743 60.6133C155.827 60.3086 155.87 59.9849 155.87 59.6421V59.4961C155.87 59.1576 155.827 58.8381 155.743 58.5376C155.662 58.2329 155.54 57.9642 155.375 57.7314C155.214 57.4945 155.011 57.3083 154.765 57.1729C154.524 57.0374 154.24 56.9697 153.915 56.9697C153.593 56.9697 153.309 57.0374 153.064 57.1729C152.823 57.3083 152.62 57.4945 152.455 57.7314C152.294 57.9642 152.173 58.2329 152.093 58.5376C152.012 58.8381 151.972 59.1576 151.972 59.4961ZM159.697 57.2109V63H158.523V56.1318H159.666L159.697 57.2109ZM161.843 56.0938L161.836 57.1855C161.739 57.1644 161.646 57.1517 161.557 57.1475C161.472 57.139 161.375 57.1348 161.265 57.1348C160.994 57.1348 160.755 57.1771 160.548 57.2617C160.34 57.3464 160.165 57.4648 160.021 57.6172C159.877 57.7695 159.763 57.9515 159.678 58.1631C159.598 58.3704 159.545 58.599 159.52 58.8486L159.189 59.0391C159.189 58.6243 159.23 58.235 159.31 57.8711C159.395 57.5072 159.524 57.1855 159.697 56.9062C159.871 56.6227 160.091 56.4027 160.357 56.2461C160.628 56.0853 160.95 56.0049 161.322 56.0049C161.407 56.0049 161.504 56.0155 161.614 56.0366C161.724 56.0535 161.8 56.0726 161.843 56.0938ZM166.121 56.1318V57.0332H162.408V56.1318H166.121ZM163.665 54.4624H164.839V61.2988C164.839 61.5316 164.875 61.7072 164.947 61.8257C165.019 61.9442 165.112 62.0225 165.226 62.0605C165.34 62.0986 165.463 62.1177 165.594 62.1177C165.692 62.1177 165.793 62.1092 165.899 62.0923C166.009 62.0711 166.091 62.0542 166.146 62.0415L166.153 63C166.06 63.0296 165.937 63.0571 165.785 63.0825C165.637 63.1121 165.457 63.127 165.245 63.127C164.957 63.127 164.693 63.0698 164.452 62.9556C164.21 62.8413 164.018 62.6509 163.874 62.3843C163.734 62.1134 163.665 61.7495 163.665 61.2925V54.4624ZM168.667 53.7578V64.7139H167.721V53.7578H168.667Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M279 113.496L272.495 120",stroke:"#64748B",strokeLinecap:"round"}),(0,h.createElement)("path",{d:"M279 116.748L275.747 120",stroke:"#64748B",strokeLinecap:"round"}),(0,h.createElement)("rect",{x:"16",y:"42",width:"266",height:"81",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),{ToolBarFields:Uo,AdvancedFields:Go,FieldWrapper:Wo,FieldSettingsWrapper:Ko,ValidationToggleGroup:$o,ValidationBlockMessage:Yo,BlockLabel:Xo,BlockDescription:Qo,BlockName:es,BlockAdvancedValue:Cs,EditAdvancedRulesButton:ts,AdvancedInspectorControl:ls,AttributeHelp:rs}=JetFBComponents,{useIsAdvancedValidation:ns,useUniqueNameOnDuplicate:as}=JetFBHooks,{__:is}=wp.i18n,{InspectorControls:os,useBlockProps:ss}=wp.blockEditor,{TextareaControl:cs,TextControl:ds,PanelBody:ms,__experimentalNumberControl:us}=wp.components;let{NumberControl:ps}=wp.components;void 0===ps&&(ps=us);const fs=JSON.parse('{"apiVersion":3,"name":"jet-forms/textarea-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","textarea"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Textarea Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"minlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"maxlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Vs}=wp.i18n,{createBlock:Hs}=wp.blocks,{name:hs,icon:bs=""}=fs,Ms={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:bs}}),description:Vs("Give the user enough space to type in a bigger piece of text. Add a text area where the data can be placed in several lines.","jet-form-builder"),edit:function(e){const{attributes:C,setAttributes:t,isSelected:l,editProps:{uniqKey:r}}=e,n=ss(),a=ns();return as(),C.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},zo):[(0,h.createElement)(Uo,{key:r("ToolBarFields"),...e}),l&&(0,h.createElement)(os,{key:r("InspectorControls")},(0,h.createElement)(ms,{title:is("General","jet-form-builder")},(0,h.createElement)(Xo,null),(0,h.createElement)(es,null),(0,h.createElement)(Qo,null)),(0,h.createElement)(ms,{title:is("Value","jet-form-builder")},(0,h.createElement)(Cs,null)),(0,h.createElement)(Ko,{...e},(0,h.createElement)(ls,{value:C.minlength,label:is("Min length (symbols)","jet-form-builder"),onChangePreset:e=>t({minlength:e})},({instanceId:e})=>(0,h.createElement)(ds,{id:e,className:"jet-fb m-unset",value:C.minlength,onChange:e=>t({minlength:e})})),(0,h.createElement)(rs,{name:"minlength"}),(0,h.createElement)(ls,{value:C.maxlength,label:is("Max length (symbols)","jet-form-builder"),onChangePreset:e=>t({maxlength:e})},({instanceId:e})=>(0,h.createElement)(ds,{id:e,className:"jet-fb m-unset",value:C.maxlength,onChange:e=>t({maxlength:e})})),(0,h.createElement)(rs,{name:"maxlength"})),(0,h.createElement)(ms,{title:is("Validation","jet-form-builder")},(0,h.createElement)($o,null),a&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ts,null),Boolean(C.minlength)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Yo,{name:"char_min"})),Boolean(C.maxlength)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Yo,{name:"char_max"})),(0,h.createElement)(Yo,{name:"empty"}))),(0,h.createElement)(Go,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{key:r("viewBlock"),...n},(0,h.createElement)(Wo,{key:r("FieldWrapper"),...e},(0,h.createElement)(cs,{className:"jet-form-builder__field-preview",key:r("place_holder_block"),placeholder:C.placeholder,onChange:()=>{}})))]},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Hs("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/wysiwyg-field"],transform:e=>Hs(hs,{...e}),priority:0}]}},Ls=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"20.5",width:"22",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.3887 29.4028V30.3677H28.0283V29.4028H34.3887ZM42.9199 29.4028V30.3677H36.5596V29.4028H42.9199Z",fill:"white"}),(0,h.createElement)("path",{d:"M49.8442 33.8779C49.8442 33.679 49.9056 33.5119 50.0283 33.3765C50.1553 33.2368 50.3372 33.167 50.5742 33.167C50.8112 33.167 50.991 33.2368 51.1138 33.3765C51.2407 33.5119 51.3042 33.679 51.3042 33.8779C51.3042 34.0726 51.2407 34.2376 51.1138 34.373C50.991 34.5085 50.8112 34.5762 50.5742 34.5762C50.3372 34.5762 50.1553 34.5085 50.0283 34.373C49.9056 34.2376 49.8442 34.0726 49.8442 33.8779ZM49.8506 28.2729C49.8506 28.0741 49.9119 27.9069 50.0347 27.7715C50.1616 27.6318 50.3436 27.562 50.5806 27.562C50.8175 27.562 50.9974 27.6318 51.1201 27.7715C51.2471 27.9069 51.3105 28.0741 51.3105 28.2729C51.3105 28.4676 51.2471 28.6326 51.1201 28.7681C50.9974 28.9035 50.8175 28.9712 50.5806 28.9712C50.3436 28.9712 50.1616 28.9035 50.0347 28.7681C49.9119 28.6326 49.8506 28.4676 49.8506 28.2729ZM62.7617 29.4028V30.3677H56.4014V29.4028H62.7617ZM71.293 29.4028V30.3677H64.9326V29.4028H71.293ZM76.5044 33.8779C76.5044 33.679 76.5658 33.5119 76.6885 33.3765C76.8154 33.2368 76.9974 33.167 77.2344 33.167C77.4714 33.167 77.6512 33.2368 77.7739 33.3765C77.9009 33.5119 77.9644 33.679 77.9644 33.8779C77.9644 34.0726 77.9009 34.2376 77.7739 34.373C77.6512 34.5085 77.4714 34.5762 77.2344 34.5762C76.9974 34.5762 76.8154 34.5085 76.6885 34.373C76.5658 34.2376 76.5044 34.0726 76.5044 33.8779ZM76.5107 28.2729C76.5107 28.0741 76.5721 27.9069 76.6948 27.7715C76.8218 27.6318 77.0037 27.562 77.2407 27.562C77.4777 27.562 77.6576 27.6318 77.7803 27.7715C77.9072 27.9069 77.9707 28.0741 77.9707 28.2729C77.9707 28.4676 77.9072 28.6326 77.7803 28.7681C77.6576 28.9035 77.4777 28.9712 77.2407 28.9712C77.0037 28.9712 76.8218 28.9035 76.6948 28.7681C76.5721 28.6326 76.5107 28.4676 76.5107 28.2729ZM89.4219 29.4028V30.3677H83.0615V29.4028H89.4219ZM97.9531 29.4028V30.3677H91.5928V29.4028H97.9531Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M260.991 21C256.023 21 252 25.032 252 30C252 34.968 256.023 39 260.991 39C265.968 39 270 34.968 270 30C270 25.032 265.968 21 260.991 21ZM261 37.2C257.022 37.2 253.8 33.978 253.8 30C253.8 26.022 257.022 22.8 261 22.8C264.978 22.8 268.2 26.022 268.2 30C268.2 33.978 264.978 37.2 261 37.2ZM260.802 25.5H260.748C260.388 25.5 260.1 25.788 260.1 26.148V30.396C260.1 30.711 260.262 31.008 260.541 31.17L264.276 33.411C264.582 33.591 264.978 33.501 265.158 33.195C265.347 32.889 265.248 32.484 264.933 32.304L261.45 30.234V26.148C261.45 25.788 261.162 25.5 260.802 25.5V25.5Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("path",{d:"M15 49C15 46.7909 16.7909 45 19 45H279C281.209 45 283 46.7909 283 49V144H15V49Z",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"64.9048",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"104.905",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M42.3906 64.5664V66.166C42.3906 66.86 42.3166 67.4588 42.1685 67.9624C42.0203 68.4618 41.8066 68.8722 41.5273 69.1938C41.2523 69.5112 40.9243 69.7461 40.5435 69.8984C40.1626 70.0508 39.7394 70.127 39.2739 70.127C38.9015 70.127 38.5545 70.0804 38.2329 69.9873C37.9113 69.89 37.6214 69.7397 37.3633 69.5366C37.1094 69.3335 36.8893 69.0775 36.7031 68.7686C36.5212 68.4554 36.3815 68.083 36.2842 67.6514C36.1868 67.2197 36.1382 66.7246 36.1382 66.166V64.5664C36.1382 63.8724 36.2122 63.2778 36.3604 62.7827C36.5127 62.2834 36.7264 61.875 37.0015 61.5576C37.2808 61.2402 37.6108 61.0075 37.9917 60.8594C38.3726 60.707 38.7957 60.6309 39.2612 60.6309C39.6336 60.6309 39.9785 60.6795 40.2959 60.7769C40.6175 60.87 40.9074 61.016 41.1655 61.2148C41.4237 61.4137 41.6437 61.6698 41.8257 61.9829C42.0076 62.2918 42.1473 62.6621 42.2446 63.0938C42.342 63.5212 42.3906 64.012 42.3906 64.5664ZM40.5562 66.4072V64.3188C40.5562 63.9845 40.5371 63.6925 40.499 63.4429C40.4652 63.1932 40.4123 62.9816 40.3403 62.8081C40.2684 62.6304 40.1795 62.4865 40.0737 62.3765C39.9679 62.2664 39.8473 62.186 39.7119 62.1353C39.5765 62.0845 39.4263 62.0591 39.2612 62.0591C39.0539 62.0591 38.8698 62.0993 38.709 62.1797C38.5524 62.2601 38.4191 62.3892 38.3091 62.5669C38.1991 62.7404 38.1144 62.9731 38.0552 63.2651C38.0002 63.5529 37.9727 63.9041 37.9727 64.3188V66.4072C37.9727 66.7415 37.9896 67.0356 38.0234 67.2896C38.0615 67.5435 38.1165 67.7614 38.1885 67.9434C38.2646 68.1211 38.3535 68.2671 38.4551 68.3813C38.5609 68.4914 38.6815 68.5718 38.8169 68.6226C38.9565 68.6733 39.1089 68.6987 39.2739 68.6987C39.4771 68.6987 39.6569 68.6585 39.8135 68.5781C39.9743 68.4935 40.1097 68.3623 40.2197 68.1846C40.334 68.0026 40.4186 67.7656 40.4736 67.4736C40.5286 67.1816 40.5562 66.8262 40.5562 66.4072ZM49.957 68.5718V70H43.6348V68.7812L46.6245 65.5757C46.925 65.2414 47.1619 64.9473 47.3354 64.6934C47.509 64.4352 47.6338 64.2046 47.71 64.0015C47.7904 63.7941 47.8306 63.5973 47.8306 63.4111C47.8306 63.1318 47.784 62.8927 47.6909 62.6938C47.5978 62.4907 47.4603 62.3341 47.2783 62.2241C47.1006 62.1141 46.8805 62.0591 46.6182 62.0591C46.3389 62.0591 46.0977 62.1268 45.8945 62.2622C45.6956 62.3976 45.5433 62.5859 45.4375 62.8271C45.3359 63.0684 45.2852 63.3413 45.2852 63.646H43.4507C43.4507 63.0959 43.5819 62.5923 43.8442 62.1353C44.1066 61.674 44.4769 61.3079 44.9551 61.0371C45.4333 60.762 46.0003 60.6245 46.6562 60.6245C47.3037 60.6245 47.8496 60.7303 48.2939 60.9419C48.7425 61.1493 49.0811 61.4497 49.3096 61.8433C49.5423 62.2326 49.6587 62.6981 49.6587 63.2397C49.6587 63.5444 49.61 63.8428 49.5127 64.1348C49.4154 64.4225 49.2757 64.7103 49.0938 64.998C48.916 65.2816 48.7002 65.5693 48.4463 65.8613C48.1924 66.1533 47.911 66.4559 47.6021 66.769L45.9961 68.5718H49.957Z",fill:"white"}),(0,h.createElement)("path",{d:"M82.4922 68.5718V70H76.1699V68.7812L79.1597 65.5757C79.4601 65.2414 79.6971 64.9473 79.8706 64.6934C80.0441 64.4352 80.1689 64.2046 80.2451 64.0015C80.3255 63.7941 80.3657 63.5973 80.3657 63.4111C80.3657 63.1318 80.3192 62.8927 80.2261 62.6938C80.133 62.4907 79.9954 62.3341 79.8135 62.2241C79.6357 62.1141 79.4157 62.0591 79.1533 62.0591C78.874 62.0591 78.6328 62.1268 78.4297 62.2622C78.2308 62.3976 78.0785 62.5859 77.9727 62.8271C77.8711 63.0684 77.8203 63.3413 77.8203 63.646H75.9858C75.9858 63.0959 76.117 62.5923 76.3794 62.1353C76.6418 61.674 77.012 61.3079 77.4902 61.0371C77.9684 60.762 78.5355 60.6245 79.1914 60.6245C79.8389 60.6245 80.3848 60.7303 80.8291 60.9419C81.2777 61.1493 81.6162 61.4497 81.8447 61.8433C82.0775 62.2326 82.1938 62.6981 82.1938 63.2397C82.1938 63.5444 82.1452 63.8428 82.0479 64.1348C81.9505 64.4225 81.8109 64.7103 81.6289 64.998C81.4512 65.2816 81.2354 65.5693 80.9814 65.8613C80.7275 66.1533 80.4461 66.4559 80.1372 66.769L78.5312 68.5718H82.4922ZM89.9126 60.7578V61.7417L86.3389 70H84.4092L87.9829 62.186H83.3809V60.7578H89.9126Z",fill:"white"}),(0,h.createElement)("path",{d:"M117.541 66.7056H115.186V65.2202H117.541C117.905 65.2202 118.201 65.161 118.43 65.0425C118.658 64.9198 118.825 64.7505 118.931 64.5347C119.037 64.3188 119.09 64.0755 119.09 63.8047C119.09 63.5296 119.037 63.2736 118.931 63.0366C118.825 62.7996 118.658 62.6092 118.43 62.4653C118.201 62.3215 117.905 62.2495 117.541 62.2495H115.846V70H113.942V60.7578H117.541C118.265 60.7578 118.885 60.889 119.401 61.1514C119.921 61.4095 120.319 61.7671 120.594 62.2241C120.869 62.6812 121.007 63.2038 121.007 63.792C121.007 64.3887 120.869 64.9049 120.594 65.3408C120.319 65.7767 119.921 66.1131 119.401 66.3501C118.885 66.5871 118.265 66.7056 117.541 66.7056ZM123.19 60.7578H124.803L127.177 67.5435L129.551 60.7578H131.163L127.824 70H126.529L123.19 60.7578ZM122.321 60.7578H123.927L124.219 67.3721V70H122.321V60.7578ZM130.427 60.7578H132.039V70H130.135V67.3721L130.427 60.7578Z",fill:"white"}),(0,h.createElement)("path",{d:"M42.2573 87.6426V89.0518C42.2573 89.8092 42.1896 90.4482 42.0542 90.9688C41.9188 91.4893 41.7241 91.9082 41.4702 92.2256C41.2163 92.543 40.9095 92.7736 40.5498 92.9175C40.1943 93.0571 39.7923 93.127 39.3438 93.127C38.9883 93.127 38.6603 93.0825 38.3599 92.9937C38.0594 92.9048 37.7886 92.763 37.5474 92.5684C37.3104 92.3695 37.1073 92.1113 36.938 91.7939C36.7687 91.4766 36.6396 91.0915 36.5508 90.6387C36.4619 90.1859 36.4175 89.6569 36.4175 89.0518V87.6426C36.4175 86.8851 36.4852 86.2503 36.6206 85.7383C36.7603 85.2262 36.957 84.8158 37.2109 84.5068C37.4648 84.1937 37.7695 83.9694 38.125 83.834C38.4847 83.6986 38.8867 83.6309 39.3311 83.6309C39.6908 83.6309 40.0208 83.6753 40.3213 83.7642C40.626 83.8488 40.8968 83.9863 41.1338 84.1768C41.3708 84.363 41.5718 84.6126 41.7368 84.9258C41.9061 85.2347 42.0352 85.6134 42.124 86.062C42.2129 86.5106 42.2573 87.0374 42.2573 87.6426ZM41.0767 89.2422V87.4458C41.0767 87.0311 41.0513 86.6672 41.0005 86.354C40.9539 86.0366 40.8841 85.7658 40.791 85.5415C40.6979 85.3172 40.5794 85.1353 40.4355 84.9956C40.2959 84.856 40.133 84.7544 39.9468 84.6909C39.7648 84.6232 39.5596 84.5894 39.3311 84.5894C39.0518 84.5894 38.8042 84.6423 38.5884 84.748C38.3726 84.8496 38.1906 85.0125 38.0425 85.2368C37.8986 85.4611 37.7886 85.7552 37.7124 86.1191C37.6362 86.4831 37.5981 86.9253 37.5981 87.4458V89.2422C37.5981 89.6569 37.6214 90.0229 37.668 90.3403C37.7188 90.6577 37.7928 90.9328 37.8901 91.1655C37.9875 91.394 38.106 91.5824 38.2456 91.7305C38.3853 91.8786 38.5461 91.9886 38.728 92.0605C38.9142 92.1283 39.1195 92.1621 39.3438 92.1621C39.6315 92.1621 39.8833 92.1071 40.0991 91.9971C40.3149 91.887 40.4948 91.7157 40.6387 91.4829C40.7868 91.2459 40.8968 90.9434 40.9688 90.5752C41.0407 90.2028 41.0767 89.7585 41.0767 89.2422ZM45.4819 87.8013H46.3198C46.7303 87.8013 47.0688 87.7336 47.3354 87.5981C47.6063 87.4585 47.8073 87.2702 47.9385 87.0332C48.0739 86.792 48.1416 86.5212 48.1416 86.2207C48.1416 85.8652 48.0824 85.5669 47.9639 85.3257C47.8454 85.0845 47.6676 84.9025 47.4307 84.7798C47.1937 84.6571 46.8932 84.5957 46.5293 84.5957C46.1992 84.5957 45.9072 84.6613 45.6533 84.7925C45.4036 84.9194 45.2069 85.1014 45.063 85.3384C44.9233 85.5754 44.8535 85.8547 44.8535 86.1763H43.6792C43.6792 85.7065 43.7977 85.2791 44.0347 84.894C44.2716 84.509 44.6038 84.2021 45.0312 83.9736C45.4629 83.7451 45.9622 83.6309 46.5293 83.6309C47.0879 83.6309 47.5767 83.7303 47.9956 83.9292C48.4146 84.1239 48.7404 84.4159 48.9731 84.8052C49.2059 85.1903 49.3223 85.6706 49.3223 86.2461C49.3223 86.4788 49.2673 86.7285 49.1572 86.9951C49.0514 87.2575 48.8843 87.5029 48.6558 87.7314C48.4315 87.96 48.1395 88.1483 47.7798 88.2964C47.4201 88.4403 46.9884 88.5122 46.4849 88.5122H45.4819V87.8013ZM45.4819 88.7661V88.0615H46.4849C47.0731 88.0615 47.5597 88.1313 47.9448 88.271C48.3299 88.4106 48.6325 88.5968 48.8525 88.8296C49.0768 89.0623 49.2334 89.3184 49.3223 89.5977C49.4154 89.8727 49.4619 90.1478 49.4619 90.4229C49.4619 90.8545 49.3879 91.2375 49.2397 91.5718C49.0959 91.9061 48.8906 92.1896 48.624 92.4224C48.3617 92.6551 48.0527 92.8307 47.6973 92.9492C47.3418 93.0677 46.9546 93.127 46.5356 93.127C46.1336 93.127 45.7549 93.0698 45.3994 92.9556C45.0482 92.8413 44.7371 92.6763 44.4663 92.4604C44.1955 92.2404 43.9839 91.9717 43.8315 91.6543C43.6792 91.3327 43.603 90.9666 43.603 90.5562H44.7773C44.7773 90.8778 44.8472 91.1592 44.9868 91.4004C45.1307 91.6416 45.3338 91.8299 45.5962 91.9653C45.8628 92.0965 46.1759 92.1621 46.5356 92.1621C46.8953 92.1621 47.2043 92.1007 47.4624 91.978C47.7248 91.8511 47.9258 91.6606 48.0654 91.4067C48.2093 91.1528 48.2812 90.8333 48.2812 90.4482C48.2812 90.0632 48.2008 89.7479 48.04 89.5024C47.8792 89.2528 47.6507 89.0687 47.3545 88.9502C47.0625 88.8275 46.7176 88.7661 46.3198 88.7661H45.4819Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M82.5112 92.0352V93H76.4619V92.1558L79.4897 88.7852C79.8621 88.3704 80.1499 88.0192 80.353 87.7314C80.5604 87.4395 80.7043 87.1792 80.7847 86.9507C80.8693 86.7179 80.9116 86.481 80.9116 86.2397C80.9116 85.9351 80.8481 85.66 80.7212 85.4146C80.5985 85.1649 80.4165 84.966 80.1753 84.8179C79.9341 84.6698 79.6421 84.5957 79.2993 84.5957C78.8888 84.5957 78.5461 84.6761 78.271 84.8369C78.0002 84.9935 77.797 85.2135 77.6616 85.4971C77.5262 85.7806 77.4585 86.1064 77.4585 86.4746H76.2842C76.2842 85.9541 76.3984 85.478 76.627 85.0464C76.8555 84.6147 77.194 84.272 77.6426 84.0181C78.0911 83.7599 78.6434 83.6309 79.2993 83.6309C79.8833 83.6309 80.3826 83.7345 80.7974 83.9419C81.2121 84.145 81.5295 84.4328 81.7495 84.8052C81.9738 85.1733 82.0859 85.605 82.0859 86.1001C82.0859 86.3709 82.0394 86.646 81.9463 86.9253C81.8574 87.2004 81.7326 87.4754 81.5718 87.7505C81.4152 88.0256 81.2311 88.2964 81.0195 88.563C80.8122 88.8296 80.59 89.092 80.353 89.3501L77.8774 92.0352H82.5112ZM89.5952 90.499C89.5952 91.0618 89.464 91.54 89.2017 91.9336C88.9435 92.3229 88.5923 92.6191 88.1479 92.8223C87.7078 93.0254 87.2106 93.127 86.6562 93.127C86.1019 93.127 85.6025 93.0254 85.1582 92.8223C84.7139 92.6191 84.3626 92.3229 84.1045 91.9336C83.8464 91.54 83.7173 91.0618 83.7173 90.499C83.7173 90.1309 83.7871 89.7944 83.9268 89.4897C84.0706 89.1808 84.2716 88.9121 84.5298 88.6836C84.7922 88.4551 85.1011 88.2795 85.4565 88.1567C85.8162 88.0298 86.2119 87.9663 86.6436 87.9663C87.2106 87.9663 87.7163 88.0763 88.1606 88.2964C88.605 88.5122 88.9541 88.8105 89.208 89.1914C89.4661 89.5723 89.5952 90.0081 89.5952 90.499ZM88.4146 90.4736C88.4146 90.1309 88.3405 89.8283 88.1924 89.5659C88.0443 89.2993 87.8369 89.092 87.5703 88.9438C87.3037 88.7957 86.9948 88.7217 86.6436 88.7217C86.2839 88.7217 85.9728 88.7957 85.7104 88.9438C85.4523 89.092 85.2513 89.2993 85.1074 89.5659C84.9635 89.8283 84.8916 90.1309 84.8916 90.4736C84.8916 90.8291 84.9614 91.1338 85.1011 91.3877C85.245 91.6374 85.4481 91.8299 85.7104 91.9653C85.9771 92.0965 86.2923 92.1621 86.6562 92.1621C87.0202 92.1621 87.3333 92.0965 87.5957 91.9653C87.8581 91.8299 88.0591 91.6374 88.1987 91.3877C88.3426 91.1338 88.4146 90.8291 88.4146 90.4736ZM89.3794 86.1636C89.3794 86.6121 89.2609 87.0163 89.0239 87.376C88.7869 87.7357 88.4632 88.0192 88.0527 88.2266C87.6423 88.4339 87.1768 88.5376 86.6562 88.5376C86.1273 88.5376 85.6554 88.4339 85.2407 88.2266C84.8302 88.0192 84.5086 87.7357 84.2759 87.376C84.0431 87.0163 83.9268 86.6121 83.9268 86.1636C83.9268 85.6261 84.0431 85.1691 84.2759 84.7925C84.5129 84.4159 84.8366 84.1281 85.2471 83.9292C85.6576 83.7303 86.1252 83.6309 86.6499 83.6309C87.1789 83.6309 87.6486 83.7303 88.0591 83.9292C88.4696 84.1281 88.7912 84.4159 89.0239 84.7925C89.2609 85.1691 89.3794 85.6261 89.3794 86.1636ZM88.2051 86.1826C88.2051 85.8737 88.1395 85.6007 88.0083 85.3638C87.8771 85.1268 87.6951 84.9406 87.4624 84.8052C87.2297 84.6655 86.9588 84.5957 86.6499 84.5957C86.341 84.5957 86.0701 84.6613 85.8374 84.7925C85.6089 84.9194 85.429 85.1014 85.2979 85.3384C85.1709 85.5754 85.1074 85.8568 85.1074 86.1826C85.1074 86.5 85.1709 86.7772 85.2979 87.0142C85.429 87.2511 85.611 87.4352 85.8438 87.5664C86.0765 87.6976 86.3473 87.7632 86.6562 87.7632C86.9652 87.7632 87.2339 87.6976 87.4624 87.5664C87.6951 87.4352 87.8771 87.2511 88.0083 87.0142C88.1395 86.7772 88.2051 86.5 88.2051 86.1826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M117.579 84.5767L114.52 93H113.269L116.792 83.7578H117.598L117.579 84.5767ZM120.144 93L117.078 84.5767L117.059 83.7578H117.865L121.4 93H120.144ZM119.985 89.5786V90.5815H114.792V89.5786H119.985ZM123.025 83.7578H124.212L127.24 91.2925L130.262 83.7578H131.455L127.697 93H126.771L123.025 83.7578ZM122.638 83.7578H123.686L123.857 89.3945V93H122.638V83.7578ZM130.789 83.7578H131.836V93H130.617V89.3945L130.789 83.7578Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M42.2573 107.643V109.052C42.2573 109.809 42.1896 110.448 42.0542 110.969C41.9188 111.489 41.7241 111.908 41.4702 112.226C41.2163 112.543 40.9095 112.774 40.5498 112.917C40.1943 113.057 39.7923 113.127 39.3438 113.127C38.9883 113.127 38.6603 113.083 38.3599 112.994C38.0594 112.905 37.7886 112.763 37.5474 112.568C37.3104 112.369 37.1073 112.111 36.938 111.794C36.7687 111.477 36.6396 111.091 36.5508 110.639C36.4619 110.186 36.4175 109.657 36.4175 109.052V107.643C36.4175 106.885 36.4852 106.25 36.6206 105.738C36.7603 105.226 36.957 104.816 37.2109 104.507C37.4648 104.194 37.7695 103.969 38.125 103.834C38.4847 103.699 38.8867 103.631 39.3311 103.631C39.6908 103.631 40.0208 103.675 40.3213 103.764C40.626 103.849 40.8968 103.986 41.1338 104.177C41.3708 104.363 41.5718 104.613 41.7368 104.926C41.9061 105.235 42.0352 105.613 42.124 106.062C42.2129 106.511 42.2573 107.037 42.2573 107.643ZM41.0767 109.242V107.446C41.0767 107.031 41.0513 106.667 41.0005 106.354C40.9539 106.037 40.8841 105.766 40.791 105.542C40.6979 105.317 40.5794 105.135 40.4355 104.996C40.2959 104.856 40.133 104.754 39.9468 104.691C39.7648 104.623 39.5596 104.589 39.3311 104.589C39.0518 104.589 38.8042 104.642 38.5884 104.748C38.3726 104.85 38.1906 105.013 38.0425 105.237C37.8986 105.461 37.7886 105.755 37.7124 106.119C37.6362 106.483 37.5981 106.925 37.5981 107.446V109.242C37.5981 109.657 37.6214 110.023 37.668 110.34C37.7188 110.658 37.7928 110.933 37.8901 111.166C37.9875 111.394 38.106 111.582 38.2456 111.73C38.3853 111.879 38.5461 111.989 38.728 112.061C38.9142 112.128 39.1195 112.162 39.3438 112.162C39.6315 112.162 39.8833 112.107 40.0991 111.997C40.3149 111.887 40.4948 111.716 40.6387 111.483C40.7868 111.246 40.8968 110.943 40.9688 110.575C41.0407 110.203 41.0767 109.758 41.0767 109.242ZM50.0142 109.89V110.854H43.3364V110.163L47.4751 103.758H48.4336L47.4053 105.611L44.6694 109.89H50.0142ZM48.7256 103.758V113H47.5513V103.758H48.7256Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M82.5112 112.035V113H76.4619V112.156L79.4897 108.785C79.8621 108.37 80.1499 108.019 80.353 107.731C80.5604 107.439 80.7043 107.179 80.7847 106.951C80.8693 106.718 80.9116 106.481 80.9116 106.24C80.9116 105.935 80.8481 105.66 80.7212 105.415C80.5985 105.165 80.4165 104.966 80.1753 104.818C79.9341 104.67 79.6421 104.596 79.2993 104.596C78.8888 104.596 78.5461 104.676 78.271 104.837C78.0002 104.993 77.797 105.214 77.6616 105.497C77.5262 105.781 77.4585 106.106 77.4585 106.475H76.2842C76.2842 105.954 76.3984 105.478 76.627 105.046C76.8555 104.615 77.194 104.272 77.6426 104.018C78.0911 103.76 78.6434 103.631 79.2993 103.631C79.8833 103.631 80.3826 103.735 80.7974 103.942C81.2121 104.145 81.5295 104.433 81.7495 104.805C81.9738 105.173 82.0859 105.605 82.0859 106.1C82.0859 106.371 82.0394 106.646 81.9463 106.925C81.8574 107.2 81.7326 107.475 81.5718 107.75C81.4152 108.026 81.2311 108.296 81.0195 108.563C80.8122 108.83 80.59 109.092 80.353 109.35L77.8774 112.035H82.5112ZM84.936 112.016H85.0566C85.7337 112.016 86.2839 111.921 86.707 111.73C87.1302 111.54 87.4561 111.284 87.6846 110.962C87.9131 110.641 88.0697 110.279 88.1543 109.877C88.2389 109.471 88.2812 109.054 88.2812 108.626V107.211C88.2812 106.792 88.2326 106.42 88.1353 106.094C88.0422 105.768 87.911 105.495 87.7417 105.275C87.5767 105.055 87.3883 104.888 87.1768 104.773C86.9652 104.659 86.7409 104.602 86.5039 104.602C86.2331 104.602 85.9897 104.657 85.7739 104.767C85.5623 104.873 85.3825 105.023 85.2344 105.218C85.0905 105.412 84.9805 105.641 84.9043 105.903C84.8281 106.166 84.79 106.451 84.79 106.76C84.79 107.035 84.8239 107.302 84.8916 107.56C84.9593 107.818 85.063 108.051 85.2026 108.258C85.3423 108.466 85.5158 108.631 85.7231 108.753C85.9347 108.872 86.1823 108.931 86.4658 108.931C86.7282 108.931 86.9736 108.88 87.2021 108.779C87.4349 108.673 87.6401 108.531 87.8179 108.354C87.9998 108.172 88.1437 107.966 88.2495 107.738C88.3595 107.509 88.423 107.27 88.4399 107.021H88.9985C88.9985 107.372 88.9287 107.719 88.7891 108.062C88.6536 108.4 88.4632 108.709 88.2178 108.988C87.9723 109.268 87.6846 109.492 87.3545 109.661C87.0244 109.826 86.6647 109.909 86.2754 109.909C85.8184 109.909 85.4227 109.82 85.0884 109.642C84.7541 109.464 84.479 109.227 84.2632 108.931C84.0516 108.635 83.8929 108.305 83.7871 107.941C83.6855 107.573 83.6348 107.2 83.6348 106.824C83.6348 106.384 83.6961 105.971 83.8188 105.586C83.9416 105.201 84.1235 104.862 84.3647 104.57C84.606 104.274 84.9043 104.043 85.2598 103.878C85.6195 103.713 86.0342 103.631 86.5039 103.631C87.0329 103.631 87.4836 103.737 87.856 103.948C88.2284 104.16 88.5309 104.443 88.7637 104.799C89.0007 105.154 89.1742 105.554 89.2842 105.999C89.3942 106.443 89.4492 106.9 89.4492 107.37V107.795C89.4492 108.273 89.4175 108.76 89.354 109.255C89.2948 109.746 89.1784 110.215 89.0049 110.664C88.8356 111.113 88.5881 111.515 88.2622 111.87C87.9364 112.221 87.5111 112.501 86.9863 112.708C86.4658 112.911 85.8226 113.013 85.0566 113.013H84.936V112.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M42.2573 127.643V129.052C42.2573 129.809 42.1896 130.448 42.0542 130.969C41.9188 131.489 41.7241 131.908 41.4702 132.226C41.2163 132.543 40.9095 132.774 40.5498 132.917C40.1943 133.057 39.7923 133.127 39.3438 133.127C38.9883 133.127 38.6603 133.083 38.3599 132.994C38.0594 132.905 37.7886 132.763 37.5474 132.568C37.3104 132.369 37.1073 132.111 36.938 131.794C36.7687 131.477 36.6396 131.091 36.5508 130.639C36.4619 130.186 36.4175 129.657 36.4175 129.052V127.643C36.4175 126.885 36.4852 126.25 36.6206 125.738C36.7603 125.226 36.957 124.816 37.2109 124.507C37.4648 124.194 37.7695 123.969 38.125 123.834C38.4847 123.699 38.8867 123.631 39.3311 123.631C39.6908 123.631 40.0208 123.675 40.3213 123.764C40.626 123.849 40.8968 123.986 41.1338 124.177C41.3708 124.363 41.5718 124.613 41.7368 124.926C41.9061 125.235 42.0352 125.613 42.124 126.062C42.2129 126.511 42.2573 127.037 42.2573 127.643ZM41.0767 129.242V127.446C41.0767 127.031 41.0513 126.667 41.0005 126.354C40.9539 126.037 40.8841 125.766 40.791 125.542C40.6979 125.317 40.5794 125.135 40.4355 124.996C40.2959 124.856 40.133 124.754 39.9468 124.691C39.7648 124.623 39.5596 124.589 39.3311 124.589C39.0518 124.589 38.8042 124.642 38.5884 124.748C38.3726 124.85 38.1906 125.013 38.0425 125.237C37.8986 125.461 37.7886 125.755 37.7124 126.119C37.6362 126.483 37.5981 126.925 37.5981 127.446V129.242C37.5981 129.657 37.6214 130.023 37.668 130.34C37.7188 130.658 37.7928 130.933 37.8901 131.166C37.9875 131.394 38.106 131.582 38.2456 131.73C38.3853 131.879 38.5461 131.989 38.728 132.061C38.9142 132.128 39.1195 132.162 39.3438 132.162C39.6315 132.162 39.8833 132.107 40.0991 131.997C40.3149 131.887 40.4948 131.716 40.6387 131.483C40.7868 131.246 40.8968 130.943 40.9688 130.575C41.0407 130.203 41.0767 129.758 41.0767 129.242ZM45.2534 128.601L44.314 128.36L44.7773 123.758H49.519V124.843H45.7739L45.4946 127.357C45.6639 127.26 45.8776 127.169 46.1357 127.084C46.3981 126.999 46.6986 126.957 47.0371 126.957C47.4645 126.957 47.8475 127.031 48.186 127.179C48.5246 127.323 48.8123 127.53 49.0493 127.801C49.2905 128.072 49.4746 128.398 49.6016 128.779C49.7285 129.16 49.792 129.585 49.792 130.055C49.792 130.499 49.7306 130.907 49.6079 131.28C49.4894 131.652 49.3096 131.978 49.0684 132.257C48.8271 132.532 48.5225 132.746 48.1543 132.898C47.7904 133.051 47.3608 133.127 46.8657 133.127C46.4933 133.127 46.14 133.076 45.8057 132.975C45.4756 132.869 45.1794 132.71 44.917 132.499C44.6589 132.283 44.4473 132.016 44.2822 131.699C44.1214 131.377 44.0199 131 43.9775 130.569H45.0947C45.1455 130.916 45.2471 131.208 45.3994 131.445C45.5518 131.682 45.7507 131.862 45.9961 131.984C46.2458 132.103 46.5356 132.162 46.8657 132.162C47.145 132.162 47.3926 132.113 47.6084 132.016C47.8242 131.919 48.0062 131.779 48.1543 131.597C48.3024 131.415 48.4146 131.195 48.4907 130.937C48.5711 130.679 48.6113 130.389 48.6113 130.067C48.6113 129.775 48.5711 129.505 48.4907 129.255C48.4103 129.005 48.2897 128.787 48.1289 128.601C47.9723 128.415 47.7798 128.271 47.5513 128.169C47.3228 128.064 47.0604 128.011 46.7642 128.011C46.3706 128.011 46.0723 128.064 45.8691 128.169C45.6702 128.275 45.465 128.419 45.2534 128.601Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M78.1694 127.801H79.0073C79.4178 127.801 79.7563 127.734 80.0229 127.598C80.2938 127.458 80.4948 127.27 80.626 127.033C80.7614 126.792 80.8291 126.521 80.8291 126.221C80.8291 125.865 80.7699 125.567 80.6514 125.326C80.5329 125.084 80.3551 124.903 80.1182 124.78C79.8812 124.657 79.5807 124.596 79.2168 124.596C78.8867 124.596 78.5947 124.661 78.3408 124.792C78.0911 124.919 77.8944 125.101 77.7505 125.338C77.6108 125.575 77.541 125.855 77.541 126.176H76.3667C76.3667 125.707 76.4852 125.279 76.7222 124.894C76.9591 124.509 77.2913 124.202 77.7188 123.974C78.1504 123.745 78.6497 123.631 79.2168 123.631C79.7754 123.631 80.2642 123.73 80.6831 123.929C81.1021 124.124 81.4279 124.416 81.6606 124.805C81.8934 125.19 82.0098 125.671 82.0098 126.246C82.0098 126.479 81.9548 126.729 81.8447 126.995C81.7389 127.257 81.5718 127.503 81.3433 127.731C81.119 127.96 80.827 128.148 80.4673 128.296C80.1076 128.44 79.6759 128.512 79.1724 128.512H78.1694V127.801ZM78.1694 128.766V128.062H79.1724C79.7606 128.062 80.2472 128.131 80.6323 128.271C81.0174 128.411 81.32 128.597 81.54 128.83C81.7643 129.062 81.9209 129.318 82.0098 129.598C82.1029 129.873 82.1494 130.148 82.1494 130.423C82.1494 130.854 82.0754 131.237 81.9272 131.572C81.7834 131.906 81.5781 132.19 81.3115 132.422C81.0492 132.655 80.7402 132.831 80.3848 132.949C80.0293 133.068 79.6421 133.127 79.2231 133.127C78.8211 133.127 78.4424 133.07 78.0869 132.956C77.7357 132.841 77.4246 132.676 77.1538 132.46C76.883 132.24 76.6714 131.972 76.519 131.654C76.3667 131.333 76.2905 130.967 76.2905 130.556H77.4648C77.4648 130.878 77.5347 131.159 77.6743 131.4C77.8182 131.642 78.0213 131.83 78.2837 131.965C78.5503 132.097 78.8634 132.162 79.2231 132.162C79.5828 132.162 79.8918 132.101 80.1499 131.978C80.4123 131.851 80.6133 131.661 80.7529 131.407C80.8968 131.153 80.9688 130.833 80.9688 130.448C80.9688 130.063 80.8883 129.748 80.7275 129.502C80.5667 129.253 80.3382 129.069 80.042 128.95C79.75 128.827 79.4051 128.766 79.0073 128.766H78.1694ZM89.5698 127.643V129.052C89.5698 129.809 89.5021 130.448 89.3667 130.969C89.2313 131.489 89.0366 131.908 88.7827 132.226C88.5288 132.543 88.222 132.774 87.8623 132.917C87.5068 133.057 87.1048 133.127 86.6562 133.127C86.3008 133.127 85.9728 133.083 85.6724 132.994C85.3719 132.905 85.1011 132.763 84.8599 132.568C84.6229 132.369 84.4198 132.111 84.2505 131.794C84.0812 131.477 83.9521 131.091 83.8633 130.639C83.7744 130.186 83.73 129.657 83.73 129.052V127.643C83.73 126.885 83.7977 126.25 83.9331 125.738C84.0728 125.226 84.2695 124.816 84.5234 124.507C84.7773 124.194 85.082 123.969 85.4375 123.834C85.7972 123.699 86.1992 123.631 86.6436 123.631C87.0033 123.631 87.3333 123.675 87.6338 123.764C87.9385 123.849 88.2093 123.986 88.4463 124.177C88.6833 124.363 88.8843 124.613 89.0493 124.926C89.2186 125.235 89.3477 125.613 89.4365 126.062C89.5254 126.511 89.5698 127.037 89.5698 127.643ZM88.3892 129.242V127.446C88.3892 127.031 88.3638 126.667 88.313 126.354C88.2664 126.037 88.1966 125.766 88.1035 125.542C88.0104 125.317 87.8919 125.135 87.748 124.996C87.6084 124.856 87.4455 124.754 87.2593 124.691C87.0773 124.623 86.8721 124.589 86.6436 124.589C86.3643 124.589 86.1167 124.642 85.9009 124.748C85.6851 124.85 85.5031 125.013 85.355 125.237C85.2111 125.461 85.1011 125.755 85.0249 126.119C84.9487 126.483 84.9106 126.925 84.9106 127.446V129.242C84.9106 129.657 84.9339 130.023 84.9805 130.34C85.0312 130.658 85.1053 130.933 85.2026 131.166C85.3 131.394 85.4185 131.582 85.5581 131.73C85.6978 131.879 85.8586 131.989 86.0405 132.061C86.2267 132.128 86.432 132.162 86.6562 132.162C86.944 132.162 87.1958 132.107 87.4116 131.997C87.6274 131.887 87.8073 131.716 87.9512 131.483C88.0993 131.246 88.2093 130.943 88.2812 130.575C88.3532 130.203 88.3892 129.758 88.3892 129.242Z",fill:"#0F172A"})),{ToolBarFields:gs,BlockName:Zs,BlockLabel:ys,BlockDescription:Es,BlockAdvancedValue:ws,AdvancedFields:vs,FieldWrapper:_s,AdvancedInspectorControl:ks,ClientSideMacros:js,ValidationToggleGroup:xs,ValidationBlockMessage:Fs,AttributeHelp:Bs}=JetFBComponents,{useInsertMacro:As,useIsAdvancedValidation:Ps,useUniqueNameOnDuplicate:Ss}=JetFBHooks,{__:Ns}=wp.i18n,{InspectorControls:Is,useBlockProps:Ts}=wp.blockEditor,{TextControl:Os,PanelBody:Js,__experimentalInputControl:Rs,ExternalLink:qs}=wp.components;let{InputControl:Ds}=wp.components;void 0===Ds&&(Ds=Rs);const zs=JSON.parse('{"apiVersion":3,"name":"jet-forms/time-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","time"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Time Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"min":{"type":"string","default":""},"max":{"type":"string","default":""},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Us}=wp.i18n,{createBlock:Gs}=wp.blocks,{name:Ws,icon:Ks=""}=zs,$s={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ks}}),description:Us("Allow the user to enter the desirable time. Let them type the time manually or choose from the convenient drop-down timer.","jet-form-builder"),edit:function(e){const{isSelected:C,attributes:t,setAttributes:l,editProps:{uniqKey:r}}=e,n=Ts(),[a,i]=As("min"),[o,s]=As("max"),c=Ps();if(Ss(),t.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ls);const d=(0,h.createElement)(h.Fragment,null,Ns("Plain date should be in hh:mm format.","jet-form-builder")," ",Ns("Or you can use","jet-form-builder")," ",(0,h.createElement)(qs,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},Ns("macros","jet-form-builder"))," ",Ns("and","jet-form-builder")," ",(0,h.createElement)(qs,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},Ns("filters","jet-form-builder")),".");return[(0,h.createElement)(gs,{key:r("ToolBarFields"),...e}),C&&(0,h.createElement)(Is,{key:r("InspectorControls")},(0,h.createElement)(Js,{title:Ns("General","jet-form-builder")},(0,h.createElement)(ys,null),(0,h.createElement)(Zs,null),(0,h.createElement)(Es,null)),(0,h.createElement)(Js,{title:Ns("Value","jet-form-builder")},(0,h.createElement)(ws,{help:d,style:{marginBottom:"1em"}}),(0,h.createElement)(js,null,(0,h.createElement)(ks,{value:t.min,label:Ns("Starting from time","jet-form-builder"),onChangePreset:e=>l({min:e}),onChangeMacros:i},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Os,{id:e,ref:a,className:"jet-fb m-unset",value:t.min,onChange:e=>l({min:e})}),(0,h.createElement)(Bs,null,d))),(0,h.createElement)(ks,{value:t.max,label:Ns("Limit time to","jet-form-builder"),onChangePreset:e=>l({max:e}),onChangeMacros:s},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Os,{id:e,ref:o,className:"jet-fb m-unset",value:t.max,onChange:e=>l({max:e})}),(0,h.createElement)(Bs,null,d))))),(0,h.createElement)(Js,{title:Ns("Validation","jet-form-builder")},(0,h.createElement)(xs,null),c&&(0,h.createElement)(h.Fragment,null,Boolean(t.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Fs,{name:"date_min"})),Boolean(t.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Fs,{name:"date_max"})),(0,h.createElement)(Fs,{name:"empty"}))),(0,h.createElement)(vs,null)),(0,h.createElement)("div",{...n,key:r("viewBlock")},(0,h.createElement)(_s,{key:r("FieldWrapper"),...e},(0,h.createElement)(Os,{onChange:()=>{},className:"jet-form-builder__field-preview",key:r("place_holder_block"),placeholder:'Input type="time"'})))]},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Gs("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/datetime-field","jet-forms/date-field"],transform:e=>Gs(Ws,{...e}),priority:0}]}},Ys=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,h.createElement)("g",{clipPath:"url(#clip0_75_1400)"},(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V144H15V19Z",fill:"white"}),(0,h.createElement)("path",{d:"M15 8H283.061V85H15V8Z",fill:"url(#paint0_linear_75_1400)"}),(0,h.createElement)("path",{d:"M15 8H283.061V85H15V8Z",fill:"url(#paint1_linear_75_1400)"}),(0,h.createElement)("g",{filter:"url(#filter0_d_75_1400)"},(0,h.createElement)("path",{d:"M219 14.2974C219 15.8887 218.421 17.4148 217.389 18.54C216.358 19.6652 214.959 20.2974 213.5 20.2974C212.041 20.2974 210.642 19.6652 209.611 18.54C208.579 17.4148 208 15.8887 208 14.2974L219 14.2974Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M219.5 14.2974V13.7974L219 13.7974L208 13.7974L207.5 13.7974L207.5 14.2974C207.5 16.0079 208.122 17.6562 209.242 18.8779C210.364 20.101 211.894 20.7974 213.5 20.7974C215.106 20.7974 216.636 20.101 217.758 18.8779C218.878 17.6562 219.5 16.0079 219.5 14.2974Z",stroke:"white"})),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1400)"},(0,h.createElement)("path",{d:"M35.0654 97.4038L33.9281 96.2664C33.7385 96.0769 33.4323 96.0769 33.2428 96.2664L31.7264 97.7829L30.7883 96.8545L30.103 97.5398L30.7932 98.23L26.4578 102.565V104.874H28.7664L33.1018 100.539L33.792 101.229L34.4773 100.544L33.5441 99.6103L35.0606 98.0939C35.255 97.8995 35.255 97.5933 35.0654 97.4038ZM28.363 103.902L27.4298 102.969L31.3473 99.0514L32.2804 99.9846L28.363 103.902Z",fill:"#64748B"})),(0,h.createElement)("circle",{cx:"47.8098",cy:"100.5",r:"7.5",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"272.69",y:"97.584",width:"5.8324",height:"213",rx:"2.9162",transform:"rotate(90 272.69 97.584)",fill:"url(#paint2_linear_75_1400)"}),(0,h.createElement)("circle",{cx:"182",cy:"100.742",r:"5.5",transform:"rotate(90 182 100.742)",fill:"white",stroke:"#64748B"}),(0,h.createElement)("rect",{x:"25.5",y:"114.333",width:"120",height:"19.4134",rx:"2.4162",fill:"white",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M67.4553 127.694L68.8372 120.585H69.5403L68.1536 127.694H67.4553ZM69.4426 127.694L70.8293 120.585H71.5276L70.1409 127.694H69.4426ZM72.1233 123.295H67.0452V122.616H72.1233V123.295ZM71.7571 125.692H66.6741V125.019H71.7571V125.692ZM77.6506 125.302V126.044H72.5139V125.512L75.6975 120.585H76.4348L75.6438 122.011L73.5393 125.302H77.6506ZM76.6594 120.585V127.694H75.7561V120.585H76.6594ZM83.1292 126.952V127.694H78.4758V127.045L80.8049 124.452C81.0914 124.133 81.3127 123.863 81.469 123.642C81.6285 123.417 81.7392 123.217 81.801 123.041C81.8661 122.862 81.8987 122.68 81.8987 122.494C81.8987 122.26 81.8499 122.048 81.7522 121.859C81.6578 121.667 81.5178 121.514 81.3323 121.4C81.1467 121.286 80.9221 121.229 80.6584 121.229C80.3427 121.229 80.079 121.291 79.8674 121.415C79.6591 121.535 79.5028 121.705 79.3987 121.923C79.2945 122.141 79.2424 122.392 79.2424 122.675H78.3391C78.3391 122.274 78.427 121.908 78.6028 121.576C78.7786 121.244 79.039 120.98 79.384 120.785C79.7291 120.587 80.1539 120.487 80.6584 120.487C81.1077 120.487 81.4918 120.567 81.8108 120.727C82.1298 120.883 82.3739 121.104 82.5432 121.391C82.7157 121.674 82.802 122.006 82.802 122.387C82.802 122.595 82.7662 122.807 82.6946 123.021C82.6262 123.233 82.5302 123.445 82.4065 123.656C82.2861 123.868 82.1444 124.076 81.9817 124.281C81.8222 124.486 81.6513 124.688 81.469 124.887L79.5647 126.952H83.1292ZM88.6907 120.585V121.093L85.7463 127.694H84.7942L87.7336 121.327H83.886V120.585H88.6907ZM94.3792 126.952V127.694H89.7258V127.045L92.0549 124.452C92.3414 124.133 92.5627 123.863 92.719 123.642C92.8785 123.417 92.9892 123.217 93.051 123.041C93.1161 122.862 93.1487 122.68 93.1487 122.494C93.1487 122.26 93.0999 122.048 93.0022 121.859C92.9078 121.667 92.7678 121.514 92.5823 121.4C92.3967 121.286 92.1721 121.229 91.9084 121.229C91.5927 121.229 91.329 121.291 91.1174 121.415C90.9091 121.535 90.7528 121.705 90.6487 121.923C90.5445 122.141 90.4924 122.392 90.4924 122.675H89.5891C89.5891 122.274 89.677 121.908 89.8528 121.576C90.0286 121.244 90.289 120.98 90.634 120.785C90.9791 120.587 91.4039 120.487 91.9084 120.487C92.3577 120.487 92.7418 120.567 93.0608 120.727C93.3798 120.883 93.6239 121.104 93.7932 121.391C93.9657 121.674 94.052 122.006 94.052 122.387C94.052 122.595 94.0162 122.807 93.9446 123.021C93.8762 123.233 93.7802 123.445 93.6565 123.656C93.5361 123.868 93.3944 124.076 93.2317 124.281C93.0722 124.486 92.9013 124.688 92.719 124.887L90.8147 126.952H94.3792ZM96.5227 120.585V127.694H95.5803V120.585H96.5227ZM99.5012 123.783V124.555H96.3176V123.783H99.5012ZM99.9846 120.585V121.356H96.3176V120.585H99.9846ZM101.772 126.938H101.865C102.385 126.938 102.809 126.864 103.134 126.718C103.46 126.571 103.71 126.374 103.886 126.127C104.062 125.88 104.182 125.601 104.247 125.292C104.312 124.979 104.345 124.659 104.345 124.33V123.241C104.345 122.919 104.308 122.632 104.233 122.382C104.161 122.131 104.06 121.921 103.93 121.752C103.803 121.583 103.658 121.454 103.495 121.366C103.333 121.278 103.16 121.234 102.978 121.234C102.769 121.234 102.582 121.277 102.416 121.361C102.253 121.443 102.115 121.558 102.001 121.708C101.891 121.858 101.806 122.034 101.747 122.235C101.689 122.437 101.659 122.657 101.659 122.895C101.659 123.106 101.685 123.311 101.738 123.51C101.79 123.708 101.869 123.887 101.977 124.047C102.084 124.206 102.218 124.333 102.377 124.428C102.54 124.519 102.73 124.564 102.948 124.564C103.15 124.564 103.339 124.525 103.515 124.447C103.694 124.366 103.852 124.257 103.989 124.12C104.128 123.98 104.239 123.822 104.321 123.646C104.405 123.471 104.454 123.287 104.467 123.095H104.897C104.897 123.365 104.843 123.632 104.736 123.896C104.631 124.156 104.485 124.394 104.296 124.608C104.107 124.823 103.886 124.996 103.632 125.126C103.378 125.253 103.101 125.316 102.802 125.316C102.45 125.316 102.146 125.248 101.889 125.111C101.632 124.975 101.42 124.792 101.254 124.564C101.091 124.337 100.969 124.083 100.888 123.803C100.81 123.52 100.771 123.233 100.771 122.943C100.771 122.605 100.818 122.287 100.912 121.991C101.007 121.695 101.147 121.435 101.332 121.21C101.518 120.982 101.747 120.805 102.021 120.678C102.297 120.551 102.616 120.487 102.978 120.487C103.385 120.487 103.731 120.569 104.018 120.731C104.304 120.894 104.537 121.112 104.716 121.386C104.898 121.659 105.032 121.967 105.116 122.309C105.201 122.65 105.243 123.002 105.243 123.363V123.69C105.243 124.058 105.219 124.433 105.17 124.813C105.125 125.191 105.035 125.552 104.902 125.897C104.771 126.243 104.581 126.552 104.33 126.825C104.08 127.095 103.753 127.31 103.349 127.47C102.948 127.626 102.454 127.704 101.865 127.704H101.772V126.938Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"152",y:"113.833",width:"120.835",height:"20.4134",rx:"2.9162",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M260.898 122.448L262.695 120.654L264.493 122.448L265.045 121.896L262.695 119.546L260.346 121.896L260.898 122.448Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M264.493 126.043L262.696 127.836L260.898 126.043L260.346 126.595L262.696 128.944L265.045 126.595L264.493 126.043Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M209.882 123.288V124.055H206.034V123.288H209.882ZM206.181 120.232V127.341H205.238V120.232H206.181ZM210.702 120.232V127.341H209.765V120.232H210.702ZM216.894 126.574V127.341H213.129V126.574H216.894ZM213.319 120.232V127.341H212.377V120.232H213.319ZM216.396 123.288V124.055H213.129V123.288H216.396ZM216.845 120.232V121.003H213.129V120.232H216.845ZM218.671 120.232L220.38 122.956L222.089 120.232H223.188L220.941 123.752L223.241 127.341H222.133L220.38 124.563L218.627 127.341H217.519L219.818 123.752L217.572 120.232H218.671Z",fill:"#64748B"})),(0,h.createElement)("defs",null,(0,h.createElement)("filter",{id:"filter0_d_75_1400",x:"204.28",y:"12.3766",width:"16.683",height:"11.683",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB"},(0,h.createElement)("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),(0,h.createElement)("feColorMatrix",{in:"SourceAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",result:"hardAlpha"}),(0,h.createElement)("feOffset",{dx:"-0.878599",dy:"0.920745"}),(0,h.createElement)("feGaussianBlur",{stdDeviation:"0.920745"}),(0,h.createElement)("feComposite",{in2:"hardAlpha",operator:"out"}),(0,h.createElement)("feColorMatrix",{type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"}),(0,h.createElement)("feBlend",{mode:"normal",in2:"BackgroundImageFix",result:"effect1_dropShadow_75_1400"}),(0,h.createElement)("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_dropShadow_75_1400",result:"shape"})),(0,h.createElement)("linearGradient",{id:"paint0_linear_75_1400",x1:"15",y1:"85",x2:"15",y2:"8",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",null),(0,h.createElement)("stop",{offset:"1",stopColor:"#C4C4C4",stopOpacity:"0"})),(0,h.createElement)("linearGradient",{id:"paint1_linear_75_1400",x1:"15",y1:"8",x2:"283.061",y2:"8.00001",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",{stopColor:"#4F46E5",stopOpacity:"0"}),(0,h.createElement)("stop",{offset:"1",stopColor:"#4272F9"})),(0,h.createElement)("linearGradient",{id:"paint2_linear_75_1400",x1:"275.82",y1:"310.274",x2:"275.896",y2:"97.274",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",{offset:"0.0521219",stopColor:"#FF0000"}),(0,h.createElement)("stop",{offset:"0.164776",stopColor:"#FF8A00"}),(0,h.createElement)("stop",{offset:"0.27743",stopColor:"#FFE600"}),(0,h.createElement)("stop",{offset:"0.393479",stopColor:"#14FF00"}),(0,h.createElement)("stop",{offset:"0.493654",stopColor:"#00A3FF"}),(0,h.createElement)("stop",{offset:"0.611759",stopColor:"#0500FF"}),(0,h.createElement)("stop",{offset:"0.722596",stopColor:"#AD00FF"}),(0,h.createElement)("stop",{offset:"0.83525",stopColor:"#FF00C7"}),(0,h.createElement)("stop",{offset:"0.946088",stopColor:"#FF0000"})),(0,h.createElement)("clipPath",{id:"clip0_75_1400"},(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V144H15V19Z",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1400"},(0,h.createElement)("rect",{width:"11.6648",height:"11.6648",fill:"white",transform:"translate(25 94.6675)"})))),{AdvancedFields:Xs,GeneralFields:Qs,ToolBarFields:ec,FieldWrapper:Cc,FieldSettingsWrapper:tc}=JetFBComponents,{useUniqKey:lc,useUniqueNameOnDuplicate:rc}=JetFBHooks,{__experimentalInputControl:nc}=wp.components,{InspectorControls:ac,useBlockProps:ic}=wp.blockEditor;let{InputControl:oc}=wp.components;void 0===oc&&(oc=nc);const sc=JSON.parse('{"apiVersion":3,"name":"jet-forms/color-picker-field","category":"jet-form-builder-fields","title":"Color Picker Field","icon":"\\n\\n","keywords":["jetformbuilder","field","colorpicker","picker","input"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:cc}=wp.i18n,{createBlock:dc}=wp.blocks,{name:mc,icon:uc}=sc,pc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:uc}}),description:cc("Give your users an opportunity to design your website and pick a certain color in the form with the help of the Color Picker Field.","jet-form-builder"),edit:function(e){const C=ic(),t=lc();rc();const{isSelected:l,attributes:r}=e;return r.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ys):[(0,h.createElement)(ec,{key:t("ToolBarFields"),...e}),l&&(0,h.createElement)(ac,{key:t("InspectorControls")},(0,h.createElement)(Qs,null),(0,h.createElement)(tc,null),(0,h.createElement)(Xs,null)),(0,h.createElement)("div",{...C,key:t("viewBlock")},(0,h.createElement)(Cc,{key:t("FieldWrapper"),...e},(0,h.createElement)(oc,{className:"jet-form-builder__field-wrap jet-form-builder__field-preview",type:"color",key:"color_picker_place_holder_block",onChange:()=>{}})))]},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>dc("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>dc(mc,{...e}),priority:0}]}},fc=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M87.1279 46.3447H84.6055L84.5918 45.2852H86.8818C87.2601 45.2852 87.5905 45.2214 87.873 45.0938C88.1556 44.9661 88.3743 44.7839 88.5293 44.5469C88.6888 44.3053 88.7686 44.0182 88.7686 43.6855C88.7686 43.321 88.6979 43.0247 88.5566 42.7969C88.4199 42.5645 88.208 42.3958 87.9209 42.291C87.6383 42.1816 87.2783 42.127 86.8408 42.127H84.8994V51H83.5801V41.0469H86.8408C87.3512 41.0469 87.807 41.0993 88.208 41.2041C88.609 41.3044 88.9486 41.4639 89.2266 41.6826C89.5091 41.8968 89.7233 42.1702 89.8691 42.5029C90.015 42.8356 90.0879 43.2344 90.0879 43.6992C90.0879 44.1094 89.9831 44.4808 89.7734 44.8135C89.5638 45.1416 89.2721 45.4105 88.8984 45.6201C88.5293 45.8298 88.0964 45.9642 87.5996 46.0234L87.1279 46.3447ZM87.0664 51H84.0859L84.8311 49.9268H87.0664C87.4857 49.9268 87.8411 49.8538 88.1328 49.708C88.429 49.5622 88.6546 49.3571 88.8096 49.0928C88.9645 48.8239 89.042 48.5072 89.042 48.1426C89.042 47.7734 88.9759 47.4544 88.8438 47.1855C88.7116 46.9167 88.5042 46.7093 88.2217 46.5635C87.9391 46.4176 87.5745 46.3447 87.1279 46.3447H85.248L85.2617 45.2852H87.832L88.1123 45.668C88.5908 45.709 88.9964 45.8457 89.3291 46.0781C89.6618 46.306 89.9147 46.5977 90.0879 46.9531C90.2656 47.3086 90.3545 47.7005 90.3545 48.1289C90.3545 48.7487 90.2178 49.2728 89.9443 49.7012C89.6755 50.125 89.2949 50.4486 88.8027 50.6719C88.3105 50.8906 87.7318 51 87.0664 51ZM91.7764 47.3838V47.2266C91.7764 46.6934 91.8538 46.1989 92.0088 45.7432C92.1637 45.2829 92.387 44.8841 92.6787 44.5469C92.9704 44.2051 93.3236 43.9408 93.7383 43.7539C94.153 43.5625 94.6178 43.4668 95.1328 43.4668C95.6523 43.4668 96.1195 43.5625 96.5342 43.7539C96.9535 43.9408 97.3089 44.2051 97.6006 44.5469C97.8968 44.8841 98.1224 45.2829 98.2773 45.7432C98.4323 46.1989 98.5098 46.6934 98.5098 47.2266V47.3838C98.5098 47.917 98.4323 48.4115 98.2773 48.8672C98.1224 49.3229 97.8968 49.7217 97.6006 50.0635C97.3089 50.4007 96.9557 50.665 96.541 50.8564C96.1309 51.0433 95.666 51.1367 95.1465 51.1367C94.627 51.1367 94.1598 51.0433 93.7451 50.8564C93.3304 50.665 92.9749 50.4007 92.6787 50.0635C92.387 49.7217 92.1637 49.3229 92.0088 48.8672C91.8538 48.4115 91.7764 47.917 91.7764 47.3838ZM93.041 47.2266V47.3838C93.041 47.7529 93.0843 48.1016 93.1709 48.4297C93.2575 48.7533 93.3874 49.0404 93.5605 49.291C93.7383 49.5417 93.9593 49.7399 94.2236 49.8857C94.488 50.027 94.7956 50.0977 95.1465 50.0977C95.4928 50.0977 95.7959 50.027 96.0557 49.8857C96.32 49.7399 96.5387 49.5417 96.7119 49.291C96.8851 49.0404 97.015 48.7533 97.1016 48.4297C97.1927 48.1016 97.2383 47.7529 97.2383 47.3838V47.2266C97.2383 46.862 97.1927 46.5179 97.1016 46.1943C97.015 45.8662 96.8828 45.5768 96.7051 45.3262C96.5319 45.071 96.3132 44.8704 96.0488 44.7246C95.7891 44.5788 95.4837 44.5059 95.1328 44.5059C94.7865 44.5059 94.4811 44.5788 94.2168 44.7246C93.957 44.8704 93.7383 45.071 93.5605 45.3262C93.3874 45.5768 93.2575 45.8662 93.1709 46.1943C93.0843 46.5179 93.041 46.862 93.041 47.2266ZM99.7607 47.3838V47.2266C99.7607 46.6934 99.8382 46.1989 99.9932 45.7432C100.148 45.2829 100.371 44.8841 100.663 44.5469C100.955 44.2051 101.308 43.9408 101.723 43.7539C102.137 43.5625 102.602 43.4668 103.117 43.4668C103.637 43.4668 104.104 43.5625 104.519 43.7539C104.938 43.9408 105.293 44.2051 105.585 44.5469C105.881 44.8841 106.107 45.2829 106.262 45.7432C106.417 46.1989 106.494 46.6934 106.494 47.2266V47.3838C106.494 47.917 106.417 48.4115 106.262 48.8672C106.107 49.3229 105.881 49.7217 105.585 50.0635C105.293 50.4007 104.94 50.665 104.525 50.8564C104.115 51.0433 103.65 51.1367 103.131 51.1367C102.611 51.1367 102.144 51.0433 101.729 50.8564C101.315 50.665 100.959 50.4007 100.663 50.0635C100.371 49.7217 100.148 49.3229 99.9932 48.8672C99.8382 48.4115 99.7607 47.917 99.7607 47.3838ZM101.025 47.2266V47.3838C101.025 47.7529 101.069 48.1016 101.155 48.4297C101.242 48.7533 101.372 49.0404 101.545 49.291C101.723 49.5417 101.944 49.7399 102.208 49.8857C102.472 50.027 102.78 50.0977 103.131 50.0977C103.477 50.0977 103.78 50.027 104.04 49.8857C104.304 49.7399 104.523 49.5417 104.696 49.291C104.869 49.0404 104.999 48.7533 105.086 48.4297C105.177 48.1016 105.223 47.7529 105.223 47.3838V47.2266C105.223 46.862 105.177 46.5179 105.086 46.1943C104.999 45.8662 104.867 45.5768 104.689 45.3262C104.516 45.071 104.298 44.8704 104.033 44.7246C103.773 44.5788 103.468 44.5059 103.117 44.5059C102.771 44.5059 102.465 44.5788 102.201 44.7246C101.941 44.8704 101.723 45.071 101.545 45.3262C101.372 45.5768 101.242 45.8662 101.155 46.1943C101.069 46.5179 101.025 46.862 101.025 47.2266ZM109.352 40.5V51H108.08V40.5H109.352ZM113.87 43.6035L110.644 47.0557L108.839 48.9287L108.736 47.582L110.028 46.0371L112.325 43.6035H113.87ZM112.715 51L110.076 47.4727L110.732 46.3447L114.205 51H112.715ZM123.01 49.7354V45.9277C123.01 45.6361 122.951 45.3831 122.832 45.1689C122.718 44.9502 122.545 44.7816 122.312 44.6631C122.08 44.5446 121.793 44.4854 121.451 44.4854C121.132 44.4854 120.852 44.54 120.61 44.6494C120.373 44.7588 120.187 44.9023 120.05 45.0801C119.918 45.2578 119.852 45.4492 119.852 45.6543H118.587C118.587 45.39 118.655 45.1279 118.792 44.8682C118.929 44.6084 119.125 44.3737 119.38 44.1641C119.64 43.9499 119.95 43.7812 120.31 43.6582C120.674 43.5306 121.08 43.4668 121.526 43.4668C122.064 43.4668 122.538 43.5579 122.948 43.7402C123.363 43.9225 123.687 44.1982 123.919 44.5674C124.156 44.932 124.274 45.39 124.274 45.9414V49.3867C124.274 49.6328 124.295 49.8949 124.336 50.1729C124.382 50.4508 124.448 50.6901 124.534 50.8906V51H123.215C123.151 50.8542 123.101 50.6605 123.064 50.4189C123.028 50.1729 123.01 49.945 123.01 49.7354ZM123.229 46.5156L123.242 47.4043H121.964C121.604 47.4043 121.283 47.4339 121 47.4932C120.717 47.5479 120.48 47.6322 120.289 47.7461C120.098 47.86 119.952 48.0036 119.852 48.1768C119.751 48.3454 119.701 48.5436 119.701 48.7715C119.701 49.0039 119.754 49.2158 119.858 49.4072C119.963 49.5986 120.12 49.7513 120.33 49.8652C120.544 49.9746 120.806 50.0293 121.116 50.0293C121.504 50.0293 121.845 49.9473 122.142 49.7832C122.438 49.6191 122.673 49.4186 122.846 49.1816C123.023 48.9447 123.119 48.7145 123.133 48.4912L123.673 49.0996C123.641 49.291 123.554 49.5029 123.413 49.7354C123.272 49.9678 123.083 50.1911 122.846 50.4053C122.613 50.6149 122.335 50.7904 122.012 50.9316C121.693 51.0684 121.333 51.1367 120.932 51.1367C120.43 51.1367 119.991 51.0387 119.612 50.8428C119.239 50.6468 118.947 50.3848 118.737 50.0566C118.532 49.724 118.43 49.3525 118.43 48.9424C118.43 48.5459 118.507 48.1973 118.662 47.8965C118.817 47.5911 119.04 47.3382 119.332 47.1377C119.624 46.9326 119.975 46.7777 120.385 46.6729C120.795 46.568 121.253 46.5156 121.759 46.5156H123.229ZM127.528 45.1826V51H126.264V43.6035H127.46L127.528 45.1826ZM127.228 47.0215L126.701 47.001C126.706 46.4951 126.781 46.028 126.927 45.5996C127.073 45.1667 127.278 44.7907 127.542 44.4717C127.806 44.1527 128.121 43.9066 128.485 43.7334C128.854 43.5557 129.262 43.4668 129.709 43.4668C130.074 43.4668 130.402 43.5169 130.693 43.6172C130.985 43.7129 131.233 43.8678 131.438 44.082C131.648 44.2962 131.808 44.5742 131.917 44.916C132.026 45.2533 132.081 45.6657 132.081 46.1533V51H130.81V46.1396C130.81 45.7523 130.753 45.4424 130.639 45.21C130.525 44.973 130.358 44.8021 130.14 44.6973C129.921 44.5879 129.652 44.5332 129.333 44.5332C129.019 44.5332 128.731 44.5993 128.472 44.7314C128.216 44.8636 127.995 45.0459 127.809 45.2783C127.626 45.5107 127.483 45.7773 127.378 46.0781C127.278 46.3743 127.228 46.6888 127.228 47.0215ZM141.836 49.7354V45.9277C141.836 45.6361 141.777 45.3831 141.658 45.1689C141.544 44.9502 141.371 44.7816 141.139 44.6631C140.906 44.5446 140.619 44.4854 140.277 44.4854C139.958 44.4854 139.678 44.54 139.437 44.6494C139.2 44.7588 139.013 44.9023 138.876 45.0801C138.744 45.2578 138.678 45.4492 138.678 45.6543H137.413C137.413 45.39 137.481 45.1279 137.618 44.8682C137.755 44.6084 137.951 44.3737 138.206 44.1641C138.466 43.9499 138.776 43.7812 139.136 43.6582C139.5 43.5306 139.906 43.4668 140.353 43.4668C140.89 43.4668 141.364 43.5579 141.774 43.7402C142.189 43.9225 142.513 44.1982 142.745 44.5674C142.982 44.932 143.101 45.39 143.101 45.9414V49.3867C143.101 49.6328 143.121 49.8949 143.162 50.1729C143.208 50.4508 143.274 50.6901 143.36 50.8906V51H142.041C141.977 50.8542 141.927 50.6605 141.891 50.4189C141.854 50.1729 141.836 49.945 141.836 49.7354ZM142.055 46.5156L142.068 47.4043H140.79C140.43 47.4043 140.109 47.4339 139.826 47.4932C139.544 47.5479 139.307 47.6322 139.115 47.7461C138.924 47.86 138.778 48.0036 138.678 48.1768C138.577 48.3454 138.527 48.5436 138.527 48.7715C138.527 49.0039 138.58 49.2158 138.685 49.4072C138.789 49.5986 138.947 49.7513 139.156 49.8652C139.37 49.9746 139.632 50.0293 139.942 50.0293C140.33 50.0293 140.672 49.9473 140.968 49.7832C141.264 49.6191 141.499 49.4186 141.672 49.1816C141.85 48.9447 141.945 48.7145 141.959 48.4912L142.499 49.0996C142.467 49.291 142.381 49.5029 142.239 49.7354C142.098 49.9678 141.909 50.1911 141.672 50.4053C141.439 50.6149 141.161 50.7904 140.838 50.9316C140.519 51.0684 140.159 51.1367 139.758 51.1367C139.257 51.1367 138.817 51.0387 138.438 50.8428C138.065 50.6468 137.773 50.3848 137.563 50.0566C137.358 49.724 137.256 49.3525 137.256 48.9424C137.256 48.5459 137.333 48.1973 137.488 47.8965C137.643 47.5911 137.867 47.3382 138.158 47.1377C138.45 46.9326 138.801 46.7777 139.211 46.6729C139.621 46.568 140.079 46.5156 140.585 46.5156H142.055ZM146.354 45.0254V53.8438H145.083V43.6035H146.245L146.354 45.0254ZM151.338 47.2402V47.3838C151.338 47.9215 151.274 48.4206 151.146 48.8809C151.019 49.3366 150.832 49.7331 150.586 50.0703C150.344 50.4076 150.046 50.6696 149.69 50.8564C149.335 51.0433 148.927 51.1367 148.467 51.1367C147.997 51.1367 147.583 51.0592 147.223 50.9043C146.863 50.7493 146.557 50.5238 146.307 50.2275C146.056 49.9313 145.855 49.5758 145.705 49.1611C145.559 48.7464 145.459 48.2793 145.404 47.7598V46.9941C145.459 46.4473 145.562 45.9574 145.712 45.5244C145.862 45.0915 146.061 44.7223 146.307 44.417C146.557 44.1071 146.86 43.8724 147.216 43.7129C147.571 43.5488 147.981 43.4668 148.446 43.4668C148.911 43.4668 149.324 43.5579 149.684 43.7402C150.044 43.918 150.347 44.1732 150.593 44.5059C150.839 44.8385 151.023 45.2373 151.146 45.7021C151.274 46.1624 151.338 46.6751 151.338 47.2402ZM150.066 47.3838V47.2402C150.066 46.8711 150.028 46.5247 149.95 46.2012C149.873 45.873 149.752 45.5859 149.588 45.3398C149.428 45.0892 149.223 44.8932 148.973 44.752C148.722 44.6061 148.424 44.5332 148.077 44.5332C147.758 44.5332 147.48 44.5879 147.243 44.6973C147.011 44.8066 146.812 44.9548 146.648 45.1416C146.484 45.3239 146.35 45.5335 146.245 45.7705C146.145 46.0029 146.07 46.2445 146.02 46.4951V48.2656C146.111 48.5846 146.238 48.8854 146.402 49.168C146.566 49.446 146.785 49.6715 147.059 49.8447C147.332 50.0133 147.676 50.0977 148.091 50.0977C148.433 50.0977 148.727 50.027 148.973 49.8857C149.223 49.7399 149.428 49.5417 149.588 49.291C149.752 49.0404 149.873 48.7533 149.95 48.4297C150.028 48.1016 150.066 47.7529 150.066 47.3838ZM154.216 45.0254V53.8438H152.944V43.6035H154.106L154.216 45.0254ZM159.199 47.2402V47.3838C159.199 47.9215 159.135 48.4206 159.008 48.8809C158.88 49.3366 158.693 49.7331 158.447 50.0703C158.206 50.4076 157.907 50.6696 157.552 50.8564C157.196 51.0433 156.788 51.1367 156.328 51.1367C155.859 51.1367 155.444 51.0592 155.084 50.9043C154.724 50.7493 154.419 50.5238 154.168 50.2275C153.917 49.9313 153.717 49.5758 153.566 49.1611C153.421 48.7464 153.32 48.2793 153.266 47.7598V46.9941C153.32 46.4473 153.423 45.9574 153.573 45.5244C153.724 45.0915 153.922 44.7223 154.168 44.417C154.419 44.1071 154.722 43.8724 155.077 43.7129C155.433 43.5488 155.843 43.4668 156.308 43.4668C156.772 43.4668 157.185 43.5579 157.545 43.7402C157.905 43.918 158.208 44.1732 158.454 44.5059C158.7 44.8385 158.885 45.2373 159.008 45.7021C159.135 46.1624 159.199 46.6751 159.199 47.2402ZM157.928 47.3838V47.2402C157.928 46.8711 157.889 46.5247 157.812 46.2012C157.734 45.873 157.613 45.5859 157.449 45.3398C157.29 45.0892 157.085 44.8932 156.834 44.752C156.583 44.6061 156.285 44.5332 155.938 44.5332C155.619 44.5332 155.341 44.5879 155.104 44.6973C154.872 44.8066 154.674 44.9548 154.51 45.1416C154.346 45.3239 154.211 45.5335 154.106 45.7705C154.006 46.0029 153.931 46.2445 153.881 46.4951V48.2656C153.972 48.5846 154.1 48.8854 154.264 49.168C154.428 49.446 154.646 49.6715 154.92 49.8447C155.193 50.0133 155.537 50.0977 155.952 50.0977C156.294 50.0977 156.588 50.027 156.834 49.8857C157.085 49.7399 157.29 49.5417 157.449 49.291C157.613 49.0404 157.734 48.7533 157.812 48.4297C157.889 48.1016 157.928 47.7529 157.928 47.3838ZM160.478 47.3838V47.2266C160.478 46.6934 160.555 46.1989 160.71 45.7432C160.865 45.2829 161.088 44.8841 161.38 44.5469C161.672 44.2051 162.025 43.9408 162.439 43.7539C162.854 43.5625 163.319 43.4668 163.834 43.4668C164.354 43.4668 164.821 43.5625 165.235 43.7539C165.655 43.9408 166.01 44.2051 166.302 44.5469C166.598 44.8841 166.824 45.2829 166.979 45.7432C167.133 46.1989 167.211 46.6934 167.211 47.2266V47.3838C167.211 47.917 167.133 48.4115 166.979 48.8672C166.824 49.3229 166.598 49.7217 166.302 50.0635C166.01 50.4007 165.657 50.665 165.242 50.8564C164.832 51.0433 164.367 51.1367 163.848 51.1367C163.328 51.1367 162.861 51.0433 162.446 50.8564C162.032 50.665 161.676 50.4007 161.38 50.0635C161.088 49.7217 160.865 49.3229 160.71 48.8672C160.555 48.4115 160.478 47.917 160.478 47.3838ZM161.742 47.2266V47.3838C161.742 47.7529 161.785 48.1016 161.872 48.4297C161.959 48.7533 162.089 49.0404 162.262 49.291C162.439 49.5417 162.66 49.7399 162.925 49.8857C163.189 50.027 163.497 50.0977 163.848 50.0977C164.194 50.0977 164.497 50.027 164.757 49.8857C165.021 49.7399 165.24 49.5417 165.413 49.291C165.586 49.0404 165.716 48.7533 165.803 48.4297C165.894 48.1016 165.939 47.7529 165.939 47.3838V47.2266C165.939 46.862 165.894 46.5179 165.803 46.1943C165.716 45.8662 165.584 45.5768 165.406 45.3262C165.233 45.071 165.014 44.8704 164.75 44.7246C164.49 44.5788 164.185 44.5059 163.834 44.5059C163.488 44.5059 163.182 44.5788 162.918 44.7246C162.658 44.8704 162.439 45.071 162.262 45.3262C162.089 45.5768 161.959 45.8662 161.872 46.1943C161.785 46.5179 161.742 46.862 161.742 47.2266ZM170.171 43.6035V51H168.899V43.6035H170.171ZM168.804 41.6416C168.804 41.4365 168.865 41.2633 168.988 41.1221C169.116 40.9808 169.303 40.9102 169.549 40.9102C169.79 40.9102 169.975 40.9808 170.103 41.1221C170.235 41.2633 170.301 41.4365 170.301 41.6416C170.301 41.8376 170.235 42.0062 170.103 42.1475C169.975 42.2842 169.79 42.3525 169.549 42.3525C169.303 42.3525 169.116 42.2842 168.988 42.1475C168.865 42.0062 168.804 41.8376 168.804 41.6416ZM173.466 45.1826V51H172.201V43.6035H173.397L173.466 45.1826ZM173.165 47.0215L172.639 47.001C172.643 46.4951 172.718 46.028 172.864 45.5996C173.01 45.1667 173.215 44.7907 173.479 44.4717C173.744 44.1527 174.058 43.9066 174.423 43.7334C174.792 43.5557 175.2 43.4668 175.646 43.4668C176.011 43.4668 176.339 43.5169 176.631 43.6172C176.923 43.7129 177.171 43.8678 177.376 44.082C177.586 44.2962 177.745 44.5742 177.854 44.916C177.964 45.2533 178.019 45.6657 178.019 46.1533V51H176.747V46.1396C176.747 45.7523 176.69 45.4424 176.576 45.21C176.462 44.973 176.296 44.8021 176.077 44.6973C175.858 44.5879 175.59 44.5332 175.271 44.5332C174.956 44.5332 174.669 44.5993 174.409 44.7314C174.154 44.8636 173.933 45.0459 173.746 45.2783C173.564 45.5107 173.42 45.7773 173.315 46.0781C173.215 46.3743 173.165 46.6888 173.165 47.0215ZM183.036 43.6035V44.5742H179.037V43.6035H183.036ZM180.391 41.8057H181.655V49.168C181.655 49.4186 181.694 49.6077 181.771 49.7354C181.849 49.863 181.949 49.9473 182.072 49.9883C182.195 50.0293 182.327 50.0498 182.469 50.0498C182.574 50.0498 182.683 50.0407 182.797 50.0225C182.915 49.9997 183.004 49.9814 183.063 49.9678L183.07 51C182.97 51.0319 182.838 51.0615 182.674 51.0889C182.514 51.1208 182.321 51.1367 182.093 51.1367C181.783 51.1367 181.498 51.0752 181.238 50.9521C180.979 50.8291 180.771 50.624 180.616 50.3369C180.466 50.0452 180.391 49.6533 180.391 49.1611V41.8057ZM185.777 45.0732V51H184.506V43.6035H185.709L185.777 45.0732ZM185.518 47.0215L184.93 47.001C184.934 46.4951 185 46.028 185.128 45.5996C185.256 45.1667 185.445 44.7907 185.695 44.4717C185.946 44.1527 186.258 43.9066 186.632 43.7334C187.006 43.5557 187.438 43.4668 187.931 43.4668C188.277 43.4668 188.596 43.5169 188.888 43.6172C189.179 43.7129 189.432 43.8656 189.646 44.0752C189.861 44.2848 190.027 44.5537 190.146 44.8818C190.264 45.21 190.323 45.6064 190.323 46.0713V51H189.059V46.1328C189.059 45.7454 188.993 45.4355 188.86 45.2031C188.733 44.9707 188.55 44.8021 188.313 44.6973C188.076 44.5879 187.799 44.5332 187.479 44.5332C187.106 44.5332 186.794 44.5993 186.543 44.7314C186.292 44.8636 186.092 45.0459 185.941 45.2783C185.791 45.5107 185.682 45.7773 185.613 46.0781C185.549 46.3743 185.518 46.6888 185.518 47.0215ZM190.31 46.3242L189.462 46.584C189.466 46.1784 189.533 45.7887 189.66 45.415C189.792 45.0413 189.981 44.7087 190.228 44.417C190.478 44.1253 190.786 43.8952 191.15 43.7266C191.515 43.5534 191.932 43.4668 192.401 43.4668C192.798 43.4668 193.149 43.5192 193.454 43.624C193.764 43.7288 194.024 43.8906 194.233 44.1094C194.448 44.3236 194.609 44.5993 194.719 44.9365C194.828 45.2738 194.883 45.6748 194.883 46.1396V51H193.611V46.126C193.611 45.7113 193.545 45.39 193.413 45.1621C193.285 44.9297 193.103 44.7679 192.866 44.6768C192.634 44.5811 192.356 44.5332 192.032 44.5332C191.754 44.5332 191.508 44.5811 191.294 44.6768C191.08 44.7725 190.9 44.9046 190.754 45.0732C190.608 45.2373 190.496 45.4264 190.419 45.6406C190.346 45.8548 190.31 46.0827 190.31 46.3242ZM199.866 51.1367C199.351 51.1367 198.884 51.0501 198.465 50.877C198.05 50.6992 197.692 50.4508 197.392 50.1318C197.095 49.8128 196.868 49.4346 196.708 48.9971C196.549 48.5596 196.469 48.0811 196.469 47.5615V47.2744C196.469 46.6729 196.558 46.1374 196.735 45.668C196.913 45.194 197.155 44.793 197.46 44.4648C197.765 44.1367 198.112 43.8883 198.499 43.7197C198.886 43.5511 199.287 43.4668 199.702 43.4668C200.231 43.4668 200.687 43.5579 201.069 43.7402C201.457 43.9225 201.773 44.1777 202.02 44.5059C202.266 44.8294 202.448 45.2122 202.566 45.6543C202.685 46.0918 202.744 46.5703 202.744 47.0898V47.6572H197.221V46.625H201.479V46.5293C201.461 46.2012 201.393 45.8822 201.274 45.5723C201.16 45.2624 200.978 45.0072 200.728 44.8066C200.477 44.6061 200.135 44.5059 199.702 44.5059C199.415 44.5059 199.151 44.5674 198.909 44.6904C198.668 44.8089 198.46 44.9867 198.287 45.2236C198.114 45.4606 197.979 45.75 197.884 46.0918C197.788 46.4336 197.74 46.8278 197.74 47.2744V47.5615C197.74 47.9124 197.788 48.2428 197.884 48.5527C197.984 48.8581 198.128 49.127 198.314 49.3594C198.506 49.5918 198.736 49.7741 199.005 49.9062C199.278 50.0384 199.588 50.1045 199.935 50.1045C200.381 50.1045 200.759 50.0133 201.069 49.8311C201.379 49.6488 201.65 49.4049 201.883 49.0996L202.648 49.708C202.489 49.9495 202.286 50.1797 202.04 50.3984C201.794 50.6172 201.491 50.7949 201.131 50.9316C200.775 51.0684 200.354 51.1367 199.866 51.1367ZM205.485 45.1826V51H204.221V43.6035H205.417L205.485 45.1826ZM205.185 47.0215L204.658 47.001C204.663 46.4951 204.738 46.028 204.884 45.5996C205.03 45.1667 205.235 44.7907 205.499 44.4717C205.763 44.1527 206.078 43.9066 206.442 43.7334C206.812 43.5557 207.219 43.4668 207.666 43.4668C208.031 43.4668 208.359 43.5169 208.65 43.6172C208.942 43.7129 209.19 43.8678 209.396 44.082C209.605 44.2962 209.765 44.5742 209.874 44.916C209.983 45.2533 210.038 45.6657 210.038 46.1533V51H208.767V46.1396C208.767 45.7523 208.71 45.4424 208.596 45.21C208.482 44.973 208.315 44.8021 208.097 44.6973C207.878 44.5879 207.609 44.5332 207.29 44.5332C206.976 44.5332 206.688 44.5993 206.429 44.7314C206.174 44.8636 205.952 45.0459 205.766 45.2783C205.583 45.5107 205.44 45.7773 205.335 46.0781C205.235 46.3743 205.185 46.6888 205.185 47.0215ZM215.056 43.6035V44.5742H211.057V43.6035H215.056ZM212.41 41.8057H213.675V49.168C213.675 49.4186 213.714 49.6077 213.791 49.7354C213.868 49.863 213.969 49.9473 214.092 49.9883C214.215 50.0293 214.347 50.0498 214.488 50.0498C214.593 50.0498 214.702 50.0407 214.816 50.0225C214.935 49.9997 215.024 49.9814 215.083 49.9678L215.09 51C214.99 51.0319 214.857 51.0615 214.693 51.0889C214.534 51.1208 214.34 51.1367 214.112 51.1367C213.802 51.1367 213.518 51.0752 213.258 50.9521C212.998 50.8291 212.791 50.624 212.636 50.3369C212.485 50.0452 212.41 49.6533 212.41 49.1611V41.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M63.2007 70.707V80H62.0264V72.1733L59.6587 73.0366V71.9766L63.0166 70.707H63.2007Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"51.7295",y:"64.5",width:"21",height:"21",rx:"10.5",stroke:"#4272F9"}),(0,h.createElement)("rect",{x:"77.7295",y:"74.5",width:"55.7706",height:"1",stroke:"#4272F9"}),(0,h.createElement)("rect",{x:"138",y:"64",width:"22",height:"22",rx:"11",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M152.168 79.0352V80H146.118V79.1558L149.146 75.7852C149.519 75.3704 149.806 75.0192 150.01 74.7314C150.217 74.4395 150.361 74.1792 150.441 73.9507C150.526 73.7179 150.568 73.481 150.568 73.2397C150.568 72.9351 150.505 72.66 150.378 72.4146C150.255 72.1649 150.073 71.966 149.832 71.8179C149.591 71.6698 149.299 71.5957 148.956 71.5957C148.545 71.5957 148.203 71.6761 147.927 71.8369C147.657 71.9935 147.454 72.2135 147.318 72.4971C147.183 72.7806 147.115 73.1064 147.115 73.4746H145.941C145.941 72.9541 146.055 72.478 146.283 72.0464C146.512 71.6147 146.851 71.272 147.299 71.0181C147.748 70.7599 148.3 70.6309 148.956 70.6309C149.54 70.6309 150.039 70.7345 150.454 70.9419C150.869 71.145 151.186 71.4328 151.406 71.8052C151.63 72.1733 151.742 72.605 151.742 73.1001C151.742 73.3709 151.696 73.646 151.603 73.9253C151.514 74.2004 151.389 74.4754 151.228 74.7505C151.072 75.0256 150.888 75.2964 150.676 75.563C150.469 75.8296 150.247 76.092 150.01 76.3501L147.534 79.0352H152.168Z",fill:"white"}),(0,h.createElement)("rect",{x:"164",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"198.936",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"172.734",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"207.67",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"181.468",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"216.404",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"190.202",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("path",{d:"M234.596 74.8013H235.434C235.845 74.8013 236.183 74.7336 236.45 74.5981C236.721 74.4585 236.922 74.2702 237.053 74.0332C237.188 73.792 237.256 73.5212 237.256 73.2207C237.256 72.8652 237.197 72.5669 237.078 72.3257C236.96 72.0845 236.782 71.9025 236.545 71.7798C236.308 71.6571 236.008 71.5957 235.644 71.5957C235.314 71.5957 235.022 71.6613 234.768 71.7925C234.518 71.9194 234.321 72.1014 234.177 72.3384C234.038 72.5754 233.968 72.8547 233.968 73.1763H232.794C232.794 72.7065 232.912 72.2791 233.149 71.894C233.386 71.509 233.718 71.2021 234.146 70.9736C234.577 70.7451 235.077 70.6309 235.644 70.6309C236.202 70.6309 236.691 70.7303 237.11 70.9292C237.529 71.1239 237.855 71.4159 238.088 71.8052C238.32 72.1903 238.437 72.6706 238.437 73.2461C238.437 73.4788 238.382 73.7285 238.272 73.9951C238.166 74.2575 237.999 74.5029 237.77 74.7314C237.546 74.96 237.254 75.1483 236.894 75.2964C236.535 75.4403 236.103 75.5122 235.599 75.5122H234.596V74.8013ZM234.596 75.7661V75.0615H235.599C236.188 75.0615 236.674 75.1313 237.059 75.271C237.444 75.4106 237.747 75.5968 237.967 75.8296C238.191 76.0623 238.348 76.3184 238.437 76.5977C238.53 76.8727 238.576 77.1478 238.576 77.4229C238.576 77.8545 238.502 78.2375 238.354 78.5718C238.21 78.9061 238.005 79.1896 237.739 79.4224C237.476 79.6551 237.167 79.8307 236.812 79.9492C236.456 80.0677 236.069 80.127 235.65 80.127C235.248 80.127 234.869 80.0698 234.514 79.9556C234.163 79.8413 233.852 79.6763 233.581 79.4604C233.31 79.2404 233.098 78.9717 232.946 78.6543C232.794 78.3327 232.718 77.9666 232.718 77.5562H233.892C233.892 77.8778 233.962 78.1592 234.101 78.4004C234.245 78.6416 234.448 78.8299 234.711 78.9653C234.977 79.0965 235.29 79.1621 235.65 79.1621C236.01 79.1621 236.319 79.1007 236.577 78.978C236.839 78.8511 237.04 78.6606 237.18 78.4067C237.324 78.1528 237.396 77.8333 237.396 77.4482C237.396 77.0632 237.315 76.7479 237.155 76.5024C236.994 76.2528 236.765 76.0687 236.469 75.9502C236.177 75.8275 235.832 75.7661 235.434 75.7661H234.596Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"225.271",y:"64.5",width:"21",height:"21",rx:"10.5",stroke:"#64748B"}),(0,h.createElement)("path",{d:"M47.2939 97.8979V101.281C47.1797 101.451 46.9977 101.641 46.748 101.853C46.4984 102.06 46.1535 102.242 45.7134 102.398C45.2775 102.551 44.7147 102.627 44.0249 102.627C43.4621 102.627 42.9437 102.53 42.4697 102.335C42 102.136 41.5916 101.848 41.2446 101.472C40.9019 101.091 40.6353 100.63 40.4448 100.088C40.2586 99.542 40.1655 98.9242 40.1655 98.2344V97.5171C40.1655 96.8273 40.2459 96.2116 40.4067 95.6699C40.5718 95.1283 40.813 94.6691 41.1304 94.2925C41.4478 93.9116 41.8371 93.6239 42.2983 93.4292C42.7596 93.2303 43.2886 93.1309 43.8853 93.1309C44.592 93.1309 45.1823 93.2536 45.6562 93.499C46.1344 93.7402 46.5068 94.0745 46.7734 94.502C47.0443 94.9294 47.2178 95.416 47.2939 95.9619H46.0688C46.0138 95.6276 45.9038 95.3229 45.7388 95.0479C45.578 94.7728 45.3473 94.5527 45.0469 94.3877C44.7464 94.2184 44.3592 94.1338 43.8853 94.1338C43.4578 94.1338 43.0876 94.2121 42.7744 94.3687C42.4613 94.5252 42.2031 94.7495 42 95.0415C41.7969 95.3335 41.6445 95.6868 41.543 96.1016C41.4456 96.5163 41.397 96.9839 41.397 97.5044V98.2344C41.397 98.7676 41.4583 99.2437 41.5811 99.6626C41.708 100.082 41.8879 100.439 42.1206 100.735C42.3534 101.027 42.6305 101.25 42.9521 101.402C43.278 101.554 43.6377 101.63 44.0312 101.63C44.4671 101.63 44.8205 101.594 45.0913 101.522C45.3621 101.446 45.5737 101.357 45.7261 101.256C45.8784 101.15 45.9948 101.051 46.0752 100.958V98.8882H43.936V97.8979H47.2939ZM51.9976 102.627C51.5194 102.627 51.0856 102.547 50.6963 102.386C50.3112 102.221 49.979 101.99 49.6997 101.694C49.4246 101.398 49.2131 101.046 49.0649 100.64C48.9168 100.234 48.8428 99.7896 48.8428 99.3071V99.0405C48.8428 98.4819 48.9253 97.9847 49.0903 97.5488C49.2554 97.1087 49.4797 96.7363 49.7632 96.4316C50.0467 96.127 50.3683 95.8963 50.728 95.7397C51.0877 95.5832 51.4601 95.5049 51.8452 95.5049C52.3361 95.5049 52.7593 95.5895 53.1147 95.7588C53.4744 95.9281 53.7686 96.165 53.9971 96.4697C54.2256 96.7702 54.3949 97.1257 54.5049 97.5361C54.6149 97.9424 54.6699 98.3867 54.6699 98.8691V99.396H49.541V98.4375H53.4956V98.3486C53.4787 98.0439 53.4152 97.7477 53.3052 97.46C53.1994 97.1722 53.0301 96.9352 52.7974 96.749C52.5646 96.5628 52.2472 96.4697 51.8452 96.4697C51.5786 96.4697 51.3332 96.5269 51.1089 96.6411C50.8846 96.7511 50.6921 96.9162 50.5312 97.1362C50.3704 97.3563 50.2456 97.625 50.1567 97.9424C50.0679 98.2598 50.0234 98.6258 50.0234 99.0405V99.3071C50.0234 99.633 50.0679 99.9398 50.1567 100.228C50.2498 100.511 50.3831 100.761 50.5566 100.977C50.7344 101.192 50.9481 101.362 51.1978 101.484C51.4517 101.607 51.7394 101.668 52.061 101.668C52.4757 101.668 52.827 101.584 53.1147 101.415C53.4025 101.245 53.6543 101.019 53.8701 100.735L54.5811 101.3C54.4329 101.525 54.2446 101.738 54.0161 101.941C53.7876 102.145 53.5062 102.31 53.1719 102.437C52.8418 102.563 52.4504 102.627 51.9976 102.627ZM57.2153 97.0981V102.5H56.041V95.6318H57.1519L57.2153 97.0981ZM56.936 98.8057L56.4473 98.7866C56.4515 98.3169 56.5213 97.8831 56.6567 97.4854C56.7922 97.0833 56.9826 96.7342 57.228 96.438C57.4735 96.1418 57.7655 95.9132 58.104 95.7524C58.4468 95.5874 58.8255 95.5049 59.2402 95.5049C59.5788 95.5049 59.8835 95.5514 60.1543 95.6445C60.4251 95.7334 60.6558 95.8773 60.8462 96.0762C61.0409 96.2751 61.189 96.5332 61.2905 96.8506C61.3921 97.1637 61.4429 97.5467 61.4429 97.9995V102.5H60.2622V97.9868C60.2622 97.6271 60.2093 97.3394 60.1035 97.1235C59.9977 96.9035 59.8433 96.7448 59.6401 96.6475C59.437 96.5459 59.1873 96.4951 58.8911 96.4951C58.5991 96.4951 58.3325 96.5565 58.0913 96.6792C57.8543 96.8019 57.6491 96.9712 57.4756 97.187C57.3063 97.4028 57.173 97.6504 57.0757 97.9297C56.9826 98.2048 56.936 98.4967 56.936 98.8057ZM66.0767 102.627C65.5985 102.627 65.1647 102.547 64.7754 102.386C64.3903 102.221 64.0581 101.99 63.7788 101.694C63.5037 101.398 63.2922 101.046 63.144 100.64C62.9959 100.234 62.9219 99.7896 62.9219 99.3071V99.0405C62.9219 98.4819 63.0044 97.9847 63.1694 97.5488C63.3345 97.1087 63.5588 96.7363 63.8423 96.4316C64.1258 96.127 64.4474 95.8963 64.8071 95.7397C65.1668 95.5832 65.5392 95.5049 65.9243 95.5049C66.4152 95.5049 66.8384 95.5895 67.1938 95.7588C67.5535 95.9281 67.8477 96.165 68.0762 96.4697C68.3047 96.7702 68.474 97.1257 68.584 97.5361C68.694 97.9424 68.749 98.3867 68.749 98.8691V99.396H63.6201V98.4375H67.5747V98.3486C67.5578 98.0439 67.4943 97.7477 67.3843 97.46C67.2785 97.1722 67.1092 96.9352 66.8765 96.749C66.6437 96.5628 66.3263 96.4697 65.9243 96.4697C65.6577 96.4697 65.4123 96.5269 65.188 96.6411C64.9637 96.7511 64.7712 96.9162 64.6104 97.1362C64.4495 97.3563 64.3247 97.625 64.2358 97.9424C64.147 98.2598 64.1025 98.6258 64.1025 99.0405V99.3071C64.1025 99.633 64.147 99.9398 64.2358 100.228C64.3289 100.511 64.4622 100.761 64.6357 100.977C64.8135 101.192 65.0272 101.362 65.2769 101.484C65.5308 101.607 65.8185 101.668 66.1401 101.668C66.5549 101.668 66.9061 101.584 67.1938 101.415C67.4816 101.245 67.7334 101.019 67.9492 100.735L68.6602 101.3C68.512 101.525 68.3237 101.738 68.0952 101.941C67.8667 102.145 67.5853 102.31 67.251 102.437C66.9209 102.563 66.5295 102.627 66.0767 102.627ZM71.2944 96.7109V102.5H70.1201V95.6318H71.2627L71.2944 96.7109ZM73.4399 95.5938L73.4336 96.6855C73.3363 96.6644 73.2432 96.6517 73.1543 96.6475C73.0697 96.639 72.9723 96.6348 72.8623 96.6348C72.5915 96.6348 72.3524 96.6771 72.145 96.7617C71.9377 96.8464 71.762 96.9648 71.6182 97.1172C71.4743 97.2695 71.36 97.4515 71.2754 97.6631C71.195 97.8704 71.1421 98.099 71.1167 98.3486L70.7866 98.5391C70.7866 98.1243 70.8268 97.735 70.9072 97.3711C70.9919 97.0072 71.1209 96.6855 71.2944 96.4062C71.4679 96.1227 71.688 95.9027 71.9546 95.7461C72.2254 95.5853 72.547 95.5049 72.9194 95.5049C73.0041 95.5049 73.1014 95.5155 73.2114 95.5366C73.3215 95.5535 73.3976 95.5726 73.4399 95.5938ZM78.3213 101.326V97.79C78.3213 97.5192 78.2663 97.2843 78.1562 97.0854C78.0505 96.8823 77.8896 96.7257 77.6738 96.6157C77.458 96.5057 77.1914 96.4507 76.874 96.4507C76.5778 96.4507 76.3175 96.5015 76.0933 96.603C75.8732 96.7046 75.6997 96.8379 75.5728 97.0029C75.45 97.168 75.3887 97.3457 75.3887 97.5361H74.2144C74.2144 97.2907 74.2778 97.0474 74.4048 96.8062C74.5317 96.5649 74.7137 96.347 74.9507 96.1523C75.1919 95.9535 75.4797 95.7969 75.814 95.6826C76.1525 95.5641 76.5291 95.5049 76.9438 95.5049C77.4432 95.5049 77.8833 95.5895 78.2642 95.7588C78.6493 95.9281 78.9497 96.1841 79.1655 96.5269C79.3856 96.8654 79.4956 97.2907 79.4956 97.8027V101.002C79.4956 101.23 79.5146 101.474 79.5527 101.732C79.5951 101.99 79.6564 102.212 79.7368 102.398V102.5H78.5117C78.4525 102.365 78.4059 102.185 78.3721 101.96C78.3382 101.732 78.3213 101.52 78.3213 101.326ZM78.5244 98.3359L78.5371 99.1611H77.3501C77.0158 99.1611 76.7174 99.1886 76.4551 99.2437C76.1927 99.2944 75.9727 99.3727 75.7949 99.4785C75.6172 99.5843 75.4818 99.7176 75.3887 99.8784C75.2956 100.035 75.249 100.219 75.249 100.431C75.249 100.646 75.2977 100.843 75.395 101.021C75.4924 101.199 75.6383 101.34 75.833 101.446C76.0319 101.548 76.2752 101.599 76.563 101.599C76.9227 101.599 77.2401 101.522 77.5151 101.37C77.7902 101.218 78.0081 101.032 78.1689 100.812C78.334 100.591 78.4229 100.378 78.4355 100.17L78.937 100.735C78.9074 100.913 78.827 101.11 78.6958 101.326C78.5646 101.542 78.389 101.749 78.1689 101.948C77.9531 102.142 77.695 102.305 77.3945 102.437C77.0983 102.563 76.764 102.627 76.3916 102.627C75.9261 102.627 75.5177 102.536 75.1665 102.354C74.8195 102.172 74.5487 101.929 74.354 101.624C74.1636 101.315 74.0684 100.97 74.0684 100.589C74.0684 100.221 74.1403 99.8975 74.2842 99.6182C74.4281 99.3346 74.6354 99.0998 74.9062 98.9136C75.1771 98.7231 75.5029 98.5793 75.8838 98.4819C76.2646 98.3846 76.6899 98.3359 77.1597 98.3359H78.5244ZM82.6187 92.75V102.5H81.438V92.75H82.6187Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M139.955 97.8979V101.281C139.84 101.451 139.658 101.641 139.409 101.853C139.159 102.06 138.814 102.242 138.374 102.398C137.938 102.551 137.375 102.627 136.686 102.627C136.123 102.627 135.604 102.53 135.13 102.335C134.661 102.136 134.252 101.848 133.905 101.472C133.562 101.091 133.296 100.63 133.105 100.088C132.919 99.542 132.826 98.9242 132.826 98.2344V97.5171C132.826 96.8273 132.907 96.2116 133.067 95.6699C133.232 95.1283 133.474 94.6691 133.791 94.2925C134.108 93.9116 134.498 93.6239 134.959 93.4292C135.42 93.2303 135.949 93.1309 136.546 93.1309C137.253 93.1309 137.843 93.2536 138.317 93.499C138.795 93.7402 139.167 94.0745 139.434 94.502C139.705 94.9294 139.878 95.416 139.955 95.9619H138.729C138.674 95.6276 138.564 95.3229 138.399 95.0479C138.239 94.7728 138.008 94.5527 137.708 94.3877C137.407 94.2184 137.02 94.1338 136.546 94.1338C136.118 94.1338 135.748 94.2121 135.435 94.3687C135.122 94.5252 134.864 94.7495 134.661 95.0415C134.458 95.3335 134.305 95.6868 134.204 96.1016C134.106 96.5163 134.058 96.9839 134.058 97.5044V98.2344C134.058 98.7676 134.119 99.2437 134.242 99.6626C134.369 100.082 134.549 100.439 134.781 100.735C135.014 101.027 135.291 101.25 135.613 101.402C135.939 101.554 136.298 101.63 136.692 101.63C137.128 101.63 137.481 101.594 137.752 101.522C138.023 101.446 138.234 101.357 138.387 101.256C138.539 101.15 138.655 101.051 138.736 100.958V98.8882H136.597V97.8979H139.955ZM146.01 100.913V95.6318H147.191V102.5H146.067L146.01 100.913ZM146.232 99.4658L146.721 99.4531C146.721 99.9102 146.673 100.333 146.575 100.723C146.482 101.108 146.33 101.442 146.118 101.726C145.907 102.009 145.629 102.231 145.287 102.392C144.944 102.549 144.527 102.627 144.036 102.627C143.702 102.627 143.395 102.578 143.116 102.481C142.841 102.384 142.604 102.233 142.405 102.03C142.206 101.827 142.051 101.563 141.941 101.237C141.836 100.911 141.783 100.52 141.783 100.062V95.6318H142.957V100.075C142.957 100.384 142.991 100.64 143.059 100.843C143.131 101.042 143.226 101.201 143.344 101.319C143.467 101.434 143.602 101.514 143.75 101.561C143.903 101.607 144.059 101.63 144.22 101.63C144.72 101.63 145.115 101.535 145.407 101.345C145.699 101.15 145.909 100.89 146.036 100.564C146.167 100.234 146.232 99.8678 146.232 99.4658ZM151.831 102.627C151.353 102.627 150.919 102.547 150.53 102.386C150.145 102.221 149.812 101.99 149.533 101.694C149.258 101.398 149.047 101.046 148.898 100.64C148.75 100.234 148.676 99.7896 148.676 99.3071V99.0405C148.676 98.4819 148.759 97.9847 148.924 97.5488C149.089 97.1087 149.313 96.7363 149.597 96.4316C149.88 96.127 150.202 95.8963 150.562 95.7397C150.921 95.5832 151.294 95.5049 151.679 95.5049C152.17 95.5049 152.593 95.5895 152.948 95.7588C153.308 95.9281 153.602 96.165 153.831 96.4697C154.059 96.7702 154.228 97.1257 154.338 97.5361C154.448 97.9424 154.503 98.3867 154.503 98.8691V99.396H149.375V98.4375H153.329V98.3486C153.312 98.0439 153.249 97.7477 153.139 97.46C153.033 97.1722 152.864 96.9352 152.631 96.749C152.398 96.5628 152.081 96.4697 151.679 96.4697C151.412 96.4697 151.167 96.5269 150.942 96.6411C150.718 96.7511 150.526 96.9162 150.365 97.1362C150.204 97.3563 150.079 97.625 149.99 97.9424C149.901 98.2598 149.857 98.6258 149.857 99.0405V99.3071C149.857 99.633 149.901 99.9398 149.99 100.228C150.083 100.511 150.217 100.761 150.39 100.977C150.568 101.192 150.782 101.362 151.031 101.484C151.285 101.607 151.573 101.668 151.895 101.668C152.309 101.668 152.66 101.584 152.948 101.415C153.236 101.245 153.488 101.019 153.704 100.735L154.415 101.3C154.266 101.525 154.078 101.738 153.85 101.941C153.621 102.145 153.34 102.31 153.005 102.437C152.675 102.563 152.284 102.627 151.831 102.627ZM159.874 100.678C159.874 100.509 159.835 100.352 159.759 100.208C159.687 100.06 159.537 99.9271 159.309 99.8086C159.084 99.6859 158.746 99.5801 158.293 99.4912C157.912 99.4108 157.567 99.3156 157.258 99.2056C156.954 99.0955 156.693 98.9622 156.478 98.8057C156.266 98.6491 156.103 98.465 155.989 98.2534C155.875 98.0418 155.817 97.7943 155.817 97.5107C155.817 97.2399 155.877 96.9839 155.995 96.7427C156.118 96.5015 156.289 96.2878 156.509 96.1016C156.734 95.9154 157.002 95.7694 157.315 95.6636C157.629 95.5578 157.978 95.5049 158.363 95.5049C158.913 95.5049 159.383 95.6022 159.772 95.7969C160.161 95.9915 160.46 96.2518 160.667 96.5776C160.874 96.8993 160.978 97.2568 160.978 97.6504H159.804C159.804 97.46 159.747 97.2759 159.632 97.0981C159.522 96.9162 159.359 96.766 159.144 96.6475C158.932 96.529 158.672 96.4697 158.363 96.4697C158.037 96.4697 157.772 96.5205 157.569 96.6221C157.37 96.7194 157.224 96.8442 157.131 96.9966C157.042 97.1489 156.998 97.3097 156.998 97.479C156.998 97.606 157.019 97.7202 157.062 97.8218C157.108 97.9191 157.188 98.0101 157.303 98.0947C157.417 98.1751 157.578 98.2513 157.785 98.3232C157.993 98.3952 158.257 98.4671 158.579 98.5391C159.141 98.666 159.605 98.8184 159.969 98.9961C160.333 99.1738 160.604 99.3918 160.781 99.6499C160.959 99.908 161.048 100.221 161.048 100.589C161.048 100.89 160.984 101.165 160.857 101.415C160.735 101.664 160.555 101.88 160.318 102.062C160.085 102.24 159.806 102.379 159.48 102.481C159.158 102.578 158.797 102.627 158.395 102.627C157.789 102.627 157.277 102.519 156.858 102.303C156.439 102.087 156.122 101.808 155.906 101.465C155.69 101.123 155.583 100.761 155.583 100.38H156.763C156.78 100.701 156.873 100.958 157.042 101.148C157.212 101.334 157.419 101.467 157.665 101.548C157.91 101.624 158.153 101.662 158.395 101.662C158.716 101.662 158.985 101.62 159.201 101.535C159.421 101.451 159.588 101.334 159.702 101.186C159.816 101.038 159.874 100.869 159.874 100.678ZM165.466 95.6318V96.5332H161.752V95.6318H165.466ZM163.009 93.9624H164.184V100.799C164.184 101.032 164.22 101.207 164.292 101.326C164.363 101.444 164.457 101.522 164.571 101.561C164.685 101.599 164.808 101.618 164.939 101.618C165.036 101.618 165.138 101.609 165.244 101.592C165.354 101.571 165.436 101.554 165.491 101.542L165.498 102.5C165.404 102.53 165.282 102.557 165.129 102.583C164.981 102.612 164.801 102.627 164.59 102.627C164.302 102.627 164.038 102.57 163.796 102.456C163.555 102.341 163.363 102.151 163.219 101.884C163.079 101.613 163.009 101.25 163.009 100.792V93.9624Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M226.556 93.7578V103H225.331V93.7578H226.556ZM229.781 97.5981V103H228.606V96.1318H229.717L229.781 97.5981ZM229.501 99.3057L229.013 99.2866C229.017 98.8169 229.087 98.3831 229.222 97.9854C229.358 97.5833 229.548 97.2342 229.793 96.938C230.039 96.6418 230.331 96.4132 230.669 96.2524C231.012 96.0874 231.391 96.0049 231.806 96.0049C232.144 96.0049 232.449 96.0514 232.72 96.1445C232.991 96.2334 233.221 96.3773 233.412 96.5762C233.606 96.7751 233.754 97.0332 233.856 97.3506C233.958 97.6637 234.008 98.0467 234.008 98.4995V103H232.828V98.4868C232.828 98.1271 232.775 97.8394 232.669 97.6235C232.563 97.4035 232.409 97.2448 232.206 97.1475C232.002 97.0459 231.753 96.9951 231.457 96.9951C231.165 96.9951 230.898 97.0565 230.657 97.1792C230.42 97.3019 230.215 97.4712 230.041 97.687C229.872 97.9028 229.738 98.1504 229.641 98.4297C229.548 98.7048 229.501 98.9967 229.501 99.3057ZM237.544 103H236.37V95.4082C236.37 94.9131 236.458 94.4963 236.636 94.1577C236.818 93.8149 237.078 93.5568 237.417 93.3833C237.756 93.2056 238.158 93.1167 238.623 93.1167C238.758 93.1167 238.894 93.1252 239.029 93.1421C239.169 93.159 239.304 93.1844 239.436 93.2183L239.372 94.1768C239.283 94.1556 239.182 94.1408 239.067 94.1323C238.957 94.1239 238.847 94.1196 238.737 94.1196C238.488 94.1196 238.272 94.1704 238.09 94.272C237.912 94.3693 237.777 94.5132 237.684 94.7036C237.59 94.894 237.544 95.1289 237.544 95.4082V103ZM239.004 96.1318V97.0332H235.284V96.1318H239.004ZM240 99.6421V99.4961C240 99.001 240.072 98.5418 240.216 98.1187C240.36 97.6912 240.568 97.321 240.838 97.0078C241.109 96.6904 241.437 96.445 241.822 96.2715C242.207 96.0938 242.639 96.0049 243.117 96.0049C243.6 96.0049 244.033 96.0938 244.418 96.2715C244.808 96.445 245.138 96.6904 245.409 97.0078C245.684 97.321 245.893 97.6912 246.037 98.1187C246.181 98.5418 246.253 99.001 246.253 99.4961V99.6421C246.253 100.137 246.181 100.596 246.037 101.02C245.893 101.443 245.684 101.813 245.409 102.13C245.138 102.444 244.81 102.689 244.425 102.867C244.044 103.04 243.612 103.127 243.13 103.127C242.647 103.127 242.214 103.04 241.829 102.867C241.444 102.689 241.113 102.444 240.838 102.13C240.568 101.813 240.36 101.443 240.216 101.02C240.072 100.596 240 100.137 240 99.6421ZM241.175 99.4961V99.6421C241.175 99.9849 241.215 100.309 241.295 100.613C241.376 100.914 241.496 101.18 241.657 101.413C241.822 101.646 242.028 101.83 242.273 101.965C242.518 102.097 242.804 102.162 243.13 102.162C243.451 102.162 243.733 102.097 243.974 101.965C244.22 101.83 244.423 101.646 244.583 101.413C244.744 101.18 244.865 100.914 244.945 100.613C245.03 100.309 245.072 99.9849 245.072 99.6421V99.4961C245.072 99.1576 245.03 98.8381 244.945 98.5376C244.865 98.2329 244.742 97.9642 244.577 97.7314C244.416 97.4945 244.213 97.3083 243.968 97.1729C243.727 97.0374 243.443 96.9697 243.117 96.9697C242.796 96.9697 242.512 97.0374 242.267 97.1729C242.025 97.3083 241.822 97.4945 241.657 97.7314C241.496 97.9642 241.376 98.2329 241.295 98.5376C241.215 98.8381 241.175 99.1576 241.175 99.4961Z",fill:"#0F172A"})),{FieldSettingsWrapper:Vc}=JetFBComponents,{__:Hc}=wp.i18n,{SelectControl:hc}=wp.components,{InspectorControls:bc,useBlockProps:Mc}=wp.blockEditor?wp.blockEditor:wp.editor,{RawHTML:Lc}=wp.element,{useState:gc,useEffect:Zc}=wp.element,yc=JSON.parse('{"apiVersion":3,"name":"jet-forms/progress-bar","category":"jet-form-builder-elements","keywords":["jetformbuilder","progress","steps","bar","break","form"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Progress Bar","icon":"\\n\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"progress_type":{"type":"string","default":"default"},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:Ec}=wp.i18n,{name:wc,icon:vc=""}=yc,_c={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:vc}}),description:Ec("Use the Progress Bar block to add the navigation and show users on what page they are now and how many pages are left to finish the form.","jet-form-builder"),edit:function(e){const C=Mc(),{attributes:t,setAttributes:l,editProps:{uniqKey:r}}=e,[n,a]=gc(""),i=e=>{const C=JetFormProgressBar.progress_types.find(C=>e===C.value);return C?C.html:""};return Zc(()=>{a(i(t.progress_type))},[t.progress_type]),t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},fc):[(0,h.createElement)(bc,{key:r("InspectorControls")},(0,h.createElement)(Vc,{key:r("FieldSettingsWrapper"),...e},1{l({progress_type:e}),a(i(e))},options:JetFormProgressBar.progress_types}))),(0,h.createElement)("div",{key:r("viewBlock"),...C},(0,h.createElement)(Lc,null,n))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}}},kc=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_76_1348)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,h.createElement)("rect",{x:"82",y:"29",width:"113",height:"86",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M103.46 54.4844C103.46 54.252 103.424 54.0469 103.351 53.8691C103.282 53.6868 103.159 53.5228 102.981 53.377C102.808 53.2311 102.567 53.0921 102.257 52.96C101.951 52.8278 101.564 52.6934 101.095 52.5566C100.603 52.4108 100.158 52.249 99.7617 52.0713C99.3652 51.889 99.0257 51.6816 98.7432 51.4492C98.4606 51.2168 98.2441 50.9502 98.0938 50.6494C97.9434 50.3486 97.8682 50.0046 97.8682 49.6172C97.8682 49.2298 97.9479 48.8721 98.1074 48.5439C98.2669 48.2158 98.4948 47.931 98.791 47.6895C99.0918 47.4434 99.4495 47.252 99.8643 47.1152C100.279 46.9785 100.742 46.9102 101.252 46.9102C101.999 46.9102 102.633 47.0537 103.152 47.3408C103.676 47.6234 104.075 47.9948 104.349 48.4551C104.622 48.9108 104.759 49.3984 104.759 49.918H103.446C103.446 49.5443 103.367 49.2139 103.207 48.9268C103.048 48.6351 102.806 48.4072 102.482 48.2432C102.159 48.0745 101.749 47.9902 101.252 47.9902C100.783 47.9902 100.395 48.0609 100.09 48.2021C99.7845 48.3434 99.5566 48.5348 99.4062 48.7764C99.2604 49.0179 99.1875 49.2936 99.1875 49.6035C99.1875 49.8132 99.2308 50.0046 99.3174 50.1777C99.4085 50.3464 99.5475 50.5036 99.7344 50.6494C99.9258 50.7952 100.167 50.9297 100.459 51.0527C100.755 51.1758 101.108 51.2943 101.519 51.4082C102.084 51.5677 102.571 51.7454 102.981 51.9414C103.392 52.1374 103.729 52.3584 103.993 52.6045C104.262 52.846 104.46 53.1217 104.588 53.4316C104.72 53.737 104.786 54.0833 104.786 54.4707C104.786 54.8763 104.704 55.2432 104.54 55.5713C104.376 55.8994 104.141 56.1797 103.836 56.4121C103.531 56.6445 103.164 56.8245 102.735 56.9521C102.312 57.0752 101.838 57.1367 101.313 57.1367C100.853 57.1367 100.4 57.0729 99.9531 56.9453C99.5111 56.8177 99.1077 56.6263 98.7432 56.3711C98.3831 56.1159 98.0938 55.8014 97.875 55.4277C97.6608 55.0495 97.5537 54.612 97.5537 54.1152H98.8662C98.8662 54.457 98.9323 54.751 99.0645 54.9971C99.1966 55.2386 99.3766 55.4391 99.6045 55.5986C99.8369 55.7581 100.099 55.8766 100.391 55.9541C100.687 56.027 100.994 56.0635 101.313 56.0635C101.774 56.0635 102.163 55.9997 102.482 55.8721C102.801 55.7445 103.043 55.5622 103.207 55.3252C103.376 55.0882 103.46 54.8079 103.46 54.4844ZM109.373 49.6035V50.5742H105.374V49.6035H109.373ZM106.728 47.8057H107.992V55.168C107.992 55.4186 108.031 55.6077 108.108 55.7354C108.186 55.863 108.286 55.9473 108.409 55.9883C108.532 56.0293 108.664 56.0498 108.806 56.0498C108.91 56.0498 109.02 56.0407 109.134 56.0225C109.252 55.9997 109.341 55.9814 109.4 55.9678L109.407 57C109.307 57.0319 109.175 57.0615 109.011 57.0889C108.851 57.1208 108.658 57.1367 108.43 57.1367C108.12 57.1367 107.835 57.0752 107.575 56.9521C107.315 56.8291 107.108 56.624 106.953 56.3369C106.803 56.0452 106.728 55.6533 106.728 55.1611V47.8057ZM113.926 57.1367C113.411 57.1367 112.944 57.0501 112.524 56.877C112.11 56.6992 111.752 56.4508 111.451 56.1318C111.155 55.8128 110.927 55.4346 110.768 54.9971C110.608 54.5596 110.528 54.0811 110.528 53.5615V53.2744C110.528 52.6729 110.617 52.1374 110.795 51.668C110.973 51.194 111.214 50.793 111.52 50.4648C111.825 50.1367 112.171 49.8883 112.559 49.7197C112.946 49.5511 113.347 49.4668 113.762 49.4668C114.29 49.4668 114.746 49.5579 115.129 49.7402C115.516 49.9225 115.833 50.1777 116.079 50.5059C116.325 50.8294 116.507 51.2122 116.626 51.6543C116.744 52.0918 116.804 52.5703 116.804 53.0898V53.6572H111.28V52.625H115.539V52.5293C115.521 52.2012 115.452 51.8822 115.334 51.5723C115.22 51.2624 115.038 51.0072 114.787 50.8066C114.536 50.6061 114.195 50.5059 113.762 50.5059C113.475 50.5059 113.21 50.5674 112.969 50.6904C112.727 50.8089 112.52 50.9867 112.347 51.2236C112.174 51.4606 112.039 51.75 111.943 52.0918C111.848 52.4336 111.8 52.8278 111.8 53.2744V53.5615C111.8 53.9124 111.848 54.2428 111.943 54.5527C112.044 54.8581 112.187 55.127 112.374 55.3594C112.565 55.5918 112.796 55.7741 113.064 55.9062C113.338 56.0384 113.648 56.1045 113.994 56.1045C114.441 56.1045 114.819 56.0133 115.129 55.8311C115.439 55.6488 115.71 55.4049 115.942 55.0996L116.708 55.708C116.549 55.9495 116.346 56.1797 116.1 56.3984C115.854 56.6172 115.55 56.7949 115.19 56.9316C114.835 57.0684 114.413 57.1367 113.926 57.1367ZM119.545 51.0254V59.8438H118.273V49.6035H119.436L119.545 51.0254ZM124.528 53.2402V53.3838C124.528 53.9215 124.465 54.4206 124.337 54.8809C124.209 55.3366 124.022 55.7331 123.776 56.0703C123.535 56.4076 123.236 56.6696 122.881 56.8564C122.525 57.0433 122.118 57.1367 121.657 57.1367C121.188 57.1367 120.773 57.0592 120.413 56.9043C120.053 56.7493 119.748 56.5238 119.497 56.2275C119.246 55.9313 119.046 55.5758 118.896 55.1611C118.75 54.7464 118.649 54.2793 118.595 53.7598V52.9941C118.649 52.4473 118.752 51.9574 118.902 51.5244C119.053 51.0915 119.251 50.7223 119.497 50.417C119.748 50.1071 120.051 49.8724 120.406 49.7129C120.762 49.5488 121.172 49.4668 121.637 49.4668C122.102 49.4668 122.514 49.5579 122.874 49.7402C123.234 49.918 123.537 50.1732 123.783 50.5059C124.029 50.8385 124.214 51.2373 124.337 51.7021C124.465 52.1624 124.528 52.6751 124.528 53.2402ZM123.257 53.3838V53.2402C123.257 52.8711 123.218 52.5247 123.141 52.2012C123.063 51.873 122.942 51.5859 122.778 51.3398C122.619 51.0892 122.414 50.8932 122.163 50.752C121.912 50.6061 121.614 50.5332 121.268 50.5332C120.949 50.5332 120.671 50.5879 120.434 50.6973C120.201 50.8066 120.003 50.9548 119.839 51.1416C119.675 51.3239 119.54 51.5335 119.436 51.7705C119.335 52.0029 119.26 52.2445 119.21 52.4951V54.2656C119.301 54.5846 119.429 54.8854 119.593 55.168C119.757 55.446 119.976 55.6715 120.249 55.8447C120.522 56.0133 120.867 56.0977 121.281 56.0977C121.623 56.0977 121.917 56.027 122.163 55.8857C122.414 55.7399 122.619 55.5417 122.778 55.291C122.942 55.0404 123.063 54.7533 123.141 54.4297C123.218 54.1016 123.257 53.7529 123.257 53.3838ZM130.161 46.9922V57H128.896V48.5713L126.347 49.501V48.3594L129.963 46.9922H130.161Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"97.5",y:"70.5",width:"82",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"97.5",y:"70.5",width:"82",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("rect",{x:"205",y:"29",width:"113",height:"86",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M226.46 54.4844C226.46 54.252 226.424 54.0469 226.351 53.8691C226.282 53.6868 226.159 53.5228 225.981 53.377C225.808 53.2311 225.567 53.0921 225.257 52.96C224.951 52.8278 224.564 52.6934 224.095 52.5566C223.603 52.4108 223.158 52.249 222.762 52.0713C222.365 51.889 222.026 51.6816 221.743 51.4492C221.461 51.2168 221.244 50.9502 221.094 50.6494C220.943 50.3486 220.868 50.0046 220.868 49.6172C220.868 49.2298 220.948 48.8721 221.107 48.5439C221.267 48.2158 221.495 47.931 221.791 47.6895C222.092 47.4434 222.45 47.252 222.864 47.1152C223.279 46.9785 223.742 46.9102 224.252 46.9102C224.999 46.9102 225.633 47.0537 226.152 47.3408C226.676 47.6234 227.075 47.9948 227.349 48.4551C227.622 48.9108 227.759 49.3984 227.759 49.918H226.446C226.446 49.5443 226.367 49.2139 226.207 48.9268C226.048 48.6351 225.806 48.4072 225.482 48.2432C225.159 48.0745 224.749 47.9902 224.252 47.9902C223.783 47.9902 223.395 48.0609 223.09 48.2021C222.785 48.3434 222.557 48.5348 222.406 48.7764C222.26 49.0179 222.188 49.2936 222.188 49.6035C222.188 49.8132 222.231 50.0046 222.317 50.1777C222.409 50.3464 222.548 50.5036 222.734 50.6494C222.926 50.7952 223.167 50.9297 223.459 51.0527C223.755 51.1758 224.108 51.2943 224.519 51.4082C225.084 51.5677 225.571 51.7454 225.981 51.9414C226.392 52.1374 226.729 52.3584 226.993 52.6045C227.262 52.846 227.46 53.1217 227.588 53.4316C227.72 53.737 227.786 54.0833 227.786 54.4707C227.786 54.8763 227.704 55.2432 227.54 55.5713C227.376 55.8994 227.141 56.1797 226.836 56.4121C226.531 56.6445 226.164 56.8245 225.735 56.9521C225.312 57.0752 224.838 57.1367 224.313 57.1367C223.853 57.1367 223.4 57.0729 222.953 56.9453C222.511 56.8177 222.108 56.6263 221.743 56.3711C221.383 56.1159 221.094 55.8014 220.875 55.4277C220.661 55.0495 220.554 54.612 220.554 54.1152H221.866C221.866 54.457 221.932 54.751 222.064 54.9971C222.197 55.2386 222.377 55.4391 222.604 55.5986C222.837 55.7581 223.099 55.8766 223.391 55.9541C223.687 56.027 223.994 56.0635 224.313 56.0635C224.774 56.0635 225.163 55.9997 225.482 55.8721C225.801 55.7445 226.043 55.5622 226.207 55.3252C226.376 55.0882 226.46 54.8079 226.46 54.4844ZM232.373 49.6035V50.5742H228.374V49.6035H232.373ZM229.728 47.8057H230.992V55.168C230.992 55.4186 231.031 55.6077 231.108 55.7354C231.186 55.863 231.286 55.9473 231.409 55.9883C231.532 56.0293 231.664 56.0498 231.806 56.0498C231.91 56.0498 232.02 56.0407 232.134 56.0225C232.252 55.9997 232.341 55.9814 232.4 55.9678L232.407 57C232.307 57.0319 232.175 57.0615 232.011 57.0889C231.851 57.1208 231.658 57.1367 231.43 57.1367C231.12 57.1367 230.835 57.0752 230.575 56.9521C230.315 56.8291 230.108 56.624 229.953 56.3369C229.803 56.0452 229.728 55.6533 229.728 55.1611V47.8057ZM236.926 57.1367C236.411 57.1367 235.944 57.0501 235.524 56.877C235.11 56.6992 234.752 56.4508 234.451 56.1318C234.155 55.8128 233.927 55.4346 233.768 54.9971C233.608 54.5596 233.528 54.0811 233.528 53.5615V53.2744C233.528 52.6729 233.617 52.1374 233.795 51.668C233.973 51.194 234.214 50.793 234.52 50.4648C234.825 50.1367 235.171 49.8883 235.559 49.7197C235.946 49.5511 236.347 49.4668 236.762 49.4668C237.29 49.4668 237.746 49.5579 238.129 49.7402C238.516 49.9225 238.833 50.1777 239.079 50.5059C239.325 50.8294 239.507 51.2122 239.626 51.6543C239.744 52.0918 239.804 52.5703 239.804 53.0898V53.6572H234.28V52.625H238.539V52.5293C238.521 52.2012 238.452 51.8822 238.334 51.5723C238.22 51.2624 238.038 51.0072 237.787 50.8066C237.536 50.6061 237.195 50.5059 236.762 50.5059C236.475 50.5059 236.21 50.5674 235.969 50.6904C235.727 50.8089 235.52 50.9867 235.347 51.2236C235.174 51.4606 235.039 51.75 234.943 52.0918C234.848 52.4336 234.8 52.8278 234.8 53.2744V53.5615C234.8 53.9124 234.848 54.2428 234.943 54.5527C235.044 54.8581 235.187 55.127 235.374 55.3594C235.565 55.5918 235.796 55.7741 236.064 55.9062C236.338 56.0384 236.648 56.1045 236.994 56.1045C237.441 56.1045 237.819 56.0133 238.129 55.8311C238.439 55.6488 238.71 55.4049 238.942 55.0996L239.708 55.708C239.549 55.9495 239.346 56.1797 239.1 56.3984C238.854 56.6172 238.55 56.7949 238.19 56.9316C237.835 57.0684 237.413 57.1367 236.926 57.1367ZM242.545 51.0254V59.8438H241.273V49.6035H242.436L242.545 51.0254ZM247.528 53.2402V53.3838C247.528 53.9215 247.465 54.4206 247.337 54.8809C247.209 55.3366 247.022 55.7331 246.776 56.0703C246.535 56.4076 246.236 56.6696 245.881 56.8564C245.525 57.0433 245.118 57.1367 244.657 57.1367C244.188 57.1367 243.773 57.0592 243.413 56.9043C243.053 56.7493 242.748 56.5238 242.497 56.2275C242.246 55.9313 242.046 55.5758 241.896 55.1611C241.75 54.7464 241.649 54.2793 241.595 53.7598V52.9941C241.649 52.4473 241.752 51.9574 241.902 51.5244C242.053 51.0915 242.251 50.7223 242.497 50.417C242.748 50.1071 243.051 49.8724 243.406 49.7129C243.762 49.5488 244.172 49.4668 244.637 49.4668C245.102 49.4668 245.514 49.5579 245.874 49.7402C246.234 49.918 246.537 50.1732 246.783 50.5059C247.029 50.8385 247.214 51.2373 247.337 51.7021C247.465 52.1624 247.528 52.6751 247.528 53.2402ZM246.257 53.3838V53.2402C246.257 52.8711 246.218 52.5247 246.141 52.2012C246.063 51.873 245.942 51.5859 245.778 51.3398C245.619 51.0892 245.414 50.8932 245.163 50.752C244.912 50.6061 244.614 50.5332 244.268 50.5332C243.949 50.5332 243.671 50.5879 243.434 50.6973C243.201 50.8066 243.003 50.9548 242.839 51.1416C242.675 51.3239 242.54 51.5335 242.436 51.7705C242.335 52.0029 242.26 52.2445 242.21 52.4951V54.2656C242.301 54.5846 242.429 54.8854 242.593 55.168C242.757 55.446 242.976 55.6715 243.249 55.8447C243.522 56.0133 243.867 56.0977 244.281 56.0977C244.623 56.0977 244.917 56.027 245.163 55.8857C245.414 55.7399 245.619 55.5417 245.778 55.291C245.942 55.0404 246.063 54.7533 246.141 54.4297C246.218 54.1016 246.257 53.7529 246.257 53.3838ZM255.526 55.9609V57H249.012V56.0908L252.272 52.4609C252.674 52.0143 252.983 51.6361 253.202 51.3262C253.425 51.0117 253.58 50.7314 253.667 50.4854C253.758 50.2347 253.804 49.9795 253.804 49.7197C253.804 49.3916 253.735 49.0954 253.599 48.8311C253.466 48.5622 253.271 48.348 253.011 48.1885C252.751 48.029 252.437 47.9492 252.067 47.9492C251.625 47.9492 251.256 48.0358 250.96 48.209C250.668 48.3776 250.45 48.6146 250.304 48.9199C250.158 49.2253 250.085 49.5762 250.085 49.9727H248.82C248.82 49.4121 248.943 48.8994 249.189 48.4346C249.436 47.9697 249.8 47.6006 250.283 47.3271C250.766 47.0492 251.361 46.9102 252.067 46.9102C252.696 46.9102 253.234 47.0218 253.681 47.2451C254.127 47.4639 254.469 47.7738 254.706 48.1748C254.948 48.5713 255.068 49.0361 255.068 49.5693C255.068 49.861 255.018 50.1572 254.918 50.458C254.822 50.7542 254.688 51.0505 254.515 51.3467C254.346 51.6429 254.148 51.9346 253.92 52.2217C253.697 52.5088 253.457 52.7913 253.202 53.0693L250.536 55.9609H255.526Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"220.5",y:"70.5",width:"82",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"220.5",y:"70.5",width:"82",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M15 57C15 54.7909 16.7909 53 19 53H82V91H19C16.7909 91 15 89.2091 15 87V57Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M30.9985 74.1641C30.9985 73.9482 30.9647 73.7578 30.897 73.5928C30.8335 73.4235 30.7192 73.2712 30.5542 73.1357C30.3934 73.0003 30.1691 72.8713 29.8813 72.7485C29.5978 72.6258 29.2381 72.501 28.8022 72.374C28.3452 72.2386 27.9326 72.0884 27.5645 71.9233C27.1963 71.7541 26.881 71.5615 26.6187 71.3457C26.3563 71.1299 26.1553 70.8823 26.0156 70.603C25.876 70.3237 25.8062 70.0042 25.8062 69.6445C25.8062 69.2848 25.8802 68.9526 26.0283 68.6479C26.1764 68.3433 26.388 68.0788 26.6631 67.8545C26.9424 67.626 27.2746 67.4482 27.6597 67.3213C28.0448 67.1943 28.4743 67.1309 28.9482 67.1309C29.6423 67.1309 30.2305 67.2642 30.7129 67.5308C31.1995 67.7931 31.5698 68.138 31.8237 68.5654C32.0776 68.9886 32.2046 69.4414 32.2046 69.9238H30.9858C30.9858 69.5768 30.9118 69.27 30.7637 69.0034C30.6156 68.7326 30.3913 68.521 30.0908 68.3687C29.7904 68.2121 29.4095 68.1338 28.9482 68.1338C28.5124 68.1338 28.1527 68.1994 27.8691 68.3306C27.5856 68.4618 27.374 68.6395 27.2344 68.8638C27.099 69.0881 27.0312 69.3441 27.0312 69.6318C27.0312 69.8265 27.0715 70.0042 27.1519 70.165C27.2365 70.3216 27.3656 70.4676 27.5391 70.603C27.7168 70.7384 27.9411 70.8633 28.2119 70.9775C28.487 71.0918 28.8149 71.2018 29.1958 71.3076C29.7205 71.4557 30.1733 71.6208 30.5542 71.8027C30.9351 71.9847 31.2482 72.1899 31.4937 72.4185C31.7433 72.6427 31.9274 72.8988 32.0459 73.1865C32.1686 73.4701 32.23 73.7917 32.23 74.1514C32.23 74.528 32.1538 74.8687 32.0015 75.1733C31.8491 75.478 31.6312 75.7383 31.3477 75.9541C31.0641 76.1699 30.7235 76.3371 30.3257 76.4556C29.9321 76.5698 29.492 76.627 29.0054 76.627C28.578 76.627 28.1569 76.5677 27.7422 76.4492C27.3317 76.3307 26.9572 76.153 26.6187 75.916C26.2843 75.679 26.0156 75.387 25.8125 75.04C25.6136 74.6888 25.5142 74.2826 25.5142 73.8213H26.7329C26.7329 74.1387 26.7943 74.4116 26.917 74.6401C27.0397 74.8644 27.2069 75.0506 27.4185 75.1987C27.6343 75.3468 27.8776 75.4569 28.1484 75.5288C28.4235 75.5965 28.7091 75.6304 29.0054 75.6304C29.4328 75.6304 29.7946 75.5711 30.0908 75.4526C30.387 75.3341 30.6113 75.1649 30.7637 74.9448C30.9202 74.7248 30.9985 74.4645 30.9985 74.1641ZM36.4893 69.6318V70.5332H32.7759V69.6318H36.4893ZM34.0327 67.9624H35.207V74.7988C35.207 75.0316 35.243 75.2072 35.3149 75.3257C35.3869 75.4442 35.48 75.5225 35.5942 75.5605C35.7085 75.5986 35.8312 75.6177 35.9624 75.6177C36.0597 75.6177 36.1613 75.6092 36.2671 75.5923C36.3771 75.5711 36.4596 75.5542 36.5146 75.5415L36.521 76.5C36.4279 76.5296 36.3052 76.5571 36.1528 76.5825C36.0047 76.6121 35.8249 76.627 35.6133 76.627C35.3255 76.627 35.061 76.5698 34.8198 76.4556C34.5786 76.3413 34.3861 76.1509 34.2422 75.8843C34.1025 75.6134 34.0327 75.2495 34.0327 74.7925V67.9624ZM41.9165 75.3257V71.79C41.9165 71.5192 41.8615 71.2843 41.7515 71.0854C41.6457 70.8823 41.4849 70.7257 41.269 70.6157C41.0532 70.5057 40.7866 70.4507 40.4692 70.4507C40.173 70.4507 39.9128 70.5015 39.6885 70.603C39.4684 70.7046 39.2949 70.8379 39.168 71.0029C39.0452 71.168 38.9839 71.3457 38.9839 71.5361H37.8096C37.8096 71.2907 37.873 71.0474 38 70.8062C38.127 70.5649 38.3089 70.347 38.5459 70.1523C38.7871 69.9535 39.0749 69.7969 39.4092 69.6826C39.7477 69.5641 40.1243 69.5049 40.5391 69.5049C41.0384 69.5049 41.4785 69.5895 41.8594 69.7588C42.2445 69.9281 42.5449 70.1841 42.7607 70.5269C42.9808 70.8654 43.0908 71.2907 43.0908 71.8027V75.002C43.0908 75.2305 43.1099 75.4738 43.1479 75.7319C43.1903 75.9901 43.2516 76.2122 43.332 76.3984V76.5H42.1069C42.0477 76.3646 42.0011 76.1847 41.9673 75.9604C41.9334 75.7319 41.9165 75.5203 41.9165 75.3257ZM42.1196 72.3359L42.1323 73.1611H40.9453C40.611 73.1611 40.3127 73.1886 40.0503 73.2437C39.7879 73.2944 39.5679 73.3727 39.3901 73.4785C39.2124 73.5843 39.077 73.7176 38.9839 73.8784C38.8908 74.035 38.8442 74.2191 38.8442 74.4307C38.8442 74.6465 38.8929 74.8433 38.9902 75.021C39.0876 75.1987 39.2336 75.3405 39.4282 75.4463C39.6271 75.5479 39.8704 75.5986 40.1582 75.5986C40.5179 75.5986 40.8353 75.5225 41.1104 75.3701C41.3854 75.2178 41.6034 75.0316 41.7642 74.8115C41.9292 74.5915 42.0181 74.3778 42.0308 74.1704L42.5322 74.7354C42.5026 74.9131 42.4222 75.1099 42.291 75.3257C42.1598 75.5415 41.9842 75.7489 41.7642 75.9478C41.5483 76.1424 41.2902 76.3053 40.9897 76.4365C40.6935 76.5635 40.3592 76.627 39.9868 76.627C39.5213 76.627 39.113 76.536 38.7617 76.354C38.4147 76.172 38.1439 75.9287 37.9492 75.624C37.7588 75.3151 37.6636 74.9702 37.6636 74.5894C37.6636 74.2212 37.7355 73.8975 37.8794 73.6182C38.0233 73.3346 38.2306 73.0998 38.5015 72.9136C38.7723 72.7231 39.0981 72.5793 39.479 72.4819C39.8599 72.3846 40.2852 72.3359 40.7549 72.3359H42.1196ZM46.1123 70.7109V76.5H44.938V69.6318H46.0806L46.1123 70.7109ZM48.2578 69.5938L48.2515 70.6855C48.1541 70.6644 48.061 70.6517 47.9722 70.6475C47.8875 70.639 47.7902 70.6348 47.6802 70.6348C47.4093 70.6348 47.1702 70.6771 46.9629 70.7617C46.7555 70.8464 46.5799 70.9648 46.436 71.1172C46.2922 71.2695 46.1779 71.4515 46.0933 71.6631C46.0129 71.8704 45.96 72.099 45.9346 72.3486L45.6045 72.5391C45.6045 72.1243 45.6447 71.735 45.7251 71.3711C45.8097 71.0072 45.9388 70.6855 46.1123 70.4062C46.2858 70.1227 46.5059 69.9027 46.7725 69.7461C47.0433 69.5853 47.3649 69.5049 47.7373 69.5049C47.8219 69.5049 47.9193 69.5155 48.0293 69.5366C48.1393 69.5535 48.2155 69.5726 48.2578 69.5938ZM52.5361 69.6318V70.5332H48.8228V69.6318H52.5361ZM50.0796 67.9624H51.2539V74.7988C51.2539 75.0316 51.2899 75.2072 51.3618 75.3257C51.4338 75.4442 51.5269 75.5225 51.6411 75.5605C51.7554 75.5986 51.8781 75.6177 52.0093 75.6177C52.1066 75.6177 52.2082 75.6092 52.314 75.5923C52.424 75.5711 52.5065 75.5542 52.5615 75.5415L52.5679 76.5C52.4748 76.5296 52.3521 76.5571 52.1997 76.5825C52.0516 76.6121 51.8717 76.627 51.6602 76.627C51.3724 76.627 51.1079 76.5698 50.8667 76.4556C50.6255 76.3413 50.4329 76.1509 50.2891 75.8843C50.1494 75.6134 50.0796 75.2495 50.0796 74.7925V67.9624Z",fill:"white"}),(0,h.createElement)("path",{d:"M61.1813 76.5188V67.4813L65.7 72.0001L61.1813 76.5188Z",fill:"white"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_76_1348"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})))),{__:jc}=wp.i18n,{PanelBody:xc}=wp.components,{BlockClassName:Fc}=JetFBComponents,{useUniqKey:Bc}=JetFBHooks,{InspectorControls:Ac,useBlockProps:Pc}=wp.blockEditor,Sc=JSON.parse('{"apiVersion":3,"name":"jet-forms/form-break-start","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","break","pagebreak","formbreak","start"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Form Page Start","icon":"\\n\\n\\n","attributes":{"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{name:Nc,icon:Ic=""}=Sc,{__:Tc}=wp.i18n,Oc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ic}}),description:Tc("Add the Form Page Start block after the two first form fields to start the new page not from the form beginning but from the block.","jet-form-builder"),edit:function(e){const C=Pc({className:"jet-form-builder__bottom-line"}),t=Bc();return e.attributes.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},kc):[(0,h.createElement)(Ac,{key:t("InspectorControls")},(0,h.createElement)(xc,{title:jc("Advanced","jet-form-builder")},(0,h.createElement)(Fc,null))),(0,h.createElement)("div",{key:t("viewBlock"),...C},(0,h.createElement)("span",null,jc("Form Break Start","jet-form-builder")))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}}},{__:Jc}=wp.i18n,Rc="jet-forms/media-field",qc="jet-forms/form-break-field",Dc="jet-forms/date-field",zc="jet-forms/datetime-field",Uc="jet-forms/radio-field",Gc="jet-forms/checkbox-field",Wc="jet-forms/select-field",Kc="jet-forms/text-field",$c=[{attribute:"is_timestamp",to:[Dc,zc],message:Jc("Check this if you want to send value of this field as timestamp instead of plain datetime","jet-form-builder")},{attribute:"default",to:[Dc],message:Jc("Plain date should be in yyyy-mm-dd format","jet-form-builder")},{attribute:"default",to:[zc],message:Jc("Plain datetime should be in yyyy-MM-ddThh:mm format","jet-form-builder")},{attribute:"page_break_disabled",to:[qc],message:Jc('Text to show if next page button is disabled. For example - "Fill required fields" etc.',"jet-form-builder")},{attribute:"insert_attachment",to:[Rc],message:Jc("If checked new attachment will be inserted for uploaded file.Note: work only for logged-in users!","jet-form-builder")},{attribute:"allowed_mimes",to:[Rc],message:Jc("If no MIME type selected will allow all types. Hold down the Ctrl (windows) / Command (Mac) button to select multiple options.","jet-form-builder")},{attribute:"value_from_meta",to:[Uc,Gc,Wc],message:Jc("By default post/term ID is used as value. Here you can set meta field name to use its value as form field value","jet-form-builder")},{attribute:"calculated_value_from_key",to:[Uc,Gc,Wc],message:Jc("Here you can set meta field name to use its value as calculated value for current form field","jet-form-builder")},{attribute:"generator_field",to:[Uc,Gc,Wc],message:Jc("For Numbers range generator set field with max range value","jet-form-builder"),conditions:{generator_function:"num_range"}},{attribute:"switch_on_change",to:[Wc],message:Jc("Check this to switch page to next on current value change","jet-form-builder")},{attribute:"prefix_suffix",to:["jet-forms/range-field"],message:Jc("For space before or after text use:  ","jet-form-builder")},{attribute:"calc_hidden",to:["jet-forms/repeater-field"],message:Jc("Check this to hide calculated field","jet-form-builder")},{attribute:"input_mask_default",to:[Kc],message:Jc("Examples: (999) 999-9999 - static mask, 9-a{1,3}9{1,3} - mask with dynamic syntax Default masking definitions: 9 - numeric, a - alphabetical, * - alphanumeric","jet-form-builder")},{attribute:"input_mask_datetime_link",to:[Kc],message:"https://robinherbots.github.io/Inputmask/#/documentation/datetime"},{attribute:"default",to:["jet-forms/time-field"],message:Jc("Plain time should be in hh:mm:ss format","jet-form-builder")},{attribute:"label_progress",to:[qc],message:Jc("To set/change a last progress name add a Form Break Field at the very end of the form.","jet-form-builder")}],{applyFilters:Yc}=wp.hooks,Xc=Yc("jet.fb.register.editProps",[{name:"uniqKey",callable:e=>C=>`${e.name}/${C}`},{name:"blockName",callable:e=>e.name},{name:"attrHelp",callable:e=>{const C={};return $c.forEach(t=>{t.to.includes(e.name)&&t.message&&(C[t.attribute]=t)}),(e,t={})=>{if(!(e in C))return"";const l=C[e];if(!("conditions"in l))return l.message;for(const e in l.conditions)if(!(e in t)||l.conditions[e]!==t[e])return;return l.message}}}]),{registerBlockType:Qc}=wp.blocks,{applyFilters:ed}=wp.hooks,Cd=ed("jet.fb.register.fields",[e,C,r,l,n,a,i,o,s,c,d,m,u,p,f,V,H]),td=e=>{if(!e)return;const{metadata:C,settings:t,name:l}=e;t.edit=function(e){const{edit:C}=e.settings,t={};if("useEditProps"in e.settings){const{useEditProps:C}=e.settings;C.forEach(C=>{const l=Xc.find(e=>C===e.name);l&&(t[C]=l.callable(e))}),delete e.settings.useEditProps}return e=>(0,h.createElement)(C,{...e,editProps:{...t}})}(e),t.hasOwnProperty("jfbResolveBlock")||(t.jfbResolveBlock=function(){const e={clientId:this.clientId,name:this.name};return this.attributes?.name?{...e,fields:[{name:this.attributes.name,label:this.attributes.label||this.attributes.name,value:this.attributes.name}]}:e}),!t.hasOwnProperty("__experimentalLabel")&&C.attributes.hasOwnProperty("name")&&(t.__experimentalLabel=(e,{context:t})=>{switch(t){case"list-view":return e.name||C.title;case"accessibility":return e.name?.length?`${C.title} (${e.name})`:C.title;default:return C.title}}),Qc(l,{...C,...t})};function ld(e,C){let{metadata:{title:t}}=e,{metadata:{title:l}}=C;t=t||e.settings?.title,l=l||C.settings?.title;try{return t.localeCompare(l)}catch(e){return 0}}!function(){const e=[];(0,vC.applyFilters)("jet.fb.register.plugins",[Pe,qe,EC,Xe,tC]).forEach(C=>{const{base:{name:t,condition:l=!0}}=C;if(!l)return!1;const r=(0,vC.applyFilters)(`jet.fb.register.plugin.${t}.before`,[]);r&&e.push(...r),e.push(C);const n=(0,vC.applyFilters)(`jet.fb.register.plugin.${t}.after`,[]);n&&e.push(...n)}),e.forEach(_C)}(),function(e=Cd){e.sort(ld),e.forEach(ed("jet.fb.register.fields.handler",td))}()})()})(); \ No newline at end of file +(()=>{var e={5207(e,C,t){"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".s1ip8zmx.buddypress-active>div{height:auto;}\n",""]);const i=a},8525(e,C,t){"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".mqz01w{gap:1em;}\n.mqjtk22{background-color:#ffffff;}\n",""]);const i=a},5545(e,C,t){"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".f13zt8l2{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;gap:12px;}.f13zt8l2 .sortable-chosen{box-shadow:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)) 0 1px 4px;}\n.am4szan{border:1px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));margin-bottom:1px;}.am4szan .components-panel__body-title{background-color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));}.am4szan .components-panel__body-title .components-button{color:var(--wp-components-color-accent-inverted, #fff);}.am4szan.is-opened{background-color:rgba(var(--wp-admin-theme-color--rgb), .07);}.am4szan.is-opened .components-panel__body-title{background-color:transparent;}.am4szan.is-opened .components-panel__body-title .components-button{color:#1e1e1e;}.am4szan .components-panel__body-title:hover{background-color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));opacity:0.7;}.am4szan .components-panel__body-title:hover .components-button{color:var(--wp-components-color-accent-inverted, #fff);}\n.s8wdwdc.buddypress-active{height:auto;}\n",""]);const i=a},935(e){"use strict";e.exports=function(e){var C=[];return C.toString=function(){return this.map(function(C){var t="",l=void 0!==C[5];return C[4]&&(t+="@supports (".concat(C[4],") {")),C[2]&&(t+="@media ".concat(C[2]," {")),l&&(t+="@layer".concat(C[5].length>0?" ".concat(C[5]):""," {")),t+=e(C),l&&(t+="}"),C[2]&&(t+="}"),C[4]&&(t+="}"),t}).join("")},C.i=function(e,t,l,r,n){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(l)for(var i=0;i0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=n),t&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=t):c[2]=t),r&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=r):c[4]="".concat(r)),C.push(c))}},C}},6758(e){"use strict";e.exports=function(e){return e[1]}},6987(e,C,t){var l=t(5207);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("6979fc60",l,!1,{})},2065(e,C,t){var l=t(8525);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("cbeea060",l,!1,{})},1669(e,C,t){var l=t(5545);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("2bfdb416",l,!1,{})},611(e,C,t){"use strict";function l(e,C){for(var t=[],l={},r=0;rp});var r="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!r)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var n={},a=r&&(document.head||document.getElementsByTagName("head")[0]),i=null,o=0,s=!1,c=function(){},d=null,m="data-vue-ssr-id",u="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function p(e,C,t,r){s=t,d=r||{};var a=l(e,C);return f(a),function(C){for(var t=[],r=0;rt.parts.length&&(l.parts.length=t.parts.length)}else{var a=[];for(r=0;r{var C=e&&e.__esModule?()=>e.default:()=>e;return t.d(C,{a:C}),C},t.d=(e,C)=>{for(var l in C)t.o(C,l)&&!t.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:C[l]})},t.o=(e,C)=>Object.prototype.hasOwnProperty.call(e,C),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e={};t.r(e),t.d(e,{metadata:()=>YC,name:()=>et,settings:()=>tt});var C={};t.r(C),t.d(C,{metadata:()=>fl,name:()=>El,settings:()=>vl});var l={};t.r(l),t.d(l,{metadata:()=>er,name:()=>lr,settings:()=>nr});var r={};t.r(r),t.d(r,{metadata:()=>jr,name:()=>Br,settings:()=>Pr});var n={};t.r(n),t.d(n,{metadata:()=>Kr,name:()=>Xr,settings:()=>en});var a={};t.r(a),t.d(a,{metadata:()=>an,name:()=>cn,settings:()=>mn});var i={};t.r(i),t.d(i,{metadata:()=>bn,name:()=>gn,settings:()=>yn});var o={};t.r(o),t.d(o,{metadata:()=>la,name:()=>ma,settings:()=>pa});var s={};t.r(s),t.d(s,{metadata:()=>qa,name:()=>Ua,settings:()=>Wa});var c={};t.r(c),t.d(c,{metadata:()=>bi,name:()=>gi,settings:()=>yi});var d={};t.r(d),t.d(d,{metadata:()=>Wi,name:()=>Yi,settings:()=>Qi});var m={};t.r(m),t.d(m,{metadata:()=>uo,name:()=>Ro,settings:()=>Do});var u={};t.r(u),t.d(u,{metadata:()=>fs,name:()=>hs,settings:()=>Ms});var p={};t.r(p),t.d(p,{metadata:()=>zs,name:()=>Ws,settings:()=>$s});var f={};t.r(f),t.d(f,{metadata:()=>sc,name:()=>mc,settings:()=>pc});var V={};t.r(V),t.d(V,{metadata:()=>yc,name:()=>wc,settings:()=>_c});var H={};t.r(H),t.d(H,{metadata:()=>Sc,name:()=>Nc,settings:()=>Oc});const h=window.React,b=window.wp.data,M=window.wp.i18n,L=window.wp.components,g=window.jfb.components,Z=window.jfb.actions,y=window.wp.element,E=(0,y.forwardRef)(function({icon:e,size:C=24,...t},l){return(0,y.cloneElement)(e,{width:C,height:C,...t,ref:l})});function w(e){var C=Object.create(null);return function(t){return void 0===C[t]&&(C[t]=e(t)),C[t]}}var v=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_=w(function(e){return v.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),k=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),C={},t=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,t]=e.split("_");C[t]=e}else t.push(e)})});const l=[];for(const e in C)Object.prototype.hasOwnProperty.call(C,e)&&l.push(C[e]);return l.push(...t),l.join(" ")},j=(e,C)=>{const t={};return Object.keys(e).filter((e=>C=>-1===e.indexOf(C))(C)).forEach(C=>{t[C]=e[C]}),t},x=(e,C)=>{},F=function(e){let C="";return t=>{const l=(l,r)=>{const{as:n=e,class:a=C}=l;var i;const o=function(e,C){const t=j(C,["as","class"]);if(!e){const e="function"==typeof _?{default:_}:_;Object.keys(t).forEach(C=>{e.default(C)||delete t[C]})}return t}(void 0===t.propsAsIs?!("string"==typeof n&&-1===n.indexOf("-")&&(i=n[0],i.toUpperCase()!==i)):t.propsAsIs,l);o.ref=r,o.className=t.atomic?k(t.class,o.className||a):k(o.className||a,t.class);const{vars:s}=t;if(s){const e={};for(const C in s){const r=s[C],n=r[0],a=r[1]||"",i="function"==typeof n?n(l):n;x(0,t.name),e[`--${C}`]=`${i}${a}`}const C=o.style||{},r=Object.keys(C);r.length>0&&r.forEach(t=>{e[t]=C[t]}),o.style=e}return e.__wyw_meta&&e!==n?(o.as=n,(0,h.createElement)(e,o)):(0,h.createElement)(n,o)},r=h.forwardRef?(0,h.forwardRef)(l):e=>{const C=j(e,["innerRef"]);return l(C,e.innerRef)};return r.displayName=t.name,r.__wyw_meta={className:t.class||C,extends:e},r}};const B=".components-modal__frame",{ActionModal:A,ActionModalHeaderSlotFill:P,ActionModalFooterSlotFill:S,ActionModalBackButton:N,ActionModalCloseButton:I}=JetFBComponents,{useCurrentAction:T,useActionCallback:O,useUpdateCurrentAction:J,useUpdateCurrentActionMeta:R}=JetFBHooks,q=F("div")({name:"ModalHeading",class:"mqz01w",propsAsIs:!1}),D=F("div")({name:"ModalHeader",class:"mqjtk22",propsAsIs:!1}),z=function(){var e;(0,y.useEffect)(()=>{const e=e=>{(e=>{const C=e.metaKey&&!e.ctrlKey,t=e.ctrlKey&&!e.metaKey;return(C||t)&&"z"===e.key.toLowerCase()&&!e.altKey})(e)&&(e=>{const C=e.composedPath?.();return C?.length?C.some(e=>e instanceof Element&&e.matches?.(B)):e.target?.closest?.(B)})(e)&&e.stopPropagation()};return window.addEventListener("keydown",e,!0),()=>{window.removeEventListener("keydown",e,!0)}},[]);const C=O(),t=R(),{setTypeSettings:l,clearCurrent:r}=J(),{currentAction:n,currentSettings:a}=T(),{editMeta:i}=(0,b.useDispatch)("jet-forms/actions"),{isSettingsModal:o,actionType:s,isShowErrorNotice:c}=(0,b.useSelect)(e=>({isSettingsModal:e("jet-forms/actions").isSettingsModal(),actionType:e("jet-forms/actions").getAction(n.type),isShowErrorNotice:e("jet-forms/actions").getErrorVisibility()}),[n.type]),d=(0,Z.useActionErrors)(o?n:{});if(!o)return null;const m=function(e={},C=""){const t=e?.editor_name;return"string"==typeof t&&t.trim()?t.trim():C}(n,null!==(e=s?.label)&&void 0!==e?e:""),u=Boolean(d.length)&&c;return(0,h.createElement)(A,{size:"large",__experimentalHideHeader:!0,onRequestClose:r,onCancelClick:r,onUpdateClick:()=>{t(n),r()}},(0,h.createElement)(D,{className:"components-modal__header"},(0,h.createElement)(q,{className:"components-modal__header-heading-container"},s.icon&&(0,h.createElement)(E,{icon:s.icon}),(0,h.createElement)("h1",{className:"components-modal__header-heading"},(0,M.sprintf)((0,M.__)("Edit %s","jet-form-builder"),m)),(0,h.createElement)(P.Slot,null)),(0,h.createElement)(N,null),(0,h.createElement)(I,null)),(0,h.createElement)("div",{style:{height:"40px"}}),C&&(0,h.createElement)(C,{settings:a,actionId:n.id,onChange:e=>l(e)}),(0,h.createElement)(S.Fill,null,({updateClick:e,cancelClick:C})=>(0,h.createElement)(g.StickyModalActions,{justify:"space-between"},(0,h.createElement)(L.Flex,{justify:"flex-start",gap:3,style:{flex:1}},(0,h.createElement)(L.Button,{isPrimary:!0,onClick:()=>{d?.length?i({errorsShow:!0}):e()}},(0,M.__)("Update","jet-form-builder")),(0,h.createElement)(L.Button,{isSecondary:!0,onClick:C},(0,M.__)("Cancel","jet-form-builder")),u&&(0,h.createElement)(g.IconText,null,(0,M.__)("You have errors in some fields","jet-form-builder"))),u&&(0,h.createElement)(L.Button,{variant:"tertiary",onClick:e},(0,M.__)("Update anyway","jet-form-builder")))))};t(2065);const U=window.JetFormEditorData.actionConditionSettings,{RepeaterItemContext:G,Repeater:W,RepeaterAddNew:K,AdvancedModalControl:$,RepeaterState:Y,BaseHelp:X}=JetFBComponents,{useRequestEvents:Q,useCurrentAction:ee,useUpdateCurrentAction:Ce,useMetaState:te}=JetFBHooks,{getFormFieldsBlocks:le}=JetFBActions,{SelectControl:re,TextareaControl:ne,ToggleControl:ae,FormTokenField:ie,TabPanel:oe}=wp.components,{__:se}=wp.i18n,{useSelect:ce}=wp.data,{useEffect:de,useState:me,useContext:ue,RawHTML:pe}=wp.element,fe=[{value:"and",label:se("AND (ALL conditions must be met)","jet-form-builder")},{value:"or",label:se("OR (at least ONE condition must be met)","jet-form-builder")}],Ve=window.JetFormEditorData.actionConditionExcludeEvents;function He(e,C){const t=U[e].find(e=>e.value===C);return(e,C="")=>t&&t[e]||C}function he({formFields:e}){const{currentItem:C,changeCurrentItem:t}=ue(G);let l=se("To fulfill this condition, the result of the check must be","jet-form-builder")+" ";l+=C.execute?"TRUE":"FALSE";const r=He("compare_value_formats",C.compare_value_format),n=He("operators",C.operator);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ae,{label:l,checked:C.execute,onChange:e=>{t({execute:e})}}),(0,h.createElement)(re,{label:"Operator",labelPosition:"side",help:n("help"),value:C.operator,options:U.operators,onChange:e=>t({operator:e})}),(0,h.createElement)(re,{label:"Field",labelPosition:"side",value:C.field,options:e,onChange:e=>t({field:e})}),(0,h.createElement)(re,{label:se("Type transform comparing value","jet-form-builder"),labelPosition:"side",value:C.compare_value_format,options:U.compare_value_formats,onChange:e=>{t({compare_value_format:e})}}),r("help").length>0&&(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:r("help")}}),(0,h.createElement)($,{value:C.default,label:se("Value to Compare","jet-form-builder"),macroWithCurrent:!0,onChangePreset:e=>{t({default:e})}},({instanceId:e})=>(0,h.createElement)(ne,{id:e,value:C.default,help:n("need_explode")?U.help_for_exploding_compare:"",onChange:e=>{t({default:e})}})))}function be({events:e}){var C;const{currentAction:t}=ee(),{setCurrentAction:l}=Ce(),[r,n]=me(!1),a=ce(e=>e("jet-forms/events").getHelpMap());return de(()=>{if(Ve[t.type]&&t.events.length){const e=t.events.filter(e=>!Ve[t.type].includes(e));t.events.some(C=>!e.includes(C))&&l({...t,events:e})}},[t,l]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ie,{label:se("Add event","jet-form-builder"),value:null!==(C=t.events)&&void 0!==C?C:[],suggestions:e,onChange:e=>l({...t,events:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0,__experimentalShowHowTo:""}),(0,h.createElement)(X,null,se("Separate with commas, spaces, or press Enter.","jet-form-builder")+" ",(0,h.createElement)("a",{href:"#",role:"button",onClick:()=>n(e=>!e)},se(r?"Hide":"Details","jet-form-builder"))),r&&(0,h.createElement)("ul",{className:"jet-fb-ul-revert-layer"},e.map(e=>(0,h.createElement)("li",{key:e},(0,h.createElement)("b",null,e),": ",(0,h.createElement)(pe,null,a[e])))))}function Me(){var e;const[C,t]=me([]);de(()=>{t(le([],"--"))},[]);const{currentAction:l}=ee(),{setCurrentAction:r,updateCurrentConditions:n}=Ce();return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(re,{key:"SelectControl-operator",label:se("Condition Operator","jet-form-builder"),labelPosition:"side",value:l.condition_operator||"and",options:fe,onChange:e=>r({...l,condition_operator:e})}),(0,h.createElement)(Y,{state:n},(0,h.createElement)(W,{items:null!==(e=l.conditions)&&void 0!==e?e:[]},(0,h.createElement)(he,{formFields:C})),(0,h.createElement)(K,{item:{execute:!0}},se("Add New Condition","jet-form-builder"))))}const Le=function(){var e;let C=Q();const{currentAction:t}=ee(),[l]=te("_jf_gateways",{}),r=ce(e=>e("jet-forms/events").getEventValuesByGateway());if("manual"===l?.mode&&r&&"object"==typeof r){const e=Object.keys(r).filter(e=>!!l?.[e]?.show_on_front).flatMap(e=>{var C;return null!==(C=r?.[e])&&void 0!==C?C:[]});C=Array.from(new Set([...null!=C?C:[],...e]))}if(Ve?.[t.type]){const e=Ve[t.type];C=(null!=C?C:[]).filter(C=>!e.includes(C))}return 1===(null!==(e=C?.length)&&void 0!==e?e:0)?(0,h.createElement)(Me,null):(0,h.createElement)(h.Fragment,null,(0,h.createElement)(oe,{className:"jfb-conditions-tab-panel",initialTabName:"fields",tabs:[{name:"fields",title:se("Fields comparison","jet-form-builder"),edit:(0,h.createElement)(Me,null)},{name:"events",title:se("Events match","jet-form-builder"),edit:(0,h.createElement)(be,{events:C})}]},e=>e.edit))},{__:ge}=wp.i18n,{ActionModal:Ze}=JetFBComponents,{useRequestEvents:ye,useUpdateCurrentActionMeta:Ee,useCurrentAction:we}=JetFBHooks,{useDispatch:ve,useSelect:_e}=wp.data,ke=function(){const e=_e(e=>e("jet-forms/actions").isConditionalModal()),{clearCurrent:C}=ve("jet-forms/actions",[]),t=Ee(),{currentAction:l}=we(),r=ye();if(!e)return null;const n=["width-60"];return 1!==r.length&&n.push("without-margin"),(0,h.createElement)(Ze,{classNames:n,title:ge("Edit Action Conditions & Events","jet-form-builder"),onRequestClose:C,onCancelClick:C,onUpdateClick:()=>{t({...l}),C()}},(0,h.createElement)(Le,null))},je=window.wp.editor,xe=(0,L.withFilters)("jet.fb.action.item")(Z.ListActionItem),Fe=F(g.Sortable)({name:"FlexSortable",class:"f13zt8l2",propsAsIs:!0}),Be=F(je.PluginDocumentSettingPanel)({name:"ActionsPanel",class:"am4szan",propsAsIs:!0}),Ae=F(L.Flex)({name:"StyledFlex",class:"s8wdwdc",propsAsIs:!0});t(1669);const Pe={base:{name:"jf-actions-panel",jfbApiVersion:2},settings:{render:function(){const[e,C]=(0,Z.useActions)(),t=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return(0,h.createElement)(Be,{title:(0,M.__)("Post Submit Actions","jet-form-builder")},(0,h.createElement)(Ae,{direction:"column",gap:3,className:t?"buddypress-active":""},(0,h.createElement)(Fe,{list:e,setList:C,direction:"vertical",handle:".jfb-action-handle",draggable:".jet-form-action.draggable"},e.map((e,C)=>(0,h.createElement)(y.Fragment,{key:e.id},(0,h.createElement)(Z.ActionListItemContext.Provider,{value:{index:C,action:e}},(0,h.createElement)(xe,null))))),(0,h.createElement)(Z.ActionsAfterNewButtonSlotFill.Slot,null,e=>(0,h.createElement)(L.Flex,{className:"jfb-actions-panel--buttons"},(0,h.createElement)(Z.AddActionButton,null),e))),(0,h.createElement)(Z.AllProActionsLink,null),(0,h.createElement)(z,null),(0,h.createElement)(ke,null))}}},{useMetaState:Se}=JetFBHooks,{TextControl:Ne,SelectControl:Ie,ToggleControl:Te}=wp.components,{__:Oe}=wp.i18n,Je=window.JetFormEditorData.argumentsSource||{},{__:Re}=wp.i18n,qe={base:{name:"jf-args-panel",title:Re("Form Settings","jet-form-builder"),jfbTest:2},settings:{render:function(){var e,C,t,l,r,n,a;const[i,o]=Se("_jf_args"),s=window.location.href.includes("post-new.php");let c="label",d="fieldset";var m,u;return s||(c=null!==(m=i?.fields_label_tag)&&void 0!==m?m:"div",d=null!==(u=i?.markup_type)&&void 0!==u?u:"div"),(0,h.useEffect)(()=>{i?.fields_label_tag||o(e=>({...e,fields_label_tag:c}))},[i,c,o]),(0,h.useEffect)(()=>{i?.markup_type||o(e=>({...e,markup_type:d}))},[i,d,o]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ie,{label:Oe("Fields Layout","jet-form-builder"),value:null!==(e=i?.fields_layout)&&void 0!==e?e:"",options:Je.fields_layout,onChange:e=>{o(C=>({...C,fields_layout:e}))}}),(0,h.createElement)(Ne,{label:Oe("Required Mark","jet-form-builder"),value:null!==(C=i?.required_mark)&&void 0!==C?C:"",onChange:e=>{o(C=>({...C,required_mark:e}))}}),(0,h.createElement)(Ie,{label:Oe("Fields label HTML tag","jet-form-builder"),value:null!==(t=i?.fields_label_tag)&&void 0!==t?t:c,options:Je.fields_label_tag,onChange:e=>{o(C=>({...C,fields_label_tag:e}))}}),(0,h.createElement)(Ie,{label:Oe("Markup type","jet-form-builder"),value:null!==(l=i?.markup_type)&&void 0!==l?l:d,options:Je.markup_type,onChange:e=>{o(C=>({...C,markup_type:e}))}}),(0,h.createElement)(Ie,{label:Oe("Submit Type","jet-form-builder"),value:null!==(r=i?.submit_type)&&void 0!==r?r:"",options:Je.submit_type,onChange:e=>{o(C=>({...C,submit_type:e}))}}),(0,h.createElement)(Te,{key:"enable_progress",label:Oe("Enable form pages progress","jet-form-builder"),checked:null!==(n=i?.enable_progress)&&void 0!==n&&n,help:Oe("Displays the progress of a multi-page form","jet-form-builder"),onChange:()=>{o(e=>{const C=!Boolean(e.enable_progress);return{...e,enable_progress:C}})}}),(0,h.createElement)(Te,{key:"clear_on_ajax",label:Oe("Clear data on success submit","jet-form-builder"),checked:null!==(a=i?.clear)&&void 0!==a&&a,help:Oe("Remove input values on successful submit","jet-form-builder"),onChange:()=>{o(e=>({...e,clear:!Boolean(e.clear)}))}}))},icon:"admin-settings"}},{GlobalField:De,AvailableMapField:ze}=JetFBComponents,{withPreset:Ue}=JetFBActions,Ge=Ue(function({value:e,availableFields:C,isMapFieldVisible:t,isVisible:l,onChange:r}){const n=(C,t)=>{r({...e,[t]:C})};return(0,h.createElement)(L.Flex,{direction:"column",gap:4},window.JetFormEditorData.presetConfig.global_fields.map((C,t)=>(0,h.createElement)(De,{key:C.name+t,value:e,index:t,data:C,options:C.options,onChangeValue:n,isVisible:l,position:"general"})),e.from&&C.map((C,l)=>(0,h.createElement)(ze,{key:C+l,fieldsMap:e.fields_map,field:C,index:l,onChangeValue:n,isMapFieldVisible:t,value:e})))}),{useMetaState:We}=JetFBHooks,{getAvailableFields:Ke}=JetFBActions,{__:$e}=wp.i18n,{__:Ye}=wp.i18n,Xe={base:{name:"jf-preset-panel",title:Ye("Preset Settings","jet-form-builder")},settings:{render:function(){var e,C;const{ToggleControl:t}=wp.components,[l,r]=We("_jf_preset"),n=(0,y.useMemo)(()=>l.enabled?Ke([],"preset"):[],[l.enabled]);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(t,{key:"enable_preset",label:$e("Enable","jet-form-builder"),checked:l.enabled,help:"Check this to enable global form preset",onChange:e=>{r(C=>({...C,enabled:e}))}}),l.enabled&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ge,{key:"_jf_preset_general",value:l,onChange:e=>{r(C=>({...C,...e,enabled:C.enabled}))},availableFields:n}),(0,h.createElement)(t,{label:$e("Restrict access","jet-form-builder"),checked:null===(e=l.restricted)||void 0===e||e,help:null===(C=l.restricted)||void 0===C||C?$e("Will set default value from preset only for users who allowed to edit this value","jet-form-builder"):$e("Always set default value from preset. Make sure it can't be accidentally changed from form Actions","jet-form-builder"),onChange:e=>{r(C=>({...C,restricted:e?void 0:e}))}})))},icon:"database-import"}},{TextControl:Qe}=wp.components,{useMetaState:eC}=JetFBHooks,{__:CC}=wp.i18n,tC={base:{name:"jf-messages-panel",title:CC("General Messages Settings","jet-form-builder")},settings:{render:function(){const[e,C]=eC("_jf_messages");return(0,h.createElement)(h.Fragment,null,Object.entries(JetFormEditorData.messagesDefault).map(([t,{label:l,value:r}],n)=>{var a;return(0,h.createElement)(Qe,{key:t+n,label:l,value:null!==(a=e[t])&&void 0!==a?a:r,onChange:e=>C(C=>({...C,[t]:e}))})}))},icon:"format-status"}},{__:lC}=wp.i18n,{__:rC}=wp.i18n,nC={base:{name:"jf-limit-responses-panel",title:rC("Limit Form Responses","jet-form-builder")},settings:{render:function(){const{limitResponses:e}=JetFormEditorData.utmLinks;return(0,h.createElement)("p",null,lC("You’re using free version of JetFormBuilder.","jet-form-builder")+"\n",(0,h.createElement)("a",{href:e,target:"_blank",rel:"noreferrer"},lC("Upgrade","jet-form-builder"))," "+lC("to unlock this feature.","jet-form-builder"))},icon:"lock"}},{__:aC}=wp.i18n,{__:iC}=wp.i18n,oC={base:{name:"jf-schedule-panel",title:iC("Form Schedule","jet-form-builder")},settings:{render:function(){const{scheduleForm:e}=JetFormEditorData.utmLinks;return(0,h.createElement)("p",null,aC("You’re using free version of JetFormBuilder.","jet-form-builder")+"\n",(0,h.createElement)("a",{href:e,target:"_blank",rel:"noreferrer"},aC("Upgrade","jet-form-builder"))," "+aC("to unlock this feature.","jet-form-builder"))},icon:"lock"}},{ActionModalContext:sC,ValidationMetaMessage:cC}=JetFBComponents,{useMetaState:dC,useGroupedValidationMessages:mC}=JetFBHooks,uC=function(){const[e,C]=dC("_jf_validation","{}",[]),t=mC(),[l,r]=(0,y.useState)(()=>{var C;return null!==(C=e.messages)&&void 0!==C?C:{}}),{actionClick:n,onRequestClose:a}=(0,y.useContext)(sC);return(0,y.useEffect)(()=>{n&&C(e=>({...e,messages:l})),null!==n&&a()},[n]),(0,h.createElement)(L.Flex,{gap:4,direction:"column"},t.map((e,C)=>(0,h.createElement)(cC,{key:"message_item"+e.id,message:e,messages:l,update:r,value:l[e.id],className:0!==C?"jet-control-full":"",style:0!==C?{}:{paddingBottom:"5px"}})))},{Button:pC,ToggleControl:fC,__experimentalToggleGroupControl:VC,__experimentalToggleGroupControlOption:HC}=wp.components,{__:hC}=wp.i18n,{useState:bC,useEffect:MC}=wp.element,{useMetaState:LC}=JetFBHooks,{ActionModal:gC}=JetFBComponents,{formats:ZC}=window.jetFormValidation,{__:yC}=wp.i18n,EC={base:{name:"jf-validation-panel",title:yC("Validation","jet-form-builder")},settings:{render:function(){var e,C,t;const[l,r]=LC("_jf_validation"),[n,a]=LC("_jf_args"),[i,o]=bC(!1),[s,c]=bC("render"===n.load_nonce);return MC(()=>{a(e=>({...e,load_nonce:s?"render":"hide"}))},[s]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(fC,{key:"load_nonce",label:hC("Enable form safety","jet-form-builder"),checked:s,help:hC("Protects the form with a WordPress nonce. Toggle this option off if the form's page's caching can't be disabled","jet-form-builder"),onChange:()=>{c(e=>!e)}}),(0,h.createElement)(fC,{label:hC("Enable csrf protection","jet-form-builder"),checked:null!==(e=n?.use_csrf)&&void 0!==e&&e,onChange:()=>{a(e=>{const C=!Boolean(e.use_csrf);return{...e,use_csrf:C}})}}),(0,h.createElement)(fC,{label:hC("Enable Honeypot protection","jet-form-builder"),checked:null!==(C=n?.use_honeypot)&&void 0!==C&&C,onChange:()=>{a(e=>({...e,use_honeypot:!Boolean(e.use_honeypot)}))}}),(0,h.createElement)(VC,{onChange:e=>r(C=>({...C,type:e})),value:null!==(t=l?.type)&&void 0!==t?t:"browser",label:hC("Validation type","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},ZC.map(e=>(0,h.createElement)(HC,{key:e.value+"_key",label:e.label,value:e.value,"aria-label":e.title,showTooltip:!0}))),"advanced"===l.type&&(0,h.createElement)(pC,{className:"jet-fb-button w-100 jc-center",isSecondary:!0,isSmall:!0,icon:"edit",onClick:()=>o(!0)},hC("Edit validation messages","jet-form-builder")),i&&(0,h.createElement)(gC,{title:"Edit Manual Options",onRequestClose:()=>o(!1),classNames:["width-60"]},(0,h.createElement)(uC,null)))},icon:"shield-alt"}},wC=window.wp.plugins;(0,wC.registerPlugin)("jf-rating-popover",{render:()=>((()=>{const e=jQuery(".interface-interface-skeleton__footer");e.find(".jet-fb-rating-message").remove();const C=(0,M.sprintf)((0,M.__)('Liked JetFormBuilder? Please rate it ★★★★★. For troubleshooting, contact Crocoblock support.',"jet-form-builder"),"https://wordpress.org/support/plugin/jetformbuilder/reviews/?filter=5","https://support.crocoblock.com/support/home/");e.append(`\n\t
${C}
\n`)})(),null)});const vC=window.wp.hooks,_C=e=>{const{base:C,settings:t}=e;C.jfbApiVersion&&1!==C.jfbApiVersion||(t.render=((e,C)=>{const t=e.render;return()=>(0,h.createElement)(je.PluginDocumentSettingPanel,{key:`plugin-panel-${C.name}`,...C},(0,h.createElement)(t,{key:`plugin-render-${C.name}`}))})(t,C)),(0,wC.getPlugin)(C.name)&&(0,wC.unregisterPlugin)(C.name),(0,wC.registerPlugin)(C.name,t)};JetFormEditorData.isActivePro||(0,vC.addFilter)("jet.fb.register.plugin.jf-actions-panel.after","jet-form-builder",e=>(e.push(oC,nC),e),0);const kC=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("g",{clipPath:"url(#clip0_273_2176)"},(0,h.createElement)("path",{d:"M22.4785 28.4268V29.5H17.208V28.4268H22.4785ZM17.4746 19.5469V29.5H16.1553V19.5469H17.4746ZM21.7812 23.8262V24.8994H17.208V23.8262H21.7812ZM22.4102 19.5469V20.627H17.208V19.5469H22.4102ZM24.7754 22.1035L26.3955 24.7969L28.0361 22.1035H29.5195L27.0996 25.7539L29.5947 29.5H28.1318L26.4229 26.7246L24.7139 29.5H23.2441L25.7324 25.7539L23.3193 22.1035H24.7754ZM33.9629 22.1035V23.0742H29.9639V22.1035H33.9629ZM31.3174 20.3057H32.582V27.668C32.582 27.9186 32.6208 28.1077 32.6982 28.2354C32.7757 28.363 32.876 28.4473 32.999 28.4883C33.1221 28.5293 33.2542 28.5498 33.3955 28.5498C33.5003 28.5498 33.6097 28.5407 33.7236 28.5225C33.8421 28.4997 33.931 28.4814 33.9902 28.4678L33.9971 29.5C33.8968 29.5319 33.7646 29.5615 33.6006 29.5889C33.4411 29.6208 33.2474 29.6367 33.0195 29.6367C32.7096 29.6367 32.4248 29.5752 32.165 29.4521C31.9053 29.3291 31.6979 29.124 31.543 28.8369C31.3926 28.5452 31.3174 28.1533 31.3174 27.6611V20.3057ZM36.7109 23.2656V29.5H35.4463V22.1035H36.6768L36.7109 23.2656ZM39.0215 22.0625L39.0146 23.2383C38.9098 23.2155 38.8096 23.2018 38.7139 23.1973C38.6227 23.1882 38.5179 23.1836 38.3994 23.1836C38.1077 23.1836 37.8503 23.2292 37.627 23.3203C37.4036 23.4115 37.2145 23.5391 37.0596 23.7031C36.9046 23.8672 36.7816 24.0632 36.6904 24.291C36.6038 24.5143 36.5469 24.7604 36.5195 25.0293L36.1641 25.2344C36.1641 24.7878 36.2074 24.3685 36.2939 23.9766C36.3851 23.5846 36.5241 23.2383 36.7109 22.9375C36.8978 22.6322 37.1348 22.3952 37.4219 22.2266C37.7135 22.0534 38.0599 21.9668 38.4609 21.9668C38.5521 21.9668 38.6569 21.9782 38.7754 22.001C38.8939 22.0192 38.9759 22.0397 39.0215 22.0625ZM44.2783 28.2354V24.4277C44.2783 24.1361 44.2191 23.8831 44.1006 23.6689C43.9867 23.4502 43.8135 23.2816 43.5811 23.1631C43.3486 23.0446 43.0615 22.9854 42.7197 22.9854C42.4007 22.9854 42.1204 23.04 41.8789 23.1494C41.6419 23.2588 41.4551 23.4023 41.3184 23.5801C41.1862 23.7578 41.1201 23.9492 41.1201 24.1543H39.8555C39.8555 23.89 39.9238 23.6279 40.0605 23.3682C40.1973 23.1084 40.3932 22.8737 40.6484 22.6641C40.9082 22.4499 41.2181 22.2812 41.5781 22.1582C41.9427 22.0306 42.3483 21.9668 42.7949 21.9668C43.3327 21.9668 43.8066 22.0579 44.2168 22.2402C44.6315 22.4225 44.9551 22.6982 45.1875 23.0674C45.4245 23.432 45.543 23.89 45.543 24.4414V27.8867C45.543 28.1328 45.5635 28.3949 45.6045 28.6729C45.6501 28.9508 45.7161 29.1901 45.8027 29.3906V29.5H44.4834C44.4196 29.3542 44.3695 29.1605 44.333 28.9189C44.2965 28.6729 44.2783 28.445 44.2783 28.2354ZM44.4971 25.0156L44.5107 25.9043H43.2324C42.8724 25.9043 42.5511 25.9339 42.2686 25.9932C41.986 26.0479 41.749 26.1322 41.5576 26.2461C41.3662 26.36 41.2204 26.5036 41.1201 26.6768C41.0199 26.8454 40.9697 27.0436 40.9697 27.2715C40.9697 27.5039 41.0221 27.7158 41.127 27.9072C41.2318 28.0986 41.389 28.2513 41.5986 28.3652C41.8128 28.4746 42.0749 28.5293 42.3848 28.5293C42.7721 28.5293 43.1139 28.4473 43.4102 28.2832C43.7064 28.1191 43.9411 27.9186 44.1143 27.6816C44.292 27.4447 44.3877 27.2145 44.4014 26.9912L44.9414 27.5996C44.9095 27.791 44.8229 28.0029 44.6816 28.2354C44.5404 28.4678 44.3512 28.6911 44.1143 28.9053C43.8818 29.1149 43.6038 29.2904 43.2803 29.4316C42.9613 29.5684 42.6012 29.6367 42.2002 29.6367C41.6989 29.6367 41.2591 29.5387 40.8809 29.3428C40.5072 29.1468 40.2155 28.8848 40.0059 28.5566C39.8008 28.224 39.6982 27.8525 39.6982 27.4424C39.6982 27.0459 39.7757 26.6973 39.9307 26.3965C40.0856 26.0911 40.3089 25.8382 40.6006 25.6377C40.8923 25.4326 41.2432 25.2777 41.6533 25.1729C42.0635 25.068 42.5215 25.0156 43.0273 25.0156H44.4971ZM55.3115 27.5381C55.3115 27.3558 55.2705 27.1872 55.1885 27.0322C55.111 26.8727 54.9492 26.7292 54.7031 26.6016C54.4616 26.4694 54.097 26.3555 53.6094 26.2598C53.1992 26.1732 52.8278 26.0706 52.4951 25.9521C52.167 25.8337 51.8867 25.6901 51.6543 25.5215C51.4264 25.3529 51.251 25.1546 51.1279 24.9268C51.0049 24.6989 50.9434 24.4323 50.9434 24.127C50.9434 23.8353 51.0072 23.5596 51.1348 23.2998C51.2669 23.04 51.4515 22.8099 51.6885 22.6094C51.93 22.4089 52.2194 22.2516 52.5566 22.1377C52.8939 22.0238 53.2699 21.9668 53.6846 21.9668C54.277 21.9668 54.7829 22.0716 55.2021 22.2812C55.6214 22.4909 55.9427 22.7712 56.166 23.1221C56.3893 23.4684 56.501 23.8535 56.501 24.2773H55.2363C55.2363 24.0723 55.1748 23.874 55.0518 23.6826C54.9333 23.4867 54.7578 23.3249 54.5254 23.1973C54.2975 23.0697 54.0173 23.0059 53.6846 23.0059C53.3337 23.0059 53.0488 23.0605 52.8301 23.1699C52.6159 23.2747 52.4587 23.4092 52.3584 23.5732C52.2627 23.7373 52.2148 23.9105 52.2148 24.0928C52.2148 24.2295 52.2376 24.3525 52.2832 24.4619C52.3333 24.5667 52.4199 24.6647 52.543 24.7559C52.666 24.8424 52.8392 24.9245 53.0625 25.002C53.2858 25.0794 53.5706 25.1569 53.917 25.2344C54.5231 25.3711 55.0221 25.5352 55.4141 25.7266C55.806 25.918 56.0977 26.1527 56.2891 26.4307C56.4805 26.7087 56.5762 27.0459 56.5762 27.4424C56.5762 27.766 56.5078 28.0622 56.3711 28.3311C56.2389 28.5999 56.0452 28.8324 55.79 29.0283C55.5394 29.2197 55.2386 29.3701 54.8877 29.4795C54.5413 29.5843 54.1517 29.6367 53.7188 29.6367C53.0671 29.6367 52.5156 29.5205 52.0645 29.2881C51.6133 29.0557 51.2715 28.7549 51.0391 28.3857C50.8066 28.0166 50.6904 27.627 50.6904 27.2168H51.9619C51.9801 27.5632 52.0804 27.8389 52.2627 28.0439C52.445 28.2445 52.6683 28.388 52.9326 28.4746C53.1969 28.5566 53.459 28.5977 53.7188 28.5977C54.0651 28.5977 54.3545 28.5521 54.5869 28.4609C54.8239 28.3698 55.0039 28.2445 55.127 28.085C55.25 27.9255 55.3115 27.7432 55.3115 27.5381ZM61.3066 29.6367C60.7917 29.6367 60.3245 29.5501 59.9053 29.377C59.4906 29.1992 59.1328 28.9508 58.832 28.6318C58.5358 28.3128 58.3079 27.9346 58.1484 27.4971C57.9889 27.0596 57.9092 26.5811 57.9092 26.0615V25.7744C57.9092 25.1729 57.998 24.6374 58.1758 24.168C58.3535 23.694 58.5951 23.293 58.9004 22.9648C59.2057 22.6367 59.5521 22.3883 59.9395 22.2197C60.3268 22.0511 60.7279 21.9668 61.1426 21.9668C61.6712 21.9668 62.127 22.0579 62.5098 22.2402C62.8971 22.4225 63.2139 22.6777 63.46 23.0059C63.7061 23.3294 63.8883 23.7122 64.0068 24.1543C64.1253 24.5918 64.1846 25.0703 64.1846 25.5898V26.1572H58.6611V25.125H62.9199V25.0293C62.9017 24.7012 62.8333 24.3822 62.7148 24.0723C62.6009 23.7624 62.4186 23.5072 62.168 23.3066C61.9173 23.1061 61.5755 23.0059 61.1426 23.0059C60.8555 23.0059 60.5911 23.0674 60.3496 23.1904C60.1081 23.3089 59.9007 23.4867 59.7275 23.7236C59.5544 23.9606 59.4199 24.25 59.3242 24.5918C59.2285 24.9336 59.1807 25.3278 59.1807 25.7744V26.0615C59.1807 26.4124 59.2285 26.7428 59.3242 27.0527C59.4245 27.3581 59.568 27.627 59.7549 27.8594C59.9463 28.0918 60.1764 28.2741 60.4453 28.4062C60.7188 28.5384 61.0286 28.6045 61.375 28.6045C61.8216 28.6045 62.1999 28.5133 62.5098 28.3311C62.8197 28.1488 63.0908 27.9049 63.3232 27.5996L64.0889 28.208C63.9294 28.4495 63.7266 28.6797 63.4805 28.8984C63.2344 29.1172 62.9313 29.2949 62.5713 29.4316C62.2158 29.5684 61.7943 29.6367 61.3066 29.6367ZM66.9258 23.2656V29.5H65.6611V22.1035H66.8916L66.9258 23.2656ZM69.2363 22.0625L69.2295 23.2383C69.1247 23.2155 69.0244 23.2018 68.9287 23.1973C68.8376 23.1882 68.7327 23.1836 68.6143 23.1836C68.3226 23.1836 68.0651 23.2292 67.8418 23.3203C67.6185 23.4115 67.4294 23.5391 67.2744 23.7031C67.1195 23.8672 66.9964 24.0632 66.9053 24.291C66.8187 24.5143 66.7617 24.7604 66.7344 25.0293L66.3789 25.2344C66.3789 24.7878 66.4222 24.3685 66.5088 23.9766C66.5999 23.5846 66.7389 23.2383 66.9258 22.9375C67.1126 22.6322 67.3496 22.3952 67.6367 22.2266C67.9284 22.0534 68.2747 21.9668 68.6758 21.9668C68.7669 21.9668 68.8717 21.9782 68.9902 22.001C69.1087 22.0192 69.1908 22.0397 69.2363 22.0625ZM72.7773 28.3584L74.8008 22.1035H76.0928L73.4336 29.5H72.5859L72.7773 28.3584ZM71.0889 22.1035L73.1738 28.3926L73.3174 29.5H72.4697L69.79 22.1035H71.0889ZM78.6836 22.1035V29.5H77.4121V22.1035H78.6836ZM77.3164 20.1416C77.3164 19.9365 77.3779 19.7633 77.501 19.6221C77.6286 19.4808 77.8154 19.4102 78.0615 19.4102C78.3031 19.4102 78.4876 19.4808 78.6152 19.6221C78.7474 19.7633 78.8135 19.9365 78.8135 20.1416C78.8135 20.3376 78.7474 20.5062 78.6152 20.6475C78.4876 20.7842 78.3031 20.8525 78.0615 20.8525C77.8154 20.8525 77.6286 20.7842 77.501 20.6475C77.3779 20.5062 77.3164 20.3376 77.3164 20.1416ZM83.6738 28.5977C83.9746 28.5977 84.2526 28.5361 84.5078 28.4131C84.763 28.29 84.9727 28.1214 85.1367 27.9072C85.3008 27.6885 85.3942 27.4401 85.417 27.1621H86.6201C86.5973 27.5996 86.4492 28.0075 86.1758 28.3857C85.9069 28.7594 85.5537 29.0625 85.1162 29.2949C84.6787 29.5228 84.1979 29.6367 83.6738 29.6367C83.1178 29.6367 82.6325 29.5387 82.2178 29.3428C81.8076 29.1468 81.4658 28.8779 81.1924 28.5361C80.9235 28.1943 80.7207 27.8024 80.584 27.3604C80.4518 26.9137 80.3857 26.4421 80.3857 25.9453V25.6582C80.3857 25.1615 80.4518 24.6921 80.584 24.25C80.7207 23.8034 80.9235 23.4092 81.1924 23.0674C81.4658 22.7256 81.8076 22.4567 82.2178 22.2607C82.6325 22.0648 83.1178 21.9668 83.6738 21.9668C84.2526 21.9668 84.7585 22.0853 85.1914 22.3223C85.6243 22.5547 85.9639 22.8737 86.21 23.2793C86.4606 23.6803 86.5973 24.1361 86.6201 24.6465H85.417C85.3942 24.3411 85.3076 24.0654 85.1572 23.8193C85.0114 23.5732 84.8109 23.3773 84.5557 23.2314C84.305 23.0811 84.0111 23.0059 83.6738 23.0059C83.2865 23.0059 82.9606 23.0833 82.6963 23.2383C82.4365 23.3887 82.2292 23.5938 82.0742 23.8535C81.9238 24.1087 81.8145 24.3936 81.7461 24.708C81.6823 25.0179 81.6504 25.3346 81.6504 25.6582V25.9453C81.6504 26.2689 81.6823 26.5879 81.7461 26.9023C81.8099 27.2168 81.917 27.5016 82.0674 27.7568C82.2223 28.012 82.4297 28.2171 82.6895 28.3721C82.9538 28.5225 83.2819 28.5977 83.6738 28.5977ZM91.1113 29.6367C90.5964 29.6367 90.1292 29.5501 89.71 29.377C89.2952 29.1992 88.9375 28.9508 88.6367 28.6318C88.3405 28.3128 88.1126 27.9346 87.9531 27.4971C87.7936 27.0596 87.7139 26.5811 87.7139 26.0615V25.7744C87.7139 25.1729 87.8027 24.6374 87.9805 24.168C88.1582 23.694 88.3997 23.293 88.7051 22.9648C89.0104 22.6367 89.3568 22.3883 89.7441 22.2197C90.1315 22.0511 90.5326 21.9668 90.9473 21.9668C91.4759 21.9668 91.9316 22.0579 92.3145 22.2402C92.7018 22.4225 93.0186 22.6777 93.2646 23.0059C93.5107 23.3294 93.693 23.7122 93.8115 24.1543C93.93 24.5918 93.9893 25.0703 93.9893 25.5898V26.1572H88.4658V25.125H92.7246V25.0293C92.7064 24.7012 92.638 24.3822 92.5195 24.0723C92.4056 23.7624 92.2233 23.5072 91.9727 23.3066C91.722 23.1061 91.3802 23.0059 90.9473 23.0059C90.6602 23.0059 90.3958 23.0674 90.1543 23.1904C89.9128 23.3089 89.7054 23.4867 89.5322 23.7236C89.359 23.9606 89.2246 24.25 89.1289 24.5918C89.0332 24.9336 88.9854 25.3278 88.9854 25.7744V26.0615C88.9854 26.4124 89.0332 26.7428 89.1289 27.0527C89.2292 27.3581 89.3727 27.627 89.5596 27.8594C89.751 28.0918 89.9811 28.2741 90.25 28.4062C90.5234 28.5384 90.8333 28.6045 91.1797 28.6045C91.6263 28.6045 92.0046 28.5133 92.3145 28.3311C92.6243 28.1488 92.8955 27.9049 93.1279 27.5996L93.8936 28.208C93.734 28.4495 93.5312 28.6797 93.2852 28.8984C93.0391 29.1172 92.736 29.2949 92.376 29.4316C92.0205 29.5684 91.599 29.6367 91.1113 29.6367ZM99.7725 27.5381C99.7725 27.3558 99.7314 27.1872 99.6494 27.0322C99.5719 26.8727 99.4102 26.7292 99.1641 26.6016C98.9225 26.4694 98.5579 26.3555 98.0703 26.2598C97.6602 26.1732 97.2887 26.0706 96.9561 25.9521C96.6279 25.8337 96.3477 25.6901 96.1152 25.5215C95.8874 25.3529 95.7119 25.1546 95.5889 24.9268C95.4658 24.6989 95.4043 24.4323 95.4043 24.127C95.4043 23.8353 95.4681 23.5596 95.5957 23.2998C95.7279 23.04 95.9124 22.8099 96.1494 22.6094C96.391 22.4089 96.6803 22.2516 97.0176 22.1377C97.3548 22.0238 97.7308 21.9668 98.1455 21.9668C98.738 21.9668 99.2438 22.0716 99.6631 22.2812C100.082 22.4909 100.404 22.7712 100.627 23.1221C100.85 23.4684 100.962 23.8535 100.962 24.2773H99.6973C99.6973 24.0723 99.6357 23.874 99.5127 23.6826C99.3942 23.4867 99.2188 23.3249 98.9863 23.1973C98.7585 23.0697 98.4782 23.0059 98.1455 23.0059C97.7946 23.0059 97.5098 23.0605 97.291 23.1699C97.0768 23.2747 96.9196 23.4092 96.8193 23.5732C96.7236 23.7373 96.6758 23.9105 96.6758 24.0928C96.6758 24.2295 96.6986 24.3525 96.7441 24.4619C96.7943 24.5667 96.8809 24.6647 97.0039 24.7559C97.127 24.8424 97.3001 24.9245 97.5234 25.002C97.7467 25.0794 98.0316 25.1569 98.3779 25.2344C98.984 25.3711 99.4831 25.5352 99.875 25.7266C100.267 25.918 100.559 26.1527 100.75 26.4307C100.941 26.7087 101.037 27.0459 101.037 27.4424C101.037 27.766 100.969 28.0622 100.832 28.3311C100.7 28.5999 100.506 28.8324 100.251 29.0283C100 29.2197 99.6995 29.3701 99.3486 29.4795C99.0023 29.5843 98.6126 29.6367 98.1797 29.6367C97.528 29.6367 96.9766 29.5205 96.5254 29.2881C96.0742 29.0557 95.7324 28.7549 95.5 28.3857C95.2676 28.0166 95.1514 27.627 95.1514 27.2168H96.4229C96.4411 27.5632 96.5413 27.8389 96.7236 28.0439C96.9059 28.2445 97.1292 28.388 97.3936 28.4746C97.6579 28.5566 97.9199 28.5977 98.1797 28.5977C98.526 28.5977 98.8154 28.5521 99.0479 28.4609C99.2848 28.3698 99.4648 28.2445 99.5879 28.085C99.7109 27.9255 99.7725 27.7432 99.7725 27.5381Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M29.25 41.25V51.75H18.75V41.25H29.25ZM29.25 39.75H18.75C17.925 39.75 17.25 40.425 17.25 41.25V51.75C17.25 52.575 17.925 53.25 18.75 53.25H29.25C30.075 53.25 30.75 52.575 30.75 51.75V41.25C30.75 40.425 30.075 39.75 29.25 39.75Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M40.3672 46.6772H38.0249L38.0122 45.6934H40.1387C40.4899 45.6934 40.7967 45.6341 41.0591 45.5156C41.3215 45.3971 41.5246 45.2279 41.6685 45.0078C41.8166 44.7835 41.8906 44.5169 41.8906 44.208C41.8906 43.8695 41.825 43.5944 41.6938 43.3828C41.5669 43.167 41.3701 43.0104 41.1035 42.9131C40.8411 42.8115 40.5068 42.7607 40.1006 42.7607H38.2979V51H37.0728V41.7578H40.1006C40.5745 41.7578 40.9977 41.8065 41.3701 41.9038C41.7425 41.9969 42.0578 42.145 42.3159 42.3481C42.5783 42.547 42.7772 42.8009 42.9126 43.1099C43.048 43.4188 43.1157 43.7891 43.1157 44.2207C43.1157 44.6016 43.0184 44.9465 42.8237 45.2554C42.6291 45.5601 42.3582 45.8097 42.0112 46.0044C41.6685 46.1991 41.2664 46.3239 40.8052 46.3789L40.3672 46.6772ZM40.3101 51H37.5425L38.2344 50.0034H40.3101C40.6994 50.0034 41.0295 49.9357 41.3003 49.8003C41.5754 49.6649 41.7848 49.4744 41.9287 49.229C42.0726 48.9793 42.1445 48.6852 42.1445 48.3467C42.1445 48.0039 42.0832 47.7077 41.9604 47.458C41.8377 47.2083 41.6452 47.0158 41.3828 46.8804C41.1204 46.745 40.7819 46.6772 40.3672 46.6772H38.6216L38.6343 45.6934H41.021L41.2812 46.0488C41.7256 46.0869 42.1022 46.2139 42.4111 46.4297C42.7201 46.6413 42.9549 46.9121 43.1157 47.2422C43.2808 47.5723 43.3633 47.9362 43.3633 48.334C43.3633 48.9095 43.2363 49.3962 42.9824 49.7939C42.7327 50.1875 42.3794 50.488 41.9224 50.6953C41.4653 50.8984 40.9279 51 40.3101 51ZM46.1689 45.2109V51H44.9946V44.1318H46.1372L46.1689 45.2109ZM48.3145 44.0938L48.3081 45.1855C48.2108 45.1644 48.1177 45.1517 48.0288 45.1475C47.9442 45.139 47.8468 45.1348 47.7368 45.1348C47.466 45.1348 47.2269 45.1771 47.0195 45.2617C46.8122 45.3464 46.6366 45.4648 46.4927 45.6172C46.3488 45.7695 46.2345 45.9515 46.1499 46.1631C46.0695 46.3704 46.0166 46.599 45.9912 46.8486L45.6611 47.0391C45.6611 46.6243 45.7013 46.235 45.7817 45.8711C45.8664 45.5072 45.9954 45.1855 46.1689 44.9062C46.3424 44.6227 46.5625 44.4027 46.8291 44.2461C47.0999 44.0853 47.4215 44.0049 47.7939 44.0049C47.8786 44.0049 47.9759 44.0155 48.0859 44.0366C48.196 44.0535 48.2721 44.0726 48.3145 44.0938ZM52.123 51.127C51.6449 51.127 51.2111 51.0465 50.8218 50.8857C50.4367 50.7207 50.1045 50.4901 49.8252 50.1938C49.5501 49.8976 49.3385 49.5464 49.1904 49.1401C49.0423 48.7339 48.9683 48.2896 48.9683 47.8071V47.5405C48.9683 46.9819 49.0508 46.4847 49.2158 46.0488C49.3809 45.6087 49.6051 45.2363 49.8887 44.9316C50.1722 44.627 50.4938 44.3963 50.8535 44.2397C51.2132 44.0832 51.5856 44.0049 51.9707 44.0049C52.4616 44.0049 52.8848 44.0895 53.2402 44.2588C53.5999 44.4281 53.894 44.665 54.1226 44.9697C54.3511 45.2702 54.5203 45.6257 54.6304 46.0361C54.7404 46.4424 54.7954 46.8867 54.7954 47.3691V47.896H49.6665V46.9375H53.6211V46.8486C53.6042 46.5439 53.5407 46.2477 53.4307 45.96C53.3249 45.6722 53.1556 45.4352 52.9229 45.249C52.6901 45.0628 52.3727 44.9697 51.9707 44.9697C51.7041 44.9697 51.4587 45.0269 51.2344 45.1411C51.0101 45.2511 50.8175 45.4162 50.6567 45.6362C50.4959 45.8563 50.3711 46.125 50.2822 46.4424C50.1934 46.7598 50.1489 47.1258 50.1489 47.5405V47.8071C50.1489 48.133 50.1934 48.4398 50.2822 48.7275C50.3753 49.0111 50.5086 49.2607 50.6821 49.4766C50.8599 49.6924 51.0736 49.8617 51.3232 49.9844C51.5771 50.1071 51.8649 50.1685 52.1865 50.1685C52.6012 50.1685 52.9525 50.0838 53.2402 49.9146C53.528 49.7453 53.7798 49.5189 53.9956 49.2354L54.7065 49.8003C54.5584 50.0246 54.3701 50.2383 54.1416 50.4414C53.9131 50.6445 53.6317 50.8096 53.2974 50.9365C52.9673 51.0635 52.5758 51.127 52.123 51.127ZM60.2163 49.8257V46.29C60.2163 46.0192 60.1613 45.7843 60.0513 45.5854C59.9455 45.3823 59.7847 45.2257 59.5688 45.1157C59.353 45.0057 59.0864 44.9507 58.769 44.9507C58.4728 44.9507 58.2126 45.0015 57.9883 45.103C57.7682 45.2046 57.5947 45.3379 57.4678 45.5029C57.3451 45.668 57.2837 45.8457 57.2837 46.0361H56.1094C56.1094 45.7907 56.1729 45.5474 56.2998 45.3062C56.4268 45.0649 56.6087 44.847 56.8457 44.6523C57.0869 44.4535 57.3747 44.2969 57.709 44.1826C58.0475 44.0641 58.4242 44.0049 58.8389 44.0049C59.3382 44.0049 59.7783 44.0895 60.1592 44.2588C60.5443 44.4281 60.8447 44.6841 61.0605 45.0269C61.2806 45.3654 61.3906 45.7907 61.3906 46.3027V49.502C61.3906 49.7305 61.4097 49.9738 61.4478 50.2319C61.4901 50.4901 61.5514 50.7122 61.6318 50.8984V51H60.4067C60.3475 50.8646 60.3009 50.6847 60.2671 50.4604C60.2332 50.2319 60.2163 50.0203 60.2163 49.8257ZM60.4194 46.8359L60.4321 47.6611H59.2451C58.9108 47.6611 58.6125 47.6886 58.3501 47.7437C58.0877 47.7944 57.8677 47.8727 57.6899 47.9785C57.5122 48.0843 57.3768 48.2176 57.2837 48.3784C57.1906 48.535 57.144 48.7191 57.144 48.9307C57.144 49.1465 57.1927 49.3433 57.29 49.521C57.3874 49.6987 57.5334 49.8405 57.728 49.9463C57.9269 50.0479 58.1702 50.0986 58.458 50.0986C58.8177 50.0986 59.1351 50.0225 59.4102 49.8701C59.6852 49.7178 59.9032 49.5316 60.064 49.3115C60.229 49.0915 60.3179 48.8778 60.3306 48.6704L60.832 49.2354C60.8024 49.4131 60.722 49.6099 60.5908 49.8257C60.4596 50.0415 60.284 50.2489 60.064 50.4478C59.8481 50.6424 59.59 50.8053 59.2896 50.9365C58.9933 51.0635 58.659 51.127 58.2866 51.127C57.8211 51.127 57.4128 51.036 57.0615 50.854C56.7145 50.672 56.4437 50.4287 56.249 50.124C56.0586 49.8151 55.9634 49.4702 55.9634 49.0894C55.9634 48.7212 56.0353 48.3975 56.1792 48.1182C56.3231 47.8346 56.5304 47.5998 56.8013 47.4136C57.0721 47.2231 57.3979 47.0793 57.7788 46.9819C58.1597 46.8846 58.585 46.8359 59.0547 46.8359H60.4194ZM64.4185 41.25V51H63.2378V41.25H64.4185ZM68.6143 44.1318L65.6182 47.3374L63.9424 49.0767L63.8472 47.8262L65.0469 46.3916L67.1797 44.1318H68.6143ZM67.5415 51L65.0913 47.7246L65.7007 46.6772L68.9253 51H67.5415ZM71.5786 51H70.4043V43.4082C70.4043 42.9131 70.4932 42.4963 70.6709 42.1577C70.8529 41.8149 71.1131 41.5568 71.4517 41.3833C71.7902 41.2056 72.1922 41.1167 72.6577 41.1167C72.7931 41.1167 72.9285 41.1252 73.064 41.1421C73.2036 41.159 73.339 41.1844 73.4702 41.2183L73.4067 42.1768C73.3179 42.1556 73.2163 42.1408 73.1021 42.1323C72.992 42.1239 72.882 42.1196 72.772 42.1196C72.5223 42.1196 72.3065 42.1704 72.1245 42.272C71.9468 42.3693 71.8114 42.5132 71.7183 42.7036C71.6252 42.894 71.5786 43.1289 71.5786 43.4082V51ZM73.0386 44.1318V45.0332H69.3188V44.1318H73.0386ZM78.396 49.8257V46.29C78.396 46.0192 78.341 45.7843 78.231 45.5854C78.1252 45.3823 77.9644 45.2257 77.7485 45.1157C77.5327 45.0057 77.2661 44.9507 76.9487 44.9507C76.6525 44.9507 76.3923 45.0015 76.168 45.103C75.9479 45.2046 75.7744 45.3379 75.6475 45.5029C75.5247 45.668 75.4634 45.8457 75.4634 46.0361H74.2891C74.2891 45.7907 74.3525 45.5474 74.4795 45.3062C74.6064 45.0649 74.7884 44.847 75.0254 44.6523C75.2666 44.4535 75.5544 44.2969 75.8887 44.1826C76.2272 44.0641 76.6038 44.0049 77.0186 44.0049C77.5179 44.0049 77.958 44.0895 78.3389 44.2588C78.724 44.4281 79.0244 44.6841 79.2402 45.0269C79.4603 45.3654 79.5703 45.7907 79.5703 46.3027V49.502C79.5703 49.7305 79.5894 49.9738 79.6274 50.2319C79.6698 50.4901 79.7311 50.7122 79.8115 50.8984V51H78.5864C78.5272 50.8646 78.4806 50.6847 78.4468 50.4604C78.4129 50.2319 78.396 50.0203 78.396 49.8257ZM78.5991 46.8359L78.6118 47.6611H77.4248C77.0905 47.6611 76.7922 47.6886 76.5298 47.7437C76.2674 47.7944 76.0474 47.8727 75.8696 47.9785C75.6919 48.0843 75.5565 48.2176 75.4634 48.3784C75.3703 48.535 75.3237 48.7191 75.3237 48.9307C75.3237 49.1465 75.3724 49.3433 75.4697 49.521C75.5671 49.6987 75.7131 49.8405 75.9077 49.9463C76.1066 50.0479 76.3499 50.0986 76.6377 50.0986C76.9974 50.0986 77.3148 50.0225 77.5898 49.8701C77.8649 49.7178 78.0828 49.5316 78.2437 49.3115C78.4087 49.0915 78.4976 48.8778 78.5103 48.6704L79.0117 49.2354C78.9821 49.4131 78.9017 49.6099 78.7705 49.8257C78.6393 50.0415 78.4637 50.2489 78.2437 50.4478C78.0278 50.6424 77.7697 50.8053 77.4692 50.9365C77.173 51.0635 76.8387 51.127 76.4663 51.127C76.0008 51.127 75.5924 51.036 75.2412 50.854C74.8942 50.672 74.6234 50.4287 74.4287 50.124C74.2383 49.8151 74.1431 49.4702 74.1431 49.0894C74.1431 48.7212 74.215 48.3975 74.3589 48.1182C74.5028 47.8346 74.7101 47.5998 74.981 47.4136C75.2518 47.2231 75.5776 47.0793 75.9585 46.9819C76.3394 46.8846 76.7646 46.8359 77.2344 46.8359H78.5991ZM85.4165 49.1782C85.4165 49.009 85.3784 48.8524 85.3022 48.7085C85.2303 48.5604 85.0801 48.4271 84.8516 48.3086C84.6273 48.1859 84.2887 48.0801 83.8359 47.9912C83.4551 47.9108 83.1102 47.8156 82.8013 47.7056C82.4966 47.5955 82.2363 47.4622 82.0205 47.3057C81.8089 47.1491 81.646 46.965 81.5317 46.7534C81.4175 46.5418 81.3604 46.2943 81.3604 46.0107C81.3604 45.7399 81.4196 45.4839 81.5381 45.2427C81.6608 45.0015 81.8322 44.7878 82.0522 44.6016C82.2765 44.4154 82.5452 44.2694 82.8584 44.1636C83.1715 44.0578 83.5207 44.0049 83.9058 44.0049C84.4559 44.0049 84.9256 44.1022 85.3149 44.2969C85.7043 44.4915 86.0026 44.7518 86.21 45.0776C86.4173 45.3993 86.521 45.7568 86.521 46.1504H85.3467C85.3467 45.96 85.2896 45.7759 85.1753 45.5981C85.0653 45.4162 84.9023 45.266 84.6865 45.1475C84.4749 45.029 84.2147 44.9697 83.9058 44.9697C83.5799 44.9697 83.3154 45.0205 83.1123 45.1221C82.9134 45.2194 82.7674 45.3442 82.6743 45.4966C82.5854 45.6489 82.541 45.8097 82.541 45.979C82.541 46.106 82.5622 46.2202 82.6045 46.3218C82.651 46.4191 82.7314 46.5101 82.8457 46.5947C82.96 46.6751 83.1208 46.7513 83.3281 46.8232C83.5355 46.8952 83.8 46.9671 84.1216 47.0391C84.6844 47.166 85.1478 47.3184 85.5117 47.4961C85.8757 47.6738 86.1465 47.8918 86.3242 48.1499C86.502 48.408 86.5908 48.7212 86.5908 49.0894C86.5908 49.3898 86.5273 49.6649 86.4004 49.9146C86.2777 50.1642 86.0978 50.38 85.8608 50.562C85.6281 50.7397 85.3488 50.8794 85.0229 50.981C84.7013 51.0783 84.3395 51.127 83.9375 51.127C83.3324 51.127 82.8203 51.019 82.4014 50.8032C81.9824 50.5874 81.665 50.3081 81.4492 49.9653C81.2334 49.6226 81.1255 49.2607 81.1255 48.8799H82.3062C82.3231 49.2015 82.4162 49.4575 82.5854 49.6479C82.7547 49.8341 82.9621 49.9674 83.2075 50.0479C83.453 50.124 83.6963 50.1621 83.9375 50.1621C84.2591 50.1621 84.5278 50.1198 84.7437 50.0352C84.9637 49.9505 85.1309 49.8341 85.2451 49.686C85.3594 49.5379 85.4165 49.3687 85.4165 49.1782ZM91.0088 44.1318V45.0332H87.2954V44.1318H91.0088ZM88.5522 42.4624H89.7266V49.2988C89.7266 49.5316 89.7625 49.7072 89.8345 49.8257C89.9064 49.9442 89.9995 50.0225 90.1138 50.0605C90.228 50.0986 90.3507 50.1177 90.4819 50.1177C90.5793 50.1177 90.6808 50.1092 90.7866 50.0923C90.8966 50.0711 90.9792 50.0542 91.0342 50.0415L91.0405 51C90.9474 51.0296 90.8247 51.0571 90.6724 51.0825C90.5243 51.1121 90.3444 51.127 90.1328 51.127C89.8451 51.127 89.5806 51.0698 89.3394 50.9556C89.0981 50.8413 88.9056 50.6509 88.7617 50.3843C88.6221 50.1134 88.5522 49.7495 88.5522 49.2925V42.4624ZM101.546 46.0425V47.147H95.2109V46.0425H101.546ZM98.9688 43.3447V50.0732H97.7944V43.3447H98.9688ZM109.595 40.2598V42.1958H108.643V40.2598H109.595ZM109.48 50.6255V52.3203H108.535V50.6255H109.48ZM110.75 48.6196C110.75 48.3657 110.693 48.1372 110.579 47.9341C110.464 47.731 110.276 47.5448 110.014 47.3755C109.751 47.2062 109.4 47.0496 108.96 46.9058C108.427 46.7407 107.965 46.5397 107.576 46.3027C107.191 46.0658 106.893 45.7716 106.681 45.4204C106.474 45.0692 106.37 44.6439 106.37 44.1445C106.37 43.624 106.482 43.1755 106.707 42.7988C106.931 42.4222 107.248 42.1323 107.659 41.9292C108.069 41.7261 108.552 41.6245 109.106 41.6245C109.538 41.6245 109.923 41.6901 110.261 41.8213C110.6 41.9482 110.885 42.1387 111.118 42.3926C111.355 42.6465 111.535 42.9575 111.658 43.3257C111.785 43.6938 111.848 44.1191 111.848 44.6016H110.68C110.68 44.318 110.646 44.0578 110.579 43.8208C110.511 43.5838 110.409 43.3786 110.274 43.2051C110.139 43.0273 109.973 42.8919 109.779 42.7988C109.584 42.7015 109.36 42.6528 109.106 42.6528C108.75 42.6528 108.456 42.7142 108.224 42.8369C107.995 42.9596 107.826 43.1331 107.716 43.3574C107.606 43.5775 107.551 43.8335 107.551 44.1255C107.551 44.3963 107.606 44.6333 107.716 44.8364C107.826 45.0396 108.012 45.2236 108.274 45.3887C108.541 45.5495 108.907 45.7082 109.373 45.8647C109.918 46.0382 110.382 46.2435 110.763 46.4805C111.144 46.7132 111.433 47.001 111.632 47.3438C111.831 47.6823 111.931 48.1034 111.931 48.6069C111.931 49.1528 111.808 49.6141 111.562 49.9907C111.317 50.3631 110.972 50.6466 110.528 50.8413C110.083 51.036 109.563 51.1333 108.966 51.1333C108.607 51.1333 108.251 51.0846 107.9 50.9873C107.549 50.89 107.231 50.7313 106.948 50.5112C106.664 50.2869 106.438 49.9928 106.269 49.6289C106.099 49.2607 106.015 48.8101 106.015 48.2769H107.195C107.195 48.6366 107.246 48.9349 107.348 49.1719C107.453 49.4046 107.593 49.5908 107.767 49.7305C107.94 49.8659 108.131 49.9632 108.338 50.0225C108.549 50.0775 108.759 50.105 108.966 50.105C109.347 50.105 109.669 50.0457 109.931 49.9272C110.198 49.8045 110.401 49.631 110.541 49.4067C110.68 49.1825 110.75 48.9201 110.75 48.6196ZM117.256 41.707V51H116.082V43.1733L113.714 44.0366V42.9766L117.072 41.707H117.256ZM122.195 46.6011L121.255 46.3599L121.719 41.7578H126.46V42.8433H122.715L122.436 45.3569C122.605 45.2596 122.819 45.1686 123.077 45.084C123.34 44.9993 123.64 44.957 123.979 44.957C124.406 44.957 124.789 45.0311 125.127 45.1792C125.466 45.3231 125.754 45.5304 125.991 45.8013C126.232 46.0721 126.416 46.3979 126.543 46.7788C126.67 47.1597 126.733 47.585 126.733 48.0547C126.733 48.499 126.672 48.9074 126.549 49.2798C126.431 49.6522 126.251 49.978 126.01 50.2573C125.769 50.5324 125.464 50.7461 125.096 50.8984C124.732 51.0508 124.302 51.127 123.807 51.127C123.435 51.127 123.081 51.0762 122.747 50.9746C122.417 50.8688 122.121 50.7101 121.858 50.4985C121.6 50.2827 121.389 50.0161 121.224 49.6987C121.063 49.3771 120.961 49.0005 120.919 48.5688H122.036C122.087 48.9159 122.188 49.2078 122.341 49.4448C122.493 49.6818 122.692 49.8617 122.938 49.9844C123.187 50.1029 123.477 50.1621 123.807 50.1621C124.086 50.1621 124.334 50.1134 124.55 50.0161C124.766 49.9188 124.948 49.7791 125.096 49.5972C125.244 49.4152 125.356 49.1951 125.432 48.937C125.513 48.6789 125.553 48.389 125.553 48.0674C125.553 47.7754 125.513 47.5046 125.432 47.2549C125.352 47.0052 125.231 46.7873 125.07 46.6011C124.914 46.4149 124.721 46.271 124.493 46.1694C124.264 46.0636 124.002 46.0107 123.706 46.0107C123.312 46.0107 123.014 46.0636 122.811 46.1694C122.612 46.2752 122.406 46.4191 122.195 46.6011Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M22.8563 72.4813L28.275 67.0438L27.4688 66.2375L22.8563 70.8687L20.625 68.6375L19.8188 69.4438L22.8563 72.4813ZM18.375 76.25C18.075 76.25 17.8125 76.1375 17.5875 75.9125C17.3625 75.6875 17.25 75.425 17.25 75.125V63.875C17.25 63.575 17.3625 63.3125 17.5875 63.0875C17.8125 62.8625 18.075 62.75 18.375 62.75H29.625C29.925 62.75 30.1875 62.8625 30.4125 63.0875C30.6375 63.3125 30.75 63.575 30.75 63.875V75.125C30.75 75.425 30.6375 75.6875 30.4125 75.9125C30.1875 76.1375 29.925 76.25 29.625 76.25H18.375Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M40.4878 64.7578V74H39.2817V64.7578H40.4878ZM43.4585 64.7578V65.7607H36.3174V64.7578H43.4585ZM45.3438 68.2109V74H44.1694V67.1318H45.312L45.3438 68.2109ZM47.4893 67.0938L47.4829 68.1855C47.3856 68.1644 47.2925 68.1517 47.2036 68.1475C47.119 68.139 47.0216 68.1348 46.9116 68.1348C46.6408 68.1348 46.4017 68.1771 46.1943 68.2617C45.987 68.3464 45.8114 68.4648 45.6675 68.6172C45.5236 68.7695 45.4093 68.9515 45.3247 69.1631C45.2443 69.3704 45.1914 69.599 45.166 69.8486L44.8359 70.0391C44.8359 69.6243 44.8761 69.235 44.9565 68.8711C45.0412 68.5072 45.1702 68.1855 45.3438 67.9062C45.5173 67.6227 45.7373 67.4027 46.0039 67.2461C46.2747 67.0853 46.5964 67.0049 46.9688 67.0049C47.0534 67.0049 47.1507 67.0155 47.2607 67.0366C47.3708 67.0535 47.4469 67.0726 47.4893 67.0938ZM52.3706 72.8257V69.29C52.3706 69.0192 52.3156 68.7843 52.2056 68.5854C52.0998 68.3823 51.939 68.2257 51.7231 68.1157C51.5073 68.0057 51.2407 67.9507 50.9233 67.9507C50.6271 67.9507 50.3669 68.0015 50.1426 68.103C49.9225 68.2046 49.749 68.3379 49.6221 68.5029C49.4993 68.668 49.438 68.8457 49.438 69.0361H48.2637C48.2637 68.7907 48.3271 68.5474 48.4541 68.3062C48.5811 68.0649 48.763 67.847 49 67.6523C49.2412 67.4535 49.529 67.2969 49.8633 67.1826C50.2018 67.0641 50.5785 67.0049 50.9932 67.0049C51.4925 67.0049 51.9326 67.0895 52.3135 67.2588C52.6986 67.4281 52.999 67.6841 53.2148 68.0269C53.4349 68.3654 53.5449 68.7907 53.5449 69.3027V72.502C53.5449 72.7305 53.564 72.9738 53.6021 73.2319C53.6444 73.4901 53.7057 73.7122 53.7861 73.8984V74H52.561C52.5018 73.8646 52.4552 73.6847 52.4214 73.4604C52.3875 73.2319 52.3706 73.0203 52.3706 72.8257ZM52.5737 69.8359L52.5864 70.6611H51.3994C51.0651 70.6611 50.7668 70.6886 50.5044 70.7437C50.242 70.7944 50.022 70.8727 49.8442 70.9785C49.6665 71.0843 49.5311 71.2176 49.438 71.3784C49.3449 71.535 49.2983 71.7191 49.2983 71.9307C49.2983 72.1465 49.347 72.3433 49.4443 72.521C49.5417 72.6987 49.6877 72.8405 49.8823 72.9463C50.0812 73.0479 50.3245 73.0986 50.6123 73.0986C50.972 73.0986 51.2894 73.0225 51.5645 72.8701C51.8395 72.7178 52.0575 72.5316 52.2183 72.3115C52.3833 72.0915 52.4722 71.8778 52.4849 71.6704L52.9863 72.2354C52.9567 72.4131 52.8763 72.6099 52.7451 72.8257C52.6139 73.0415 52.4383 73.2489 52.2183 73.4478C52.0024 73.6424 51.7443 73.8053 51.4438 73.9365C51.1476 74.0635 50.8133 74.127 50.4409 74.127C49.9754 74.127 49.5671 74.036 49.2158 73.854C48.8688 73.672 48.598 73.4287 48.4033 73.124C48.2129 72.8151 48.1177 72.4702 48.1177 72.0894C48.1177 71.7212 48.1896 71.3975 48.3335 71.1182C48.4774 70.8346 48.6847 70.5998 48.9556 70.4136C49.2264 70.2231 49.5522 70.0793 49.9331 69.9819C50.314 69.8846 50.7393 69.8359 51.209 69.8359H52.5737ZM56.5664 68.5981V74H55.3921V67.1318H56.5029L56.5664 68.5981ZM56.2871 70.3057L55.7983 70.2866C55.8026 69.8169 55.8724 69.3831 56.0078 68.9854C56.1432 68.5833 56.3337 68.2342 56.5791 67.938C56.8245 67.6418 57.1165 67.4132 57.4551 67.2524C57.7979 67.0874 58.1766 67.0049 58.5913 67.0049C58.9299 67.0049 59.2345 67.0514 59.5054 67.1445C59.7762 67.2334 60.0068 67.3773 60.1973 67.5762C60.3919 67.7751 60.54 68.0332 60.6416 68.3506C60.7432 68.6637 60.7939 69.0467 60.7939 69.4995V74H59.6133V69.4868C59.6133 69.1271 59.5604 68.8394 59.4546 68.6235C59.3488 68.4035 59.1943 68.2448 58.9912 68.1475C58.7881 68.0459 58.5384 67.9951 58.2422 67.9951C57.9502 67.9951 57.6836 68.0565 57.4424 68.1792C57.2054 68.3019 57.0002 68.4712 56.8267 68.687C56.6574 68.9028 56.5241 69.1504 56.4268 69.4297C56.3337 69.7048 56.2871 69.9967 56.2871 70.3057ZM66.5767 72.1782C66.5767 72.009 66.5386 71.8524 66.4624 71.7085C66.3905 71.5604 66.2402 71.4271 66.0117 71.3086C65.7874 71.1859 65.4489 71.0801 64.9961 70.9912C64.6152 70.9108 64.2703 70.8156 63.9614 70.7056C63.6567 70.5955 63.3965 70.4622 63.1807 70.3057C62.9691 70.1491 62.8062 69.965 62.6919 69.7534C62.5776 69.5418 62.5205 69.2943 62.5205 69.0107C62.5205 68.7399 62.5798 68.4839 62.6982 68.2427C62.821 68.0015 62.9924 67.7878 63.2124 67.6016C63.4367 67.4154 63.7054 67.2694 64.0186 67.1636C64.3317 67.0578 64.6808 67.0049 65.0659 67.0049C65.616 67.0049 66.0858 67.1022 66.4751 67.2969C66.8644 67.4915 67.1628 67.7518 67.3701 68.0776C67.5775 68.3993 67.6812 68.7568 67.6812 69.1504H66.5068C66.5068 68.96 66.4497 68.7759 66.3354 68.5981C66.2254 68.4162 66.0625 68.266 65.8467 68.1475C65.6351 68.029 65.3748 67.9697 65.0659 67.9697C64.7401 67.9697 64.4756 68.0205 64.2725 68.1221C64.0736 68.2194 63.9276 68.3442 63.8345 68.4966C63.7456 68.6489 63.7012 68.8097 63.7012 68.979C63.7012 69.106 63.7223 69.2202 63.7646 69.3218C63.8112 69.4191 63.8916 69.5101 64.0059 69.5947C64.1201 69.6751 64.2809 69.7513 64.4883 69.8232C64.6956 69.8952 64.9601 69.9671 65.2817 70.0391C65.8446 70.166 66.3079 70.3184 66.6719 70.4961C67.0358 70.6738 67.3066 70.8918 67.4844 71.1499C67.6621 71.408 67.751 71.7212 67.751 72.0894C67.751 72.3898 67.6875 72.6649 67.5605 72.9146C67.4378 73.1642 67.258 73.38 67.021 73.562C66.7882 73.7397 66.509 73.8794 66.1831 73.981C65.8615 74.0783 65.4997 74.127 65.0977 74.127C64.4925 74.127 63.9805 74.019 63.5615 73.8032C63.1426 73.5874 62.8252 73.3081 62.6094 72.9653C62.3936 72.6226 62.2856 72.2607 62.2856 71.8799H63.4663C63.4832 72.2015 63.5763 72.4575 63.7456 72.6479C63.9149 72.8341 64.1222 72.9674 64.3677 73.0479C64.6131 73.124 64.8564 73.1621 65.0977 73.1621C65.4193 73.1621 65.688 73.1198 65.9038 73.0352C66.1239 72.9505 66.291 72.8341 66.4053 72.686C66.5195 72.5379 66.5767 72.3687 66.5767 72.1782ZM71.0454 74H69.8711V66.4082C69.8711 65.9131 69.96 65.4963 70.1377 65.1577C70.3197 64.8149 70.5799 64.5568 70.9185 64.3833C71.257 64.2056 71.659 64.1167 72.1245 64.1167C72.2599 64.1167 72.3953 64.1252 72.5308 64.1421C72.6704 64.159 72.8058 64.1844 72.937 64.2183L72.8735 65.1768C72.7847 65.1556 72.6831 65.1408 72.5688 65.1323C72.4588 65.1239 72.3488 65.1196 72.2388 65.1196C71.9891 65.1196 71.7733 65.1704 71.5913 65.272C71.4136 65.3693 71.2782 65.5132 71.1851 65.7036C71.092 65.894 71.0454 66.1289 71.0454 66.4082V74ZM72.5054 67.1318V68.0332H68.7856V67.1318H72.5054ZM76.5107 74.127C76.0326 74.127 75.5988 74.0465 75.2095 73.8857C74.8244 73.7207 74.4922 73.4901 74.2129 73.1938C73.9378 72.8976 73.7262 72.5464 73.5781 72.1401C73.43 71.7339 73.356 71.2896 73.356 70.8071V70.5405C73.356 69.9819 73.4385 69.4847 73.6035 69.0488C73.7686 68.6087 73.9928 68.2363 74.2764 67.9316C74.5599 67.627 74.8815 67.3963 75.2412 67.2397C75.6009 67.0832 75.9733 67.0049 76.3584 67.0049C76.8493 67.0049 77.2725 67.0895 77.6279 67.2588C77.9876 67.4281 78.2817 67.665 78.5103 67.9697C78.7388 68.2702 78.908 68.6257 79.0181 69.0361C79.1281 69.4424 79.1831 69.8867 79.1831 70.3691V70.896H74.0542V69.9375H78.0088V69.8486C77.9919 69.5439 77.9284 69.2477 77.8184 68.96C77.7126 68.6722 77.5433 68.4352 77.3105 68.249C77.0778 68.0628 76.7604 67.9697 76.3584 67.9697C76.0918 67.9697 75.8464 68.0269 75.6221 68.1411C75.3978 68.2511 75.2052 68.4162 75.0444 68.6362C74.8836 68.8563 74.7588 69.125 74.6699 69.4424C74.5811 69.7598 74.5366 70.1258 74.5366 70.5405V70.8071C74.5366 71.133 74.5811 71.4398 74.6699 71.7275C74.763 72.0111 74.8963 72.2607 75.0698 72.4766C75.2476 72.6924 75.4613 72.8617 75.7109 72.9844C75.9648 73.1071 76.2526 73.1685 76.5742 73.1685C76.9889 73.1685 77.3402 73.0838 77.6279 72.9146C77.9157 72.7453 78.1675 72.5189 78.3833 72.2354L79.0942 72.8003C78.9461 73.0246 78.7578 73.2383 78.5293 73.4414C78.3008 73.6445 78.0194 73.8096 77.6851 73.9365C77.355 74.0635 76.9635 74.127 76.5107 74.127ZM81.7285 68.2109V74H80.5542V67.1318H81.6968L81.7285 68.2109ZM83.874 67.0938L83.8677 68.1855C83.7703 68.1644 83.6772 68.1517 83.5884 68.1475C83.5037 68.139 83.4064 68.1348 83.2964 68.1348C83.0256 68.1348 82.7865 68.1771 82.5791 68.2617C82.3717 68.3464 82.1961 68.4648 82.0522 68.6172C81.9084 68.7695 81.7941 68.9515 81.7095 69.1631C81.6291 69.3704 81.5762 69.599 81.5508 69.8486L81.2207 70.0391C81.2207 69.6243 81.2609 69.235 81.3413 68.8711C81.4259 68.5072 81.555 68.1855 81.7285 67.9062C81.902 67.6227 82.1221 67.4027 82.3887 67.2461C82.6595 67.0853 82.9811 67.0049 83.3535 67.0049C83.4382 67.0049 83.5355 67.0155 83.6455 67.0366C83.7555 67.0535 83.8317 67.0726 83.874 67.0938ZM94.1191 69.0425V70.147H87.7842V69.0425H94.1191ZM91.542 66.3447V73.0732H90.3677V66.3447H91.542ZM102.168 63.2598V65.1958H101.216V63.2598H102.168ZM102.054 73.6255V75.3203H101.108V73.6255H102.054ZM103.323 71.6196C103.323 71.3657 103.266 71.1372 103.152 70.9341C103.038 70.731 102.849 70.5448 102.587 70.3755C102.325 70.2062 101.973 70.0496 101.533 69.9058C101 69.7407 100.539 69.5397 100.149 69.3027C99.7643 69.0658 99.466 68.7716 99.2544 68.4204C99.047 68.0692 98.9434 67.6439 98.9434 67.1445C98.9434 66.624 99.0555 66.1755 99.2798 65.7988C99.5041 65.4222 99.8215 65.1323 100.232 64.9292C100.642 64.7261 101.125 64.6245 101.679 64.6245C102.111 64.6245 102.496 64.6901 102.834 64.8213C103.173 64.9482 103.459 65.1387 103.691 65.3926C103.928 65.6465 104.108 65.9575 104.231 66.3257C104.358 66.6938 104.421 67.1191 104.421 67.6016H103.253C103.253 67.318 103.22 67.0578 103.152 66.8208C103.084 66.5838 102.983 66.3786 102.847 66.2051C102.712 66.0273 102.547 65.8919 102.352 65.7988C102.157 65.7015 101.933 65.6528 101.679 65.6528C101.324 65.6528 101.03 65.7142 100.797 65.8369C100.568 65.9596 100.399 66.1331 100.289 66.3574C100.179 66.5775 100.124 66.8335 100.124 67.1255C100.124 67.3963 100.179 67.6333 100.289 67.8364C100.399 68.0396 100.585 68.2236 100.848 68.3887C101.114 68.5495 101.48 68.7082 101.946 68.8647C102.492 69.0382 102.955 69.2435 103.336 69.4805C103.717 69.7132 104.007 70.001 104.206 70.3438C104.404 70.6823 104.504 71.1034 104.504 71.6069C104.504 72.1528 104.381 72.6141 104.136 72.9907C103.89 73.3631 103.545 73.6466 103.101 73.8413C102.657 74.036 102.136 74.1333 101.54 74.1333C101.18 74.1333 100.824 74.0846 100.473 73.9873C100.122 73.89 99.8045 73.7313 99.521 73.5112C99.2375 73.2869 99.0111 72.9928 98.8418 72.6289C98.6725 72.2607 98.5879 71.8101 98.5879 71.2769H99.7686C99.7686 71.6366 99.8193 71.9349 99.9209 72.1719C100.027 72.4046 100.166 72.5908 100.34 72.7305C100.513 72.8659 100.704 72.9632 100.911 73.0225C101.123 73.0775 101.332 73.105 101.54 73.105C101.92 73.105 102.242 73.0457 102.504 72.9272C102.771 72.8045 102.974 72.631 103.114 72.4067C103.253 72.1825 103.323 71.9201 103.323 71.6196ZM107.684 68.8013H108.522C108.932 68.8013 109.271 68.7336 109.538 68.5981C109.808 68.4585 110.009 68.2702 110.141 68.0332C110.276 67.792 110.344 67.5212 110.344 67.2207C110.344 66.8652 110.285 66.5669 110.166 66.3257C110.048 66.0845 109.87 65.9025 109.633 65.7798C109.396 65.6571 109.095 65.5957 108.731 65.5957C108.401 65.5957 108.109 65.6613 107.855 65.7925C107.606 65.9194 107.409 66.1014 107.265 66.3384C107.125 66.5754 107.056 66.8547 107.056 67.1763H105.881C105.881 66.7065 106 66.2791 106.237 65.894C106.474 65.509 106.806 65.2021 107.233 64.9736C107.665 64.7451 108.164 64.6309 108.731 64.6309C109.29 64.6309 109.779 64.7303 110.198 64.9292C110.617 65.1239 110.943 65.4159 111.175 65.8052C111.408 66.1903 111.524 66.6706 111.524 67.2461C111.524 67.4788 111.469 67.7285 111.359 67.9951C111.254 68.2575 111.086 68.5029 110.858 68.7314C110.634 68.96 110.342 69.1483 109.982 69.2964C109.622 69.4403 109.191 69.5122 108.687 69.5122H107.684V68.8013ZM107.684 69.7661V69.0615H108.687C109.275 69.0615 109.762 69.1313 110.147 69.271C110.532 69.4106 110.835 69.5968 111.055 69.8296C111.279 70.0623 111.436 70.3184 111.524 70.5977C111.618 70.8727 111.664 71.1478 111.664 71.4229C111.664 71.8545 111.59 72.2375 111.442 72.5718C111.298 72.9061 111.093 73.1896 110.826 73.4224C110.564 73.6551 110.255 73.8307 109.899 73.9492C109.544 74.0677 109.157 74.127 108.738 74.127C108.336 74.127 107.957 74.0698 107.602 73.9556C107.25 73.8413 106.939 73.6763 106.668 73.4604C106.398 73.2404 106.186 72.9717 106.034 72.6543C105.881 72.3327 105.805 71.9666 105.805 71.5562H106.979C106.979 71.8778 107.049 72.1592 107.189 72.4004C107.333 72.6416 107.536 72.8299 107.798 72.9653C108.065 73.0965 108.378 73.1621 108.738 73.1621C109.097 73.1621 109.406 73.1007 109.665 72.978C109.927 72.8511 110.128 72.6606 110.268 72.4067C110.411 72.1528 110.483 71.8333 110.483 71.4482C110.483 71.0632 110.403 70.7479 110.242 70.5024C110.081 70.2528 109.853 70.0687 109.557 69.9502C109.265 69.8275 108.92 69.7661 108.522 69.7661H107.684ZM119.084 68.6426V70.0518C119.084 70.8092 119.017 71.4482 118.881 71.9688C118.746 72.4893 118.551 72.9082 118.297 73.2256C118.043 73.543 117.737 73.7736 117.377 73.9175C117.021 74.0571 116.619 74.127 116.171 74.127C115.815 74.127 115.487 74.0825 115.187 73.9937C114.887 73.9048 114.616 73.763 114.375 73.5684C114.138 73.3695 113.934 73.1113 113.765 72.7939C113.596 72.4766 113.467 72.0915 113.378 71.6387C113.289 71.1859 113.245 70.6569 113.245 70.0518V68.6426C113.245 67.8851 113.312 67.2503 113.448 66.7383C113.587 66.2262 113.784 65.8158 114.038 65.5068C114.292 65.1937 114.597 64.9694 114.952 64.834C115.312 64.6986 115.714 64.6309 116.158 64.6309C116.518 64.6309 116.848 64.6753 117.148 64.7642C117.453 64.8488 117.724 64.9863 117.961 65.1768C118.198 65.363 118.399 65.6126 118.564 65.9258C118.733 66.2347 118.862 66.6134 118.951 67.062C119.04 67.5106 119.084 68.0374 119.084 68.6426ZM117.904 70.2422V68.4458C117.904 68.0311 117.878 67.6672 117.828 67.354C117.781 67.0366 117.711 66.7658 117.618 66.5415C117.525 66.3172 117.407 66.1353 117.263 65.9956C117.123 65.856 116.96 65.7544 116.774 65.6909C116.592 65.6232 116.387 65.5894 116.158 65.5894C115.879 65.5894 115.631 65.6423 115.416 65.748C115.2 65.8496 115.018 66.0125 114.87 66.2368C114.726 66.4611 114.616 66.7552 114.54 67.1191C114.463 67.4831 114.425 67.9253 114.425 68.4458V70.2422C114.425 70.6569 114.449 71.0229 114.495 71.3403C114.546 71.6577 114.62 71.9328 114.717 72.1655C114.815 72.394 114.933 72.5824 115.073 72.7305C115.212 72.8786 115.373 72.9886 115.555 73.0605C115.741 73.1283 115.947 73.1621 116.171 73.1621C116.459 73.1621 116.71 73.1071 116.926 72.9971C117.142 72.887 117.322 72.7157 117.466 72.4829C117.614 72.2459 117.724 71.9434 117.796 71.5752C117.868 71.2028 117.904 70.7585 117.904 70.2422Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"15",y:"88.5",width:"268",height:"38",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M31.6523 108.561H32.8711C32.8076 109.145 32.6405 109.668 32.3696 110.129C32.0988 110.59 31.7158 110.956 31.2207 111.227C30.7256 111.494 30.1077 111.627 29.3672 111.627C28.8255 111.627 28.3325 111.525 27.8882 111.322C27.4481 111.119 27.0693 110.831 26.752 110.459C26.4346 110.082 26.1891 109.632 26.0156 109.107C25.8464 108.578 25.7617 107.99 25.7617 107.342V106.422C25.7617 105.774 25.8464 105.188 26.0156 104.664C26.1891 104.135 26.4367 103.682 26.7583 103.305C27.0841 102.929 27.4756 102.639 27.9326 102.436C28.3896 102.232 28.9038 102.131 29.4751 102.131C30.1733 102.131 30.7637 102.262 31.2461 102.524C31.7285 102.787 32.103 103.151 32.3696 103.616C32.6405 104.077 32.8076 104.613 32.8711 105.222H31.6523C31.5931 104.791 31.4831 104.42 31.3223 104.111C31.1615 103.798 30.9329 103.557 30.6367 103.388C30.3405 103.218 29.9533 103.134 29.4751 103.134C29.0646 103.134 28.7028 103.212 28.3896 103.369C28.0807 103.525 27.8205 103.747 27.6089 104.035C27.4015 104.323 27.245 104.668 27.1392 105.07C27.0334 105.472 26.9805 105.918 26.9805 106.409V107.342C26.9805 107.795 27.027 108.22 27.1201 108.618C27.2174 109.016 27.3634 109.365 27.5581 109.666C27.7528 109.966 28.0003 110.203 28.3008 110.376C28.6012 110.546 28.9567 110.63 29.3672 110.63C29.8877 110.63 30.3024 110.548 30.6113 110.383C30.9202 110.218 31.153 109.981 31.3096 109.672C31.4704 109.363 31.5846 108.993 31.6523 108.561ZM38.4126 110.326V106.79C38.4126 106.519 38.3576 106.284 38.2476 106.085C38.1418 105.882 37.981 105.726 37.7651 105.616C37.5493 105.506 37.2827 105.451 36.9653 105.451C36.6691 105.451 36.4089 105.501 36.1846 105.603C35.9645 105.705 35.791 105.838 35.6641 106.003C35.5413 106.168 35.48 106.346 35.48 106.536H34.3057C34.3057 106.291 34.3691 106.047 34.4961 105.806C34.623 105.565 34.805 105.347 35.042 105.152C35.2832 104.953 35.571 104.797 35.9053 104.683C36.2438 104.564 36.6204 104.505 37.0352 104.505C37.5345 104.505 37.9746 104.59 38.3555 104.759C38.7406 104.928 39.041 105.184 39.2568 105.527C39.4769 105.865 39.5869 106.291 39.5869 106.803V110.002C39.5869 110.23 39.606 110.474 39.644 110.732C39.6864 110.99 39.7477 111.212 39.8281 111.398V111.5H38.603C38.5438 111.365 38.4972 111.185 38.4634 110.96C38.4295 110.732 38.4126 110.52 38.4126 110.326ZM38.6157 107.336L38.6284 108.161H37.4414C37.1071 108.161 36.8088 108.189 36.5464 108.244C36.284 108.294 36.064 108.373 35.8862 108.479C35.7085 108.584 35.5731 108.718 35.48 108.878C35.3869 109.035 35.3403 109.219 35.3403 109.431C35.3403 109.646 35.389 109.843 35.4863 110.021C35.5837 110.199 35.7297 110.34 35.9243 110.446C36.1232 110.548 36.3665 110.599 36.6543 110.599C37.014 110.599 37.3314 110.522 37.6064 110.37C37.8815 110.218 38.0994 110.032 38.2603 109.812C38.4253 109.591 38.5142 109.378 38.5269 109.17L39.0283 109.735C38.9987 109.913 38.9183 110.11 38.7871 110.326C38.6559 110.542 38.4803 110.749 38.2603 110.948C38.0444 111.142 37.7863 111.305 37.4858 111.437C37.1896 111.563 36.8553 111.627 36.4829 111.627C36.0174 111.627 35.609 111.536 35.2578 111.354C34.9108 111.172 34.64 110.929 34.4453 110.624C34.2549 110.315 34.1597 109.97 34.1597 109.589C34.1597 109.221 34.2316 108.897 34.3755 108.618C34.5194 108.335 34.7267 108.1 34.9976 107.914C35.2684 107.723 35.5942 107.579 35.9751 107.482C36.356 107.385 36.7812 107.336 37.251 107.336H38.6157ZM42.71 101.75V111.5H41.5293V101.75H42.71ZM47.3438 110.662C47.623 110.662 47.8812 110.605 48.1182 110.491C48.3551 110.376 48.5498 110.22 48.7021 110.021C48.8545 109.818 48.9412 109.587 48.9624 109.329H50.0796C50.0584 109.735 49.9209 110.114 49.667 110.465C49.4173 110.812 49.0894 111.094 48.6831 111.31C48.2769 111.521 47.8304 111.627 47.3438 111.627C46.8275 111.627 46.3768 111.536 45.9917 111.354C45.6108 111.172 45.2935 110.922 45.0396 110.605C44.7899 110.288 44.6016 109.924 44.4746 109.513C44.3519 109.098 44.2905 108.66 44.2905 108.199V107.933C44.2905 107.471 44.3519 107.035 44.4746 106.625C44.6016 106.21 44.7899 105.844 45.0396 105.527C45.2935 105.209 45.6108 104.96 45.9917 104.778C46.3768 104.596 46.8275 104.505 47.3438 104.505C47.8812 104.505 48.3509 104.615 48.7529 104.835C49.1549 105.051 49.4702 105.347 49.6987 105.724C49.9315 106.096 50.0584 106.519 50.0796 106.993H48.9624C48.9412 106.71 48.8608 106.454 48.7212 106.225C48.5858 105.997 48.3996 105.815 48.1626 105.679C47.9299 105.54 47.6569 105.47 47.3438 105.47C46.984 105.47 46.6815 105.542 46.436 105.686C46.1948 105.825 46.0023 106.016 45.8584 106.257C45.7188 106.494 45.6172 106.758 45.5537 107.05C45.4945 107.338 45.4648 107.632 45.4648 107.933V108.199C45.4648 108.5 45.4945 108.796 45.5537 109.088C45.613 109.38 45.7124 109.644 45.8521 109.881C45.9959 110.118 46.1885 110.309 46.4297 110.453C46.6751 110.592 46.9798 110.662 47.3438 110.662ZM55.6021 109.913V104.632H56.7827V111.5H55.6592L55.6021 109.913ZM55.8242 108.466L56.313 108.453C56.313 108.91 56.2643 109.333 56.167 109.723C56.0739 110.108 55.9215 110.442 55.71 110.726C55.4984 111.009 55.2212 111.231 54.8784 111.392C54.5356 111.549 54.1188 111.627 53.6279 111.627C53.2936 111.627 52.9868 111.578 52.7075 111.481C52.4325 111.384 52.1955 111.233 51.9966 111.03C51.7977 110.827 51.6432 110.563 51.5332 110.237C51.4274 109.911 51.3745 109.52 51.3745 109.062V104.632H52.5488V109.075C52.5488 109.384 52.5827 109.64 52.6504 109.843C52.7223 110.042 52.8175 110.201 52.936 110.319C53.0588 110.434 53.1942 110.514 53.3423 110.561C53.4946 110.607 53.6512 110.63 53.812 110.63C54.3114 110.63 54.707 110.535 54.999 110.345C55.291 110.15 55.5005 109.89 55.6274 109.564C55.7586 109.234 55.8242 108.868 55.8242 108.466ZM59.8486 101.75V111.5H58.668V101.75H59.8486ZM65.7837 110.326V106.79C65.7837 106.519 65.7287 106.284 65.6187 106.085C65.5129 105.882 65.3521 105.726 65.1362 105.616C64.9204 105.506 64.6538 105.451 64.3364 105.451C64.0402 105.451 63.7799 105.501 63.5557 105.603C63.3356 105.705 63.1621 105.838 63.0352 106.003C62.9124 106.168 62.8511 106.346 62.8511 106.536H61.6768C61.6768 106.291 61.7402 106.047 61.8672 105.806C61.9941 105.565 62.1761 105.347 62.4131 105.152C62.6543 104.953 62.9421 104.797 63.2764 104.683C63.6149 104.564 63.9915 104.505 64.4062 104.505C64.9056 104.505 65.3457 104.59 65.7266 104.759C66.1117 104.928 66.4121 105.184 66.6279 105.527C66.848 105.865 66.958 106.291 66.958 106.803V110.002C66.958 110.23 66.9771 110.474 67.0151 110.732C67.0575 110.99 67.1188 111.212 67.1992 111.398V111.5H65.9741C65.9149 111.365 65.8683 111.185 65.8345 110.96C65.8006 110.732 65.7837 110.52 65.7837 110.326ZM65.9868 107.336L65.9995 108.161H64.8125C64.4782 108.161 64.1799 108.189 63.9175 108.244C63.6551 108.294 63.4351 108.373 63.2573 108.479C63.0796 108.584 62.9442 108.718 62.8511 108.878C62.758 109.035 62.7114 109.219 62.7114 109.431C62.7114 109.646 62.7601 109.843 62.8574 110.021C62.9548 110.199 63.1007 110.34 63.2954 110.446C63.4943 110.548 63.7376 110.599 64.0254 110.599C64.3851 110.599 64.7025 110.522 64.9775 110.37C65.2526 110.218 65.4705 110.032 65.6313 109.812C65.7964 109.591 65.8853 109.378 65.8979 109.17L66.3994 109.735C66.3698 109.913 66.2894 110.11 66.1582 110.326C66.027 110.542 65.8514 110.749 65.6313 110.948C65.4155 111.142 65.1574 111.305 64.8569 111.437C64.5607 111.563 64.2264 111.627 63.854 111.627C63.3885 111.627 62.9801 111.536 62.6289 111.354C62.2819 111.172 62.0111 110.929 61.8164 110.624C61.626 110.315 61.5308 109.97 61.5308 109.589C61.5308 109.221 61.6027 108.897 61.7466 108.618C61.8905 108.335 62.0978 108.1 62.3687 107.914C62.6395 107.723 62.9653 107.579 63.3462 107.482C63.7271 107.385 64.1523 107.336 64.6221 107.336H65.9868ZM71.6807 104.632V105.533H67.9673V104.632H71.6807ZM69.2241 102.962H70.3984V109.799C70.3984 110.032 70.4344 110.207 70.5063 110.326C70.5783 110.444 70.6714 110.522 70.7856 110.561C70.8999 110.599 71.0226 110.618 71.1538 110.618C71.2511 110.618 71.3527 110.609 71.4585 110.592C71.5685 110.571 71.651 110.554 71.7061 110.542L71.7124 111.5C71.6193 111.53 71.4966 111.557 71.3442 111.583C71.1961 111.612 71.0163 111.627 70.8047 111.627C70.5169 111.627 70.2524 111.57 70.0112 111.456C69.77 111.341 69.5775 111.151 69.4336 110.884C69.2939 110.613 69.2241 110.25 69.2241 109.792V102.962ZM75.9082 111.627C75.43 111.627 74.9963 111.547 74.6069 111.386C74.2218 111.221 73.8896 110.99 73.6104 110.694C73.3353 110.398 73.1237 110.046 72.9756 109.64C72.8275 109.234 72.7534 108.79 72.7534 108.307V108.041C72.7534 107.482 72.8359 106.985 73.001 106.549C73.166 106.109 73.3903 105.736 73.6738 105.432C73.9574 105.127 74.279 104.896 74.6387 104.74C74.9984 104.583 75.3708 104.505 75.7559 104.505C76.2467 104.505 76.6699 104.59 77.0254 104.759C77.3851 104.928 77.6792 105.165 77.9077 105.47C78.1362 105.77 78.3055 106.126 78.4155 106.536C78.5256 106.942 78.5806 107.387 78.5806 107.869V108.396H73.4517V107.438H77.4062V107.349C77.3893 107.044 77.3258 106.748 77.2158 106.46C77.11 106.172 76.9408 105.935 76.708 105.749C76.4753 105.563 76.1579 105.47 75.7559 105.47C75.4893 105.47 75.2438 105.527 75.0195 105.641C74.7952 105.751 74.6027 105.916 74.4419 106.136C74.2811 106.356 74.1562 106.625 74.0674 106.942C73.9785 107.26 73.9341 107.626 73.9341 108.041V108.307C73.9341 108.633 73.9785 108.94 74.0674 109.228C74.1605 109.511 74.2938 109.761 74.4673 109.977C74.645 110.192 74.8587 110.362 75.1084 110.484C75.3623 110.607 75.6501 110.668 75.9717 110.668C76.3864 110.668 76.7376 110.584 77.0254 110.415C77.3132 110.245 77.5649 110.019 77.7808 109.735L78.4917 110.3C78.3436 110.525 78.1553 110.738 77.9268 110.941C77.6982 111.145 77.4168 111.31 77.0825 111.437C76.7524 111.563 76.361 111.627 75.9082 111.627ZM84.2808 110.167V101.75H85.4614V111.5H84.3823L84.2808 110.167ZM79.6597 108.142V108.009C79.6597 107.484 79.7231 107.008 79.8501 106.581C79.9813 106.149 80.1654 105.779 80.4023 105.47C80.6436 105.161 80.9292 104.924 81.2593 104.759C81.5936 104.59 81.966 104.505 82.3765 104.505C82.8081 104.505 83.1847 104.581 83.5063 104.733C83.8322 104.882 84.1073 105.099 84.3315 105.387C84.5601 105.671 84.7399 106.014 84.8711 106.416C85.0023 106.818 85.0933 107.272 85.144 107.78V108.364C85.0975 108.868 85.0065 109.321 84.8711 109.723C84.7399 110.125 84.5601 110.467 84.3315 110.751C84.1073 111.035 83.8322 111.252 83.5063 111.405C83.1805 111.553 82.7996 111.627 82.3638 111.627C81.9618 111.627 81.5936 111.54 81.2593 111.367C80.9292 111.193 80.6436 110.95 80.4023 110.637C80.1654 110.324 79.9813 109.955 79.8501 109.532C79.7231 109.105 79.6597 108.641 79.6597 108.142ZM80.8403 108.009V108.142C80.8403 108.485 80.8742 108.806 80.9419 109.107C81.0138 109.407 81.1239 109.672 81.272 109.9C81.4201 110.129 81.6084 110.309 81.8369 110.44C82.0654 110.567 82.3384 110.63 82.6558 110.63C83.0451 110.63 83.3646 110.548 83.6143 110.383C83.8682 110.218 84.0713 110 84.2236 109.729C84.376 109.458 84.4945 109.164 84.5791 108.847V107.317C84.5283 107.084 84.4543 106.86 84.3569 106.644C84.2638 106.424 84.1411 106.229 83.9888 106.06C83.8407 105.887 83.6566 105.749 83.4365 105.647C83.2207 105.546 82.9647 105.495 82.6685 105.495C82.3468 105.495 82.0697 105.563 81.8369 105.698C81.6084 105.829 81.4201 106.011 81.272 106.244C81.1239 106.473 81.0138 106.739 80.9419 107.044C80.8742 107.344 80.8403 107.666 80.8403 108.009ZM91.6885 105.952V114.141H90.5078V104.632H91.5869L91.6885 105.952ZM96.3159 108.009V108.142C96.3159 108.641 96.2567 109.105 96.1382 109.532C96.0197 109.955 95.8462 110.324 95.6177 110.637C95.3934 110.95 95.1162 111.193 94.7861 111.367C94.4561 111.54 94.0773 111.627 93.6499 111.627C93.214 111.627 92.8289 111.555 92.4946 111.411C92.1603 111.267 91.8768 111.058 91.644 110.783C91.4113 110.508 91.2251 110.178 91.0854 109.792C90.95 109.407 90.8569 108.974 90.8062 108.491V107.78C90.8569 107.272 90.9521 106.818 91.0918 106.416C91.2314 106.014 91.4155 105.671 91.644 105.387C91.8768 105.099 92.1582 104.882 92.4883 104.733C92.8184 104.581 93.1992 104.505 93.6309 104.505C94.0625 104.505 94.4455 104.59 94.7798 104.759C95.1141 104.924 95.3955 105.161 95.624 105.47C95.8525 105.779 96.0239 106.149 96.1382 106.581C96.2567 107.008 96.3159 107.484 96.3159 108.009ZM95.1353 108.142V108.009C95.1353 107.666 95.0993 107.344 95.0273 107.044C94.9554 106.739 94.8433 106.473 94.6909 106.244C94.5428 106.011 94.3524 105.829 94.1196 105.698C93.8869 105.563 93.6097 105.495 93.2881 105.495C92.9919 105.495 92.7337 105.546 92.5137 105.647C92.2979 105.749 92.1138 105.887 91.9614 106.06C91.8091 106.229 91.6842 106.424 91.5869 106.644C91.4938 106.86 91.424 107.084 91.3774 107.317V108.961C91.4621 109.257 91.5806 109.536 91.7329 109.799C91.8853 110.057 92.0884 110.266 92.3423 110.427C92.5962 110.584 92.9157 110.662 93.3008 110.662C93.6182 110.662 93.8911 110.597 94.1196 110.465C94.3524 110.33 94.5428 110.146 94.6909 109.913C94.8433 109.68 94.9554 109.414 95.0273 109.113C95.0993 108.809 95.1353 108.485 95.1353 108.142ZM98.9883 105.711V111.5H97.814V104.632H98.9565L98.9883 105.711ZM101.134 104.594L101.127 105.686C101.03 105.664 100.937 105.652 100.848 105.647C100.764 105.639 100.666 105.635 100.556 105.635C100.285 105.635 100.046 105.677 99.8389 105.762C99.6315 105.846 99.4559 105.965 99.312 106.117C99.1681 106.27 99.0539 106.451 98.9692 106.663C98.8888 106.87 98.8359 107.099 98.8105 107.349L98.4805 107.539C98.4805 107.124 98.5207 106.735 98.6011 106.371C98.6857 106.007 98.8148 105.686 98.9883 105.406C99.1618 105.123 99.3818 104.903 99.6484 104.746C99.9193 104.585 100.241 104.505 100.613 104.505C100.698 104.505 100.795 104.515 100.905 104.537C101.015 104.554 101.091 104.573 101.134 104.594ZM103.495 104.632V111.5H102.314V104.632H103.495ZM102.226 102.81C102.226 102.62 102.283 102.459 102.397 102.328C102.515 102.196 102.689 102.131 102.917 102.131C103.142 102.131 103.313 102.196 103.432 102.328C103.554 102.459 103.616 102.62 103.616 102.81C103.616 102.992 103.554 103.149 103.432 103.28C103.313 103.407 103.142 103.47 102.917 103.47C102.689 103.47 102.515 103.407 102.397 103.28C102.283 103.149 102.226 102.992 102.226 102.81ZM108.129 110.662C108.408 110.662 108.666 110.605 108.903 110.491C109.14 110.376 109.335 110.22 109.487 110.021C109.64 109.818 109.726 109.587 109.748 109.329H110.865C110.844 109.735 110.706 110.114 110.452 110.465C110.202 110.812 109.875 111.094 109.468 111.31C109.062 111.521 108.616 111.627 108.129 111.627C107.613 111.627 107.162 111.536 106.777 111.354C106.396 111.172 106.079 110.922 105.825 110.605C105.575 110.288 105.387 109.924 105.26 109.513C105.137 109.098 105.076 108.66 105.076 108.199V107.933C105.076 107.471 105.137 107.035 105.26 106.625C105.387 106.21 105.575 105.844 105.825 105.527C106.079 105.209 106.396 104.96 106.777 104.778C107.162 104.596 107.613 104.505 108.129 104.505C108.666 104.505 109.136 104.615 109.538 104.835C109.94 105.051 110.255 105.347 110.484 105.724C110.717 106.096 110.844 106.519 110.865 106.993H109.748C109.726 106.71 109.646 106.454 109.506 106.225C109.371 105.997 109.185 105.815 108.948 105.679C108.715 105.54 108.442 105.47 108.129 105.47C107.769 105.47 107.467 105.542 107.221 105.686C106.98 105.825 106.787 106.016 106.644 106.257C106.504 106.494 106.402 106.758 106.339 107.05C106.28 107.338 106.25 107.632 106.25 107.933V108.199C106.25 108.5 106.28 108.796 106.339 109.088C106.398 109.38 106.498 109.644 106.637 109.881C106.781 110.118 106.974 110.309 107.215 110.453C107.46 110.592 107.765 110.662 108.129 110.662ZM115.035 111.627C114.557 111.627 114.123 111.547 113.734 111.386C113.349 111.221 113.017 110.99 112.737 110.694C112.462 110.398 112.251 110.046 112.103 109.64C111.954 109.234 111.88 108.79 111.88 108.307V108.041C111.88 107.482 111.963 106.985 112.128 106.549C112.293 106.109 112.517 105.736 112.801 105.432C113.084 105.127 113.406 104.896 113.766 104.74C114.125 104.583 114.498 104.505 114.883 104.505C115.374 104.505 115.797 104.59 116.152 104.759C116.512 104.928 116.806 105.165 117.035 105.47C117.263 105.77 117.432 106.126 117.542 106.536C117.653 106.942 117.708 107.387 117.708 107.869V108.396H112.579V107.438H116.533V107.349C116.516 107.044 116.453 106.748 116.343 106.46C116.237 106.172 116.068 105.935 115.835 105.749C115.602 105.563 115.285 105.47 114.883 105.47C114.616 105.47 114.371 105.527 114.146 105.641C113.922 105.751 113.73 105.916 113.569 106.136C113.408 106.356 113.283 106.625 113.194 106.942C113.105 107.26 113.061 107.626 113.061 108.041V108.307C113.061 108.633 113.105 108.94 113.194 109.228C113.287 109.511 113.421 109.761 113.594 109.977C113.772 110.192 113.986 110.362 114.235 110.484C114.489 110.607 114.777 110.668 115.099 110.668C115.513 110.668 115.865 110.584 116.152 110.415C116.44 110.245 116.692 110.019 116.908 109.735L117.619 110.3C117.471 110.525 117.282 110.738 117.054 110.941C116.825 111.145 116.544 111.31 116.209 111.437C115.879 111.563 115.488 111.627 115.035 111.627ZM119.028 110.878C119.028 110.679 119.089 110.512 119.212 110.376C119.339 110.237 119.521 110.167 119.758 110.167C119.995 110.167 120.175 110.237 120.297 110.376C120.424 110.512 120.488 110.679 120.488 110.878C120.488 111.073 120.424 111.238 120.297 111.373C120.175 111.508 119.995 111.576 119.758 111.576C119.521 111.576 119.339 111.508 119.212 111.373C119.089 111.238 119.028 111.073 119.028 110.878ZM119.034 105.273C119.034 105.074 119.096 104.907 119.218 104.771C119.345 104.632 119.527 104.562 119.764 104.562C120.001 104.562 120.181 104.632 120.304 104.771C120.431 104.907 120.494 105.074 120.494 105.273C120.494 105.468 120.431 105.633 120.304 105.768C120.181 105.903 120.001 105.971 119.764 105.971C119.527 105.971 119.345 105.903 119.218 105.768C119.096 105.633 119.034 105.468 119.034 105.273Z",fill:"white"}),(0,h.createElement)("path",{d:"M131.45 100.792V102.664H130.459V100.792H131.45ZM131.329 111.157V112.865H130.339V111.157H131.329ZM132.027 109.075C132.027 108.834 131.983 108.629 131.894 108.459C131.809 108.29 131.67 108.14 131.475 108.009C131.285 107.878 131.027 107.751 130.701 107.628C130.151 107.416 129.666 107.192 129.247 106.955C128.832 106.714 128.509 106.416 128.276 106.06C128.043 105.7 127.927 105.245 127.927 104.695C127.927 104.171 128.052 103.716 128.301 103.331C128.551 102.945 128.896 102.649 129.336 102.442C129.78 102.23 130.297 102.125 130.885 102.125C131.333 102.125 131.74 102.192 132.104 102.328C132.467 102.459 132.781 102.653 133.043 102.912C133.305 103.166 133.506 103.477 133.646 103.845C133.786 104.213 133.855 104.634 133.855 105.108H132.034C132.034 104.854 132.006 104.63 131.951 104.435C131.896 104.24 131.816 104.077 131.71 103.946C131.608 103.815 131.486 103.718 131.342 103.654C131.198 103.587 131.039 103.553 130.866 103.553C130.608 103.553 130.396 103.604 130.231 103.705C130.066 103.807 129.945 103.944 129.869 104.118C129.797 104.287 129.761 104.482 129.761 104.702C129.761 104.917 129.799 105.106 129.875 105.267C129.956 105.427 130.093 105.576 130.288 105.711C130.483 105.842 130.749 105.978 131.088 106.117C131.638 106.329 132.12 106.557 132.535 106.803C132.95 107.048 133.274 107.349 133.506 107.704C133.739 108.06 133.855 108.512 133.855 109.062C133.855 109.608 133.729 110.074 133.475 110.459C133.221 110.84 132.865 111.132 132.408 111.335C131.951 111.534 131.422 111.633 130.821 111.633C130.432 111.633 130.045 111.583 129.66 111.481C129.275 111.375 128.925 111.206 128.612 110.973C128.299 110.74 128.049 110.431 127.863 110.046C127.677 109.657 127.584 109.179 127.584 108.612H129.412C129.412 108.921 129.452 109.179 129.533 109.386C129.613 109.589 129.719 109.752 129.85 109.875C129.986 109.993 130.138 110.078 130.307 110.129C130.476 110.18 130.648 110.205 130.821 110.205C131.092 110.205 131.314 110.156 131.488 110.059C131.666 109.962 131.799 109.828 131.888 109.659C131.981 109.486 132.027 109.291 132.027 109.075ZM141.422 110.072V111.5H135.1V110.281L138.089 107.076C138.39 106.741 138.627 106.447 138.8 106.193C138.974 105.935 139.099 105.705 139.175 105.501C139.255 105.294 139.295 105.097 139.295 104.911C139.295 104.632 139.249 104.393 139.156 104.194C139.063 103.991 138.925 103.834 138.743 103.724C138.565 103.614 138.345 103.559 138.083 103.559C137.804 103.559 137.562 103.627 137.359 103.762C137.16 103.898 137.008 104.086 136.902 104.327C136.801 104.568 136.75 104.841 136.75 105.146H134.916C134.916 104.596 135.047 104.092 135.309 103.635C135.571 103.174 135.942 102.808 136.42 102.537C136.898 102.262 137.465 102.125 138.121 102.125C138.769 102.125 139.314 102.23 139.759 102.442C140.207 102.649 140.546 102.95 140.774 103.343C141.007 103.733 141.124 104.198 141.124 104.74C141.124 105.044 141.075 105.343 140.978 105.635C140.88 105.923 140.741 106.21 140.559 106.498C140.381 106.782 140.165 107.069 139.911 107.361C139.657 107.653 139.376 107.956 139.067 108.269L137.461 110.072H141.422ZM148.785 106.066V107.666C148.785 108.36 148.711 108.959 148.563 109.462C148.415 109.962 148.201 110.372 147.922 110.694C147.647 111.011 147.319 111.246 146.938 111.398C146.557 111.551 146.134 111.627 145.668 111.627C145.296 111.627 144.949 111.58 144.627 111.487C144.306 111.39 144.016 111.24 143.758 111.037C143.504 110.833 143.284 110.577 143.098 110.269C142.916 109.955 142.776 109.583 142.679 109.151C142.581 108.72 142.533 108.225 142.533 107.666V106.066C142.533 105.372 142.607 104.778 142.755 104.283C142.907 103.783 143.121 103.375 143.396 103.058C143.675 102.74 144.005 102.507 144.386 102.359C144.767 102.207 145.19 102.131 145.656 102.131C146.028 102.131 146.373 102.18 146.69 102.277C147.012 102.37 147.302 102.516 147.56 102.715C147.818 102.914 148.038 103.17 148.22 103.483C148.402 103.792 148.542 104.162 148.639 104.594C148.736 105.021 148.785 105.512 148.785 106.066ZM146.951 107.907V105.819C146.951 105.485 146.932 105.193 146.894 104.943C146.86 104.693 146.807 104.482 146.735 104.308C146.663 104.13 146.574 103.986 146.468 103.876C146.362 103.766 146.242 103.686 146.106 103.635C145.971 103.584 145.821 103.559 145.656 103.559C145.448 103.559 145.264 103.599 145.104 103.68C144.947 103.76 144.814 103.889 144.704 104.067C144.594 104.24 144.509 104.473 144.45 104.765C144.395 105.053 144.367 105.404 144.367 105.819V107.907C144.367 108.242 144.384 108.536 144.418 108.79C144.456 109.043 144.511 109.261 144.583 109.443C144.659 109.621 144.748 109.767 144.85 109.881C144.955 109.991 145.076 110.072 145.211 110.123C145.351 110.173 145.503 110.199 145.668 110.199C145.872 110.199 146.051 110.159 146.208 110.078C146.369 109.993 146.504 109.862 146.614 109.685C146.729 109.503 146.813 109.266 146.868 108.974C146.923 108.682 146.951 108.326 146.951 107.907ZM156.25 106.066V107.666C156.25 108.36 156.176 108.959 156.028 109.462C155.88 109.962 155.666 110.372 155.387 110.694C155.112 111.011 154.784 111.246 154.403 111.398C154.022 111.551 153.599 111.627 153.133 111.627C152.761 111.627 152.414 111.58 152.092 111.487C151.771 111.39 151.481 111.24 151.223 111.037C150.969 110.833 150.749 110.577 150.562 110.269C150.381 109.955 150.241 109.583 150.144 109.151C150.046 108.72 149.998 108.225 149.998 107.666V106.066C149.998 105.372 150.072 104.778 150.22 104.283C150.372 103.783 150.586 103.375 150.861 103.058C151.14 102.74 151.47 102.507 151.851 102.359C152.232 102.207 152.655 102.131 153.121 102.131C153.493 102.131 153.838 102.18 154.155 102.277C154.477 102.37 154.767 102.516 155.025 102.715C155.283 102.914 155.503 103.17 155.685 103.483C155.867 103.792 156.007 104.162 156.104 104.594C156.201 105.021 156.25 105.512 156.25 106.066ZM154.416 107.907V105.819C154.416 105.485 154.396 105.193 154.358 104.943C154.325 104.693 154.272 104.482 154.2 104.308C154.128 104.13 154.039 103.986 153.933 103.876C153.827 103.766 153.707 103.686 153.571 103.635C153.436 103.584 153.286 103.559 153.121 103.559C152.913 103.559 152.729 103.599 152.568 103.68C152.412 103.76 152.278 103.889 152.168 104.067C152.058 104.24 151.974 104.473 151.915 104.765C151.86 105.053 151.832 105.404 151.832 105.819V107.907C151.832 108.242 151.849 108.536 151.883 108.79C151.921 109.043 151.976 109.261 152.048 109.443C152.124 109.621 152.213 109.767 152.314 109.881C152.42 109.991 152.541 110.072 152.676 110.123C152.816 110.173 152.968 110.199 153.133 110.199C153.336 110.199 153.516 110.159 153.673 110.078C153.834 109.993 153.969 109.862 154.079 109.685C154.193 109.503 154.278 109.266 154.333 108.974C154.388 108.682 154.416 108.326 154.416 107.907ZM157.659 110.618C157.659 110.347 157.752 110.12 157.938 109.938C158.129 109.757 158.381 109.666 158.694 109.666C159.007 109.666 159.257 109.757 159.443 109.938C159.633 110.12 159.729 110.347 159.729 110.618C159.729 110.889 159.633 111.115 159.443 111.297C159.257 111.479 159.007 111.57 158.694 111.57C158.381 111.57 158.129 111.479 157.938 111.297C157.752 111.115 157.659 110.889 157.659 110.618ZM167.485 106.066V107.666C167.485 108.36 167.411 108.959 167.263 109.462C167.115 109.962 166.901 110.372 166.622 110.694C166.347 111.011 166.019 111.246 165.638 111.398C165.257 111.551 164.834 111.627 164.369 111.627C163.996 111.627 163.649 111.58 163.328 111.487C163.006 111.39 162.716 111.24 162.458 111.037C162.204 110.833 161.984 110.577 161.798 110.269C161.616 109.955 161.476 109.583 161.379 109.151C161.282 108.72 161.233 108.225 161.233 107.666V106.066C161.233 105.372 161.307 104.778 161.455 104.283C161.607 103.783 161.821 103.375 162.096 103.058C162.375 102.74 162.706 102.507 163.086 102.359C163.467 102.207 163.89 102.131 164.356 102.131C164.728 102.131 165.073 102.18 165.391 102.277C165.712 102.37 166.002 102.516 166.26 102.715C166.518 102.914 166.738 103.17 166.92 103.483C167.102 103.792 167.242 104.162 167.339 104.594C167.437 105.021 167.485 105.512 167.485 106.066ZM165.651 107.907V105.819C165.651 105.485 165.632 105.193 165.594 104.943C165.56 104.693 165.507 104.482 165.435 104.308C165.363 104.13 165.274 103.986 165.168 103.876C165.063 103.766 164.942 103.686 164.807 103.635C164.671 103.584 164.521 103.559 164.356 103.559C164.149 103.559 163.965 103.599 163.804 103.68C163.647 103.76 163.514 103.889 163.404 104.067C163.294 104.24 163.209 104.473 163.15 104.765C163.095 105.053 163.067 105.404 163.067 105.819V107.907C163.067 108.242 163.084 108.536 163.118 108.79C163.156 109.043 163.211 109.261 163.283 109.443C163.359 109.621 163.448 109.767 163.55 109.881C163.656 109.991 163.776 110.072 163.912 110.123C164.051 110.173 164.204 110.199 164.369 110.199C164.572 110.199 164.752 110.159 164.908 110.078C165.069 109.993 165.204 109.862 165.314 109.685C165.429 109.503 165.513 109.266 165.568 108.974C165.623 108.682 165.651 108.326 165.651 107.907ZM174.95 106.066V107.666C174.95 108.36 174.876 108.959 174.728 109.462C174.58 109.962 174.366 110.372 174.087 110.694C173.812 111.011 173.484 111.246 173.103 111.398C172.722 111.551 172.299 111.627 171.833 111.627C171.461 111.627 171.114 111.58 170.792 111.487C170.471 111.39 170.181 111.24 169.923 111.037C169.669 110.833 169.449 110.577 169.263 110.269C169.081 109.955 168.941 109.583 168.844 109.151C168.746 108.72 168.698 108.225 168.698 107.666V106.066C168.698 105.372 168.772 104.778 168.92 104.283C169.072 103.783 169.286 103.375 169.561 103.058C169.84 102.74 170.17 102.507 170.551 102.359C170.932 102.207 171.355 102.131 171.821 102.131C172.193 102.131 172.538 102.18 172.855 102.277C173.177 102.37 173.467 102.516 173.725 102.715C173.983 102.914 174.203 103.17 174.385 103.483C174.567 103.792 174.707 104.162 174.804 104.594C174.902 105.021 174.95 105.512 174.95 106.066ZM173.116 107.907V105.819C173.116 105.485 173.097 105.193 173.059 104.943C173.025 104.693 172.972 104.482 172.9 104.308C172.828 104.13 172.739 103.986 172.633 103.876C172.528 103.766 172.407 103.686 172.271 103.635C172.136 103.584 171.986 103.559 171.821 103.559C171.613 103.559 171.429 103.599 171.269 103.68C171.112 103.76 170.979 103.889 170.869 104.067C170.759 104.24 170.674 104.473 170.615 104.765C170.56 105.053 170.532 105.404 170.532 105.819V107.907C170.532 108.242 170.549 108.536 170.583 108.79C170.621 109.043 170.676 109.261 170.748 109.443C170.824 109.621 170.913 109.767 171.015 109.881C171.12 109.991 171.241 110.072 171.376 110.123C171.516 110.173 171.668 110.199 171.833 110.199C172.037 110.199 172.216 110.159 172.373 110.078C172.534 109.993 172.669 109.862 172.779 109.685C172.894 109.503 172.978 109.266 173.033 108.974C173.088 108.682 173.116 108.326 173.116 107.907Z",fill:"white"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_273_2176"},(0,h.createElement)("rect",{x:"15",y:"16.5",width:"268",height:"110",rx:"4",fill:"white"})))),{AdvancedFields:jC,FieldWrapper:xC,FieldSettingsWrapper:FC,ToolBarFields:BC,BlockName:AC,BlockDescription:PC,BlockLabel:SC,MacrosFields:NC,ClientSideMacros:IC}=JetFBComponents,{useUniqueNameOnDuplicate:TC}=JetFBHooks,{__:OC}=wp.i18n,{InspectorControls:JC,useBlockProps:RC}=wp.blockEditor,{TextControl:qC,TextareaControl:DC,ToggleControl:zC,PanelBody:UC,SelectControl:GC,__experimentalNumberControl:WC}=wp.components,KC=WC,$C={calc_hidden:OC("Check this to hide calculated field","jet-form-builder")},YC=JSON.parse('{"apiVersion":3,"name":"jet-forms/calculated-field","category":"jet-form-builder-fields","title":"Calculated Field","description":"Calculate and display your number values","icon":"\\n\\n","keywords":["jetformbuilder","field","calculated"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"validation":{"type":"object","default":{}},"value_type":{"type":"string","default":"number"},"date_format":{"type":"string","default":"YYYY-MM-DD"},"separate_decimals":{"type":"string","default":"."},"separate_thousands":{"type":"string","default":""},"calc_formula":{"type":"string","default":""},"precision":{"type":"number","default":2},"calc_prefix":{"type":"string","default":"","jfb":{"rich":true}},"calc_suffix":{"type":"string","default":"","jfb":{"rich":true}},"calc_hidden":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"placeholder":{"type":"string","default":""},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:XC}=wp.i18n,{createBlock:QC}=wp.blocks,{name:et,icon:Ct}=YC,tt={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ct}}),description:XC("Pull out the values from the form fields and meta fields and use them to calculate the formula of any complexity you've set before.","jet-form-builder"),edit:function(e){const C=RC();TC();const{attributes:t,setAttributes:l,isSelected:r,editProps:{uniqKey:n}}=e,a=(0,h.useRef)(null);return t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},kC):[(0,h.createElement)(BC,{key:n("ToolBarFields"),...e},(0,h.createElement)(IC,{withThis:!0},(0,h.createElement)(NC,{onClick:(e,C,r)=>{const n="option-label"===r?e.replace(/%$/,"::label%"):e,i=t.calc_formula||"",o=a.current;if(o){const e=o.selectionStart,C=o.selectionEnd,t=i.slice(0,e)+n+i.slice(C);l({calc_formula:t}),setTimeout(()=>{o.focus(),o.selectionStart=o.selectionEnd=e+n.length})}}}))),r&&(0,h.createElement)(JC,{key:n("InspectorControls")},(0,h.createElement)(UC,{title:OC("General","jet-form-builder"),key:"jet-form-general-fields"},(0,h.createElement)(SC,null),(0,h.createElement)(AC,null),(0,h.createElement)(PC,null)),(0,h.createElement)(FC,{...e},"date"!==t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:JetFormCalculatedField.field_desc}})):null,(0,h.createElement)(GC,{label:OC("Value type","jet-form-builder"),labelPosition:"top",value:t.value_type,onChange:e=>l({value_type:e}),options:[{value:"number",label:OC("as Number","jet-form-builder")},{value:"string",label:OC("as String","jet-form-builder")},{value:"date",label:OC("as Date","jet-form-builder")}]}),"date"===t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)(qC,{key:"calc_date_format",label:OC("Date Format","jet-form-builder"),value:t.date_format,onChange:e=>l({date_format:e})}),(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:JetFormCalculatedField.date_format}})):null,"number"===t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)(KC,{label:OC("Decimal Places Number","jet-form-builder"),labelPosition:"top",key:"precision",value:t.precision,onChange:e=>{l({precision:parseInt(e)})}}),(0,h.createElement)(qC,{key:"calc_separate_decimals",label:OC("Decimals separator","jet-form-builder"),value:t.separate_decimals,onChange:e=>l({separate_decimals:e})}),(0,h.createElement)(qC,{key:"calc_separate_thousands",label:OC("Thousands separator","jet-form-builder"),value:t.separate_thousands,onChange:e=>l({separate_thousands:e})}),(0,h.createElement)(qC,{key:"calc_prefix",label:OC("Calculated Value Prefix","jet-form-builder"),value:t.calc_prefix,help:OC("For space before or after text use:  ","jet-form-builder"),onChange:e=>{l({calc_prefix:e})}}),(0,h.createElement)(qC,{key:"calc_suffix",label:OC("Calculated Value Suffix","jet-form-builder"),value:t.calc_suffix,help:OC("For space before or after text use:  ","jet-form-builder"),onChange:e=>{l({calc_suffix:e})}})):null,(0,h.createElement)(zC,{key:"calc_hidden",label:OC("Hidden","jet-form-builder"),checked:t.calc_hidden,help:$C.calc_hidden,onChange:e=>{l({calc_hidden:Boolean(e)})}})),(0,h.createElement)(jC,{key:n("JetForm-advanced"),...e})),(0,h.createElement)("div",{...C,key:n("viewBlock")},(0,h.createElement)(xC,{key:n("FieldWrapper"),...e},(0,h.createElement)("div",{className:"jet-form-builder__calculated-field"},(0,h.createElement)("div",{className:"calc-prefix"},t.calc_prefix),(0,h.createElement)("div",{className:"calc-formula"},t.calc_formula),(0,h.createElement)("div",{className:"calc-suffix"},t.calc_suffix)),e.isSelected&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(DC,{key:"calc_formula",value:t.calc_formula,onChange:e=>{l({calc_formula:e})},ref:a}),(0,h.createElement)("div",{className:"jet-form-builder__calculated-field_info"},OC("You may use JavaScript's built-in ","jet-form-builder"),(0,h.createElement)("a",{href:"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math",target:"_blank",rel:"noopener noreferrer"},OC("Math","jet-form-builder")),OC(" object (e.g., Math.sqrt(16) returns 4) to perform more sophisticated operations.","jet-form-builder"),(0,h.createElement)("br",null),OC("You can also explore","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters",target:"_blank",rel:"noopener noreferrer"},OC("Filters","jet-form-builder")),", ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros",target:"_blank",rel:"noopener noreferrer"},OC("External Macros","jet-form-builder"))," ",OC("and","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Field-Attributes",target:"_blank",rel:"noopener noreferrer"},OC("Field Attributes","jet-form-builder"))," ",OC("for deeper customization.","jet-form-builder"),(0,h.createElement)("br",null),OC("Additionally, you can use the ternary operator (?:) for conditional calculations. For example: ((%field_one% + %field_two%) > 20) ? 10 : 5","jet-form-builder"),(0,h.createElement)("br",null),OC("For more details on using calculated fields, check out the Block Field section or read our in-depth guide","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://jetformbuilder.com/features/calculated-field",target:"_blank",rel:"noopener noreferrer"},OC("here","jet-form-builder")),"."))))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/number-field"],transform:e=>QC("jet-forms/number-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/number-field","jet-forms/text-field"],transform:e=>QC(et,{...e}),priority:0}]}};Object.defineProperty(yt,"name",{value:"default",configurable:!0});const{Repeater:lt,RepeaterAddNew:rt,RepeaterAddOrOperator:nt,ConditionItem:at,RepeaterState:it,ToggleControl:ot,ConditionsRepeaterContextProvider:st}=JetFBComponents,{useState:ct}=wp.element,{useBlockAttributes:dt,useBlockConditions:mt,useUniqKey:ut,useOnUpdateModal:pt}=JetFBHooks;let{SelectControl:ft,withFilters:Vt,Button:Ht,ToggleGroupControl:ht,__experimentalToggleGroupControl:bt}=wp.components;const{__:Mt}=wp.i18n,{addFilter:Lt}=wp.hooks;ht=ht||bt;const gt=e=>e.func_type&&e?.func_settings?.hasOwnProperty(e.func_type)?e?.func_settings[e.func_type]:{};Lt("jet.fb.block.condition.settings","jet-form-builder",e=>C=>{var t;const{current:l,settings:r,update:n}=C;return["show","hide"].includes(l.func_type)?(0,h.createElement)(ot,{checked:null!==(t=r?.dom)&&void 0!==t&&t,onChange:e=>n({dom:Boolean(e)})},Mt("Remove hidden elements from page HTML","jet-form-builder")+" ",(0,h.createElement)(Ht,{isLink:!0,onClick:()=>{},label:Mt("If this block is removed from the HTML, then when sending the form, the values from the inner fields will be empty","jet-form-builder"),showTooltip:!0},"(?)")):(0,h.createElement)(e,{...C})});const Zt=Vt("jet.fb.block.condition.settings")(()=>null);function yt(){var e;const[C,t]=dt(),[l,r]=ct(()=>C),{functions:n}=mt(),a=ut(),i=e=>{const C="function"==typeof e?e(l.conditions):e;r(e=>({...e,conditions:C}))};pt(()=>t(l));const o=gt(l);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ft,{key:a("SelectControl-operator"),label:Mt("Which function need execute?","jet-form-builder"),labelPosition:"side",value:l.func_type,options:n,onChange:e=>r(C=>({...C,func_type:e}))}),(0,h.createElement)(Zt,{current:l,settings:o,update:e=>r(C=>{var t;return{...C,func_settings:{...null!==(t=C?.func_settings)&&void 0!==t?t:{},[C.func_type]:{...o,...e}}}})}),(0,h.createElement)(st,null,(0,h.createElement)(lt,{items:null!==(e=l.conditions)&&void 0!==e?e:[],onSetState:i},(0,h.createElement)(at,null))),(0,h.createElement)(it,{state:i},(0,h.createElement)(ht,{style:{display:"flex"},hideLabelFromVision:!0,className:"jfb-toggle-group-control jfb-toggle-group-control--no-gap"},(0,h.createElement)(rt,null,Mt("Add Condition","jet-form-builder")),Boolean(l?.conditions?.length)&&(0,h.createElement)(nt,null,Mt("Add OR Operator","jet-form-builder")))))}const{ActionModal:Et}=JetFBComponents;function wt(e){const{setShowModal:C}=e;return(0,h.createElement)(Et,{classNames:["width-60"],onRequestClose:()=>C(!1),title:"Conditional Logic"},(0,h.createElement)(yt,null))}const{createContext:vt}=wp.element,_t=vt({showModal:!1,setShowModal:()=>{}}),{DetailsContainer:kt,HoverContainer:jt,HumanReadableConditions:xt}=JetFBComponents,{useBlockAttributes:Ft}=JetFBHooks,{useState:Bt,useContext:At}=wp.element,{__:Pt}=wp.i18n,{Button:St}=wp.components,Nt=function({group:e}){const[C,t]=Bt(!1),{setShowModal:l}=At(_t),[r,n]=Ft(),a=e.map(({condition:e})=>e),i=e.map(({index:e})=>e);return(0,h.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>t(!0),onFocus:()=>t(!0),onMouseOut:()=>t(!1),onBlur:()=>t(!1)},(0,h.createElement)(jt,{isHover:C},(0,h.createElement)(St,{isSmall:!0,isSecondary:!0,icon:"edit",onClick:()=>{n(({conditions:e})=>e.map((e,C)=>(e.__visible=C===i[0],e))),l(e=>!e)}},Pt("Edit","jet-form-builder")),(0,h.createElement)(St,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{n({conditions:r.conditions.filter((e,C)=>!i.includes(C))})}},Pt("Delete","jet-form-builder"))),(0,h.createElement)(kt,null,(0,h.createElement)(xt,{conditions:a,showWarning:!0})))},{DetailsContainer:It,HoverContainer:Tt}=JetFBComponents,{useBlockAttributes:Ot}=JetFBHooks,{useContext:Jt,useState:Rt}=wp.element,{__:qt}=wp.i18n,{Button:Dt}=wp.components,zt=function(){const{setShowModal:e}=Jt(_t),[C,t]=Ot(),[l,r]=Rt(!1);return(0,h.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>r(!0),onFocus:()=>r(!0),onMouseOut:()=>r(!1),onBlur:()=>r(!1)},(0,h.createElement)(Tt,{isHover:l},(0,h.createElement)(Dt,{isSmall:!0,isSecondary:!0,icon:"plus-alt2",onClick:()=>{t({conditions:[...JSON.parse(JSON.stringify(C.conditions)),{__visible:!0}]}),e(e=>!e)}},qt("Add new","jet-form-builder"))),(0,h.createElement)(It,null,(0,h.createElement)("span",{"data-title":qt("You have no conditions in this block.","jet-form-builder")}),(0,h.createElement)("span",{"data-title":qt("Please click here to add new.","jet-form-builder")})))},{__:Ut}=wp.i18n,{Children:Gt,cloneElement:Wt}=wp.element,{ContainersList:Kt}=JetFBComponents,$t=e=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)("b",null,Ut("OR","jet-form-builder")),(0,h.createElement)(Nt,{group:e})),Yt=function({attributes:e}){return Boolean(e?.conditions?.length)?(0,h.createElement)(Kt,null,Gt.map((e=>{let C={},t=0,l=0;for(const n of e){var r;n.hasOwnProperty("or_operator")?(t++,l++):(C[t]=null!==(r=C[t])&&void 0!==r?r:[],C[t].push({condition:n,index:l}),l++)}C=Object.values(C);const n=C.filter((e,C)=>0!==C);return[(0,h.createElement)(Nt,{group:C[0],key:"first_item"}),...n.map($t)]})(e.conditions),Wt)):(0,h.createElement)(zt,null)},Xt=(0,h.createElement)("svg",{width:"298",height:"149",viewBox:"0 0 298 149",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"149",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M18.7734 19.9922L20.749 13.0469H21.7061L21.1523 15.7471L19.0264 23H18.0762L18.7734 19.9922ZM16.7295 13.0469L18.3018 19.8555L18.7734 23H17.8301L15.417 13.0469H16.7295ZM24.2627 19.8486L25.8008 13.0469H27.1201L24.7139 23H23.7705L24.2627 19.8486ZM21.8496 13.0469L23.7705 19.9922L24.4678 23H23.5176L21.4668 15.7471L20.9062 13.0469H21.8496ZM29.6562 12.5V23H28.3916V12.5H29.6562ZM29.3555 19.0215L28.8291 19.001C28.8337 18.4951 28.9089 18.028 29.0547 17.5996C29.2005 17.1667 29.4056 16.7907 29.6699 16.4717C29.9342 16.1527 30.2487 15.9066 30.6133 15.7334C30.9824 15.5557 31.3903 15.4668 31.8369 15.4668C32.2015 15.4668 32.5296 15.5169 32.8213 15.6172C33.113 15.7129 33.3613 15.8678 33.5664 16.082C33.776 16.2962 33.9355 16.5742 34.0449 16.916C34.1543 17.2533 34.209 17.6657 34.209 18.1533V23H32.9375V18.1396C32.9375 17.7523 32.8805 17.4424 32.7666 17.21C32.6527 16.973 32.4863 16.8021 32.2676 16.6973C32.0488 16.5879 31.7799 16.5332 31.4609 16.5332C31.1465 16.5332 30.8594 16.5993 30.5996 16.7314C30.3444 16.8636 30.1234 17.0459 29.9365 17.2783C29.7542 17.5107 29.6107 17.7773 29.5059 18.0781C29.4056 18.3743 29.3555 18.6888 29.3555 19.0215ZM40.4639 21.7354V17.9277C40.4639 17.6361 40.4046 17.3831 40.2861 17.1689C40.1722 16.9502 39.999 16.7816 39.7666 16.6631C39.5342 16.5446 39.2471 16.4854 38.9053 16.4854C38.5863 16.4854 38.306 16.54 38.0645 16.6494C37.8275 16.7588 37.6406 16.9023 37.5039 17.0801C37.3717 17.2578 37.3057 17.4492 37.3057 17.6543H36.041C36.041 17.39 36.1094 17.1279 36.2461 16.8682C36.3828 16.6084 36.5788 16.3737 36.834 16.1641C37.0938 15.9499 37.4036 15.7812 37.7637 15.6582C38.1283 15.5306 38.5339 15.4668 38.9805 15.4668C39.5182 15.4668 39.9922 15.5579 40.4023 15.7402C40.8171 15.9225 41.1406 16.1982 41.373 16.5674C41.61 16.932 41.7285 17.39 41.7285 17.9414V21.3867C41.7285 21.6328 41.749 21.8949 41.79 22.1729C41.8356 22.4508 41.9017 22.6901 41.9883 22.8906V23H40.6689C40.6051 22.8542 40.555 22.6605 40.5186 22.4189C40.4821 22.1729 40.4639 21.945 40.4639 21.7354ZM40.6826 18.5156L40.6963 19.4043H39.418C39.0579 19.4043 38.7367 19.4339 38.4541 19.4932C38.1715 19.5479 37.9346 19.6322 37.7432 19.7461C37.5518 19.86 37.4059 20.0036 37.3057 20.1768C37.2054 20.3454 37.1553 20.5436 37.1553 20.7715C37.1553 21.0039 37.2077 21.2158 37.3125 21.4072C37.4173 21.5986 37.5745 21.7513 37.7842 21.8652C37.9984 21.9746 38.2604 22.0293 38.5703 22.0293C38.9577 22.0293 39.2995 21.9473 39.5957 21.7832C39.8919 21.6191 40.1266 21.4186 40.2998 21.1816C40.4775 20.9447 40.5732 20.7145 40.5869 20.4912L41.127 21.0996C41.0951 21.291 41.0085 21.5029 40.8672 21.7354C40.7259 21.9678 40.5368 22.1911 40.2998 22.4053C40.0674 22.6149 39.7894 22.7904 39.4658 22.9316C39.1468 23.0684 38.7868 23.1367 38.3857 23.1367C37.8844 23.1367 37.4447 23.0387 37.0664 22.8428C36.6927 22.6468 36.401 22.3848 36.1914 22.0566C35.9863 21.724 35.8838 21.3525 35.8838 20.9424C35.8838 20.5459 35.9613 20.1973 36.1162 19.8965C36.2712 19.5911 36.4945 19.3382 36.7861 19.1377C37.0778 18.9326 37.4287 18.7777 37.8389 18.6729C38.249 18.568 38.707 18.5156 39.2129 18.5156H40.6826ZM46.8145 15.6035V16.5742H42.8154V15.6035H46.8145ZM44.1689 13.8057H45.4336V21.168C45.4336 21.4186 45.4723 21.6077 45.5498 21.7354C45.6273 21.863 45.7275 21.9473 45.8506 21.9883C45.9736 22.0293 46.1058 22.0498 46.2471 22.0498C46.3519 22.0498 46.4613 22.0407 46.5752 22.0225C46.6937 21.9997 46.7826 21.9814 46.8418 21.9678L46.8486 23C46.7484 23.0319 46.6162 23.0615 46.4521 23.0889C46.2926 23.1208 46.099 23.1367 45.8711 23.1367C45.5612 23.1367 45.2764 23.0752 45.0166 22.9521C44.7568 22.8291 44.5495 22.624 44.3945 22.3369C44.2441 22.0452 44.1689 21.6533 44.1689 21.1611V13.8057ZM54.8672 15.6035V16.5742H50.8682V15.6035H54.8672ZM52.2217 13.8057H53.4863V21.168C53.4863 21.4186 53.5251 21.6077 53.6025 21.7354C53.68 21.863 53.7803 21.9473 53.9033 21.9883C54.0264 22.0293 54.1585 22.0498 54.2998 22.0498C54.4046 22.0498 54.514 22.0407 54.6279 22.0225C54.7464 21.9997 54.8353 21.9814 54.8945 21.9678L54.9014 23C54.8011 23.0319 54.6689 23.0615 54.5049 23.0889C54.3454 23.1208 54.1517 23.1367 53.9238 23.1367C53.6139 23.1367 53.3291 23.0752 53.0693 22.9521C52.8096 22.8291 52.6022 22.624 52.4473 22.3369C52.2969 22.0452 52.2217 21.6533 52.2217 21.1611V13.8057ZM57.6152 16.7656V23H56.3506V15.6035H57.5811L57.6152 16.7656ZM59.9258 15.5625L59.9189 16.7383C59.8141 16.7155 59.7139 16.7018 59.6182 16.6973C59.527 16.6882 59.4222 16.6836 59.3037 16.6836C59.012 16.6836 58.7546 16.7292 58.5312 16.8203C58.3079 16.9115 58.1188 17.0391 57.9639 17.2031C57.8089 17.3672 57.6859 17.5632 57.5947 17.791C57.5081 18.0143 57.4512 18.2604 57.4238 18.5293L57.0684 18.7344C57.0684 18.2878 57.1117 17.8685 57.1982 17.4766C57.2894 17.0846 57.4284 16.7383 57.6152 16.4375C57.8021 16.1322 58.0391 15.8952 58.3262 15.7266C58.6178 15.5534 58.9642 15.4668 59.3652 15.4668C59.4564 15.4668 59.5612 15.4782 59.6797 15.501C59.7982 15.5192 59.8802 15.5397 59.9258 15.5625ZM65.1826 21.7354V17.9277C65.1826 17.6361 65.1234 17.3831 65.0049 17.1689C64.891 16.9502 64.7178 16.7816 64.4854 16.6631C64.2529 16.5446 63.9658 16.4854 63.624 16.4854C63.305 16.4854 63.0247 16.54 62.7832 16.6494C62.5462 16.7588 62.3594 16.9023 62.2227 17.0801C62.0905 17.2578 62.0244 17.4492 62.0244 17.6543H60.7598C60.7598 17.39 60.8281 17.1279 60.9648 16.8682C61.1016 16.6084 61.2975 16.3737 61.5527 16.1641C61.8125 15.9499 62.1224 15.7812 62.4824 15.6582C62.847 15.5306 63.2526 15.4668 63.6992 15.4668C64.237 15.4668 64.7109 15.5579 65.1211 15.7402C65.5358 15.9225 65.8594 16.1982 66.0918 16.5674C66.3288 16.932 66.4473 17.39 66.4473 17.9414V21.3867C66.4473 21.6328 66.4678 21.8949 66.5088 22.1729C66.5544 22.4508 66.6204 22.6901 66.707 22.8906V23H65.3877C65.3239 22.8542 65.2738 22.6605 65.2373 22.4189C65.2008 22.1729 65.1826 21.945 65.1826 21.7354ZM65.4014 18.5156L65.415 19.4043H64.1367C63.7767 19.4043 63.4554 19.4339 63.1729 19.4932C62.8903 19.5479 62.6533 19.6322 62.4619 19.7461C62.2705 19.86 62.1247 20.0036 62.0244 20.1768C61.9242 20.3454 61.874 20.5436 61.874 20.7715C61.874 21.0039 61.9264 21.2158 62.0312 21.4072C62.1361 21.5986 62.2933 21.7513 62.5029 21.8652C62.7171 21.9746 62.9792 22.0293 63.2891 22.0293C63.6764 22.0293 64.0182 21.9473 64.3145 21.7832C64.6107 21.6191 64.8454 21.4186 65.0186 21.1816C65.1963 20.9447 65.292 20.7145 65.3057 20.4912L65.8457 21.0996C65.8138 21.291 65.7272 21.5029 65.5859 21.7354C65.4447 21.9678 65.2555 22.1911 65.0186 22.4053C64.7861 22.6149 64.5081 22.7904 64.1846 22.9316C63.8656 23.0684 63.5055 23.1367 63.1045 23.1367C62.6032 23.1367 62.1634 23.0387 61.7852 22.8428C61.4115 22.6468 61.1198 22.3848 60.9102 22.0566C60.7051 21.724 60.6025 21.3525 60.6025 20.9424C60.6025 20.5459 60.68 20.1973 60.835 19.8965C60.9899 19.5911 61.2132 19.3382 61.5049 19.1377C61.7965 18.9326 62.1475 18.7777 62.5576 18.6729C62.9678 18.568 63.4258 18.5156 63.9316 18.5156H65.4014ZM69.7012 17.1826V23H68.4365V15.6035H69.6328L69.7012 17.1826ZM69.4004 19.0215L68.874 19.001C68.8786 18.4951 68.9538 18.028 69.0996 17.5996C69.2454 17.1667 69.4505 16.7907 69.7148 16.4717C69.9792 16.1527 70.2936 15.9066 70.6582 15.7334C71.0273 15.5557 71.4352 15.4668 71.8818 15.4668C72.2464 15.4668 72.5745 15.5169 72.8662 15.6172C73.1579 15.7129 73.4062 15.8678 73.6113 16.082C73.821 16.2962 73.9805 16.5742 74.0898 16.916C74.1992 17.2533 74.2539 17.6657 74.2539 18.1533V23H72.9824V18.1396C72.9824 17.7523 72.9255 17.4424 72.8115 17.21C72.6976 16.973 72.5312 16.8021 72.3125 16.6973C72.0938 16.5879 71.8249 16.5332 71.5059 16.5332C71.1914 16.5332 70.9043 16.5993 70.6445 16.7314C70.3893 16.8636 70.1683 17.0459 69.9814 17.2783C69.7992 17.5107 69.6556 17.7773 69.5508 18.0781C69.4505 18.3743 69.4004 18.6888 69.4004 19.0215ZM80.4814 21.0381C80.4814 20.8558 80.4404 20.6872 80.3584 20.5322C80.2809 20.3727 80.1191 20.2292 79.873 20.1016C79.6315 19.9694 79.2669 19.8555 78.7793 19.7598C78.3691 19.6732 77.9977 19.5706 77.665 19.4521C77.3369 19.3337 77.0566 19.1901 76.8242 19.0215C76.5964 18.8529 76.4209 18.6546 76.2979 18.4268C76.1748 18.1989 76.1133 17.9323 76.1133 17.627C76.1133 17.3353 76.1771 17.0596 76.3047 16.7998C76.4368 16.54 76.6214 16.3099 76.8584 16.1094C77.0999 15.9089 77.3893 15.7516 77.7266 15.6377C78.0638 15.5238 78.4398 15.4668 78.8545 15.4668C79.4469 15.4668 79.9528 15.5716 80.3721 15.7812C80.7913 15.9909 81.1126 16.2712 81.3359 16.6221C81.5592 16.9684 81.6709 17.3535 81.6709 17.7773H80.4062C80.4062 17.5723 80.3447 17.374 80.2217 17.1826C80.1032 16.9867 79.9277 16.8249 79.6953 16.6973C79.4674 16.5697 79.1872 16.5059 78.8545 16.5059C78.5036 16.5059 78.2188 16.5605 78 16.6699C77.7858 16.7747 77.6286 16.9092 77.5283 17.0732C77.4326 17.2373 77.3848 17.4105 77.3848 17.5928C77.3848 17.7295 77.4076 17.8525 77.4531 17.9619C77.5033 18.0667 77.5898 18.1647 77.7129 18.2559C77.8359 18.3424 78.0091 18.4245 78.2324 18.502C78.4557 18.5794 78.7406 18.6569 79.0869 18.7344C79.693 18.8711 80.1921 19.0352 80.584 19.2266C80.9759 19.418 81.2676 19.6527 81.459 19.9307C81.6504 20.2087 81.7461 20.5459 81.7461 20.9424C81.7461 21.266 81.6777 21.5622 81.541 21.8311C81.4089 22.0999 81.2152 22.3324 80.96 22.5283C80.7093 22.7197 80.4085 22.8701 80.0576 22.9795C79.7113 23.0843 79.3216 23.1367 78.8887 23.1367C78.237 23.1367 77.6855 23.0205 77.2344 22.7881C76.7832 22.5557 76.4414 22.2549 76.209 21.8857C75.9766 21.5166 75.8604 21.127 75.8604 20.7168H77.1318C77.1501 21.0632 77.2503 21.3389 77.4326 21.5439C77.6149 21.7445 77.8382 21.888 78.1025 21.9746C78.3669 22.0566 78.6289 22.0977 78.8887 22.0977C79.235 22.0977 79.5244 22.0521 79.7568 21.9609C79.9938 21.8698 80.1738 21.7445 80.2969 21.585C80.4199 21.4255 80.4814 21.2432 80.4814 21.0381ZM84.6719 17.0254V25.8438H83.4004V15.6035H84.5625L84.6719 17.0254ZM89.6553 19.2402V19.3838C89.6553 19.9215 89.5915 20.4206 89.4639 20.8809C89.3363 21.3366 89.1494 21.7331 88.9033 22.0703C88.6618 22.4076 88.3633 22.6696 88.0078 22.8564C87.6523 23.0433 87.2445 23.1367 86.7842 23.1367C86.3148 23.1367 85.9001 23.0592 85.54 22.9043C85.18 22.7493 84.8747 22.5238 84.624 22.2275C84.3734 21.9313 84.1729 21.5758 84.0225 21.1611C83.8766 20.7464 83.7764 20.2793 83.7217 19.7598V18.9941C83.7764 18.4473 83.8789 17.9574 84.0293 17.5244C84.1797 17.0915 84.3779 16.7223 84.624 16.417C84.8747 16.1071 85.1777 15.8724 85.5332 15.7129C85.8887 15.5488 86.2988 15.4668 86.7637 15.4668C87.2285 15.4668 87.641 15.5579 88.001 15.7402C88.361 15.918 88.6641 16.1732 88.9102 16.5059C89.1562 16.8385 89.3408 17.2373 89.4639 17.7021C89.5915 18.1624 89.6553 18.6751 89.6553 19.2402ZM88.3838 19.3838V19.2402C88.3838 18.8711 88.3451 18.5247 88.2676 18.2012C88.1901 17.873 88.0693 17.5859 87.9053 17.3398C87.7458 17.0892 87.5407 16.8932 87.29 16.752C87.0394 16.6061 86.7409 16.5332 86.3945 16.5332C86.0755 16.5332 85.7975 16.5879 85.5605 16.6973C85.3281 16.8066 85.1299 16.9548 84.9658 17.1416C84.8018 17.3239 84.6673 17.5335 84.5625 17.7705C84.4622 18.0029 84.387 18.2445 84.3369 18.4951V20.2656C84.4281 20.5846 84.5557 20.8854 84.7197 21.168C84.8838 21.446 85.1025 21.6715 85.376 21.8447C85.6494 22.0133 85.9935 22.0977 86.4082 22.0977C86.75 22.0977 87.0439 22.027 87.29 21.8857C87.5407 21.7399 87.7458 21.5417 87.9053 21.291C88.0693 21.0404 88.1901 20.7533 88.2676 20.4297C88.3451 20.1016 88.3838 19.7529 88.3838 19.3838ZM90.9336 19.3838V19.2266C90.9336 18.6934 91.0111 18.1989 91.166 17.7432C91.321 17.2829 91.5443 16.8841 91.8359 16.5469C92.1276 16.2051 92.4808 15.9408 92.8955 15.7539C93.3102 15.5625 93.7751 15.4668 94.29 15.4668C94.8096 15.4668 95.2767 15.5625 95.6914 15.7539C96.1107 15.9408 96.4661 16.2051 96.7578 16.5469C97.054 16.8841 97.2796 17.2829 97.4346 17.7432C97.5895 18.1989 97.667 18.6934 97.667 19.2266V19.3838C97.667 19.917 97.5895 20.4115 97.4346 20.8672C97.2796 21.3229 97.054 21.7217 96.7578 22.0635C96.4661 22.4007 96.113 22.665 95.6982 22.8564C95.2881 23.0433 94.8232 23.1367 94.3037 23.1367C93.7842 23.1367 93.3171 23.0433 92.9023 22.8564C92.4876 22.665 92.1322 22.4007 91.8359 22.0635C91.5443 21.7217 91.321 21.3229 91.166 20.8672C91.0111 20.4115 90.9336 19.917 90.9336 19.3838ZM92.1982 19.2266V19.3838C92.1982 19.7529 92.2415 20.1016 92.3281 20.4297C92.4147 20.7533 92.5446 21.0404 92.7178 21.291C92.8955 21.5417 93.1165 21.7399 93.3809 21.8857C93.6452 22.027 93.9528 22.0977 94.3037 22.0977C94.6501 22.0977 94.9531 22.027 95.2129 21.8857C95.4772 21.7399 95.696 21.5417 95.8691 21.291C96.0423 21.0404 96.1722 20.7533 96.2588 20.4297C96.3499 20.1016 96.3955 19.7529 96.3955 19.3838V19.2266C96.3955 18.862 96.3499 18.5179 96.2588 18.1943C96.1722 17.8662 96.04 17.5768 95.8623 17.3262C95.6891 17.071 95.4704 16.8704 95.2061 16.7246C94.9463 16.5788 94.641 16.5059 94.29 16.5059C93.9437 16.5059 93.6383 16.5788 93.374 16.7246C93.1143 16.8704 92.8955 17.071 92.7178 17.3262C92.5446 17.5768 92.4147 17.8662 92.3281 18.1943C92.2415 18.5179 92.1982 18.862 92.1982 19.2266ZM100.518 16.7656V23H99.2529V15.6035H100.483L100.518 16.7656ZM102.828 15.5625L102.821 16.7383C102.716 16.7155 102.616 16.7018 102.521 16.6973C102.429 16.6882 102.325 16.6836 102.206 16.6836C101.914 16.6836 101.657 16.7292 101.434 16.8203C101.21 16.9115 101.021 17.0391 100.866 17.2031C100.711 17.3672 100.588 17.5632 100.497 17.791C100.41 18.0143 100.354 18.2604 100.326 18.5293L99.9707 18.7344C99.9707 18.2878 100.014 17.8685 100.101 17.4766C100.192 17.0846 100.331 16.7383 100.518 16.4375C100.704 16.1322 100.941 15.8952 101.229 15.7266C101.52 15.5534 101.867 15.4668 102.268 15.4668C102.359 15.4668 102.464 15.4782 102.582 15.501C102.701 15.5192 102.783 15.5397 102.828 15.5625ZM107.436 15.6035V16.5742H103.437V15.6035H107.436ZM104.79 13.8057H106.055V21.168C106.055 21.4186 106.093 21.6077 106.171 21.7354C106.248 21.863 106.349 21.9473 106.472 21.9883C106.595 22.0293 106.727 22.0498 106.868 22.0498C106.973 22.0498 107.082 22.0407 107.196 22.0225C107.315 21.9997 107.404 21.9814 107.463 21.9678L107.47 23C107.369 23.0319 107.237 23.0615 107.073 23.0889C106.914 23.1208 106.72 23.1367 106.492 23.1367C106.182 23.1367 105.897 23.0752 105.638 22.9521C105.378 22.8291 105.171 22.624 105.016 22.3369C104.865 22.0452 104.79 21.6533 104.79 21.1611V13.8057ZM114.265 21.6875L116.165 15.6035H116.999L116.835 16.8135L114.9 23H114.087L114.265 21.6875ZM112.986 15.6035L114.606 21.7559L114.723 23H113.868L111.722 15.6035H112.986ZM118.817 21.708L120.362 15.6035H121.62L119.474 23H118.626L118.817 21.708ZM117.184 15.6035L119.043 21.585L119.255 23H118.448L116.459 16.7998L116.295 15.6035H117.184ZM124.293 15.6035V23H123.021V15.6035H124.293ZM122.926 13.6416C122.926 13.4365 122.987 13.2633 123.11 13.1221C123.238 12.9808 123.425 12.9102 123.671 12.9102C123.912 12.9102 124.097 12.9808 124.225 13.1221C124.357 13.2633 124.423 13.4365 124.423 13.6416C124.423 13.8376 124.357 14.0062 124.225 14.1475C124.097 14.2842 123.912 14.3525 123.671 14.3525C123.425 14.3525 123.238 14.2842 123.11 14.1475C122.987 14.0062 122.926 13.8376 122.926 13.6416ZM127.697 12.5V23H126.426V12.5H127.697ZM131.102 12.5V23H129.83V12.5H131.102ZM138.683 22.2344L140.74 15.6035H142.094L139.127 24.1416C139.059 24.3239 138.967 24.5199 138.854 24.7295C138.744 24.9437 138.603 25.1465 138.43 25.3379C138.257 25.5293 138.047 25.6842 137.801 25.8027C137.559 25.9258 137.27 25.9873 136.933 25.9873C136.832 25.9873 136.705 25.9736 136.55 25.9463C136.395 25.9189 136.285 25.8962 136.222 25.8779L136.215 24.8525C136.251 24.8571 136.308 24.8617 136.386 24.8662C136.468 24.8753 136.525 24.8799 136.557 24.8799C136.844 24.8799 137.088 24.8411 137.288 24.7637C137.489 24.6908 137.657 24.5654 137.794 24.3877C137.935 24.2145 138.056 23.9753 138.156 23.6699L138.683 22.2344ZM137.172 15.6035L139.093 21.3457L139.421 22.6787L138.512 23.1436L135.791 15.6035H137.172ZM142.791 19.3838V19.2266C142.791 18.6934 142.868 18.1989 143.023 17.7432C143.178 17.2829 143.402 16.8841 143.693 16.5469C143.985 16.2051 144.338 15.9408 144.753 15.7539C145.168 15.5625 145.632 15.4668 146.147 15.4668C146.667 15.4668 147.134 15.5625 147.549 15.7539C147.968 15.9408 148.324 16.2051 148.615 16.5469C148.911 16.8841 149.137 17.2829 149.292 17.7432C149.447 18.1989 149.524 18.6934 149.524 19.2266V19.3838C149.524 19.917 149.447 20.4115 149.292 20.8672C149.137 21.3229 148.911 21.7217 148.615 22.0635C148.324 22.4007 147.97 22.665 147.556 22.8564C147.146 23.0433 146.681 23.1367 146.161 23.1367C145.642 23.1367 145.174 23.0433 144.76 22.8564C144.345 22.665 143.99 22.4007 143.693 22.0635C143.402 21.7217 143.178 21.3229 143.023 20.8672C142.868 20.4115 142.791 19.917 142.791 19.3838ZM144.056 19.2266V19.3838C144.056 19.7529 144.099 20.1016 144.186 20.4297C144.272 20.7533 144.402 21.0404 144.575 21.291C144.753 21.5417 144.974 21.7399 145.238 21.8857C145.503 22.027 145.81 22.0977 146.161 22.0977C146.507 22.0977 146.811 22.027 147.07 21.8857C147.335 21.7399 147.553 21.5417 147.727 21.291C147.9 21.0404 148.03 20.7533 148.116 20.4297C148.207 20.1016 148.253 19.7529 148.253 19.3838V19.2266C148.253 18.862 148.207 18.5179 148.116 18.1943C148.03 17.8662 147.897 17.5768 147.72 17.3262C147.547 17.071 147.328 16.8704 147.063 16.7246C146.804 16.5788 146.498 16.5059 146.147 16.5059C145.801 16.5059 145.496 16.5788 145.231 16.7246C144.972 16.8704 144.753 17.071 144.575 17.3262C144.402 17.5768 144.272 17.8662 144.186 18.1943C144.099 18.5179 144.056 18.862 144.056 19.2266ZM155.636 21.291V15.6035H156.907V23H155.697L155.636 21.291ZM155.875 19.7324L156.401 19.7188C156.401 20.2109 156.349 20.6667 156.244 21.0859C156.144 21.5007 155.98 21.8607 155.752 22.166C155.524 22.4714 155.226 22.7106 154.856 22.8838C154.487 23.0524 154.038 23.1367 153.51 23.1367C153.15 23.1367 152.819 23.0843 152.519 22.9795C152.222 22.8747 151.967 22.7129 151.753 22.4941C151.539 22.2754 151.372 21.9906 151.254 21.6396C151.14 21.2887 151.083 20.8672 151.083 20.375V15.6035H152.348V20.3887C152.348 20.7214 152.384 20.9971 152.457 21.2158C152.535 21.43 152.637 21.6009 152.765 21.7285C152.897 21.8516 153.043 21.9382 153.202 21.9883C153.366 22.0384 153.535 22.0635 153.708 22.0635C154.246 22.0635 154.672 21.9609 154.986 21.7559C155.301 21.5462 155.526 21.266 155.663 20.915C155.804 20.5596 155.875 20.1654 155.875 19.7324ZM166.833 21.291V15.6035H168.104V23H166.895L166.833 21.291ZM167.072 19.7324L167.599 19.7188C167.599 20.2109 167.546 20.6667 167.441 21.0859C167.341 21.5007 167.177 21.8607 166.949 22.166C166.721 22.4714 166.423 22.7106 166.054 22.8838C165.685 23.0524 165.236 23.1367 164.707 23.1367C164.347 23.1367 164.017 23.0843 163.716 22.9795C163.42 22.8747 163.164 22.7129 162.95 22.4941C162.736 22.2754 162.57 21.9906 162.451 21.6396C162.337 21.2887 162.28 20.8672 162.28 20.375V15.6035H163.545V20.3887C163.545 20.7214 163.581 20.9971 163.654 21.2158C163.732 21.43 163.834 21.6009 163.962 21.7285C164.094 21.8516 164.24 21.9382 164.399 21.9883C164.563 22.0384 164.732 22.0635 164.905 22.0635C165.443 22.0635 165.869 21.9609 166.184 21.7559C166.498 21.5462 166.724 21.266 166.86 20.915C167.002 20.5596 167.072 20.1654 167.072 19.7324ZM174.339 21.0381C174.339 20.8558 174.298 20.6872 174.216 20.5322C174.138 20.3727 173.977 20.2292 173.73 20.1016C173.489 19.9694 173.124 19.8555 172.637 19.7598C172.227 19.6732 171.855 19.5706 171.522 19.4521C171.194 19.3337 170.914 19.1901 170.682 19.0215C170.454 18.8529 170.278 18.6546 170.155 18.4268C170.032 18.1989 169.971 17.9323 169.971 17.627C169.971 17.3353 170.035 17.0596 170.162 16.7998C170.294 16.54 170.479 16.3099 170.716 16.1094C170.957 15.9089 171.247 15.7516 171.584 15.6377C171.921 15.5238 172.297 15.4668 172.712 15.4668C173.304 15.4668 173.81 15.5716 174.229 15.7812C174.649 15.9909 174.97 16.2712 175.193 16.6221C175.417 16.9684 175.528 17.3535 175.528 17.7773H174.264C174.264 17.5723 174.202 17.374 174.079 17.1826C173.961 16.9867 173.785 16.8249 173.553 16.6973C173.325 16.5697 173.045 16.5059 172.712 16.5059C172.361 16.5059 172.076 16.5605 171.857 16.6699C171.643 16.7747 171.486 16.9092 171.386 17.0732C171.29 17.2373 171.242 17.4105 171.242 17.5928C171.242 17.7295 171.265 17.8525 171.311 17.9619C171.361 18.0667 171.447 18.1647 171.57 18.2559C171.693 18.3424 171.867 18.4245 172.09 18.502C172.313 18.5794 172.598 18.6569 172.944 18.7344C173.55 18.8711 174.049 19.0352 174.441 19.2266C174.833 19.418 175.125 19.6527 175.316 19.9307C175.508 20.2087 175.604 20.5459 175.604 20.9424C175.604 21.266 175.535 21.5622 175.398 21.8311C175.266 22.0999 175.073 22.3324 174.817 22.5283C174.567 22.7197 174.266 22.8701 173.915 22.9795C173.569 23.0843 173.179 23.1367 172.746 23.1367C172.094 23.1367 171.543 23.0205 171.092 22.7881C170.641 22.5557 170.299 22.2549 170.066 21.8857C169.834 21.5166 169.718 21.127 169.718 20.7168H170.989C171.007 21.0632 171.108 21.3389 171.29 21.5439C171.472 21.7445 171.696 21.888 171.96 21.9746C172.224 22.0566 172.486 22.0977 172.746 22.0977C173.092 22.0977 173.382 22.0521 173.614 21.9609C173.851 21.8698 174.031 21.7445 174.154 21.585C174.277 21.4255 174.339 21.2432 174.339 21.0381ZM180.334 23.1367C179.819 23.1367 179.352 23.0501 178.933 22.877C178.518 22.6992 178.16 22.4508 177.859 22.1318C177.563 21.8128 177.335 21.4346 177.176 20.9971C177.016 20.5596 176.937 20.0811 176.937 19.5615V19.2744C176.937 18.6729 177.025 18.1374 177.203 17.668C177.381 17.194 177.622 16.793 177.928 16.4648C178.233 16.1367 178.579 15.8883 178.967 15.7197C179.354 15.5511 179.755 15.4668 180.17 15.4668C180.699 15.4668 181.154 15.5579 181.537 15.7402C181.924 15.9225 182.241 16.1777 182.487 16.5059C182.733 16.8294 182.916 17.2122 183.034 17.6543C183.153 18.0918 183.212 18.5703 183.212 19.0898V19.6572H177.688V18.625H181.947V18.5293C181.929 18.2012 181.861 17.8822 181.742 17.5723C181.628 17.2624 181.446 17.0072 181.195 16.8066C180.945 16.6061 180.603 16.5059 180.17 16.5059C179.883 16.5059 179.618 16.5674 179.377 16.6904C179.135 16.8089 178.928 16.9867 178.755 17.2236C178.582 17.4606 178.447 17.75 178.352 18.0918C178.256 18.4336 178.208 18.8278 178.208 19.2744V19.5615C178.208 19.9124 178.256 20.2428 178.352 20.5527C178.452 20.8581 178.595 21.127 178.782 21.3594C178.974 21.5918 179.204 21.7741 179.473 21.9062C179.746 22.0384 180.056 22.1045 180.402 22.1045C180.849 22.1045 181.227 22.0133 181.537 21.8311C181.847 21.6488 182.118 21.4049 182.351 21.0996L183.116 21.708C182.957 21.9495 182.754 22.1797 182.508 22.3984C182.262 22.6172 181.959 22.7949 181.599 22.9316C181.243 23.0684 180.822 23.1367 180.334 23.1367ZM187.437 20.1973H186.165C186.17 19.7598 186.208 19.402 186.281 19.124C186.359 18.8415 186.484 18.584 186.657 18.3516C186.83 18.1191 187.061 17.8548 187.348 17.5586C187.557 17.3444 187.749 17.1439 187.922 16.957C188.1 16.7656 188.243 16.5605 188.353 16.3418C188.462 16.1185 188.517 15.8519 188.517 15.542C188.517 15.2275 188.46 14.9564 188.346 14.7285C188.236 14.5007 188.072 14.3252 187.854 14.2021C187.639 14.0791 187.373 14.0176 187.054 14.0176C186.789 14.0176 186.539 14.0654 186.302 14.1611C186.065 14.2568 185.873 14.4049 185.728 14.6055C185.582 14.8014 185.507 15.0589 185.502 15.3779H184.237C184.246 14.863 184.374 14.4209 184.62 14.0518C184.871 13.6826 185.208 13.4001 185.632 13.2041C186.056 13.0081 186.53 12.9102 187.054 12.9102C187.632 12.9102 188.125 13.015 188.53 13.2246C188.94 13.4342 189.253 13.735 189.467 14.127C189.681 14.5143 189.788 14.9746 189.788 15.5078C189.788 15.918 189.704 16.2962 189.535 16.6426C189.371 16.9844 189.159 17.3057 188.899 17.6064C188.64 17.9072 188.364 18.1943 188.072 18.4678C187.822 18.7002 187.653 18.9622 187.566 19.2539C187.48 19.5456 187.437 19.86 187.437 20.1973ZM186.11 22.3643C186.11 22.1592 186.174 21.986 186.302 21.8447C186.429 21.7035 186.614 21.6328 186.855 21.6328C187.102 21.6328 187.288 21.7035 187.416 21.8447C187.544 21.986 187.607 22.1592 187.607 22.3643C187.607 22.5602 187.544 22.7288 187.416 22.8701C187.288 23.0114 187.102 23.082 186.855 23.082C186.614 23.082 186.429 23.0114 186.302 22.8701C186.174 22.7288 186.11 22.5602 186.11 22.3643Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M24 32.5C19.86 32.5 16.5 35.86 16.5 40C16.5 44.14 19.86 47.5 24 47.5C28.14 47.5 31.5 44.14 31.5 40C31.5 35.86 28.14 32.5 24 32.5ZM24 46C20.685 46 18 43.315 18 40C18 36.685 20.685 34 24 34C27.315 34 30 36.685 30 40C30 43.315 27.315 46 24 46Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M40.4814 40.8755H38.0122V39.8789H40.4814C40.9596 39.8789 41.3468 39.8027 41.6431 39.6504C41.9393 39.498 42.1551 39.2865 42.2905 39.0156C42.4302 38.7448 42.5 38.4359 42.5 38.0889C42.5 37.7715 42.4302 37.4731 42.2905 37.1938C42.1551 36.9146 41.9393 36.6903 41.6431 36.521C41.3468 36.3475 40.9596 36.2607 40.4814 36.2607H38.2979V44.5H37.0728V35.2578H40.4814C41.1797 35.2578 41.77 35.3784 42.2524 35.6196C42.7349 35.8608 43.1009 36.1951 43.3506 36.6226C43.6003 37.0457 43.7251 37.5303 43.7251 38.0762C43.7251 38.6686 43.6003 39.1743 43.3506 39.5933C43.1009 40.0122 42.7349 40.3317 42.2524 40.5518C41.77 40.7676 41.1797 40.8755 40.4814 40.8755ZM49.2983 42.9131V37.6318H50.479V44.5H49.3555L49.2983 42.9131ZM49.5205 41.4658L50.0093 41.4531C50.0093 41.9102 49.9606 42.3333 49.8633 42.7227C49.7702 43.1077 49.6178 43.4421 49.4062 43.7256C49.1947 44.0091 48.9175 44.2313 48.5747 44.3921C48.2319 44.5487 47.8151 44.627 47.3242 44.627C46.9899 44.627 46.6831 44.5783 46.4038 44.481C46.1287 44.3836 45.8918 44.2334 45.6929 44.0303C45.494 43.8271 45.3395 43.5627 45.2295 43.2368C45.1237 42.911 45.0708 42.5195 45.0708 42.0625V37.6318H46.2451V42.0752C46.2451 42.3841 46.279 42.6401 46.3467 42.8433C46.4186 43.0422 46.5138 43.2008 46.6323 43.3193C46.755 43.4336 46.8905 43.514 47.0386 43.5605C47.1909 43.6071 47.3475 43.6304 47.5083 43.6304C48.0076 43.6304 48.4033 43.5352 48.6953 43.3447C48.9873 43.1501 49.1968 42.8898 49.3237 42.564C49.4549 42.2339 49.5205 41.8678 49.5205 41.4658ZM52.2627 34.75H53.4434V43.167L53.3418 44.5H52.2627V34.75ZM58.0835 41.0088V41.1421C58.0835 41.6414 58.0243 42.1048 57.9058 42.5322C57.7873 42.9554 57.6138 43.3236 57.3853 43.6367C57.1567 43.9499 56.8774 44.1932 56.5474 44.3667C56.2173 44.5402 55.8385 44.627 55.4111 44.627C54.9753 44.627 54.5923 44.5529 54.2622 44.4048C53.9364 44.2524 53.6613 44.0345 53.437 43.751C53.2127 43.4674 53.0329 43.1247 52.8975 42.7227C52.7663 42.3206 52.6753 41.8678 52.6245 41.3643V40.7803C52.6753 40.2725 52.7663 39.8175 52.8975 39.4155C53.0329 39.0135 53.2127 38.6707 53.437 38.3872C53.6613 38.0994 53.9364 37.8815 54.2622 37.7334C54.5881 37.5811 54.9668 37.5049 55.3984 37.5049C55.8301 37.5049 56.2131 37.5895 56.5474 37.7588C56.8817 37.9238 57.161 38.1608 57.3853 38.4697C57.6138 38.7786 57.7873 39.1489 57.9058 39.5806C58.0243 40.008 58.0835 40.484 58.0835 41.0088ZM56.9028 41.1421V41.0088C56.9028 40.666 56.8711 40.3444 56.8076 40.0439C56.7441 39.7393 56.6426 39.4727 56.5029 39.2441C56.3633 39.0114 56.1792 38.8294 55.9507 38.6982C55.7222 38.5628 55.4408 38.4951 55.1064 38.4951C54.8102 38.4951 54.5521 38.5459 54.332 38.6475C54.1162 38.749 53.9321 38.8866 53.7798 39.0601C53.6274 39.2293 53.5026 39.424 53.4053 39.644C53.3122 39.8599 53.2424 40.0841 53.1958 40.3169V41.8467C53.2635 42.1429 53.3735 42.4285 53.5259 42.7036C53.6825 42.9744 53.8898 43.1966 54.1479 43.3701C54.4103 43.5436 54.734 43.6304 55.1191 43.6304C55.4365 43.6304 55.7074 43.5669 55.9316 43.4399C56.1602 43.3088 56.3442 43.1289 56.4839 42.9004C56.6278 42.6719 56.7336 42.4074 56.8013 42.1069C56.869 41.8065 56.9028 41.4849 56.9028 41.1421ZM60.8447 34.75V44.5H59.6641V34.75H60.8447ZM64.0059 37.6318V44.5H62.8252V37.6318H64.0059ZM62.7363 35.8101C62.7363 35.6196 62.7935 35.4588 62.9077 35.3276C63.0262 35.1965 63.1997 35.1309 63.4282 35.1309C63.6525 35.1309 63.8239 35.1965 63.9424 35.3276C64.0651 35.4588 64.1265 35.6196 64.1265 35.8101C64.1265 35.992 64.0651 36.1486 63.9424 36.2798C63.8239 36.4067 63.6525 36.4702 63.4282 36.4702C63.1997 36.4702 63.0262 36.4067 62.9077 36.2798C62.7935 36.1486 62.7363 35.992 62.7363 35.8101ZM68.6396 43.6621C68.9189 43.6621 69.1771 43.605 69.4141 43.4907C69.651 43.3765 69.8457 43.2199 69.998 43.021C70.1504 42.8179 70.2371 42.5872 70.2583 42.3291H71.3755C71.3543 42.7354 71.2168 43.1141 70.9629 43.4653C70.7132 43.8123 70.3853 44.0938 69.979 44.3096C69.5728 44.5212 69.1263 44.627 68.6396 44.627C68.1234 44.627 67.6727 44.536 67.2876 44.354C66.9067 44.172 66.5894 43.9224 66.3354 43.605C66.0858 43.2876 65.8975 42.9237 65.7705 42.5132C65.6478 42.0985 65.5864 41.6605 65.5864 41.1992V40.9326C65.5864 40.4714 65.6478 40.0355 65.7705 39.625C65.8975 39.2103 66.0858 38.8442 66.3354 38.5269C66.5894 38.2095 66.9067 37.9598 67.2876 37.7778C67.6727 37.5959 68.1234 37.5049 68.6396 37.5049C69.1771 37.5049 69.6468 37.6149 70.0488 37.835C70.4508 38.0508 70.7661 38.347 70.9946 38.7236C71.2274 39.096 71.3543 39.5192 71.3755 39.9932H70.2583C70.2371 39.7096 70.1567 39.4536 70.0171 39.2251C69.8817 38.9966 69.6955 38.8146 69.4585 38.6792C69.2257 38.5396 68.9528 38.4697 68.6396 38.4697C68.2799 38.4697 67.9774 38.5417 67.7319 38.6855C67.4907 38.8252 67.2982 39.0156 67.1543 39.2568C67.0146 39.4938 66.9131 39.7583 66.8496 40.0503C66.7904 40.3381 66.7607 40.6322 66.7607 40.9326V41.1992C66.7607 41.4997 66.7904 41.7959 66.8496 42.0879C66.9089 42.3799 67.0083 42.6444 67.1479 42.8813C67.2918 43.1183 67.4844 43.3088 67.7256 43.4526C67.971 43.5923 68.2757 43.6621 68.6396 43.6621Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M24 59.25C21.93 59.25 20.25 60.93 20.25 63C20.25 65.07 21.93 66.75 24 66.75C26.07 66.75 27.75 65.07 27.75 63C27.75 60.93 26.07 59.25 24 59.25ZM24 55.5C19.86 55.5 16.5 58.86 16.5 63C16.5 67.14 19.86 70.5 24 70.5C28.14 70.5 31.5 67.14 31.5 63C31.5 58.86 28.14 55.5 24 55.5ZM24 69C20.685 69 18 66.315 18 63C18 59.685 20.685 57 24 57C27.315 57 30 59.685 30 63C30 66.315 27.315 69 24 69Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M42.6523 64.561H43.8711C43.8076 65.145 43.6405 65.6676 43.3696 66.1289C43.0988 66.5902 42.7158 66.9562 42.2207 67.2271C41.7256 67.4937 41.1077 67.627 40.3672 67.627C39.8255 67.627 39.3325 67.5254 38.8882 67.3223C38.4481 67.1191 38.0693 66.8314 37.752 66.459C37.4346 66.0824 37.1891 65.6317 37.0156 65.1069C36.8464 64.578 36.7617 63.9897 36.7617 63.3423V62.4219C36.7617 61.7744 36.8464 61.1883 37.0156 60.6636C37.1891 60.1346 37.4367 59.6818 37.7583 59.3052C38.0841 58.9285 38.4756 58.6387 38.9326 58.4355C39.3896 58.2324 39.9038 58.1309 40.4751 58.1309C41.1733 58.1309 41.7637 58.262 42.2461 58.5244C42.7285 58.7868 43.103 59.1507 43.3696 59.6162C43.6405 60.0775 43.8076 60.6128 43.8711 61.2222H42.6523C42.5931 60.7905 42.4831 60.4202 42.3223 60.1113C42.1615 59.7982 41.9329 59.557 41.6367 59.3877C41.3405 59.2184 40.9533 59.1338 40.4751 59.1338C40.0646 59.1338 39.7028 59.2121 39.3896 59.3687C39.0807 59.5252 38.8205 59.7474 38.6089 60.0352C38.4015 60.3229 38.245 60.6678 38.1392 61.0698C38.0334 61.4718 37.9805 61.9183 37.9805 62.4092V63.3423C37.9805 63.7951 38.027 64.2204 38.1201 64.6182C38.2174 65.016 38.3634 65.3651 38.5581 65.6655C38.7528 65.966 39.0003 66.203 39.3008 66.3765C39.6012 66.5457 39.9567 66.6304 40.3672 66.6304C40.8877 66.6304 41.3024 66.5479 41.6113 66.3828C41.9202 66.2178 42.153 65.9808 42.3096 65.6719C42.4704 65.363 42.5846 64.9927 42.6523 64.561ZM49.4126 66.3257V62.79C49.4126 62.5192 49.3576 62.2843 49.2476 62.0854C49.1418 61.8823 48.981 61.7257 48.7651 61.6157C48.5493 61.5057 48.2827 61.4507 47.9653 61.4507C47.6691 61.4507 47.4089 61.5015 47.1846 61.603C46.9645 61.7046 46.791 61.8379 46.6641 62.0029C46.5413 62.168 46.48 62.3457 46.48 62.5361H45.3057C45.3057 62.2907 45.3691 62.0474 45.4961 61.8062C45.623 61.5649 45.805 61.347 46.042 61.1523C46.2832 60.9535 46.571 60.7969 46.9053 60.6826C47.2438 60.5641 47.6204 60.5049 48.0352 60.5049C48.5345 60.5049 48.9746 60.5895 49.3555 60.7588C49.7406 60.9281 50.041 61.1841 50.2568 61.5269C50.4769 61.8654 50.5869 62.2907 50.5869 62.8027V66.002C50.5869 66.2305 50.606 66.4738 50.644 66.7319C50.6864 66.9901 50.7477 67.2122 50.8281 67.3984V67.5H49.603C49.5438 67.3646 49.4972 67.1847 49.4634 66.9604C49.4295 66.7319 49.4126 66.5203 49.4126 66.3257ZM49.6157 63.3359L49.6284 64.1611H48.4414C48.1071 64.1611 47.8088 64.1886 47.5464 64.2437C47.284 64.2944 47.064 64.3727 46.8862 64.4785C46.7085 64.5843 46.5731 64.7176 46.48 64.8784C46.3869 65.035 46.3403 65.2191 46.3403 65.4307C46.3403 65.6465 46.389 65.8433 46.4863 66.021C46.5837 66.1987 46.7297 66.3405 46.9243 66.4463C47.1232 66.5479 47.3665 66.5986 47.6543 66.5986C48.014 66.5986 48.3314 66.5225 48.6064 66.3701C48.8815 66.2178 49.0994 66.0316 49.2603 65.8115C49.4253 65.5915 49.5142 65.3778 49.5269 65.1704L50.0283 65.7354C49.9987 65.9131 49.9183 66.1099 49.7871 66.3257C49.6559 66.5415 49.4803 66.7489 49.2603 66.9478C49.0444 67.1424 48.7863 67.3053 48.4858 67.4365C48.1896 67.5635 47.8553 67.627 47.4829 67.627C47.0174 67.627 46.609 67.536 46.2578 67.354C45.9108 67.172 45.64 66.9287 45.4453 66.624C45.2549 66.3151 45.1597 65.9702 45.1597 65.5894C45.1597 65.2212 45.2316 64.8975 45.3755 64.6182C45.5194 64.3346 45.7267 64.0998 45.9976 63.9136C46.2684 63.7231 46.5942 63.5793 46.9751 63.4819C47.356 63.3846 47.7812 63.3359 48.251 63.3359H49.6157ZM53.6084 61.7109V67.5H52.4341V60.6318H53.5767L53.6084 61.7109ZM55.7539 60.5938L55.7476 61.6855C55.6502 61.6644 55.5571 61.6517 55.4683 61.6475C55.3836 61.639 55.2863 61.6348 55.1763 61.6348C54.9054 61.6348 54.6663 61.6771 54.459 61.7617C54.2516 61.8464 54.076 61.9648 53.9321 62.1172C53.7882 62.2695 53.674 62.4515 53.5894 62.6631C53.509 62.8704 53.4561 63.099 53.4307 63.3486L53.1006 63.5391C53.1006 63.1243 53.1408 62.735 53.2212 62.3711C53.3058 62.0072 53.4349 61.6855 53.6084 61.4062C53.7819 61.1227 54.002 60.9027 54.2686 60.7461C54.5394 60.5853 54.861 60.5049 55.2334 60.5049C55.318 60.5049 55.4154 60.5155 55.5254 60.5366C55.6354 60.5535 55.7116 60.5726 55.7539 60.5938Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M49.8262 86.0967H47.167V85.0234H49.8262C50.3411 85.0234 50.7581 84.9414 51.0771 84.7773C51.3962 84.6133 51.6286 84.3854 51.7744 84.0938C51.9248 83.8021 52 83.4694 52 83.0957C52 82.7539 51.9248 82.4326 51.7744 82.1318C51.6286 81.8311 51.3962 81.5895 51.0771 81.4072C50.7581 81.2204 50.3411 81.127 49.8262 81.127H47.4746V90H46.1553V80.0469H49.8262C50.5781 80.0469 51.2139 80.1768 51.7334 80.4365C52.2529 80.6963 52.6471 81.0563 52.916 81.5166C53.1849 81.9723 53.3193 82.4941 53.3193 83.082C53.3193 83.7201 53.1849 84.2646 52.916 84.7158C52.6471 85.167 52.2529 85.5111 51.7334 85.748C51.2139 85.9805 50.5781 86.0967 49.8262 86.0967ZM59.0752 88.7354V84.9277C59.0752 84.6361 59.016 84.3831 58.8975 84.1689C58.7835 83.9502 58.6104 83.7816 58.3779 83.6631C58.1455 83.5446 57.8584 83.4854 57.5166 83.4854C57.1976 83.4854 56.9173 83.54 56.6758 83.6494C56.4388 83.7588 56.252 83.9023 56.1152 84.0801C55.9831 84.2578 55.917 84.4492 55.917 84.6543H54.6523C54.6523 84.39 54.7207 84.1279 54.8574 83.8682C54.9941 83.6084 55.1901 83.3737 55.4453 83.1641C55.7051 82.9499 56.015 82.7812 56.375 82.6582C56.7396 82.5306 57.1452 82.4668 57.5918 82.4668C58.1296 82.4668 58.6035 82.5579 59.0137 82.7402C59.4284 82.9225 59.752 83.1982 59.9844 83.5674C60.2214 83.932 60.3398 84.39 60.3398 84.9414V88.3867C60.3398 88.6328 60.3604 88.8949 60.4014 89.1729C60.4469 89.4508 60.513 89.6901 60.5996 89.8906V90H59.2803C59.2165 89.8542 59.1663 89.6605 59.1299 89.4189C59.0934 89.1729 59.0752 88.945 59.0752 88.7354ZM59.2939 85.5156L59.3076 86.4043H58.0293C57.6693 86.4043 57.348 86.4339 57.0654 86.4932C56.7829 86.5479 56.5459 86.6322 56.3545 86.7461C56.1631 86.86 56.0173 87.0036 55.917 87.1768C55.8167 87.3454 55.7666 87.5436 55.7666 87.7715C55.7666 88.0039 55.819 88.2158 55.9238 88.4072C56.0286 88.5986 56.1859 88.7513 56.3955 88.8652C56.6097 88.9746 56.8717 89.0293 57.1816 89.0293C57.569 89.0293 57.9108 88.9473 58.207 88.7832C58.5033 88.6191 58.738 88.4186 58.9111 88.1816C59.0889 87.9447 59.1846 87.7145 59.1982 87.4912L59.7383 88.0996C59.7064 88.291 59.6198 88.5029 59.4785 88.7354C59.3372 88.9678 59.1481 89.1911 58.9111 89.4053C58.6787 89.6149 58.4007 89.7904 58.0771 89.9316C57.7581 90.0684 57.3981 90.1367 56.9971 90.1367C56.4958 90.1367 56.056 90.0387 55.6777 89.8428C55.304 89.6468 55.0124 89.3848 54.8027 89.0566C54.5977 88.724 54.4951 88.3525 54.4951 87.9424C54.4951 87.5459 54.5726 87.1973 54.7275 86.8965C54.8825 86.5911 55.1058 86.3382 55.3975 86.1377C55.6891 85.9326 56.04 85.7777 56.4502 85.6729C56.8604 85.568 57.3184 85.5156 57.8242 85.5156H59.2939ZM63.5938 83.7656V90H62.3291V82.6035H63.5596L63.5938 83.7656ZM65.9043 82.5625L65.8975 83.7383C65.7926 83.7155 65.6924 83.7018 65.5967 83.6973C65.5055 83.6882 65.4007 83.6836 65.2822 83.6836C64.9906 83.6836 64.7331 83.7292 64.5098 83.8203C64.2865 83.9115 64.0973 84.0391 63.9424 84.2031C63.7874 84.3672 63.6644 84.5632 63.5732 84.791C63.4867 85.0143 63.4297 85.2604 63.4023 85.5293L63.0469 85.7344C63.0469 85.2878 63.0902 84.8685 63.1768 84.4766C63.2679 84.0846 63.4069 83.7383 63.5938 83.4375C63.7806 83.1322 64.0176 82.8952 64.3047 82.7266C64.5964 82.5534 64.9427 82.4668 65.3438 82.4668C65.4349 82.4668 65.5397 82.4782 65.6582 82.501C65.7767 82.5192 65.8587 82.5397 65.9043 82.5625ZM68.3447 79.5V90H67.0732V79.5H68.3447ZM72.8633 82.6035L69.6367 86.0557L67.832 87.9287L67.7295 86.582L69.0215 85.0371L71.3184 82.6035H72.8633ZM71.708 90L69.0693 86.4727L69.7256 85.3447L73.1982 90H71.708ZM75.543 82.6035V90H74.2715V82.6035H75.543ZM74.1758 80.6416C74.1758 80.4365 74.2373 80.2633 74.3604 80.1221C74.488 79.9808 74.6748 79.9102 74.9209 79.9102C75.1624 79.9102 75.347 79.9808 75.4746 80.1221C75.6068 80.2633 75.6729 80.4365 75.6729 80.6416C75.6729 80.8376 75.6068 81.0062 75.4746 81.1475C75.347 81.2842 75.1624 81.3525 74.9209 81.3525C74.6748 81.3525 74.488 81.2842 74.3604 81.1475C74.2373 81.0062 74.1758 80.8376 74.1758 80.6416ZM78.8379 84.1826V90H77.5732V82.6035H78.7695L78.8379 84.1826ZM78.5371 86.0215L78.0107 86.001C78.0153 85.4951 78.0905 85.028 78.2363 84.5996C78.3822 84.1667 78.5872 83.7907 78.8516 83.4717C79.1159 83.1527 79.4303 82.9066 79.7949 82.7334C80.1641 82.5557 80.5719 82.4668 81.0186 82.4668C81.3831 82.4668 81.7113 82.5169 82.0029 82.6172C82.2946 82.7129 82.543 82.8678 82.748 83.082C82.9577 83.2962 83.1172 83.5742 83.2266 83.916C83.3359 84.2533 83.3906 84.6657 83.3906 85.1533V90H82.1191V85.1396C82.1191 84.7523 82.0622 84.4424 81.9482 84.21C81.8343 83.973 81.668 83.8021 81.4492 83.6973C81.2305 83.5879 80.9616 83.5332 80.6426 83.5332C80.3281 83.5332 80.041 83.5993 79.7812 83.7314C79.526 83.8636 79.305 84.0459 79.1182 84.2783C78.9359 84.5107 78.7923 84.7773 78.6875 85.0781C78.5872 85.3743 78.5371 85.6888 78.5371 86.0215ZM90.1035 82.6035H91.252V89.8428C91.252 90.4945 91.1198 91.0505 90.8555 91.5107C90.5911 91.971 90.222 92.3197 89.748 92.5566C89.2786 92.7982 88.7363 92.9189 88.1211 92.9189C87.8659 92.9189 87.5651 92.8779 87.2188 92.7959C86.877 92.7184 86.5397 92.584 86.207 92.3926C85.8789 92.2057 85.6032 91.9528 85.3799 91.6338L86.043 90.8818C86.3529 91.2555 86.6764 91.5153 87.0137 91.6611C87.3555 91.807 87.6927 91.8799 88.0254 91.8799C88.4264 91.8799 88.7728 91.8047 89.0645 91.6543C89.3561 91.5039 89.5817 91.2806 89.7412 90.9844C89.9053 90.6927 89.9873 90.3327 89.9873 89.9043V84.2305L90.1035 82.6035ZM85.0107 86.3838V86.2402C85.0107 85.6751 85.0768 85.1624 85.209 84.7021C85.3457 84.2373 85.5394 83.8385 85.79 83.5059C86.0452 83.1732 86.3529 82.918 86.7129 82.7402C87.0729 82.5579 87.4785 82.4668 87.9297 82.4668C88.3945 82.4668 88.8001 82.5488 89.1465 82.7129C89.4974 82.8724 89.7936 83.1071 90.0352 83.417C90.2812 83.7223 90.4749 84.0915 90.6162 84.5244C90.7575 84.9574 90.8555 85.4473 90.9102 85.9941V86.623C90.86 87.1654 90.762 87.653 90.6162 88.0859C90.4749 88.5189 90.2812 88.888 90.0352 89.1934C89.7936 89.4987 89.4974 89.7334 89.1465 89.8975C88.7956 90.057 88.3854 90.1367 87.916 90.1367C87.474 90.1367 87.0729 90.0433 86.7129 89.8564C86.3574 89.6696 86.0521 89.4076 85.7969 89.0703C85.5417 88.7331 85.3457 88.3366 85.209 87.8809C85.0768 87.4206 85.0107 86.9215 85.0107 86.3838ZM86.2754 86.2402V86.3838C86.2754 86.7529 86.3118 87.0993 86.3848 87.4229C86.4622 87.7464 86.5785 88.0312 86.7334 88.2773C86.8929 88.5234 87.0957 88.7171 87.3418 88.8584C87.5879 88.9951 87.8818 89.0635 88.2236 89.0635C88.6429 89.0635 88.9893 88.9746 89.2627 88.7969C89.5361 88.6191 89.7526 88.3844 89.9121 88.0928C90.0762 87.8011 90.2038 87.4844 90.2949 87.1426V85.4951C90.2448 85.2445 90.1673 85.0029 90.0625 84.7705C89.9622 84.5335 89.8301 84.3239 89.666 84.1416C89.5065 83.9548 89.3083 83.8066 89.0713 83.6973C88.8343 83.5879 88.5563 83.5332 88.2373 83.5332C87.891 83.5332 87.5924 83.6061 87.3418 83.752C87.0957 83.8932 86.8929 84.0892 86.7334 84.3398C86.5785 84.5859 86.4622 84.873 86.3848 85.2012C86.3118 85.5247 86.2754 85.8711 86.2754 86.2402ZM97.9102 84.0254V92.8438H96.6387V82.6035H97.8008L97.9102 84.0254ZM102.894 86.2402V86.3838C102.894 86.9215 102.83 87.4206 102.702 87.8809C102.575 88.3366 102.388 88.7331 102.142 89.0703C101.9 89.4076 101.602 89.6696 101.246 89.8564C100.891 90.0433 100.483 90.1367 100.022 90.1367C99.5531 90.1367 99.1383 90.0592 98.7783 89.9043C98.4183 89.7493 98.113 89.5238 97.8623 89.2275C97.6117 88.9313 97.4111 88.5758 97.2607 88.1611C97.1149 87.7464 97.0146 87.2793 96.96 86.7598V85.9941C97.0146 85.4473 97.1172 84.9574 97.2676 84.5244C97.418 84.0915 97.6162 83.7223 97.8623 83.417C98.113 83.1071 98.416 82.8724 98.7715 82.7129C99.127 82.5488 99.5371 82.4668 100.002 82.4668C100.467 82.4668 100.879 82.5579 101.239 82.7402C101.599 82.918 101.902 83.1732 102.148 83.5059C102.395 83.8385 102.579 84.2373 102.702 84.7021C102.83 85.1624 102.894 85.6751 102.894 86.2402ZM101.622 86.3838V86.2402C101.622 85.8711 101.583 85.5247 101.506 85.2012C101.428 84.873 101.308 84.5859 101.144 84.3398C100.984 84.0892 100.779 83.8932 100.528 83.752C100.278 83.6061 99.9792 83.5332 99.6328 83.5332C99.3138 83.5332 99.0358 83.5879 98.7988 83.6973C98.5664 83.8066 98.3682 83.9548 98.2041 84.1416C98.04 84.3239 97.9056 84.5335 97.8008 84.7705C97.7005 85.0029 97.6253 85.2445 97.5752 85.4951V87.2656C97.6663 87.5846 97.7939 87.8854 97.958 88.168C98.1221 88.446 98.3408 88.6715 98.6143 88.8447C98.8877 89.0133 99.2318 89.0977 99.6465 89.0977C99.9883 89.0977 100.282 89.027 100.528 88.8857C100.779 88.7399 100.984 88.5417 101.144 88.291C101.308 88.0404 101.428 87.7533 101.506 87.4297C101.583 87.1016 101.622 86.7529 101.622 86.3838ZM105.881 79.5V90H104.609V79.5H105.881ZM112.272 88.7354V84.9277C112.272 84.6361 112.213 84.3831 112.095 84.1689C111.981 83.9502 111.808 83.7816 111.575 83.6631C111.343 83.5446 111.056 83.4854 110.714 83.4854C110.395 83.4854 110.115 83.54 109.873 83.6494C109.636 83.7588 109.449 83.9023 109.312 84.0801C109.18 84.2578 109.114 84.4492 109.114 84.6543H107.85C107.85 84.39 107.918 84.1279 108.055 83.8682C108.191 83.6084 108.387 83.3737 108.643 83.1641C108.902 82.9499 109.212 82.7812 109.572 82.6582C109.937 82.5306 110.342 82.4668 110.789 82.4668C111.327 82.4668 111.801 82.5579 112.211 82.7402C112.626 82.9225 112.949 83.1982 113.182 83.5674C113.419 83.932 113.537 84.39 113.537 84.9414V88.3867C113.537 88.6328 113.558 88.8949 113.599 89.1729C113.644 89.4508 113.71 89.6901 113.797 89.8906V90H112.478C112.414 89.8542 112.364 89.6605 112.327 89.4189C112.291 89.1729 112.272 88.945 112.272 88.7354ZM112.491 85.5156L112.505 86.4043H111.227C110.867 86.4043 110.545 86.4339 110.263 86.4932C109.98 86.5479 109.743 86.6322 109.552 86.7461C109.36 86.86 109.215 87.0036 109.114 87.1768C109.014 87.3454 108.964 87.5436 108.964 87.7715C108.964 88.0039 109.016 88.2158 109.121 88.4072C109.226 88.5986 109.383 88.7513 109.593 88.8652C109.807 88.9746 110.069 89.0293 110.379 89.0293C110.766 89.0293 111.108 88.9473 111.404 88.7832C111.701 88.6191 111.935 88.4186 112.108 88.1816C112.286 87.9447 112.382 87.7145 112.396 87.4912L112.936 88.0996C112.904 88.291 112.817 88.5029 112.676 88.7354C112.535 88.9678 112.345 89.1911 112.108 89.4053C111.876 89.6149 111.598 89.7904 111.274 89.9316C110.955 90.0684 110.595 90.1367 110.194 90.1367C109.693 90.1367 109.253 90.0387 108.875 89.8428C108.501 89.6468 108.21 89.3848 108 89.0566C107.795 88.724 107.692 88.3525 107.692 87.9424C107.692 87.5459 107.77 87.1973 107.925 86.8965C108.08 86.5911 108.303 86.3382 108.595 86.1377C108.886 85.9326 109.237 85.7777 109.647 85.6729C110.058 85.568 110.516 85.5156 111.021 85.5156H112.491ZM118.486 89.0977C118.787 89.0977 119.065 89.0361 119.32 88.9131C119.576 88.79 119.785 88.6214 119.949 88.4072C120.113 88.1885 120.207 87.9401 120.229 87.6621H121.433C121.41 88.0996 121.262 88.5075 120.988 88.8857C120.719 89.2594 120.366 89.5625 119.929 89.7949C119.491 90.0228 119.01 90.1367 118.486 90.1367C117.93 90.1367 117.445 90.0387 117.03 89.8428C116.62 89.6468 116.278 89.3779 116.005 89.0361C115.736 88.6943 115.533 88.3024 115.396 87.8604C115.264 87.4137 115.198 86.9421 115.198 86.4453V86.1582C115.198 85.6615 115.264 85.1921 115.396 84.75C115.533 84.3034 115.736 83.9092 116.005 83.5674C116.278 83.2256 116.62 82.9567 117.03 82.7607C117.445 82.5648 117.93 82.4668 118.486 82.4668C119.065 82.4668 119.571 82.5853 120.004 82.8223C120.437 83.0547 120.776 83.3737 121.022 83.7793C121.273 84.1803 121.41 84.6361 121.433 85.1465H120.229C120.207 84.8411 120.12 84.5654 119.97 84.3193C119.824 84.0732 119.623 83.8773 119.368 83.7314C119.118 83.5811 118.824 83.5059 118.486 83.5059C118.099 83.5059 117.773 83.5833 117.509 83.7383C117.249 83.8887 117.042 84.0938 116.887 84.3535C116.736 84.6087 116.627 84.8936 116.559 85.208C116.495 85.5179 116.463 85.8346 116.463 86.1582V86.4453C116.463 86.7689 116.495 87.0879 116.559 87.4023C116.622 87.7168 116.729 88.0016 116.88 88.2568C117.035 88.512 117.242 88.7171 117.502 88.8721C117.766 89.0225 118.094 89.0977 118.486 89.0977ZM125.924 90.1367C125.409 90.1367 124.942 90.0501 124.522 89.877C124.108 89.6992 123.75 89.4508 123.449 89.1318C123.153 88.8128 122.925 88.4346 122.766 87.9971C122.606 87.5596 122.526 87.0811 122.526 86.5615V86.2744C122.526 85.6729 122.615 85.1374 122.793 84.668C122.971 84.194 123.212 83.793 123.518 83.4648C123.823 83.1367 124.169 82.8883 124.557 82.7197C124.944 82.5511 125.345 82.4668 125.76 82.4668C126.288 82.4668 126.744 82.5579 127.127 82.7402C127.514 82.9225 127.831 83.1777 128.077 83.5059C128.323 83.8294 128.506 84.2122 128.624 84.6543C128.743 85.0918 128.802 85.5703 128.802 86.0898V86.6572H123.278V85.625H127.537V85.5293C127.519 85.2012 127.451 84.8822 127.332 84.5723C127.218 84.2624 127.036 84.0072 126.785 83.8066C126.535 83.6061 126.193 83.5059 125.76 83.5059C125.473 83.5059 125.208 83.5674 124.967 83.6904C124.725 83.8089 124.518 83.9867 124.345 84.2236C124.172 84.4606 124.037 84.75 123.941 85.0918C123.846 85.4336 123.798 85.8278 123.798 86.2744V86.5615C123.798 86.9124 123.846 87.2428 123.941 87.5527C124.042 87.8581 124.185 88.127 124.372 88.3594C124.563 88.5918 124.794 88.7741 125.062 88.9062C125.336 89.0384 125.646 89.1045 125.992 89.1045C126.439 89.1045 126.817 89.0133 127.127 88.8311C127.437 88.6488 127.708 88.4049 127.94 88.0996L128.706 88.708C128.547 88.9495 128.344 89.1797 128.098 89.3984C127.852 89.6172 127.549 89.7949 127.188 89.9316C126.833 90.0684 126.411 90.1367 125.924 90.1367ZM133.026 87.1973H131.755C131.759 86.7598 131.798 86.402 131.871 86.124C131.949 85.8415 132.074 85.584 132.247 85.3516C132.42 85.1191 132.65 84.8548 132.938 84.5586C133.147 84.3444 133.339 84.1439 133.512 83.957C133.689 83.7656 133.833 83.5605 133.942 83.3418C134.052 83.1185 134.106 82.8519 134.106 82.542C134.106 82.2275 134.049 81.9564 133.936 81.7285C133.826 81.5007 133.662 81.3252 133.443 81.2021C133.229 81.0791 132.963 81.0176 132.644 81.0176C132.379 81.0176 132.129 81.0654 131.892 81.1611C131.655 81.2568 131.463 81.4049 131.317 81.6055C131.172 81.8014 131.096 82.0589 131.092 82.3779H129.827C129.836 81.863 129.964 81.4209 130.21 81.0518C130.461 80.6826 130.798 80.4001 131.222 80.2041C131.646 80.0081 132.119 79.9102 132.644 79.9102C133.222 79.9102 133.715 80.015 134.12 80.2246C134.53 80.4342 134.842 80.735 135.057 81.127C135.271 81.5143 135.378 81.9746 135.378 82.5078C135.378 82.918 135.294 83.2962 135.125 83.6426C134.961 83.9844 134.749 84.3057 134.489 84.6064C134.229 84.9072 133.954 85.1943 133.662 85.4678C133.411 85.7002 133.243 85.9622 133.156 86.2539C133.07 86.5456 133.026 86.86 133.026 87.1973ZM131.7 89.3643C131.7 89.1592 131.764 88.986 131.892 88.8447C132.019 88.7035 132.204 88.6328 132.445 88.6328C132.691 88.6328 132.878 88.7035 133.006 88.8447C133.133 88.986 133.197 89.1592 133.197 89.3643C133.197 89.5602 133.133 89.7288 133.006 89.8701C132.878 90.0114 132.691 90.082 132.445 90.082C132.204 90.082 132.019 90.0114 131.892 89.8701C131.764 89.7288 131.7 89.5602 131.7 89.3643Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M54 99.5C49.86 99.5 46.5 102.86 46.5 107C46.5 111.14 49.86 114.5 54 114.5C58.14 114.5 61.5 111.14 61.5 107C61.5 102.86 58.14 99.5 54 99.5ZM54 113C50.685 113 48 110.315 48 107C48 103.685 50.685 101 54 101C57.315 101 60 103.685 60 107C60 110.315 57.315 113 54 113Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M67.498 102.258L69.8975 106.898L72.3032 102.258H73.6934L70.5068 108.047V111.5H69.2817V108.047L66.0952 102.258H67.498ZM77.1338 111.627C76.6556 111.627 76.2218 111.547 75.8325 111.386C75.4474 111.221 75.1152 110.99 74.8359 110.694C74.5609 110.398 74.3493 110.046 74.2012 109.64C74.0531 109.234 73.979 108.79 73.979 108.307V108.041C73.979 107.482 74.0615 106.985 74.2266 106.549C74.3916 106.109 74.6159 105.736 74.8994 105.432C75.1829 105.127 75.5046 104.896 75.8643 104.74C76.224 104.583 76.5964 104.505 76.9814 104.505C77.4723 104.505 77.8955 104.59 78.251 104.759C78.6107 104.928 78.9048 105.165 79.1333 105.47C79.3618 105.77 79.5311 106.126 79.6411 106.536C79.7511 106.942 79.8062 107.387 79.8062 107.869V108.396H74.6772V107.438H78.6318V107.349C78.6149 107.044 78.5514 106.748 78.4414 106.46C78.3356 106.172 78.1663 105.935 77.9336 105.749C77.7008 105.563 77.3835 105.47 76.9814 105.47C76.7148 105.47 76.4694 105.527 76.2451 105.641C76.0208 105.751 75.8283 105.916 75.6675 106.136C75.5067 106.356 75.3818 106.625 75.293 106.942C75.2041 107.26 75.1597 107.626 75.1597 108.041V108.307C75.1597 108.633 75.2041 108.94 75.293 109.228C75.3861 109.511 75.5194 109.761 75.6929 109.977C75.8706 110.192 76.0843 110.362 76.334 110.484C76.5879 110.607 76.8757 110.668 77.1973 110.668C77.612 110.668 77.9632 110.584 78.251 110.415C78.5387 110.245 78.7905 110.019 79.0063 109.735L79.7173 110.3C79.5692 110.525 79.3809 110.738 79.1523 110.941C78.9238 111.145 78.6424 111.31 78.3081 111.437C77.978 111.563 77.5866 111.627 77.1338 111.627ZM85.1763 109.678C85.1763 109.509 85.1382 109.352 85.062 109.208C84.9901 109.06 84.8398 108.927 84.6113 108.809C84.387 108.686 84.0485 108.58 83.5957 108.491C83.2148 108.411 82.87 108.316 82.561 108.206C82.2563 108.096 81.9961 107.962 81.7803 107.806C81.5687 107.649 81.4058 107.465 81.2915 107.253C81.1772 107.042 81.1201 106.794 81.1201 106.511C81.1201 106.24 81.1794 105.984 81.2979 105.743C81.4206 105.501 81.592 105.288 81.812 105.102C82.0363 104.915 82.305 104.769 82.6182 104.664C82.9313 104.558 83.2804 104.505 83.6655 104.505C84.2157 104.505 84.6854 104.602 85.0747 104.797C85.464 104.992 85.7624 105.252 85.9697 105.578C86.1771 105.899 86.2808 106.257 86.2808 106.65H85.1064C85.1064 106.46 85.0493 106.276 84.9351 106.098C84.825 105.916 84.6621 105.766 84.4463 105.647C84.2347 105.529 83.9744 105.47 83.6655 105.47C83.3397 105.47 83.0752 105.521 82.8721 105.622C82.6732 105.719 82.5272 105.844 82.4341 105.997C82.3452 106.149 82.3008 106.31 82.3008 106.479C82.3008 106.606 82.3219 106.72 82.3643 106.822C82.4108 106.919 82.4912 107.01 82.6055 107.095C82.7197 107.175 82.8805 107.251 83.0879 107.323C83.2952 107.395 83.5597 107.467 83.8813 107.539C84.4442 107.666 84.9076 107.818 85.2715 107.996C85.6354 108.174 85.9062 108.392 86.084 108.65C86.2617 108.908 86.3506 109.221 86.3506 109.589C86.3506 109.89 86.2871 110.165 86.1602 110.415C86.0374 110.664 85.8576 110.88 85.6206 111.062C85.3879 111.24 85.1086 111.379 84.7827 111.481C84.4611 111.578 84.0993 111.627 83.6973 111.627C83.0921 111.627 82.5801 111.519 82.1611 111.303C81.7422 111.087 81.4248 110.808 81.209 110.465C80.9932 110.123 80.8853 109.761 80.8853 109.38H82.0659C82.0828 109.701 82.1759 109.958 82.3452 110.148C82.5145 110.334 82.7218 110.467 82.9673 110.548C83.2127 110.624 83.4561 110.662 83.6973 110.662C84.0189 110.662 84.2876 110.62 84.5034 110.535C84.7235 110.451 84.8906 110.334 85.0049 110.186C85.1191 110.038 85.1763 109.869 85.1763 109.678Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M54 122.5C49.86 122.5 46.5 125.86 46.5 130C46.5 134.14 49.86 137.5 54 137.5C58.14 137.5 61.5 134.14 61.5 130C61.5 125.86 58.14 122.5 54 122.5ZM54 136C50.685 136 48 133.315 48 130C48 126.685 50.685 124 54 124C57.315 124 60 126.685 60 130C60 133.315 57.315 136 54 136Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M74.1821 125.258V134.5H72.9507L68.2979 127.372V134.5H67.0728V125.258H68.2979L72.9697 132.405V125.258H74.1821ZM75.8643 131.142V130.996C75.8643 130.501 75.9362 130.042 76.0801 129.619C76.224 129.191 76.4313 128.821 76.7021 128.508C76.973 128.19 77.3009 127.945 77.686 127.771C78.0711 127.594 78.5028 127.505 78.981 127.505C79.4634 127.505 79.8971 127.594 80.2822 127.771C80.6715 127.945 81.0016 128.19 81.2725 128.508C81.5475 128.821 81.757 129.191 81.9009 129.619C82.0448 130.042 82.1167 130.501 82.1167 130.996V131.142C82.1167 131.637 82.0448 132.096 81.9009 132.52C81.757 132.943 81.5475 133.313 81.2725 133.63C81.0016 133.944 80.6737 134.189 80.2886 134.367C79.9077 134.54 79.4761 134.627 78.9937 134.627C78.5112 134.627 78.0775 134.54 77.6924 134.367C77.3073 134.189 76.9772 133.944 76.7021 133.63C76.4313 133.313 76.224 132.943 76.0801 132.52C75.9362 132.096 75.8643 131.637 75.8643 131.142ZM77.0386 130.996V131.142C77.0386 131.485 77.0788 131.809 77.1592 132.113C77.2396 132.414 77.3602 132.68 77.521 132.913C77.686 133.146 77.8913 133.33 78.1367 133.465C78.3822 133.597 78.6678 133.662 78.9937 133.662C79.3153 133.662 79.5967 133.597 79.8379 133.465C80.0833 133.33 80.2865 133.146 80.4473 132.913C80.6081 132.68 80.7287 132.414 80.8091 132.113C80.8937 131.809 80.936 131.485 80.936 131.142V130.996C80.936 130.658 80.8937 130.338 80.8091 130.038C80.7287 129.733 80.606 129.464 80.4409 129.231C80.2801 128.994 80.077 128.808 79.8315 128.673C79.5903 128.537 79.3068 128.47 78.981 128.47C78.6593 128.47 78.3758 128.537 78.1304 128.673C77.8892 128.808 77.686 128.994 77.521 129.231C77.3602 129.464 77.2396 129.733 77.1592 130.038C77.0788 130.338 77.0386 130.658 77.0386 130.996Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M39.7071 84.2929C40.0976 84.6834 40.0976 85.3166 39.7071 85.7071L33.3431 92.0711C32.9526 92.4616 32.3195 92.4616 31.9289 92.0711C31.5384 91.6805 31.5384 91.0474 31.9289 90.6569L37.5858 85L31.9289 79.3431C31.5384 78.9526 31.5384 78.3195 31.9289 77.9289C32.3195 77.5384 32.9526 77.5384 33.3431 77.9289L39.7071 84.2929ZM25 70V75H23V70H25ZM34 84H39V86H34V84ZM25 75C25 79.9706 29.0294 84 34 84V86C27.9249 86 23 81.0751 23 75H25Z",fill:"#4272F9"})),{getCurrentInnerBlocks:Qt}=JetFBActions,{__:el}=wp.i18n,{useSelect:Cl}=wp.data,{BlockControls:tl,InnerBlocks:ll,useBlockProps:rl,InspectorControls:nl}=wp.blockEditor,{Button:al,ToolbarGroup:il,TextControl:ol,PanelBody:sl,Tip:cl}=wp.components,{useState:dl,useEffect:ml,RawHTML:ul}=wp.element;function pl(e){return e.some(({name:e})=>e.includes("form-break-field"))}const fl=JSON.parse('{"apiVersion":3,"name":"jet-forms/conditional-block","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","conditonal"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Conditional Block","icon":"\\n\\n\\n\\n","attributes":{"name":{"type":"string","default":""},"last_page_name":{"type":"string","default":""},"func_type":{"type":"string","default":""},"func_settings":{"type":"object","default":{}},"conditions":{"type":"array","default":[]},"className":{"type":"string","default":""},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"providesContext":{"jet-forms/conditional-block--name":"name","jet-forms/conditional-block--last_page_name":"last_page_name"}}'),{InnerBlocks:Vl}=wp.blockEditor?wp.blockEditor:wp.editor;function Hl(){return(0,h.createElement)(Vl.Content,null)}const{dispatch:hl}=wp.data,{Tools:bl}=JetFBActions,Ml={attributes:fl.attributes,supports:fl.supports,save:Hl,isEligible(e){const{func_type:C=!1,conditions:t=[]}=e;return!1===C&&t?.length},migrate(e,C){const t={};let l=null;const[r]=C||[],n=[],a=e.conditions.sort(e=>"show"===e.type?-1:1);for(const e of a){var i;e.type=null!==(i=e.type)&&void 0!==i?i:"show","set_value"!==e.type?["show","hide"].includes(e.type)&&(null===l&&(l=e.type),delete e.type,"hide"===l&&Object.keys(t).length&&(t[e.field+"_or"]={or_operator:!0}),t[e.field]=e):n.push(e)}return n.length&&"object"==typeof r&&function(e,C){if(!e.name.includes("jet-forms/")||!e.attributes.hasOwnProperty("value"))return;const{updateBlock:t}=hl("core/block-editor"),l=[];for(const{field:e,operator:t,set_value:r,value:n}of C){const C={id:bl.getRandomID(),conditions:[{field:e,operator:t,value:n}],to_set:null!=r?r:""};l.push(C)}setTimeout(()=>{t(e.clientId,{attributes:{value:{groups:l}}})})}(r,n),l=null!=l?l:"show",{...e,func_type:l,conditions:Object.values(t)}}},{__:Ll,sprintf:gl}=wp.i18n,{createBlock:Zl,createBlocksFromInnerBlocksTemplate:yl}=wp.blocks,{name:El,icon:wl=""}=fl,vl={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:wl}}),description:Ll("Utilize the Conditional Visibility functionality allowing to make fields of the form invisible to the users until some conditions are met.","jet-form-builder"),edit:function(e){const C=rl(),{setAttributes:t,attributes:l,clientId:r,editProps:{uniqKey:n}}=e;ml(()=>{t({name:r})},[r,t]);const a=Qt(),i=a.reduce((e,{name:C})=>e+C,""),[o,s]=dl(!1),[c,d]=dl(()=>pl(a));ml(()=>{d(pl(a))},[i]);const m=Cl(e=>e("jet-forms/block-conditions").getFunctionDisplay(l.func_type||"show"),[l.func_type]),u=l?.conditions?.length?(0,h.createElement)("span",{className:"dashicon dashicons dashicons-randomize","data-count":l.conditions.reduce((e,C)=>C?.or_operator?e:e+1,0)}):(0,h.createElement)("span",{className:"dashicon dashicons dashicons-randomize"});return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Xt):(0,h.createElement)(h.Fragment,null,(0,h.createElement)("div",{...C},(0,h.createElement)("div",{className:"jet-form-builder__conditional"},(0,h.createElement)(ll,{key:n("conditional-fields")}))),o&&(0,h.createElement)(wt,{key:n("ConditionsModal"),setShowModal:s}),(0,h.createElement)(tl,null,(0,h.createElement)(il,{key:n("ToolbarGroup")},(0,h.createElement)(al,{className:"jet-fb-button",key:n("randomize"),isTertiary:!0,isSmall:!0,icon:u,onClick:()=>s(!0)}))),(0,h.createElement)(nl,null,(0,h.createElement)(sl,{title:el("Conditions","jet-form-builder"),initialOpen:!0},(0,h.createElement)("p",{className:"jet-fb flex ai-center gap-05em"},(0,h.createElement)("b",null,m),(0,h.createElement)(al,{isTertiary:!0,isSmall:!0,icon:"edit",onClick:()=>s(!0)})),(0,h.createElement)(_t.Provider,{value:{showModal:o,setShowModal:s}},(0,h.createElement)(Yt,{attributes:l}))),c&&(0,h.createElement)(sl,{title:el("Multistep","jet-form-builder")},(0,h.createElement)(ol,{label:el("Last Page Name","jet-form-builder"),key:n("last_page_name"),value:l.last_page_name,help:el('The value of this field will be set as the name of the last page with the "Progress Bar" block.',"jet-form-builder"),onChange:e=>t({last_page_name:e})}))),(0,h.createElement)(nl,{group:"advanced"},(0,h.createElement)("div",{style:{marginBottom:"1.5em"}},(0,h.createElement)(cl,null,(0,h.createElement)(ul,null,el("Add the CSS class jet-form-builder--hidden to make this block hidden by default.","jet-form-builder")))),(0,h.createElement)(ol,{label:el("Additional CSS class(es)","jet-form-builder"),help:el("Separate multiple classes with spaces.","jet-form-builder"),value:l.class_name,onChange:e=>t({class_name:e})})))},save:Hl,useEditProps:["uniqKey"],jfbGetFields:()=>[],__experimentalLabel:(e,{context:C})=>{var t;if("list-view"!==C)return;const l=wp.data.select("jet-forms/block-conditions").getFunction(e?.func_type),r=l?.label,n=null!==(t=e?.conditions?.reduce((e,C)=>C?.or_operator?e:e+1,0))&&void 0!==t?t:0;return gl(Ll("%1$s %2$d condition(s)","jet-form-builder"),r,n)},example:{attributes:{isPreview:!0}},transforms:{from:[{type:"block",blocks:["*"],isMultiBlock:!0,__experimentalConvert:e=>{const C=e.map(({name:e,attributes:C,innerBlocks:t})=>[e,{...C},t]);return Zl(El,{},yl(C))},priority:0}]},deprecated:[Ml]},_l=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_75_1407)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"20.5",width:"22",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.3887 29.4028V30.3677H28.0283V29.4028H34.3887ZM42.9199 29.4028V30.3677H36.5596V29.4028H42.9199Z",fill:"white"}),(0,h.createElement)("path",{d:"M49.8442 33.8779C49.8442 33.679 49.9056 33.5119 50.0283 33.3765C50.1553 33.2368 50.3372 33.167 50.5742 33.167C50.8112 33.167 50.991 33.2368 51.1138 33.3765C51.2407 33.5119 51.3042 33.679 51.3042 33.8779C51.3042 34.0726 51.2407 34.2376 51.1138 34.373C50.991 34.5085 50.8112 34.5762 50.5742 34.5762C50.3372 34.5762 50.1553 34.5085 50.0283 34.373C49.9056 34.2376 49.8442 34.0726 49.8442 33.8779ZM49.8506 28.2729C49.8506 28.0741 49.9119 27.9069 50.0347 27.7715C50.1616 27.6318 50.3436 27.562 50.5806 27.562C50.8175 27.562 50.9974 27.6318 51.1201 27.7715C51.2471 27.9069 51.3105 28.0741 51.3105 28.2729C51.3105 28.4676 51.2471 28.6326 51.1201 28.7681C50.9974 28.9035 50.8175 28.9712 50.5806 28.9712C50.3436 28.9712 50.1616 28.9035 50.0347 28.7681C49.9119 28.6326 49.8506 28.4676 49.8506 28.2729ZM62.7617 29.4028V30.3677H56.4014V29.4028H62.7617ZM71.293 29.4028V30.3677H64.9326V29.4028H71.293ZM76.5044 33.8779C76.5044 33.679 76.5658 33.5119 76.6885 33.3765C76.8154 33.2368 76.9974 33.167 77.2344 33.167C77.4714 33.167 77.6512 33.2368 77.7739 33.3765C77.9009 33.5119 77.9644 33.679 77.9644 33.8779C77.9644 34.0726 77.9009 34.2376 77.7739 34.373C77.6512 34.5085 77.4714 34.5762 77.2344 34.5762C76.9974 34.5762 76.8154 34.5085 76.6885 34.373C76.5658 34.2376 76.5044 34.0726 76.5044 33.8779ZM76.5107 28.2729C76.5107 28.0741 76.5721 27.9069 76.6948 27.7715C76.8218 27.6318 77.0037 27.562 77.2407 27.562C77.4777 27.562 77.6576 27.6318 77.7803 27.7715C77.9072 27.9069 77.9707 28.0741 77.9707 28.2729C77.9707 28.4676 77.9072 28.6326 77.7803 28.7681C77.6576 28.9035 77.4777 28.9712 77.2407 28.9712C77.0037 28.9712 76.8218 28.9035 76.6948 28.7681C76.5721 28.6326 76.5107 28.4676 76.5107 28.2729ZM89.4219 29.4028V30.3677H83.0615V29.4028H89.4219ZM97.9531 29.4028V30.3677H91.5928V29.4028H97.9531Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270 24V38C270 39.1 269.1 40 268 40H254C252.89 40 252 39.1 252 38L252.01 24C252.01 22.9 252.89 22 254 22H255V20H257V22H265V20H267V22H268C269.1 22 270 22.9 270 24ZM254 26H268V24H254V26ZM268 38V28H254V38H268Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"15",y:"45",width:"268",height:"231",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M26.6948 57.7578H28.3071L30.6812 64.5435L33.0552 57.7578H34.6675L31.3286 67H30.0337L26.6948 57.7578ZM25.8252 57.7578H27.4312L27.7231 64.3721V67H25.8252V57.7578ZM33.9312 57.7578H35.5435V67H33.6392V64.3721L33.9312 57.7578ZM40.8057 65.4512V62.3916C40.8057 62.1715 40.7697 61.9832 40.6978 61.8267C40.6258 61.6659 40.5137 61.541 40.3613 61.4521C40.2132 61.3633 40.0207 61.3188 39.7837 61.3188C39.5806 61.3188 39.4049 61.3548 39.2568 61.4268C39.1087 61.4945 38.9945 61.5939 38.9141 61.7251C38.8337 61.8521 38.7935 62.0023 38.7935 62.1758H36.9653C36.9653 61.8838 37.033 61.6066 37.1685 61.3442C37.3039 61.0819 37.5007 60.8512 37.7588 60.6523C38.0169 60.4492 38.3237 60.2905 38.6792 60.1763C39.0389 60.062 39.4409 60.0049 39.8853 60.0049C40.4185 60.0049 40.8924 60.0938 41.3071 60.2715C41.7218 60.4492 42.0477 60.7158 42.2847 61.0713C42.5259 61.4268 42.6465 61.8711 42.6465 62.4043V65.3433C42.6465 65.7199 42.6698 66.0288 42.7163 66.27C42.7629 66.507 42.8306 66.7144 42.9194 66.8921V67H41.0723C40.9834 66.8138 40.9157 66.5811 40.8691 66.3018C40.8268 66.0182 40.8057 65.7347 40.8057 65.4512ZM41.0469 62.8169L41.0596 63.8516H40.0376C39.7964 63.8516 39.5869 63.8791 39.4092 63.9341C39.2314 63.9891 39.0854 64.0674 38.9712 64.1689C38.8569 64.2663 38.7723 64.3805 38.7173 64.5117C38.6665 64.6429 38.6411 64.7868 38.6411 64.9434C38.6411 65.0999 38.6771 65.2417 38.749 65.3687C38.821 65.4914 38.9246 65.5887 39.0601 65.6606C39.1955 65.7284 39.3542 65.7622 39.5361 65.7622C39.8112 65.7622 40.0503 65.7072 40.2534 65.5972C40.4565 65.4871 40.6131 65.3517 40.7231 65.1909C40.8374 65.0301 40.8966 64.8778 40.9009 64.7339L41.3833 65.5083C41.3156 65.6818 41.2225 65.8617 41.104 66.0479C40.9897 66.234 40.8438 66.4097 40.666 66.5747C40.4883 66.7355 40.2746 66.8688 40.0249 66.9746C39.7752 67.0762 39.479 67.127 39.1362 67.127C38.7004 67.127 38.3047 67.0402 37.9492 66.8667C37.598 66.689 37.3187 66.4456 37.1113 66.1367C36.9082 65.8236 36.8066 65.4681 36.8066 65.0703C36.8066 64.7106 36.8743 64.3911 37.0098 64.1118C37.1452 63.8325 37.3441 63.5977 37.6064 63.4072C37.873 63.2126 38.2052 63.0666 38.603 62.9692C39.0008 62.8677 39.4621 62.8169 39.9868 62.8169H41.0469ZM45.8838 61.6299V67H44.0557V60.1318H45.7759L45.8838 61.6299ZM47.9531 60.0874L47.9214 61.7822C47.8325 61.7695 47.7246 61.759 47.5977 61.7505C47.4749 61.7378 47.3628 61.7314 47.2612 61.7314C47.0031 61.7314 46.7788 61.7653 46.5884 61.833C46.4022 61.8965 46.2456 61.9917 46.1187 62.1187C45.9959 62.2456 45.9028 62.4001 45.8394 62.582C45.7801 62.764 45.7463 62.9714 45.7378 63.2041L45.3696 63.0898C45.3696 62.6455 45.4141 62.2371 45.5029 61.8647C45.5918 61.4881 45.7209 61.1602 45.8901 60.8809C46.0636 60.6016 46.2752 60.3857 46.5249 60.2334C46.7746 60.0811 47.0602 60.0049 47.3818 60.0049C47.4834 60.0049 47.5871 60.0133 47.6929 60.0303C47.7987 60.043 47.8854 60.062 47.9531 60.0874ZM51.5269 65.6987C51.7511 65.6987 51.95 65.6564 52.1235 65.5718C52.297 65.4829 52.4325 65.3602 52.5298 65.2036C52.6313 65.0428 52.6842 64.8545 52.6885 64.6387H54.4087C54.4045 65.1211 54.2754 65.5506 54.0215 65.9272C53.7676 66.2996 53.4269 66.5938 52.9995 66.8096C52.5721 67.0212 52.0939 67.127 51.5649 67.127C51.0317 67.127 50.5662 67.0381 50.1685 66.8604C49.7749 66.6826 49.4469 66.4372 49.1846 66.124C48.9222 65.8066 48.7254 65.4385 48.5942 65.0195C48.4631 64.5964 48.3975 64.1436 48.3975 63.6611V63.4771C48.3975 62.9904 48.4631 62.5376 48.5942 62.1187C48.7254 61.6955 48.9222 61.3273 49.1846 61.0142C49.4469 60.6968 49.7749 60.4492 50.1685 60.2715C50.562 60.0938 51.0233 60.0049 51.5522 60.0049C52.1151 60.0049 52.6081 60.1128 53.0312 60.3286C53.4587 60.5444 53.793 60.8534 54.0342 61.2554C54.2796 61.6532 54.4045 62.125 54.4087 62.6709H52.6885C52.6842 62.4424 52.6356 62.235 52.5425 62.0488C52.4536 61.8626 52.3224 61.7145 52.1489 61.6045C51.9797 61.4902 51.7702 61.4331 51.5205 61.4331C51.2539 61.4331 51.036 61.4902 50.8667 61.6045C50.6974 61.7145 50.5662 61.8669 50.4731 62.0615C50.38 62.252 50.3145 62.4699 50.2764 62.7153C50.2425 62.9565 50.2256 63.2104 50.2256 63.4771V63.6611C50.2256 63.9277 50.2425 64.1838 50.2764 64.4292C50.3102 64.6746 50.3737 64.8926 50.4668 65.083C50.5641 65.2734 50.6974 65.4237 50.8667 65.5337C51.036 65.6437 51.256 65.6987 51.5269 65.6987ZM57.2524 57.25V67H55.4243V57.25H57.2524ZM56.9922 63.3247H56.4907C56.495 62.8465 56.5584 62.4064 56.6812 62.0044C56.8039 61.5981 56.9795 61.2469 57.208 60.9507C57.4365 60.6502 57.7095 60.4175 58.0269 60.2524C58.3485 60.0874 58.7039 60.0049 59.0933 60.0049C59.4318 60.0049 59.7386 60.0535 60.0137 60.1509C60.293 60.244 60.5321 60.3963 60.731 60.6079C60.9341 60.8153 61.0907 61.0882 61.2007 61.4268C61.3107 61.7653 61.3657 62.1758 61.3657 62.6582V67H59.5249V62.6455C59.5249 62.3408 59.4805 62.1017 59.3916 61.9282C59.307 61.7505 59.1821 61.6257 59.0171 61.5537C58.8563 61.4775 58.6574 61.4395 58.4204 61.4395C58.158 61.4395 57.9338 61.4881 57.7476 61.5854C57.5656 61.6828 57.4196 61.8182 57.3096 61.9917C57.1995 62.161 57.1191 62.3599 57.0684 62.5884C57.0176 62.8169 56.9922 63.0623 56.9922 63.3247ZM72.2393 65.5718V67H65.917V65.7812L68.9067 62.5757C69.2072 62.2414 69.4442 61.9473 69.6177 61.6934C69.7912 61.4352 69.916 61.2046 69.9922 61.0015C70.0726 60.7941 70.1128 60.5973 70.1128 60.4111C70.1128 60.1318 70.0662 59.8927 69.9731 59.6938C69.88 59.4907 69.7425 59.3341 69.5605 59.2241C69.3828 59.1141 69.1628 59.0591 68.9004 59.0591C68.6211 59.0591 68.3799 59.1268 68.1768 59.2622C67.9779 59.3976 67.8255 59.5859 67.7197 59.8271C67.6182 60.0684 67.5674 60.3413 67.5674 60.646H65.7329C65.7329 60.0959 65.8641 59.5923 66.1265 59.1353C66.3888 58.674 66.7591 58.3079 67.2373 58.0371C67.7155 57.762 68.2826 57.6245 68.9385 57.6245C69.5859 57.6245 70.1318 57.7303 70.5762 57.9419C71.0247 58.1493 71.3633 58.4497 71.5918 58.8433C71.8245 59.2326 71.9409 59.6981 71.9409 60.2397C71.9409 60.5444 71.8923 60.8428 71.7949 61.1348C71.6976 61.4225 71.5579 61.7103 71.376 61.998C71.1982 62.2816 70.9824 62.5693 70.7285 62.8613C70.4746 63.1533 70.1932 63.4559 69.8843 63.769L68.2783 65.5718H72.2393ZM79.6025 61.5664V63.166C79.6025 63.86 79.5285 64.4588 79.3804 64.9624C79.2323 65.4618 79.0186 65.8722 78.7393 66.1938C78.4642 66.5112 78.1362 66.7461 77.7554 66.8984C77.3745 67.0508 76.9513 67.127 76.4858 67.127C76.1134 67.127 75.7664 67.0804 75.4448 66.9873C75.1232 66.89 74.8333 66.7397 74.5752 66.5366C74.3213 66.3335 74.1012 66.0775 73.915 65.7686C73.7331 65.4554 73.5934 65.083 73.4961 64.6514C73.3988 64.2197 73.3501 63.7246 73.3501 63.166V61.5664C73.3501 60.8724 73.4242 60.2778 73.5723 59.7827C73.7246 59.2834 73.9383 58.875 74.2134 58.5576C74.4927 58.2402 74.8228 58.0075 75.2036 57.8594C75.5845 57.707 76.0076 57.6309 76.4731 57.6309C76.8455 57.6309 77.1904 57.6795 77.5078 57.7769C77.8294 57.87 78.1193 58.016 78.3774 58.2148C78.6356 58.4137 78.8556 58.6698 79.0376 58.9829C79.2196 59.2918 79.3592 59.6621 79.4565 60.0938C79.5539 60.5212 79.6025 61.012 79.6025 61.5664ZM77.7681 63.4072V61.3188C77.7681 60.9845 77.749 60.6925 77.7109 60.4429C77.6771 60.1932 77.6242 59.9816 77.5522 59.8081C77.4803 59.6304 77.3914 59.4865 77.2856 59.3765C77.1799 59.2664 77.0592 59.186 76.9238 59.1353C76.7884 59.0845 76.6382 59.0591 76.4731 59.0591C76.2658 59.0591 76.0817 59.0993 75.9209 59.1797C75.7643 59.2601 75.631 59.3892 75.521 59.5669C75.411 59.7404 75.3263 59.9731 75.2671 60.2651C75.2121 60.5529 75.1846 60.9041 75.1846 61.3188V63.4072C75.1846 63.7415 75.2015 64.0356 75.2354 64.2896C75.2734 64.5435 75.3285 64.7614 75.4004 64.9434C75.4766 65.1211 75.5654 65.2671 75.667 65.3813C75.7728 65.4914 75.8934 65.5718 76.0288 65.6226C76.1685 65.6733 76.3208 65.6987 76.4858 65.6987C76.689 65.6987 76.8688 65.6585 77.0254 65.5781C77.1862 65.4935 77.3216 65.3623 77.4316 65.1846C77.5459 65.0026 77.6305 64.7656 77.6855 64.4736C77.7406 64.1816 77.7681 63.8262 77.7681 63.4072ZM87.1689 65.5718V67H80.8467V65.7812L83.8364 62.5757C84.1369 62.2414 84.3739 61.9473 84.5474 61.6934C84.7209 61.4352 84.8457 61.2046 84.9219 61.0015C85.0023 60.7941 85.0425 60.5973 85.0425 60.4111C85.0425 60.1318 84.9959 59.8927 84.9028 59.6938C84.8097 59.4907 84.6722 59.3341 84.4902 59.2241C84.3125 59.1141 84.0924 59.0591 83.8301 59.0591C83.5508 59.0591 83.3096 59.1268 83.1064 59.2622C82.9076 59.3976 82.7552 59.5859 82.6494 59.8271C82.5479 60.0684 82.4971 60.3413 82.4971 60.646H80.6626C80.6626 60.0959 80.7938 59.5923 81.0562 59.1353C81.3185 58.674 81.6888 58.3079 82.167 58.0371C82.6452 57.762 83.2122 57.6245 83.8682 57.6245C84.5156 57.6245 85.0615 57.7303 85.5059 57.9419C85.9544 58.1493 86.293 58.4497 86.5215 58.8433C86.7542 59.2326 86.8706 59.6981 86.8706 60.2397C86.8706 60.5444 86.8219 60.8428 86.7246 61.1348C86.6273 61.4225 86.4876 61.7103 86.3057 61.998C86.1279 62.2816 85.9121 62.5693 85.6582 62.8613C85.4043 63.1533 85.1229 63.4559 84.814 63.769L83.208 65.5718H87.1689ZM92.7676 57.7388V67H90.9395V59.8462L88.7432 60.5444V59.1035L92.5708 57.7388H92.7676Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1407)"},(0,h.createElement)("path",{d:"M99.7917 61.4167L102.5 64.1251L105.208 61.4167H99.7917Z",fill:"#64748B"})),(0,h.createElement)("path",{d:"M249.167 62.4999L249.93 63.2637L252.958 60.2412L252.958 66.8333L254.042 66.8333L254.042 60.2412L257.07 63.2637L257.833 62.4999L253.5 58.1666L249.167 62.4999Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270.833 62.5001L270.07 61.7363L267.042 64.7588L267.042 58.1667L265.958 58.1667L265.958 64.7588L262.93 61.7363L262.167 62.5001L266.5 66.8334L270.833 62.5001Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M37.3305 89.6641C37.3305 89.4482 37.2967 89.2578 37.2289 89.0928C37.1655 88.9235 37.0512 88.7712 36.8862 88.6357C36.7254 88.5003 36.5011 88.3713 36.2133 88.2485C35.9298 88.1258 35.5701 88.001 35.1342 87.874C34.6772 87.7386 34.2646 87.5884 33.8964 87.4233C33.5283 87.2541 33.213 87.0615 32.9506 86.8457C32.6883 86.6299 32.4873 86.3823 32.3476 86.103C32.208 85.8237 32.1381 85.5042 32.1381 85.1445C32.1381 84.7848 32.2122 84.4526 32.3603 84.1479C32.5084 83.8433 32.72 83.5788 32.9951 83.3545C33.2744 83.126 33.6066 82.9482 33.9916 82.8213C34.3767 82.6943 34.8063 82.6309 35.2802 82.6309C35.9742 82.6309 36.5624 82.7642 37.0449 83.0308C37.5315 83.2931 37.9018 83.638 38.1557 84.0654C38.4096 84.4886 38.5366 84.9414 38.5366 85.4238H37.3178C37.3178 85.0768 37.2438 84.77 37.0956 84.5034C36.9475 84.2326 36.7233 84.021 36.4228 83.8687C36.1223 83.7121 35.7415 83.6338 35.2802 83.6338C34.8443 83.6338 34.4846 83.6994 34.2011 83.8306C33.9176 83.9618 33.706 84.1395 33.5664 84.3638C33.4309 84.5881 33.3632 84.8441 33.3632 85.1318C33.3632 85.3265 33.4034 85.5042 33.4838 85.665C33.5685 85.8216 33.6975 85.9676 33.871 86.103C34.0488 86.2384 34.2731 86.3633 34.5439 86.4775C34.819 86.5918 35.1469 86.7018 35.5278 86.8076C36.0525 86.9557 36.5053 87.1208 36.8862 87.3027C37.267 87.4847 37.5802 87.6899 37.8256 87.9185C38.0753 88.1427 38.2594 88.3988 38.3779 88.6865C38.5006 88.9701 38.562 89.2917 38.562 89.6514C38.562 90.028 38.4858 90.3687 38.3334 90.6733C38.1811 90.978 37.9632 91.2383 37.6796 91.4541C37.3961 91.6699 37.0554 91.8371 36.6577 91.9556C36.2641 92.0698 35.824 92.127 35.3373 92.127C34.9099 92.127 34.4889 92.0677 34.0742 91.9492C33.6637 91.8307 33.2892 91.653 32.9506 91.416C32.6163 91.179 32.3476 90.887 32.1445 90.54C31.9456 90.1888 31.8461 89.7826 31.8461 89.3213H33.0649C33.0649 89.6387 33.1262 89.9116 33.249 90.1401C33.3717 90.3644 33.5388 90.5506 33.7504 90.6987C33.9663 90.8468 34.2096 90.9569 34.4804 91.0288C34.7555 91.0965 35.0411 91.1304 35.3373 91.1304C35.7648 91.1304 36.1266 91.0711 36.4228 90.9526C36.719 90.8341 36.9433 90.6649 37.0956 90.4448C37.2522 90.2248 37.3305 89.9645 37.3305 89.6641ZM44.1479 90.4131V85.1318H45.3286V92H44.205L44.1479 90.4131ZM44.3701 88.9658L44.8588 88.9531C44.8588 89.4102 44.8102 89.8333 44.7128 90.2227C44.6197 90.6077 44.4674 90.9421 44.2558 91.2256C44.0442 91.5091 43.767 91.7313 43.4243 91.8921C43.0815 92.0487 42.6647 92.127 42.1738 92.127C41.8395 92.127 41.5327 92.0783 41.2534 91.981C40.9783 91.8836 40.7413 91.7334 40.5424 91.5303C40.3435 91.3271 40.1891 91.0627 40.079 90.7368C39.9733 90.411 39.9204 90.0195 39.9204 89.5625V85.1318H41.0947V89.5752C41.0947 89.8841 41.1285 90.1401 41.1962 90.3433C41.2682 90.5422 41.3634 90.7008 41.4819 90.8193C41.6046 90.9336 41.74 91.014 41.8881 91.0605C42.0405 91.1071 42.197 91.1304 42.3579 91.1304C42.8572 91.1304 43.2529 91.0352 43.5449 90.8447C43.8369 90.6501 44.0463 90.3898 44.1733 90.064C44.3045 89.7339 44.3701 89.3678 44.3701 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M109.587 82.7578V92H108.381V82.7578H109.587ZM112.558 82.7578V83.7607H105.417V82.7578H112.558ZM117.344 90.4131V85.1318H118.525V92H117.401L117.344 90.4131ZM117.566 88.9658L118.055 88.9531C118.055 89.4102 118.006 89.8333 117.909 90.2227C117.816 90.6077 117.663 90.9421 117.452 91.2256C117.24 91.5091 116.963 91.7313 116.62 91.8921C116.278 92.0487 115.861 92.127 115.37 92.127C115.036 92.127 114.729 92.0783 114.449 91.981C114.174 91.8836 113.937 91.7334 113.738 91.5303C113.54 91.3271 113.385 91.0627 113.275 90.7368C113.169 90.411 113.116 90.0195 113.116 89.5625V85.1318H114.291V89.5752C114.291 89.8841 114.325 90.1401 114.392 90.3433C114.464 90.5422 114.559 90.7008 114.678 90.8193C114.801 90.9336 114.936 91.014 115.084 91.0605C115.237 91.1071 115.393 91.1304 115.554 91.1304C116.053 91.1304 116.449 91.0352 116.741 90.8447C117.033 90.6501 117.242 90.3898 117.369 90.064C117.501 89.7339 117.566 89.3678 117.566 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M182.77 82.7578V92H181.564V82.7578H182.77ZM185.74 82.7578V83.7607H178.599V82.7578H185.74ZM188.108 82.25V92H186.934V82.25H188.108ZM187.829 88.3057L187.34 88.2866C187.344 87.8169 187.414 87.3831 187.55 86.9854C187.685 86.5833 187.875 86.2342 188.121 85.938C188.366 85.6418 188.658 85.4132 188.997 85.2524C189.34 85.0874 189.718 85.0049 190.133 85.0049C190.472 85.0049 190.776 85.0514 191.047 85.1445C191.318 85.2334 191.549 85.3773 191.739 85.5762C191.934 85.7751 192.082 86.0332 192.183 86.3506C192.285 86.6637 192.336 87.0467 192.336 87.4995V92H191.155V87.4868C191.155 87.1271 191.102 86.8394 190.996 86.6235C190.89 86.4035 190.736 86.2448 190.533 86.1475C190.33 86.0459 190.08 85.9951 189.784 85.9951C189.492 85.9951 189.225 86.0565 188.984 86.1792C188.747 86.3019 188.542 86.4712 188.368 86.687C188.199 86.9028 188.066 87.1504 187.968 87.4297C187.875 87.7048 187.829 87.9967 187.829 88.3057Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M257.826 89.6641C257.826 89.4482 257.792 89.2578 257.724 89.0928C257.661 88.9235 257.546 88.7712 257.381 88.6357C257.22 88.5003 256.996 88.3713 256.708 88.2485C256.425 88.1258 256.065 88.001 255.629 87.874C255.172 87.7386 254.76 87.5884 254.392 87.4233C254.023 87.2541 253.708 87.0615 253.446 86.8457C253.183 86.6299 252.982 86.3823 252.843 86.103C252.703 85.8237 252.633 85.5042 252.633 85.1445C252.633 84.7848 252.707 84.4526 252.855 84.1479C253.004 83.8433 253.215 83.5788 253.49 83.3545C253.769 83.126 254.102 82.9482 254.487 82.8213C254.872 82.6943 255.301 82.6309 255.775 82.6309C256.469 82.6309 257.058 82.7642 257.54 83.0308C258.027 83.2931 258.397 83.638 258.651 84.0654C258.905 84.4886 259.032 84.9414 259.032 85.4238H257.813C257.813 85.0768 257.739 84.77 257.591 84.5034C257.443 84.2326 257.218 84.021 256.918 83.8687C256.617 83.7121 256.237 83.6338 255.775 83.6338C255.339 83.6338 254.98 83.6994 254.696 83.8306C254.413 83.9618 254.201 84.1395 254.061 84.3638C253.926 84.5881 253.858 84.8441 253.858 85.1318C253.858 85.3265 253.899 85.5042 253.979 85.665C254.064 85.8216 254.193 85.9676 254.366 86.103C254.544 86.2384 254.768 86.3633 255.039 86.4775C255.314 86.5918 255.642 86.7018 256.023 86.8076C256.548 86.9557 257 87.1208 257.381 87.3027C257.762 87.4847 258.075 87.6899 258.321 87.9185C258.57 88.1427 258.755 88.3988 258.873 88.6865C258.996 88.9701 259.057 89.2917 259.057 89.6514C259.057 90.028 258.981 90.3687 258.829 90.6733C258.676 90.978 258.458 91.2383 258.175 91.4541C257.891 91.6699 257.551 91.8371 257.153 91.9556C256.759 92.0698 256.319 92.127 255.832 92.127C255.405 92.127 254.984 92.0677 254.569 91.9492C254.159 91.8307 253.784 91.653 253.446 91.416C253.111 91.179 252.843 90.887 252.64 90.54C252.441 90.1888 252.341 89.7826 252.341 89.3213H253.56C253.56 89.6387 253.621 89.9116 253.744 90.1401C253.867 90.3644 254.034 90.5506 254.246 90.6987C254.461 90.8468 254.705 90.9569 254.976 91.0288C255.251 91.0965 255.536 91.1304 255.832 91.1304C256.26 91.1304 256.622 91.0711 256.918 90.9526C257.214 90.8341 257.438 90.6649 257.591 90.4448C257.747 90.2248 257.826 89.9645 257.826 89.6641ZM264.491 90.8257V87.29C264.491 87.0192 264.436 86.7843 264.326 86.5854C264.22 86.3823 264.059 86.2257 263.843 86.1157C263.627 86.0057 263.361 85.9507 263.043 85.9507C262.747 85.9507 262.487 86.0015 262.263 86.103C262.043 86.2046 261.869 86.3379 261.742 86.5029C261.619 86.668 261.558 86.8457 261.558 87.0361H260.384C260.384 86.7907 260.447 86.5474 260.574 86.3062C260.701 86.0649 260.883 85.847 261.12 85.6523C261.361 85.4535 261.649 85.2969 261.983 85.1826C262.322 85.0641 262.699 85.0049 263.113 85.0049C263.613 85.0049 264.053 85.0895 264.434 85.2588C264.819 85.4281 265.119 85.6841 265.335 86.0269C265.555 86.3654 265.665 86.7907 265.665 87.3027V90.502C265.665 90.7305 265.684 90.9738 265.722 91.2319C265.764 91.4901 265.826 91.7122 265.906 91.8984V92H264.681C264.622 91.8646 264.575 91.6847 264.541 91.4604C264.508 91.2319 264.491 91.0203 264.491 90.8257ZM264.694 87.8359L264.706 88.6611H263.519C263.185 88.6611 262.887 88.6886 262.624 88.7437C262.362 88.7944 262.142 88.8727 261.964 88.9785C261.787 89.0843 261.651 89.2176 261.558 89.3784C261.465 89.535 261.418 89.7191 261.418 89.9307C261.418 90.1465 261.467 90.3433 261.564 90.521C261.662 90.6987 261.808 90.8405 262.002 90.9463C262.201 91.0479 262.445 91.0986 262.732 91.0986C263.092 91.0986 263.409 91.0225 263.685 90.8701C263.96 90.7178 264.178 90.5316 264.338 90.3115C264.503 90.0915 264.592 89.8778 264.605 89.6704L265.106 90.2354C265.077 90.4131 264.996 90.6099 264.865 90.8257C264.734 91.0415 264.558 91.2489 264.338 91.4478C264.123 91.6424 263.864 91.8053 263.564 91.9365C263.268 92.0635 262.933 92.127 262.561 92.127C262.095 92.127 261.687 92.036 261.336 91.854C260.989 91.672 260.718 91.4287 260.523 91.124C260.333 90.8151 260.238 90.4702 260.238 90.0894C260.238 89.7212 260.31 89.3975 260.454 89.1182C260.597 88.8346 260.805 88.5998 261.076 88.4136C261.346 88.2231 261.672 88.0793 262.053 87.9819C262.434 87.8846 262.859 87.8359 263.329 87.8359H264.694Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M67.5966 82.7578H68.7836L71.8115 90.2925L74.833 82.7578H76.0263L72.2685 92H71.3417L67.5966 82.7578ZM67.2094 82.7578H68.2568L68.4282 88.3945V92H67.2094V82.7578ZM75.3598 82.7578H76.4072V92H75.1884V88.3945L75.3598 82.7578ZM78.0703 88.6421V88.4961C78.0703 88.001 78.1422 87.5418 78.2861 87.1187C78.43 86.6912 78.6373 86.321 78.9081 86.0078C79.179 85.6904 79.5069 85.445 79.892 85.2715C80.2771 85.0938 80.7088 85.0049 81.187 85.0049C81.6694 85.0049 82.1031 85.0938 82.4882 85.2715C82.8775 85.445 83.2076 85.6904 83.4785 86.0078C83.7535 86.321 83.963 86.6912 84.1069 87.1187C84.2508 87.5418 84.3227 88.001 84.3227 88.4961V88.6421C84.3227 89.1372 84.2508 89.5964 84.1069 90.0195C83.963 90.4427 83.7535 90.813 83.4785 91.1304C83.2076 91.4435 82.8797 91.689 82.4946 91.8667C82.1137 92.0402 81.6821 92.127 81.1997 92.127C80.7172 92.127 80.2835 92.0402 79.8984 91.8667C79.5133 91.689 79.1832 91.4435 78.9081 91.1304C78.6373 90.813 78.43 90.4427 78.2861 90.0195C78.1422 89.5964 78.0703 89.1372 78.0703 88.6421ZM79.2446 88.4961V88.6421C79.2446 88.9849 79.2848 89.3086 79.3652 89.6133C79.4456 89.9137 79.5662 90.1803 79.727 90.4131C79.892 90.6458 80.0973 90.8299 80.3427 90.9653C80.5882 91.0965 80.8738 91.1621 81.1997 91.1621C81.5213 91.1621 81.8027 91.0965 82.0439 90.9653C82.2893 90.8299 82.4925 90.6458 82.6533 90.4131C82.8141 90.1803 82.9347 89.9137 83.0151 89.6133C83.0997 89.3086 83.142 88.9849 83.142 88.6421V88.4961C83.142 88.1576 83.0997 87.8381 83.0151 87.5376C82.9347 87.2329 82.812 86.9642 82.6469 86.7314C82.4861 86.4945 82.283 86.3083 82.0375 86.1729C81.7963 86.0374 81.5128 85.9697 81.187 85.9697C80.8653 85.9697 80.5818 86.0374 80.3364 86.1729C80.0952 86.3083 79.892 86.4945 79.727 86.7314C79.5662 86.9642 79.4456 87.2329 79.3652 87.5376C79.2848 87.8381 79.2446 88.1576 79.2446 88.4961Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M143.389 89.207L145.223 82.7578H146.112L145.598 85.2651L143.624 92H142.741L143.389 89.207ZM141.491 82.7578L142.951 89.0801L143.389 92H142.513L140.272 82.7578H141.491ZM148.486 89.0737L149.914 82.7578H151.139L148.905 92H148.029L148.486 89.0737ZM146.245 82.7578L148.029 89.207L148.676 92H147.794L145.89 85.2651L145.369 82.7578H146.245ZM154.967 92.127C154.489 92.127 154.055 92.0465 153.666 91.8857C153.281 91.7207 152.948 91.4901 152.669 91.1938C152.394 90.8976 152.182 90.5464 152.034 90.1401C151.886 89.7339 151.812 89.2896 151.812 88.8071V88.5405C151.812 87.9819 151.895 87.4847 152.06 87.0488C152.225 86.6087 152.449 86.2363 152.733 85.9316C153.016 85.627 153.338 85.3963 153.697 85.2397C154.057 85.0832 154.43 85.0049 154.815 85.0049C155.306 85.0049 155.729 85.0895 156.084 85.2588C156.444 85.4281 156.738 85.665 156.966 85.9697C157.195 86.2702 157.364 86.6257 157.474 87.0361C157.584 87.4424 157.639 87.8867 157.639 88.3691V88.896H152.51V87.9375H156.465V87.8486C156.448 87.5439 156.385 87.2477 156.275 86.96C156.169 86.6722 156 86.4352 155.767 86.249C155.534 86.0628 155.217 85.9697 154.815 85.9697C154.548 85.9697 154.303 86.0269 154.078 86.1411C153.854 86.2511 153.661 86.4162 153.501 86.6362C153.34 86.8563 153.215 87.125 153.126 87.4424C153.037 87.7598 152.993 88.1258 152.993 88.5405V88.8071C152.993 89.133 153.037 89.4398 153.126 89.7275C153.219 90.0111 153.353 90.2607 153.526 90.4766C153.704 90.6924 153.918 90.8617 154.167 90.9844C154.421 91.1071 154.709 91.1685 155.03 91.1685C155.445 91.1685 155.796 91.0838 156.084 90.9146C156.372 90.7453 156.624 90.5189 156.84 90.2354L157.55 90.8003C157.402 91.0246 157.214 91.2383 156.986 91.4414C156.757 91.6445 156.476 91.8096 156.141 91.9365C155.811 92.0635 155.42 92.127 154.967 92.127Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M219.066 82.7578V92H217.841V82.7578H219.066ZM222.938 86.9155V87.9185H218.8V86.9155H222.938ZM223.567 82.7578V83.7607H218.8V82.7578H223.567ZM225.858 86.2109V92H224.684V85.1318H225.826L225.858 86.2109ZM228.004 85.0938L227.997 86.1855C227.9 86.1644 227.807 86.1517 227.718 86.1475C227.633 86.139 227.536 86.1348 227.426 86.1348C227.155 86.1348 226.916 86.1771 226.709 86.2617C226.501 86.3464 226.326 86.4648 226.182 86.6172C226.038 86.7695 225.924 86.9515 225.839 87.1631C225.759 87.3704 225.706 87.599 225.68 87.8486L225.35 88.0391C225.35 87.6243 225.391 87.235 225.471 86.8711C225.556 86.5072 225.685 86.1855 225.858 85.9062C226.032 85.6227 226.252 85.4027 226.518 85.2461C226.789 85.0853 227.111 85.0049 227.483 85.0049C227.568 85.0049 227.665 85.0155 227.775 85.0366C227.885 85.0535 227.961 85.0726 228.004 85.0938Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"212",y:"100",width:"21",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{opacity:"0.4",d:"M38.289 114.035V115H32.2397V114.156L35.2675 110.785C35.6399 110.37 35.9277 110.019 36.1308 109.731C36.3382 109.439 36.482 109.179 36.5624 108.951C36.6471 108.718 36.6894 108.481 36.6894 108.24C36.6894 107.935 36.6259 107.66 36.499 107.415C36.3762 107.165 36.1943 106.966 35.9531 106.818C35.7119 106.67 35.4199 106.596 35.0771 106.596C34.6666 106.596 34.3238 106.676 34.0488 106.837C33.7779 106.993 33.5748 107.214 33.4394 107.497C33.304 107.781 33.2363 108.106 33.2363 108.475H32.062C32.062 107.954 32.1762 107.478 32.4047 107.046C32.6332 106.615 32.9718 106.272 33.4204 106.018C33.8689 105.76 34.4212 105.631 35.0771 105.631C35.6611 105.631 36.1604 105.735 36.5751 105.942C36.9899 106.145 37.3072 106.433 37.5273 106.805C37.7516 107.173 37.8637 107.605 37.8637 108.1C37.8637 108.371 37.8172 108.646 37.7241 108.925C37.6352 109.2 37.5104 109.475 37.3496 109.75C37.193 110.026 37.0089 110.296 36.7973 110.563C36.59 110.83 36.3678 111.092 36.1308 111.35L33.6552 114.035H38.289ZM45.373 112.499C45.373 113.062 45.2418 113.54 44.9794 113.934C44.7213 114.323 44.3701 114.619 43.9257 114.822C43.4856 115.025 42.9884 115.127 42.434 115.127C41.8797 115.127 41.3803 115.025 40.936 114.822C40.4916 114.619 40.1404 114.323 39.8823 113.934C39.6241 113.54 39.4951 113.062 39.4951 112.499C39.4951 112.131 39.5649 111.794 39.7045 111.49C39.8484 111.181 40.0494 110.912 40.3076 110.684C40.5699 110.455 40.8789 110.279 41.2343 110.157C41.594 110.03 41.9897 109.966 42.4213 109.966C42.9884 109.966 43.4941 110.076 43.9384 110.296C44.3828 110.512 44.7319 110.811 44.9858 111.191C45.2439 111.572 45.373 112.008 45.373 112.499ZM44.1923 112.474C44.1923 112.131 44.1183 111.828 43.9702 111.566C43.822 111.299 43.6147 111.092 43.3481 110.944C43.0815 110.796 42.7726 110.722 42.4213 110.722C42.0616 110.722 41.7506 110.796 41.4882 110.944C41.2301 111.092 41.0291 111.299 40.8852 111.566C40.7413 111.828 40.6694 112.131 40.6694 112.474C40.6694 112.829 40.7392 113.134 40.8789 113.388C41.0227 113.637 41.2259 113.83 41.4882 113.965C41.7548 114.097 42.0701 114.162 42.434 114.162C42.798 114.162 43.1111 114.097 43.3735 113.965C43.6359 113.83 43.8369 113.637 43.9765 113.388C44.1204 113.134 44.1923 112.829 44.1923 112.474ZM45.1572 108.164C45.1572 108.612 45.0387 109.016 44.8017 109.376C44.5647 109.736 44.241 110.019 43.8305 110.227C43.42 110.434 42.9545 110.538 42.434 110.538C41.9051 110.538 41.4332 110.434 41.0185 110.227C40.608 110.019 40.2864 109.736 40.0537 109.376C39.8209 109.016 39.7045 108.612 39.7045 108.164C39.7045 107.626 39.8209 107.169 40.0537 106.792C40.2906 106.416 40.6144 106.128 41.0248 105.929C41.4353 105.73 41.9029 105.631 42.4277 105.631C42.9567 105.631 43.4264 105.73 43.8369 105.929C44.2473 106.128 44.569 106.416 44.8017 106.792C45.0387 107.169 45.1572 107.626 45.1572 108.164ZM43.9829 108.183C43.9829 107.874 43.9173 107.601 43.7861 107.364C43.6549 107.127 43.4729 106.941 43.2402 106.805C43.0074 106.666 42.7366 106.596 42.4277 106.596C42.1188 106.596 41.8479 106.661 41.6152 106.792C41.3867 106.919 41.2068 107.101 41.0756 107.338C40.9487 107.575 40.8852 107.857 40.8852 108.183C40.8852 108.5 40.9487 108.777 41.0756 109.014C41.2068 109.251 41.3888 109.435 41.6215 109.566C41.8543 109.698 42.1251 109.763 42.434 109.763C42.7429 109.763 43.0117 109.698 43.2402 109.566C43.4729 109.435 43.6549 109.251 43.7861 109.014C43.9173 108.777 43.9829 108.5 43.9829 108.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M115.427 114.035V115H109.378V114.156L112.405 110.785C112.778 110.37 113.066 110.019 113.269 109.731C113.476 109.439 113.62 109.179 113.7 108.951C113.785 108.718 113.827 108.481 113.827 108.24C113.827 107.935 113.764 107.66 113.637 107.415C113.514 107.165 113.332 106.966 113.091 106.818C112.85 106.67 112.558 106.596 112.215 106.596C111.805 106.596 111.462 106.676 111.187 106.837C110.916 106.993 110.713 107.214 110.577 107.497C110.442 107.781 110.374 108.106 110.374 108.475H109.2C109.2 107.954 109.314 107.478 109.543 107.046C109.771 106.615 110.11 106.272 110.558 106.018C111.007 105.76 111.559 105.631 112.215 105.631C112.799 105.631 113.298 105.735 113.713 105.942C114.128 106.145 114.445 106.433 114.665 106.805C114.89 107.173 115.002 107.605 115.002 108.1C115.002 108.371 114.955 108.646 114.862 108.925C114.773 109.2 114.648 109.475 114.487 109.75C114.331 110.026 114.147 110.296 113.935 110.563C113.728 110.83 113.506 111.092 113.269 111.35L110.793 114.035H115.427Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M189.098 111.89V112.854H182.421V112.163L186.559 105.758H187.518L186.489 107.611L183.754 111.89H189.098ZM187.81 105.758V115H186.635V105.758H187.81Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.841 105.745H260.942V106.742H260.841C260.219 106.742 259.698 106.843 259.279 107.046C258.86 107.245 258.528 107.514 258.283 107.853C258.037 108.187 257.859 108.563 257.749 108.982C257.644 109.401 257.591 109.827 257.591 110.258V111.617C257.591 112.027 257.639 112.391 257.737 112.708C257.834 113.022 257.967 113.286 258.137 113.502C258.306 113.718 258.496 113.881 258.708 113.991C258.924 114.101 259.148 114.156 259.381 114.156C259.652 114.156 259.893 114.105 260.104 114.003C260.316 113.898 260.494 113.752 260.638 113.565C260.786 113.375 260.898 113.151 260.974 112.893C261.05 112.634 261.088 112.351 261.088 112.042C261.088 111.767 261.054 111.502 260.987 111.249C260.919 110.99 260.815 110.762 260.676 110.563C260.536 110.36 260.36 110.201 260.149 110.087C259.942 109.968 259.694 109.909 259.406 109.909C259.08 109.909 258.776 109.99 258.492 110.15C258.213 110.307 257.982 110.514 257.8 110.772C257.623 111.026 257.521 111.304 257.496 111.604L256.873 111.598C256.933 111.124 257.043 110.72 257.204 110.385C257.369 110.047 257.572 109.772 257.813 109.56C258.058 109.344 258.331 109.188 258.632 109.09C258.936 108.989 259.258 108.938 259.597 108.938C260.058 108.938 260.456 109.025 260.79 109.198C261.124 109.372 261.399 109.604 261.615 109.896C261.831 110.184 261.99 110.51 262.091 110.874C262.197 111.234 262.25 111.604 262.25 111.985C262.25 112.421 262.189 112.829 262.066 113.21C261.943 113.591 261.759 113.925 261.514 114.213C261.272 114.501 260.974 114.725 260.619 114.886C260.263 115.047 259.851 115.127 259.381 115.127C258.881 115.127 258.446 115.025 258.073 114.822C257.701 114.615 257.392 114.34 257.146 113.997C256.901 113.654 256.717 113.273 256.594 112.854C256.471 112.436 256.41 112.01 256.41 111.579V111.026C256.41 110.375 256.476 109.736 256.607 109.109C256.738 108.483 256.964 107.916 257.286 107.408C257.612 106.9 258.063 106.496 258.638 106.196C259.214 105.895 259.948 105.745 260.841 105.745Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M76.4897 105.707V115H75.3154V107.173L72.9477 108.037V106.977L76.3056 105.707H76.4897Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M147.826 109.801H148.664C149.074 109.801 149.413 109.734 149.679 109.598C149.95 109.458 150.151 109.27 150.282 109.033C150.418 108.792 150.486 108.521 150.486 108.221C150.486 107.865 150.426 107.567 150.308 107.326C150.189 107.084 150.012 106.903 149.775 106.78C149.538 106.657 149.237 106.596 148.873 106.596C148.543 106.596 148.251 106.661 147.997 106.792C147.748 106.919 147.551 107.101 147.407 107.338C147.267 107.575 147.197 107.855 147.197 108.176H146.023C146.023 107.707 146.142 107.279 146.379 106.894C146.616 106.509 146.948 106.202 147.375 105.974C147.807 105.745 148.306 105.631 148.873 105.631C149.432 105.631 149.921 105.73 150.34 105.929C150.758 106.124 151.084 106.416 151.317 106.805C151.55 107.19 151.666 107.671 151.666 108.246C151.666 108.479 151.611 108.729 151.501 108.995C151.395 109.257 151.228 109.503 151 109.731C150.775 109.96 150.483 110.148 150.124 110.296C149.764 110.44 149.332 110.512 148.829 110.512H147.826V109.801ZM147.826 110.766V110.062H148.829C149.417 110.062 149.904 110.131 150.289 110.271C150.674 110.411 150.976 110.597 151.196 110.83C151.421 111.062 151.577 111.318 151.666 111.598C151.759 111.873 151.806 112.148 151.806 112.423C151.806 112.854 151.732 113.237 151.584 113.572C151.44 113.906 151.235 114.19 150.968 114.422C150.706 114.655 150.397 114.831 150.041 114.949C149.686 115.068 149.299 115.127 148.88 115.127C148.478 115.127 148.099 115.07 147.743 114.956C147.392 114.841 147.081 114.676 146.81 114.46C146.539 114.24 146.328 113.972 146.175 113.654C146.023 113.333 145.947 112.967 145.947 112.556H147.121C147.121 112.878 147.191 113.159 147.331 113.4C147.475 113.642 147.678 113.83 147.94 113.965C148.207 114.097 148.52 114.162 148.88 114.162C149.239 114.162 149.548 114.101 149.806 113.978C150.069 113.851 150.27 113.661 150.409 113.407C150.553 113.153 150.625 112.833 150.625 112.448C150.625 112.063 150.545 111.748 150.384 111.502C150.223 111.253 149.995 111.069 149.698 110.95C149.406 110.827 149.062 110.766 148.664 110.766H147.826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M221.104 110.792L219.644 110.442L220.171 105.758H225.363V107.237H221.675L221.447 109.287C221.569 109.215 221.756 109.139 222.005 109.059C222.255 108.974 222.534 108.932 222.843 108.932C223.292 108.932 223.689 109.001 224.036 109.141C224.383 109.281 224.678 109.484 224.919 109.75C225.164 110.017 225.35 110.343 225.477 110.728C225.604 111.113 225.668 111.549 225.668 112.036C225.668 112.446 225.604 112.838 225.477 113.21C225.35 113.578 225.158 113.908 224.9 114.2C224.642 114.488 224.318 114.714 223.929 114.879C223.539 115.044 223.078 115.127 222.545 115.127C222.147 115.127 221.762 115.068 221.389 114.949C221.021 114.831 220.689 114.655 220.393 114.422C220.101 114.19 219.866 113.908 219.688 113.578C219.515 113.244 219.424 112.863 219.415 112.436H221.231C221.256 112.698 221.324 112.924 221.434 113.115C221.548 113.301 221.698 113.445 221.885 113.546C222.071 113.648 222.289 113.699 222.538 113.699C222.771 113.699 222.97 113.654 223.135 113.565C223.3 113.477 223.433 113.354 223.535 113.197C223.637 113.036 223.711 112.85 223.757 112.639C223.808 112.423 223.833 112.19 223.833 111.94C223.833 111.691 223.804 111.464 223.744 111.261C223.685 111.058 223.594 110.882 223.472 110.734C223.349 110.586 223.192 110.472 223.002 110.392C222.816 110.311 222.598 110.271 222.348 110.271C222.009 110.271 221.747 110.324 221.561 110.43C221.379 110.535 221.227 110.656 221.104 110.792Z",fill:"white"}),(0,h.createElement)("path",{d:"M41.8627 128.758V129.418L38.0351 138H36.7973L40.6186 129.723H35.6166V128.758H41.8627Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M110.539 137.016H110.66C111.337 137.016 111.887 136.921 112.31 136.73C112.733 136.54 113.059 136.284 113.288 135.962C113.516 135.641 113.673 135.279 113.758 134.877C113.842 134.471 113.884 134.054 113.884 133.626V132.211C113.884 131.792 113.836 131.42 113.738 131.094C113.645 130.768 113.514 130.495 113.345 130.275C113.18 130.055 112.992 129.888 112.78 129.773C112.568 129.659 112.344 129.602 112.107 129.602C111.836 129.602 111.593 129.657 111.377 129.767C111.166 129.873 110.986 130.023 110.838 130.218C110.694 130.412 110.584 130.641 110.508 130.903C110.431 131.166 110.393 131.451 110.393 131.76C110.393 132.035 110.427 132.302 110.495 132.56C110.563 132.818 110.666 133.051 110.806 133.258C110.946 133.466 111.119 133.631 111.326 133.753C111.538 133.872 111.786 133.931 112.069 133.931C112.331 133.931 112.577 133.88 112.805 133.779C113.038 133.673 113.243 133.531 113.421 133.354C113.603 133.172 113.747 132.966 113.853 132.738C113.963 132.509 114.026 132.27 114.043 132.021H114.602C114.602 132.372 114.532 132.719 114.392 133.062C114.257 133.4 114.066 133.709 113.821 133.988C113.576 134.268 113.288 134.492 112.958 134.661C112.628 134.826 112.268 134.909 111.879 134.909C111.422 134.909 111.026 134.82 110.692 134.642C110.357 134.464 110.082 134.227 109.866 133.931C109.655 133.635 109.496 133.305 109.39 132.941C109.289 132.573 109.238 132.2 109.238 131.824C109.238 131.384 109.299 130.971 109.422 130.586C109.545 130.201 109.727 129.862 109.968 129.57C110.209 129.274 110.508 129.043 110.863 128.878C111.223 128.713 111.637 128.631 112.107 128.631C112.636 128.631 113.087 128.737 113.459 128.948C113.832 129.16 114.134 129.443 114.367 129.799C114.604 130.154 114.777 130.554 114.887 130.999C114.997 131.443 115.052 131.9 115.052 132.37V132.795C115.052 133.273 115.021 133.76 114.957 134.255C114.898 134.746 114.782 135.215 114.608 135.664C114.439 136.113 114.191 136.515 113.865 136.87C113.54 137.221 113.114 137.501 112.59 137.708C112.069 137.911 111.426 138.013 110.66 138.013H110.539V137.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M183.055 128.707V138H181.881V130.173L179.513 131.037V129.977L182.871 128.707H183.055ZM190.368 128.707V138H189.194V130.173L186.826 131.037V129.977L190.184 128.707H190.368Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M256.537 128.707V138H255.363V130.173L252.995 131.037V129.977L256.353 128.707H256.537ZM261.704 132.801H262.542C262.952 132.801 263.291 132.734 263.558 132.598C263.828 132.458 264.029 132.27 264.161 132.033C264.296 131.792 264.364 131.521 264.364 131.221C264.364 130.865 264.304 130.567 264.186 130.326C264.067 130.084 263.89 129.903 263.653 129.78C263.416 129.657 263.115 129.596 262.751 129.596C262.421 129.596 262.129 129.661 261.875 129.792C261.626 129.919 261.429 130.101 261.285 130.338C261.145 130.575 261.076 130.855 261.076 131.176H259.901C259.901 130.707 260.02 130.279 260.257 129.894C260.494 129.509 260.826 129.202 261.253 128.974C261.685 128.745 262.184 128.631 262.751 128.631C263.31 128.631 263.799 128.73 264.218 128.929C264.637 129.124 264.963 129.416 265.195 129.805C265.428 130.19 265.544 130.671 265.544 131.246C265.544 131.479 265.489 131.729 265.379 131.995C265.274 132.257 265.106 132.503 264.878 132.731C264.654 132.96 264.362 133.148 264.002 133.296C263.642 133.44 263.211 133.512 262.707 133.512H261.704V132.801ZM261.704 133.766V133.062H262.707C263.295 133.062 263.782 133.131 264.167 133.271C264.552 133.411 264.855 133.597 265.075 133.83C265.299 134.062 265.456 134.318 265.544 134.598C265.637 134.873 265.684 135.148 265.684 135.423C265.684 135.854 265.61 136.237 265.462 136.572C265.318 136.906 265.113 137.19 264.846 137.422C264.584 137.655 264.275 137.831 263.919 137.949C263.564 138.068 263.177 138.127 262.758 138.127C262.356 138.127 261.977 138.07 261.622 137.956C261.27 137.841 260.959 137.676 260.688 137.46C260.418 137.24 260.206 136.972 260.054 136.654C259.901 136.333 259.825 135.967 259.825 135.556H260.999C260.999 135.878 261.069 136.159 261.209 136.4C261.353 136.642 261.556 136.83 261.818 136.965C262.085 137.097 262.398 137.162 262.758 137.162C263.117 137.162 263.426 137.101 263.685 136.978C263.947 136.851 264.148 136.661 264.288 136.407C264.431 136.153 264.503 135.833 264.503 135.448C264.503 135.063 264.423 134.748 264.262 134.502C264.101 134.253 263.873 134.069 263.577 133.95C263.285 133.827 262.94 133.766 262.542 133.766H261.704Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M78.4575 135.499C78.4575 136.062 78.3263 136.54 78.0639 136.934C77.8058 137.323 77.4545 137.619 77.0102 137.822C76.5701 138.025 76.0729 138.127 75.5185 138.127C74.9641 138.127 74.4648 138.025 74.0205 137.822C73.5761 137.619 73.2249 137.323 72.9667 136.934C72.7086 136.54 72.5795 136.062 72.5795 135.499C72.5795 135.131 72.6494 134.794 72.789 134.49C72.9329 134.181 73.1339 133.912 73.392 133.684C73.6544 133.455 73.9633 133.279 74.3188 133.157C74.6785 133.03 75.0742 132.966 75.5058 132.966C76.0729 132.966 76.5786 133.076 77.0229 133.296C77.4672 133.512 77.8164 133.811 78.0703 134.191C78.3284 134.572 78.4575 135.008 78.4575 135.499ZM77.2768 135.474C77.2768 135.131 77.2027 134.828 77.0546 134.566C76.9065 134.299 76.6992 134.092 76.4326 133.944C76.166 133.796 75.857 133.722 75.5058 133.722C75.1461 133.722 74.8351 133.796 74.5727 133.944C74.3146 134.092 74.1136 134.299 73.9697 134.566C73.8258 134.828 73.7539 135.131 73.7539 135.474C73.7539 135.829 73.8237 136.134 73.9633 136.388C74.1072 136.637 74.3103 136.83 74.5727 136.965C74.8393 137.097 75.1546 137.162 75.5185 137.162C75.8824 137.162 76.1956 137.097 76.458 136.965C76.7203 136.83 76.9213 136.637 77.061 136.388C77.2049 136.134 77.2768 135.829 77.2768 135.474ZM78.2416 131.164C78.2416 131.612 78.1232 132.016 77.8862 132.376C77.6492 132.736 77.3255 133.019 76.915 133.227C76.5045 133.434 76.039 133.538 75.5185 133.538C74.9895 133.538 74.5177 133.434 74.103 133.227C73.6925 133.019 73.3709 132.736 73.1381 132.376C72.9054 132.016 72.789 131.612 72.789 131.164C72.789 130.626 72.9054 130.169 73.1381 129.792C73.3751 129.416 73.6988 129.128 74.1093 128.929C74.5198 128.73 74.9874 128.631 75.5122 128.631C76.0411 128.631 76.5109 128.73 76.9213 128.929C77.3318 129.128 77.6534 129.416 77.8862 129.792C78.1232 130.169 78.2416 130.626 78.2416 131.164ZM77.0673 131.183C77.0673 130.874 77.0017 130.601 76.8706 130.364C76.7394 130.127 76.5574 129.941 76.3247 129.805C76.0919 129.666 75.8211 129.596 75.5122 129.596C75.2032 129.596 74.9324 129.661 74.6997 129.792C74.4711 129.919 74.2913 130.101 74.1601 130.338C74.0331 130.575 73.9697 130.857 73.9697 131.183C73.9697 131.5 74.0331 131.777 74.1601 132.014C74.2913 132.251 74.4733 132.435 74.706 132.566C74.9387 132.698 75.2096 132.763 75.5185 132.763C75.8274 132.763 76.0961 132.698 76.3247 132.566C76.5574 132.435 76.7394 132.251 76.8706 132.014C77.0017 131.777 77.0673 131.5 77.0673 131.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M146.315 128.707V138H145.141V130.173L142.773 131.037V129.977L146.131 128.707H146.315ZM155.57 132.643V134.052C155.57 134.809 155.502 135.448 155.367 135.969C155.231 136.489 155.037 136.908 154.783 137.226C154.529 137.543 154.222 137.774 153.862 137.917C153.507 138.057 153.105 138.127 152.656 138.127C152.301 138.127 151.973 138.083 151.673 137.994C151.372 137.905 151.101 137.763 150.86 137.568C150.623 137.369 150.42 137.111 150.251 136.794C150.081 136.477 149.952 136.091 149.863 135.639C149.775 135.186 149.73 134.657 149.73 134.052V132.643C149.73 131.885 149.798 131.25 149.933 130.738C150.073 130.226 150.27 129.816 150.524 129.507C150.778 129.194 151.082 128.969 151.438 128.834C151.797 128.699 152.199 128.631 152.644 128.631C153.003 128.631 153.334 128.675 153.634 128.764C153.939 128.849 154.209 128.986 154.446 129.177C154.683 129.363 154.884 129.613 155.05 129.926C155.219 130.235 155.348 130.613 155.437 131.062C155.526 131.511 155.57 132.037 155.57 132.643ZM154.389 134.242V132.446C154.389 132.031 154.364 131.667 154.313 131.354C154.267 131.037 154.197 130.766 154.104 130.542C154.011 130.317 153.892 130.135 153.748 129.996C153.609 129.856 153.446 129.754 153.259 129.691C153.078 129.623 152.872 129.589 152.644 129.589C152.364 129.589 152.117 129.642 151.901 129.748C151.685 129.85 151.503 130.013 151.355 130.237C151.211 130.461 151.101 130.755 151.025 131.119C150.949 131.483 150.911 131.925 150.911 132.446V134.242C150.911 134.657 150.934 135.023 150.981 135.34C151.031 135.658 151.105 135.933 151.203 136.166C151.3 136.394 151.419 136.582 151.558 136.73C151.698 136.879 151.859 136.989 152.041 137.061C152.227 137.128 152.432 137.162 152.656 137.162C152.944 137.162 153.196 137.107 153.412 136.997C153.628 136.887 153.807 136.716 153.951 136.483C154.099 136.246 154.209 135.943 154.281 135.575C154.353 135.203 154.389 134.758 154.389 134.242Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M219.796 128.707V138H218.622V130.173L216.254 131.037V129.977L219.612 128.707H219.796ZM229.305 137.035V138H223.256V137.156L226.284 133.785C226.656 133.37 226.944 133.019 227.147 132.731C227.354 132.439 227.498 132.179 227.578 131.951C227.663 131.718 227.705 131.481 227.705 131.24C227.705 130.935 227.642 130.66 227.515 130.415C227.392 130.165 227.21 129.966 226.969 129.818C226.728 129.67 226.436 129.596 226.093 129.596C225.683 129.596 225.34 129.676 225.065 129.837C224.794 129.993 224.591 130.214 224.455 130.497C224.32 130.781 224.252 131.106 224.252 131.475H223.078C223.078 130.954 223.192 130.478 223.421 130.046C223.649 129.615 223.988 129.272 224.436 129.018C224.885 128.76 225.437 128.631 226.093 128.631C226.677 128.631 227.176 128.735 227.591 128.942C228.006 129.145 228.323 129.433 228.543 129.805C228.768 130.173 228.88 130.605 228.88 131.1C228.88 131.371 228.833 131.646 228.74 131.925C228.651 132.2 228.526 132.475 228.366 132.75C228.209 133.026 228.025 133.296 227.813 133.563C227.606 133.83 227.384 134.092 227.147 134.35L224.671 137.035H229.305Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1407"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1407"},(0,h.createElement)("rect",{width:"13",height:"13",fill:"white",transform:"translate(96 56)"})))),{ToolBarFields:kl,BlockLabel:jl,BlockName:xl,BlockDescription:Fl,BlockAdvancedValue:Bl,AdvancedFields:Al,FieldWrapper:Pl,FieldSettingsWrapper:Sl,AdvancedInspectorControl:Nl,ClientSideMacros:Il,ValidationToggleGroup:Tl,ValidationBlockMessage:Ol,AttributeHelp:Jl}=JetFBComponents,{useInsertMacro:Rl,useIsAdvancedValidation:ql,useUniqueNameOnDuplicate:Dl}=JetFBHooks,{__:zl}=wp.i18n,{InspectorControls:Ul,useBlockProps:Gl}=wp.blockEditor,{TextControl:Wl,ToggleControl:Kl,PanelBody:$l,__experimentalInputControl:Yl,ExternalLink:Xl}=wp.components;let{InputControl:Ql}=wp.components;void 0===Ql&&(Ql=Yl);const er=JSON.parse('{"apiVersion":3,"name":"jet-forms/date-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","date"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Date Field","icon":"\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":"string","default":"","jfb":{"macro":true,"dynamic":true}},"max":{"type":"string","default":""},"is_timestamp":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Cr}=wp.i18n,{createBlock:tr}=wp.blocks,{name:lr,icon:rr=""}=er,nr={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:rr}}),description:Cr("Insert the date manually with Date Field, utilizing a drop-down calendar to choose the date from there conveniently.","jet-form-builder"),edit:function(e){const C=Gl(),[t,l]=Rl("min"),[r,n]=Rl("max"),{attributes:a,isSelected:i,setAttributes:o,editProps:{uniqKey:s,blockName:c,attrHelp:d}}=e,m=ql();if(Dl(),a.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},_l);const u=(0,h.createElement)(h.Fragment,null,zl("Plain date should be in yyyy-mm-dd format.","jet-form-builder")," ",zl("Or you can use","jet-form-builder")," ",(0,h.createElement)(Xl,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},zl("macros","jet-form-builder"))," ",zl("and","jet-form-builder")," ",(0,h.createElement)(Xl,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},zl("filters","jet-form-builder")),".");return[(0,h.createElement)(kl,{key:s("JetForm-toolbar"),...e}),i&&(0,h.createElement)(Ul,{key:s("InspectorControls")},(0,h.createElement)($l,{title:zl("General","jet-form-builder")},(0,h.createElement)(jl,null),(0,h.createElement)(xl,null),(0,h.createElement)(Fl,null)),(0,h.createElement)($l,{title:zl("Value","jet-form-builder")},(0,h.createElement)(Bl,{help:u,style:{marginBottom:"1em"}}),(0,h.createElement)(Il,null,(0,h.createElement)(Nl,{value:a.min,label:zl("Starting from date","jet-form-builder"),onChangePreset:e=>o({min:e}),onChangeMacros:l},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Wl,{id:e,ref:t,className:"jet-fb m-unset",value:a.min,onChange:e=>o({min:e})}),(0,h.createElement)(Jl,null,u))),(0,h.createElement)(Nl,{value:a.max,label:zl("Limit dates to","jet-form-builder"),onChangePreset:e=>o({max:e}),onChangeMacros:n},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Wl,{id:e,ref:r,className:"jet-fb m-unset",value:a.max,onChange:e=>o({max:e})}),(0,h.createElement)(Jl,null,u))))),(0,h.createElement)(Sl,{...e},(0,h.createElement)(Kl,{key:"is_timestamp",label:zl("Is Timestamp","jet-form-builder"),checked:a.is_timestamp,help:d("is_timestamp"),onChange:e=>{o({is_timestamp:Boolean(e)})}})),(0,h.createElement)($l,{title:zl("Validation","jet-form-builder")},(0,h.createElement)(Tl,null),m&&(0,h.createElement)(h.Fragment,null,Boolean(a.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ol,{name:"date_min"})),Boolean(a.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ol,{name:"date_max"})),(0,h.createElement)(Ol,{name:"empty"}))),(0,h.createElement)(Al,null)),(0,h.createElement)("div",{...C,key:s("viewBlock")},(0,h.createElement)(Pl,{key:s("FieldWrapper"),...e},(0,h.createElement)(Wl,{onChange:()=>{},className:"jet-form-builder__field-preview",key:`place_holder_block_${c}`,placeholder:'Input type="date"'})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>tr("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/time-field","jet-forms/datetime-field"],transform:e=>tr(lr,{...e}),priority:0}]}},ar=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_75_1425)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M31.5698 29.1426V30.5518C31.5698 31.3092 31.5021 31.9482 31.3667 32.4688C31.2313 32.9893 31.0366 33.4082 30.7827 33.7256C30.5288 34.043 30.222 34.2736 29.8623 34.4175C29.5068 34.5571 29.1048 34.627 28.6562 34.627C28.3008 34.627 27.9728 34.5825 27.6724 34.4937C27.3719 34.4048 27.1011 34.263 26.8599 34.0684C26.6229 33.8695 26.4198 33.6113 26.2505 33.2939C26.0812 32.9766 25.9521 32.5915 25.8633 32.1387C25.7744 31.6859 25.73 31.1569 25.73 30.5518V29.1426C25.73 28.3851 25.7977 27.7503 25.9331 27.2383C26.0728 26.7262 26.2695 26.3158 26.5234 26.0068C26.7773 25.6937 27.082 25.4694 27.4375 25.334C27.7972 25.1986 28.1992 25.1309 28.6436 25.1309C29.0033 25.1309 29.3333 25.1753 29.6338 25.2642C29.9385 25.3488 30.2093 25.4863 30.4463 25.6768C30.6833 25.863 30.8843 26.1126 31.0493 26.4258C31.2186 26.7347 31.3477 27.1134 31.4365 27.562C31.5254 28.0106 31.5698 28.5374 31.5698 29.1426ZM30.3892 30.7422V28.9458C30.3892 28.5311 30.3638 28.1672 30.313 27.854C30.2664 27.5366 30.1966 27.2658 30.1035 27.0415C30.0104 26.8172 29.8919 26.6353 29.748 26.4956C29.6084 26.356 29.4455 26.2544 29.2593 26.1909C29.0773 26.1232 28.8721 26.0894 28.6436 26.0894C28.3643 26.0894 28.1167 26.1423 27.9009 26.248C27.6851 26.3496 27.5031 26.5125 27.355 26.7368C27.2111 26.9611 27.1011 27.2552 27.0249 27.6191C26.9487 27.9831 26.9106 28.4253 26.9106 28.9458V30.7422C26.9106 31.1569 26.9339 31.5229 26.9805 31.8403C27.0312 32.1577 27.1053 32.4328 27.2026 32.6655C27.3 32.894 27.4185 33.0824 27.5581 33.2305C27.6978 33.3786 27.8586 33.4886 28.0405 33.5605C28.2267 33.6283 28.432 33.6621 28.6562 33.6621C28.944 33.6621 29.1958 33.6071 29.4116 33.4971C29.6274 33.387 29.8073 33.2157 29.9512 32.9829C30.0993 32.7459 30.2093 32.4434 30.2812 32.0752C30.3532 31.7028 30.3892 31.2585 30.3892 30.7422ZM34.7944 29.3013H35.6323C36.0428 29.3013 36.3813 29.2336 36.6479 29.0981C36.9188 28.9585 37.1198 28.7702 37.251 28.5332C37.3864 28.292 37.4541 28.0212 37.4541 27.7207C37.4541 27.3652 37.3949 27.0669 37.2764 26.8257C37.1579 26.5845 36.9801 26.4025 36.7432 26.2798C36.5062 26.1571 36.2057 26.0957 35.8418 26.0957C35.5117 26.0957 35.2197 26.1613 34.9658 26.2925C34.7161 26.4194 34.5194 26.6014 34.3755 26.8384C34.2358 27.0754 34.166 27.3547 34.166 27.6763H32.9917C32.9917 27.2065 33.1102 26.7791 33.3472 26.394C33.5841 26.009 33.9163 25.7021 34.3438 25.4736C34.7754 25.2451 35.2747 25.1309 35.8418 25.1309C36.4004 25.1309 36.8892 25.2303 37.3081 25.4292C37.7271 25.6239 38.0529 25.9159 38.2856 26.3052C38.5184 26.6903 38.6348 27.1706 38.6348 27.7461C38.6348 27.9788 38.5798 28.2285 38.4697 28.4951C38.3639 28.7575 38.1968 29.0029 37.9683 29.2314C37.744 29.46 37.452 29.6483 37.0923 29.7964C36.7326 29.9403 36.3009 30.0122 35.7974 30.0122H34.7944V29.3013ZM34.7944 30.2661V29.5615H35.7974C36.3856 29.5615 36.8722 29.6313 37.2573 29.771C37.6424 29.9106 37.945 30.0968 38.165 30.3296C38.3893 30.5623 38.5459 30.8184 38.6348 31.0977C38.7279 31.3727 38.7744 31.6478 38.7744 31.9229C38.7744 32.3545 38.7004 32.7375 38.5522 33.0718C38.4084 33.4061 38.2031 33.6896 37.9365 33.9224C37.6742 34.1551 37.3652 34.3307 37.0098 34.4492C36.6543 34.5677 36.2671 34.627 35.8481 34.627C35.4461 34.627 35.0674 34.5698 34.7119 34.4556C34.3607 34.3413 34.0496 34.1763 33.7788 33.9604C33.508 33.7404 33.2964 33.4717 33.144 33.1543C32.9917 32.8327 32.9155 32.4666 32.9155 32.0562H34.0898C34.0898 32.3778 34.1597 32.6592 34.2993 32.9004C34.4432 33.1416 34.6463 33.3299 34.9087 33.4653C35.1753 33.5965 35.4884 33.6621 35.8481 33.6621C36.2078 33.6621 36.5168 33.6007 36.7749 33.478C37.0373 33.3511 37.2383 33.1606 37.3779 32.9067C37.5218 32.6528 37.5938 32.3333 37.5938 31.9482C37.5938 31.5632 37.5133 31.2479 37.3525 31.0024C37.1917 30.7528 36.9632 30.5687 36.667 30.4502C36.375 30.3275 36.0301 30.2661 35.6323 30.2661H34.7944Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M46.9829 25.2578L43.1299 35.2935H42.1206L45.98 25.2578H46.9829Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"50",y:"20.5",width:"19",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M57.2241 33.167V24.75H58.4048V34.5H57.3257L57.2241 33.167ZM52.603 31.1421V31.0088C52.603 30.484 52.6665 30.008 52.7935 29.5806C52.9246 29.1489 53.1087 28.7786 53.3457 28.4697C53.5869 28.1608 53.8726 27.9238 54.2026 27.7588C54.5369 27.5895 54.9093 27.5049 55.3198 27.5049C55.7515 27.5049 56.1281 27.5811 56.4497 27.7334C56.7756 27.8815 57.0506 28.0994 57.2749 28.3872C57.5034 28.6707 57.6833 29.0135 57.8145 29.4155C57.9456 29.8175 58.0366 30.2725 58.0874 30.7803V31.3643C58.0409 31.8678 57.9499 32.3206 57.8145 32.7227C57.6833 33.1247 57.5034 33.4674 57.2749 33.751C57.0506 34.0345 56.7756 34.2524 56.4497 34.4048C56.1239 34.5529 55.743 34.627 55.3071 34.627C54.9051 34.627 54.5369 34.5402 54.2026 34.3667C53.8726 34.1932 53.5869 33.9499 53.3457 33.6367C53.1087 33.3236 52.9246 32.9554 52.7935 32.5322C52.6665 32.1048 52.603 31.6414 52.603 31.1421ZM53.7837 31.0088V31.1421C53.7837 31.4849 53.8175 31.8065 53.8853 32.1069C53.9572 32.4074 54.0672 32.6719 54.2153 32.9004C54.3634 33.1289 54.5518 33.3088 54.7803 33.4399C55.0088 33.5669 55.2817 33.6304 55.5991 33.6304C55.9884 33.6304 56.3079 33.5479 56.5576 33.3828C56.8115 33.2178 57.0146 32.9998 57.167 32.729C57.3193 32.4582 57.4378 32.1641 57.5225 31.8467V30.3169C57.4717 30.0841 57.3976 29.8599 57.3003 29.644C57.2072 29.424 57.0845 29.2293 56.9321 29.0601C56.784 28.8866 56.5999 28.749 56.3799 28.6475C56.1641 28.5459 55.908 28.4951 55.6118 28.4951C55.2902 28.4951 55.013 28.5628 54.7803 28.6982C54.5518 28.8294 54.3634 29.0114 54.2153 29.2441C54.0672 29.4727 53.9572 29.7393 53.8853 30.0439C53.8175 30.3444 53.7837 30.666 53.7837 31.0088ZM64.562 33.167V24.75H65.7427V34.5H64.6636L64.562 33.167ZM59.9409 31.1421V31.0088C59.9409 30.484 60.0044 30.008 60.1313 29.5806C60.2625 29.1489 60.4466 28.7786 60.6836 28.4697C60.9248 28.1608 61.2104 27.9238 61.5405 27.7588C61.8748 27.5895 62.2472 27.5049 62.6577 27.5049C63.0894 27.5049 63.466 27.5811 63.7876 27.7334C64.1134 27.8815 64.3885 28.0994 64.6128 28.3872C64.8413 28.6707 65.0212 29.0135 65.1523 29.4155C65.2835 29.8175 65.3745 30.2725 65.4253 30.7803V31.3643C65.3787 31.8678 65.2878 32.3206 65.1523 32.7227C65.0212 33.1247 64.8413 33.4674 64.6128 33.751C64.3885 34.0345 64.1134 34.2524 63.7876 34.4048C63.4618 34.5529 63.0809 34.627 62.645 34.627C62.243 34.627 61.8748 34.5402 61.5405 34.3667C61.2104 34.1932 60.9248 33.9499 60.6836 33.6367C60.4466 33.3236 60.2625 32.9554 60.1313 32.5322C60.0044 32.1048 59.9409 31.6414 59.9409 31.1421ZM61.1216 31.0088V31.1421C61.1216 31.4849 61.1554 31.8065 61.2231 32.1069C61.2951 32.4074 61.4051 32.6719 61.5532 32.9004C61.7013 33.1289 61.8896 33.3088 62.1182 33.4399C62.3467 33.5669 62.6196 33.6304 62.937 33.6304C63.3263 33.6304 63.6458 33.5479 63.8955 33.3828C64.1494 33.2178 64.3525 32.9998 64.5049 32.729C64.6572 32.4582 64.7757 32.1641 64.8604 31.8467V30.3169C64.8096 30.0841 64.7355 29.8599 64.6382 29.644C64.5451 29.424 64.4224 29.2293 64.27 29.0601C64.1219 28.8866 63.9378 28.749 63.7178 28.6475C63.502 28.5459 63.2459 28.4951 62.9497 28.4951C62.6281 28.4951 62.3509 28.5628 62.1182 28.6982C61.8896 28.8294 61.7013 29.0114 61.5532 29.2441C61.4051 29.4727 61.2951 29.7393 61.2231 30.0439C61.1554 30.3444 61.1216 30.666 61.1216 31.0088Z",fill:"white"}),(0,h.createElement)("path",{d:"M75.9829 25.2578L72.1299 35.2935H71.1206L74.98 25.2578H75.9829Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M81.8247 33.7891L83.7354 27.6318H84.9922L82.2373 35.5601C82.1738 35.7293 82.0892 35.9113 81.9834 36.106C81.8818 36.3049 81.7507 36.4932 81.5898 36.6709C81.429 36.8486 81.2344 36.9925 81.0059 37.1025C80.7816 37.2168 80.5129 37.2739 80.1997 37.2739C80.1066 37.2739 79.9881 37.2612 79.8442 37.2358C79.7004 37.2104 79.5988 37.1893 79.5396 37.1724L79.5332 36.2202C79.5671 36.2244 79.62 36.2287 79.6919 36.2329C79.7681 36.2414 79.821 36.2456 79.8506 36.2456C80.1172 36.2456 80.3436 36.2096 80.5298 36.1377C80.716 36.07 80.8726 35.9536 80.9995 35.7886C81.1307 35.6278 81.2428 35.4056 81.3359 35.1221L81.8247 33.7891ZM80.4219 27.6318L82.2056 32.9639L82.5103 34.2017L81.666 34.6333L79.1396 27.6318H80.4219ZM87.9819 33.7891L89.8926 27.6318H91.1494L88.3945 35.5601C88.3311 35.7293 88.2464 35.9113 88.1406 36.106C88.0391 36.3049 87.9079 36.4932 87.7471 36.6709C87.5863 36.8486 87.3916 36.9925 87.1631 37.1025C86.9388 37.2168 86.6701 37.2739 86.3569 37.2739C86.2638 37.2739 86.1453 37.2612 86.0015 37.2358C85.8576 37.2104 85.756 37.1893 85.6968 37.1724L85.6904 36.2202C85.7243 36.2244 85.7772 36.2287 85.8491 36.2329C85.9253 36.2414 85.9782 36.2456 86.0078 36.2456C86.2744 36.2456 86.5008 36.2096 86.687 36.1377C86.8732 36.07 87.0298 35.9536 87.1567 35.7886C87.2879 35.6278 87.4001 35.4056 87.4932 35.1221L87.9819 33.7891ZM86.5791 27.6318L88.3628 32.9639L88.6675 34.2017L87.8232 34.6333L85.2969 27.6318H86.5791ZM94.1392 33.7891L96.0498 27.6318H97.3066L94.5518 35.5601C94.4883 35.7293 94.4036 35.9113 94.2979 36.106C94.1963 36.3049 94.0651 36.4932 93.9043 36.6709C93.7435 36.8486 93.5488 36.9925 93.3203 37.1025C93.096 37.2168 92.8273 37.2739 92.5142 37.2739C92.4211 37.2739 92.3026 37.2612 92.1587 37.2358C92.0148 37.2104 91.9132 37.1893 91.854 37.1724L91.8477 36.2202C91.8815 36.2244 91.9344 36.2287 92.0063 36.2329C92.0825 36.2414 92.1354 36.2456 92.165 36.2456C92.4316 36.2456 92.658 36.2096 92.8442 36.1377C93.0304 36.07 93.187 35.9536 93.314 35.7886C93.4451 35.6278 93.5573 35.4056 93.6504 35.1221L94.1392 33.7891ZM92.7363 27.6318L94.52 32.9639L94.8247 34.2017L93.9805 34.6333L91.4541 27.6318H92.7363ZM100.296 33.7891L102.207 27.6318H103.464L100.709 35.5601C100.646 35.7293 100.561 35.9113 100.455 36.106C100.354 36.3049 100.222 36.4932 100.062 36.6709C99.9007 36.8486 99.7061 36.9925 99.4775 37.1025C99.2533 37.2168 98.9845 37.2739 98.6714 37.2739C98.5783 37.2739 98.4598 37.2612 98.3159 37.2358C98.172 37.2104 98.0705 37.1893 98.0112 37.1724L98.0049 36.2202C98.0387 36.2244 98.0916 36.2287 98.1636 36.2329C98.2397 36.2414 98.2926 36.2456 98.3223 36.2456C98.5889 36.2456 98.8153 36.2096 99.0015 36.1377C99.1877 36.07 99.3442 35.9536 99.4712 35.7886C99.6024 35.6278 99.7145 35.4056 99.8076 35.1221L100.296 33.7891ZM98.8936 27.6318L100.677 32.9639L100.982 34.2017L100.138 34.6333L97.6113 27.6318H98.8936Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270 24V38C270 39.1 269.1 40 268 40H254C252.89 40 252 39.1 252 38L252.01 24C252.01 22.9 252.89 22 254 22H255V20H257V22H265V20H267V22H268C269.1 22 270 22.9 270 24ZM254 26H268V24H254V26ZM268 38V28H254V38H268Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"15",y:"45",width:"268",height:"189",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M26.6948 60.7578H28.3071L30.6812 67.5435L33.0552 60.7578H34.6675L31.3286 70H30.0337L26.6948 60.7578ZM25.8252 60.7578H27.4312L27.7231 67.3721V70H25.8252V60.7578ZM33.9312 60.7578H35.5435V70H33.6392V67.3721L33.9312 60.7578ZM40.8057 68.4512V65.3916C40.8057 65.1715 40.7697 64.9832 40.6978 64.8267C40.6258 64.6659 40.5137 64.541 40.3613 64.4521C40.2132 64.3633 40.0207 64.3188 39.7837 64.3188C39.5806 64.3188 39.4049 64.3548 39.2568 64.4268C39.1087 64.4945 38.9945 64.5939 38.9141 64.7251C38.8337 64.8521 38.7935 65.0023 38.7935 65.1758H36.9653C36.9653 64.8838 37.033 64.6066 37.1685 64.3442C37.3039 64.0819 37.5007 63.8512 37.7588 63.6523C38.0169 63.4492 38.3237 63.2905 38.6792 63.1763C39.0389 63.062 39.4409 63.0049 39.8853 63.0049C40.4185 63.0049 40.8924 63.0938 41.3071 63.2715C41.7218 63.4492 42.0477 63.7158 42.2847 64.0713C42.5259 64.4268 42.6465 64.8711 42.6465 65.4043V68.3433C42.6465 68.7199 42.6698 69.0288 42.7163 69.27C42.7629 69.507 42.8306 69.7144 42.9194 69.8921V70H41.0723C40.9834 69.8138 40.9157 69.5811 40.8691 69.3018C40.8268 69.0182 40.8057 68.7347 40.8057 68.4512ZM41.0469 65.8169L41.0596 66.8516H40.0376C39.7964 66.8516 39.5869 66.8791 39.4092 66.9341C39.2314 66.9891 39.0854 67.0674 38.9712 67.1689C38.8569 67.2663 38.7723 67.3805 38.7173 67.5117C38.6665 67.6429 38.6411 67.7868 38.6411 67.9434C38.6411 68.0999 38.6771 68.2417 38.749 68.3687C38.821 68.4914 38.9246 68.5887 39.0601 68.6606C39.1955 68.7284 39.3542 68.7622 39.5361 68.7622C39.8112 68.7622 40.0503 68.7072 40.2534 68.5972C40.4565 68.4871 40.6131 68.3517 40.7231 68.1909C40.8374 68.0301 40.8966 67.8778 40.9009 67.7339L41.3833 68.5083C41.3156 68.6818 41.2225 68.8617 41.104 69.0479C40.9897 69.234 40.8438 69.4097 40.666 69.5747C40.4883 69.7355 40.2746 69.8688 40.0249 69.9746C39.7752 70.0762 39.479 70.127 39.1362 70.127C38.7004 70.127 38.3047 70.0402 37.9492 69.8667C37.598 69.689 37.3187 69.4456 37.1113 69.1367C36.9082 68.8236 36.8066 68.4681 36.8066 68.0703C36.8066 67.7106 36.8743 67.3911 37.0098 67.1118C37.1452 66.8325 37.3441 66.5977 37.6064 66.4072C37.873 66.2126 38.2052 66.0666 38.603 65.9692C39.0008 65.8677 39.4621 65.8169 39.9868 65.8169H41.0469ZM45.8838 64.6299V70H44.0557V63.1318H45.7759L45.8838 64.6299ZM47.9531 63.0874L47.9214 64.7822C47.8325 64.7695 47.7246 64.759 47.5977 64.7505C47.4749 64.7378 47.3628 64.7314 47.2612 64.7314C47.0031 64.7314 46.7788 64.7653 46.5884 64.833C46.4022 64.8965 46.2456 64.9917 46.1187 65.1187C45.9959 65.2456 45.9028 65.4001 45.8394 65.582C45.7801 65.764 45.7463 65.9714 45.7378 66.2041L45.3696 66.0898C45.3696 65.6455 45.4141 65.2371 45.5029 64.8647C45.5918 64.4881 45.7209 64.1602 45.8901 63.8809C46.0636 63.6016 46.2752 63.3857 46.5249 63.2334C46.7746 63.0811 47.0602 63.0049 47.3818 63.0049C47.4834 63.0049 47.5871 63.0133 47.6929 63.0303C47.7987 63.043 47.8854 63.062 47.9531 63.0874ZM51.5269 68.6987C51.7511 68.6987 51.95 68.6564 52.1235 68.5718C52.297 68.4829 52.4325 68.3602 52.5298 68.2036C52.6313 68.0428 52.6842 67.8545 52.6885 67.6387H54.4087C54.4045 68.1211 54.2754 68.5506 54.0215 68.9272C53.7676 69.2996 53.4269 69.5938 52.9995 69.8096C52.5721 70.0212 52.0939 70.127 51.5649 70.127C51.0317 70.127 50.5662 70.0381 50.1685 69.8604C49.7749 69.6826 49.4469 69.4372 49.1846 69.124C48.9222 68.8066 48.7254 68.4385 48.5942 68.0195C48.4631 67.5964 48.3975 67.1436 48.3975 66.6611V66.4771C48.3975 65.9904 48.4631 65.5376 48.5942 65.1187C48.7254 64.6955 48.9222 64.3273 49.1846 64.0142C49.4469 63.6968 49.7749 63.4492 50.1685 63.2715C50.562 63.0938 51.0233 63.0049 51.5522 63.0049C52.1151 63.0049 52.6081 63.1128 53.0312 63.3286C53.4587 63.5444 53.793 63.8534 54.0342 64.2554C54.2796 64.6532 54.4045 65.125 54.4087 65.6709H52.6885C52.6842 65.4424 52.6356 65.235 52.5425 65.0488C52.4536 64.8626 52.3224 64.7145 52.1489 64.6045C51.9797 64.4902 51.7702 64.4331 51.5205 64.4331C51.2539 64.4331 51.036 64.4902 50.8667 64.6045C50.6974 64.7145 50.5662 64.8669 50.4731 65.0615C50.38 65.252 50.3145 65.4699 50.2764 65.7153C50.2425 65.9565 50.2256 66.2104 50.2256 66.4771V66.6611C50.2256 66.9277 50.2425 67.1838 50.2764 67.4292C50.3102 67.6746 50.3737 67.8926 50.4668 68.083C50.5641 68.2734 50.6974 68.4237 50.8667 68.5337C51.036 68.6437 51.256 68.6987 51.5269 68.6987ZM57.2524 60.25V70H55.4243V60.25H57.2524ZM56.9922 66.3247H56.4907C56.495 65.8465 56.5584 65.4064 56.6812 65.0044C56.8039 64.5981 56.9795 64.2469 57.208 63.9507C57.4365 63.6502 57.7095 63.4175 58.0269 63.2524C58.3485 63.0874 58.7039 63.0049 59.0933 63.0049C59.4318 63.0049 59.7386 63.0535 60.0137 63.1509C60.293 63.244 60.5321 63.3963 60.731 63.6079C60.9341 63.8153 61.0907 64.0882 61.2007 64.4268C61.3107 64.7653 61.3657 65.1758 61.3657 65.6582V70H59.5249V65.6455C59.5249 65.3408 59.4805 65.1017 59.3916 64.9282C59.307 64.7505 59.1821 64.6257 59.0171 64.5537C58.8563 64.4775 58.6574 64.4395 58.4204 64.4395C58.158 64.4395 57.9338 64.4881 57.7476 64.5854C57.5656 64.6828 57.4196 64.8182 57.3096 64.9917C57.1995 65.161 57.1191 65.3599 57.0684 65.5884C57.0176 65.8169 56.9922 66.0623 56.9922 66.3247ZM72.2393 68.5718V70H65.917V68.7812L68.9067 65.5757C69.2072 65.2414 69.4442 64.9473 69.6177 64.6934C69.7912 64.4352 69.916 64.2046 69.9922 64.0015C70.0726 63.7941 70.1128 63.5973 70.1128 63.4111C70.1128 63.1318 70.0662 62.8927 69.9731 62.6938C69.88 62.4907 69.7425 62.3341 69.5605 62.2241C69.3828 62.1141 69.1628 62.0591 68.9004 62.0591C68.6211 62.0591 68.3799 62.1268 68.1768 62.2622C67.9779 62.3976 67.8255 62.5859 67.7197 62.8271C67.6182 63.0684 67.5674 63.3413 67.5674 63.646H65.7329C65.7329 63.0959 65.8641 62.5923 66.1265 62.1353C66.3888 61.674 66.7591 61.3079 67.2373 61.0371C67.7155 60.762 68.2826 60.6245 68.9385 60.6245C69.5859 60.6245 70.1318 60.7303 70.5762 60.9419C71.0247 61.1493 71.3633 61.4497 71.5918 61.8433C71.8245 62.2326 71.9409 62.6981 71.9409 63.2397C71.9409 63.5444 71.8923 63.8428 71.7949 64.1348C71.6976 64.4225 71.5579 64.7103 71.376 64.998C71.1982 65.2816 70.9824 65.5693 70.7285 65.8613C70.4746 66.1533 70.1932 66.4559 69.8843 66.769L68.2783 68.5718H72.2393ZM79.6025 64.5664V66.166C79.6025 66.86 79.5285 67.4588 79.3804 67.9624C79.2323 68.4618 79.0186 68.8722 78.7393 69.1938C78.4642 69.5112 78.1362 69.7461 77.7554 69.8984C77.3745 70.0508 76.9513 70.127 76.4858 70.127C76.1134 70.127 75.7664 70.0804 75.4448 69.9873C75.1232 69.89 74.8333 69.7397 74.5752 69.5366C74.3213 69.3335 74.1012 69.0775 73.915 68.7686C73.7331 68.4554 73.5934 68.083 73.4961 67.6514C73.3988 67.2197 73.3501 66.7246 73.3501 66.166V64.5664C73.3501 63.8724 73.4242 63.2778 73.5723 62.7827C73.7246 62.2834 73.9383 61.875 74.2134 61.5576C74.4927 61.2402 74.8228 61.0075 75.2036 60.8594C75.5845 60.707 76.0076 60.6309 76.4731 60.6309C76.8455 60.6309 77.1904 60.6795 77.5078 60.7769C77.8294 60.87 78.1193 61.016 78.3774 61.2148C78.6356 61.4137 78.8556 61.6698 79.0376 61.9829C79.2196 62.2918 79.3592 62.6621 79.4565 63.0938C79.5539 63.5212 79.6025 64.012 79.6025 64.5664ZM77.7681 66.4072V64.3188C77.7681 63.9845 77.749 63.6925 77.7109 63.4429C77.6771 63.1932 77.6242 62.9816 77.5522 62.8081C77.4803 62.6304 77.3914 62.4865 77.2856 62.3765C77.1799 62.2664 77.0592 62.186 76.9238 62.1353C76.7884 62.0845 76.6382 62.0591 76.4731 62.0591C76.2658 62.0591 76.0817 62.0993 75.9209 62.1797C75.7643 62.2601 75.631 62.3892 75.521 62.5669C75.411 62.7404 75.3263 62.9731 75.2671 63.2651C75.2121 63.5529 75.1846 63.9041 75.1846 64.3188V66.4072C75.1846 66.7415 75.2015 67.0356 75.2354 67.2896C75.2734 67.5435 75.3285 67.7614 75.4004 67.9434C75.4766 68.1211 75.5654 68.2671 75.667 68.3813C75.7728 68.4914 75.8934 68.5718 76.0288 68.6226C76.1685 68.6733 76.3208 68.6987 76.4858 68.6987C76.689 68.6987 76.8688 68.6585 77.0254 68.5781C77.1862 68.4935 77.3216 68.3623 77.4316 68.1846C77.5459 68.0026 77.6305 67.7656 77.6855 67.4736C77.7406 67.1816 77.7681 66.8262 77.7681 66.4072ZM87.1689 68.5718V70H80.8467V68.7812L83.8364 65.5757C84.1369 65.2414 84.3739 64.9473 84.5474 64.6934C84.7209 64.4352 84.8457 64.2046 84.9219 64.0015C85.0023 63.7941 85.0425 63.5973 85.0425 63.4111C85.0425 63.1318 84.9959 62.8927 84.9028 62.6938C84.8097 62.4907 84.6722 62.3341 84.4902 62.2241C84.3125 62.1141 84.0924 62.0591 83.8301 62.0591C83.5508 62.0591 83.3096 62.1268 83.1064 62.2622C82.9076 62.3976 82.7552 62.5859 82.6494 62.8271C82.5479 63.0684 82.4971 63.3413 82.4971 63.646H80.6626C80.6626 63.0959 80.7938 62.5923 81.0562 62.1353C81.3185 61.674 81.6888 61.3079 82.167 61.0371C82.6452 60.762 83.2122 60.6245 83.8682 60.6245C84.5156 60.6245 85.0615 60.7303 85.5059 60.9419C85.9544 61.1493 86.293 61.4497 86.5215 61.8433C86.7542 62.2326 86.8706 62.6981 86.8706 63.2397C86.8706 63.5444 86.8219 63.8428 86.7246 64.1348C86.6273 64.4225 86.4876 64.7103 86.3057 64.998C86.1279 65.2816 85.9121 65.5693 85.6582 65.8613C85.4043 66.1533 85.1229 66.4559 84.814 66.769L83.208 68.5718H87.1689ZM92.7676 60.7388V70H90.9395V62.8462L88.7432 63.5444V62.1035L92.5708 60.7388H92.7676Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1425)"},(0,h.createElement)("path",{d:"M99.7917 64.4167L102.5 67.1251L105.208 64.4167H99.7917Z",fill:"#64748B"})),(0,h.createElement)("path",{d:"M184.167 65.4999L184.93 66.2637L187.958 63.2412L187.958 69.8333L189.042 69.8333L189.042 63.2412L192.07 66.2637L192.833 65.4999L188.5 61.1666L184.167 65.4999Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M205.833 65.5001L205.07 64.7363L202.042 67.7588L202.042 61.1667L200.958 61.1667L200.958 67.7588L197.93 64.7363L197.167 65.5001L201.5 69.8334L205.833 65.5001Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M33.7192 89.6641C33.7192 89.4482 33.6853 89.2578 33.6176 89.0928C33.5541 88.9235 33.4399 88.7712 33.2748 88.6357C33.114 88.5003 32.8898 88.3713 32.602 88.2485C32.3185 88.1258 31.9588 88.001 31.5229 87.874C31.0659 87.7386 30.6533 87.5884 30.2851 87.4233C29.9169 87.2541 29.6017 87.0615 29.3393 86.8457C29.0769 86.6299 28.8759 86.3823 28.7363 86.103C28.5966 85.8237 28.5268 85.5042 28.5268 85.1445C28.5268 84.7848 28.6009 84.4526 28.749 84.1479C28.8971 83.8433 29.1087 83.5788 29.3837 83.3545C29.663 83.126 29.9952 82.9482 30.3803 82.8213C30.7654 82.6943 31.1949 82.6309 31.6689 82.6309C32.3629 82.6309 32.9511 82.7642 33.4335 83.0308C33.9202 83.2931 34.2905 83.638 34.5444 84.0654C34.7983 84.4886 34.9252 84.9414 34.9252 85.4238H33.7065C33.7065 85.0768 33.6324 84.77 33.4843 84.5034C33.3362 84.2326 33.1119 84.021 32.8115 83.8687C32.511 83.7121 32.1302 83.6338 31.6689 83.6338C31.233 83.6338 30.8733 83.6994 30.5898 83.8306C30.3063 83.9618 30.0947 84.1395 29.955 84.3638C29.8196 84.5881 29.7519 84.8441 29.7519 85.1318C29.7519 85.3265 29.7921 85.5042 29.8725 85.665C29.9571 85.8216 30.0862 85.9676 30.2597 86.103C30.4374 86.2384 30.6617 86.3633 30.9326 86.4775C31.2076 86.5918 31.5356 86.7018 31.9164 86.8076C32.4412 86.9557 32.894 87.1208 33.2748 87.3027C33.6557 87.4847 33.9689 87.6899 34.2143 87.9185C34.464 88.1427 34.6481 88.3988 34.7665 88.6865C34.8893 88.9701 34.9506 89.2917 34.9506 89.6514C34.9506 90.028 34.8745 90.3687 34.7221 90.6733C34.5698 90.978 34.3518 91.2383 34.0683 91.4541C33.7848 91.6699 33.4441 91.8371 33.0463 91.9556C32.6528 92.0698 32.2127 92.127 31.726 92.127C31.2986 92.127 30.8775 92.0677 30.4628 91.9492C30.0524 91.8307 29.6778 91.653 29.3393 91.416C29.005 91.179 28.7363 90.887 28.5331 90.54C28.3343 90.1888 28.2348 89.7826 28.2348 89.3213H29.4536C29.4536 89.6387 29.5149 89.9116 29.6376 90.1401C29.7604 90.3644 29.9275 90.5506 30.1391 90.6987C30.3549 90.8468 30.5983 90.9569 30.8691 91.0288C31.1442 91.0965 31.4298 91.1304 31.726 91.1304C32.1534 91.1304 32.5152 91.0711 32.8115 90.9526C33.1077 90.8341 33.332 90.6649 33.4843 90.4448C33.6409 90.2248 33.7192 89.9645 33.7192 89.6641ZM40.5366 90.4131V85.1318H41.7172V92H40.5937L40.5366 90.4131ZM40.7587 88.9658L41.2475 88.9531C41.2475 89.4102 41.1988 89.8333 41.1015 90.2227C41.0084 90.6077 40.8561 90.9421 40.6445 91.2256C40.4329 91.5091 40.1557 91.7313 39.8129 91.8921C39.4702 92.0487 39.0533 92.127 38.5624 92.127C38.2281 92.127 37.9213 92.0783 37.642 91.981C37.367 91.8836 37.13 91.7334 36.9311 91.5303C36.7322 91.3271 36.5777 91.0627 36.4677 90.7368C36.3619 90.411 36.309 90.0195 36.309 89.5625V85.1318H37.4833V89.5752C37.4833 89.8841 37.5172 90.1401 37.5849 90.3433C37.6568 90.5422 37.7521 90.7008 37.8706 90.8193C37.9933 90.9336 38.1287 91.014 38.2768 91.0605C38.4291 91.1071 38.5857 91.1304 38.7465 91.1304C39.2459 91.1304 39.6415 91.0352 39.9335 90.8447C40.2255 90.6501 40.435 90.3898 40.562 90.064C40.6931 89.7339 40.7587 89.3678 40.7587 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M86.7169 82.7578V92H85.5108V82.7578H86.7169ZM89.6876 82.7578V83.7607H82.5465V82.7578H89.6876ZM94.4737 90.4131V85.1318H95.6544V92H94.5308L94.4737 90.4131ZM94.6959 88.9658L95.1846 88.9531C95.1846 89.4102 95.136 89.8333 95.0386 90.2227C94.9455 90.6077 94.7932 90.9421 94.5816 91.2256C94.37 91.5091 94.0928 91.7313 93.7501 91.8921C93.4073 92.0487 92.9905 92.127 92.4996 92.127C92.1653 92.127 91.8585 92.0783 91.5792 91.981C91.3041 91.8836 91.0671 91.7334 90.8682 91.5303C90.6693 91.3271 90.5149 91.0627 90.4049 90.7368C90.2991 90.411 90.2462 90.0195 90.2462 89.5625V85.1318H91.4205V89.5752C91.4205 89.8841 91.4543 90.1401 91.522 90.3433C91.594 90.5422 91.6892 90.7008 91.8077 90.8193C91.9304 90.9336 92.0658 91.014 92.2139 91.0605C92.3663 91.1071 92.5229 91.1304 92.6837 91.1304C93.183 91.1304 93.5787 91.0352 93.8707 90.8447C94.1627 90.6501 94.3721 90.3898 94.4991 90.064C94.6303 89.7339 94.6959 89.3678 94.6959 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M140.637 82.7578V92H139.431V82.7578H140.637ZM143.608 82.7578V83.7607H136.467V82.7578H143.608ZM145.976 82.25V92H144.801V82.25H145.976ZM145.696 88.3057L145.208 88.2866C145.212 87.8169 145.282 87.3831 145.417 86.9854C145.553 86.5833 145.743 86.2342 145.988 85.938C146.234 85.6418 146.526 85.4132 146.864 85.2524C147.207 85.0874 147.586 85.0049 148.001 85.0049C148.339 85.0049 148.644 85.0514 148.915 85.1445C149.186 85.2334 149.416 85.3773 149.607 85.5762C149.801 85.7751 149.949 86.0332 150.051 86.3506C150.153 86.6637 150.203 87.0467 150.203 87.4995V92H149.023V87.4868C149.023 87.1271 148.97 86.8394 148.864 86.6235C148.758 86.4035 148.604 86.2448 148.401 86.1475C148.197 86.0459 147.948 85.9951 147.652 85.9951C147.36 85.9951 147.093 86.0565 146.852 86.1792C146.615 86.3019 146.41 86.4712 146.236 86.687C146.067 86.9028 145.933 87.1504 145.836 87.4297C145.743 87.7048 145.696 87.9967 145.696 88.3057Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M196.437 89.6641C196.437 89.4482 196.403 89.2578 196.335 89.0928C196.272 88.9235 196.158 88.7712 195.992 88.6357C195.832 88.5003 195.607 88.3713 195.32 88.2485C195.036 88.1258 194.676 88.001 194.241 87.874C193.784 87.7386 193.371 87.5884 193.003 87.4233C192.635 87.2541 192.319 87.0615 192.057 86.8457C191.795 86.6299 191.594 86.3823 191.454 86.103C191.314 85.8237 191.244 85.5042 191.244 85.1445C191.244 84.7848 191.319 84.4526 191.467 84.1479C191.615 83.8433 191.826 83.5788 192.101 83.3545C192.381 83.126 192.713 82.9482 193.098 82.8213C193.483 82.6943 193.913 82.6309 194.387 82.6309C195.081 82.6309 195.669 82.7642 196.151 83.0308C196.638 83.2931 197.008 83.638 197.262 84.0654C197.516 84.4886 197.643 84.9414 197.643 85.4238H196.424C196.424 85.0768 196.35 84.77 196.202 84.5034C196.054 84.2326 195.83 84.021 195.529 83.8687C195.229 83.7121 194.848 83.6338 194.387 83.6338C193.951 83.6338 193.591 83.6994 193.307 83.8306C193.024 83.9618 192.812 84.1395 192.673 84.3638C192.537 84.5881 192.47 84.8441 192.47 85.1318C192.47 85.3265 192.51 85.5042 192.59 85.665C192.675 85.8216 192.804 85.9676 192.977 86.103C193.155 86.2384 193.379 86.3633 193.65 86.4775C193.925 86.5918 194.253 86.7018 194.634 86.8076C195.159 86.9557 195.612 87.1208 195.992 87.3027C196.373 87.4847 196.687 87.6899 196.932 87.9185C197.182 88.1427 197.366 88.3988 197.484 88.6865C197.607 88.9701 197.668 89.2917 197.668 89.6514C197.668 90.028 197.592 90.3687 197.44 90.6733C197.287 90.978 197.069 91.2383 196.786 91.4541C196.502 91.6699 196.162 91.8371 195.764 91.9556C195.37 92.0698 194.93 92.127 194.444 92.127C194.016 92.127 193.595 92.0677 193.18 91.9492C192.77 91.8307 192.395 91.653 192.057 91.416C191.723 91.179 191.454 90.887 191.251 90.54C191.052 90.1888 190.952 89.7826 190.952 89.3213H192.171C192.171 89.6387 192.233 89.9116 192.355 90.1401C192.478 90.3644 192.645 90.5506 192.857 90.6987C193.073 90.8468 193.316 90.9569 193.587 91.0288C193.862 91.0965 194.147 91.1304 194.444 91.1304C194.871 91.1304 195.233 91.0711 195.529 90.9526C195.825 90.8341 196.05 90.6649 196.202 90.4448C196.359 90.2248 196.437 89.9645 196.437 89.6641ZM203.102 90.8257V87.29C203.102 87.0192 203.047 86.7843 202.937 86.5854C202.831 86.3823 202.67 86.2257 202.454 86.1157C202.239 86.0057 201.972 85.9507 201.655 85.9507C201.358 85.9507 201.098 86.0015 200.874 86.103C200.654 86.2046 200.48 86.3379 200.353 86.5029C200.231 86.668 200.169 86.8457 200.169 87.0361H198.995C198.995 86.7907 199.058 86.5474 199.185 86.3062C199.312 86.0649 199.494 85.847 199.731 85.6523C199.972 85.4535 200.26 85.2969 200.595 85.1826C200.933 85.0641 201.31 85.0049 201.724 85.0049C202.224 85.0049 202.664 85.0895 203.045 85.2588C203.43 85.4281 203.73 85.6841 203.946 86.0269C204.166 86.3654 204.276 86.7907 204.276 87.3027V90.502C204.276 90.7305 204.295 90.9738 204.333 91.2319C204.376 91.4901 204.437 91.7122 204.517 91.8984V92H203.292C203.233 91.8646 203.187 91.6847 203.153 91.4604C203.119 91.2319 203.102 91.0203 203.102 90.8257ZM203.305 87.8359L203.318 88.6611H202.131C201.796 88.6611 201.498 88.6886 201.236 88.7437C200.973 88.7944 200.753 88.8727 200.576 88.9785C200.398 89.0843 200.262 89.2176 200.169 89.3784C200.076 89.535 200.03 89.7191 200.03 89.9307C200.03 90.1465 200.078 90.3433 200.176 90.521C200.273 90.6987 200.419 90.8405 200.614 90.9463C200.812 91.0479 201.056 91.0986 201.344 91.0986C201.703 91.0986 202.021 91.0225 202.296 90.8701C202.571 90.7178 202.789 90.5316 202.95 90.3115C203.115 90.0915 203.203 89.8778 203.216 89.6704L203.718 90.2354C203.688 90.4131 203.608 90.6099 203.476 90.8257C203.345 91.0415 203.17 91.2489 202.95 91.4478C202.734 91.6424 202.476 91.8053 202.175 91.9365C201.879 92.0635 201.545 92.127 201.172 92.127C200.707 92.127 200.298 92.036 199.947 91.854C199.6 91.672 199.329 91.4287 199.135 91.124C198.944 90.8151 198.849 90.4702 198.849 90.0894C198.849 89.7212 198.921 89.3975 199.065 89.1182C199.209 88.8346 199.416 88.5998 199.687 88.4136C199.958 88.2231 200.284 88.0793 200.664 87.9819C201.045 87.8846 201.471 87.8359 201.94 87.8359H203.305Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M54.3552 82.7578H55.5422L58.57 90.2925L61.5915 82.7578H62.7849L59.027 92H58.1003L54.3552 82.7578ZM53.968 82.7578H55.0153L55.1867 88.3945V92H53.968V82.7578ZM62.1184 82.7578H63.1657V92H61.947V88.3945L62.1184 82.7578ZM64.8288 88.6421V88.4961C64.8288 88.001 64.9007 87.5418 65.0446 87.1187C65.1885 86.6912 65.3959 86.321 65.6667 86.0078C65.9375 85.6904 66.2655 85.445 66.6506 85.2715C67.0357 85.0938 67.4673 85.0049 67.9455 85.0049C68.4279 85.0049 68.8617 85.0938 69.2468 85.2715C69.6361 85.445 69.9662 85.6904 70.237 86.0078C70.5121 86.321 70.7215 86.6912 70.8654 87.1187C71.0093 87.5418 71.0812 88.001 71.0812 88.4961V88.6421C71.0812 89.1372 71.0093 89.5964 70.8654 90.0195C70.7215 90.4427 70.5121 90.813 70.237 91.1304C69.9662 91.4435 69.6382 91.689 69.2531 91.8667C68.8723 92.0402 68.4406 92.127 67.9582 92.127C67.4758 92.127 67.042 92.0402 66.6569 91.8667C66.2718 91.689 65.9418 91.4435 65.6667 91.1304C65.3959 90.813 65.1885 90.4427 65.0446 90.0195C64.9007 89.5964 64.8288 89.1372 64.8288 88.6421ZM66.0031 88.4961V88.6421C66.0031 88.9849 66.0433 89.3086 66.1237 89.6133C66.2041 89.9137 66.3247 90.1803 66.4855 90.4131C66.6506 90.6458 66.8558 90.8299 67.1013 90.9653C67.3467 91.0965 67.6324 91.1621 67.9582 91.1621C68.2798 91.1621 68.5612 91.0965 68.8024 90.9653C69.0479 90.8299 69.251 90.6458 69.4118 90.4131C69.5726 90.1803 69.6932 89.9137 69.7736 89.6133C69.8583 89.3086 69.9006 88.9849 69.9006 88.6421V88.4961C69.9006 88.1576 69.8583 87.8381 69.7736 87.5376C69.6932 87.2329 69.5705 86.9642 69.4055 86.7314C69.2447 86.4945 69.0415 86.3083 68.7961 86.1729C68.5549 86.0374 68.2713 85.9697 67.9455 85.9697C67.6239 85.9697 67.3404 86.0374 67.0949 86.1729C66.8537 86.3083 66.6506 86.4945 66.4855 86.7314C66.3247 86.9642 66.2041 87.2329 66.1237 87.5376C66.0433 87.8381 66.0031 88.1576 66.0031 88.4961Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M110.886 89.207L112.721 82.7578H113.609L113.095 85.2651L111.121 92H110.239L110.886 89.207ZM108.988 82.7578L110.448 89.0801L110.886 92H110.01L107.769 82.7578H108.988ZM115.983 89.0737L117.411 82.7578H118.637L116.402 92H115.526L115.983 89.0737ZM113.742 82.7578L115.526 89.207L116.174 92H115.291L113.387 85.2651L112.867 82.7578H113.742ZM122.464 92.127C121.986 92.127 121.552 92.0465 121.163 91.8857C120.778 91.7207 120.446 91.4901 120.166 91.1938C119.891 90.8976 119.68 90.5464 119.532 90.1401C119.383 89.7339 119.309 89.2896 119.309 88.8071V88.5405C119.309 87.9819 119.392 87.4847 119.557 87.0488C119.722 86.6087 119.946 86.2363 120.23 85.9316C120.513 85.627 120.835 85.3963 121.195 85.2397C121.554 85.0832 121.927 85.0049 122.312 85.0049C122.803 85.0049 123.226 85.0895 123.581 85.2588C123.941 85.4281 124.235 85.665 124.464 85.9697C124.692 86.2702 124.861 86.6257 124.972 87.0361C125.082 87.4424 125.137 87.8867 125.137 88.3691V88.896H120.008V87.9375H123.962V87.8486C123.945 87.5439 123.882 87.2477 123.772 86.96C123.666 86.6722 123.497 86.4352 123.264 86.249C123.031 86.0628 122.714 85.9697 122.312 85.9697C122.045 85.9697 121.8 86.0269 121.576 86.1411C121.351 86.2511 121.159 86.4162 120.998 86.6362C120.837 86.8563 120.712 87.125 120.623 87.4424C120.534 87.7598 120.49 88.1258 120.49 88.5405V88.8071C120.49 89.133 120.534 89.4398 120.623 89.7275C120.716 90.0111 120.85 90.2607 121.023 90.4766C121.201 90.6924 121.415 90.8617 121.664 90.9844C121.918 91.1071 122.206 91.1685 122.528 91.1685C122.942 91.1685 123.294 91.0838 123.581 90.9146C123.869 90.7453 124.121 90.5189 124.337 90.2354L125.048 90.8003C124.9 91.0246 124.711 91.2383 124.483 91.4414C124.254 91.6445 123.973 91.8096 123.638 91.9365C123.308 92.0635 122.917 92.127 122.464 92.127Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M167.305 82.7578V92H166.08V82.7578H167.305ZM171.177 86.9155V87.9185H167.038V86.9155H171.177ZM171.805 82.7578V83.7607H167.038V82.7578H171.805ZM174.097 86.2109V92H172.922V85.1318H174.065L174.097 86.2109ZM176.242 85.0938L176.236 86.1855C176.138 86.1644 176.045 86.1517 175.956 86.1475C175.872 86.139 175.775 86.1348 175.664 86.1348C175.394 86.1348 175.155 86.1771 174.947 86.2617C174.74 86.3464 174.564 86.4648 174.42 86.6172C174.276 86.7695 174.162 86.9515 174.078 87.1631C173.997 87.3704 173.944 87.599 173.919 87.8486L173.589 88.0391C173.589 87.6243 173.629 87.235 173.709 86.8711C173.794 86.5072 173.923 86.1855 174.097 85.9062C174.27 85.6227 174.49 85.4027 174.757 85.2461C175.028 85.0853 175.349 85.0049 175.722 85.0049C175.806 85.0049 175.904 85.0155 176.014 85.0366C176.124 85.0535 176.2 85.0726 176.242 85.0938Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"160.002",y:"100",width:"20.9999",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.6777 115.035V116H28.6284V115.156L31.6562 111.785C32.0286 111.37 32.3164 111.019 32.5195 110.731C32.7269 110.439 32.8707 110.179 32.9511 109.951C33.0358 109.718 33.0781 109.481 33.0781 109.24C33.0781 108.935 33.0146 108.66 32.8877 108.415C32.7649 108.165 32.583 107.966 32.3418 107.818C32.1006 107.67 31.8086 107.596 31.4658 107.596C31.0553 107.596 30.7125 107.676 30.4375 107.837C30.1666 107.993 29.9635 108.214 29.8281 108.497C29.6927 108.781 29.625 109.106 29.625 109.475H28.4507C28.4507 108.954 28.5649 108.478 28.7934 108.046C29.0219 107.615 29.3605 107.272 29.8091 107.018C30.2576 106.76 30.8099 106.631 31.4658 106.631C32.0498 106.631 32.5491 106.735 32.9638 106.942C33.3786 107.145 33.6959 107.433 33.916 107.805C34.1403 108.173 34.2524 108.605 34.2524 109.1C34.2524 109.371 34.2059 109.646 34.1128 109.925C34.0239 110.2 33.8991 110.475 33.7383 110.75C33.5817 111.026 33.3976 111.296 33.186 111.563C32.9786 111.83 32.7565 112.092 32.5195 112.35L30.0439 115.035H34.6777ZM41.7617 113.499C41.7617 114.062 41.6305 114.54 41.3681 114.934C41.11 115.323 40.7588 115.619 40.3144 115.822C39.8743 116.025 39.3771 116.127 38.8227 116.127C38.2684 116.127 37.769 116.025 37.3247 115.822C36.8803 115.619 36.5291 115.323 36.271 114.934C36.0128 114.54 35.8838 114.062 35.8838 113.499C35.8838 113.131 35.9536 112.794 36.0932 112.49C36.2371 112.181 36.4381 111.912 36.6963 111.684C36.9586 111.455 37.2675 111.279 37.623 111.157C37.9827 111.03 38.3784 110.966 38.81 110.966C39.3771 110.966 39.8828 111.076 40.3271 111.296C40.7715 111.512 41.1206 111.811 41.3745 112.191C41.6326 112.572 41.7617 113.008 41.7617 113.499ZM40.581 113.474C40.581 113.131 40.507 112.828 40.3589 112.566C40.2107 112.299 40.0034 112.092 39.7368 111.944C39.4702 111.796 39.1613 111.722 38.81 111.722C38.4503 111.722 38.1393 111.796 37.8769 111.944C37.6188 112.092 37.4178 112.299 37.2739 112.566C37.13 112.828 37.0581 113.131 37.0581 113.474C37.0581 113.829 37.1279 114.134 37.2675 114.388C37.4114 114.637 37.6146 114.83 37.8769 114.965C38.1435 115.097 38.4588 115.162 38.8227 115.162C39.1867 115.162 39.4998 115.097 39.7622 114.965C40.0245 114.83 40.2256 114.637 40.3652 114.388C40.5091 114.134 40.581 113.829 40.581 113.474ZM41.5459 109.164C41.5459 109.612 41.4274 110.016 41.1904 110.376C40.9534 110.736 40.6297 111.019 40.2192 111.227C39.8087 111.434 39.3432 111.538 38.8227 111.538C38.2938 111.538 37.8219 111.434 37.4072 111.227C36.9967 111.019 36.6751 110.736 36.4424 110.376C36.2096 110.016 36.0932 109.612 36.0932 109.164C36.0932 108.626 36.2096 108.169 36.4424 107.792C36.6793 107.416 37.0031 107.128 37.4135 106.929C37.824 106.73 38.2916 106.631 38.8164 106.631C39.3453 106.631 39.8151 106.73 40.2256 106.929C40.636 107.128 40.9577 107.416 41.1904 107.792C41.4274 108.169 41.5459 108.626 41.5459 109.164ZM40.3716 109.183C40.3716 108.874 40.306 108.601 40.1748 108.364C40.0436 108.127 39.8616 107.941 39.6289 107.805C39.3961 107.666 39.1253 107.596 38.8164 107.596C38.5075 107.596 38.2366 107.661 38.0039 107.792C37.7754 107.919 37.5955 108.101 37.4643 108.338C37.3374 108.575 37.2739 108.857 37.2739 109.183C37.2739 109.5 37.3374 109.777 37.4643 110.014C37.5955 110.251 37.7775 110.435 38.0102 110.566C38.243 110.698 38.5138 110.763 38.8227 110.763C39.1316 110.763 39.4004 110.698 39.6289 110.566C39.8616 110.435 40.0436 110.251 40.1748 110.014C40.306 109.777 40.3716 109.5 40.3716 109.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M92.5573 115.035V116H86.508V115.156L89.5359 111.785C89.9083 111.37 90.196 111.019 90.3991 110.731C90.6065 110.439 90.7504 110.179 90.8308 109.951C90.9154 109.718 90.9577 109.481 90.9577 109.24C90.9577 108.935 90.8943 108.66 90.7673 108.415C90.6446 108.165 90.4626 107.966 90.2214 107.818C89.9802 107.67 89.6882 107.596 89.3454 107.596C88.9349 107.596 88.5922 107.676 88.3171 107.837C88.0463 107.993 87.8432 108.214 87.7077 108.497C87.5723 108.781 87.5046 109.106 87.5046 109.475H86.3303C86.3303 108.954 86.4446 108.478 86.6731 108.046C86.9016 107.615 87.2401 107.272 87.6887 107.018C88.1373 106.76 88.6895 106.631 89.3454 106.631C89.9294 106.631 90.4288 106.735 90.8435 106.942C91.2582 107.145 91.5756 107.433 91.7956 107.805C92.0199 108.173 92.1321 108.605 92.1321 109.1C92.1321 109.371 92.0855 109.646 91.9924 109.925C91.9035 110.2 91.7787 110.475 91.6179 110.75C91.4613 111.026 91.2772 111.296 91.0656 111.563C90.8583 111.83 90.6361 112.092 90.3991 112.35L87.9236 115.035H92.5573Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M146.97 112.89V113.854H140.292V113.163L144.431 106.758H145.389L144.361 108.611L141.625 112.89H146.97ZM145.681 106.758V116H144.507V106.758H145.681Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M199.452 106.745H199.554V107.742H199.452C198.83 107.742 198.309 107.843 197.89 108.046C197.472 108.245 197.139 108.514 196.894 108.853C196.648 109.187 196.471 109.563 196.361 109.982C196.255 110.401 196.202 110.827 196.202 111.258V112.617C196.202 113.027 196.251 113.391 196.348 113.708C196.445 114.022 196.579 114.286 196.748 114.502C196.917 114.718 197.108 114.881 197.319 114.991C197.535 115.101 197.759 115.156 197.992 115.156C198.263 115.156 198.504 115.105 198.716 115.003C198.927 114.898 199.105 114.752 199.249 114.565C199.397 114.375 199.509 114.151 199.585 113.893C199.661 113.634 199.7 113.351 199.7 113.042C199.7 112.767 199.666 112.502 199.598 112.249C199.53 111.99 199.427 111.762 199.287 111.563C199.147 111.36 198.972 111.201 198.76 111.087C198.553 110.968 198.305 110.909 198.017 110.909C197.692 110.909 197.387 110.99 197.103 111.15C196.824 111.307 196.593 111.514 196.411 111.772C196.234 112.026 196.132 112.304 196.107 112.604L195.485 112.598C195.544 112.124 195.654 111.72 195.815 111.385C195.98 111.047 196.183 110.772 196.424 110.56C196.67 110.344 196.943 110.188 197.243 110.09C197.548 109.989 197.869 109.938 198.208 109.938C198.669 109.938 199.067 110.025 199.401 110.198C199.736 110.372 200.011 110.604 200.226 110.896C200.442 111.184 200.601 111.51 200.702 111.874C200.808 112.234 200.861 112.604 200.861 112.985C200.861 113.421 200.8 113.829 200.677 114.21C200.554 114.591 200.37 114.925 200.125 115.213C199.884 115.501 199.585 115.725 199.23 115.886C198.874 116.047 198.462 116.127 197.992 116.127C197.493 116.127 197.057 116.025 196.684 115.822C196.312 115.615 196.003 115.34 195.758 114.997C195.512 114.654 195.328 114.273 195.205 113.854C195.083 113.436 195.021 113.01 195.021 112.579V112.026C195.021 111.375 195.087 110.736 195.218 110.109C195.349 109.483 195.576 108.916 195.897 108.408C196.223 107.9 196.674 107.496 197.249 107.196C197.825 106.895 198.559 106.745 199.452 106.745Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M63.2484 106.707V116H62.0741V108.173L59.7064 109.037V107.977L63.0643 106.707H63.2484Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M115.324 110.801H116.162C116.573 110.801 116.911 110.734 117.178 110.598C117.449 110.458 117.65 110.27 117.781 110.033C117.916 109.792 117.984 109.521 117.984 109.221C117.984 108.865 117.925 108.567 117.806 108.326C117.688 108.084 117.51 107.903 117.273 107.78C117.036 107.657 116.735 107.596 116.372 107.596C116.041 107.596 115.749 107.661 115.496 107.792C115.246 107.919 115.049 108.101 114.905 108.338C114.766 108.575 114.696 108.855 114.696 109.176H113.521C113.521 108.707 113.64 108.279 113.877 107.894C114.114 107.509 114.446 107.202 114.874 106.974C115.305 106.745 115.804 106.631 116.372 106.631C116.93 106.631 117.419 106.73 117.838 106.929C118.257 107.124 118.583 107.416 118.815 107.805C119.048 108.19 119.165 108.671 119.165 109.246C119.165 109.479 119.11 109.729 118.999 109.995C118.894 110.257 118.727 110.503 118.498 110.731C118.274 110.96 117.982 111.148 117.622 111.296C117.262 111.44 116.831 111.512 116.327 111.512H115.324V110.801ZM115.324 111.766V111.062H116.327C116.915 111.062 117.402 111.131 117.787 111.271C118.172 111.411 118.475 111.597 118.695 111.83C118.919 112.062 119.076 112.318 119.165 112.598C119.258 112.873 119.304 113.148 119.304 113.423C119.304 113.854 119.23 114.237 119.082 114.572C118.938 114.906 118.733 115.19 118.466 115.422C118.204 115.655 117.895 115.831 117.54 115.949C117.184 116.068 116.797 116.127 116.378 116.127C115.976 116.127 115.597 116.07 115.242 115.956C114.89 115.841 114.579 115.676 114.309 115.46C114.038 115.24 113.826 114.972 113.674 114.654C113.521 114.333 113.445 113.967 113.445 113.556H114.62C114.62 113.878 114.689 114.159 114.829 114.4C114.973 114.642 115.176 114.83 115.438 114.965C115.705 115.097 116.018 115.162 116.378 115.162C116.738 115.162 117.047 115.101 117.305 114.978C117.567 114.851 117.768 114.661 117.908 114.407C118.052 114.153 118.124 113.833 118.124 113.448C118.124 113.063 118.043 112.748 117.882 112.502C117.721 112.253 117.493 112.069 117.197 111.95C116.905 111.827 116.56 111.766 116.162 111.766H115.324Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M169.344 111.792L167.884 111.442L168.411 106.758H173.603V108.237H169.915L169.687 110.287C169.81 110.215 169.996 110.139 170.246 110.059C170.495 109.974 170.775 109.932 171.083 109.932C171.532 109.932 171.93 110.001 172.277 110.141C172.624 110.281 172.918 110.484 173.159 110.75C173.405 111.017 173.591 111.343 173.718 111.728C173.845 112.113 173.908 112.549 173.908 113.036C173.908 113.446 173.845 113.838 173.718 114.21C173.591 114.578 173.398 114.908 173.14 115.2C172.882 115.488 172.558 115.714 172.169 115.879C171.78 116.044 171.318 116.127 170.785 116.127C170.387 116.127 170.002 116.068 169.63 115.949C169.262 115.831 168.929 115.655 168.633 115.422C168.341 115.19 168.106 114.908 167.929 114.578C167.755 114.244 167.664 113.863 167.656 113.436H169.471C169.497 113.698 169.564 113.924 169.674 114.115C169.789 114.301 169.939 114.445 170.125 114.546C170.311 114.648 170.529 114.699 170.779 114.699C171.012 114.699 171.21 114.654 171.375 114.565C171.54 114.477 171.674 114.354 171.775 114.197C171.877 114.036 171.951 113.85 171.998 113.639C172.048 113.423 172.074 113.19 172.074 112.94C172.074 112.691 172.044 112.464 171.985 112.261C171.926 112.058 171.835 111.882 171.712 111.734C171.589 111.586 171.433 111.472 171.242 111.392C171.056 111.311 170.838 111.271 170.588 111.271C170.25 111.271 169.987 111.324 169.801 111.43C169.619 111.535 169.467 111.656 169.344 111.792Z",fill:"white"}),(0,h.createElement)("path",{d:"M38.2515 131.758V132.418L34.4238 141H33.186L37.0073 132.723H32.0054V131.758H38.2515Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M87.6686 140.016H87.7892C88.4663 140.016 89.0164 139.921 89.4396 139.73C89.8628 139.54 90.1886 139.284 90.4171 138.962C90.6456 138.641 90.8022 138.279 90.8868 137.877C90.9715 137.471 91.0138 137.054 91.0138 136.626V135.211C91.0138 134.792 90.9651 134.42 90.8678 134.094C90.7747 133.768 90.6435 133.495 90.4742 133.275C90.3092 133.055 90.1209 132.888 89.9093 132.773C89.6977 132.659 89.4734 132.602 89.2365 132.602C88.9656 132.602 88.7223 132.657 88.5065 132.767C88.2949 132.873 88.115 133.023 87.9669 133.218C87.823 133.412 87.713 133.641 87.6368 133.903C87.5607 134.166 87.5226 134.451 87.5226 134.76C87.5226 135.035 87.5564 135.302 87.6241 135.56C87.6919 135.818 87.7955 136.051 87.9352 136.258C88.0748 136.466 88.2483 136.631 88.4557 136.753C88.6673 136.872 88.9148 136.931 89.1984 136.931C89.4607 136.931 89.7062 136.88 89.9347 136.779C90.1674 136.673 90.3727 136.531 90.5504 136.354C90.7324 136.172 90.8763 135.966 90.9821 135.738C91.0921 135.509 91.1556 135.27 91.1725 135.021H91.7311C91.7311 135.372 91.6613 135.719 91.5216 136.062C91.3862 136.4 91.1958 136.709 90.9503 136.988C90.7049 137.268 90.4171 137.492 90.087 137.661C89.757 137.826 89.3973 137.909 89.0079 137.909C88.5509 137.909 88.1552 137.82 87.8209 137.642C87.4866 137.464 87.2115 137.227 86.9957 136.931C86.7841 136.635 86.6254 136.305 86.5197 135.941C86.4181 135.573 86.3673 135.2 86.3673 134.824C86.3673 134.384 86.4287 133.971 86.5514 133.586C86.6741 133.201 86.8561 132.862 87.0973 132.57C87.3385 132.274 87.6368 132.043 87.9923 131.878C88.352 131.713 88.7667 131.631 89.2365 131.631C89.7654 131.631 90.2161 131.737 90.5885 131.948C90.9609 132.16 91.2635 132.443 91.4962 132.799C91.7332 133.154 91.9067 133.554 92.0167 133.999C92.1268 134.443 92.1818 134.9 92.1818 135.37V135.795C92.1818 136.273 92.15 136.76 92.0865 137.255C92.0273 137.746 91.9109 138.215 91.7374 138.664C91.5682 139.113 91.3206 139.515 90.9948 139.87C90.6689 140.221 90.2436 140.501 89.7189 140.708C89.1984 140.911 88.5551 141.013 87.7892 141.013H87.6686V140.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M140.923 131.707V141H139.749V133.173L137.381 134.037V132.977L140.739 131.707H140.923ZM148.236 131.707V141H147.061V133.173L144.694 134.037V132.977L148.052 131.707H148.236Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M195.148 131.707V141H193.974V133.173L191.606 134.037V132.977L194.964 131.707H195.148ZM200.315 135.801H201.153C201.564 135.801 201.902 135.734 202.169 135.598C202.44 135.458 202.641 135.27 202.772 135.033C202.907 134.792 202.975 134.521 202.975 134.221C202.975 133.865 202.916 133.567 202.797 133.326C202.679 133.084 202.501 132.903 202.264 132.78C202.027 132.657 201.727 132.596 201.363 132.596C201.033 132.596 200.741 132.661 200.487 132.792C200.237 132.919 200.04 133.101 199.896 133.338C199.757 133.575 199.687 133.855 199.687 134.176H198.513C198.513 133.707 198.631 133.279 198.868 132.894C199.105 132.509 199.437 132.202 199.865 131.974C200.296 131.745 200.796 131.631 201.363 131.631C201.921 131.631 202.41 131.73 202.829 131.929C203.248 132.124 203.574 132.416 203.807 132.805C204.039 133.19 204.156 133.671 204.156 134.246C204.156 134.479 204.101 134.729 203.991 134.995C203.885 135.257 203.718 135.503 203.489 135.731C203.265 135.96 202.973 136.148 202.613 136.296C202.254 136.44 201.822 136.512 201.318 136.512H200.315V135.801ZM200.315 136.766V136.062H201.318C201.907 136.062 202.393 136.131 202.778 136.271C203.163 136.411 203.466 136.597 203.686 136.83C203.91 137.062 204.067 137.318 204.156 137.598C204.249 137.873 204.295 138.148 204.295 138.423C204.295 138.854 204.221 139.237 204.073 139.572C203.929 139.906 203.724 140.19 203.458 140.422C203.195 140.655 202.886 140.831 202.531 140.949C202.175 141.068 201.788 141.127 201.369 141.127C200.967 141.127 200.588 141.07 200.233 140.956C199.882 140.841 199.571 140.676 199.3 140.46C199.029 140.24 198.817 139.972 198.665 139.654C198.513 139.333 198.437 138.967 198.437 138.556H199.611C199.611 138.878 199.681 139.159 199.82 139.4C199.964 139.642 200.167 139.83 200.43 139.965C200.696 140.097 201.009 140.162 201.369 140.162C201.729 140.162 202.038 140.101 202.296 139.978C202.558 139.851 202.759 139.661 202.899 139.407C203.043 139.153 203.115 138.833 203.115 138.448C203.115 138.063 203.034 137.748 202.874 137.502C202.713 137.253 202.484 137.069 202.188 136.95C201.896 136.827 201.551 136.766 201.153 136.766H200.315Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M65.2155 138.499C65.2155 139.062 65.0843 139.54 64.8219 139.934C64.5638 140.323 64.2125 140.619 63.7682 140.822C63.3281 141.025 62.8309 141.127 62.2765 141.127C61.7221 141.127 61.2228 141.025 60.7784 140.822C60.3341 140.619 59.9829 140.323 59.7247 139.934C59.4666 139.54 59.3375 139.062 59.3375 138.499C59.3375 138.131 59.4074 137.794 59.547 137.49C59.6909 137.181 59.8919 136.912 60.15 136.684C60.4124 136.455 60.7213 136.279 61.0768 136.157C61.4365 136.03 61.8322 135.966 62.2638 135.966C62.8309 135.966 63.3365 136.076 63.7809 136.296C64.2252 136.512 64.5743 136.811 64.8282 137.191C65.0864 137.572 65.2155 138.008 65.2155 138.499ZM64.0348 138.474C64.0348 138.131 63.9607 137.828 63.8126 137.566C63.6645 137.299 63.4572 137.092 63.1906 136.944C62.924 136.796 62.615 136.722 62.2638 136.722C61.9041 136.722 61.5931 136.796 61.3307 136.944C61.0726 137.092 60.8715 137.299 60.7277 137.566C60.5838 137.828 60.5118 138.131 60.5118 138.474C60.5118 138.829 60.5817 139.134 60.7213 139.388C60.8652 139.637 61.0683 139.83 61.3307 139.965C61.5973 140.097 61.9126 140.162 62.2765 140.162C62.6404 140.162 62.9536 140.097 63.2159 139.965C63.4783 139.83 63.6793 139.637 63.819 139.388C63.9629 139.134 64.0348 138.829 64.0348 138.474ZM64.9996 134.164C64.9996 134.612 64.8811 135.016 64.6442 135.376C64.4072 135.736 64.0835 136.019 63.673 136.227C63.2625 136.434 62.797 136.538 62.2765 136.538C61.7475 136.538 61.2757 136.434 60.861 136.227C60.4505 136.019 60.1289 135.736 59.8961 135.376C59.6634 135.016 59.547 134.612 59.547 134.164C59.547 133.626 59.6634 133.169 59.8961 132.792C60.1331 132.416 60.4568 132.128 60.8673 131.929C61.2778 131.73 61.7454 131.631 62.2701 131.631C62.7991 131.631 63.2688 131.73 63.6793 131.929C64.0898 132.128 64.4114 132.416 64.6442 132.792C64.8811 133.169 64.9996 133.626 64.9996 134.164ZM63.8253 134.183C63.8253 133.874 63.7597 133.601 63.6285 133.364C63.4974 133.127 63.3154 132.941 63.0826 132.805C62.8499 132.666 62.5791 132.596 62.2701 132.596C61.9612 132.596 61.6904 132.661 61.4576 132.792C61.2291 132.919 61.0493 133.101 60.9181 133.338C60.7911 133.575 60.7277 133.857 60.7277 134.183C60.7277 134.5 60.7911 134.777 60.9181 135.014C61.0493 135.251 61.2312 135.435 61.464 135.566C61.6967 135.698 61.9676 135.763 62.2765 135.763C62.5854 135.763 62.8541 135.698 63.0826 135.566C63.3154 135.435 63.4974 135.251 63.6285 135.014C63.7597 134.777 63.8253 134.5 63.8253 134.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M113.813 131.707V141H112.638V133.173L110.271 134.037V132.977L113.628 131.707H113.813ZM123.067 135.643V137.052C123.067 137.809 123 138.448 122.864 138.969C122.729 139.489 122.534 139.908 122.28 140.226C122.026 140.543 121.72 140.774 121.36 140.917C121.004 141.057 120.602 141.127 120.154 141.127C119.798 141.127 119.47 141.083 119.17 140.994C118.869 140.905 118.599 140.763 118.357 140.568C118.12 140.369 117.917 140.111 117.748 139.794C117.579 139.477 117.45 139.091 117.361 138.639C117.272 138.186 117.228 137.657 117.228 137.052V135.643C117.228 134.885 117.295 134.25 117.431 133.738C117.57 133.226 117.767 132.816 118.021 132.507C118.275 132.194 118.58 131.969 118.935 131.834C119.295 131.699 119.697 131.631 120.141 131.631C120.501 131.631 120.831 131.675 121.131 131.764C121.436 131.849 121.707 131.986 121.944 132.177C122.181 132.363 122.382 132.613 122.547 132.926C122.716 133.235 122.845 133.613 122.934 134.062C123.023 134.511 123.067 135.037 123.067 135.643ZM121.887 137.242V135.446C121.887 135.031 121.861 134.667 121.811 134.354C121.764 134.037 121.694 133.766 121.601 133.542C121.508 133.317 121.389 133.135 121.246 132.996C121.106 132.856 120.943 132.754 120.757 132.691C120.575 132.623 120.37 132.589 120.141 132.589C119.862 132.589 119.614 132.642 119.398 132.748C119.183 132.85 119.001 133.013 118.853 133.237C118.709 133.461 118.599 133.755 118.522 134.119C118.446 134.483 118.408 134.925 118.408 135.446V137.242C118.408 137.657 118.431 138.023 118.478 138.34C118.529 138.658 118.603 138.933 118.7 139.166C118.798 139.394 118.916 139.582 119.056 139.73C119.195 139.879 119.356 139.989 119.538 140.061C119.724 140.128 119.93 140.162 120.154 140.162C120.442 140.162 120.693 140.107 120.909 139.997C121.125 139.887 121.305 139.716 121.449 139.483C121.597 139.246 121.707 138.943 121.779 138.575C121.851 138.203 121.887 137.758 121.887 137.242Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M168.036 131.707V141H166.861V133.173L164.494 134.037V132.977L167.852 131.707H168.036ZM177.545 140.035V141H171.495V140.156L174.523 136.785C174.895 136.37 175.183 136.019 175.386 135.731C175.594 135.439 175.738 135.179 175.818 134.951C175.903 134.718 175.945 134.481 175.945 134.24C175.945 133.935 175.881 133.66 175.755 133.415C175.632 133.165 175.45 132.966 175.209 132.818C174.967 132.67 174.675 132.596 174.333 132.596C173.922 132.596 173.579 132.676 173.304 132.837C173.033 132.993 172.83 133.214 172.695 133.497C172.56 133.781 172.492 134.106 172.492 134.475H171.318C171.318 133.954 171.432 133.478 171.66 133.046C171.889 132.615 172.227 132.272 172.676 132.018C173.124 131.76 173.677 131.631 174.333 131.631C174.917 131.631 175.416 131.735 175.831 131.942C176.245 132.145 176.563 132.433 176.783 132.805C177.007 133.173 177.119 133.605 177.119 134.1C177.119 134.371 177.073 134.646 176.98 134.925C176.891 135.2 176.766 135.475 176.605 135.75C176.449 136.026 176.264 136.296 176.053 136.563C175.846 136.83 175.623 137.092 175.386 137.35L172.911 140.035H177.545Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"223",y:"55",width:"23.5",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M232.376 60.7388V70H230.548V62.8462L228.352 63.5444V62.1035L232.179 60.7388H232.376ZM239.841 60.7388V70H238.013V62.8462L235.816 63.5444V62.1035L239.644 60.7388H239.841Z",fill:"white"}),(0,h.createElement)("rect",{x:"249.5",y:"55",width:"23.5",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M260.742 68.5718V70H254.42V68.7812L257.41 65.5757C257.71 65.2414 257.947 64.9473 258.121 64.6934C258.294 64.4352 258.419 64.2046 258.495 64.0015C258.576 63.7941 258.616 63.5973 258.616 63.4111C258.616 63.1318 258.569 62.8927 258.476 62.6938C258.383 62.4907 258.245 62.3341 258.063 62.2241C257.886 62.1141 257.666 62.0591 257.403 62.0591C257.124 62.0591 256.883 62.1268 256.68 62.2622C256.481 62.3976 256.328 62.5859 256.223 62.8271C256.121 63.0684 256.07 63.3413 256.07 63.646H254.236C254.236 63.0959 254.367 62.5923 254.629 62.1353C254.892 61.674 255.262 61.3079 255.74 61.0371C256.218 60.762 256.785 60.6245 257.441 60.6245C258.089 60.6245 258.635 60.7303 259.079 60.9419C259.528 61.1493 259.866 61.4497 260.095 61.8433C260.327 62.2326 260.444 62.6981 260.444 63.2397C260.444 63.5444 260.395 63.8428 260.298 64.1348C260.201 64.4225 260.061 64.7103 259.879 64.998C259.701 65.2816 259.485 65.5693 259.231 65.8613C258.978 66.1533 258.696 66.4559 258.387 66.769L256.781 68.5718H260.742ZM268.163 60.7578V61.7417L264.589 70H262.659L266.233 62.186H261.631V60.7578H268.163Z",fill:"white"}),(0,h.createElement)("path",{d:"M232.065 86.707V96H230.891V88.1733L228.523 89.0366V87.9766L231.881 86.707H232.065ZM241.574 95.0352V96H235.524V95.1558L238.552 91.7852C238.925 91.3704 239.212 91.0192 239.416 90.7314C239.623 90.4395 239.767 90.1792 239.847 89.9507C239.932 89.7179 239.974 89.481 239.974 89.2397C239.974 88.9351 239.911 88.66 239.784 88.4146C239.661 88.1649 239.479 87.966 239.238 87.8179C238.997 87.6698 238.705 87.5957 238.362 87.5957C237.951 87.5957 237.609 87.6761 237.333 87.8369C237.063 87.9935 236.86 88.2135 236.724 88.4971C236.589 88.7806 236.521 89.1064 236.521 89.4746H235.347C235.347 88.9541 235.461 88.478 235.689 88.0464C235.918 87.6147 236.257 87.272 236.705 87.0181C237.154 86.7599 237.706 86.6309 238.362 86.6309C238.946 86.6309 239.445 86.7345 239.86 86.9419C240.275 87.145 240.592 87.4328 240.812 87.8052C241.036 88.1733 241.148 88.605 241.148 89.1001C241.148 89.3709 241.102 89.646 241.009 89.9253C240.92 90.2004 240.795 90.4754 240.634 90.7505C240.478 91.0256 240.294 91.2964 240.082 91.563C239.875 91.8296 239.653 92.092 239.416 92.3501L236.94 95.0352H241.574Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.761 95.0352V96H254.712V95.1558L257.74 91.7852C258.112 91.3704 258.4 91.0192 258.603 90.7314C258.81 90.4395 258.954 90.1792 259.035 89.9507C259.119 89.7179 259.162 89.481 259.162 89.2397C259.162 88.9351 259.098 88.66 258.971 88.4146C258.848 88.1649 258.667 87.966 258.425 87.8179C258.184 87.6698 257.892 87.5957 257.549 87.5957C257.139 87.5957 256.796 87.6761 256.521 87.8369C256.25 87.9935 256.047 88.2135 255.912 88.4971C255.776 88.7806 255.708 89.1064 255.708 89.4746H254.534C254.534 88.9541 254.648 88.478 254.877 88.0464C255.105 87.6147 255.444 87.272 255.893 87.0181C256.341 86.7599 256.893 86.6309 257.549 86.6309C258.133 86.6309 258.633 86.7345 259.047 86.9419C259.462 87.145 259.779 87.4328 260 87.8052C260.224 88.1733 260.336 88.605 260.336 89.1001C260.336 89.3709 260.289 89.646 260.196 89.9253C260.107 90.2004 259.983 90.4754 259.822 90.7505C259.665 91.0256 259.481 91.2964 259.27 91.563C259.062 91.8296 258.84 92.092 258.603 92.3501L256.127 95.0352H260.761ZM267.845 93.499C267.845 94.0618 267.714 94.54 267.452 94.9336C267.194 95.3229 266.842 95.6191 266.398 95.8223C265.958 96.0254 265.461 96.127 264.906 96.127C264.352 96.127 263.853 96.0254 263.408 95.8223C262.964 95.6191 262.613 95.3229 262.354 94.9336C262.096 94.54 261.967 94.0618 261.967 93.499C261.967 93.1309 262.037 92.7944 262.177 92.4897C262.321 92.1808 262.522 91.9121 262.78 91.6836C263.042 91.4551 263.351 91.2795 263.707 91.1567C264.066 91.0298 264.462 90.9663 264.894 90.9663C265.461 90.9663 265.966 91.0763 266.411 91.2964C266.855 91.5122 267.204 91.8105 267.458 92.1914C267.716 92.5723 267.845 93.0081 267.845 93.499ZM266.665 93.4736C266.665 93.1309 266.59 92.8283 266.442 92.5659C266.294 92.2993 266.087 92.092 265.82 91.9438C265.554 91.7957 265.245 91.7217 264.894 91.7217C264.534 91.7217 264.223 91.7957 263.96 91.9438C263.702 92.092 263.501 92.2993 263.357 92.5659C263.214 92.8283 263.142 93.1309 263.142 93.4736C263.142 93.8291 263.211 94.1338 263.351 94.3877C263.495 94.6374 263.698 94.8299 263.96 94.9653C264.227 95.0965 264.542 95.1621 264.906 95.1621C265.27 95.1621 265.583 95.0965 265.846 94.9653C266.108 94.8299 266.309 94.6374 266.449 94.3877C266.593 94.1338 266.665 93.8291 266.665 93.4736ZM267.629 89.1636C267.629 89.6121 267.511 90.0163 267.274 90.376C267.037 90.7357 266.713 91.0192 266.303 91.2266C265.892 91.4339 265.427 91.5376 264.906 91.5376C264.377 91.5376 263.905 91.4339 263.491 91.2266C263.08 91.0192 262.759 90.7357 262.526 90.376C262.293 90.0163 262.177 89.6121 262.177 89.1636C262.177 88.6261 262.293 88.1691 262.526 87.7925C262.763 87.4159 263.087 87.1281 263.497 86.9292C263.908 86.7303 264.375 86.6309 264.9 86.6309C265.429 86.6309 265.899 86.7303 266.309 86.9292C266.72 87.1281 267.041 87.4159 267.274 87.7925C267.511 88.1691 267.629 88.6261 267.629 89.1636ZM266.455 89.1826C266.455 88.8737 266.389 88.6007 266.258 88.3638C266.127 88.1268 265.945 87.9406 265.712 87.8052C265.48 87.6655 265.209 87.5957 264.9 87.5957C264.591 87.5957 264.32 87.6613 264.087 87.7925C263.859 87.9194 263.679 88.1014 263.548 88.3384C263.421 88.5754 263.357 88.8568 263.357 89.1826C263.357 89.5 263.421 89.7772 263.548 90.0142C263.679 90.2511 263.861 90.4352 264.094 90.5664C264.326 90.6976 264.597 90.7632 264.906 90.7632C265.215 90.7632 265.484 90.6976 265.712 90.5664C265.945 90.4352 266.127 90.2511 266.258 90.0142C266.389 89.7772 266.455 89.5 266.455 89.1826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M232.065 110.707V120H230.891V112.173L228.523 113.037V111.977L231.881 110.707H232.065ZM237.232 114.801H238.07C238.48 114.801 238.819 114.734 239.085 114.598C239.356 114.458 239.557 114.27 239.688 114.033C239.824 113.792 239.892 113.521 239.892 113.221C239.892 112.865 239.832 112.567 239.714 112.326C239.595 112.084 239.418 111.903 239.181 111.78C238.944 111.657 238.643 111.596 238.279 111.596C237.949 111.596 237.657 111.661 237.403 111.792C237.154 111.919 236.957 112.101 236.813 112.338C236.673 112.575 236.604 112.855 236.604 113.176H235.429C235.429 112.707 235.548 112.279 235.785 111.894C236.022 111.509 236.354 111.202 236.781 110.974C237.213 110.745 237.712 110.631 238.279 110.631C238.838 110.631 239.327 110.73 239.746 110.929C240.165 111.124 240.49 111.416 240.723 111.805C240.956 112.19 241.072 112.671 241.072 113.246C241.072 113.479 241.017 113.729 240.907 113.995C240.801 114.257 240.634 114.503 240.406 114.731C240.181 114.96 239.889 115.148 239.53 115.296C239.17 115.44 238.738 115.512 238.235 115.512H237.232V114.801ZM237.232 115.766V115.062H238.235C238.823 115.062 239.31 115.131 239.695 115.271C240.08 115.411 240.382 115.597 240.603 115.83C240.827 116.062 240.983 116.318 241.072 116.598C241.165 116.873 241.212 117.148 241.212 117.423C241.212 117.854 241.138 118.237 240.99 118.572C240.846 118.906 240.641 119.19 240.374 119.422C240.112 119.655 239.803 119.831 239.447 119.949C239.092 120.068 238.705 120.127 238.286 120.127C237.884 120.127 237.505 120.07 237.149 119.956C236.798 119.841 236.487 119.676 236.216 119.46C235.945 119.24 235.734 118.972 235.582 118.654C235.429 118.333 235.353 117.967 235.353 117.556H236.527C236.527 117.878 236.597 118.159 236.737 118.4C236.881 118.642 237.084 118.83 237.346 118.965C237.613 119.097 237.926 119.162 238.286 119.162C238.645 119.162 238.954 119.101 239.212 118.978C239.475 118.851 239.676 118.661 239.815 118.407C239.959 118.153 240.031 117.833 240.031 117.448C240.031 117.063 239.951 116.748 239.79 116.502C239.629 116.253 239.401 116.069 239.104 115.95C238.812 115.827 238.468 115.766 238.07 115.766H237.232Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.761 119.035V120H254.712V119.156L257.74 115.785C258.112 115.37 258.4 115.019 258.603 114.731C258.81 114.439 258.954 114.179 259.035 113.951C259.119 113.718 259.162 113.481 259.162 113.24C259.162 112.935 259.098 112.66 258.971 112.415C258.848 112.165 258.667 111.966 258.425 111.818C258.184 111.67 257.892 111.596 257.549 111.596C257.139 111.596 256.796 111.676 256.521 111.837C256.25 111.993 256.047 112.214 255.912 112.497C255.776 112.781 255.708 113.106 255.708 113.475H254.534C254.534 112.954 254.648 112.478 254.877 112.046C255.105 111.615 255.444 111.272 255.893 111.018C256.341 110.76 256.893 110.631 257.549 110.631C258.133 110.631 258.633 110.735 259.047 110.942C259.462 111.145 259.779 111.433 260 111.805C260.224 112.173 260.336 112.605 260.336 113.1C260.336 113.371 260.289 113.646 260.196 113.925C260.107 114.2 259.983 114.475 259.822 114.75C259.665 115.026 259.481 115.296 259.27 115.563C259.062 115.83 258.84 116.092 258.603 116.35L256.127 119.035H260.761ZM263.186 119.016H263.307C263.984 119.016 264.534 118.921 264.957 118.73C265.38 118.54 265.706 118.284 265.935 117.962C266.163 117.641 266.32 117.279 266.404 116.877C266.489 116.471 266.531 116.054 266.531 115.626V114.211C266.531 113.792 266.483 113.42 266.385 113.094C266.292 112.768 266.161 112.495 265.992 112.275C265.827 112.055 265.638 111.888 265.427 111.773C265.215 111.659 264.991 111.602 264.754 111.602C264.483 111.602 264.24 111.657 264.024 111.767C263.812 111.873 263.632 112.023 263.484 112.218C263.34 112.412 263.23 112.641 263.154 112.903C263.078 113.166 263.04 113.451 263.04 113.76C263.04 114.035 263.074 114.302 263.142 114.56C263.209 114.818 263.313 115.051 263.453 115.258C263.592 115.466 263.766 115.631 263.973 115.753C264.185 115.872 264.432 115.931 264.716 115.931C264.978 115.931 265.224 115.88 265.452 115.779C265.685 115.673 265.89 115.531 266.068 115.354C266.25 115.172 266.394 114.966 266.5 114.738C266.61 114.509 266.673 114.27 266.69 114.021H267.249C267.249 114.372 267.179 114.719 267.039 115.062C266.904 115.4 266.713 115.709 266.468 115.988C266.222 116.268 265.935 116.492 265.604 116.661C265.274 116.826 264.915 116.909 264.525 116.909C264.068 116.909 263.673 116.82 263.338 116.642C263.004 116.464 262.729 116.227 262.513 115.931C262.302 115.635 262.143 115.305 262.037 114.941C261.936 114.573 261.885 114.2 261.885 113.824C261.885 113.384 261.946 112.971 262.069 112.586C262.192 112.201 262.374 111.862 262.615 111.57C262.856 111.274 263.154 111.043 263.51 110.878C263.869 110.713 264.284 110.631 264.754 110.631C265.283 110.631 265.734 110.737 266.106 110.948C266.478 111.16 266.781 111.443 267.014 111.799C267.251 112.154 267.424 112.554 267.534 112.999C267.644 113.443 267.699 113.9 267.699 114.37V114.795C267.699 115.273 267.667 115.76 267.604 116.255C267.545 116.746 267.428 117.215 267.255 117.664C267.086 118.113 266.838 118.515 266.512 118.87C266.186 119.221 265.761 119.501 265.236 119.708C264.716 119.911 264.073 120.013 263.307 120.013H263.186V119.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M231.858 134.492V144.5H230.594V136.071L228.044 137.001V135.859L231.66 134.492H231.858ZM242.304 141.15V142.189H235.112V141.444L239.569 134.547H240.602L239.494 136.543L236.548 141.15H242.304ZM240.916 134.547V144.5H239.651V134.547H240.916Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M256.048 138.901H256.95C257.392 138.901 257.757 138.828 258.044 138.683C258.336 138.532 258.552 138.329 258.693 138.074C258.839 137.814 258.912 137.523 258.912 137.199C258.912 136.816 258.848 136.495 258.721 136.235C258.593 135.976 258.402 135.78 258.146 135.647C257.891 135.515 257.568 135.449 257.176 135.449C256.82 135.449 256.506 135.52 256.232 135.661C255.964 135.798 255.752 135.994 255.597 136.249C255.446 136.504 255.371 136.805 255.371 137.151H254.106C254.106 136.646 254.234 136.185 254.489 135.771C254.744 135.356 255.102 135.025 255.562 134.779C256.027 134.533 256.565 134.41 257.176 134.41C257.777 134.41 258.304 134.517 258.755 134.731C259.206 134.941 259.557 135.256 259.808 135.675C260.058 136.09 260.184 136.607 260.184 137.227C260.184 137.477 260.124 137.746 260.006 138.033C259.892 138.316 259.712 138.58 259.466 138.826C259.224 139.072 258.91 139.275 258.522 139.435C258.135 139.59 257.67 139.667 257.128 139.667H256.048V138.901ZM256.048 139.94V139.182H257.128C257.761 139.182 258.285 139.257 258.7 139.407C259.115 139.558 259.441 139.758 259.678 140.009C259.919 140.259 260.088 140.535 260.184 140.836C260.284 141.132 260.334 141.428 260.334 141.725C260.334 142.189 260.254 142.602 260.095 142.962C259.94 143.322 259.719 143.627 259.432 143.878C259.149 144.129 258.816 144.318 258.434 144.445C258.051 144.573 257.634 144.637 257.183 144.637C256.75 144.637 256.342 144.575 255.959 144.452C255.581 144.329 255.246 144.151 254.954 143.919C254.662 143.682 254.435 143.393 254.271 143.051C254.106 142.704 254.024 142.31 254.024 141.868H255.289C255.289 142.215 255.364 142.518 255.515 142.777C255.67 143.037 255.888 143.24 256.171 143.386C256.458 143.527 256.795 143.598 257.183 143.598C257.57 143.598 257.903 143.532 258.181 143.399C258.463 143.263 258.68 143.058 258.83 142.784C258.985 142.511 259.062 142.167 259.062 141.752C259.062 141.337 258.976 140.998 258.803 140.733C258.63 140.465 258.383 140.266 258.064 140.139C257.75 140.007 257.379 139.94 256.95 139.94H256.048ZM268.325 138.73V140.248C268.325 141.064 268.252 141.752 268.106 142.312C267.961 142.873 267.751 143.324 267.478 143.666C267.204 144.008 266.874 144.256 266.486 144.411C266.104 144.562 265.671 144.637 265.188 144.637C264.805 144.637 264.451 144.589 264.128 144.493C263.804 144.397 263.513 144.245 263.253 144.035C262.998 143.821 262.779 143.543 262.597 143.201C262.414 142.859 262.275 142.445 262.18 141.957C262.084 141.469 262.036 140.9 262.036 140.248V138.73C262.036 137.915 262.109 137.231 262.255 136.68C262.405 136.128 262.617 135.686 262.891 135.354C263.164 135.016 263.492 134.775 263.875 134.629C264.262 134.483 264.695 134.41 265.174 134.41C265.561 134.41 265.917 134.458 266.24 134.554C266.568 134.645 266.86 134.793 267.115 134.998C267.37 135.199 267.587 135.467 267.765 135.805C267.947 136.137 268.086 136.545 268.182 137.028C268.277 137.511 268.325 138.079 268.325 138.73ZM267.054 140.453V138.519C267.054 138.072 267.026 137.68 266.972 137.343C266.922 137.001 266.846 136.709 266.746 136.468C266.646 136.226 266.518 136.03 266.363 135.88C266.213 135.729 266.037 135.62 265.837 135.552C265.641 135.479 265.42 135.442 265.174 135.442C264.873 135.442 264.606 135.499 264.374 135.613C264.142 135.723 263.946 135.898 263.786 136.14C263.631 136.381 263.513 136.698 263.431 137.09C263.349 137.482 263.308 137.958 263.308 138.519V140.453C263.308 140.9 263.333 141.294 263.383 141.636C263.438 141.978 263.517 142.274 263.622 142.524C263.727 142.771 263.854 142.973 264.005 143.133C264.155 143.292 264.328 143.411 264.524 143.488C264.725 143.561 264.946 143.598 265.188 143.598C265.497 143.598 265.769 143.538 266.001 143.42C266.233 143.301 266.427 143.117 266.582 142.866C266.742 142.611 266.86 142.285 266.938 141.889C267.015 141.488 267.054 141.009 267.054 140.453Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1425"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1425"},(0,h.createElement)("rect",{width:"13",height:"13",fill:"white",transform:"translate(96 59)"})))),{ToolBarFields:ir,BlockName:or,BlockLabel:sr,BlockDescription:cr,BlockAdvancedValue:dr,AdvancedFields:mr,FieldWrapper:ur,FieldSettingsWrapper:pr,AdvancedInspectorControl:fr,ValidationToggleGroup:Vr,ValidationBlockMessage:Hr,ClientSideMacros:hr,AttributeHelp:br}=JetFBComponents,{useInsertMacro:Mr,useIsAdvancedValidation:Lr,useUniqueNameOnDuplicate:gr}=JetFBHooks,{__:Zr}=wp.i18n,{InspectorControls:yr,useBlockProps:Er}=wp.blockEditor,{TextControl:wr,ToggleControl:vr,PanelBody:_r,ExternalLink:kr}=wp.components,jr=JSON.parse('{"apiVersion":3,"name":"jet-forms/datetime-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","date"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Datetime Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"is_timestamp":{"type":"boolean","default":false},"min":{"type":"string","default":""},"max":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:xr}=wp.i18n,{createBlock:Fr}=wp.blocks,{name:Br,icon:Ar=""}=jr,Pr={className:Br.replace("/","-"),icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ar}}),description:xr("Type in the date and time manually following the input mask or choose the values from the calendar and timer.","jet-form-builder"),edit:function(e){const C=Er(),[t,l]=Mr("min"),[r,n]=Mr("max"),{attributes:a,setAttributes:i,isSelected:o,editProps:{uniqKey:s,attrHelp:c}}=e,d=Lr();if(gr(),a.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},ar);const m=(0,h.createElement)(h.Fragment,null,Zr("Plain date should be in yyyy-MM-ddThh:mm format.","jet-form-builder")," ",Zr("Or you can use","jet-form-builder")," ",(0,h.createElement)(kr,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},Zr("macros","jet-form-builder"))," ",Zr("and","jet-form-builder")," ",(0,h.createElement)(kr,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},Zr("filters","jet-form-builder")),".");return[(0,h.createElement)(ir,{key:s("ToolBarFields"),...e}),o&&(0,h.createElement)(yr,{key:s("InspectorControls")},(0,h.createElement)(_r,{title:Zr("General","jet-form-builder")},(0,h.createElement)(sr,null),(0,h.createElement)(or,null),(0,h.createElement)(cr,null)),(0,h.createElement)(_r,{title:Zr("Value","jet-form-builder")},(0,h.createElement)(dr,{help:m,style:{marginBottom:"1em"}}),(0,h.createElement)(hr,null,(0,h.createElement)(fr,{value:a.min,label:Zr("Starting from date","jet-form-builder"),onChangePreset:e=>i({min:e}),onChangeMacros:l},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(wr,{id:e,ref:t,className:"jet-fb m-unset",value:a.min,onChange:e=>i({min:e})}),(0,h.createElement)(br,null,m))),(0,h.createElement)(fr,{value:a.max,label:Zr("Limit dates to","jet-form-builder"),onChangePreset:e=>i({max:e}),onChangeMacros:n},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(wr,{id:e,ref:r,className:"jet-fb m-unset",value:a.max,onChange:e=>i({max:e})}),(0,h.createElement)(br,null,m))))),(0,h.createElement)(pr,{...e},(0,h.createElement)(vr,{key:s("is_timestamp"),label:Zr("Is Timestamp","jet-form-builder"),checked:a.is_timestamp,help:c("is_timestamp"),onChange:e=>{i({is_timestamp:Boolean(e)})}})),(0,h.createElement)(_r,{title:Zr("Validation","jet-form-builder")},(0,h.createElement)(Vr,null),d&&(0,h.createElement)(h.Fragment,null,Boolean(a.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Hr,{name:"date_min"})),Boolean(a.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Hr,{name:"date_max"})),(0,h.createElement)(Hr,{name:"empty"}))),(0,h.createElement)(mr,null)),(0,h.createElement)("div",{...C,key:s("viewBlock")},(0,h.createElement)(ur,{key:s("FieldWrapper"),...e},(0,h.createElement)(wr,{onChange:()=>{},className:"jet-form-builder__field-preview",key:s("place_holder_block"),placeholder:'Input type="datetime-local"'})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Fr("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/time-field","jet-forms/date-field"],transform:e=>Fr(Br,{...e}),priority:0}]}},Sr=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M0 0H298V144H0V0Z",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M23.5107 33.5439V37.1875C23.3877 37.3698 23.1917 37.5749 22.9229 37.8027C22.654 38.026 22.2826 38.222 21.8086 38.3906C21.3392 38.5547 20.7331 38.6367 19.9902 38.6367C19.3841 38.6367 18.8258 38.5319 18.3154 38.3223C17.8096 38.1081 17.3698 37.7982 16.9961 37.3926C16.627 36.9824 16.3398 36.4857 16.1348 35.9023C15.9342 35.3145 15.834 34.6491 15.834 33.9062V33.1338C15.834 32.391 15.9206 31.7279 16.0938 31.1445C16.2715 30.5612 16.5312 30.0667 16.873 29.6611C17.2148 29.251 17.6341 28.9411 18.1309 28.7314C18.6276 28.5173 19.1973 28.4102 19.8398 28.4102C20.6009 28.4102 21.2367 28.5423 21.7471 28.8066C22.262 29.0664 22.6631 29.4264 22.9502 29.8867C23.2419 30.347 23.4287 30.8711 23.5107 31.459H22.1914C22.1322 31.099 22.0137 30.7708 21.8359 30.4746C21.6628 30.1784 21.4144 29.9414 21.0908 29.7637C20.7673 29.5814 20.3503 29.4902 19.8398 29.4902C19.3796 29.4902 18.9808 29.5745 18.6436 29.7432C18.3063 29.9118 18.0283 30.1533 17.8096 30.4678C17.5908 30.7822 17.4268 31.1628 17.3174 31.6094C17.2126 32.056 17.1602 32.5596 17.1602 33.1201V33.9062C17.1602 34.4805 17.2262 34.9932 17.3584 35.4443C17.4951 35.8955 17.6888 36.2806 17.9395 36.5996C18.1901 36.9141 18.4886 37.1533 18.835 37.3174C19.1859 37.4814 19.5732 37.5635 19.9971 37.5635C20.4665 37.5635 20.847 37.5247 21.1387 37.4473C21.4303 37.3652 21.6582 37.2695 21.8223 37.1602C21.9863 37.0462 22.1117 36.9391 22.1982 36.8389V34.6104H19.8945V33.5439H23.5107ZM28.5762 38.6367C28.0612 38.6367 27.5941 38.5501 27.1748 38.377C26.7601 38.1992 26.4023 37.9508 26.1016 37.6318C25.8053 37.3128 25.5775 36.9346 25.418 36.4971C25.2585 36.0596 25.1787 35.5811 25.1787 35.0615V34.7744C25.1787 34.1729 25.2676 33.6374 25.4453 33.168C25.623 32.694 25.8646 32.293 26.1699 31.9648C26.4753 31.6367 26.8216 31.3883 27.209 31.2197C27.5964 31.0511 27.9974 30.9668 28.4121 30.9668C28.9408 30.9668 29.3965 31.0579 29.7793 31.2402C30.1667 31.4225 30.4834 31.6777 30.7295 32.0059C30.9756 32.3294 31.1579 32.7122 31.2764 33.1543C31.3949 33.5918 31.4541 34.0703 31.4541 34.5898V35.1572H25.9307V34.125H30.1895V34.0293C30.1712 33.7012 30.1029 33.3822 29.9844 33.0723C29.8704 32.7624 29.6882 32.5072 29.4375 32.3066C29.1868 32.1061 28.8451 32.0059 28.4121 32.0059C28.125 32.0059 27.8607 32.0674 27.6191 32.1904C27.3776 32.3089 27.1702 32.4867 26.9971 32.7236C26.8239 32.9606 26.6895 33.25 26.5938 33.5918C26.498 33.9336 26.4502 34.3278 26.4502 34.7744V35.0615C26.4502 35.4124 26.498 35.7428 26.5938 36.0527C26.694 36.3581 26.8376 36.627 27.0244 36.8594C27.2158 37.0918 27.446 37.2741 27.7148 37.4062C27.9883 37.5384 28.2982 37.6045 28.6445 37.6045C29.0911 37.6045 29.4694 37.5133 29.7793 37.3311C30.0892 37.1488 30.3604 36.9049 30.5928 36.5996L31.3584 37.208C31.1989 37.4495 30.9961 37.6797 30.75 37.8984C30.5039 38.1172 30.2008 38.2949 29.8408 38.4316C29.4854 38.5684 29.0638 38.6367 28.5762 38.6367ZM34.1953 32.6826V38.5H32.9307V31.1035H34.127L34.1953 32.6826ZM33.8945 34.5215L33.3682 34.501C33.3727 33.9951 33.4479 33.528 33.5938 33.0996C33.7396 32.6667 33.9447 32.2907 34.209 31.9717C34.4733 31.6527 34.7878 31.4066 35.1523 31.2334C35.5215 31.0557 35.9294 30.9668 36.376 30.9668C36.7406 30.9668 37.0687 31.0169 37.3604 31.1172C37.652 31.2129 37.9004 31.3678 38.1055 31.582C38.3151 31.7962 38.4746 32.0742 38.584 32.416C38.6934 32.7533 38.748 33.1657 38.748 33.6533V38.5H37.4766V33.6396C37.4766 33.2523 37.4196 32.9424 37.3057 32.71C37.1917 32.473 37.0254 32.3021 36.8066 32.1973C36.5879 32.0879 36.319 32.0332 36 32.0332C35.6855 32.0332 35.3984 32.0993 35.1387 32.2314C34.8835 32.3636 34.6624 32.5459 34.4756 32.7783C34.2933 33.0107 34.1497 33.2773 34.0449 33.5781C33.9447 33.8743 33.8945 34.1888 33.8945 34.5215ZM43.7383 38.6367C43.2233 38.6367 42.7562 38.5501 42.3369 38.377C41.9222 38.1992 41.5645 37.9508 41.2637 37.6318C40.9674 37.3128 40.7396 36.9346 40.5801 36.4971C40.4206 36.0596 40.3408 35.5811 40.3408 35.0615V34.7744C40.3408 34.1729 40.4297 33.6374 40.6074 33.168C40.7852 32.694 41.0267 32.293 41.332 31.9648C41.6374 31.6367 41.9837 31.3883 42.3711 31.2197C42.7585 31.0511 43.1595 30.9668 43.5742 30.9668C44.1029 30.9668 44.5586 31.0579 44.9414 31.2402C45.3288 31.4225 45.6455 31.6777 45.8916 32.0059C46.1377 32.3294 46.32 32.7122 46.4385 33.1543C46.557 33.5918 46.6162 34.0703 46.6162 34.5898V35.1572H41.0928V34.125H45.3516V34.0293C45.3333 33.7012 45.265 33.3822 45.1465 33.0723C45.0326 32.7624 44.8503 32.5072 44.5996 32.3066C44.349 32.1061 44.0072 32.0059 43.5742 32.0059C43.2871 32.0059 43.0228 32.0674 42.7812 32.1904C42.5397 32.3089 42.3324 32.4867 42.1592 32.7236C41.986 32.9606 41.8516 33.25 41.7559 33.5918C41.6602 33.9336 41.6123 34.3278 41.6123 34.7744V35.0615C41.6123 35.4124 41.6602 35.7428 41.7559 36.0527C41.8561 36.3581 41.9997 36.627 42.1865 36.8594C42.3779 37.0918 42.6081 37.2741 42.877 37.4062C43.1504 37.5384 43.4603 37.6045 43.8066 37.6045C44.2533 37.6045 44.6315 37.5133 44.9414 37.3311C45.2513 37.1488 45.5225 36.9049 45.7549 36.5996L46.5205 37.208C46.361 37.4495 46.1582 37.6797 45.9121 37.8984C45.666 38.1172 45.363 38.2949 45.0029 38.4316C44.6475 38.5684 44.2259 38.6367 43.7383 38.6367ZM49.3574 32.2656V38.5H48.0928V31.1035H49.3232L49.3574 32.2656ZM51.668 31.0625L51.6611 32.2383C51.5563 32.2155 51.4561 32.2018 51.3604 32.1973C51.2692 32.1882 51.1644 32.1836 51.0459 32.1836C50.7542 32.1836 50.4967 32.2292 50.2734 32.3203C50.0501 32.4115 49.861 32.5391 49.7061 32.7031C49.5511 32.8672 49.4281 33.0632 49.3369 33.291C49.2503 33.5143 49.1934 33.7604 49.166 34.0293L48.8105 34.2344C48.8105 33.7878 48.8538 33.3685 48.9404 32.9766C49.0316 32.5846 49.1706 32.2383 49.3574 31.9375C49.5443 31.6322 49.7812 31.3952 50.0684 31.2266C50.36 31.0534 50.7064 30.9668 51.1074 30.9668C51.1986 30.9668 51.3034 30.9782 51.4219 31.001C51.5404 31.0192 51.6224 31.0397 51.668 31.0625ZM56.9248 37.2354V33.4277C56.9248 33.1361 56.8656 32.8831 56.7471 32.6689C56.6331 32.4502 56.46 32.2816 56.2275 32.1631C55.9951 32.0446 55.708 31.9854 55.3662 31.9854C55.0472 31.9854 54.7669 32.04 54.5254 32.1494C54.2884 32.2588 54.1016 32.4023 53.9648 32.5801C53.8327 32.7578 53.7666 32.9492 53.7666 33.1543H52.502C52.502 32.89 52.5703 32.6279 52.707 32.3682C52.8438 32.1084 53.0397 31.8737 53.2949 31.6641C53.5547 31.4499 53.8646 31.2812 54.2246 31.1582C54.5892 31.0306 54.9948 30.9668 55.4414 30.9668C55.9792 30.9668 56.4531 31.0579 56.8633 31.2402C57.278 31.4225 57.6016 31.6982 57.834 32.0674C58.071 32.432 58.1895 32.89 58.1895 33.4414V36.8867C58.1895 37.1328 58.21 37.3949 58.251 37.6729C58.2965 37.9508 58.3626 38.1901 58.4492 38.3906V38.5H57.1299C57.0661 38.3542 57.016 38.1605 56.9795 37.9189C56.943 37.6729 56.9248 37.445 56.9248 37.2354ZM57.1436 34.0156L57.1572 34.9043H55.8789C55.5189 34.9043 55.1976 34.9339 54.915 34.9932C54.6325 35.0479 54.3955 35.1322 54.2041 35.2461C54.0127 35.36 53.8669 35.5036 53.7666 35.6768C53.6663 35.8454 53.6162 36.0436 53.6162 36.2715C53.6162 36.5039 53.6686 36.7158 53.7734 36.9072C53.8783 37.0986 54.0355 37.2513 54.2451 37.3652C54.4593 37.4746 54.7214 37.5293 55.0312 37.5293C55.4186 37.5293 55.7604 37.4473 56.0566 37.2832C56.3529 37.1191 56.5876 36.9186 56.7607 36.6816C56.9385 36.4447 57.0342 36.2145 57.0479 35.9912L57.5879 36.5996C57.556 36.791 57.4694 37.0029 57.3281 37.2354C57.1868 37.4678 56.9977 37.6911 56.7607 37.9053C56.5283 38.1149 56.2503 38.2904 55.9268 38.4316C55.6077 38.5684 55.2477 38.6367 54.8467 38.6367C54.3454 38.6367 53.9056 38.5387 53.5273 38.3428C53.1536 38.1468 52.862 37.8848 52.6523 37.5566C52.4473 37.224 52.3447 36.8525 52.3447 36.4424C52.3447 36.0459 52.4222 35.6973 52.5771 35.3965C52.7321 35.0911 52.9554 34.8382 53.2471 34.6377C53.5387 34.4326 53.8896 34.2777 54.2998 34.1729C54.71 34.068 55.168 34.0156 55.6738 34.0156H57.1436ZM61.5527 28V38.5H60.2812V28H61.5527ZM68.4297 31.1035V38.5H67.1582V31.1035H68.4297ZM67.0625 29.1416C67.0625 28.9365 67.124 28.7633 67.2471 28.6221C67.3747 28.4808 67.5615 28.4102 67.8076 28.4102C68.0492 28.4102 68.2337 28.4808 68.3613 28.6221C68.4935 28.7633 68.5596 28.9365 68.5596 29.1416C68.5596 29.3376 68.4935 29.5062 68.3613 29.6475C68.2337 29.7842 68.0492 29.8525 67.8076 29.8525C67.5615 29.8525 67.3747 29.7842 67.2471 29.6475C67.124 29.5062 67.0625 29.3376 67.0625 29.1416ZM71.7246 32.6826V38.5H70.46V31.1035H71.6562L71.7246 32.6826ZM71.4238 34.5215L70.8975 34.501C70.902 33.9951 70.9772 33.528 71.123 33.0996C71.2689 32.6667 71.474 32.2907 71.7383 31.9717C72.0026 31.6527 72.3171 31.4066 72.6816 31.2334C73.0508 31.0557 73.4587 30.9668 73.9053 30.9668C74.2699 30.9668 74.598 31.0169 74.8896 31.1172C75.1813 31.2129 75.4297 31.3678 75.6348 31.582C75.8444 31.7962 76.0039 32.0742 76.1133 32.416C76.2227 32.7533 76.2773 33.1657 76.2773 33.6533V38.5H75.0059V33.6396C75.0059 33.2523 74.9489 32.9424 74.835 32.71C74.721 32.473 74.5547 32.3021 74.3359 32.1973C74.1172 32.0879 73.8483 32.0332 73.5293 32.0332C73.2148 32.0332 72.9277 32.0993 72.668 32.2314C72.4128 32.3636 72.1917 32.5459 72.0049 32.7783C71.8226 33.0107 71.679 33.2773 71.5742 33.5781C71.474 33.8743 71.4238 34.1888 71.4238 34.5215ZM80.085 38.5H78.8203V30.3242C78.8203 29.791 78.916 29.3421 79.1074 28.9775C79.3034 28.6084 79.5837 28.3304 79.9482 28.1436C80.3128 27.9521 80.7458 27.8564 81.2471 27.8564C81.3929 27.8564 81.5387 27.8656 81.6846 27.8838C81.835 27.902 81.9808 27.9294 82.1221 27.9658L82.0537 28.998C81.958 28.9753 81.8486 28.9593 81.7256 28.9502C81.6071 28.9411 81.4886 28.9365 81.3701 28.9365C81.1012 28.9365 80.8688 28.9912 80.6729 29.1006C80.4814 29.2054 80.3356 29.3604 80.2354 29.5654C80.1351 29.7705 80.085 30.0234 80.085 30.3242V38.5ZM81.6572 31.1035V32.0742H77.6514V31.1035H81.6572ZM82.7305 34.8838V34.7266C82.7305 34.1934 82.8079 33.6989 82.9629 33.2432C83.1178 32.7829 83.3411 32.3841 83.6328 32.0469C83.9245 31.7051 84.2777 31.4408 84.6924 31.2539C85.1071 31.0625 85.5719 30.9668 86.0869 30.9668C86.6064 30.9668 87.0736 31.0625 87.4883 31.2539C87.9076 31.4408 88.263 31.7051 88.5547 32.0469C88.8509 32.3841 89.0765 32.7829 89.2314 33.2432C89.3864 33.6989 89.4639 34.1934 89.4639 34.7266V34.8838C89.4639 35.417 89.3864 35.9115 89.2314 36.3672C89.0765 36.8229 88.8509 37.2217 88.5547 37.5635C88.263 37.9007 87.9098 38.165 87.4951 38.3564C87.085 38.5433 86.6201 38.6367 86.1006 38.6367C85.5811 38.6367 85.1139 38.5433 84.6992 38.3564C84.2845 38.165 83.929 37.9007 83.6328 37.5635C83.3411 37.2217 83.1178 36.8229 82.9629 36.3672C82.8079 35.9115 82.7305 35.417 82.7305 34.8838ZM83.9951 34.7266V34.8838C83.9951 35.2529 84.0384 35.6016 84.125 35.9297C84.2116 36.2533 84.3415 36.5404 84.5146 36.791C84.6924 37.0417 84.9134 37.2399 85.1777 37.3857C85.4421 37.527 85.7497 37.5977 86.1006 37.5977C86.4469 37.5977 86.75 37.527 87.0098 37.3857C87.2741 37.2399 87.4928 37.0417 87.666 36.791C87.8392 36.5404 87.9691 36.2533 88.0557 35.9297C88.1468 35.6016 88.1924 35.2529 88.1924 34.8838V34.7266C88.1924 34.362 88.1468 34.0179 88.0557 33.6943C87.9691 33.3662 87.8369 33.0768 87.6592 32.8262C87.486 32.571 87.2673 32.3704 87.0029 32.2246C86.7432 32.0788 86.4378 32.0059 86.0869 32.0059C85.7406 32.0059 85.4352 32.0788 85.1709 32.2246C84.9111 32.3704 84.6924 32.571 84.5146 32.8262C84.3415 33.0768 84.2116 33.3662 84.125 33.6943C84.0384 34.0179 83.9951 34.362 83.9951 34.7266ZM92.3145 32.2656V38.5H91.0498V31.1035H92.2803L92.3145 32.2656ZM94.625 31.0625L94.6182 32.2383C94.5133 32.2155 94.4131 32.2018 94.3174 32.1973C94.2262 32.1882 94.1214 32.1836 94.0029 32.1836C93.7113 32.1836 93.4538 32.2292 93.2305 32.3203C93.0072 32.4115 92.818 32.5391 92.6631 32.7031C92.5081 32.8672 92.3851 33.0632 92.2939 33.291C92.2074 33.5143 92.1504 33.7604 92.123 34.0293L91.7676 34.2344C91.7676 33.7878 91.8109 33.3685 91.8975 32.9766C91.9886 32.5846 92.1276 32.2383 92.3145 31.9375C92.5013 31.6322 92.7383 31.3952 93.0254 31.2266C93.3171 31.0534 93.6634 30.9668 94.0645 30.9668C94.1556 30.9668 94.2604 30.9782 94.3789 31.001C94.4974 31.0192 94.5794 31.0397 94.625 31.0625ZM97.0518 32.5732V38.5H95.7803V31.1035H96.9834L97.0518 32.5732ZM96.792 34.5215L96.2041 34.501C96.2087 33.9951 96.2747 33.528 96.4023 33.0996C96.5299 32.6667 96.7191 32.2907 96.9697 31.9717C97.2204 31.6527 97.5326 31.4066 97.9062 31.2334C98.2799 31.0557 98.7129 30.9668 99.2051 30.9668C99.5514 30.9668 99.8704 31.0169 100.162 31.1172C100.454 31.2129 100.707 31.3656 100.921 31.5752C101.135 31.7848 101.301 32.0537 101.42 32.3818C101.538 32.71 101.598 33.1064 101.598 33.5713V38.5H100.333V33.6328C100.333 33.2454 100.267 32.9355 100.135 32.7031C100.007 32.4707 99.8249 32.3021 99.5879 32.1973C99.3509 32.0879 99.0729 32.0332 98.7539 32.0332C98.3802 32.0332 98.068 32.0993 97.8174 32.2314C97.5667 32.3636 97.3662 32.5459 97.2158 32.7783C97.0654 33.0107 96.9561 33.2773 96.8877 33.5781C96.8239 33.8743 96.792 34.1888 96.792 34.5215ZM101.584 33.8242L100.736 34.084C100.741 33.6784 100.807 33.2887 100.935 32.915C101.067 32.5413 101.256 32.2087 101.502 31.917C101.753 31.6253 102.06 31.3952 102.425 31.2266C102.789 31.0534 103.206 30.9668 103.676 30.9668C104.072 30.9668 104.423 31.0192 104.729 31.124C105.038 31.2288 105.298 31.3906 105.508 31.6094C105.722 31.8236 105.884 32.0993 105.993 32.4365C106.103 32.7738 106.157 33.1748 106.157 33.6396V38.5H104.886V33.626C104.886 33.2113 104.82 32.89 104.688 32.6621C104.56 32.4297 104.378 32.2679 104.141 32.1768C103.908 32.0811 103.63 32.0332 103.307 32.0332C103.029 32.0332 102.783 32.0811 102.568 32.1768C102.354 32.2725 102.174 32.4046 102.028 32.5732C101.882 32.7373 101.771 32.9264 101.693 33.1406C101.62 33.3548 101.584 33.5827 101.584 33.8242ZM112.433 37.2354V33.4277C112.433 33.1361 112.373 32.8831 112.255 32.6689C112.141 32.4502 111.968 32.2816 111.735 32.1631C111.503 32.0446 111.216 31.9854 110.874 31.9854C110.555 31.9854 110.275 32.04 110.033 32.1494C109.796 32.2588 109.609 32.4023 109.473 32.5801C109.34 32.7578 109.274 32.9492 109.274 33.1543H108.01C108.01 32.89 108.078 32.6279 108.215 32.3682C108.352 32.1084 108.548 31.8737 108.803 31.6641C109.062 31.4499 109.372 31.2812 109.732 31.1582C110.097 31.0306 110.503 30.9668 110.949 30.9668C111.487 30.9668 111.961 31.0579 112.371 31.2402C112.786 31.4225 113.109 31.6982 113.342 32.0674C113.579 32.432 113.697 32.89 113.697 33.4414V36.8867C113.697 37.1328 113.718 37.3949 113.759 37.6729C113.804 37.9508 113.87 38.1901 113.957 38.3906V38.5H112.638C112.574 38.3542 112.524 38.1605 112.487 37.9189C112.451 37.6729 112.433 37.445 112.433 37.2354ZM112.651 34.0156L112.665 34.9043H111.387C111.027 34.9043 110.705 34.9339 110.423 34.9932C110.14 35.0479 109.903 35.1322 109.712 35.2461C109.521 35.36 109.375 35.5036 109.274 35.6768C109.174 35.8454 109.124 36.0436 109.124 36.2715C109.124 36.5039 109.176 36.7158 109.281 36.9072C109.386 37.0986 109.543 37.2513 109.753 37.3652C109.967 37.4746 110.229 37.5293 110.539 37.5293C110.926 37.5293 111.268 37.4473 111.564 37.2832C111.861 37.1191 112.095 36.9186 112.269 36.6816C112.446 36.4447 112.542 36.2145 112.556 35.9912L113.096 36.5996C113.064 36.791 112.977 37.0029 112.836 37.2354C112.695 37.4678 112.506 37.6911 112.269 37.9053C112.036 38.1149 111.758 38.2904 111.435 38.4316C111.116 38.5684 110.756 38.6367 110.354 38.6367C109.853 38.6367 109.413 38.5387 109.035 38.3428C108.661 38.1468 108.37 37.8848 108.16 37.5566C107.955 37.224 107.853 36.8525 107.853 36.4424C107.853 36.0459 107.93 35.6973 108.085 35.3965C108.24 35.0911 108.463 34.8382 108.755 34.6377C109.047 34.4326 109.397 34.2777 109.808 34.1729C110.218 34.068 110.676 34.0156 111.182 34.0156H112.651ZM118.783 31.1035V32.0742H114.784V31.1035H118.783ZM116.138 29.3057H117.402V36.668C117.402 36.9186 117.441 37.1077 117.519 37.2354C117.596 37.363 117.696 37.4473 117.819 37.4883C117.942 37.5293 118.075 37.5498 118.216 37.5498C118.321 37.5498 118.43 37.5407 118.544 37.5225C118.662 37.4997 118.751 37.4814 118.811 37.4678L118.817 38.5C118.717 38.5319 118.585 38.5615 118.421 38.5889C118.261 38.6208 118.068 38.6367 117.84 38.6367C117.53 38.6367 117.245 38.5752 116.985 38.4521C116.726 38.3291 116.518 38.124 116.363 37.8369C116.213 37.5452 116.138 37.1533 116.138 36.6611V29.3057ZM121.641 31.1035V38.5H120.369V31.1035H121.641ZM120.273 29.1416C120.273 28.9365 120.335 28.7633 120.458 28.6221C120.586 28.4808 120.772 28.4102 121.019 28.4102C121.26 28.4102 121.445 28.4808 121.572 28.6221C121.704 28.7633 121.771 28.9365 121.771 29.1416C121.771 29.3376 121.704 29.5062 121.572 29.6475C121.445 29.7842 121.26 29.8525 121.019 29.8525C120.772 29.8525 120.586 29.7842 120.458 29.6475C120.335 29.5062 120.273 29.3376 120.273 29.1416ZM123.336 34.8838V34.7266C123.336 34.1934 123.413 33.6989 123.568 33.2432C123.723 32.7829 123.947 32.3841 124.238 32.0469C124.53 31.7051 124.883 31.4408 125.298 31.2539C125.713 31.0625 126.177 30.9668 126.692 30.9668C127.212 30.9668 127.679 31.0625 128.094 31.2539C128.513 31.4408 128.868 31.7051 129.16 32.0469C129.456 32.3841 129.682 32.7829 129.837 33.2432C129.992 33.6989 130.069 34.1934 130.069 34.7266V34.8838C130.069 35.417 129.992 35.9115 129.837 36.3672C129.682 36.8229 129.456 37.2217 129.16 37.5635C128.868 37.9007 128.515 38.165 128.101 38.3564C127.69 38.5433 127.226 38.6367 126.706 38.6367C126.187 38.6367 125.719 38.5433 125.305 38.3564C124.89 38.165 124.535 37.9007 124.238 37.5635C123.947 37.2217 123.723 36.8229 123.568 36.3672C123.413 35.9115 123.336 35.417 123.336 34.8838ZM124.601 34.7266V34.8838C124.601 35.2529 124.644 35.6016 124.73 35.9297C124.817 36.2533 124.947 36.5404 125.12 36.791C125.298 37.0417 125.519 37.2399 125.783 37.3857C126.048 37.527 126.355 37.5977 126.706 37.5977C127.052 37.5977 127.355 37.527 127.615 37.3857C127.88 37.2399 128.098 37.0417 128.271 36.791C128.445 36.5404 128.575 36.2533 128.661 35.9297C128.752 35.6016 128.798 35.2529 128.798 34.8838V34.7266C128.798 34.362 128.752 34.0179 128.661 33.6943C128.575 33.3662 128.442 33.0768 128.265 32.8262C128.091 32.571 127.873 32.3704 127.608 32.2246C127.349 32.0788 127.043 32.0059 126.692 32.0059C126.346 32.0059 126.041 32.0788 125.776 32.2246C125.517 32.3704 125.298 32.571 125.12 32.8262C124.947 33.0768 124.817 33.3662 124.73 33.6943C124.644 34.0179 124.601 34.362 124.601 34.7266ZM132.92 32.6826V38.5H131.655V31.1035H132.852L132.92 32.6826ZM132.619 34.5215L132.093 34.501C132.097 33.9951 132.173 33.528 132.318 33.0996C132.464 32.6667 132.669 32.2907 132.934 31.9717C133.198 31.6527 133.512 31.4066 133.877 31.2334C134.246 31.0557 134.654 30.9668 135.101 30.9668C135.465 30.9668 135.793 31.0169 136.085 31.1172C136.377 31.2129 136.625 31.3678 136.83 31.582C137.04 31.7962 137.199 32.0742 137.309 32.416C137.418 32.7533 137.473 33.1657 137.473 33.6533V38.5H136.201V33.6396C136.201 33.2523 136.144 32.9424 136.03 32.71C135.916 32.473 135.75 32.3021 135.531 32.1973C135.312 32.0879 135.044 32.0332 134.725 32.0332C134.41 32.0332 134.123 32.0993 133.863 32.2314C133.608 32.3636 133.387 32.5459 133.2 32.7783C133.018 33.0107 132.874 33.2773 132.77 33.5781C132.669 33.8743 132.619 34.1888 132.619 34.5215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15.5",y:"47",width:"267",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("path",{d:"M27.3867 56.7578V66H26.1616V56.7578H27.3867ZM30.6113 60.5981V66H29.437V59.1318H30.5479L30.6113 60.5981ZM30.332 62.3057L29.8433 62.2866C29.8475 61.8169 29.9173 61.3831 30.0527 60.9854C30.1882 60.5833 30.3786 60.2342 30.624 59.938C30.8695 59.6418 31.1615 59.4132 31.5 59.2524C31.8428 59.0874 32.2215 59.0049 32.6362 59.0049C32.9748 59.0049 33.2795 59.0514 33.5503 59.1445C33.8211 59.2334 34.0518 59.3773 34.2422 59.5762C34.4368 59.7751 34.585 60.0332 34.6865 60.3506C34.7881 60.6637 34.8389 61.0467 34.8389 61.4995V66H33.6582V61.4868C33.6582 61.1271 33.6053 60.8394 33.4995 60.6235C33.3937 60.4035 33.2393 60.2448 33.0361 60.1475C32.833 60.0459 32.5833 59.9951 32.2871 59.9951C31.9951 59.9951 31.7285 60.0565 31.4873 60.1792C31.2503 60.3019 31.0451 60.4712 30.8716 60.687C30.7023 60.9028 30.569 61.1504 30.4717 61.4297C30.3786 61.7048 30.332 61.9967 30.332 62.3057ZM37.7969 60.4521V68.6406H36.6162V59.1318H37.6953L37.7969 60.4521ZM42.4243 62.5088V62.6421C42.4243 63.1414 42.3651 63.6048 42.2466 64.0322C42.1281 64.4554 41.9546 64.8236 41.7261 65.1367C41.5018 65.4499 41.2246 65.6932 40.8945 65.8667C40.5645 66.0402 40.1857 66.127 39.7583 66.127C39.3224 66.127 38.9373 66.055 38.603 65.9111C38.2687 65.7673 37.9852 65.5578 37.7524 65.2827C37.5197 65.0076 37.3335 64.6776 37.1938 64.2925C37.0584 63.9074 36.9653 63.4736 36.9146 62.9912V62.2803C36.9653 61.7725 37.0605 61.3175 37.2002 60.9155C37.3398 60.5135 37.5239 60.1707 37.7524 59.8872C37.9852 59.5994 38.2666 59.3815 38.5967 59.2334C38.9268 59.0811 39.3076 59.0049 39.7393 59.0049C40.1709 59.0049 40.5539 59.0895 40.8882 59.2588C41.2225 59.4238 41.5039 59.6608 41.7324 59.9697C41.9609 60.2786 42.1323 60.6489 42.2466 61.0806C42.3651 61.508 42.4243 61.984 42.4243 62.5088ZM41.2437 62.6421V62.5088C41.2437 62.166 41.2077 61.8444 41.1357 61.5439C41.0638 61.2393 40.9517 60.9727 40.7993 60.7441C40.6512 60.5114 40.4608 60.3294 40.228 60.1982C39.9953 60.0628 39.7181 59.9951 39.3965 59.9951C39.1003 59.9951 38.8421 60.0459 38.6221 60.1475C38.4062 60.249 38.2222 60.3866 38.0698 60.5601C37.9175 60.7293 37.7926 60.924 37.6953 61.144C37.6022 61.3599 37.5324 61.5841 37.4858 61.8169V63.4609C37.5705 63.7572 37.689 64.0365 37.8413 64.2988C37.9937 64.557 38.1968 64.7664 38.4507 64.9272C38.7046 65.0838 39.0241 65.1621 39.4092 65.1621C39.7266 65.1621 39.9995 65.0965 40.228 64.9653C40.4608 64.8299 40.6512 64.6458 40.7993 64.4131C40.9517 64.1803 41.0638 63.9137 41.1357 63.6133C41.2077 63.3086 41.2437 62.9849 41.2437 62.6421ZM48.1245 64.4131V59.1318H49.3052V66H48.1816L48.1245 64.4131ZM48.3467 62.9658L48.8354 62.9531C48.8354 63.4102 48.7868 63.8333 48.6895 64.2227C48.5964 64.6077 48.444 64.9421 48.2324 65.2256C48.0208 65.5091 47.7437 65.7313 47.4009 65.8921C47.0581 66.0487 46.6413 66.127 46.1504 66.127C45.8161 66.127 45.5093 66.0783 45.23 65.981C44.9549 65.8836 44.7179 65.7334 44.519 65.5303C44.3201 65.3271 44.1657 65.0627 44.0557 64.7368C43.9499 64.411 43.897 64.0195 43.897 63.5625V59.1318H45.0713V63.5752C45.0713 63.8841 45.1051 64.1401 45.1729 64.3433C45.2448 64.5422 45.34 64.7008 45.4585 64.8193C45.5812 64.9336 45.7166 65.014 45.8647 65.0605C46.0171 65.1071 46.1737 65.1304 46.3345 65.1304C46.8338 65.1304 47.2295 65.0352 47.5215 64.8447C47.8135 64.6501 48.0229 64.3898 48.1499 64.064C48.2811 63.7339 48.3467 63.3678 48.3467 62.9658ZM53.9707 59.1318V60.0332H50.2573V59.1318H53.9707ZM51.5142 57.4624H52.6885V64.2988C52.6885 64.5316 52.7244 64.7072 52.7964 64.8257C52.8683 64.9442 52.9614 65.0225 53.0757 65.0605C53.1899 65.0986 53.3127 65.1177 53.4438 65.1177C53.5412 65.1177 53.6427 65.1092 53.7485 65.0923C53.8586 65.0711 53.9411 65.0542 53.9961 65.0415L54.0024 66C53.9093 66.0296 53.7866 66.0571 53.6343 66.0825C53.4862 66.1121 53.3063 66.127 53.0947 66.127C52.807 66.127 52.5425 66.0698 52.3013 65.9556C52.0601 65.8413 51.8675 65.6509 51.7236 65.3843C51.584 65.1134 51.5142 64.7495 51.5142 64.2925V57.4624ZM60.1406 66H58.9663V58.5352C58.9663 58.0146 59.0679 57.5745 59.271 57.2148C59.4741 56.8551 59.764 56.5822 60.1406 56.396C60.5173 56.2098 60.9637 56.1167 61.48 56.1167C61.7847 56.1167 62.083 56.1548 62.375 56.231C62.667 56.3029 62.9674 56.3939 63.2764 56.5039L63.0796 57.4941C62.8849 57.418 62.6585 57.346 62.4004 57.2783C62.1465 57.2064 61.8672 57.1704 61.5625 57.1704C61.0589 57.1704 60.695 57.2847 60.4707 57.5132C60.2507 57.7375 60.1406 58.0781 60.1406 58.5352V66ZM61.5435 59.1318V60.0332H57.8809V59.1318H61.5435ZM63.854 59.1318V66H62.6797V59.1318H63.854ZM68.6338 66.127C68.1556 66.127 67.7218 66.0465 67.3325 65.8857C66.9474 65.7207 66.6152 65.4901 66.3359 65.1938C66.0609 64.8976 65.8493 64.5464 65.7012 64.1401C65.5531 63.7339 65.479 63.2896 65.479 62.8071V62.5405C65.479 61.9819 65.5615 61.4847 65.7266 61.0488C65.8916 60.6087 66.1159 60.2363 66.3994 59.9316C66.6829 59.627 67.0046 59.3963 67.3643 59.2397C67.724 59.0832 68.0964 59.0049 68.4814 59.0049C68.9723 59.0049 69.3955 59.0895 69.751 59.2588C70.1107 59.4281 70.4048 59.665 70.6333 59.9697C70.8618 60.2702 71.0311 60.6257 71.1411 61.0361C71.2511 61.4424 71.3062 61.8867 71.3062 62.3691V62.896H66.1772V61.9375H70.1318V61.8486C70.1149 61.5439 70.0514 61.2477 69.9414 60.96C69.8356 60.6722 69.6663 60.4352 69.4336 60.249C69.2008 60.0628 68.8835 59.9697 68.4814 59.9697C68.2148 59.9697 67.9694 60.0269 67.7451 60.1411C67.5208 60.2511 67.3283 60.4162 67.1675 60.6362C67.0067 60.8563 66.8818 61.125 66.793 61.4424C66.7041 61.7598 66.6597 62.1258 66.6597 62.5405V62.8071C66.6597 63.133 66.7041 63.4398 66.793 63.7275C66.8861 64.0111 67.0194 64.2607 67.1929 64.4766C67.3706 64.6924 67.5843 64.8617 67.834 64.9844C68.0879 65.1071 68.3757 65.1685 68.6973 65.1685C69.112 65.1685 69.4632 65.0838 69.751 64.9146C70.0387 64.7453 70.2905 64.5189 70.5063 64.2354L71.2173 64.8003C71.0692 65.0246 70.8809 65.2383 70.6523 65.4414C70.4238 65.6445 70.1424 65.8096 69.8081 65.9365C69.478 66.0635 69.0866 66.127 68.6338 66.127ZM73.9531 56.25V66H72.7725V56.25H73.9531ZM80.1675 64.667V56.25H81.3481V66H80.269L80.1675 64.667ZM75.5464 62.6421V62.5088C75.5464 61.984 75.6099 61.508 75.7368 61.0806C75.868 60.6489 76.0521 60.2786 76.2891 59.9697C76.5303 59.6608 76.8159 59.4238 77.146 59.2588C77.4803 59.0895 77.8527 59.0049 78.2632 59.0049C78.6948 59.0049 79.0715 59.0811 79.3931 59.2334C79.7189 59.3815 79.994 59.5994 80.2183 59.8872C80.4468 60.1707 80.6266 60.5135 80.7578 60.9155C80.889 61.3175 80.98 61.7725 81.0308 62.2803V62.8643C80.9842 63.3678 80.8932 63.8206 80.7578 64.2227C80.6266 64.6247 80.4468 64.9674 80.2183 65.251C79.994 65.5345 79.7189 65.7524 79.3931 65.9048C79.0672 66.0529 78.6864 66.127 78.2505 66.127C77.8485 66.127 77.4803 66.0402 77.146 65.8667C76.8159 65.6932 76.5303 65.4499 76.2891 65.1367C76.0521 64.8236 75.868 64.4554 75.7368 64.0322C75.6099 63.6048 75.5464 63.1414 75.5464 62.6421ZM76.7271 62.5088V62.6421C76.7271 62.9849 76.7609 63.3065 76.8286 63.6069C76.9006 63.9074 77.0106 64.1719 77.1587 64.4004C77.3068 64.6289 77.4951 64.8088 77.7236 64.9399C77.9521 65.0669 78.2251 65.1304 78.5425 65.1304C78.9318 65.1304 79.2513 65.0479 79.501 64.8828C79.7549 64.7178 79.958 64.4998 80.1104 64.229C80.2627 63.9582 80.3812 63.6641 80.4658 63.3467V61.8169C80.415 61.5841 80.341 61.3599 80.2437 61.144C80.1506 60.924 80.0278 60.7293 79.8755 60.5601C79.7274 60.3866 79.5433 60.249 79.3232 60.1475C79.1074 60.0459 78.8514 59.9951 78.5552 59.9951C78.2336 59.9951 77.9564 60.0628 77.7236 60.1982C77.4951 60.3294 77.3068 60.5114 77.1587 60.7441C77.0106 60.9727 76.9006 61.2393 76.8286 61.5439C76.7609 61.8444 76.7271 62.166 76.7271 62.5088Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15.5",y:"47",width:"267",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M57.6997 107V97.9H60.9367C61.6344 97.9 62.2237 98.004 62.7047 98.212C63.1857 98.42 63.5497 98.7407 63.7967 99.174C64.0481 99.6073 64.1737 100.162 64.1737 100.838C64.1737 101.523 64.0502 102.088 63.8032 102.534C63.5562 102.976 63.1944 103.306 62.7177 103.522C62.2411 103.735 61.6604 103.841 60.9757 103.841H59.3637V107H57.6997ZM59.3637 102.45H60.7807C61.3484 102.45 61.7731 102.322 62.0547 102.066C62.3407 101.811 62.4837 101.41 62.4837 100.864C62.4837 100.318 62.3386 99.9193 62.0482 99.668C61.7622 99.4167 61.3267 99.291 60.7417 99.291H59.3637V102.45ZM65.0953 107V100.5H66.6033L66.6423 101.189C66.807 101.007 67.0388 100.825 67.3378 100.643C67.6368 100.461 67.964 100.37 68.3193 100.37C68.4233 100.37 68.5186 100.379 68.6053 100.396L68.4883 101.982C68.393 101.956 68.2976 101.939 68.2023 101.93C68.1113 101.921 68.0203 101.917 67.9293 101.917C67.6563 101.917 67.4071 101.98 67.1818 102.105C66.9565 102.231 66.7983 102.385 66.7073 102.567V107H65.0953ZM72.4051 107.13C71.6207 107.13 70.9664 106.974 70.4421 106.662C69.9221 106.346 69.5321 105.93 69.2721 105.414C69.0121 104.894 68.8821 104.326 68.8821 103.711C68.8821 103.117 69.0034 102.569 69.2461 102.066C69.4931 101.564 69.8527 101.161 70.3251 100.857C70.7974 100.55 71.3737 100.396 72.0541 100.396C72.6781 100.396 73.1981 100.524 73.6141 100.779C74.0301 101.035 74.3421 101.377 74.5501 101.806C74.7581 102.231 74.8621 102.701 74.8621 103.217C74.8621 103.36 74.8534 103.505 74.8361 103.652C74.8187 103.795 74.7927 103.945 74.7581 104.101H70.5591C70.6197 104.504 70.7454 104.831 70.9361 105.082C71.1311 105.329 71.3672 105.511 71.6446 105.628C71.9262 105.745 72.2274 105.804 72.5481 105.804C72.9251 105.804 73.2761 105.756 73.6011 105.661C73.9261 105.561 74.2251 105.431 74.4981 105.271L74.5761 106.636C74.3291 106.766 74.0214 106.881 73.6531 106.98C73.2847 107.08 72.8687 107.13 72.4051 107.13ZM70.5981 103.009H73.2241C73.2241 102.814 73.1872 102.619 73.1136 102.424C73.0399 102.225 72.9164 102.058 72.7431 101.923C72.5741 101.789 72.3444 101.722 72.0541 101.722C71.6381 101.722 71.3109 101.843 71.0726 102.086C70.8342 102.329 70.6761 102.636 70.5981 103.009ZM77.68 107L75.184 100.5H76.77L78.369 104.998L79.968 100.5H81.554L79.058 107H77.68ZM82.3482 107V100.5H83.9602V107H82.3482ZM82.3482 99.512V97.9H83.9602V99.512H82.3482ZM88.4223 107.13C87.716 107.13 87.1136 106.976 86.6153 106.668C86.117 106.361 85.7356 105.951 85.4713 105.44C85.2113 104.929 85.0813 104.37 85.0813 103.763C85.0813 103.152 85.2113 102.589 85.4713 102.073C85.7356 101.557 86.117 101.146 86.6153 100.838C87.1136 100.526 87.716 100.37 88.4223 100.37C89.1286 100.37 89.731 100.526 90.2293 100.838C90.7276 101.146 91.1068 101.557 91.3668 102.073C91.6311 102.589 91.7633 103.152 91.7633 103.763C91.7633 104.37 91.6311 104.929 91.3668 105.44C91.1068 105.951 90.7276 106.361 90.2293 106.668C89.731 106.976 89.1286 107.13 88.4223 107.13ZM88.4223 105.804C88.964 105.804 89.38 105.615 89.6703 105.238C89.965 104.857 90.1123 104.365 90.1123 103.763C90.1123 103.152 89.965 102.656 89.6703 102.274C89.38 101.889 88.964 101.696 88.4223 101.696C87.885 101.696 87.469 101.889 87.1743 102.274C86.8796 102.656 86.7323 103.152 86.7323 103.763C86.7323 104.365 86.8796 104.857 87.1743 105.238C87.469 105.615 87.885 105.804 88.4223 105.804ZM95.5763 107.13C94.9003 107.13 94.3608 106.996 93.9578 106.727C93.5548 106.458 93.2645 106.09 93.0868 105.622C92.9092 105.15 92.8203 104.608 92.8203 103.997V100.5H94.4323V103.997C94.4323 104.599 94.532 105.048 94.7313 105.342C94.935 105.633 95.2643 105.778 95.7193 105.778C96.0833 105.778 96.3845 105.691 96.6228 105.518C96.8655 105.345 97.067 105.102 97.2273 104.79L96.9413 105.609V100.5H98.5533V107H97.0453L96.9673 105.869L97.3183 106.324C97.1623 106.523 96.9153 106.707 96.5773 106.876C96.2437 107.046 95.91 107.13 95.5763 107.13ZM101.904 107.13C101.475 107.13 101.087 107.089 100.741 107.007C100.398 106.924 100.054 106.805 99.7072 106.649L99.8502 105.271C100.184 105.466 100.511 105.624 100.832 105.745C101.157 105.862 101.497 105.921 101.852 105.921C102.173 105.921 102.418 105.869 102.587 105.765C102.756 105.661 102.84 105.496 102.84 105.271C102.84 105.102 102.795 104.963 102.704 104.855C102.617 104.747 102.485 104.649 102.307 104.562C102.13 104.476 101.909 104.383 101.644 104.283C101.246 104.136 100.905 103.975 100.624 103.802C100.346 103.629 100.134 103.421 99.9867 103.178C99.8437 102.931 99.7722 102.628 99.7722 102.268C99.7722 101.895 99.8697 101.566 100.065 101.28C100.26 100.994 100.537 100.771 100.897 100.61C101.256 100.45 101.683 100.37 102.177 100.37C102.589 100.37 102.957 100.415 103.282 100.506C103.612 100.597 103.915 100.721 104.192 100.877L104.049 102.255C103.759 102.051 103.466 101.884 103.172 101.754C102.877 101.62 102.554 101.553 102.203 101.553C101.926 101.553 101.711 101.609 101.56 101.722C101.408 101.835 101.332 101.995 101.332 102.203C101.332 102.454 101.438 102.643 101.651 102.768C101.863 102.894 102.203 103.048 102.671 103.23C102.975 103.347 103.237 103.468 103.458 103.594C103.683 103.72 103.869 103.858 104.017 104.01C104.164 104.162 104.272 104.335 104.342 104.53C104.415 104.721 104.452 104.942 104.452 105.193C104.452 105.605 104.353 105.956 104.153 106.246C103.958 106.532 103.67 106.751 103.289 106.902C102.912 107.054 102.45 107.13 101.904 107.13Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"16",y:"87.5",width:"129.5",height:"30",rx:"15",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"151.5",y:"86.5",width:"131.5",height:"32",rx:"16",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M204.997 107V97.9H206.635L210.522 103.776V97.9H212.186V107H210.821L206.661 100.76V107H204.997ZM216.897 107.13C216.112 107.13 215.458 106.974 214.934 106.662C214.414 106.346 214.024 105.93 213.764 105.414C213.504 104.894 213.374 104.326 213.374 103.711C213.374 103.117 213.495 102.569 213.738 102.066C213.985 101.564 214.344 101.161 214.817 100.857C215.289 100.55 215.865 100.396 216.546 100.396C217.17 100.396 217.69 100.524 218.106 100.779C218.522 101.035 218.834 101.377 219.042 101.806C219.25 102.231 219.354 102.701 219.354 103.217C219.354 103.36 219.345 103.505 219.328 103.652C219.31 103.795 219.284 103.945 219.25 104.101H215.051C215.111 104.504 215.237 104.831 215.428 105.082C215.623 105.329 215.859 105.511 216.136 105.628C216.418 105.745 216.719 105.804 217.04 105.804C217.417 105.804 217.768 105.756 218.093 105.661C218.418 105.561 218.717 105.431 218.99 105.271L219.068 106.636C218.821 106.766 218.513 106.881 218.145 106.98C217.776 107.08 217.36 107.13 216.897 107.13ZM215.09 103.009H217.716C217.716 102.814 217.679 102.619 217.605 102.424C217.532 102.225 217.408 102.058 217.235 101.923C217.066 101.789 216.836 101.722 216.546 101.722C216.13 101.722 215.803 101.843 215.564 102.086C215.326 102.329 215.168 102.636 215.09 103.009ZM219.779 107L221.937 103.75L219.779 100.5H221.703L222.886 102.385L223.978 100.5H225.902L223.744 103.75L225.902 107H223.978L222.795 105.115L221.703 107H219.779ZM228.908 107.13C228.501 107.13 228.169 107.048 227.914 106.883C227.658 106.714 227.469 106.499 227.348 106.239C227.227 105.979 227.166 105.709 227.166 105.427V101.826H226.243L226.386 100.5H227.166V99.07L228.778 98.901V100.5H230.208V101.826H228.778V104.764C228.778 105.093 228.798 105.332 228.837 105.479C228.876 105.622 228.964 105.713 229.103 105.752C229.242 105.787 229.463 105.804 229.766 105.804H230.208L230.065 107.13H228.908Z",fill:"white"})),{BlockClassName:Nr,BlockAddPrevButton:Ir,BlockPrevButtonLabel:Tr}=JetFBComponents,{__:Or}=wp.i18n,{InspectorControls:Jr,useBlockProps:Rr,RichText:qr}=wp.blockEditor?wp.blockEditor:wp.editor,{TextareaControl:Dr,TextControl:zr,PanelBody:Ur,Button:Gr,ToggleControl:Wr}=wp.components,Kr=JSON.parse('{"apiVersion":3,"name":"jet-forms/form-break-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","break","pagebreak","formbreak"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Form Page Break","icon":"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"add_next_button":{"type":"boolean","default":true},"page_break_disabled":{"type":"string","default":"","jfb":{"rich":true}},"label_progress":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:$r}=wp.i18n,{createBlock:Yr}=wp.blocks,{name:Xr,icon:Qr=""}=Kr,en={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Qr}}),description:$r("With the help of Form Break Field, divide one big form into several parts and make those parts appear after filling in the previous part.","jet-form-builder"),edit:function(e){const C=Rr(),{attributes:t,setAttributes:l,editProps:{uniqKey:r,attrHelp:n}}=e;return t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Sr):[e.isSelected&&(0,h.createElement)(Jr,{key:r("InspectorControls")},(0,h.createElement)(Ur,{title:Or("Buttons Settings","jet-form-builder")},(0,h.createElement)(Wr,{key:r("add_next_button"),label:Or('Enable "Next" Button',"jet-form-builder"),checked:t.add_next_button,help:n("add_next_button"),onChange:e=>l({add_next_button:e})}),t.add_next_button&&(0,h.createElement)(zr,{label:Or("Next Button label","jet-form-builder"),value:t.label,onChange:e=>l({label:e})}),(0,h.createElement)(Ir,null),(0,h.createElement)(Tr,null)),(0,h.createElement)(Ur,{title:Or("Page Settings","jet-form-builder")},(0,h.createElement)(zr,{label:Or("Label of progress","jet-form-builder"),value:t.label_progress,help:n("label_progress"),onChange:C=>{e.setAttributes({label_progress:C})}}),(0,h.createElement)(Dr,{key:"page_break_disabled",value:t.page_break_disabled,label:Or("Validation message","jet-form-builder"),help:n("page_break_disabled"),onChange:e=>{l({page_break_disabled:e})}})),(0,h.createElement)(Ur,{title:Or("Advanced","jet-form-builder")},(0,h.createElement)(Nr,null))),(0,h.createElement)("div",{...C,key:r("viewBlock")},(0,h.createElement)("div",{className:"jet-form-builder__next-page-wrap jet-form-builder__bottom-line"},t.add_next_button&&(0,h.createElement)(Gr,{isSecondary:!0,key:"next_page_button",className:"jet-form-builder__next-page"},(0,h.createElement)(qr,{placeholder:"Next...",allowedFormats:[],value:t.label,onChange:e=>l({label:e})})),t.add_prev&&(0,h.createElement)(Gr,{isSecondary:!0,key:"prev_page_button",className:"jet-form-builder__prev-page"},(0,h.createElement)(qr,{placeholder:"Prev...",allowedFormats:[],value:t.prev_label,onChange:e=>l({prev_label:e})})),!t.add_next_button&&!t.add_prev&&(0,h.createElement)("span",null,Or("Form Break","jet-form-builder"))))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Yr("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["jet-forms/submit-field"],isMatch:e=>e.add_next_button,transform:e=>Yr("jet-forms/submit-field",{...e,action_type:"next"}),priority:0},{type:"block",blocks:["core/buttons"],isMatch:e=>e.add_next_button,transform:({label:e=""})=>Yr("core/buttons",{},[Yr("core/button",{text:e})]),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Yr(Xr,{...e}),priority:0},{type:"block",blocks:["jet-forms/submit-field"],isMatch:e=>"next"===e.action_type,transform:e=>Yr(Xr,{...e}),priority:0},{type:"block",blocks:["core/buttons"],transform:(e,C)=>Yr(Xr,{label:C[0]?.attributes?.text||"Next"}),priority:0}]}},Cn=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M47.0752 33.2305V34.748C47.0752 35.5638 47.0023 36.252 46.8564 36.8125C46.7106 37.373 46.501 37.8242 46.2275 38.166C45.9541 38.5078 45.6237 38.7562 45.2363 38.9111C44.8535 39.0615 44.4206 39.1367 43.9375 39.1367C43.5547 39.1367 43.2015 39.0889 42.8779 38.9932C42.5544 38.8975 42.2627 38.7448 42.0029 38.5352C41.7477 38.321 41.529 38.043 41.3467 37.7012C41.1644 37.3594 41.0254 36.9447 40.9297 36.457C40.834 35.9694 40.7861 35.3997 40.7861 34.748V33.2305C40.7861 32.4147 40.859 31.7311 41.0049 31.1797C41.1553 30.6283 41.3672 30.1862 41.6406 29.8535C41.9141 29.5163 42.2422 29.2747 42.625 29.1289C43.0124 28.9831 43.4453 28.9102 43.9238 28.9102C44.3112 28.9102 44.6667 28.958 44.9902 29.0537C45.3184 29.1449 45.61 29.293 45.8652 29.498C46.1204 29.6986 46.3369 29.9674 46.5146 30.3047C46.6969 30.6374 46.8359 31.0452 46.9316 31.5283C47.0273 32.0114 47.0752 32.5788 47.0752 33.2305ZM45.8037 34.9531V33.0186C45.8037 32.5719 45.7764 32.18 45.7217 31.8428C45.6715 31.501 45.5964 31.2093 45.4961 30.9678C45.3958 30.7262 45.2682 30.5303 45.1133 30.3799C44.9629 30.2295 44.7874 30.1201 44.5869 30.0518C44.391 29.9788 44.1699 29.9424 43.9238 29.9424C43.623 29.9424 43.3564 29.9993 43.124 30.1133C42.8916 30.2227 42.6956 30.3981 42.5361 30.6396C42.3812 30.8812 42.2627 31.1979 42.1807 31.5898C42.0986 31.9818 42.0576 32.458 42.0576 33.0186V34.9531C42.0576 35.3997 42.0827 35.7939 42.1328 36.1357C42.1875 36.4775 42.2673 36.7738 42.3721 37.0244C42.4769 37.2705 42.6045 37.4733 42.7549 37.6328C42.9053 37.7923 43.0785 37.9108 43.2744 37.9883C43.4749 38.0612 43.696 38.0977 43.9375 38.0977C44.2474 38.0977 44.5186 38.0384 44.751 37.9199C44.9834 37.8014 45.1771 37.6169 45.332 37.3662C45.4915 37.111 45.61 36.7852 45.6875 36.3887C45.765 35.9876 45.8037 35.5091 45.8037 34.9531ZM52.8584 28.9922V39H51.5938V30.5713L49.0439 31.501V30.3594L52.6602 28.9922H52.8584ZM56.7344 38.3301C56.7344 38.1159 56.8005 37.9359 56.9326 37.79C57.0693 37.6396 57.2653 37.5645 57.5205 37.5645C57.7757 37.5645 57.9694 37.6396 58.1016 37.79C58.2383 37.9359 58.3066 38.1159 58.3066 38.3301C58.3066 38.5397 58.2383 38.7174 58.1016 38.8633C57.9694 39.0091 57.7757 39.082 57.5205 39.082C57.2653 39.082 57.0693 39.0091 56.9326 38.8633C56.8005 38.7174 56.7344 38.5397 56.7344 38.3301ZM71.4248 34.0439V37.6875C71.3018 37.8698 71.1058 38.0749 70.8369 38.3027C70.568 38.526 70.1966 38.722 69.7227 38.8906C69.2533 39.0547 68.6471 39.1367 67.9043 39.1367C67.2982 39.1367 66.7399 39.0319 66.2295 38.8223C65.7236 38.6081 65.2839 38.2982 64.9102 37.8926C64.541 37.4824 64.2539 36.9857 64.0488 36.4023C63.8483 35.8145 63.748 35.1491 63.748 34.4062V33.6338C63.748 32.891 63.8346 32.2279 64.0078 31.6445C64.1855 31.0612 64.4453 30.5667 64.7871 30.1611C65.1289 29.751 65.5482 29.4411 66.0449 29.2314C66.5417 29.0173 67.1113 28.9102 67.7539 28.9102C68.515 28.9102 69.1507 29.0423 69.6611 29.3066C70.1761 29.5664 70.5771 29.9264 70.8643 30.3867C71.1559 30.847 71.3428 31.3711 71.4248 31.959H70.1055C70.0462 31.599 69.9277 31.2708 69.75 30.9746C69.5768 30.6784 69.3285 30.4414 69.0049 30.2637C68.6813 30.0814 68.2643 29.9902 67.7539 29.9902C67.2936 29.9902 66.8949 30.0745 66.5576 30.2432C66.2204 30.4118 65.9424 30.6533 65.7236 30.9678C65.5049 31.2822 65.3408 31.6628 65.2314 32.1094C65.1266 32.556 65.0742 33.0596 65.0742 33.6201V34.4062C65.0742 34.9805 65.1403 35.4932 65.2725 35.9443C65.4092 36.3955 65.6029 36.7806 65.8535 37.0996C66.1042 37.4141 66.4027 37.6533 66.749 37.8174C67.0999 37.9814 67.4873 38.0635 67.9111 38.0635C68.3805 38.0635 68.7611 38.0247 69.0527 37.9473C69.3444 37.8652 69.5723 37.7695 69.7363 37.6602C69.9004 37.5462 70.0257 37.4391 70.1123 37.3389V35.1104H67.8086V34.0439H71.4248ZM76.4902 39.1367C75.9753 39.1367 75.5081 39.0501 75.0889 38.877C74.6742 38.6992 74.3164 38.4508 74.0156 38.1318C73.7194 37.8128 73.4915 37.4346 73.332 36.9971C73.1725 36.5596 73.0928 36.0811 73.0928 35.5615V35.2744C73.0928 34.6729 73.1816 34.1374 73.3594 33.668C73.5371 33.194 73.7786 32.793 74.084 32.4648C74.3893 32.1367 74.7357 31.8883 75.123 31.7197C75.5104 31.5511 75.9115 31.4668 76.3262 31.4668C76.8548 31.4668 77.3105 31.5579 77.6934 31.7402C78.0807 31.9225 78.3975 32.1777 78.6436 32.5059C78.8896 32.8294 79.0719 33.2122 79.1904 33.6543C79.3089 34.0918 79.3682 34.5703 79.3682 35.0898V35.6572H73.8447V34.625H78.1035V34.5293C78.0853 34.2012 78.0169 33.8822 77.8984 33.5723C77.7845 33.2624 77.6022 33.0072 77.3516 32.8066C77.1009 32.6061 76.7591 32.5059 76.3262 32.5059C76.0391 32.5059 75.7747 32.5674 75.5332 32.6904C75.2917 32.8089 75.0843 32.9867 74.9111 33.2236C74.738 33.4606 74.6035 33.75 74.5078 34.0918C74.4121 34.4336 74.3643 34.8278 74.3643 35.2744V35.5615C74.3643 35.9124 74.4121 36.2428 74.5078 36.5527C74.6081 36.8581 74.7516 37.127 74.9385 37.3594C75.1299 37.5918 75.36 37.7741 75.6289 37.9062C75.9023 38.0384 76.2122 38.1045 76.5586 38.1045C77.0052 38.1045 77.3835 38.0133 77.6934 37.8311C78.0033 37.6488 78.2744 37.4049 78.5068 37.0996L79.2725 37.708C79.113 37.9495 78.9102 38.1797 78.6641 38.3984C78.418 38.6172 78.1149 38.7949 77.7549 38.9316C77.3994 39.0684 76.9779 39.1367 76.4902 39.1367ZM82.1094 33.1826V39H80.8447V31.6035H82.041L82.1094 33.1826ZM81.8086 35.0215L81.2822 35.001C81.2868 34.4951 81.362 34.028 81.5078 33.5996C81.6536 33.1667 81.8587 32.7907 82.123 32.4717C82.3874 32.1527 82.7018 31.9066 83.0664 31.7334C83.4355 31.5557 83.8434 31.4668 84.29 31.4668C84.6546 31.4668 84.9827 31.5169 85.2744 31.6172C85.5661 31.7129 85.8145 31.8678 86.0195 32.082C86.2292 32.2962 86.3887 32.5742 86.498 32.916C86.6074 33.2533 86.6621 33.6657 86.6621 34.1533V39H85.3906V34.1396C85.3906 33.7523 85.3337 33.4424 85.2197 33.21C85.1058 32.973 84.9395 32.8021 84.7207 32.6973C84.502 32.5879 84.2331 32.5332 83.9141 32.5332C83.5996 32.5332 83.3125 32.5993 83.0527 32.7314C82.7975 32.8636 82.5765 33.0459 82.3896 33.2783C82.2074 33.5107 82.0638 33.7773 81.959 34.0781C81.8587 34.3743 81.8086 34.6888 81.8086 35.0215ZM91.6523 39.1367C91.1374 39.1367 90.6702 39.0501 90.251 38.877C89.8363 38.6992 89.4785 38.4508 89.1777 38.1318C88.8815 37.8128 88.6536 37.4346 88.4941 36.9971C88.3346 36.5596 88.2549 36.0811 88.2549 35.5615V35.2744C88.2549 34.6729 88.3438 34.1374 88.5215 33.668C88.6992 33.194 88.9408 32.793 89.2461 32.4648C89.5514 32.1367 89.8978 31.8883 90.2852 31.7197C90.6725 31.5511 91.0736 31.4668 91.4883 31.4668C92.0169 31.4668 92.4727 31.5579 92.8555 31.7402C93.2428 31.9225 93.5596 32.1777 93.8057 32.5059C94.0518 32.8294 94.234 33.2122 94.3525 33.6543C94.471 34.0918 94.5303 34.5703 94.5303 35.0898V35.6572H89.0068V34.625H93.2656V34.5293C93.2474 34.2012 93.179 33.8822 93.0605 33.5723C92.9466 33.2624 92.7643 33.0072 92.5137 32.8066C92.263 32.6061 91.9212 32.5059 91.4883 32.5059C91.2012 32.5059 90.9368 32.5674 90.6953 32.6904C90.4538 32.8089 90.2464 32.9867 90.0732 33.2236C89.9001 33.4606 89.7656 33.75 89.6699 34.0918C89.5742 34.4336 89.5264 34.8278 89.5264 35.2744V35.5615C89.5264 35.9124 89.5742 36.2428 89.6699 36.5527C89.7702 36.8581 89.9137 37.127 90.1006 37.3594C90.292 37.5918 90.5221 37.7741 90.791 37.9062C91.0645 38.0384 91.3743 38.1045 91.7207 38.1045C92.1673 38.1045 92.5456 38.0133 92.8555 37.8311C93.1654 37.6488 93.4365 37.4049 93.6689 37.0996L94.4346 37.708C94.2751 37.9495 94.0723 38.1797 93.8262 38.3984C93.5801 38.6172 93.277 38.7949 92.917 38.9316C92.5615 39.0684 92.14 39.1367 91.6523 39.1367ZM97.2715 32.7656V39H96.0068V31.6035H97.2373L97.2715 32.7656ZM99.582 31.5625L99.5752 32.7383C99.4704 32.7155 99.3701 32.7018 99.2744 32.6973C99.1833 32.6882 99.0785 32.6836 98.96 32.6836C98.6683 32.6836 98.4108 32.7292 98.1875 32.8203C97.9642 32.9115 97.7751 33.0391 97.6201 33.2031C97.4652 33.3672 97.3421 33.5632 97.251 33.791C97.1644 34.0143 97.1074 34.2604 97.0801 34.5293L96.7246 34.7344C96.7246 34.2878 96.7679 33.8685 96.8545 33.4766C96.9456 33.0846 97.0846 32.7383 97.2715 32.4375C97.4583 32.1322 97.6953 31.8952 97.9824 31.7266C98.2741 31.5534 98.6204 31.4668 99.0215 31.4668C99.1126 31.4668 99.2174 31.4782 99.3359 31.501C99.4544 31.5192 99.5365 31.5397 99.582 31.5625ZM104.839 37.7354V33.9277C104.839 33.6361 104.78 33.3831 104.661 33.1689C104.547 32.9502 104.374 32.7816 104.142 32.6631C103.909 32.5446 103.622 32.4854 103.28 32.4854C102.961 32.4854 102.681 32.54 102.439 32.6494C102.202 32.7588 102.016 32.9023 101.879 33.0801C101.747 33.2578 101.681 33.4492 101.681 33.6543H100.416C100.416 33.39 100.484 33.1279 100.621 32.8682C100.758 32.6084 100.954 32.3737 101.209 32.1641C101.469 31.9499 101.779 31.7812 102.139 31.6582C102.503 31.5306 102.909 31.4668 103.355 31.4668C103.893 31.4668 104.367 31.5579 104.777 31.7402C105.192 31.9225 105.516 32.1982 105.748 32.5674C105.985 32.932 106.104 33.39 106.104 33.9414V37.3867C106.104 37.6328 106.124 37.8949 106.165 38.1729C106.211 38.4508 106.277 38.6901 106.363 38.8906V39H105.044C104.98 38.8542 104.93 38.6605 104.894 38.4189C104.857 38.1729 104.839 37.945 104.839 37.7354ZM105.058 34.5156L105.071 35.4043H103.793C103.433 35.4043 103.112 35.4339 102.829 35.4932C102.547 35.5479 102.31 35.6322 102.118 35.7461C101.927 35.86 101.781 36.0036 101.681 36.1768C101.58 36.3454 101.53 36.5436 101.53 36.7715C101.53 37.0039 101.583 37.2158 101.688 37.4072C101.792 37.5986 101.95 37.7513 102.159 37.8652C102.373 37.9746 102.635 38.0293 102.945 38.0293C103.333 38.0293 103.674 37.9473 103.971 37.7832C104.267 37.6191 104.502 37.4186 104.675 37.1816C104.853 36.9447 104.948 36.7145 104.962 36.4912L105.502 37.0996C105.47 37.291 105.383 37.5029 105.242 37.7354C105.101 37.9678 104.912 38.1911 104.675 38.4053C104.442 38.6149 104.164 38.7904 103.841 38.9316C103.522 39.0684 103.162 39.1367 102.761 39.1367C102.259 39.1367 101.82 39.0387 101.441 38.8428C101.068 38.6468 100.776 38.3848 100.566 38.0566C100.361 37.724 100.259 37.3525 100.259 36.9424C100.259 36.5459 100.336 36.1973 100.491 35.8965C100.646 35.5911 100.869 35.3382 101.161 35.1377C101.453 34.9326 101.804 34.7777 102.214 34.6729C102.624 34.568 103.082 34.5156 103.588 34.5156H105.058ZM109.467 28.5V39H108.195V28.5H109.467ZM116.344 31.6035V39H115.072V31.6035H116.344ZM114.977 29.6416C114.977 29.4365 115.038 29.2633 115.161 29.1221C115.289 28.9808 115.476 28.9102 115.722 28.9102C115.963 28.9102 116.148 28.9808 116.275 29.1221C116.408 29.2633 116.474 29.4365 116.474 29.6416C116.474 29.8376 116.408 30.0062 116.275 30.1475C116.148 30.2842 115.963 30.3525 115.722 30.3525C115.476 30.3525 115.289 30.2842 115.161 30.1475C115.038 30.0062 114.977 29.8376 114.977 29.6416ZM119.639 33.1826V39H118.374V31.6035H119.57L119.639 33.1826ZM119.338 35.0215L118.812 35.001C118.816 34.4951 118.891 34.028 119.037 33.5996C119.183 33.1667 119.388 32.7907 119.652 32.4717C119.917 32.1527 120.231 31.9066 120.596 31.7334C120.965 31.5557 121.373 31.4668 121.819 31.4668C122.184 31.4668 122.512 31.5169 122.804 31.6172C123.095 31.7129 123.344 31.8678 123.549 32.082C123.758 32.2962 123.918 32.5742 124.027 32.916C124.137 33.2533 124.191 33.6657 124.191 34.1533V39H122.92V34.1396C122.92 33.7523 122.863 33.4424 122.749 33.21C122.635 32.973 122.469 32.8021 122.25 32.6973C122.031 32.5879 121.762 32.5332 121.443 32.5332C121.129 32.5332 120.842 32.5993 120.582 32.7314C120.327 32.8636 120.106 33.0459 119.919 33.2783C119.737 33.5107 119.593 33.7773 119.488 34.0781C119.388 34.3743 119.338 34.6888 119.338 35.0215ZM127.999 39H126.734V30.8242C126.734 30.291 126.83 29.8421 127.021 29.4775C127.217 29.1084 127.498 28.8304 127.862 28.6436C128.227 28.4521 128.66 28.3564 129.161 28.3564C129.307 28.3564 129.453 28.3656 129.599 28.3838C129.749 28.402 129.895 28.4294 130.036 28.4658L129.968 29.498C129.872 29.4753 129.763 29.4593 129.64 29.4502C129.521 29.4411 129.403 29.4365 129.284 29.4365C129.015 29.4365 128.783 29.4912 128.587 29.6006C128.396 29.7054 128.25 29.8604 128.149 30.0654C128.049 30.2705 127.999 30.5234 127.999 30.8242V39ZM129.571 31.6035V32.5742H125.565V31.6035H129.571ZM130.645 35.3838V35.2266C130.645 34.6934 130.722 34.1989 130.877 33.7432C131.032 33.2829 131.255 32.8841 131.547 32.5469C131.839 32.2051 132.192 31.9408 132.606 31.7539C133.021 31.5625 133.486 31.4668 134.001 31.4668C134.521 31.4668 134.988 31.5625 135.402 31.7539C135.822 31.9408 136.177 32.2051 136.469 32.5469C136.765 32.8841 136.991 33.2829 137.146 33.7432C137.3 34.1989 137.378 34.6934 137.378 35.2266V35.3838C137.378 35.917 137.3 36.4115 137.146 36.8672C136.991 37.3229 136.765 37.7217 136.469 38.0635C136.177 38.4007 135.824 38.665 135.409 38.8564C134.999 39.0433 134.534 39.1367 134.015 39.1367C133.495 39.1367 133.028 39.0433 132.613 38.8564C132.199 38.665 131.843 38.4007 131.547 38.0635C131.255 37.7217 131.032 37.3229 130.877 36.8672C130.722 36.4115 130.645 35.917 130.645 35.3838ZM131.909 35.2266V35.3838C131.909 35.7529 131.952 36.1016 132.039 36.4297C132.126 36.7533 132.256 37.0404 132.429 37.291C132.606 37.5417 132.827 37.7399 133.092 37.8857C133.356 38.027 133.664 38.0977 134.015 38.0977C134.361 38.0977 134.664 38.027 134.924 37.8857C135.188 37.7399 135.407 37.5417 135.58 37.291C135.753 37.0404 135.883 36.7533 135.97 36.4297C136.061 36.1016 136.106 35.7529 136.106 35.3838V35.2266C136.106 34.862 136.061 34.5179 135.97 34.1943C135.883 33.8662 135.751 33.5768 135.573 33.3262C135.4 33.071 135.181 32.8704 134.917 32.7246C134.657 32.5788 134.352 32.5059 134.001 32.5059C133.655 32.5059 133.349 32.5788 133.085 32.7246C132.825 32.8704 132.606 33.071 132.429 33.3262C132.256 33.5768 132.126 33.8662 132.039 34.1943C131.952 34.5179 131.909 34.862 131.909 35.2266ZM140.229 32.7656V39H138.964V31.6035H140.194L140.229 32.7656ZM142.539 31.5625L142.532 32.7383C142.427 32.7155 142.327 32.7018 142.231 32.6973C142.14 32.6882 142.035 32.6836 141.917 32.6836C141.625 32.6836 141.368 32.7292 141.145 32.8203C140.921 32.9115 140.732 33.0391 140.577 33.2031C140.422 33.3672 140.299 33.5632 140.208 33.791C140.121 34.0143 140.064 34.2604 140.037 34.5293L139.682 34.7344C139.682 34.2878 139.725 33.8685 139.812 33.4766C139.903 33.0846 140.042 32.7383 140.229 32.4375C140.415 32.1322 140.652 31.8952 140.939 31.7266C141.231 31.5534 141.577 31.4668 141.979 31.4668C142.07 31.4668 142.174 31.4782 142.293 31.501C142.411 31.5192 142.493 31.5397 142.539 31.5625ZM144.966 33.0732V39H143.694V31.6035H144.897L144.966 33.0732ZM144.706 35.0215L144.118 35.001C144.123 34.4951 144.189 34.028 144.316 33.5996C144.444 33.1667 144.633 32.7907 144.884 32.4717C145.134 32.1527 145.447 31.9066 145.82 31.7334C146.194 31.5557 146.627 31.4668 147.119 31.4668C147.465 31.4668 147.785 31.5169 148.076 31.6172C148.368 31.7129 148.621 31.8656 148.835 32.0752C149.049 32.2848 149.215 32.5537 149.334 32.8818C149.452 33.21 149.512 33.6064 149.512 34.0713V39H148.247V34.1328C148.247 33.7454 148.181 33.4355 148.049 33.2031C147.921 32.9707 147.739 32.8021 147.502 32.6973C147.265 32.5879 146.987 32.5332 146.668 32.5332C146.294 32.5332 145.982 32.5993 145.731 32.7314C145.481 32.8636 145.28 33.0459 145.13 33.2783C144.979 33.5107 144.87 33.7773 144.802 34.0781C144.738 34.3743 144.706 34.6888 144.706 35.0215ZM149.498 34.3242L148.65 34.584C148.655 34.1784 148.721 33.7887 148.849 33.415C148.981 33.0413 149.17 32.7087 149.416 32.417C149.667 32.1253 149.974 31.8952 150.339 31.7266C150.703 31.5534 151.12 31.4668 151.59 31.4668C151.986 31.4668 152.337 31.5192 152.643 31.624C152.952 31.7288 153.212 31.8906 153.422 32.1094C153.636 32.3236 153.798 32.5993 153.907 32.9365C154.017 33.2738 154.071 33.6748 154.071 34.1396V39H152.8V34.126C152.8 33.7113 152.734 33.39 152.602 33.1621C152.474 32.9297 152.292 32.7679 152.055 32.6768C151.822 32.5811 151.544 32.5332 151.221 32.5332C150.943 32.5332 150.697 32.5811 150.482 32.6768C150.268 32.7725 150.088 32.9046 149.942 33.0732C149.797 33.2373 149.685 33.4264 149.607 33.6406C149.535 33.8548 149.498 34.0827 149.498 34.3242ZM160.347 37.7354V33.9277C160.347 33.6361 160.287 33.3831 160.169 33.1689C160.055 32.9502 159.882 32.7816 159.649 32.6631C159.417 32.5446 159.13 32.4854 158.788 32.4854C158.469 32.4854 158.189 32.54 157.947 32.6494C157.71 32.7588 157.523 32.9023 157.387 33.0801C157.255 33.2578 157.188 33.4492 157.188 33.6543H155.924C155.924 33.39 155.992 33.1279 156.129 32.8682C156.266 32.6084 156.462 32.3737 156.717 32.1641C156.977 31.9499 157.286 31.7812 157.646 31.6582C158.011 31.5306 158.417 31.4668 158.863 31.4668C159.401 31.4668 159.875 31.5579 160.285 31.7402C160.7 31.9225 161.023 32.1982 161.256 32.5674C161.493 32.932 161.611 33.39 161.611 33.9414V37.3867C161.611 37.6328 161.632 37.8949 161.673 38.1729C161.718 38.4508 161.785 38.6901 161.871 38.8906V39H160.552C160.488 38.8542 160.438 38.6605 160.401 38.4189C160.365 38.1729 160.347 37.945 160.347 37.7354ZM160.565 34.5156L160.579 35.4043H159.301C158.941 35.4043 158.619 35.4339 158.337 35.4932C158.054 35.5479 157.817 35.6322 157.626 35.7461C157.435 35.86 157.289 36.0036 157.188 36.1768C157.088 36.3454 157.038 36.5436 157.038 36.7715C157.038 37.0039 157.09 37.2158 157.195 37.4072C157.3 37.5986 157.457 37.7513 157.667 37.8652C157.881 37.9746 158.143 38.0293 158.453 38.0293C158.84 38.0293 159.182 37.9473 159.479 37.7832C159.775 37.6191 160.009 37.4186 160.183 37.1816C160.36 36.9447 160.456 36.7145 160.47 36.4912L161.01 37.0996C160.978 37.291 160.891 37.5029 160.75 37.7354C160.609 37.9678 160.42 38.1911 160.183 38.4053C159.95 38.6149 159.672 38.7904 159.349 38.9316C159.03 39.0684 158.67 39.1367 158.269 39.1367C157.767 39.1367 157.327 39.0387 156.949 38.8428C156.576 38.6468 156.284 38.3848 156.074 38.0566C155.869 37.724 155.767 37.3525 155.767 36.9424C155.767 36.5459 155.844 36.1973 155.999 35.8965C156.154 35.5911 156.377 35.3382 156.669 35.1377C156.961 34.9326 157.312 34.7777 157.722 34.6729C158.132 34.568 158.59 34.5156 159.096 34.5156H160.565ZM166.697 31.6035V32.5742H162.698V31.6035H166.697ZM164.052 29.8057H165.316V37.168C165.316 37.4186 165.355 37.6077 165.433 37.7354C165.51 37.863 165.61 37.9473 165.733 37.9883C165.856 38.0293 165.989 38.0498 166.13 38.0498C166.235 38.0498 166.344 38.0407 166.458 38.0225C166.576 37.9997 166.665 37.9814 166.725 37.9678L166.731 39C166.631 39.0319 166.499 39.0615 166.335 39.0889C166.175 39.1208 165.982 39.1367 165.754 39.1367C165.444 39.1367 165.159 39.0752 164.899 38.9521C164.64 38.8291 164.432 38.624 164.277 38.3369C164.127 38.0452 164.052 37.6533 164.052 37.1611V29.8057ZM169.555 31.6035V39H168.283V31.6035H169.555ZM168.188 29.6416C168.188 29.4365 168.249 29.2633 168.372 29.1221C168.5 28.9808 168.687 28.9102 168.933 28.9102C169.174 28.9102 169.359 28.9808 169.486 29.1221C169.618 29.2633 169.685 29.4365 169.685 29.6416C169.685 29.8376 169.618 30.0062 169.486 30.1475C169.359 30.2842 169.174 30.3525 168.933 30.3525C168.687 30.3525 168.5 30.2842 168.372 30.1475C168.249 30.0062 168.188 29.8376 168.188 29.6416ZM171.25 35.3838V35.2266C171.25 34.6934 171.327 34.1989 171.482 33.7432C171.637 33.2829 171.861 32.8841 172.152 32.5469C172.444 32.2051 172.797 31.9408 173.212 31.7539C173.627 31.5625 174.091 31.4668 174.606 31.4668C175.126 31.4668 175.593 31.5625 176.008 31.7539C176.427 31.9408 176.783 32.2051 177.074 32.5469C177.37 32.8841 177.596 33.2829 177.751 33.7432C177.906 34.1989 177.983 34.6934 177.983 35.2266V35.3838C177.983 35.917 177.906 36.4115 177.751 36.8672C177.596 37.3229 177.37 37.7217 177.074 38.0635C176.783 38.4007 176.429 38.665 176.015 38.8564C175.604 39.0433 175.14 39.1367 174.62 39.1367C174.101 39.1367 173.633 39.0433 173.219 38.8564C172.804 38.665 172.449 38.4007 172.152 38.0635C171.861 37.7217 171.637 37.3229 171.482 36.8672C171.327 36.4115 171.25 35.917 171.25 35.3838ZM172.515 35.2266V35.3838C172.515 35.7529 172.558 36.1016 172.645 36.4297C172.731 36.7533 172.861 37.0404 173.034 37.291C173.212 37.5417 173.433 37.7399 173.697 37.8857C173.962 38.027 174.269 38.0977 174.62 38.0977C174.966 38.0977 175.27 38.027 175.529 37.8857C175.794 37.7399 176.012 37.5417 176.186 37.291C176.359 37.0404 176.489 36.7533 176.575 36.4297C176.666 36.1016 176.712 35.7529 176.712 35.3838V35.2266C176.712 34.862 176.666 34.5179 176.575 34.1943C176.489 33.8662 176.356 33.5768 176.179 33.3262C176.006 33.071 175.787 32.8704 175.522 32.7246C175.263 32.5788 174.957 32.5059 174.606 32.5059C174.26 32.5059 173.955 32.5788 173.69 32.7246C173.431 32.8704 173.212 33.071 173.034 33.3262C172.861 33.5768 172.731 33.8662 172.645 34.1943C172.558 34.5179 172.515 34.862 172.515 35.2266ZM180.834 33.1826V39H179.569V31.6035H180.766L180.834 33.1826ZM180.533 35.0215L180.007 35.001C180.011 34.4951 180.087 34.028 180.232 33.5996C180.378 33.1667 180.583 32.7907 180.848 32.4717C181.112 32.1527 181.426 31.9066 181.791 31.7334C182.16 31.5557 182.568 31.4668 183.015 31.4668C183.379 31.4668 183.707 31.5169 183.999 31.6172C184.291 31.7129 184.539 31.8678 184.744 32.082C184.954 32.2962 185.113 32.5742 185.223 32.916C185.332 33.2533 185.387 33.6657 185.387 34.1533V39H184.115V34.1396C184.115 33.7523 184.058 33.4424 183.944 33.21C183.83 32.973 183.664 32.8021 183.445 32.6973C183.227 32.5879 182.958 32.5332 182.639 32.5332C182.324 32.5332 182.037 32.5993 181.777 32.7314C181.522 32.8636 181.301 33.0459 181.114 33.2783C180.932 33.5107 180.788 33.7773 180.684 34.0781C180.583 34.3743 180.533 34.6888 180.533 35.0215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15",y:"52",width:"268",height:"40",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M258 72H40",stroke:"#4272F9",strokeWidth:"3",strokeLinecap:"round"}),(0,h.createElement)("path",{d:"M47.0752 109.23V110.748C47.0752 111.564 47.0023 112.252 46.8564 112.812C46.7106 113.373 46.501 113.824 46.2275 114.166C45.9541 114.508 45.6237 114.756 45.2363 114.911C44.8535 115.062 44.4206 115.137 43.9375 115.137C43.5547 115.137 43.2015 115.089 42.8779 114.993C42.5544 114.897 42.2627 114.745 42.0029 114.535C41.7477 114.321 41.529 114.043 41.3467 113.701C41.1644 113.359 41.0254 112.945 40.9297 112.457C40.834 111.969 40.7861 111.4 40.7861 110.748V109.23C40.7861 108.415 40.859 107.731 41.0049 107.18C41.1553 106.628 41.3672 106.186 41.6406 105.854C41.9141 105.516 42.2422 105.275 42.625 105.129C43.0124 104.983 43.4453 104.91 43.9238 104.91C44.3112 104.91 44.6667 104.958 44.9902 105.054C45.3184 105.145 45.61 105.293 45.8652 105.498C46.1204 105.699 46.3369 105.967 46.5146 106.305C46.6969 106.637 46.8359 107.045 46.9316 107.528C47.0273 108.011 47.0752 108.579 47.0752 109.23ZM45.8037 110.953V109.019C45.8037 108.572 45.7764 108.18 45.7217 107.843C45.6715 107.501 45.5964 107.209 45.4961 106.968C45.3958 106.726 45.2682 106.53 45.1133 106.38C44.9629 106.229 44.7874 106.12 44.5869 106.052C44.391 105.979 44.1699 105.942 43.9238 105.942C43.623 105.942 43.3564 105.999 43.124 106.113C42.8916 106.223 42.6956 106.398 42.5361 106.64C42.3812 106.881 42.2627 107.198 42.1807 107.59C42.0986 107.982 42.0576 108.458 42.0576 109.019V110.953C42.0576 111.4 42.0827 111.794 42.1328 112.136C42.1875 112.478 42.2673 112.774 42.3721 113.024C42.4769 113.271 42.6045 113.473 42.7549 113.633C42.9053 113.792 43.0785 113.911 43.2744 113.988C43.4749 114.061 43.696 114.098 43.9375 114.098C44.2474 114.098 44.5186 114.038 44.751 113.92C44.9834 113.801 45.1771 113.617 45.332 113.366C45.4915 113.111 45.61 112.785 45.6875 112.389C45.765 111.988 45.8037 111.509 45.8037 110.953ZM55.2236 113.961V115H48.709V114.091L51.9697 110.461C52.3708 110.014 52.6807 109.636 52.8994 109.326C53.1227 109.012 53.2777 108.731 53.3643 108.485C53.4554 108.235 53.501 107.979 53.501 107.72C53.501 107.392 53.4326 107.095 53.2959 106.831C53.1637 106.562 52.9678 106.348 52.708 106.188C52.4482 106.029 52.1338 105.949 51.7646 105.949C51.3226 105.949 50.9535 106.036 50.6572 106.209C50.3656 106.378 50.1468 106.615 50.001 106.92C49.8551 107.225 49.7822 107.576 49.7822 107.973H48.5176C48.5176 107.412 48.6406 106.899 48.8867 106.435C49.1328 105.97 49.4974 105.601 49.9805 105.327C50.4635 105.049 51.0583 104.91 51.7646 104.91C52.3936 104.91 52.9313 105.022 53.3779 105.245C53.8245 105.464 54.1663 105.774 54.4033 106.175C54.6449 106.571 54.7656 107.036 54.7656 107.569C54.7656 107.861 54.7155 108.157 54.6152 108.458C54.5195 108.754 54.3851 109.05 54.2119 109.347C54.0433 109.643 53.8451 109.935 53.6172 110.222C53.3939 110.509 53.1546 110.791 52.8994 111.069L50.2334 113.961H55.2236ZM56.7344 114.33C56.7344 114.116 56.8005 113.936 56.9326 113.79C57.0693 113.64 57.2653 113.564 57.5205 113.564C57.7757 113.564 57.9694 113.64 58.1016 113.79C58.2383 113.936 58.3066 114.116 58.3066 114.33C58.3066 114.54 58.2383 114.717 58.1016 114.863C57.9694 115.009 57.7757 115.082 57.5205 115.082C57.2653 115.082 57.0693 115.009 56.9326 114.863C56.8005 114.717 56.7344 114.54 56.7344 114.33ZM67.7402 111.097H65.0811V110.023H67.7402C68.2552 110.023 68.6722 109.941 68.9912 109.777C69.3102 109.613 69.5426 109.385 69.6885 109.094C69.8389 108.802 69.9141 108.469 69.9141 108.096C69.9141 107.754 69.8389 107.433 69.6885 107.132C69.5426 106.831 69.3102 106.59 68.9912 106.407C68.6722 106.22 68.2552 106.127 67.7402 106.127H65.3887V115H64.0693V105.047H67.7402C68.4922 105.047 69.1279 105.177 69.6475 105.437C70.167 105.696 70.5612 106.056 70.8301 106.517C71.099 106.972 71.2334 107.494 71.2334 108.082C71.2334 108.72 71.099 109.265 70.8301 109.716C70.5612 110.167 70.167 110.511 69.6475 110.748C69.1279 110.98 68.4922 111.097 67.7402 111.097ZM75.6836 115.137C75.1686 115.137 74.7015 115.05 74.2822 114.877C73.8675 114.699 73.5098 114.451 73.209 114.132C72.9128 113.813 72.6849 113.435 72.5254 112.997C72.3659 112.56 72.2861 112.081 72.2861 111.562V111.274C72.2861 110.673 72.375 110.137 72.5527 109.668C72.7305 109.194 72.972 108.793 73.2773 108.465C73.5827 108.137 73.929 107.888 74.3164 107.72C74.7038 107.551 75.1048 107.467 75.5195 107.467C76.0482 107.467 76.5039 107.558 76.8867 107.74C77.2741 107.923 77.5908 108.178 77.8369 108.506C78.083 108.829 78.2653 109.212 78.3838 109.654C78.5023 110.092 78.5615 110.57 78.5615 111.09V111.657H73.0381V110.625H77.2969V110.529C77.2786 110.201 77.2103 109.882 77.0918 109.572C76.9779 109.262 76.7956 109.007 76.5449 108.807C76.2943 108.606 75.9525 108.506 75.5195 108.506C75.2324 108.506 74.9681 108.567 74.7266 108.69C74.485 108.809 74.2777 108.987 74.1045 109.224C73.9313 109.461 73.7969 109.75 73.7012 110.092C73.6055 110.434 73.5576 110.828 73.5576 111.274V111.562C73.5576 111.912 73.6055 112.243 73.7012 112.553C73.8014 112.858 73.945 113.127 74.1318 113.359C74.3232 113.592 74.5534 113.774 74.8223 113.906C75.0957 114.038 75.4056 114.104 75.752 114.104C76.1986 114.104 76.5768 114.013 76.8867 113.831C77.1966 113.649 77.4678 113.405 77.7002 113.1L78.4658 113.708C78.3063 113.95 78.1035 114.18 77.8574 114.398C77.6113 114.617 77.3083 114.795 76.9482 114.932C76.5928 115.068 76.1712 115.137 75.6836 115.137ZM81.3027 108.766V115H80.0381V107.604H81.2686L81.3027 108.766ZM83.6133 107.562L83.6064 108.738C83.5016 108.715 83.4014 108.702 83.3057 108.697C83.2145 108.688 83.1097 108.684 82.9912 108.684C82.6995 108.684 82.4421 108.729 82.2188 108.82C81.9954 108.911 81.8063 109.039 81.6514 109.203C81.4964 109.367 81.3734 109.563 81.2822 109.791C81.1956 110.014 81.1387 110.26 81.1113 110.529L80.7559 110.734C80.7559 110.288 80.7992 109.868 80.8857 109.477C80.9769 109.085 81.1159 108.738 81.3027 108.438C81.4896 108.132 81.7266 107.895 82.0137 107.727C82.3053 107.553 82.6517 107.467 83.0527 107.467C83.1439 107.467 83.2487 107.478 83.3672 107.501C83.4857 107.519 83.5677 107.54 83.6133 107.562ZM89.0889 113.038C89.0889 112.856 89.0479 112.687 88.9658 112.532C88.8883 112.373 88.7266 112.229 88.4805 112.102C88.2389 111.969 87.8743 111.855 87.3867 111.76C86.9766 111.673 86.6051 111.571 86.2725 111.452C85.9443 111.334 85.6641 111.19 85.4316 111.021C85.2038 110.853 85.0283 110.655 84.9053 110.427C84.7822 110.199 84.7207 109.932 84.7207 109.627C84.7207 109.335 84.7845 109.06 84.9121 108.8C85.0443 108.54 85.2288 108.31 85.4658 108.109C85.7074 107.909 85.9967 107.752 86.334 107.638C86.6712 107.524 87.0472 107.467 87.4619 107.467C88.0544 107.467 88.5602 107.572 88.9795 107.781C89.3988 107.991 89.7201 108.271 89.9434 108.622C90.1667 108.968 90.2783 109.354 90.2783 109.777H89.0137C89.0137 109.572 88.9521 109.374 88.8291 109.183C88.7106 108.987 88.5352 108.825 88.3027 108.697C88.0749 108.57 87.7946 108.506 87.4619 108.506C87.111 108.506 86.8262 108.561 86.6074 108.67C86.3932 108.775 86.236 108.909 86.1357 109.073C86.04 109.237 85.9922 109.41 85.9922 109.593C85.9922 109.729 86.015 109.853 86.0605 109.962C86.1107 110.067 86.1973 110.165 86.3203 110.256C86.4434 110.342 86.6165 110.424 86.8398 110.502C87.0632 110.579 87.348 110.657 87.6943 110.734C88.3005 110.871 88.7995 111.035 89.1914 111.227C89.5833 111.418 89.875 111.653 90.0664 111.931C90.2578 112.209 90.3535 112.546 90.3535 112.942C90.3535 113.266 90.2852 113.562 90.1484 113.831C90.0163 114.1 89.8226 114.332 89.5674 114.528C89.3167 114.72 89.016 114.87 88.665 114.979C88.3187 115.084 87.929 115.137 87.4961 115.137C86.8444 115.137 86.293 115.021 85.8418 114.788C85.3906 114.556 85.0488 114.255 84.8164 113.886C84.584 113.517 84.4678 113.127 84.4678 112.717H85.7393C85.7575 113.063 85.8577 113.339 86.04 113.544C86.2223 113.744 86.4456 113.888 86.71 113.975C86.9743 114.057 87.2363 114.098 87.4961 114.098C87.8424 114.098 88.1318 114.052 88.3643 113.961C88.6012 113.87 88.7812 113.744 88.9043 113.585C89.0273 113.425 89.0889 113.243 89.0889 113.038ZM91.6797 111.384V111.227C91.6797 110.693 91.7572 110.199 91.9121 109.743C92.0671 109.283 92.2904 108.884 92.582 108.547C92.8737 108.205 93.2269 107.941 93.6416 107.754C94.0563 107.562 94.5212 107.467 95.0361 107.467C95.5557 107.467 96.0228 107.562 96.4375 107.754C96.8568 107.941 97.2122 108.205 97.5039 108.547C97.8001 108.884 98.0257 109.283 98.1807 109.743C98.3356 110.199 98.4131 110.693 98.4131 111.227V111.384C98.4131 111.917 98.3356 112.411 98.1807 112.867C98.0257 113.323 97.8001 113.722 97.5039 114.063C97.2122 114.401 96.859 114.665 96.4443 114.856C96.0342 115.043 95.5693 115.137 95.0498 115.137C94.5303 115.137 94.0632 115.043 93.6484 114.856C93.2337 114.665 92.8783 114.401 92.582 114.063C92.2904 113.722 92.0671 113.323 91.9121 112.867C91.7572 112.411 91.6797 111.917 91.6797 111.384ZM92.9443 111.227V111.384C92.9443 111.753 92.9876 112.102 93.0742 112.43C93.1608 112.753 93.2907 113.04 93.4639 113.291C93.6416 113.542 93.8626 113.74 94.127 113.886C94.3913 114.027 94.6989 114.098 95.0498 114.098C95.3962 114.098 95.6992 114.027 95.959 113.886C96.2233 113.74 96.4421 113.542 96.6152 113.291C96.7884 113.04 96.9183 112.753 97.0049 112.43C97.096 112.102 97.1416 111.753 97.1416 111.384V111.227C97.1416 110.862 97.096 110.518 97.0049 110.194C96.9183 109.866 96.7861 109.577 96.6084 109.326C96.4352 109.071 96.2165 108.87 95.9521 108.725C95.6924 108.579 95.387 108.506 95.0361 108.506C94.6898 108.506 94.3844 108.579 94.1201 108.725C93.8604 108.87 93.6416 109.071 93.4639 109.326C93.2907 109.577 93.1608 109.866 93.0742 110.194C92.9876 110.518 92.9443 110.862 92.9443 111.227ZM101.264 109.183V115H99.999V107.604H101.195L101.264 109.183ZM100.963 111.021L100.437 111.001C100.441 110.495 100.516 110.028 100.662 109.6C100.808 109.167 101.013 108.791 101.277 108.472C101.542 108.153 101.856 107.907 102.221 107.733C102.59 107.556 102.998 107.467 103.444 107.467C103.809 107.467 104.137 107.517 104.429 107.617C104.72 107.713 104.969 107.868 105.174 108.082C105.383 108.296 105.543 108.574 105.652 108.916C105.762 109.253 105.816 109.666 105.816 110.153V115H104.545V110.14C104.545 109.752 104.488 109.442 104.374 109.21C104.26 108.973 104.094 108.802 103.875 108.697C103.656 108.588 103.387 108.533 103.068 108.533C102.754 108.533 102.467 108.599 102.207 108.731C101.952 108.864 101.731 109.046 101.544 109.278C101.362 109.511 101.218 109.777 101.113 110.078C101.013 110.374 100.963 110.689 100.963 111.021ZM112.099 113.735V109.928C112.099 109.636 112.039 109.383 111.921 109.169C111.807 108.95 111.634 108.782 111.401 108.663C111.169 108.545 110.882 108.485 110.54 108.485C110.221 108.485 109.941 108.54 109.699 108.649C109.462 108.759 109.275 108.902 109.139 109.08C109.007 109.258 108.94 109.449 108.94 109.654H107.676C107.676 109.39 107.744 109.128 107.881 108.868C108.018 108.608 108.214 108.374 108.469 108.164C108.729 107.95 109.038 107.781 109.398 107.658C109.763 107.531 110.169 107.467 110.615 107.467C111.153 107.467 111.627 107.558 112.037 107.74C112.452 107.923 112.775 108.198 113.008 108.567C113.245 108.932 113.363 109.39 113.363 109.941V113.387C113.363 113.633 113.384 113.895 113.425 114.173C113.47 114.451 113.536 114.69 113.623 114.891V115H112.304C112.24 114.854 112.19 114.66 112.153 114.419C112.117 114.173 112.099 113.945 112.099 113.735ZM112.317 110.516L112.331 111.404H111.053C110.693 111.404 110.371 111.434 110.089 111.493C109.806 111.548 109.569 111.632 109.378 111.746C109.187 111.86 109.041 112.004 108.94 112.177C108.84 112.345 108.79 112.544 108.79 112.771C108.79 113.004 108.842 113.216 108.947 113.407C109.052 113.599 109.209 113.751 109.419 113.865C109.633 113.975 109.895 114.029 110.205 114.029C110.592 114.029 110.934 113.947 111.23 113.783C111.527 113.619 111.761 113.419 111.935 113.182C112.112 112.945 112.208 112.715 112.222 112.491L112.762 113.1C112.73 113.291 112.643 113.503 112.502 113.735C112.361 113.968 112.172 114.191 111.935 114.405C111.702 114.615 111.424 114.79 111.101 114.932C110.782 115.068 110.422 115.137 110.021 115.137C109.519 115.137 109.079 115.039 108.701 114.843C108.327 114.647 108.036 114.385 107.826 114.057C107.621 113.724 107.519 113.353 107.519 112.942C107.519 112.546 107.596 112.197 107.751 111.896C107.906 111.591 108.129 111.338 108.421 111.138C108.713 110.933 109.063 110.778 109.474 110.673C109.884 110.568 110.342 110.516 110.848 110.516H112.317ZM116.727 104.5V115H115.455V104.5H116.727ZM123.604 107.604V115H122.332V107.604H123.604ZM122.236 105.642C122.236 105.437 122.298 105.263 122.421 105.122C122.549 104.981 122.735 104.91 122.981 104.91C123.223 104.91 123.408 104.981 123.535 105.122C123.667 105.263 123.733 105.437 123.733 105.642C123.733 105.838 123.667 106.006 123.535 106.147C123.408 106.284 123.223 106.353 122.981 106.353C122.735 106.353 122.549 106.284 122.421 106.147C122.298 106.006 122.236 105.838 122.236 105.642ZM126.898 109.183V115H125.634V107.604H126.83L126.898 109.183ZM126.598 111.021L126.071 111.001C126.076 110.495 126.151 110.028 126.297 109.6C126.443 109.167 126.648 108.791 126.912 108.472C127.176 108.153 127.491 107.907 127.855 107.733C128.225 107.556 128.632 107.467 129.079 107.467C129.444 107.467 129.772 107.517 130.063 107.617C130.355 107.713 130.604 107.868 130.809 108.082C131.018 108.296 131.178 108.574 131.287 108.916C131.396 109.253 131.451 109.666 131.451 110.153V115H130.18V110.14C130.18 109.752 130.123 109.442 130.009 109.21C129.895 108.973 129.729 108.802 129.51 108.697C129.291 108.588 129.022 108.533 128.703 108.533C128.389 108.533 128.102 108.599 127.842 108.731C127.587 108.864 127.366 109.046 127.179 109.278C126.996 109.511 126.853 109.777 126.748 110.078C126.648 110.374 126.598 110.689 126.598 111.021ZM135.259 115H133.994V106.824C133.994 106.291 134.09 105.842 134.281 105.478C134.477 105.108 134.757 104.83 135.122 104.644C135.487 104.452 135.92 104.356 136.421 104.356C136.567 104.356 136.713 104.366 136.858 104.384C137.009 104.402 137.155 104.429 137.296 104.466L137.228 105.498C137.132 105.475 137.022 105.459 136.899 105.45C136.781 105.441 136.662 105.437 136.544 105.437C136.275 105.437 136.043 105.491 135.847 105.601C135.655 105.705 135.509 105.86 135.409 106.065C135.309 106.271 135.259 106.523 135.259 106.824V115ZM136.831 107.604V108.574H132.825V107.604H136.831ZM137.904 111.384V111.227C137.904 110.693 137.982 110.199 138.137 109.743C138.292 109.283 138.515 108.884 138.807 108.547C139.098 108.205 139.451 107.941 139.866 107.754C140.281 107.562 140.746 107.467 141.261 107.467C141.78 107.467 142.247 107.562 142.662 107.754C143.081 107.941 143.437 108.205 143.729 108.547C144.025 108.884 144.25 109.283 144.405 109.743C144.56 110.199 144.638 110.693 144.638 111.227V111.384C144.638 111.917 144.56 112.411 144.405 112.867C144.25 113.323 144.025 113.722 143.729 114.063C143.437 114.401 143.084 114.665 142.669 114.856C142.259 115.043 141.794 115.137 141.274 115.137C140.755 115.137 140.288 115.043 139.873 114.856C139.458 114.665 139.103 114.401 138.807 114.063C138.515 113.722 138.292 113.323 138.137 112.867C137.982 112.411 137.904 111.917 137.904 111.384ZM139.169 111.227V111.384C139.169 111.753 139.212 112.102 139.299 112.43C139.385 112.753 139.515 113.04 139.688 113.291C139.866 113.542 140.087 113.74 140.352 113.886C140.616 114.027 140.924 114.098 141.274 114.098C141.621 114.098 141.924 114.027 142.184 113.886C142.448 113.74 142.667 113.542 142.84 113.291C143.013 113.04 143.143 112.753 143.229 112.43C143.321 112.102 143.366 111.753 143.366 111.384V111.227C143.366 110.862 143.321 110.518 143.229 110.194C143.143 109.866 143.011 109.577 142.833 109.326C142.66 109.071 142.441 108.87 142.177 108.725C141.917 108.579 141.612 108.506 141.261 108.506C140.914 108.506 140.609 108.579 140.345 108.725C140.085 108.87 139.866 109.071 139.688 109.326C139.515 109.577 139.385 109.866 139.299 110.194C139.212 110.518 139.169 110.862 139.169 111.227ZM147.488 108.766V115H146.224V107.604H147.454L147.488 108.766ZM149.799 107.562L149.792 108.738C149.687 108.715 149.587 108.702 149.491 108.697C149.4 108.688 149.295 108.684 149.177 108.684C148.885 108.684 148.628 108.729 148.404 108.82C148.181 108.911 147.992 109.039 147.837 109.203C147.682 109.367 147.559 109.563 147.468 109.791C147.381 110.014 147.324 110.26 147.297 110.529L146.941 110.734C146.941 110.288 146.985 109.868 147.071 109.477C147.162 109.085 147.301 108.738 147.488 108.438C147.675 108.132 147.912 107.895 148.199 107.727C148.491 107.553 148.837 107.467 149.238 107.467C149.329 107.467 149.434 107.478 149.553 107.501C149.671 107.519 149.753 107.54 149.799 107.562ZM152.226 109.073V115H150.954V107.604H152.157L152.226 109.073ZM151.966 111.021L151.378 111.001C151.382 110.495 151.449 110.028 151.576 109.6C151.704 109.167 151.893 108.791 152.144 108.472C152.394 108.153 152.706 107.907 153.08 107.733C153.454 107.556 153.887 107.467 154.379 107.467C154.725 107.467 155.044 107.517 155.336 107.617C155.628 107.713 155.881 107.866 156.095 108.075C156.309 108.285 156.475 108.554 156.594 108.882C156.712 109.21 156.771 109.606 156.771 110.071V115H155.507V110.133C155.507 109.745 155.441 109.436 155.309 109.203C155.181 108.971 154.999 108.802 154.762 108.697C154.525 108.588 154.247 108.533 153.928 108.533C153.554 108.533 153.242 108.599 152.991 108.731C152.741 108.864 152.54 109.046 152.39 109.278C152.239 109.511 152.13 109.777 152.062 110.078C151.998 110.374 151.966 110.689 151.966 111.021ZM156.758 110.324L155.91 110.584C155.915 110.178 155.981 109.789 156.108 109.415C156.241 109.041 156.43 108.709 156.676 108.417C156.926 108.125 157.234 107.895 157.599 107.727C157.963 107.553 158.38 107.467 158.85 107.467C159.246 107.467 159.597 107.519 159.902 107.624C160.212 107.729 160.472 107.891 160.682 108.109C160.896 108.324 161.058 108.599 161.167 108.937C161.276 109.274 161.331 109.675 161.331 110.14V115H160.06V110.126C160.06 109.711 159.993 109.39 159.861 109.162C159.734 108.93 159.551 108.768 159.314 108.677C159.082 108.581 158.804 108.533 158.48 108.533C158.202 108.533 157.956 108.581 157.742 108.677C157.528 108.772 157.348 108.905 157.202 109.073C157.056 109.237 156.945 109.426 156.867 109.641C156.794 109.855 156.758 110.083 156.758 110.324ZM167.606 113.735V109.928C167.606 109.636 167.547 109.383 167.429 109.169C167.315 108.95 167.142 108.782 166.909 108.663C166.677 108.545 166.39 108.485 166.048 108.485C165.729 108.485 165.449 108.54 165.207 108.649C164.97 108.759 164.783 108.902 164.646 109.08C164.514 109.258 164.448 109.449 164.448 109.654H163.184C163.184 109.39 163.252 109.128 163.389 108.868C163.525 108.608 163.721 108.374 163.977 108.164C164.236 107.95 164.546 107.781 164.906 107.658C165.271 107.531 165.676 107.467 166.123 107.467C166.661 107.467 167.135 107.558 167.545 107.74C167.96 107.923 168.283 108.198 168.516 108.567C168.753 108.932 168.871 109.39 168.871 109.941V113.387C168.871 113.633 168.892 113.895 168.933 114.173C168.978 114.451 169.044 114.69 169.131 114.891V115H167.812C167.748 114.854 167.698 114.66 167.661 114.419C167.625 114.173 167.606 113.945 167.606 113.735ZM167.825 110.516L167.839 111.404H166.561C166.201 111.404 165.879 111.434 165.597 111.493C165.314 111.548 165.077 111.632 164.886 111.746C164.694 111.86 164.549 112.004 164.448 112.177C164.348 112.345 164.298 112.544 164.298 112.771C164.298 113.004 164.35 113.216 164.455 113.407C164.56 113.599 164.717 113.751 164.927 113.865C165.141 113.975 165.403 114.029 165.713 114.029C166.1 114.029 166.442 113.947 166.738 113.783C167.035 113.619 167.269 113.419 167.442 113.182C167.62 112.945 167.716 112.715 167.729 112.491L168.27 113.1C168.238 113.291 168.151 113.503 168.01 113.735C167.868 113.968 167.679 114.191 167.442 114.405C167.21 114.615 166.932 114.79 166.608 114.932C166.289 115.068 165.929 115.137 165.528 115.137C165.027 115.137 164.587 115.039 164.209 114.843C163.835 114.647 163.544 114.385 163.334 114.057C163.129 113.724 163.026 113.353 163.026 112.942C163.026 112.546 163.104 112.197 163.259 111.896C163.414 111.591 163.637 111.338 163.929 111.138C164.22 110.933 164.571 110.778 164.981 110.673C165.392 110.568 165.85 110.516 166.355 110.516H167.825ZM173.957 107.604V108.574H169.958V107.604H173.957ZM171.312 105.806H172.576V113.168C172.576 113.419 172.615 113.608 172.692 113.735C172.77 113.863 172.87 113.947 172.993 113.988C173.116 114.029 173.248 114.05 173.39 114.05C173.494 114.05 173.604 114.041 173.718 114.022C173.836 114 173.925 113.981 173.984 113.968L173.991 115C173.891 115.032 173.759 115.062 173.595 115.089C173.435 115.121 173.242 115.137 173.014 115.137C172.704 115.137 172.419 115.075 172.159 114.952C171.899 114.829 171.692 114.624 171.537 114.337C171.387 114.045 171.312 113.653 171.312 113.161V105.806ZM176.814 107.604V115H175.543V107.604H176.814ZM175.447 105.642C175.447 105.437 175.509 105.263 175.632 105.122C175.759 104.981 175.946 104.91 176.192 104.91C176.434 104.91 176.618 104.981 176.746 105.122C176.878 105.263 176.944 105.437 176.944 105.642C176.944 105.838 176.878 106.006 176.746 106.147C176.618 106.284 176.434 106.353 176.192 106.353C175.946 106.353 175.759 106.284 175.632 106.147C175.509 106.006 175.447 105.838 175.447 105.642ZM178.51 111.384V111.227C178.51 110.693 178.587 110.199 178.742 109.743C178.897 109.283 179.12 108.884 179.412 108.547C179.704 108.205 180.057 107.941 180.472 107.754C180.886 107.562 181.351 107.467 181.866 107.467C182.386 107.467 182.853 107.562 183.268 107.754C183.687 107.941 184.042 108.205 184.334 108.547C184.63 108.884 184.856 109.283 185.011 109.743C185.166 110.199 185.243 110.693 185.243 111.227V111.384C185.243 111.917 185.166 112.411 185.011 112.867C184.856 113.323 184.63 113.722 184.334 114.063C184.042 114.401 183.689 114.665 183.274 114.856C182.864 115.043 182.399 115.137 181.88 115.137C181.36 115.137 180.893 115.043 180.479 114.856C180.064 114.665 179.708 114.401 179.412 114.063C179.12 113.722 178.897 113.323 178.742 112.867C178.587 112.411 178.51 111.917 178.51 111.384ZM179.774 111.227V111.384C179.774 111.753 179.818 112.102 179.904 112.43C179.991 112.753 180.121 113.04 180.294 113.291C180.472 113.542 180.693 113.74 180.957 113.886C181.221 114.027 181.529 114.098 181.88 114.098C182.226 114.098 182.529 114.027 182.789 113.886C183.053 113.74 183.272 113.542 183.445 113.291C183.618 113.04 183.748 112.753 183.835 112.43C183.926 112.102 183.972 111.753 183.972 111.384V111.227C183.972 110.862 183.926 110.518 183.835 110.194C183.748 109.866 183.616 109.577 183.438 109.326C183.265 109.071 183.047 108.87 182.782 108.725C182.522 108.579 182.217 108.506 181.866 108.506C181.52 108.506 181.215 108.579 180.95 108.725C180.69 108.87 180.472 109.071 180.294 109.326C180.121 109.577 179.991 109.866 179.904 110.194C179.818 110.518 179.774 110.862 179.774 111.227ZM188.094 109.183V115H186.829V107.604H188.025L188.094 109.183ZM187.793 111.021L187.267 111.001C187.271 110.495 187.346 110.028 187.492 109.6C187.638 109.167 187.843 108.791 188.107 108.472C188.372 108.153 188.686 107.907 189.051 107.733C189.42 107.556 189.828 107.467 190.274 107.467C190.639 107.467 190.967 107.517 191.259 107.617C191.55 107.713 191.799 107.868 192.004 108.082C192.214 108.296 192.373 108.574 192.482 108.916C192.592 109.253 192.646 109.666 192.646 110.153V115H191.375V110.14C191.375 109.752 191.318 109.442 191.204 109.21C191.09 108.973 190.924 108.802 190.705 108.697C190.486 108.588 190.217 108.533 189.898 108.533C189.584 108.533 189.297 108.599 189.037 108.731C188.782 108.864 188.561 109.046 188.374 109.278C188.192 109.511 188.048 109.777 187.943 110.078C187.843 110.374 187.793 110.689 187.793 111.021Z",fill:"#64748B"})),{AdvancedFields:tn}=JetFBComponents,{__:ln}=wp.i18n,{InspectorControls:rn,useBlockProps:nn}=wp.blockEditor?wp.blockEditor:wp.editor,an=JSON.parse('{"apiVersion":3,"name":"jet-forms/group-break-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","conditonal"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Group Break Field","icon":"\\n\\n\\n\\n","attributes":{"visibility":{"type":"string","default":""},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:on}=wp.i18n,{createBlock:sn}=wp.blocks,{name:cn,icon:dn=""}=an,mn={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:dn}}),description:on("Create a break between two fields with a horizontal line. Separate different form parts without dividing form on two pages.","jet-form-builder"),edit:function(e){const C=nn(),{isSelected:t,attributes:l,editProps:{uniqKey:r}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Cn):(0,h.createElement)(h.Fragment,null,t&&(0,h.createElement)(rn,{key:r("InspectorControls")},(0,h.createElement)(tn,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{...C},(0,h.createElement)("div",{className:"jet-form-builder__group-break jet-form-builder__bottom-line"},(0,h.createElement)("span",null,ln("GROUP BREAK","jet-form-builder")))))},useEditProps:["uniqKey"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>sn("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["core/separator"],transform:()=>sn("core/separator",{}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>sn(cn,{...e}),priority:0},{type:"block",blocks:["core/separator"],transform:()=>sn(cn,{}),priority:0}]}},un=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_274_2880)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{width:"268",height:"143",transform:"translate(15 15)",fill:"white"}),(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V45H15V19Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M37.6562 29.3262V30.3994H32.2695V29.3262H37.6562ZM32.4746 25.0469V35H31.1553V25.0469H32.4746ZM38.8047 25.0469V35H37.4922V25.0469H38.8047ZM44.0273 35.1367C43.5124 35.1367 43.0452 35.0501 42.626 34.877C42.2113 34.6992 41.8535 34.4508 41.5527 34.1318C41.2565 33.8128 41.0286 33.4346 40.8691 32.9971C40.7096 32.5596 40.6299 32.0811 40.6299 31.5615V31.2744C40.6299 30.6729 40.7188 30.1374 40.8965 29.668C41.0742 29.194 41.3158 28.793 41.6211 28.4648C41.9264 28.1367 42.2728 27.8883 42.6602 27.7197C43.0475 27.5511 43.4486 27.4668 43.8633 27.4668C44.3919 27.4668 44.8477 27.5579 45.2305 27.7402C45.6178 27.9225 45.9346 28.1777 46.1807 28.5059C46.4268 28.8294 46.609 29.2122 46.7275 29.6543C46.846 30.0918 46.9053 30.5703 46.9053 31.0898V31.6572H41.3818V30.625H45.6406V30.5293C45.6224 30.2012 45.554 29.8822 45.4355 29.5723C45.3216 29.2624 45.1393 29.0072 44.8887 28.8066C44.638 28.6061 44.2962 28.5059 43.8633 28.5059C43.5762 28.5059 43.3118 28.5674 43.0703 28.6904C42.8288 28.8089 42.6214 28.9867 42.4482 29.2236C42.2751 29.4606 42.1406 29.75 42.0449 30.0918C41.9492 30.4336 41.9014 30.8278 41.9014 31.2744V31.5615C41.9014 31.9124 41.9492 32.2428 42.0449 32.5527C42.1452 32.8581 42.2887 33.127 42.4756 33.3594C42.667 33.5918 42.8971 33.7741 43.166 33.9062C43.4395 34.0384 43.7493 34.1045 44.0957 34.1045C44.5423 34.1045 44.9206 34.0133 45.2305 33.8311C45.5404 33.6488 45.8115 33.4049 46.0439 33.0996L46.8096 33.708C46.6501 33.9495 46.4473 34.1797 46.2012 34.3984C45.9551 34.6172 45.652 34.7949 45.292 34.9316C44.9365 35.0684 44.515 35.1367 44.0273 35.1367ZM52.7432 33.7354V29.9277C52.7432 29.6361 52.6839 29.3831 52.5654 29.1689C52.4515 28.9502 52.2783 28.7816 52.0459 28.6631C51.8135 28.5446 51.5264 28.4854 51.1846 28.4854C50.8656 28.4854 50.5853 28.54 50.3438 28.6494C50.1068 28.7588 49.9199 28.9023 49.7832 29.0801C49.651 29.2578 49.585 29.4492 49.585 29.6543H48.3203C48.3203 29.39 48.3887 29.1279 48.5254 28.8682C48.6621 28.6084 48.8581 28.3737 49.1133 28.1641C49.373 27.9499 49.6829 27.7812 50.043 27.6582C50.4076 27.5306 50.8132 27.4668 51.2598 27.4668C51.7975 27.4668 52.2715 27.5579 52.6816 27.7402C53.0964 27.9225 53.4199 28.1982 53.6523 28.5674C53.8893 28.932 54.0078 29.39 54.0078 29.9414V33.3867C54.0078 33.6328 54.0283 33.8949 54.0693 34.1729C54.1149 34.4508 54.181 34.6901 54.2676 34.8906V35H52.9482C52.8844 34.8542 52.8343 34.6605 52.7979 34.4189C52.7614 34.1729 52.7432 33.945 52.7432 33.7354ZM52.9619 30.5156L52.9756 31.4043H51.6973C51.3372 31.4043 51.016 31.4339 50.7334 31.4932C50.4508 31.5479 50.2139 31.6322 50.0225 31.7461C49.8311 31.86 49.6852 32.0036 49.585 32.1768C49.4847 32.3454 49.4346 32.5436 49.4346 32.7715C49.4346 33.0039 49.487 33.2158 49.5918 33.4072C49.6966 33.5986 49.8538 33.7513 50.0635 33.8652C50.2777 33.9746 50.5397 34.0293 50.8496 34.0293C51.237 34.0293 51.5788 33.9473 51.875 33.7832C52.1712 33.6191 52.4059 33.4186 52.5791 33.1816C52.7568 32.9447 52.8525 32.7145 52.8662 32.4912L53.4062 33.0996C53.3743 33.291 53.2878 33.5029 53.1465 33.7354C53.0052 33.9678 52.8161 34.1911 52.5791 34.4053C52.3467 34.6149 52.0687 34.7904 51.7451 34.9316C51.4261 35.0684 51.0661 35.1367 50.665 35.1367C50.1637 35.1367 49.724 35.0387 49.3457 34.8428C48.972 34.6468 48.6803 34.3848 48.4707 34.0566C48.2656 33.724 48.1631 33.3525 48.1631 32.9424C48.1631 32.5459 48.2406 32.1973 48.3955 31.8965C48.5505 31.5911 48.7738 31.3382 49.0654 31.1377C49.3571 30.9326 49.708 30.7777 50.1182 30.6729C50.5283 30.568 50.9863 30.5156 51.4922 30.5156H52.9619ZM60.6592 33.5645V24.5H61.9307V35H60.7686L60.6592 33.5645ZM55.6826 31.3838V31.2402C55.6826 30.6751 55.751 30.1624 55.8877 29.7021C56.029 29.2373 56.2272 28.8385 56.4824 28.5059C56.7422 28.1732 57.0498 27.918 57.4053 27.7402C57.7653 27.5579 58.1663 27.4668 58.6084 27.4668C59.0732 27.4668 59.4788 27.5488 59.8252 27.7129C60.1761 27.8724 60.4723 28.1071 60.7139 28.417C60.96 28.7223 61.1536 29.0915 61.2949 29.5244C61.4362 29.9574 61.5342 30.4473 61.5889 30.9941V31.623C61.5387 32.1654 61.4408 32.653 61.2949 33.0859C61.1536 33.5189 60.96 33.888 60.7139 34.1934C60.4723 34.4987 60.1761 34.7334 59.8252 34.8975C59.4743 35.057 59.0641 35.1367 58.5947 35.1367C58.1618 35.1367 57.7653 35.0433 57.4053 34.8564C57.0498 34.6696 56.7422 34.4076 56.4824 34.0703C56.2272 33.7331 56.029 33.3366 55.8877 32.8809C55.751 32.4206 55.6826 31.9215 55.6826 31.3838ZM56.9541 31.2402V31.3838C56.9541 31.7529 56.9906 32.0993 57.0635 32.4229C57.141 32.7464 57.2594 33.0312 57.4189 33.2773C57.5785 33.5234 57.7812 33.7171 58.0273 33.8584C58.2734 33.9951 58.5674 34.0635 58.9092 34.0635C59.3285 34.0635 59.6725 33.9746 59.9414 33.7969C60.2148 33.6191 60.4336 33.3844 60.5977 33.0928C60.7617 32.8011 60.8893 32.4844 60.9805 32.1426V30.4951C60.9258 30.2445 60.846 30.0029 60.7412 29.7705C60.641 29.5335 60.5088 29.3239 60.3447 29.1416C60.1852 28.9548 59.987 28.8066 59.75 28.6973C59.5176 28.5879 59.2419 28.5332 58.9229 28.5332C58.5765 28.5332 58.278 28.6061 58.0273 28.752C57.7812 28.8932 57.5785 29.0892 57.4189 29.3398C57.2594 29.5859 57.141 29.873 57.0635 30.2012C56.9906 30.5247 56.9541 30.8711 56.9541 31.2402ZM65.2734 27.6035V35H64.002V27.6035H65.2734ZM63.9062 25.6416C63.9062 25.4365 63.9678 25.2633 64.0908 25.1221C64.2184 24.9808 64.4053 24.9102 64.6514 24.9102C64.8929 24.9102 65.0775 24.9808 65.2051 25.1221C65.3372 25.2633 65.4033 25.4365 65.4033 25.6416C65.4033 25.8376 65.3372 26.0062 65.2051 26.1475C65.0775 26.2842 64.8929 26.3525 64.6514 26.3525C64.4053 26.3525 64.2184 26.2842 64.0908 26.1475C63.9678 26.0062 63.9062 25.8376 63.9062 25.6416ZM68.5684 29.1826V35H67.3037V27.6035H68.5L68.5684 29.1826ZM68.2676 31.0215L67.7412 31.001C67.7458 30.4951 67.821 30.028 67.9668 29.5996C68.1126 29.1667 68.3177 28.7907 68.582 28.4717C68.8464 28.1527 69.1608 27.9066 69.5254 27.7334C69.8945 27.5557 70.3024 27.4668 70.749 27.4668C71.1136 27.4668 71.4417 27.5169 71.7334 27.6172C72.0251 27.7129 72.2734 27.8678 72.4785 28.082C72.6882 28.2962 72.8477 28.5742 72.957 28.916C73.0664 29.2533 73.1211 29.6657 73.1211 30.1533V35H71.8496V30.1396C71.8496 29.7523 71.7926 29.4424 71.6787 29.21C71.5648 28.973 71.3984 28.8021 71.1797 28.6973C70.9609 28.5879 70.6921 28.5332 70.373 28.5332C70.0586 28.5332 69.7715 28.5993 69.5117 28.7314C69.2565 28.8636 69.0355 29.0459 68.8486 29.2783C68.6663 29.5107 68.5228 29.7773 68.418 30.0781C68.3177 30.3743 68.2676 30.6888 68.2676 31.0215ZM79.834 27.6035H80.9824V34.8428C80.9824 35.4945 80.8503 36.0505 80.5859 36.5107C80.3216 36.971 79.9525 37.3197 79.4785 37.5566C79.0091 37.7982 78.4668 37.9189 77.8516 37.9189C77.5964 37.9189 77.2956 37.8779 76.9492 37.7959C76.6074 37.7184 76.2702 37.584 75.9375 37.3926C75.6094 37.2057 75.3337 36.9528 75.1104 36.6338L75.7734 35.8818C76.0833 36.2555 76.4069 36.5153 76.7441 36.6611C77.0859 36.807 77.4232 36.8799 77.7559 36.8799C78.1569 36.8799 78.5033 36.8047 78.7949 36.6543C79.0866 36.5039 79.3122 36.2806 79.4717 35.9844C79.6357 35.6927 79.7178 35.3327 79.7178 34.9043V29.2305L79.834 27.6035ZM74.7412 31.3838V31.2402C74.7412 30.6751 74.8073 30.1624 74.9395 29.7021C75.0762 29.2373 75.2699 28.8385 75.5205 28.5059C75.7757 28.1732 76.0833 27.918 76.4434 27.7402C76.8034 27.5579 77.209 27.4668 77.6602 27.4668C78.125 27.4668 78.5306 27.5488 78.877 27.7129C79.2279 27.8724 79.5241 28.1071 79.7656 28.417C80.0117 28.7223 80.2054 29.0915 80.3467 29.5244C80.488 29.9574 80.5859 30.4473 80.6406 30.9941V31.623C80.5905 32.1654 80.4925 32.653 80.3467 33.0859C80.2054 33.5189 80.0117 33.888 79.7656 34.1934C79.5241 34.4987 79.2279 34.7334 78.877 34.8975C78.526 35.057 78.1159 35.1367 77.6465 35.1367C77.2044 35.1367 76.8034 35.0433 76.4434 34.8564C76.0879 34.6696 75.7826 34.4076 75.5273 34.0703C75.2721 33.7331 75.0762 33.3366 74.9395 32.8809C74.8073 32.4206 74.7412 31.9215 74.7412 31.3838ZM76.0059 31.2402V31.3838C76.0059 31.7529 76.0423 32.0993 76.1152 32.4229C76.1927 32.7464 76.3089 33.0312 76.4639 33.2773C76.6234 33.5234 76.8262 33.7171 77.0723 33.8584C77.3184 33.9951 77.6123 34.0635 77.9541 34.0635C78.3734 34.0635 78.7197 33.9746 78.9932 33.7969C79.2666 33.6191 79.4831 33.3844 79.6426 33.0928C79.8066 32.8011 79.9342 32.4844 80.0254 32.1426V30.4951C79.9753 30.2445 79.8978 30.0029 79.793 29.7705C79.6927 29.5335 79.5605 29.3239 79.3965 29.1416C79.237 28.9548 79.0387 28.8066 78.8018 28.6973C78.5648 28.5879 78.2868 28.5332 77.9678 28.5332C77.6214 28.5332 77.3229 28.6061 77.0723 28.752C76.8262 28.8932 76.6234 29.0892 76.4639 29.3398C76.3089 29.5859 76.1927 29.873 76.1152 30.2012C76.0423 30.5247 76.0059 30.8711 76.0059 31.2402Z",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"55",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"25.5",y:"64.5",width:"247",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"25.5",y:"64.5",width:"247",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("rect",{x:"25",y:"109",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"25.5",y:"118.5",width:"247",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"25.5",y:"118.5",width:"247",height:"29",rx:"3.5",stroke:"#E2E8F0"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_274_2880"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})))),{GeneralFields:pn,AdvancedFields:fn,FieldWrapper:Vn}=JetFBComponents,{InspectorControls:Hn,useBlockProps:hn}=wp.blockEditor?wp.blockEditor:wp.editor,bn=JSON.parse('{"apiVersion":3,"name":"jet-forms/heading-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","field","heading"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Heading Field","icon":"\\n\\n","attributes":{"label":{"type":"string","default":"","jfb":{"rich":true}},"desc":{"type":"string","default":"","jfb":{"rich":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:Mn}=wp.i18n,{createBlock:Ln}=wp.blocks,{name:gn,icon:Zn=""}=bn,yn={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Zn}}),description:Mn("Build a heading for the form that can’t be changed by the users. Add the labels and descriptions to the different parts of the form.","jet-form-builder"),edit:function(e){const C=hn(),{isSelected:t,attributes:l,editProps:{uniqKey:r}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},un):[t&&(0,h.createElement)(Hn,{key:r("InspectorControls")},(0,h.createElement)(pn,{key:r("GeneralFields"),...e}),(0,h.createElement)(fn,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{...C,key:r("viewBlock")},(0,h.createElement)(Vn,{key:r("FieldWrapper"),valueIfEmptyLabel:"Heading",...e}))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},__experimentalLabel:(e,{context:C})=>{if("list-view"===C)return e.label||bn.title},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Ln("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["core/paragraph"],transform:({label:e=""})=>Ln("core/paragraph",{content:e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Ln(gn,{...e}),priority:0},{type:"block",blocks:["core/paragraph"],transform:({content:e=""})=>Ln(gn,{label:e}),priority:0}]}},{ToggleControl:En,withFilters:wn}=wp.components,{__:vn}=wp.i18n,{useBlockAttributes:_n}=JetFBHooks;let kn=function(){const[e,C]=_n();return(0,h.createElement)(h.Fragment,null,"referer_url"!==e.field_value&&(0,h.createElement)(En,{label:vn("Render in HTML","jet-form-builder"),checked:e.render,help:vn("Enable this option if you use this field in Calculated Field, Conditional Block, Advanced Validation, Global Macros, or Dynamic Value.","jet-form-builder"),onChange:e=>C({render:Boolean(e)})}),(0,h.createElement)(En,{label:vn("Return the raw value","jet-form-builder"),help:vn("If this option is enabled, the value of the field will be JSON-encoded if the value is an array or object","jet-form-builder"),checked:e.return_raw,onChange:e=>C({return_raw:e})}))};kn=wn("jfb.hidden-field.header.controls")(kn);const jn=kn,{__:xn}=wp.i18n,{TextControl:Fn,withFilters:Bn}=wp.components;let An=function({attributes:e,setAttributes:C}){return(0,h.createElement)(h.Fragment,null,["post_meta","user_meta"].includes(e.field_value)&&(0,h.createElement)(Fn,{key:"hidden_value_field",label:"Meta Field to Get Value From",value:e.hidden_value_field,onChange:e=>C({hidden_value_field:e})}),"query_var"===e.field_value&&(0,h.createElement)(Fn,{key:"query_var_key",label:"Query Variable Key",value:e.query_var_key,onChange:e=>C({query_var_key:e})}),"current_date"===e.field_value&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Fn,{key:"date_format",label:"Format",value:e.date_format,onChange:e=>C({date_format:e})}),(0,h.createElement)("b",null,xn("Example:","jet-form-builder")),(0,h.createElement)("br",null),(0,h.createElement)("i",null,"Y-m-d\\TH:i - "),xn("datetime format","jet-form-builder"),(0,h.createElement)("br",null),(0,h.createElement)("i",null,"U - "),xn("timestamp format","jet-form-builder")),"manual_input"===e.field_value&&(0,h.createElement)(Fn,{key:"hidden_value",label:"Value",value:e.hidden_value,onChange:e=>{C({hidden_value:e})}}))};An=Bn("jfb.hidden-field.field-value.controls")(An);const Pn=An,{useBlockAttributes:Sn}=JetFBHooks,{SelectControl:Nn}=wp.components,In=function(){const[e,C]=Sn();return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(jn,{attributes:e,setAttributes:C}),(0,h.createElement)(Nn,{key:"field_value",label:"Field Value",labelPosition:"top",value:e.field_value,onChange:t=>{C({field_value:t}),(t=>{!t||e.name&&"hidden_field_name"!==e.name||C({name:t})})(t)},options:JetFormHiddenField.sources}),(0,h.createElement)(Pn,{attributes:e,setAttributes:C}))},Tn=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("g",{clipPath:"url(#clip0_75_1466)"},(0,h.createElement)("path",{d:"M22.6562 48.3262V49.3994H17.2695V48.3262H22.6562ZM17.4746 44.0469V54H16.1553V44.0469H17.4746ZM23.8047 44.0469V54H22.4922V44.0469H23.8047ZM27.332 46.6035V54H26.0605V46.6035H27.332ZM25.9648 44.6416C25.9648 44.4365 26.0264 44.2633 26.1494 44.1221C26.277 43.9808 26.4639 43.9102 26.71 43.9102C26.9515 43.9102 27.1361 43.9808 27.2637 44.1221C27.3958 44.2633 27.4619 44.4365 27.4619 44.6416C27.4619 44.8376 27.3958 45.0062 27.2637 45.1475C27.1361 45.2842 26.9515 45.3525 26.71 45.3525C26.4639 45.3525 26.277 45.2842 26.1494 45.1475C26.0264 45.0062 25.9648 44.8376 25.9648 44.6416ZM34.0244 52.5645V43.5H35.2959V54H34.1338L34.0244 52.5645ZM29.0479 50.3838V50.2402C29.0479 49.6751 29.1162 49.1624 29.2529 48.7021C29.3942 48.2373 29.5924 47.8385 29.8477 47.5059C30.1074 47.1732 30.415 46.918 30.7705 46.7402C31.1305 46.5579 31.5316 46.4668 31.9736 46.4668C32.4385 46.4668 32.8441 46.5488 33.1904 46.7129C33.5413 46.8724 33.8376 47.1071 34.0791 47.417C34.3252 47.7223 34.5189 48.0915 34.6602 48.5244C34.8014 48.9574 34.8994 49.4473 34.9541 49.9941V50.623C34.904 51.1654 34.806 51.653 34.6602 52.0859C34.5189 52.5189 34.3252 52.888 34.0791 53.1934C33.8376 53.4987 33.5413 53.7334 33.1904 53.8975C32.8395 54.057 32.4294 54.1367 31.96 54.1367C31.527 54.1367 31.1305 54.0433 30.7705 53.8564C30.415 53.6696 30.1074 53.4076 29.8477 53.0703C29.5924 52.7331 29.3942 52.3366 29.2529 51.8809C29.1162 51.4206 29.0479 50.9215 29.0479 50.3838ZM30.3193 50.2402V50.3838C30.3193 50.7529 30.3558 51.0993 30.4287 51.4229C30.5062 51.7464 30.6247 52.0312 30.7842 52.2773C30.9437 52.5234 31.1465 52.7171 31.3926 52.8584C31.6387 52.9951 31.9326 53.0635 32.2744 53.0635C32.6937 53.0635 33.0378 52.9746 33.3066 52.7969C33.5801 52.6191 33.7988 52.3844 33.9629 52.0928C34.127 51.8011 34.2546 51.4844 34.3457 51.1426V49.4951C34.291 49.2445 34.2113 49.0029 34.1064 48.7705C34.0062 48.5335 33.874 48.3239 33.71 48.1416C33.5505 47.9548 33.3522 47.8066 33.1152 47.6973C32.8828 47.5879 32.6071 47.5332 32.2881 47.5332C31.9417 47.5332 31.6432 47.6061 31.3926 47.752C31.1465 47.8932 30.9437 48.0892 30.7842 48.3398C30.6247 48.5859 30.5062 48.873 30.4287 49.2012C30.3558 49.5247 30.3193 49.8711 30.3193 50.2402ZM41.9268 52.5645V43.5H43.1982V54H42.0361L41.9268 52.5645ZM36.9502 50.3838V50.2402C36.9502 49.6751 37.0186 49.1624 37.1553 48.7021C37.2965 48.2373 37.4948 47.8385 37.75 47.5059C38.0098 47.1732 38.3174 46.918 38.6729 46.7402C39.0329 46.5579 39.4339 46.4668 39.876 46.4668C40.3408 46.4668 40.7464 46.5488 41.0928 46.7129C41.4437 46.8724 41.7399 47.1071 41.9814 47.417C42.2275 47.7223 42.4212 48.0915 42.5625 48.5244C42.7038 48.9574 42.8018 49.4473 42.8564 49.9941V50.623C42.8063 51.1654 42.7083 51.653 42.5625 52.0859C42.4212 52.5189 42.2275 52.888 41.9814 53.1934C41.7399 53.4987 41.4437 53.7334 41.0928 53.8975C40.7419 54.057 40.3317 54.1367 39.8623 54.1367C39.4294 54.1367 39.0329 54.0433 38.6729 53.8564C38.3174 53.6696 38.0098 53.4076 37.75 53.0703C37.4948 52.7331 37.2965 52.3366 37.1553 51.8809C37.0186 51.4206 36.9502 50.9215 36.9502 50.3838ZM38.2217 50.2402V50.3838C38.2217 50.7529 38.2581 51.0993 38.3311 51.4229C38.4085 51.7464 38.527 52.0312 38.6865 52.2773C38.846 52.5234 39.0488 52.7171 39.2949 52.8584C39.541 52.9951 39.835 53.0635 40.1768 53.0635C40.596 53.0635 40.9401 52.9746 41.209 52.7969C41.4824 52.6191 41.7012 52.3844 41.8652 52.0928C42.0293 51.8011 42.1569 51.4844 42.248 51.1426V49.4951C42.1934 49.2445 42.1136 49.0029 42.0088 48.7705C41.9085 48.5335 41.7764 48.3239 41.6123 48.1416C41.4528 47.9548 41.2546 47.8066 41.0176 47.6973C40.7852 47.5879 40.5094 47.5332 40.1904 47.5332C39.8441 47.5332 39.5456 47.6061 39.2949 47.752C39.0488 47.8932 38.846 48.0892 38.6865 48.3398C38.527 48.5859 38.4085 48.873 38.3311 49.2012C38.2581 49.5247 38.2217 49.8711 38.2217 50.2402ZM48.2363 54.1367C47.7214 54.1367 47.2542 54.0501 46.835 53.877C46.4202 53.6992 46.0625 53.4508 45.7617 53.1318C45.4655 52.8128 45.2376 52.4346 45.0781 51.9971C44.9186 51.5596 44.8389 51.0811 44.8389 50.5615V50.2744C44.8389 49.6729 44.9277 49.1374 45.1055 48.668C45.2832 48.194 45.5247 47.793 45.8301 47.4648C46.1354 47.1367 46.4818 46.8883 46.8691 46.7197C47.2565 46.5511 47.6576 46.4668 48.0723 46.4668C48.6009 46.4668 49.0566 46.5579 49.4395 46.7402C49.8268 46.9225 50.1436 47.1777 50.3896 47.5059C50.6357 47.8294 50.818 48.2122 50.9365 48.6543C51.055 49.0918 51.1143 49.5703 51.1143 50.0898V50.6572H45.5908V49.625H49.8496V49.5293C49.8314 49.2012 49.763 48.8822 49.6445 48.5723C49.5306 48.2624 49.3483 48.0072 49.0977 47.8066C48.847 47.6061 48.5052 47.5059 48.0723 47.5059C47.7852 47.5059 47.5208 47.5674 47.2793 47.6904C47.0378 47.8089 46.8304 47.9867 46.6572 48.2236C46.484 48.4606 46.3496 48.75 46.2539 49.0918C46.1582 49.4336 46.1104 49.8278 46.1104 50.2744V50.5615C46.1104 50.9124 46.1582 51.2428 46.2539 51.5527C46.3542 51.8581 46.4977 52.127 46.6846 52.3594C46.876 52.5918 47.1061 52.7741 47.375 52.9062C47.6484 53.0384 47.9583 53.1045 48.3047 53.1045C48.7513 53.1045 49.1296 53.0133 49.4395 52.8311C49.7493 52.6488 50.0205 52.4049 50.2529 52.0996L51.0186 52.708C50.859 52.9495 50.6562 53.1797 50.4102 53.3984C50.1641 53.6172 49.861 53.7949 49.501 53.9316C49.1455 54.0684 48.724 54.1367 48.2363 54.1367ZM53.8555 48.1826V54H52.5908V46.6035H53.7871L53.8555 48.1826ZM53.5547 50.0215L53.0283 50.001C53.0329 49.4951 53.1081 49.028 53.2539 48.5996C53.3997 48.1667 53.6048 47.7907 53.8691 47.4717C54.1335 47.1527 54.4479 46.9066 54.8125 46.7334C55.1816 46.5557 55.5895 46.4668 56.0361 46.4668C56.4007 46.4668 56.7288 46.5169 57.0205 46.6172C57.3122 46.7129 57.5605 46.8678 57.7656 47.082C57.9753 47.2962 58.1348 47.5742 58.2441 47.916C58.3535 48.2533 58.4082 48.6657 58.4082 49.1533V54H57.1367V49.1396C57.1367 48.7523 57.0798 48.4424 56.9658 48.21C56.8519 47.973 56.6855 47.8021 56.4668 47.6973C56.248 47.5879 55.9792 47.5332 55.6602 47.5332C55.3457 47.5332 55.0586 47.5993 54.7988 47.7314C54.5436 47.8636 54.3226 48.0459 54.1357 48.2783C53.9535 48.5107 53.8099 48.7773 53.7051 49.0781C53.6048 49.3743 53.5547 49.6888 53.5547 50.0215ZM65.4902 54H64.2256V45.9609C64.2256 45.4004 64.335 44.9264 64.5537 44.5391C64.7725 44.1517 65.0846 43.8577 65.4902 43.6572C65.8958 43.4567 66.3766 43.3564 66.9326 43.3564C67.2607 43.3564 67.582 43.3975 67.8965 43.4795C68.2109 43.557 68.5345 43.6549 68.8672 43.7734L68.6553 44.8398C68.4456 44.7578 68.2018 44.6803 67.9238 44.6074C67.6504 44.5299 67.3496 44.4912 67.0215 44.4912C66.4792 44.4912 66.0872 44.6143 65.8457 44.8604C65.6087 45.1019 65.4902 45.4688 65.4902 45.9609V54ZM67.001 46.6035V47.5742H63.0566V46.6035H67.001ZM69.4893 46.6035V54H68.2246V46.6035H69.4893ZM74.6367 54.1367C74.1217 54.1367 73.6546 54.0501 73.2354 53.877C72.8206 53.6992 72.4629 53.4508 72.1621 53.1318C71.8659 52.8128 71.638 52.4346 71.4785 51.9971C71.319 51.5596 71.2393 51.0811 71.2393 50.5615V50.2744C71.2393 49.6729 71.3281 49.1374 71.5059 48.668C71.6836 48.194 71.9251 47.793 72.2305 47.4648C72.5358 47.1367 72.8822 46.8883 73.2695 46.7197C73.6569 46.5511 74.0579 46.4668 74.4727 46.4668C75.0013 46.4668 75.457 46.5579 75.8398 46.7402C76.2272 46.9225 76.5439 47.1777 76.79 47.5059C77.0361 47.8294 77.2184 48.2122 77.3369 48.6543C77.4554 49.0918 77.5146 49.5703 77.5146 50.0898V50.6572H71.9912V49.625H76.25V49.5293C76.2318 49.2012 76.1634 48.8822 76.0449 48.5723C75.931 48.2624 75.7487 48.0072 75.498 47.8066C75.2474 47.6061 74.9056 47.5059 74.4727 47.5059C74.1855 47.5059 73.9212 47.5674 73.6797 47.6904C73.4382 47.8089 73.2308 47.9867 73.0576 48.2236C72.8844 48.4606 72.75 48.75 72.6543 49.0918C72.5586 49.4336 72.5107 49.8278 72.5107 50.2744V50.5615C72.5107 50.9124 72.5586 51.2428 72.6543 51.5527C72.7546 51.8581 72.8981 52.127 73.085 52.3594C73.2764 52.5918 73.5065 52.7741 73.7754 52.9062C74.0488 53.0384 74.3587 53.1045 74.7051 53.1045C75.1517 53.1045 75.5299 53.0133 75.8398 52.8311C76.1497 52.6488 76.4209 52.4049 76.6533 52.0996L77.4189 52.708C77.2594 52.9495 77.0566 53.1797 76.8105 53.3984C76.5645 53.6172 76.2614 53.7949 75.9014 53.9316C75.5459 54.0684 75.1243 54.1367 74.6367 54.1367ZM80.3652 43.5V54H79.0938V43.5H80.3652ZM87.0576 52.5645V43.5H88.3291V54H87.167L87.0576 52.5645ZM82.0811 50.3838V50.2402C82.0811 49.6751 82.1494 49.1624 82.2861 48.7021C82.4274 48.2373 82.6257 47.8385 82.8809 47.5059C83.1406 47.1732 83.4482 46.918 83.8037 46.7402C84.1637 46.5579 84.5648 46.4668 85.0068 46.4668C85.4717 46.4668 85.8773 46.5488 86.2236 46.7129C86.5745 46.8724 86.8708 47.1071 87.1123 47.417C87.3584 47.7223 87.5521 48.0915 87.6934 48.5244C87.8346 48.9574 87.9326 49.4473 87.9873 49.9941V50.623C87.9372 51.1654 87.8392 51.653 87.6934 52.0859C87.5521 52.5189 87.3584 52.888 87.1123 53.1934C86.8708 53.4987 86.5745 53.7334 86.2236 53.8975C85.8727 54.057 85.4626 54.1367 84.9932 54.1367C84.5602 54.1367 84.1637 54.0433 83.8037 53.8564C83.4482 53.6696 83.1406 53.4076 82.8809 53.0703C82.6257 52.7331 82.4274 52.3366 82.2861 51.8809C82.1494 51.4206 82.0811 50.9215 82.0811 50.3838ZM83.3525 50.2402V50.3838C83.3525 50.7529 83.389 51.0993 83.4619 51.4229C83.5394 51.7464 83.6579 52.0312 83.8174 52.2773C83.9769 52.5234 84.1797 52.7171 84.4258 52.8584C84.6719 52.9951 84.9658 53.0635 85.3076 53.0635C85.7269 53.0635 86.071 52.9746 86.3398 52.7969C86.6133 52.6191 86.832 52.3844 86.9961 52.0928C87.1602 51.8011 87.2878 51.4844 87.3789 51.1426V49.4951C87.3242 49.2445 87.2445 49.0029 87.1396 48.7705C87.0394 48.5335 86.9072 48.3239 86.7432 48.1416C86.5837 47.9548 86.3854 47.8066 86.1484 47.6973C85.916 47.5879 85.6403 47.5332 85.3213 47.5332C84.9749 47.5332 84.6764 47.6061 84.4258 47.752C84.1797 47.8932 83.9769 48.0892 83.8174 48.3398C83.6579 48.5859 83.5394 48.873 83.4619 49.2012C83.389 49.5247 83.3525 49.8711 83.3525 50.2402ZM94.6045 52.0381C94.6045 51.8558 94.5635 51.6872 94.4814 51.5322C94.404 51.3727 94.2422 51.2292 93.9961 51.1016C93.7546 50.9694 93.39 50.8555 92.9023 50.7598C92.4922 50.6732 92.1208 50.5706 91.7881 50.4521C91.46 50.3337 91.1797 50.1901 90.9473 50.0215C90.7194 49.8529 90.5439 49.6546 90.4209 49.4268C90.2979 49.1989 90.2363 48.9323 90.2363 48.627C90.2363 48.3353 90.3001 48.0596 90.4277 47.7998C90.5599 47.54 90.7445 47.3099 90.9814 47.1094C91.223 46.9089 91.5124 46.7516 91.8496 46.6377C92.1868 46.5238 92.5628 46.4668 92.9775 46.4668C93.57 46.4668 94.0758 46.5716 94.4951 46.7812C94.9144 46.9909 95.2357 47.2712 95.459 47.6221C95.6823 47.9684 95.7939 48.3535 95.7939 48.7773H94.5293C94.5293 48.5723 94.4678 48.374 94.3447 48.1826C94.2262 47.9867 94.0508 47.8249 93.8184 47.6973C93.5905 47.5697 93.3102 47.5059 92.9775 47.5059C92.6266 47.5059 92.3418 47.5605 92.123 47.6699C91.9089 47.7747 91.7516 47.9092 91.6514 48.0732C91.5557 48.2373 91.5078 48.4105 91.5078 48.5928C91.5078 48.7295 91.5306 48.8525 91.5762 48.9619C91.6263 49.0667 91.7129 49.1647 91.8359 49.2559C91.959 49.3424 92.1322 49.4245 92.3555 49.502C92.5788 49.5794 92.8636 49.6569 93.21 49.7344C93.8161 49.8711 94.3151 50.0352 94.707 50.2266C95.099 50.418 95.3906 50.6527 95.582 50.9307C95.7734 51.2087 95.8691 51.5459 95.8691 51.9424C95.8691 52.266 95.8008 52.5622 95.6641 52.8311C95.5319 53.0999 95.3382 53.3324 95.083 53.5283C94.8324 53.7197 94.5316 53.8701 94.1807 53.9795C93.8343 54.0843 93.4447 54.1367 93.0117 54.1367C92.36 54.1367 91.8086 54.0205 91.3574 53.7881C90.9062 53.5557 90.5645 53.2549 90.332 52.8857C90.0996 52.5166 89.9834 52.127 89.9834 51.7168H91.2549C91.2731 52.0632 91.3734 52.3389 91.5557 52.5439C91.738 52.7445 91.9613 52.888 92.2256 52.9746C92.4899 53.0566 92.752 53.0977 93.0117 53.0977C93.3581 53.0977 93.6475 53.0521 93.8799 52.9609C94.1169 52.8698 94.2969 52.7445 94.4199 52.585C94.543 52.4255 94.6045 52.2432 94.6045 52.0381Z",fill:"#64748B"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1466)"},(0,h.createElement)("path",{d:"M24.0001 67.25C26.0701 67.25 27.7501 68.93 27.7501 71C27.7501 71.4875 27.6526 71.945 27.4801 72.3725L29.6701 74.5625C30.8026 73.6175 31.6951 72.395 32.2426 71C30.9451 67.7075 27.7426 65.375 23.9926 65.375C22.9426 65.375 21.9376 65.5625 21.0076 65.9L22.6276 67.52C23.0551 67.3475 23.5126 67.25 24.0001 67.25ZM16.5001 65.2025L18.2101 66.9125L18.5551 67.2575C17.3101 68.225 16.3351 69.515 15.7501 71C17.0476 74.2925 20.2501 76.625 24.0001 76.625C25.1626 76.625 26.2726 76.4 27.2851 75.995L27.6001 76.31L29.7976 78.5L30.7501 77.5475L17.4526 64.25L16.5001 65.2025ZM20.6476 69.35L21.8101 70.5125C21.7726 70.67 21.7501 70.835 21.7501 71C21.7501 72.245 22.7551 73.25 24.0001 73.25C24.1651 73.25 24.3301 73.2275 24.4876 73.19L25.6501 74.3525C25.1476 74.6 24.5926 74.75 24.0001 74.75C21.9301 74.75 20.2501 73.07 20.2501 71C20.2501 70.4075 20.4001 69.8525 20.6476 69.35ZM23.8801 68.765L26.2426 71.1275L26.2576 71.0075C26.2576 69.7625 25.2526 68.7575 24.0076 68.7575L23.8801 68.765Z",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M40.0693 65.75V75.5H38.895V65.75H40.0693ZM39.79 71.8057L39.3013 71.7866C39.3055 71.3169 39.3753 70.8831 39.5107 70.4854C39.6462 70.0833 39.8366 69.7342 40.082 69.438C40.3275 69.1418 40.6195 68.9132 40.958 68.7524C41.3008 68.5874 41.6795 68.5049 42.0942 68.5049C42.4328 68.5049 42.7375 68.5514 43.0083 68.6445C43.2791 68.7334 43.5098 68.8773 43.7002 69.0762C43.8949 69.2751 44.043 69.5332 44.1445 69.8506C44.2461 70.1637 44.2969 70.5467 44.2969 70.9995V75.5H43.1162V70.9868C43.1162 70.6271 43.0633 70.3394 42.9575 70.1235C42.8517 69.9035 42.6973 69.7448 42.4941 69.6475C42.291 69.5459 42.0413 69.4951 41.7451 69.4951C41.4531 69.4951 41.1865 69.5565 40.9453 69.6792C40.7083 69.8019 40.5031 69.9712 40.3296 70.187C40.1603 70.4028 40.027 70.6504 39.9297 70.9297C39.8366 71.2048 39.79 71.4967 39.79 71.8057ZM47.3311 68.6318V75.5H46.1504V68.6318H47.3311ZM46.0615 66.8101C46.0615 66.6196 46.1187 66.4588 46.2329 66.3276C46.3514 66.1965 46.5249 66.1309 46.7534 66.1309C46.9777 66.1309 47.1491 66.1965 47.2676 66.3276C47.3903 66.4588 47.4517 66.6196 47.4517 66.8101C47.4517 66.992 47.3903 67.1486 47.2676 67.2798C47.1491 67.4067 46.9777 67.4702 46.7534 67.4702C46.5249 67.4702 46.3514 67.4067 46.2329 67.2798C46.1187 67.1486 46.0615 66.992 46.0615 66.8101ZM53.5454 74.167V65.75H54.7261V75.5H53.647L53.5454 74.167ZM48.9243 72.1421V72.0088C48.9243 71.484 48.9878 71.008 49.1147 70.5806C49.2459 70.1489 49.43 69.7786 49.667 69.4697C49.9082 69.1608 50.1938 68.9238 50.5239 68.7588C50.8582 68.5895 51.2306 68.5049 51.6411 68.5049C52.0728 68.5049 52.4494 68.5811 52.771 68.7334C53.0968 68.8815 53.3719 69.0994 53.5962 69.3872C53.8247 69.6707 54.0046 70.0135 54.1357 70.4155C54.2669 70.8175 54.3579 71.2725 54.4087 71.7803V72.3643C54.3621 72.8678 54.2712 73.3206 54.1357 73.7227C54.0046 74.1247 53.8247 74.4674 53.5962 74.751C53.3719 75.0345 53.0968 75.2524 52.771 75.4048C52.4451 75.5529 52.0643 75.627 51.6284 75.627C51.2264 75.627 50.8582 75.5402 50.5239 75.3667C50.1938 75.1932 49.9082 74.9499 49.667 74.6367C49.43 74.3236 49.2459 73.9554 49.1147 73.5322C48.9878 73.1048 48.9243 72.6414 48.9243 72.1421ZM50.105 72.0088V72.1421C50.105 72.4849 50.1388 72.8065 50.2065 73.1069C50.2785 73.4074 50.3885 73.6719 50.5366 73.9004C50.6847 74.1289 50.873 74.3088 51.1016 74.4399C51.3301 74.5669 51.603 74.6304 51.9204 74.6304C52.3097 74.6304 52.6292 74.5479 52.8789 74.3828C53.1328 74.2178 53.3359 73.9998 53.4883 73.729C53.6406 73.4582 53.7591 73.1641 53.8438 72.8467V71.3169C53.793 71.0841 53.7189 70.8599 53.6216 70.644C53.5285 70.424 53.4058 70.2293 53.2534 70.0601C53.1053 69.8866 52.9212 69.749 52.7012 69.6475C52.4854 69.5459 52.2293 69.4951 51.9331 69.4951C51.6115 69.4951 51.3343 69.5628 51.1016 69.6982C50.873 69.8294 50.6847 70.0114 50.5366 70.2441C50.3885 70.4727 50.2785 70.7393 50.2065 71.0439C50.1388 71.3444 50.105 71.666 50.105 72.0088ZM60.8833 74.167V65.75H62.064V75.5H60.9849L60.8833 74.167ZM56.2622 72.1421V72.0088C56.2622 71.484 56.3257 71.008 56.4526 70.5806C56.5838 70.1489 56.7679 69.7786 57.0049 69.4697C57.2461 69.1608 57.5317 68.9238 57.8618 68.7588C58.1961 68.5895 58.5685 68.5049 58.979 68.5049C59.4106 68.5049 59.7873 68.5811 60.1089 68.7334C60.4347 68.8815 60.7098 69.0994 60.9341 69.3872C61.1626 69.6707 61.3424 70.0135 61.4736 70.4155C61.6048 70.8175 61.6958 71.2725 61.7466 71.7803V72.3643C61.7 72.8678 61.609 73.3206 61.4736 73.7227C61.3424 74.1247 61.1626 74.4674 60.9341 74.751C60.7098 75.0345 60.4347 75.2524 60.1089 75.4048C59.783 75.5529 59.4022 75.627 58.9663 75.627C58.5643 75.627 58.1961 75.5402 57.8618 75.3667C57.5317 75.1932 57.2461 74.9499 57.0049 74.6367C56.7679 74.3236 56.5838 73.9554 56.4526 73.5322C56.3257 73.1048 56.2622 72.6414 56.2622 72.1421ZM57.4429 72.0088V72.1421C57.4429 72.4849 57.4767 72.8065 57.5444 73.1069C57.6164 73.4074 57.7264 73.6719 57.8745 73.9004C58.0226 74.1289 58.2109 74.3088 58.4395 74.4399C58.668 74.5669 58.9409 74.6304 59.2583 74.6304C59.6476 74.6304 59.9671 74.5479 60.2168 74.3828C60.4707 74.2178 60.6738 73.9998 60.8262 73.729C60.9785 73.4582 61.097 73.1641 61.1816 72.8467V71.3169C61.1309 71.0841 61.0568 70.8599 60.9595 70.644C60.8664 70.424 60.7437 70.2293 60.5913 70.0601C60.4432 69.8866 60.2591 69.749 60.0391 69.6475C59.8232 69.5459 59.5672 69.4951 59.271 69.4951C58.9494 69.4951 58.6722 69.5628 58.4395 69.6982C58.2109 69.8294 58.0226 70.0114 57.8745 70.2441C57.7264 70.4727 57.6164 70.7393 57.5444 71.0439C57.4767 71.3444 57.4429 71.666 57.4429 72.0088ZM66.7422 75.627C66.264 75.627 65.8302 75.5465 65.4409 75.3857C65.0558 75.2207 64.7236 74.9901 64.4443 74.6938C64.1693 74.3976 63.9577 74.0464 63.8096 73.6401C63.6615 73.2339 63.5874 72.7896 63.5874 72.3071V72.0405C63.5874 71.4819 63.6699 70.9847 63.835 70.5488C64 70.1087 64.2243 69.7363 64.5078 69.4316C64.7913 69.127 65.113 68.8963 65.4727 68.7397C65.8324 68.5832 66.2048 68.5049 66.5898 68.5049C67.0807 68.5049 67.5039 68.5895 67.8594 68.7588C68.2191 68.9281 68.5132 69.165 68.7417 69.4697C68.9702 69.7702 69.1395 70.1257 69.2495 70.5361C69.3595 70.9424 69.4146 71.3867 69.4146 71.8691V72.396H64.2856V71.4375H68.2402V71.3486C68.2233 71.0439 68.1598 70.7477 68.0498 70.46C67.944 70.1722 67.7747 69.9352 67.542 69.749C67.3092 69.5628 66.9919 69.4697 66.5898 69.4697C66.3232 69.4697 66.0778 69.5269 65.8535 69.6411C65.6292 69.7511 65.4367 69.9162 65.2759 70.1362C65.1151 70.3563 64.9902 70.625 64.9014 70.9424C64.8125 71.2598 64.7681 71.6258 64.7681 72.0405V72.3071C64.7681 72.633 64.8125 72.9398 64.9014 73.2275C64.9945 73.5111 65.1278 73.7607 65.3013 73.9766C65.479 74.1924 65.6927 74.3617 65.9424 74.4844C66.1963 74.6071 66.484 74.6685 66.8057 74.6685C67.2204 74.6685 67.5716 74.5838 67.8594 74.4146C68.1471 74.2453 68.3989 74.0189 68.6147 73.7354L69.3257 74.3003C69.1776 74.5246 68.9893 74.7383 68.7607 74.9414C68.5322 75.1445 68.2508 75.3096 67.9165 75.4365C67.5864 75.5635 67.195 75.627 66.7422 75.627ZM71.96 70.0981V75.5H70.7856V68.6318H71.8965L71.96 70.0981ZM71.6807 71.8057L71.1919 71.7866C71.1961 71.3169 71.266 70.8831 71.4014 70.4854C71.5368 70.0833 71.7272 69.7342 71.9727 69.438C72.2181 69.1418 72.5101 68.9132 72.8486 68.7524C73.1914 68.5874 73.5701 68.5049 73.9849 68.5049C74.3234 68.5049 74.6281 68.5514 74.8989 68.6445C75.1698 68.7334 75.4004 68.8773 75.5908 69.0762C75.7855 69.2751 75.9336 69.5332 76.0352 69.8506C76.1367 70.1637 76.1875 70.5467 76.1875 70.9995V75.5H75.0068V70.9868C75.0068 70.6271 74.9539 70.3394 74.8481 70.1235C74.7424 69.9035 74.5879 69.7448 74.3848 69.6475C74.1816 69.5459 73.932 69.4951 73.6357 69.4951C73.3438 69.4951 73.0771 69.5565 72.8359 69.6792C72.599 69.8019 72.3937 69.9712 72.2202 70.187C72.0509 70.4028 71.9176 70.6504 71.8203 70.9297C71.7272 71.2048 71.6807 71.4967 71.6807 71.8057ZM82.9224 75.5V76.4648H77.1016V75.5H82.9224ZM86.7119 68.6318V69.5332H82.9985V68.6318H86.7119ZM84.2554 66.9624H85.4297V73.7988C85.4297 74.0316 85.4657 74.2072 85.5376 74.3257C85.6095 74.4442 85.7026 74.5225 85.8169 74.5605C85.9312 74.5986 86.0539 74.6177 86.1851 74.6177C86.2824 74.6177 86.384 74.6092 86.4897 74.5923C86.5998 74.5711 86.6823 74.5542 86.7373 74.5415L86.7437 75.5C86.6506 75.5296 86.5278 75.5571 86.3755 75.5825C86.2274 75.6121 86.0475 75.627 85.8359 75.627C85.5482 75.627 85.2837 75.5698 85.0425 75.4556C84.8013 75.3413 84.6087 75.1509 84.4648 74.8843C84.3252 74.6134 84.2554 74.2495 84.2554 73.7925V66.9624ZM92.1392 74.3257V70.79C92.1392 70.5192 92.0841 70.2843 91.9741 70.0854C91.8683 69.8823 91.7075 69.7257 91.4917 69.6157C91.2759 69.5057 91.0093 69.4507 90.6919 69.4507C90.3957 69.4507 90.1354 69.5015 89.9111 69.603C89.6911 69.7046 89.5176 69.8379 89.3906 70.0029C89.2679 70.168 89.2065 70.3457 89.2065 70.5361H88.0322C88.0322 70.2907 88.0957 70.0474 88.2227 69.8062C88.3496 69.5649 88.5316 69.347 88.7686 69.1523C89.0098 68.9535 89.2975 68.7969 89.6318 68.6826C89.9704 68.5641 90.347 68.5049 90.7617 68.5049C91.2611 68.5049 91.7012 68.5895 92.082 68.7588C92.4671 68.9281 92.7676 69.1841 92.9834 69.5269C93.2035 69.8654 93.3135 70.2907 93.3135 70.8027V74.002C93.3135 74.2305 93.3325 74.4738 93.3706 74.7319C93.4129 74.9901 93.4743 75.2122 93.5547 75.3984V75.5H92.3296C92.2703 75.3646 92.2238 75.1847 92.1899 74.9604C92.1561 74.7319 92.1392 74.5203 92.1392 74.3257ZM92.3423 71.3359L92.355 72.1611H91.168C90.8337 72.1611 90.5353 72.1886 90.2729 72.2437C90.0106 72.2944 89.7905 72.3727 89.6128 72.4785C89.4351 72.5843 89.2996 72.7176 89.2065 72.8784C89.1134 73.035 89.0669 73.2191 89.0669 73.4307C89.0669 73.6465 89.1156 73.8433 89.2129 74.021C89.3102 74.1987 89.4562 74.3405 89.6509 74.4463C89.8498 74.5479 90.0931 74.5986 90.3809 74.5986C90.7406 74.5986 91.0579 74.5225 91.333 74.3701C91.6081 74.2178 91.826 74.0316 91.9868 73.8115C92.1519 73.5915 92.2407 73.3778 92.2534 73.1704L92.7549 73.7354C92.7253 73.9131 92.6449 74.1099 92.5137 74.3257C92.3825 74.5415 92.2069 74.7489 91.9868 74.9478C91.771 75.1424 91.5129 75.3053 91.2124 75.4365C90.9162 75.5635 90.5819 75.627 90.2095 75.627C89.744 75.627 89.3356 75.536 88.9844 75.354C88.6374 75.172 88.3665 74.9287 88.1719 74.624C87.9814 74.3151 87.8862 73.9702 87.8862 73.5894C87.8862 73.2212 87.9582 72.8975 88.1021 72.6182C88.2459 72.3346 88.4533 72.0998 88.7241 71.9136C88.995 71.7231 89.3208 71.5793 89.7017 71.4819C90.0825 71.3846 90.5078 71.3359 90.9775 71.3359H92.3423ZM95.9541 68.6318L97.4585 71.1328L98.9819 68.6318H100.359L98.1123 72.0215L100.429 75.5H99.0708L97.4839 72.9229L95.897 75.5H94.5322L96.8428 72.0215L94.6021 68.6318H95.9541ZM106.561 75.5V76.4648H100.74V75.5H106.561ZM108.649 69.9521V78.1406H107.469V68.6318H108.548L108.649 69.9521ZM113.277 72.0088V72.1421C113.277 72.6414 113.218 73.1048 113.099 73.5322C112.981 73.9554 112.807 74.3236 112.579 74.6367C112.354 74.9499 112.077 75.1932 111.747 75.3667C111.417 75.5402 111.038 75.627 110.611 75.627C110.175 75.627 109.79 75.555 109.456 75.4111C109.121 75.2673 108.838 75.0578 108.605 74.7827C108.372 74.5076 108.186 74.1776 108.046 73.7925C107.911 73.4074 107.818 72.9736 107.767 72.4912V71.7803C107.818 71.2725 107.913 70.8175 108.053 70.4155C108.192 70.0135 108.376 69.6707 108.605 69.3872C108.838 69.0994 109.119 68.8815 109.449 68.7334C109.779 68.5811 110.16 68.5049 110.592 68.5049C111.023 68.5049 111.406 68.5895 111.741 68.7588C112.075 68.9238 112.356 69.1608 112.585 69.4697C112.813 69.7786 112.985 70.1489 113.099 70.5806C113.218 71.008 113.277 71.484 113.277 72.0088ZM112.096 72.1421V72.0088C112.096 71.666 112.06 71.3444 111.988 71.0439C111.916 70.7393 111.804 70.4727 111.652 70.2441C111.504 70.0114 111.313 69.8294 111.081 69.6982C110.848 69.5628 110.571 69.4951 110.249 69.4951C109.953 69.4951 109.695 69.5459 109.475 69.6475C109.259 69.749 109.075 69.8866 108.922 70.0601C108.77 70.2293 108.645 70.424 108.548 70.644C108.455 70.8599 108.385 71.0841 108.338 71.3169V72.9609C108.423 73.2572 108.542 73.5365 108.694 73.7988C108.846 74.057 109.049 74.2664 109.303 74.4272C109.557 74.5838 109.877 74.6621 110.262 74.6621C110.579 74.6621 110.852 74.5965 111.081 74.4653C111.313 74.3299 111.504 74.1458 111.652 73.9131C111.804 73.6803 111.916 73.4137 111.988 73.1133C112.06 72.8086 112.096 72.4849 112.096 72.1421ZM117.625 75.627C117.147 75.627 116.713 75.5465 116.324 75.3857C115.939 75.2207 115.606 74.9901 115.327 74.6938C115.052 74.3976 114.84 74.0464 114.692 73.6401C114.544 73.2339 114.47 72.7896 114.47 72.3071V72.0405C114.47 71.4819 114.553 70.9847 114.718 70.5488C114.883 70.1087 115.107 69.7363 115.391 69.4316C115.674 69.127 115.996 68.8963 116.355 68.7397C116.715 68.5832 117.088 68.5049 117.473 68.5049C117.964 68.5049 118.387 68.5895 118.742 68.7588C119.102 68.9281 119.396 69.165 119.625 69.4697C119.853 69.7702 120.022 70.1257 120.132 70.5361C120.242 70.9424 120.297 71.3867 120.297 71.8691V72.396H115.168V71.4375H119.123V71.3486C119.106 71.0439 119.043 70.7477 118.933 70.46C118.827 70.1722 118.658 69.9352 118.425 69.749C118.192 69.5628 117.875 69.4697 117.473 69.4697C117.206 69.4697 116.961 69.5269 116.736 69.6411C116.512 69.7511 116.319 69.9162 116.159 70.1362C115.998 70.3563 115.873 70.625 115.784 70.9424C115.695 71.2598 115.651 71.6258 115.651 72.0405V72.3071C115.651 72.633 115.695 72.9398 115.784 73.2275C115.877 73.5111 116.011 73.7607 116.184 73.9766C116.362 74.1924 116.576 74.3617 116.825 74.4844C117.079 74.6071 117.367 74.6685 117.688 74.6685C118.103 74.6685 118.454 74.5838 118.742 74.4146C119.03 74.2453 119.282 74.0189 119.498 73.7354L120.208 74.3003C120.06 74.5246 119.872 74.7383 119.644 74.9414C119.415 75.1445 119.134 75.3096 118.799 75.4365C118.469 75.5635 118.078 75.627 117.625 75.627ZM122.843 69.7109V75.5H121.668V68.6318H122.811L122.843 69.7109ZM124.988 68.5938L124.982 69.6855C124.885 69.6644 124.792 69.6517 124.703 69.6475C124.618 69.639 124.521 69.6348 124.411 69.6348C124.14 69.6348 123.901 69.6771 123.693 69.7617C123.486 69.8464 123.31 69.9648 123.167 70.1172C123.023 70.2695 122.908 70.4515 122.824 70.6631C122.743 70.8704 122.69 71.099 122.665 71.3486L122.335 71.5391C122.335 71.1243 122.375 70.735 122.456 70.3711C122.54 70.0072 122.669 69.6855 122.843 69.4062C123.016 69.1227 123.236 68.9027 123.503 68.7461C123.774 68.5853 124.095 68.5049 124.468 68.5049C124.552 68.5049 124.65 68.5155 124.76 68.5366C124.87 68.5535 124.946 68.5726 124.988 68.5938ZM128.695 74.6621C128.975 74.6621 129.233 74.605 129.47 74.4907C129.707 74.3765 129.901 74.2199 130.054 74.021C130.206 73.8179 130.293 73.5872 130.314 73.3291H131.431C131.41 73.7354 131.272 74.1141 131.019 74.4653C130.769 74.8123 130.441 75.0938 130.035 75.3096C129.628 75.5212 129.182 75.627 128.695 75.627C128.179 75.627 127.728 75.536 127.343 75.354C126.962 75.172 126.645 74.9224 126.391 74.605C126.141 74.2876 125.953 73.9237 125.826 73.5132C125.703 73.0985 125.642 72.6605 125.642 72.1992V71.9326C125.642 71.4714 125.703 71.0355 125.826 70.625C125.953 70.2103 126.141 69.8442 126.391 69.5269C126.645 69.2095 126.962 68.9598 127.343 68.7778C127.728 68.5959 128.179 68.5049 128.695 68.5049C129.233 68.5049 129.702 68.6149 130.104 68.835C130.507 69.0508 130.822 69.347 131.05 69.7236C131.283 70.096 131.41 70.5192 131.431 70.9932H130.314C130.293 70.7096 130.212 70.4536 130.073 70.2251C129.937 69.9966 129.751 69.8146 129.514 69.6792C129.281 69.5396 129.008 69.4697 128.695 69.4697C128.336 69.4697 128.033 69.5417 127.788 69.6855C127.546 69.8252 127.354 70.0156 127.21 70.2568C127.07 70.4938 126.969 70.7583 126.905 71.0503C126.846 71.3381 126.816 71.6322 126.816 71.9326V72.1992C126.816 72.4997 126.846 72.7959 126.905 73.0879C126.965 73.3799 127.064 73.6444 127.204 73.8813C127.347 74.1183 127.54 74.3088 127.781 74.4526C128.027 74.5923 128.331 74.6621 128.695 74.6621ZM135.602 75.627C135.123 75.627 134.69 75.5465 134.3 75.3857C133.915 75.2207 133.583 74.9901 133.304 74.6938C133.029 74.3976 132.817 74.0464 132.669 73.6401C132.521 73.2339 132.447 72.7896 132.447 72.3071V72.0405C132.447 71.4819 132.529 70.9847 132.694 70.5488C132.859 70.1087 133.084 69.7363 133.367 69.4316C133.651 69.127 133.972 68.8963 134.332 68.7397C134.692 68.5832 135.064 68.5049 135.449 68.5049C135.94 68.5049 136.363 68.5895 136.719 68.7588C137.078 68.9281 137.373 69.165 137.601 69.4697C137.83 69.7702 137.999 70.1257 138.109 70.5361C138.219 70.9424 138.274 71.3867 138.274 71.8691V72.396H133.145V71.4375H137.1V71.3486C137.083 71.0439 137.019 70.7477 136.909 70.46C136.803 70.1722 136.634 69.9352 136.401 69.749C136.169 69.5628 135.851 69.4697 135.449 69.4697C135.183 69.4697 134.937 69.5269 134.713 69.6411C134.489 69.7511 134.296 69.9162 134.135 70.1362C133.974 70.3563 133.85 70.625 133.761 70.9424C133.672 71.2598 133.627 71.6258 133.627 72.0405V72.3071C133.627 72.633 133.672 72.9398 133.761 73.2275C133.854 73.5111 133.987 73.7607 134.161 73.9766C134.338 74.1924 134.552 74.3617 134.802 74.4844C135.056 74.6071 135.343 74.6685 135.665 74.6685C136.08 74.6685 136.431 74.5838 136.719 74.4146C137.007 74.2453 137.258 74.0189 137.474 73.7354L138.185 74.3003C138.037 74.5246 137.849 74.7383 137.62 74.9414C137.392 75.1445 137.11 75.3096 136.776 75.4365C136.446 75.5635 136.054 75.627 135.602 75.627ZM140.819 70.0981V75.5H139.645V68.6318H140.756L140.819 70.0981ZM140.54 71.8057L140.051 71.7866C140.056 71.3169 140.125 70.8831 140.261 70.4854C140.396 70.0833 140.587 69.7342 140.832 69.438C141.077 69.1418 141.369 68.9132 141.708 68.7524C142.051 68.5874 142.43 68.5049 142.844 68.5049C143.183 68.5049 143.487 68.5514 143.758 68.6445C144.029 68.7334 144.26 68.8773 144.45 69.0762C144.645 69.2751 144.793 69.5332 144.895 69.8506C144.996 70.1637 145.047 70.5467 145.047 70.9995V75.5H143.866V70.9868C143.866 70.6271 143.813 70.3394 143.708 70.1235C143.602 69.9035 143.447 69.7448 143.244 69.6475C143.041 69.5459 142.791 69.4951 142.495 69.4951C142.203 69.4951 141.937 69.5565 141.695 69.6792C141.458 69.8019 141.253 69.9712 141.08 70.187C140.91 70.4028 140.777 70.6504 140.68 70.9297C140.587 71.2048 140.54 71.4967 140.54 71.8057ZM149.706 68.6318V69.5332H145.993V68.6318H149.706ZM147.25 66.9624H148.424V73.7988C148.424 74.0316 148.46 74.2072 148.532 74.3257C148.604 74.4442 148.697 74.5225 148.811 74.5605C148.925 74.5986 149.048 74.6177 149.179 74.6177C149.277 74.6177 149.378 74.6092 149.484 74.5923C149.594 74.5711 149.676 74.5542 149.731 74.5415L149.738 75.5C149.645 75.5296 149.522 75.5571 149.37 75.5825C149.222 75.6121 149.042 75.627 148.83 75.627C148.542 75.627 148.278 75.5698 148.037 75.4556C147.795 75.3413 147.603 75.1509 147.459 74.8843C147.319 74.6134 147.25 74.2495 147.25 73.7925V66.9624Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M255.253 71.1011L254.314 70.8599L254.777 66.2578H259.519V67.3433H255.774L255.495 69.8569C255.664 69.7596 255.878 69.6686 256.136 69.584C256.398 69.4993 256.699 69.457 257.037 69.457C257.465 69.457 257.847 69.5311 258.186 69.6792C258.525 69.8231 258.812 70.0304 259.049 70.3013C259.291 70.5721 259.475 70.8979 259.602 71.2788C259.729 71.6597 259.792 72.085 259.792 72.5547C259.792 72.999 259.731 73.4074 259.608 73.7798C259.489 74.1522 259.31 74.478 259.068 74.7573C258.827 75.0324 258.522 75.2461 258.154 75.3984C257.79 75.5508 257.361 75.627 256.866 75.627C256.493 75.627 256.14 75.5762 255.806 75.4746C255.476 75.3688 255.179 75.2101 254.917 74.9985C254.659 74.7827 254.447 74.5161 254.282 74.1987C254.121 73.8771 254.02 73.5005 253.978 73.0688H255.095C255.146 73.4159 255.247 73.7078 255.399 73.9448C255.552 74.1818 255.751 74.3617 255.996 74.4844C256.246 74.6029 256.536 74.6621 256.866 74.6621C257.145 74.6621 257.393 74.6134 257.608 74.5161C257.824 74.4188 258.006 74.2791 258.154 74.0972C258.302 73.9152 258.415 73.6951 258.491 73.437C258.571 73.1789 258.611 72.889 258.611 72.5674C258.611 72.2754 258.571 72.0046 258.491 71.7549C258.41 71.5052 258.29 71.2873 258.129 71.1011C257.972 70.9149 257.78 70.771 257.551 70.6694C257.323 70.5636 257.06 70.5107 256.764 70.5107C256.371 70.5107 256.072 70.5636 255.869 70.6694C255.67 70.7752 255.465 70.9191 255.253 71.1011ZM260.979 68.5239V68.0352C260.979 67.6839 261.055 67.3644 261.208 67.0767C261.36 66.7889 261.578 66.5583 261.861 66.3848C262.145 66.2113 262.481 66.1245 262.871 66.1245C263.268 66.1245 263.607 66.2113 263.886 66.3848C264.17 66.5583 264.388 66.7889 264.54 67.0767C264.692 67.3644 264.769 67.6839 264.769 68.0352V68.5239C264.769 68.8667 264.692 69.182 264.54 69.4697C264.392 69.7575 264.176 69.9881 263.893 70.1616C263.613 70.3351 263.277 70.4219 262.883 70.4219C262.49 70.4219 262.149 70.3351 261.861 70.1616C261.578 69.9881 261.36 69.7575 261.208 69.4697C261.055 69.182 260.979 68.8667 260.979 68.5239ZM261.861 68.0352V68.5239C261.861 68.7186 261.897 68.9027 261.969 69.0762C262.045 69.2497 262.16 69.3914 262.312 69.5015C262.464 69.6073 262.655 69.6602 262.883 69.6602C263.112 69.6602 263.3 69.6073 263.448 69.5015C263.596 69.3914 263.706 69.2497 263.778 69.0762C263.85 68.9027 263.886 68.7186 263.886 68.5239V68.0352C263.886 67.8363 263.848 67.6501 263.772 67.4766C263.7 67.2988 263.588 67.1571 263.436 67.0513C263.287 66.9412 263.099 66.8862 262.871 66.8862C262.646 66.8862 262.458 66.9412 262.306 67.0513C262.158 67.1571 262.045 67.2988 261.969 67.4766C261.897 67.6501 261.861 67.8363 261.861 68.0352ZM265.479 73.729V73.2339C265.479 72.8869 265.556 72.5695 265.708 72.2817C265.86 71.994 266.078 71.7633 266.362 71.5898C266.645 71.4163 266.982 71.3296 267.371 71.3296C267.769 71.3296 268.107 71.4163 268.387 71.5898C268.67 71.7633 268.888 71.994 269.041 72.2817C269.193 72.5695 269.269 72.8869 269.269 73.2339V73.729C269.269 74.076 269.193 74.3934 269.041 74.6812C268.892 74.9689 268.677 75.1995 268.393 75.373C268.114 75.5465 267.777 75.6333 267.384 75.6333C266.99 75.6333 266.652 75.5465 266.368 75.373C266.085 75.1995 265.865 74.9689 265.708 74.6812C265.556 74.3934 265.479 74.076 265.479 73.729ZM266.362 73.2339V73.729C266.362 73.9237 266.398 74.1099 266.47 74.2876C266.546 74.4611 266.66 74.6029 266.812 74.7129C266.965 74.8187 267.155 74.8716 267.384 74.8716C267.612 74.8716 267.801 74.8187 267.949 74.7129C268.101 74.6029 268.213 74.4611 268.285 74.2876C268.357 74.1141 268.393 73.9279 268.393 73.729V73.2339C268.393 73.035 268.355 72.8488 268.279 72.6753C268.207 72.5018 268.095 72.3621 267.942 72.2563C267.794 72.1463 267.604 72.0913 267.371 72.0913C267.147 72.0913 266.958 72.1463 266.806 72.2563C266.658 72.3621 266.546 72.5018 266.47 72.6753C266.398 72.8488 266.362 73.035 266.362 73.2339ZM267.663 67.5718L263.15 74.7954L262.49 74.3765L267.003 67.1528L267.663 67.5718Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip2_75_1466)"},(0,h.createElement)("path",{d:"M24.0001 90.25C26.0701 90.25 27.7501 91.93 27.7501 94C27.7501 94.4875 27.6526 94.945 27.4801 95.3725L29.6701 97.5625C30.8026 96.6175 31.6951 95.395 32.2426 94C30.9451 90.7075 27.7426 88.375 23.9926 88.375C22.9426 88.375 21.9376 88.5625 21.0076 88.9L22.6276 90.52C23.0551 90.3475 23.5126 90.25 24.0001 90.25ZM16.5001 88.2025L18.2101 89.9125L18.5551 90.2575C17.3101 91.225 16.3351 92.515 15.7501 94C17.0476 97.2925 20.2501 99.625 24.0001 99.625C25.1626 99.625 26.2726 99.4 27.2851 98.995L27.6001 99.31L29.7976 101.5L30.7501 100.547L17.4526 87.25L16.5001 88.2025ZM20.6476 92.35L21.8101 93.5125C21.7726 93.67 21.7501 93.835 21.7501 94C21.7501 95.245 22.7551 96.25 24.0001 96.25C24.1651 96.25 24.3301 96.2275 24.4876 96.19L25.6501 97.3525C25.1476 97.6 24.5926 97.75 24.0001 97.75C21.9301 97.75 20.2501 96.07 20.2501 94C20.2501 93.4075 20.4001 92.8525 20.6476 92.35ZM23.8801 91.765L26.2426 94.1275L26.2576 94.0075C26.2576 92.7625 25.2526 91.7575 24.0076 91.7575L23.8801 91.765Z",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M40.0693 88.75V98.5H38.895V88.75H40.0693ZM39.79 94.8057L39.3013 94.7866C39.3055 94.3169 39.3753 93.8831 39.5107 93.4854C39.6462 93.0833 39.8366 92.7342 40.082 92.438C40.3275 92.1418 40.6195 91.9132 40.958 91.7524C41.3008 91.5874 41.6795 91.5049 42.0942 91.5049C42.4328 91.5049 42.7375 91.5514 43.0083 91.6445C43.2791 91.7334 43.5098 91.8773 43.7002 92.0762C43.8949 92.2751 44.043 92.5332 44.1445 92.8506C44.2461 93.1637 44.2969 93.5467 44.2969 93.9995V98.5H43.1162V93.9868C43.1162 93.6271 43.0633 93.3394 42.9575 93.1235C42.8517 92.9035 42.6973 92.7448 42.4941 92.6475C42.291 92.5459 42.0413 92.4951 41.7451 92.4951C41.4531 92.4951 41.1865 92.5565 40.9453 92.6792C40.7083 92.8019 40.5031 92.9712 40.3296 93.187C40.1603 93.4028 40.027 93.6504 39.9297 93.9297C39.8366 94.2048 39.79 94.4967 39.79 94.8057ZM47.3311 91.6318V98.5H46.1504V91.6318H47.3311ZM46.0615 89.8101C46.0615 89.6196 46.1187 89.4588 46.2329 89.3276C46.3514 89.1965 46.5249 89.1309 46.7534 89.1309C46.9777 89.1309 47.1491 89.1965 47.2676 89.3276C47.3903 89.4588 47.4517 89.6196 47.4517 89.8101C47.4517 89.992 47.3903 90.1486 47.2676 90.2798C47.1491 90.4067 46.9777 90.4702 46.7534 90.4702C46.5249 90.4702 46.3514 90.4067 46.2329 90.2798C46.1187 90.1486 46.0615 89.992 46.0615 89.8101ZM53.5454 97.167V88.75H54.7261V98.5H53.647L53.5454 97.167ZM48.9243 95.1421V95.0088C48.9243 94.484 48.9878 94.008 49.1147 93.5806C49.2459 93.1489 49.43 92.7786 49.667 92.4697C49.9082 92.1608 50.1938 91.9238 50.5239 91.7588C50.8582 91.5895 51.2306 91.5049 51.6411 91.5049C52.0728 91.5049 52.4494 91.5811 52.771 91.7334C53.0968 91.8815 53.3719 92.0994 53.5962 92.3872C53.8247 92.6707 54.0046 93.0135 54.1357 93.4155C54.2669 93.8175 54.3579 94.2725 54.4087 94.7803V95.3643C54.3621 95.8678 54.2712 96.3206 54.1357 96.7227C54.0046 97.1247 53.8247 97.4674 53.5962 97.751C53.3719 98.0345 53.0968 98.2524 52.771 98.4048C52.4451 98.5529 52.0643 98.627 51.6284 98.627C51.2264 98.627 50.8582 98.5402 50.5239 98.3667C50.1938 98.1932 49.9082 97.9499 49.667 97.6367C49.43 97.3236 49.2459 96.9554 49.1147 96.5322C48.9878 96.1048 48.9243 95.6414 48.9243 95.1421ZM50.105 95.0088V95.1421C50.105 95.4849 50.1388 95.8065 50.2065 96.1069C50.2785 96.4074 50.3885 96.6719 50.5366 96.9004C50.6847 97.1289 50.873 97.3088 51.1016 97.4399C51.3301 97.5669 51.603 97.6304 51.9204 97.6304C52.3097 97.6304 52.6292 97.5479 52.8789 97.3828C53.1328 97.2178 53.3359 96.9998 53.4883 96.729C53.6406 96.4582 53.7591 96.1641 53.8438 95.8467V94.3169C53.793 94.0841 53.7189 93.8599 53.6216 93.644C53.5285 93.424 53.4058 93.2293 53.2534 93.0601C53.1053 92.8866 52.9212 92.749 52.7012 92.6475C52.4854 92.5459 52.2293 92.4951 51.9331 92.4951C51.6115 92.4951 51.3343 92.5628 51.1016 92.6982C50.873 92.8294 50.6847 93.0114 50.5366 93.2441C50.3885 93.4727 50.2785 93.7393 50.2065 94.0439C50.1388 94.3444 50.105 94.666 50.105 95.0088ZM60.8833 97.167V88.75H62.064V98.5H60.9849L60.8833 97.167ZM56.2622 95.1421V95.0088C56.2622 94.484 56.3257 94.008 56.4526 93.5806C56.5838 93.1489 56.7679 92.7786 57.0049 92.4697C57.2461 92.1608 57.5317 91.9238 57.8618 91.7588C58.1961 91.5895 58.5685 91.5049 58.979 91.5049C59.4106 91.5049 59.7873 91.5811 60.1089 91.7334C60.4347 91.8815 60.7098 92.0994 60.9341 92.3872C61.1626 92.6707 61.3424 93.0135 61.4736 93.4155C61.6048 93.8175 61.6958 94.2725 61.7466 94.7803V95.3643C61.7 95.8678 61.609 96.3206 61.4736 96.7227C61.3424 97.1247 61.1626 97.4674 60.9341 97.751C60.7098 98.0345 60.4347 98.2524 60.1089 98.4048C59.783 98.5529 59.4022 98.627 58.9663 98.627C58.5643 98.627 58.1961 98.5402 57.8618 98.3667C57.5317 98.1932 57.2461 97.9499 57.0049 97.6367C56.7679 97.3236 56.5838 96.9554 56.4526 96.5322C56.3257 96.1048 56.2622 95.6414 56.2622 95.1421ZM57.4429 95.0088V95.1421C57.4429 95.4849 57.4767 95.8065 57.5444 96.1069C57.6164 96.4074 57.7264 96.6719 57.8745 96.9004C58.0226 97.1289 58.2109 97.3088 58.4395 97.4399C58.668 97.5669 58.9409 97.6304 59.2583 97.6304C59.6476 97.6304 59.9671 97.5479 60.2168 97.3828C60.4707 97.2178 60.6738 96.9998 60.8262 96.729C60.9785 96.4582 61.097 96.1641 61.1816 95.8467V94.3169C61.1309 94.0841 61.0568 93.8599 60.9595 93.644C60.8664 93.424 60.7437 93.2293 60.5913 93.0601C60.4432 92.8866 60.2591 92.749 60.0391 92.6475C59.8232 92.5459 59.5672 92.4951 59.271 92.4951C58.9494 92.4951 58.6722 92.5628 58.4395 92.6982C58.2109 92.8294 58.0226 93.0114 57.8745 93.2441C57.7264 93.4727 57.6164 93.7393 57.5444 94.0439C57.4767 94.3444 57.4429 94.666 57.4429 95.0088ZM66.7422 98.627C66.264 98.627 65.8302 98.5465 65.4409 98.3857C65.0558 98.2207 64.7236 97.9901 64.4443 97.6938C64.1693 97.3976 63.9577 97.0464 63.8096 96.6401C63.6615 96.2339 63.5874 95.7896 63.5874 95.3071V95.0405C63.5874 94.4819 63.6699 93.9847 63.835 93.5488C64 93.1087 64.2243 92.7363 64.5078 92.4316C64.7913 92.127 65.113 91.8963 65.4727 91.7397C65.8324 91.5832 66.2048 91.5049 66.5898 91.5049C67.0807 91.5049 67.5039 91.5895 67.8594 91.7588C68.2191 91.9281 68.5132 92.165 68.7417 92.4697C68.9702 92.7702 69.1395 93.1257 69.2495 93.5361C69.3595 93.9424 69.4146 94.3867 69.4146 94.8691V95.396H64.2856V94.4375H68.2402V94.3486C68.2233 94.0439 68.1598 93.7477 68.0498 93.46C67.944 93.1722 67.7747 92.9352 67.542 92.749C67.3092 92.5628 66.9919 92.4697 66.5898 92.4697C66.3232 92.4697 66.0778 92.5269 65.8535 92.6411C65.6292 92.7511 65.4367 92.9162 65.2759 93.1362C65.1151 93.3563 64.9902 93.625 64.9014 93.9424C64.8125 94.2598 64.7681 94.6258 64.7681 95.0405V95.3071C64.7681 95.633 64.8125 95.9398 64.9014 96.2275C64.9945 96.5111 65.1278 96.7607 65.3013 96.9766C65.479 97.1924 65.6927 97.3617 65.9424 97.4844C66.1963 97.6071 66.484 97.6685 66.8057 97.6685C67.2204 97.6685 67.5716 97.5838 67.8594 97.4146C68.1471 97.2453 68.3989 97.0189 68.6147 96.7354L69.3257 97.3003C69.1776 97.5246 68.9893 97.7383 68.7607 97.9414C68.5322 98.1445 68.2508 98.3096 67.9165 98.4365C67.5864 98.5635 67.195 98.627 66.7422 98.627ZM71.96 93.0981V98.5H70.7856V91.6318H71.8965L71.96 93.0981ZM71.6807 94.8057L71.1919 94.7866C71.1961 94.3169 71.266 93.8831 71.4014 93.4854C71.5368 93.0833 71.7272 92.7342 71.9727 92.438C72.2181 92.1418 72.5101 91.9132 72.8486 91.7524C73.1914 91.5874 73.5701 91.5049 73.9849 91.5049C74.3234 91.5049 74.6281 91.5514 74.8989 91.6445C75.1698 91.7334 75.4004 91.8773 75.5908 92.0762C75.7855 92.2751 75.9336 92.5332 76.0352 92.8506C76.1367 93.1637 76.1875 93.5467 76.1875 93.9995V98.5H75.0068V93.9868C75.0068 93.6271 74.9539 93.3394 74.8481 93.1235C74.7424 92.9035 74.5879 92.7448 74.3848 92.6475C74.1816 92.5459 73.932 92.4951 73.6357 92.4951C73.3438 92.4951 73.0771 92.5565 72.8359 92.6792C72.599 92.8019 72.3937 92.9712 72.2202 93.187C72.0509 93.4028 71.9176 93.6504 71.8203 93.9297C71.7272 94.2048 71.6807 94.4967 71.6807 94.8057ZM82.9224 98.5V99.4648H77.1016V98.5H82.9224ZM88.1655 97.167V88.75H89.3462V98.5H88.2671L88.1655 97.167ZM83.5444 95.1421V95.0088C83.5444 94.484 83.6079 94.008 83.7349 93.5806C83.866 93.1489 84.0501 92.7786 84.2871 92.4697C84.5283 92.1608 84.814 91.9238 85.144 91.7588C85.4784 91.5895 85.8507 91.5049 86.2612 91.5049C86.6929 91.5049 87.0695 91.5811 87.3911 91.7334C87.717 91.8815 87.992 92.0994 88.2163 92.3872C88.4448 92.6707 88.6247 93.0135 88.7559 93.4155C88.887 93.8175 88.978 94.2725 89.0288 94.7803V95.3643C88.9823 95.8678 88.8913 96.3206 88.7559 96.7227C88.6247 97.1247 88.4448 97.4674 88.2163 97.751C87.992 98.0345 87.717 98.2524 87.3911 98.4048C87.0653 98.5529 86.6844 98.627 86.2485 98.627C85.8465 98.627 85.4784 98.5402 85.144 98.3667C84.814 98.1932 84.5283 97.9499 84.2871 97.6367C84.0501 97.3236 83.866 96.9554 83.7349 96.5322C83.6079 96.1048 83.5444 95.6414 83.5444 95.1421ZM84.7251 95.0088V95.1421C84.7251 95.4849 84.759 95.8065 84.8267 96.1069C84.8986 96.4074 85.0086 96.6719 85.1567 96.9004C85.3049 97.1289 85.4932 97.3088 85.7217 97.4399C85.9502 97.5669 86.2231 97.6304 86.5405 97.6304C86.9299 97.6304 87.2493 97.5479 87.499 97.3828C87.7529 97.2178 87.9561 96.9998 88.1084 96.729C88.2607 96.4582 88.3792 96.1641 88.4639 95.8467V94.3169C88.4131 94.0841 88.339 93.8599 88.2417 93.644C88.1486 93.424 88.0259 93.2293 87.8735 93.0601C87.7254 92.8866 87.5413 92.749 87.3213 92.6475C87.1055 92.5459 86.8494 92.4951 86.5532 92.4951C86.2316 92.4951 85.9544 92.5628 85.7217 92.6982C85.4932 92.8294 85.3049 93.0114 85.1567 93.2441C85.0086 93.4727 84.8986 93.7393 84.8267 94.0439C84.759 94.3444 84.7251 94.666 84.7251 95.0088ZM94.0244 98.627C93.5462 98.627 93.1125 98.5465 92.7231 98.3857C92.3381 98.2207 92.0059 97.9901 91.7266 97.6938C91.4515 97.3976 91.2399 97.0464 91.0918 96.6401C90.9437 96.2339 90.8696 95.7896 90.8696 95.3071V95.0405C90.8696 94.4819 90.9521 93.9847 91.1172 93.5488C91.2822 93.1087 91.5065 92.7363 91.79 92.4316C92.0736 92.127 92.3952 91.8963 92.7549 91.7397C93.1146 91.5832 93.487 91.5049 93.8721 91.5049C94.363 91.5049 94.7861 91.5895 95.1416 91.7588C95.5013 91.9281 95.7954 92.165 96.0239 92.4697C96.2524 92.7702 96.4217 93.1257 96.5317 93.5361C96.6418 93.9424 96.6968 94.3867 96.6968 94.8691V95.396H91.5679V94.4375H95.5225V94.3486C95.5055 94.0439 95.4421 93.7477 95.332 93.46C95.2262 93.1722 95.057 92.9352 94.8242 92.749C94.5915 92.5628 94.2741 92.4697 93.8721 92.4697C93.6055 92.4697 93.36 92.5269 93.1357 92.6411C92.9115 92.7511 92.7189 92.9162 92.5581 93.1362C92.3973 93.3563 92.2725 93.625 92.1836 93.9424C92.0947 94.2598 92.0503 94.6258 92.0503 95.0405V95.3071C92.0503 95.633 92.0947 95.9398 92.1836 96.2275C92.2767 96.5111 92.41 96.7607 92.5835 96.9766C92.7612 97.1924 92.9749 97.3617 93.2246 97.4844C93.4785 97.6071 93.7663 97.6685 94.0879 97.6685C94.5026 97.6685 94.8538 97.5838 95.1416 97.4146C95.4294 97.2453 95.6812 97.0189 95.897 96.7354L96.6079 97.3003C96.4598 97.5246 96.2715 97.7383 96.043 97.9414C95.8145 98.1445 95.533 98.3096 95.1987 98.4365C94.8687 98.5635 94.4772 98.627 94.0244 98.627ZM99.3438 88.75V98.5H98.1631V88.75H99.3438ZM102.505 91.6318V98.5H101.324V91.6318H102.505ZM101.235 89.8101C101.235 89.6196 101.292 89.4588 101.407 89.3276C101.525 89.1965 101.699 89.1309 101.927 89.1309C102.152 89.1309 102.323 89.1965 102.441 89.3276C102.564 89.4588 102.625 89.6196 102.625 89.8101C102.625 89.992 102.564 90.1486 102.441 90.2798C102.323 90.4067 102.152 90.4702 101.927 90.4702C101.699 90.4702 101.525 90.4067 101.407 90.2798C101.292 90.1486 101.235 89.992 101.235 89.8101ZM106.479 97.4399L108.357 91.6318H109.557L107.088 98.5H106.301L106.479 97.4399ZM104.911 91.6318L106.847 97.4717L106.98 98.5H106.193L103.705 91.6318H104.911ZM113.448 98.627C112.97 98.627 112.536 98.5465 112.147 98.3857C111.762 98.2207 111.43 97.9901 111.15 97.6938C110.875 97.3976 110.664 97.0464 110.516 96.6401C110.368 96.2339 110.293 95.7896 110.293 95.3071V95.0405C110.293 94.4819 110.376 93.9847 110.541 93.5488C110.706 93.1087 110.93 92.7363 111.214 92.4316C111.497 92.127 111.819 91.8963 112.179 91.7397C112.538 91.5832 112.911 91.5049 113.296 91.5049C113.787 91.5049 114.21 91.5895 114.565 91.7588C114.925 91.9281 115.219 92.165 115.448 92.4697C115.676 92.7702 115.846 93.1257 115.956 93.5361C116.066 93.9424 116.121 94.3867 116.121 94.8691V95.396H110.992V94.4375H114.946V94.3486C114.929 94.0439 114.866 93.7477 114.756 93.46C114.65 93.1722 114.481 92.9352 114.248 92.749C114.015 92.5628 113.698 92.4697 113.296 92.4697C113.029 92.4697 112.784 92.5269 112.56 92.6411C112.335 92.7511 112.143 92.9162 111.982 93.1362C111.821 93.3563 111.696 93.625 111.607 93.9424C111.519 94.2598 111.474 94.6258 111.474 95.0405V95.3071C111.474 95.633 111.519 95.9398 111.607 96.2275C111.701 96.5111 111.834 96.7607 112.007 96.9766C112.185 97.1924 112.399 97.3617 112.648 97.4844C112.902 97.6071 113.19 97.6685 113.512 97.6685C113.926 97.6685 114.278 97.5838 114.565 97.4146C114.853 97.2453 115.105 97.0189 115.321 96.7354L116.032 97.3003C115.884 97.5246 115.695 97.7383 115.467 97.9414C115.238 98.1445 114.957 98.3096 114.623 98.4365C114.292 98.5635 113.901 98.627 113.448 98.627ZM118.666 92.7109V98.5H117.492V91.6318H118.634L118.666 92.7109ZM120.812 91.5938L120.805 92.6855C120.708 92.6644 120.615 92.6517 120.526 92.6475C120.441 92.639 120.344 92.6348 120.234 92.6348C119.963 92.6348 119.724 92.6771 119.517 92.7617C119.309 92.8464 119.134 92.9648 118.99 93.1172C118.846 93.2695 118.732 93.4515 118.647 93.6631C118.567 93.8704 118.514 94.099 118.488 94.3486L118.158 94.5391C118.158 94.1243 118.198 93.735 118.279 93.3711C118.363 93.0072 118.493 92.6855 118.666 92.4062C118.84 92.1227 119.06 91.9027 119.326 91.7461C119.597 91.5853 119.919 91.5049 120.291 91.5049C120.376 91.5049 120.473 91.5155 120.583 91.5366C120.693 91.5535 120.769 91.5726 120.812 91.5938ZM123.941 97.7891L125.852 91.6318H127.108L124.354 99.5601C124.29 99.7293 124.205 99.9113 124.1 100.106C123.998 100.305 123.867 100.493 123.706 100.671C123.545 100.849 123.351 100.993 123.122 101.103C122.898 101.217 122.629 101.274 122.316 101.274C122.223 101.274 122.104 101.261 121.96 101.236C121.817 101.21 121.715 101.189 121.656 101.172L121.649 100.22C121.683 100.224 121.736 100.229 121.808 100.233C121.884 100.241 121.937 100.246 121.967 100.246C122.233 100.246 122.46 100.21 122.646 100.138C122.832 100.07 122.989 99.9536 123.116 99.7886C123.247 99.6278 123.359 99.4056 123.452 99.1221L123.941 97.7891ZM122.538 91.6318L124.322 96.9639L124.626 98.2017L123.782 98.6333L121.256 91.6318H122.538Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M257.278 87.7598V89.6958H256.326V87.7598H257.278ZM257.164 98.1255V99.8203H256.218V98.1255H257.164ZM258.434 96.1196C258.434 95.8657 258.376 95.6372 258.262 95.4341C258.148 95.231 257.96 95.0448 257.697 94.8755C257.435 94.7062 257.084 94.5496 256.644 94.4058C256.11 94.2407 255.649 94.0397 255.26 93.8027C254.875 93.5658 254.576 93.2716 254.365 92.9204C254.157 92.5692 254.054 92.1439 254.054 91.6445C254.054 91.124 254.166 90.6755 254.39 90.2988C254.614 89.9222 254.932 89.6323 255.342 89.4292C255.753 89.2261 256.235 89.1245 256.79 89.1245C257.221 89.1245 257.606 89.1901 257.945 89.3213C258.283 89.4482 258.569 89.6387 258.802 89.8926C259.039 90.1465 259.219 90.4575 259.341 90.8257C259.468 91.1938 259.532 91.6191 259.532 92.1016H258.364C258.364 91.818 258.33 91.5578 258.262 91.3208C258.194 91.0838 258.093 90.8786 257.958 90.7051C257.822 90.5273 257.657 90.3919 257.462 90.2988C257.268 90.2015 257.043 90.1528 256.79 90.1528C256.434 90.1528 256.14 90.2142 255.907 90.3369C255.679 90.4596 255.509 90.6331 255.399 90.8574C255.289 91.0775 255.234 91.3335 255.234 91.6255C255.234 91.8963 255.289 92.1333 255.399 92.3364C255.509 92.5396 255.696 92.7236 255.958 92.8887C256.225 93.0495 256.591 93.2082 257.056 93.3647C257.602 93.5382 258.065 93.7435 258.446 93.9805C258.827 94.2132 259.117 94.501 259.316 94.8438C259.515 95.1823 259.614 95.6034 259.614 96.1069C259.614 96.6528 259.492 97.1141 259.246 97.4907C259.001 97.8631 258.656 98.1466 258.211 98.3413C257.767 98.536 257.247 98.6333 256.65 98.6333C256.29 98.6333 255.935 98.5846 255.583 98.4873C255.232 98.39 254.915 98.2313 254.631 98.0112C254.348 97.7869 254.121 97.4928 253.952 97.1289C253.783 96.7607 253.698 96.3101 253.698 95.7769H254.879C254.879 96.1366 254.93 96.4349 255.031 96.6719C255.137 96.9046 255.277 97.0908 255.45 97.2305C255.624 97.3659 255.814 97.4632 256.021 97.5225C256.233 97.5775 256.443 97.605 256.65 97.605C257.031 97.605 257.352 97.5457 257.615 97.4272C257.881 97.3045 258.084 97.131 258.224 96.9067C258.364 96.6825 258.434 96.4201 258.434 96.1196ZM267.136 97.5352V98.5H261.087V97.6558L264.115 94.2852C264.487 93.8704 264.775 93.5192 264.978 93.2314C265.185 92.9395 265.329 92.6792 265.41 92.4507C265.494 92.2179 265.537 91.981 265.537 91.7397C265.537 91.4351 265.473 91.16 265.346 90.9146C265.223 90.6649 265.042 90.466 264.8 90.3179C264.559 90.1698 264.267 90.0957 263.924 90.0957C263.514 90.0957 263.171 90.1761 262.896 90.3369C262.625 90.4935 262.422 90.7135 262.287 90.9971C262.151 91.2806 262.083 91.6064 262.083 91.9746H260.909C260.909 91.4541 261.023 90.978 261.252 90.5464C261.48 90.1147 261.819 89.772 262.268 89.5181C262.716 89.2599 263.268 89.1309 263.924 89.1309C264.508 89.1309 265.008 89.2345 265.422 89.4419C265.837 89.645 266.154 89.9328 266.375 90.3052C266.599 90.6733 266.711 91.105 266.711 91.6001C266.711 91.8709 266.664 92.146 266.571 92.4253C266.482 92.7004 266.358 92.9754 266.197 93.2505C266.04 93.5256 265.856 93.7964 265.645 94.063C265.437 94.3296 265.215 94.592 264.978 94.8501L262.502 97.5352H267.136ZM269.878 94.1011L268.939 93.8599L269.402 89.2578H274.144V90.3433H270.399L270.12 92.8569C270.289 92.7596 270.503 92.6686 270.761 92.584C271.023 92.4993 271.324 92.457 271.662 92.457C272.09 92.457 272.472 92.5311 272.811 92.6792C273.15 92.8231 273.437 93.0304 273.674 93.3013C273.916 93.5721 274.1 93.8979 274.227 94.2788C274.354 94.6597 274.417 95.085 274.417 95.5547C274.417 95.999 274.356 96.4074 274.233 96.7798C274.114 97.1522 273.935 97.478 273.693 97.7573C273.452 98.0324 273.147 98.2461 272.779 98.3984C272.415 98.5508 271.986 98.627 271.491 98.627C271.118 98.627 270.765 98.5762 270.431 98.4746C270.101 98.3688 269.804 98.2101 269.542 97.9985C269.284 97.7827 269.072 97.5161 268.907 97.1987C268.746 96.8771 268.645 96.5005 268.603 96.0688H269.72C269.771 96.4159 269.872 96.7078 270.024 96.9448C270.177 97.1818 270.376 97.3617 270.621 97.4844C270.871 97.6029 271.161 97.6621 271.491 97.6621C271.77 97.6621 272.018 97.6134 272.233 97.5161C272.449 97.4188 272.631 97.2791 272.779 97.0972C272.927 96.9152 273.04 96.6951 273.116 96.437C273.196 96.1789 273.236 95.889 273.236 95.5674C273.236 95.2754 273.196 95.0046 273.116 94.7549C273.035 94.5052 272.915 94.2873 272.754 94.1011C272.597 93.9149 272.405 93.771 272.176 93.6694C271.948 93.5636 271.685 93.5107 271.389 93.5107C270.996 93.5107 270.697 93.5636 270.494 93.6694C270.295 93.7752 270.09 93.9191 269.878 94.1011Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1466"},(0,h.createElement)("rect",{x:"15",y:"41",width:"268",height:"62",rx:"4",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1466"},(0,h.createElement)("rect",{width:"18",height:"18",fill:"white",transform:"translate(15 62)"})),(0,h.createElement)("clipPath",{id:"clip2_75_1466"},(0,h.createElement)("rect",{width:"18",height:"18",fill:"white",transform:"translate(15 85)"})))),{__:On}=wp.i18n,{AdvancedFields:Jn,FieldSettingsWrapper:Rn,BlockLabel:qn,BlockDescription:Dn,BlockAdvancedValue:zn,BlockName:Un}=JetFBComponents,{useBlockAttributes:Gn,useUniqueNameOnDuplicate:Wn}=JetFBHooks,{InspectorControls:Kn,useBlockProps:$n,RichText:Yn}=wp.blockEditor,{CardHeader:Xn,CardBody:Qn,PanelBody:ea}=wp.components,{useEffect:Ca}=wp.element,ta=F(L.Card)({name:"StyledCard",class:"s1ip8zmx",propsAsIs:!0});t(6987);const la=JSON.parse('{"apiVersion":3,"name":"jet-forms/hidden-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","hidden"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Hidden Field","icon":"\\n\\n","attributes":{"return_raw":{"type":"boolean","default":false},"value":{"type":"object","default":{}},"render":{"type":"boolean","default":true},"field_value":{"type":"string","default":"post_id"},"hidden_value_field":{"type":"string","default":""},"query_var_key":{"type":"string","default":""},"date_format":{"type":"string","default":""},"hidden_value":{"type":"string","default":""},"name":{"type":"string","default":"hidden_field_name"},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false},"random":{"type":"object","default":{"length":10,"upper":true,"lower":true,"numbers":true,"symbols":true}}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:ra}=wp.i18n,{RangeControl:na,CheckboxControl:aa}=wp.components,{ToggleControl:ia}=wp.components,{__:oa}=wp.i18n,{addFilter:sa}=wp.hooks;sa("jfb.hidden-field.field-value.controls","jet-form-builder/random-string-controls",function(e){return C=>{var t;const{attributes:l,setAttributes:r}=C;if("random_string"!==l.field_value)return(0,h.createElement)(e,{...C});const n=Object.values({...l.random,length:void 0}).filter(Boolean).length,a=e=>{const[C]=Object.keys(e);l.random[C]&&1===n||r({random:{...l.random,...e}})};return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(na,{label:ra("String length","jet-form-builder"),value:null!==(t=l.random?.length)&&void 0!==t?t:10,onChange:e=>r({random:{...l.random,length:e}}),allowReset:!0,resetFallbackValue:10,min:1,max:50}),(0,h.createElement)(aa,{label:ra("Uppercase","jet-form-builder"),checked:l.random.upper,onChange:e=>a({upper:e})}),(0,h.createElement)(aa,{label:ra("Lowercase","jet-form-builder"),checked:l.random.lower,onChange:e=>a({lower:e})}),(0,h.createElement)(aa,{label:ra("Numbers","jet-form-builder"),checked:l.random.numbers,onChange:e=>a({numbers:e})}),(0,h.createElement)(aa,{label:ra("Symbols","jet-form-builder"),checked:l.random.symbols,onChange:e=>a({symbols:e})}))}}),sa("jfb.hidden-field.header.controls","jet-form-builder/disable-raw-value-control",function(e){return C=>{const{attributes:t,setAttributes:l}=C;return"random_string"!==t.field_value?(0,h.createElement)(e,{...C}):(0,h.createElement)(ia,{label:oa("Render in HTML","jet-form-builder"),checked:t.render,help:oa("Enable this option if you use this field in Calculated Field, Conditional Block, Advanced Validation, Global Macros, or Dynamic Value.","jet-form-builder"),onChange:e=>l({render:Boolean(e)})})}});const{__:ca}=wp.i18n,{createBlock:da}=wp.blocks,{name:ma,icon:ua=""}=la,pa={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:ua}}),description:ca("Insert Hidden field invisible on the frontend with the assigned value to use it in calculations or for other purposes.","jet-form-builder"),edit:function(e){const{attributes:C,setAttributes:t,isSelected:l,editProps:{uniqKey:r}}=e,n=$n();Wn();const[,a]=Gn();if(Ca(()=>{"referer_url"===C.field_value&&t({render:!0})},[C.field_value]),C.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Tn);const{label:i="Please set `Field Value`"}=JetFormHiddenField.sources.find(e=>e.value===C.field_value)||{label:"--",value:""},o=[i];switch(C.field_value){case"post_meta":case"user_meta":o.push(C.hidden_value_field);break;case"query_var":o.push(C.query_var_key);break;case"current_date":o.push(C.date_format);break;case"manual_input":o.push(C.hidden_value)}const s=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return[l&&(0,h.createElement)(Kn,{key:r("InspectorControls")},(0,h.createElement)(ea,{title:On("General","jet-form-builder")},(0,h.createElement)(qn,null),(0,h.createElement)(Un,null),(0,h.createElement)(Dn,null)),(0,h.createElement)(ea,{title:On("Value","jet-form-builder")},(0,h.createElement)(zn,null)),(0,h.createElement)(Rn,{...e},(0,h.createElement)(In,null)),(0,h.createElement)(Jn,null)),(0,h.createElement)("div",{...n,key:r("viewBlock")},(0,h.createElement)(ta,{elevation:2,className:s?"buddypress-active":""},(0,h.createElement)(Xn,null,(0,h.createElement)(Yn,{placeholder:"hidden_field_name...",allowedFormats:[],value:C.name,onChange:e=>a({name:e})})),(0,h.createElement)(Qn,null,l&&(0,h.createElement)(In,null),!l&&o.join(": "))))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>da("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>((e.default?.length||Object.keys(e.value)?.length)&&(e.field_value=""),da(ma,{...e})),priority:0}]}},{Tools:fa}=JetFBActions,Va=fa.withPlaceholder([{value:"all",label:"Any registered user"},{value:"upload_files",label:"Any user, who allowed to upload files"},{value:"edit_posts",label:"Any user, who allowed to edit posts"},{value:"any_user",label:"Any user ( incl. Guest )"}]),Ha=fa.withPlaceholder([{value:"id",label:"Attachment ID"},{value:"url",label:"Attachment URL"},{value:"both",label:"Array with attachment ID and URL"},{value:"ids",label:"Array of attachment IDs"}]),ha=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"15.5",y:"47.5",width:"156",height:"29",rx:"3.5",fill:"#E2E8F0"}),(0,h.createElement)("path",{d:"M62.6523 63.561H63.8711C63.8076 64.145 63.6405 64.6676 63.3696 65.1289C63.0988 65.5902 62.7158 65.9562 62.2207 66.2271C61.7256 66.4937 61.1077 66.627 60.3672 66.627C59.8255 66.627 59.3325 66.5254 58.8882 66.3223C58.4481 66.1191 58.0693 65.8314 57.752 65.459C57.4346 65.0824 57.1891 64.6317 57.0156 64.1069C56.8464 63.578 56.7617 62.9897 56.7617 62.3423V61.4219C56.7617 60.7744 56.8464 60.1883 57.0156 59.6636C57.1891 59.1346 57.4367 58.6818 57.7583 58.3052C58.0841 57.9285 58.4756 57.6387 58.9326 57.4355C59.3896 57.2324 59.9038 57.1309 60.4751 57.1309C61.1733 57.1309 61.7637 57.262 62.2461 57.5244C62.7285 57.7868 63.103 58.1507 63.3696 58.6162C63.6405 59.0775 63.8076 59.6128 63.8711 60.2222H62.6523C62.5931 59.7905 62.4831 59.4202 62.3223 59.1113C62.1615 58.7982 61.9329 58.557 61.6367 58.3877C61.3405 58.2184 60.9533 58.1338 60.4751 58.1338C60.0646 58.1338 59.7028 58.2121 59.3896 58.3687C59.0807 58.5252 58.8205 58.7474 58.6089 59.0352C58.4015 59.3229 58.245 59.6678 58.1392 60.0698C58.0334 60.4718 57.9805 60.9183 57.9805 61.4092V62.3423C57.9805 62.7951 58.027 63.2204 58.1201 63.6182C58.2174 64.016 58.3634 64.3651 58.5581 64.6655C58.7528 64.966 59.0003 65.203 59.3008 65.3765C59.6012 65.5457 59.9567 65.6304 60.3672 65.6304C60.8877 65.6304 61.3024 65.5479 61.6113 65.3828C61.9202 65.2178 62.153 64.9808 62.3096 64.6719C62.4704 64.363 62.5846 63.9927 62.6523 63.561ZM66.5371 56.75V66.5H65.3628V56.75H66.5371ZM66.2578 62.8057L65.769 62.7866C65.7733 62.3169 65.8431 61.8831 65.9785 61.4854C66.1139 61.0833 66.3044 60.7342 66.5498 60.438C66.7952 60.1418 67.0872 59.9132 67.4258 59.7524C67.7686 59.5874 68.1473 59.5049 68.562 59.5049C68.9006 59.5049 69.2052 59.5514 69.4761 59.6445C69.7469 59.7334 69.9775 59.8773 70.168 60.0762C70.3626 60.2751 70.5107 60.5332 70.6123 60.8506C70.7139 61.1637 70.7646 61.5467 70.7646 61.9995V66.5H69.584V61.9868C69.584 61.6271 69.5311 61.3394 69.4253 61.1235C69.3195 60.9035 69.165 60.7448 68.9619 60.6475C68.7588 60.5459 68.5091 60.4951 68.2129 60.4951C67.9209 60.4951 67.6543 60.5565 67.4131 60.6792C67.1761 60.8019 66.9709 60.9712 66.7974 61.187C66.6281 61.4028 66.4948 61.6504 66.3975 61.9297C66.3044 62.2048 66.2578 62.4967 66.2578 62.8057ZM72.2119 63.1421V62.9961C72.2119 62.501 72.2839 62.0418 72.4277 61.6187C72.5716 61.1912 72.779 60.821 73.0498 60.5078C73.3206 60.1904 73.6486 59.945 74.0337 59.7715C74.4188 59.5938 74.8504 59.5049 75.3286 59.5049C75.811 59.5049 76.2448 59.5938 76.6299 59.7715C77.0192 59.945 77.3493 60.1904 77.6201 60.5078C77.8952 60.821 78.1047 61.1912 78.2485 61.6187C78.3924 62.0418 78.4644 62.501 78.4644 62.9961V63.1421C78.4644 63.6372 78.3924 64.0964 78.2485 64.5195C78.1047 64.9427 77.8952 65.313 77.6201 65.6304C77.3493 65.9435 77.0213 66.189 76.6362 66.3667C76.2554 66.5402 75.8237 66.627 75.3413 66.627C74.8589 66.627 74.4251 66.5402 74.04 66.3667C73.6549 66.189 73.3249 65.9435 73.0498 65.6304C72.779 65.313 72.5716 64.9427 72.4277 64.5195C72.2839 64.0964 72.2119 63.6372 72.2119 63.1421ZM73.3862 62.9961V63.1421C73.3862 63.4849 73.4264 63.8086 73.5068 64.1133C73.5872 64.4137 73.7078 64.6803 73.8687 64.9131C74.0337 65.1458 74.2389 65.3299 74.4844 65.4653C74.7298 65.5965 75.0155 65.6621 75.3413 65.6621C75.6629 65.6621 75.9443 65.5965 76.1855 65.4653C76.431 65.3299 76.6341 65.1458 76.7949 64.9131C76.9557 64.6803 77.0763 64.4137 77.1567 64.1133C77.2414 63.8086 77.2837 63.4849 77.2837 63.1421V62.9961C77.2837 62.6576 77.2414 62.3381 77.1567 62.0376C77.0763 61.7329 76.9536 61.4642 76.7886 61.2314C76.6278 60.9945 76.4246 60.8083 76.1792 60.6729C75.938 60.5374 75.6545 60.4697 75.3286 60.4697C75.007 60.4697 74.7235 60.5374 74.478 60.6729C74.2368 60.8083 74.0337 60.9945 73.8687 61.2314C73.7078 61.4642 73.5872 61.7329 73.5068 62.0376C73.4264 62.3381 73.3862 62.6576 73.3862 62.9961ZM79.626 63.1421V62.9961C79.626 62.501 79.6979 62.0418 79.8418 61.6187C79.9857 61.1912 80.193 60.821 80.4639 60.5078C80.7347 60.1904 81.0627 59.945 81.4478 59.7715C81.8328 59.5938 82.2645 59.5049 82.7427 59.5049C83.2251 59.5049 83.6589 59.5938 84.0439 59.7715C84.4333 59.945 84.7633 60.1904 85.0342 60.5078C85.3092 60.821 85.5187 61.1912 85.6626 61.6187C85.8065 62.0418 85.8784 62.501 85.8784 62.9961V63.1421C85.8784 63.6372 85.8065 64.0964 85.6626 64.5195C85.5187 64.9427 85.3092 65.313 85.0342 65.6304C84.7633 65.9435 84.4354 66.189 84.0503 66.3667C83.6694 66.5402 83.2378 66.627 82.7554 66.627C82.2729 66.627 81.8392 66.5402 81.4541 66.3667C81.069 66.189 80.7389 65.9435 80.4639 65.6304C80.193 65.313 79.9857 64.9427 79.8418 64.5195C79.6979 64.0964 79.626 63.6372 79.626 63.1421ZM80.8003 62.9961V63.1421C80.8003 63.4849 80.8405 63.8086 80.9209 64.1133C81.0013 64.4137 81.1219 64.6803 81.2827 64.9131C81.4478 65.1458 81.653 65.3299 81.8984 65.4653C82.1439 65.5965 82.4295 65.6621 82.7554 65.6621C83.077 65.6621 83.3584 65.5965 83.5996 65.4653C83.8451 65.3299 84.0482 65.1458 84.209 64.9131C84.3698 64.6803 84.4904 64.4137 84.5708 64.1133C84.6554 63.8086 84.6978 63.4849 84.6978 63.1421V62.9961C84.6978 62.6576 84.6554 62.3381 84.5708 62.0376C84.4904 61.7329 84.3677 61.4642 84.2026 61.2314C84.0418 60.9945 83.8387 60.8083 83.5933 60.6729C83.3521 60.5374 83.0685 60.4697 82.7427 60.4697C82.4211 60.4697 82.1375 60.5374 81.8921 60.6729C81.6509 60.8083 81.4478 60.9945 81.2827 61.2314C81.1219 61.4642 81.0013 61.7329 80.9209 62.0376C80.8405 62.3381 80.8003 62.6576 80.8003 62.9961ZM91.3501 64.6782C91.3501 64.509 91.312 64.3524 91.2358 64.2085C91.1639 64.0604 91.0137 63.9271 90.7852 63.8086C90.5609 63.6859 90.2223 63.5801 89.7695 63.4912C89.3887 63.4108 89.0438 63.3156 88.7349 63.2056C88.4302 63.0955 88.1699 62.9622 87.9541 62.8057C87.7425 62.6491 87.5796 62.465 87.4653 62.2534C87.3511 62.0418 87.2939 61.7943 87.2939 61.5107C87.2939 61.2399 87.3532 60.9839 87.4717 60.7427C87.5944 60.5015 87.7658 60.2878 87.9858 60.1016C88.2101 59.9154 88.4788 59.7694 88.792 59.6636C89.1051 59.5578 89.4543 59.5049 89.8394 59.5049C90.3895 59.5049 90.8592 59.6022 91.2485 59.7969C91.6379 59.9915 91.9362 60.2518 92.1436 60.5776C92.3509 60.8993 92.4546 61.2568 92.4546 61.6504H91.2803C91.2803 61.46 91.2231 61.2759 91.1089 61.0981C90.9989 60.9162 90.8359 60.766 90.6201 60.6475C90.4085 60.529 90.1483 60.4697 89.8394 60.4697C89.5135 60.4697 89.249 60.5205 89.0459 60.6221C88.847 60.7194 88.701 60.8442 88.6079 60.9966C88.519 61.1489 88.4746 61.3097 88.4746 61.479C88.4746 61.606 88.4958 61.7202 88.5381 61.8218C88.5846 61.9191 88.665 62.0101 88.7793 62.0947C88.8936 62.1751 89.0544 62.2513 89.2617 62.3232C89.4691 62.3952 89.7336 62.4671 90.0552 62.5391C90.618 62.666 91.0814 62.8184 91.4453 62.9961C91.8092 63.1738 92.0801 63.3918 92.2578 63.6499C92.4355 63.908 92.5244 64.2212 92.5244 64.5894C92.5244 64.8898 92.4609 65.1649 92.334 65.4146C92.2113 65.6642 92.0314 65.88 91.7944 66.062C91.5617 66.2397 91.2824 66.3794 90.9565 66.481C90.6349 66.5783 90.2731 66.627 89.8711 66.627C89.266 66.627 88.7539 66.519 88.335 66.3032C87.916 66.0874 87.5986 65.8081 87.3828 65.4653C87.167 65.1226 87.0591 64.7607 87.0591 64.3799H88.2397C88.2567 64.7015 88.3498 64.9575 88.519 65.1479C88.6883 65.3341 88.8957 65.4674 89.1411 65.5479C89.3866 65.624 89.6299 65.6621 89.8711 65.6621C90.1927 65.6621 90.4614 65.6198 90.6772 65.5352C90.8973 65.4505 91.0645 65.3341 91.1787 65.186C91.293 65.0379 91.3501 64.8687 91.3501 64.6782ZM96.917 66.627C96.4388 66.627 96.005 66.5465 95.6157 66.3857C95.2306 66.2207 94.8984 65.9901 94.6191 65.6938C94.3441 65.3976 94.1325 65.0464 93.9844 64.6401C93.8363 64.2339 93.7622 63.7896 93.7622 63.3071V63.0405C93.7622 62.4819 93.8447 61.9847 94.0098 61.5488C94.1748 61.1087 94.3991 60.7363 94.6826 60.4316C94.9661 60.127 95.2878 59.8963 95.6475 59.7397C96.0072 59.5832 96.3796 59.5049 96.7646 59.5049C97.2555 59.5049 97.6787 59.5895 98.0342 59.7588C98.3939 59.9281 98.688 60.165 98.9165 60.4697C99.145 60.7702 99.3143 61.1257 99.4243 61.5361C99.5343 61.9424 99.5894 62.3867 99.5894 62.8691V63.396H94.4604V62.4375H98.415V62.3486C98.3981 62.0439 98.3346 61.7477 98.2246 61.46C98.1188 61.1722 97.9495 60.9352 97.7168 60.749C97.484 60.5628 97.1667 60.4697 96.7646 60.4697C96.498 60.4697 96.2526 60.5269 96.0283 60.6411C95.804 60.7511 95.6115 60.9162 95.4507 61.1362C95.2899 61.3563 95.165 61.625 95.0762 61.9424C94.9873 62.2598 94.9429 62.6258 94.9429 63.0405V63.3071C94.9429 63.633 94.9873 63.9398 95.0762 64.2275C95.1693 64.5111 95.3026 64.7607 95.4761 64.9766C95.6538 65.1924 95.8675 65.3617 96.1172 65.4844C96.3711 65.6071 96.6589 65.6685 96.9805 65.6685C97.3952 65.6685 97.7464 65.5838 98.0342 65.4146C98.3219 65.2453 98.5737 65.0189 98.7896 64.7354L99.5005 65.3003C99.3524 65.5246 99.1641 65.7383 98.9355 65.9414C98.707 66.1445 98.4256 66.3096 98.0913 66.4365C97.7612 66.5635 97.3698 66.627 96.917 66.627ZM105.588 57.2578V66.5H104.363V57.2578H105.588ZM109.46 61.4155V62.4185H105.321V61.4155H109.46ZM110.088 57.2578V58.2607H105.321V57.2578H110.088ZM112.646 59.6318V66.5H111.466V59.6318H112.646ZM111.377 57.8101C111.377 57.6196 111.434 57.4588 111.548 57.3276C111.667 57.1965 111.84 57.1309 112.069 57.1309C112.293 57.1309 112.465 57.1965 112.583 57.3276C112.706 57.4588 112.767 57.6196 112.767 57.8101C112.767 57.992 112.706 58.1486 112.583 58.2798C112.465 58.4067 112.293 58.4702 112.069 58.4702C111.84 58.4702 111.667 58.4067 111.548 58.2798C111.434 58.1486 111.377 57.992 111.377 57.8101ZM115.808 56.75V66.5H114.627V56.75H115.808ZM120.543 66.627C120.065 66.627 119.631 66.5465 119.242 66.3857C118.857 66.2207 118.524 65.9901 118.245 65.6938C117.97 65.3976 117.758 65.0464 117.61 64.6401C117.462 64.2339 117.388 63.7896 117.388 63.3071V63.0405C117.388 62.4819 117.471 61.9847 117.636 61.5488C117.801 61.1087 118.025 60.7363 118.309 60.4316C118.592 60.127 118.914 59.8963 119.273 59.7397C119.633 59.5832 120.006 59.5049 120.391 59.5049C120.882 59.5049 121.305 59.5895 121.66 59.7588C122.02 59.9281 122.314 60.165 122.542 60.4697C122.771 60.7702 122.94 61.1257 123.05 61.5361C123.16 61.9424 123.215 62.3867 123.215 62.8691V63.396H118.086V62.4375H122.041V62.3486C122.024 62.0439 121.961 61.7477 121.851 61.46C121.745 61.1722 121.576 60.9352 121.343 60.749C121.11 60.5628 120.793 60.4697 120.391 60.4697C120.124 60.4697 119.879 60.5269 119.654 60.6411C119.43 60.7511 119.237 60.9162 119.077 61.1362C118.916 61.3563 118.791 61.625 118.702 61.9424C118.613 62.2598 118.569 62.6258 118.569 63.0405V63.3071C118.569 63.633 118.613 63.9398 118.702 64.2275C118.795 64.5111 118.929 64.7607 119.102 64.9766C119.28 65.1924 119.493 65.3617 119.743 65.4844C119.997 65.6071 120.285 65.6685 120.606 65.6685C121.021 65.6685 121.372 65.5838 121.66 65.4146C121.948 65.2453 122.2 65.0189 122.416 64.7354L123.126 65.3003C122.978 65.5246 122.79 65.7383 122.562 65.9414C122.333 66.1445 122.052 66.3096 121.717 66.4365C121.387 66.5635 120.996 66.627 120.543 66.627ZM128.585 64.6782C128.585 64.509 128.547 64.3524 128.471 64.2085C128.399 64.0604 128.249 63.9271 128.021 63.8086C127.796 63.6859 127.458 63.5801 127.005 63.4912C126.624 63.4108 126.279 63.3156 125.97 63.2056C125.666 63.0955 125.405 62.9622 125.189 62.8057C124.978 62.6491 124.815 62.465 124.701 62.2534C124.586 62.0418 124.529 61.7943 124.529 61.5107C124.529 61.2399 124.589 60.9839 124.707 60.7427C124.83 60.5015 125.001 60.2878 125.221 60.1016C125.445 59.9154 125.714 59.7694 126.027 59.6636C126.34 59.5578 126.69 59.5049 127.075 59.5049C127.625 59.5049 128.095 59.6022 128.484 59.7969C128.873 59.9915 129.172 60.2518 129.379 60.5776C129.586 60.8993 129.69 61.2568 129.69 61.6504H128.516C128.516 61.46 128.458 61.2759 128.344 61.0981C128.234 60.9162 128.071 60.766 127.855 60.6475C127.644 60.529 127.384 60.4697 127.075 60.4697C126.749 60.4697 126.484 60.5205 126.281 60.6221C126.082 60.7194 125.936 60.8442 125.843 60.9966C125.754 61.1489 125.71 61.3097 125.71 61.479C125.71 61.606 125.731 61.7202 125.773 61.8218C125.82 61.9191 125.9 62.0101 126.015 62.0947C126.129 62.1751 126.29 62.2513 126.497 62.3232C126.704 62.3952 126.969 62.4671 127.291 62.5391C127.853 62.666 128.317 62.8184 128.681 62.9961C129.045 63.1738 129.315 63.3918 129.493 63.6499C129.671 63.908 129.76 64.2212 129.76 64.5894C129.76 64.8898 129.696 65.1649 129.569 65.4146C129.447 65.6642 129.267 65.88 129.03 66.062C128.797 66.2397 128.518 66.3794 128.192 66.481C127.87 66.5783 127.508 66.627 127.106 66.627C126.501 66.627 125.989 66.519 125.57 66.3032C125.151 66.0874 124.834 65.8081 124.618 65.4653C124.402 65.1226 124.294 64.7607 124.294 64.3799H125.475C125.492 64.7015 125.585 64.9575 125.754 65.1479C125.924 65.3341 126.131 65.4674 126.376 65.5479C126.622 65.624 126.865 65.6621 127.106 65.6621C127.428 65.6621 127.697 65.6198 127.913 65.5352C128.133 65.4505 128.3 65.3341 128.414 65.186C128.528 65.0379 128.585 64.8687 128.585 64.6782Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"15.5",y:"47.5",width:"156",height:"29",rx:"3.5",stroke:"#0F172A"}),(0,h.createElement)("path",{d:"M188.182 57.2578V66.5H186.951L182.298 59.3716V66.5H181.073V57.2578H182.298L186.97 64.4053V57.2578H188.182ZM189.864 63.1421V62.9961C189.864 62.501 189.936 62.0418 190.08 61.6187C190.224 61.1912 190.431 60.821 190.702 60.5078C190.973 60.1904 191.301 59.945 191.686 59.7715C192.071 59.5938 192.503 59.5049 192.981 59.5049C193.463 59.5049 193.897 59.5938 194.282 59.7715C194.672 59.945 195.002 60.1904 195.272 60.5078C195.548 60.821 195.757 61.1912 195.901 61.6187C196.045 62.0418 196.117 62.501 196.117 62.9961V63.1421C196.117 63.6372 196.045 64.0964 195.901 64.5195C195.757 64.9427 195.548 65.313 195.272 65.6304C195.002 65.9435 194.674 66.189 194.289 66.3667C193.908 66.5402 193.476 66.627 192.994 66.627C192.511 66.627 192.077 66.5402 191.692 66.3667C191.307 66.189 190.977 65.9435 190.702 65.6304C190.431 65.313 190.224 64.9427 190.08 64.5195C189.936 64.0964 189.864 63.6372 189.864 63.1421ZM191.039 62.9961V63.1421C191.039 63.4849 191.079 63.8086 191.159 64.1133C191.24 64.4137 191.36 64.6803 191.521 64.9131C191.686 65.1458 191.891 65.3299 192.137 65.4653C192.382 65.5965 192.668 65.6621 192.994 65.6621C193.315 65.6621 193.597 65.5965 193.838 65.4653C194.083 65.3299 194.286 65.1458 194.447 64.9131C194.608 64.6803 194.729 64.4137 194.809 64.1133C194.894 63.8086 194.936 63.4849 194.936 63.1421V62.9961C194.936 62.6576 194.894 62.3381 194.809 62.0376C194.729 61.7329 194.606 61.4642 194.441 61.2314C194.28 60.9945 194.077 60.8083 193.832 60.6729C193.59 60.5374 193.307 60.4697 192.981 60.4697C192.659 60.4697 192.376 60.5374 192.13 60.6729C191.889 60.8083 191.686 60.9945 191.521 61.2314C191.36 61.4642 191.24 61.7329 191.159 62.0376C191.079 62.3381 191.039 62.6576 191.039 62.9961ZM202.382 66.5H201.208V59.0352C201.208 58.5146 201.309 58.0745 201.512 57.7148C201.715 57.3551 202.005 57.0822 202.382 56.896C202.758 56.7098 203.205 56.6167 203.721 56.6167C204.026 56.6167 204.324 56.6548 204.616 56.731C204.908 56.8029 205.209 56.8939 205.518 57.0039L205.321 57.9941C205.126 57.918 204.9 57.846 204.642 57.7783C204.388 57.7064 204.108 57.6704 203.804 57.6704C203.3 57.6704 202.936 57.7847 202.712 58.0132C202.492 58.2375 202.382 58.5781 202.382 59.0352V66.5ZM203.785 59.6318V60.5332H200.122V59.6318H203.785ZM206.095 59.6318V66.5H204.921V59.6318H206.095ZM209.301 56.75V66.5H208.12V56.75H209.301ZM214.036 66.627C213.558 66.627 213.124 66.5465 212.735 66.3857C212.35 66.2207 212.018 65.9901 211.738 65.6938C211.463 65.3976 211.252 65.0464 211.104 64.6401C210.955 64.2339 210.881 63.7896 210.881 63.3071V63.0405C210.881 62.4819 210.964 61.9847 211.129 61.5488C211.294 61.1087 211.518 60.7363 211.802 60.4316C212.085 60.127 212.407 59.8963 212.767 59.7397C213.126 59.5832 213.499 59.5049 213.884 59.5049C214.375 59.5049 214.798 59.5895 215.153 59.7588C215.513 59.9281 215.807 60.165 216.036 60.4697C216.264 60.7702 216.433 61.1257 216.543 61.5361C216.653 61.9424 216.708 62.3867 216.708 62.8691V63.396H211.58V62.4375H215.534V62.3486C215.517 62.0439 215.454 61.7477 215.344 61.46C215.238 61.1722 215.069 60.9352 214.836 60.749C214.603 60.5628 214.286 60.4697 213.884 60.4697C213.617 60.4697 213.372 60.5269 213.147 60.6411C212.923 60.7511 212.731 60.9162 212.57 61.1362C212.409 61.3563 212.284 61.625 212.195 61.9424C212.106 62.2598 212.062 62.6258 212.062 63.0405V63.3071C212.062 63.633 212.106 63.9398 212.195 64.2275C212.288 64.5111 212.422 64.7607 212.595 64.9766C212.773 65.1924 212.987 65.3617 213.236 65.4844C213.49 65.6071 213.778 65.6685 214.1 65.6685C214.514 65.6685 214.866 65.5838 215.153 65.4146C215.441 65.2453 215.693 65.0189 215.909 64.7354L216.62 65.3003C216.472 65.5246 216.283 65.7383 216.055 65.9414C215.826 66.1445 215.545 66.3096 215.21 66.4365C214.88 66.5635 214.489 66.627 214.036 66.627ZM224.053 65.6621C224.332 65.6621 224.59 65.605 224.827 65.4907C225.064 65.3765 225.259 65.2199 225.411 65.021C225.563 64.8179 225.65 64.5872 225.671 64.3291H226.789C226.767 64.7354 226.63 65.1141 226.376 65.4653C226.126 65.8123 225.798 66.0938 225.392 66.3096C224.986 66.5212 224.539 66.627 224.053 66.627C223.536 66.627 223.086 66.536 222.701 66.354C222.32 66.172 222.002 65.9224 221.749 65.605C221.499 65.2876 221.311 64.9237 221.184 64.5132C221.061 64.0985 221 63.6605 221 63.1992V62.9326C221 62.4714 221.061 62.0355 221.184 61.625C221.311 61.2103 221.499 60.8442 221.749 60.5269C222.002 60.2095 222.32 59.9598 222.701 59.7778C223.086 59.5959 223.536 59.5049 224.053 59.5049C224.59 59.5049 225.06 59.6149 225.462 59.835C225.864 60.0508 226.179 60.347 226.408 60.7236C226.64 61.096 226.767 61.5192 226.789 61.9932H225.671C225.65 61.7096 225.57 61.4536 225.43 61.2251C225.295 60.9966 225.109 60.8146 224.872 60.6792C224.639 60.5396 224.366 60.4697 224.053 60.4697C223.693 60.4697 223.39 60.5417 223.145 60.6855C222.904 60.8252 222.711 61.0156 222.567 61.2568C222.428 61.4938 222.326 61.7583 222.263 62.0503C222.203 62.3381 222.174 62.6322 222.174 62.9326V63.1992C222.174 63.4997 222.203 63.7959 222.263 64.0879C222.322 64.3799 222.421 64.6444 222.561 64.8813C222.705 65.1183 222.897 65.3088 223.139 65.4526C223.384 65.5923 223.689 65.6621 224.053 65.6621ZM229.283 56.75V66.5H228.109V56.75H229.283ZM229.004 62.8057L228.515 62.7866C228.519 62.3169 228.589 61.8831 228.725 61.4854C228.86 61.0833 229.05 60.7342 229.296 60.438C229.541 60.1418 229.833 59.9132 230.172 59.7524C230.515 59.5874 230.893 59.5049 231.308 59.5049C231.647 59.5049 231.951 59.5514 232.222 59.6445C232.493 59.7334 232.724 59.8773 232.914 60.0762C233.109 60.2751 233.257 60.5332 233.358 60.8506C233.46 61.1637 233.511 61.5467 233.511 61.9995V66.5H232.33V61.9868C232.33 61.6271 232.277 61.3394 232.171 61.1235C232.066 60.9035 231.911 60.7448 231.708 60.6475C231.505 60.5459 231.255 60.4951 230.959 60.4951C230.667 60.4951 230.4 60.5565 230.159 60.6792C229.922 60.8019 229.717 60.9712 229.543 61.187C229.374 61.4028 229.241 61.6504 229.144 61.9297C229.05 62.2048 229.004 62.4967 229.004 62.8057ZM234.958 63.1421V62.9961C234.958 62.501 235.03 62.0418 235.174 61.6187C235.318 61.1912 235.525 60.821 235.796 60.5078C236.067 60.1904 236.395 59.945 236.78 59.7715C237.165 59.5938 237.597 59.5049 238.075 59.5049C238.557 59.5049 238.991 59.5938 239.376 59.7715C239.765 59.945 240.095 60.1904 240.366 60.5078C240.641 60.821 240.851 61.1912 240.995 61.6187C241.139 62.0418 241.21 62.501 241.21 62.9961V63.1421C241.21 63.6372 241.139 64.0964 240.995 64.5195C240.851 64.9427 240.641 65.313 240.366 65.6304C240.095 65.9435 239.767 66.189 239.382 66.3667C239.001 66.5402 238.57 66.627 238.087 66.627C237.605 66.627 237.171 66.5402 236.786 66.3667C236.401 66.189 236.071 65.9435 235.796 65.6304C235.525 65.313 235.318 64.9427 235.174 64.5195C235.03 64.0964 234.958 63.6372 234.958 63.1421ZM236.132 62.9961V63.1421C236.132 63.4849 236.173 63.8086 236.253 64.1133C236.333 64.4137 236.454 64.6803 236.615 64.9131C236.78 65.1458 236.985 65.3299 237.23 65.4653C237.476 65.5965 237.762 65.6621 238.087 65.6621C238.409 65.6621 238.69 65.5965 238.932 65.4653C239.177 65.3299 239.38 65.1458 239.541 64.9131C239.702 64.6803 239.822 64.4137 239.903 64.1133C239.987 63.8086 240.03 63.4849 240.03 63.1421V62.9961C240.03 62.6576 239.987 62.3381 239.903 62.0376C239.822 61.7329 239.7 61.4642 239.535 61.2314C239.374 60.9945 239.171 60.8083 238.925 60.6729C238.684 60.5374 238.401 60.4697 238.075 60.4697C237.753 60.4697 237.47 60.5374 237.224 60.6729C236.983 60.8083 236.78 60.9945 236.615 61.2314C236.454 61.4642 236.333 61.7329 236.253 62.0376C236.173 62.3381 236.132 62.6576 236.132 62.9961ZM246.682 64.6782C246.682 64.509 246.644 64.3524 246.568 64.2085C246.496 64.0604 246.346 63.9271 246.117 63.8086C245.893 63.6859 245.554 63.5801 245.102 63.4912C244.721 63.4108 244.376 63.3156 244.067 63.2056C243.762 63.0955 243.502 62.9622 243.286 62.8057C243.075 62.6491 242.912 62.465 242.797 62.2534C242.683 62.0418 242.626 61.7943 242.626 61.5107C242.626 61.2399 242.685 60.9839 242.804 60.7427C242.926 60.5015 243.098 60.2878 243.318 60.1016C243.542 59.9154 243.811 59.7694 244.124 59.6636C244.437 59.5578 244.786 59.5049 245.171 59.5049C245.722 59.5049 246.191 59.6022 246.581 59.7969C246.97 59.9915 247.268 60.2518 247.476 60.5776C247.683 60.8993 247.787 61.2568 247.787 61.6504H246.612C246.612 61.46 246.555 61.2759 246.441 61.0981C246.331 60.9162 246.168 60.766 245.952 60.6475C245.741 60.529 245.48 60.4697 245.171 60.4697C244.846 60.4697 244.581 60.5205 244.378 60.6221C244.179 60.7194 244.033 60.8442 243.94 60.9966C243.851 61.1489 243.807 61.3097 243.807 61.479C243.807 61.606 243.828 61.7202 243.87 61.8218C243.917 61.9191 243.997 62.0101 244.111 62.0947C244.226 62.1751 244.386 62.2513 244.594 62.3232C244.801 62.3952 245.066 62.4671 245.387 62.5391C245.95 62.666 246.413 62.8184 246.777 62.9961C247.141 63.1738 247.412 63.3918 247.59 63.6499C247.768 63.908 247.856 64.2212 247.856 64.5894C247.856 64.8898 247.793 65.1649 247.666 65.4146C247.543 65.6642 247.363 65.88 247.126 66.062C246.894 66.2397 246.614 66.3794 246.289 66.481C245.967 66.5783 245.605 66.627 245.203 66.627C244.598 66.627 244.086 66.519 243.667 66.3032C243.248 66.0874 242.931 65.8081 242.715 65.4653C242.499 65.1226 242.391 64.7607 242.391 64.3799H243.572C243.589 64.7015 243.682 64.9575 243.851 65.1479C244.02 65.3341 244.228 65.4674 244.473 65.5479C244.719 65.624 244.962 65.6621 245.203 65.6621C245.525 65.6621 245.793 65.6198 246.009 65.5352C246.229 65.4505 246.396 65.3341 246.511 65.186C246.625 65.0379 246.682 64.8687 246.682 64.6782ZM252.249 66.627C251.771 66.627 251.337 66.5465 250.948 66.3857C250.563 66.2207 250.23 65.9901 249.951 65.6938C249.676 65.3976 249.465 65.0464 249.316 64.6401C249.168 64.2339 249.094 63.7896 249.094 63.3071V63.0405C249.094 62.4819 249.177 61.9847 249.342 61.5488C249.507 61.1087 249.731 60.7363 250.015 60.4316C250.298 60.127 250.62 59.8963 250.979 59.7397C251.339 59.5832 251.712 59.5049 252.097 59.5049C252.588 59.5049 253.011 59.5895 253.366 59.7588C253.726 59.9281 254.02 60.165 254.249 60.4697C254.477 60.7702 254.646 61.1257 254.756 61.5361C254.866 61.9424 254.921 62.3867 254.921 62.8691V63.396H249.792V62.4375H253.747V62.3486C253.73 62.0439 253.667 61.7477 253.557 61.46C253.451 61.1722 253.282 60.9352 253.049 60.749C252.816 60.5628 252.499 60.4697 252.097 60.4697C251.83 60.4697 251.585 60.5269 251.36 60.6411C251.136 60.7511 250.944 60.9162 250.783 61.1362C250.622 61.3563 250.497 61.625 250.408 61.9424C250.319 62.2598 250.275 62.6258 250.275 63.0405V63.3071C250.275 63.633 250.319 63.9398 250.408 64.2275C250.501 64.5111 250.635 64.7607 250.808 64.9766C250.986 65.1924 251.2 65.3617 251.449 65.4844C251.703 65.6071 251.991 65.6685 252.312 65.6685C252.727 65.6685 253.078 65.5838 253.366 65.4146C253.654 65.2453 253.906 65.0189 254.122 64.7354L254.833 65.3003C254.684 65.5246 254.496 65.7383 254.268 65.9414C254.039 66.1445 253.758 66.3096 253.423 66.4365C253.093 66.5635 252.702 66.627 252.249 66.627ZM257.467 61.0981V66.5H256.292V59.6318H257.403L257.467 61.0981ZM257.188 62.8057L256.699 62.7866C256.703 62.3169 256.773 61.8831 256.908 61.4854C257.044 61.0833 257.234 60.7342 257.479 60.438C257.725 60.1418 258.017 59.9132 258.355 59.7524C258.698 59.5874 259.077 59.5049 259.492 59.5049C259.83 59.5049 260.135 59.5514 260.406 59.6445C260.677 59.7334 260.907 59.8773 261.098 60.0762C261.292 60.2751 261.44 60.5332 261.542 60.8506C261.644 61.1637 261.694 61.5467 261.694 61.9995V66.5H260.514V61.9868C260.514 61.6271 260.461 61.3394 260.355 61.1235C260.249 60.9035 260.095 60.7448 259.892 60.6475C259.688 60.5459 259.439 60.4951 259.143 60.4951C258.851 60.4951 258.584 60.5565 258.343 60.6792C258.106 60.8019 257.901 60.9712 257.727 61.187C257.558 61.4028 257.424 61.6504 257.327 61.9297C257.234 62.2048 257.188 62.4967 257.188 62.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M16.46 84.7578H17.647L20.6748 92.2925L23.6963 84.7578H24.8896L21.1318 94H20.2051L16.46 84.7578ZM16.0728 84.7578H17.1201L17.2915 90.3945V94H16.0728V84.7578ZM24.2231 84.7578H25.2705V94H24.0518V90.3945L24.2231 84.7578ZM31.2944 92.8257V89.29C31.2944 89.0192 31.2394 88.7843 31.1294 88.5854C31.0236 88.3823 30.8628 88.2257 30.647 88.1157C30.4312 88.0057 30.1646 87.9507 29.8472 87.9507C29.5509 87.9507 29.2907 88.0015 29.0664 88.103C28.8464 88.2046 28.6729 88.3379 28.5459 88.5029C28.4232 88.668 28.3618 88.8457 28.3618 89.0361H27.1875C27.1875 88.7907 27.251 88.5474 27.3779 88.3062C27.5049 88.0649 27.6868 87.847 27.9238 87.6523C28.165 87.4535 28.4528 87.2969 28.7871 87.1826C29.1257 87.0641 29.5023 87.0049 29.917 87.0049C30.4163 87.0049 30.8564 87.0895 31.2373 87.2588C31.6224 87.4281 31.9229 87.6841 32.1387 88.0269C32.3587 88.3654 32.4688 88.7907 32.4688 89.3027V92.502C32.4688 92.7305 32.4878 92.9738 32.5259 93.2319C32.5682 93.4901 32.6296 93.7122 32.71 93.8984V94H31.4849C31.4256 93.8646 31.3791 93.6847 31.3452 93.4604C31.3114 93.2319 31.2944 93.0203 31.2944 92.8257ZM31.4976 89.8359L31.5103 90.6611H30.3232C29.9889 90.6611 29.6906 90.6886 29.4282 90.7437C29.1659 90.7944 28.9458 90.8727 28.7681 90.9785C28.5903 91.0843 28.4549 91.2176 28.3618 91.3784C28.2687 91.535 28.2222 91.7191 28.2222 91.9307C28.2222 92.1465 28.2708 92.3433 28.3682 92.521C28.4655 92.6987 28.6115 92.8405 28.8062 92.9463C29.005 93.0479 29.2484 93.0986 29.5361 93.0986C29.8958 93.0986 30.2132 93.0225 30.4883 92.8701C30.7633 92.7178 30.9813 92.5316 31.1421 92.3115C31.3071 92.0915 31.396 91.8778 31.4087 91.6704L31.9102 92.2354C31.8805 92.4131 31.8001 92.6099 31.6689 92.8257C31.5378 93.0415 31.3621 93.2489 31.1421 93.4478C30.9263 93.6424 30.6681 93.8053 30.3677 93.9365C30.0715 94.0635 29.7371 94.127 29.3647 94.127C28.8993 94.127 28.4909 94.036 28.1396 93.854C27.7926 93.672 27.5218 93.4287 27.3271 93.124C27.1367 92.8151 27.0415 92.4702 27.0415 92.0894C27.0415 91.7212 27.1134 91.3975 27.2573 91.1182C27.4012 90.8346 27.6086 90.5998 27.8794 90.4136C28.1502 90.2231 28.4761 90.0793 28.8569 89.9819C29.2378 89.8846 29.6631 89.8359 30.1328 89.8359H31.4976ZM35.1094 87.1318L36.6138 89.6328L38.1372 87.1318H39.5146L37.2676 90.5215L39.5845 94H38.2261L36.6392 91.4229L35.0522 94H33.6875L35.998 90.5215L33.7573 87.1318H35.1094ZM42.041 87.1318V94H40.8604V87.1318H42.041ZM40.7715 85.3101C40.7715 85.1196 40.8286 84.9588 40.9429 84.8276C41.0614 84.6965 41.2349 84.6309 41.4634 84.6309C41.6877 84.6309 41.859 84.6965 41.9775 84.8276C42.1003 84.9588 42.1616 85.1196 42.1616 85.3101C42.1616 85.492 42.1003 85.6486 41.9775 85.7798C41.859 85.9067 41.6877 85.9702 41.4634 85.9702C41.2349 85.9702 41.0614 85.9067 40.9429 85.7798C40.8286 85.6486 40.7715 85.492 40.7715 85.3101ZM45.0942 88.4966V94H43.9136V87.1318H45.0308L45.0942 88.4966ZM44.853 90.3057L44.3071 90.2866C44.3114 89.8169 44.3727 89.3831 44.4912 88.9854C44.6097 88.5833 44.7853 88.2342 45.0181 87.938C45.2508 87.6418 45.5407 87.4132 45.8877 87.2524C46.2347 87.0874 46.6367 87.0049 47.0938 87.0049C47.4154 87.0049 47.7116 87.0514 47.9824 87.1445C48.2533 87.2334 48.4881 87.3752 48.687 87.5698C48.8859 87.7645 49.0404 88.0142 49.1504 88.3188C49.2604 88.6235 49.3154 88.9917 49.3154 89.4233V94H48.1411V89.4805C48.1411 89.1208 48.0798 88.833 47.957 88.6172C47.8385 88.4014 47.6693 88.2448 47.4492 88.1475C47.2292 88.0459 46.971 87.9951 46.6748 87.9951C46.3278 87.9951 46.0379 88.0565 45.8052 88.1792C45.5724 88.3019 45.3862 88.4712 45.2466 88.687C45.1069 88.9028 45.0054 89.1504 44.9419 89.4297C44.8826 89.7048 44.853 89.9967 44.853 90.3057ZM49.3027 89.6582L48.5156 89.8994C48.5199 89.5228 48.5812 89.161 48.6997 88.814C48.8224 88.467 48.998 88.158 49.2266 87.8872C49.4593 87.6164 49.745 87.4027 50.0835 87.2461C50.422 87.0853 50.8092 87.0049 51.2451 87.0049C51.6133 87.0049 51.9391 87.0535 52.2227 87.1509C52.5104 87.2482 52.7516 87.3984 52.9463 87.6016C53.1452 87.8005 53.2954 88.0565 53.397 88.3696C53.4985 88.6828 53.5493 89.0552 53.5493 89.4868V94H52.3687V89.4741C52.3687 89.089 52.3073 88.7907 52.1846 88.5791C52.0661 88.3633 51.8968 88.2131 51.6768 88.1284C51.4609 88.0396 51.2028 87.9951 50.9023 87.9951C50.6442 87.9951 50.4157 88.0396 50.2168 88.1284C50.0179 88.2173 49.8507 88.34 49.7153 88.4966C49.5799 88.6489 49.4762 88.8245 49.4043 89.0234C49.3366 89.2223 49.3027 89.4339 49.3027 89.6582ZM59.5288 92.4131V87.1318H60.7095V94H59.5859L59.5288 92.4131ZM59.751 90.9658L60.2397 90.9531C60.2397 91.4102 60.1911 91.8333 60.0938 92.2227C60.0007 92.6077 59.8483 92.9421 59.6367 93.2256C59.4251 93.5091 59.1479 93.7313 58.8052 93.8921C58.4624 94.0487 58.0456 94.127 57.5547 94.127C57.2204 94.127 56.9136 94.0783 56.6343 93.981C56.3592 93.8836 56.1222 93.7334 55.9233 93.5303C55.7244 93.3271 55.57 93.0627 55.46 92.7368C55.3542 92.411 55.3013 92.0195 55.3013 91.5625V87.1318H56.4756V91.5752C56.4756 91.8841 56.5094 92.1401 56.5771 92.3433C56.6491 92.5422 56.7443 92.7008 56.8628 92.8193C56.9855 92.9336 57.1209 93.014 57.269 93.0605C57.4214 93.1071 57.578 93.1304 57.7388 93.1304C58.2381 93.1304 58.6338 93.0352 58.9258 92.8447C59.2178 92.6501 59.4272 92.3898 59.5542 92.064C59.6854 91.7339 59.751 91.3678 59.751 90.9658ZM63.6675 88.4966V94H62.4868V87.1318H63.604L63.6675 88.4966ZM63.4263 90.3057L62.8804 90.2866C62.8846 89.8169 62.946 89.3831 63.0645 88.9854C63.1829 88.5833 63.3586 88.2342 63.5913 87.938C63.8241 87.6418 64.1139 87.4132 64.4609 87.2524C64.8079 87.0874 65.21 87.0049 65.667 87.0049C65.9886 87.0049 66.2848 87.0514 66.5557 87.1445C66.8265 87.2334 67.0614 87.3752 67.2603 87.5698C67.4591 87.7645 67.6136 88.0142 67.7236 88.3188C67.8337 88.6235 67.8887 88.9917 67.8887 89.4233V94H66.7144V89.4805C66.7144 89.1208 66.653 88.833 66.5303 88.6172C66.4118 88.4014 66.2425 88.2448 66.0225 88.1475C65.8024 88.0459 65.5443 87.9951 65.248 87.9951C64.901 87.9951 64.6112 88.0565 64.3784 88.1792C64.1457 88.3019 63.9595 88.4712 63.8198 88.687C63.6802 88.9028 63.5786 89.1504 63.5151 89.4297C63.4559 89.7048 63.4263 89.9967 63.4263 90.3057ZM67.876 89.6582L67.0889 89.8994C67.0931 89.5228 67.1545 89.161 67.2729 88.814C67.3957 88.467 67.5713 88.158 67.7998 87.8872C68.0326 87.6164 68.3182 87.4027 68.6567 87.2461C68.9953 87.0853 69.3825 87.0049 69.8184 87.0049C70.1865 87.0049 70.5124 87.0535 70.7959 87.1509C71.0837 87.2482 71.3249 87.3984 71.5195 87.6016C71.7184 87.8005 71.8687 88.0565 71.9702 88.3696C72.0718 88.6828 72.1226 89.0552 72.1226 89.4868V94H70.9419V89.4741C70.9419 89.089 70.8805 88.7907 70.7578 88.5791C70.6393 88.3633 70.4701 88.2131 70.25 88.1284C70.0342 88.0396 69.776 87.9951 69.4756 87.9951C69.2174 87.9951 68.9889 88.0396 68.79 88.1284C68.5911 88.2173 68.424 88.34 68.2886 88.4966C68.1532 88.6489 68.0495 88.8245 67.9775 89.0234C67.9098 89.2223 67.876 89.4339 67.876 89.6582ZM78.6924 94H77.5181V86.5352C77.5181 86.0146 77.6196 85.5745 77.8228 85.2148C78.0259 84.8551 78.3158 84.5822 78.6924 84.396C79.069 84.2098 79.5155 84.1167 80.0317 84.1167C80.3364 84.1167 80.6348 84.1548 80.9268 84.231C81.2188 84.3029 81.5192 84.3939 81.8281 84.5039L81.6313 85.4941C81.4367 85.418 81.2103 85.346 80.9521 85.2783C80.6982 85.2064 80.4189 85.1704 80.1143 85.1704C79.6107 85.1704 79.2467 85.2847 79.0225 85.5132C78.8024 85.7375 78.6924 86.0781 78.6924 86.5352V94ZM80.0952 87.1318V88.0332H76.4326V87.1318H80.0952ZM82.4058 87.1318V94H81.2314V87.1318H82.4058ZM85.6113 84.25V94H84.4307V84.25H85.6113ZM90.3467 94.127C89.8685 94.127 89.4347 94.0465 89.0454 93.8857C88.6603 93.7207 88.3281 93.4901 88.0488 93.1938C87.7738 92.8976 87.5622 92.5464 87.4141 92.1401C87.266 91.7339 87.1919 91.2896 87.1919 90.8071V90.5405C87.1919 89.9819 87.2744 89.4847 87.4395 89.0488C87.6045 88.6087 87.8288 88.2363 88.1123 87.9316C88.3958 87.627 88.7174 87.3963 89.0771 87.2397C89.4368 87.0832 89.8092 87.0049 90.1943 87.0049C90.6852 87.0049 91.1084 87.0895 91.4639 87.2588C91.8236 87.4281 92.1177 87.665 92.3462 87.9697C92.5747 88.2702 92.744 88.6257 92.854 89.0361C92.964 89.4424 93.019 89.8867 93.019 90.3691V90.896H87.8901V89.9375H91.8447V89.8486C91.8278 89.5439 91.7643 89.2477 91.6543 88.96C91.5485 88.6722 91.3792 88.4352 91.1465 88.249C90.9137 88.0628 90.5964 87.9697 90.1943 87.9697C89.9277 87.9697 89.6823 88.0269 89.458 88.1411C89.2337 88.2511 89.0412 88.4162 88.8804 88.6362C88.7196 88.8563 88.5947 89.125 88.5059 89.4424C88.417 89.7598 88.3726 90.1258 88.3726 90.5405V90.8071C88.3726 91.133 88.417 91.4398 88.5059 91.7275C88.599 92.0111 88.7323 92.2607 88.9058 92.4766C89.0835 92.6924 89.2972 92.8617 89.5469 92.9844C89.8008 93.1071 90.0885 93.1685 90.4102 93.1685C90.8249 93.1685 91.1761 93.0838 91.4639 92.9146C91.7516 92.7453 92.0034 92.5189 92.2192 92.2354L92.9302 92.8003C92.7821 93.0246 92.5938 93.2383 92.3652 93.4414C92.1367 93.6445 91.8553 93.8096 91.521 93.9365C91.1909 94.0635 90.7995 94.127 90.3467 94.127ZM101.614 92.1782C101.614 92.009 101.576 91.8524 101.5 91.7085C101.428 91.5604 101.277 91.4271 101.049 91.3086C100.825 91.1859 100.486 91.0801 100.033 90.9912C99.6523 90.9108 99.3075 90.8156 98.9985 90.7056C98.6938 90.5955 98.4336 90.4622 98.2178 90.3057C98.0062 90.1491 97.8433 89.965 97.729 89.7534C97.6147 89.5418 97.5576 89.2943 97.5576 89.0107C97.5576 88.7399 97.6169 88.4839 97.7354 88.2427C97.8581 88.0015 98.0295 87.7878 98.2495 87.6016C98.4738 87.4154 98.7425 87.2694 99.0557 87.1636C99.3688 87.0578 99.7179 87.0049 100.103 87.0049C100.653 87.0049 101.123 87.1022 101.512 87.2969C101.902 87.4915 102.2 87.7518 102.407 88.0776C102.615 88.3993 102.718 88.7568 102.718 89.1504H101.544C101.544 88.96 101.487 88.7759 101.373 88.5981C101.263 88.4162 101.1 88.266 100.884 88.1475C100.672 88.029 100.412 87.9697 100.103 87.9697C99.7772 87.9697 99.5127 88.0205 99.3096 88.1221C99.1107 88.2194 98.9647 88.3442 98.8716 88.4966C98.7827 88.6489 98.7383 88.8097 98.7383 88.979C98.7383 89.106 98.7594 89.2202 98.8018 89.3218C98.8483 89.4191 98.9287 89.5101 99.043 89.5947C99.1572 89.6751 99.318 89.7513 99.5254 89.8232C99.7327 89.8952 99.9972 89.9671 100.319 90.0391C100.882 90.166 101.345 90.3184 101.709 90.4961C102.073 90.6738 102.344 90.8918 102.521 91.1499C102.699 91.408 102.788 91.7212 102.788 92.0894C102.788 92.3898 102.725 92.6649 102.598 92.9146C102.475 93.1642 102.295 93.38 102.058 93.562C101.825 93.7397 101.546 93.8794 101.22 93.981C100.899 94.0783 100.537 94.127 100.135 94.127C99.5296 94.127 99.0176 94.019 98.5986 93.8032C98.1797 93.5874 97.8623 93.3081 97.6465 92.9653C97.4307 92.6226 97.3228 92.2607 97.3228 91.8799H98.5034C98.5203 92.2015 98.6134 92.4575 98.7827 92.6479C98.952 92.8341 99.1593 92.9674 99.4048 93.0479C99.6502 93.124 99.8936 93.1621 100.135 93.1621C100.456 93.1621 100.725 93.1198 100.941 93.0352C101.161 92.9505 101.328 92.8341 101.442 92.686C101.557 92.5379 101.614 92.3687 101.614 92.1782ZM105.606 87.1318V94H104.426V87.1318H105.606ZM104.337 85.3101C104.337 85.1196 104.394 84.9588 104.508 84.8276C104.627 84.6965 104.8 84.6309 105.029 84.6309C105.253 84.6309 105.424 84.6965 105.543 84.8276C105.666 84.9588 105.727 85.1196 105.727 85.3101C105.727 85.492 105.666 85.6486 105.543 85.7798C105.424 85.9067 105.253 85.9702 105.029 85.9702C104.8 85.9702 104.627 85.9067 104.508 85.7798C104.394 85.6486 104.337 85.492 104.337 85.3101ZM112.608 93.0352V94H107.612V93.0352H112.608ZM112.424 87.9634L107.879 94H107.162V93.1367L111.675 87.1318H112.424V87.9634ZM111.903 87.1318V88.103H107.212V87.1318H111.903ZM116.689 94.127C116.211 94.127 115.778 94.0465 115.388 93.8857C115.003 93.7207 114.671 93.4901 114.392 93.1938C114.117 92.8976 113.905 92.5464 113.757 92.1401C113.609 91.7339 113.535 91.2896 113.535 90.8071V90.5405C113.535 89.9819 113.617 89.4847 113.782 89.0488C113.947 88.6087 114.172 88.2363 114.455 87.9316C114.739 87.627 115.06 87.3963 115.42 87.2397C115.78 87.0832 116.152 87.0049 116.537 87.0049C117.028 87.0049 117.451 87.0895 117.807 87.2588C118.166 87.4281 118.46 87.665 118.689 87.9697C118.917 88.2702 119.087 88.6257 119.197 89.0361C119.307 89.4424 119.362 89.8867 119.362 90.3691V90.896H114.233V89.9375H118.188V89.8486C118.171 89.5439 118.107 89.2477 117.997 88.96C117.891 88.6722 117.722 88.4352 117.489 88.249C117.257 88.0628 116.939 87.9697 116.537 87.9697C116.271 87.9697 116.025 88.0269 115.801 88.1411C115.576 88.2511 115.384 88.4162 115.223 88.6362C115.062 88.8563 114.938 89.125 114.849 89.4424C114.76 89.7598 114.715 90.1258 114.715 90.5405V90.8071C114.715 91.133 114.76 91.4398 114.849 91.7275C114.942 92.0111 115.075 92.2607 115.249 92.4766C115.426 92.6924 115.64 92.8617 115.89 92.9844C116.144 93.1071 116.431 93.1685 116.753 93.1685C117.168 93.1685 117.519 93.0838 117.807 92.9146C118.094 92.7453 118.346 92.5189 118.562 92.2354L119.273 92.8003C119.125 93.0246 118.937 93.2383 118.708 93.4414C118.479 93.6445 118.198 93.8096 117.864 93.9365C117.534 94.0635 117.142 94.127 116.689 94.127ZM120.682 93.3779C120.682 93.179 120.743 93.0119 120.866 92.8765C120.993 92.7368 121.175 92.667 121.412 92.667C121.649 92.667 121.829 92.7368 121.952 92.8765C122.079 93.0119 122.142 93.179 122.142 93.3779C122.142 93.5726 122.079 93.7376 121.952 93.873C121.829 94.0085 121.649 94.0762 121.412 94.0762C121.175 94.0762 120.993 94.0085 120.866 93.873C120.743 93.7376 120.682 93.5726 120.682 93.3779ZM120.688 87.7729C120.688 87.5741 120.75 87.4069 120.873 87.2715C121 87.1318 121.181 87.062 121.418 87.062C121.655 87.062 121.835 87.1318 121.958 87.2715C122.085 87.4069 122.148 87.5741 122.148 87.7729C122.148 87.9676 122.085 88.1326 121.958 88.2681C121.835 88.4035 121.655 88.4712 121.418 88.4712C121.181 88.4712 121 88.4035 120.873 88.2681C120.75 88.1326 120.688 87.9676 120.688 87.7729ZM130.838 84.707V94H129.664V86.1733L127.296 87.0366V85.9766L130.654 84.707H130.838ZM140.093 88.6426V90.0518C140.093 90.8092 140.026 91.4482 139.89 91.9688C139.755 92.4893 139.56 92.9082 139.306 93.2256C139.052 93.543 138.745 93.7736 138.386 93.9175C138.03 94.0571 137.628 94.127 137.18 94.127C136.824 94.127 136.496 94.0825 136.196 93.9937C135.895 93.9048 135.625 93.763 135.383 93.5684C135.146 93.3695 134.943 93.1113 134.774 92.7939C134.605 92.4766 134.476 92.0915 134.387 91.6387C134.298 91.1859 134.253 90.6569 134.253 90.0518V88.6426C134.253 87.8851 134.321 87.2503 134.457 86.7383C134.596 86.2262 134.793 85.8158 135.047 85.5068C135.301 85.1937 135.605 84.9694 135.961 84.834C136.321 84.6986 136.723 84.6309 137.167 84.6309C137.527 84.6309 137.857 84.6753 138.157 84.7642C138.462 84.8488 138.733 84.9863 138.97 85.1768C139.207 85.363 139.408 85.6126 139.573 85.9258C139.742 86.2347 139.871 86.6134 139.96 87.062C140.049 87.5106 140.093 88.0374 140.093 88.6426ZM138.913 90.2422V88.4458C138.913 88.0311 138.887 87.6672 138.836 87.354C138.79 87.0366 138.72 86.7658 138.627 86.5415C138.534 86.3172 138.415 86.1353 138.271 85.9956C138.132 85.856 137.969 85.7544 137.783 85.6909C137.601 85.6232 137.396 85.5894 137.167 85.5894C136.888 85.5894 136.64 85.6423 136.424 85.748C136.208 85.8496 136.027 86.0125 135.878 86.2368C135.735 86.4611 135.625 86.7552 135.548 87.1191C135.472 87.4831 135.434 87.9253 135.434 88.4458V90.2422C135.434 90.6569 135.457 91.0229 135.504 91.3403C135.555 91.6577 135.629 91.9328 135.726 92.1655C135.823 92.394 135.942 92.5824 136.082 92.7305C136.221 92.8786 136.382 92.9886 136.564 93.0605C136.75 93.1283 136.955 93.1621 137.18 93.1621C137.467 93.1621 137.719 93.1071 137.935 92.9971C138.151 92.887 138.331 92.7157 138.475 92.4829C138.623 92.2459 138.733 91.9434 138.805 91.5752C138.877 91.2028 138.913 90.7585 138.913 90.2422ZM145.521 84.7578H146.708L149.735 92.2925L152.757 84.7578H153.95L150.192 94H149.266L145.521 84.7578ZM145.133 84.7578H146.181L146.352 90.3945V94H145.133V84.7578ZM153.284 84.7578H154.331V94H153.112V90.3945L153.284 84.7578ZM159.777 89.6772H157.435L157.422 88.6934H159.549C159.9 88.6934 160.207 88.6341 160.469 88.5156C160.732 88.3971 160.935 88.2279 161.079 88.0078C161.227 87.7835 161.301 87.5169 161.301 87.208C161.301 86.8695 161.235 86.5944 161.104 86.3828C160.977 86.167 160.78 86.0104 160.514 85.9131C160.251 85.8115 159.917 85.7607 159.511 85.7607H157.708V94H156.483V84.7578H159.511C159.985 84.7578 160.408 84.8065 160.78 84.9038C161.153 84.9969 161.468 85.145 161.726 85.3481C161.988 85.547 162.187 85.8009 162.323 86.1099C162.458 86.4188 162.526 86.7891 162.526 87.2207C162.526 87.6016 162.429 87.9465 162.234 88.2554C162.039 88.5601 161.768 88.8097 161.421 89.0044C161.079 89.1991 160.677 89.3239 160.215 89.3789L159.777 89.6772ZM159.72 94H156.953L157.645 93.0034H159.72C160.11 93.0034 160.44 92.9357 160.71 92.8003C160.986 92.6649 161.195 92.4744 161.339 92.229C161.483 91.9793 161.555 91.6852 161.555 91.3467C161.555 91.0039 161.493 90.7077 161.371 90.458C161.248 90.2083 161.055 90.0158 160.793 89.8804C160.531 89.745 160.192 89.6772 159.777 89.6772H158.032L158.044 88.6934H160.431L160.691 89.0488C161.136 89.0869 161.512 89.2139 161.821 89.4297C162.13 89.6413 162.365 89.9121 162.526 90.2422C162.691 90.5723 162.773 90.9362 162.773 91.334C162.773 91.9095 162.646 92.3962 162.393 92.7939C162.143 93.1875 161.79 93.488 161.333 93.6953C160.875 93.8984 160.338 94 159.72 94Z",fill:"#64748B"})),{ToolBarFields:ba,GeneralFields:Ma,AdvancedFields:La,FieldWrapper:ga,FieldSettingsWrapper:Za,ValidationBlockMessage:ya,ValidationToggleGroup:Ea,AdvancedInspectorControl:wa,AttributeHelp:va}=JetFBComponents,{useIsAdvancedValidation:_a,useUniqueNameOnDuplicate:ka}=JetFBHooks,{__:ja}=wp.i18n,{useBlockProps:xa,InspectorControls:Fa}=wp.blockEditor,{SelectControl:Ba,ToggleControl:Aa,FormTokenField:Pa,TextControl:Sa,__experimentalNumberControl:Na,__experimentalInputControl:Ia,PanelBody:Ta}=wp.components;let{NumberControl:Oa,InputControl:Ja}=wp.components;void 0===Oa&&(Oa=Na),void 0===Ja&&(Ja=Ia);const Ra=window.jetFormMediaFieldData,qa=JSON.parse('{"apiVersion":3,"name":"jet-forms/media-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","media","image","file"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Media Field","icon":"\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{"messages":{"max_size":"Maximum file size: %max_size%"}}},"allowed_user_cap":{"type":"string","default":""},"insert_attachment":{"type":"boolean","default":false},"value_format":{"type":"string","default":""},"delete_uploaded_attachment":{"type":"boolean","default":false},"max_files":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max_size":{"type":["number","string"],"default":"","jfb":{"rich":true}},"allowed_mimes":{"type":"array","default":[]},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Da}=wp.i18n,{createBlock:za}=wp.blocks,{name:Ua,icon:Ga=""}=qa,Wa={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ga}}),description:Da("Gives users the opportunity to upload media files to your website, e.g., users photos or images of the product for sale.","jet-form-builder"),edit:function(e){var C;const t=xa(),l=_a();ka();const{attributes:r,setAttributes:n,isSelected:a,editProps:{uniqKey:i,attrHelp:o}}=e,s=!r.allowed_user_cap,c=["id","ids","both"],d=r.insert_attachment&&c.includes(r.value_format);return r.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},ha):[(0,h.createElement)(ba,{key:i("ToolBarFields"),...e}),a&&(0,h.createElement)(Fa,{key:i("InspectorControls")},(0,h.createElement)(Ma,null),(0,h.createElement)(Za,{...e},(0,h.createElement)("div",{className:["jet-form-builder__user-access-control",s?"jet-form-builder__user-access-control--error":""].filter(Boolean).join(" ")},(0,h.createElement)(Ba,{key:"allowed_user_cap",label:ja("User access","jet-form-builder"),labelPosition:"top",value:r.allowed_user_cap,onChange:e=>{n({allowed_user_cap:e})},options:Va,required:!0,help:s?ja("Please select who is allowed to upload files.","jet-form-builder"):void 0})),"any_user"!==r.allowed_user_cap&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Aa,{key:"insert_attachment",label:ja("Insert attachment","jet-form-builder"),checked:r.insert_attachment,help:o("insert_attachment"),onChange:e=>{const C=Boolean(e);n({insert_attachment:C,delete_uploaded_attachment:!!C&&r.delete_uploaded_attachment})}}),r.insert_attachment&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ba,{key:"value_format",label:ja("Field value","jet-form-builder"),labelPosition:"top",value:r.value_format,onChange:e=>{n({value_format:e,delete_uploaded_attachment:!!c.includes(e)&&r.delete_uploaded_attachment})},options:Ha,help:ja("If you're using this field for an ACF Gallery, always select **Array of attachment IDs**. For JetEngine, match the format used in the corresponding JetEngine meta field.","jet-form-builder")}),d&&(0,h.createElement)(Aa,{key:"delete_uploaded_attachment",label:ja("Delete removed attachments","jet-form-builder"),checked:r.delete_uploaded_attachment,help:ja("Permanently deletes old attachments from the Media Library after the form is submitted. Enable only if these files are not used anywhere else.","jet-form-builder"),onChange:e=>{n({delete_uploaded_attachment:Boolean(e)})}}))),(0,h.createElement)(wa,{value:r.max_files,label:ja("Maximum allowed files to upload","jet-form-builder"),onChangePreset:e=>n({max_files:e})},({instanceId:e})=>(0,h.createElement)(Sa,{id:e,className:"jet-fb m-unset",value:r.max_files,onChange:e=>n({max_files:e})})),(0,h.createElement)(va,{name:"max_files"},ja("If not set allow to upload 1 file.","jet-form-builder")),(0,h.createElement)(wa,{value:r.max_size,label:ja("Maximum size in Mb","jet-form-builder"),onChangePreset:e=>n({max_size:e})},({instanceId:e})=>(0,h.createElement)(Sa,{id:e,className:"jet-fb m-unset",value:r.max_size,onChange:e=>n({max_size:e})})),(0,h.createElement)(va,{name:"max_size"}),(0,h.createElement)(Sa,{label:ja("Maximum file size message","jet-form-builder"),value:null!==(C=r?.validation?.messages?.max_size)&&void 0!==C?C:"Maximum file size: %max_size%",onChange:e=>{n({validation:{messages:{max_size:e}}})},help:ja("Use the %max_size% macro to display the maximum allowed file size","jet-form-builder")}),(0,h.createElement)(Pa,{key:"allowed_mimes",value:r.allowed_mimes,label:ja("Allow MIME types","jet-form-builder"),suggestions:Ra.mime_types,onChange:e=>n({allowed_mimes:e}),tokenizeOnSpace:!0})),(0,h.createElement)(Ta,{title:ja("Validation","jet-form-builder")},(0,h.createElement)(Ea,null),l&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ya,{name:"max_files"}),(0,h.createElement)(ya,{name:"file_max_size"}),Boolean(r.allowed_mimes.length)&&(0,h.createElement)(ya,{name:"file_ext"}))),(0,h.createElement)(La,{key:i("AdvancedFields"),...e})),(0,h.createElement)("div",{...t,key:i("viewBlock")},(0,h.createElement)(ga,{key:i("FieldWrapper"),...e},(0,h.createElement)(Ja,{key:i("place_holder_block_new"),type:"file",className:"jet-form-builder__field-preview",disabled:!0})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>za("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>za(Ua,{...e}),priority:0}]}},Ka=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M23.8115 49.5469V59.5H22.4854L17.4746 51.8232V59.5H16.1553V49.5469H17.4746L22.5059 57.2441V49.5469H23.8115ZM30.4834 57.791V52.1035H31.7549V59.5H30.5449L30.4834 57.791ZM30.7227 56.2324L31.249 56.2188C31.249 56.7109 31.1966 57.1667 31.0918 57.5859C30.9915 58.0007 30.8275 58.3607 30.5996 58.666C30.3717 58.9714 30.0732 59.2106 29.7041 59.3838C29.335 59.5524 28.8861 59.6367 28.3574 59.6367C27.9974 59.6367 27.667 59.5843 27.3662 59.4795C27.07 59.3747 26.8148 59.2129 26.6006 58.9941C26.3864 58.7754 26.2201 58.4906 26.1016 58.1396C25.9876 57.7887 25.9307 57.3672 25.9307 56.875V52.1035H27.1953V56.8887C27.1953 57.2214 27.2318 57.4971 27.3047 57.7158C27.3822 57.93 27.4847 58.1009 27.6123 58.2285C27.7445 58.3516 27.8903 58.4382 28.0498 58.4883C28.2139 58.5384 28.3825 58.5635 28.5557 58.5635C29.0934 58.5635 29.5195 58.4609 29.834 58.2559C30.1484 58.0462 30.374 57.766 30.5107 57.415C30.652 57.0596 30.7227 56.6654 30.7227 56.2324ZM34.9404 53.5732V59.5H33.6689V52.1035H34.8721L34.9404 53.5732ZM34.6807 55.5215L34.0928 55.501C34.0973 54.9951 34.1634 54.528 34.291 54.0996C34.4186 53.6667 34.6077 53.2907 34.8584 52.9717C35.109 52.6527 35.4212 52.4066 35.7949 52.2334C36.1686 52.0557 36.6016 51.9668 37.0938 51.9668C37.4401 51.9668 37.7591 52.0169 38.0508 52.1172C38.3424 52.2129 38.5954 52.3656 38.8096 52.5752C39.0238 52.7848 39.1901 53.0537 39.3086 53.3818C39.4271 53.71 39.4863 54.1064 39.4863 54.5713V59.5H38.2217V54.6328C38.2217 54.2454 38.1556 53.9355 38.0234 53.7031C37.8958 53.4707 37.7135 53.3021 37.4766 53.1973C37.2396 53.0879 36.9616 53.0332 36.6426 53.0332C36.2689 53.0332 35.9567 53.0993 35.7061 53.2314C35.4554 53.3636 35.2549 53.5459 35.1045 53.7783C34.9541 54.0107 34.8447 54.2773 34.7764 54.5781C34.7126 54.8743 34.6807 55.1888 34.6807 55.5215ZM39.4727 54.8242L38.625 55.084C38.6296 54.6784 38.6956 54.2887 38.8232 53.915C38.9554 53.5413 39.1445 53.2087 39.3906 52.917C39.6413 52.6253 39.9489 52.3952 40.3135 52.2266C40.6781 52.0534 41.0951 51.9668 41.5645 51.9668C41.9609 51.9668 42.3118 52.0192 42.6172 52.124C42.9271 52.2288 43.1868 52.3906 43.3965 52.6094C43.6107 52.8236 43.7725 53.0993 43.8818 53.4365C43.9912 53.7738 44.0459 54.1748 44.0459 54.6396V59.5H42.7744V54.626C42.7744 54.2113 42.7083 53.89 42.5762 53.6621C42.4486 53.4297 42.2663 53.2679 42.0293 53.1768C41.7969 53.0811 41.5189 53.0332 41.1953 53.0332C40.9173 53.0332 40.6712 53.0811 40.457 53.1768C40.2428 53.2725 40.0628 53.4046 39.917 53.5732C39.7712 53.7373 39.6595 53.9264 39.582 54.1406C39.5091 54.3548 39.4727 54.5827 39.4727 54.8242ZM45.9531 49H47.2246V58.0645L47.1152 59.5H45.9531V49ZM52.2217 55.7402V55.8838C52.2217 56.4215 52.1579 56.9206 52.0303 57.3809C51.9027 57.8366 51.7158 58.2331 51.4697 58.5703C51.2236 58.9076 50.9229 59.1696 50.5674 59.3564C50.2119 59.5433 49.804 59.6367 49.3438 59.6367C48.8743 59.6367 48.4619 59.557 48.1064 59.3975C47.7555 59.2334 47.4593 58.9987 47.2178 58.6934C46.9762 58.388 46.7826 58.0189 46.6367 57.5859C46.4954 57.153 46.3975 56.6654 46.3428 56.123V55.4941C46.3975 54.9473 46.4954 54.4574 46.6367 54.0244C46.7826 53.5915 46.9762 53.2223 47.2178 52.917C47.4593 52.6071 47.7555 52.3724 48.1064 52.2129C48.4574 52.0488 48.8652 51.9668 49.3301 51.9668C49.7949 51.9668 50.2074 52.0579 50.5674 52.2402C50.9274 52.418 51.2282 52.6732 51.4697 53.0059C51.7158 53.3385 51.9027 53.7373 52.0303 54.2021C52.1579 54.6624 52.2217 55.1751 52.2217 55.7402ZM50.9502 55.8838V55.7402C50.9502 55.3711 50.916 55.0247 50.8477 54.7012C50.7793 54.373 50.6699 54.0859 50.5195 53.8398C50.3691 53.5892 50.1709 53.3932 49.9248 53.252C49.6787 53.1061 49.3757 53.0332 49.0156 53.0332C48.6966 53.0332 48.4186 53.0879 48.1816 53.1973C47.9492 53.3066 47.751 53.4548 47.5869 53.6416C47.4229 53.8239 47.2884 54.0335 47.1836 54.2705C47.0833 54.5029 47.0081 54.7445 46.958 54.9951V56.6426C47.0309 56.9616 47.1494 57.2692 47.3135 57.5654C47.4821 57.8571 47.7054 58.0964 47.9834 58.2832C48.266 58.4701 48.6146 58.5635 49.0293 58.5635C49.3711 58.5635 49.6628 58.4951 49.9043 58.3584C50.1504 58.2171 50.3486 58.0234 50.499 57.7773C50.654 57.5312 50.7679 57.2464 50.8408 56.9229C50.9137 56.5993 50.9502 56.2529 50.9502 55.8838ZM56.8906 59.6367C56.3757 59.6367 55.9085 59.5501 55.4893 59.377C55.0745 59.1992 54.7168 58.9508 54.416 58.6318C54.1198 58.3128 53.8919 57.9346 53.7324 57.4971C53.5729 57.0596 53.4932 56.5811 53.4932 56.0615V55.7744C53.4932 55.1729 53.582 54.6374 53.7598 54.168C53.9375 53.694 54.179 53.293 54.4844 52.9648C54.7897 52.6367 55.1361 52.3883 55.5234 52.2197C55.9108 52.0511 56.3118 51.9668 56.7266 51.9668C57.2552 51.9668 57.7109 52.0579 58.0938 52.2402C58.4811 52.4225 58.7979 52.6777 59.0439 53.0059C59.29 53.3294 59.4723 53.7122 59.5908 54.1543C59.7093 54.5918 59.7686 55.0703 59.7686 55.5898V56.1572H54.2451V55.125H58.5039V55.0293C58.4857 54.7012 58.4173 54.3822 58.2988 54.0723C58.1849 53.7624 58.0026 53.5072 57.752 53.3066C57.5013 53.1061 57.1595 53.0059 56.7266 53.0059C56.4395 53.0059 56.1751 53.0674 55.9336 53.1904C55.6921 53.3089 55.4847 53.4867 55.3115 53.7236C55.1383 53.9606 55.0039 54.25 54.9082 54.5918C54.8125 54.9336 54.7646 55.3278 54.7646 55.7744V56.0615C54.7646 56.4124 54.8125 56.7428 54.9082 57.0527C55.0085 57.3581 55.152 57.627 55.3389 57.8594C55.5303 58.0918 55.7604 58.2741 56.0293 58.4062C56.3027 58.5384 56.6126 58.6045 56.959 58.6045C57.4056 58.6045 57.7839 58.5133 58.0938 58.3311C58.4036 58.1488 58.6748 57.9049 58.9072 57.5996L59.6729 58.208C59.5133 58.4495 59.3105 58.6797 59.0645 58.8984C58.8184 59.1172 58.5153 59.2949 58.1553 59.4316C57.7998 59.5684 57.3783 59.6367 56.8906 59.6367ZM62.5098 53.2656V59.5H61.2451V52.1035H62.4756L62.5098 53.2656ZM64.8203 52.0625L64.8135 53.2383C64.7087 53.2155 64.6084 53.2018 64.5127 53.1973C64.4215 53.1882 64.3167 53.1836 64.1982 53.1836C63.9066 53.1836 63.6491 53.2292 63.4258 53.3203C63.2025 53.4115 63.0133 53.5391 62.8584 53.7031C62.7035 53.8672 62.5804 54.0632 62.4893 54.291C62.4027 54.5143 62.3457 54.7604 62.3184 55.0293L61.9629 55.2344C61.9629 54.7878 62.0062 54.3685 62.0928 53.9766C62.1839 53.5846 62.3229 53.2383 62.5098 52.9375C62.6966 52.6322 62.9336 52.3952 63.2207 52.2266C63.5124 52.0534 63.8587 51.9668 64.2598 51.9668C64.3509 51.9668 64.4557 51.9782 64.5742 52.001C64.6927 52.0192 64.7747 52.0397 64.8203 52.0625ZM69.127 55.8838V55.7266C69.127 55.1934 69.2044 54.6989 69.3594 54.2432C69.5143 53.7829 69.7376 53.3841 70.0293 53.0469C70.321 52.7051 70.6742 52.4408 71.0889 52.2539C71.5036 52.0625 71.9684 51.9668 72.4834 51.9668C73.0029 51.9668 73.4701 52.0625 73.8848 52.2539C74.304 52.4408 74.6595 52.7051 74.9512 53.0469C75.2474 53.3841 75.473 53.7829 75.6279 54.2432C75.7829 54.6989 75.8604 55.1934 75.8604 55.7266V55.8838C75.8604 56.417 75.7829 56.9115 75.6279 57.3672C75.473 57.8229 75.2474 58.2217 74.9512 58.5635C74.6595 58.9007 74.3063 59.165 73.8916 59.3564C73.4814 59.5433 73.0166 59.6367 72.4971 59.6367C71.9775 59.6367 71.5104 59.5433 71.0957 59.3564C70.681 59.165 70.3255 58.9007 70.0293 58.5635C69.7376 58.2217 69.5143 57.8229 69.3594 57.3672C69.2044 56.9115 69.127 56.417 69.127 55.8838ZM70.3916 55.7266V55.8838C70.3916 56.2529 70.4349 56.6016 70.5215 56.9297C70.6081 57.2533 70.738 57.5404 70.9111 57.791C71.0889 58.0417 71.3099 58.2399 71.5742 58.3857C71.8385 58.527 72.1462 58.5977 72.4971 58.5977C72.8434 58.5977 73.1465 58.527 73.4062 58.3857C73.6706 58.2399 73.8893 58.0417 74.0625 57.791C74.2357 57.5404 74.3656 57.2533 74.4521 56.9297C74.5433 56.6016 74.5889 56.2529 74.5889 55.8838V55.7266C74.5889 55.362 74.5433 55.0179 74.4521 54.6943C74.3656 54.3662 74.2334 54.0768 74.0557 53.8262C73.8825 53.571 73.6637 53.3704 73.3994 53.2246C73.1396 53.0788 72.8343 53.0059 72.4834 53.0059C72.137 53.0059 71.8317 53.0788 71.5674 53.2246C71.3076 53.3704 71.0889 53.571 70.9111 53.8262C70.738 54.0768 70.6081 54.3662 70.5215 54.6943C70.4349 55.0179 70.3916 55.362 70.3916 55.7266ZM79.333 59.5H78.0684V51.3242C78.0684 50.791 78.1641 50.3421 78.3555 49.9775C78.5514 49.6084 78.8317 49.3304 79.1963 49.1436C79.5609 48.9521 79.9938 48.8564 80.4951 48.8564C80.641 48.8564 80.7868 48.8656 80.9326 48.8838C81.083 48.902 81.2288 48.9294 81.3701 48.9658L81.3018 49.998C81.2061 49.9753 81.0967 49.9593 80.9736 49.9502C80.8551 49.9411 80.7367 49.9365 80.6182 49.9365C80.3493 49.9365 80.1169 49.9912 79.9209 50.1006C79.7295 50.2054 79.5837 50.3604 79.4834 50.5654C79.3831 50.7705 79.333 51.0234 79.333 51.3242V59.5ZM80.9053 52.1035V53.0742H76.8994V52.1035H80.9053ZM90.5781 52.1035H91.7266V59.3428C91.7266 59.9945 91.5944 60.5505 91.3301 61.0107C91.0658 61.471 90.6966 61.8197 90.2227 62.0566C89.7533 62.2982 89.2109 62.4189 88.5957 62.4189C88.3405 62.4189 88.0397 62.3779 87.6934 62.2959C87.3516 62.2184 87.0143 62.084 86.6816 61.8926C86.3535 61.7057 86.0778 61.4528 85.8545 61.1338L86.5176 60.3818C86.8275 60.7555 87.151 61.0153 87.4883 61.1611C87.8301 61.307 88.1673 61.3799 88.5 61.3799C88.901 61.3799 89.2474 61.3047 89.5391 61.1543C89.8307 61.0039 90.0563 60.7806 90.2158 60.4844C90.3799 60.1927 90.4619 59.8327 90.4619 59.4043V53.7305L90.5781 52.1035ZM85.4854 55.8838V55.7402C85.4854 55.1751 85.5514 54.6624 85.6836 54.2021C85.8203 53.7373 86.014 53.3385 86.2646 53.0059C86.5199 52.6732 86.8275 52.418 87.1875 52.2402C87.5475 52.0579 87.9531 51.9668 88.4043 51.9668C88.8691 51.9668 89.2747 52.0488 89.6211 52.2129C89.972 52.3724 90.2682 52.6071 90.5098 52.917C90.7559 53.2223 90.9495 53.5915 91.0908 54.0244C91.2321 54.4574 91.3301 54.9473 91.3848 55.4941V56.123C91.3346 56.6654 91.2367 57.153 91.0908 57.5859C90.9495 58.0189 90.7559 58.388 90.5098 58.6934C90.2682 58.9987 89.972 59.2334 89.6211 59.3975C89.2702 59.557 88.86 59.6367 88.3906 59.6367C87.9486 59.6367 87.5475 59.5433 87.1875 59.3564C86.832 59.1696 86.5267 58.9076 86.2715 58.5703C86.0163 58.2331 85.8203 57.8366 85.6836 57.3809C85.5514 56.9206 85.4854 56.4215 85.4854 55.8838ZM86.75 55.7402V55.8838C86.75 56.2529 86.7865 56.5993 86.8594 56.9229C86.9368 57.2464 87.0531 57.5312 87.208 57.7773C87.3675 58.0234 87.5703 58.2171 87.8164 58.3584C88.0625 58.4951 88.3564 58.5635 88.6982 58.5635C89.1175 58.5635 89.4639 58.4746 89.7373 58.2969C90.0107 58.1191 90.2272 57.8844 90.3867 57.5928C90.5508 57.3011 90.6784 56.9844 90.7695 56.6426V54.9951C90.7194 54.7445 90.6419 54.5029 90.5371 54.2705C90.4368 54.0335 90.3047 53.8239 90.1406 53.6416C89.9811 53.4548 89.7829 53.3066 89.5459 53.1973C89.3089 53.0879 89.0309 53.0332 88.7119 53.0332C88.3656 53.0332 88.0671 53.1061 87.8164 53.252C87.5703 53.3932 87.3675 53.5892 87.208 53.8398C87.0531 54.0859 86.9368 54.373 86.8594 54.7012C86.7865 55.0247 86.75 55.3711 86.75 55.7402ZM98.1729 57.791V52.1035H99.4443V59.5H98.2344L98.1729 57.791ZM98.4121 56.2324L98.9385 56.2188C98.9385 56.7109 98.8861 57.1667 98.7812 57.5859C98.681 58.0007 98.5169 58.3607 98.2891 58.666C98.0612 58.9714 97.7627 59.2106 97.3936 59.3838C97.0244 59.5524 96.5755 59.6367 96.0469 59.6367C95.6868 59.6367 95.3564 59.5843 95.0557 59.4795C94.7594 59.3747 94.5042 59.2129 94.29 58.9941C94.0758 58.7754 93.9095 58.4906 93.791 58.1396C93.6771 57.7887 93.6201 57.3672 93.6201 56.875V52.1035H94.8848V56.8887C94.8848 57.2214 94.9212 57.4971 94.9941 57.7158C95.0716 57.93 95.1742 58.1009 95.3018 58.2285C95.4339 58.3516 95.5798 58.4382 95.7393 58.4883C95.9033 58.5384 96.0719 58.5635 96.2451 58.5635C96.7829 58.5635 97.209 58.4609 97.5234 58.2559C97.8379 58.0462 98.0635 57.766 98.2002 57.415C98.3415 57.0596 98.4121 56.6654 98.4121 56.2324ZM104.441 59.6367C103.926 59.6367 103.459 59.5501 103.04 59.377C102.625 59.1992 102.268 58.9508 101.967 58.6318C101.671 58.3128 101.443 57.9346 101.283 57.4971C101.124 57.0596 101.044 56.5811 101.044 56.0615V55.7744C101.044 55.1729 101.133 54.6374 101.311 54.168C101.488 53.694 101.73 53.293 102.035 52.9648C102.34 52.6367 102.687 52.3883 103.074 52.2197C103.462 52.0511 103.863 51.9668 104.277 51.9668C104.806 51.9668 105.262 52.0579 105.645 52.2402C106.032 52.4225 106.349 52.6777 106.595 53.0059C106.841 53.3294 107.023 53.7122 107.142 54.1543C107.26 54.5918 107.319 55.0703 107.319 55.5898V56.1572H101.796V55.125H106.055V55.0293C106.036 54.7012 105.968 54.3822 105.85 54.0723C105.736 53.7624 105.553 53.5072 105.303 53.3066C105.052 53.1061 104.71 53.0059 104.277 53.0059C103.99 53.0059 103.726 53.0674 103.484 53.1904C103.243 53.3089 103.035 53.4867 102.862 53.7236C102.689 53.9606 102.555 54.25 102.459 54.5918C102.363 54.9336 102.315 55.3278 102.315 55.7744V56.0615C102.315 56.4124 102.363 56.7428 102.459 57.0527C102.559 57.3581 102.703 57.627 102.89 57.8594C103.081 58.0918 103.311 58.2741 103.58 58.4062C103.854 58.5384 104.163 58.6045 104.51 58.6045C104.956 58.6045 105.335 58.5133 105.645 58.3311C105.954 58.1488 106.226 57.9049 106.458 57.5996L107.224 58.208C107.064 58.4495 106.861 58.6797 106.615 58.8984C106.369 59.1172 106.066 59.2949 105.706 59.4316C105.351 59.5684 104.929 59.6367 104.441 59.6367ZM113.103 57.5381C113.103 57.3558 113.062 57.1872 112.979 57.0322C112.902 56.8727 112.74 56.7292 112.494 56.6016C112.253 56.4694 111.888 56.3555 111.4 56.2598C110.99 56.1732 110.619 56.0706 110.286 55.9521C109.958 55.8337 109.678 55.6901 109.445 55.5215C109.217 55.3529 109.042 55.1546 108.919 54.9268C108.796 54.6989 108.734 54.4323 108.734 54.127C108.734 53.8353 108.798 53.5596 108.926 53.2998C109.058 53.04 109.243 52.8099 109.479 52.6094C109.721 52.4089 110.01 52.2516 110.348 52.1377C110.685 52.0238 111.061 51.9668 111.476 51.9668C112.068 51.9668 112.574 52.0716 112.993 52.2812C113.412 52.4909 113.734 52.7712 113.957 53.1221C114.18 53.4684 114.292 53.8535 114.292 54.2773H113.027C113.027 54.0723 112.966 53.874 112.843 53.6826C112.724 53.4867 112.549 53.3249 112.316 53.1973C112.089 53.0697 111.808 53.0059 111.476 53.0059C111.125 53.0059 110.84 53.0605 110.621 53.1699C110.407 53.2747 110.25 53.4092 110.149 53.5732C110.054 53.7373 110.006 53.9105 110.006 54.0928C110.006 54.2295 110.029 54.3525 110.074 54.4619C110.124 54.5667 110.211 54.6647 110.334 54.7559C110.457 54.8424 110.63 54.9245 110.854 55.002C111.077 55.0794 111.362 55.1569 111.708 55.2344C112.314 55.3711 112.813 55.5352 113.205 55.7266C113.597 55.918 113.889 56.1527 114.08 56.4307C114.271 56.7087 114.367 57.0459 114.367 57.4424C114.367 57.766 114.299 58.0622 114.162 58.3311C114.03 58.5999 113.836 58.8324 113.581 59.0283C113.33 59.2197 113.03 59.3701 112.679 59.4795C112.332 59.5843 111.943 59.6367 111.51 59.6367C110.858 59.6367 110.307 59.5205 109.855 59.2881C109.404 59.0557 109.062 58.7549 108.83 58.3857C108.598 58.0166 108.481 57.627 108.481 57.2168H109.753C109.771 57.5632 109.871 57.8389 110.054 58.0439C110.236 58.2445 110.459 58.388 110.724 58.4746C110.988 58.5566 111.25 58.5977 111.51 58.5977C111.856 58.5977 112.146 58.5521 112.378 58.4609C112.615 58.3698 112.795 58.2445 112.918 58.085C113.041 57.9255 113.103 57.7432 113.103 57.5381ZM119.125 52.1035V53.0742H115.126V52.1035H119.125ZM116.479 50.3057H117.744V57.668C117.744 57.9186 117.783 58.1077 117.86 58.2354C117.938 58.363 118.038 58.4473 118.161 58.4883C118.284 58.5293 118.416 58.5498 118.558 58.5498C118.662 58.5498 118.772 58.5407 118.886 58.5225C119.004 58.4997 119.093 58.4814 119.152 58.4678L119.159 59.5C119.059 59.5319 118.927 59.5615 118.763 59.5889C118.603 59.6208 118.41 59.6367 118.182 59.6367C117.872 59.6367 117.587 59.5752 117.327 59.4521C117.067 59.3291 116.86 59.124 116.705 58.8369C116.555 58.5452 116.479 58.1533 116.479 57.6611V50.3057ZM124.915 57.5381C124.915 57.3558 124.874 57.1872 124.792 57.0322C124.715 56.8727 124.553 56.7292 124.307 56.6016C124.065 56.4694 123.701 56.3555 123.213 56.2598C122.803 56.1732 122.431 56.0706 122.099 55.9521C121.771 55.8337 121.49 55.6901 121.258 55.5215C121.03 55.3529 120.854 55.1546 120.731 54.9268C120.608 54.6989 120.547 54.4323 120.547 54.127C120.547 53.8353 120.611 53.5596 120.738 53.2998C120.87 53.04 121.055 52.8099 121.292 52.6094C121.534 52.4089 121.823 52.2516 122.16 52.1377C122.497 52.0238 122.873 51.9668 123.288 51.9668C123.881 51.9668 124.386 52.0716 124.806 52.2812C125.225 52.4909 125.546 52.7712 125.77 53.1221C125.993 53.4684 126.104 53.8535 126.104 54.2773H124.84C124.84 54.0723 124.778 53.874 124.655 53.6826C124.537 53.4867 124.361 53.3249 124.129 53.1973C123.901 53.0697 123.621 53.0059 123.288 53.0059C122.937 53.0059 122.652 53.0605 122.434 53.1699C122.219 53.2747 122.062 53.4092 121.962 53.5732C121.866 53.7373 121.818 53.9105 121.818 54.0928C121.818 54.2295 121.841 54.3525 121.887 54.4619C121.937 54.5667 122.023 54.6647 122.146 54.7559C122.27 54.8424 122.443 54.9245 122.666 55.002C122.889 55.0794 123.174 55.1569 123.521 55.2344C124.127 55.3711 124.626 55.5352 125.018 55.7266C125.41 55.918 125.701 56.1527 125.893 56.4307C126.084 56.7087 126.18 57.0459 126.18 57.4424C126.18 57.766 126.111 58.0622 125.975 58.3311C125.842 58.5999 125.649 58.8324 125.394 59.0283C125.143 59.2197 124.842 59.3701 124.491 59.4795C124.145 59.5843 123.755 59.6367 123.322 59.6367C122.671 59.6367 122.119 59.5205 121.668 59.2881C121.217 59.0557 120.875 58.7549 120.643 58.3857C120.41 58.0166 120.294 57.627 120.294 57.2168H121.565C121.584 57.5632 121.684 57.8389 121.866 58.0439C122.049 58.2445 122.272 58.388 122.536 58.4746C122.8 58.5566 123.062 58.5977 123.322 58.5977C123.669 58.5977 123.958 58.5521 124.19 58.4609C124.427 58.3698 124.607 58.2445 124.73 58.085C124.854 57.9255 124.915 57.7432 124.915 57.5381Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"68.5",width:"265",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M27.4819 81.8013H28.3198C28.7303 81.8013 29.0688 81.7336 29.3354 81.5981C29.6063 81.4585 29.8073 81.2702 29.9385 81.0332C30.0739 80.792 30.1416 80.5212 30.1416 80.2207C30.1416 79.8652 30.0824 79.5669 29.9639 79.3257C29.8454 79.0845 29.6676 78.9025 29.4307 78.7798C29.1937 78.6571 28.8932 78.5957 28.5293 78.5957C28.1992 78.5957 27.9072 78.6613 27.6533 78.7925C27.4036 78.9194 27.2069 79.1014 27.063 79.3384C26.9233 79.5754 26.8535 79.8547 26.8535 80.1763H25.6792C25.6792 79.7065 25.7977 79.2791 26.0347 78.894C26.2716 78.509 26.6038 78.2021 27.0312 77.9736C27.4629 77.7451 27.9622 77.6309 28.5293 77.6309C29.0879 77.6309 29.5767 77.7303 29.9956 77.9292C30.4146 78.1239 30.7404 78.4159 30.9731 78.8052C31.2059 79.1903 31.3223 79.6706 31.3223 80.2461C31.3223 80.4788 31.2673 80.7285 31.1572 80.9951C31.0514 81.2575 30.8843 81.5029 30.6558 81.7314C30.4315 81.96 30.1395 82.1483 29.7798 82.2964C29.4201 82.4403 28.9884 82.5122 28.4849 82.5122H27.4819V81.8013ZM27.4819 82.7661V82.0615H28.4849C29.0731 82.0615 29.5597 82.1313 29.9448 82.271C30.3299 82.4106 30.6325 82.5968 30.8525 82.8296C31.0768 83.0623 31.2334 83.3184 31.3223 83.5977C31.4154 83.8727 31.4619 84.1478 31.4619 84.4229C31.4619 84.8545 31.3879 85.2375 31.2397 85.5718C31.0959 85.9061 30.8906 86.1896 30.624 86.4224C30.3617 86.6551 30.0527 86.8307 29.6973 86.9492C29.3418 87.0677 28.9546 87.127 28.5356 87.127C28.1336 87.127 27.7549 87.0698 27.3994 86.9556C27.0482 86.8413 26.7371 86.6763 26.4663 86.4604C26.1955 86.2404 25.9839 85.9717 25.8315 85.6543C25.6792 85.3327 25.603 84.9666 25.603 84.5562H26.7773C26.7773 84.8778 26.8472 85.1592 26.9868 85.4004C27.1307 85.6416 27.3338 85.8299 27.5962 85.9653C27.8628 86.0965 28.1759 86.1621 28.5356 86.1621C28.8953 86.1621 29.2043 86.1007 29.4624 85.978C29.7248 85.8511 29.9258 85.6606 30.0654 85.4067C30.2093 85.1528 30.2812 84.8333 30.2812 84.4482C30.2812 84.0632 30.2008 83.7479 30.04 83.5024C29.8792 83.2528 29.6507 83.0687 29.3545 82.9502C29.0625 82.8275 28.7176 82.7661 28.3198 82.7661H27.4819Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M261.761 85.7886L264.773 91.2693L267.784 85.7886H261.761Z",fill:"#CBD5E1"}),(0,h.createElement)("path",{d:"M267.784 79.2117L264.773 73.7309L261.761 79.2117L267.784 79.2117Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"16",y:"68.5",width:"265",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),{ToolBarFields:$a,BlockLabel:Ya,BlockDescription:Xa,BlockAdvancedValue:Qa,BlockName:ei,AdvancedFields:Ci,FieldWrapper:ti,FieldSettingsWrapper:li,ValidationToggleGroup:ri,ValidationBlockMessage:ni,AdvancedInspectorControl:ai,AttributeHelp:ii}=JetFBComponents,{useIsAdvancedValidation:oi,useUniqueNameOnDuplicate:si}=JetFBHooks,{__:ci}=wp.i18n,{InspectorControls:di,useBlockProps:mi}=wp.blockEditor,{PanelBody:ui,TextControl:pi,__experimentalInputControl:fi,__experimentalNumberControl:Vi}=wp.components;let{InputControl:Hi,NumberControl:hi}=wp.components;void 0===Hi&&(Hi=fi),void 0===hi&&(hi=Vi);const bi=JSON.parse('{"apiVersion":3,"name":"jet-forms/number-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","media","image","file"],"textdomain":"jet-form-builder","title":"Number Field","icon":"\\n\\n\\n\\n\\n","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max":{"type":["number","string"],"default":"","jfb":{"rich":true}},"step":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Mi}=wp.i18n,{createBlock:Li}=wp.blocks,{name:gi,icon:Zi=""}=bi,yi={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Zi}}),description:Mi("Make a bar in the form that will be filled with numbers or set a range with the Min/Max Value options for the user to choose from.","jet-form-builder"),edit:function(e){const C=mi(),t=oi();si();const{attributes:l,setAttributes:r,isSelected:n,editProps:{uniqKey:a}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ka):[(0,h.createElement)($a,{key:a("ToolBarFields"),...e}),n&&(0,h.createElement)(di,{key:a("InspectorControls")},(0,h.createElement)(ui,{title:ci("General","jet-form-builder")},(0,h.createElement)(Ya,null),(0,h.createElement)(ei,null),(0,h.createElement)(Xa,null)),(0,h.createElement)(ui,{title:ci("Value","jet-form-builder")},(0,h.createElement)(Qa,null)),(0,h.createElement)(li,{...e},(0,h.createElement)(ai,{value:l.min,label:ci("Min Value","jet-form-builder"),onChangePreset:e=>r({min:e})},({instanceId:e})=>(0,h.createElement)(pi,{id:e,className:"jet-fb m-unset",value:l.min,onChange:e=>r({min:e})})),(0,h.createElement)(ii,{name:"min"}),(0,h.createElement)(ai,{value:l.max,label:ci("Max Value","jet-form-builder"),onChangePreset:e=>r({max:e})},({instanceId:e})=>(0,h.createElement)(pi,{id:e,className:"jet-fb m-unset",value:l.max,onChange:e=>r({max:e})})),(0,h.createElement)(ii,{name:"max"}),(0,h.createElement)(ai,{value:l.step,label:ci("Step","jet-form-builder"),onChangePreset:e=>r({step:e})},({instanceId:e})=>(0,h.createElement)(pi,{id:e,className:"jet-fb m-unset",value:l.step,onChange:e=>r({step:e})})),(0,h.createElement)(ii,{name:"step"})),(0,h.createElement)(ui,{title:ci("Validation","jet-form-builder")},(0,h.createElement)(ri,null),t&&(0,h.createElement)(h.Fragment,null,null!==l.min&&(0,h.createElement)(ni,{name:"number_min"}),null!==l.max&&(0,h.createElement)(ni,{name:"number_max"}),(0,h.createElement)(ni,{name:"empty"}))),(0,h.createElement)(Ci,null)),(0,h.createElement)("div",{...C,key:a("viewBlock")},(0,h.createElement)(ti,{key:a("FieldWrapper"),...e},(0,h.createElement)(hi,{placeholder:l.placeholder,className:"jet-form-builder__field-preview",key:a("place_holder_block"),min:l.min||0,max:l.max||1e3,step:l.step||1})))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Li("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/range-field"],transform:e=>Li(gi,{...e}),priority:0}]}},Ei=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M19.8262 57.0967H17.167V56.0234H19.8262C20.3411 56.0234 20.7581 55.9414 21.0771 55.7773C21.3962 55.6133 21.6286 55.3854 21.7744 55.0938C21.9248 54.8021 22 54.4694 22 54.0957C22 53.7539 21.9248 53.4326 21.7744 53.1318C21.6286 52.8311 21.3962 52.5895 21.0771 52.4072C20.7581 52.2204 20.3411 52.127 19.8262 52.127H17.4746V61H16.1553V51.0469H19.8262C20.5781 51.0469 21.2139 51.1768 21.7334 51.4365C22.2529 51.6963 22.6471 52.0563 22.916 52.5166C23.1849 52.9723 23.3193 53.4941 23.3193 54.082C23.3193 54.7201 23.1849 55.2646 22.916 55.7158C22.6471 56.167 22.2529 56.5111 21.7334 56.748C21.2139 56.9805 20.5781 57.0967 19.8262 57.0967ZM26.0605 54.7656V61H24.7959V53.6035H26.0264L26.0605 54.7656ZM28.3711 53.5625L28.3643 54.7383C28.2594 54.7155 28.1592 54.7018 28.0635 54.6973C27.9723 54.6882 27.8675 54.6836 27.749 54.6836C27.4574 54.6836 27.1999 54.7292 26.9766 54.8203C26.7533 54.9115 26.5641 55.0391 26.4092 55.2031C26.2542 55.3672 26.1312 55.5632 26.04 55.791C25.9535 56.0143 25.8965 56.2604 25.8691 56.5293L25.5137 56.7344C25.5137 56.2878 25.557 55.8685 25.6436 55.4766C25.7347 55.0846 25.8737 54.7383 26.0605 54.4375C26.2474 54.1322 26.4844 53.8952 26.7715 53.7266C27.0632 53.5534 27.4095 53.4668 27.8105 53.4668C27.9017 53.4668 28.0065 53.4782 28.125 53.501C28.2435 53.5192 28.3255 53.5397 28.3711 53.5625ZM30.9141 53.6035V61H29.6426V53.6035H30.9141ZM29.5469 51.6416C29.5469 51.4365 29.6084 51.2633 29.7314 51.1221C29.859 50.9808 30.0459 50.9102 30.292 50.9102C30.5335 50.9102 30.7181 50.9808 30.8457 51.1221C30.9779 51.2633 31.0439 51.4365 31.0439 51.6416C31.0439 51.8376 30.9779 52.0062 30.8457 52.1475C30.7181 52.2842 30.5335 52.3525 30.292 52.3525C30.0459 52.3525 29.859 52.2842 29.7314 52.1475C29.6084 52.0062 29.5469 51.8376 29.5469 51.6416ZM35.9043 60.0977C36.2051 60.0977 36.4831 60.0361 36.7383 59.9131C36.9935 59.79 37.2031 59.6214 37.3672 59.4072C37.5312 59.1885 37.6247 58.9401 37.6475 58.6621H38.8506C38.8278 59.0996 38.6797 59.5075 38.4062 59.8857C38.1374 60.2594 37.7842 60.5625 37.3467 60.7949C36.9092 61.0228 36.4284 61.1367 35.9043 61.1367C35.3483 61.1367 34.863 61.0387 34.4482 60.8428C34.0381 60.6468 33.6963 60.3779 33.4229 60.0361C33.154 59.6943 32.9512 59.3024 32.8145 58.8604C32.6823 58.4137 32.6162 57.9421 32.6162 57.4453V57.1582C32.6162 56.6615 32.6823 56.1921 32.8145 55.75C32.9512 55.3034 33.154 54.9092 33.4229 54.5674C33.6963 54.2256 34.0381 53.9567 34.4482 53.7607C34.863 53.5648 35.3483 53.4668 35.9043 53.4668C36.4831 53.4668 36.9889 53.5853 37.4219 53.8223C37.8548 54.0547 38.1943 54.3737 38.4404 54.7793C38.6911 55.1803 38.8278 55.6361 38.8506 56.1465H37.6475C37.6247 55.8411 37.5381 55.5654 37.3877 55.3193C37.2419 55.0732 37.0413 54.8773 36.7861 54.7314C36.5355 54.5811 36.2415 54.5059 35.9043 54.5059C35.5169 54.5059 35.1911 54.5833 34.9268 54.7383C34.667 54.8887 34.4596 55.0938 34.3047 55.3535C34.1543 55.6087 34.0449 55.8936 33.9766 56.208C33.9128 56.5179 33.8809 56.8346 33.8809 57.1582V57.4453C33.8809 57.7689 33.9128 58.0879 33.9766 58.4023C34.0404 58.7168 34.1475 59.0016 34.2979 59.2568C34.4528 59.512 34.6602 59.7171 34.9199 59.8721C35.1842 60.0225 35.5124 60.0977 35.9043 60.0977ZM43.3418 61.1367C42.8268 61.1367 42.3597 61.0501 41.9404 60.877C41.5257 60.6992 41.168 60.4508 40.8672 60.1318C40.571 59.8128 40.3431 59.4346 40.1836 58.9971C40.0241 58.5596 39.9443 58.0811 39.9443 57.5615V57.2744C39.9443 56.6729 40.0332 56.1374 40.2109 55.668C40.3887 55.194 40.6302 54.793 40.9355 54.4648C41.2409 54.1367 41.5872 53.8883 41.9746 53.7197C42.362 53.5511 42.763 53.4668 43.1777 53.4668C43.7064 53.4668 44.1621 53.5579 44.5449 53.7402C44.9323 53.9225 45.249 54.1777 45.4951 54.5059C45.7412 54.8294 45.9235 55.2122 46.042 55.6543C46.1605 56.0918 46.2197 56.5703 46.2197 57.0898V57.6572H40.6963V56.625H44.9551V56.5293C44.9368 56.2012 44.8685 55.8822 44.75 55.5723C44.6361 55.2624 44.4538 55.0072 44.2031 54.8066C43.9525 54.6061 43.6107 54.5059 43.1777 54.5059C42.8906 54.5059 42.6263 54.5674 42.3848 54.6904C42.1432 54.8089 41.9359 54.9867 41.7627 55.2236C41.5895 55.4606 41.4551 55.75 41.3594 56.0918C41.2637 56.4336 41.2158 56.8278 41.2158 57.2744V57.5615C41.2158 57.9124 41.2637 58.2428 41.3594 58.5527C41.4596 58.8581 41.6032 59.127 41.79 59.3594C41.9814 59.5918 42.2116 59.7741 42.4805 59.9062C42.7539 60.0384 43.0638 60.1045 43.4102 60.1045C43.8568 60.1045 44.235 60.0133 44.5449 59.8311C44.8548 59.6488 45.126 59.4049 45.3584 59.0996L46.124 59.708C45.9645 59.9495 45.7617 60.1797 45.5156 60.3984C45.2695 60.6172 44.9665 60.7949 44.6064 60.9316C44.251 61.0684 43.8294 61.1367 43.3418 61.1367ZM52.4336 55.0254V63.8438H51.1621V53.6035H52.3242L52.4336 55.0254ZM57.417 57.2402V57.3838C57.417 57.9215 57.3532 58.4206 57.2256 58.8809C57.098 59.3366 56.9111 59.7331 56.665 60.0703C56.4235 60.4076 56.125 60.6696 55.7695 60.8564C55.4141 61.0433 55.0062 61.1367 54.5459 61.1367C54.0765 61.1367 53.6618 61.0592 53.3018 60.9043C52.9417 60.7493 52.6364 60.5238 52.3857 60.2275C52.1351 59.9313 51.9346 59.5758 51.7842 59.1611C51.6383 58.7464 51.5381 58.2793 51.4834 57.7598V56.9941C51.5381 56.4473 51.6406 55.9574 51.791 55.5244C51.9414 55.0915 52.1396 54.7223 52.3857 54.417C52.6364 54.1071 52.9395 53.8724 53.2949 53.7129C53.6504 53.5488 54.0605 53.4668 54.5254 53.4668C54.9902 53.4668 55.4027 53.5579 55.7627 53.7402C56.1227 53.918 56.4258 54.1732 56.6719 54.5059C56.918 54.8385 57.1025 55.2373 57.2256 55.7021C57.3532 56.1624 57.417 56.6751 57.417 57.2402ZM56.1455 57.3838V57.2402C56.1455 56.8711 56.1068 56.5247 56.0293 56.2012C55.9518 55.873 55.8311 55.5859 55.667 55.3398C55.5075 55.0892 55.3024 54.8932 55.0518 54.752C54.8011 54.6061 54.5026 54.5332 54.1562 54.5332C53.8372 54.5332 53.5592 54.5879 53.3223 54.6973C53.0898 54.8066 52.8916 54.9548 52.7275 55.1416C52.5635 55.3239 52.429 55.5335 52.3242 55.7705C52.224 56.0029 52.1488 56.2445 52.0986 56.4951V58.2656C52.1898 58.5846 52.3174 58.8854 52.4814 59.168C52.6455 59.446 52.8643 59.6715 53.1377 59.8447C53.4111 60.0133 53.7552 60.0977 54.1699 60.0977C54.5117 60.0977 54.8057 60.027 55.0518 59.8857C55.3024 59.7399 55.5075 59.5417 55.667 59.291C55.8311 59.0404 55.9518 58.7533 56.0293 58.4297C56.1068 58.1016 56.1455 57.7529 56.1455 57.3838ZM62.0996 61.1367C61.5846 61.1367 61.1175 61.0501 60.6982 60.877C60.2835 60.6992 59.9258 60.4508 59.625 60.1318C59.3288 59.8128 59.1009 59.4346 58.9414 58.9971C58.7819 58.5596 58.7021 58.0811 58.7021 57.5615V57.2744C58.7021 56.6729 58.791 56.1374 58.9688 55.668C59.1465 55.194 59.388 54.793 59.6934 54.4648C59.9987 54.1367 60.3451 53.8883 60.7324 53.7197C61.1198 53.5511 61.5208 53.4668 61.9355 53.4668C62.4642 53.4668 62.9199 53.5579 63.3027 53.7402C63.6901 53.9225 64.0068 54.1777 64.2529 54.5059C64.499 54.8294 64.6813 55.2122 64.7998 55.6543C64.9183 56.0918 64.9775 56.5703 64.9775 57.0898V57.6572H59.4541V56.625H63.7129V56.5293C63.6947 56.2012 63.6263 55.8822 63.5078 55.5723C63.3939 55.2624 63.2116 55.0072 62.9609 54.8066C62.7103 54.6061 62.3685 54.5059 61.9355 54.5059C61.6484 54.5059 61.3841 54.5674 61.1426 54.6904C60.901 54.8089 60.6937 54.9867 60.5205 55.2236C60.3473 55.4606 60.2129 55.75 60.1172 56.0918C60.0215 56.4336 59.9736 56.8278 59.9736 57.2744V57.5615C59.9736 57.9124 60.0215 58.2428 60.1172 58.5527C60.2174 58.8581 60.361 59.127 60.5479 59.3594C60.7393 59.5918 60.9694 59.7741 61.2383 59.9062C61.5117 60.0384 61.8216 60.1045 62.168 60.1045C62.6146 60.1045 62.9928 60.0133 63.3027 59.8311C63.6126 59.6488 63.8838 59.4049 64.1162 59.0996L64.8818 59.708C64.7223 59.9495 64.5195 60.1797 64.2734 60.3984C64.0273 60.6172 63.7243 60.7949 63.3643 60.9316C63.0088 61.0684 62.5872 61.1367 62.0996 61.1367ZM67.7188 54.7656V61H66.4541V53.6035H67.6846L67.7188 54.7656ZM70.0293 53.5625L70.0225 54.7383C69.9176 54.7155 69.8174 54.7018 69.7217 54.6973C69.6305 54.6882 69.5257 54.6836 69.4072 54.6836C69.1156 54.6836 68.8581 54.7292 68.6348 54.8203C68.4115 54.9115 68.2223 55.0391 68.0674 55.2031C67.9124 55.3672 67.7894 55.5632 67.6982 55.791C67.6117 56.0143 67.5547 56.2604 67.5273 56.5293L67.1719 56.7344C67.1719 56.2878 67.2152 55.8685 67.3018 55.4766C67.3929 55.0846 67.5319 54.7383 67.7188 54.4375C67.9056 54.1322 68.1426 53.8952 68.4297 53.7266C68.7214 53.5534 69.0677 53.4668 69.4688 53.4668C69.5599 53.4668 69.6647 53.4782 69.7832 53.501C69.9017 53.5192 69.9837 53.5397 70.0293 53.5625ZM75.9355 55.1826V61H74.6709V53.6035H75.8672L75.9355 55.1826ZM75.6348 57.0215L75.1084 57.001C75.113 56.4951 75.1882 56.028 75.334 55.5996C75.4798 55.1667 75.6849 54.7907 75.9492 54.4717C76.2135 54.1527 76.528 53.9066 76.8926 53.7334C77.2617 53.5557 77.6696 53.4668 78.1162 53.4668C78.4808 53.4668 78.8089 53.5169 79.1006 53.6172C79.3923 53.7129 79.6406 53.8678 79.8457 54.082C80.0553 54.2962 80.2148 54.5742 80.3242 54.916C80.4336 55.2533 80.4883 55.6657 80.4883 56.1533V61H79.2168V56.1396C79.2168 55.7523 79.1598 55.4424 79.0459 55.21C78.932 54.973 78.7656 54.8021 78.5469 54.6973C78.3281 54.5879 78.0592 54.5332 77.7402 54.5332C77.4258 54.5332 77.1387 54.5993 76.8789 54.7314C76.6237 54.8636 76.4027 55.0459 76.2158 55.2783C76.0335 55.5107 75.89 55.7773 75.7852 56.0781C75.6849 56.3743 75.6348 56.6888 75.6348 57.0215ZM83.7832 53.6035V61H82.5117V53.6035H83.7832ZM82.416 51.6416C82.416 51.4365 82.4775 51.2633 82.6006 51.1221C82.7282 50.9808 82.915 50.9102 83.1611 50.9102C83.4027 50.9102 83.5872 50.9808 83.7148 51.1221C83.847 51.2633 83.9131 51.4365 83.9131 51.6416C83.9131 51.8376 83.847 52.0062 83.7148 52.1475C83.5872 52.2842 83.4027 52.3525 83.1611 52.3525C82.915 52.3525 82.7282 52.2842 82.6006 52.1475C82.4775 52.0062 82.416 51.8376 82.416 51.6416ZM90.6055 53.6035H91.7539V60.8428C91.7539 61.4945 91.6217 62.0505 91.3574 62.5107C91.0931 62.971 90.724 63.3197 90.25 63.5566C89.7806 63.7982 89.2383 63.9189 88.623 63.9189C88.3678 63.9189 88.0671 63.8779 87.7207 63.7959C87.3789 63.7184 87.0417 63.584 86.709 63.3926C86.3809 63.2057 86.1051 62.9528 85.8818 62.6338L86.5449 61.8818C86.8548 62.2555 87.1784 62.5153 87.5156 62.6611C87.8574 62.807 88.1947 62.8799 88.5273 62.8799C88.9284 62.8799 89.2747 62.8047 89.5664 62.6543C89.8581 62.5039 90.0837 62.2806 90.2432 61.9844C90.4072 61.6927 90.4893 61.3327 90.4893 60.9043V55.2305L90.6055 53.6035ZM85.5127 57.3838V57.2402C85.5127 56.6751 85.5788 56.1624 85.7109 55.7021C85.8477 55.2373 86.0413 54.8385 86.292 54.5059C86.5472 54.1732 86.8548 53.918 87.2148 53.7402C87.5749 53.5579 87.9805 53.4668 88.4316 53.4668C88.8965 53.4668 89.3021 53.5488 89.6484 53.7129C89.9993 53.8724 90.2956 54.1071 90.5371 54.417C90.7832 54.7223 90.9769 55.0915 91.1182 55.5244C91.2594 55.9574 91.3574 56.4473 91.4121 56.9941V57.623C91.362 58.1654 91.264 58.653 91.1182 59.0859C90.9769 59.5189 90.7832 59.888 90.5371 60.1934C90.2956 60.4987 89.9993 60.7334 89.6484 60.8975C89.2975 61.057 88.8874 61.1367 88.418 61.1367C87.9759 61.1367 87.5749 61.0433 87.2148 60.8564C86.8594 60.6696 86.554 60.4076 86.2988 60.0703C86.0436 59.7331 85.8477 59.3366 85.7109 58.8809C85.5788 58.4206 85.5127 57.9215 85.5127 57.3838ZM86.7773 57.2402V57.3838C86.7773 57.7529 86.8138 58.0993 86.8867 58.4229C86.9642 58.7464 87.0804 59.0312 87.2354 59.2773C87.3949 59.5234 87.5977 59.7171 87.8438 59.8584C88.0898 59.9951 88.3838 60.0635 88.7256 60.0635C89.1449 60.0635 89.4912 59.9746 89.7646 59.7969C90.0381 59.6191 90.2546 59.3844 90.4141 59.0928C90.5781 58.8011 90.7057 58.4844 90.7969 58.1426V56.4951C90.7467 56.2445 90.6693 56.0029 90.5645 55.7705C90.4642 55.5335 90.332 55.3239 90.168 55.1416C90.0085 54.9548 89.8102 54.8066 89.5732 54.6973C89.3363 54.5879 89.0583 54.5332 88.7393 54.5332C88.3929 54.5332 88.0944 54.6061 87.8438 54.752C87.5977 54.8932 87.3949 55.0892 87.2354 55.3398C87.0804 55.5859 86.9642 55.873 86.8867 56.2012C86.8138 56.5247 86.7773 56.8711 86.7773 57.2402ZM94.9395 50.5V61H93.6748V50.5H94.9395ZM94.6387 57.0215L94.1123 57.001C94.1169 56.4951 94.1921 56.028 94.3379 55.5996C94.4837 55.1667 94.6888 54.7907 94.9531 54.4717C95.2174 54.1527 95.5319 53.9066 95.8965 53.7334C96.2656 53.5557 96.6735 53.4668 97.1201 53.4668C97.4847 53.4668 97.8128 53.5169 98.1045 53.6172C98.3962 53.7129 98.6445 53.8678 98.8496 54.082C99.0592 54.2962 99.2188 54.5742 99.3281 54.916C99.4375 55.2533 99.4922 55.6657 99.4922 56.1533V61H98.2207V56.1396C98.2207 55.7523 98.1637 55.4424 98.0498 55.21C97.9359 54.973 97.7695 54.8021 97.5508 54.6973C97.332 54.5879 97.0632 54.5332 96.7441 54.5332C96.4297 54.5332 96.1426 54.5993 95.8828 54.7314C95.6276 54.8636 95.4066 55.0459 95.2197 55.2783C95.0374 55.5107 94.8939 55.7773 94.7891 56.0781C94.6888 56.3743 94.6387 56.6888 94.6387 57.0215ZM104.482 53.6035V54.5742H100.483V53.6035H104.482ZM101.837 51.8057H103.102V59.168C103.102 59.4186 103.14 59.6077 103.218 59.7354C103.295 59.863 103.396 59.9473 103.519 59.9883C103.642 60.0293 103.774 60.0498 103.915 60.0498C104.02 60.0498 104.129 60.0407 104.243 60.0225C104.362 59.9997 104.451 59.9814 104.51 59.9678L104.517 61C104.416 61.0319 104.284 61.0615 104.12 61.0889C103.961 61.1208 103.767 61.1367 103.539 61.1367C103.229 61.1367 102.944 61.0752 102.685 60.9521C102.425 60.8291 102.217 60.624 102.062 60.3369C101.912 60.0452 101.837 59.6533 101.837 59.1611V51.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M19.8574 78.4336V80.5186H18.832V78.4336H19.8574ZM19.7344 89.5967V91.4219H18.7158V89.5967H19.7344ZM21.1016 87.4365C21.1016 87.1631 21.04 86.917 20.917 86.6982C20.7939 86.4795 20.5911 86.279 20.3086 86.0967C20.026 85.9144 19.6478 85.7458 19.1738 85.5908C18.5996 85.4131 18.1029 85.1966 17.6836 84.9414C17.2689 84.6862 16.9476 84.3695 16.7197 83.9912C16.4964 83.613 16.3848 83.1549 16.3848 82.6172C16.3848 82.0566 16.5055 81.5736 16.7471 81.168C16.9886 80.7624 17.3304 80.4502 17.7725 80.2314C18.2145 80.0127 18.734 79.9033 19.3311 79.9033C19.7959 79.9033 20.2106 79.974 20.5752 80.1152C20.9398 80.252 21.2474 80.457 21.498 80.7305C21.7533 81.0039 21.9469 81.3389 22.0791 81.7354C22.2158 82.1318 22.2842 82.5898 22.2842 83.1094H21.0264C21.0264 82.804 20.9899 82.5238 20.917 82.2686C20.8441 82.0133 20.7347 81.7923 20.5889 81.6055C20.443 81.4141 20.2653 81.2682 20.0557 81.168C19.846 81.0632 19.6045 81.0107 19.3311 81.0107C18.9482 81.0107 18.6315 81.0768 18.3809 81.209C18.1348 81.3411 17.9525 81.528 17.834 81.7695C17.7155 82.0065 17.6562 82.2822 17.6562 82.5967C17.6562 82.8883 17.7155 83.1436 17.834 83.3623C17.9525 83.5811 18.153 83.7793 18.4355 83.957C18.7227 84.1302 19.1169 84.3011 19.6182 84.4697C20.2061 84.6566 20.7051 84.8776 21.1152 85.1328C21.5254 85.3835 21.8376 85.6934 22.0518 86.0625C22.266 86.4271 22.373 86.8805 22.373 87.4229C22.373 88.0107 22.2409 88.5075 21.9766 88.9131C21.7122 89.3141 21.3408 89.6195 20.8623 89.8291C20.3838 90.0387 19.8232 90.1436 19.1807 90.1436C18.7933 90.1436 18.4105 90.0911 18.0322 89.9863C17.654 89.8815 17.3122 89.7106 17.0068 89.4736C16.7015 89.2321 16.4577 88.9154 16.2754 88.5234C16.0931 88.127 16.002 87.6416 16.002 87.0674H17.2734C17.2734 87.4548 17.3281 87.776 17.4375 88.0312C17.5514 88.2819 17.7018 88.4824 17.8887 88.6328C18.0755 88.7786 18.2806 88.8835 18.5039 88.9473C18.7318 89.0065 18.9574 89.0361 19.1807 89.0361C19.5908 89.0361 19.9372 88.9723 20.2197 88.8447C20.5068 88.7126 20.7256 88.5257 20.876 88.2842C21.0264 88.0426 21.1016 87.7601 21.1016 87.4365ZM30.2002 84.2305V85.748C30.2002 86.5638 30.1273 87.252 29.9814 87.8125C29.8356 88.373 29.626 88.8242 29.3525 89.166C29.0791 89.5078 28.7487 89.7562 28.3613 89.9111C27.9785 90.0615 27.5456 90.1367 27.0625 90.1367C26.6797 90.1367 26.3265 90.0889 26.0029 89.9932C25.6794 89.8975 25.3877 89.7448 25.1279 89.5352C24.8727 89.321 24.654 89.043 24.4717 88.7012C24.2894 88.3594 24.1504 87.9447 24.0547 87.457C23.959 86.9694 23.9111 86.3997 23.9111 85.748V84.2305C23.9111 83.4147 23.984 82.7311 24.1299 82.1797C24.2803 81.6283 24.4922 81.1862 24.7656 80.8535C25.0391 80.5163 25.3672 80.2747 25.75 80.1289C26.1374 79.9831 26.5703 79.9102 27.0488 79.9102C27.4362 79.9102 27.7917 79.958 28.1152 80.0537C28.4434 80.1449 28.735 80.293 28.9902 80.498C29.2454 80.6986 29.4619 80.9674 29.6396 81.3047C29.8219 81.6374 29.9609 82.0452 30.0566 82.5283C30.1523 83.0114 30.2002 83.5788 30.2002 84.2305ZM28.9287 85.9531V84.0186C28.9287 83.5719 28.9014 83.18 28.8467 82.8428C28.7965 82.501 28.7214 82.2093 28.6211 81.9678C28.5208 81.7262 28.3932 81.5303 28.2383 81.3799C28.0879 81.2295 27.9124 81.1201 27.7119 81.0518C27.516 80.9788 27.2949 80.9424 27.0488 80.9424C26.748 80.9424 26.4814 80.9993 26.249 81.1133C26.0166 81.2227 25.8206 81.3981 25.6611 81.6396C25.5062 81.8812 25.3877 82.1979 25.3057 82.5898C25.2236 82.9818 25.1826 83.458 25.1826 84.0186V85.9531C25.1826 86.3997 25.2077 86.7939 25.2578 87.1357C25.3125 87.4775 25.3923 87.7738 25.4971 88.0244C25.6019 88.2705 25.7295 88.4733 25.8799 88.6328C26.0303 88.7923 26.2035 88.9108 26.3994 88.9883C26.5999 89.0612 26.821 89.0977 27.0625 89.0977C27.3724 89.0977 27.6436 89.0384 27.876 88.9199C28.1084 88.8014 28.3021 88.6169 28.457 88.3662C28.6165 88.111 28.735 87.7852 28.8125 87.3887C28.89 86.9876 28.9287 86.5091 28.9287 85.9531Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"41",y:"83.5",width:"200",height:"2",rx:"1",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"41",y:"83.5",width:"122",height:"2",rx:"1",fill:"#4272F9"}),(0,h.createElement)("g",{filter:"url(#filter0_d_76_1271)"},(0,h.createElement)("circle",{cx:"163",cy:"84.5",r:"11",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M256.107 78.4336V80.5186H255.082V78.4336H256.107ZM255.984 89.5967V91.4219H254.966V89.5967H255.984ZM257.352 87.4365C257.352 87.1631 257.29 86.917 257.167 86.6982C257.044 86.4795 256.841 86.279 256.559 86.0967C256.276 85.9144 255.898 85.7458 255.424 85.5908C254.85 85.4131 254.353 85.1966 253.934 84.9414C253.519 84.6862 253.198 84.3695 252.97 83.9912C252.746 83.613 252.635 83.1549 252.635 82.6172C252.635 82.0566 252.756 81.5736 252.997 81.168C253.239 80.7624 253.58 80.4502 254.022 80.2314C254.465 80.0127 254.984 79.9033 255.581 79.9033C256.046 79.9033 256.461 79.974 256.825 80.1152C257.19 80.252 257.497 80.457 257.748 80.7305C258.003 81.0039 258.197 81.3389 258.329 81.7354C258.466 82.1318 258.534 82.5898 258.534 83.1094H257.276C257.276 82.804 257.24 82.5238 257.167 82.2686C257.094 82.0133 256.985 81.7923 256.839 81.6055C256.693 81.4141 256.515 81.2682 256.306 81.168C256.096 81.0632 255.854 81.0107 255.581 81.0107C255.198 81.0107 254.882 81.0768 254.631 81.209C254.385 81.3411 254.202 81.528 254.084 81.7695C253.965 82.0065 253.906 82.2822 253.906 82.5967C253.906 82.8883 253.965 83.1436 254.084 83.3623C254.202 83.5811 254.403 83.7793 254.686 83.957C254.973 84.1302 255.367 84.3011 255.868 84.4697C256.456 84.6566 256.955 84.8776 257.365 85.1328C257.775 85.3835 258.088 85.6934 258.302 86.0625C258.516 86.4271 258.623 86.8805 258.623 87.4229C258.623 88.0107 258.491 88.5075 258.227 88.9131C257.962 89.3141 257.591 89.6195 257.112 89.8291C256.634 90.0387 256.073 90.1436 255.431 90.1436C255.043 90.1436 254.66 90.0911 254.282 89.9863C253.904 89.8815 253.562 89.7106 253.257 89.4736C252.951 89.2321 252.708 88.9154 252.525 88.5234C252.343 88.127 252.252 87.6416 252.252 87.0674H253.523C253.523 87.4548 253.578 87.776 253.688 88.0312C253.801 88.2819 253.952 88.4824 254.139 88.6328C254.326 88.7786 254.531 88.8835 254.754 88.9473C254.982 89.0065 255.207 89.0361 255.431 89.0361C255.841 89.0361 256.187 88.9723 256.47 88.8447C256.757 88.7126 256.976 88.5257 257.126 88.2842C257.276 88.0426 257.352 87.7601 257.352 87.4365ZM266.724 88.9609V90H260.209V89.0908L263.47 85.4609C263.871 85.0143 264.181 84.6361 264.399 84.3262C264.623 84.0117 264.778 83.7314 264.864 83.4854C264.955 83.2347 265.001 82.9795 265.001 82.7197C265.001 82.3916 264.933 82.0954 264.796 81.8311C264.664 81.5622 264.468 81.348 264.208 81.1885C263.948 81.029 263.634 80.9492 263.265 80.9492C262.823 80.9492 262.453 81.0358 262.157 81.209C261.866 81.3776 261.647 81.6146 261.501 81.9199C261.355 82.2253 261.282 82.5762 261.282 82.9727H260.018C260.018 82.4121 260.141 81.8994 260.387 81.4346C260.633 80.9697 260.997 80.6006 261.48 80.3271C261.964 80.0492 262.558 79.9102 263.265 79.9102C263.894 79.9102 264.431 80.0218 264.878 80.2451C265.325 80.4639 265.666 80.7738 265.903 81.1748C266.145 81.5713 266.266 82.0361 266.266 82.5693C266.266 82.861 266.215 83.1572 266.115 83.458C266.02 83.7542 265.885 84.0505 265.712 84.3467C265.543 84.6429 265.345 84.9346 265.117 85.2217C264.894 85.5088 264.655 85.7913 264.399 86.0693L261.733 88.9609H266.724ZM272.233 79.9922V90H270.969V81.5713L268.419 82.501V81.3594L272.035 79.9922H272.233ZM282.2 84.2305V85.748C282.2 86.5638 282.127 87.252 281.981 87.8125C281.836 88.373 281.626 88.8242 281.353 89.166C281.079 89.5078 280.749 89.7562 280.361 89.9111C279.979 90.0615 279.546 90.1367 279.062 90.1367C278.68 90.1367 278.326 90.0889 278.003 89.9932C277.679 89.8975 277.388 89.7448 277.128 89.5352C276.873 89.321 276.654 89.043 276.472 88.7012C276.289 88.3594 276.15 87.9447 276.055 87.457C275.959 86.9694 275.911 86.3997 275.911 85.748V84.2305C275.911 83.4147 275.984 82.7311 276.13 82.1797C276.28 81.6283 276.492 81.1862 276.766 80.8535C277.039 80.5163 277.367 80.2747 277.75 80.1289C278.137 79.9831 278.57 79.9102 279.049 79.9102C279.436 79.9102 279.792 79.958 280.115 80.0537C280.443 80.1449 280.735 80.293 280.99 80.498C281.245 80.6986 281.462 80.9674 281.64 81.3047C281.822 81.6374 281.961 82.0452 282.057 82.5283C282.152 83.0114 282.2 83.5788 282.2 84.2305ZM280.929 85.9531V84.0186C280.929 83.5719 280.901 83.18 280.847 82.8428C280.797 82.501 280.721 82.2093 280.621 81.9678C280.521 81.7262 280.393 81.5303 280.238 81.3799C280.088 81.2295 279.912 81.1201 279.712 81.0518C279.516 80.9788 279.295 80.9424 279.049 80.9424C278.748 80.9424 278.481 80.9993 278.249 81.1133C278.017 81.2227 277.821 81.3981 277.661 81.6396C277.506 81.8812 277.388 82.1979 277.306 82.5898C277.224 82.9818 277.183 83.458 277.183 84.0186V85.9531C277.183 86.3997 277.208 86.7939 277.258 87.1357C277.312 87.4775 277.392 87.7738 277.497 88.0244C277.602 88.2705 277.729 88.4733 277.88 88.6328C278.03 88.7923 278.203 88.9108 278.399 88.9883C278.6 89.0612 278.821 89.0977 279.062 89.0977C279.372 89.0977 279.644 89.0384 279.876 88.9199C280.108 88.8014 280.302 88.6169 280.457 88.3662C280.617 88.111 280.735 87.7852 280.812 87.3887C280.89 86.9876 280.929 86.5091 280.929 85.9531Z",fill:"#0F172A"}),(0,h.createElement)("defs",null,(0,h.createElement)("filter",{id:"filter0_d_76_1271",x:"140",y:"65.5",width:"46",height:"46",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB"},(0,h.createElement)("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),(0,h.createElement)("feColorMatrix",{in:"SourceAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",result:"hardAlpha"}),(0,h.createElement)("feOffset",{dy:"4"}),(0,h.createElement)("feGaussianBlur",{stdDeviation:"6"}),(0,h.createElement)("feColorMatrix",{type:"matrix",values:"0 0 0 0 0.258824 0 0 0 0 0.447059 0 0 0 0 0.976471 0 0 0 0.5 0"}),(0,h.createElement)("feBlend",{mode:"normal",in2:"BackgroundImageFix",result:"effect1_dropShadow_76_1271"}),(0,h.createElement)("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_dropShadow_76_1271",result:"shape"})))),{BlockLabel:wi,BlockDescription:vi,BlockAdvancedValue:_i,BlockName:ki,AdvancedFields:ji,FieldWrapper:xi,ValidationToggleGroup:Fi,ValidationBlockMessage:Bi,AdvancedInspectorControl:Ai,AttributeHelp:Pi}=JetFBComponents,{useIsAdvancedValidation:Si,useUniqueNameOnDuplicate:Ni}=JetFBHooks,{__:Ii}=wp.i18n,{InspectorControls:Ti,useBlockProps:Oi}=wp.blockEditor,{TextControl:Ji,PanelBody:Ri,__experimentalNumberControl:qi,__experimentalInputControl:Di}=wp.components,{useState:zi}=wp.element;let{NumberControl:Ui,InputControl:Gi}=wp.components;void 0===Ui&&(Ui=qi),void 0===Gi&&(Gi=Di);const Wi=JSON.parse('{"apiVersion":3,"name":"jet-forms/range-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","range"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Range Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max":{"type":["number","string"],"default":"","jfb":{"rich":true}},"step":{"type":["number","string"],"default":"","jfb":{"rich":true}},"prefix":{"type":"string","default":"","jfb":{"rich":true}},"suffix":{"type":"string","default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Ki}=wp.i18n,{createBlock:$i}=wp.blocks,{name:Yi,icon:Xi=""}=Wi,Qi={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Xi}}),description:Ki("Insert a range with a slider in the form for the users to move it. So the visitors can set the desired price range for products they want to buy.","jet-form-builder"),edit:function(e){const C=Oi(),t=Si();Ni();const[l,r]=zi(50),{attributes:n,setAttributes:a,editProps:{uniqKey:i,attrHelp:o}}=e;return n.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ei):[e.isSelected&&(0,h.createElement)(Ti,{key:i("InspectorControls")},(0,h.createElement)(Ri,{title:Ii("General","jet-form-builder")},(0,h.createElement)(wi,null),(0,h.createElement)(ki,null),(0,h.createElement)(vi,null)),(0,h.createElement)(Ri,{title:Ii("Value","jet-form-builder")},(0,h.createElement)(_i,null)),(0,h.createElement)(Ri,{title:Ii("Field","jet-form-builder"),key:i("PanelBody")},(0,h.createElement)(Ai,{value:n.min,label:Ii("Min Value","jet-form-builder"),onChangePreset:e=>a({min:e})},({instanceId:e})=>(0,h.createElement)(Ji,{id:e,className:"jet-fb m-unset",value:n.min,onChange:e=>a({min:e})})),(0,h.createElement)(Pi,{name:"min"}),(0,h.createElement)(Ai,{value:n.max,label:Ii("Max Value","jet-form-builder"),onChangePreset:e=>a({max:e})},({instanceId:e})=>(0,h.createElement)(Ji,{id:e,className:"jet-fb m-unset",value:n.max,onChange:e=>a({max:e})})),(0,h.createElement)(Pi,{name:"max"}),(0,h.createElement)(Ai,{value:n.step,label:Ii("Step","jet-form-builder"),onChangePreset:e=>a({step:e})},({instanceId:e})=>(0,h.createElement)(Ji,{id:e,className:"jet-fb m-unset",value:n.step,onChange:e=>a({step:e})})),(0,h.createElement)(Pi,{name:"step"}),(0,h.createElement)(Ji,{key:"prefix",label:Ii("Value prefix","jet-form-builder"),value:n.prefix,help:o("prefix_suffix"),onChange:e=>{a({prefix:e})}}),(0,h.createElement)(Ji,{key:"suffix",label:Ii("Value suffix","jet-form-builder"),value:n.suffix,help:o("prefix_suffix"),onChange:e=>{a({suffix:e})}})),(0,h.createElement)(Ri,{title:Ii("Validation","jet-form-builder")},(0,h.createElement)(Fi,null),t&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Bi,{name:"empty"}),(0,h.createElement)(Bi,{name:"number_max"}),(0,h.createElement)(Bi,{name:"number_min"}))),(0,h.createElement)(ji,{key:i("AdvancedFields"),...e})),(0,h.createElement)("div",{...C,key:i("viewBlock")},(0,h.createElement)(xi,{key:i("FieldWrapper"),wrapClasses:["range-wrap"],...e},(0,h.createElement)("div",{className:"range-flex-wrap jet-form-builder__field-preview"},(0,h.createElement)(Gi,{key:i("placeholder_block"),type:"range",min:n.min||0,max:n.max||100,step:n.step||1,onChange:r}),(0,h.createElement)("div",{className:"jet-form-builder__field-value"},(0,h.createElement)("span",{className:"jet-form-builder__field-value-prefix"},n.prefix),(0,h.createElement)("span",null,l),(0,h.createElement)("span",{className:"jet-form-builder__field-value-suffix"},n.suffix)))))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>$i("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/number-field"],transform:e=>$i(Yi,{...e}),priority:0}]}},eo=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"70",y:"44",width:"158",height:"56",rx:"28",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M99.8051 79.28C99.2384 79.28 98.6551 79.2233 98.0551 79.11C97.4551 79.0033 96.8984 78.8733 96.3851 78.72C95.8717 78.56 95.4651 78.4067 95.1651 78.26L95.4651 75.54C95.9317 75.7667 96.4184 75.9767 96.9251 76.17C97.4317 76.3633 97.9517 76.52 98.4851 76.64C99.0184 76.76 99.5584 76.82 100.105 76.82C100.785 76.82 101.332 76.6867 101.745 76.42C102.158 76.1533 102.365 75.7467 102.365 75.2C102.365 74.78 102.248 74.4433 102.015 74.19C101.782 73.93 101.425 73.7 100.945 73.5C100.465 73.2933 99.8517 73.06 99.1051 72.8C98.3584 72.54 97.6884 72.2467 97.0951 71.92C96.5017 71.5867 96.0317 71.1667 95.6851 70.66C95.3384 70.1533 95.1651 69.5067 95.1651 68.72C95.1651 67.9467 95.3551 67.26 95.7351 66.66C96.1151 66.0533 96.6817 65.58 97.4351 65.24C98.1951 64.8933 99.1384 64.72 100.265 64.72C101.118 64.72 101.932 64.8167 102.705 65.01C103.478 65.1967 104.138 65.4 104.685 65.62L104.425 68.24C103.638 67.8867 102.898 67.62 102.205 67.44C101.518 67.2533 100.818 67.16 100.105 67.16C99.3584 67.16 98.7817 67.2833 98.3751 67.53C97.9684 67.7767 97.7651 68.1467 97.7651 68.64C97.7651 69.0333 97.8784 69.35 98.1051 69.59C98.3317 69.83 98.6551 70.0367 99.0751 70.21C99.4951 70.3767 99.9984 70.5533 100.585 70.74C101.598 71.06 102.448 71.4133 103.135 71.8C103.828 72.18 104.348 72.6433 104.695 73.19C105.048 73.73 105.225 74.4 105.225 75.2C105.225 75.6 105.162 76.0367 105.035 76.51C104.908 76.9767 104.658 77.42 104.285 77.84C103.912 78.26 103.365 78.6067 102.645 78.88C101.932 79.1467 100.985 79.28 99.8051 79.28ZM110.989 79.2C109.949 79.2 109.119 78.9933 108.499 78.58C107.879 78.1667 107.433 77.6 107.159 76.88C106.886 76.1533 106.749 75.32 106.749 74.38V69H109.229V74.38C109.229 75.3067 109.383 75.9967 109.689 76.45C110.003 76.8967 110.509 77.12 111.209 77.12C111.769 77.12 112.233 76.9867 112.599 76.72C112.973 76.4533 113.283 76.08 113.529 75.6L113.089 76.86V69H115.569V79H113.249L113.129 77.26L113.669 77.96C113.429 78.2667 113.049 78.55 112.529 78.81C112.016 79.07 111.503 79.2 110.989 79.2ZM123.085 79.2C122.325 79.2 121.668 79.0767 121.115 78.83C120.561 78.5833 120.045 78.2467 119.565 77.82L120.305 77.3L120.185 79H117.865V64H120.345V70.66L119.745 70.28C120.185 69.8267 120.675 69.4733 121.215 69.22C121.761 68.9667 122.385 68.84 123.085 68.84C124.065 68.84 124.888 69.0767 125.555 69.55C126.221 70.0233 126.725 70.6533 127.065 71.44C127.411 72.2267 127.585 73.0867 127.585 74.02C127.585 74.9533 127.411 75.8133 127.065 76.6C126.725 77.3867 126.221 78.0167 125.555 78.49C124.888 78.9633 124.065 79.2 123.085 79.2ZM122.725 77.16C123.218 77.16 123.638 77.0267 123.985 76.76C124.331 76.4933 124.595 76.1267 124.775 75.66C124.955 75.1867 125.045 74.64 125.045 74.02C125.045 73.4 124.955 72.8567 124.775 72.39C124.595 71.9167 124.331 71.5467 123.985 71.28C123.638 71.0133 123.218 70.88 122.725 70.88C122.145 70.88 121.671 71.0133 121.305 71.28C120.938 71.5467 120.665 71.9167 120.485 72.39C120.311 72.8567 120.225 73.4 120.225 74.02C120.225 74.64 120.311 75.1867 120.485 75.66C120.665 76.1267 120.938 76.4933 121.305 76.76C121.671 77.0267 122.145 77.16 122.725 77.16ZM129.31 79V69H131.43L131.59 70.46L131.23 70.02C131.61 69.72 132.064 69.45 132.59 69.21C133.124 68.9633 133.744 68.84 134.45 68.84C134.984 68.84 135.454 68.92 135.86 69.08C136.274 69.2333 136.627 69.4567 136.92 69.75C137.214 70.0367 137.45 70.38 137.63 70.78L137.03 70.64C137.35 70.0667 137.817 69.6233 138.43 69.31C139.05 68.9967 139.75 68.84 140.53 68.84C141.45 68.84 142.2 69.03 142.78 69.41C143.36 69.79 143.787 70.3267 144.06 71.02C144.334 71.7067 144.47 72.5133 144.47 73.44V79H141.99V73.62C141.99 72.6867 141.844 71.9967 141.55 71.55C141.264 71.1033 140.784 70.88 140.11 70.88C139.777 70.88 139.484 70.94 139.23 71.06C138.984 71.1733 138.777 71.3433 138.61 71.57C138.45 71.79 138.33 72.06 138.25 72.38C138.17 72.6933 138.13 73.0467 138.13 73.44V79H135.65V73.62C135.65 73 135.584 72.4867 135.45 72.08C135.324 71.6733 135.117 71.3733 134.83 71.18C134.55 70.98 134.184 70.88 133.73 70.88C133.15 70.88 132.674 71.0167 132.3 71.29C131.934 71.5567 131.61 71.92 131.33 72.38L131.79 71.04V79H129.31ZM146.693 79V69H149.173V79H146.693ZM146.693 67.48V65H149.173V67.48H146.693ZM154.758 79.2C154.131 79.2 153.621 79.0733 153.228 78.82C152.835 78.56 152.545 78.23 152.358 77.83C152.171 77.43 152.078 77.0133 152.078 76.58V71.04H150.658L150.878 69H152.078V66.8L154.558 66.54V69H156.758V71.04H154.558V75.56C154.558 76.0667 154.588 76.4333 154.648 76.66C154.708 76.88 154.845 77.02 155.058 77.08C155.271 77.1333 155.611 77.16 156.078 77.16H156.758L156.538 79.2H154.758ZM163.465 79V71.04H162.045L162.265 69H163.465V66.88C163.465 66 163.725 65.3 164.245 64.78C164.772 64.26 165.525 64 166.505 64C166.825 64 167.118 64.0167 167.385 64.05C167.658 64.0833 167.905 64.1267 168.125 64.18L167.905 66.18C167.805 66.1467 167.695 66.1233 167.575 66.11C167.455 66.09 167.305 66.08 167.125 66.08C166.765 66.08 166.478 66.1767 166.265 66.37C166.052 66.5633 165.945 66.88 165.945 67.32V69H168.145V71.04H165.945V79H163.465ZM174.104 79.2C173.018 79.2 172.091 78.9633 171.324 78.49C170.558 78.0167 169.971 77.3867 169.564 76.6C169.164 75.8133 168.964 74.9533 168.964 74.02C168.964 73.08 169.164 72.2133 169.564 71.42C169.971 70.6267 170.558 69.9933 171.324 69.52C172.091 69.04 173.018 68.8 174.104 68.8C175.191 68.8 176.118 69.04 176.884 69.52C177.651 69.9933 178.234 70.6267 178.634 71.42C179.041 72.2133 179.244 73.08 179.244 74.02C179.244 74.9533 179.041 75.8133 178.634 76.6C178.234 77.3867 177.651 78.0167 176.884 78.49C176.118 78.9633 175.191 79.2 174.104 79.2ZM174.104 77.16C174.938 77.16 175.578 76.87 176.024 76.29C176.478 75.7033 176.704 74.9467 176.704 74.02C176.704 73.08 176.478 72.3167 176.024 71.73C175.578 71.1367 174.938 70.84 174.104 70.84C173.278 70.84 172.638 71.1367 172.184 71.73C171.731 72.3167 171.504 73.08 171.504 74.02C171.504 74.9467 171.731 75.7033 172.184 76.29C172.638 76.87 173.278 77.16 174.104 77.16ZM180.971 79V69H183.291L183.351 70.06C183.604 69.78 183.961 69.5 184.421 69.22C184.881 68.94 185.384 68.8 185.931 68.8C186.091 68.8 186.237 68.8133 186.371 68.84L186.191 71.28C186.044 71.24 185.897 71.2133 185.751 71.2C185.611 71.1867 185.471 71.18 185.331 71.18C184.911 71.18 184.527 71.2767 184.181 71.47C183.834 71.6633 183.591 71.9 183.451 72.18V79H180.971ZM187.572 79V69H189.692L189.852 70.46L189.492 70.02C189.872 69.72 190.325 69.45 190.852 69.21C191.385 68.9633 192.005 68.84 192.712 68.84C193.245 68.84 193.715 68.92 194.122 69.08C194.535 69.2333 194.889 69.4567 195.182 69.75C195.475 70.0367 195.712 70.38 195.892 70.78L195.292 70.64C195.612 70.0667 196.079 69.6233 196.692 69.31C197.312 68.9967 198.012 68.84 198.792 68.84C199.712 68.84 200.462 69.03 201.042 69.41C201.622 69.79 202.049 70.3267 202.322 71.02C202.595 71.7067 202.732 72.5133 202.732 73.44V79H200.252V73.62C200.252 72.6867 200.105 71.9967 199.812 71.55C199.525 71.1033 199.045 70.88 198.372 70.88C198.039 70.88 197.745 70.94 197.492 71.06C197.245 71.1733 197.039 71.3433 196.872 71.57C196.712 71.79 196.592 72.06 196.512 72.38C196.432 72.6933 196.392 73.0467 196.392 73.44V79H193.912V73.62C193.912 73 193.845 72.4867 193.712 72.08C193.585 71.6733 193.379 71.3733 193.092 71.18C192.812 70.98 192.445 70.88 191.992 70.88C191.412 70.88 190.935 71.0167 190.562 71.29C190.195 71.5567 189.872 71.92 189.592 72.38L190.052 71.04V79H187.572Z",fill:"white"})),{GeneralFields:Co,AdvancedFields:to,ActionButtonPlaceholder:lo}=JetFBComponents,{InspectorControls:ro}=wp.blockEditor,{useState:no,useEffect:ao}=wp.element,{withFilters:io}=wp.components,oo=["jet-form-builder__action-button"],so=["jet-form-builder__action-button-wrapper"],co=io("jet.fb.block.action-button.edit")(lo),mo=e=>{var C;const{attributes:t,setAttributes:l}=e,r=()=>{if(!t.action_type)return oo;const e=JetFormActionButton.actions.find(e=>t.action_type===e.value);return e?(t.label||l({label:e.preset_label}),[...oo,e.button_class]):oo},n=()=>{if(!t.action_type)return[...so];const e=JetFormActionButton.actions.find(e=>t.action_type===e.value);return e?[...so,e.wrapper_class]:[...so]},[a,i]=no(r),[o,s]=no(n);return ao(()=>{i(r()),s(n())},[t.action_type]),(0,h.createElement)(co,{attributes:t,setAttributes:l,setActionAttributes:e=>{var C;const r=JSON.parse(JSON.stringify(t.buttons)),n=null!==(C=r[t.action_type])&&void 0!==C?C:{};r[t.action_type]={...n,...e},l({buttons:r})},actionAttributes:null!==(C=t.buttons[t.action_type])&&void 0!==C?C:{},buttonClasses:a,wrapperClasses:o})},uo=JSON.parse('{"apiVersion":3,"name":"jet-forms/submit-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","field","submit","break","next","prev","action","button"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Action Button","icon":"\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"label":{"type":"string","default":"Submit","jfb":{"rich":true}},"action_type":{"type":"string","default":"submit"},"buttons":{"type":"object","default":{}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""}}}'),{__:po}=wp.i18n,fo={name:"submit",isDefault:!0,title:po("Action Button","jet-form-builder"),isActive:["action_type"],description:po("Add the button by clicking which users can submit the form","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M24.8828 29.3223H23.0029C22.9619 29.7415 22.8639 30.0924 22.709 30.375C22.5586 30.6576 22.3376 30.8717 22.0459 31.0176C21.7588 31.1634 21.3851 31.2363 20.9248 31.2363C20.5465 31.2363 20.2207 31.1634 19.9473 31.0176C19.6738 30.8717 19.4505 30.6598 19.2773 30.3818C19.1042 30.1038 18.9766 29.7643 18.8945 29.3633C18.8125 28.9622 18.7715 28.5088 18.7715 28.0029V27.2305C18.7715 26.7018 18.8171 26.237 18.9082 25.8359C18.9993 25.4303 19.1361 25.0931 19.3184 24.8242C19.5007 24.5508 19.7285 24.3457 20.002 24.209C20.2799 24.0723 20.6012 24.0039 20.9658 24.0039C21.4352 24.0039 21.8112 24.0814 22.0938 24.2363C22.3809 24.3867 22.5951 24.6077 22.7363 24.8994C22.8822 25.1911 22.9733 25.5465 23.0098 25.9658H24.8896C24.8258 25.2913 24.639 24.6943 24.3291 24.1748C24.0192 23.6553 23.584 23.2474 23.0234 22.9512C22.4629 22.6504 21.777 22.5 20.9658 22.5C20.3415 22.5 19.7764 22.6117 19.2705 22.835C18.7692 23.0583 18.3385 23.3773 17.9785 23.792C17.623 24.2021 17.3496 24.6989 17.1582 25.2822C16.9668 25.8656 16.8711 26.5195 16.8711 27.2441V28.0029C16.8711 28.7275 16.9645 29.3815 17.1514 29.9648C17.3382 30.5436 17.6071 31.0404 17.958 31.4551C18.3135 31.8652 18.7396 32.182 19.2363 32.4053C19.7376 32.624 20.3005 32.7334 20.9248 32.7334C21.736 32.7334 22.4264 32.5876 22.9961 32.2959C23.5658 32.0042 24.0101 31.6032 24.3291 31.0928C24.6481 30.5778 24.8327 29.9876 24.8828 29.3223Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5371 22.6436L16.2764 32.5967H14.2803L13.5324 30.3818H9.81555L9.07129 32.5967H7.08203L10.8008 22.6436H12.5371ZM10.314 28.8984H13.0316L11.6695 24.8646L10.314 28.8984Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M30.4062 24.127V32.5967H28.5332V24.127H25.4775V22.6436H33.4961V24.127H30.4062Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M36.75 32.5967V22.6436H34.8701V32.5967H36.75Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M46.8398 27.3672V27.8799C46.8398 28.6318 46.7396 29.3086 46.5391 29.9102C46.3385 30.5072 46.0537 31.0153 45.6846 31.4346C45.3154 31.8538 44.8757 32.1751 44.3652 32.3984C43.8548 32.6217 43.2874 32.7334 42.6631 32.7334C42.0479 32.7334 41.4827 32.6217 40.9678 32.3984C40.4574 32.1751 40.0153 31.8538 39.6416 31.4346C39.2679 31.0153 38.9785 30.5072 38.7734 29.9102C38.5684 29.3086 38.4658 28.6318 38.4658 27.8799V27.3672C38.4658 26.6107 38.5684 25.9339 38.7734 25.3369C38.9785 24.7399 39.2656 24.2318 39.6348 23.8125C40.0039 23.3887 40.4437 23.0651 40.9541 22.8418C41.4691 22.6185 42.0342 22.5068 42.6494 22.5068C43.2738 22.5068 43.8411 22.6185 44.3516 22.8418C44.862 23.0651 45.3018 23.3887 45.6709 23.8125C46.0446 24.2318 46.3317 24.7399 46.5322 25.3369C46.7373 25.9339 46.8398 26.6107 46.8398 27.3672ZM44.9395 27.8799V27.3535C44.9395 26.8112 44.8893 26.335 44.7891 25.9248C44.6888 25.5101 44.5407 25.1615 44.3447 24.8789C44.1488 24.5964 43.9072 24.3844 43.6201 24.2432C43.333 24.0973 43.0094 24.0244 42.6494 24.0244C42.2848 24.0244 41.9613 24.0973 41.6787 24.2432C41.4007 24.3844 41.1637 24.5964 40.9678 24.8789C40.7718 25.1615 40.6214 25.5101 40.5166 25.9248C40.4163 26.335 40.3662 26.8112 40.3662 27.3535V27.8799C40.3662 28.4176 40.4163 28.8939 40.5166 29.3086C40.6214 29.7233 40.7718 30.0742 40.9678 30.3613C41.1683 30.6439 41.4098 30.8581 41.6924 31.0039C41.9749 31.1497 42.2985 31.2227 42.6631 31.2227C43.0277 31.2227 43.3512 31.1497 43.6338 31.0039C43.9163 30.8581 44.1533 30.6439 44.3447 30.3613C44.5407 30.0742 44.6888 29.7233 44.7891 29.3086C44.8893 28.8939 44.9395 28.4176 44.9395 27.8799Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M56.4307 32.5967V22.6436H54.5576V29.5547L50.3125 22.6436H48.4326V32.5967H50.3125V25.6924L54.5439 32.5967H56.4307Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M56.8581 44H60C62.2091 44 64 42.2091 64 40V15C64 12.7909 62.2091 11 60 11H4C1.79086 11 0 12.7909 0 15V40C0 42.2091 1.79086 44 4 44H40.778L42.9403 53.0096C43.0578 53.5382 43.3396 53.9897 43.7233 54.3254C44.0972 54.6525 44.5724 54.8763 45.1109 54.9302C45.6268 54.9818 46.1288 54.8712 46.5658 54.6285C47.0573 54.3554 47.415 53.9381 47.6217 53.4573L48.5248 51.4717L51.0479 54.0031L51.0743 54.0278C51.3798 54.3129 51.7296 54.5489 52.1209 54.7228L52.1642 54.742L52.2083 54.7592C52.6273 54.9221 53.0636 55 53.5023 55C53.941 55 54.3773 54.9221 54.7963 54.7592L54.8404 54.742L54.8837 54.7228C55.275 54.5489 55.6249 54.3129 55.9303 54.0278L55.9679 53.9927L56.0036 53.9557C56.6466 53.2906 57 52.4405 57 51.5023C57 50.5641 56.6466 49.714 56.0036 49.0489L55.9907 49.0355L53.4717 46.5248L55.4573 45.6217C55.9381 45.415 56.3554 45.0573 56.6285 44.5658C56.7279 44.3869 56.8051 44.1972 56.8581 44ZM60 13H4C2.89543 13 2 13.8954 2 15V40C2 41.1046 2.89543 42 4 42H40.298L40.0716 41.0566C39.9751 40.6621 39.9762 40.2536 40.0747 39.8594L40.1023 39.7489L40.1423 39.6422C40.2437 39.3718 40.3918 39.1023 40.5984 38.8544L40.6564 38.7847L40.7206 38.7206C41.029 38.4122 41.4173 38.1852 41.8594 38.0747C42.2536 37.9762 42.6621 37.9751 43.0566 38.0716L55.0096 40.9403C55.5382 41.0578 55.9897 41.3396 56.3254 41.7233C56.4015 41.8102 56.4719 41.9026 56.536 42H60C61.1046 42 62 41.1046 62 40V15C62 13.8954 61.1046 13 60 13ZM50.0127 45.9009L54.6555 43.7892C54.7554 43.7492 54.8303 43.6843 54.8802 43.5945C54.9301 43.5046 54.9501 43.4098 54.9401 43.3099C54.9301 43.2101 54.8902 43.1202 54.8203 43.0403C54.7504 42.9604 54.6655 42.9105 54.5657 42.8906L42.5841 40.015C42.5042 39.995 42.4243 39.995 42.3445 40.015C42.2646 40.0349 42.1947 40.0749 42.1348 40.1348C42.0849 40.1947 42.0449 40.2646 42.015 40.3445C41.995 40.4243 41.995 40.5042 42.015 40.5841L44.8906 52.5657C44.9105 52.6655 44.9604 52.7504 45.0403 52.8203C45.1202 52.8902 45.2101 52.9301 45.3099 52.9401C45.4098 52.9501 45.5046 52.9301 45.5945 52.8802C45.6843 52.8303 45.7492 52.7554 45.7892 52.6555L47.9009 48.0127L52.4389 52.5657C52.5887 52.7055 52.7535 52.8153 52.9332 52.8952C53.1129 52.9651 53.3026 53 53.5023 53C53.702 53 53.8917 52.9651 54.0714 52.8952C54.2512 52.8153 54.4159 52.7055 54.5657 52.5657C54.8552 52.2661 55 51.9117 55 51.5023C55 51.0929 54.8552 50.7385 54.5657 50.4389L50.0127 45.9009Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"submit"}},{registerBlockVariation:Vo}=wp.blocks;Vo("jet-forms/submit-field",fo);const{__:Ho}=wp.i18n,ho={name:"update",title:Ho("Update Field","jet-form-builder"),isActive:["action_type"],description:Ho("Update dependent fields without submitting the form","jet-form-builder"),icon:"update-alt",scope:["block","inserter","transform"],attributes:{action_type:"update"}};var bo;const{registerBlockVariation:Mo,getBlockVariations:Lo}=wp.blocks;(null!==(bo=Lo?.("jet-forms/submit-field"))&&void 0!==bo?bo:[]).some(e=>"update"===e?.name||"update"===e?.attributes?.action_type)||Mo("jet-forms/submit-field",ho);const{__:go}=wp.i18n,Zo={name:"next",title:go("Next Page","jet-form-builder"),isActive:["action_type"],description:go("Go to Next Page button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M48.615 39.6867C48.1972 40.1045 47.5236 40.1045 47.1058 39.6867C46.688 39.2774 46.688 38.5953 47.0973 38.186L53.279 32.0043L47.1058 25.8225C46.688 25.4047 46.688 24.7311 47.1058 24.3133C47.5236 23.8955 48.1972 23.8955 48.615 24.3133L55.7005 31.3989C56.0331 31.7314 56.0331 32.2686 55.7005 32.6011L48.615 39.6867Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M39 54C41.2091 54 43 52.2091 43 50H58C60.2091 50 62 48.2091 62 46V18C62 15.7909 60.2091 14 58 14H43C43 11.7909 41.2091 10 39 10H6C3.79086 10 2 11.7909 2 14V50C2 52.2091 3.79086 54 6 54H39ZM39 12H6C4.89543 12 4 12.8954 4 14V50C4 51.1046 4.89543 52 6 52H39C40.1046 52 41 51.1046 41 50V14C41 12.8954 40.1046 12 39 12ZM43 48V16H58C59.1046 16 60 16.8954 60 18V46C60 47.1046 59.1046 48 58 48H43Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"next"}},{registerBlockVariation:yo}=wp.blocks;yo("jet-forms/submit-field",Zo);const{__:Eo}=wp.i18n,wo={name:"prev",title:Eo("Prev Page","jet-form-builder"),isActive:["action_type"],description:Eo("Go to Prev Page button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M15.385 39.6867C15.8028 40.1045 16.4764 40.1045 16.8942 39.6867C17.312 39.2774 17.312 38.5953 16.9027 38.186L10.721 32.0043L16.8942 25.8225C17.312 25.4047 17.312 24.7311 16.8942 24.3133C16.4764 23.8955 15.8028 23.8955 15.385 24.3133L8.29947 31.3989C7.96694 31.7314 7.96694 32.2686 8.29947 32.6011L15.385 39.6867Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M25 54C22.7909 54 21 52.2091 21 50H6C3.79086 50 2 48.2091 2 46V18C2 15.7909 3.79086 14 6 14H21C21 11.7909 22.7909 10 25 10H58C60.2091 10 62 11.7909 62 14V50C62 52.2091 60.2091 54 58 54H25ZM25 12H58C59.1046 12 60 12.8954 60 14V50C60 51.1046 59.1046 52 58 52H25C23.8954 52 23 51.1046 23 50V14C23 12.8954 23.8954 12 25 12ZM21 48V16H6C4.89543 16 4 16.8954 4 18V46C4 47.1046 4.89543 48 6 48H21Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"prev"}},{registerBlockVariation:vo}=wp.blocks;vo("jet-forms/submit-field",wo);const{__:_o}=wp.i18n,ko={name:"switch-state",title:_o("Change Render State","jet-form-builder"),isActive:(e,C)=>e.action_type===C.action_type,description:_o("Change Render State button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M28 39V46C28 48.2091 26.2091 50 24 50H4C1.79086 50 0 48.2091 0 46V18C0 15.7909 1.79086 14 4 14H24C26.2091 14 28 15.7909 28 18V25H36V18C36 15.7909 37.7909 14 40 14H60C62.2091 14 64 15.7909 64 18V46C64 48.2091 62.2091 50 60 50H40C37.7909 50 36 48.2091 36 46V39H28ZM4 16H24C25.1046 16 26 16.8954 26 18V37H15.4142L20.0711 32.3431C20.4616 31.9526 20.4616 31.3195 20.0711 30.9289C19.6805 30.5384 19.0474 30.5384 18.6569 30.9289L12.2929 37.2929C11.9024 37.6834 11.9024 38.3166 12.2929 38.7071L18.6569 45.0711C19.0474 45.4616 19.6805 45.4616 20.0711 45.0711C20.4616 44.6805 20.4616 44.0474 20.0711 43.6569L15.4142 39H26V46C26 47.1046 25.1046 48 24 48H4C2.89543 48 2 47.1046 2 46V18C2 16.8954 2.89543 16 4 16ZM28 37H36V27H28V37ZM38 46C38 47.1046 38.8954 48 40 48H60C61.1046 48 62 47.1046 62 46V18C62 16.8954 61.1046 16 60 16H40C38.8954 16 38 16.8954 38 18V25H48.5858L43.9289 20.3431C43.5384 19.9526 43.5384 19.3195 43.9289 18.9289C44.3195 18.5384 44.9526 18.5384 45.3431 18.9289L51.7071 25.2929C52.0976 25.6834 52.0976 26.3166 51.7071 26.7071L45.3431 33.0711C44.9526 33.4616 44.3195 33.4616 43.9289 33.0711C43.5384 32.6805 43.5384 32.0474 43.9289 31.6569L48.5858 27H38V46Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"switch-state"}},{__:jo}=wp.i18n,{useSelect:xo}=wp.data,{FormTokenField:Fo,PanelBody:Bo}=wp.components,{InspectorControls:Ao}=wp.blockEditor,{useUniqKey:Po}=JetFBHooks,{ActionButtonPlaceholder:So}=JetFBComponents,{column:No}=JetFBActions,Io=function(e){const{actionAttributes:C,setActionAttributes:t}=e,l=Po(),r=xo(e=>No(e("jet-forms/block-conditions").getSwitchableRenderStates(),"value"),[]);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(So,{...e}),(0,h.createElement)(Ao,null,(0,h.createElement)(Bo,{title:jo("Change Render State","jet-form-builder")},(0,h.createElement)(Fo,{key:l("switch_on"),label:jo("Switch state","jet-form-builder"),value:C.switch_on,suggestions:r,onChange:e=>t({switch_on:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0}))))},{registerBlockVariation:To}=wp.blocks,{addFilter:Oo}=wp.hooks;To("jet-forms/submit-field",ko),Oo("jet.fb.block.action-button.edit","jet-form-builder/switch-state-variation",e=>C=>"switch-state"!==C.attributes?.action_type?(0,h.createElement)(e,{...C}):(0,h.createElement)(Io,{...C}));const{createBlock:Jo}=wp.blocks,{name:Ro,icon:qo=""}=uo;uo.attributes.isPreview={type:"boolean",default:!1};const Do={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:qo}}),edit:function(e){const{attributes:C,setAttributes:t}=e;return C.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},eo):(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ro,null,(0,h.createElement)(Co,{...e}),(0,h.createElement)(to,{...e})),(0,h.createElement)(mo,{attributes:C,setAttributes:t}))},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Jo("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Jo(Ro,{...e}),priority:0},{type:"block",blocks:["core/buttons"],transform:(e,C)=>Jo(Ro,{label:C[0]?.attributes?.text||""}),priority:0}]}},zo=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M19.8398 23.9287L16.5449 33H15.1982L18.9922 23.0469H19.8604L19.8398 23.9287ZM22.6016 33L19.2998 23.9287L19.2793 23.0469H20.1475L23.9551 33H22.6016ZM22.4307 29.3154V30.3955H16.8389V29.3154H22.4307ZM29.7588 31.5645V22.5H31.0303V33H29.8682L29.7588 31.5645ZM24.7822 29.3838V29.2402C24.7822 28.6751 24.8506 28.1624 24.9873 27.7021C25.1286 27.2373 25.3268 26.8385 25.582 26.5059C25.8418 26.1732 26.1494 25.918 26.5049 25.7402C26.8649 25.5579 27.266 25.4668 27.708 25.4668C28.1729 25.4668 28.5785 25.5488 28.9248 25.7129C29.2757 25.8724 29.5719 26.1071 29.8135 26.417C30.0596 26.7223 30.2533 27.0915 30.3945 27.5244C30.5358 27.9574 30.6338 28.4473 30.6885 28.9941V29.623C30.6383 30.1654 30.5404 30.653 30.3945 31.0859C30.2533 31.5189 30.0596 31.888 29.8135 32.1934C29.5719 32.4987 29.2757 32.7334 28.9248 32.8975C28.5739 33.057 28.1637 33.1367 27.6943 33.1367C27.2614 33.1367 26.8649 33.0433 26.5049 32.8564C26.1494 32.6696 25.8418 32.4076 25.582 32.0703C25.3268 31.7331 25.1286 31.3366 24.9873 30.8809C24.8506 30.4206 24.7822 29.9215 24.7822 29.3838ZM26.0537 29.2402V29.3838C26.0537 29.7529 26.0902 30.0993 26.1631 30.4229C26.2406 30.7464 26.359 31.0312 26.5186 31.2773C26.6781 31.5234 26.8809 31.7171 27.127 31.8584C27.373 31.9951 27.667 32.0635 28.0088 32.0635C28.4281 32.0635 28.7721 31.9746 29.041 31.7969C29.3145 31.6191 29.5332 31.3844 29.6973 31.0928C29.8613 30.8011 29.9889 30.4844 30.0801 30.1426V28.4951C30.0254 28.2445 29.9456 28.0029 29.8408 27.7705C29.7406 27.5335 29.6084 27.3239 29.4443 27.1416C29.2848 26.9548 29.0866 26.8066 28.8496 26.6973C28.6172 26.5879 28.3415 26.5332 28.0225 26.5332C27.6761 26.5332 27.3776 26.6061 27.127 26.752C26.8809 26.8932 26.6781 27.0892 26.5186 27.3398C26.359 27.5859 26.2406 27.873 26.1631 28.2012C26.0902 28.5247 26.0537 28.8711 26.0537 29.2402ZM37.6611 31.5645V22.5H38.9326V33H37.7705L37.6611 31.5645ZM32.6846 29.3838V29.2402C32.6846 28.6751 32.7529 28.1624 32.8896 27.7021C33.0309 27.2373 33.2292 26.8385 33.4844 26.5059C33.7441 26.1732 34.0518 25.918 34.4072 25.7402C34.7673 25.5579 35.1683 25.4668 35.6104 25.4668C36.0752 25.4668 36.4808 25.5488 36.8271 25.7129C37.1781 25.8724 37.4743 26.1071 37.7158 26.417C37.9619 26.7223 38.1556 27.0915 38.2969 27.5244C38.4382 27.9574 38.5361 28.4473 38.5908 28.9941V29.623C38.5407 30.1654 38.4427 30.653 38.2969 31.0859C38.1556 31.5189 37.9619 31.888 37.7158 32.1934C37.4743 32.4987 37.1781 32.7334 36.8271 32.8975C36.4762 33.057 36.0661 33.1367 35.5967 33.1367C35.1637 33.1367 34.7673 33.0433 34.4072 32.8564C34.0518 32.6696 33.7441 32.4076 33.4844 32.0703C33.2292 31.7331 33.0309 31.3366 32.8896 30.8809C32.7529 30.4206 32.6846 29.9215 32.6846 29.3838ZM33.9561 29.2402V29.3838C33.9561 29.7529 33.9925 30.0993 34.0654 30.4229C34.1429 30.7464 34.2614 31.0312 34.4209 31.2773C34.5804 31.5234 34.7832 31.7171 35.0293 31.8584C35.2754 31.9951 35.5693 32.0635 35.9111 32.0635C36.3304 32.0635 36.6745 31.9746 36.9434 31.7969C37.2168 31.6191 37.4355 31.3844 37.5996 31.0928C37.7637 30.8011 37.8913 30.4844 37.9824 30.1426V28.4951C37.9277 28.2445 37.848 28.0029 37.7432 27.7705C37.6429 27.5335 37.5107 27.3239 37.3467 27.1416C37.1872 26.9548 36.9889 26.8066 36.752 26.6973C36.5195 26.5879 36.2438 26.5332 35.9248 26.5332C35.5785 26.5332 35.2799 26.6061 35.0293 26.752C34.7832 26.8932 34.5804 27.0892 34.4209 27.3398C34.2614 27.5859 34.1429 27.873 34.0654 28.2012C33.9925 28.5247 33.9561 28.8711 33.9561 29.2402ZM42.2754 25.6035V33H41.0039V25.6035H42.2754ZM40.9082 23.6416C40.9082 23.4365 40.9697 23.2633 41.0928 23.1221C41.2204 22.9808 41.4072 22.9102 41.6533 22.9102C41.8949 22.9102 42.0794 22.9808 42.207 23.1221C42.3392 23.2633 42.4053 23.4365 42.4053 23.6416C42.4053 23.8376 42.3392 24.0062 42.207 24.1475C42.0794 24.2842 41.8949 24.3525 41.6533 24.3525C41.4072 24.3525 41.2204 24.2842 41.0928 24.1475C40.9697 24.0062 40.9082 23.8376 40.9082 23.6416ZM47.4023 25.6035V26.5742H43.4033V25.6035H47.4023ZM44.7568 23.8057H46.0215V31.168C46.0215 31.4186 46.0602 31.6077 46.1377 31.7354C46.2152 31.863 46.3154 31.9473 46.4385 31.9883C46.5615 32.0293 46.6937 32.0498 46.835 32.0498C46.9398 32.0498 47.0492 32.0407 47.1631 32.0225C47.2816 31.9997 47.3704 31.9814 47.4297 31.9678L47.4365 33C47.3363 33.0319 47.2041 33.0615 47.04 33.0889C46.8805 33.1208 46.6868 33.1367 46.459 33.1367C46.1491 33.1367 45.8643 33.0752 45.6045 32.9521C45.3447 32.8291 45.1374 32.624 44.9824 32.3369C44.832 32.0452 44.7568 31.6533 44.7568 31.1611V23.8057ZM50.2598 25.6035V33H48.9883V25.6035H50.2598ZM48.8926 23.6416C48.8926 23.4365 48.9541 23.2633 49.0771 23.1221C49.2048 22.9808 49.3916 22.9102 49.6377 22.9102C49.8792 22.9102 50.0638 22.9808 50.1914 23.1221C50.3236 23.2633 50.3896 23.4365 50.3896 23.6416C50.3896 23.8376 50.3236 24.0062 50.1914 24.1475C50.0638 24.2842 49.8792 24.3525 49.6377 24.3525C49.3916 24.3525 49.2048 24.2842 49.0771 24.1475C48.9541 24.0062 48.8926 23.8376 48.8926 23.6416ZM51.9551 29.3838V29.2266C51.9551 28.6934 52.0326 28.1989 52.1875 27.7432C52.3424 27.2829 52.5658 26.8841 52.8574 26.5469C53.1491 26.2051 53.5023 25.9408 53.917 25.7539C54.3317 25.5625 54.7965 25.4668 55.3115 25.4668C55.8311 25.4668 56.2982 25.5625 56.7129 25.7539C57.1322 25.9408 57.4876 26.2051 57.7793 26.5469C58.0755 26.8841 58.3011 27.2829 58.4561 27.7432C58.611 28.1989 58.6885 28.6934 58.6885 29.2266V29.3838C58.6885 29.917 58.611 30.4115 58.4561 30.8672C58.3011 31.3229 58.0755 31.7217 57.7793 32.0635C57.4876 32.4007 57.1344 32.665 56.7197 32.8564C56.3096 33.0433 55.8447 33.1367 55.3252 33.1367C54.8057 33.1367 54.3385 33.0433 53.9238 32.8564C53.5091 32.665 53.1536 32.4007 52.8574 32.0635C52.5658 31.7217 52.3424 31.3229 52.1875 30.8672C52.0326 30.4115 51.9551 29.917 51.9551 29.3838ZM53.2197 29.2266V29.3838C53.2197 29.7529 53.263 30.1016 53.3496 30.4297C53.4362 30.7533 53.5661 31.0404 53.7393 31.291C53.917 31.5417 54.138 31.7399 54.4023 31.8857C54.6667 32.027 54.9743 32.0977 55.3252 32.0977C55.6715 32.0977 55.9746 32.027 56.2344 31.8857C56.4987 31.7399 56.7174 31.5417 56.8906 31.291C57.0638 31.0404 57.1937 30.7533 57.2803 30.4297C57.3714 30.1016 57.417 29.7529 57.417 29.3838V29.2266C57.417 28.862 57.3714 28.5179 57.2803 28.1943C57.1937 27.8662 57.0615 27.5768 56.8838 27.3262C56.7106 27.071 56.4919 26.8704 56.2275 26.7246C55.9678 26.5788 55.6624 26.5059 55.3115 26.5059C54.9652 26.5059 54.6598 26.5788 54.3955 26.7246C54.1357 26.8704 53.917 27.071 53.7393 27.3262C53.5661 27.5768 53.4362 27.8662 53.3496 28.1943C53.263 28.5179 53.2197 28.862 53.2197 29.2266ZM61.5391 27.1826V33H60.2744V25.6035H61.4707L61.5391 27.1826ZM61.2383 29.0215L60.7119 29.001C60.7165 28.4951 60.7917 28.028 60.9375 27.5996C61.0833 27.1667 61.2884 26.7907 61.5527 26.4717C61.8171 26.1527 62.1315 25.9066 62.4961 25.7334C62.8652 25.5557 63.2731 25.4668 63.7197 25.4668C64.0843 25.4668 64.4124 25.5169 64.7041 25.6172C64.9958 25.7129 65.2441 25.8678 65.4492 26.082C65.6589 26.2962 65.8184 26.5742 65.9277 26.916C66.0371 27.2533 66.0918 27.6657 66.0918 28.1533V33H64.8203V28.1396C64.8203 27.7523 64.7633 27.4424 64.6494 27.21C64.5355 26.973 64.3691 26.8021 64.1504 26.6973C63.9316 26.5879 63.6628 26.5332 63.3438 26.5332C63.0293 26.5332 62.7422 26.5993 62.4824 26.7314C62.2272 26.8636 62.0062 27.0459 61.8193 27.2783C61.637 27.5107 61.4935 27.7773 61.3887 28.0781C61.2884 28.3743 61.2383 28.6888 61.2383 29.0215ZM72.374 31.7354V27.9277C72.374 27.6361 72.3148 27.3831 72.1963 27.1689C72.0824 26.9502 71.9092 26.7816 71.6768 26.6631C71.4443 26.5446 71.1572 26.4854 70.8154 26.4854C70.4964 26.4854 70.2161 26.54 69.9746 26.6494C69.7376 26.7588 69.5508 26.9023 69.4141 27.0801C69.2819 27.2578 69.2158 27.4492 69.2158 27.6543H67.9512C67.9512 27.39 68.0195 27.1279 68.1562 26.8682C68.293 26.6084 68.4889 26.3737 68.7441 26.1641C69.0039 25.9499 69.3138 25.7812 69.6738 25.6582C70.0384 25.5306 70.444 25.4668 70.8906 25.4668C71.4284 25.4668 71.9023 25.5579 72.3125 25.7402C72.7272 25.9225 73.0508 26.1982 73.2832 26.5674C73.5202 26.932 73.6387 27.39 73.6387 27.9414V31.3867C73.6387 31.6328 73.6592 31.8949 73.7002 32.1729C73.7458 32.4508 73.8118 32.6901 73.8984 32.8906V33H72.5791C72.5153 32.8542 72.4652 32.6605 72.4287 32.4189C72.3923 32.1729 72.374 31.945 72.374 31.7354ZM72.5928 28.5156L72.6064 29.4043H71.3281C70.9681 29.4043 70.6468 29.4339 70.3643 29.4932C70.0817 29.5479 69.8447 29.6322 69.6533 29.7461C69.4619 29.86 69.3161 30.0036 69.2158 30.1768C69.1156 30.3454 69.0654 30.5436 69.0654 30.7715C69.0654 31.0039 69.1178 31.2158 69.2227 31.4072C69.3275 31.5986 69.4847 31.7513 69.6943 31.8652C69.9085 31.9746 70.1706 32.0293 70.4805 32.0293C70.8678 32.0293 71.2096 31.9473 71.5059 31.7832C71.8021 31.6191 72.0368 31.4186 72.21 31.1816C72.3877 30.9447 72.4834 30.7145 72.4971 30.4912L73.0371 31.0996C73.0052 31.291 72.9186 31.5029 72.7773 31.7354C72.6361 31.9678 72.4469 32.1911 72.21 32.4053C71.9775 32.6149 71.6995 32.7904 71.376 32.9316C71.057 33.0684 70.6969 33.1367 70.2959 33.1367C69.7946 33.1367 69.3548 33.0387 68.9766 32.8428C68.6029 32.6468 68.3112 32.3848 68.1016 32.0566C67.8965 31.724 67.7939 31.3525 67.7939 30.9424C67.7939 30.5459 67.8714 30.1973 68.0264 29.8965C68.1813 29.5911 68.4046 29.3382 68.6963 29.1377C68.988 28.9326 69.3389 28.7777 69.749 28.6729C70.1592 28.568 70.6172 28.5156 71.123 28.5156H72.5928ZM77.002 22.5V33H75.7305V22.5H77.002ZM83.8789 25.6035V33H82.6074V25.6035H83.8789ZM82.5117 23.6416C82.5117 23.4365 82.5732 23.2633 82.6963 23.1221C82.8239 22.9808 83.0107 22.9102 83.2568 22.9102C83.4984 22.9102 83.6829 22.9808 83.8105 23.1221C83.9427 23.2633 84.0088 23.4365 84.0088 23.6416C84.0088 23.8376 83.9427 24.0062 83.8105 24.1475C83.6829 24.2842 83.4984 24.3525 83.2568 24.3525C83.0107 24.3525 82.8239 24.2842 82.6963 24.1475C82.5732 24.0062 82.5117 23.8376 82.5117 23.6416ZM87.1738 27.1826V33H85.9092V25.6035H87.1055L87.1738 27.1826ZM86.873 29.0215L86.3467 29.001C86.3512 28.4951 86.4264 28.028 86.5723 27.5996C86.7181 27.1667 86.9232 26.7907 87.1875 26.4717C87.4518 26.1527 87.7663 25.9066 88.1309 25.7334C88.5 25.5557 88.9079 25.4668 89.3545 25.4668C89.7191 25.4668 90.0472 25.5169 90.3389 25.6172C90.6305 25.7129 90.8789 25.8678 91.084 26.082C91.2936 26.2962 91.4531 26.5742 91.5625 26.916C91.6719 27.2533 91.7266 27.6657 91.7266 28.1533V33H90.4551V28.1396C90.4551 27.7523 90.3981 27.4424 90.2842 27.21C90.1702 26.973 90.0039 26.8021 89.7852 26.6973C89.5664 26.5879 89.2975 26.5332 88.9785 26.5332C88.6641 26.5332 88.377 26.5993 88.1172 26.7314C87.862 26.8636 87.641 27.0459 87.4541 27.2783C87.2718 27.5107 87.1283 27.7773 87.0234 28.0781C86.9232 28.3743 86.873 28.6888 86.873 29.0215ZM95.5342 33H94.2695V24.8242C94.2695 24.291 94.3652 23.8421 94.5566 23.4775C94.7526 23.1084 95.0329 22.8304 95.3975 22.6436C95.762 22.4521 96.195 22.3564 96.6963 22.3564C96.8421 22.3564 96.988 22.3656 97.1338 22.3838C97.2842 22.402 97.43 22.4294 97.5713 22.4658L97.5029 23.498C97.4072 23.4753 97.2979 23.4593 97.1748 23.4502C97.0563 23.4411 96.9378 23.4365 96.8193 23.4365C96.5505 23.4365 96.318 23.4912 96.1221 23.6006C95.9307 23.7054 95.7848 23.8604 95.6846 24.0654C95.5843 24.2705 95.5342 24.5234 95.5342 24.8242V33ZM97.1064 25.6035V26.5742H93.1006V25.6035H97.1064ZM98.1797 29.3838V29.2266C98.1797 28.6934 98.2572 28.1989 98.4121 27.7432C98.5671 27.2829 98.7904 26.8841 99.082 26.5469C99.3737 26.2051 99.7269 25.9408 100.142 25.7539C100.556 25.5625 101.021 25.4668 101.536 25.4668C102.056 25.4668 102.523 25.5625 102.938 25.7539C103.357 25.9408 103.712 26.2051 104.004 26.5469C104.3 26.8841 104.526 27.2829 104.681 27.7432C104.836 28.1989 104.913 28.6934 104.913 29.2266V29.3838C104.913 29.917 104.836 30.4115 104.681 30.8672C104.526 31.3229 104.3 31.7217 104.004 32.0635C103.712 32.4007 103.359 32.665 102.944 32.8564C102.534 33.0433 102.069 33.1367 101.55 33.1367C101.03 33.1367 100.563 33.0433 100.148 32.8564C99.7337 32.665 99.3783 32.4007 99.082 32.0635C98.7904 31.7217 98.5671 31.3229 98.4121 30.8672C98.2572 30.4115 98.1797 29.917 98.1797 29.3838ZM99.4443 29.2266V29.3838C99.4443 29.7529 99.4876 30.1016 99.5742 30.4297C99.6608 30.7533 99.7907 31.0404 99.9639 31.291C100.142 31.5417 100.363 31.7399 100.627 31.8857C100.891 32.027 101.199 32.0977 101.55 32.0977C101.896 32.0977 102.199 32.027 102.459 31.8857C102.723 31.7399 102.942 31.5417 103.115 31.291C103.288 31.0404 103.418 30.7533 103.505 30.4297C103.596 30.1016 103.642 29.7529 103.642 29.3838V29.2266C103.642 28.862 103.596 28.5179 103.505 28.1943C103.418 27.8662 103.286 27.5768 103.108 27.3262C102.935 27.071 102.716 26.8704 102.452 26.7246C102.192 26.5788 101.887 26.5059 101.536 26.5059C101.19 26.5059 100.884 26.5788 100.62 26.7246C100.36 26.8704 100.142 27.071 99.9639 27.3262C99.7907 27.5768 99.6608 27.8662 99.5742 28.1943C99.4876 28.5179 99.4443 28.862 99.4443 29.2266ZM107.764 26.7656V33H106.499V25.6035H107.729L107.764 26.7656ZM110.074 25.5625L110.067 26.7383C109.963 26.7155 109.862 26.7018 109.767 26.6973C109.675 26.6882 109.571 26.6836 109.452 26.6836C109.16 26.6836 108.903 26.7292 108.68 26.8203C108.456 26.9115 108.267 27.0391 108.112 27.2031C107.957 27.3672 107.834 27.5632 107.743 27.791C107.657 28.0143 107.6 28.2604 107.572 28.5293L107.217 28.7344C107.217 28.2878 107.26 27.8685 107.347 27.4766C107.438 27.0846 107.577 26.7383 107.764 26.4375C107.951 26.1322 108.188 25.8952 108.475 25.7266C108.766 25.5534 109.113 25.4668 109.514 25.4668C109.605 25.4668 109.71 25.4782 109.828 25.501C109.947 25.5192 110.029 25.5397 110.074 25.5625ZM112.501 27.0732V33H111.229V25.6035H112.433L112.501 27.0732ZM112.241 29.0215L111.653 29.001C111.658 28.4951 111.724 28.028 111.852 27.5996C111.979 27.1667 112.168 26.7907 112.419 26.4717C112.67 26.1527 112.982 25.9066 113.355 25.7334C113.729 25.5557 114.162 25.4668 114.654 25.4668C115.001 25.4668 115.32 25.5169 115.611 25.6172C115.903 25.7129 116.156 25.8656 116.37 26.0752C116.584 26.2848 116.751 26.5537 116.869 26.8818C116.988 27.21 117.047 27.6064 117.047 28.0713V33H115.782V28.1328C115.782 27.7454 115.716 27.4355 115.584 27.2031C115.456 26.9707 115.274 26.8021 115.037 26.6973C114.8 26.5879 114.522 26.5332 114.203 26.5332C113.829 26.5332 113.517 26.5993 113.267 26.7314C113.016 26.8636 112.815 27.0459 112.665 27.2783C112.515 27.5107 112.405 27.7773 112.337 28.0781C112.273 28.3743 112.241 28.6888 112.241 29.0215ZM117.033 28.3242L116.186 28.584C116.19 28.1784 116.256 27.7887 116.384 27.415C116.516 27.0413 116.705 26.7087 116.951 26.417C117.202 26.1253 117.509 25.8952 117.874 25.7266C118.239 25.5534 118.656 25.4668 119.125 25.4668C119.521 25.4668 119.872 25.5192 120.178 25.624C120.488 25.7288 120.747 25.8906 120.957 26.1094C121.171 26.3236 121.333 26.5993 121.442 26.9365C121.552 27.2738 121.606 27.6748 121.606 28.1396V33H120.335V28.126C120.335 27.7113 120.269 27.39 120.137 27.1621C120.009 26.9297 119.827 26.7679 119.59 26.6768C119.357 26.5811 119.079 26.5332 118.756 26.5332C118.478 26.5332 118.232 26.5811 118.018 26.6768C117.803 26.7725 117.623 26.9046 117.478 27.0732C117.332 27.2373 117.22 27.4264 117.143 27.6406C117.07 27.8548 117.033 28.0827 117.033 28.3242ZM127.882 31.7354V27.9277C127.882 27.6361 127.823 27.3831 127.704 27.1689C127.59 26.9502 127.417 26.7816 127.185 26.6631C126.952 26.5446 126.665 26.4854 126.323 26.4854C126.004 26.4854 125.724 26.54 125.482 26.6494C125.245 26.7588 125.059 26.9023 124.922 27.0801C124.79 27.2578 124.724 27.4492 124.724 27.6543H123.459C123.459 27.39 123.527 27.1279 123.664 26.8682C123.801 26.6084 123.997 26.3737 124.252 26.1641C124.512 25.9499 124.822 25.7812 125.182 25.6582C125.546 25.5306 125.952 25.4668 126.398 25.4668C126.936 25.4668 127.41 25.5579 127.82 25.7402C128.235 25.9225 128.559 26.1982 128.791 26.5674C129.028 26.932 129.146 27.39 129.146 27.9414V31.3867C129.146 31.6328 129.167 31.8949 129.208 32.1729C129.254 32.4508 129.32 32.6901 129.406 32.8906V33H128.087C128.023 32.8542 127.973 32.6605 127.937 32.4189C127.9 32.1729 127.882 31.945 127.882 31.7354ZM128.101 28.5156L128.114 29.4043H126.836C126.476 29.4043 126.155 29.4339 125.872 29.4932C125.59 29.5479 125.353 29.6322 125.161 29.7461C124.97 29.86 124.824 30.0036 124.724 30.1768C124.623 30.3454 124.573 30.5436 124.573 30.7715C124.573 31.0039 124.626 31.2158 124.73 31.4072C124.835 31.5986 124.993 31.7513 125.202 31.8652C125.416 31.9746 125.678 32.0293 125.988 32.0293C126.376 32.0293 126.717 31.9473 127.014 31.7832C127.31 31.6191 127.545 31.4186 127.718 31.1816C127.896 30.9447 127.991 30.7145 128.005 30.4912L128.545 31.0996C128.513 31.291 128.426 31.5029 128.285 31.7354C128.144 31.9678 127.955 32.1911 127.718 32.4053C127.485 32.6149 127.207 32.7904 126.884 32.9316C126.565 33.0684 126.205 33.1367 125.804 33.1367C125.302 33.1367 124.863 33.0387 124.484 32.8428C124.111 32.6468 123.819 32.3848 123.609 32.0566C123.404 31.724 123.302 31.3525 123.302 30.9424C123.302 30.5459 123.379 30.1973 123.534 29.8965C123.689 29.5911 123.912 29.3382 124.204 29.1377C124.496 28.9326 124.847 28.7777 125.257 28.6729C125.667 28.568 126.125 28.5156 126.631 28.5156H128.101ZM134.232 25.6035V26.5742H130.233V25.6035H134.232ZM131.587 23.8057H132.852V31.168C132.852 31.4186 132.89 31.6077 132.968 31.7354C133.045 31.863 133.146 31.9473 133.269 31.9883C133.392 32.0293 133.524 32.0498 133.665 32.0498C133.77 32.0498 133.879 32.0407 133.993 32.0225C134.112 31.9997 134.201 31.9814 134.26 31.9678L134.267 33C134.166 33.0319 134.034 33.0615 133.87 33.0889C133.711 33.1208 133.517 33.1367 133.289 33.1367C132.979 33.1367 132.694 33.0752 132.435 32.9521C132.175 32.8291 131.967 32.624 131.812 32.3369C131.662 32.0452 131.587 31.6533 131.587 31.1611V23.8057ZM137.09 25.6035V33H135.818V25.6035H137.09ZM135.723 23.6416C135.723 23.4365 135.784 23.2633 135.907 23.1221C136.035 22.9808 136.222 22.9102 136.468 22.9102C136.709 22.9102 136.894 22.9808 137.021 23.1221C137.154 23.2633 137.22 23.4365 137.22 23.6416C137.22 23.8376 137.154 24.0062 137.021 24.1475C136.894 24.2842 136.709 24.3525 136.468 24.3525C136.222 24.3525 136.035 24.2842 135.907 24.1475C135.784 24.0062 135.723 23.8376 135.723 23.6416ZM138.785 29.3838V29.2266C138.785 28.6934 138.863 28.1989 139.018 27.7432C139.173 27.2829 139.396 26.8841 139.688 26.5469C139.979 26.2051 140.332 25.9408 140.747 25.7539C141.162 25.5625 141.627 25.4668 142.142 25.4668C142.661 25.4668 143.128 25.5625 143.543 25.7539C143.962 25.9408 144.318 26.2051 144.609 26.5469C144.906 26.8841 145.131 27.2829 145.286 27.7432C145.441 28.1989 145.519 28.6934 145.519 29.2266V29.3838C145.519 29.917 145.441 30.4115 145.286 30.8672C145.131 31.3229 144.906 31.7217 144.609 32.0635C144.318 32.4007 143.965 32.665 143.55 32.8564C143.14 33.0433 142.675 33.1367 142.155 33.1367C141.636 33.1367 141.169 33.0433 140.754 32.8564C140.339 32.665 139.984 32.4007 139.688 32.0635C139.396 31.7217 139.173 31.3229 139.018 30.8672C138.863 30.4115 138.785 29.917 138.785 29.3838ZM140.05 29.2266V29.3838C140.05 29.7529 140.093 30.1016 140.18 30.4297C140.266 30.7533 140.396 31.0404 140.569 31.291C140.747 31.5417 140.968 31.7399 141.232 31.8857C141.497 32.027 141.804 32.0977 142.155 32.0977C142.502 32.0977 142.805 32.027 143.064 31.8857C143.329 31.7399 143.548 31.5417 143.721 31.291C143.894 31.0404 144.024 30.7533 144.11 30.4297C144.201 30.1016 144.247 29.7529 144.247 29.3838V29.2266C144.247 28.862 144.201 28.5179 144.11 28.1943C144.024 27.8662 143.892 27.5768 143.714 27.3262C143.541 27.071 143.322 26.8704 143.058 26.7246C142.798 26.5788 142.493 26.5059 142.142 26.5059C141.795 26.5059 141.49 26.5788 141.226 26.7246C140.966 26.8704 140.747 27.071 140.569 27.3262C140.396 27.5768 140.266 27.8662 140.18 28.1943C140.093 28.5179 140.05 28.862 140.05 29.2266ZM148.369 27.1826V33H147.104V25.6035H148.301L148.369 27.1826ZM148.068 29.0215L147.542 29.001C147.547 28.4951 147.622 28.028 147.768 27.5996C147.913 27.1667 148.118 26.7907 148.383 26.4717C148.647 26.1527 148.962 25.9066 149.326 25.7334C149.695 25.5557 150.103 25.4668 150.55 25.4668C150.914 25.4668 151.243 25.5169 151.534 25.6172C151.826 25.7129 152.074 25.8678 152.279 26.082C152.489 26.2962 152.648 26.5742 152.758 26.916C152.867 27.2533 152.922 27.6657 152.922 28.1533V33H151.65V28.1396C151.65 27.7523 151.593 27.4424 151.479 27.21C151.366 26.973 151.199 26.8021 150.98 26.6973C150.762 26.5879 150.493 26.5332 150.174 26.5332C149.859 26.5332 149.572 26.5993 149.312 26.7314C149.057 26.8636 148.836 27.0459 148.649 27.2783C148.467 27.5107 148.324 27.7773 148.219 28.0781C148.118 28.3743 148.068 28.6888 148.068 29.0215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"42",width:"266",height:"81",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M29.4814 59.3755H27.0122V58.3789H29.4814C29.9596 58.3789 30.3468 58.3027 30.6431 58.1504C30.9393 57.998 31.1551 57.7865 31.2905 57.5156C31.4302 57.2448 31.5 56.9359 31.5 56.5889C31.5 56.2715 31.4302 55.9731 31.2905 55.6938C31.1551 55.4146 30.9393 55.1903 30.6431 55.021C30.3468 54.8475 29.9596 54.7607 29.4814 54.7607H27.2979V63H26.0728V53.7578H29.4814C30.1797 53.7578 30.77 53.8784 31.2524 54.1196C31.7349 54.3608 32.1009 54.6951 32.3506 55.1226C32.6003 55.5457 32.7251 56.0303 32.7251 56.5762C32.7251 57.1686 32.6003 57.6743 32.3506 58.0933C32.1009 58.5122 31.7349 58.8317 31.2524 59.0518C30.77 59.2676 30.1797 59.3755 29.4814 59.3755ZM35.3721 56.1318V63H34.1914V56.1318H35.3721ZM34.1025 54.3101C34.1025 54.1196 34.1597 53.9588 34.2739 53.8276C34.3924 53.6965 34.5659 53.6309 34.7944 53.6309C35.0187 53.6309 35.1901 53.6965 35.3086 53.8276C35.4313 53.9588 35.4927 54.1196 35.4927 54.3101C35.4927 54.492 35.4313 54.6486 35.3086 54.7798C35.1901 54.9067 35.0187 54.9702 34.7944 54.9702C34.5659 54.9702 34.3924 54.9067 34.2739 54.7798C34.1597 54.6486 34.1025 54.492 34.1025 54.3101ZM40.0059 62.1621C40.2852 62.1621 40.5433 62.105 40.7803 61.9907C41.0173 61.8765 41.2119 61.7199 41.3643 61.521C41.5166 61.3179 41.6034 61.0872 41.6245 60.8291H42.7417C42.7205 61.2354 42.583 61.6141 42.3291 61.9653C42.0794 62.3123 41.7515 62.5938 41.3452 62.8096C40.939 63.0212 40.4925 63.127 40.0059 63.127C39.4896 63.127 39.0389 63.036 38.6538 62.854C38.2729 62.672 37.9556 62.4224 37.7017 62.105C37.452 61.7876 37.2637 61.4237 37.1367 61.0132C37.014 60.5985 36.9526 60.1605 36.9526 59.6992V59.4326C36.9526 58.9714 37.014 58.5355 37.1367 58.125C37.2637 57.7103 37.452 57.3442 37.7017 57.0269C37.9556 56.7095 38.2729 56.4598 38.6538 56.2778C39.0389 56.0959 39.4896 56.0049 40.0059 56.0049C40.5433 56.0049 41.013 56.1149 41.415 56.335C41.8171 56.5508 42.1323 56.847 42.3608 57.2236C42.5936 57.596 42.7205 58.0192 42.7417 58.4932H41.6245C41.6034 58.2096 41.5229 57.9536 41.3833 57.7251C41.2479 57.4966 41.0617 57.3146 40.8247 57.1792C40.592 57.0396 40.319 56.9697 40.0059 56.9697C39.6462 56.9697 39.3436 57.0417 39.0981 57.1855C38.8569 57.3252 38.6644 57.5156 38.5205 57.7568C38.3809 57.9938 38.2793 58.2583 38.2158 58.5503C38.1566 58.8381 38.127 59.1322 38.127 59.4326V59.6992C38.127 59.9997 38.1566 60.2959 38.2158 60.5879C38.2751 60.8799 38.3745 61.1444 38.5142 61.3813C38.658 61.6183 38.8506 61.8088 39.0918 61.9526C39.3372 62.0923 39.6419 62.1621 40.0059 62.1621ZM45.2427 53.25V63H44.062V53.25H45.2427ZM49.4385 56.1318L46.4424 59.3374L44.7666 61.0767L44.6714 59.8262L45.8711 58.3916L48.0039 56.1318H49.4385ZM48.3657 63L45.9155 59.7246L46.5249 58.6772L49.7495 63H48.3657ZM55.0435 57.4966V63H53.8628V56.1318H54.98L55.0435 57.4966ZM54.8022 59.3057L54.2563 59.2866C54.2606 58.8169 54.3219 58.3831 54.4404 57.9854C54.5589 57.5833 54.7345 57.2342 54.9673 56.938C55.2 56.6418 55.4899 56.4132 55.8369 56.2524C56.1839 56.0874 56.5859 56.0049 57.043 56.0049C57.3646 56.0049 57.6608 56.0514 57.9316 56.1445C58.2025 56.2334 58.4373 56.3752 58.6362 56.5698C58.8351 56.7645 58.9896 57.0142 59.0996 57.3188C59.2096 57.6235 59.2646 57.9917 59.2646 58.4233V63H58.0903V58.4805C58.0903 58.1208 58.029 57.833 57.9062 57.6172C57.7878 57.4014 57.6185 57.2448 57.3984 57.1475C57.1784 57.0459 56.9202 56.9951 56.624 56.9951C56.277 56.9951 55.9871 57.0565 55.7544 57.1792C55.5216 57.3019 55.3354 57.4712 55.1958 57.687C55.0562 57.9028 54.9546 58.1504 54.8911 58.4297C54.8319 58.7048 54.8022 58.9967 54.8022 59.3057ZM59.252 58.6582L58.4648 58.8994C58.4691 58.5228 58.5304 58.161 58.6489 57.814C58.7716 57.467 58.9473 57.158 59.1758 56.8872C59.4085 56.6164 59.6942 56.4027 60.0327 56.2461C60.3713 56.0853 60.7585 56.0049 61.1943 56.0049C61.5625 56.0049 61.8883 56.0535 62.1719 56.1509C62.4596 56.2482 62.7008 56.3984 62.8955 56.6016C63.0944 56.8005 63.2446 57.0565 63.3462 57.3696C63.4478 57.6828 63.4985 58.0552 63.4985 58.4868V63H62.3179V58.4741C62.3179 58.089 62.2565 57.7907 62.1338 57.5791C62.0153 57.3633 61.846 57.2131 61.626 57.1284C61.4102 57.0396 61.152 56.9951 60.8516 56.9951C60.5934 56.9951 60.3649 57.0396 60.166 57.1284C59.9671 57.2173 59.8 57.34 59.6646 57.4966C59.5291 57.6489 59.4255 57.8245 59.3535 58.0234C59.2858 58.2223 59.252 58.4339 59.252 58.6582ZM68.126 63.127C67.6478 63.127 67.214 63.0465 66.8247 62.8857C66.4396 62.7207 66.1074 62.4901 65.8281 62.1938C65.5531 61.8976 65.3415 61.5464 65.1934 61.1401C65.0452 60.7339 64.9712 60.2896 64.9712 59.8071V59.5405C64.9712 58.9819 65.0537 58.4847 65.2188 58.0488C65.3838 57.6087 65.6081 57.2363 65.8916 56.9316C66.1751 56.627 66.4967 56.3963 66.8564 56.2397C67.2161 56.0832 67.5885 56.0049 67.9736 56.0049C68.4645 56.0049 68.8877 56.0895 69.2432 56.2588C69.6029 56.4281 69.897 56.665 70.1255 56.9697C70.354 57.2702 70.5233 57.6257 70.6333 58.0361C70.7433 58.4424 70.7983 58.8867 70.7983 59.3691V59.896H65.6694V58.9375H69.624V58.8486C69.6071 58.5439 69.5436 58.2477 69.4336 57.96C69.3278 57.6722 69.1585 57.4352 68.9258 57.249C68.693 57.0628 68.3757 56.9697 67.9736 56.9697C67.707 56.9697 67.4616 57.0269 67.2373 57.1411C67.013 57.2511 66.8205 57.4162 66.6597 57.6362C66.4989 57.8563 66.374 58.125 66.2852 58.4424C66.1963 58.7598 66.1519 59.1258 66.1519 59.5405V59.8071C66.1519 60.133 66.1963 60.4398 66.2852 60.7275C66.3783 61.0111 66.5116 61.2607 66.6851 61.4766C66.8628 61.6924 67.0765 61.8617 67.3262 61.9844C67.5801 62.1071 67.8678 62.1685 68.1895 62.1685C68.6042 62.1685 68.9554 62.0838 69.2432 61.9146C69.5309 61.7453 69.7827 61.5189 69.9985 61.2354L70.7095 61.8003C70.5614 62.0246 70.373 62.2383 70.1445 62.4414C69.916 62.6445 69.6346 62.8096 69.3003 62.9365C68.9702 63.0635 68.5788 63.127 68.126 63.127ZM79.5962 61.4131V56.1318H80.7769V63H79.6533L79.5962 61.4131ZM79.8184 59.9658L80.3071 59.9531C80.3071 60.4102 80.2585 60.8333 80.1611 61.2227C80.068 61.6077 79.9157 61.9421 79.7041 62.2256C79.4925 62.5091 79.2153 62.7313 78.8726 62.8921C78.5298 63.0487 78.113 63.127 77.6221 63.127C77.2878 63.127 76.981 63.0783 76.7017 62.981C76.4266 62.8836 76.1896 62.7334 75.9907 62.5303C75.7918 62.3271 75.6374 62.0627 75.5273 61.7368C75.4215 61.411 75.3687 61.0195 75.3687 60.5625V56.1318H76.543V60.5752C76.543 60.8841 76.5768 61.1401 76.6445 61.3433C76.7165 61.5422 76.8117 61.7008 76.9302 61.8193C77.0529 61.9336 77.1883 62.014 77.3364 62.0605C77.4888 62.1071 77.6453 62.1304 77.8062 62.1304C78.3055 62.1304 78.7012 62.0352 78.9932 61.8447C79.2852 61.6501 79.4946 61.3898 79.6216 61.064C79.7528 60.7339 79.8184 60.3678 79.8184 59.9658ZM83.7412 57.4521V65.6406H82.5605V56.1318H83.6396L83.7412 57.4521ZM88.3687 59.5088V59.6421C88.3687 60.1414 88.3094 60.6048 88.1909 61.0322C88.0724 61.4554 87.8989 61.8236 87.6704 62.1367C87.4461 62.4499 87.1689 62.6932 86.8389 62.8667C86.5088 63.0402 86.13 63.127 85.7026 63.127C85.2668 63.127 84.8817 63.055 84.5474 62.9111C84.2131 62.7673 83.9295 62.5578 83.6968 62.2827C83.464 62.0076 83.2778 61.6776 83.1382 61.2925C83.0028 60.9074 82.9097 60.4736 82.8589 59.9912V59.2803C82.9097 58.7725 83.0049 58.3175 83.1445 57.9155C83.2842 57.5135 83.4683 57.1707 83.6968 56.8872C83.9295 56.5994 84.2109 56.3815 84.541 56.2334C84.8711 56.0811 85.252 56.0049 85.6836 56.0049C86.1152 56.0049 86.4982 56.0895 86.8325 56.2588C87.1668 56.4238 87.4482 56.6608 87.6768 56.9697C87.9053 57.2786 88.0767 57.6489 88.1909 58.0806C88.3094 58.508 88.3687 58.984 88.3687 59.5088ZM87.188 59.6421V59.5088C87.188 59.166 87.152 58.8444 87.0801 58.5439C87.0081 58.2393 86.896 57.9727 86.7437 57.7441C86.5955 57.5114 86.4051 57.3294 86.1724 57.1982C85.9396 57.0628 85.6624 56.9951 85.3408 56.9951C85.0446 56.9951 84.7865 57.0459 84.5664 57.1475C84.3506 57.249 84.1665 57.3866 84.0142 57.5601C83.8618 57.7293 83.737 57.924 83.6396 58.144C83.5465 58.3599 83.4767 58.5841 83.4302 58.8169V60.4609C83.5148 60.7572 83.6333 61.0365 83.7856 61.2988C83.938 61.557 84.1411 61.7664 84.395 61.9272C84.6489 62.0838 84.9684 62.1621 85.3535 62.1621C85.6709 62.1621 85.9438 62.0965 86.1724 61.9653C86.4051 61.8299 86.5955 61.6458 86.7437 61.4131C86.896 61.1803 87.0081 60.9137 87.0801 60.6133C87.152 60.3086 87.188 59.9849 87.188 59.6421ZM97.1411 61.8257V58.29C97.1411 58.0192 97.0861 57.7843 96.9761 57.5854C96.8703 57.3823 96.7095 57.2257 96.4937 57.1157C96.2778 57.0057 96.0112 56.9507 95.6938 56.9507C95.3976 56.9507 95.1374 57.0015 94.9131 57.103C94.693 57.2046 94.5195 57.3379 94.3926 57.5029C94.2699 57.668 94.2085 57.8457 94.2085 58.0361H93.0342C93.0342 57.7907 93.0977 57.5474 93.2246 57.3062C93.3516 57.0649 93.5335 56.847 93.7705 56.6523C94.0117 56.4535 94.2995 56.2969 94.6338 56.1826C94.9723 56.0641 95.349 56.0049 95.7637 56.0049C96.263 56.0049 96.7031 56.0895 97.084 56.2588C97.4691 56.4281 97.7695 56.6841 97.9854 57.0269C98.2054 57.3654 98.3154 57.7907 98.3154 58.3027V61.502C98.3154 61.7305 98.3345 61.9738 98.3726 62.2319C98.4149 62.4901 98.4762 62.7122 98.5566 62.8984V63H97.3315C97.2723 62.8646 97.2257 62.6847 97.1919 62.4604C97.158 62.2319 97.1411 62.0203 97.1411 61.8257ZM97.3442 58.8359L97.3569 59.6611H96.1699C95.8356 59.6611 95.5373 59.6886 95.2749 59.7437C95.0125 59.7944 94.7925 59.8727 94.6147 59.9785C94.437 60.0843 94.3016 60.2176 94.2085 60.3784C94.1154 60.535 94.0688 60.7191 94.0688 60.9307C94.0688 61.1465 94.1175 61.3433 94.2148 61.521C94.3122 61.6987 94.4582 61.8405 94.6528 61.9463C94.8517 62.0479 95.0951 62.0986 95.3828 62.0986C95.7425 62.0986 96.0599 62.0225 96.335 61.8701C96.61 61.7178 96.828 61.5316 96.9888 61.3115C97.1538 61.0915 97.2427 60.8778 97.2554 60.6704L97.7568 61.2354C97.7272 61.4131 97.6468 61.6099 97.5156 61.8257C97.3844 62.0415 97.2088 62.2489 96.9888 62.4478C96.7729 62.6424 96.5148 62.8053 96.2144 62.9365C95.9181 63.0635 95.5838 63.127 95.2114 63.127C94.7459 63.127 94.3376 63.036 93.9863 62.854C93.6393 62.672 93.3685 62.4287 93.1738 62.124C92.9834 61.8151 92.8882 61.4702 92.8882 61.0894C92.8882 60.7212 92.9601 60.3975 93.104 60.1182C93.2479 59.8346 93.4552 59.5998 93.7261 59.4136C93.9969 59.2231 94.3228 59.0793 94.7036 58.9819C95.0845 58.8846 95.5098 58.8359 95.9795 58.8359H97.3442ZM103.038 56.1318V57.0332H99.3247V56.1318H103.038ZM100.582 54.4624H101.756V61.2988C101.756 61.5316 101.792 61.7072 101.864 61.8257C101.936 61.9442 102.029 62.0225 102.143 62.0605C102.257 62.0986 102.38 62.1177 102.511 62.1177C102.609 62.1177 102.71 62.1092 102.816 62.0923C102.926 62.0711 103.008 62.0542 103.063 62.0415L103.07 63C102.977 63.0296 102.854 63.0571 102.702 63.0825C102.554 63.1121 102.374 63.127 102.162 63.127C101.874 63.127 101.61 63.0698 101.369 62.9556C101.127 62.8413 100.935 62.6509 100.791 62.3843C100.651 62.1134 100.582 61.7495 100.582 61.2925V54.4624ZM110.516 56.1318V57.0332H106.802V56.1318H110.516ZM108.059 54.4624H109.233V61.2988C109.233 61.5316 109.269 61.7072 109.341 61.8257C109.413 61.9442 109.506 62.0225 109.621 62.0605C109.735 62.0986 109.858 62.1177 109.989 62.1177C110.086 62.1177 110.188 62.1092 110.293 62.0923C110.403 62.0711 110.486 62.0542 110.541 62.0415L110.547 63C110.454 63.0296 110.332 63.0571 110.179 63.0825C110.031 63.1121 109.851 63.127 109.64 63.127C109.352 63.127 109.087 63.0698 108.846 62.9556C108.605 62.8413 108.412 62.6509 108.269 62.3843C108.129 62.1134 108.059 61.7495 108.059 61.2925V54.4624ZM113.067 53.25V63H111.893V53.25H113.067ZM112.788 59.3057L112.299 59.2866C112.304 58.8169 112.373 58.3831 112.509 57.9854C112.644 57.5833 112.835 57.2342 113.08 56.938C113.326 56.6418 113.618 56.4132 113.956 56.2524C114.299 56.0874 114.678 56.0049 115.092 56.0049C115.431 56.0049 115.736 56.0514 116.006 56.1445C116.277 56.2334 116.508 56.3773 116.698 56.5762C116.893 56.7751 117.041 57.0332 117.143 57.3506C117.244 57.6637 117.295 58.0467 117.295 58.4995V63H116.114V58.4868C116.114 58.1271 116.061 57.8394 115.956 57.6235C115.85 57.4035 115.695 57.2448 115.492 57.1475C115.289 57.0459 115.039 56.9951 114.743 56.9951C114.451 56.9951 114.185 57.0565 113.943 57.1792C113.706 57.3019 113.501 57.4712 113.328 57.687C113.158 57.9028 113.025 58.1504 112.928 58.4297C112.835 58.7048 112.788 58.9967 112.788 59.3057ZM121.903 63.127C121.425 63.127 120.991 63.0465 120.602 62.8857C120.217 62.7207 119.885 62.4901 119.605 62.1938C119.33 61.8976 119.119 61.5464 118.971 61.1401C118.823 60.7339 118.749 60.2896 118.749 59.8071V59.5405C118.749 58.9819 118.831 58.4847 118.996 58.0488C119.161 57.6087 119.385 57.2363 119.669 56.9316C119.952 56.627 120.274 56.3963 120.634 56.2397C120.993 56.0832 121.366 56.0049 121.751 56.0049C122.242 56.0049 122.665 56.0895 123.021 56.2588C123.38 56.4281 123.674 56.665 123.903 56.9697C124.131 57.2702 124.301 57.6257 124.411 58.0361C124.521 58.4424 124.576 58.8867 124.576 59.3691V59.896H119.447V58.9375H123.401V58.8486C123.384 58.5439 123.321 58.2477 123.211 57.96C123.105 57.6722 122.936 57.4352 122.703 57.249C122.47 57.0628 122.153 56.9697 121.751 56.9697C121.484 56.9697 121.239 57.0269 121.015 57.1411C120.79 57.2511 120.598 57.4162 120.437 57.6362C120.276 57.8563 120.151 58.125 120.062 58.4424C119.974 58.7598 119.929 59.1258 119.929 59.5405V59.8071C119.929 60.133 119.974 60.4398 120.062 60.7275C120.156 61.0111 120.289 61.2607 120.462 61.4766C120.64 61.6924 120.854 61.8617 121.104 61.9844C121.357 62.1071 121.645 62.1685 121.967 62.1685C122.382 62.1685 122.733 62.0838 123.021 61.9146C123.308 61.7453 123.56 61.5189 123.776 61.2354L124.487 61.8003C124.339 62.0246 124.15 62.2383 123.922 62.4414C123.693 62.6445 123.412 62.8096 123.078 62.9365C122.748 63.0635 122.356 63.127 121.903 63.127ZM133.221 61.8257V58.29C133.221 58.0192 133.166 57.7843 133.056 57.5854C132.95 57.3823 132.79 57.2257 132.574 57.1157C132.358 57.0057 132.091 56.9507 131.774 56.9507C131.478 56.9507 131.217 57.0015 130.993 57.103C130.773 57.2046 130.6 57.3379 130.473 57.5029C130.35 57.668 130.289 57.8457 130.289 58.0361H129.114C129.114 57.7907 129.178 57.5474 129.305 57.3062C129.432 57.0649 129.614 56.847 129.851 56.6523C130.092 56.4535 130.38 56.2969 130.714 56.1826C131.052 56.0641 131.429 56.0049 131.844 56.0049C132.343 56.0049 132.783 56.0895 133.164 56.2588C133.549 56.4281 133.85 56.6841 134.065 57.0269C134.285 57.3654 134.396 57.7907 134.396 58.3027V61.502C134.396 61.7305 134.415 61.9738 134.453 62.2319C134.495 62.4901 134.556 62.7122 134.637 62.8984V63H133.412C133.352 62.8646 133.306 62.6847 133.272 62.4604C133.238 62.2319 133.221 62.0203 133.221 61.8257ZM133.424 58.8359L133.437 59.6611H132.25C131.916 59.6611 131.617 59.6886 131.355 59.7437C131.093 59.7944 130.873 59.8727 130.695 59.9785C130.517 60.0843 130.382 60.2176 130.289 60.3784C130.195 60.535 130.149 60.7191 130.149 60.9307C130.149 61.1465 130.198 61.3433 130.295 61.521C130.392 61.6987 130.538 61.8405 130.733 61.9463C130.932 62.0479 131.175 62.0986 131.463 62.0986C131.823 62.0986 132.14 62.0225 132.415 61.8701C132.69 61.7178 132.908 61.5316 133.069 61.3115C133.234 61.0915 133.323 60.8778 133.335 60.6704L133.837 61.2354C133.807 61.4131 133.727 61.6099 133.596 61.8257C133.465 62.0415 133.289 62.2489 133.069 62.4478C132.853 62.6424 132.595 62.8053 132.294 62.9365C131.998 63.0635 131.664 63.127 131.292 63.127C130.826 63.127 130.418 63.036 130.066 62.854C129.719 62.672 129.449 62.4287 129.254 62.124C129.063 61.8151 128.968 61.4702 128.968 61.0894C128.968 60.7212 129.04 60.3975 129.184 60.1182C129.328 59.8346 129.535 59.5998 129.806 59.4136C130.077 59.2231 130.403 59.0793 130.784 58.9819C131.165 58.8846 131.59 58.8359 132.06 58.8359H133.424ZM137.519 56.1318V63H136.338V56.1318H137.519ZM136.249 54.3101C136.249 54.1196 136.306 53.9588 136.42 53.8276C136.539 53.6965 136.712 53.6309 136.941 53.6309C137.165 53.6309 137.337 53.6965 137.455 53.8276C137.578 53.9588 137.639 54.1196 137.639 54.3101C137.639 54.492 137.578 54.6486 137.455 54.7798C137.337 54.9067 137.165 54.9702 136.941 54.9702C136.712 54.9702 136.539 54.9067 136.42 54.7798C136.306 54.6486 136.249 54.492 136.249 54.3101ZM140.578 57.2109V63H139.404V56.1318H140.546L140.578 57.2109ZM142.724 56.0938L142.717 57.1855C142.62 57.1644 142.527 57.1517 142.438 57.1475C142.353 57.139 142.256 57.1348 142.146 57.1348C141.875 57.1348 141.636 57.1771 141.429 57.2617C141.221 57.3464 141.046 57.4648 140.902 57.6172C140.758 57.7695 140.644 57.9515 140.559 58.1631C140.479 58.3704 140.426 58.599 140.4 58.8486L140.07 59.0391C140.07 58.6243 140.111 58.235 140.191 57.8711C140.276 57.5072 140.405 57.1855 140.578 56.9062C140.752 56.6227 140.972 56.4027 141.238 56.2461C141.509 56.0853 141.831 56.0049 142.203 56.0049C142.288 56.0049 142.385 56.0155 142.495 56.0366C142.605 56.0535 142.681 56.0726 142.724 56.0938ZM144.983 57.4521V65.6406H143.803V56.1318H144.882L144.983 57.4521ZM149.611 59.5088V59.6421C149.611 60.1414 149.552 60.6048 149.433 61.0322C149.315 61.4554 149.141 61.8236 148.913 62.1367C148.688 62.4499 148.411 62.6932 148.081 62.8667C147.751 63.0402 147.372 63.127 146.945 63.127C146.509 63.127 146.124 63.055 145.79 62.9111C145.455 62.7673 145.172 62.5578 144.939 62.2827C144.706 62.0076 144.52 61.6776 144.38 61.2925C144.245 60.9074 144.152 60.4736 144.101 59.9912V59.2803C144.152 58.7725 144.247 58.3175 144.387 57.9155C144.526 57.5135 144.71 57.1707 144.939 56.8872C145.172 56.5994 145.453 56.3815 145.783 56.2334C146.113 56.0811 146.494 56.0049 146.926 56.0049C147.357 56.0049 147.74 56.0895 148.075 56.2588C148.409 56.4238 148.69 56.6608 148.919 56.9697C149.147 57.2786 149.319 57.6489 149.433 58.0806C149.552 58.508 149.611 58.984 149.611 59.5088ZM148.43 59.6421V59.5088C148.43 59.166 148.394 58.8444 148.322 58.5439C148.25 58.2393 148.138 57.9727 147.986 57.7441C147.838 57.5114 147.647 57.3294 147.415 57.1982C147.182 57.0628 146.905 56.9951 146.583 56.9951C146.287 56.9951 146.029 57.0459 145.809 57.1475C145.593 57.249 145.409 57.3866 145.256 57.5601C145.104 57.7293 144.979 57.924 144.882 58.144C144.789 58.3599 144.719 58.5841 144.672 58.8169V60.4609C144.757 60.7572 144.875 61.0365 145.028 61.2988C145.18 61.557 145.383 61.7664 145.637 61.9272C145.891 62.0838 146.211 62.1621 146.596 62.1621C146.913 62.1621 147.186 62.0965 147.415 61.9653C147.647 61.8299 147.838 61.6458 147.986 61.4131C148.138 61.1803 148.25 60.9137 148.322 60.6133C148.394 60.3086 148.43 59.9849 148.43 59.6421ZM150.798 59.6421V59.4961C150.798 59.001 150.87 58.5418 151.014 58.1187C151.158 57.6912 151.365 57.321 151.636 57.0078C151.907 56.6904 152.235 56.445 152.62 56.2715C153.005 56.0938 153.436 56.0049 153.915 56.0049C154.397 56.0049 154.831 56.0938 155.216 56.2715C155.605 56.445 155.935 56.6904 156.206 57.0078C156.481 57.321 156.691 57.6912 156.834 58.1187C156.978 58.5418 157.05 59.001 157.05 59.4961V59.6421C157.05 60.1372 156.978 60.5964 156.834 61.0195C156.691 61.4427 156.481 61.813 156.206 62.1304C155.935 62.4435 155.607 62.689 155.222 62.8667C154.841 63.0402 154.41 63.127 153.927 63.127C153.445 63.127 153.011 63.0402 152.626 62.8667C152.241 62.689 151.911 62.4435 151.636 62.1304C151.365 61.813 151.158 61.4427 151.014 61.0195C150.87 60.5964 150.798 60.1372 150.798 59.6421ZM151.972 59.4961V59.6421C151.972 59.9849 152.012 60.3086 152.093 60.6133C152.173 60.9137 152.294 61.1803 152.455 61.4131C152.62 61.6458 152.825 61.8299 153.07 61.9653C153.316 62.0965 153.601 62.1621 153.927 62.1621C154.249 62.1621 154.53 62.0965 154.771 61.9653C155.017 61.8299 155.22 61.6458 155.381 61.4131C155.542 61.1803 155.662 60.9137 155.743 60.6133C155.827 60.3086 155.87 59.9849 155.87 59.6421V59.4961C155.87 59.1576 155.827 58.8381 155.743 58.5376C155.662 58.2329 155.54 57.9642 155.375 57.7314C155.214 57.4945 155.011 57.3083 154.765 57.1729C154.524 57.0374 154.24 56.9697 153.915 56.9697C153.593 56.9697 153.309 57.0374 153.064 57.1729C152.823 57.3083 152.62 57.4945 152.455 57.7314C152.294 57.9642 152.173 58.2329 152.093 58.5376C152.012 58.8381 151.972 59.1576 151.972 59.4961ZM159.697 57.2109V63H158.523V56.1318H159.666L159.697 57.2109ZM161.843 56.0938L161.836 57.1855C161.739 57.1644 161.646 57.1517 161.557 57.1475C161.472 57.139 161.375 57.1348 161.265 57.1348C160.994 57.1348 160.755 57.1771 160.548 57.2617C160.34 57.3464 160.165 57.4648 160.021 57.6172C159.877 57.7695 159.763 57.9515 159.678 58.1631C159.598 58.3704 159.545 58.599 159.52 58.8486L159.189 59.0391C159.189 58.6243 159.23 58.235 159.31 57.8711C159.395 57.5072 159.524 57.1855 159.697 56.9062C159.871 56.6227 160.091 56.4027 160.357 56.2461C160.628 56.0853 160.95 56.0049 161.322 56.0049C161.407 56.0049 161.504 56.0155 161.614 56.0366C161.724 56.0535 161.8 56.0726 161.843 56.0938ZM166.121 56.1318V57.0332H162.408V56.1318H166.121ZM163.665 54.4624H164.839V61.2988C164.839 61.5316 164.875 61.7072 164.947 61.8257C165.019 61.9442 165.112 62.0225 165.226 62.0605C165.34 62.0986 165.463 62.1177 165.594 62.1177C165.692 62.1177 165.793 62.1092 165.899 62.0923C166.009 62.0711 166.091 62.0542 166.146 62.0415L166.153 63C166.06 63.0296 165.937 63.0571 165.785 63.0825C165.637 63.1121 165.457 63.127 165.245 63.127C164.957 63.127 164.693 63.0698 164.452 62.9556C164.21 62.8413 164.018 62.6509 163.874 62.3843C163.734 62.1134 163.665 61.7495 163.665 61.2925V54.4624ZM168.667 53.7578V64.7139H167.721V53.7578H168.667Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M279 113.496L272.495 120",stroke:"#64748B",strokeLinecap:"round"}),(0,h.createElement)("path",{d:"M279 116.748L275.747 120",stroke:"#64748B",strokeLinecap:"round"}),(0,h.createElement)("rect",{x:"16",y:"42",width:"266",height:"81",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),{ToolBarFields:Uo,AdvancedFields:Go,FieldWrapper:Wo,FieldSettingsWrapper:Ko,ValidationToggleGroup:$o,ValidationBlockMessage:Yo,BlockLabel:Xo,BlockDescription:Qo,BlockName:es,BlockAdvancedValue:Cs,EditAdvancedRulesButton:ts,AdvancedInspectorControl:ls,AttributeHelp:rs}=JetFBComponents,{useIsAdvancedValidation:ns,useUniqueNameOnDuplicate:as}=JetFBHooks,{__:is}=wp.i18n,{InspectorControls:os,useBlockProps:ss}=wp.blockEditor,{TextareaControl:cs,TextControl:ds,PanelBody:ms,__experimentalNumberControl:us}=wp.components;let{NumberControl:ps}=wp.components;void 0===ps&&(ps=us);const fs=JSON.parse('{"apiVersion":3,"name":"jet-forms/textarea-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","textarea"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Textarea Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"minlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"maxlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Vs}=wp.i18n,{createBlock:Hs}=wp.blocks,{name:hs,icon:bs=""}=fs,Ms={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:bs}}),description:Vs("Give the user enough space to type in a bigger piece of text. Add a text area where the data can be placed in several lines.","jet-form-builder"),edit:function(e){const{attributes:C,setAttributes:t,isSelected:l,editProps:{uniqKey:r}}=e,n=ss(),a=ns();return as(),C.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},zo):[(0,h.createElement)(Uo,{key:r("ToolBarFields"),...e}),l&&(0,h.createElement)(os,{key:r("InspectorControls")},(0,h.createElement)(ms,{title:is("General","jet-form-builder")},(0,h.createElement)(Xo,null),(0,h.createElement)(es,null),(0,h.createElement)(Qo,null)),(0,h.createElement)(ms,{title:is("Value","jet-form-builder")},(0,h.createElement)(Cs,null)),(0,h.createElement)(Ko,{...e},(0,h.createElement)(ls,{value:C.minlength,label:is("Min length (symbols)","jet-form-builder"),onChangePreset:e=>t({minlength:e})},({instanceId:e})=>(0,h.createElement)(ds,{id:e,className:"jet-fb m-unset",value:C.minlength,onChange:e=>t({minlength:e})})),(0,h.createElement)(rs,{name:"minlength"}),(0,h.createElement)(ls,{value:C.maxlength,label:is("Max length (symbols)","jet-form-builder"),onChangePreset:e=>t({maxlength:e})},({instanceId:e})=>(0,h.createElement)(ds,{id:e,className:"jet-fb m-unset",value:C.maxlength,onChange:e=>t({maxlength:e})})),(0,h.createElement)(rs,{name:"maxlength"})),(0,h.createElement)(ms,{title:is("Validation","jet-form-builder")},(0,h.createElement)($o,null),a&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ts,null),Boolean(C.minlength)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Yo,{name:"char_min"})),Boolean(C.maxlength)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Yo,{name:"char_max"})),(0,h.createElement)(Yo,{name:"empty"}))),(0,h.createElement)(Go,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{key:r("viewBlock"),...n},(0,h.createElement)(Wo,{key:r("FieldWrapper"),...e},(0,h.createElement)(cs,{className:"jet-form-builder__field-preview",key:r("place_holder_block"),placeholder:C.placeholder,onChange:()=>{}})))]},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Hs("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/wysiwyg-field"],transform:e=>Hs(hs,{...e}),priority:0}]}},Ls=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"20.5",width:"22",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.3887 29.4028V30.3677H28.0283V29.4028H34.3887ZM42.9199 29.4028V30.3677H36.5596V29.4028H42.9199Z",fill:"white"}),(0,h.createElement)("path",{d:"M49.8442 33.8779C49.8442 33.679 49.9056 33.5119 50.0283 33.3765C50.1553 33.2368 50.3372 33.167 50.5742 33.167C50.8112 33.167 50.991 33.2368 51.1138 33.3765C51.2407 33.5119 51.3042 33.679 51.3042 33.8779C51.3042 34.0726 51.2407 34.2376 51.1138 34.373C50.991 34.5085 50.8112 34.5762 50.5742 34.5762C50.3372 34.5762 50.1553 34.5085 50.0283 34.373C49.9056 34.2376 49.8442 34.0726 49.8442 33.8779ZM49.8506 28.2729C49.8506 28.0741 49.9119 27.9069 50.0347 27.7715C50.1616 27.6318 50.3436 27.562 50.5806 27.562C50.8175 27.562 50.9974 27.6318 51.1201 27.7715C51.2471 27.9069 51.3105 28.0741 51.3105 28.2729C51.3105 28.4676 51.2471 28.6326 51.1201 28.7681C50.9974 28.9035 50.8175 28.9712 50.5806 28.9712C50.3436 28.9712 50.1616 28.9035 50.0347 28.7681C49.9119 28.6326 49.8506 28.4676 49.8506 28.2729ZM62.7617 29.4028V30.3677H56.4014V29.4028H62.7617ZM71.293 29.4028V30.3677H64.9326V29.4028H71.293ZM76.5044 33.8779C76.5044 33.679 76.5658 33.5119 76.6885 33.3765C76.8154 33.2368 76.9974 33.167 77.2344 33.167C77.4714 33.167 77.6512 33.2368 77.7739 33.3765C77.9009 33.5119 77.9644 33.679 77.9644 33.8779C77.9644 34.0726 77.9009 34.2376 77.7739 34.373C77.6512 34.5085 77.4714 34.5762 77.2344 34.5762C76.9974 34.5762 76.8154 34.5085 76.6885 34.373C76.5658 34.2376 76.5044 34.0726 76.5044 33.8779ZM76.5107 28.2729C76.5107 28.0741 76.5721 27.9069 76.6948 27.7715C76.8218 27.6318 77.0037 27.562 77.2407 27.562C77.4777 27.562 77.6576 27.6318 77.7803 27.7715C77.9072 27.9069 77.9707 28.0741 77.9707 28.2729C77.9707 28.4676 77.9072 28.6326 77.7803 28.7681C77.6576 28.9035 77.4777 28.9712 77.2407 28.9712C77.0037 28.9712 76.8218 28.9035 76.6948 28.7681C76.5721 28.6326 76.5107 28.4676 76.5107 28.2729ZM89.4219 29.4028V30.3677H83.0615V29.4028H89.4219ZM97.9531 29.4028V30.3677H91.5928V29.4028H97.9531Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M260.991 21C256.023 21 252 25.032 252 30C252 34.968 256.023 39 260.991 39C265.968 39 270 34.968 270 30C270 25.032 265.968 21 260.991 21ZM261 37.2C257.022 37.2 253.8 33.978 253.8 30C253.8 26.022 257.022 22.8 261 22.8C264.978 22.8 268.2 26.022 268.2 30C268.2 33.978 264.978 37.2 261 37.2ZM260.802 25.5H260.748C260.388 25.5 260.1 25.788 260.1 26.148V30.396C260.1 30.711 260.262 31.008 260.541 31.17L264.276 33.411C264.582 33.591 264.978 33.501 265.158 33.195C265.347 32.889 265.248 32.484 264.933 32.304L261.45 30.234V26.148C261.45 25.788 261.162 25.5 260.802 25.5V25.5Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("path",{d:"M15 49C15 46.7909 16.7909 45 19 45H279C281.209 45 283 46.7909 283 49V144H15V49Z",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"64.9048",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"104.905",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M42.3906 64.5664V66.166C42.3906 66.86 42.3166 67.4588 42.1685 67.9624C42.0203 68.4618 41.8066 68.8722 41.5273 69.1938C41.2523 69.5112 40.9243 69.7461 40.5435 69.8984C40.1626 70.0508 39.7394 70.127 39.2739 70.127C38.9015 70.127 38.5545 70.0804 38.2329 69.9873C37.9113 69.89 37.6214 69.7397 37.3633 69.5366C37.1094 69.3335 36.8893 69.0775 36.7031 68.7686C36.5212 68.4554 36.3815 68.083 36.2842 67.6514C36.1868 67.2197 36.1382 66.7246 36.1382 66.166V64.5664C36.1382 63.8724 36.2122 63.2778 36.3604 62.7827C36.5127 62.2834 36.7264 61.875 37.0015 61.5576C37.2808 61.2402 37.6108 61.0075 37.9917 60.8594C38.3726 60.707 38.7957 60.6309 39.2612 60.6309C39.6336 60.6309 39.9785 60.6795 40.2959 60.7769C40.6175 60.87 40.9074 61.016 41.1655 61.2148C41.4237 61.4137 41.6437 61.6698 41.8257 61.9829C42.0076 62.2918 42.1473 62.6621 42.2446 63.0938C42.342 63.5212 42.3906 64.012 42.3906 64.5664ZM40.5562 66.4072V64.3188C40.5562 63.9845 40.5371 63.6925 40.499 63.4429C40.4652 63.1932 40.4123 62.9816 40.3403 62.8081C40.2684 62.6304 40.1795 62.4865 40.0737 62.3765C39.9679 62.2664 39.8473 62.186 39.7119 62.1353C39.5765 62.0845 39.4263 62.0591 39.2612 62.0591C39.0539 62.0591 38.8698 62.0993 38.709 62.1797C38.5524 62.2601 38.4191 62.3892 38.3091 62.5669C38.1991 62.7404 38.1144 62.9731 38.0552 63.2651C38.0002 63.5529 37.9727 63.9041 37.9727 64.3188V66.4072C37.9727 66.7415 37.9896 67.0356 38.0234 67.2896C38.0615 67.5435 38.1165 67.7614 38.1885 67.9434C38.2646 68.1211 38.3535 68.2671 38.4551 68.3813C38.5609 68.4914 38.6815 68.5718 38.8169 68.6226C38.9565 68.6733 39.1089 68.6987 39.2739 68.6987C39.4771 68.6987 39.6569 68.6585 39.8135 68.5781C39.9743 68.4935 40.1097 68.3623 40.2197 68.1846C40.334 68.0026 40.4186 67.7656 40.4736 67.4736C40.5286 67.1816 40.5562 66.8262 40.5562 66.4072ZM49.957 68.5718V70H43.6348V68.7812L46.6245 65.5757C46.925 65.2414 47.1619 64.9473 47.3354 64.6934C47.509 64.4352 47.6338 64.2046 47.71 64.0015C47.7904 63.7941 47.8306 63.5973 47.8306 63.4111C47.8306 63.1318 47.784 62.8927 47.6909 62.6938C47.5978 62.4907 47.4603 62.3341 47.2783 62.2241C47.1006 62.1141 46.8805 62.0591 46.6182 62.0591C46.3389 62.0591 46.0977 62.1268 45.8945 62.2622C45.6956 62.3976 45.5433 62.5859 45.4375 62.8271C45.3359 63.0684 45.2852 63.3413 45.2852 63.646H43.4507C43.4507 63.0959 43.5819 62.5923 43.8442 62.1353C44.1066 61.674 44.4769 61.3079 44.9551 61.0371C45.4333 60.762 46.0003 60.6245 46.6562 60.6245C47.3037 60.6245 47.8496 60.7303 48.2939 60.9419C48.7425 61.1493 49.0811 61.4497 49.3096 61.8433C49.5423 62.2326 49.6587 62.6981 49.6587 63.2397C49.6587 63.5444 49.61 63.8428 49.5127 64.1348C49.4154 64.4225 49.2757 64.7103 49.0938 64.998C48.916 65.2816 48.7002 65.5693 48.4463 65.8613C48.1924 66.1533 47.911 66.4559 47.6021 66.769L45.9961 68.5718H49.957Z",fill:"white"}),(0,h.createElement)("path",{d:"M82.4922 68.5718V70H76.1699V68.7812L79.1597 65.5757C79.4601 65.2414 79.6971 64.9473 79.8706 64.6934C80.0441 64.4352 80.1689 64.2046 80.2451 64.0015C80.3255 63.7941 80.3657 63.5973 80.3657 63.4111C80.3657 63.1318 80.3192 62.8927 80.2261 62.6938C80.133 62.4907 79.9954 62.3341 79.8135 62.2241C79.6357 62.1141 79.4157 62.0591 79.1533 62.0591C78.874 62.0591 78.6328 62.1268 78.4297 62.2622C78.2308 62.3976 78.0785 62.5859 77.9727 62.8271C77.8711 63.0684 77.8203 63.3413 77.8203 63.646H75.9858C75.9858 63.0959 76.117 62.5923 76.3794 62.1353C76.6418 61.674 77.012 61.3079 77.4902 61.0371C77.9684 60.762 78.5355 60.6245 79.1914 60.6245C79.8389 60.6245 80.3848 60.7303 80.8291 60.9419C81.2777 61.1493 81.6162 61.4497 81.8447 61.8433C82.0775 62.2326 82.1938 62.6981 82.1938 63.2397C82.1938 63.5444 82.1452 63.8428 82.0479 64.1348C81.9505 64.4225 81.8109 64.7103 81.6289 64.998C81.4512 65.2816 81.2354 65.5693 80.9814 65.8613C80.7275 66.1533 80.4461 66.4559 80.1372 66.769L78.5312 68.5718H82.4922ZM89.9126 60.7578V61.7417L86.3389 70H84.4092L87.9829 62.186H83.3809V60.7578H89.9126Z",fill:"white"}),(0,h.createElement)("path",{d:"M117.541 66.7056H115.186V65.2202H117.541C117.905 65.2202 118.201 65.161 118.43 65.0425C118.658 64.9198 118.825 64.7505 118.931 64.5347C119.037 64.3188 119.09 64.0755 119.09 63.8047C119.09 63.5296 119.037 63.2736 118.931 63.0366C118.825 62.7996 118.658 62.6092 118.43 62.4653C118.201 62.3215 117.905 62.2495 117.541 62.2495H115.846V70H113.942V60.7578H117.541C118.265 60.7578 118.885 60.889 119.401 61.1514C119.921 61.4095 120.319 61.7671 120.594 62.2241C120.869 62.6812 121.007 63.2038 121.007 63.792C121.007 64.3887 120.869 64.9049 120.594 65.3408C120.319 65.7767 119.921 66.1131 119.401 66.3501C118.885 66.5871 118.265 66.7056 117.541 66.7056ZM123.19 60.7578H124.803L127.177 67.5435L129.551 60.7578H131.163L127.824 70H126.529L123.19 60.7578ZM122.321 60.7578H123.927L124.219 67.3721V70H122.321V60.7578ZM130.427 60.7578H132.039V70H130.135V67.3721L130.427 60.7578Z",fill:"white"}),(0,h.createElement)("path",{d:"M42.2573 87.6426V89.0518C42.2573 89.8092 42.1896 90.4482 42.0542 90.9688C41.9188 91.4893 41.7241 91.9082 41.4702 92.2256C41.2163 92.543 40.9095 92.7736 40.5498 92.9175C40.1943 93.0571 39.7923 93.127 39.3438 93.127C38.9883 93.127 38.6603 93.0825 38.3599 92.9937C38.0594 92.9048 37.7886 92.763 37.5474 92.5684C37.3104 92.3695 37.1073 92.1113 36.938 91.7939C36.7687 91.4766 36.6396 91.0915 36.5508 90.6387C36.4619 90.1859 36.4175 89.6569 36.4175 89.0518V87.6426C36.4175 86.8851 36.4852 86.2503 36.6206 85.7383C36.7603 85.2262 36.957 84.8158 37.2109 84.5068C37.4648 84.1937 37.7695 83.9694 38.125 83.834C38.4847 83.6986 38.8867 83.6309 39.3311 83.6309C39.6908 83.6309 40.0208 83.6753 40.3213 83.7642C40.626 83.8488 40.8968 83.9863 41.1338 84.1768C41.3708 84.363 41.5718 84.6126 41.7368 84.9258C41.9061 85.2347 42.0352 85.6134 42.124 86.062C42.2129 86.5106 42.2573 87.0374 42.2573 87.6426ZM41.0767 89.2422V87.4458C41.0767 87.0311 41.0513 86.6672 41.0005 86.354C40.9539 86.0366 40.8841 85.7658 40.791 85.5415C40.6979 85.3172 40.5794 85.1353 40.4355 84.9956C40.2959 84.856 40.133 84.7544 39.9468 84.6909C39.7648 84.6232 39.5596 84.5894 39.3311 84.5894C39.0518 84.5894 38.8042 84.6423 38.5884 84.748C38.3726 84.8496 38.1906 85.0125 38.0425 85.2368C37.8986 85.4611 37.7886 85.7552 37.7124 86.1191C37.6362 86.4831 37.5981 86.9253 37.5981 87.4458V89.2422C37.5981 89.6569 37.6214 90.0229 37.668 90.3403C37.7188 90.6577 37.7928 90.9328 37.8901 91.1655C37.9875 91.394 38.106 91.5824 38.2456 91.7305C38.3853 91.8786 38.5461 91.9886 38.728 92.0605C38.9142 92.1283 39.1195 92.1621 39.3438 92.1621C39.6315 92.1621 39.8833 92.1071 40.0991 91.9971C40.3149 91.887 40.4948 91.7157 40.6387 91.4829C40.7868 91.2459 40.8968 90.9434 40.9688 90.5752C41.0407 90.2028 41.0767 89.7585 41.0767 89.2422ZM45.4819 87.8013H46.3198C46.7303 87.8013 47.0688 87.7336 47.3354 87.5981C47.6063 87.4585 47.8073 87.2702 47.9385 87.0332C48.0739 86.792 48.1416 86.5212 48.1416 86.2207C48.1416 85.8652 48.0824 85.5669 47.9639 85.3257C47.8454 85.0845 47.6676 84.9025 47.4307 84.7798C47.1937 84.6571 46.8932 84.5957 46.5293 84.5957C46.1992 84.5957 45.9072 84.6613 45.6533 84.7925C45.4036 84.9194 45.2069 85.1014 45.063 85.3384C44.9233 85.5754 44.8535 85.8547 44.8535 86.1763H43.6792C43.6792 85.7065 43.7977 85.2791 44.0347 84.894C44.2716 84.509 44.6038 84.2021 45.0312 83.9736C45.4629 83.7451 45.9622 83.6309 46.5293 83.6309C47.0879 83.6309 47.5767 83.7303 47.9956 83.9292C48.4146 84.1239 48.7404 84.4159 48.9731 84.8052C49.2059 85.1903 49.3223 85.6706 49.3223 86.2461C49.3223 86.4788 49.2673 86.7285 49.1572 86.9951C49.0514 87.2575 48.8843 87.5029 48.6558 87.7314C48.4315 87.96 48.1395 88.1483 47.7798 88.2964C47.4201 88.4403 46.9884 88.5122 46.4849 88.5122H45.4819V87.8013ZM45.4819 88.7661V88.0615H46.4849C47.0731 88.0615 47.5597 88.1313 47.9448 88.271C48.3299 88.4106 48.6325 88.5968 48.8525 88.8296C49.0768 89.0623 49.2334 89.3184 49.3223 89.5977C49.4154 89.8727 49.4619 90.1478 49.4619 90.4229C49.4619 90.8545 49.3879 91.2375 49.2397 91.5718C49.0959 91.9061 48.8906 92.1896 48.624 92.4224C48.3617 92.6551 48.0527 92.8307 47.6973 92.9492C47.3418 93.0677 46.9546 93.127 46.5356 93.127C46.1336 93.127 45.7549 93.0698 45.3994 92.9556C45.0482 92.8413 44.7371 92.6763 44.4663 92.4604C44.1955 92.2404 43.9839 91.9717 43.8315 91.6543C43.6792 91.3327 43.603 90.9666 43.603 90.5562H44.7773C44.7773 90.8778 44.8472 91.1592 44.9868 91.4004C45.1307 91.6416 45.3338 91.8299 45.5962 91.9653C45.8628 92.0965 46.1759 92.1621 46.5356 92.1621C46.8953 92.1621 47.2043 92.1007 47.4624 91.978C47.7248 91.8511 47.9258 91.6606 48.0654 91.4067C48.2093 91.1528 48.2812 90.8333 48.2812 90.4482C48.2812 90.0632 48.2008 89.7479 48.04 89.5024C47.8792 89.2528 47.6507 89.0687 47.3545 88.9502C47.0625 88.8275 46.7176 88.7661 46.3198 88.7661H45.4819Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M82.5112 92.0352V93H76.4619V92.1558L79.4897 88.7852C79.8621 88.3704 80.1499 88.0192 80.353 87.7314C80.5604 87.4395 80.7043 87.1792 80.7847 86.9507C80.8693 86.7179 80.9116 86.481 80.9116 86.2397C80.9116 85.9351 80.8481 85.66 80.7212 85.4146C80.5985 85.1649 80.4165 84.966 80.1753 84.8179C79.9341 84.6698 79.6421 84.5957 79.2993 84.5957C78.8888 84.5957 78.5461 84.6761 78.271 84.8369C78.0002 84.9935 77.797 85.2135 77.6616 85.4971C77.5262 85.7806 77.4585 86.1064 77.4585 86.4746H76.2842C76.2842 85.9541 76.3984 85.478 76.627 85.0464C76.8555 84.6147 77.194 84.272 77.6426 84.0181C78.0911 83.7599 78.6434 83.6309 79.2993 83.6309C79.8833 83.6309 80.3826 83.7345 80.7974 83.9419C81.2121 84.145 81.5295 84.4328 81.7495 84.8052C81.9738 85.1733 82.0859 85.605 82.0859 86.1001C82.0859 86.3709 82.0394 86.646 81.9463 86.9253C81.8574 87.2004 81.7326 87.4754 81.5718 87.7505C81.4152 88.0256 81.2311 88.2964 81.0195 88.563C80.8122 88.8296 80.59 89.092 80.353 89.3501L77.8774 92.0352H82.5112ZM89.5952 90.499C89.5952 91.0618 89.464 91.54 89.2017 91.9336C88.9435 92.3229 88.5923 92.6191 88.1479 92.8223C87.7078 93.0254 87.2106 93.127 86.6562 93.127C86.1019 93.127 85.6025 93.0254 85.1582 92.8223C84.7139 92.6191 84.3626 92.3229 84.1045 91.9336C83.8464 91.54 83.7173 91.0618 83.7173 90.499C83.7173 90.1309 83.7871 89.7944 83.9268 89.4897C84.0706 89.1808 84.2716 88.9121 84.5298 88.6836C84.7922 88.4551 85.1011 88.2795 85.4565 88.1567C85.8162 88.0298 86.2119 87.9663 86.6436 87.9663C87.2106 87.9663 87.7163 88.0763 88.1606 88.2964C88.605 88.5122 88.9541 88.8105 89.208 89.1914C89.4661 89.5723 89.5952 90.0081 89.5952 90.499ZM88.4146 90.4736C88.4146 90.1309 88.3405 89.8283 88.1924 89.5659C88.0443 89.2993 87.8369 89.092 87.5703 88.9438C87.3037 88.7957 86.9948 88.7217 86.6436 88.7217C86.2839 88.7217 85.9728 88.7957 85.7104 88.9438C85.4523 89.092 85.2513 89.2993 85.1074 89.5659C84.9635 89.8283 84.8916 90.1309 84.8916 90.4736C84.8916 90.8291 84.9614 91.1338 85.1011 91.3877C85.245 91.6374 85.4481 91.8299 85.7104 91.9653C85.9771 92.0965 86.2923 92.1621 86.6562 92.1621C87.0202 92.1621 87.3333 92.0965 87.5957 91.9653C87.8581 91.8299 88.0591 91.6374 88.1987 91.3877C88.3426 91.1338 88.4146 90.8291 88.4146 90.4736ZM89.3794 86.1636C89.3794 86.6121 89.2609 87.0163 89.0239 87.376C88.7869 87.7357 88.4632 88.0192 88.0527 88.2266C87.6423 88.4339 87.1768 88.5376 86.6562 88.5376C86.1273 88.5376 85.6554 88.4339 85.2407 88.2266C84.8302 88.0192 84.5086 87.7357 84.2759 87.376C84.0431 87.0163 83.9268 86.6121 83.9268 86.1636C83.9268 85.6261 84.0431 85.1691 84.2759 84.7925C84.5129 84.4159 84.8366 84.1281 85.2471 83.9292C85.6576 83.7303 86.1252 83.6309 86.6499 83.6309C87.1789 83.6309 87.6486 83.7303 88.0591 83.9292C88.4696 84.1281 88.7912 84.4159 89.0239 84.7925C89.2609 85.1691 89.3794 85.6261 89.3794 86.1636ZM88.2051 86.1826C88.2051 85.8737 88.1395 85.6007 88.0083 85.3638C87.8771 85.1268 87.6951 84.9406 87.4624 84.8052C87.2297 84.6655 86.9588 84.5957 86.6499 84.5957C86.341 84.5957 86.0701 84.6613 85.8374 84.7925C85.6089 84.9194 85.429 85.1014 85.2979 85.3384C85.1709 85.5754 85.1074 85.8568 85.1074 86.1826C85.1074 86.5 85.1709 86.7772 85.2979 87.0142C85.429 87.2511 85.611 87.4352 85.8438 87.5664C86.0765 87.6976 86.3473 87.7632 86.6562 87.7632C86.9652 87.7632 87.2339 87.6976 87.4624 87.5664C87.6951 87.4352 87.8771 87.2511 88.0083 87.0142C88.1395 86.7772 88.2051 86.5 88.2051 86.1826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M117.579 84.5767L114.52 93H113.269L116.792 83.7578H117.598L117.579 84.5767ZM120.144 93L117.078 84.5767L117.059 83.7578H117.865L121.4 93H120.144ZM119.985 89.5786V90.5815H114.792V89.5786H119.985ZM123.025 83.7578H124.212L127.24 91.2925L130.262 83.7578H131.455L127.697 93H126.771L123.025 83.7578ZM122.638 83.7578H123.686L123.857 89.3945V93H122.638V83.7578ZM130.789 83.7578H131.836V93H130.617V89.3945L130.789 83.7578Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M42.2573 107.643V109.052C42.2573 109.809 42.1896 110.448 42.0542 110.969C41.9188 111.489 41.7241 111.908 41.4702 112.226C41.2163 112.543 40.9095 112.774 40.5498 112.917C40.1943 113.057 39.7923 113.127 39.3438 113.127C38.9883 113.127 38.6603 113.083 38.3599 112.994C38.0594 112.905 37.7886 112.763 37.5474 112.568C37.3104 112.369 37.1073 112.111 36.938 111.794C36.7687 111.477 36.6396 111.091 36.5508 110.639C36.4619 110.186 36.4175 109.657 36.4175 109.052V107.643C36.4175 106.885 36.4852 106.25 36.6206 105.738C36.7603 105.226 36.957 104.816 37.2109 104.507C37.4648 104.194 37.7695 103.969 38.125 103.834C38.4847 103.699 38.8867 103.631 39.3311 103.631C39.6908 103.631 40.0208 103.675 40.3213 103.764C40.626 103.849 40.8968 103.986 41.1338 104.177C41.3708 104.363 41.5718 104.613 41.7368 104.926C41.9061 105.235 42.0352 105.613 42.124 106.062C42.2129 106.511 42.2573 107.037 42.2573 107.643ZM41.0767 109.242V107.446C41.0767 107.031 41.0513 106.667 41.0005 106.354C40.9539 106.037 40.8841 105.766 40.791 105.542C40.6979 105.317 40.5794 105.135 40.4355 104.996C40.2959 104.856 40.133 104.754 39.9468 104.691C39.7648 104.623 39.5596 104.589 39.3311 104.589C39.0518 104.589 38.8042 104.642 38.5884 104.748C38.3726 104.85 38.1906 105.013 38.0425 105.237C37.8986 105.461 37.7886 105.755 37.7124 106.119C37.6362 106.483 37.5981 106.925 37.5981 107.446V109.242C37.5981 109.657 37.6214 110.023 37.668 110.34C37.7188 110.658 37.7928 110.933 37.8901 111.166C37.9875 111.394 38.106 111.582 38.2456 111.73C38.3853 111.879 38.5461 111.989 38.728 112.061C38.9142 112.128 39.1195 112.162 39.3438 112.162C39.6315 112.162 39.8833 112.107 40.0991 111.997C40.3149 111.887 40.4948 111.716 40.6387 111.483C40.7868 111.246 40.8968 110.943 40.9688 110.575C41.0407 110.203 41.0767 109.758 41.0767 109.242ZM50.0142 109.89V110.854H43.3364V110.163L47.4751 103.758H48.4336L47.4053 105.611L44.6694 109.89H50.0142ZM48.7256 103.758V113H47.5513V103.758H48.7256Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M82.5112 112.035V113H76.4619V112.156L79.4897 108.785C79.8621 108.37 80.1499 108.019 80.353 107.731C80.5604 107.439 80.7043 107.179 80.7847 106.951C80.8693 106.718 80.9116 106.481 80.9116 106.24C80.9116 105.935 80.8481 105.66 80.7212 105.415C80.5985 105.165 80.4165 104.966 80.1753 104.818C79.9341 104.67 79.6421 104.596 79.2993 104.596C78.8888 104.596 78.5461 104.676 78.271 104.837C78.0002 104.993 77.797 105.214 77.6616 105.497C77.5262 105.781 77.4585 106.106 77.4585 106.475H76.2842C76.2842 105.954 76.3984 105.478 76.627 105.046C76.8555 104.615 77.194 104.272 77.6426 104.018C78.0911 103.76 78.6434 103.631 79.2993 103.631C79.8833 103.631 80.3826 103.735 80.7974 103.942C81.2121 104.145 81.5295 104.433 81.7495 104.805C81.9738 105.173 82.0859 105.605 82.0859 106.1C82.0859 106.371 82.0394 106.646 81.9463 106.925C81.8574 107.2 81.7326 107.475 81.5718 107.75C81.4152 108.026 81.2311 108.296 81.0195 108.563C80.8122 108.83 80.59 109.092 80.353 109.35L77.8774 112.035H82.5112ZM84.936 112.016H85.0566C85.7337 112.016 86.2839 111.921 86.707 111.73C87.1302 111.54 87.4561 111.284 87.6846 110.962C87.9131 110.641 88.0697 110.279 88.1543 109.877C88.2389 109.471 88.2812 109.054 88.2812 108.626V107.211C88.2812 106.792 88.2326 106.42 88.1353 106.094C88.0422 105.768 87.911 105.495 87.7417 105.275C87.5767 105.055 87.3883 104.888 87.1768 104.773C86.9652 104.659 86.7409 104.602 86.5039 104.602C86.2331 104.602 85.9897 104.657 85.7739 104.767C85.5623 104.873 85.3825 105.023 85.2344 105.218C85.0905 105.412 84.9805 105.641 84.9043 105.903C84.8281 106.166 84.79 106.451 84.79 106.76C84.79 107.035 84.8239 107.302 84.8916 107.56C84.9593 107.818 85.063 108.051 85.2026 108.258C85.3423 108.466 85.5158 108.631 85.7231 108.753C85.9347 108.872 86.1823 108.931 86.4658 108.931C86.7282 108.931 86.9736 108.88 87.2021 108.779C87.4349 108.673 87.6401 108.531 87.8179 108.354C87.9998 108.172 88.1437 107.966 88.2495 107.738C88.3595 107.509 88.423 107.27 88.4399 107.021H88.9985C88.9985 107.372 88.9287 107.719 88.7891 108.062C88.6536 108.4 88.4632 108.709 88.2178 108.988C87.9723 109.268 87.6846 109.492 87.3545 109.661C87.0244 109.826 86.6647 109.909 86.2754 109.909C85.8184 109.909 85.4227 109.82 85.0884 109.642C84.7541 109.464 84.479 109.227 84.2632 108.931C84.0516 108.635 83.8929 108.305 83.7871 107.941C83.6855 107.573 83.6348 107.2 83.6348 106.824C83.6348 106.384 83.6961 105.971 83.8188 105.586C83.9416 105.201 84.1235 104.862 84.3647 104.57C84.606 104.274 84.9043 104.043 85.2598 103.878C85.6195 103.713 86.0342 103.631 86.5039 103.631C87.0329 103.631 87.4836 103.737 87.856 103.948C88.2284 104.16 88.5309 104.443 88.7637 104.799C89.0007 105.154 89.1742 105.554 89.2842 105.999C89.3942 106.443 89.4492 106.9 89.4492 107.37V107.795C89.4492 108.273 89.4175 108.76 89.354 109.255C89.2948 109.746 89.1784 110.215 89.0049 110.664C88.8356 111.113 88.5881 111.515 88.2622 111.87C87.9364 112.221 87.5111 112.501 86.9863 112.708C86.4658 112.911 85.8226 113.013 85.0566 113.013H84.936V112.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M42.2573 127.643V129.052C42.2573 129.809 42.1896 130.448 42.0542 130.969C41.9188 131.489 41.7241 131.908 41.4702 132.226C41.2163 132.543 40.9095 132.774 40.5498 132.917C40.1943 133.057 39.7923 133.127 39.3438 133.127C38.9883 133.127 38.6603 133.083 38.3599 132.994C38.0594 132.905 37.7886 132.763 37.5474 132.568C37.3104 132.369 37.1073 132.111 36.938 131.794C36.7687 131.477 36.6396 131.091 36.5508 130.639C36.4619 130.186 36.4175 129.657 36.4175 129.052V127.643C36.4175 126.885 36.4852 126.25 36.6206 125.738C36.7603 125.226 36.957 124.816 37.2109 124.507C37.4648 124.194 37.7695 123.969 38.125 123.834C38.4847 123.699 38.8867 123.631 39.3311 123.631C39.6908 123.631 40.0208 123.675 40.3213 123.764C40.626 123.849 40.8968 123.986 41.1338 124.177C41.3708 124.363 41.5718 124.613 41.7368 124.926C41.9061 125.235 42.0352 125.613 42.124 126.062C42.2129 126.511 42.2573 127.037 42.2573 127.643ZM41.0767 129.242V127.446C41.0767 127.031 41.0513 126.667 41.0005 126.354C40.9539 126.037 40.8841 125.766 40.791 125.542C40.6979 125.317 40.5794 125.135 40.4355 124.996C40.2959 124.856 40.133 124.754 39.9468 124.691C39.7648 124.623 39.5596 124.589 39.3311 124.589C39.0518 124.589 38.8042 124.642 38.5884 124.748C38.3726 124.85 38.1906 125.013 38.0425 125.237C37.8986 125.461 37.7886 125.755 37.7124 126.119C37.6362 126.483 37.5981 126.925 37.5981 127.446V129.242C37.5981 129.657 37.6214 130.023 37.668 130.34C37.7188 130.658 37.7928 130.933 37.8901 131.166C37.9875 131.394 38.106 131.582 38.2456 131.73C38.3853 131.879 38.5461 131.989 38.728 132.061C38.9142 132.128 39.1195 132.162 39.3438 132.162C39.6315 132.162 39.8833 132.107 40.0991 131.997C40.3149 131.887 40.4948 131.716 40.6387 131.483C40.7868 131.246 40.8968 130.943 40.9688 130.575C41.0407 130.203 41.0767 129.758 41.0767 129.242ZM45.2534 128.601L44.314 128.36L44.7773 123.758H49.519V124.843H45.7739L45.4946 127.357C45.6639 127.26 45.8776 127.169 46.1357 127.084C46.3981 126.999 46.6986 126.957 47.0371 126.957C47.4645 126.957 47.8475 127.031 48.186 127.179C48.5246 127.323 48.8123 127.53 49.0493 127.801C49.2905 128.072 49.4746 128.398 49.6016 128.779C49.7285 129.16 49.792 129.585 49.792 130.055C49.792 130.499 49.7306 130.907 49.6079 131.28C49.4894 131.652 49.3096 131.978 49.0684 132.257C48.8271 132.532 48.5225 132.746 48.1543 132.898C47.7904 133.051 47.3608 133.127 46.8657 133.127C46.4933 133.127 46.14 133.076 45.8057 132.975C45.4756 132.869 45.1794 132.71 44.917 132.499C44.6589 132.283 44.4473 132.016 44.2822 131.699C44.1214 131.377 44.0199 131 43.9775 130.569H45.0947C45.1455 130.916 45.2471 131.208 45.3994 131.445C45.5518 131.682 45.7507 131.862 45.9961 131.984C46.2458 132.103 46.5356 132.162 46.8657 132.162C47.145 132.162 47.3926 132.113 47.6084 132.016C47.8242 131.919 48.0062 131.779 48.1543 131.597C48.3024 131.415 48.4146 131.195 48.4907 130.937C48.5711 130.679 48.6113 130.389 48.6113 130.067C48.6113 129.775 48.5711 129.505 48.4907 129.255C48.4103 129.005 48.2897 128.787 48.1289 128.601C47.9723 128.415 47.7798 128.271 47.5513 128.169C47.3228 128.064 47.0604 128.011 46.7642 128.011C46.3706 128.011 46.0723 128.064 45.8691 128.169C45.6702 128.275 45.465 128.419 45.2534 128.601Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M78.1694 127.801H79.0073C79.4178 127.801 79.7563 127.734 80.0229 127.598C80.2938 127.458 80.4948 127.27 80.626 127.033C80.7614 126.792 80.8291 126.521 80.8291 126.221C80.8291 125.865 80.7699 125.567 80.6514 125.326C80.5329 125.084 80.3551 124.903 80.1182 124.78C79.8812 124.657 79.5807 124.596 79.2168 124.596C78.8867 124.596 78.5947 124.661 78.3408 124.792C78.0911 124.919 77.8944 125.101 77.7505 125.338C77.6108 125.575 77.541 125.855 77.541 126.176H76.3667C76.3667 125.707 76.4852 125.279 76.7222 124.894C76.9591 124.509 77.2913 124.202 77.7188 123.974C78.1504 123.745 78.6497 123.631 79.2168 123.631C79.7754 123.631 80.2642 123.73 80.6831 123.929C81.1021 124.124 81.4279 124.416 81.6606 124.805C81.8934 125.19 82.0098 125.671 82.0098 126.246C82.0098 126.479 81.9548 126.729 81.8447 126.995C81.7389 127.257 81.5718 127.503 81.3433 127.731C81.119 127.96 80.827 128.148 80.4673 128.296C80.1076 128.44 79.6759 128.512 79.1724 128.512H78.1694V127.801ZM78.1694 128.766V128.062H79.1724C79.7606 128.062 80.2472 128.131 80.6323 128.271C81.0174 128.411 81.32 128.597 81.54 128.83C81.7643 129.062 81.9209 129.318 82.0098 129.598C82.1029 129.873 82.1494 130.148 82.1494 130.423C82.1494 130.854 82.0754 131.237 81.9272 131.572C81.7834 131.906 81.5781 132.19 81.3115 132.422C81.0492 132.655 80.7402 132.831 80.3848 132.949C80.0293 133.068 79.6421 133.127 79.2231 133.127C78.8211 133.127 78.4424 133.07 78.0869 132.956C77.7357 132.841 77.4246 132.676 77.1538 132.46C76.883 132.24 76.6714 131.972 76.519 131.654C76.3667 131.333 76.2905 130.967 76.2905 130.556H77.4648C77.4648 130.878 77.5347 131.159 77.6743 131.4C77.8182 131.642 78.0213 131.83 78.2837 131.965C78.5503 132.097 78.8634 132.162 79.2231 132.162C79.5828 132.162 79.8918 132.101 80.1499 131.978C80.4123 131.851 80.6133 131.661 80.7529 131.407C80.8968 131.153 80.9688 130.833 80.9688 130.448C80.9688 130.063 80.8883 129.748 80.7275 129.502C80.5667 129.253 80.3382 129.069 80.042 128.95C79.75 128.827 79.4051 128.766 79.0073 128.766H78.1694ZM89.5698 127.643V129.052C89.5698 129.809 89.5021 130.448 89.3667 130.969C89.2313 131.489 89.0366 131.908 88.7827 132.226C88.5288 132.543 88.222 132.774 87.8623 132.917C87.5068 133.057 87.1048 133.127 86.6562 133.127C86.3008 133.127 85.9728 133.083 85.6724 132.994C85.3719 132.905 85.1011 132.763 84.8599 132.568C84.6229 132.369 84.4198 132.111 84.2505 131.794C84.0812 131.477 83.9521 131.091 83.8633 130.639C83.7744 130.186 83.73 129.657 83.73 129.052V127.643C83.73 126.885 83.7977 126.25 83.9331 125.738C84.0728 125.226 84.2695 124.816 84.5234 124.507C84.7773 124.194 85.082 123.969 85.4375 123.834C85.7972 123.699 86.1992 123.631 86.6436 123.631C87.0033 123.631 87.3333 123.675 87.6338 123.764C87.9385 123.849 88.2093 123.986 88.4463 124.177C88.6833 124.363 88.8843 124.613 89.0493 124.926C89.2186 125.235 89.3477 125.613 89.4365 126.062C89.5254 126.511 89.5698 127.037 89.5698 127.643ZM88.3892 129.242V127.446C88.3892 127.031 88.3638 126.667 88.313 126.354C88.2664 126.037 88.1966 125.766 88.1035 125.542C88.0104 125.317 87.8919 125.135 87.748 124.996C87.6084 124.856 87.4455 124.754 87.2593 124.691C87.0773 124.623 86.8721 124.589 86.6436 124.589C86.3643 124.589 86.1167 124.642 85.9009 124.748C85.6851 124.85 85.5031 125.013 85.355 125.237C85.2111 125.461 85.1011 125.755 85.0249 126.119C84.9487 126.483 84.9106 126.925 84.9106 127.446V129.242C84.9106 129.657 84.9339 130.023 84.9805 130.34C85.0312 130.658 85.1053 130.933 85.2026 131.166C85.3 131.394 85.4185 131.582 85.5581 131.73C85.6978 131.879 85.8586 131.989 86.0405 132.061C86.2267 132.128 86.432 132.162 86.6562 132.162C86.944 132.162 87.1958 132.107 87.4116 131.997C87.6274 131.887 87.8073 131.716 87.9512 131.483C88.0993 131.246 88.2093 130.943 88.2812 130.575C88.3532 130.203 88.3892 129.758 88.3892 129.242Z",fill:"#0F172A"})),{ToolBarFields:gs,BlockName:Zs,BlockLabel:ys,BlockDescription:Es,BlockAdvancedValue:ws,AdvancedFields:vs,FieldWrapper:_s,AdvancedInspectorControl:ks,ClientSideMacros:js,ValidationToggleGroup:xs,ValidationBlockMessage:Fs,AttributeHelp:Bs}=JetFBComponents,{useInsertMacro:As,useIsAdvancedValidation:Ps,useUniqueNameOnDuplicate:Ss}=JetFBHooks,{__:Ns}=wp.i18n,{InspectorControls:Is,useBlockProps:Ts}=wp.blockEditor,{TextControl:Os,PanelBody:Js,__experimentalInputControl:Rs,ExternalLink:qs}=wp.components;let{InputControl:Ds}=wp.components;void 0===Ds&&(Ds=Rs);const zs=JSON.parse('{"apiVersion":3,"name":"jet-forms/time-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","time"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Time Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"min":{"type":"string","default":""},"max":{"type":"string","default":""},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Us}=wp.i18n,{createBlock:Gs}=wp.blocks,{name:Ws,icon:Ks=""}=zs,$s={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ks}}),description:Us("Allow the user to enter the desirable time. Let them type the time manually or choose from the convenient drop-down timer.","jet-form-builder"),edit:function(e){const{isSelected:C,attributes:t,setAttributes:l,editProps:{uniqKey:r}}=e,n=Ts(),[a,i]=As("min"),[o,s]=As("max"),c=Ps();if(Ss(),t.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ls);const d=(0,h.createElement)(h.Fragment,null,Ns("Plain date should be in hh:mm format.","jet-form-builder")," ",Ns("Or you can use","jet-form-builder")," ",(0,h.createElement)(qs,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},Ns("macros","jet-form-builder"))," ",Ns("and","jet-form-builder")," ",(0,h.createElement)(qs,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},Ns("filters","jet-form-builder")),".");return[(0,h.createElement)(gs,{key:r("ToolBarFields"),...e}),C&&(0,h.createElement)(Is,{key:r("InspectorControls")},(0,h.createElement)(Js,{title:Ns("General","jet-form-builder")},(0,h.createElement)(ys,null),(0,h.createElement)(Zs,null),(0,h.createElement)(Es,null)),(0,h.createElement)(Js,{title:Ns("Value","jet-form-builder")},(0,h.createElement)(ws,{help:d,style:{marginBottom:"1em"}}),(0,h.createElement)(js,null,(0,h.createElement)(ks,{value:t.min,label:Ns("Starting from time","jet-form-builder"),onChangePreset:e=>l({min:e}),onChangeMacros:i},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Os,{id:e,ref:a,className:"jet-fb m-unset",value:t.min,onChange:e=>l({min:e})}),(0,h.createElement)(Bs,null,d))),(0,h.createElement)(ks,{value:t.max,label:Ns("Limit time to","jet-form-builder"),onChangePreset:e=>l({max:e}),onChangeMacros:s},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Os,{id:e,ref:o,className:"jet-fb m-unset",value:t.max,onChange:e=>l({max:e})}),(0,h.createElement)(Bs,null,d))))),(0,h.createElement)(Js,{title:Ns("Validation","jet-form-builder")},(0,h.createElement)(xs,null),c&&(0,h.createElement)(h.Fragment,null,Boolean(t.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Fs,{name:"date_min"})),Boolean(t.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Fs,{name:"date_max"})),(0,h.createElement)(Fs,{name:"empty"}))),(0,h.createElement)(vs,null)),(0,h.createElement)("div",{...n,key:r("viewBlock")},(0,h.createElement)(_s,{key:r("FieldWrapper"),...e},(0,h.createElement)(Os,{onChange:()=>{},className:"jet-form-builder__field-preview",key:r("place_holder_block"),placeholder:'Input type="time"'})))]},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Gs("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/datetime-field","jet-forms/date-field"],transform:e=>Gs(Ws,{...e}),priority:0}]}},Ys=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,h.createElement)("g",{clipPath:"url(#clip0_75_1400)"},(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V144H15V19Z",fill:"white"}),(0,h.createElement)("path",{d:"M15 8H283.061V85H15V8Z",fill:"url(#paint0_linear_75_1400)"}),(0,h.createElement)("path",{d:"M15 8H283.061V85H15V8Z",fill:"url(#paint1_linear_75_1400)"}),(0,h.createElement)("g",{filter:"url(#filter0_d_75_1400)"},(0,h.createElement)("path",{d:"M219 14.2974C219 15.8887 218.421 17.4148 217.389 18.54C216.358 19.6652 214.959 20.2974 213.5 20.2974C212.041 20.2974 210.642 19.6652 209.611 18.54C208.579 17.4148 208 15.8887 208 14.2974L219 14.2974Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M219.5 14.2974V13.7974L219 13.7974L208 13.7974L207.5 13.7974L207.5 14.2974C207.5 16.0079 208.122 17.6562 209.242 18.8779C210.364 20.101 211.894 20.7974 213.5 20.7974C215.106 20.7974 216.636 20.101 217.758 18.8779C218.878 17.6562 219.5 16.0079 219.5 14.2974Z",stroke:"white"})),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1400)"},(0,h.createElement)("path",{d:"M35.0654 97.4038L33.9281 96.2664C33.7385 96.0769 33.4323 96.0769 33.2428 96.2664L31.7264 97.7829L30.7883 96.8545L30.103 97.5398L30.7932 98.23L26.4578 102.565V104.874H28.7664L33.1018 100.539L33.792 101.229L34.4773 100.544L33.5441 99.6103L35.0606 98.0939C35.255 97.8995 35.255 97.5933 35.0654 97.4038ZM28.363 103.902L27.4298 102.969L31.3473 99.0514L32.2804 99.9846L28.363 103.902Z",fill:"#64748B"})),(0,h.createElement)("circle",{cx:"47.8098",cy:"100.5",r:"7.5",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"272.69",y:"97.584",width:"5.8324",height:"213",rx:"2.9162",transform:"rotate(90 272.69 97.584)",fill:"url(#paint2_linear_75_1400)"}),(0,h.createElement)("circle",{cx:"182",cy:"100.742",r:"5.5",transform:"rotate(90 182 100.742)",fill:"white",stroke:"#64748B"}),(0,h.createElement)("rect",{x:"25.5",y:"114.333",width:"120",height:"19.4134",rx:"2.4162",fill:"white",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M67.4553 127.694L68.8372 120.585H69.5403L68.1536 127.694H67.4553ZM69.4426 127.694L70.8293 120.585H71.5276L70.1409 127.694H69.4426ZM72.1233 123.295H67.0452V122.616H72.1233V123.295ZM71.7571 125.692H66.6741V125.019H71.7571V125.692ZM77.6506 125.302V126.044H72.5139V125.512L75.6975 120.585H76.4348L75.6438 122.011L73.5393 125.302H77.6506ZM76.6594 120.585V127.694H75.7561V120.585H76.6594ZM83.1292 126.952V127.694H78.4758V127.045L80.8049 124.452C81.0914 124.133 81.3127 123.863 81.469 123.642C81.6285 123.417 81.7392 123.217 81.801 123.041C81.8661 122.862 81.8987 122.68 81.8987 122.494C81.8987 122.26 81.8499 122.048 81.7522 121.859C81.6578 121.667 81.5178 121.514 81.3323 121.4C81.1467 121.286 80.9221 121.229 80.6584 121.229C80.3427 121.229 80.079 121.291 79.8674 121.415C79.6591 121.535 79.5028 121.705 79.3987 121.923C79.2945 122.141 79.2424 122.392 79.2424 122.675H78.3391C78.3391 122.274 78.427 121.908 78.6028 121.576C78.7786 121.244 79.039 120.98 79.384 120.785C79.7291 120.587 80.1539 120.487 80.6584 120.487C81.1077 120.487 81.4918 120.567 81.8108 120.727C82.1298 120.883 82.3739 121.104 82.5432 121.391C82.7157 121.674 82.802 122.006 82.802 122.387C82.802 122.595 82.7662 122.807 82.6946 123.021C82.6262 123.233 82.5302 123.445 82.4065 123.656C82.2861 123.868 82.1444 124.076 81.9817 124.281C81.8222 124.486 81.6513 124.688 81.469 124.887L79.5647 126.952H83.1292ZM88.6907 120.585V121.093L85.7463 127.694H84.7942L87.7336 121.327H83.886V120.585H88.6907ZM94.3792 126.952V127.694H89.7258V127.045L92.0549 124.452C92.3414 124.133 92.5627 123.863 92.719 123.642C92.8785 123.417 92.9892 123.217 93.051 123.041C93.1161 122.862 93.1487 122.68 93.1487 122.494C93.1487 122.26 93.0999 122.048 93.0022 121.859C92.9078 121.667 92.7678 121.514 92.5823 121.4C92.3967 121.286 92.1721 121.229 91.9084 121.229C91.5927 121.229 91.329 121.291 91.1174 121.415C90.9091 121.535 90.7528 121.705 90.6487 121.923C90.5445 122.141 90.4924 122.392 90.4924 122.675H89.5891C89.5891 122.274 89.677 121.908 89.8528 121.576C90.0286 121.244 90.289 120.98 90.634 120.785C90.9791 120.587 91.4039 120.487 91.9084 120.487C92.3577 120.487 92.7418 120.567 93.0608 120.727C93.3798 120.883 93.6239 121.104 93.7932 121.391C93.9657 121.674 94.052 122.006 94.052 122.387C94.052 122.595 94.0162 122.807 93.9446 123.021C93.8762 123.233 93.7802 123.445 93.6565 123.656C93.5361 123.868 93.3944 124.076 93.2317 124.281C93.0722 124.486 92.9013 124.688 92.719 124.887L90.8147 126.952H94.3792ZM96.5227 120.585V127.694H95.5803V120.585H96.5227ZM99.5012 123.783V124.555H96.3176V123.783H99.5012ZM99.9846 120.585V121.356H96.3176V120.585H99.9846ZM101.772 126.938H101.865C102.385 126.938 102.809 126.864 103.134 126.718C103.46 126.571 103.71 126.374 103.886 126.127C104.062 125.88 104.182 125.601 104.247 125.292C104.312 124.979 104.345 124.659 104.345 124.33V123.241C104.345 122.919 104.308 122.632 104.233 122.382C104.161 122.131 104.06 121.921 103.93 121.752C103.803 121.583 103.658 121.454 103.495 121.366C103.333 121.278 103.16 121.234 102.978 121.234C102.769 121.234 102.582 121.277 102.416 121.361C102.253 121.443 102.115 121.558 102.001 121.708C101.891 121.858 101.806 122.034 101.747 122.235C101.689 122.437 101.659 122.657 101.659 122.895C101.659 123.106 101.685 123.311 101.738 123.51C101.79 123.708 101.869 123.887 101.977 124.047C102.084 124.206 102.218 124.333 102.377 124.428C102.54 124.519 102.73 124.564 102.948 124.564C103.15 124.564 103.339 124.525 103.515 124.447C103.694 124.366 103.852 124.257 103.989 124.12C104.128 123.98 104.239 123.822 104.321 123.646C104.405 123.471 104.454 123.287 104.467 123.095H104.897C104.897 123.365 104.843 123.632 104.736 123.896C104.631 124.156 104.485 124.394 104.296 124.608C104.107 124.823 103.886 124.996 103.632 125.126C103.378 125.253 103.101 125.316 102.802 125.316C102.45 125.316 102.146 125.248 101.889 125.111C101.632 124.975 101.42 124.792 101.254 124.564C101.091 124.337 100.969 124.083 100.888 123.803C100.81 123.52 100.771 123.233 100.771 122.943C100.771 122.605 100.818 122.287 100.912 121.991C101.007 121.695 101.147 121.435 101.332 121.21C101.518 120.982 101.747 120.805 102.021 120.678C102.297 120.551 102.616 120.487 102.978 120.487C103.385 120.487 103.731 120.569 104.018 120.731C104.304 120.894 104.537 121.112 104.716 121.386C104.898 121.659 105.032 121.967 105.116 122.309C105.201 122.65 105.243 123.002 105.243 123.363V123.69C105.243 124.058 105.219 124.433 105.17 124.813C105.125 125.191 105.035 125.552 104.902 125.897C104.771 126.243 104.581 126.552 104.33 126.825C104.08 127.095 103.753 127.31 103.349 127.47C102.948 127.626 102.454 127.704 101.865 127.704H101.772V126.938Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"152",y:"113.833",width:"120.835",height:"20.4134",rx:"2.9162",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M260.898 122.448L262.695 120.654L264.493 122.448L265.045 121.896L262.695 119.546L260.346 121.896L260.898 122.448Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M264.493 126.043L262.696 127.836L260.898 126.043L260.346 126.595L262.696 128.944L265.045 126.595L264.493 126.043Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M209.882 123.288V124.055H206.034V123.288H209.882ZM206.181 120.232V127.341H205.238V120.232H206.181ZM210.702 120.232V127.341H209.765V120.232H210.702ZM216.894 126.574V127.341H213.129V126.574H216.894ZM213.319 120.232V127.341H212.377V120.232H213.319ZM216.396 123.288V124.055H213.129V123.288H216.396ZM216.845 120.232V121.003H213.129V120.232H216.845ZM218.671 120.232L220.38 122.956L222.089 120.232H223.188L220.941 123.752L223.241 127.341H222.133L220.38 124.563L218.627 127.341H217.519L219.818 123.752L217.572 120.232H218.671Z",fill:"#64748B"})),(0,h.createElement)("defs",null,(0,h.createElement)("filter",{id:"filter0_d_75_1400",x:"204.28",y:"12.3766",width:"16.683",height:"11.683",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB"},(0,h.createElement)("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),(0,h.createElement)("feColorMatrix",{in:"SourceAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",result:"hardAlpha"}),(0,h.createElement)("feOffset",{dx:"-0.878599",dy:"0.920745"}),(0,h.createElement)("feGaussianBlur",{stdDeviation:"0.920745"}),(0,h.createElement)("feComposite",{in2:"hardAlpha",operator:"out"}),(0,h.createElement)("feColorMatrix",{type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"}),(0,h.createElement)("feBlend",{mode:"normal",in2:"BackgroundImageFix",result:"effect1_dropShadow_75_1400"}),(0,h.createElement)("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_dropShadow_75_1400",result:"shape"})),(0,h.createElement)("linearGradient",{id:"paint0_linear_75_1400",x1:"15",y1:"85",x2:"15",y2:"8",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",null),(0,h.createElement)("stop",{offset:"1",stopColor:"#C4C4C4",stopOpacity:"0"})),(0,h.createElement)("linearGradient",{id:"paint1_linear_75_1400",x1:"15",y1:"8",x2:"283.061",y2:"8.00001",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",{stopColor:"#4F46E5",stopOpacity:"0"}),(0,h.createElement)("stop",{offset:"1",stopColor:"#4272F9"})),(0,h.createElement)("linearGradient",{id:"paint2_linear_75_1400",x1:"275.82",y1:"310.274",x2:"275.896",y2:"97.274",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",{offset:"0.0521219",stopColor:"#FF0000"}),(0,h.createElement)("stop",{offset:"0.164776",stopColor:"#FF8A00"}),(0,h.createElement)("stop",{offset:"0.27743",stopColor:"#FFE600"}),(0,h.createElement)("stop",{offset:"0.393479",stopColor:"#14FF00"}),(0,h.createElement)("stop",{offset:"0.493654",stopColor:"#00A3FF"}),(0,h.createElement)("stop",{offset:"0.611759",stopColor:"#0500FF"}),(0,h.createElement)("stop",{offset:"0.722596",stopColor:"#AD00FF"}),(0,h.createElement)("stop",{offset:"0.83525",stopColor:"#FF00C7"}),(0,h.createElement)("stop",{offset:"0.946088",stopColor:"#FF0000"})),(0,h.createElement)("clipPath",{id:"clip0_75_1400"},(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V144H15V19Z",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1400"},(0,h.createElement)("rect",{width:"11.6648",height:"11.6648",fill:"white",transform:"translate(25 94.6675)"})))),{AdvancedFields:Xs,GeneralFields:Qs,ToolBarFields:ec,FieldWrapper:Cc,FieldSettingsWrapper:tc}=JetFBComponents,{useUniqKey:lc,useUniqueNameOnDuplicate:rc}=JetFBHooks,{__experimentalInputControl:nc}=wp.components,{InspectorControls:ac,useBlockProps:ic}=wp.blockEditor;let{InputControl:oc}=wp.components;void 0===oc&&(oc=nc);const sc=JSON.parse('{"apiVersion":3,"name":"jet-forms/color-picker-field","category":"jet-form-builder-fields","title":"Color Picker Field","icon":"\\n\\n","keywords":["jetformbuilder","field","colorpicker","picker","input"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:cc}=wp.i18n,{createBlock:dc}=wp.blocks,{name:mc,icon:uc}=sc,pc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:uc}}),description:cc("Give your users an opportunity to design your website and pick a certain color in the form with the help of the Color Picker Field.","jet-form-builder"),edit:function(e){const C=ic(),t=lc();rc();const{isSelected:l,attributes:r}=e;return r.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ys):[(0,h.createElement)(ec,{key:t("ToolBarFields"),...e}),l&&(0,h.createElement)(ac,{key:t("InspectorControls")},(0,h.createElement)(Qs,null),(0,h.createElement)(tc,null),(0,h.createElement)(Xs,null)),(0,h.createElement)("div",{...C,key:t("viewBlock")},(0,h.createElement)(Cc,{key:t("FieldWrapper"),...e},(0,h.createElement)(oc,{className:"jet-form-builder__field-wrap jet-form-builder__field-preview",type:"color",key:"color_picker_place_holder_block",onChange:()=>{}})))]},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>dc("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>dc(mc,{...e}),priority:0}]}},fc=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M87.1279 46.3447H84.6055L84.5918 45.2852H86.8818C87.2601 45.2852 87.5905 45.2214 87.873 45.0938C88.1556 44.9661 88.3743 44.7839 88.5293 44.5469C88.6888 44.3053 88.7686 44.0182 88.7686 43.6855C88.7686 43.321 88.6979 43.0247 88.5566 42.7969C88.4199 42.5645 88.208 42.3958 87.9209 42.291C87.6383 42.1816 87.2783 42.127 86.8408 42.127H84.8994V51H83.5801V41.0469H86.8408C87.3512 41.0469 87.807 41.0993 88.208 41.2041C88.609 41.3044 88.9486 41.4639 89.2266 41.6826C89.5091 41.8968 89.7233 42.1702 89.8691 42.5029C90.015 42.8356 90.0879 43.2344 90.0879 43.6992C90.0879 44.1094 89.9831 44.4808 89.7734 44.8135C89.5638 45.1416 89.2721 45.4105 88.8984 45.6201C88.5293 45.8298 88.0964 45.9642 87.5996 46.0234L87.1279 46.3447ZM87.0664 51H84.0859L84.8311 49.9268H87.0664C87.4857 49.9268 87.8411 49.8538 88.1328 49.708C88.429 49.5622 88.6546 49.3571 88.8096 49.0928C88.9645 48.8239 89.042 48.5072 89.042 48.1426C89.042 47.7734 88.9759 47.4544 88.8438 47.1855C88.7116 46.9167 88.5042 46.7093 88.2217 46.5635C87.9391 46.4176 87.5745 46.3447 87.1279 46.3447H85.248L85.2617 45.2852H87.832L88.1123 45.668C88.5908 45.709 88.9964 45.8457 89.3291 46.0781C89.6618 46.306 89.9147 46.5977 90.0879 46.9531C90.2656 47.3086 90.3545 47.7005 90.3545 48.1289C90.3545 48.7487 90.2178 49.2728 89.9443 49.7012C89.6755 50.125 89.2949 50.4486 88.8027 50.6719C88.3105 50.8906 87.7318 51 87.0664 51ZM91.7764 47.3838V47.2266C91.7764 46.6934 91.8538 46.1989 92.0088 45.7432C92.1637 45.2829 92.387 44.8841 92.6787 44.5469C92.9704 44.2051 93.3236 43.9408 93.7383 43.7539C94.153 43.5625 94.6178 43.4668 95.1328 43.4668C95.6523 43.4668 96.1195 43.5625 96.5342 43.7539C96.9535 43.9408 97.3089 44.2051 97.6006 44.5469C97.8968 44.8841 98.1224 45.2829 98.2773 45.7432C98.4323 46.1989 98.5098 46.6934 98.5098 47.2266V47.3838C98.5098 47.917 98.4323 48.4115 98.2773 48.8672C98.1224 49.3229 97.8968 49.7217 97.6006 50.0635C97.3089 50.4007 96.9557 50.665 96.541 50.8564C96.1309 51.0433 95.666 51.1367 95.1465 51.1367C94.627 51.1367 94.1598 51.0433 93.7451 50.8564C93.3304 50.665 92.9749 50.4007 92.6787 50.0635C92.387 49.7217 92.1637 49.3229 92.0088 48.8672C91.8538 48.4115 91.7764 47.917 91.7764 47.3838ZM93.041 47.2266V47.3838C93.041 47.7529 93.0843 48.1016 93.1709 48.4297C93.2575 48.7533 93.3874 49.0404 93.5605 49.291C93.7383 49.5417 93.9593 49.7399 94.2236 49.8857C94.488 50.027 94.7956 50.0977 95.1465 50.0977C95.4928 50.0977 95.7959 50.027 96.0557 49.8857C96.32 49.7399 96.5387 49.5417 96.7119 49.291C96.8851 49.0404 97.015 48.7533 97.1016 48.4297C97.1927 48.1016 97.2383 47.7529 97.2383 47.3838V47.2266C97.2383 46.862 97.1927 46.5179 97.1016 46.1943C97.015 45.8662 96.8828 45.5768 96.7051 45.3262C96.5319 45.071 96.3132 44.8704 96.0488 44.7246C95.7891 44.5788 95.4837 44.5059 95.1328 44.5059C94.7865 44.5059 94.4811 44.5788 94.2168 44.7246C93.957 44.8704 93.7383 45.071 93.5605 45.3262C93.3874 45.5768 93.2575 45.8662 93.1709 46.1943C93.0843 46.5179 93.041 46.862 93.041 47.2266ZM99.7607 47.3838V47.2266C99.7607 46.6934 99.8382 46.1989 99.9932 45.7432C100.148 45.2829 100.371 44.8841 100.663 44.5469C100.955 44.2051 101.308 43.9408 101.723 43.7539C102.137 43.5625 102.602 43.4668 103.117 43.4668C103.637 43.4668 104.104 43.5625 104.519 43.7539C104.938 43.9408 105.293 44.2051 105.585 44.5469C105.881 44.8841 106.107 45.2829 106.262 45.7432C106.417 46.1989 106.494 46.6934 106.494 47.2266V47.3838C106.494 47.917 106.417 48.4115 106.262 48.8672C106.107 49.3229 105.881 49.7217 105.585 50.0635C105.293 50.4007 104.94 50.665 104.525 50.8564C104.115 51.0433 103.65 51.1367 103.131 51.1367C102.611 51.1367 102.144 51.0433 101.729 50.8564C101.315 50.665 100.959 50.4007 100.663 50.0635C100.371 49.7217 100.148 49.3229 99.9932 48.8672C99.8382 48.4115 99.7607 47.917 99.7607 47.3838ZM101.025 47.2266V47.3838C101.025 47.7529 101.069 48.1016 101.155 48.4297C101.242 48.7533 101.372 49.0404 101.545 49.291C101.723 49.5417 101.944 49.7399 102.208 49.8857C102.472 50.027 102.78 50.0977 103.131 50.0977C103.477 50.0977 103.78 50.027 104.04 49.8857C104.304 49.7399 104.523 49.5417 104.696 49.291C104.869 49.0404 104.999 48.7533 105.086 48.4297C105.177 48.1016 105.223 47.7529 105.223 47.3838V47.2266C105.223 46.862 105.177 46.5179 105.086 46.1943C104.999 45.8662 104.867 45.5768 104.689 45.3262C104.516 45.071 104.298 44.8704 104.033 44.7246C103.773 44.5788 103.468 44.5059 103.117 44.5059C102.771 44.5059 102.465 44.5788 102.201 44.7246C101.941 44.8704 101.723 45.071 101.545 45.3262C101.372 45.5768 101.242 45.8662 101.155 46.1943C101.069 46.5179 101.025 46.862 101.025 47.2266ZM109.352 40.5V51H108.08V40.5H109.352ZM113.87 43.6035L110.644 47.0557L108.839 48.9287L108.736 47.582L110.028 46.0371L112.325 43.6035H113.87ZM112.715 51L110.076 47.4727L110.732 46.3447L114.205 51H112.715ZM123.01 49.7354V45.9277C123.01 45.6361 122.951 45.3831 122.832 45.1689C122.718 44.9502 122.545 44.7816 122.312 44.6631C122.08 44.5446 121.793 44.4854 121.451 44.4854C121.132 44.4854 120.852 44.54 120.61 44.6494C120.373 44.7588 120.187 44.9023 120.05 45.0801C119.918 45.2578 119.852 45.4492 119.852 45.6543H118.587C118.587 45.39 118.655 45.1279 118.792 44.8682C118.929 44.6084 119.125 44.3737 119.38 44.1641C119.64 43.9499 119.95 43.7812 120.31 43.6582C120.674 43.5306 121.08 43.4668 121.526 43.4668C122.064 43.4668 122.538 43.5579 122.948 43.7402C123.363 43.9225 123.687 44.1982 123.919 44.5674C124.156 44.932 124.274 45.39 124.274 45.9414V49.3867C124.274 49.6328 124.295 49.8949 124.336 50.1729C124.382 50.4508 124.448 50.6901 124.534 50.8906V51H123.215C123.151 50.8542 123.101 50.6605 123.064 50.4189C123.028 50.1729 123.01 49.945 123.01 49.7354ZM123.229 46.5156L123.242 47.4043H121.964C121.604 47.4043 121.283 47.4339 121 47.4932C120.717 47.5479 120.48 47.6322 120.289 47.7461C120.098 47.86 119.952 48.0036 119.852 48.1768C119.751 48.3454 119.701 48.5436 119.701 48.7715C119.701 49.0039 119.754 49.2158 119.858 49.4072C119.963 49.5986 120.12 49.7513 120.33 49.8652C120.544 49.9746 120.806 50.0293 121.116 50.0293C121.504 50.0293 121.845 49.9473 122.142 49.7832C122.438 49.6191 122.673 49.4186 122.846 49.1816C123.023 48.9447 123.119 48.7145 123.133 48.4912L123.673 49.0996C123.641 49.291 123.554 49.5029 123.413 49.7354C123.272 49.9678 123.083 50.1911 122.846 50.4053C122.613 50.6149 122.335 50.7904 122.012 50.9316C121.693 51.0684 121.333 51.1367 120.932 51.1367C120.43 51.1367 119.991 51.0387 119.612 50.8428C119.239 50.6468 118.947 50.3848 118.737 50.0566C118.532 49.724 118.43 49.3525 118.43 48.9424C118.43 48.5459 118.507 48.1973 118.662 47.8965C118.817 47.5911 119.04 47.3382 119.332 47.1377C119.624 46.9326 119.975 46.7777 120.385 46.6729C120.795 46.568 121.253 46.5156 121.759 46.5156H123.229ZM127.528 45.1826V51H126.264V43.6035H127.46L127.528 45.1826ZM127.228 47.0215L126.701 47.001C126.706 46.4951 126.781 46.028 126.927 45.5996C127.073 45.1667 127.278 44.7907 127.542 44.4717C127.806 44.1527 128.121 43.9066 128.485 43.7334C128.854 43.5557 129.262 43.4668 129.709 43.4668C130.074 43.4668 130.402 43.5169 130.693 43.6172C130.985 43.7129 131.233 43.8678 131.438 44.082C131.648 44.2962 131.808 44.5742 131.917 44.916C132.026 45.2533 132.081 45.6657 132.081 46.1533V51H130.81V46.1396C130.81 45.7523 130.753 45.4424 130.639 45.21C130.525 44.973 130.358 44.8021 130.14 44.6973C129.921 44.5879 129.652 44.5332 129.333 44.5332C129.019 44.5332 128.731 44.5993 128.472 44.7314C128.216 44.8636 127.995 45.0459 127.809 45.2783C127.626 45.5107 127.483 45.7773 127.378 46.0781C127.278 46.3743 127.228 46.6888 127.228 47.0215ZM141.836 49.7354V45.9277C141.836 45.6361 141.777 45.3831 141.658 45.1689C141.544 44.9502 141.371 44.7816 141.139 44.6631C140.906 44.5446 140.619 44.4854 140.277 44.4854C139.958 44.4854 139.678 44.54 139.437 44.6494C139.2 44.7588 139.013 44.9023 138.876 45.0801C138.744 45.2578 138.678 45.4492 138.678 45.6543H137.413C137.413 45.39 137.481 45.1279 137.618 44.8682C137.755 44.6084 137.951 44.3737 138.206 44.1641C138.466 43.9499 138.776 43.7812 139.136 43.6582C139.5 43.5306 139.906 43.4668 140.353 43.4668C140.89 43.4668 141.364 43.5579 141.774 43.7402C142.189 43.9225 142.513 44.1982 142.745 44.5674C142.982 44.932 143.101 45.39 143.101 45.9414V49.3867C143.101 49.6328 143.121 49.8949 143.162 50.1729C143.208 50.4508 143.274 50.6901 143.36 50.8906V51H142.041C141.977 50.8542 141.927 50.6605 141.891 50.4189C141.854 50.1729 141.836 49.945 141.836 49.7354ZM142.055 46.5156L142.068 47.4043H140.79C140.43 47.4043 140.109 47.4339 139.826 47.4932C139.544 47.5479 139.307 47.6322 139.115 47.7461C138.924 47.86 138.778 48.0036 138.678 48.1768C138.577 48.3454 138.527 48.5436 138.527 48.7715C138.527 49.0039 138.58 49.2158 138.685 49.4072C138.789 49.5986 138.947 49.7513 139.156 49.8652C139.37 49.9746 139.632 50.0293 139.942 50.0293C140.33 50.0293 140.672 49.9473 140.968 49.7832C141.264 49.6191 141.499 49.4186 141.672 49.1816C141.85 48.9447 141.945 48.7145 141.959 48.4912L142.499 49.0996C142.467 49.291 142.381 49.5029 142.239 49.7354C142.098 49.9678 141.909 50.1911 141.672 50.4053C141.439 50.6149 141.161 50.7904 140.838 50.9316C140.519 51.0684 140.159 51.1367 139.758 51.1367C139.257 51.1367 138.817 51.0387 138.438 50.8428C138.065 50.6468 137.773 50.3848 137.563 50.0566C137.358 49.724 137.256 49.3525 137.256 48.9424C137.256 48.5459 137.333 48.1973 137.488 47.8965C137.643 47.5911 137.867 47.3382 138.158 47.1377C138.45 46.9326 138.801 46.7777 139.211 46.6729C139.621 46.568 140.079 46.5156 140.585 46.5156H142.055ZM146.354 45.0254V53.8438H145.083V43.6035H146.245L146.354 45.0254ZM151.338 47.2402V47.3838C151.338 47.9215 151.274 48.4206 151.146 48.8809C151.019 49.3366 150.832 49.7331 150.586 50.0703C150.344 50.4076 150.046 50.6696 149.69 50.8564C149.335 51.0433 148.927 51.1367 148.467 51.1367C147.997 51.1367 147.583 51.0592 147.223 50.9043C146.863 50.7493 146.557 50.5238 146.307 50.2275C146.056 49.9313 145.855 49.5758 145.705 49.1611C145.559 48.7464 145.459 48.2793 145.404 47.7598V46.9941C145.459 46.4473 145.562 45.9574 145.712 45.5244C145.862 45.0915 146.061 44.7223 146.307 44.417C146.557 44.1071 146.86 43.8724 147.216 43.7129C147.571 43.5488 147.981 43.4668 148.446 43.4668C148.911 43.4668 149.324 43.5579 149.684 43.7402C150.044 43.918 150.347 44.1732 150.593 44.5059C150.839 44.8385 151.023 45.2373 151.146 45.7021C151.274 46.1624 151.338 46.6751 151.338 47.2402ZM150.066 47.3838V47.2402C150.066 46.8711 150.028 46.5247 149.95 46.2012C149.873 45.873 149.752 45.5859 149.588 45.3398C149.428 45.0892 149.223 44.8932 148.973 44.752C148.722 44.6061 148.424 44.5332 148.077 44.5332C147.758 44.5332 147.48 44.5879 147.243 44.6973C147.011 44.8066 146.812 44.9548 146.648 45.1416C146.484 45.3239 146.35 45.5335 146.245 45.7705C146.145 46.0029 146.07 46.2445 146.02 46.4951V48.2656C146.111 48.5846 146.238 48.8854 146.402 49.168C146.566 49.446 146.785 49.6715 147.059 49.8447C147.332 50.0133 147.676 50.0977 148.091 50.0977C148.433 50.0977 148.727 50.027 148.973 49.8857C149.223 49.7399 149.428 49.5417 149.588 49.291C149.752 49.0404 149.873 48.7533 149.95 48.4297C150.028 48.1016 150.066 47.7529 150.066 47.3838ZM154.216 45.0254V53.8438H152.944V43.6035H154.106L154.216 45.0254ZM159.199 47.2402V47.3838C159.199 47.9215 159.135 48.4206 159.008 48.8809C158.88 49.3366 158.693 49.7331 158.447 50.0703C158.206 50.4076 157.907 50.6696 157.552 50.8564C157.196 51.0433 156.788 51.1367 156.328 51.1367C155.859 51.1367 155.444 51.0592 155.084 50.9043C154.724 50.7493 154.419 50.5238 154.168 50.2275C153.917 49.9313 153.717 49.5758 153.566 49.1611C153.421 48.7464 153.32 48.2793 153.266 47.7598V46.9941C153.32 46.4473 153.423 45.9574 153.573 45.5244C153.724 45.0915 153.922 44.7223 154.168 44.417C154.419 44.1071 154.722 43.8724 155.077 43.7129C155.433 43.5488 155.843 43.4668 156.308 43.4668C156.772 43.4668 157.185 43.5579 157.545 43.7402C157.905 43.918 158.208 44.1732 158.454 44.5059C158.7 44.8385 158.885 45.2373 159.008 45.7021C159.135 46.1624 159.199 46.6751 159.199 47.2402ZM157.928 47.3838V47.2402C157.928 46.8711 157.889 46.5247 157.812 46.2012C157.734 45.873 157.613 45.5859 157.449 45.3398C157.29 45.0892 157.085 44.8932 156.834 44.752C156.583 44.6061 156.285 44.5332 155.938 44.5332C155.619 44.5332 155.341 44.5879 155.104 44.6973C154.872 44.8066 154.674 44.9548 154.51 45.1416C154.346 45.3239 154.211 45.5335 154.106 45.7705C154.006 46.0029 153.931 46.2445 153.881 46.4951V48.2656C153.972 48.5846 154.1 48.8854 154.264 49.168C154.428 49.446 154.646 49.6715 154.92 49.8447C155.193 50.0133 155.537 50.0977 155.952 50.0977C156.294 50.0977 156.588 50.027 156.834 49.8857C157.085 49.7399 157.29 49.5417 157.449 49.291C157.613 49.0404 157.734 48.7533 157.812 48.4297C157.889 48.1016 157.928 47.7529 157.928 47.3838ZM160.478 47.3838V47.2266C160.478 46.6934 160.555 46.1989 160.71 45.7432C160.865 45.2829 161.088 44.8841 161.38 44.5469C161.672 44.2051 162.025 43.9408 162.439 43.7539C162.854 43.5625 163.319 43.4668 163.834 43.4668C164.354 43.4668 164.821 43.5625 165.235 43.7539C165.655 43.9408 166.01 44.2051 166.302 44.5469C166.598 44.8841 166.824 45.2829 166.979 45.7432C167.133 46.1989 167.211 46.6934 167.211 47.2266V47.3838C167.211 47.917 167.133 48.4115 166.979 48.8672C166.824 49.3229 166.598 49.7217 166.302 50.0635C166.01 50.4007 165.657 50.665 165.242 50.8564C164.832 51.0433 164.367 51.1367 163.848 51.1367C163.328 51.1367 162.861 51.0433 162.446 50.8564C162.032 50.665 161.676 50.4007 161.38 50.0635C161.088 49.7217 160.865 49.3229 160.71 48.8672C160.555 48.4115 160.478 47.917 160.478 47.3838ZM161.742 47.2266V47.3838C161.742 47.7529 161.785 48.1016 161.872 48.4297C161.959 48.7533 162.089 49.0404 162.262 49.291C162.439 49.5417 162.66 49.7399 162.925 49.8857C163.189 50.027 163.497 50.0977 163.848 50.0977C164.194 50.0977 164.497 50.027 164.757 49.8857C165.021 49.7399 165.24 49.5417 165.413 49.291C165.586 49.0404 165.716 48.7533 165.803 48.4297C165.894 48.1016 165.939 47.7529 165.939 47.3838V47.2266C165.939 46.862 165.894 46.5179 165.803 46.1943C165.716 45.8662 165.584 45.5768 165.406 45.3262C165.233 45.071 165.014 44.8704 164.75 44.7246C164.49 44.5788 164.185 44.5059 163.834 44.5059C163.488 44.5059 163.182 44.5788 162.918 44.7246C162.658 44.8704 162.439 45.071 162.262 45.3262C162.089 45.5768 161.959 45.8662 161.872 46.1943C161.785 46.5179 161.742 46.862 161.742 47.2266ZM170.171 43.6035V51H168.899V43.6035H170.171ZM168.804 41.6416C168.804 41.4365 168.865 41.2633 168.988 41.1221C169.116 40.9808 169.303 40.9102 169.549 40.9102C169.79 40.9102 169.975 40.9808 170.103 41.1221C170.235 41.2633 170.301 41.4365 170.301 41.6416C170.301 41.8376 170.235 42.0062 170.103 42.1475C169.975 42.2842 169.79 42.3525 169.549 42.3525C169.303 42.3525 169.116 42.2842 168.988 42.1475C168.865 42.0062 168.804 41.8376 168.804 41.6416ZM173.466 45.1826V51H172.201V43.6035H173.397L173.466 45.1826ZM173.165 47.0215L172.639 47.001C172.643 46.4951 172.718 46.028 172.864 45.5996C173.01 45.1667 173.215 44.7907 173.479 44.4717C173.744 44.1527 174.058 43.9066 174.423 43.7334C174.792 43.5557 175.2 43.4668 175.646 43.4668C176.011 43.4668 176.339 43.5169 176.631 43.6172C176.923 43.7129 177.171 43.8678 177.376 44.082C177.586 44.2962 177.745 44.5742 177.854 44.916C177.964 45.2533 178.019 45.6657 178.019 46.1533V51H176.747V46.1396C176.747 45.7523 176.69 45.4424 176.576 45.21C176.462 44.973 176.296 44.8021 176.077 44.6973C175.858 44.5879 175.59 44.5332 175.271 44.5332C174.956 44.5332 174.669 44.5993 174.409 44.7314C174.154 44.8636 173.933 45.0459 173.746 45.2783C173.564 45.5107 173.42 45.7773 173.315 46.0781C173.215 46.3743 173.165 46.6888 173.165 47.0215ZM183.036 43.6035V44.5742H179.037V43.6035H183.036ZM180.391 41.8057H181.655V49.168C181.655 49.4186 181.694 49.6077 181.771 49.7354C181.849 49.863 181.949 49.9473 182.072 49.9883C182.195 50.0293 182.327 50.0498 182.469 50.0498C182.574 50.0498 182.683 50.0407 182.797 50.0225C182.915 49.9997 183.004 49.9814 183.063 49.9678L183.07 51C182.97 51.0319 182.838 51.0615 182.674 51.0889C182.514 51.1208 182.321 51.1367 182.093 51.1367C181.783 51.1367 181.498 51.0752 181.238 50.9521C180.979 50.8291 180.771 50.624 180.616 50.3369C180.466 50.0452 180.391 49.6533 180.391 49.1611V41.8057ZM185.777 45.0732V51H184.506V43.6035H185.709L185.777 45.0732ZM185.518 47.0215L184.93 47.001C184.934 46.4951 185 46.028 185.128 45.5996C185.256 45.1667 185.445 44.7907 185.695 44.4717C185.946 44.1527 186.258 43.9066 186.632 43.7334C187.006 43.5557 187.438 43.4668 187.931 43.4668C188.277 43.4668 188.596 43.5169 188.888 43.6172C189.179 43.7129 189.432 43.8656 189.646 44.0752C189.861 44.2848 190.027 44.5537 190.146 44.8818C190.264 45.21 190.323 45.6064 190.323 46.0713V51H189.059V46.1328C189.059 45.7454 188.993 45.4355 188.86 45.2031C188.733 44.9707 188.55 44.8021 188.313 44.6973C188.076 44.5879 187.799 44.5332 187.479 44.5332C187.106 44.5332 186.794 44.5993 186.543 44.7314C186.292 44.8636 186.092 45.0459 185.941 45.2783C185.791 45.5107 185.682 45.7773 185.613 46.0781C185.549 46.3743 185.518 46.6888 185.518 47.0215ZM190.31 46.3242L189.462 46.584C189.466 46.1784 189.533 45.7887 189.66 45.415C189.792 45.0413 189.981 44.7087 190.228 44.417C190.478 44.1253 190.786 43.8952 191.15 43.7266C191.515 43.5534 191.932 43.4668 192.401 43.4668C192.798 43.4668 193.149 43.5192 193.454 43.624C193.764 43.7288 194.024 43.8906 194.233 44.1094C194.448 44.3236 194.609 44.5993 194.719 44.9365C194.828 45.2738 194.883 45.6748 194.883 46.1396V51H193.611V46.126C193.611 45.7113 193.545 45.39 193.413 45.1621C193.285 44.9297 193.103 44.7679 192.866 44.6768C192.634 44.5811 192.356 44.5332 192.032 44.5332C191.754 44.5332 191.508 44.5811 191.294 44.6768C191.08 44.7725 190.9 44.9046 190.754 45.0732C190.608 45.2373 190.496 45.4264 190.419 45.6406C190.346 45.8548 190.31 46.0827 190.31 46.3242ZM199.866 51.1367C199.351 51.1367 198.884 51.0501 198.465 50.877C198.05 50.6992 197.692 50.4508 197.392 50.1318C197.095 49.8128 196.868 49.4346 196.708 48.9971C196.549 48.5596 196.469 48.0811 196.469 47.5615V47.2744C196.469 46.6729 196.558 46.1374 196.735 45.668C196.913 45.194 197.155 44.793 197.46 44.4648C197.765 44.1367 198.112 43.8883 198.499 43.7197C198.886 43.5511 199.287 43.4668 199.702 43.4668C200.231 43.4668 200.687 43.5579 201.069 43.7402C201.457 43.9225 201.773 44.1777 202.02 44.5059C202.266 44.8294 202.448 45.2122 202.566 45.6543C202.685 46.0918 202.744 46.5703 202.744 47.0898V47.6572H197.221V46.625H201.479V46.5293C201.461 46.2012 201.393 45.8822 201.274 45.5723C201.16 45.2624 200.978 45.0072 200.728 44.8066C200.477 44.6061 200.135 44.5059 199.702 44.5059C199.415 44.5059 199.151 44.5674 198.909 44.6904C198.668 44.8089 198.46 44.9867 198.287 45.2236C198.114 45.4606 197.979 45.75 197.884 46.0918C197.788 46.4336 197.74 46.8278 197.74 47.2744V47.5615C197.74 47.9124 197.788 48.2428 197.884 48.5527C197.984 48.8581 198.128 49.127 198.314 49.3594C198.506 49.5918 198.736 49.7741 199.005 49.9062C199.278 50.0384 199.588 50.1045 199.935 50.1045C200.381 50.1045 200.759 50.0133 201.069 49.8311C201.379 49.6488 201.65 49.4049 201.883 49.0996L202.648 49.708C202.489 49.9495 202.286 50.1797 202.04 50.3984C201.794 50.6172 201.491 50.7949 201.131 50.9316C200.775 51.0684 200.354 51.1367 199.866 51.1367ZM205.485 45.1826V51H204.221V43.6035H205.417L205.485 45.1826ZM205.185 47.0215L204.658 47.001C204.663 46.4951 204.738 46.028 204.884 45.5996C205.03 45.1667 205.235 44.7907 205.499 44.4717C205.763 44.1527 206.078 43.9066 206.442 43.7334C206.812 43.5557 207.219 43.4668 207.666 43.4668C208.031 43.4668 208.359 43.5169 208.65 43.6172C208.942 43.7129 209.19 43.8678 209.396 44.082C209.605 44.2962 209.765 44.5742 209.874 44.916C209.983 45.2533 210.038 45.6657 210.038 46.1533V51H208.767V46.1396C208.767 45.7523 208.71 45.4424 208.596 45.21C208.482 44.973 208.315 44.8021 208.097 44.6973C207.878 44.5879 207.609 44.5332 207.29 44.5332C206.976 44.5332 206.688 44.5993 206.429 44.7314C206.174 44.8636 205.952 45.0459 205.766 45.2783C205.583 45.5107 205.44 45.7773 205.335 46.0781C205.235 46.3743 205.185 46.6888 205.185 47.0215ZM215.056 43.6035V44.5742H211.057V43.6035H215.056ZM212.41 41.8057H213.675V49.168C213.675 49.4186 213.714 49.6077 213.791 49.7354C213.868 49.863 213.969 49.9473 214.092 49.9883C214.215 50.0293 214.347 50.0498 214.488 50.0498C214.593 50.0498 214.702 50.0407 214.816 50.0225C214.935 49.9997 215.024 49.9814 215.083 49.9678L215.09 51C214.99 51.0319 214.857 51.0615 214.693 51.0889C214.534 51.1208 214.34 51.1367 214.112 51.1367C213.802 51.1367 213.518 51.0752 213.258 50.9521C212.998 50.8291 212.791 50.624 212.636 50.3369C212.485 50.0452 212.41 49.6533 212.41 49.1611V41.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M63.2007 70.707V80H62.0264V72.1733L59.6587 73.0366V71.9766L63.0166 70.707H63.2007Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"51.7295",y:"64.5",width:"21",height:"21",rx:"10.5",stroke:"#4272F9"}),(0,h.createElement)("rect",{x:"77.7295",y:"74.5",width:"55.7706",height:"1",stroke:"#4272F9"}),(0,h.createElement)("rect",{x:"138",y:"64",width:"22",height:"22",rx:"11",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M152.168 79.0352V80H146.118V79.1558L149.146 75.7852C149.519 75.3704 149.806 75.0192 150.01 74.7314C150.217 74.4395 150.361 74.1792 150.441 73.9507C150.526 73.7179 150.568 73.481 150.568 73.2397C150.568 72.9351 150.505 72.66 150.378 72.4146C150.255 72.1649 150.073 71.966 149.832 71.8179C149.591 71.6698 149.299 71.5957 148.956 71.5957C148.545 71.5957 148.203 71.6761 147.927 71.8369C147.657 71.9935 147.454 72.2135 147.318 72.4971C147.183 72.7806 147.115 73.1064 147.115 73.4746H145.941C145.941 72.9541 146.055 72.478 146.283 72.0464C146.512 71.6147 146.851 71.272 147.299 71.0181C147.748 70.7599 148.3 70.6309 148.956 70.6309C149.54 70.6309 150.039 70.7345 150.454 70.9419C150.869 71.145 151.186 71.4328 151.406 71.8052C151.63 72.1733 151.742 72.605 151.742 73.1001C151.742 73.3709 151.696 73.646 151.603 73.9253C151.514 74.2004 151.389 74.4754 151.228 74.7505C151.072 75.0256 150.888 75.2964 150.676 75.563C150.469 75.8296 150.247 76.092 150.01 76.3501L147.534 79.0352H152.168Z",fill:"white"}),(0,h.createElement)("rect",{x:"164",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"198.936",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"172.734",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"207.67",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"181.468",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"216.404",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"190.202",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("path",{d:"M234.596 74.8013H235.434C235.845 74.8013 236.183 74.7336 236.45 74.5981C236.721 74.4585 236.922 74.2702 237.053 74.0332C237.188 73.792 237.256 73.5212 237.256 73.2207C237.256 72.8652 237.197 72.5669 237.078 72.3257C236.96 72.0845 236.782 71.9025 236.545 71.7798C236.308 71.6571 236.008 71.5957 235.644 71.5957C235.314 71.5957 235.022 71.6613 234.768 71.7925C234.518 71.9194 234.321 72.1014 234.177 72.3384C234.038 72.5754 233.968 72.8547 233.968 73.1763H232.794C232.794 72.7065 232.912 72.2791 233.149 71.894C233.386 71.509 233.718 71.2021 234.146 70.9736C234.577 70.7451 235.077 70.6309 235.644 70.6309C236.202 70.6309 236.691 70.7303 237.11 70.9292C237.529 71.1239 237.855 71.4159 238.088 71.8052C238.32 72.1903 238.437 72.6706 238.437 73.2461C238.437 73.4788 238.382 73.7285 238.272 73.9951C238.166 74.2575 237.999 74.5029 237.77 74.7314C237.546 74.96 237.254 75.1483 236.894 75.2964C236.535 75.4403 236.103 75.5122 235.599 75.5122H234.596V74.8013ZM234.596 75.7661V75.0615H235.599C236.188 75.0615 236.674 75.1313 237.059 75.271C237.444 75.4106 237.747 75.5968 237.967 75.8296C238.191 76.0623 238.348 76.3184 238.437 76.5977C238.53 76.8727 238.576 77.1478 238.576 77.4229C238.576 77.8545 238.502 78.2375 238.354 78.5718C238.21 78.9061 238.005 79.1896 237.739 79.4224C237.476 79.6551 237.167 79.8307 236.812 79.9492C236.456 80.0677 236.069 80.127 235.65 80.127C235.248 80.127 234.869 80.0698 234.514 79.9556C234.163 79.8413 233.852 79.6763 233.581 79.4604C233.31 79.2404 233.098 78.9717 232.946 78.6543C232.794 78.3327 232.718 77.9666 232.718 77.5562H233.892C233.892 77.8778 233.962 78.1592 234.101 78.4004C234.245 78.6416 234.448 78.8299 234.711 78.9653C234.977 79.0965 235.29 79.1621 235.65 79.1621C236.01 79.1621 236.319 79.1007 236.577 78.978C236.839 78.8511 237.04 78.6606 237.18 78.4067C237.324 78.1528 237.396 77.8333 237.396 77.4482C237.396 77.0632 237.315 76.7479 237.155 76.5024C236.994 76.2528 236.765 76.0687 236.469 75.9502C236.177 75.8275 235.832 75.7661 235.434 75.7661H234.596Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"225.271",y:"64.5",width:"21",height:"21",rx:"10.5",stroke:"#64748B"}),(0,h.createElement)("path",{d:"M47.2939 97.8979V101.281C47.1797 101.451 46.9977 101.641 46.748 101.853C46.4984 102.06 46.1535 102.242 45.7134 102.398C45.2775 102.551 44.7147 102.627 44.0249 102.627C43.4621 102.627 42.9437 102.53 42.4697 102.335C42 102.136 41.5916 101.848 41.2446 101.472C40.9019 101.091 40.6353 100.63 40.4448 100.088C40.2586 99.542 40.1655 98.9242 40.1655 98.2344V97.5171C40.1655 96.8273 40.2459 96.2116 40.4067 95.6699C40.5718 95.1283 40.813 94.6691 41.1304 94.2925C41.4478 93.9116 41.8371 93.6239 42.2983 93.4292C42.7596 93.2303 43.2886 93.1309 43.8853 93.1309C44.592 93.1309 45.1823 93.2536 45.6562 93.499C46.1344 93.7402 46.5068 94.0745 46.7734 94.502C47.0443 94.9294 47.2178 95.416 47.2939 95.9619H46.0688C46.0138 95.6276 45.9038 95.3229 45.7388 95.0479C45.578 94.7728 45.3473 94.5527 45.0469 94.3877C44.7464 94.2184 44.3592 94.1338 43.8853 94.1338C43.4578 94.1338 43.0876 94.2121 42.7744 94.3687C42.4613 94.5252 42.2031 94.7495 42 95.0415C41.7969 95.3335 41.6445 95.6868 41.543 96.1016C41.4456 96.5163 41.397 96.9839 41.397 97.5044V98.2344C41.397 98.7676 41.4583 99.2437 41.5811 99.6626C41.708 100.082 41.8879 100.439 42.1206 100.735C42.3534 101.027 42.6305 101.25 42.9521 101.402C43.278 101.554 43.6377 101.63 44.0312 101.63C44.4671 101.63 44.8205 101.594 45.0913 101.522C45.3621 101.446 45.5737 101.357 45.7261 101.256C45.8784 101.15 45.9948 101.051 46.0752 100.958V98.8882H43.936V97.8979H47.2939ZM51.9976 102.627C51.5194 102.627 51.0856 102.547 50.6963 102.386C50.3112 102.221 49.979 101.99 49.6997 101.694C49.4246 101.398 49.2131 101.046 49.0649 100.64C48.9168 100.234 48.8428 99.7896 48.8428 99.3071V99.0405C48.8428 98.4819 48.9253 97.9847 49.0903 97.5488C49.2554 97.1087 49.4797 96.7363 49.7632 96.4316C50.0467 96.127 50.3683 95.8963 50.728 95.7397C51.0877 95.5832 51.4601 95.5049 51.8452 95.5049C52.3361 95.5049 52.7593 95.5895 53.1147 95.7588C53.4744 95.9281 53.7686 96.165 53.9971 96.4697C54.2256 96.7702 54.3949 97.1257 54.5049 97.5361C54.6149 97.9424 54.6699 98.3867 54.6699 98.8691V99.396H49.541V98.4375H53.4956V98.3486C53.4787 98.0439 53.4152 97.7477 53.3052 97.46C53.1994 97.1722 53.0301 96.9352 52.7974 96.749C52.5646 96.5628 52.2472 96.4697 51.8452 96.4697C51.5786 96.4697 51.3332 96.5269 51.1089 96.6411C50.8846 96.7511 50.6921 96.9162 50.5312 97.1362C50.3704 97.3563 50.2456 97.625 50.1567 97.9424C50.0679 98.2598 50.0234 98.6258 50.0234 99.0405V99.3071C50.0234 99.633 50.0679 99.9398 50.1567 100.228C50.2498 100.511 50.3831 100.761 50.5566 100.977C50.7344 101.192 50.9481 101.362 51.1978 101.484C51.4517 101.607 51.7394 101.668 52.061 101.668C52.4757 101.668 52.827 101.584 53.1147 101.415C53.4025 101.245 53.6543 101.019 53.8701 100.735L54.5811 101.3C54.4329 101.525 54.2446 101.738 54.0161 101.941C53.7876 102.145 53.5062 102.31 53.1719 102.437C52.8418 102.563 52.4504 102.627 51.9976 102.627ZM57.2153 97.0981V102.5H56.041V95.6318H57.1519L57.2153 97.0981ZM56.936 98.8057L56.4473 98.7866C56.4515 98.3169 56.5213 97.8831 56.6567 97.4854C56.7922 97.0833 56.9826 96.7342 57.228 96.438C57.4735 96.1418 57.7655 95.9132 58.104 95.7524C58.4468 95.5874 58.8255 95.5049 59.2402 95.5049C59.5788 95.5049 59.8835 95.5514 60.1543 95.6445C60.4251 95.7334 60.6558 95.8773 60.8462 96.0762C61.0409 96.2751 61.189 96.5332 61.2905 96.8506C61.3921 97.1637 61.4429 97.5467 61.4429 97.9995V102.5H60.2622V97.9868C60.2622 97.6271 60.2093 97.3394 60.1035 97.1235C59.9977 96.9035 59.8433 96.7448 59.6401 96.6475C59.437 96.5459 59.1873 96.4951 58.8911 96.4951C58.5991 96.4951 58.3325 96.5565 58.0913 96.6792C57.8543 96.8019 57.6491 96.9712 57.4756 97.187C57.3063 97.4028 57.173 97.6504 57.0757 97.9297C56.9826 98.2048 56.936 98.4967 56.936 98.8057ZM66.0767 102.627C65.5985 102.627 65.1647 102.547 64.7754 102.386C64.3903 102.221 64.0581 101.99 63.7788 101.694C63.5037 101.398 63.2922 101.046 63.144 100.64C62.9959 100.234 62.9219 99.7896 62.9219 99.3071V99.0405C62.9219 98.4819 63.0044 97.9847 63.1694 97.5488C63.3345 97.1087 63.5588 96.7363 63.8423 96.4316C64.1258 96.127 64.4474 95.8963 64.8071 95.7397C65.1668 95.5832 65.5392 95.5049 65.9243 95.5049C66.4152 95.5049 66.8384 95.5895 67.1938 95.7588C67.5535 95.9281 67.8477 96.165 68.0762 96.4697C68.3047 96.7702 68.474 97.1257 68.584 97.5361C68.694 97.9424 68.749 98.3867 68.749 98.8691V99.396H63.6201V98.4375H67.5747V98.3486C67.5578 98.0439 67.4943 97.7477 67.3843 97.46C67.2785 97.1722 67.1092 96.9352 66.8765 96.749C66.6437 96.5628 66.3263 96.4697 65.9243 96.4697C65.6577 96.4697 65.4123 96.5269 65.188 96.6411C64.9637 96.7511 64.7712 96.9162 64.6104 97.1362C64.4495 97.3563 64.3247 97.625 64.2358 97.9424C64.147 98.2598 64.1025 98.6258 64.1025 99.0405V99.3071C64.1025 99.633 64.147 99.9398 64.2358 100.228C64.3289 100.511 64.4622 100.761 64.6357 100.977C64.8135 101.192 65.0272 101.362 65.2769 101.484C65.5308 101.607 65.8185 101.668 66.1401 101.668C66.5549 101.668 66.9061 101.584 67.1938 101.415C67.4816 101.245 67.7334 101.019 67.9492 100.735L68.6602 101.3C68.512 101.525 68.3237 101.738 68.0952 101.941C67.8667 102.145 67.5853 102.31 67.251 102.437C66.9209 102.563 66.5295 102.627 66.0767 102.627ZM71.2944 96.7109V102.5H70.1201V95.6318H71.2627L71.2944 96.7109ZM73.4399 95.5938L73.4336 96.6855C73.3363 96.6644 73.2432 96.6517 73.1543 96.6475C73.0697 96.639 72.9723 96.6348 72.8623 96.6348C72.5915 96.6348 72.3524 96.6771 72.145 96.7617C71.9377 96.8464 71.762 96.9648 71.6182 97.1172C71.4743 97.2695 71.36 97.4515 71.2754 97.6631C71.195 97.8704 71.1421 98.099 71.1167 98.3486L70.7866 98.5391C70.7866 98.1243 70.8268 97.735 70.9072 97.3711C70.9919 97.0072 71.1209 96.6855 71.2944 96.4062C71.4679 96.1227 71.688 95.9027 71.9546 95.7461C72.2254 95.5853 72.547 95.5049 72.9194 95.5049C73.0041 95.5049 73.1014 95.5155 73.2114 95.5366C73.3215 95.5535 73.3976 95.5726 73.4399 95.5938ZM78.3213 101.326V97.79C78.3213 97.5192 78.2663 97.2843 78.1562 97.0854C78.0505 96.8823 77.8896 96.7257 77.6738 96.6157C77.458 96.5057 77.1914 96.4507 76.874 96.4507C76.5778 96.4507 76.3175 96.5015 76.0933 96.603C75.8732 96.7046 75.6997 96.8379 75.5728 97.0029C75.45 97.168 75.3887 97.3457 75.3887 97.5361H74.2144C74.2144 97.2907 74.2778 97.0474 74.4048 96.8062C74.5317 96.5649 74.7137 96.347 74.9507 96.1523C75.1919 95.9535 75.4797 95.7969 75.814 95.6826C76.1525 95.5641 76.5291 95.5049 76.9438 95.5049C77.4432 95.5049 77.8833 95.5895 78.2642 95.7588C78.6493 95.9281 78.9497 96.1841 79.1655 96.5269C79.3856 96.8654 79.4956 97.2907 79.4956 97.8027V101.002C79.4956 101.23 79.5146 101.474 79.5527 101.732C79.5951 101.99 79.6564 102.212 79.7368 102.398V102.5H78.5117C78.4525 102.365 78.4059 102.185 78.3721 101.96C78.3382 101.732 78.3213 101.52 78.3213 101.326ZM78.5244 98.3359L78.5371 99.1611H77.3501C77.0158 99.1611 76.7174 99.1886 76.4551 99.2437C76.1927 99.2944 75.9727 99.3727 75.7949 99.4785C75.6172 99.5843 75.4818 99.7176 75.3887 99.8784C75.2956 100.035 75.249 100.219 75.249 100.431C75.249 100.646 75.2977 100.843 75.395 101.021C75.4924 101.199 75.6383 101.34 75.833 101.446C76.0319 101.548 76.2752 101.599 76.563 101.599C76.9227 101.599 77.2401 101.522 77.5151 101.37C77.7902 101.218 78.0081 101.032 78.1689 100.812C78.334 100.591 78.4229 100.378 78.4355 100.17L78.937 100.735C78.9074 100.913 78.827 101.11 78.6958 101.326C78.5646 101.542 78.389 101.749 78.1689 101.948C77.9531 102.142 77.695 102.305 77.3945 102.437C77.0983 102.563 76.764 102.627 76.3916 102.627C75.9261 102.627 75.5177 102.536 75.1665 102.354C74.8195 102.172 74.5487 101.929 74.354 101.624C74.1636 101.315 74.0684 100.97 74.0684 100.589C74.0684 100.221 74.1403 99.8975 74.2842 99.6182C74.4281 99.3346 74.6354 99.0998 74.9062 98.9136C75.1771 98.7231 75.5029 98.5793 75.8838 98.4819C76.2646 98.3846 76.6899 98.3359 77.1597 98.3359H78.5244ZM82.6187 92.75V102.5H81.438V92.75H82.6187Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M139.955 97.8979V101.281C139.84 101.451 139.658 101.641 139.409 101.853C139.159 102.06 138.814 102.242 138.374 102.398C137.938 102.551 137.375 102.627 136.686 102.627C136.123 102.627 135.604 102.53 135.13 102.335C134.661 102.136 134.252 101.848 133.905 101.472C133.562 101.091 133.296 100.63 133.105 100.088C132.919 99.542 132.826 98.9242 132.826 98.2344V97.5171C132.826 96.8273 132.907 96.2116 133.067 95.6699C133.232 95.1283 133.474 94.6691 133.791 94.2925C134.108 93.9116 134.498 93.6239 134.959 93.4292C135.42 93.2303 135.949 93.1309 136.546 93.1309C137.253 93.1309 137.843 93.2536 138.317 93.499C138.795 93.7402 139.167 94.0745 139.434 94.502C139.705 94.9294 139.878 95.416 139.955 95.9619H138.729C138.674 95.6276 138.564 95.3229 138.399 95.0479C138.239 94.7728 138.008 94.5527 137.708 94.3877C137.407 94.2184 137.02 94.1338 136.546 94.1338C136.118 94.1338 135.748 94.2121 135.435 94.3687C135.122 94.5252 134.864 94.7495 134.661 95.0415C134.458 95.3335 134.305 95.6868 134.204 96.1016C134.106 96.5163 134.058 96.9839 134.058 97.5044V98.2344C134.058 98.7676 134.119 99.2437 134.242 99.6626C134.369 100.082 134.549 100.439 134.781 100.735C135.014 101.027 135.291 101.25 135.613 101.402C135.939 101.554 136.298 101.63 136.692 101.63C137.128 101.63 137.481 101.594 137.752 101.522C138.023 101.446 138.234 101.357 138.387 101.256C138.539 101.15 138.655 101.051 138.736 100.958V98.8882H136.597V97.8979H139.955ZM146.01 100.913V95.6318H147.191V102.5H146.067L146.01 100.913ZM146.232 99.4658L146.721 99.4531C146.721 99.9102 146.673 100.333 146.575 100.723C146.482 101.108 146.33 101.442 146.118 101.726C145.907 102.009 145.629 102.231 145.287 102.392C144.944 102.549 144.527 102.627 144.036 102.627C143.702 102.627 143.395 102.578 143.116 102.481C142.841 102.384 142.604 102.233 142.405 102.03C142.206 101.827 142.051 101.563 141.941 101.237C141.836 100.911 141.783 100.52 141.783 100.062V95.6318H142.957V100.075C142.957 100.384 142.991 100.64 143.059 100.843C143.131 101.042 143.226 101.201 143.344 101.319C143.467 101.434 143.602 101.514 143.75 101.561C143.903 101.607 144.059 101.63 144.22 101.63C144.72 101.63 145.115 101.535 145.407 101.345C145.699 101.15 145.909 100.89 146.036 100.564C146.167 100.234 146.232 99.8678 146.232 99.4658ZM151.831 102.627C151.353 102.627 150.919 102.547 150.53 102.386C150.145 102.221 149.812 101.99 149.533 101.694C149.258 101.398 149.047 101.046 148.898 100.64C148.75 100.234 148.676 99.7896 148.676 99.3071V99.0405C148.676 98.4819 148.759 97.9847 148.924 97.5488C149.089 97.1087 149.313 96.7363 149.597 96.4316C149.88 96.127 150.202 95.8963 150.562 95.7397C150.921 95.5832 151.294 95.5049 151.679 95.5049C152.17 95.5049 152.593 95.5895 152.948 95.7588C153.308 95.9281 153.602 96.165 153.831 96.4697C154.059 96.7702 154.228 97.1257 154.338 97.5361C154.448 97.9424 154.503 98.3867 154.503 98.8691V99.396H149.375V98.4375H153.329V98.3486C153.312 98.0439 153.249 97.7477 153.139 97.46C153.033 97.1722 152.864 96.9352 152.631 96.749C152.398 96.5628 152.081 96.4697 151.679 96.4697C151.412 96.4697 151.167 96.5269 150.942 96.6411C150.718 96.7511 150.526 96.9162 150.365 97.1362C150.204 97.3563 150.079 97.625 149.99 97.9424C149.901 98.2598 149.857 98.6258 149.857 99.0405V99.3071C149.857 99.633 149.901 99.9398 149.99 100.228C150.083 100.511 150.217 100.761 150.39 100.977C150.568 101.192 150.782 101.362 151.031 101.484C151.285 101.607 151.573 101.668 151.895 101.668C152.309 101.668 152.66 101.584 152.948 101.415C153.236 101.245 153.488 101.019 153.704 100.735L154.415 101.3C154.266 101.525 154.078 101.738 153.85 101.941C153.621 102.145 153.34 102.31 153.005 102.437C152.675 102.563 152.284 102.627 151.831 102.627ZM159.874 100.678C159.874 100.509 159.835 100.352 159.759 100.208C159.687 100.06 159.537 99.9271 159.309 99.8086C159.084 99.6859 158.746 99.5801 158.293 99.4912C157.912 99.4108 157.567 99.3156 157.258 99.2056C156.954 99.0955 156.693 98.9622 156.478 98.8057C156.266 98.6491 156.103 98.465 155.989 98.2534C155.875 98.0418 155.817 97.7943 155.817 97.5107C155.817 97.2399 155.877 96.9839 155.995 96.7427C156.118 96.5015 156.289 96.2878 156.509 96.1016C156.734 95.9154 157.002 95.7694 157.315 95.6636C157.629 95.5578 157.978 95.5049 158.363 95.5049C158.913 95.5049 159.383 95.6022 159.772 95.7969C160.161 95.9915 160.46 96.2518 160.667 96.5776C160.874 96.8993 160.978 97.2568 160.978 97.6504H159.804C159.804 97.46 159.747 97.2759 159.632 97.0981C159.522 96.9162 159.359 96.766 159.144 96.6475C158.932 96.529 158.672 96.4697 158.363 96.4697C158.037 96.4697 157.772 96.5205 157.569 96.6221C157.37 96.7194 157.224 96.8442 157.131 96.9966C157.042 97.1489 156.998 97.3097 156.998 97.479C156.998 97.606 157.019 97.7202 157.062 97.8218C157.108 97.9191 157.188 98.0101 157.303 98.0947C157.417 98.1751 157.578 98.2513 157.785 98.3232C157.993 98.3952 158.257 98.4671 158.579 98.5391C159.141 98.666 159.605 98.8184 159.969 98.9961C160.333 99.1738 160.604 99.3918 160.781 99.6499C160.959 99.908 161.048 100.221 161.048 100.589C161.048 100.89 160.984 101.165 160.857 101.415C160.735 101.664 160.555 101.88 160.318 102.062C160.085 102.24 159.806 102.379 159.48 102.481C159.158 102.578 158.797 102.627 158.395 102.627C157.789 102.627 157.277 102.519 156.858 102.303C156.439 102.087 156.122 101.808 155.906 101.465C155.69 101.123 155.583 100.761 155.583 100.38H156.763C156.78 100.701 156.873 100.958 157.042 101.148C157.212 101.334 157.419 101.467 157.665 101.548C157.91 101.624 158.153 101.662 158.395 101.662C158.716 101.662 158.985 101.62 159.201 101.535C159.421 101.451 159.588 101.334 159.702 101.186C159.816 101.038 159.874 100.869 159.874 100.678ZM165.466 95.6318V96.5332H161.752V95.6318H165.466ZM163.009 93.9624H164.184V100.799C164.184 101.032 164.22 101.207 164.292 101.326C164.363 101.444 164.457 101.522 164.571 101.561C164.685 101.599 164.808 101.618 164.939 101.618C165.036 101.618 165.138 101.609 165.244 101.592C165.354 101.571 165.436 101.554 165.491 101.542L165.498 102.5C165.404 102.53 165.282 102.557 165.129 102.583C164.981 102.612 164.801 102.627 164.59 102.627C164.302 102.627 164.038 102.57 163.796 102.456C163.555 102.341 163.363 102.151 163.219 101.884C163.079 101.613 163.009 101.25 163.009 100.792V93.9624Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M226.556 93.7578V103H225.331V93.7578H226.556ZM229.781 97.5981V103H228.606V96.1318H229.717L229.781 97.5981ZM229.501 99.3057L229.013 99.2866C229.017 98.8169 229.087 98.3831 229.222 97.9854C229.358 97.5833 229.548 97.2342 229.793 96.938C230.039 96.6418 230.331 96.4132 230.669 96.2524C231.012 96.0874 231.391 96.0049 231.806 96.0049C232.144 96.0049 232.449 96.0514 232.72 96.1445C232.991 96.2334 233.221 96.3773 233.412 96.5762C233.606 96.7751 233.754 97.0332 233.856 97.3506C233.958 97.6637 234.008 98.0467 234.008 98.4995V103H232.828V98.4868C232.828 98.1271 232.775 97.8394 232.669 97.6235C232.563 97.4035 232.409 97.2448 232.206 97.1475C232.002 97.0459 231.753 96.9951 231.457 96.9951C231.165 96.9951 230.898 97.0565 230.657 97.1792C230.42 97.3019 230.215 97.4712 230.041 97.687C229.872 97.9028 229.738 98.1504 229.641 98.4297C229.548 98.7048 229.501 98.9967 229.501 99.3057ZM237.544 103H236.37V95.4082C236.37 94.9131 236.458 94.4963 236.636 94.1577C236.818 93.8149 237.078 93.5568 237.417 93.3833C237.756 93.2056 238.158 93.1167 238.623 93.1167C238.758 93.1167 238.894 93.1252 239.029 93.1421C239.169 93.159 239.304 93.1844 239.436 93.2183L239.372 94.1768C239.283 94.1556 239.182 94.1408 239.067 94.1323C238.957 94.1239 238.847 94.1196 238.737 94.1196C238.488 94.1196 238.272 94.1704 238.09 94.272C237.912 94.3693 237.777 94.5132 237.684 94.7036C237.59 94.894 237.544 95.1289 237.544 95.4082V103ZM239.004 96.1318V97.0332H235.284V96.1318H239.004ZM240 99.6421V99.4961C240 99.001 240.072 98.5418 240.216 98.1187C240.36 97.6912 240.568 97.321 240.838 97.0078C241.109 96.6904 241.437 96.445 241.822 96.2715C242.207 96.0938 242.639 96.0049 243.117 96.0049C243.6 96.0049 244.033 96.0938 244.418 96.2715C244.808 96.445 245.138 96.6904 245.409 97.0078C245.684 97.321 245.893 97.6912 246.037 98.1187C246.181 98.5418 246.253 99.001 246.253 99.4961V99.6421C246.253 100.137 246.181 100.596 246.037 101.02C245.893 101.443 245.684 101.813 245.409 102.13C245.138 102.444 244.81 102.689 244.425 102.867C244.044 103.04 243.612 103.127 243.13 103.127C242.647 103.127 242.214 103.04 241.829 102.867C241.444 102.689 241.113 102.444 240.838 102.13C240.568 101.813 240.36 101.443 240.216 101.02C240.072 100.596 240 100.137 240 99.6421ZM241.175 99.4961V99.6421C241.175 99.9849 241.215 100.309 241.295 100.613C241.376 100.914 241.496 101.18 241.657 101.413C241.822 101.646 242.028 101.83 242.273 101.965C242.518 102.097 242.804 102.162 243.13 102.162C243.451 102.162 243.733 102.097 243.974 101.965C244.22 101.83 244.423 101.646 244.583 101.413C244.744 101.18 244.865 100.914 244.945 100.613C245.03 100.309 245.072 99.9849 245.072 99.6421V99.4961C245.072 99.1576 245.03 98.8381 244.945 98.5376C244.865 98.2329 244.742 97.9642 244.577 97.7314C244.416 97.4945 244.213 97.3083 243.968 97.1729C243.727 97.0374 243.443 96.9697 243.117 96.9697C242.796 96.9697 242.512 97.0374 242.267 97.1729C242.025 97.3083 241.822 97.4945 241.657 97.7314C241.496 97.9642 241.376 98.2329 241.295 98.5376C241.215 98.8381 241.175 99.1576 241.175 99.4961Z",fill:"#0F172A"})),{FieldSettingsWrapper:Vc}=JetFBComponents,{__:Hc}=wp.i18n,{SelectControl:hc}=wp.components,{InspectorControls:bc,useBlockProps:Mc}=wp.blockEditor?wp.blockEditor:wp.editor,{RawHTML:Lc}=wp.element,{useState:gc,useEffect:Zc}=wp.element,yc=JSON.parse('{"apiVersion":3,"name":"jet-forms/progress-bar","category":"jet-form-builder-elements","keywords":["jetformbuilder","progress","steps","bar","break","form"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Progress Bar","icon":"\\n\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"progress_type":{"type":"string","default":"default"},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:Ec}=wp.i18n,{name:wc,icon:vc=""}=yc,_c={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:vc}}),description:Ec("Use the Progress Bar block to add the navigation and show users on what page they are now and how many pages are left to finish the form.","jet-form-builder"),edit:function(e){const C=Mc(),{attributes:t,setAttributes:l,editProps:{uniqKey:r}}=e,[n,a]=gc(""),i=e=>{const C=JetFormProgressBar.progress_types.find(C=>e===C.value);return C?C.html:""};return Zc(()=>{a(i(t.progress_type))},[t.progress_type]),t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},fc):[(0,h.createElement)(bc,{key:r("InspectorControls")},(0,h.createElement)(Vc,{key:r("FieldSettingsWrapper"),...e},1{l({progress_type:e}),a(i(e))},options:JetFormProgressBar.progress_types}))),(0,h.createElement)("div",{key:r("viewBlock"),...C},(0,h.createElement)(Lc,null,n))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}}},kc=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_76_1348)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,h.createElement)("rect",{x:"82",y:"29",width:"113",height:"86",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M103.46 54.4844C103.46 54.252 103.424 54.0469 103.351 53.8691C103.282 53.6868 103.159 53.5228 102.981 53.377C102.808 53.2311 102.567 53.0921 102.257 52.96C101.951 52.8278 101.564 52.6934 101.095 52.5566C100.603 52.4108 100.158 52.249 99.7617 52.0713C99.3652 51.889 99.0257 51.6816 98.7432 51.4492C98.4606 51.2168 98.2441 50.9502 98.0938 50.6494C97.9434 50.3486 97.8682 50.0046 97.8682 49.6172C97.8682 49.2298 97.9479 48.8721 98.1074 48.5439C98.2669 48.2158 98.4948 47.931 98.791 47.6895C99.0918 47.4434 99.4495 47.252 99.8643 47.1152C100.279 46.9785 100.742 46.9102 101.252 46.9102C101.999 46.9102 102.633 47.0537 103.152 47.3408C103.676 47.6234 104.075 47.9948 104.349 48.4551C104.622 48.9108 104.759 49.3984 104.759 49.918H103.446C103.446 49.5443 103.367 49.2139 103.207 48.9268C103.048 48.6351 102.806 48.4072 102.482 48.2432C102.159 48.0745 101.749 47.9902 101.252 47.9902C100.783 47.9902 100.395 48.0609 100.09 48.2021C99.7845 48.3434 99.5566 48.5348 99.4062 48.7764C99.2604 49.0179 99.1875 49.2936 99.1875 49.6035C99.1875 49.8132 99.2308 50.0046 99.3174 50.1777C99.4085 50.3464 99.5475 50.5036 99.7344 50.6494C99.9258 50.7952 100.167 50.9297 100.459 51.0527C100.755 51.1758 101.108 51.2943 101.519 51.4082C102.084 51.5677 102.571 51.7454 102.981 51.9414C103.392 52.1374 103.729 52.3584 103.993 52.6045C104.262 52.846 104.46 53.1217 104.588 53.4316C104.72 53.737 104.786 54.0833 104.786 54.4707C104.786 54.8763 104.704 55.2432 104.54 55.5713C104.376 55.8994 104.141 56.1797 103.836 56.4121C103.531 56.6445 103.164 56.8245 102.735 56.9521C102.312 57.0752 101.838 57.1367 101.313 57.1367C100.853 57.1367 100.4 57.0729 99.9531 56.9453C99.5111 56.8177 99.1077 56.6263 98.7432 56.3711C98.3831 56.1159 98.0938 55.8014 97.875 55.4277C97.6608 55.0495 97.5537 54.612 97.5537 54.1152H98.8662C98.8662 54.457 98.9323 54.751 99.0645 54.9971C99.1966 55.2386 99.3766 55.4391 99.6045 55.5986C99.8369 55.7581 100.099 55.8766 100.391 55.9541C100.687 56.027 100.994 56.0635 101.313 56.0635C101.774 56.0635 102.163 55.9997 102.482 55.8721C102.801 55.7445 103.043 55.5622 103.207 55.3252C103.376 55.0882 103.46 54.8079 103.46 54.4844ZM109.373 49.6035V50.5742H105.374V49.6035H109.373ZM106.728 47.8057H107.992V55.168C107.992 55.4186 108.031 55.6077 108.108 55.7354C108.186 55.863 108.286 55.9473 108.409 55.9883C108.532 56.0293 108.664 56.0498 108.806 56.0498C108.91 56.0498 109.02 56.0407 109.134 56.0225C109.252 55.9997 109.341 55.9814 109.4 55.9678L109.407 57C109.307 57.0319 109.175 57.0615 109.011 57.0889C108.851 57.1208 108.658 57.1367 108.43 57.1367C108.12 57.1367 107.835 57.0752 107.575 56.9521C107.315 56.8291 107.108 56.624 106.953 56.3369C106.803 56.0452 106.728 55.6533 106.728 55.1611V47.8057ZM113.926 57.1367C113.411 57.1367 112.944 57.0501 112.524 56.877C112.11 56.6992 111.752 56.4508 111.451 56.1318C111.155 55.8128 110.927 55.4346 110.768 54.9971C110.608 54.5596 110.528 54.0811 110.528 53.5615V53.2744C110.528 52.6729 110.617 52.1374 110.795 51.668C110.973 51.194 111.214 50.793 111.52 50.4648C111.825 50.1367 112.171 49.8883 112.559 49.7197C112.946 49.5511 113.347 49.4668 113.762 49.4668C114.29 49.4668 114.746 49.5579 115.129 49.7402C115.516 49.9225 115.833 50.1777 116.079 50.5059C116.325 50.8294 116.507 51.2122 116.626 51.6543C116.744 52.0918 116.804 52.5703 116.804 53.0898V53.6572H111.28V52.625H115.539V52.5293C115.521 52.2012 115.452 51.8822 115.334 51.5723C115.22 51.2624 115.038 51.0072 114.787 50.8066C114.536 50.6061 114.195 50.5059 113.762 50.5059C113.475 50.5059 113.21 50.5674 112.969 50.6904C112.727 50.8089 112.52 50.9867 112.347 51.2236C112.174 51.4606 112.039 51.75 111.943 52.0918C111.848 52.4336 111.8 52.8278 111.8 53.2744V53.5615C111.8 53.9124 111.848 54.2428 111.943 54.5527C112.044 54.8581 112.187 55.127 112.374 55.3594C112.565 55.5918 112.796 55.7741 113.064 55.9062C113.338 56.0384 113.648 56.1045 113.994 56.1045C114.441 56.1045 114.819 56.0133 115.129 55.8311C115.439 55.6488 115.71 55.4049 115.942 55.0996L116.708 55.708C116.549 55.9495 116.346 56.1797 116.1 56.3984C115.854 56.6172 115.55 56.7949 115.19 56.9316C114.835 57.0684 114.413 57.1367 113.926 57.1367ZM119.545 51.0254V59.8438H118.273V49.6035H119.436L119.545 51.0254ZM124.528 53.2402V53.3838C124.528 53.9215 124.465 54.4206 124.337 54.8809C124.209 55.3366 124.022 55.7331 123.776 56.0703C123.535 56.4076 123.236 56.6696 122.881 56.8564C122.525 57.0433 122.118 57.1367 121.657 57.1367C121.188 57.1367 120.773 57.0592 120.413 56.9043C120.053 56.7493 119.748 56.5238 119.497 56.2275C119.246 55.9313 119.046 55.5758 118.896 55.1611C118.75 54.7464 118.649 54.2793 118.595 53.7598V52.9941C118.649 52.4473 118.752 51.9574 118.902 51.5244C119.053 51.0915 119.251 50.7223 119.497 50.417C119.748 50.1071 120.051 49.8724 120.406 49.7129C120.762 49.5488 121.172 49.4668 121.637 49.4668C122.102 49.4668 122.514 49.5579 122.874 49.7402C123.234 49.918 123.537 50.1732 123.783 50.5059C124.029 50.8385 124.214 51.2373 124.337 51.7021C124.465 52.1624 124.528 52.6751 124.528 53.2402ZM123.257 53.3838V53.2402C123.257 52.8711 123.218 52.5247 123.141 52.2012C123.063 51.873 122.942 51.5859 122.778 51.3398C122.619 51.0892 122.414 50.8932 122.163 50.752C121.912 50.6061 121.614 50.5332 121.268 50.5332C120.949 50.5332 120.671 50.5879 120.434 50.6973C120.201 50.8066 120.003 50.9548 119.839 51.1416C119.675 51.3239 119.54 51.5335 119.436 51.7705C119.335 52.0029 119.26 52.2445 119.21 52.4951V54.2656C119.301 54.5846 119.429 54.8854 119.593 55.168C119.757 55.446 119.976 55.6715 120.249 55.8447C120.522 56.0133 120.867 56.0977 121.281 56.0977C121.623 56.0977 121.917 56.027 122.163 55.8857C122.414 55.7399 122.619 55.5417 122.778 55.291C122.942 55.0404 123.063 54.7533 123.141 54.4297C123.218 54.1016 123.257 53.7529 123.257 53.3838ZM130.161 46.9922V57H128.896V48.5713L126.347 49.501V48.3594L129.963 46.9922H130.161Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"97.5",y:"70.5",width:"82",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"97.5",y:"70.5",width:"82",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("rect",{x:"205",y:"29",width:"113",height:"86",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M226.46 54.4844C226.46 54.252 226.424 54.0469 226.351 53.8691C226.282 53.6868 226.159 53.5228 225.981 53.377C225.808 53.2311 225.567 53.0921 225.257 52.96C224.951 52.8278 224.564 52.6934 224.095 52.5566C223.603 52.4108 223.158 52.249 222.762 52.0713C222.365 51.889 222.026 51.6816 221.743 51.4492C221.461 51.2168 221.244 50.9502 221.094 50.6494C220.943 50.3486 220.868 50.0046 220.868 49.6172C220.868 49.2298 220.948 48.8721 221.107 48.5439C221.267 48.2158 221.495 47.931 221.791 47.6895C222.092 47.4434 222.45 47.252 222.864 47.1152C223.279 46.9785 223.742 46.9102 224.252 46.9102C224.999 46.9102 225.633 47.0537 226.152 47.3408C226.676 47.6234 227.075 47.9948 227.349 48.4551C227.622 48.9108 227.759 49.3984 227.759 49.918H226.446C226.446 49.5443 226.367 49.2139 226.207 48.9268C226.048 48.6351 225.806 48.4072 225.482 48.2432C225.159 48.0745 224.749 47.9902 224.252 47.9902C223.783 47.9902 223.395 48.0609 223.09 48.2021C222.785 48.3434 222.557 48.5348 222.406 48.7764C222.26 49.0179 222.188 49.2936 222.188 49.6035C222.188 49.8132 222.231 50.0046 222.317 50.1777C222.409 50.3464 222.548 50.5036 222.734 50.6494C222.926 50.7952 223.167 50.9297 223.459 51.0527C223.755 51.1758 224.108 51.2943 224.519 51.4082C225.084 51.5677 225.571 51.7454 225.981 51.9414C226.392 52.1374 226.729 52.3584 226.993 52.6045C227.262 52.846 227.46 53.1217 227.588 53.4316C227.72 53.737 227.786 54.0833 227.786 54.4707C227.786 54.8763 227.704 55.2432 227.54 55.5713C227.376 55.8994 227.141 56.1797 226.836 56.4121C226.531 56.6445 226.164 56.8245 225.735 56.9521C225.312 57.0752 224.838 57.1367 224.313 57.1367C223.853 57.1367 223.4 57.0729 222.953 56.9453C222.511 56.8177 222.108 56.6263 221.743 56.3711C221.383 56.1159 221.094 55.8014 220.875 55.4277C220.661 55.0495 220.554 54.612 220.554 54.1152H221.866C221.866 54.457 221.932 54.751 222.064 54.9971C222.197 55.2386 222.377 55.4391 222.604 55.5986C222.837 55.7581 223.099 55.8766 223.391 55.9541C223.687 56.027 223.994 56.0635 224.313 56.0635C224.774 56.0635 225.163 55.9997 225.482 55.8721C225.801 55.7445 226.043 55.5622 226.207 55.3252C226.376 55.0882 226.46 54.8079 226.46 54.4844ZM232.373 49.6035V50.5742H228.374V49.6035H232.373ZM229.728 47.8057H230.992V55.168C230.992 55.4186 231.031 55.6077 231.108 55.7354C231.186 55.863 231.286 55.9473 231.409 55.9883C231.532 56.0293 231.664 56.0498 231.806 56.0498C231.91 56.0498 232.02 56.0407 232.134 56.0225C232.252 55.9997 232.341 55.9814 232.4 55.9678L232.407 57C232.307 57.0319 232.175 57.0615 232.011 57.0889C231.851 57.1208 231.658 57.1367 231.43 57.1367C231.12 57.1367 230.835 57.0752 230.575 56.9521C230.315 56.8291 230.108 56.624 229.953 56.3369C229.803 56.0452 229.728 55.6533 229.728 55.1611V47.8057ZM236.926 57.1367C236.411 57.1367 235.944 57.0501 235.524 56.877C235.11 56.6992 234.752 56.4508 234.451 56.1318C234.155 55.8128 233.927 55.4346 233.768 54.9971C233.608 54.5596 233.528 54.0811 233.528 53.5615V53.2744C233.528 52.6729 233.617 52.1374 233.795 51.668C233.973 51.194 234.214 50.793 234.52 50.4648C234.825 50.1367 235.171 49.8883 235.559 49.7197C235.946 49.5511 236.347 49.4668 236.762 49.4668C237.29 49.4668 237.746 49.5579 238.129 49.7402C238.516 49.9225 238.833 50.1777 239.079 50.5059C239.325 50.8294 239.507 51.2122 239.626 51.6543C239.744 52.0918 239.804 52.5703 239.804 53.0898V53.6572H234.28V52.625H238.539V52.5293C238.521 52.2012 238.452 51.8822 238.334 51.5723C238.22 51.2624 238.038 51.0072 237.787 50.8066C237.536 50.6061 237.195 50.5059 236.762 50.5059C236.475 50.5059 236.21 50.5674 235.969 50.6904C235.727 50.8089 235.52 50.9867 235.347 51.2236C235.174 51.4606 235.039 51.75 234.943 52.0918C234.848 52.4336 234.8 52.8278 234.8 53.2744V53.5615C234.8 53.9124 234.848 54.2428 234.943 54.5527C235.044 54.8581 235.187 55.127 235.374 55.3594C235.565 55.5918 235.796 55.7741 236.064 55.9062C236.338 56.0384 236.648 56.1045 236.994 56.1045C237.441 56.1045 237.819 56.0133 238.129 55.8311C238.439 55.6488 238.71 55.4049 238.942 55.0996L239.708 55.708C239.549 55.9495 239.346 56.1797 239.1 56.3984C238.854 56.6172 238.55 56.7949 238.19 56.9316C237.835 57.0684 237.413 57.1367 236.926 57.1367ZM242.545 51.0254V59.8438H241.273V49.6035H242.436L242.545 51.0254ZM247.528 53.2402V53.3838C247.528 53.9215 247.465 54.4206 247.337 54.8809C247.209 55.3366 247.022 55.7331 246.776 56.0703C246.535 56.4076 246.236 56.6696 245.881 56.8564C245.525 57.0433 245.118 57.1367 244.657 57.1367C244.188 57.1367 243.773 57.0592 243.413 56.9043C243.053 56.7493 242.748 56.5238 242.497 56.2275C242.246 55.9313 242.046 55.5758 241.896 55.1611C241.75 54.7464 241.649 54.2793 241.595 53.7598V52.9941C241.649 52.4473 241.752 51.9574 241.902 51.5244C242.053 51.0915 242.251 50.7223 242.497 50.417C242.748 50.1071 243.051 49.8724 243.406 49.7129C243.762 49.5488 244.172 49.4668 244.637 49.4668C245.102 49.4668 245.514 49.5579 245.874 49.7402C246.234 49.918 246.537 50.1732 246.783 50.5059C247.029 50.8385 247.214 51.2373 247.337 51.7021C247.465 52.1624 247.528 52.6751 247.528 53.2402ZM246.257 53.3838V53.2402C246.257 52.8711 246.218 52.5247 246.141 52.2012C246.063 51.873 245.942 51.5859 245.778 51.3398C245.619 51.0892 245.414 50.8932 245.163 50.752C244.912 50.6061 244.614 50.5332 244.268 50.5332C243.949 50.5332 243.671 50.5879 243.434 50.6973C243.201 50.8066 243.003 50.9548 242.839 51.1416C242.675 51.3239 242.54 51.5335 242.436 51.7705C242.335 52.0029 242.26 52.2445 242.21 52.4951V54.2656C242.301 54.5846 242.429 54.8854 242.593 55.168C242.757 55.446 242.976 55.6715 243.249 55.8447C243.522 56.0133 243.867 56.0977 244.281 56.0977C244.623 56.0977 244.917 56.027 245.163 55.8857C245.414 55.7399 245.619 55.5417 245.778 55.291C245.942 55.0404 246.063 54.7533 246.141 54.4297C246.218 54.1016 246.257 53.7529 246.257 53.3838ZM255.526 55.9609V57H249.012V56.0908L252.272 52.4609C252.674 52.0143 252.983 51.6361 253.202 51.3262C253.425 51.0117 253.58 50.7314 253.667 50.4854C253.758 50.2347 253.804 49.9795 253.804 49.7197C253.804 49.3916 253.735 49.0954 253.599 48.8311C253.466 48.5622 253.271 48.348 253.011 48.1885C252.751 48.029 252.437 47.9492 252.067 47.9492C251.625 47.9492 251.256 48.0358 250.96 48.209C250.668 48.3776 250.45 48.6146 250.304 48.9199C250.158 49.2253 250.085 49.5762 250.085 49.9727H248.82C248.82 49.4121 248.943 48.8994 249.189 48.4346C249.436 47.9697 249.8 47.6006 250.283 47.3271C250.766 47.0492 251.361 46.9102 252.067 46.9102C252.696 46.9102 253.234 47.0218 253.681 47.2451C254.127 47.4639 254.469 47.7738 254.706 48.1748C254.948 48.5713 255.068 49.0361 255.068 49.5693C255.068 49.861 255.018 50.1572 254.918 50.458C254.822 50.7542 254.688 51.0505 254.515 51.3467C254.346 51.6429 254.148 51.9346 253.92 52.2217C253.697 52.5088 253.457 52.7913 253.202 53.0693L250.536 55.9609H255.526Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"220.5",y:"70.5",width:"82",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"220.5",y:"70.5",width:"82",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M15 57C15 54.7909 16.7909 53 19 53H82V91H19C16.7909 91 15 89.2091 15 87V57Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M30.9985 74.1641C30.9985 73.9482 30.9647 73.7578 30.897 73.5928C30.8335 73.4235 30.7192 73.2712 30.5542 73.1357C30.3934 73.0003 30.1691 72.8713 29.8813 72.7485C29.5978 72.6258 29.2381 72.501 28.8022 72.374C28.3452 72.2386 27.9326 72.0884 27.5645 71.9233C27.1963 71.7541 26.881 71.5615 26.6187 71.3457C26.3563 71.1299 26.1553 70.8823 26.0156 70.603C25.876 70.3237 25.8062 70.0042 25.8062 69.6445C25.8062 69.2848 25.8802 68.9526 26.0283 68.6479C26.1764 68.3433 26.388 68.0788 26.6631 67.8545C26.9424 67.626 27.2746 67.4482 27.6597 67.3213C28.0448 67.1943 28.4743 67.1309 28.9482 67.1309C29.6423 67.1309 30.2305 67.2642 30.7129 67.5308C31.1995 67.7931 31.5698 68.138 31.8237 68.5654C32.0776 68.9886 32.2046 69.4414 32.2046 69.9238H30.9858C30.9858 69.5768 30.9118 69.27 30.7637 69.0034C30.6156 68.7326 30.3913 68.521 30.0908 68.3687C29.7904 68.2121 29.4095 68.1338 28.9482 68.1338C28.5124 68.1338 28.1527 68.1994 27.8691 68.3306C27.5856 68.4618 27.374 68.6395 27.2344 68.8638C27.099 69.0881 27.0312 69.3441 27.0312 69.6318C27.0312 69.8265 27.0715 70.0042 27.1519 70.165C27.2365 70.3216 27.3656 70.4676 27.5391 70.603C27.7168 70.7384 27.9411 70.8633 28.2119 70.9775C28.487 71.0918 28.8149 71.2018 29.1958 71.3076C29.7205 71.4557 30.1733 71.6208 30.5542 71.8027C30.9351 71.9847 31.2482 72.1899 31.4937 72.4185C31.7433 72.6427 31.9274 72.8988 32.0459 73.1865C32.1686 73.4701 32.23 73.7917 32.23 74.1514C32.23 74.528 32.1538 74.8687 32.0015 75.1733C31.8491 75.478 31.6312 75.7383 31.3477 75.9541C31.0641 76.1699 30.7235 76.3371 30.3257 76.4556C29.9321 76.5698 29.492 76.627 29.0054 76.627C28.578 76.627 28.1569 76.5677 27.7422 76.4492C27.3317 76.3307 26.9572 76.153 26.6187 75.916C26.2843 75.679 26.0156 75.387 25.8125 75.04C25.6136 74.6888 25.5142 74.2826 25.5142 73.8213H26.7329C26.7329 74.1387 26.7943 74.4116 26.917 74.6401C27.0397 74.8644 27.2069 75.0506 27.4185 75.1987C27.6343 75.3468 27.8776 75.4569 28.1484 75.5288C28.4235 75.5965 28.7091 75.6304 29.0054 75.6304C29.4328 75.6304 29.7946 75.5711 30.0908 75.4526C30.387 75.3341 30.6113 75.1649 30.7637 74.9448C30.9202 74.7248 30.9985 74.4645 30.9985 74.1641ZM36.4893 69.6318V70.5332H32.7759V69.6318H36.4893ZM34.0327 67.9624H35.207V74.7988C35.207 75.0316 35.243 75.2072 35.3149 75.3257C35.3869 75.4442 35.48 75.5225 35.5942 75.5605C35.7085 75.5986 35.8312 75.6177 35.9624 75.6177C36.0597 75.6177 36.1613 75.6092 36.2671 75.5923C36.3771 75.5711 36.4596 75.5542 36.5146 75.5415L36.521 76.5C36.4279 76.5296 36.3052 76.5571 36.1528 76.5825C36.0047 76.6121 35.8249 76.627 35.6133 76.627C35.3255 76.627 35.061 76.5698 34.8198 76.4556C34.5786 76.3413 34.3861 76.1509 34.2422 75.8843C34.1025 75.6134 34.0327 75.2495 34.0327 74.7925V67.9624ZM41.9165 75.3257V71.79C41.9165 71.5192 41.8615 71.2843 41.7515 71.0854C41.6457 70.8823 41.4849 70.7257 41.269 70.6157C41.0532 70.5057 40.7866 70.4507 40.4692 70.4507C40.173 70.4507 39.9128 70.5015 39.6885 70.603C39.4684 70.7046 39.2949 70.8379 39.168 71.0029C39.0452 71.168 38.9839 71.3457 38.9839 71.5361H37.8096C37.8096 71.2907 37.873 71.0474 38 70.8062C38.127 70.5649 38.3089 70.347 38.5459 70.1523C38.7871 69.9535 39.0749 69.7969 39.4092 69.6826C39.7477 69.5641 40.1243 69.5049 40.5391 69.5049C41.0384 69.5049 41.4785 69.5895 41.8594 69.7588C42.2445 69.9281 42.5449 70.1841 42.7607 70.5269C42.9808 70.8654 43.0908 71.2907 43.0908 71.8027V75.002C43.0908 75.2305 43.1099 75.4738 43.1479 75.7319C43.1903 75.9901 43.2516 76.2122 43.332 76.3984V76.5H42.1069C42.0477 76.3646 42.0011 76.1847 41.9673 75.9604C41.9334 75.7319 41.9165 75.5203 41.9165 75.3257ZM42.1196 72.3359L42.1323 73.1611H40.9453C40.611 73.1611 40.3127 73.1886 40.0503 73.2437C39.7879 73.2944 39.5679 73.3727 39.3901 73.4785C39.2124 73.5843 39.077 73.7176 38.9839 73.8784C38.8908 74.035 38.8442 74.2191 38.8442 74.4307C38.8442 74.6465 38.8929 74.8433 38.9902 75.021C39.0876 75.1987 39.2336 75.3405 39.4282 75.4463C39.6271 75.5479 39.8704 75.5986 40.1582 75.5986C40.5179 75.5986 40.8353 75.5225 41.1104 75.3701C41.3854 75.2178 41.6034 75.0316 41.7642 74.8115C41.9292 74.5915 42.0181 74.3778 42.0308 74.1704L42.5322 74.7354C42.5026 74.9131 42.4222 75.1099 42.291 75.3257C42.1598 75.5415 41.9842 75.7489 41.7642 75.9478C41.5483 76.1424 41.2902 76.3053 40.9897 76.4365C40.6935 76.5635 40.3592 76.627 39.9868 76.627C39.5213 76.627 39.113 76.536 38.7617 76.354C38.4147 76.172 38.1439 75.9287 37.9492 75.624C37.7588 75.3151 37.6636 74.9702 37.6636 74.5894C37.6636 74.2212 37.7355 73.8975 37.8794 73.6182C38.0233 73.3346 38.2306 73.0998 38.5015 72.9136C38.7723 72.7231 39.0981 72.5793 39.479 72.4819C39.8599 72.3846 40.2852 72.3359 40.7549 72.3359H42.1196ZM46.1123 70.7109V76.5H44.938V69.6318H46.0806L46.1123 70.7109ZM48.2578 69.5938L48.2515 70.6855C48.1541 70.6644 48.061 70.6517 47.9722 70.6475C47.8875 70.639 47.7902 70.6348 47.6802 70.6348C47.4093 70.6348 47.1702 70.6771 46.9629 70.7617C46.7555 70.8464 46.5799 70.9648 46.436 71.1172C46.2922 71.2695 46.1779 71.4515 46.0933 71.6631C46.0129 71.8704 45.96 72.099 45.9346 72.3486L45.6045 72.5391C45.6045 72.1243 45.6447 71.735 45.7251 71.3711C45.8097 71.0072 45.9388 70.6855 46.1123 70.4062C46.2858 70.1227 46.5059 69.9027 46.7725 69.7461C47.0433 69.5853 47.3649 69.5049 47.7373 69.5049C47.8219 69.5049 47.9193 69.5155 48.0293 69.5366C48.1393 69.5535 48.2155 69.5726 48.2578 69.5938ZM52.5361 69.6318V70.5332H48.8228V69.6318H52.5361ZM50.0796 67.9624H51.2539V74.7988C51.2539 75.0316 51.2899 75.2072 51.3618 75.3257C51.4338 75.4442 51.5269 75.5225 51.6411 75.5605C51.7554 75.5986 51.8781 75.6177 52.0093 75.6177C52.1066 75.6177 52.2082 75.6092 52.314 75.5923C52.424 75.5711 52.5065 75.5542 52.5615 75.5415L52.5679 76.5C52.4748 76.5296 52.3521 76.5571 52.1997 76.5825C52.0516 76.6121 51.8717 76.627 51.6602 76.627C51.3724 76.627 51.1079 76.5698 50.8667 76.4556C50.6255 76.3413 50.4329 76.1509 50.2891 75.8843C50.1494 75.6134 50.0796 75.2495 50.0796 74.7925V67.9624Z",fill:"white"}),(0,h.createElement)("path",{d:"M61.1813 76.5188V67.4813L65.7 72.0001L61.1813 76.5188Z",fill:"white"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_76_1348"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})))),{__:jc}=wp.i18n,{PanelBody:xc}=wp.components,{BlockClassName:Fc}=JetFBComponents,{useUniqKey:Bc}=JetFBHooks,{InspectorControls:Ac,useBlockProps:Pc}=wp.blockEditor,Sc=JSON.parse('{"apiVersion":3,"name":"jet-forms/form-break-start","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","break","pagebreak","formbreak","start"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Form Page Start","icon":"\\n\\n\\n","attributes":{"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{name:Nc,icon:Ic=""}=Sc,{__:Tc}=wp.i18n,Oc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ic}}),description:Tc("Add the Form Page Start block after the two first form fields to start the new page not from the form beginning but from the block.","jet-form-builder"),edit:function(e){const C=Pc({className:"jet-form-builder__bottom-line"}),t=Bc();return e.attributes.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},kc):[(0,h.createElement)(Ac,{key:t("InspectorControls")},(0,h.createElement)(xc,{title:jc("Advanced","jet-form-builder")},(0,h.createElement)(Fc,null))),(0,h.createElement)("div",{key:t("viewBlock"),...C},(0,h.createElement)("span",null,jc("Form Break Start","jet-form-builder")))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}}},{__:Jc}=wp.i18n,Rc="jet-forms/media-field",qc="jet-forms/form-break-field",Dc="jet-forms/date-field",zc="jet-forms/datetime-field",Uc="jet-forms/radio-field",Gc="jet-forms/checkbox-field",Wc="jet-forms/select-field",Kc="jet-forms/text-field",$c=[{attribute:"is_timestamp",to:[Dc,zc],message:Jc("Check this if you want to send value of this field as timestamp instead of plain datetime","jet-form-builder")},{attribute:"default",to:[Dc],message:Jc("Plain date should be in yyyy-mm-dd format","jet-form-builder")},{attribute:"default",to:[zc],message:Jc("Plain datetime should be in yyyy-MM-ddThh:mm format","jet-form-builder")},{attribute:"page_break_disabled",to:[qc],message:Jc('Text to show if next page button is disabled. For example - "Fill required fields" etc.',"jet-form-builder")},{attribute:"insert_attachment",to:[Rc],message:Jc("If checked new attachment will be inserted for uploaded file.Note: work only for logged-in users!","jet-form-builder")},{attribute:"allowed_mimes",to:[Rc],message:Jc("If no MIME type selected will allow all types. Hold down the Ctrl (windows) / Command (Mac) button to select multiple options.","jet-form-builder")},{attribute:"value_from_meta",to:[Uc,Gc,Wc],message:Jc("By default post/term ID is used as value. Here you can set meta field name to use its value as form field value","jet-form-builder")},{attribute:"calculated_value_from_key",to:[Uc,Gc,Wc],message:Jc("Here you can set meta field name to use its value as calculated value for current form field","jet-form-builder")},{attribute:"generator_field",to:[Uc,Gc,Wc],message:Jc("For Numbers range generator set field with max range value","jet-form-builder"),conditions:{generator_function:"num_range"}},{attribute:"switch_on_change",to:[Wc],message:Jc("Check this to switch page to next on current value change","jet-form-builder")},{attribute:"prefix_suffix",to:["jet-forms/range-field"],message:Jc("For space before or after text use:  ","jet-form-builder")},{attribute:"calc_hidden",to:["jet-forms/repeater-field"],message:Jc("Check this to hide calculated field","jet-form-builder")},{attribute:"input_mask_default",to:[Kc],message:Jc("Examples: (999) 999-9999 - static mask, 9-a{1,3}9{1,3} - mask with dynamic syntax Default masking definitions: 9 - numeric, a - alphabetical, * - alphanumeric","jet-form-builder")},{attribute:"input_mask_datetime_link",to:[Kc],message:"https://robinherbots.github.io/Inputmask/#/documentation/datetime"},{attribute:"default",to:["jet-forms/time-field"],message:Jc("Plain time should be in hh:mm:ss format","jet-form-builder")},{attribute:"label_progress",to:[qc],message:Jc("To set/change a last progress name add a Form Break Field at the very end of the form.","jet-form-builder")}],{applyFilters:Yc}=wp.hooks,Xc=Yc("jet.fb.register.editProps",[{name:"uniqKey",callable:e=>C=>`${e.name}/${C}`},{name:"blockName",callable:e=>e.name},{name:"attrHelp",callable:e=>{const C={};return $c.forEach(t=>{t.to.includes(e.name)&&t.message&&(C[t.attribute]=t)}),(e,t={})=>{if(!(e in C))return"";const l=C[e];if(!("conditions"in l))return l.message;for(const e in l.conditions)if(!(e in t)||l.conditions[e]!==t[e])return;return l.message}}}]),{registerBlockType:Qc}=wp.blocks,{applyFilters:ed}=wp.hooks,Cd=ed("jet.fb.register.fields",[e,C,r,l,n,a,i,o,s,c,d,m,u,p,f,V,H]),td=e=>{if(!e)return;const{metadata:C,settings:t,name:l}=e;t.edit=function(e){const{edit:C}=e.settings,t={};if("useEditProps"in e.settings){const{useEditProps:C}=e.settings;C.forEach(C=>{const l=Xc.find(e=>C===e.name);l&&(t[C]=l.callable(e))}),delete e.settings.useEditProps}return e=>(0,h.createElement)(C,{...e,editProps:{...t}})}(e),t.hasOwnProperty("jfbResolveBlock")||(t.jfbResolveBlock=function(){const e={clientId:this.clientId,name:this.name};return this.attributes?.name?{...e,fields:[{name:this.attributes.name,label:this.attributes.label||this.attributes.name,value:this.attributes.name}]}:e}),!t.hasOwnProperty("__experimentalLabel")&&C.attributes.hasOwnProperty("name")&&(t.__experimentalLabel=(e,{context:t})=>{switch(t){case"list-view":return e.name||C.title;case"accessibility":return e.name?.length?`${C.title} (${e.name})`:C.title;default:return C.title}}),Qc(l,{...C,...t})};function ld(e,C){let{metadata:{title:t}}=e,{metadata:{title:l}}=C;t=t||e.settings?.title,l=l||C.settings?.title;try{return t.localeCompare(l)}catch(e){return 0}}!function(){const e=[];(0,vC.applyFilters)("jet.fb.register.plugins",[Pe,qe,EC,Xe,tC]).forEach(C=>{const{base:{name:t,condition:l=!0}}=C;if(!l)return!1;const r=(0,vC.applyFilters)(`jet.fb.register.plugin.${t}.before`,[]);r&&e.push(...r),e.push(C);const n=(0,vC.applyFilters)(`jet.fb.register.plugin.${t}.after`,[]);n&&e.push(...n)}),e.forEach(_C)}(),function(e=Cd){e.sort(ld),e.forEach(ed("jet.fb.register.fields.handler",td))}()})()})(); \ No newline at end of file diff --git a/assets/build/editor/package.asset.php b/assets/build/editor/package.asset.php index 392883d3e..282deb735 100644 --- a/assets/build/editor/package.asset.php +++ b/assets/build/editor/package.asset.php @@ -1 +1 @@ - array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '0aefae306822008fa4a6'); + array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '84dd167a2e5aa9a15f3b'); diff --git a/assets/build/editor/package.js b/assets/build/editor/package.js index 345bd9c8a..763c34c1f 100644 --- a/assets/build/editor/package.js +++ b/assets/build/editor/package.js @@ -1 +1 @@ -(()=>{var e={4180(){const e=()=>{const{select:e}=wp.data;return e("core/editor").getEditedPostAttribute("meta")},t=(t,n)=>{const{dispatch:r}=wp.data,{editPost:l}=r("core/editor");l({meta:{...e(),[t]:JSON.stringify(n)}})},n=e=>{const t=[];for(const[n,{active:r=!1}]of Object.entries(e))r&&t.push(+n);return t};wp.domReady(()=>(async()=>{await(async()=>new Promise(e=>{const t=setInterval(()=>{wp.data.select("core/editor").getCurrentPostType()&&(clearInterval(t),e())},100)}))();let r={},l=[];try{[r={},l=[]]=(()=>{const t=e();let n={},r=[];try{n=JSON.parse(t._jf_gateways)}catch(e){return[]}if(1===n.last_migrate)throw"migrated";try{r=JSON.parse(t._jf_actions)}catch(e){return[n]}return[n,r]})()}catch(e){return}r.last_migrate=1,t("_jf_gateways",r);const o=[];try{o.push(...((e,t)=>{var r,l,o,a;const i=n(null!==(r=e.notifications_success)&&void 0!==r?r:{}),s=n(null!==(l=e.notifications_failed)&&void 0!==l?l:{}),c=n(null!==(o=e.notifications_before)&&void 0!==o?o:{}),u=null!==(a=e.use_success_redirect)&&void 0!==a&&a;let d=!1;if(!(i.length||s.length||c.length||u))throw"nothing_to_migrate";return t.map(e=>{var t;return e.events=null!==(t=e.events)&&void 0!==t?t:[],i.includes(e.id)&&e.events.push("GATEWAY.SUCCESS"),s.includes(e.id)&&e.events.push("GATEWAY.FAILED"),c.includes(e.id)&&e.events.push("DEFAULT.PROCESS"),u&&!d&&"redirect_to_page"===e.type&&(e.events.push("GATEWAY.SUCCESS"),d=!0),e})})(r,l))}catch(e){return}t("_jf_actions",o)})())},115(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(6758),l=n.n(r),o=n(935),a=n.n(o)()(l());a.push([e.id,".syma2t4{height:40px;min-height:40px;line-height:1.5;}\n",""]);const i=a},4239(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(6758),l=n.n(r),o=n(935),a=n.n(o)()(l());a.push([e.id,".sfqmk5y svg{height:24px;width:24px;}\n",""]);const i=a},935(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n}).join("")},t.i=function(e,n,r,l,o){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(r)for(var i=0;i0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=o),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),l&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=l):u[4]="".concat(l)),t.push(u))}},t}},6758(e){"use strict";e.exports=function(e){return e[1]}},4023(e,t,n){var r=n(115);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(611).A)("55433ea3",r,!1,{})},483(e,t,n){var r=n(4239);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(611).A)("62ebcc8a",r,!1,{})},611(e,t,n){"use strict";function r(e,t){for(var n=[],r={},l=0;lf});var l="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!l)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},a=l&&(document.head||document.getElementsByTagName("head")[0]),i=null,s=0,c=!1,u=function(){},d=null,m="data-vue-ssr-id",p="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(e,t,n,l){c=n,d=l||{};var a=r(e,t);return h(a),function(t){for(var n=[],l=0;ln.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(l=0;l{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.dn=e=>{(Object.getOwnPropertyDescriptor(e,"name")||{}).writable||Object.defineProperty(e,"name",{value:"default",configurable:!0})},(()=>{"use strict";const e=window.React,{createContext:t}=wp.element,r=t({name:"",data:{},index:0}),l=window.jfb.components,o=window.wp.element,{createContext:a}=wp.element,i=a({actionClick:null,onRequestClose:()=>{}}),{createSlotFill:s}=wp.components,c=s("JFBActionModalFooter"),u=window.wp.components,d=window.wp.i18n,{Slot:m}=c;let{ToggleGroupControl:p,__experimentalToggleGroupControl:f}=wp.components;p=p||f;const h=function({onRequestClose:t,children:n,title:r="",classNames:l=[],className:a="",onUpdateClick:s,onCancelClick:c,updateBtnLabel:f="Update",updateBtnProps:h={},cancelBtnProps:b={},cancelBtnLabel:g="Cancel",fixedHeight:y="",...v}){const w=["jet-form-edit-modal",...l,a],[_,E]=(0,o.useState)(null),C=()=>{s&&s(),E(!0)},k=()=>{c&&c(),E(!1)};let S={};return y&&(S={height:y},w.push("jet-modal-fixed-height")),(0,e.createElement)(u.Modal,{onRequestClose:t,className:w.join(" "),title:r,style:S,...v},!n&&(0,e.createElement)("div",{className:"jet-form-edit-modal__content"},(0,d.__)("Action callback is not found.","jet-form-builder")),n&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"jet-form-edit-modal__wrapper"},(0,e.createElement)(i.Provider,{value:{actionClick:_,onRequestClose:t}},(0,e.createElement)("div",{className:"jet-form-edit-modal__content"},"function"==typeof n&&n({actionClick:_,onRequestClose:t}),"function"!=typeof n&&n))),(0,e.createElement)(m,{fillProps:{updateClick:C,cancelClick:k}},t=>Boolean(t?.length)?t:(0,e.createElement)(p,{className:"jet-form-edit-modal__actions jfb-toggle-group-control",hideLabelFromVision:!0},(0,e.createElement)(u.Button,{isPrimary:!0,onClick:C,...h},f),(0,e.createElement)(u.Button,{isSecondary:!0,style:{margin:"0 0 0 10px"},onClick:k,...b},g)))))},{RawHTML:b,useContext:g}=wp.element;function y(e,t){return e?.length?e.map(e=>"object"==typeof e?e[t]:e):[]}const v=(0,window.wp.hooks.applyFilters)("jet.fb.tools.convertSymbols",{checkCyrRegex:/[а-яёїєґі]/i,cyrRegex:/[а-яёїєґі]/gi,charsMap:{а:"a",б:"b",в:"v",г:"g",д:"d",е:"e",ё:"io",ж:"zh",з:"z",и:"i",й:"i",к:"k",л:"l",м:"m",н:"n",о:"o",п:"p",р:"r",с:"s",т:"t",у:"u",ф:"f",х:"kh",ц:"ts",ч:"ch",ш:"sh",щ:"shch",ы:"y",э:"e",ю:"iu",я:"ia",ї:"i",є:"ie",ґ:"g",і:"i"}});function w(e){return v.checkCyrRegex.test(e)&&(e=e.replace(v.cyrRegex,function(e){return void 0===v.charsMap[e]?"":v.charsMap[e]})),e}function _(e){let t=e.toLowerCase();t=t.normalize("NFD").replace(/[\u0300-\u036f]/g,""),t=w(t);const n=t.match(/\b(\w+)\b/g);t="";for(const[e,r]of Object.entries(n)){t+=(0===+e?"":"_")+r;const l=+e+1===n.length;if(t.length>60)return t+(l?"":"__")}return t}function E(...e){const t=[],n=e=>{e.forEach(e=>{if(e&&(Array.isArray(e)&&n(e),"string"==typeof e&&t.push(e.trim()),"object"==typeof e))for(const n in e)e[n]&&t.push((n+"").trim())})};return n(e),t.join(" ")}function C(e){return null==e||("object"!=typeof e||Array.isArray(e)?"number"==typeof e?0===e:!e?.length:!Object.keys(e)?.length)}const k=class{static withPlaceholder(e,t="--",n=""){return[{label:t,value:n},...e]}static getRandomID(){return Math.floor(8999*Math.random())+1e3}},{select:S}=wp.data,j=function(e){const t=(n,r=null)=>{(n=n||S("core/block-editor").getBlocks()).forEach(n=>{if(e(n,r),n.innerBlocks.length){const e="jet-forms/repeater-field"===n.name?n:r;return void t(n.innerBlocks,e)}if("core/block"!==n.name)return;let l=S("core/block-editor")?.__unstableGetClientIdsTree?.(n.clientId);if(!l?.length)return;const o=l.map(({clientId:e})=>e);l=S("core/block-editor").getBlocksByClientId(o),t(l)})};t()},{applyFilters:x}=wp.hooks,{select:N}=wp.data,F=function(e=[],t=!1,n=!1,r="default"){let l=[];const o=["submit","form-break","heading","group-break","conditional",...e];return j(e=>{if(e.name.includes("jet-forms/")&&!o.find(t=>e.name.includes(t))){const t=N("core/blocks").getBlockType(e.name);let{fields:n=[]}=t.jfbResolveBlock.call(e,r);t.hasOwnProperty("jfbGetFields")&&(n=t.jfbGetFields.call(e,r)),l.push(...n.filter(e=>!l.some(({value:t})=>t===e.value)))}}),l=t?[{value:"",label:t},...l]:l,n?l:x("jet.fb.getFormFieldsBlocks",l,r)},T=function(e=[],t="default"){const n=[],r=F(e,!1,!1,t);return r&&r.forEach(e=>n.push(e.name)),n},{__:B}=wp.i18n,{applyFilters:I}=wp.hooks,{select:A}=wp.data,O=function(e=!1,t=!1,n="default"){const r=["submit","form-break","heading","group-break","conditional"];let l=[];const o=wp.data.select("core/block-editor").getSelectedBlock();return j(e=>{if(e.name.includes("jet-forms/")&&o?.clientId!==e.clientId&&!r.find(t=>e.name.includes(t))){const t=A("core/blocks").getBlockType(e.name);let{fields:r=[]}=t.jfbResolveBlock.call(e,n);t.hasOwnProperty("jfbGetFields")&&(r=t.jfbGetFields.call(e,n)),l.push(...r.filter(e=>!l.some(({value:t})=>t===e.value)))}}),l=e?[{value:"",label:e},...l]:l,t?l:I("jet.fb.getFormFieldsBlocks",l,n)},R=function(e){const t=wp.data.select("core/block-editor").getBlock(e);return t?t.innerBlocks:[]},{addFilter:M}=wp.hooks,P=function(e=!1,t=""){const n=window.JetFormEditorData.gateways;if(!e)return n;if(!n[e])return!1;const r=n[e];return e=>r[e]?r[e]:t},L=function(e,t=""){const n=P("labels");return r=>n(e)?n(e)[r]:t},G=function(e,t="cred"){return window.JetFBGatewaysList&&window.JetFBGatewaysList[e]&&window.JetFBGatewaysList[e][t]},D=function(t,n,r="cred"){if(!G(t,r))return null;const l=window.JetFBGatewaysList[t][r];return(0,e.createElement)(l,{...n})},{useState:q,useEffect:V}=wp.element,{useDispatch:J}=wp.data,$=function(e,t={}){const[n,r]=q(!1),l=J(wp.notices.store);return V(()=>{n&&l.createWarningNotice(e,{type:"snackbar",...t})},[n]),r},{useSelect:U}=wp.data,H=function(e){const t=U(e=>e("core/editor").getEditedPostAttribute("meta")||{});return JSON.parse(t[e]||"{}")},W=function(e){const{actionClick:t,onRequestClose:n}=(0,o.useContext)(i);(0,o.useEffect)(()=>{t&&e(),null!==t&&n()},[t])},{applyFilters:z}=wp.hooks,Y=(e,t)=>{t.forEach(t=>{e(t),t.innerBlocks.length&&Y(e,t.innerBlocks)})},K=window.jfb.actions,X=function(e){const t=e("jet-forms/gateways"),n=t.getCurrentRequestId(),r=t.getGatewaySpecific(),l=t.getScenario(),o=t.getGatewayId(),{id:a="PAY_NOW"}=l,{use_global:i=!1}=r,s=(0,K.globalTab)({slug:o}),c=P("additional")(o),u=e("jet-forms/actions").getLoading(n),d=P("labels"),m=L(o),p=function(e){return d(`${o}.${e}`)};return{gatewayGeneral:t.getGateway(),gatewayRequest:t.getCurrentRequest(),scenarioSource:c[a]||{},currentScenario:l[a]||{},CURRENT_SCENARIO:a,gatewayScenario:l,additionalSourceGateway:c,gatewaySpecific:r,gatewayRequestId:n,loadingGateway:u,getSpecificOrGlobal:(e,t="")=>i?s[e]||t:r[e]||t,globalGatewayLabel:d,specificGatewayLabel:m,customGatewayLabel:p,scenarioLabel:function(e){return p(`scenario.${a}.${e}`)}}},{useSelect:Z}=wp.data,Q=function(){const e=Z(e=>e("jet-forms/events").getAlwaysTypes()),t=[];for(const{value:n}of e)t.push(n);return[...new Set(t)]},{useSelect:ee}=wp.data,te=function(){var e;const t=H("_jf_gateways"),{scenario:n={}}=null!==(e=t[t?.gateway])&&void 0!==e?e:{};return ee(e=>{const r=e("jet-forms/events").getGatewayTypes(),l=[];for(const e of r){const r=!e.gateway||e.gateway===t.gateway,o=!e.scenario||e.scenario===n?.id;r&&o&&l.push(e.value)}return[...new Set(l)]},[t.gateway,n?.id])},{useSelect:ne}=wp.data,re=function({index:e}){const t=H("_jf_actions"),n=ne(e=>e("jet-forms/actions").getActionsMap(),[]);t.splice(e,1);const r=[];for(const e of t){const t=n?.[e.type]?.provideEvents;if("function"!=typeof t)continue;const{[e.type]:l={}}=e.settings;r.push(...t(l))}return[...new Set(r)]},{useSelect:le}=wp.data,{useSelect:oe}=wp.data,ae=function(e){const t=[...Q(),...te(),...re(e),...le(e=>e("jet-forms/events").getDynamicTypes().map(({value:e})=>e))];return oe(n=>n("jet-forms/events").filterList(e.type,t))},{useSelect:ie}=wp.data,{useSelect:se}=wp.data,ce=function(){const[e,t]=se(e=>[e("jet-forms/block-conditions").getOperators(),e("jet-forms/block-conditions").getFunctions()],[]);return{operators:e,functions:t}},{useBlockEditContext:ue}=wp.blockEditor,de=function(){const{clientId:e}=ue();return t=>t+"-"+e},me=window.wp.blockEditor,pe=window.wp.data,fe=function(e=null){const t=(0,me.useBlockEditContext)();let{clientId:n}=t;e&&(n=e);const r=(0,pe.useSelect)(e=>e("core/block-editor").getBlockAttributes(n),[n]),{updateBlock:l}=(0,pe.useDispatch)("core/block-editor");return[r,e=>{e="object"==typeof e?e:e(r),e=(0,pe.select)("jet-forms/fields").getSanitizedAttributes(e,t),l(n,{attributes:e})}]},he=function(e){const t=(0,me.useBlockProps)()["data-type"];return(0,pe.useSelect)(n=>!!n("core/blocks").getBlockType(t).attributes[e],[e,t])},{applyFilters:be}=wp.hooks,ge=function(t){return function(n){return(0,e.createElement)(t,{key:"wrapped-preset-editor",...n,parseValue:()=>{let e={};if("object"==typeof n.value)e={...n.value};else if(n.value&&"string"==typeof n.value)try{if(e=JSON.parse(n.value),"number"==typeof e)throw new Error}catch(t){e={}}return e.jet_preset=!0,e},isVisible:(e,t,n)=>(t.position&&n===t.position||!t.position||"query_var"!==e.from)&&((e,t)=>!t.condition&&!t.custom_condition||(t.custom_condition?"query_var"===t.custom_condition?"post"===e.from&&"query_var"===e.post_from||"user"===e.from&&"query_var"===e.user_from||"term"===e.from&&"query_var"===e.term_from||"query_var"===e.from:be("jet.fb.preset.editor.custom.condition",!1,t.custom_condition,e):!t.condition||e[t.condition.field]===t.condition.value))(e,t),isMapFieldVisible:(e,t,n)=>!((t.condition||t.parent_condition)&&(t.parent_condition&&!t.condition?e[t.parent_condition.field]!==t.parent_condition.value:t.parent_condition&&t.condition?!e.fields_map||!e.fields_map[n]||e.fields_map[n][t.condition.field]!==t.condition.value||e[t.parent_condition.field]!==t.parent_condition.value:!t.parent_condition&&t.condition&&(!e.fields_map||!e.fields_map[n]||e.fields_map[n][t.condition.field]!==t.condition.value))),isCurrentFieldVisible:(e,t,n)=>!((t.condition||t.parent_condition)&&(t.position&&n!==t.position||(t.parent_condition&&!t.condition?e[t.parent_condition.field]!==t.parent_condition.value:t.parent_condition&&t.condition?e["current_field_"+t.condition.field]!==t.condition.value||e[t.parent_condition.field]!==t.parent_condition.value:!t.parent_condition&&t.condition&&e["current_field_"+t.condition.field]!==t.condition.value))),excludeOptions:e=>{const t=[...e];return t.forEach((e,r)=>{n.excludeSources&&n.excludeSources.includes(e.value)&&t.splice(r,1)}),t}})}},ye=function({data:t,value:n,index:r,onChangeValue:o,isVisible:a,excludeOptions:i=e=>e,position:s}){switch(t.type){case"text":return a(n,t,s)&&(0,e.createElement)("div",{key:"field_"+t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledTextControl,{key:t.name+r,label:t.label,value:n[t.name],onChange:e=>{o(e,t.name)}}));case"select":return a(n,t,s)&&(0,e.createElement)("div",{key:"field_"+t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledSelectControl,{key:t.name+r,options:i(t.options),label:t.label,value:n[t.name],onChange:e=>{o(e,t.name)}}))}return null};function ve(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var we=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_e=ve(function(e){return we.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),Ee=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)})});const r=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&r.push(t[e]);return r.push(...n),r.join(" ")},Ce=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{n[t]=e[t]}),n},ke=(e,t)=>{},Se=function(t){let n="";return r=>{const l=(l,o)=>{const{as:a=t,class:i=n}=l;var s;const c=function(e,t){const n=Ce(t,["as","class"]);if(!e){const e="function"==typeof _e?{default:_e}:_e;Object.keys(n).forEach(t=>{e.default(t)||delete n[t]})}return n}(void 0===r.propsAsIs?!("string"==typeof a&&-1===a.indexOf("-")&&(s=a[0],s.toUpperCase()!==s)):r.propsAsIs,l);c.ref=o,c.className=r.atomic?Ee(r.class,c.className||i):Ee(c.className||i,r.class);const{vars:u}=r;if(u){const e={};for(const t in u){const n=u[t],o=n[0],a=n[1]||"",i="function"==typeof o?o(l):o;ke(0,r.name),e[`--${t}`]=`${i}${a}`}const t=c.style||{},n=Object.keys(t);n.length>0&&n.forEach(n=>{e[n]=t[n]}),c.style=e}return t.__wyw_meta&&t!==a?(c.as=a,(0,e.createElement)(t,c)):(0,e.createElement)(a,c)},o=e.forwardRef?(0,e.forwardRef)(l):e=>{const t=Ce(e,["innerRef"]);return l(t,e.innerRef)};return o.displayName=r.name,o.__wyw_meta={className:r.class||n,extends:t},o}};const je=Se("select")({name:"StyledSelect",class:"syma2t4",propsAsIs:!1}),xe=function({id:t,label:n,onChange:r,options:l=[],value:o}){return!C(l)&&(0,e.createElement)(je,{id:t,className:"components-select-control__input",onChange:e=>{r(e.target.value)},value:o},(0,e.createElement)("option",{key:`${n}-placeholder`,value:""},"--"),l.map((t,n)=>!C(t.values)&&(0,e.createElement)("optgroup",{key:`${t.label}-${n}`,label:t.label},t.values.map((t,r)=>(0,e.createElement)("option",{key:`${t.value}-${r}-${n}`,value:t.value,disabled:t.disabled},t.label)))))};n(4023);const Ne=function({data:t,value:n,index:r,currentState:o,onChangeValue:a,isCurrentFieldVisible:i}){switch(t.type){case"text":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledTextControl,{key:"control_"+t.name+r,placeholder:t.label,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}));case"select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledSelectControl,{key:"control_"+t.name+r,options:t.options,label:t.label,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}));case"custom_select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(u.CustomSelectControl,{className:"jet-custom-select-control",label:t.label,options:t.options,onChange:({selectedItem:e})=>{n=e.key,a(n,"current_field_"+t.name)},value:t.options.find(e=>e.key===n)}));case"grouped_select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r},(0,e.createElement)(l.Label,null,t.label),(0,e.createElement)(xe,{options:t.options,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}))}return null},{createContext:Fe}=wp.element,Te=Fe({});let Be=function({value:t,onChange:n,parseValue:r,excludeOptions:a,isCurrentFieldVisible:i,isVisible:s}){var c,m;const p="dynamic",f=r(t),h=(0,o.useContext)(Te),b=(e,t)=>{n(()=>JSON.stringify({...f,[t]:e}))};return(0,e.createElement)(l.StyledFlexControl,{direction:"column",gap:4},window.JetFormEditorData.presetConfig.global_fields.map((t,n)=>(0,e.createElement)(ye,{key:`current_field_${t.name}_${n}`,value:f,index:n,data:t,excludeOptions:a,onChangeValue:b,isVisible:s,position:p})),window.JetFormEditorData.presetConfig.map_fields.map((t,n)=>(0,e.createElement)(Ne,{key:`current_field_${t.name}_${n}`,currentState:f,value:f["current_field_"+t.name],index:n,data:t,onChangeValue:b,isCurrentFieldVisible:i,position:p})),h?.show&&(0,e.createElement)(u.ToggleControl,{label:(0,d.__)("Restrict access","jet-form-builder"),help:null===(c=f.restricted)||void 0===c||c?(0,d.__)("Will set default value from preset only for users who allowed to edit this value","jet-form-builder"):(0,d.__)("Always set default value from preset. Make sure it can't be accidentally changed from form Actions","jet-form-builder"),checked:null===(m=f.restricted)||void 0===m||m,onChange:e=>{b(e?void 0:e,"restricted")}}))};Be=ge(Be);const Ie=Be,{SelectControl:Ae,TextControl:Oe}=wp.components;class Re extends wp.element.Component{constructor(e){super(e),this.fieldTypes=this.props.fieldTypes,this.taxonomiesList=this.props.taxonomiesList,this.className=this.props.className,this.metaProp=this.props.metaProp?this.props.metaProp:"post_meta",this.termsProp=this.props.termsProp?this.props.termsProp:"post_terms",this.index=this.props.index,this.init(),this.bindFunctions(),this.state={type:this.getFieldType(this.props.fieldValue)}}bindFunctions(){this.onChangeType=this.onChangeType.bind(this),this.onChangeValue=this.onChangeValue.bind(this)}init(){if(this.id=`inspector-select-control-${this.index}`,this.preparedTaxes=[],this.taxPrefix="jet_tax__",this.taxonomiesList)for(let e=0;e{const t=wp.data.select(qe).getBlockType(`jet-forms/${e}`);return{title:t.title,icon:t.icon.src}}))}},Je=class{constructor(){this.items=[]}push(e){this.items.push(new Ve(e))}},{messages:$e}=window.jetFormValidation,{useState:Ue}=wp.element,He=$e.sort((e,t)=>e.supported.length-t.supported.length);function We(){const e=new Je;for(const t of He)e.push(t);return e.items}const ze=function(e,t){1>=e.label.length||e.name&&"field_name"!==e.name||t({name:_(e.label)})},{BaseControl:Ye}=wp.components,{RichText:Ke}=wp.blockEditor;let{__experimentalUseFocusOutside:Xe,useFocusOutside:Ze}=wp.compose;Ze=Ze||Xe;const{__:Qe}=wp.i18n;function et(t){return(0,e.createElement)("small",{style:{whiteSpace:"nowrap",padding:"0.2em 0.8em 0 0",color:"#8e8a8a"}},t)}const{Button:tt,Popover:nt,PanelBody:rt}=wp.components,{useState:lt}=wp.element,{__:ot}=wp.i18n,{TextControl:at}=wp.components,it=function({label:t,help:n}){const[r,l]=fe();return he("placeholder")?(0,e.createElement)(at,{label:null!=t?t:ot("Placeholder","jet-form-builder"),value:r.placeholder,help:null!=n?n:"",onChange:e=>l({placeholder:e})}):null},{__:st}=wp.i18n,{ToggleControl:ct}=wp.components,ut=function({label:t,help:n}){const[r,l]=fe();return he("add_prev")?(0,e.createElement)(ct,{label:null!=t?t:st("Add Prev Page Button","jet-form-builder"),help:null!=n?n:st('It is recommended to use the "Action Button" block with the "Go to Prev Page" type',"jet-form-builder"),checked:r.add_prev,onChange:e=>l({add_prev:e})}):null},dt=function({children:t,className:n="",style:r={},...l}){return(0,e.createElement)("p",{className:"jet-fb-base-control__help"+(n?` ${n}`:""),style:{fontSize:"12px",fontStyle:"normal",color:"rgb(117, 117, 117)",marginTop:"0px",...r},...l},t)},{useBlockEditContext:mt}=wp.blockEditor,{useSelect:pt}=wp.data,{__:ft}=wp.i18n,ht=function({name:t=!1,children:n=null}){const{name:r}=mt(),l=pt(e=>{var n;if(!1===t)return!1;const l=e("core/blocks").getBlockType(r);return null!==(n=l.attributes[t]?.jfb)&&void 0!==n&&n},[r,t]);return l?(0,e.createElement)(dt,{className:"jet-fb mb-24"},n&&(0,e.createElement)(e.Fragment,null,n," "),l?.shortcode&&!l.rich&&!n&&ft("You can use shortcodes here.","jet-form-builder"),l?.shortcode&&!l.rich&&n&&ft("You can also use shortcodes here.","jet-form-builder")):Boolean(n)&&(0,e.createElement)(dt,{className:"jet-fb mb-24"},n)},{__:bt}=wp.i18n,{TextControl:gt}=wp.components,yt=function({label:t,help:n}){const[r,l]=fe();return r.add_prev?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(gt,{label:null!=t?t:bt("Prev Page Button Label","jet-form-builder"),value:r.prev_label,className:"jet-fb m-unset",onChange:e=>l({prev_label:e})}),(0,e.createElement)(ht,{name:"prev_label"},null!=n?n:"")):null},{__:vt}=wp.i18n,{SelectControl:wt}=wp.components,_t=function({label:t,help:n}){const[r,l]=fe();return he("visibility")?(0,e.createElement)(wt,{options:[{value:"all",label:vt("For all","jet-form-builder")},{value:"logged_id",label:vt("Only for logged in users","jet-form-builder")},{value:"not_logged_in",label:vt("Only for NOT-logged in users","jet-form-builder")}],label:null!=t?t:vt("Field Visibility","jet-form-builder"),help:null!=n?n:"",value:r.visibility,onChange:e=>l({visibility:e})}):null},{__:Et}=wp.i18n,{TextControl:Ct}=wp.components,kt=function({label:t,help:n}){const[r,l]=fe();return(0,e.createElement)(Ct,{label:null!=t?t:Et("CSS Class Name","jet-form-builder"),value:r.class_name,help:null!=n?n:"",onChange:e=>l({class_name:e})})},{InspectorAdvancedControls:St}=wp.blockEditor,{__:jt}=wp.i18n,{TextControl:xt}=wp.components;let{__experimentalUseFocusOutside:Nt,useFocusOutside:Ft}=wp.compose;Ft=Ft||Nt;const Tt=function({label:t,help:n}){const[r,l]=fe(),o=Ft(function(){ze(r,l)});return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(xt,{label:null!=t?t:jt("Field Label","jet-form-builder"),className:"jet-fb m-unset",value:r.label,onChange:e=>l({label:e}),...o}),(0,e.createElement)(ht,{name:"label"},null!=n?n:""))},Bt={};for(const{id:e,name:t}of window.jetFormActionTypes)Bt[e]=t;const{__:It}=wp.i18n,{TextControl:At,Icon:Ot,Flex:Rt,Tooltip:Mt}=wp.components,{useInstanceId:Pt}=wp.compose,Lt=function t({label:n,help:r}){const[l,o]=fe(),{message:a}=function(){const{clientId:e}=(0,me.useBlockEditContext)(),t=(0,K.useRequestFields)({returnOnEmptyCurrentAction:!1}),{inFormFields:n,hasParent:r,fieldNames:l}=(0,pe.useSelect)(t=>{var n;const r=t("jet-forms/fields").getBlockById(e);return{hasParent:!!r?.parentBlock,fieldNames:null!==(n=r?.fields?.map?.(({value:e})=>e))&&void 0!==n?n:[],inFormFields:t("jet-forms/fields").isUniqueName(e)}},[e]);if(!n)return{error:"not_unique_in_fields",message:(0,d.__)("The form field name must be unique. Please change it","jet-form-builder")};if(r)return{};const o=t.find(({value:e})=>l.includes(e));return o?{error:"not_unique_in_actions",message:o?.from?(0,d.sprintf)((0,d.__)("The %s action already uses this field name. Please change it","jet-form-builder"),Bt[o.from]):(0,d.__)("The form field name must be unique. Please change it","jet-form-builder")}:{}}(),i=Pt(t,"AdvancedInspectorControl");return he("name")?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Rt,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,e.createElement)("label",{htmlFor:i,className:"jet-fb label"},null!=n?n:It("Form field name","jet-form-builder")),!!a&&(0,e.createElement)(Mt,{text:a,delay:200,placement:"top"},(0,e.createElement)(Ot,{icon:"warning",style:{color:"orange",cursor:"help"}}))),(0,e.createElement)(At,{id:i,value:l.name,help:null!=r?r:It("Should contain only lowercase Latin letters, numbers, “-”, or “_”. No spaces allowed.","jet-form-builder"),onChange:e=>o({name:e})})):null},{__:Gt}=wp.i18n,{TextControl:Dt}=wp.components,qt=function({label:t,help:n}){const[r,l]=fe();return he("desc")?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Dt,{label:null!=t?t:Gt("Field Description","jet-form-builder"),value:r.desc,className:"jet-fb m-unset",onChange:e=>l({desc:e})}),(0,e.createElement)(ht,{name:"desc"},null!=n?n:"")):null},Vt=function({value:t,onChange:n,title:r}){const[a,i]=(0,o.useState)(!1),[s,c]=(0,o.useState)(t);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(u.Button,{icon:"database",variant:"tertiary",isSmall:!0,className:"jet-fb-is-thick",onClick:()=>i(!0)}),a&&(0,e.createElement)(u.Modal,{size:"medium",title:null!=r?r:(0,d.__)("Edit Preset","jet-form-builder"),onRequestClose:()=>i(!1),className:l.ModalFooterStyle},(0,e.createElement)(Ie,{key:"dynamic_key_preset",value:s,onChange:c}),(0,e.createElement)(l.StickyModalActions,null,(0,e.createElement)(u.Button,{isPrimary:!0,onClick:()=>{n(s),i(!1)}},(0,d.__)("Update","jet-form-builder")),(0,e.createElement)(u.Button,{isSecondary:!0,onClick:()=>{i(!1)}},(0,d.__)("Cancel","jet-form-builder")))))},{createContext:Jt}=wp.element,$t=Jt(!1),{useState:Ut,useRef:Ht}=wp.element,{Button:Wt,Popover:zt}=wp.components,Yt=function({children:t,...n}){const[r,l]=Ut(!1),o=Ht();return(0,e.createElement)($t.Provider,{value:{showPopover:r,setShowPopover:l}},(0,e.createElement)(Wt,{ref:o,icon:"admin-tools",variant:"tertiary",isSmall:!0,className:"jet-fb-is-thick",onClick:()=>l(e=>!e),...n}),r&&(0,e.createElement)(zt,{anchor:o.current,position:"top-start",noArrow:!1,variant:"toolbar",onFocusOutside:e=>{e.relatedTarget!==o.current&&l(!1)},onClose:()=>l(!1)},t))},{createContext:Kt}=wp.element,Xt=Kt([]),{createContext:Zt}=wp.element,Qt=Zt({name:""});function en(){}en.prototype={fullName(){},fullHelp(){}};const tn=en,{useState:nn}=wp.element,{Button:rn}=wp.components,ln=function({current:t,children:n}){const[r,l]=nn(!1);if(!(t instanceof tn))return(0,e.createElement)("li",null,(0,e.createElement)(Qt.Provider,{value:t},n));const o=t.fullHelp.bind(t);return(0,e.createElement)("li",null,(0,e.createElement)(Qt.Provider,{value:t},(0,e.createElement)("div",{style:{display:"flex",alignItems:"center",gap:"0.6em"}},(0,e.createElement)(rn,{isSmall:!0,variant:"tertiary",icon:r?"arrow-down":"arrow-right",className:"jet-fb-is-thick",onClick:()=>l(e=>!e)}),n),r&&(0,e.createElement)(o,null)))},{Children:on,cloneElement:an}=wp.element,{PanelBody:sn}=wp.components,cn=function({title:t,items:n,children:r,initialOpen:l}){const o=n.map((t,n)=>(0,e.createElement)(ln,{key:n,current:t}));return(0,e.createElement)(sn,{title:t,initialOpen:l},(0,e.createElement)("ul",{style:{padding:"0 0.5em"}},on.map(o,e=>an(e,{},r))))},{useContext:un}=wp.element,{__:dn}=wp.i18n,mn=function({children:t,fields:n,...r}){var l,o;const a=un(Xt),i=[...null!==(l=a.beforeFields)&&void 0!==l?l:[],...n,...null!==(o=a.afterFields)&&void 0!==o?o:[]];return i.length||a?.extra?.length||a?.filters?.length?(0,e.createElement)(Yt,{...r},Boolean(i.length)&&(0,e.createElement)(cn,{title:dn("Fields:","jet-form-builder"),items:i,initialOpen:!0},t),Boolean(a?.extra?.length)&&(0,e.createElement)(cn,{title:dn("Extra macros:","jet-form-builder"),items:a.extra},t),Boolean(a?.filters?.length)&&(0,e.createElement)(cn,{title:dn("Filters:","jet-form-builder"),items:a.filters},t)):null},{useContext:pn}=wp.element,{Button:fn}=wp.components,hn=function({onClick:t}){const n=pn(Qt),r=n.fullName?n.fullName():`%${n.value}%`,l="function"==typeof n.label?n.label():n.label||r,o=Boolean(n.is_repeater)?`${l} (repeater)`:l,a=Boolean(n.is_repeater_child)?"- ":"";return n.supports_option_label?(0,e.createElement)("div",{className:"jet-fb-macro-field-item",style:{whiteSpace:"nowrap"}},(0,e.createElement)("div",{className:"jet-fb-macro-field-item__label"},o),(0,e.createElement)("div",{className:"jet-fb-macro-field-item__formats"},"- ",(0,e.createElement)(fn,{isLink:!0,onClick:()=>t(r,n)},"Format: value")," ",(0,e.createElement)("br",null),"- ",(0,e.createElement)(fn,{isLink:!0,onClick:()=>t(r,n,"option-label")},"Format: label value"))):(0,e.createElement)(e.Fragment,null,a,(0,e.createElement)(fn,{style:{whiteSpace:"nowrap"},isLink:!0,onClick:()=>t(r,n)},o))},bn=window.jfb.blocksToActions,gn=["jet-forms/checkbox-field","jet-forms/radio-field","jet-forms/select-field"];function yn(e){return gn.includes(e?.name)}function vn(e={}){return e.name||e.field_name||e.fieldName||""}const wn=function({onClick:t=()=>{},withCurrent:n=!1,...r}){const l=(0,bn.useFields)({excludeCurrent:!n}),o=(0,pe.useSelect)(e=>{const t=e("core/block-editor");return function(e=[]){const t={},n=(e,r=null)=>{(e||[]).forEach(e=>{const l=vn(e?.attributes),o="jet-forms/repeater-field"===e?.name;l&&(t[l]={is_repeater:o,is_repeater_child:Boolean(r)&&!o,repeater_name:r?vn(r.attributes):"",supports_option_label:yn(e)});const a=o?e:r;e?.innerBlocks?.length&&n(e.innerBlocks,a)})};return n(e),t}(t?.getBlocks?.()||[])},[]),a=(l||[]).map(e=>{const t=o?.[e?.value];return t?{...e,...t}:e});return(0,e.createElement)(mn,{withCurrent:n,fields:a,...r},(0,e.createElement)(hn,{onClick:t}))},{Flex:_n}=wp.components,En=function({label:t,children:n,...r}){return(0,e.createElement)(_n,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,e.createElement)("label",{className:"jet-fb label",...r},t),n)},{FlexItem:Cn}=wp.components,{useInstanceId:kn}=wp.compose,Sn=function({children:t,value:n,label:r,onChangePreset:l=!1,onChangeMacros:o=!1}){const a=kn(Cn,"jfb-AdvancedInspectorControl");return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(En,{label:r,htmlFor:a},!1!==l&&(0,e.createElement)(Vt,{value:n,onChange:l}),!1!==o&&(0,e.createElement)(wn,{onClick:o})),"function"==typeof t?t({instanceId:a}):t)};function jn(){tn.call(this)}jn.prototype=Object.create(tn.prototype),jn.prototype.isServerSide=!1,jn.prototype.isClientSide=!1,jn.prototype.name="",jn.prototype.namespace="CT",jn.prototype.help=null,jn.prototype.fullHelp=function(){return this.help},jn.prototype.fullName=function(){return`%${this.namespace}::${this.name}%`};const xn=jn,{useSelect:Nn}=wp.data,{__:Fn}=wp.i18n,Tn=new xn;Tn.fullName=()=>"%this%",Tn.fullHelp=()=>Fn("Returns current field value","jet-form-builder");const Bn=function({children:t,withThis:n=!1}){const r=Nn(e=>e("jet-forms/macros").getClientMacros(),[]),l=Nn(e=>e("jet-forms/macros").getClientFilters(),[]),o=n?{extra:r,afterFields:[Tn],filters:l}:{extra:r,filters:l};return(0,e.createElement)(Xt.Provider,{value:o},t)};function In(e,t,n){const r=n.selectionStart,l=n.selectionEnd;(e=null!=e?e:"").length||(t=`'${t}'`);let o=e.slice(0,r);const a=e.slice(l);return o+=t,setTimeout(()=>{n.focus(),n.selectionStart=o.length,n.selectionEnd=o.length}),o+a}const{useRef:An}=wp.element,On=function(e){var t;const[n,r]=fe(),l=null!==(t=n[e])&&void 0!==t?t:"",o=An();return[o,t=>{r({[e]:In(l,t,o.current)})}]},{__:Rn}=wp.i18n,{TextControl:Mn}=wp.components,Pn=function({label:t,help:n,hasMacro:r=!0}){const[l,o]=fe(),[a,i]=On("default");return he("default")?(0,e.createElement)(Te.Provider,{value:{show:!0}},(0,e.createElement)(Bn,null,(0,e.createElement)(Sn,{value:l.default,label:null!=t?t:Rn("Default Value","jet-form-builder"),onChangePreset:e=>o({default:e}),onChangeMacros:!!r&&i},({instanceId:t})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Mn,{ref:a,id:t,value:l.default,className:"jet-fb m-unset",onChange:e=>o({default:e})}),(0,e.createElement)(ht,{name:"default"},null!=n?n:""))))):null},{PanelBody:Ln}=wp.components,{__:Gn}=wp.i18n,{BlockControls:Dn}=wp.blockEditor,{useCopyToClipboard:qn}=wp.compose,{TextControl:Vn,ToolbarGroup:Jn,ToolbarItem:$n,ToolbarButton:Un}=wp.components,Hn=function({children:t=null}){const n=de(),[r,l]=fe(),o=$(`Copied "${r.name}" to clipboard.`),a=qn(r.name,()=>o(!0));return(0,e.createElement)(Dn,{key:n("ToolBarFields-BlockControls")},(0,e.createElement)(Jn,{key:n("ToolBarFields-ToolbarGroup"),className:"jet-fb-block-toolbar"},(0,e.createElement)(Un,{isSmall:!0,icon:"admin-page",showTooltip:!0,shortcut:"Copy name",ref:a}),(0,e.createElement)($n,{as:Vn,value:r.name,onChange:e=>l({name:e})}),t))},{__:Wn}=wp.i18n,{ToolbarButton:zn}=wp.components,{BlockControls:Yn}=wp.blockEditor,{SVG:Kn,Path:Xn}=wp.primitives,Zn=function(){const[t,n]=fe();return he("required")?(0,e.createElement)(Yn,{group:"block"},(0,e.createElement)(zn,{icon:(0,e.createElement)(Kn,{xmlns:"http://www.w3.org/2000/svg",width:"24px",height:"24px",viewBox:"0 0 24 24",fill:"none"},(0,e.createElement)(Xn,{d:"M12 4L12 20",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Xn,{d:"M17.3137 6.00024L6.00001 17.314",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Xn,{d:"M20 12L4 12",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Xn,{d:"M17.3137 17.3137L6.00001 6.00001",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),title:t.required?Wn("Click to make this field optional","jet-form-builder"):Wn("Click to make this field required","jet-form-builder"),onClick:()=>n({required:!t.required}),isActive:t.required})):null},{__:Qn}=wp.i18n,{PanelBody:er}=wp.components,{applyFilters:tr}=wp.hooks,{useBlockProps:nr}=wp.blockEditor,{applyFilters:rr}=wp.hooks,lr=()=>rr("jet.fb.register.fields.controls",{}),or=window.wp.compose,ar=(0,or.compose)((0,pe.withSelect)(X))(function({initialLabel:t="Valid",label:n="InValid",apiArgs:r={},gatewayRequestId:l,loadingGateway:o,onLoading:a=()=>{},onSuccess:i=()=>{},onFail:s=()=>{},isHidden:c=!1}){return(0,e.createElement)(K.FetchApiButton,{id:l,loadingState:o,initialLabel:t,label:n,apiArgs:r,onFail:s,onLoading:a,onSuccess:i,isHidden:c})}),ir="CLEAR_GATEWAY",sr="CLEAR_SCENARIO",cr="SET_CURRENT_GATEWAY_SCENARIO",ur="SET_CURRENT_GATEWAY",dr="SET_CURRENT_GATEWAY_SPECIFIC",mr="SET_CURRENT_GATEWAY_INNER",pr="SET_CURRENT_REQUEST",fr="SET_CURRENT_SCENARIO",hr="REGISTER_EVENT_TYPE",br="HARD_SET_CURRENT_GATEWAY",gr="HARD_SET_CURRENT_GATEWAY_SPECIFIC",yr={getCurrentRequestId:e=>e.currentRequest.id,getCurrentRequest:e=>e.currentRequest,getScenario:e=>e.currentScenario,getScenarioId:e=>e.currentScenario?.id,getGatewayId:e=>e.currentGateway?.gateway,getGateway:e=>e.currentGateway,getEventTypes:e=>e.eventTypes},vr={...yr,getGatewaySpecific:e=>e.currentGateway[yr.getGatewayId(e)]||{}},wr={[ir]:e=>({...e,currentGateway:{}}),[sr]:e=>({...e,currentScenario:{}}),[cr]:(e,t)=>({...e,currentScenario:{...e.currentScenario,...t.item||{}}}),[ur]:(e,t)=>({...e,currentGateway:{...e.currentGateway,...t.item}}),[dr]:(e,t)=>({...e,currentGateway:{...e.currentGateway,[e.currentGateway.gateway]:{...vr.getGatewaySpecific(e),...t.item}}}),[mr]:(e,t)=>{const{key:n,value:r}=t.item;return{...e,currentGateway:{...e.currentGateway,[n]:{...e.currentGateway[n]||{},...r}}}},[pr]:(e,t)=>{const n=[vr.getGatewayId(e),t.item?.id].filter(e=>e);return t.item.id=n.join("/"),{...e,currentRequest:t.item}},[fr]:(e,t)=>({...e,currentScenario:{...e.currentScenario,[e.currentScenario?.id]:{...e.currentScenario[e.currentScenario?.id]||{},...t.item||{}}}}),[br]:(e,t)=>(t.item&&(e.currentGateway[t.item]=t.value),{...e}),[gr]:(e,t)=>(t.item&&e.currentGateway?.gateway&&(e.currentGateway[e.currentGateway?.gateway]={},e.currentGateway[e.currentGateway?.gateway][t.item]=t.value),{...e}),[hr]:(e,t)=>{var n,r;const l={...t.item,gateway:null!==(n=t.item?.gateway)&&void 0!==n?n:e.currentGateway?.gateway,scenario:null!==(r=t.item?.scenario)&&void 0!==r?r:e.currentScenario?.id};return e.eventTypes.push(l),e}};n.dn(Er);const _r={currentRequest:{id:-1},currentGateway:{},currentScenario:{},eventTypes:[]};function Er(e=_r,t){const n=wr[t?.type];return n?n(e,t):e}const Cr={clearGateway:()=>({type:ir}),clearScenario:()=>({type:sr}),setRequest:e=>({type:pr,item:e}),setGateway:e=>({type:ur,item:e}),setGatewayInner:e=>({type:mr,item:e}),setGatewaySpecific:e=>({type:dr,item:e}),setScenario:e=>({type:cr,item:e}),setCurrentScenario:e=>({type:fr,item:e}),registerEventType:e=>({type:hr,item:e}),hardSetGateway:(e,t="")=>({type:br,item:e,value:t}),hardSetGatewaySpecific:(e,t="")=>({type:gr,item:e,value:t})},{createReduxStore:kr}=wp.data,Sr=kr("jet-forms/gateways",{reducer:Er,actions:Cr,selectors:vr}),jr="REGISTER",xr="UNREGISTER",Nr="LOCK_ACTIONS",Fr="CLEAR_DYNAMIC_EVENTS",Tr={getTypeIndex:(e,t)=>e.types.findIndex(e=>e.value===t),getTypes:e=>e.types,getGatewayTypes:e=>e.types.filter(e=>"gateway"in e),getAlwaysTypes:e=>e.types.filter(e=>"always"in e),getDynamicTypes:e=>e.types.filter(({isDynamic:e})=>e),getType(e,t){const n=Tr.getTypeIndex(e,t);return e.types[n]},getUnsupported(e,t){var n;const r=null!==(n=e.lockedActions[t])&&void 0!==n&&n;return!1===r?[]:r.unsupported},getSupported(e,t){var n;const r=null!==(n=e.lockedActions[t])&&void 0!==n&&n;return!1===r?[]:r.supported},isValid(e,t,n){const r=Tr.getUnsupported(e,t);if(r.length&&r.includes(n))return!1;const l=Tr.getSupported(e,t);return!l.length||l.includes(n)},filterList:(e,t,n)=>n.filter(n=>Tr.isValid(e,t,n)),getHelpMap(e){const t={};for(const{value:n,help:r}of e.types)t[n]=r;return t},getEventValuesByGateway(e){const t={};for(const n of e.types){if(!n.gateway)continue;const e=n.gateway;t[e]||(t[e]=[]),t[e].push(n.value)}return t}},Br={...Tr},Ir={[jr](e,t){const{types:n}=e;for(const r of t.items){r.title=r.label;const t=Br.getTypeIndex(e,r.value);-1===t?n.push({...r}):n[t]={...r}}return{...e,types:n}},[Nr](e){for(const{id:n,self:r}of window.jetFormActionTypes){var t;const l=null!==(t=window[r])&&void 0!==t&&t;if(!1===l)continue;const{__unsupported_events:o,__supported_events:a}=l,i={unsupported:e.types.filter(({self:e})=>o.includes(e)).map(({value:e})=>e),supported:e.types.filter(({self:e})=>a.includes(e)).map(({value:e})=>e)};(i.supported.length||i.unsupported.length)&&(e.lockedActions[n]=i)}return e},[xr](e,t){const{types:n}=t;return e.types=e.types.filter(({value:e})=>!n.includes(e)),e},[Fr]:e=>(e.types=e.types.filter(({isDynamic:e=!1})=>!e),e)};n.dn(Or);const Ar={types:[],labels:{},lockedActions:{}};function Or(e=Ar,t){const n=Ir[t?.type];return n?n(e,t):e}const Rr={register:e=>({type:jr,items:e}),lockActions:()=>({type:Nr}),unRegister:e=>({type:xr,types:e}),clearDynamicEvents:()=>({type:Fr})},{createReduxStore:Mr}=wp.data,Pr=Mr("jet-forms/events",{reducer:Or,actions:Rr,selectors:Br}),Lr="REGISTER",Gr="ADD_RENDER_STATE",Dr="ADD_RENDER_STATES",qr="DELETE_RENDER_STATES",{doAction:Vr}=wp.hooks,Jr={...{[Lr](e,t){const{operators:n,functions:r,render_states:l}=t.items;return e.operators=[...n],e.functions=[...r],e.renderStates=[...l],Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e},[Gr]:(e,t)=>(e.renderStates.push(t.item),Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e),[Dr](e,t){for(const n of t.items)e.renderStates.push(n);return Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e},[qr](e,t){const n=Array.isArray(t.items)?[...t.items]:[t.items];return e.renderStates=e.renderStates.filter(({value:e})=>!n.includes(e)),Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e}}},{__:$r}=wp.i18n,Ur=function(e,t="code"){var n;if(!function(e){let t;try{t=JSON.parse(e)}catch(e){return!1}return!!t?.jet_preset}(e=null!=e?e:""))return e;const r=JSON.parse(e),l=$r("Preset from","jet-form-builder"),o=null!==(n=r?.from)&&void 0!==n?n:"(empty)";let a;switch(t){case"code":a=`${o}`;break;case"b":a=`${o}`}return[l,a].join(" ")};n.dn(Kr);const{select:Hr}=wp.data,{__:Wr}=wp.i18n,zr=function(e){const t=Hr("jet-forms/block-conditions").getOperator(e?.operator);return t?[`${e?.field||"(no field)"}`,t.label].join(" "):""},Yr={functions:[],operators:[],conditionReaders:{default(e){const t=Hr("jet-forms/block-conditions").getOperator(e?.operator);if(!t)return"";const n=e?.field||"(no field)",r=Ur(e.value,"b")||"(no value)";return[`${n}`,t.label,`${r}`].join(" ")},empty:zr,not_empty:zr,render_state(e){var t;const n=(null!==(t=e?.render_state)&&void 0!==t?t:[]).map(e=>`${e}`);return[1===n.length?Wr("Is render state","jet-form-builder"):Wr("One of the render states","jet-form-builder"),n.join(", ")].join(": ")}},renderStates:[]};function Kr(e=Yr,t){const n=Jr[t?.type];return n?n(e,t):e}const Xr={register:e=>({type:Lr,items:e}),addRenderState:e=>({type:Gr,item:e}),addRenderStates:e=>({type:Dr,items:e}),deleteRenderStates:e=>({type:qr,items:e})},Zr={getFunctions:e=>e.functions,getOperators:e=>e.operators,getRenderStates:e=>e.renderStates,getSwitchableRenderStates:e=>e.renderStates.filter(({is_custom:e=!1,can_be_switched:t=!1})=>e||t),getCustomRenderStates:e=>e.renderStates.filter(({is_custom:e=!1})=>e),getOperator(e,t){const n=e.operators.findIndex(({value:e})=>e===t);return-1!==n&&e.operators[n]},readCondition(e,t){var n;const{operator:r=""}=t;if(!r)return"";const l=null!==(n=e.conditionReaders[r])&&void 0!==n&&n;return"function"==typeof l?l(t):e.conditionReaders.default(t)},getFunction:(e,t)=>e.functions.find(({value:e})=>e===t),getFunctionDisplay:(e,t)=>Zr.getFunction(e,t)?.display},Qr={...Zr},{createReduxStore:el}=wp.data,tl=el("jet-forms/block-conditions",{reducer:Kr,actions:Xr,selectors:Qr}),nl="REGISTER_MACRO",rl={[nl](e,t){const{items:n,isClient:r}=t,l=Array.isArray(n)?n:[n];for(const e of l)if(!(e instanceof xn))throw new Error("^^^ Invalid macro item ^^^");return r?e.clientMacros.push(...l):e.serverMacros.push(...l),e}},{__:ll}=wp.i18n;function ol(){xn.call(this),this.name="CurrentDate",this.isClientSide=!0,this.fullHelp=()=>(0,e.createElement)(e.Fragment,null,ll("Returns the current timestamp. Replacing","jet-form-builder")," ",(0,e.createElement)("code",null,"Date.now()"))}ol.prototype=Object.create(xn.prototype);const al=ol,{__:il}=wp.i18n;function sl(){xn.call(this),this.name="Min_In_Sec",this.isClientSide=!0,this.help=il("Number of milliseconds in one minute","jet-form-builder")}sl.prototype=Object.create(xn.prototype);const cl=sl,{__:ul}=wp.i18n;function dl(){xn.call(this),this.name="Month_In_Sec",this.isClientSide=!0,this.help=ul("Number of milliseconds in one month","jet-form-builder")}dl.prototype=Object.create(xn.prototype);const ml=dl,{__:pl}=wp.i18n;function fl(){xn.call(this),this.name="Day_In_Sec",this.isClientSide=!0,this.help=pl("Number of milliseconds in one day","jet-form-builder")}fl.prototype=Object.create(xn.prototype);const hl=fl,{__:bl}=wp.i18n;function gl(){xn.call(this),this.name="Year_In_Sec",this.isClientSide=!0,this.help=bl("Number of milliseconds in one year","jet-form-builder")}gl.prototype=Object.create(xn.prototype);const yl=gl,{__:vl}=wp.i18n;function wl(){tn.call(this)}wl.prototype=Object.create(tn.prototype),wl.prototype.docArgument=!1,wl.prototype.help=null,wl.prototype.isServerSide=!1,wl.prototype.isClientSide=!1,wl.prototype.getArgumentsList=function(){if(!this.docArgument||!this.docArgument.length)return null;const e=Array.isArray(this.docArgument)?this.docArgument:[this.docArgument],t=[];for(const n of e)switch(n){case"string":case String:t.push(vl("String","jet-form-builder"));break;case"number":case Number:t.push(vl("Number","jet-form-builder"));break;case"array":case Array:t.push(vl("Array","jet-form-builder"));break;case"any":t.push(vl("Anything","jet-form-builder"))}return t.join(" | ")},wl.prototype.fullHelp=function(){if(!this.docArgument&&!this.help)return null;const t=this.help,n=this.getArgumentsList();return(0,e.createElement)(e.Fragment,null,n&&(0,e.createElement)("div",{style:{marginBottom:"0.5em"}},vl("Arguments:","jet-form-builder")+" ",(0,e.createElement)("code",null,n)),"function"!=typeof t?t:(0,e.createElement)(t,null))};const _l=wl,{__:El}=wp.i18n;function Cl(){_l.call(this),this.label=()=>El("addDay","jet-form-builder"),this.fullName=()=>"|addDay",this.docArgument=Number,this.isClientSide=!0,this.help=El("Adds the passed number of days via an argument to a macro that returns a date or a timestamp.","jet-form-builder")}Cl.prototype=Object.create(_l.prototype);const kl=Cl,{__:Sl}=wp.i18n;function jl(){_l.call(this),this.label=()=>Sl("addMonth","jet-form-builder"),this.fullName=()=>"|addMonth",this.docArgument=Number,this.isClientSide=!0,this.help=Sl("Adds the passed number of months via an argument to a macro that returns a date or a timestamp.","jet-form-builder")}jl.prototype=Object.create(_l.prototype);const xl=jl,{__:Nl}=wp.i18n;function Fl(){_l.call(this),this.label=()=>Nl("addYear","jet-form-builder"),this.fullName=()=>"|addYear",this.docArgument=Number,this.isClientSide=!0,this.help=Nl("Adds the passed number of years through an argument to a macro that returns a date or a timestamp.","jet-form-builder")}Fl.prototype=Object.create(_l.prototype);const Tl=Fl,{__:Bl}=wp.i18n;function Il(){_l.call(this),this.label=()=>Bl("ifEmpty","jet-form-builder"),this.fullName=()=>"|ifEmpty",this.docArgument="any",this.isClientSide=!0,this.help=Bl("If the macro returns an empty value, then the filter returns the value passed in the argument","jet-form-builder")}Il.prototype=Object.create(_l.prototype);const Al=Il,{__:Ol}=wp.i18n;function Rl(){_l.call(this),this.label=()=>Ol("length","jet-form-builder"),this.fullName=()=>"|length",this.isClientSide=!0,this.help=Ol("Returns the length of a string or array","jet-form-builder")}Rl.prototype=Object.create(_l.prototype);const Ml=Rl,{__:Pl}=wp.i18n;function Ll(){_l.call(this),this.label=()=>Pl("toDate","jet-form-builder"),this.fullName=()=>"|toDate",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Pl("Formats the timestamp according to the Date Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Pl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"2022-02-24"),(0,e.createElement)("hr",null),Pl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Pl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Pl(").","jet-form-builder"),(0,e.createElement)("hr",null),Pl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toDate(false)"))}Ll.prototype=Object.create(_l.prototype);const Gl=Ll,{__:Dl}=wp.i18n;function ql(){_l.call(this),this.label=()=>Dl("toDateTime","jet-form-builder"),this.fullName=()=>"|toDateTime",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Dl("Formats the timestamp according to the Datetime Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Dl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"2022-02-24T04:25"),(0,e.createElement)("hr",null),Dl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Dl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Dl(").","jet-form-builder"),(0,e.createElement)("hr",null),Dl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toDateTime(false)"))}ql.prototype=Object.create(_l.prototype);const Vl=ql,{__:Jl}=wp.i18n;function $l(){_l.call(this),this.label=()=>Jl("toTime","jet-form-builder"),this.fullName=()=>"|toTime",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Jl("Formats the timestamp according to the Time Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Jl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"04:25"),(0,e.createElement)("hr",null),Jl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Jl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Jl(").","jet-form-builder"),(0,e.createElement)("hr",null),Jl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toTime(false)"))}$l.prototype=Object.create(_l.prototype);const Ul=$l,{__:Hl}=wp.i18n;function Wl(){_l.call(this),this.label=()=>Hl("subDay","jet-form-builder"),this.fullName=()=>"|subDay",this.docArgument=Number,this.isClientSide=!0,this.help=Hl("Subtracts the number of days by argument from a macro that returns a date or timestamp.","jet-form-builder")}Wl.prototype=Object.create(_l.prototype);const zl=Wl,{__:Yl}=wp.i18n;function Kl(){_l.call(this),this.label=()=>Yl("subMonth","jet-form-builder"),this.fullName=()=>"|subMonth",this.docArgument=Number,this.isClientSide=!0,this.help=Yl("Subtracts the number of months by argument from a macro that returns a date or timestamp.","jet-form-builder")}Kl.prototype=Object.create(_l.prototype);const Xl=Kl,{__:Zl}=wp.i18n;function Ql(){_l.call(this),this.label=()=>Zl("subYear","jet-form-builder"),this.fullName=()=>"|subYear",this.docArgument=Number,this.isClientSide=!0,this.help=Zl("Subtracts the number of years by argument from a macro that returns a date or timestamp.","jet-form-builder")}Ql.prototype=Object.create(_l.prototype);const eo=Ql,{__:to}=wp.i18n;function no(){_l.call(this),this.label=()=>to("toDayInMs","jet-form-builder"),this.fullName=()=>"|toDayInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,to("Converts a number of days into milliseconds.","jet-form-builder"))}no.prototype=Object.create(_l.prototype);const ro=no,{__:lo}=wp.i18n;function oo(){_l.call(this),this.label=()=>lo("toHourInMs","jet-form-builder"),this.fullName=()=>"|toHourInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,lo("Converts a number of hours into milliseconds.","jet-form-builder"))}oo.prototype=Object.create(_l.prototype);const ao=oo,{__:io}=wp.i18n;function so(){_l.call(this),this.label=()=>io("toMinuteInMs","jet-form-builder"),this.fullName=()=>"|toMinuteInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,io("Converts a number of minutes into milliseconds.","jet-form-builder"))}so.prototype=Object.create(_l.prototype);const co=so,{__:uo}=wp.i18n;function mo(){_l.call(this),this.label=()=>uo("toMonthInMs","jet-form-builder"),this.fullName=()=>"|toMonthInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,uo("Converts a number of months into milliseconds.","jet-form-builder"))}mo.prototype=Object.create(_l.prototype);const po=mo,{__:fo}=wp.i18n;function ho(){_l.call(this),this.label=()=>fo("toWeekInMs","jet-form-builder"),this.fullName=()=>"|toWeekInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,fo("Converts a number of weeks into milliseconds.","jet-form-builder"))}ho.prototype=Object.create(_l.prototype);const bo=ho,{__:go}=wp.i18n;function yo(){_l.call(this),this.label=()=>go("toYearInMs","jet-form-builder"),this.fullName=()=>"|toYearInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,go("Converts a number of years into milliseconds.","jet-form-builder"))}yo.prototype=Object.create(_l.prototype);const vo=yo,{__:wo}=wp.i18n;function _o(){_l.call(this),this.label=()=>wo("Timestamp","jet-form-builder"),this.fullName=()=>"|T",this.isClientSide=!0,this.help=wo("Returns the time stamp. Usually used in conjunction with Date & Datetime and Time Field.","jet-form-builder",'Example\nFor Date Field\n%date_field|T%\nResult if date_field is filled with value "2022-10-22"')}_o.prototype=Object.create(_l.prototype);const Eo=_o;n.dn(ko);const Co={macros:[new al,new cl,new hl,new ml,new yl],filters:[new Al,new Eo,new Ml,new kl,new xl,new Tl,new zl,new Xl,new eo,new Gl,new Vl,new Ul,new co,new ao,new ro,new bo,new po,new vo]};function ko(e=Co,t){const n=rl[t?.type];return n?n(e,t):e}const So={registerMacro:(e,t=!0)=>({type:nl,items:e,isClient:t})},jo={getClientMacros:e=>e.macros.filter(function(e){return e.isClientSide}),getServerMacros:e=>e.macros.filter(function(e){return e.isServerSide}),getClientFilters:e=>e.filters.filter(function(e){return e.isClientSide}),getServerFilters:e=>e.filters.filter(function(e){return e.isServerSide})},{createReduxStore:xo}=wp.data,No=xo("jet-forms/macros",{reducer:ko,actions:So,selectors:jo}),Fo="REGISTER",To={[Fo](e,t){const{messages:n,ssr_callbacks:r,formats:l,rule_types:o}=t.items;return e.messages=JSON.parse(JSON.stringify(n)),e.ssrCallbacks=JSON.parse(JSON.stringify(r)),e.formats=JSON.parse(JSON.stringify(l)),e.ruleTypes=JSON.parse(JSON.stringify(o)),e}},Bo={...To};n.dn(Ro);const{select:Io}=wp.data,{__:Ao}=wp.i18n,Oo={messages:[],ssrCallbacks:[],formats:[],ruleTypes:[],ruleReaders:{default(e){const t=Io("jet-forms/validation").getRule(e.type);if(!t)return"";let n=e?.field||e?.value||"";return n=Ur(n,"b")||"(no value)",[t.label,`${n}`].join(" ")},ssr:e=>[Ao("Function:","jet-form-builder"),e?.value].join(" ")}};function Ro(e=Oo,t){const n=Bo[t?.type];return n?n(e,t):e}const Mo={register:e=>({type:Fo,items:e})},Po={...{getRule(e,t){const n=e.ruleTypes.findIndex(({value:e})=>e===t);return-1!==n&&e.ruleTypes[n]},readRule(e,t){var n;const{type:r=""}=t;if(!r)return"";const l=null!==(n=e.ruleReaders[r])&&void 0!==n&&n;return"function"==typeof l?l(t):e.ruleReaders.default(t)}}},{createReduxStore:Lo}=wp.data,Go=Lo("jet-forms/validation",{reducer:Ro,actions:Mo,selectors:Po}),Do="SET_BLOCKS",qo="SET_BLOCKS_FIRST",Vo="TOGGLE_EXECUTE",Jo={...{[Do](e,t){const n=[];for(const r in t.blockMap)t.blockMap.hasOwnProperty(r)&&!e.blockMap.hasOwnProperty(r)&&n.push(r);return{...e,blocks:t.blocks,blockMap:t.blockMap,recentlyAdded:n}},[qo]:(e,t)=>({...e,blocks:t.blocks,blockMap:t.blockMap}),[Vo]:e=>({...e,executed:!0})}};n.dn(Uo);const $o={blocks:[],blockMap:{},executed:!1,recentlyAdded:[],sanitizers:{name:[e=>e.replace(/[^\w\-]/gi,""),e=>"children"===e?"_"+e:e]}};function Uo(e=$o,t){const n=Jo[t?.type];return n?n(e,t):e}const{select:Ho}=wp.data,Wo=function(){const e=[],t={};return j((n,r)=>{var l;if(!n?.name?.includes("jet-forms/"))return;const o=Ho("core/blocks").getBlockType(n.name),a=o.jfbResolveBlock.call(n);if(o.hasOwnProperty("jfbGetFields")&&(a.fields=o.jfbGetFields.call(n)),!r?.name)return e.push(a),void(t[a.clientId]=a);const i=null!==(l=t[r?.clientId])&&void 0!==l&&l;i&&(Object.defineProperty(a,"parentBlock",{get:()=>i}),i.innerBlocks=i?.innerBlocks||[],i.innerBlocks.push(a),t[a.clientId]=a)}),{blocks:e,blockMap:t}},{select:zo,dispatch:Yo}=wp.data,Ko={setBlocks(e=null){null===e&&(e=Wo());const t=zo(ra).isExecuted();return t||Yo(ra).toggleExecute(),{type:t?Do:qo,blocks:e.blocks,blockMap:e.blockMap}},toggleExecute:()=>({type:Vo})},Xo={getBlocks:e=>e.blocks,getBlockMap:e=>e.blockMap,getFields(e,{withInner:t=!0,currentId:n=!1}){const r=[],l=e=>{for(const o of e)o.fields?.length&&o.clientId!==n&&r.push(...o.fields),t&&o.innerBlocks?.length&&l(o.innerBlocks)};return l(e.blocks),r},isExecuted:e=>e.executed,isRecentlyAdded:(e,t)=>-1!==e.recentlyAdded.indexOf(t),getUniqueNames(e,t){var n,r;const l=null!==(n=e.blockMap[t])&&void 0!==n&&n;if(!l)return{hasChanged:!1};let o=!1;const a=null!==(r=l?.fields?.map?.(({value:e})=>e))&&void 0!==r?r:[],i=l.hasOwnProperty("parentBlock")?l.parentBlock.innerBlocks:e.blocks,s=e=>{for(const t of e){const n=a.indexOf(t.value);-1!==n&&("field_name"!==t.value?(a[n]=`${a[n]}_copy`,o=!0,s(e)):o=!0)}};for(const e of i){var c;t!==e.clientId&&s(null!==(c=e?.fields)&&void 0!==c?c:[])}return{hasChanged:o,names:a.join("|")}},getSanitizedAttributes(e,t,{name:n}={}){for(const o in t){var r,l;if(!t.hasOwnProperty(o))continue;const a=null!==(r=null!==(l=e.sanitizers?.[n]?.[o])&&void 0!==l?l:e.sanitizers?.[o])&&void 0!==r&&r;if(a?.length)for(const e of a)"function"==typeof e&&(t[o]=e(t[o]))}return t},isUniqueName(e,t){const{hasChanged:n}=Xo.getUniqueNames(e,t);return!n},getBlock:(e,t)=>e.blocks.find(({name:e,clientId:n})=>[e,n].includes(t)),getBlockByName(e,t){if(!t)return!1;const n=e=>{for(const r of e){if(r.fields.some(({value:e})=>e===t))return r;r.innerBlocks?.length&&n(r.innerBlocks)}};return n(e.blocks),!1},getBlockNameByName(e,t){var n;const r=Xo.getBlockByName(e,t);return null!==(n=r?.name)&&void 0!==n?n:""},getBlockById(e,t){var n;return null!==(n=e.blockMap[t])&&void 0!==n&&n}},Zo={...Xo},{createReduxStore:Qo,dispatch:ea,select:ta,subscribe:na}=wp.data,ra="jet-forms/fields";let la,oa;na(()=>{const{debounce:e}=window._,{setBlocks:t}=ea(ra);e(()=>{const e=ta("core/block-editor").getGlobalBlockCount();if(la!==e)return la=e,void t();const n=Wo(),r=JSON.stringify(n.blocks);r!==oa&&(oa=r,t(n))},100)()});const aa=Qo(ra,{reducer:Uo,actions:Ko,selectors:Zo});n(4180);const{register:ia,dispatch:sa}=wp.data,{addAction:ca}=wp.hooks;[Sr,Pr,tl,No,Go,aa].forEach(ia),sa("jet-forms/events").register(window.jetFormEvents.types),sa("jet-forms/events").lockActions(),sa("jet-forms/validation").register(window.jetFormValidation),ca("jet.fb.change.blockConditions.renderState","jet-form-builder/events",function(e){sa("jet-forms/events").clearDynamicEvents();const t=e.map(({value:e})=>({value:e="ON."+e,label:e,isDynamic:!0}));sa("jet-forms/events").register(t)}),sa("jet-forms/block-conditions").register(window.jetFormBlockConditions);const{createContext:ua}=wp.element,da=ua(!1),{createContext:ma}=wp.element,pa=ma({currentItem:{},changeCurrentItem:()=>{},currentIndex:-1}),fa=(0,o.createContext)({isSupported:e=>!1,render:({children:e})=>e}),ha=(0,o.createContext)({isSupported:e=>!1,render:({currentItem:e,index:t})=>null}),ba=(0,o.createContext)({edit:e=>!0,move:e=>!0,clone:e=>!0,delete:e=>!0}),{createContext:ga}=wp.element,ya=ga({}),{ToggleControl:va}=wp.components,{__:wa}=wp.i18n,{useState:_a}=wp.element,{useContext:Ea}=wp.element,Ca=function(e){if(void 0===e)return null;const t=Ea(da),n=function({oldIndex:t,newIndex:n}){e(e=>{const r=JSON.parse(JSON.stringify(e));return[r[n],r[t]]=[r[t],r[n]],r})};return{changeCurrentItem:function(t,n){e(e=>{const r=JSON.parse(JSON.stringify(e));return r[n]={...e[n],...t},r})},toggleVisible:function(t){e(e=>{const n=JSON.parse(JSON.stringify(e));return n[t].__visible=!n[t].__visible,n})},moveDown:function(e){n({oldIndex:e,newIndex:e+1})},moveUp:function(e){n({oldIndex:e,newIndex:e-1})},cloneItem:function(t){e(e=>{const n=JSON.parse(JSON.stringify(e)),[r,l]=[n.slice(0,t+1),n.slice(t+1)];return[...r,n[t],...l]})},addNewItem:function(t){e(e=>[...e,{__visible:!0,...t}])},removeOption:function(n){t&&!(e=>confirm((0,d.sprintf)((0,d.__)("Are you sure you want to remove item %d?","jet-form-builder"),e+1)))(n)||e(e=>{const t=JSON.parse(JSON.stringify(e));return t.splice(n,1),t})}}},{createContext:ka}=wp.element,Sa=ka(!1),{Button:ja}=wp.components,{useContext:xa}=wp.element,Na=function(t){var n;const{item:r,onSetState:l,functions:o,children:a}=t,{addNewItem:i}=null!==(n=null!=o?o:Ca(l))&&void 0!==n?n:xa(Sa);return(0,e.createElement)(ja,{icon:"plus-alt2",isSecondary:!0,onClick:()=>i(r)},a)};let{Card:Fa,Button:Ta,CardHeader:Ba,CardBody:Ia,ToggleGroupControl:Aa,__experimentalToggleGroupControl:Oa}=wp.components;const{useContext:Ra}=wp.element,{__:Ma}=wp.i18n;Aa=Aa||Oa;const Pa=function(t){var n;const{items:r,onSetState:l,functions:o,children:a}=t,{cloneItem:i,moveUp:s,moveDown:c,toggleVisible:u,changeCurrentItem:d,removeOption:m}=null!==(n=null!=o?o:Ca(l))&&void 0!==n?n:Ra(Sa),{isSupported:p,render:f}=Ra(ha),{edit:h,move:b,clone:g,delete:y}=Ra(ba),v=({currentItem:t,index:n})=>p(t)?(0,e.createElement)(f,{currentItem:t,index:n}):(0,e.createElement)("span",{className:"repeater-item-title"},`#${n+1}`);return(0,e.createElement)("div",{className:"jet-form-builder__repeater-component",key:"jet-form-builder-repeater"},r.map((t,n)=>(0,e.createElement)(Fa,{size:"small",elevation:2,className:"jet-form-builder__repeater-component-item",key:`jet-form-builder__repeater-component-item-${n}`},(0,e.createElement)(Ba,{className:"repeater__item__header"},(0,e.createElement)("div",{className:"repeater-item__left-heading"},(0,e.createElement)(Aa,{className:"repeater-action-buttons jet-fb-toggle-group-control",hideLabelFromVision:!0},(!h||h(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,icon:t.__visible?"no-alt":"edit",onClick:()=>u(n),className:"repeater-action-button jet-fb-is-thick"}),(!b||b(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,isSecondary:!0,disabled:!Boolean(n),icon:"arrow-up-alt2",onClick:()=>s(n),className:"repeater-action-button jet-fb-is-thick"}),(!b||b(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,isSecondary:!0,disabled:!(nc(n),className:"repeater-action-button jet-fb-is-thick"})),(0,e.createElement)(v,{currentItem:t,index:n})),(0,e.createElement)(Aa,{className:"jet-fb-toggle-group-control",hideLabelFromVision:!0},(!g||g(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,isSecondary:!0,onClick:()=>i(n),className:"jet-fb-is-thick",icon:"admin-page"}),(!y||y(t))&&(0,e.createElement)(Yt,{icon:"trash",isDestructive:!0},(0,e.createElement)($t.Consumer,null,({setShowPopover:t})=>(0,e.createElement)("div",{style:{padding:"0.5em",width:"max-content"}},(0,e.createElement)("span",null,Ma("Delete this item?","jet-form-builder"))," ",(0,e.createElement)(Ta,{isLink:!0,isDestructive:!0,onClick:()=>m(n)},Ma("Yes","jet-form-builder"))," / ",(0,e.createElement)(Ta,{isLink:!0,onClick:()=>t(!1)},Ma("No","jet-form-builder"))))))),t.__visible&&(0,e.createElement)(Ia,{className:"repeater-item__content",key:`jet-form-builder__card-body-${n}`},(()=>{const r={currentItem:t,changeCurrentItem:e=>d(e,n),currentIndex:n};return(0,e.createElement)(pa.Provider,{value:r},!a&&"Set up your Repeater Template, please.","function"==typeof a?a(r):a)})()))))},{__experimentalToggleGroupControl:La,__experimentalToggleGroupControlOption:Ga}=wp.components,{__:Da}=wp.i18n;let{formats:qa}=window.jetFormValidation;const Va=window.jfb.data,{messages:Ja}=window.jetFormValidation,$a=function(e){return Ja.find(({id:t})=>e===t)},{TextControl:Ua}=wp.components,Ha=Se((0,o.forwardRef)(function({icon:e,size:t=24,...n},r){return(0,o.cloneElement)(e,{width:t,height:t,...n,ref:r})}))({name:"StyledIcon",class:"sfqmk5y",propsAsIs:!0});n(483);const{createContext:Wa}=wp.element,za=Wa({FieldSelect:null,property:""}),Ya=function({state:t,children:n}){const r=Ca(t);return(0,e.createElement)(Sa.Provider,{value:r},n)},Ka=window.wp.apiFetch;var Xa=n.n(Ka);const{rest_add_state:Za,rest_delete_state:Qa}=window.jetFormBlockConditions,{Fill:ei}=c,ti=({setShowModal:t,changeCurrentItem:n,currentItem:r})=>{var l;const[a,i]=(0,o.useState)(!1),[s,c]=(0,o.useState)({}),[m,p]=(0,o.useState)("");let f=[...null!==(l=r.render_state)&&void 0!==l?l:[]];const{addRenderState:b,deleteRenderStates:g}=(0,pe.useDispatch)("jet-forms/block-conditions"),y=(0,pe.useSelect)(e=>e("jet-forms/block-conditions").getCustomRenderStates(),[a,s]);return(0,e.createElement)(h,{title:(0,d.__)("Register custom render state","jet-form-builder"),onRequestClose:()=>t(!1),classNames:["width-45"]},(0,e.createElement)("div",{className:"jet-fb with-button"},(0,e.createElement)(u.TextControl,{value:m,onChange:e=>p(e),placeholder:(0,d.__)("Set your custom state name","jet-form-builder")}),(0,e.createElement)(u.Button,{variant:"secondary",onClick:()=>{i(!0),Za.data={value:m},Xa()(Za).then(e=>{var r;r=e.state,b(r),f.push(r.value),n({render_state:f}),i(!1),t(!1)}).catch(e=>{console.error(e),i(!1)})},disabled:a,isBusy:a,style:{padding:"7px 12px",height:"unset"}},(0,d.__)("Add","jet-form-builder"))),Boolean(y?.length)&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",{className:"jet-fb flex mb-05-em"},(0,d.__)("Manage your custom states:","jet-form-builder")),(0,e.createElement)("div",{className:"jet-fb-buttons-flex"},y.map(t=>{var r;return(0,e.createElement)(u.Button,{key:t.value,icon:"no-alt",iconPosition:"right",onClick:()=>{return e=t.value,Qa.data={list:[e]},c(t=>({...t,[e]:!0})),void Xa()(Qa).then(()=>{(e=>{g(e),f=f.filter(t=>t!==e),n({render_state:f})})(e)}).catch(console.error).finally(()=>{c(t=>({...t,[e]:!1}))});var e},isBusy:null!==(r=s[t.value])&&void 0!==r&&r},t.label)}))),(0,e.createElement)(ei,null,(0,e.createElement)("span",null)))},{Button:ni,BaseControl:ri,FormTokenField:li}=wp.components,{__:oi}=wp.i18n,{useState:ai}=wp.element,{useSelect:ii}=wp.data,si=({currentItem:t,changeCurrentItem:n})=>{const[r,l]=ai(!1),o=ii(e=>y(e("jet-forms/block-conditions").getRenderStates(),"value"),[r]);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ri,{label:oi("Render State","jet-form-builder"),className:"control-flex"},(0,e.createElement)("div",null,(0,e.createElement)("label",{className:"jet-fb label mb-05-em"},oi("Add render state","jet-form-builder")),(0,e.createElement)("div",{className:"jet-fb with-button clear-label"},(0,e.createElement)(li,{value:t.render_state,suggestions:o,onChange:e=>n({render_state:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0}),(0,e.createElement)(ni,{label:oi("New render state","jet-form-builder"),variant:"secondary",icon:"plus-alt2",onClick:()=>l(!0)})))),r&&(0,e.createElement)(ti,{setShowModal:l,changeCurrentItem:n,currentItem:t}))},ci=function({children:t,value:n,label:r,onChangePreset:l=!1,onChangeMacros:o=!1,macroWithCurrent:a=!1}){const i=(0,or.useInstanceId)(u.FlexItem,"jfb-AdvancedModalControl");return(0,e.createElement)("div",{className:"components-base-control"},(0,e.createElement)(u.Flex,{align:"flex-start",className:"components-base-control__field"},(0,e.createElement)(u.FlexItem,{isBlock:!0},(0,e.createElement)(u.Flex,{align:"center",justify:"flex-start"},(0,e.createElement)("label",{htmlFor:i,className:"jet-fb label"},r),!1!==l&&(0,e.createElement)(Vt,{value:n,onChange:l}),!1!==o&&(0,e.createElement)(wn,{onClick:o,withCurrent:a}))),(0,e.createElement)(u.FlexItem,{isBlock:!0,style:{flex:3,marginLeft:"unset"}},"function"==typeof t?t({instanceId:i}):t)))},{TextareaControl:ui,withFilters:di}=wp.components,{__:mi}=wp.i18n,pi=di("jet.fb.block.conditions.options")(t=>{const{currentItem:n,changeCurrentItem:r}=t,l=de();return["empty","not_empty"].includes(n.operator)?null:"render_state"===n.operator?(0,e.createElement)(si,{key:l("RenderStateOptions"),changeCurrentItem:r,currentItem:n}):(0,e.createElement)(Bn,null,(0,e.createElement)(ci,{value:n.value,label:mi("Value to compare","jet-form-builder"),onChangePreset:e=>r({value:e}),onChangeMacros:e=>{var t;return r({value:(null!==(t=n.value)&&void 0!==t?t:"")+e})}},({instanceId:t})=>(0,e.createElement)(ui,{id:t,value:n.value,onChange:e=>r({value:e})})))}),{SelectControl:fi,withFilters:hi}=wp.components,{__:bi}=wp.i18n,gi=hi("jet.fb.block.conditions.options")(t=>{const{currentItem:n,changeCurrentItem:r}=t,l=(0,bn.useFields)({placeholder:"--"});return"render_state"===n.operator?null:(0,e.createElement)(fi,{label:bi("Field","jet-form-builder"),labelPosition:"side",value:n.field,options:l,onChange:e=>{r({field:e})}})}),{useContext:yi}=wp.element,{SelectControl:vi}=wp.components,{__:wi}=wp.i18n,_i=function(){const{currentItem:t,changeCurrentItem:n}=yi(pa),r=de(),{operators:l}=ce();return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(gi,{currentItem:t,changeCurrentItem:n}),(0,e.createElement)(vi,{key:r("SelectControl-operator"),label:wi("Operator","jet-form-builder"),labelPosition:"side",value:t.operator,options:l,onChange:e=>n({operator:e})}),(0,e.createElement)(pi,{currentItem:t,changeCurrentItem:n}))},{select:Ei}=wp.data,Ci=function(e){return Ei("jet-forms/block-conditions").readCondition(e)},{__:ki}=wp.i18n,Si=function({children:t}){return(0,e.createElement)(ha.Provider,{value:{isSupported:()=>!0,render:({currentItem:t})=>(0,e.createElement)("span",{className:"repeater-item-title",dangerouslySetInnerHTML:{__html:t?.or_operator?ki("OR","jet-form-builder"):Ci(t)}})}},(0,e.createElement)(ba.Provider,{value:{edit:e=>!e.or_operator}},t))},{__:ji}=wp.i18n,{useState:xi,useContext:Ni,Fragment:Fi,useEffect:Ti,useRef:Bi}=wp.element,{SelectControl:Ii,TextareaControl:Ai,FlexItem:Oi,Flex:Ri,ToggleControl:Mi}=wp.components,Pi=[{key:"commas",render:()=>(0,e.createElement)("li",null,ji("If this field supports multiple values, you can separate them with commas. If a string value is expected, wrap it in single quotes like '%value_field%'.","jet-form-builder"))}],Li=[{value:"on_change",label:ji("On change conditions result","jet-form-builder"),help:ji("The value will be applied if condition check-ups return a result different from the first check-up's cached value","jet-form-builder")},{value:"once",label:ji("Once","jet-form-builder"),help:ji("The value will be applied only the first time the condition is matched","jet-form-builder")},{value:"always",label:ji("Always","jet-form-builder"),help:ji("The value will be applied every time the condition is matched","jet-form-builder")}],Gi=e=>Li.find(t=>t.value===(null!=e?e:"on_change")).help,Di=function(){var t,n,r,l;const{current:o,update:a}=Ni(ya),[i,s]=xi(()=>o),c=Bi(null),[u,d]=xi(()=>Gi(i.frequency));Ti(()=>{d(Gi(i.frequency))},[i.frequency]);const m=e=>{s(t=>({...t,...e}))};return W(()=>a(i)),(0,e.createElement)(Fi,null,(0,e.createElement)(Ri,{align:"flex-start"},(0,e.createElement)(Oi,{isBlock:!0},(0,e.createElement)(Ri,{align:"center",justify:"flex-start"},(0,e.createElement)("span",{className:"jet-fb label"},ji("Value to set","jet-form-builder")),(0,e.createElement)(Vt,{value:i.to_set,onChange:e=>m({to_set:e})}),(0,e.createElement)(Bn,{withThis:!0},(0,e.createElement)(wn,{onClick:e=>(e=>{const t=c.current;if(t){const n=t.selectionStart,r=t.selectionEnd,l=i.to_set||"",o=l.slice(0,n)+e+l.slice(r);m({to_set:`${o}`}),setTimeout(()=>{t.focus(),t.selectionStart=t.selectionEnd=n+e.length},0)}})(e)}))),(0,e.createElement)(dt,null,(0,e.createElement)("ul",null,Pi.map(t=>(0,e.createElement)(Fi,{key:t.key},t.render()))))),(0,e.createElement)(Oi,{isBlock:!0,style:{flex:3,marginLeft:"unset"}},(0,e.createElement)(Ai,{className:"jet-control-clear",hideLabelFromVision:!0,value:null!==(t=i.to_set)&&void 0!==t?t:"",onChange:e=>m({to_set:e}),ref:c}))),(0,e.createElement)(Ii,{options:Li,value:null!==(n=i.frequency)&&void 0!==n?n:"on_change",label:ji("Apply type","jet-form-builder"),labelPosition:"side",onChange:e=>m({frequency:e}),help:u}),(0,e.createElement)(Ya,{state:e=>{var t;m({conditions:"function"==typeof e?e(null!==(t=i.conditions)&&void 0!==t?t:[]):e})}},(0,e.createElement)(Si,null,(0,e.createElement)(Pa,{items:null!==(r=i.conditions)&&void 0!==r?r:[]},(0,e.createElement)(_i,null))),(0,e.createElement)("div",{className:"jet-fb flex jc-space-between ai-center"},(0,e.createElement)(Na,null,ji("Add New Condition","jet-form-builder")),(0,e.createElement)(Mi,{className:"jet-fb m-unset clear-control",label:ji("Set value only if field is empty","jet-form-builder"),checked:null!==(l=i.set_on_empty)&&void 0!==l&&l,onChange:e=>m({set_on_empty:e})}))))},{__:qi}=wp.i18n,{Children:Vi,cloneElement:Ji}=wp.element,$i=function({conditions:t,showWarning:n=!1}){let r=[],l="";return Boolean(t?.length)&&(l=Ci(t[0]),r=t.filter((e,t)=>0!==t).map((t,n)=>(0,e.createElement)("span",{key:n,"data-title":qi("And","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:Ci(t)}}))),l?(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":qi("If","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:l}}),Vi.map(r,Ji)):n&&(0,e.createElement)("span",{"data-title":qi("The condition is not fully configured.","jet-form-builder")})},Ui=function({isHover:t=!1,children:n}){return(0,e.createElement)("div",{className:["jet-fb",t?"show":"hide","p-absolute","wh-100","flex-center","gap-05em"].join(" "),style:{backgroundColor:"#ffffffcc",transition:"0.3s"}},n)},Hi=function({children:t}){return(0,e.createElement)("div",{className:["jet-fb","flex","flex-dir-column","container","gap-1em"].join(" ")},t)},{__:Wi}=wp.i18n,{useState:zi}=wp.element,{Button:Yi}=wp.components,Ki=function({current:t,update:n,isOpenModal:r,setOpenModal:l}){const[o,a]=zi(!1),[i,s]=zi(!1),c=1>=Object.keys(t)?.length;return(0,e.createElement)(ya.Provider,{value:{update:e=>{n(n=>{const r=JSON.parse(JSON.stringify(n.groups));for(const n in r)r.hasOwnProperty(n)&&t.id===r[n].id&&(r[n]={...r[n],...e});return{groups:r}})},current:t}},(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>s(!0),onFocus:()=>s(!0),onMouseOut:()=>s(!1),onBlur:()=>s(!1)},(0,e.createElement)(Ui,{isHover:i},(0,e.createElement)(Yi,{isSmall:!0,isSecondary:!0,icon:o?"no-alt":"edit",onClick:()=>a(e=>!e)},Wi("Edit","jet-form-builder")),(0,e.createElement)(Yi,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{n(e=>({groups:JSON.parse(JSON.stringify(e.groups)).filter(({id:e})=>e!==t.id)}))}},Wi("Delete","jet-form-builder"))),(0,e.createElement)(Hi,null,c?(0,e.createElement)("div",{"data-title":Wi("This value item is empty","jet-form-builder")}):(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Wi("Set","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:Ur(t.to_set)}}),(0,e.createElement)($i,{conditions:t?.conditions})))),(o||r===t.id)&&(0,e.createElement)(h,{classNames:["width-60"],onRequestClose:()=>{a(!1),l(!1)},title:Wi("Edit Dynamic Value","jet-form-builder")},(0,e.createElement)(Di,null)))},Xi=function({children:t,...n}){return(0,e.createElement)("div",{className:"jet-fb flex flex-dir-column gap-default",style:{marginBottom:"1em"},...n},t)},{__:Zi}=wp.i18n,{useState:Qi}=wp.element,{Button:es}=wp.components,ts=function(){var t,n;const[r,l]=fe(),o=de(),a=null!==(t=r.value)&&void 0!==t?t:{},i=null!==(n=a.groups)&&void 0!==n?n:[],[s,c]=Qi(!1);if(!he("value"))return null;const u=i.filter((e,t)=>0!==t),d=e=>{l({...r,value:{...a,..."function"==typeof e?e(a):e}})};return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(dt,null,Zi("Or use a condition-dependent value","jet-form-builder")+" ",(0,e.createElement)(es,{isLink:!0,onClick:()=>{},label:Zi("Former Set Value functionality, moved from the Conditional Block","jet-form-builder"),showTooltip:!0},"(?)")),Boolean(i.length)?(0,e.createElement)(Xi,null,(0,e.createElement)(Ki,{key:o(i[0].id),current:i[0],update:d,isOpenModal:s,setOpenModal:c}),Boolean(u.length)&&u.map(t=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",null,Zi("OR","jet-form-builder")),(0,e.createElement)(Ki,{key:o(t.id),current:t,update:d,isOpenModal:s,setOpenModal:c})))):null,(0,e.createElement)(es,{icon:"plus-alt2",isSecondary:!0,onClick:()=>{const e=k.getRandomID();d({groups:[...i,{id:e,conditions:[{__visible:!0}]}]}),c(e)}},Zi("Add Dynamic Value","jet-form-builder")))},{Button:ns}=wp.components,{useContext:rs}=wp.element,{SelectControl:ls}=wp.components,{useContext:os,useMemo:as}=wp.element,{__:is}=wp.i18n,ss=function(){const{currentItem:t,changeCurrentItem:n}=os(pa),r=as(()=>O(is("Custom value","jet-form-builder")),[]);return(0,e.createElement)(ls,{labelPosition:"side",options:r,label:is("Choose field","jet-form-builder"),value:t.field,onChange:e=>n({field:e})})},{SelectControl:cs,TextareaControl:us,TextControl:ds,withFilters:ms}=wp.components,{useContext:ps,useState:fs,useEffect:hs}=wp.element,{__:bs}=wp.i18n,{addFilter:gs}=wp.hooks,{rule_types:ys,ssr_callbacks:vs}=window.jetFormValidation,ws=vs.map(({value:e})=>e);function _s(e){var t;const n=ys.findIndex(({value:t})=>t===e),r=bs("Enter value","jet-form-builder");return-1===n?r:null!==(t=ys[n]?.control_label)&&void 0!==t?t:r}gs("jet.fb.advanced.rule.controls","jet-form-builder",t=>n=>{const{currentItem:r,changeCurrentItem:l}=n,[o,a]=fs(!1),[i]=(0,K.useActions)(),s=i.some(e=>"save_record"===e.type&&(void 0===e.is_execute||!0===e.is_execute))?"success":"error";if("ssr"!==r.type)return(0,e.createElement)(t,{...n});const c=r.value||"custom_jfb_field_validation";return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(cs,{labelPosition:"side",options:k.withPlaceholder(vs,bs("Custom function","jet-form-builder")),label:bs("Choose callback","jet-form-builder"),value:r.value,onChange:e=>l({value:e})}),"is_field_value_unique"===r.value&&(0,e.createElement)(u.Notice,{status:s,isDismissible:!1},bs("This callback requires the Save Form Record action to work correctly.","jet-form-builder")),"is_user_password_valid"===r.value&&(0,e.createElement)(u.Notice,{status:"success",isDismissible:!1},bs("Works only for logged users.","jet-form-builder")),!ws.includes(r.value)&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ds,{label:bs("Function name","jet-form-builder"),value:r.value,onChange:e=>l({value:e})}),(0,e.createElement)(dt,null,bs("Example of registering a function below.","jet-form-builder")+" ",(0,e.createElement)("a",{href:"javascript:void(0)",onClick:()=>a(e=>!e)},bs(o?"Hide":"Show","jet-form-builder"))),o&&(0,e.createElement)("pre",null,`/**\n * To get all the values of the fields in the form, you can use the expression:\n * jet_fb_request_handler()->get_request() or $context->get_request()\n *\n * If the field is located in the middle of the repeater, then only\n * jet_fb_request_handler()->get_request(), but $context->get_request() \n * will return the values of all fields of the current repeater element\n *\n * @param $value mixed\n * @param $context \\Jet_Form_Builder\\Request\\Parser_Context\n *\n * @return bool\n */\nfunction ${c}( $value, $context ): bool {\n\t// your logic\n\treturn true;\n}`)))});const Es=ms("jet.fb.advanced.rule.controls")(function({currentItem:t,changeCurrentItem:n}){const[r,l]=fs(()=>_s(t.type));switch(hs(()=>{l(_s(t.type))},[t.type]),t.type){case"equal":case"contain":case"contain_not":case"regexp":case"regexp_not":return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ss,null),!Boolean(t.field)&&(0,e.createElement)(ci,{value:t.value,label:r,onChangePreset:e=>n({value:e}),onChangeMacros:e=>{var r;return n({value:(null!==(r=t.value)&&void 0!==r?r:"")+e})}},({instanceId:r})=>(0,e.createElement)(us,{id:r,value:t.value,onChange:e=>n({value:e})})));default:return null}}),Cs=function(){const{currentItem:t,changeCurrentItem:n}=ps(pa);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(cs,{labelPosition:"side",options:k.withPlaceholder(ys),label:bs("Rule type","jet-form-builder"),value:t.type,onChange:e=>n({type:e})}),(0,e.createElement)(Es,{currentItem:t,changeCurrentItem:n}),(0,e.createElement)(us,{label:bs("Error message","jet-form-builder"),value:t.message,onChange:e=>n({message:e})}))},{select:ks}=wp.data,Ss=function(e){return ks("jet-forms/validation").readRule(e)},{useState:js}=wp.element,{__:xs}=wp.i18n,Ns=function(){const[t,n]=fe(),[r,l]=js(()=>{var e;return null!==(e=t.validation?.rules)&&void 0!==e?e:[]});return W(()=>{n(e=>({...e,validation:{...t.validation,rules:r}}))}),(0,e.createElement)(Ya,{state:l},(0,e.createElement)(ha.Provider,{value:{isSupported:()=>!0,render:({currentItem:t})=>(0,e.createElement)("span",{className:"repeater-item-title",dangerouslySetInnerHTML:{__html:Ss(t)}})}},(0,e.createElement)(Pa,{items:r},(0,e.createElement)(Cs,null))),(0,e.createElement)(Na,null,xs("Add Rule","jet-form-builder")))},{createContext:Fs}=wp.element,Ts=Fs({showModal:!1,setShowModal:()=>{}}),{useContext:Bs,useState:Is}=wp.element,{__:As}=wp.i18n,{Button:Os}=wp.components,Rs=function(){const{setShowModal:t}=Bs(Ts),[n,r]=fe(),[l,o]=Is(!1);return(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>o(!0),onFocus:()=>o(!0),onMouseOut:()=>o(!1),onBlur:()=>o(!1)},(0,e.createElement)(Ui,{isHover:l},(0,e.createElement)(Os,{isSmall:!0,isSecondary:!0,icon:"plus-alt2",onClick:()=>{r({validation:{...n.validation,rules:[{__visible:!0}]}}),t(e=>!e)}},As("Add new","jet-form-builder"))),(0,e.createElement)(Hi,null,(0,e.createElement)("span",{"data-title":As("You have no rules for this field.","jet-form-builder")}),(0,e.createElement)("span",{"data-title":As("Please click here to add new.","jet-form-builder")})))},{__:Ms}=wp.i18n,Ps=function({rule:t}){return t.type?(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Ms("Rule:","jet-form-builder"),dangerouslySetInnerHTML:{__html:Ss(t)}}),Boolean(t.message)&&(0,e.createElement)("span",{"data-title":Ms("Message:","jet-form-builder"),dangerouslySetInnerHTML:{__html:t.message}})):(0,e.createElement)("span",{"data-title":Ms("The rule is not fully configured.","jet-form-builder")})},{useContext:Ls,useState:Gs}=wp.element,{__:Ds}=wp.i18n,{Button:qs}=wp.components,Vs=function({rule:t,index:n=0}){const{setShowModal:r}=Ls(Ts),[l,o]=fe(),[a,i]=Gs(!1);return(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>i(!0),onFocus:()=>i(!0),onMouseOut:()=>i(!1),onBlur:()=>i(!1)},(0,e.createElement)(Ui,{isHover:a},(0,e.createElement)(qs,{isSmall:!0,isSecondary:!0,icon:"edit",onClick:()=>{o({validation:{...l.validation,rules:l.validation.rules.map((e,t)=>(e.__visible=n===t,e))}}),r(e=>!e)}},Ds("Edit","jet-form-builder")),(0,e.createElement)(qs,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{o({validation:{...l.validation,rules:l.validation.rules.filter((e,t)=>t!==n)}})}},Ds("Delete","jet-form-builder"))),(0,e.createElement)(Hi,null,(0,e.createElement)(Ps,{rule:t})))},{__:Js}=wp.i18n,{Children:$s,cloneElement:Us}=wp.element;const Hs=function(){const[t]=fe();return t?.validation?.rules?.length?(0,e.createElement)(Xi,null,$s.map(function(t){const n=t.filter((e,t)=>0!==t);return[(0,e.createElement)(Vs,{rule:t[0],key:"first_item"}),...n.map((t,n)=>((t,n)=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",null,Js("AND","jet-form-builder")),(0,e.createElement)(Vs,{rule:t,index:n})))(t,n+1))]}(t.validation.rules),Us)):(0,e.createElement)(Rs,null)},{useState:Ws}=wp.element,{__:zs}=wp.i18n,{useBlockProps:Ys}=wp.blockEditor,{TextControl:Ks,SelectControl:Xs,ToggleControl:Zs,BaseControl:Qs,__experimentalNumberControl:ec}=wp.components;let{NumberControl:tc}=wp.components;void 0===tc&&(tc=ec);const{FormToggle:nc,BaseControl:rc,Flex:lc}=wp.components,{useInstanceId:oc}=wp.compose,{useBlockProps:ac}=wp.blockEditor,{useEffect:ic}=wp.element,{useSelect:sc}=wp.data,{useBlockProps:cc}=wp.blockEditor,{useSelect:uc}=wp.data,{CustomSelectControl:dc,Icon:mc}=wp.components,{useBlockEditContext:pc}=wp.blockEditor,{Children:fc,cloneElement:hc,useContext:bc}=wp.element,{useSelect:gc}=wp.data,{useBlockEditContext:yc}=wp.blockEditor;let{__experimentalToggleGroupControl:vc,__experimentalToggleGroupControlOptionIcon:wc,__experimentalToolbarContext:_c,ToggleGroupControl:Ec,ToggleGroupControlOptionIcon:Cc,ToolbarItem:kc,ToolbarGroup:Sc,ToolbarContext:jc}=wp.components;function xc({value:t}){const{name:n}=yc(),r=bc(jc),[,l]=fe(),{variations:o,components:a}=gc(t=>{const{getBlockVariations:l}=t("core/blocks"),o=l(n,"block");return{variations:o,components:o.map(t=>{var n;return(null!==(n=r?.currentId)&&void 0!==n?n:r?.baseId)?(0,e.createElement)(kc,{key:t.name,as:Cc,value:t.name,label:t.title,icon:t.icon}):(0,e.createElement)(Cc,{key:t.name,value:t.name,label:t.title,icon:t.icon})})}},[]);return o.length?(0,e.createElement)("div",{className:"jfb-variations-toolbar-toggle"},(0,e.createElement)(Ec,{hideLabelFromVision:!0,onChange:e=>l({...o.find(({name:t})=>t===e).attributes}),value:t,isBlock:!0},fc.map(a,hc))):null}Ec=Ec||vc,Cc=Cc||wc,jc=jc||_c;const{useSelect:Nc}=wp.data,{useBlockEditContext:Fc}=wp.blockEditor,{get:Tc}=window._,{useBlockProps:Bc,RichText:Ic}=wp.blockEditor,{Button:Ac}=wp.components,{createContext:Oc}=wp.element,Rc=Oc({}),{useContext:Mc}=wp.element,{useState:Pc}=wp.element,{get:Lc}=window._,{useSelect:Gc,useDispatch:Dc}=wp.data;var qc,Vc,Jc;window.JetFBComponents={...null!==(qc=window?.JetFBComponents)&&void 0!==qc?qc:{},BaseLabel:En,ActionFieldsMap:function({fields:t=[],label:n="[Empty label]",children:a=null,plainHelp:i="",customHelp:s=!1}){return(0,e.createElement)(l.RowControl,{align:"flex-start"},(0,e.createElement)(l.Label,null,n),(0,e.createElement)(l.RowControlEnd,null,s&&"function"==typeof s&&s(),Boolean(i.length)&&(0,e.createElement)("span",{className:"description-controls"},i),t.map(([t,n],l)=>(0,e.createElement)(o.Fragment,{key:`field_in_map_${t+l}`},(0,e.createElement)(r.Provider,{value:{name:t,data:n,index:l}},"function"==typeof a?a({fieldId:t,fieldData:n,index:l}):a)))))},ActionModal:h,ActionModalContext:i,SafeDeleteContext:da,RepeaterItemContext:pa,RepeaterBodyContext:fa,RepeaterHeadContext:ha,RepeaterButtonsContext:ba,ActionFieldsMapContext:r,CurrentPropertyMapContext:za,BlockValueItemContext:ya,DynamicPropertySelect:function({dynamic:t=[],parseValue:n=null,children:a=null,properties:i=null}){const{source:s,settings:c,setMapField:u}=(0,o.useContext)(K.CurrentActionEditContext);i=null!=i?i:s.properties;const{name:d,index:m}=(0,o.useContext)(r),{fields_map:p={}}=c;function f(e){var r;for(const t of i)if(e===t.value)return e;return n?n(e):null!==(r=t[0])&&void 0!==r?r:""}const[h,b]=(0,o.useState)(()=>{var e;return f(null!==(e=p[d])&&void 0!==e?e:"")}),g=(0,e.createElement)(l.StyledSelectControl,{key:d+m,value:h,options:i,help:(()=>{var e;const t=i.find(({value:e})=>e===h);return null!==(e=t?.help)&&void 0!==e?e:""})(),onChange:e=>{const n=f(e);b(n),u({nameField:d,value:t.includes(e)?"":e})}});return(0,e.createElement)(za.Provider,{value:{FieldSelect:g,property:h}},a&&a,!a&&g)},SafeDeleteToggle:function(t){const[n,r]=_a(!0);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(va,{label:wa("Safe deleting","jet-form-builder"),checked:n,onChange:r}),(0,e.createElement)(da.Provider,{value:n},t.children))},RepeaterAddNew:Na,RepeaterAddOrOperator:function(t){var n;const{onSetState:r,functions:l,children:o}=t,{addNewItem:a}=null!==(n=null!=l?l:Ca(r))&&void 0!==n?n:rs(Sa);return(0,e.createElement)(ns,{isSecondary:!0,icon:"randomize",onClick:()=>a({__visible:!1,or_operator:!0})},o)},Repeater:Pa,WrapperRequiredControl:function({children:t,labelKey:n="label",requiredKey:l="required",helpKey:o="help",field:a=[]}){let{name:i,data:s}=g(r);return a.length&&([i,s]=a),(0,e.createElement)("div",{className:"jet-user-meta__row",key:"user_meta_"+i},(0,e.createElement)("div",{className:"jet-field-map__row-label"},(0,e.createElement)("span",{className:"fields-map__label"},s.hasOwnProperty(n)&&s[n]&&s[n],!s.hasOwnProperty(n)&&s),s.hasOwnProperty(l)&&s[l]&&(0,e.createElement)("span",{className:"fields-map__required"}," *"),s[o]&&(0,e.createElement)("p",{className:"components-base-control__help",style:{color:"rgb(117, 117, 117)",margin:"1em 0 0 0"}},(0,e.createElement)(b,null,s[o]))),t)},DynamicPreset:Ie,JetFieldsMapControl:Me,FieldWithPreset:function({children:t=null,ModalEditor:n,triggerClasses:r=[],baseControlProps:l={}}){const[o,a]=De(!1),i=()=>{a(e=>!e)},s=["jet-form-dynamic-preset__trigger",...r].join(" ");return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ge,{className:"jet-form-dynamic-preset",...l},t,(0,e.createElement)("div",{className:s,onClick:i},(0,e.createElement)(Le,{viewBox:"0 0 54 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)(Pe,{d:"M42.6396 26.4347C37.8682 27.3436 32.5666 28.0252 27.1894 28.0252C21.8121 28.0252 16.4348 27.3436 11.7391 26.4347C6.96774 25.4502 3.18093 23.8597 0.37868 21.9663L0.37868 28.0252C0.37868 29.5399 1.59046 31.1304 3.78682 32.4179C5.98317 33.7054 9.46704 34.9172 13.6325 35.5988C17.798 36.2805 22.115 36.8106 27.1894 36.8106C32.2637 36.8106 36.6564 36.5077 40.7462 35.5988C44.8359 34.69 48.3198 33.7054 50.5162 32.4179C52.7125 31.1304 54 29.5399 54 28.0252L54 21.9663C51.122 23.8597 47.3352 25.4502 42.6396 26.4347ZM42.6396 53.5484C37.8682 54.5329 32.5666 55.1388 27.1894 55.1388C21.8121 55.1388 16.4348 54.5329 11.7391 53.5484C7.04348 52.5638 3.18093 51.0491 0.378682 49.1556L0.378682 55.1388C0.378683 56.7293 1.59046 58.3197 3.78682 59.5315C6.36186 60.819 9.46705 62.1066 13.6325 62.7125C17.7223 63.697 22.115 64 27.1894 64C32.2637 64 36.6564 63.697 40.7462 62.7125C44.8359 61.8036 48.3198 60.819 50.5162 59.5315C52.7125 57.9411 54 56.7293 54 54.8359L54 48.8527C51.122 51.0491 47.3352 52.2608 42.6396 53.5484ZM42.6396 39.9915C37.8682 40.9004 32.5666 41.582 27.1894 41.582C21.8121 41.582 16.4348 40.9004 11.7391 39.9915C6.96774 39.007 3.18093 37.4922 0.378681 35.5988L0.378681 41.582C0.378681 43.1725 1.59046 44.6872 3.78682 45.9747C6.36185 47.2622 9.46705 48.474 13.6325 49.1556C17.7223 50.0645 22.115 50.3674 27.1894 50.3674C32.2637 50.3674 36.6564 50.0645 40.7462 49.1556C44.8359 48.1711 48.3198 47.2622 50.5162 45.9747C52.7125 44.3843 54 43.1725 54 41.582L54 35.5988C51.122 37.4922 47.3352 39.007 42.6396 39.9915ZM40.4432 2.12337C36.3535 1.13879 31.885 0.835848 26.8864 0.835849C21.8878 0.835849 17.4194 1.13879 13.2539 2.12337C9.08836 3.10794 5.68022 4.01678 3.48387 5.3043C1.28751 6.59181 -3.4782e-06 8.10654 -3.33916e-06 9.697L-2.95513e-06 14.0897C-2.81609e-06 15.6802 1.28752 17.2706 3.48387 18.5582C6.05891 19.7699 9.1641 21.0575 13.2539 21.6633C17.3436 22.2692 21.8121 22.9509 26.8864 22.9509C31.9607 22.9509 36.3535 22.9509 40.4432 22.345C44.533 21.7391 48.0169 20.4516 50.2132 19.164C52.7125 17.5736 54 15.9831 54 14.3927L54 9.99995C54 8.40948 52.7125 6.81902 50.5162 5.60724C48.3198 4.39546 44.533 2.72926 40.4432 2.12337Z",fill:"#7E8993"})))),o&&(0,e.createElement)(h,{onRequestClose:i,classNames:["width-60"],title:"Edit Preset"},t=>(0,e.createElement)(n,{...t})))},GlobalField:ye,AvailableMapField:function({fieldsMap:t,field:n,index:r,value:a,onChangeValue:i,isMapFieldVisible:s}){let c=null;t||(t={}),c=t[n],c&&"object"==typeof c||(c={});const d=({field:t,name:n,index:r,fIndex:o,children:a})=>(0,e.createElement)(u.Card,{key:t+n+r+o,size:"extraSmall",style:{marginBottom:"10px"}},(0,e.createElement)(u.CardHeader,null,(0,e.createElement)("span",{className:"jet-label-overflow"},t)),(0,e.createElement)(l.StyledCardBodyControl,{key:t+n+r+o,className:"jet-form-preset__fields-map-item"},a));return(0,e.createElement)(o.Fragment,{key:`map_field_preset_${n+r}`},window.JetFormEditorData.presetConfig.map_fields.map((o,m)=>{const p={field:n,name:o.name,index:r,fIndex:m},f="control_"+n+o.name+r+m;switch(o.type){case"text":return s(a,o,n)&&function({field:t,name:n,index:r,fIndex:o},a){return(0,e.createElement)(u.Card,{key:t+n+r+o,size:"extraSmall",style:{marginBottom:"10px"}},(0,e.createElement)(u.CardHeader,null,(0,e.createElement)("span",{className:"jet-label-overflow"},t)),(0,e.createElement)(l.StyledCardBodyControl,{key:t+n+r+o,className:"jet-form-preset__fields-map-item"},a))}(p,(0,e.createElement)(l.StyledTextControl,{key:f+"TextControl",placeholder:o.label,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));case"select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(l.StyledSelectControl,{options:o.options,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));case"custom_select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(u.CustomSelectControl,{options:o.options,onChange:({selectedItem:e})=>{c[o.name]=e.key,i({...t,[n]:c},"fields_map")},value:o.options.find(e=>e.key===c[o.name])}));case"grouped_select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(xe,{options:o.options,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));default:return null}}))},MapField:Ne,FieldWrapper:function(t){const{attributes:n,children:r,wrapClasses:l=[],valueIfEmptyLabel:o="",setAttributes:a,childrenPosition:i="between"}=t,s=de(),c=H("_jf_args"),u=Ze(function(){ze(n,a)});function d(){return(0,e.createElement)(Ye.VisualLabel,null,et(Qe("input label:","jet-form-builder")),(0,e.createElement)("div",{className:"jet-form-builder__label"},(0,e.createElement)(Ke,{key:s("rich-label"),placeholder:"Label...",allowedFormats:[],value:n.label?n.label:o,onChange:e=>a({label:e}),isSelected:!1,...u}),n.required&&(0,e.createElement)("span",{className:"jet-form-builder__required"},c.required_mark?c.required_mark:"*")))}function m(){return(0,e.createElement)("div",{className:"jet-form-builder__desc--wrapper"},et(Qe("input description:","jet-form-builder")),(0,e.createElement)(Ye,{key:"custom_help_description",className:"jet-form-builder__desc"},(0,e.createElement)("div",{className:"components-base-control__help"},(0,e.createElement)(Ke,{key:s("rich-description"),tagName:"small",placeholder:"Description...",allowedFormats:[],value:n.desc,onChange:e=>a({desc:e}),style:{marginTop:"0px"}}))))}return"row"===c.fields_layout&&l.push("jet-form-builder-row__flex"),n?.crocoblock_styles?._uniqueClassName&&l.push(n.crocoblock_styles._uniqueClassName),(0,e.createElement)(Ye,{key:s("placeHolder_block"),className:E("jet-form-builder__field-wrap","jet-form-builder-row",l)},"row"!==c.fields_layout&&(0,e.createElement)(e.Fragment,null,"top"===i&&r,d(),"between"===i&&r,m(),"bottom"===i&&r),"row"===c.fields_layout&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"jet-form-builder-row__flex--label"},d(),m()),(0,e.createElement)("div",{className:"jet-form-builder-row__flex--content"},r)))},MacrosInserter:function({children:t,fields:n,onFieldClick:r,customMacros:l,zIndex:o=1e6,...a}){const[i,s]=lt(()=>!1);return(0,e.createElement)("div",{className:"jet-form-editor__macros-inserter"},(0,e.createElement)(tt,{isTertiary:!0,isSmall:!0,icon:i?"no-alt":"admin-tools",label:"Insert macros",className:"jet-form-editor__macros-trigger",onClick:()=>{s(e=>!e)}}),i&&(0,e.createElement)(nt,{style:{zIndex:o},position:"bottom left",...a},n.length&&(0,e.createElement)(rt,{title:"Form Fields"},n.map(t=>(0,e.createElement)("div",{key:"field_"+t.name},(0,e.createElement)(tt,{isLink:!0,onClick:()=>{r(t.name)}},"%"+t.name+"%")))),l&&(0,e.createElement)(rt,{title:"Custom Macros"},l.map(t=>(0,e.createElement)("div",{key:"macros_"+t},(0,e.createElement)(tt,{isLink:!0,onClick:()=>{r(t)}},"%"+t+"%"))))))},RepeaterWithState:function({children:t,ItemHeading:n,repeaterClasses:r=[],repeaterItemClasses:l=[],newItem:a,addNewButtonLabel:i="Add New",items:s=[],isSaveAction:c,onSaveItems:m,onUnMount:p,onAddNewItem:f,onRemoveItem:h,help:b={helpSource:{},helpVisible:()=>!1,helpKey:""},additionalControls:g=null}){const y=["jet-form-builder__repeater-component",...r].join(" "),v=["jet-form-builder__repeater-component-item",...l].join(" "),[w,_]=(0,o.useState)([]);(0,o.useEffect)(()=>{_(s&&s.length>0?s.map(e=>(e.__visible=!1,e)):[{...a,__visible:!0}])},[]);const[E,C]=(0,o.useState)(!0),k=(e,t)=>{_(n=>{const r=JSON.parse(JSON.stringify(n));return r[t]={...n[t],...e},r})},S=({oldIndex:e,newIndex:t})=>{_(n=>{const r=JSON.parse(JSON.stringify(n));return[r[t],r[e]]=[r[e],r[t]],r})},j=e=>!(e{if(!0===c){for(const e in w)for(const t in w[e])t.startsWith("__")&&delete w[e][t];m(w),p()}else!1===c&&p()},[c]);const x=e=>`jet-form-builder-repeater__item_${e}`,{helpSource:N,helpVisible:F,helpKey:T}=b,B=F(w)&&N&&N[T];return(0,e.createElement)("div",{className:y,key:"jet-form-builder-repeater"},B&&(0,e.createElement)("p",null,N[T].label),0(0,e.createElement)(u.Card,{elevation:2,className:v,key:x(l)},(0,e.createElement)(u.CardHeader,{className:"repeater__item__header"},(0,e.createElement)("div",{className:"repeater-item__left-heading"},(0,e.createElement)(u.ButtonGroup,{className:"repeater-action-buttons"},(0,e.createElement)(u.Button,{isSmall:!0,icon:r.__visible?"no-alt":"edit",onClick:()=>(e=>{_(t=>{const n=JSON.parse(JSON.stringify(t));return n[e].__visible=!n[e].__visible,n})})(l),className:"repeater-action-button"}),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,disabled:!Boolean(l),icon:"arrow-up-alt2",onClick:()=>(e=>{S({oldIndex:e,newIndex:e-1})})(l),className:"repeater-action-button"}),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,disabled:j(l),icon:"arrow-down-alt2",onClick:()=>(e=>{S({oldIndex:e,newIndex:e+1})})(l),className:"repeater-action-button"})),(0,e.createElement)("span",{className:"repeater-item-title"},n&&(0,e.createElement)(n,{currentItem:r,index:l,changeCurrentItem:e=>k(e,l)}),!n&&`#${l+1}`)),(0,e.createElement)(u.ButtonGroup,null,(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,onClick:()=>(e=>{_(t=>{const n=JSON.parse(JSON.stringify(t)),[r,l]=[n.slice(0,e+1),n.slice(e+1)];return[...r,n[e],...l]})})(l)},(0,d.__)("Clone","jet-form-builder")),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,isDestructive:!0,onClick:()=>(e=>{E&&!(e=>confirm((0,d.sprintf)((0,d.__)("Are you sure you want to remove item %d?","jet-form-builder"),e+1)))(e)||h&&!h(e,w)||_(t=>{const n=JSON.parse(JSON.stringify(t));return n.splice(e,1),n})})(l)},(0,d.__)("Delete","jet-form-builder")))),r.__visible&&(0,e.createElement)(u.CardBody,{className:"repeater-item__content"},t&&(0,e.createElement)(o.Fragment,{key:`repeater-component__item_${l}`},"function"==typeof t&&t({currentItem:r,changeCurrentItem:e=>k(e,l),currentIndex:l}),"function"!=typeof t&&t),!t&&"Set up your Repeater Template, please."))),1{return e=a,f&&f(e,w),void _(t=>[...t,{...e,__visible:!0}]);var e}},i))},AdvancedFields:function(){return(0,e.createElement)(St,null,(0,e.createElement)(it,null),(0,e.createElement)(ut,null),(0,e.createElement)(yt,null),(0,e.createElement)(_t,null),(0,e.createElement)(kt,null))},GeneralFields:function({hasMacro:t=!0}){return(0,e.createElement)(Ln,{title:Gn("General","jet-form-builder"),key:"jet-form-general-fields"},(0,e.createElement)(Tt,null),(0,e.createElement)(Lt,null),(0,e.createElement)(qt,null),(0,e.createElement)(Pn,{hasMacro:t}))},ToolBarFields:function({children:t=null}){return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Hn,null,t),(0,e.createElement)(Zn,null))},FieldControl:function(t){const{setAttributes:n,attributes:r}=t,l=function({type:e,attributes:t,attrsSettings:n={}}){const r=Ys()["data-type"],l=lr();return l[e]?l[e].attrs.filter(({attrName:e,label:l,...o})=>{const a=e in t,i=(e=>{if(!e.condition)return!0;if(r&&e.condition.blockName){if("string"==typeof e.condition.blockName&&r!==e.condition.blockName)return!1;if("object"==typeof e.condition.blockName&&e.condition.blockName.length&&!e.condition.blockName.includes(r))return!1}return!(!function(){if("object"!=typeof e.condition.attr)return!0;const{operator:n="and",items:r={}}=e.condition.attr;if("or"===n.toLowerCase())for(const e in r)if(r[e]===t[e])return!0;return"and"!==n.toLowerCase()||function(){for(const e in r)if(r[e]!==t[e])return!1;return!0}()}()||"string"==typeof e.condition.attr&&e.condition.attr&&!t[e.condition.attr]||"string"==typeof e.condition&&!t[e.condition])})(o),s=e in n&&"show"in n[e]&&!1===n[e].show;return a&&i&&!s}):[]}(t),o=(e,t)=>{n({[t]:e})};return l.map(({help:t="",attrName:n,label:l,...a})=>{switch(a.type){case"text":return(0,e.createElement)(Ks,{key:`${a.type}-${n}-TextControl`,label:l,help:t,value:r[n],onChange:e=>o(e,n)});case"select":return(0,e.createElement)(Xs,{key:`${a.type}-${n}-SelectControl`,label:l,help:t,value:r[n],options:a.options,onChange:e=>{o(e,n)}});case"toggle":return(0,e.createElement)(Zs,{key:`${a.type}-${n}-ToggleControl`,label:l,help:t,checked:r[n],onChange:e=>{o(e,n)}});case"number":return(0,e.createElement)(Qs,{key:`${a.type}-${n}-BaseControl`,label:l},(0,e.createElement)(tc,{key:`${a.type}-${n}-NumberControl`,value:r[n],onChange:e=>{o(Number(e),n)}}),(0,e.createElement)("p",{className:"components-base-control__help",style:{color:"rgb(117, 117, 117)"}},t));default:return null}})},HorizontalLine:function(t){return(0,e.createElement)("hr",{style:{...t}})},FieldSettingsWrapper:function(t){const{title:n,children:r}=t,l=nr()["data-type"].replace("/","-"),o=tr(`jet.fb.render.settings.${l}`,null);return(r||o)&&(0,e.createElement)(er,{title:n||Qn("Field","jet-form-builder")},r,o)},GroupedSelectControl:xe,BaseHelp:dt,GatewayFetchButton:ar,ValidationToggleGroup:function({excludeBrowser:t=!1}){var n;const[r,l]=fe(),o=de();return qa=qa.filter(({value:e})=>"browser"!==e||!t),(0,e.createElement)(La,{onChange:e=>l(t=>({...t,validation:{...r.validation,type:e}})),value:null!==(n=r.validation?.type)&&void 0!==n?n:"inherit",label:Da("Validation type","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},(0,e.createElement)(Ga,{label:Da("Inherit","jet-form-builder"),value:"inherit","aria-label":Da("Inherit from form's args","jet-form-builder"),showTooltip:!0}),qa.map(t=>(0,e.createElement)(Ga,{key:o(t.value+"_key"),label:t.label,value:t.value,"aria-label":t.title,showTooltip:!0})))},ValidationBlockMessage:function({name:t}){var n,r,l;const o=de(),[a,i]=fe(),[s]=(0,Va.useMetaState)("_jf_validation","{}",[]),c=!a.validation?.type,u=c?null!==(n=s?.messages)&&void 0!==n?n:{}:null!==(r=a.validation?.messages)&&void 0!==r?r:{},d=$a(t);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ua,{disabled:c,key:o("massage_"+t),label:d?.label,help:d?.help,value:null!==(l=u[t])&&void 0!==l?l:d?.initial,onChange:e=>i(n=>({...n,validation:{...a.validation,messages:{...u,[t]:e}}}))}))},ValidationMetaMessage:function({message:t,update:n,value:r=null,help:o=null}){const a=$a(t.id);return(0,e.createElement)(l.StyledFlexControl,{direction:"column"},(0,e.createElement)(u.Flex,null,(0,e.createElement)(l.Label,{htmlFor:t.id},a.label),(0,e.createElement)(u.Flex,{style:{width:"auto"}},t.blocks.map(t=>(0,e.createElement)(u.Tooltip,{key:"message_block_item"+t.title,text:t.title,delay:200,placement:"top"},(0,e.createElement)(Ha,{icon:t.icon}))))),(0,e.createElement)(l.StyledTextControl,{className:l.ClearBaseControlStyle,id:t.id,help:null!=o?o:a?.help,value:null!=r?r:a?.initial,onChange:e=>n(n=>({...n,[t.id]:e}))}))},DynamicValues:ts,EditAdvancedRulesButton:function(){const[t,n]=Ws(!1);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ts.Provider,{value:{showModal:t,setShowModal:n}},(0,e.createElement)("div",{className:"jet-fb mb-24"},(0,e.createElement)(Hs,null))),t&&(0,e.createElement)(h,{title:zs("Edit Advanced Rules","jet-form-builder"),classNames:["width-60"],onRequestClose:()=>n(!1)},(0,e.createElement)(Ns,null)))},RepeaterStateContext:Sa,RepeaterState:Ya,BlockLabel:Tt,BlockName:Lt,BlockDescription:qt,BlockDefaultValue:Pn,BlockPlaceholder:it,BlockAddPrevButton:ut,BlockPrevButtonLabel:yt,BlockVisibility:_t,BlockClassName:kt,BlockAdvancedValue:function({help:t,label:n,hasMacro:r=!0,...l}){return(0,e.createElement)("div",{...l},(0,e.createElement)(Pn,{help:t,label:n,hasMacro:r}),(0,e.createElement)("hr",null),(0,e.createElement)(ts,null))},MacrosFields:wn,MacrosButtonTemplate:Yt,MacrosFieldsTemplate:mn,ShowPopoverContext:$t,PopoverItem:Qt,PresetButton:Vt,ConditionItem:_i,AdvancedInspectorControl:Sn,AdvancedModalControl:ci,ClientSideMacros:Bn,ToggleControl:function t({checked:n=!1,disabled:r=!1,onChange:l=()=>{},children:o=null,help:a=null,flexLabelProps:i={},outsideLabel:s=null,__nextHasNoMarginBottom:c=!1,...u}){const d=a,m=`inspector-jfb-toggle-control-${oc(t)}`;return(0,e.createElement)(rc,{id:m},(0,e.createElement)(lc,{direction:"column"},(0,e.createElement)(lc,{gap:3,align:"flex-start",justify:"flex-start",...i},(0,e.createElement)(nc,{id:m,checked:n,onChange:e=>l(e.target.checked),disabled:r,...u}),(0,e.createElement)("label",{htmlFor:m},o),s),"string"==typeof d?(0,e.createElement)(dt,null,d):d&&(0,e.createElement)(d,null)))},DetailsContainer:Hi,HoverContainer:Ui,ContainersList:Xi,HumanReadableConditions:$i,ConditionsRepeaterContextProvider:Si,ServerSideMacros:function({children:t}){const n=(0,K.useRequestFields)();return(0,e.createElement)(Xt.Provider,{value:{afterFields:n}},t)},SelectVariations:function({value:t}){const{name:n}=pc(),[,r]=fe(),{variations:l,rawVariations:o}=uc(t=>{const{getBlockVariations:r}=t("core/blocks"),l=r(n,"block"),o=[],a={};for(const t of l)o.push({key:t.name,name:(0,e.createElement)("span",{className:"jet-fb flex gap-1em ai-center"},(0,e.createElement)(mc,{icon:t.icon}),t.title)}),a[t.name]=t;return{variations:o,rawVariations:a}},[n]);return l.length?(0,e.createElement)(dc,{__nextUnconstrainedWidth:!0,hideLabelFromVision:!0,options:l,size:"__unstable-large",onChange:({selectedItem:e})=>r({...o[e.key].attributes}),value:l.find(({key:e})=>e===t)}):null},ToggleGroupVariations:function(t){const n=bc(jc);return n?.currentId?(0,e.createElement)(Sc,{className:"jet-fb toggle-toolbar-group"},(0,e.createElement)(xc,{...t})):(0,e.createElement)(xc,{...t})},AttributeHelp:ht,ActionButtonPlaceholder:function(t){const n=Bc();return(0,e.createElement)("div",{...n},(0,e.createElement)("div",{className:t.wrapperClasses.join(" ")},(0,e.createElement)(Ac,{isPrimary:!0,className:t.buttonClasses.join(" ")},(0,e.createElement)(Ic,{placeholder:"Input Submit label...",allowedFormats:[],value:t.attributes.label,onChange:e=>t.setAttributes({label:e})}))))},ActionModalFooterSlotFill:c,ScopedAttributesProvider:function({children:t}){const[n,r]=fe(),[l,o]=Pc(()=>n);return(0,e.createElement)(Rc.Provider,{value:{realAttributes:n,setRealAttributes:r,attributes:l,setAttributes:o}},t)}},window.JetFBActions={...null!==(Vc=window?.JetFBActions)&&void 0!==Vc?Vc:{},withPreset:ge,getInnerBlocks:R,getAvailableFieldsString:function(e){const t=T([e]),n=[];return t.forEach(function(e){n.push("%FIELD::"+e+"%")}),B("Available fields: ","jet-form-builder")+n.join(", ")},getAvailableFields:T,getFormFieldsBlocks:F,getFieldsWithoutCurrent:O,gatewayAttr:P,gatewayLabel:L,registerGateway:function(e,t,n="cred"){window.JetFBGatewaysList=window.JetFBGatewaysList||{},window.JetFBGatewaysList[e]=window.JetFBGatewaysList[e]||{},window.JetFBGatewaysList[e][n]=t},Tools:k,event:e=>{const t=new Event(e);return()=>document.dispatchEvent(t)},listen:(e,t)=>{document.addEventListener(e,t)},renderGateway:D,renderGatewayWithPlaceholder:function(e,t,n="cred",r=null){return G(e,n)?(t.Placeholder=r,D(e,t,n)):r},maybeCyrToLatin:w,getConvertedName:_,getBlockControls:function(e="all"){if(!e)return!1;const t=lr();return"all"===e?t:!!(t[e]&&t[e].attrs&&Array.isArray(t[e].attrs)&&0{e.includes(n.name)&&t.push(n)}),t},convertObjectToOptionsList:function(e=[],{usePlaceholder:t=!0,label:n="--",value:r=""}={}){const l={label:n,value:r};if(!e)return t?[l]:[];const o=Object.entries(e).map(e=>({value:e.value,label:e.label}));return t?[l,...o]:o},appendField:function(e,t=[]){M("jet.fb.register.fields","jet-form-builder",n=>n.map(n=>t.length&&!t.includes(n.name)?n:e(n)))},insertMacro:In,column:y,getCurrentInnerBlocks:function(){const{"data-block":e}=ac();return R(e)},humanReadableCondition:Ci,assetUrl:function(e=""){return JetFormEditorData.assetsUrl+e},set:function(e,t,n){const r=JSON.parse(JSON.stringify(e));let l,o=r;for(let e=0;e{function t(){e.call(this)}return t.prototype=Object.create(e.prototype),t}},window.JetFBHooks={...null!==(Jc=window?.JetFBHooks)&&void 0!==Jc?Jc:{},useSelectPostMeta:H,useSuccessNotice:$,useEvents:ae,useRequestEvents:function(){const e=ie(e=>e("jet-forms/actions").getCurrentAction());return ae(e)},useBlockConditions:ce,useUniqKey:de,useBlockAttributes:fe,useIsAdvancedValidation:function(){const{type:e}=H("_jf_validation"),[t]=fe();return t.validation?.type?"advanced"===t.validation?.type:"advanced"===e},useGroupedValidationMessages:function(){const[e]=Ue(We);return e},withSelectFormFields:(e=[],t=!1,n=!1)=>r=>{let l=[];const o=["submit","form-break","heading","group-break","conditional",...e];return Y(e=>{e.name.includes("jet-forms/")&&e.attributes.name&&!o.find(t=>e.name.includes(t))&&l.push({blockName:e.name,name:e.attributes.name,label:e.attributes.label||e.attributes.name,value:e.attributes.name})},r("core/block-editor").getBlocks()),l=t?[{value:"",label:t},...l]:l,{formFields:n?l:z("jet.fb.getFormFieldsBlocks",l)}},withSelectGateways:X,withDispatchGateways:function(e){const t=e("jet-forms/gateways");return{setGatewayRequest:t.setRequest,setGatewayScenario:t.setScenario,setScenario:t.setCurrentScenario,setGateway:t.setGateway,setGatewayInner:t.setGatewayInner,setGatewaySpecific:t.setGatewaySpecific,clearGateway:t.clearGateway,clearScenario:t.clearScenario}},useOnUpdateModal:W,useInsertMacro:On,useIsHasAttribute:he,useUniqueNameOnDuplicate:function(e=null){const t=cc(),[,n]=fe(),r=t["data-block"],l=sc(e=>{if(!e(ra).isRecentlyAdded(r))return!1;const{hasChanged:t,names:n}=e(ra).getUniqueNames(r);return!!t&&n},[r]);ic(()=>{l&&("function"!=typeof e?n({name:l.split("|")[0]}):e(l))},[l])},useSupport:function(e){const{name:t}=Fc();return Nc(n=>{const r=n("core/blocks").getBlockType(t);return Tc(r,["supports",e],!1)},[t,e])},useScopedAttributesContext:function(){return Mc(Rc)},useOpenEditorPanel:function(e){const{enableComplementaryArea:t}=Dc("core/interface"),{toggleEditorPanelOpened:n}=Dc("core/edit-post"),r=Gc(t=>t("core/edit-post").isEditorPanelOpened(e),[e]);return()=>{t("core/edit-post","edit-post/document"),!r&&n(e)}}}})()})(); \ No newline at end of file +(()=>{var e={4180(){const e=()=>{const{select:e}=wp.data;return e("core/editor").getEditedPostAttribute("meta")},t=(t,n)=>{const{dispatch:r}=wp.data,{editPost:l}=r("core/editor");l({meta:{...e(),[t]:JSON.stringify(n)}})},n=e=>{const t=[];for(const[n,{active:r=!1}]of Object.entries(e))r&&t.push(+n);return t};wp.domReady(()=>(async()=>{await(async()=>new Promise(e=>{const t=setInterval(()=>{wp.data.select("core/editor").getCurrentPostType()&&(clearInterval(t),e())},100)}))();let r={},l=[];try{[r={},l=[]]=(()=>{const t=e();let n={},r=[];try{n=JSON.parse(t._jf_gateways)}catch(e){return[]}if(1===n.last_migrate)throw"migrated";try{r=JSON.parse(t._jf_actions)}catch(e){return[n]}return[n,r]})()}catch(e){return}r.last_migrate=1,t("_jf_gateways",r);const o=[];try{o.push(...((e,t)=>{var r,l,o,a;const i=n(null!==(r=e.notifications_success)&&void 0!==r?r:{}),s=n(null!==(l=e.notifications_failed)&&void 0!==l?l:{}),c=n(null!==(o=e.notifications_before)&&void 0!==o?o:{}),u=null!==(a=e.use_success_redirect)&&void 0!==a&&a;let d=!1;if(!(i.length||s.length||c.length||u))throw"nothing_to_migrate";return t.map(e=>{var t;return e.events=null!==(t=e.events)&&void 0!==t?t:[],i.includes(e.id)&&e.events.push("GATEWAY.SUCCESS"),s.includes(e.id)&&e.events.push("GATEWAY.FAILED"),c.includes(e.id)&&e.events.push("DEFAULT.PROCESS"),u&&!d&&"redirect_to_page"===e.type&&(e.events.push("GATEWAY.SUCCESS"),d=!0),e})})(r,l))}catch(e){return}t("_jf_actions",o)})())},115(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(6758),l=n.n(r),o=n(935),a=n.n(o)()(l());a.push([e.id,".syma2t4{height:40px;min-height:40px;line-height:1.5;}\n",""]);const i=a},4239(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(6758),l=n.n(r),o=n(935),a=n.n(o)()(l());a.push([e.id,".sfqmk5y svg{height:24px;width:24px;}\n",""]);const i=a},935(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n}).join("")},t.i=function(e,n,r,l,o){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(r)for(var i=0;i0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=o),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),l&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=l):u[4]="".concat(l)),t.push(u))}},t}},6758(e){"use strict";e.exports=function(e){return e[1]}},4023(e,t,n){var r=n(115);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(611).A)("55433ea3",r,!1,{})},483(e,t,n){var r=n(4239);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(611).A)("62ebcc8a",r,!1,{})},611(e,t,n){"use strict";function r(e,t){for(var n=[],r={},l=0;lf});var l="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!l)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},a=l&&(document.head||document.getElementsByTagName("head")[0]),i=null,s=0,c=!1,u=function(){},d=null,m="data-vue-ssr-id",p="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(e,t,n,l){c=n,d=l||{};var a=r(e,t);return h(a),function(t){for(var n=[],l=0;ln.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(l=0;l{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";const e=window.React,{createContext:t}=wp.element,r=t({name:"",data:{},index:0}),l=window.jfb.components,o=window.wp.element,{createContext:a}=wp.element,i=a({actionClick:null,onRequestClose:()=>{}}),{createSlotFill:s}=wp.components,c=s("JFBActionModalFooter"),u=window.wp.components,d=window.wp.i18n,{Slot:m}=c;let{ToggleGroupControl:p,__experimentalToggleGroupControl:f}=wp.components;p=p||f;const h=function({onRequestClose:t,children:n,title:r="",classNames:l=[],className:a="",onUpdateClick:s,onCancelClick:c,updateBtnLabel:f="Update",updateBtnProps:h={},cancelBtnProps:b={},cancelBtnLabel:g="Cancel",fixedHeight:y="",...v}){const w=["jet-form-edit-modal",...l,a],[_,E]=(0,o.useState)(null),C=()=>{s&&s(),E(!0)},k=()=>{c&&c(),E(!1)};let S={};return y&&(S={height:y},w.push("jet-modal-fixed-height")),(0,e.createElement)(u.Modal,{onRequestClose:t,className:w.join(" "),title:r,style:S,...v},!n&&(0,e.createElement)("div",{className:"jet-form-edit-modal__content"},(0,d.__)("Action callback is not found.","jet-form-builder")),n&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"jet-form-edit-modal__wrapper"},(0,e.createElement)(i.Provider,{value:{actionClick:_,onRequestClose:t}},(0,e.createElement)("div",{className:"jet-form-edit-modal__content"},"function"==typeof n&&n({actionClick:_,onRequestClose:t}),"function"!=typeof n&&n))),(0,e.createElement)(m,{fillProps:{updateClick:C,cancelClick:k}},t=>Boolean(t?.length)?t:(0,e.createElement)(p,{className:"jet-form-edit-modal__actions jfb-toggle-group-control",hideLabelFromVision:!0},(0,e.createElement)(u.Button,{isPrimary:!0,onClick:C,...h},f),(0,e.createElement)(u.Button,{isSecondary:!0,style:{margin:"0 0 0 10px"},onClick:k,...b},g)))))},{RawHTML:b,useContext:g}=wp.element;function y(e,t){return e?.length?e.map(e=>"object"==typeof e?e[t]:e):[]}const v=(0,window.wp.hooks.applyFilters)("jet.fb.tools.convertSymbols",{checkCyrRegex:/[а-яёїєґі]/i,cyrRegex:/[а-яёїєґі]/gi,charsMap:{а:"a",б:"b",в:"v",г:"g",д:"d",е:"e",ё:"io",ж:"zh",з:"z",и:"i",й:"i",к:"k",л:"l",м:"m",н:"n",о:"o",п:"p",р:"r",с:"s",т:"t",у:"u",ф:"f",х:"kh",ц:"ts",ч:"ch",ш:"sh",щ:"shch",ы:"y",э:"e",ю:"iu",я:"ia",ї:"i",є:"ie",ґ:"g",і:"i"}});function w(e){return v.checkCyrRegex.test(e)&&(e=e.replace(v.cyrRegex,function(e){return void 0===v.charsMap[e]?"":v.charsMap[e]})),e}function _(e){let t=e.toLowerCase();t=t.normalize("NFD").replace(/[\u0300-\u036f]/g,""),t=w(t);const n=t.match(/\b(\w+)\b/g);t="";for(const[e,r]of Object.entries(n)){t+=(0===+e?"":"_")+r;const l=+e+1===n.length;if(t.length>60)return t+(l?"":"__")}return t}function E(...e){const t=[],n=e=>{e.forEach(e=>{if(e&&(Array.isArray(e)&&n(e),"string"==typeof e&&t.push(e.trim()),"object"==typeof e))for(const n in e)e[n]&&t.push((n+"").trim())})};return n(e),t.join(" ")}function C(e){return null==e||("object"!=typeof e||Array.isArray(e)?"number"==typeof e?0===e:!e?.length:!Object.keys(e)?.length)}const k=class{static withPlaceholder(e,t="--",n=""){return[{label:t,value:n},...e]}static getRandomID(){return Math.floor(8999*Math.random())+1e3}},{select:S}=wp.data,j=function(e){const t=(n,r=null)=>{(n=n||S("core/block-editor").getBlocks()).forEach(n=>{if(e(n,r),n.innerBlocks.length){const e="jet-forms/repeater-field"===n.name?n:r;return void t(n.innerBlocks,e)}if("core/block"!==n.name)return;let l=S("core/block-editor")?.__unstableGetClientIdsTree?.(n.clientId);if(!l?.length)return;const o=l.map(({clientId:e})=>e);l=S("core/block-editor").getBlocksByClientId(o),t(l)})};t()},{applyFilters:x}=wp.hooks,{select:N}=wp.data,F=function(e=[],t=!1,n=!1,r="default"){let l=[];const o=["submit","form-break","heading","group-break","conditional",...e];return j(e=>{if(e.name.includes("jet-forms/")&&!o.find(t=>e.name.includes(t))){const t=N("core/blocks").getBlockType(e.name);let{fields:n=[]}=t.jfbResolveBlock.call(e,r);t.hasOwnProperty("jfbGetFields")&&(n=t.jfbGetFields.call(e,r)),l.push(...n.filter(e=>!l.some(({value:t})=>t===e.value)))}}),l=t?[{value:"",label:t},...l]:l,n?l:x("jet.fb.getFormFieldsBlocks",l,r)},T=function(e=[],t="default"){const n=[],r=F(e,!1,!1,t);return r&&r.forEach(e=>n.push(e.name)),n},{__:B}=wp.i18n,{applyFilters:I}=wp.hooks,{select:A}=wp.data,O=function(e=!1,t=!1,n="default"){const r=["submit","form-break","heading","group-break","conditional"];let l=[];const o=wp.data.select("core/block-editor").getSelectedBlock();return j(e=>{if(e.name.includes("jet-forms/")&&o?.clientId!==e.clientId&&!r.find(t=>e.name.includes(t))){const t=A("core/blocks").getBlockType(e.name);let{fields:r=[]}=t.jfbResolveBlock.call(e,n);t.hasOwnProperty("jfbGetFields")&&(r=t.jfbGetFields.call(e,n)),l.push(...r.filter(e=>!l.some(({value:t})=>t===e.value)))}}),l=e?[{value:"",label:e},...l]:l,t?l:I("jet.fb.getFormFieldsBlocks",l,n)},R=function(e){const t=wp.data.select("core/block-editor").getBlock(e);return t?t.innerBlocks:[]},{addFilter:M}=wp.hooks,P=function(e=!1,t=""){const n=window.JetFormEditorData.gateways;if(!e)return n;if(!n[e])return!1;const r=n[e];return e=>r[e]?r[e]:t},L=function(e,t=""){const n=P("labels");return r=>n(e)?n(e)[r]:t},G=function(e,t="cred"){return window.JetFBGatewaysList&&window.JetFBGatewaysList[e]&&window.JetFBGatewaysList[e][t]},D=function(t,n,r="cred"){if(!G(t,r))return null;const l=window.JetFBGatewaysList[t][r];return(0,e.createElement)(l,{...n})},{useState:q,useEffect:V}=wp.element,{useDispatch:J}=wp.data,$=function(e,t={}){const[n,r]=q(!1),l=J(wp.notices.store);return V(()=>{n&&l.createWarningNotice(e,{type:"snackbar",...t})},[n]),r},{useSelect:U}=wp.data,H=function(e){const t=U(e=>e("core/editor").getEditedPostAttribute("meta")||{});return JSON.parse(t[e]||"{}")},W=function(e){const{actionClick:t,onRequestClose:n}=(0,o.useContext)(i);(0,o.useEffect)(()=>{t&&e(),null!==t&&n()},[t])},{applyFilters:z}=wp.hooks,Y=(e,t)=>{t.forEach(t=>{e(t),t.innerBlocks.length&&Y(e,t.innerBlocks)})},K=window.jfb.actions,X=function(e){const t=e("jet-forms/gateways"),n=t.getCurrentRequestId(),r=t.getGatewaySpecific(),l=t.getScenario(),o=t.getGatewayId(),{id:a="PAY_NOW"}=l,{use_global:i=!1}=r,s=(0,K.globalTab)({slug:o}),c=P("additional")(o),u=e("jet-forms/actions").getLoading(n),d=P("labels"),m=L(o),p=function(e){return d(`${o}.${e}`)};return{gatewayGeneral:t.getGateway(),gatewayRequest:t.getCurrentRequest(),scenarioSource:c[a]||{},currentScenario:l[a]||{},CURRENT_SCENARIO:a,gatewayScenario:l,additionalSourceGateway:c,gatewaySpecific:r,gatewayRequestId:n,loadingGateway:u,getSpecificOrGlobal:(e,t="")=>i?s[e]||t:r[e]||t,globalGatewayLabel:d,specificGatewayLabel:m,customGatewayLabel:p,scenarioLabel:function(e){return p(`scenario.${a}.${e}`)}}},{useSelect:Z}=wp.data,Q=function(){const e=Z(e=>e("jet-forms/events").getAlwaysTypes()),t=[];for(const{value:n}of e)t.push(n);return[...new Set(t)]},{useSelect:ee}=wp.data,te=function(){var e;const t=H("_jf_gateways"),{scenario:n={}}=null!==(e=t[t?.gateway])&&void 0!==e?e:{};return ee(e=>{const r=e("jet-forms/events").getGatewayTypes(),l=[];for(const e of r){const r=!e.gateway||e.gateway===t.gateway,o=!e.scenario||e.scenario===n?.id;r&&o&&l.push(e.value)}return[...new Set(l)]},[t.gateway,n?.id])},{useSelect:ne}=wp.data,re=function({index:e}){const t=H("_jf_actions"),n=ne(e=>e("jet-forms/actions").getActionsMap(),[]);t.splice(e,1);const r=[];for(const e of t){const t=n?.[e.type]?.provideEvents;if("function"!=typeof t)continue;const{[e.type]:l={}}=e.settings;r.push(...t(l))}return[...new Set(r)]},{useSelect:le}=wp.data,{useSelect:oe}=wp.data,ae=function(e){const t=[...Q(),...te(),...re(e),...le(e=>e("jet-forms/events").getDynamicTypes().map(({value:e})=>e))];return oe(n=>n("jet-forms/events").filterList(e.type,t))},{useSelect:ie}=wp.data,{useSelect:se}=wp.data,ce=function(){const[e,t]=se(e=>[e("jet-forms/block-conditions").getOperators(),e("jet-forms/block-conditions").getFunctions()],[]);return{operators:e,functions:t}},{useBlockEditContext:ue}=wp.blockEditor,de=function(){const{clientId:e}=ue();return t=>t+"-"+e},me=window.wp.blockEditor,pe=window.wp.data,fe=function(e=null){const t=(0,me.useBlockEditContext)();let{clientId:n}=t;e&&(n=e);const r=(0,pe.useSelect)(e=>e("core/block-editor").getBlockAttributes(n),[n]),{updateBlock:l}=(0,pe.useDispatch)("core/block-editor");return[r,e=>{e="object"==typeof e?e:e(r),e=(0,pe.select)("jet-forms/fields").getSanitizedAttributes(e,t),l(n,{attributes:e})}]},he=function(e){const t=(0,me.useBlockProps)()["data-type"];return(0,pe.useSelect)(n=>!!n("core/blocks").getBlockType(t).attributes[e],[e,t])},{applyFilters:be}=wp.hooks,ge=function(t){return function(n){return(0,e.createElement)(t,{key:"wrapped-preset-editor",...n,parseValue:()=>{let e={};if("object"==typeof n.value)e={...n.value};else if(n.value&&"string"==typeof n.value)try{if(e=JSON.parse(n.value),"number"==typeof e)throw new Error}catch(t){e={}}return e.jet_preset=!0,e},isVisible:(e,t,n)=>(t.position&&n===t.position||!t.position||"query_var"!==e.from)&&((e,t)=>!t.condition&&!t.custom_condition||(t.custom_condition?"query_var"===t.custom_condition?"post"===e.from&&"query_var"===e.post_from||"user"===e.from&&"query_var"===e.user_from||"term"===e.from&&"query_var"===e.term_from||"query_var"===e.from:be("jet.fb.preset.editor.custom.condition",!1,t.custom_condition,e):!t.condition||e[t.condition.field]===t.condition.value))(e,t),isMapFieldVisible:(e,t,n)=>!((t.condition||t.parent_condition)&&(t.parent_condition&&!t.condition?e[t.parent_condition.field]!==t.parent_condition.value:t.parent_condition&&t.condition?!e.fields_map||!e.fields_map[n]||e.fields_map[n][t.condition.field]!==t.condition.value||e[t.parent_condition.field]!==t.parent_condition.value:!t.parent_condition&&t.condition&&(!e.fields_map||!e.fields_map[n]||e.fields_map[n][t.condition.field]!==t.condition.value))),isCurrentFieldVisible:(e,t,n)=>!((t.condition||t.parent_condition)&&(t.position&&n!==t.position||(t.parent_condition&&!t.condition?e[t.parent_condition.field]!==t.parent_condition.value:t.parent_condition&&t.condition?e["current_field_"+t.condition.field]!==t.condition.value||e[t.parent_condition.field]!==t.parent_condition.value:!t.parent_condition&&t.condition&&e["current_field_"+t.condition.field]!==t.condition.value))),excludeOptions:e=>{const t=[...e];return t.forEach((e,r)=>{n.excludeSources&&n.excludeSources.includes(e.value)&&t.splice(r,1)}),t}})}},ye=function({data:t,value:n,index:r,onChangeValue:o,isVisible:a,excludeOptions:i=e=>e,position:s}){switch(t.type){case"text":return a(n,t,s)&&(0,e.createElement)("div",{key:"field_"+t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledTextControl,{key:t.name+r,label:t.label,value:n[t.name],onChange:e=>{o(e,t.name)}}));case"select":return a(n,t,s)&&(0,e.createElement)("div",{key:"field_"+t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledSelectControl,{key:t.name+r,options:i(t.options),label:t.label,value:n[t.name],onChange:e=>{o(e,t.name)}}))}return null};function ve(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var we=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_e=ve(function(e){return we.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),Ee=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)})});const r=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&r.push(t[e]);return r.push(...n),r.join(" ")},Ce=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{n[t]=e[t]}),n},ke=(e,t)=>{},Se=function(t){let n="";return r=>{const l=(l,o)=>{const{as:a=t,class:i=n}=l;var s;const c=function(e,t){const n=Ce(t,["as","class"]);if(!e){const e="function"==typeof _e?{default:_e}:_e;Object.keys(n).forEach(t=>{e.default(t)||delete n[t]})}return n}(void 0===r.propsAsIs?!("string"==typeof a&&-1===a.indexOf("-")&&(s=a[0],s.toUpperCase()!==s)):r.propsAsIs,l);c.ref=o,c.className=r.atomic?Ee(r.class,c.className||i):Ee(c.className||i,r.class);const{vars:u}=r;if(u){const e={};for(const t in u){const n=u[t],o=n[0],a=n[1]||"",i="function"==typeof o?o(l):o;ke(0,r.name),e[`--${t}`]=`${i}${a}`}const t=c.style||{},n=Object.keys(t);n.length>0&&n.forEach(n=>{e[n]=t[n]}),c.style=e}return t.__wyw_meta&&t!==a?(c.as=a,(0,e.createElement)(t,c)):(0,e.createElement)(a,c)},o=e.forwardRef?(0,e.forwardRef)(l):e=>{const t=Ce(e,["innerRef"]);return l(t,e.innerRef)};return o.displayName=r.name,o.__wyw_meta={className:r.class||n,extends:t},o}};const je=Se("select")({name:"StyledSelect",class:"syma2t4",propsAsIs:!1}),xe=function({id:t,label:n,onChange:r,options:l=[],value:o}){return!C(l)&&(0,e.createElement)(je,{id:t,className:"components-select-control__input",onChange:e=>{r(e.target.value)},value:o},(0,e.createElement)("option",{key:`${n}-placeholder`,value:""},"--"),l.map((t,n)=>!C(t.values)&&(0,e.createElement)("optgroup",{key:`${t.label}-${n}`,label:t.label},t.values.map((t,r)=>(0,e.createElement)("option",{key:`${t.value}-${r}-${n}`,value:t.value,disabled:t.disabled},t.label)))))};n(4023);const Ne=function({data:t,value:n,index:r,currentState:o,onChangeValue:a,isCurrentFieldVisible:i}){switch(t.type){case"text":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledTextControl,{key:"control_"+t.name+r,placeholder:t.label,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}));case"select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledSelectControl,{key:"control_"+t.name+r,options:t.options,label:t.label,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}));case"custom_select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(u.CustomSelectControl,{className:"jet-custom-select-control",label:t.label,options:t.options,onChange:({selectedItem:e})=>{n=e.key,a(n,"current_field_"+t.name)},value:t.options.find(e=>e.key===n)}));case"grouped_select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r},(0,e.createElement)(l.Label,null,t.label),(0,e.createElement)(xe,{options:t.options,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}))}return null},{createContext:Fe}=wp.element,Te=Fe({});let Be=function({value:t,onChange:n,parseValue:r,excludeOptions:a,isCurrentFieldVisible:i,isVisible:s}){var c,m;const p="dynamic",f=r(t),h=(0,o.useContext)(Te),b=(e,t)=>{n(()=>JSON.stringify({...f,[t]:e}))};return(0,e.createElement)(l.StyledFlexControl,{direction:"column",gap:4},window.JetFormEditorData.presetConfig.global_fields.map((t,n)=>(0,e.createElement)(ye,{key:`current_field_${t.name}_${n}`,value:f,index:n,data:t,excludeOptions:a,onChangeValue:b,isVisible:s,position:p})),window.JetFormEditorData.presetConfig.map_fields.map((t,n)=>(0,e.createElement)(Ne,{key:`current_field_${t.name}_${n}`,currentState:f,value:f["current_field_"+t.name],index:n,data:t,onChangeValue:b,isCurrentFieldVisible:i,position:p})),h?.show&&(0,e.createElement)(u.ToggleControl,{label:(0,d.__)("Restrict access","jet-form-builder"),help:null===(c=f.restricted)||void 0===c||c?(0,d.__)("Will set default value from preset only for users who allowed to edit this value","jet-form-builder"):(0,d.__)("Always set default value from preset. Make sure it can't be accidentally changed from form Actions","jet-form-builder"),checked:null===(m=f.restricted)||void 0===m||m,onChange:e=>{b(e?void 0:e,"restricted")}}))};Be=ge(Be);const Ie=Be,{SelectControl:Ae,TextControl:Oe}=wp.components;class Re extends wp.element.Component{constructor(e){super(e),this.fieldTypes=this.props.fieldTypes,this.taxonomiesList=this.props.taxonomiesList,this.className=this.props.className,this.metaProp=this.props.metaProp?this.props.metaProp:"post_meta",this.termsProp=this.props.termsProp?this.props.termsProp:"post_terms",this.index=this.props.index,this.init(),this.bindFunctions(),this.state={type:this.getFieldType(this.props.fieldValue)}}bindFunctions(){this.onChangeType=this.onChangeType.bind(this),this.onChangeValue=this.onChangeValue.bind(this)}init(){if(this.id=`inspector-select-control-${this.index}`,this.preparedTaxes=[],this.taxPrefix="jet_tax__",this.taxonomiesList)for(let e=0;e{const t=wp.data.select(qe).getBlockType(`jet-forms/${e}`);return{title:t.title,icon:t.icon.src}}))}},Je=class{constructor(){this.items=[]}push(e){this.items.push(new Ve(e))}},{messages:$e}=window.jetFormValidation,{useState:Ue}=wp.element,He=$e.sort((e,t)=>e.supported.length-t.supported.length);function We(){const e=new Je;for(const t of He)e.push(t);return e.items}const ze=function(e,t){1>=e.label.length||e.name&&"field_name"!==e.name||t({name:_(e.label)})},{BaseControl:Ye}=wp.components,{RichText:Ke}=wp.blockEditor;let{__experimentalUseFocusOutside:Xe,useFocusOutside:Ze}=wp.compose;Ze=Ze||Xe;const{__:Qe}=wp.i18n;function et(t){return(0,e.createElement)("small",{style:{whiteSpace:"nowrap",padding:"0.2em 0.8em 0 0",color:"#8e8a8a"}},t)}const{Button:tt,Popover:nt,PanelBody:rt}=wp.components,{useState:lt}=wp.element,{__:ot}=wp.i18n,{TextControl:at}=wp.components,it=function({label:t,help:n}){const[r,l]=fe();return he("placeholder")?(0,e.createElement)(at,{label:null!=t?t:ot("Placeholder","jet-form-builder"),value:r.placeholder,help:null!=n?n:"",onChange:e=>l({placeholder:e})}):null},{__:st}=wp.i18n,{ToggleControl:ct}=wp.components,ut=function({label:t,help:n}){const[r,l]=fe();return he("add_prev")?(0,e.createElement)(ct,{label:null!=t?t:st("Add Prev Page Button","jet-form-builder"),help:null!=n?n:st('It is recommended to use the "Action Button" block with the "Go to Prev Page" type',"jet-form-builder"),checked:r.add_prev,onChange:e=>l({add_prev:e})}):null},dt=function({children:t,className:n="",style:r={},...l}){return(0,e.createElement)("p",{className:"jet-fb-base-control__help"+(n?` ${n}`:""),style:{fontSize:"12px",fontStyle:"normal",color:"rgb(117, 117, 117)",marginTop:"0px",...r},...l},t)},{useBlockEditContext:mt}=wp.blockEditor,{useSelect:pt}=wp.data,{__:ft}=wp.i18n,ht=function({name:t=!1,children:n=null}){const{name:r}=mt(),l=pt(e=>{var n;if(!1===t)return!1;const l=e("core/blocks").getBlockType(r);return null!==(n=l.attributes[t]?.jfb)&&void 0!==n&&n},[r,t]);return l?(0,e.createElement)(dt,{className:"jet-fb mb-24"},n&&(0,e.createElement)(e.Fragment,null,n," "),l?.shortcode&&!l.rich&&!n&&ft("You can use shortcodes here.","jet-form-builder"),l?.shortcode&&!l.rich&&n&&ft("You can also use shortcodes here.","jet-form-builder")):Boolean(n)&&(0,e.createElement)(dt,{className:"jet-fb mb-24"},n)},{__:bt}=wp.i18n,{TextControl:gt}=wp.components,yt=function({label:t,help:n}){const[r,l]=fe();return r.add_prev?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(gt,{label:null!=t?t:bt("Prev Page Button Label","jet-form-builder"),value:r.prev_label,className:"jet-fb m-unset",onChange:e=>l({prev_label:e})}),(0,e.createElement)(ht,{name:"prev_label"},null!=n?n:"")):null},{__:vt}=wp.i18n,{SelectControl:wt}=wp.components,_t=function({label:t,help:n}){const[r,l]=fe();return he("visibility")?(0,e.createElement)(wt,{options:[{value:"all",label:vt("For all","jet-form-builder")},{value:"logged_id",label:vt("Only for logged in users","jet-form-builder")},{value:"not_logged_in",label:vt("Only for NOT-logged in users","jet-form-builder")}],label:null!=t?t:vt("Field Visibility","jet-form-builder"),help:null!=n?n:"",value:r.visibility,onChange:e=>l({visibility:e})}):null},{__:Et}=wp.i18n,{TextControl:Ct}=wp.components,kt=function({label:t,help:n}){const[r,l]=fe();return(0,e.createElement)(Ct,{label:null!=t?t:Et("CSS Class Name","jet-form-builder"),value:r.class_name,help:null!=n?n:"",onChange:e=>l({class_name:e})})},{InspectorAdvancedControls:St}=wp.blockEditor,{__:jt}=wp.i18n,{TextControl:xt}=wp.components;let{__experimentalUseFocusOutside:Nt,useFocusOutside:Ft}=wp.compose;Ft=Ft||Nt;const Tt=function({label:t,help:n}){const[r,l]=fe(),o=Ft(function(){ze(r,l)});return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(xt,{label:null!=t?t:jt("Field Label","jet-form-builder"),className:"jet-fb m-unset",value:r.label,onChange:e=>l({label:e}),...o}),(0,e.createElement)(ht,{name:"label"},null!=n?n:""))},Bt={};for(const{id:e,name:t}of window.jetFormActionTypes)Bt[e]=t;const{__:It}=wp.i18n,{TextControl:At,Icon:Ot,Flex:Rt,Tooltip:Mt}=wp.components,{useInstanceId:Pt}=wp.compose,Lt=function t({label:n,help:r}){const[l,o]=fe(),{message:a}=function(){const{clientId:e}=(0,me.useBlockEditContext)(),t=(0,K.useRequestFields)({returnOnEmptyCurrentAction:!1}),{inFormFields:n,hasParent:r,fieldNames:l}=(0,pe.useSelect)(t=>{var n;const r=t("jet-forms/fields").getBlockById(e);return{hasParent:!!r?.parentBlock,fieldNames:null!==(n=r?.fields?.map?.(({value:e})=>e))&&void 0!==n?n:[],inFormFields:t("jet-forms/fields").isUniqueName(e)}},[e]);if(!n)return{error:"not_unique_in_fields",message:(0,d.__)("The form field name must be unique. Please change it","jet-form-builder")};if(r)return{};const o=t.find(({value:e})=>l.includes(e));return o?{error:"not_unique_in_actions",message:o?.from?(0,d.sprintf)((0,d.__)("The %s action already uses this field name. Please change it","jet-form-builder"),Bt[o.from]):(0,d.__)("The form field name must be unique. Please change it","jet-form-builder")}:{}}(),i=Pt(t,"AdvancedInspectorControl");return he("name")?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Rt,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,e.createElement)("label",{htmlFor:i,className:"jet-fb label"},null!=n?n:It("Form field name","jet-form-builder")),!!a&&(0,e.createElement)(Mt,{text:a,delay:200,placement:"top"},(0,e.createElement)(Ot,{icon:"warning",style:{color:"orange",cursor:"help"}}))),(0,e.createElement)(At,{id:i,value:l.name,help:null!=r?r:It("Should contain only lowercase Latin letters, numbers, “-”, or “_”. No spaces allowed.","jet-form-builder"),onChange:e=>o({name:e})})):null},{__:Gt}=wp.i18n,{TextControl:Dt}=wp.components,qt=function({label:t,help:n}){const[r,l]=fe();return he("desc")?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Dt,{label:null!=t?t:Gt("Field Description","jet-form-builder"),value:r.desc,className:"jet-fb m-unset",onChange:e=>l({desc:e})}),(0,e.createElement)(ht,{name:"desc"},null!=n?n:"")):null},Vt=function({value:t,onChange:n,title:r}){const[a,i]=(0,o.useState)(!1),[s,c]=(0,o.useState)(t);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(u.Button,{icon:"database",variant:"tertiary",isSmall:!0,className:"jet-fb-is-thick",onClick:()=>i(!0)}),a&&(0,e.createElement)(u.Modal,{size:"medium",title:null!=r?r:(0,d.__)("Edit Preset","jet-form-builder"),onRequestClose:()=>i(!1),className:l.ModalFooterStyle},(0,e.createElement)(Ie,{key:"dynamic_key_preset",value:s,onChange:c}),(0,e.createElement)(l.StickyModalActions,null,(0,e.createElement)(u.Button,{isPrimary:!0,onClick:()=>{n(s),i(!1)}},(0,d.__)("Update","jet-form-builder")),(0,e.createElement)(u.Button,{isSecondary:!0,onClick:()=>{i(!1)}},(0,d.__)("Cancel","jet-form-builder")))))},{createContext:Jt}=wp.element,$t=Jt(!1),{useState:Ut,useRef:Ht}=wp.element,{Button:Wt,Popover:zt}=wp.components,Yt=function({children:t,...n}){const[r,l]=Ut(!1),o=Ht();return(0,e.createElement)($t.Provider,{value:{showPopover:r,setShowPopover:l}},(0,e.createElement)(Wt,{ref:o,icon:"admin-tools",variant:"tertiary",isSmall:!0,className:"jet-fb-is-thick",onClick:()=>l(e=>!e),...n}),r&&(0,e.createElement)(zt,{anchor:o.current,position:"top-start",noArrow:!1,variant:"toolbar",onFocusOutside:e=>{e.relatedTarget!==o.current&&l(!1)},onClose:()=>l(!1)},t))},{createContext:Kt}=wp.element,Xt=Kt([]),{createContext:Zt}=wp.element,Qt=Zt({name:""});function en(){}en.prototype={fullName(){},fullHelp(){}};const tn=en,{useState:nn}=wp.element,{Button:rn}=wp.components,ln=function({current:t,children:n}){const[r,l]=nn(!1);if(!(t instanceof tn))return(0,e.createElement)("li",null,(0,e.createElement)(Qt.Provider,{value:t},n));const o=t.fullHelp.bind(t);return(0,e.createElement)("li",null,(0,e.createElement)(Qt.Provider,{value:t},(0,e.createElement)("div",{style:{display:"flex",alignItems:"center",gap:"0.6em"}},(0,e.createElement)(rn,{isSmall:!0,variant:"tertiary",icon:r?"arrow-down":"arrow-right",className:"jet-fb-is-thick",onClick:()=>l(e=>!e)}),n),r&&(0,e.createElement)(o,null)))},{Children:on,cloneElement:an}=wp.element,{PanelBody:sn}=wp.components,cn=function({title:t,items:n,children:r,initialOpen:l}){const o=n.map((t,n)=>(0,e.createElement)(ln,{key:n,current:t}));return(0,e.createElement)(sn,{title:t,initialOpen:l},(0,e.createElement)("ul",{style:{padding:"0 0.5em"}},on.map(o,e=>an(e,{},r))))},{useContext:un}=wp.element,{__:dn}=wp.i18n,mn=function({children:t,fields:n,...r}){var l,o;const a=un(Xt),i=[...null!==(l=a.beforeFields)&&void 0!==l?l:[],...n,...null!==(o=a.afterFields)&&void 0!==o?o:[]];return i.length||a?.extra?.length||a?.filters?.length?(0,e.createElement)(Yt,{...r},Boolean(i.length)&&(0,e.createElement)(cn,{title:dn("Fields:","jet-form-builder"),items:i,initialOpen:!0},t),Boolean(a?.extra?.length)&&(0,e.createElement)(cn,{title:dn("Extra macros:","jet-form-builder"),items:a.extra},t),Boolean(a?.filters?.length)&&(0,e.createElement)(cn,{title:dn("Filters:","jet-form-builder"),items:a.filters},t)):null},{useContext:pn}=wp.element,{Button:fn}=wp.components,hn=function({onClick:t}){const n=pn(Qt),r=n.fullName?n.fullName():`%${n.value}%`,l="function"==typeof n.label?n.label():n.label||r,o=Boolean(n.is_repeater)?`${l} (repeater)`:l,a=Boolean(n.is_repeater_child)?"- ":"";return n.supports_option_label?(0,e.createElement)("div",{className:"jet-fb-macro-field-item",style:{whiteSpace:"nowrap"}},(0,e.createElement)("div",{className:"jet-fb-macro-field-item__label"},o),(0,e.createElement)("div",{className:"jet-fb-macro-field-item__formats"},"- ",(0,e.createElement)(fn,{isLink:!0,onClick:()=>t(r,n)},"Format: value")," ",(0,e.createElement)("br",null),"- ",(0,e.createElement)(fn,{isLink:!0,onClick:()=>t(r,n,"option-label")},"Format: label value"))):(0,e.createElement)(e.Fragment,null,a,(0,e.createElement)(fn,{style:{whiteSpace:"nowrap"},isLink:!0,onClick:()=>t(r,n)},o))},bn=window.jfb.blocksToActions,gn=["jet-forms/checkbox-field","jet-forms/radio-field","jet-forms/select-field"];function yn(e){return gn.includes(e?.name)}function vn(e={}){return e.name||e.field_name||e.fieldName||""}const wn=function({onClick:t=()=>{},withCurrent:n=!1,...r}){const l=(0,bn.useFields)({excludeCurrent:!n}),o=(0,pe.useSelect)(e=>{const t=e("core/block-editor");return function(e=[]){const t={},n=(e,r=null)=>{(e||[]).forEach(e=>{const l=vn(e?.attributes),o="jet-forms/repeater-field"===e?.name;l&&(t[l]={is_repeater:o,is_repeater_child:Boolean(r)&&!o,repeater_name:r?vn(r.attributes):"",supports_option_label:yn(e)});const a=o?e:r;e?.innerBlocks?.length&&n(e.innerBlocks,a)})};return n(e),t}(t?.getBlocks?.()||[])},[]),a=(l||[]).map(e=>{const t=o?.[e?.value];return t?{...e,...t}:e});return(0,e.createElement)(mn,{withCurrent:n,fields:a,...r},(0,e.createElement)(hn,{onClick:t}))},{Flex:_n}=wp.components,En=function({label:t,children:n,...r}){return(0,e.createElement)(_n,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,e.createElement)("label",{className:"jet-fb label",...r},t),n)},{FlexItem:Cn}=wp.components,{useInstanceId:kn}=wp.compose,Sn=function({children:t,value:n,label:r,onChangePreset:l=!1,onChangeMacros:o=!1}){const a=kn(Cn,"jfb-AdvancedInspectorControl");return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(En,{label:r,htmlFor:a},!1!==l&&(0,e.createElement)(Vt,{value:n,onChange:l}),!1!==o&&(0,e.createElement)(wn,{onClick:o})),"function"==typeof t?t({instanceId:a}):t)};function jn(){tn.call(this)}jn.prototype=Object.create(tn.prototype),jn.prototype.isServerSide=!1,jn.prototype.isClientSide=!1,jn.prototype.name="",jn.prototype.namespace="CT",jn.prototype.help=null,jn.prototype.fullHelp=function(){return this.help},jn.prototype.fullName=function(){return`%${this.namespace}::${this.name}%`};const xn=jn,{useSelect:Nn}=wp.data,{__:Fn}=wp.i18n,Tn=new xn;Tn.fullName=()=>"%this%",Tn.fullHelp=()=>Fn("Returns current field value","jet-form-builder");const Bn=function({children:t,withThis:n=!1}){const r=Nn(e=>e("jet-forms/macros").getClientMacros(),[]),l=Nn(e=>e("jet-forms/macros").getClientFilters(),[]),o=n?{extra:r,afterFields:[Tn],filters:l}:{extra:r,filters:l};return(0,e.createElement)(Xt.Provider,{value:o},t)};function In(e,t,n){const r=n.selectionStart,l=n.selectionEnd;(e=null!=e?e:"").length||(t=`'${t}'`);let o=e.slice(0,r);const a=e.slice(l);return o+=t,setTimeout(()=>{n.focus(),n.selectionStart=o.length,n.selectionEnd=o.length}),o+a}const{useRef:An}=wp.element,On=function(e){var t;const[n,r]=fe(),l=null!==(t=n[e])&&void 0!==t?t:"",o=An();return[o,t=>{r({[e]:In(l,t,o.current)})}]},{__:Rn}=wp.i18n,{TextControl:Mn}=wp.components,Pn=function({label:t,help:n,hasMacro:r=!0}){const[l,o]=fe(),[a,i]=On("default");return he("default")?(0,e.createElement)(Te.Provider,{value:{show:!0}},(0,e.createElement)(Bn,null,(0,e.createElement)(Sn,{value:l.default,label:null!=t?t:Rn("Default Value","jet-form-builder"),onChangePreset:e=>o({default:e}),onChangeMacros:!!r&&i},({instanceId:t})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Mn,{ref:a,id:t,value:l.default,className:"jet-fb m-unset",onChange:e=>o({default:e})}),(0,e.createElement)(ht,{name:"default"},null!=n?n:""))))):null},{PanelBody:Ln}=wp.components,{__:Gn}=wp.i18n,{BlockControls:Dn}=wp.blockEditor,{useCopyToClipboard:qn}=wp.compose,{TextControl:Vn,ToolbarGroup:Jn,ToolbarItem:$n,ToolbarButton:Un}=wp.components,Hn=function({children:t=null}){const n=de(),[r,l]=fe(),o=$(`Copied "${r.name}" to clipboard.`),a=qn(r.name,()=>o(!0));return(0,e.createElement)(Dn,{key:n("ToolBarFields-BlockControls")},(0,e.createElement)(Jn,{key:n("ToolBarFields-ToolbarGroup"),className:"jet-fb-block-toolbar"},(0,e.createElement)(Un,{isSmall:!0,icon:"admin-page",showTooltip:!0,shortcut:"Copy name",ref:a}),(0,e.createElement)($n,{as:Vn,value:r.name,onChange:e=>l({name:e})}),t))},{__:Wn}=wp.i18n,{ToolbarButton:zn}=wp.components,{BlockControls:Yn}=wp.blockEditor,{SVG:Kn,Path:Xn}=wp.primitives,Zn=function(){const[t,n]=fe();return he("required")?(0,e.createElement)(Yn,{group:"block"},(0,e.createElement)(zn,{icon:(0,e.createElement)(Kn,{xmlns:"http://www.w3.org/2000/svg",width:"24px",height:"24px",viewBox:"0 0 24 24",fill:"none"},(0,e.createElement)(Xn,{d:"M12 4L12 20",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Xn,{d:"M17.3137 6.00024L6.00001 17.314",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Xn,{d:"M20 12L4 12",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Xn,{d:"M17.3137 17.3137L6.00001 6.00001",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),title:t.required?Wn("Click to make this field optional","jet-form-builder"):Wn("Click to make this field required","jet-form-builder"),onClick:()=>n({required:!t.required}),isActive:t.required})):null},{__:Qn}=wp.i18n,{PanelBody:er}=wp.components,{applyFilters:tr}=wp.hooks,{useBlockProps:nr}=wp.blockEditor,{applyFilters:rr}=wp.hooks,lr=()=>rr("jet.fb.register.fields.controls",{}),or=window.wp.compose,ar=(0,or.compose)((0,pe.withSelect)(X))(function({initialLabel:t="Valid",label:n="InValid",apiArgs:r={},gatewayRequestId:l,loadingGateway:o,onLoading:a=()=>{},onSuccess:i=()=>{},onFail:s=()=>{},isHidden:c=!1}){return(0,e.createElement)(K.FetchApiButton,{id:l,loadingState:o,initialLabel:t,label:n,apiArgs:r,onFail:s,onLoading:a,onSuccess:i,isHidden:c})}),ir="CLEAR_GATEWAY",sr="CLEAR_SCENARIO",cr="SET_CURRENT_GATEWAY_SCENARIO",ur="SET_CURRENT_GATEWAY",dr="SET_CURRENT_GATEWAY_SPECIFIC",mr="SET_CURRENT_GATEWAY_INNER",pr="SET_CURRENT_REQUEST",fr="SET_CURRENT_SCENARIO",hr="REGISTER_EVENT_TYPE",br="HARD_SET_CURRENT_GATEWAY",gr="HARD_SET_CURRENT_GATEWAY_SPECIFIC",yr={getCurrentRequestId:e=>e.currentRequest.id,getCurrentRequest:e=>e.currentRequest,getScenario:e=>e.currentScenario,getScenarioId:e=>e.currentScenario?.id,getGatewayId:e=>e.currentGateway?.gateway,getGateway:e=>e.currentGateway,getEventTypes:e=>e.eventTypes},vr={...yr,getGatewaySpecific:e=>e.currentGateway[yr.getGatewayId(e)]||{}},wr={[ir]:e=>({...e,currentGateway:{}}),[sr]:e=>({...e,currentScenario:{}}),[cr]:(e,t)=>({...e,currentScenario:{...e.currentScenario,...t.item||{}}}),[ur]:(e,t)=>({...e,currentGateway:{...e.currentGateway,...t.item}}),[dr]:(e,t)=>({...e,currentGateway:{...e.currentGateway,[e.currentGateway.gateway]:{...vr.getGatewaySpecific(e),...t.item}}}),[mr]:(e,t)=>{const{key:n,value:r}=t.item;return{...e,currentGateway:{...e.currentGateway,[n]:{...e.currentGateway[n]||{},...r}}}},[pr]:(e,t)=>{const n=[vr.getGatewayId(e),t.item?.id].filter(e=>e);return t.item.id=n.join("/"),{...e,currentRequest:t.item}},[fr]:(e,t)=>({...e,currentScenario:{...e.currentScenario,[e.currentScenario?.id]:{...e.currentScenario[e.currentScenario?.id]||{},...t.item||{}}}}),[br]:(e,t)=>(t.item&&(e.currentGateway[t.item]=t.value),{...e}),[gr]:(e,t)=>(t.item&&e.currentGateway?.gateway&&(e.currentGateway[e.currentGateway?.gateway]={},e.currentGateway[e.currentGateway?.gateway][t.item]=t.value),{...e}),[hr]:(e,t)=>{var n,r;const l={...t.item,gateway:null!==(n=t.item?.gateway)&&void 0!==n?n:e.currentGateway?.gateway,scenario:null!==(r=t.item?.scenario)&&void 0!==r?r:e.currentScenario?.id};return e.eventTypes.push(l),e}};Object.defineProperty(Er,"name",{value:"default",configurable:!0});const _r={currentRequest:{id:-1},currentGateway:{},currentScenario:{},eventTypes:[]};function Er(e=_r,t){const n=wr[t?.type];return n?n(e,t):e}const Cr={clearGateway:()=>({type:ir}),clearScenario:()=>({type:sr}),setRequest:e=>({type:pr,item:e}),setGateway:e=>({type:ur,item:e}),setGatewayInner:e=>({type:mr,item:e}),setGatewaySpecific:e=>({type:dr,item:e}),setScenario:e=>({type:cr,item:e}),setCurrentScenario:e=>({type:fr,item:e}),registerEventType:e=>({type:hr,item:e}),hardSetGateway:(e,t="")=>({type:br,item:e,value:t}),hardSetGatewaySpecific:(e,t="")=>({type:gr,item:e,value:t})},{createReduxStore:kr}=wp.data,Sr=kr("jet-forms/gateways",{reducer:Er,actions:Cr,selectors:vr}),jr="REGISTER",xr="UNREGISTER",Nr="LOCK_ACTIONS",Fr="CLEAR_DYNAMIC_EVENTS",Tr={getTypeIndex:(e,t)=>e.types.findIndex(e=>e.value===t),getTypes:e=>e.types,getGatewayTypes:e=>e.types.filter(e=>"gateway"in e),getAlwaysTypes:e=>e.types.filter(e=>"always"in e),getDynamicTypes:e=>e.types.filter(({isDynamic:e})=>e),getType(e,t){const n=Tr.getTypeIndex(e,t);return e.types[n]},getUnsupported(e,t){var n;const r=null!==(n=e.lockedActions[t])&&void 0!==n&&n;return!1===r?[]:r.unsupported},getSupported(e,t){var n;const r=null!==(n=e.lockedActions[t])&&void 0!==n&&n;return!1===r?[]:r.supported},isValid(e,t,n){const r=Tr.getUnsupported(e,t);if(r.length&&r.includes(n))return!1;const l=Tr.getSupported(e,t);return!l.length||l.includes(n)},filterList:(e,t,n)=>n.filter(n=>Tr.isValid(e,t,n)),getHelpMap(e){const t={};for(const{value:n,help:r}of e.types)t[n]=r;return t},getEventValuesByGateway(e){const t={};for(const n of e.types){if(!n.gateway)continue;const e=n.gateway;t[e]||(t[e]=[]),t[e].push(n.value)}return t}},Br={...Tr},Ir={[jr](e,t){const{types:n}=e;for(const r of t.items){r.title=r.label;const t=Br.getTypeIndex(e,r.value);-1===t?n.push({...r}):n[t]={...r}}return{...e,types:n}},[Nr](e){for(const{id:n,self:r}of window.jetFormActionTypes){var t;const l=null!==(t=window[r])&&void 0!==t&&t;if(!1===l)continue;const{__unsupported_events:o,__supported_events:a}=l,i={unsupported:e.types.filter(({self:e})=>o.includes(e)).map(({value:e})=>e),supported:e.types.filter(({self:e})=>a.includes(e)).map(({value:e})=>e)};(i.supported.length||i.unsupported.length)&&(e.lockedActions[n]=i)}return e},[xr](e,t){const{types:n}=t;return e.types=e.types.filter(({value:e})=>!n.includes(e)),e},[Fr]:e=>(e.types=e.types.filter(({isDynamic:e=!1})=>!e),e)};Object.defineProperty(Or,"name",{value:"default",configurable:!0});const Ar={types:[],labels:{},lockedActions:{}};function Or(e=Ar,t){const n=Ir[t?.type];return n?n(e,t):e}const Rr={register:e=>({type:jr,items:e}),lockActions:()=>({type:Nr}),unRegister:e=>({type:xr,types:e}),clearDynamicEvents:()=>({type:Fr})},{createReduxStore:Mr}=wp.data,Pr=Mr("jet-forms/events",{reducer:Or,actions:Rr,selectors:Br}),Lr="REGISTER",Gr="ADD_RENDER_STATE",Dr="ADD_RENDER_STATES",qr="DELETE_RENDER_STATES",{doAction:Vr}=wp.hooks,Jr={...{[Lr](e,t){const{operators:n,functions:r,render_states:l}=t.items;return e.operators=[...n],e.functions=[...r],e.renderStates=[...l],Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e},[Gr]:(e,t)=>(e.renderStates.push(t.item),Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e),[Dr](e,t){for(const n of t.items)e.renderStates.push(n);return Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e},[qr](e,t){const n=Array.isArray(t.items)?[...t.items]:[t.items];return e.renderStates=e.renderStates.filter(({value:e})=>!n.includes(e)),Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e}}},{__:$r}=wp.i18n,Ur=function(e,t="code"){var n;if(!function(e){let t;try{t=JSON.parse(e)}catch(e){return!1}return!!t?.jet_preset}(e=null!=e?e:""))return e;const r=JSON.parse(e),l=$r("Preset from","jet-form-builder"),o=null!==(n=r?.from)&&void 0!==n?n:"(empty)";let a;switch(t){case"code":a=`${o}`;break;case"b":a=`${o}`}return[l,a].join(" ")};Object.defineProperty(Kr,"name",{value:"default",configurable:!0});const{select:Hr}=wp.data,{__:Wr}=wp.i18n,zr=function(e){const t=Hr("jet-forms/block-conditions").getOperator(e?.operator);return t?[`${e?.field||"(no field)"}`,t.label].join(" "):""},Yr={functions:[],operators:[],conditionReaders:{default(e){const t=Hr("jet-forms/block-conditions").getOperator(e?.operator);if(!t)return"";const n=e?.field||"(no field)",r=Ur(e.value,"b")||"(no value)";return[`${n}`,t.label,`${r}`].join(" ")},empty:zr,not_empty:zr,render_state(e){var t;const n=(null!==(t=e?.render_state)&&void 0!==t?t:[]).map(e=>`${e}`);return[1===n.length?Wr("Is render state","jet-form-builder"):Wr("One of the render states","jet-form-builder"),n.join(", ")].join(": ")}},renderStates:[]};function Kr(e=Yr,t){const n=Jr[t?.type];return n?n(e,t):e}const Xr={register:e=>({type:Lr,items:e}),addRenderState:e=>({type:Gr,item:e}),addRenderStates:e=>({type:Dr,items:e}),deleteRenderStates:e=>({type:qr,items:e})},Zr={getFunctions:e=>e.functions,getOperators:e=>e.operators,getRenderStates:e=>e.renderStates,getSwitchableRenderStates:e=>e.renderStates.filter(({is_custom:e=!1,can_be_switched:t=!1})=>e||t),getCustomRenderStates:e=>e.renderStates.filter(({is_custom:e=!1})=>e),getOperator(e,t){const n=e.operators.findIndex(({value:e})=>e===t);return-1!==n&&e.operators[n]},readCondition(e,t){var n;const{operator:r=""}=t;if(!r)return"";const l=null!==(n=e.conditionReaders[r])&&void 0!==n&&n;return"function"==typeof l?l(t):e.conditionReaders.default(t)},getFunction:(e,t)=>e.functions.find(({value:e})=>e===t),getFunctionDisplay:(e,t)=>Zr.getFunction(e,t)?.display},Qr={...Zr},{createReduxStore:el}=wp.data,tl=el("jet-forms/block-conditions",{reducer:Kr,actions:Xr,selectors:Qr}),nl="REGISTER_MACRO",rl={[nl](e,t){const{items:n,isClient:r}=t,l=Array.isArray(n)?n:[n];for(const e of l)if(!(e instanceof xn))throw new Error("^^^ Invalid macro item ^^^");return r?e.clientMacros.push(...l):e.serverMacros.push(...l),e}},{__:ll}=wp.i18n;function ol(){xn.call(this),this.name="CurrentDate",this.isClientSide=!0,this.fullHelp=()=>(0,e.createElement)(e.Fragment,null,ll("Returns the current timestamp. Replacing","jet-form-builder")," ",(0,e.createElement)("code",null,"Date.now()"))}ol.prototype=Object.create(xn.prototype);const al=ol,{__:il}=wp.i18n;function sl(){xn.call(this),this.name="Min_In_Sec",this.isClientSide=!0,this.help=il("Number of milliseconds in one minute","jet-form-builder")}sl.prototype=Object.create(xn.prototype);const cl=sl,{__:ul}=wp.i18n;function dl(){xn.call(this),this.name="Month_In_Sec",this.isClientSide=!0,this.help=ul("Number of milliseconds in one month","jet-form-builder")}dl.prototype=Object.create(xn.prototype);const ml=dl,{__:pl}=wp.i18n;function fl(){xn.call(this),this.name="Day_In_Sec",this.isClientSide=!0,this.help=pl("Number of milliseconds in one day","jet-form-builder")}fl.prototype=Object.create(xn.prototype);const hl=fl,{__:bl}=wp.i18n;function gl(){xn.call(this),this.name="Year_In_Sec",this.isClientSide=!0,this.help=bl("Number of milliseconds in one year","jet-form-builder")}gl.prototype=Object.create(xn.prototype);const yl=gl,{__:vl}=wp.i18n;function wl(){tn.call(this)}wl.prototype=Object.create(tn.prototype),wl.prototype.docArgument=!1,wl.prototype.help=null,wl.prototype.isServerSide=!1,wl.prototype.isClientSide=!1,wl.prototype.getArgumentsList=function(){if(!this.docArgument||!this.docArgument.length)return null;const e=Array.isArray(this.docArgument)?this.docArgument:[this.docArgument],t=[];for(const n of e)switch(n){case"string":case String:t.push(vl("String","jet-form-builder"));break;case"number":case Number:t.push(vl("Number","jet-form-builder"));break;case"array":case Array:t.push(vl("Array","jet-form-builder"));break;case"any":t.push(vl("Anything","jet-form-builder"))}return t.join(" | ")},wl.prototype.fullHelp=function(){if(!this.docArgument&&!this.help)return null;const t=this.help,n=this.getArgumentsList();return(0,e.createElement)(e.Fragment,null,n&&(0,e.createElement)("div",{style:{marginBottom:"0.5em"}},vl("Arguments:","jet-form-builder")+" ",(0,e.createElement)("code",null,n)),"function"!=typeof t?t:(0,e.createElement)(t,null))};const _l=wl,{__:El}=wp.i18n;function Cl(){_l.call(this),this.label=()=>El("addDay","jet-form-builder"),this.fullName=()=>"|addDay",this.docArgument=Number,this.isClientSide=!0,this.help=El("Adds the passed number of days via an argument to a macro that returns a date or a timestamp.","jet-form-builder")}Cl.prototype=Object.create(_l.prototype);const kl=Cl,{__:Sl}=wp.i18n;function jl(){_l.call(this),this.label=()=>Sl("addMonth","jet-form-builder"),this.fullName=()=>"|addMonth",this.docArgument=Number,this.isClientSide=!0,this.help=Sl("Adds the passed number of months via an argument to a macro that returns a date or a timestamp.","jet-form-builder")}jl.prototype=Object.create(_l.prototype);const xl=jl,{__:Nl}=wp.i18n;function Fl(){_l.call(this),this.label=()=>Nl("addYear","jet-form-builder"),this.fullName=()=>"|addYear",this.docArgument=Number,this.isClientSide=!0,this.help=Nl("Adds the passed number of years through an argument to a macro that returns a date or a timestamp.","jet-form-builder")}Fl.prototype=Object.create(_l.prototype);const Tl=Fl,{__:Bl}=wp.i18n;function Il(){_l.call(this),this.label=()=>Bl("ifEmpty","jet-form-builder"),this.fullName=()=>"|ifEmpty",this.docArgument="any",this.isClientSide=!0,this.help=Bl("If the macro returns an empty value, then the filter returns the value passed in the argument","jet-form-builder")}Il.prototype=Object.create(_l.prototype);const Al=Il,{__:Ol}=wp.i18n;function Rl(){_l.call(this),this.label=()=>Ol("length","jet-form-builder"),this.fullName=()=>"|length",this.isClientSide=!0,this.help=Ol("Returns the length of a string or array","jet-form-builder")}Rl.prototype=Object.create(_l.prototype);const Ml=Rl,{__:Pl}=wp.i18n;function Ll(){_l.call(this),this.label=()=>Pl("toDate","jet-form-builder"),this.fullName=()=>"|toDate",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Pl("Formats the timestamp according to the Date Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Pl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"2022-02-24"),(0,e.createElement)("hr",null),Pl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Pl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Pl(").","jet-form-builder"),(0,e.createElement)("hr",null),Pl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toDate(false)"))}Ll.prototype=Object.create(_l.prototype);const Gl=Ll,{__:Dl}=wp.i18n;function ql(){_l.call(this),this.label=()=>Dl("toDateTime","jet-form-builder"),this.fullName=()=>"|toDateTime",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Dl("Formats the timestamp according to the Datetime Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Dl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"2022-02-24T04:25"),(0,e.createElement)("hr",null),Dl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Dl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Dl(").","jet-form-builder"),(0,e.createElement)("hr",null),Dl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toDateTime(false)"))}ql.prototype=Object.create(_l.prototype);const Vl=ql,{__:Jl}=wp.i18n;function $l(){_l.call(this),this.label=()=>Jl("toTime","jet-form-builder"),this.fullName=()=>"|toTime",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Jl("Formats the timestamp according to the Time Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Jl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"04:25"),(0,e.createElement)("hr",null),Jl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Jl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Jl(").","jet-form-builder"),(0,e.createElement)("hr",null),Jl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toTime(false)"))}$l.prototype=Object.create(_l.prototype);const Ul=$l,{__:Hl}=wp.i18n;function Wl(){_l.call(this),this.label=()=>Hl("subDay","jet-form-builder"),this.fullName=()=>"|subDay",this.docArgument=Number,this.isClientSide=!0,this.help=Hl("Subtracts the number of days by argument from a macro that returns a date or timestamp.","jet-form-builder")}Wl.prototype=Object.create(_l.prototype);const zl=Wl,{__:Yl}=wp.i18n;function Kl(){_l.call(this),this.label=()=>Yl("subMonth","jet-form-builder"),this.fullName=()=>"|subMonth",this.docArgument=Number,this.isClientSide=!0,this.help=Yl("Subtracts the number of months by argument from a macro that returns a date or timestamp.","jet-form-builder")}Kl.prototype=Object.create(_l.prototype);const Xl=Kl,{__:Zl}=wp.i18n;function Ql(){_l.call(this),this.label=()=>Zl("subYear","jet-form-builder"),this.fullName=()=>"|subYear",this.docArgument=Number,this.isClientSide=!0,this.help=Zl("Subtracts the number of years by argument from a macro that returns a date or timestamp.","jet-form-builder")}Ql.prototype=Object.create(_l.prototype);const eo=Ql,{__:to}=wp.i18n;function no(){_l.call(this),this.label=()=>to("toDayInMs","jet-form-builder"),this.fullName=()=>"|toDayInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,to("Converts a number of days into milliseconds.","jet-form-builder"))}no.prototype=Object.create(_l.prototype);const ro=no,{__:lo}=wp.i18n;function oo(){_l.call(this),this.label=()=>lo("toHourInMs","jet-form-builder"),this.fullName=()=>"|toHourInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,lo("Converts a number of hours into milliseconds.","jet-form-builder"))}oo.prototype=Object.create(_l.prototype);const ao=oo,{__:io}=wp.i18n;function so(){_l.call(this),this.label=()=>io("toMinuteInMs","jet-form-builder"),this.fullName=()=>"|toMinuteInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,io("Converts a number of minutes into milliseconds.","jet-form-builder"))}so.prototype=Object.create(_l.prototype);const co=so,{__:uo}=wp.i18n;function mo(){_l.call(this),this.label=()=>uo("toMonthInMs","jet-form-builder"),this.fullName=()=>"|toMonthInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,uo("Converts a number of months into milliseconds.","jet-form-builder"))}mo.prototype=Object.create(_l.prototype);const po=mo,{__:fo}=wp.i18n;function ho(){_l.call(this),this.label=()=>fo("toWeekInMs","jet-form-builder"),this.fullName=()=>"|toWeekInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,fo("Converts a number of weeks into milliseconds.","jet-form-builder"))}ho.prototype=Object.create(_l.prototype);const bo=ho,{__:go}=wp.i18n;function yo(){_l.call(this),this.label=()=>go("toYearInMs","jet-form-builder"),this.fullName=()=>"|toYearInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,go("Converts a number of years into milliseconds.","jet-form-builder"))}yo.prototype=Object.create(_l.prototype);const vo=yo,{__:wo}=wp.i18n;function _o(){_l.call(this),this.label=()=>wo("Timestamp","jet-form-builder"),this.fullName=()=>"|T",this.isClientSide=!0,this.help=wo("Returns the time stamp. Usually used in conjunction with Date & Datetime and Time Field.","jet-form-builder",'Example\nFor Date Field\n%date_field|T%\nResult if date_field is filled with value "2022-10-22"')}_o.prototype=Object.create(_l.prototype);const Eo=_o;Object.defineProperty(ko,"name",{value:"default",configurable:!0});const Co={macros:[new al,new cl,new hl,new ml,new yl],filters:[new Al,new Eo,new Ml,new kl,new xl,new Tl,new zl,new Xl,new eo,new Gl,new Vl,new Ul,new co,new ao,new ro,new bo,new po,new vo]};function ko(e=Co,t){const n=rl[t?.type];return n?n(e,t):e}const So={registerMacro:(e,t=!0)=>({type:nl,items:e,isClient:t})},jo={getClientMacros:e=>e.macros.filter(function(e){return e.isClientSide}),getServerMacros:e=>e.macros.filter(function(e){return e.isServerSide}),getClientFilters:e=>e.filters.filter(function(e){return e.isClientSide}),getServerFilters:e=>e.filters.filter(function(e){return e.isServerSide})},{createReduxStore:xo}=wp.data,No=xo("jet-forms/macros",{reducer:ko,actions:So,selectors:jo}),Fo="REGISTER",To={[Fo](e,t){const{messages:n,ssr_callbacks:r,formats:l,rule_types:o}=t.items;return e.messages=JSON.parse(JSON.stringify(n)),e.ssrCallbacks=JSON.parse(JSON.stringify(r)),e.formats=JSON.parse(JSON.stringify(l)),e.ruleTypes=JSON.parse(JSON.stringify(o)),e}},Bo={...To};Object.defineProperty(Ro,"name",{value:"default",configurable:!0});const{select:Io}=wp.data,{__:Ao}=wp.i18n,Oo={messages:[],ssrCallbacks:[],formats:[],ruleTypes:[],ruleReaders:{default(e){const t=Io("jet-forms/validation").getRule(e.type);if(!t)return"";let n=e?.field||e?.value||"";return n=Ur(n,"b")||"(no value)",[t.label,`${n}`].join(" ")},ssr:e=>[Ao("Function:","jet-form-builder"),e?.value].join(" ")}};function Ro(e=Oo,t){const n=Bo[t?.type];return n?n(e,t):e}const Mo={register:e=>({type:Fo,items:e})},Po={...{getRule(e,t){const n=e.ruleTypes.findIndex(({value:e})=>e===t);return-1!==n&&e.ruleTypes[n]},readRule(e,t){var n;const{type:r=""}=t;if(!r)return"";const l=null!==(n=e.ruleReaders[r])&&void 0!==n&&n;return"function"==typeof l?l(t):e.ruleReaders.default(t)}}},{createReduxStore:Lo}=wp.data,Go=Lo("jet-forms/validation",{reducer:Ro,actions:Mo,selectors:Po}),Do="SET_BLOCKS",qo="SET_BLOCKS_FIRST",Vo="TOGGLE_EXECUTE",Jo={...{[Do](e,t){const n=[];for(const r in t.blockMap)t.blockMap.hasOwnProperty(r)&&!e.blockMap.hasOwnProperty(r)&&n.push(r);return{...e,blocks:t.blocks,blockMap:t.blockMap,recentlyAdded:n}},[qo]:(e,t)=>({...e,blocks:t.blocks,blockMap:t.blockMap}),[Vo]:e=>({...e,executed:!0})}};Object.defineProperty(Uo,"name",{value:"default",configurable:!0});const $o={blocks:[],blockMap:{},executed:!1,recentlyAdded:[],sanitizers:{name:[e=>e.replace(/[^\w\-]/gi,""),e=>"children"===e?"_"+e:e]}};function Uo(e=$o,t){const n=Jo[t?.type];return n?n(e,t):e}const{select:Ho}=wp.data,Wo=function(){const e=[],t={};return j((n,r)=>{var l;if(!n?.name?.includes("jet-forms/"))return;const o=Ho("core/blocks").getBlockType(n.name),a=o.jfbResolveBlock.call(n);if(o.hasOwnProperty("jfbGetFields")&&(a.fields=o.jfbGetFields.call(n)),!r?.name)return e.push(a),void(t[a.clientId]=a);const i=null!==(l=t[r?.clientId])&&void 0!==l&&l;i&&(Object.defineProperty(a,"parentBlock",{get:()=>i}),i.innerBlocks=i?.innerBlocks||[],i.innerBlocks.push(a),t[a.clientId]=a)}),{blocks:e,blockMap:t}},{select:zo,dispatch:Yo}=wp.data,Ko={setBlocks(e=null){null===e&&(e=Wo());const t=zo(ra).isExecuted();return t||Yo(ra).toggleExecute(),{type:t?Do:qo,blocks:e.blocks,blockMap:e.blockMap}},toggleExecute:()=>({type:Vo})},Xo={getBlocks:e=>e.blocks,getBlockMap:e=>e.blockMap,getFields(e,{withInner:t=!0,currentId:n=!1}){const r=[],l=e=>{for(const o of e)o.fields?.length&&o.clientId!==n&&r.push(...o.fields),t&&o.innerBlocks?.length&&l(o.innerBlocks)};return l(e.blocks),r},isExecuted:e=>e.executed,isRecentlyAdded:(e,t)=>-1!==e.recentlyAdded.indexOf(t),getUniqueNames(e,t){var n,r;const l=null!==(n=e.blockMap[t])&&void 0!==n&&n;if(!l)return{hasChanged:!1};let o=!1;const a=null!==(r=l?.fields?.map?.(({value:e})=>e))&&void 0!==r?r:[],i=l.hasOwnProperty("parentBlock")?l.parentBlock.innerBlocks:e.blocks,s=e=>{for(const t of e){const n=a.indexOf(t.value);-1!==n&&("field_name"!==t.value?(a[n]=`${a[n]}_copy`,o=!0,s(e)):o=!0)}};for(const e of i){var c;t!==e.clientId&&s(null!==(c=e?.fields)&&void 0!==c?c:[])}return{hasChanged:o,names:a.join("|")}},getSanitizedAttributes(e,t,{name:n}={}){for(const o in t){var r,l;if(!t.hasOwnProperty(o))continue;const a=null!==(r=null!==(l=e.sanitizers?.[n]?.[o])&&void 0!==l?l:e.sanitizers?.[o])&&void 0!==r&&r;if(a?.length)for(const e of a)"function"==typeof e&&(t[o]=e(t[o]))}return t},isUniqueName(e,t){const{hasChanged:n}=Xo.getUniqueNames(e,t);return!n},getBlock:(e,t)=>e.blocks.find(({name:e,clientId:n})=>[e,n].includes(t)),getBlockByName(e,t){if(!t)return!1;const n=e=>{for(const r of e){if(r.fields.some(({value:e})=>e===t))return r;r.innerBlocks?.length&&n(r.innerBlocks)}};return n(e.blocks),!1},getBlockNameByName(e,t){var n;const r=Xo.getBlockByName(e,t);return null!==(n=r?.name)&&void 0!==n?n:""},getBlockById(e,t){var n;return null!==(n=e.blockMap[t])&&void 0!==n&&n}},Zo={...Xo},{createReduxStore:Qo,dispatch:ea,select:ta,subscribe:na}=wp.data,ra="jet-forms/fields";let la,oa;na(()=>{const{debounce:e}=window._,{setBlocks:t}=ea(ra);e(()=>{const e=ta("core/block-editor").getGlobalBlockCount();if(la!==e)return la=e,void t();const n=Wo(),r=JSON.stringify(n.blocks);r!==oa&&(oa=r,t(n))},100)()});const aa=Qo(ra,{reducer:Uo,actions:Ko,selectors:Zo});n(4180);const{register:ia,dispatch:sa}=wp.data,{addAction:ca}=wp.hooks;[Sr,Pr,tl,No,Go,aa].forEach(ia),sa("jet-forms/events").register(window.jetFormEvents.types),sa("jet-forms/events").lockActions(),sa("jet-forms/validation").register(window.jetFormValidation),ca("jet.fb.change.blockConditions.renderState","jet-form-builder/events",function(e){sa("jet-forms/events").clearDynamicEvents();const t=e.map(({value:e})=>({value:e="ON."+e,label:e,isDynamic:!0}));sa("jet-forms/events").register(t)}),sa("jet-forms/block-conditions").register(window.jetFormBlockConditions);const{createContext:ua}=wp.element,da=ua(!1),{createContext:ma}=wp.element,pa=ma({currentItem:{},changeCurrentItem:()=>{},currentIndex:-1}),fa=(0,o.createContext)({isSupported:e=>!1,render:({children:e})=>e}),ha=(0,o.createContext)({isSupported:e=>!1,render:({currentItem:e,index:t})=>null}),ba=(0,o.createContext)({edit:e=>!0,move:e=>!0,clone:e=>!0,delete:e=>!0}),{createContext:ga}=wp.element,ya=ga({}),{ToggleControl:va}=wp.components,{__:wa}=wp.i18n,{useState:_a}=wp.element,{useContext:Ea}=wp.element,Ca=function(e){if(void 0===e)return null;const t=Ea(da),n=function({oldIndex:t,newIndex:n}){e(e=>{const r=JSON.parse(JSON.stringify(e));return[r[n],r[t]]=[r[t],r[n]],r})};return{changeCurrentItem:function(t,n){e(e=>{const r=JSON.parse(JSON.stringify(e));return r[n]={...e[n],...t},r})},toggleVisible:function(t){e(e=>{const n=JSON.parse(JSON.stringify(e));return n[t].__visible=!n[t].__visible,n})},moveDown:function(e){n({oldIndex:e,newIndex:e+1})},moveUp:function(e){n({oldIndex:e,newIndex:e-1})},cloneItem:function(t){e(e=>{const n=JSON.parse(JSON.stringify(e)),[r,l]=[n.slice(0,t+1),n.slice(t+1)];return[...r,n[t],...l]})},addNewItem:function(t){e(e=>[...e,{__visible:!0,...t}])},removeOption:function(n){t&&!(e=>confirm((0,d.sprintf)((0,d.__)("Are you sure you want to remove item %d?","jet-form-builder"),e+1)))(n)||e(e=>{const t=JSON.parse(JSON.stringify(e));return t.splice(n,1),t})}}},{createContext:ka}=wp.element,Sa=ka(!1),{Button:ja}=wp.components,{useContext:xa}=wp.element,Na=function(t){var n;const{item:r,onSetState:l,functions:o,children:a}=t,{addNewItem:i}=null!==(n=null!=o?o:Ca(l))&&void 0!==n?n:xa(Sa);return(0,e.createElement)(ja,{icon:"plus-alt2",isSecondary:!0,onClick:()=>i(r)},a)};let{Card:Fa,Button:Ta,CardHeader:Ba,CardBody:Ia,ToggleGroupControl:Aa,__experimentalToggleGroupControl:Oa}=wp.components;const{useContext:Ra}=wp.element,{__:Ma}=wp.i18n;Aa=Aa||Oa;const Pa=function(t){var n;const{items:r,onSetState:l,functions:o,children:a}=t,{cloneItem:i,moveUp:s,moveDown:c,toggleVisible:u,changeCurrentItem:d,removeOption:m}=null!==(n=null!=o?o:Ca(l))&&void 0!==n?n:Ra(Sa),{isSupported:p,render:f}=Ra(ha),{edit:h,move:b,clone:g,delete:y}=Ra(ba),v=({currentItem:t,index:n})=>p(t)?(0,e.createElement)(f,{currentItem:t,index:n}):(0,e.createElement)("span",{className:"repeater-item-title"},`#${n+1}`);return(0,e.createElement)("div",{className:"jet-form-builder__repeater-component",key:"jet-form-builder-repeater"},r.map((t,n)=>(0,e.createElement)(Fa,{size:"small",elevation:2,className:"jet-form-builder__repeater-component-item",key:`jet-form-builder__repeater-component-item-${n}`},(0,e.createElement)(Ba,{className:"repeater__item__header"},(0,e.createElement)("div",{className:"repeater-item__left-heading"},(0,e.createElement)(Aa,{className:"repeater-action-buttons jet-fb-toggle-group-control",hideLabelFromVision:!0},(!h||h(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,icon:t.__visible?"no-alt":"edit",onClick:()=>u(n),className:"repeater-action-button jet-fb-is-thick"}),(!b||b(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,isSecondary:!0,disabled:!Boolean(n),icon:"arrow-up-alt2",onClick:()=>s(n),className:"repeater-action-button jet-fb-is-thick"}),(!b||b(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,isSecondary:!0,disabled:!(nc(n),className:"repeater-action-button jet-fb-is-thick"})),(0,e.createElement)(v,{currentItem:t,index:n})),(0,e.createElement)(Aa,{className:"jet-fb-toggle-group-control",hideLabelFromVision:!0},(!g||g(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,isSecondary:!0,onClick:()=>i(n),className:"jet-fb-is-thick",icon:"admin-page"}),(!y||y(t))&&(0,e.createElement)(Yt,{icon:"trash",isDestructive:!0},(0,e.createElement)($t.Consumer,null,({setShowPopover:t})=>(0,e.createElement)("div",{style:{padding:"0.5em",width:"max-content"}},(0,e.createElement)("span",null,Ma("Delete this item?","jet-form-builder"))," ",(0,e.createElement)(Ta,{isLink:!0,isDestructive:!0,onClick:()=>m(n)},Ma("Yes","jet-form-builder"))," / ",(0,e.createElement)(Ta,{isLink:!0,onClick:()=>t(!1)},Ma("No","jet-form-builder"))))))),t.__visible&&(0,e.createElement)(Ia,{className:"repeater-item__content",key:`jet-form-builder__card-body-${n}`},(()=>{const r={currentItem:t,changeCurrentItem:e=>d(e,n),currentIndex:n};return(0,e.createElement)(pa.Provider,{value:r},!a&&"Set up your Repeater Template, please.","function"==typeof a?a(r):a)})()))))},{__experimentalToggleGroupControl:La,__experimentalToggleGroupControlOption:Ga}=wp.components,{__:Da}=wp.i18n;let{formats:qa}=window.jetFormValidation;const Va=window.jfb.data,{messages:Ja}=window.jetFormValidation,$a=function(e){return Ja.find(({id:t})=>e===t)},{TextControl:Ua}=wp.components,Ha=Se((0,o.forwardRef)(function({icon:e,size:t=24,...n},r){return(0,o.cloneElement)(e,{width:t,height:t,...n,ref:r})}))({name:"StyledIcon",class:"sfqmk5y",propsAsIs:!0});n(483);const{createContext:Wa}=wp.element,za=Wa({FieldSelect:null,property:""}),Ya=function({state:t,children:n}){const r=Ca(t);return(0,e.createElement)(Sa.Provider,{value:r},n)},Ka=window.wp.apiFetch;var Xa=n.n(Ka);const{rest_add_state:Za,rest_delete_state:Qa}=window.jetFormBlockConditions,{Fill:ei}=c,ti=({setShowModal:t,changeCurrentItem:n,currentItem:r})=>{var l;const[a,i]=(0,o.useState)(!1),[s,c]=(0,o.useState)({}),[m,p]=(0,o.useState)("");let f=[...null!==(l=r.render_state)&&void 0!==l?l:[]];const{addRenderState:b,deleteRenderStates:g}=(0,pe.useDispatch)("jet-forms/block-conditions"),y=(0,pe.useSelect)(e=>e("jet-forms/block-conditions").getCustomRenderStates(),[a,s]);return(0,e.createElement)(h,{title:(0,d.__)("Register custom render state","jet-form-builder"),onRequestClose:()=>t(!1),classNames:["width-45"]},(0,e.createElement)("div",{className:"jet-fb with-button"},(0,e.createElement)(u.TextControl,{value:m,onChange:e=>p(e),placeholder:(0,d.__)("Set your custom state name","jet-form-builder")}),(0,e.createElement)(u.Button,{variant:"secondary",onClick:()=>{i(!0),Za.data={value:m},Xa()(Za).then(e=>{var r;r=e.state,b(r),f.push(r.value),n({render_state:f}),i(!1),t(!1)}).catch(e=>{console.error(e),i(!1)})},disabled:a,isBusy:a,style:{padding:"7px 12px",height:"unset"}},(0,d.__)("Add","jet-form-builder"))),Boolean(y?.length)&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",{className:"jet-fb flex mb-05-em"},(0,d.__)("Manage your custom states:","jet-form-builder")),(0,e.createElement)("div",{className:"jet-fb-buttons-flex"},y.map(t=>{var r;return(0,e.createElement)(u.Button,{key:t.value,icon:"no-alt",iconPosition:"right",onClick:()=>{return e=t.value,Qa.data={list:[e]},c(t=>({...t,[e]:!0})),void Xa()(Qa).then(()=>{(e=>{g(e),f=f.filter(t=>t!==e),n({render_state:f})})(e)}).catch(console.error).finally(()=>{c(t=>({...t,[e]:!1}))});var e},isBusy:null!==(r=s[t.value])&&void 0!==r&&r},t.label)}))),(0,e.createElement)(ei,null,(0,e.createElement)("span",null)))},{Button:ni,BaseControl:ri,FormTokenField:li}=wp.components,{__:oi}=wp.i18n,{useState:ai}=wp.element,{useSelect:ii}=wp.data,si=({currentItem:t,changeCurrentItem:n})=>{const[r,l]=ai(!1),o=ii(e=>y(e("jet-forms/block-conditions").getRenderStates(),"value"),[r]);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ri,{label:oi("Render State","jet-form-builder"),className:"control-flex"},(0,e.createElement)("div",null,(0,e.createElement)("label",{className:"jet-fb label mb-05-em"},oi("Add render state","jet-form-builder")),(0,e.createElement)("div",{className:"jet-fb with-button clear-label"},(0,e.createElement)(li,{value:t.render_state,suggestions:o,onChange:e=>n({render_state:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0}),(0,e.createElement)(ni,{label:oi("New render state","jet-form-builder"),variant:"secondary",icon:"plus-alt2",onClick:()=>l(!0)})))),r&&(0,e.createElement)(ti,{setShowModal:l,changeCurrentItem:n,currentItem:t}))},ci=function({children:t,value:n,label:r,onChangePreset:l=!1,onChangeMacros:o=!1,macroWithCurrent:a=!1}){const i=(0,or.useInstanceId)(u.FlexItem,"jfb-AdvancedModalControl");return(0,e.createElement)("div",{className:"components-base-control"},(0,e.createElement)(u.Flex,{align:"flex-start",className:"components-base-control__field"},(0,e.createElement)(u.FlexItem,{isBlock:!0},(0,e.createElement)(u.Flex,{align:"center",justify:"flex-start"},(0,e.createElement)("label",{htmlFor:i,className:"jet-fb label"},r),!1!==l&&(0,e.createElement)(Vt,{value:n,onChange:l}),!1!==o&&(0,e.createElement)(wn,{onClick:o,withCurrent:a}))),(0,e.createElement)(u.FlexItem,{isBlock:!0,style:{flex:3,marginLeft:"unset"}},"function"==typeof t?t({instanceId:i}):t)))},{TextareaControl:ui,withFilters:di}=wp.components,{__:mi}=wp.i18n,pi=di("jet.fb.block.conditions.options")(t=>{const{currentItem:n,changeCurrentItem:r}=t,l=de();return["empty","not_empty"].includes(n.operator)?null:"render_state"===n.operator?(0,e.createElement)(si,{key:l("RenderStateOptions"),changeCurrentItem:r,currentItem:n}):(0,e.createElement)(Bn,null,(0,e.createElement)(ci,{value:n.value,label:mi("Value to compare","jet-form-builder"),onChangePreset:e=>r({value:e}),onChangeMacros:e=>{var t;return r({value:(null!==(t=n.value)&&void 0!==t?t:"")+e})}},({instanceId:t})=>(0,e.createElement)(ui,{id:t,value:n.value,onChange:e=>r({value:e})})))}),{SelectControl:fi,withFilters:hi}=wp.components,{__:bi}=wp.i18n,gi=hi("jet.fb.block.conditions.options")(t=>{const{currentItem:n,changeCurrentItem:r}=t,l=(0,bn.useFields)({placeholder:"--"});return"render_state"===n.operator?null:(0,e.createElement)(fi,{label:bi("Field","jet-form-builder"),labelPosition:"side",value:n.field,options:l,onChange:e=>{r({field:e})}})}),{useContext:yi}=wp.element,{SelectControl:vi}=wp.components,{__:wi}=wp.i18n,_i=function(){const{currentItem:t,changeCurrentItem:n}=yi(pa),r=de(),{operators:l}=ce();return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(gi,{currentItem:t,changeCurrentItem:n}),(0,e.createElement)(vi,{key:r("SelectControl-operator"),label:wi("Operator","jet-form-builder"),labelPosition:"side",value:t.operator,options:l,onChange:e=>n({operator:e})}),(0,e.createElement)(pi,{currentItem:t,changeCurrentItem:n}))},{select:Ei}=wp.data,Ci=function(e){return Ei("jet-forms/block-conditions").readCondition(e)},{__:ki}=wp.i18n,Si=function({children:t}){return(0,e.createElement)(ha.Provider,{value:{isSupported:()=>!0,render:({currentItem:t})=>(0,e.createElement)("span",{className:"repeater-item-title",dangerouslySetInnerHTML:{__html:t?.or_operator?ki("OR","jet-form-builder"):Ci(t)}})}},(0,e.createElement)(ba.Provider,{value:{edit:e=>!e.or_operator}},t))},{__:ji}=wp.i18n,{useState:xi,useContext:Ni,Fragment:Fi,useEffect:Ti,useRef:Bi}=wp.element,{SelectControl:Ii,TextareaControl:Ai,FlexItem:Oi,Flex:Ri,ToggleControl:Mi}=wp.components,Pi=[{key:"commas",render:()=>(0,e.createElement)("li",null,ji("If this field supports multiple values, you can separate them with commas. If a string value is expected, wrap it in single quotes like '%value_field%'.","jet-form-builder"))}],Li=[{value:"on_change",label:ji("On change conditions result","jet-form-builder"),help:ji("The value will be applied if condition check-ups return a result different from the first check-up's cached value","jet-form-builder")},{value:"once",label:ji("Once","jet-form-builder"),help:ji("The value will be applied only the first time the condition is matched","jet-form-builder")},{value:"always",label:ji("Always","jet-form-builder"),help:ji("The value will be applied every time the condition is matched","jet-form-builder")}],Gi=e=>Li.find(t=>t.value===(null!=e?e:"on_change")).help,Di=function(){var t,n,r,l;const{current:o,update:a}=Ni(ya),[i,s]=xi(()=>o),c=Bi(null),[u,d]=xi(()=>Gi(i.frequency));Ti(()=>{d(Gi(i.frequency))},[i.frequency]);const m=e=>{s(t=>({...t,...e}))};return W(()=>a(i)),(0,e.createElement)(Fi,null,(0,e.createElement)(Ri,{align:"flex-start"},(0,e.createElement)(Oi,{isBlock:!0},(0,e.createElement)(Ri,{align:"center",justify:"flex-start"},(0,e.createElement)("span",{className:"jet-fb label"},ji("Value to set","jet-form-builder")),(0,e.createElement)(Vt,{value:i.to_set,onChange:e=>m({to_set:e})}),(0,e.createElement)(Bn,{withThis:!0},(0,e.createElement)(wn,{onClick:e=>(e=>{const t=c.current;if(t){const n=t.selectionStart,r=t.selectionEnd,l=i.to_set||"",o=l.slice(0,n)+e+l.slice(r);m({to_set:`${o}`}),setTimeout(()=>{t.focus(),t.selectionStart=t.selectionEnd=n+e.length},0)}})(e)}))),(0,e.createElement)(dt,null,(0,e.createElement)("ul",null,Pi.map(t=>(0,e.createElement)(Fi,{key:t.key},t.render()))))),(0,e.createElement)(Oi,{isBlock:!0,style:{flex:3,marginLeft:"unset"}},(0,e.createElement)(Ai,{className:"jet-control-clear",hideLabelFromVision:!0,value:null!==(t=i.to_set)&&void 0!==t?t:"",onChange:e=>m({to_set:e}),ref:c}))),(0,e.createElement)(Ii,{options:Li,value:null!==(n=i.frequency)&&void 0!==n?n:"on_change",label:ji("Apply type","jet-form-builder"),labelPosition:"side",onChange:e=>m({frequency:e}),help:u}),(0,e.createElement)(Ya,{state:e=>{var t;m({conditions:"function"==typeof e?e(null!==(t=i.conditions)&&void 0!==t?t:[]):e})}},(0,e.createElement)(Si,null,(0,e.createElement)(Pa,{items:null!==(r=i.conditions)&&void 0!==r?r:[]},(0,e.createElement)(_i,null))),(0,e.createElement)("div",{className:"jet-fb flex jc-space-between ai-center"},(0,e.createElement)(Na,null,ji("Add New Condition","jet-form-builder")),(0,e.createElement)(Mi,{className:"jet-fb m-unset clear-control",label:ji("Set value only if field is empty","jet-form-builder"),checked:null!==(l=i.set_on_empty)&&void 0!==l&&l,onChange:e=>m({set_on_empty:e})}))))},{__:qi}=wp.i18n,{Children:Vi,cloneElement:Ji}=wp.element,$i=function({conditions:t,showWarning:n=!1}){let r=[],l="";return Boolean(t?.length)&&(l=Ci(t[0]),r=t.filter((e,t)=>0!==t).map((t,n)=>(0,e.createElement)("span",{key:n,"data-title":qi("And","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:Ci(t)}}))),l?(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":qi("If","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:l}}),Vi.map(r,Ji)):n&&(0,e.createElement)("span",{"data-title":qi("The condition is not fully configured.","jet-form-builder")})},Ui=function({isHover:t=!1,children:n}){return(0,e.createElement)("div",{className:["jet-fb",t?"show":"hide","p-absolute","wh-100","flex-center","gap-05em"].join(" "),style:{backgroundColor:"#ffffffcc",transition:"0.3s"}},n)},Hi=function({children:t}){return(0,e.createElement)("div",{className:["jet-fb","flex","flex-dir-column","container","gap-1em"].join(" ")},t)},{__:Wi}=wp.i18n,{useState:zi}=wp.element,{Button:Yi}=wp.components,Ki=function({current:t,update:n,isOpenModal:r,setOpenModal:l}){const[o,a]=zi(!1),[i,s]=zi(!1),c=1>=Object.keys(t)?.length;return(0,e.createElement)(ya.Provider,{value:{update:e=>{n(n=>{const r=JSON.parse(JSON.stringify(n.groups));for(const n in r)r.hasOwnProperty(n)&&t.id===r[n].id&&(r[n]={...r[n],...e});return{groups:r}})},current:t}},(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>s(!0),onFocus:()=>s(!0),onMouseOut:()=>s(!1),onBlur:()=>s(!1)},(0,e.createElement)(Ui,{isHover:i},(0,e.createElement)(Yi,{isSmall:!0,isSecondary:!0,icon:o?"no-alt":"edit",onClick:()=>a(e=>!e)},Wi("Edit","jet-form-builder")),(0,e.createElement)(Yi,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{n(e=>({groups:JSON.parse(JSON.stringify(e.groups)).filter(({id:e})=>e!==t.id)}))}},Wi("Delete","jet-form-builder"))),(0,e.createElement)(Hi,null,c?(0,e.createElement)("div",{"data-title":Wi("This value item is empty","jet-form-builder")}):(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Wi("Set","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:Ur(t.to_set)}}),(0,e.createElement)($i,{conditions:t?.conditions})))),(o||r===t.id)&&(0,e.createElement)(h,{classNames:["width-60"],onRequestClose:()=>{a(!1),l(!1)},title:Wi("Edit Dynamic Value","jet-form-builder")},(0,e.createElement)(Di,null)))},Xi=function({children:t,...n}){return(0,e.createElement)("div",{className:"jet-fb flex flex-dir-column gap-default",style:{marginBottom:"1em"},...n},t)},{__:Zi}=wp.i18n,{useState:Qi}=wp.element,{Button:es}=wp.components,ts=function(){var t,n;const[r,l]=fe(),o=de(),a=null!==(t=r.value)&&void 0!==t?t:{},i=null!==(n=a.groups)&&void 0!==n?n:[],[s,c]=Qi(!1);if(!he("value"))return null;const u=i.filter((e,t)=>0!==t),d=e=>{l({...r,value:{...a,..."function"==typeof e?e(a):e}})};return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(dt,null,Zi("Or use a condition-dependent value","jet-form-builder")+" ",(0,e.createElement)(es,{isLink:!0,onClick:()=>{},label:Zi("Former Set Value functionality, moved from the Conditional Block","jet-form-builder"),showTooltip:!0},"(?)")),Boolean(i.length)?(0,e.createElement)(Xi,null,(0,e.createElement)(Ki,{key:o(i[0].id),current:i[0],update:d,isOpenModal:s,setOpenModal:c}),Boolean(u.length)&&u.map(t=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",null,Zi("OR","jet-form-builder")),(0,e.createElement)(Ki,{key:o(t.id),current:t,update:d,isOpenModal:s,setOpenModal:c})))):null,(0,e.createElement)(es,{icon:"plus-alt2",isSecondary:!0,onClick:()=>{const e=k.getRandomID();d({groups:[...i,{id:e,conditions:[{__visible:!0}]}]}),c(e)}},Zi("Add Dynamic Value","jet-form-builder")))},{Button:ns}=wp.components,{useContext:rs}=wp.element,{SelectControl:ls}=wp.components,{useContext:os,useMemo:as}=wp.element,{__:is}=wp.i18n,ss=function(){const{currentItem:t,changeCurrentItem:n}=os(pa),r=as(()=>O(is("Custom value","jet-form-builder")),[]);return(0,e.createElement)(ls,{labelPosition:"side",options:r,label:is("Choose field","jet-form-builder"),value:t.field,onChange:e=>n({field:e})})},{SelectControl:cs,TextareaControl:us,TextControl:ds,withFilters:ms}=wp.components,{useContext:ps,useState:fs,useEffect:hs}=wp.element,{__:bs}=wp.i18n,{addFilter:gs}=wp.hooks,{rule_types:ys,ssr_callbacks:vs}=window.jetFormValidation,ws=vs.map(({value:e})=>e);function _s(e){var t;const n=ys.findIndex(({value:t})=>t===e),r=bs("Enter value","jet-form-builder");return-1===n?r:null!==(t=ys[n]?.control_label)&&void 0!==t?t:r}gs("jet.fb.advanced.rule.controls","jet-form-builder",t=>n=>{const{currentItem:r,changeCurrentItem:l}=n,[o,a]=fs(!1),[i]=(0,K.useActions)(),s=i.some(e=>"save_record"===e.type&&(void 0===e.is_execute||!0===e.is_execute))?"success":"error";if("ssr"!==r.type)return(0,e.createElement)(t,{...n});const c=r.value||"custom_jfb_field_validation";return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(cs,{labelPosition:"side",options:k.withPlaceholder(vs,bs("Custom function","jet-form-builder")),label:bs("Choose callback","jet-form-builder"),value:r.value,onChange:e=>l({value:e})}),"is_field_value_unique"===r.value&&(0,e.createElement)(u.Notice,{status:s,isDismissible:!1},bs("This callback requires the Save Form Record action to work correctly.","jet-form-builder")),"is_user_password_valid"===r.value&&(0,e.createElement)(u.Notice,{status:"success",isDismissible:!1},bs("Works only for logged users.","jet-form-builder")),!ws.includes(r.value)&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ds,{label:bs("Function name","jet-form-builder"),value:r.value,onChange:e=>l({value:e})}),(0,e.createElement)(dt,null,bs("Example of registering a function below.","jet-form-builder")+" ",(0,e.createElement)("a",{href:"javascript:void(0)",onClick:()=>a(e=>!e)},bs(o?"Hide":"Show","jet-form-builder"))),o&&(0,e.createElement)("pre",null,`/**\n * To get all the values of the fields in the form, you can use the expression:\n * jet_fb_request_handler()->get_request() or $context->get_request()\n *\n * If the field is located in the middle of the repeater, then only\n * jet_fb_request_handler()->get_request(), but $context->get_request() \n * will return the values of all fields of the current repeater element\n *\n * @param $value mixed\n * @param $context \\Jet_Form_Builder\\Request\\Parser_Context\n *\n * @return bool\n */\nfunction ${c}( $value, $context ): bool {\n\t// your logic\n\treturn true;\n}`)))});const Es=ms("jet.fb.advanced.rule.controls")(function({currentItem:t,changeCurrentItem:n}){const[r,l]=fs(()=>_s(t.type));switch(hs(()=>{l(_s(t.type))},[t.type]),t.type){case"equal":case"contain":case"contain_not":case"regexp":case"regexp_not":return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ss,null),!Boolean(t.field)&&(0,e.createElement)(ci,{value:t.value,label:r,onChangePreset:e=>n({value:e}),onChangeMacros:e=>{var r;return n({value:(null!==(r=t.value)&&void 0!==r?r:"")+e})}},({instanceId:r})=>(0,e.createElement)(us,{id:r,value:t.value,onChange:e=>n({value:e})})));default:return null}}),Cs=function(){const{currentItem:t,changeCurrentItem:n}=ps(pa);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(cs,{labelPosition:"side",options:k.withPlaceholder(ys),label:bs("Rule type","jet-form-builder"),value:t.type,onChange:e=>n({type:e})}),(0,e.createElement)(Es,{currentItem:t,changeCurrentItem:n}),(0,e.createElement)(us,{label:bs("Error message","jet-form-builder"),value:t.message,onChange:e=>n({message:e})}))},{select:ks}=wp.data,Ss=function(e){return ks("jet-forms/validation").readRule(e)},{useState:js}=wp.element,{__:xs}=wp.i18n,Ns=function(){const[t,n]=fe(),[r,l]=js(()=>{var e;return null!==(e=t.validation?.rules)&&void 0!==e?e:[]});return W(()=>{n(e=>({...e,validation:{...t.validation,rules:r}}))}),(0,e.createElement)(Ya,{state:l},(0,e.createElement)(ha.Provider,{value:{isSupported:()=>!0,render:({currentItem:t})=>(0,e.createElement)("span",{className:"repeater-item-title",dangerouslySetInnerHTML:{__html:Ss(t)}})}},(0,e.createElement)(Pa,{items:r},(0,e.createElement)(Cs,null))),(0,e.createElement)(Na,null,xs("Add Rule","jet-form-builder")))},{createContext:Fs}=wp.element,Ts=Fs({showModal:!1,setShowModal:()=>{}}),{useContext:Bs,useState:Is}=wp.element,{__:As}=wp.i18n,{Button:Os}=wp.components,Rs=function(){const{setShowModal:t}=Bs(Ts),[n,r]=fe(),[l,o]=Is(!1);return(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>o(!0),onFocus:()=>o(!0),onMouseOut:()=>o(!1),onBlur:()=>o(!1)},(0,e.createElement)(Ui,{isHover:l},(0,e.createElement)(Os,{isSmall:!0,isSecondary:!0,icon:"plus-alt2",onClick:()=>{r({validation:{...n.validation,rules:[{__visible:!0}]}}),t(e=>!e)}},As("Add new","jet-form-builder"))),(0,e.createElement)(Hi,null,(0,e.createElement)("span",{"data-title":As("You have no rules for this field.","jet-form-builder")}),(0,e.createElement)("span",{"data-title":As("Please click here to add new.","jet-form-builder")})))},{__:Ms}=wp.i18n,Ps=function({rule:t}){return t.type?(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Ms("Rule:","jet-form-builder"),dangerouslySetInnerHTML:{__html:Ss(t)}}),Boolean(t.message)&&(0,e.createElement)("span",{"data-title":Ms("Message:","jet-form-builder"),dangerouslySetInnerHTML:{__html:t.message}})):(0,e.createElement)("span",{"data-title":Ms("The rule is not fully configured.","jet-form-builder")})},{useContext:Ls,useState:Gs}=wp.element,{__:Ds}=wp.i18n,{Button:qs}=wp.components,Vs=function({rule:t,index:n=0}){const{setShowModal:r}=Ls(Ts),[l,o]=fe(),[a,i]=Gs(!1);return(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>i(!0),onFocus:()=>i(!0),onMouseOut:()=>i(!1),onBlur:()=>i(!1)},(0,e.createElement)(Ui,{isHover:a},(0,e.createElement)(qs,{isSmall:!0,isSecondary:!0,icon:"edit",onClick:()=>{o({validation:{...l.validation,rules:l.validation.rules.map((e,t)=>(e.__visible=n===t,e))}}),r(e=>!e)}},Ds("Edit","jet-form-builder")),(0,e.createElement)(qs,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{o({validation:{...l.validation,rules:l.validation.rules.filter((e,t)=>t!==n)}})}},Ds("Delete","jet-form-builder"))),(0,e.createElement)(Hi,null,(0,e.createElement)(Ps,{rule:t})))},{__:Js}=wp.i18n,{Children:$s,cloneElement:Us}=wp.element;const Hs=function(){const[t]=fe();return t?.validation?.rules?.length?(0,e.createElement)(Xi,null,$s.map(function(t){const n=t.filter((e,t)=>0!==t);return[(0,e.createElement)(Vs,{rule:t[0],key:"first_item"}),...n.map((t,n)=>((t,n)=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",null,Js("AND","jet-form-builder")),(0,e.createElement)(Vs,{rule:t,index:n})))(t,n+1))]}(t.validation.rules),Us)):(0,e.createElement)(Rs,null)},{useState:Ws}=wp.element,{__:zs}=wp.i18n,{useBlockProps:Ys}=wp.blockEditor,{TextControl:Ks,SelectControl:Xs,ToggleControl:Zs,BaseControl:Qs,__experimentalNumberControl:ec}=wp.components;let{NumberControl:tc}=wp.components;void 0===tc&&(tc=ec);const{FormToggle:nc,BaseControl:rc,Flex:lc}=wp.components,{useInstanceId:oc}=wp.compose,{useBlockProps:ac}=wp.blockEditor,{useEffect:ic}=wp.element,{useSelect:sc}=wp.data,{useBlockProps:cc}=wp.blockEditor,{useSelect:uc}=wp.data,{CustomSelectControl:dc,Icon:mc}=wp.components,{useBlockEditContext:pc}=wp.blockEditor,{Children:fc,cloneElement:hc,useContext:bc}=wp.element,{useSelect:gc}=wp.data,{useBlockEditContext:yc}=wp.blockEditor;let{__experimentalToggleGroupControl:vc,__experimentalToggleGroupControlOptionIcon:wc,__experimentalToolbarContext:_c,ToggleGroupControl:Ec,ToggleGroupControlOptionIcon:Cc,ToolbarItem:kc,ToolbarGroup:Sc,ToolbarContext:jc}=wp.components;function xc({value:t}){const{name:n}=yc(),r=bc(jc),[,l]=fe(),{variations:o,components:a}=gc(t=>{const{getBlockVariations:l}=t("core/blocks"),o=l(n,"block");return{variations:o,components:o.map(t=>{var n;return(null!==(n=r?.currentId)&&void 0!==n?n:r?.baseId)?(0,e.createElement)(kc,{key:t.name,as:Cc,value:t.name,label:t.title,icon:t.icon}):(0,e.createElement)(Cc,{key:t.name,value:t.name,label:t.title,icon:t.icon})})}},[]);return o.length?(0,e.createElement)("div",{className:"jfb-variations-toolbar-toggle"},(0,e.createElement)(Ec,{hideLabelFromVision:!0,onChange:e=>l({...o.find(({name:t})=>t===e).attributes}),value:t,isBlock:!0},fc.map(a,hc))):null}Ec=Ec||vc,Cc=Cc||wc,jc=jc||_c;const{useSelect:Nc}=wp.data,{useBlockEditContext:Fc}=wp.blockEditor,{get:Tc}=window._,{useBlockProps:Bc,RichText:Ic}=wp.blockEditor,{Button:Ac}=wp.components,{createContext:Oc}=wp.element,Rc=Oc({}),{useContext:Mc}=wp.element,{useState:Pc}=wp.element,{get:Lc}=window._,{useSelect:Gc,useDispatch:Dc}=wp.data;var qc,Vc,Jc;window.JetFBComponents={...null!==(qc=window?.JetFBComponents)&&void 0!==qc?qc:{},BaseLabel:En,ActionFieldsMap:function({fields:t=[],label:n="[Empty label]",children:a=null,plainHelp:i="",customHelp:s=!1}){return(0,e.createElement)(l.RowControl,{align:"flex-start"},(0,e.createElement)(l.Label,null,n),(0,e.createElement)(l.RowControlEnd,null,s&&"function"==typeof s&&s(),Boolean(i.length)&&(0,e.createElement)("span",{className:"description-controls"},i),t.map(([t,n],l)=>(0,e.createElement)(o.Fragment,{key:`field_in_map_${t+l}`},(0,e.createElement)(r.Provider,{value:{name:t,data:n,index:l}},"function"==typeof a?a({fieldId:t,fieldData:n,index:l}):a)))))},ActionModal:h,ActionModalContext:i,SafeDeleteContext:da,RepeaterItemContext:pa,RepeaterBodyContext:fa,RepeaterHeadContext:ha,RepeaterButtonsContext:ba,ActionFieldsMapContext:r,CurrentPropertyMapContext:za,BlockValueItemContext:ya,DynamicPropertySelect:function({dynamic:t=[],parseValue:n=null,children:a=null,properties:i=null}){const{source:s,settings:c,setMapField:u}=(0,o.useContext)(K.CurrentActionEditContext);i=null!=i?i:s.properties;const{name:d,index:m}=(0,o.useContext)(r),{fields_map:p={}}=c;function f(e){var r;for(const t of i)if(e===t.value)return e;return n?n(e):null!==(r=t[0])&&void 0!==r?r:""}const[h,b]=(0,o.useState)(()=>{var e;return f(null!==(e=p[d])&&void 0!==e?e:"")}),g=(0,e.createElement)(l.StyledSelectControl,{key:d+m,value:h,options:i,help:(()=>{var e;const t=i.find(({value:e})=>e===h);return null!==(e=t?.help)&&void 0!==e?e:""})(),onChange:e=>{const n=f(e);b(n),u({nameField:d,value:t.includes(e)?"":e})}});return(0,e.createElement)(za.Provider,{value:{FieldSelect:g,property:h}},a&&a,!a&&g)},SafeDeleteToggle:function(t){const[n,r]=_a(!0);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(va,{label:wa("Safe deleting","jet-form-builder"),checked:n,onChange:r}),(0,e.createElement)(da.Provider,{value:n},t.children))},RepeaterAddNew:Na,RepeaterAddOrOperator:function(t){var n;const{onSetState:r,functions:l,children:o}=t,{addNewItem:a}=null!==(n=null!=l?l:Ca(r))&&void 0!==n?n:rs(Sa);return(0,e.createElement)(ns,{isSecondary:!0,icon:"randomize",onClick:()=>a({__visible:!1,or_operator:!0})},o)},Repeater:Pa,WrapperRequiredControl:function({children:t,labelKey:n="label",requiredKey:l="required",helpKey:o="help",field:a=[]}){let{name:i,data:s}=g(r);return a.length&&([i,s]=a),(0,e.createElement)("div",{className:"jet-user-meta__row",key:"user_meta_"+i},(0,e.createElement)("div",{className:"jet-field-map__row-label"},(0,e.createElement)("span",{className:"fields-map__label"},s.hasOwnProperty(n)&&s[n]&&s[n],!s.hasOwnProperty(n)&&s),s.hasOwnProperty(l)&&s[l]&&(0,e.createElement)("span",{className:"fields-map__required"}," *"),s[o]&&(0,e.createElement)("p",{className:"components-base-control__help",style:{color:"rgb(117, 117, 117)",margin:"1em 0 0 0"}},(0,e.createElement)(b,null,s[o]))),t)},DynamicPreset:Ie,JetFieldsMapControl:Me,FieldWithPreset:function({children:t=null,ModalEditor:n,triggerClasses:r=[],baseControlProps:l={}}){const[o,a]=De(!1),i=()=>{a(e=>!e)},s=["jet-form-dynamic-preset__trigger",...r].join(" ");return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ge,{className:"jet-form-dynamic-preset",...l},t,(0,e.createElement)("div",{className:s,onClick:i},(0,e.createElement)(Le,{viewBox:"0 0 54 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)(Pe,{d:"M42.6396 26.4347C37.8682 27.3436 32.5666 28.0252 27.1894 28.0252C21.8121 28.0252 16.4348 27.3436 11.7391 26.4347C6.96774 25.4502 3.18093 23.8597 0.37868 21.9663L0.37868 28.0252C0.37868 29.5399 1.59046 31.1304 3.78682 32.4179C5.98317 33.7054 9.46704 34.9172 13.6325 35.5988C17.798 36.2805 22.115 36.8106 27.1894 36.8106C32.2637 36.8106 36.6564 36.5077 40.7462 35.5988C44.8359 34.69 48.3198 33.7054 50.5162 32.4179C52.7125 31.1304 54 29.5399 54 28.0252L54 21.9663C51.122 23.8597 47.3352 25.4502 42.6396 26.4347ZM42.6396 53.5484C37.8682 54.5329 32.5666 55.1388 27.1894 55.1388C21.8121 55.1388 16.4348 54.5329 11.7391 53.5484C7.04348 52.5638 3.18093 51.0491 0.378682 49.1556L0.378682 55.1388C0.378683 56.7293 1.59046 58.3197 3.78682 59.5315C6.36186 60.819 9.46705 62.1066 13.6325 62.7125C17.7223 63.697 22.115 64 27.1894 64C32.2637 64 36.6564 63.697 40.7462 62.7125C44.8359 61.8036 48.3198 60.819 50.5162 59.5315C52.7125 57.9411 54 56.7293 54 54.8359L54 48.8527C51.122 51.0491 47.3352 52.2608 42.6396 53.5484ZM42.6396 39.9915C37.8682 40.9004 32.5666 41.582 27.1894 41.582C21.8121 41.582 16.4348 40.9004 11.7391 39.9915C6.96774 39.007 3.18093 37.4922 0.378681 35.5988L0.378681 41.582C0.378681 43.1725 1.59046 44.6872 3.78682 45.9747C6.36185 47.2622 9.46705 48.474 13.6325 49.1556C17.7223 50.0645 22.115 50.3674 27.1894 50.3674C32.2637 50.3674 36.6564 50.0645 40.7462 49.1556C44.8359 48.1711 48.3198 47.2622 50.5162 45.9747C52.7125 44.3843 54 43.1725 54 41.582L54 35.5988C51.122 37.4922 47.3352 39.007 42.6396 39.9915ZM40.4432 2.12337C36.3535 1.13879 31.885 0.835848 26.8864 0.835849C21.8878 0.835849 17.4194 1.13879 13.2539 2.12337C9.08836 3.10794 5.68022 4.01678 3.48387 5.3043C1.28751 6.59181 -3.4782e-06 8.10654 -3.33916e-06 9.697L-2.95513e-06 14.0897C-2.81609e-06 15.6802 1.28752 17.2706 3.48387 18.5582C6.05891 19.7699 9.1641 21.0575 13.2539 21.6633C17.3436 22.2692 21.8121 22.9509 26.8864 22.9509C31.9607 22.9509 36.3535 22.9509 40.4432 22.345C44.533 21.7391 48.0169 20.4516 50.2132 19.164C52.7125 17.5736 54 15.9831 54 14.3927L54 9.99995C54 8.40948 52.7125 6.81902 50.5162 5.60724C48.3198 4.39546 44.533 2.72926 40.4432 2.12337Z",fill:"#7E8993"})))),o&&(0,e.createElement)(h,{onRequestClose:i,classNames:["width-60"],title:"Edit Preset"},t=>(0,e.createElement)(n,{...t})))},GlobalField:ye,AvailableMapField:function({fieldsMap:t,field:n,index:r,value:a,onChangeValue:i,isMapFieldVisible:s}){let c=null;t||(t={}),c=t[n],c&&"object"==typeof c||(c={});const d=({field:t,name:n,index:r,fIndex:o,children:a})=>(0,e.createElement)(u.Card,{key:t+n+r+o,size:"extraSmall",style:{marginBottom:"10px"}},(0,e.createElement)(u.CardHeader,null,(0,e.createElement)("span",{className:"jet-label-overflow"},t)),(0,e.createElement)(l.StyledCardBodyControl,{key:t+n+r+o,className:"jet-form-preset__fields-map-item"},a));return(0,e.createElement)(o.Fragment,{key:`map_field_preset_${n+r}`},window.JetFormEditorData.presetConfig.map_fields.map((o,m)=>{const p={field:n,name:o.name,index:r,fIndex:m},f="control_"+n+o.name+r+m;switch(o.type){case"text":return s(a,o,n)&&function({field:t,name:n,index:r,fIndex:o},a){return(0,e.createElement)(u.Card,{key:t+n+r+o,size:"extraSmall",style:{marginBottom:"10px"}},(0,e.createElement)(u.CardHeader,null,(0,e.createElement)("span",{className:"jet-label-overflow"},t)),(0,e.createElement)(l.StyledCardBodyControl,{key:t+n+r+o,className:"jet-form-preset__fields-map-item"},a))}(p,(0,e.createElement)(l.StyledTextControl,{key:f+"TextControl",placeholder:o.label,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));case"select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(l.StyledSelectControl,{options:o.options,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));case"custom_select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(u.CustomSelectControl,{options:o.options,onChange:({selectedItem:e})=>{c[o.name]=e.key,i({...t,[n]:c},"fields_map")},value:o.options.find(e=>e.key===c[o.name])}));case"grouped_select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(xe,{options:o.options,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));default:return null}}))},MapField:Ne,FieldWrapper:function(t){const{attributes:n,children:r,wrapClasses:l=[],valueIfEmptyLabel:o="",setAttributes:a,childrenPosition:i="between"}=t,s=de(),c=H("_jf_args"),u=Ze(function(){ze(n,a)});function d(){return(0,e.createElement)(Ye.VisualLabel,null,et(Qe("input label:","jet-form-builder")),(0,e.createElement)("div",{className:"jet-form-builder__label"},(0,e.createElement)(Ke,{key:s("rich-label"),placeholder:"Label...",allowedFormats:[],value:n.label?n.label:o,onChange:e=>a({label:e}),isSelected:!1,...u}),n.required&&(0,e.createElement)("span",{className:"jet-form-builder__required"},c.required_mark?c.required_mark:"*")))}function m(){return(0,e.createElement)("div",{className:"jet-form-builder__desc--wrapper"},et(Qe("input description:","jet-form-builder")),(0,e.createElement)(Ye,{key:"custom_help_description",className:"jet-form-builder__desc"},(0,e.createElement)("div",{className:"components-base-control__help"},(0,e.createElement)(Ke,{key:s("rich-description"),tagName:"small",placeholder:"Description...",allowedFormats:[],value:n.desc,onChange:e=>a({desc:e}),style:{marginTop:"0px"}}))))}return"row"===c.fields_layout&&l.push("jet-form-builder-row__flex"),n?.crocoblock_styles?._uniqueClassName&&l.push(n.crocoblock_styles._uniqueClassName),(0,e.createElement)(Ye,{key:s("placeHolder_block"),className:E("jet-form-builder__field-wrap","jet-form-builder-row",l)},"row"!==c.fields_layout&&(0,e.createElement)(e.Fragment,null,"top"===i&&r,d(),"between"===i&&r,m(),"bottom"===i&&r),"row"===c.fields_layout&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"jet-form-builder-row__flex--label"},d(),m()),(0,e.createElement)("div",{className:"jet-form-builder-row__flex--content"},r)))},MacrosInserter:function({children:t,fields:n,onFieldClick:r,customMacros:l,zIndex:o=1e6,...a}){const[i,s]=lt(()=>!1);return(0,e.createElement)("div",{className:"jet-form-editor__macros-inserter"},(0,e.createElement)(tt,{isTertiary:!0,isSmall:!0,icon:i?"no-alt":"admin-tools",label:"Insert macros",className:"jet-form-editor__macros-trigger",onClick:()=>{s(e=>!e)}}),i&&(0,e.createElement)(nt,{style:{zIndex:o},position:"bottom left",...a},n.length&&(0,e.createElement)(rt,{title:"Form Fields"},n.map(t=>(0,e.createElement)("div",{key:"field_"+t.name},(0,e.createElement)(tt,{isLink:!0,onClick:()=>{r(t.name)}},"%"+t.name+"%")))),l&&(0,e.createElement)(rt,{title:"Custom Macros"},l.map(t=>(0,e.createElement)("div",{key:"macros_"+t},(0,e.createElement)(tt,{isLink:!0,onClick:()=>{r(t)}},"%"+t+"%"))))))},RepeaterWithState:function({children:t,ItemHeading:n,repeaterClasses:r=[],repeaterItemClasses:l=[],newItem:a,addNewButtonLabel:i="Add New",items:s=[],isSaveAction:c,onSaveItems:m,onUnMount:p,onAddNewItem:f,onRemoveItem:h,help:b={helpSource:{},helpVisible:()=>!1,helpKey:""},additionalControls:g=null}){const y=["jet-form-builder__repeater-component",...r].join(" "),v=["jet-form-builder__repeater-component-item",...l].join(" "),[w,_]=(0,o.useState)([]);(0,o.useEffect)(()=>{_(s&&s.length>0?s.map(e=>(e.__visible=!1,e)):[{...a,__visible:!0}])},[]);const[E,C]=(0,o.useState)(!0),k=(e,t)=>{_(n=>{const r=JSON.parse(JSON.stringify(n));return r[t]={...n[t],...e},r})},S=({oldIndex:e,newIndex:t})=>{_(n=>{const r=JSON.parse(JSON.stringify(n));return[r[t],r[e]]=[r[e],r[t]],r})},j=e=>!(e{if(!0===c){for(const e in w)for(const t in w[e])t.startsWith("__")&&delete w[e][t];m(w),p()}else!1===c&&p()},[c]);const x=e=>`jet-form-builder-repeater__item_${e}`,{helpSource:N,helpVisible:F,helpKey:T}=b,B=F(w)&&N&&N[T];return(0,e.createElement)("div",{className:y,key:"jet-form-builder-repeater"},B&&(0,e.createElement)("p",null,N[T].label),0(0,e.createElement)(u.Card,{elevation:2,className:v,key:x(l)},(0,e.createElement)(u.CardHeader,{className:"repeater__item__header"},(0,e.createElement)("div",{className:"repeater-item__left-heading"},(0,e.createElement)(u.ButtonGroup,{className:"repeater-action-buttons"},(0,e.createElement)(u.Button,{isSmall:!0,icon:r.__visible?"no-alt":"edit",onClick:()=>(e=>{_(t=>{const n=JSON.parse(JSON.stringify(t));return n[e].__visible=!n[e].__visible,n})})(l),className:"repeater-action-button"}),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,disabled:!Boolean(l),icon:"arrow-up-alt2",onClick:()=>(e=>{S({oldIndex:e,newIndex:e-1})})(l),className:"repeater-action-button"}),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,disabled:j(l),icon:"arrow-down-alt2",onClick:()=>(e=>{S({oldIndex:e,newIndex:e+1})})(l),className:"repeater-action-button"})),(0,e.createElement)("span",{className:"repeater-item-title"},n&&(0,e.createElement)(n,{currentItem:r,index:l,changeCurrentItem:e=>k(e,l)}),!n&&`#${l+1}`)),(0,e.createElement)(u.ButtonGroup,null,(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,onClick:()=>(e=>{_(t=>{const n=JSON.parse(JSON.stringify(t)),[r,l]=[n.slice(0,e+1),n.slice(e+1)];return[...r,n[e],...l]})})(l)},(0,d.__)("Clone","jet-form-builder")),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,isDestructive:!0,onClick:()=>(e=>{E&&!(e=>confirm((0,d.sprintf)((0,d.__)("Are you sure you want to remove item %d?","jet-form-builder"),e+1)))(e)||h&&!h(e,w)||_(t=>{const n=JSON.parse(JSON.stringify(t));return n.splice(e,1),n})})(l)},(0,d.__)("Delete","jet-form-builder")))),r.__visible&&(0,e.createElement)(u.CardBody,{className:"repeater-item__content"},t&&(0,e.createElement)(o.Fragment,{key:`repeater-component__item_${l}`},"function"==typeof t&&t({currentItem:r,changeCurrentItem:e=>k(e,l),currentIndex:l}),"function"!=typeof t&&t),!t&&"Set up your Repeater Template, please."))),1{return e=a,f&&f(e,w),void _(t=>[...t,{...e,__visible:!0}]);var e}},i))},AdvancedFields:function(){return(0,e.createElement)(St,null,(0,e.createElement)(it,null),(0,e.createElement)(ut,null),(0,e.createElement)(yt,null),(0,e.createElement)(_t,null),(0,e.createElement)(kt,null))},GeneralFields:function({hasMacro:t=!0}){return(0,e.createElement)(Ln,{title:Gn("General","jet-form-builder"),key:"jet-form-general-fields"},(0,e.createElement)(Tt,null),(0,e.createElement)(Lt,null),(0,e.createElement)(qt,null),(0,e.createElement)(Pn,{hasMacro:t}))},ToolBarFields:function({children:t=null}){return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Hn,null,t),(0,e.createElement)(Zn,null))},FieldControl:function(t){const{setAttributes:n,attributes:r}=t,l=function({type:e,attributes:t,attrsSettings:n={}}){const r=Ys()["data-type"],l=lr();return l[e]?l[e].attrs.filter(({attrName:e,label:l,...o})=>{const a=e in t,i=(e=>{if(!e.condition)return!0;if(r&&e.condition.blockName){if("string"==typeof e.condition.blockName&&r!==e.condition.blockName)return!1;if("object"==typeof e.condition.blockName&&e.condition.blockName.length&&!e.condition.blockName.includes(r))return!1}return!(!function(){if("object"!=typeof e.condition.attr)return!0;const{operator:n="and",items:r={}}=e.condition.attr;if("or"===n.toLowerCase())for(const e in r)if(r[e]===t[e])return!0;return"and"!==n.toLowerCase()||function(){for(const e in r)if(r[e]!==t[e])return!1;return!0}()}()||"string"==typeof e.condition.attr&&e.condition.attr&&!t[e.condition.attr]||"string"==typeof e.condition&&!t[e.condition])})(o),s=e in n&&"show"in n[e]&&!1===n[e].show;return a&&i&&!s}):[]}(t),o=(e,t)=>{n({[t]:e})};return l.map(({help:t="",attrName:n,label:l,...a})=>{switch(a.type){case"text":return(0,e.createElement)(Ks,{key:`${a.type}-${n}-TextControl`,label:l,help:t,value:r[n],onChange:e=>o(e,n)});case"select":return(0,e.createElement)(Xs,{key:`${a.type}-${n}-SelectControl`,label:l,help:t,value:r[n],options:a.options,onChange:e=>{o(e,n)}});case"toggle":return(0,e.createElement)(Zs,{key:`${a.type}-${n}-ToggleControl`,label:l,help:t,checked:r[n],onChange:e=>{o(e,n)}});case"number":return(0,e.createElement)(Qs,{key:`${a.type}-${n}-BaseControl`,label:l},(0,e.createElement)(tc,{key:`${a.type}-${n}-NumberControl`,value:r[n],onChange:e=>{o(Number(e),n)}}),(0,e.createElement)("p",{className:"components-base-control__help",style:{color:"rgb(117, 117, 117)"}},t));default:return null}})},HorizontalLine:function(t){return(0,e.createElement)("hr",{style:{...t}})},FieldSettingsWrapper:function(t){const{title:n,children:r}=t,l=nr()["data-type"].replace("/","-"),o=tr(`jet.fb.render.settings.${l}`,null);return(r||o)&&(0,e.createElement)(er,{title:n||Qn("Field","jet-form-builder")},r,o)},GroupedSelectControl:xe,BaseHelp:dt,GatewayFetchButton:ar,ValidationToggleGroup:function({excludeBrowser:t=!1}){var n;const[r,l]=fe(),o=de();return qa=qa.filter(({value:e})=>"browser"!==e||!t),(0,e.createElement)(La,{onChange:e=>l(t=>({...t,validation:{...r.validation,type:e}})),value:null!==(n=r.validation?.type)&&void 0!==n?n:"inherit",label:Da("Validation type","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},(0,e.createElement)(Ga,{label:Da("Inherit","jet-form-builder"),value:"inherit","aria-label":Da("Inherit from form's args","jet-form-builder"),showTooltip:!0}),qa.map(t=>(0,e.createElement)(Ga,{key:o(t.value+"_key"),label:t.label,value:t.value,"aria-label":t.title,showTooltip:!0})))},ValidationBlockMessage:function({name:t}){var n,r,l;const o=de(),[a,i]=fe(),[s]=(0,Va.useMetaState)("_jf_validation","{}",[]),c=!a.validation?.type,u=c?null!==(n=s?.messages)&&void 0!==n?n:{}:null!==(r=a.validation?.messages)&&void 0!==r?r:{},d=$a(t);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ua,{disabled:c,key:o("massage_"+t),label:d?.label,help:d?.help,value:null!==(l=u[t])&&void 0!==l?l:d?.initial,onChange:e=>i(n=>({...n,validation:{...a.validation,messages:{...u,[t]:e}}}))}))},ValidationMetaMessage:function({message:t,update:n,value:r=null,help:o=null}){const a=$a(t.id);return(0,e.createElement)(l.StyledFlexControl,{direction:"column"},(0,e.createElement)(u.Flex,null,(0,e.createElement)(l.Label,{htmlFor:t.id},a.label),(0,e.createElement)(u.Flex,{style:{width:"auto"}},t.blocks.map(t=>(0,e.createElement)(u.Tooltip,{key:"message_block_item"+t.title,text:t.title,delay:200,placement:"top"},(0,e.createElement)(Ha,{icon:t.icon}))))),(0,e.createElement)(l.StyledTextControl,{className:l.ClearBaseControlStyle,id:t.id,help:null!=o?o:a?.help,value:null!=r?r:a?.initial,onChange:e=>n(n=>({...n,[t.id]:e}))}))},DynamicValues:ts,EditAdvancedRulesButton:function(){const[t,n]=Ws(!1);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ts.Provider,{value:{showModal:t,setShowModal:n}},(0,e.createElement)("div",{className:"jet-fb mb-24"},(0,e.createElement)(Hs,null))),t&&(0,e.createElement)(h,{title:zs("Edit Advanced Rules","jet-form-builder"),classNames:["width-60"],onRequestClose:()=>n(!1)},(0,e.createElement)(Ns,null)))},RepeaterStateContext:Sa,RepeaterState:Ya,BlockLabel:Tt,BlockName:Lt,BlockDescription:qt,BlockDefaultValue:Pn,BlockPlaceholder:it,BlockAddPrevButton:ut,BlockPrevButtonLabel:yt,BlockVisibility:_t,BlockClassName:kt,BlockAdvancedValue:function({help:t,label:n,hasMacro:r=!0,...l}){return(0,e.createElement)("div",{...l},(0,e.createElement)(Pn,{help:t,label:n,hasMacro:r}),(0,e.createElement)("hr",null),(0,e.createElement)(ts,null))},MacrosFields:wn,MacrosButtonTemplate:Yt,MacrosFieldsTemplate:mn,ShowPopoverContext:$t,PopoverItem:Qt,PresetButton:Vt,ConditionItem:_i,AdvancedInspectorControl:Sn,AdvancedModalControl:ci,ClientSideMacros:Bn,ToggleControl:function t({checked:n=!1,disabled:r=!1,onChange:l=()=>{},children:o=null,help:a=null,flexLabelProps:i={},outsideLabel:s=null,__nextHasNoMarginBottom:c=!1,...u}){const d=a,m=`inspector-jfb-toggle-control-${oc(t)}`;return(0,e.createElement)(rc,{id:m},(0,e.createElement)(lc,{direction:"column"},(0,e.createElement)(lc,{gap:3,align:"flex-start",justify:"flex-start",...i},(0,e.createElement)(nc,{id:m,checked:n,onChange:e=>l(e.target.checked),disabled:r,...u}),(0,e.createElement)("label",{htmlFor:m},o),s),"string"==typeof d?(0,e.createElement)(dt,null,d):d&&(0,e.createElement)(d,null)))},DetailsContainer:Hi,HoverContainer:Ui,ContainersList:Xi,HumanReadableConditions:$i,ConditionsRepeaterContextProvider:Si,ServerSideMacros:function({children:t}){const n=(0,K.useRequestFields)();return(0,e.createElement)(Xt.Provider,{value:{afterFields:n}},t)},SelectVariations:function({value:t}){const{name:n}=pc(),[,r]=fe(),{variations:l,rawVariations:o}=uc(t=>{const{getBlockVariations:r}=t("core/blocks"),l=r(n,"block"),o=[],a={};for(const t of l)o.push({key:t.name,name:(0,e.createElement)("span",{className:"jet-fb flex gap-1em ai-center"},(0,e.createElement)(mc,{icon:t.icon}),t.title)}),a[t.name]=t;return{variations:o,rawVariations:a}},[n]);return l.length?(0,e.createElement)(dc,{__nextUnconstrainedWidth:!0,hideLabelFromVision:!0,options:l,size:"__unstable-large",onChange:({selectedItem:e})=>r({...o[e.key].attributes}),value:l.find(({key:e})=>e===t)}):null},ToggleGroupVariations:function(t){const n=bc(jc);return n?.currentId?(0,e.createElement)(Sc,{className:"jet-fb toggle-toolbar-group"},(0,e.createElement)(xc,{...t})):(0,e.createElement)(xc,{...t})},AttributeHelp:ht,ActionButtonPlaceholder:function(t){const n=Bc();return(0,e.createElement)("div",{...n},(0,e.createElement)("div",{className:t.wrapperClasses.join(" ")},(0,e.createElement)(Ac,{isPrimary:!0,className:t.buttonClasses.join(" ")},(0,e.createElement)(Ic,{placeholder:"Input Submit label...",allowedFormats:[],value:t.attributes.label,onChange:e=>t.setAttributes({label:e})}))))},ActionModalFooterSlotFill:c,ScopedAttributesProvider:function({children:t}){const[n,r]=fe(),[l,o]=Pc(()=>n);return(0,e.createElement)(Rc.Provider,{value:{realAttributes:n,setRealAttributes:r,attributes:l,setAttributes:o}},t)}},window.JetFBActions={...null!==(Vc=window?.JetFBActions)&&void 0!==Vc?Vc:{},withPreset:ge,getInnerBlocks:R,getAvailableFieldsString:function(e){const t=T([e]),n=[];return t.forEach(function(e){n.push("%FIELD::"+e+"%")}),B("Available fields: ","jet-form-builder")+n.join(", ")},getAvailableFields:T,getFormFieldsBlocks:F,getFieldsWithoutCurrent:O,gatewayAttr:P,gatewayLabel:L,registerGateway:function(e,t,n="cred"){window.JetFBGatewaysList=window.JetFBGatewaysList||{},window.JetFBGatewaysList[e]=window.JetFBGatewaysList[e]||{},window.JetFBGatewaysList[e][n]=t},Tools:k,event:e=>{const t=new Event(e);return()=>document.dispatchEvent(t)},listen:(e,t)=>{document.addEventListener(e,t)},renderGateway:D,renderGatewayWithPlaceholder:function(e,t,n="cred",r=null){return G(e,n)?(t.Placeholder=r,D(e,t,n)):r},maybeCyrToLatin:w,getConvertedName:_,getBlockControls:function(e="all"){if(!e)return!1;const t=lr();return"all"===e?t:!!(t[e]&&t[e].attrs&&Array.isArray(t[e].attrs)&&0{e.includes(n.name)&&t.push(n)}),t},convertObjectToOptionsList:function(e=[],{usePlaceholder:t=!0,label:n="--",value:r=""}={}){const l={label:n,value:r};if(!e)return t?[l]:[];const o=Object.entries(e).map(e=>({value:e.value,label:e.label}));return t?[l,...o]:o},appendField:function(e,t=[]){M("jet.fb.register.fields","jet-form-builder",n=>n.map(n=>t.length&&!t.includes(n.name)?n:e(n)))},insertMacro:In,column:y,getCurrentInnerBlocks:function(){const{"data-block":e}=ac();return R(e)},humanReadableCondition:Ci,assetUrl:function(e=""){return JetFormEditorData.assetsUrl+e},set:function(e,t,n){const r=JSON.parse(JSON.stringify(e));let l,o=r;for(let e=0;e{function t(){e.call(this)}return t.prototype=Object.create(e.prototype),t}},window.JetFBHooks={...null!==(Jc=window?.JetFBHooks)&&void 0!==Jc?Jc:{},useSelectPostMeta:H,useSuccessNotice:$,useEvents:ae,useRequestEvents:function(){const e=ie(e=>e("jet-forms/actions").getCurrentAction());return ae(e)},useBlockConditions:ce,useUniqKey:de,useBlockAttributes:fe,useIsAdvancedValidation:function(){const{type:e}=H("_jf_validation"),[t]=fe();return t.validation?.type?"advanced"===t.validation?.type:"advanced"===e},useGroupedValidationMessages:function(){const[e]=Ue(We);return e},withSelectFormFields:(e=[],t=!1,n=!1)=>r=>{let l=[];const o=["submit","form-break","heading","group-break","conditional",...e];return Y(e=>{e.name.includes("jet-forms/")&&e.attributes.name&&!o.find(t=>e.name.includes(t))&&l.push({blockName:e.name,name:e.attributes.name,label:e.attributes.label||e.attributes.name,value:e.attributes.name})},r("core/block-editor").getBlocks()),l=t?[{value:"",label:t},...l]:l,{formFields:n?l:z("jet.fb.getFormFieldsBlocks",l)}},withSelectGateways:X,withDispatchGateways:function(e){const t=e("jet-forms/gateways");return{setGatewayRequest:t.setRequest,setGatewayScenario:t.setScenario,setScenario:t.setCurrentScenario,setGateway:t.setGateway,setGatewayInner:t.setGatewayInner,setGatewaySpecific:t.setGatewaySpecific,clearGateway:t.clearGateway,clearScenario:t.clearScenario}},useOnUpdateModal:W,useInsertMacro:On,useIsHasAttribute:he,useUniqueNameOnDuplicate:function(e=null){const t=cc(),[,n]=fe(),r=t["data-block"],l=sc(e=>{if(!e(ra).isRecentlyAdded(r))return!1;const{hasChanged:t,names:n}=e(ra).getUniqueNames(r);return!!t&&n},[r]);ic(()=>{l&&("function"!=typeof e?n({name:l.split("|")[0]}):e(l))},[l])},useSupport:function(e){const{name:t}=Fc();return Nc(n=>{const r=n("core/blocks").getBlockType(t);return Tc(r,["supports",e],!1)},[t,e])},useScopedAttributesContext:function(){return Mc(Rc)},useOpenEditorPanel:function(e){const{enableComplementaryArea:t}=Dc("core/interface"),{toggleEditorPanelOpened:n}=Dc("core/edit-post"),r=Gc(t=>t("core/edit-post").isEditorPanelOpened(e),[e]);return()=>{t("core/edit-post","edit-post/document"),!r&&n(e)}}}})()})(); \ No newline at end of file diff --git a/assets/build/frontend/main.asset.php b/assets/build/frontend/main.asset.php index e6218f8c0..9c03d3ed0 100644 --- a/assets/build/frontend/main.asset.php +++ b/assets/build/frontend/main.asset.php @@ -1 +1 @@ - array('wp-i18n'), 'version' => '8ca27fc2abb59a1c4349'); + array('wp-i18n'), 'version' => 'a2ef9c7a767257924f0f'); diff --git a/assets/build/frontend/main.js b/assets/build/frontend/main.js index 3f516c0cd..d7aedd2f2 100644 --- a/assets/build/frontend/main.js +++ b/assets/build/frontend/main.js @@ -1 +1 @@ -(()=>{"use strict";function t(){this.attrName="",this.initial=null,this.isFromData=!1,this.value=null}t.prototype={attrName:"",input:null,initial:null,value:null,observe(){this.value=new _(this.initial),this.value.make(),this.addWatcherAttr()},nodeSignal(){const[t]=this.input.nodes;t[this.attrName]=this.value.current},addWatcherAttr(){this.value.watch(()=>this.nodeSignal())},isSupported(t){var e;const[n]=t.nodes,r=null!==(e=-1!==n[this.attrName])&&void 0!==e?e:-1;return!(!n.dataset.hasOwnProperty(this.attrName)&&!r)&&(this.initial=this.getInitial(t),Boolean(this.initial))},getInitial(t){const[e]=t.nodes;return e.dataset[this.attrName]||e[this.attrName]||!1},setInput(t){this.input=t}};const e=t;function n(){e.call(this),this.attrName="max_files",this.isSupported=function(t){const[e]=t.nodes;return"file"===e.type},this.setInput=function(t){e.prototype.setInput.call(this,t);const{max_files:n=1}=JSON.parse(t.previewsContainer.dataset.args);this.initial=+n},this.addWatcherAttr=()=>{}}n.prototype=Object.create(e.prototype);const r=n;function o(){r.call(this),this.attrName="max_size",this.setInput=function(t){r.prototype.setInput.call(this,t);const{max_size:e=1}=JSON.parse(t.previewsContainer.dataset.args);this.initial=+e}}o.prototype=Object.create(r.prototype);const i=o;function s(){e.call(this),this.attrName="remaining",this.isSupported=function(t){return t.attrs.hasOwnProperty("maxLength")},this.setInput=function(t){var n;e.prototype.setInput.call(this,t);const{maxLength:r}=t.attrs,o=null!==(n=t.value.current?.length)&&void 0!==n?n:0;this.initial=r.value.current-o},this.addWatcherAttr=()=>{},this.observe=function(){e.prototype.observe.call(this),this.input.value.watch(()=>this.updateAttr()),this.input.attrs.maxLength.value.watch(()=>this.updateAttr())},this.updateAttr=function(){var t;const{maxLength:e}=this.input.attrs,n=null!==(t=this.input.value.current?.length)&&void 0!==t?t:0;this.value.current=e.value.current-n}}s.prototype=Object.create(e.prototype);const u=s;function a(){r.call(this),this.attrName="file_ext",this.isSupported=function(t){const[e]=t.nodes;return"file"===e.type&&Boolean(e.accept)},this.setInput=function(t){r.prototype.setInput.call(this,t);const[e]=t.nodes;this.initial=e.accept.split(",")},this.addWatcherAttr=function(){const[t]=this.input.nodes;this.value.watch(()=>{t.accept=this.value.current.join(",")})}}a.prototype=Object.create(r.prototype);const c=a,l=navigator.userAgent,h={safari:/^((?!chrome|android).)*safari/i.test(l)||/constructor/i.test(window.HTMLElement)||"[object SafariRemoteNotification]"===(!window.safari||"undefined"!=typeof safari&&window.safari.pushNotification).toString()},{applyFilters:p}=JetPlugins.hooks;async function f(t){const e=await Promise.allSettled(t.map(t=>new Promise(t)));return window?.JetFormBuilderSettings?.devmode&&(console.group("allRejected"),console.info(...e),console.groupEnd()),e.filter(t=>"rejected"===t.status).map(({reason:t,value:e})=>t?.length?t[0]:null!=t?t:e)}let d=[];function g(t){const n=new e;return n.attrName=t,n}function m(t){d.length||(d=p("jet.fb.input.html.attrs",["min","max","minLength","maxLength",r,i,u,c]));for(const e of d){let n;n="string"==typeof e?g(e):new e,n.isSupported(t)&&(t.attrs[n.attrName]=n,n.setInput(t),n.observe())}}function y(t){return"boolean"==typeof t?!t:null==t||("object"!=typeof t||Array.isArray(t)?"number"==typeof t?0===t:!t?.length:!Object.keys(t)?.length)}function b(t){return t?.isConnected&&null!==t?.offsetParent}function v(t){var e;const n=t.getBoundingClientRect(),r=S(t);return n?.top+(null!==(e=r?.scrollY)&&void 0!==e?e:0)}const w=t=>t.scrollHeight>t.clientHeight&&t;function S(t){let e=t.closest(".jet-popup__container-inner");return e?w(e):(e=t.closest(".elementor-popup-modal .dialog-message"),e?w(e):window)}function j(t){for(const e of t)if(!e.reporting.validityState.current){!e.reporting.hasAutoScroll()&&e.onFocus();break}}function N(t=null){this.current=t,this.signals=[],this.sanitizers=[],this.isDebug=!1,this.isSilence=!1,this.isMaked=!1}N.prototype={watchOnce(t){if("function"!=typeof t)return;const e=this.watch(()=>{e(),t()})},watch(t){if("function"!=typeof t)return!1;if(this.signals.some(({signal:e})=>e===t))return!0;this.signals.push({signal:t,trace:(new Error).stack});const e=this.signals.length-1;return()=>this.signals.splice(e,1)},sanitize(t){if("function"!=typeof t)return!1;if(-1!==this.sanitizers.indexOf(t))return!0;this.sanitizers.push(t);const e=this.sanitizers.length-1;return()=>this.sanitizers.splice(e,1)},make(){if(this.isMaked)return;this.isMaked=!0;let t=this.current,e=null;const n=this;Object.defineProperty(this,"current",{get:()=>t,set(r){t!==r&&(e=t,n.isDebug&&(console.group("ReactiveVar has changed"),console.log("current:",t),console.log("newVal:",r),console.groupEnd()),t=n.applySanitizers(r),n.isSilence||n.notify(e))}})},notify(t=null){this.signals.forEach(({signal:e})=>e.call(this,t))},applySanitizers(t){for(const e of this.sanitizers)t=e.call(this,t);return t},setIfEmpty(t){y(this.current)&&(this.current=t)},debug(){this.isDebug=!this.isDebug},silence(){this.isSilence=!this.isSilence}};const _=N;function I(){_.call(this,!1),this.start=function(){this.current=!0},this.end=function(){this.current=!1},this.toggle=function(){this.current=!this.current}}I.prototype=Object.create(_.prototype);const F=I;function O(){this.handlers=[]}O.prototype={addFilter(t){this.handlers.push(t);const e=this.handlers.length-1;return()=>this.handlers.splice(e,1)},applyFilters(...t){let e=t[0];const n=t.slice(1);for(const t of this.handlers)e=t(e,...n);return e}};const k=O,{strict_mode:C=!1}=window?.JetFormBuilderSettings,R=Boolean(C);function E(){this.input=null,this.lock=new _,this.lock.make(),this.triggerjQuery=!R}E.prototype={input:null,lock:null,isSupported:(t,e)=>!1,setInput(t){this.input=t},run(t){if(!this.lock.current)return this.runSignal(t),void this.unlockTrigger();this.lock.signals.length||this.lock.watchOnce(()=>this.runSignal(t))},triggerJQuery(t){this.triggerjQuery&&jQuery(t).trigger("change")},runSignal(t){},lockTrigger(){this.triggerjQuery=!1},unlockTrigger(){R||(this.triggerjQuery=!0)}};const P=E;function T(t){return"hidden"===t.type}function M(t){return"range"===t.type}function x(){P.call(this)}x.prototype=Object.create(P.prototype),x.prototype.isSupported=function(t,e){return T(t)&&e.isArray()},x.prototype.runSignal=function(){const{current:t}=this.input.value;if(!t?.length){for(const t of this.input.nodes)t.remove();return void this.input.nodes.splice(0,this.input.nodes.length)}const e=[];for(const n of t){if(this.input.nodes.some((t,r)=>t.value===n&&(e.push(r),!0)))continue;const t=document.createElement("input");t.type="hidden",t.value=n,t.name=this.input.rawName,this.input.nodes.push(t),e.push(this.input.nodes.length-1),this.input.comment.parentElement.insertBefore(t,this.input.comment.nextElementSibling)}this.input.nodes=this.input.nodes.filter((t,n)=>!!e.includes(n)||(t.remove(),!1))};const B=x;function D(){P.call(this),this.isSupported=function(t){return M(t)},this.runSignal=function(){const[t]=this.input.nodes;t.value=this.input.value.current,this.input.numberNode.textContent=t.value,this.triggerJQuery(t)}}D.prototype=Object.create(P.prototype);const A=D;function V(){B.call(this),this.isSupported=function(t){return"_jfb_current_render_states[]"===t.name},this.runSignal=function(t){B.prototype.runSignal.call(this,t);const e=new URL(window.location),n=this.input.getSubmit().getFormId(),r=this.input.value.current||[],o=`jfb[${n}][state]`,i=[];for(const t of r)this.input.isCustom(t)&&i.push(t);if(!i.length){if(!e.searchParams.has(o))return;return e.searchParams.delete(o),void window.history.pushState({},"",e.toString())}const s=i.join(",");e.searchParams.get(o)!==s&&(e.searchParams.set(o,s),window.history.pushState({},"",e.toString()))}}V.prototype=Object.create(B.prototype);const L=V,{applyFilters:J}=JetPlugins.hooks;let H=[];function Q(t){Error.call(this,t),Error.captureStackTrace?Error.captureStackTrace(this,Q):this.stack=(new Error).stack}Q.prototype=Object.create(Error.prototype);const q=Q;function Y(){this.input=null,this.isRequired=!1,this.errors=null,this.restrictions=[],this.valuePrev=null,this.validityState=null,this.promisesCount=0}Y.prototype={restrictions:[],valuePrev:null,validityState:null,promisesCount:0,validateOnChange(){},validateOnBlur(){},async validate(t=null){const e=await this.getErrors(t);if(this.validityState.current=!Boolean(e.length),!e.length)return this.clearReport(),!0;throw!this.input.root.getContext().silence&&this.report(e),new q(e[0].name)},async getErrorsRaw(t){throw new Error("getError must return a Promise")},async getErrors(t=null){if(this.input.loading.current||this.input?.callable?.lock?.current||!this.input.isVisible())return[];const e=this.getPromises(t);var n;return this.hasChangedValue()||this.promisesCount!==e.length||this.input.stopValidation||"hr-select-level"===this.input.inputType?(this.promisesCount=e.length,this.errors=[],e.length?(this.errors=await this.getErrorsRaw(e,t),this.errors):this.errors):null!==(n=this.errors)&&void 0!==n?n:[]},report(t){this.input.getContext().reportedFirst?this.reportRaw(t):(this.input.getContext().reportFirst(),this.reportFirst(t))},reportRaw(t){throw new Error("report is empty")},reportFirst(t){this.report(t)},clearReport(){throw new Error("clearReport is empty")},getPromises(t=null){const e=[];for(const n of this.restrictions)this.canProcessRestriction(n)&&(this.beforeProcessRestriction(n),e.push((e,r)=>{n.validatePromise(t).then(()=>e(n)).catch(t=>r([n,t]))}));return e},canProcessRestriction:t=>!0,beforeProcessRestriction(t){},isSupported(t,e){throw new Error("isSupported is empty")},setInput(t){this.validityState=new _,this.validityState.make(),this.input=t,this.setRestrictions(),this.filterRestrictions()},setRestrictions(){},getNode(){return this.input.nodes[0]},hasChangedValue(){return this.valuePrev!==this.input.getValue()},checkValidity(){const t=this.input.getContext().silence;return null===this.validityState.current?this.validateOnChangeState():this.validityState.current?Promise.resolve():(t||!t&&this.report(this.errors||[]),Promise.reject())},hasAutoScroll:()=>!1,filterRestrictions(){const t={};for(let[e,n]of Object.entries(this.restrictions))e=n.getType()?n.getType():e,t[e]=n;this.restrictions=Object.values(t)}};const $=Y;function W(){$.call(this),this.isSupported=function(){return!0},this.reportRaw=function(){},this.reportFirst=function(){this.getNode().reportValidity()},this.setRestrictions=function(){const[t]=this.input.nodes;!function(t,e){ot.length||(ot=rt());for(const n of ot){const r=new n;r.isSupported(e,t)&&t.restrictions.push(r)}t.restrictions.forEach(e=>e.setReporting(t))}(this,t)},this.clearReport=function(){},this.validateOnChange=function(){this.validate().then(()=>{}).catch(()=>{})},this.getErrorsRaw=async function(t){const e=await f(t);return this.valuePrev=this.input.getValue(),e},this.validateOnChangeState=function(){return this.validate()},this.hasAutoScroll=function(){return this.input.hasAutoScroll()},this.getNode=function(){return this.input.getReportingNode()}}W.prototype=Object.create($.prototype);const z=W;function K(){this.reporting=null,this.type=""}K.prototype={isSupported:(t,e)=>!0,getType(){return this.type},setReporting(t){this.reporting=t},getValue(){return this.reporting.input.value.current},validate(){throw new Error("validate is wrong")},async validatePromise(){let t;try{t=await this.validate()}catch(t){var e;return Promise.reject(null!==(e=t?.message)&&void 0!==e?e:t)}return t?Promise.resolve():Promise.reject("validate is wrong")},onReady(){}};const U=K;function G(){U.call(this),this.isSupported=function(t){return!!t.checkValidity},this.validate=function(){const{nodes:t}=this.reporting.input;for(const e of t)if(e.checkValidity())return!0;return!1}}G.prototype=Object.create(U.prototype);const X=G;function Z(){U.call(this),this.type="required"}Z.prototype=Object.create(U.prototype),Z.prototype.isSupported=function(t,e){return e.input.isRequired},Z.prototype.validate=function(){const{current:t}=this.reporting.input.value;return!y(t)};const tt=Z,{applyFilters:et}=JetPlugins.hooks;let nt=[];const rt=()=>et("jet.fb.restrictions.default",[X,tt]);let ot=[];function it(t,e=!1){const n=[];t?.[0]?.getContext()?.reset({silence:e});for(const e of t){if(!(e instanceof ct))throw new Error("Input is not instance of InputData");n.push((t,n)=>{e.reporting.validateOnChangeState().then(t).catch(n)})}return n}function st(t,e=!1){return f(it(t,e))}const{doAction:ut}=JetPlugins.hooks;function at(){this.rawName="",this.name="",this.comment=!1,this.nodes=[],this.attrs={},this.enterKey=null,this.inputType=null,this.offsetOnFocus=75,this.path=[],this.value=this.getReactive(),this.value.watch(this.onChange.bind(this)),this.isRequired=!1,this.calcValue=null,this.reporting=null,this.checker=null,this.root=null,this.loading=new F(!1),this.loading.make(),this.isResetCalcValue=!0,this.validateTimer=!1,this.stopValidation=!1,this.abortController=null}at.prototype.attrs={},at.prototype.isSupported=function(t){return!1},at.prototype.addListeners=function(){const[t]=this.nodes;t.addEventListener("input",t=>{this.value.current=t.target.value}),t.addEventListener("blur",()=>{}),t.addEventListener("input",()=>{this.reporting&&"function"==typeof this.reporting.switchButtonsState&&this.reporting.switchButtonsState(!0),this.debouncedReport()}),!R&&jQuery(t).on("change",t=>{this.value.current!=t.target.value&&(this.callable.lockTrigger(),this.value.current=t.target.value,this.callable.unlockTrigger())}),"input"===this.inputType&&(this.enterKey=new k,t.addEventListener("keydown",this.handleEnterKey.bind(this)))},at.prototype.makeReactive=function(){this.onObserve(),this.addListeners(),this.setValue(),this.initNotifyValue(),this.value.make(),ut("jet.fb.input.makeReactive",this)},at.prototype.onChange=function(t){this.isResetCalcValue&&(this.calcValue=this.value.current),this?.callable?.run(t),this.report()},at.prototype.report=function(){this.reporting.validateOnChange()},at.prototype.reportOnBlur=function(t=null){this.reporting.validateOnBlur(t)},at.prototype.debouncedReport=function(){this.validateTimer&&(this.stopValidation=!0,clearTimeout(this.validateTimer),this.abortController&&this.abortController.abort()),this.abortController=new AbortController;let t=this.abortController.signal;this.validateTimer=setTimeout(()=>{this.reportOnBlur(t)},450)},at.prototype.watch=function(t){return this.value.watch(t)},at.prototype.watchValidity=function(t){return this.reporting.validityState.watch(t)},at.prototype.sanitize=function(t){return this.value.sanitize(t)},at.prototype.merge=function(t){this.nodes=[...t.getNode()]},at.prototype.setValue=function(){let t;t=this.isArray()?Array.from(this.nodes).map(({value:t})=>t):this.nodes[0]?.value,this.calcValue=t,this.value.current=t},at.prototype.setNode=function(t){var e;this.nodes=[t],this.rawName=null!==(e=t.name)&&void 0!==e?e:"",this.name=_t(this.rawName),this.inputType=t.nodeName.toLowerCase()},at.prototype.onObserve=function(){const[t]=this.nodes;t.jfbSync=this,this.isRequired=this.checkIsRequired(),this.callable=function(t,e){H.length||(H=J("jet.fb.signals",[A,L,B]));for(const n of H){const r=new n;if(r.isSupported(t,e))return r}return null}(t,this),this.callable.setInput(this),this.reporting=function(t){nt.length||(nt=et("jet.fb.reporting",[z]));for(const e of nt){const n=new e;if(n.isSupported(t.nodes[0],t))return n.setInput(t),n}throw new Error("Something went wrong")}(this),this.loading.watch(()=>this.onChangeLoading()),this.path=[...this.getParentPath(),this.name],this.getSubmit().submitter.hasOwnProperty("status")&&!this.hasParent()&&this.getSubmit().submitter.watchReset(()=>this.onClear())},at.prototype.onChangeLoading=function(){this.getSubmit().lockState.current=this.loading.current;const[t]=this.nodes;t.closest(".jet-form-builder-row").classList.toggle("is-loading",this.loading.current)},at.prototype.setRoot=function(t){this.root=t},at.prototype.onRemove=function(){},at.prototype.getName=function(){return this.name},at.prototype.getValue=function(){return this.value.current},at.prototype.getNode=function(){return this.nodes},at.prototype.isArray=function(){return this.rawName.includes("[]")},at.prototype.beforeSubmit=function(t,e=!1){this.getSubmit().submitter.promise(t,e)},at.prototype.getSubmit=function(){return this.getRoot().form},at.prototype.getRoot=function(){return this.root?.parent?this.root.parent.getRoot():this.root},at.prototype.isVisible=function(){return b(this.getWrapperNode())},at.prototype.onClear=function(){this.silenceSet(null)},at.prototype.getReactive=function(){return new _},at.prototype.checkIsRequired=function(){var t;const[e]=this.nodes;return null!==(t=e.required)&&void 0!==t?t:!!e.dataset.required?.length},at.prototype.silenceSet=function(t){const e=this.report.bind(this);this.report=()=>{},this.value.current=t,this.report=e},at.prototype.silenceNotify=function(){const t=this.report.bind(this);this.report=()=>{},this.value.notify(),this.report=t},at.prototype.hasParent=function(){return!!this.root?.parent},at.prototype.getWrapperNode=function(){return this.nodes[0].closest(".jet-form-builder-row")},at.prototype.handleEnterKey=function(t){"Enter"!==t.key||!this.enterKey||t.shiftKey||t.isComposing||(t.preventDefault(),this.onEnterKey())},at.prototype.onEnterKey=function(){this.enterKey.applyFilters(!0)&&!0===this.getSubmit().canTriggerEnterSubmit&&this.getSubmit().submit()},at.prototype.initNotifyValue=function(){this.silenceNotify()},at.prototype.onFocus=function(){this.scrollTo(),this.focusRaw()},at.prototype.focusRaw=function(){const[t]=this.nodes;["date","time","datetime-local"].includes(t.type)||t?.focus({preventScroll:!0})},at.prototype.scrollTo=function(){const t=this.getWrapperNode();window.scrollTo({top:v(t)-this.offsetOnFocus,behavior:"smooth"})},at.prototype.getContext=function(){return this.root.getContext()},at.prototype.populateInner=function(){return!1},at.prototype.hasAutoScroll=function(){return!0},at.prototype.getReportingNode=function(){return this.nodes[0]},at.prototype.getParentPath=function(){if(!this.root?.parent)return[];const t=this.root.parent.value.current;if("object"!=typeof t)return[];for(const[e,n]of Object.entries(t))if(n===this.root)return[...this.root.parent.getParentPath(),this.root.parent.name,e];return[]},at.prototype.reQueryValue=function(){this.setValue(),this.initNotifyValue()},at.prototype.revertValue=function(t){this.value.current=t},at.prototype.reCalculateFormula=function(){this.setValue(),this.initNotifyValue()};const ct=at;function lt(){ct.call(this),this.isSupported=function(t){return function(t){return["select-one","range"].includes(t.type)}(t)},this.addListeners=function(){const[t]=this.nodes;t.addEventListener("change",t=>{this.value.current=t.target.value}),!R&&jQuery(t).on("change",t=>{this.value.current!=t.target.value&&(this.callable.lockTrigger(),this.value.current=t.target.value,this.callable.unlockTrigger())}),this.enterKey=new k,t.addEventListener("keydown",this.handleEnterKey.bind(this))},this.onClear=function(){this.silenceSet("")}}lt.prototype=Object.create(ct.prototype);const ht=lt;function pt(){ct.call(this),this.numberNode=null,this.isSupported=function(t){return M(t)},this.setNode=function(t){ct.prototype.setNode.call(this,t),this.numberNode=t.parentElement.querySelector(".jet-form-builder__field-value-number")}}pt.prototype=Object.create(ct.prototype);const ft=pt;function dt(){ct.call(this),this.comment=null,this.isSupported=function(t){return T(t)},this.addListeners=function(){},this.onObserve=function(){ct.prototype.onObserve.call(this),this.isArray()&&this.setComment()},this.setComment=function(){this.comment=document.createComment(this.name);const[t]=this.nodes;t.parentElement.insertBefore(this.comment,t)},this.isVisible=function(){return!1},this.merge=function(t){this.nodes.push(...t.getNode())}}dt.prototype=Object.create(ct.prototype);const gt=dt;function mt(t){_.call(this,t)}mt.prototype=Object.create(_.prototype),mt.prototype.add=function(t){var e;this.current=[...new Set([...null!==(e=this.current)&&void 0!==e?e:[],t])]},mt.prototype.remove=function(t){this.current=this.current.filter(e=>e!==t)},mt.prototype.toggle=function(t,e=null){null===e?this.current.includes(t)?this.remove(t):this.add(t):e?this.add(t):this.remove(t)};const yt=mt,{builtInStates:bt}=window.JetFormBuilderSettings;function vt(){gt.call(this),this.isSupported=function(t){return"hidden"===t?.type&&"_jfb_current_render_states[]"===t.name},this.add=function(t){this.value.add(t)},this.remove=function(t){this.value.remove(t)},this.toggle=function(t,e=null){this.value.toggle(t,e)},this.isCustom=function(t){return!bt.includes(t)}}vt.prototype=Object.create(gt.prototype),vt.prototype.getReactive=function(){return new yt};const wt=vt,{applyFilters:St,doAction:jt}=JetPlugins.hooks;let Nt=[];function _t(t){const e=[/^([\w\-]+)\[\]$/,/^[\w\-]+\[\d+\]\[([\w\-]+)\]\[?\]?$/];for(const n of e)if(n.test(t))return t.match(n)[1];return t}function It(t){const e=[];for(const n of t){const t=n.populateInner();t?.length&&e.push(...t),e.push(n)}return e}function Ft(t){this.form=t,this.lastResponse={},this.promises=[]}Ft.prototype.submit=function(){throw new Error("You need to replace this callback")},Ft.prototype.getPromises=function(){return this.promises.map(({callable:t})=>new Promise(t))},Ft.prototype.promise=function(t,e=!1){const n=e?e.path.join("."):"";this.promises=this.promises.filter(({idPath:t})=>!t||t!==n),this.promises.push({callable:t,idPath:e?e.path.join("."):""})};const Ot=Ft;function kt(t){return"success"===t||t?.includes("dsuccess|")}function Ct(t){Ot.call(this,t),this.status=new _,this.status.make(),this.submit=function(){const t=jQuery(this.form.observable.rootNode),{applyFilters:e}=JetPlugins.hooks;Promise.all(e("jet.fb.submit.ajax.promises",this.getPromises(),t)).then(t=>this.runSubmit(t)).catch(()=>this.form.toggle())},this.runSubmit=function(t){const{rootNode:e}=this.form.observable,n=new FormData(e);n.append("_jet_engine_booking_form_id",this.form.getFormId()),this.status.silence(),this.status.current=null,this.status.silence(),jQuery.ajax({url:JetFormBuilderSettings.ajaxurl,type:"POST",dataType:"json",data:n,cache:!1,contentType:!1,processData:!1}).done(n=>{this.onSuccess(n);const r=jQuery(e);t.forEach(t=>{"function"==typeof t&&t.call(r,n)})}).fail(this.onFail.bind(this))},this.onSuccess=function(t){this.form.toggle();const{rootNode:e}=this.form.observable;this.lastResponse=t;const n=jQuery(e);"success"===t.status?jQuery(document).trigger("jet-form-builder/ajax/on-success",[t,n]):jQuery(document).trigger("jet-form-builder/ajax/processing-error",[t,n]),this.status.current=t.status,t.redirect?t.open_in_new_tab?window.open(t.redirect,"_blank"):window.location=t.redirect:t.reload&&window.location.reload(),this.insertMessage(t.message)},this.onFail=function(t,e,n){this.form.toggle(),this.status.current=!1;const{rootNode:r}=this.form.observable,o=jQuery(r);jQuery(document).trigger("jet-form-builder/ajax/on-fail",[t,e,n,o]),console.error(t.responseText,n)},this.insertMessage=function(t){const{rootNode:e}=this.form.observable,n=document.createElement("div");n.classList.add("jet-form-builder-messages-wrap"),n.innerHTML=t,e.appendChild(n)}}Ct.prototype=Object.create(Ot.prototype),Ct.prototype.status=null,Ct.prototype.watchReset=function(t){const{rootNode:e}=this.form.observable;e.dataset?.clear&&this.watchSuccess(t)},Ct.prototype.watchSuccess=function(t){const e=this.status;e.watch(()=>{kt(e.current)&&t()})},Ct.prototype.watchFail=function(t){const e=this.status;e.watch(()=>{kt(e.current)||t()})};const Rt=Ct;function Et(t){Ot.call(this,t),this.failPromises=[],this.submit=function(){const{rootNode:t}=this.form.observable,{applyFilters:e}=JetPlugins.hooks;Promise.all(e("jet.fb.submit.reload.promises",this.getPromises(),{target:t})).then(()=>t.submit()).catch(()=>{this.failPromises.forEach(t=>t()),this.form.toggle()})},this.onFailSubmit=function(t){"function"==typeof t&&this.failPromises.push(t)}}Et.prototype=Object.create(Ot.prototype);const Pt=Et,Tt=function(t){this.observable=t,this.lockState=new F(!1),this.lockState.make(),this.autoFocus=window.JetFormBuilderSettings?.auto_focus,this.canSubmitForm=!0,this.canTriggerEnterSubmit=!0,this.onSubmit=function(t){t.preventDefault(),this.submit()},this.submit=function(){!0===this.canSubmitForm&&(this.canSubmitForm=!1,this.canTriggerEnterSubmit=!1,this.observable.inputsAreValid().then(()=>{this.clearErrors(),this.toggle(),this.submitter.submit()}).catch(()=>{this.autoFocus&&j(It(this.observable.getInputs()))}).finally(()=>{this.canTriggerEnterSubmit=!0,this.canSubmitForm=!0}))},this.clearErrors=function(){const t=this.observable.rootNode.querySelectorAll(".jet-form-builder-messages-wrap");for(const e of t)e.remove()},this.toggle=function(){this.lockState.toggle(),this.toggleLoading()},this.handleButtons=function(){const t=this.observable.rootNode.querySelectorAll(".jet-form-builder__submit");this.lockState.watch(()=>{for(const e of t)e.disabled=this.lockState.current;!1===this.lockState.current&&(this.canSubmitForm=!0)})},this.toggleLoading=function(){this.observable.rootNode.classList.toggle("is-loading")},this.createSubmitter=function(){const{classList:t}=this.observable.rootNode;return t.contains("submit-type-ajax")?new Rt(this):new Pt(this)},this.getFormId=function(){const{rootNode:t}=this.observable;return+t.dataset.formId},this.onEndSubmit=function(t){this.submitter.hasOwnProperty("status")?this.submitter.status.watch(t):this.submitter.onFailSubmit(t)},this.observable.rootNode.addEventListener("submit",t=>this.onSubmit(t)),this.submitter=this.createSubmitter(),this.handleButtons()},Mt=function(t,e){const{replaceAttrs:n=[]}=window.JetFormBuilderSettings,r=[];for(let t=0;tNodeFilter.FILTER_ACCEPT){const n=document.createNodeIterator(t,NodeFilter.SHOW_COMMENT,{acceptNode:e});let r;for(;r=n.nextNode();)r.nodeValue=r.nodeValue.trim(),yield r},Bt=function*(t){yield*xt(t,t=>!t.jfbObserved&&t.textContent.includes("JFB_FIELD::"))},Dt=function(t,e,n={}){if(null===e||!e?.length)return t;let r=Boolean(n?.rawRepeaterValue);for(const o of e){const e=r&&!1===o?.isCoreFilter;t=o.applyWithProps(e?n.rawRepeaterValue:t),r=!1}return t};function At(){this.props=[]}At.prototype.getSlug=function(){throw new Error("getSlug is empty")},At.prototype.setProps=function(t){this.props.push(...t)},At.prototype.applyWithProps=function(t){return this.apply(t,...this.props)},At.prototype.apply=function(t,...e){return t};const Vt=At;function Lt(){Vt.call(this),this.getSlug=function(){return"length"},this.apply=function(t){var e;return null!==(e=t?.length)&&void 0!==e?e:0}}Lt.prototype=Object.create(Vt.prototype);const Jt=Lt;function Ht(){Vt.call(this),this.getSlug=function(){return"ifEmpty"},this.apply=function(t,e){return y(t)||Number.isNaN(t)?e:t}}Ht.prototype=Object.create(Vt.prototype);const Qt=Ht;function qt(t,e){return(t=""+t).length>=e?t:new Array(e-t.length).fill(0)+t}function Yt(t,e=!0){const n=e?t.getUTCMonth():t.getMonth(),r=e?t.getUTCDate():t.getDate();return[e?t.getUTCFullYear():t.getFullYear(),qt(n+1,2),qt(r,2)].join("-")}function $t(t,e=!0){const n=e?t.getUTCHours():t.getHours(),r=e?t.getUTCMinutes():t.getMinutes();return[qt(n,2),qt(r,2)].join(":")}function Wt(t,e=!1){return Yt(t,e)+"T"+$t(t,e)}function zt(t){if(!Number.isNaN(+t))return{time:+t,type:"number"};if((t=t.toString()).split("-").length>1)return{time:new Date(t).getTime(),type:"date"};const e=t.split(":"),n=[Date.prototype.setHours,Date.prototype.setMinutes,Date.prototype.setSeconds],r=new Date;for(const t in e)e.hasOwnProperty(t)&&n.hasOwnProperty(t)&&n[t].call(r,e[t]);return{time:r.getTime(),type:"time"}}function Kt(){Vt.call(this),this.getSlug=function(){return"toDate"},this.apply=function(t,e=!0){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"");e="false"!==t.toLowerCase()}else e=Boolean(e);return Yt(new Date(t),e)}}Kt.prototype=Object.create(Vt.prototype);const Ut=Kt;function Gt(){Vt.call(this),this.getSlug=function(){return"toTime"},this.apply=function(t,e=!0){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"");e="false"!==t.toLowerCase()}else e=Boolean(e);return $t(new Date(t),e)}}Gt.prototype=Object.create(Vt.prototype);const Xt=Gt;function Zt(){Vt.call(this),this.getSlug=function(){return"toDateTime"},this.apply=function(t,e=!1){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"").toLowerCase();e=""!==t&&"false"!==t}else e=Boolean(e);return Wt(new Date(t),e)}}Zt.prototype=Object.create(Vt.prototype);const te=Zt;function ee(){Vt.call(this),this.getSlug=function(){return"addYear"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setFullYear(r.getFullYear()+e))}}ee.prototype=Object.create(Vt.prototype);const ne=ee;function re(){Vt.call(this),this.getSlug=function(){return"addMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(r.getMonth()+e))}}re.prototype=Object.create(Vt.prototype);const oe=re;function ie(){Vt.call(this),this.getSlug=function(){return"addDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(r.getDate()+e))}}ie.prototype=Object.create(Vt.prototype);const se=ie;function ue(){Vt.call(this),this.getSlug=function(){return"addHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setHours(r.getHours()+e))}}ue.prototype=Object.create(Vt.prototype);const ae=ue;function ce(){Vt.call(this),this.getSlug=function(){return"addMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMinutes(r.getMinutes()+e))}}ce.prototype=Object.create(Vt.prototype);const le=ce;function he(){Vt.call(this),this.getSlug=function(){return"T"},this.apply=function(t){if(!t)return 0;const{time:e}=zt(t);return e}}he.prototype=Object.create(Vt.prototype);const pe=he;function fe(){Vt.call(this),this.getSlug=function(){return"setHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?t:(e=e?+e.trim():0,r.setHours(e))}}fe.prototype=Object.create(Vt.prototype);const de=fe;function ge(){Vt.call(this),this.getSlug=function(){return"setMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?t:(e=e?+e.trim():0,r.setMinutes(e))}}ge.prototype=Object.create(Vt.prototype);const me=ge;function ye(){Vt.call(this),this.getSlug=function(){return"setDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(e))}}ye.prototype=Object.create(Vt.prototype);const be=ye;function ve(){Vt.call(this),this.getSlug=function(){return"setYear"},this.apply=function(t,e){if(!(e=!!e&&+e.trim()))return t;const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:r.setFullYear(e)}}ve.prototype=Object.create(Vt.prototype);const we=ve;function Se(){Vt.call(this),this.getSlug=function(){return"setMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(e))}}Se.prototype=Object.create(Vt.prototype);const je=Se;function Ne(){Vt.call(this),this.getSlug=function(){return"subHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setHours(r.getHours()-e))}}Ne.prototype=Object.create(Vt.prototype);const _e=Ne;function Ie(){Vt.call(this),this.getSlug=function(){return"subDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(r.getDate()-e))}}Ie.prototype=Object.create(Vt.prototype);const Fe=Ie;function Oe(){Vt.call(this),this.getSlug=function(){return"subMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMinutes(r.getMinutes()-e))}}Oe.prototype=Object.create(Vt.prototype);const ke=Oe;function Ce(){Vt.call(this),this.getSlug=function(){return"subMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(r.getMonth()-e))}}Ce.prototype=Object.create(Vt.prototype);const Re=Ce;function Ee(){Vt.call(this),this.getSlug=function(){return"subYear"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setFullYear(r.getFullYear()-e))}}Ee.prototype=Object.create(Vt.prototype);const Pe=Ee;function Te(){Vt.call(this),this.getSlug=function(){return"toDayInMs"},this.apply=function(t){return 864e5*t}}Te.prototype=Object.create(Vt.prototype);const Me=Te;function xe(){Vt.call(this),this.getSlug=function(){return"toMonthInMs"},this.apply=function(t){return 2592e6*t}}xe.prototype=Object.create(Vt.prototype);const Be=xe;function De(){Vt.call(this),this.getSlug=function(){return"toYearInMs"},this.apply=function(t){return 31536e6*t}}De.prototype=Object.create(Vt.prototype);const Ae=De;function Ve(){Vt.call(this),this.getSlug=function(){return"toHourInMs"},this.apply=function(t){return 36e5*t}}Ve.prototype=Object.create(Vt.prototype);const Le=Ve;function Je(){Vt.call(this),this.getSlug=function(){return"toMinuteInMs"},this.apply=function(t){return 6e4*t}}Je.prototype=Object.create(Vt.prototype);const He=Je;function Qe(){Vt.call(this),this.getSlug=function(){return"toWeekInMs"},this.apply=function(t){return 6048e5*t}}Qe.prototype=Object.create(Vt.prototype);const qe=Qe,{applyFilters:Ye}=JetPlugins.hooks;let $e=[];const We=[we,je,be,de,me,Pe,Re,Fe,_e,ke,ne,oe,se,ae,le,Jt,Qt,Ut,Xt,te,pe,Me,Be,Ae,Le,He,qe];let ze=[];function Ke(t,e=""){let n;$e.length||($e=Ye("jet.fb.filters",[...We]));for(let e of $e){const r=e;if(e=new r,t===e.getSlug()){e.isCoreFilter=We.includes(r),n=e;break}}n&&(e=e.split(",").map(t=>t.trim()),n.setProps(e),ze.push(n))}const Ue=function(t){if(null===t||!t?.length)return null;for(const e of t){const t=e.match(/^(\w+)\(([^()]+)\)/);null!==t?Ke(t[1],t[2]):Ke(e)}const e=[...ze];return ze=[],e};function Ge(){}Ge.prototype={getId(){throw new Error("You need to rewrite this method")},getResult(){throw new Error("You need to rewrite this method")}};const Xe=Ge;function Ze(){Xe.call(this),this.getId=()=>"CurrentDate",this.getResult=()=>(new Date).getTime()}Ze.prototype=Object.create(Xe.prototype);const tn=Ze,en={Milli_In_Sec:1e3,Sec_In_Min:60,Min_In_Hour:60,Hour_In_Day:24,Day_In_Month:30,Year_In_Day:365,Kb_In_Bytes:1024};en.Min_In_Sec=en.Sec_In_Min*en.Milli_In_Sec,en.Hour_In_Sec=en.Min_In_Hour*en.Min_In_Sec,en.Day_In_Sec=en.Hour_In_Day*en.Hour_In_Sec,en.Month_In_Sec=en.Day_In_Month*en.Day_In_Sec,en.Year_In_Sec=en.Year_In_Day*en.Day_In_Sec,en.Mb_In_Bytes=1024*en.Kb_In_Bytes,en.Gb_In_Bytes=1024*en.Mb_In_Bytes,en.Tb_In_Bytes=1024*en.Gb_In_Bytes;const nn=en;function rn(){Xe.call(this),this.getId=()=>"Min_In_Sec",this.getResult=()=>nn.Min_In_Sec}rn.prototype=Object.create(Xe.prototype);const on=rn;function sn(){Xe.call(this),this.getId=()=>"Month_In_Sec",this.getResult=()=>nn.Month_In_Sec}sn.prototype=Object.create(Xe.prototype);const un=sn;function an(){Xe.call(this),this.getId=()=>"Hour_In_Sec",this.getResult=()=>nn.Hour_In_Sec}an.prototype=Object.create(Xe.prototype);const cn=an;function ln(){Xe.call(this),this.getId=()=>"Day_In_Sec",this.getResult=()=>nn.Day_In_Sec}ln.prototype=Object.create(Xe.prototype);const hn=ln;function pn(){Xe.call(this),this.getId=()=>"Year_In_Sec",this.getResult=()=>nn.Year_In_Sec}pn.prototype=Object.create(Xe.prototype);const fn=pn,{applyFilters:dn}=JetPlugins.hooks;let gn=[];const mn=window.wp.i18n,{applyFilters:yn,addFilter:bn}=JetPlugins.hooks;function vn(t){if(!t)return"";if("SELECT"===t.tagName)return Array.from(t.selectedOptions||[]).map(t=>String(t.label||t.textContent||t.value||"").trim()).filter(Boolean).join(", ");if(("checkbox"===t.type||"radio"===t.type)&&!t.checked)return"";if("checkbox"===t.type||"radio"===t.type){const e=t.closest("label");if(!e)return"";const n=e.querySelector("span");return String(n?.textContent||e.textContent||t.value||"").trim()}return""}function wn(t,e={}){var n;this.parts=[],this.related=[],this.relatedAttrs=[],this.regexp=/%([\w\-].*?\S?)%/g,this.watchers=[];const{forceFunction:r=!1}=e;this.forceFunction=r,t instanceof ct&&(this.input=t),this.root=null!==(n=this.input?.root)&&void 0!==n?n:t}bn("jet.fb.custom.formula.macro","jet-form-builder",function(t,e){if(!e.includes("CT::"))return t;const n=function(t){gn.length||(gn=dn("jet.fb.static.functions",[tn,on,un,cn,hn,fn]));for(const e of gn){const n=new e;if(n.getId()===t)return n}return!1}(e=e.replace("CT::",""));return!1===n?t:n.getResult()}),wn.prototype={formula:null,parts:[],related:[],relatedAttrs:[],input:null,root:null,regexp:null,forceFunction:!1,setResult:()=>{throw new Error("CalculatedFormula.setResult is not set!")},relatedCallback:t=>t.value.current,relatedLabelCallback:t=>function(t){const e=Array.from(t.nodes||[]).map(vn).filter(Boolean);return e.length?e.join(", "):t.value.current}(t),observe(t){this.formula=t,Array.isArray(t)?t.forEach(t=>{this.observeItem(t)}):this.observeItem(t)},observeItem(t){let e,n=0;for(t+="";null!==(e=this.regexp.exec(t));){const r=this.observeMacro(e[1]);0!==e.index&&this.parts.push(t.slice(n,e.index)),n=e.index+e[0].length,!1===r?this.onMissingPart(e[0]):this.parts.push(r)}n!==t.length&&(this.parts.push(t.slice(n)),1===this.parts.length&&(this.parts=[]))},onMissingPart(t){this.parts.push(t)},isFieldNodeExists(t){if(void 0===this.root.dataInputs[t])return!1;let e=this.root.rootNode[t]||this.root.rootNode[t+"[]"]||this.root.rootNode.querySelectorAll('[data-field-name="'+t+'"]');if(e&&0===e.length&&(e=void 0),void 0===e){const n=t.replace(/([\\^$*+?.()|{}\[\]])/g,"\\$1"),r=`[name$="[${n}]"],[name$="[${n}][]"],[name*="[${n}]["]`,o=this.root.rootNode.querySelectorAll(r);o&&o.length&&(e=o)}return e=yn("jet.fb.formula.node.exists",e,t,this),e},observeMacro(t){null===this.formula&&(this.formula=t);const[e,...n]=t.split("|"),r=e.match(/[\w\-:]+/g);if(!r)return!1;let[o,...i]=r;if(e.includes("::")){const[t,...n]=e.split("::");this.root.getInput(t)&&(o=t,i=n)}if(void 0===this.isFieldNodeExists(o)){const t=new RegExp(`%${o}%`,"g");let e,n=0,r=this.formula;for(;null!==(e=t.exec(this.formula));){const t=this.formula[e.index-1],r=this.formula[e.index+e[0].length];if("*"===t||"/"===t||"*"===r||"/"===r){n="/"===t||"*"===t&&"*"===r?1:0;break}n=0;break}return r=r.replace(e[0],n),this.formula=r,n}const s="this"!==o?this.root.getInput(o):this.input;if(!s&&!o.includes("::"))return!1;const u=Ue(n);if(o.includes("::")){const t=yn("jet.fb.custom.formula.macro",!1,o,i,this);return!1!==t&&("function"==typeof t?()=>Dt(t(),u):Dt(t,u))}if(this.related.includes(s.name)||(this.related.push(s.name),this.watchers.push(s.watch(()=>this.setResult()))),!i?.length)return()=>Dt(this.relatedCallback(s),u);const[a]=i;if("label"===a)return()=>Dt(this.relatedLabelCallback(s),u);if(!s.attrs.hasOwnProperty(a))return!1;const c=s.attrs[a];return this.relatedAttrs.includes(s.name+a)||(this.relatedAttrs.push(s.name+a),this.watchers.push(c.value.watch(()=>this.setResult()))),()=>Dt(c.value.current,u)},calculateString(){var t;if(!this.parts.length)return this.formula;const{applyFilters:e=!1}=null!==(t=window?.JetFormBuilderMain?.filters)&&void 0!==t?t:{};return this.parts.map(t=>{if("function"!=typeof t)return this.input?.nodes&&!1!==e&&"string"==typeof t?(t=yn("jet.fb.onCalculate.part",t,this),e("forms/calculated-formula-before-value",t,jQuery(this.input.nodes[0]))):t;const n=t();return null===n||""===n||Number.isNaN(n)?this.emptyValue():n}).join("")},emptyValue:()=>"",calculate(){if(!this.parts.length&&!this.forceFunction)return this.formula;const t=function(t){if("string"!=typeof t)return t;let e="",n=!1,r="code",o=0;for(let i=0;i"function"==typeof t&&t()),this.watchers=[],this.relatedAttrs=[],this.related=[]},showError(t){console.group((0,mn.__)("JetFormBuilder: You have invalid calculated formula","jet-form-builder")),this.showErrorDetails(t),console.groupEnd()},showErrorDetails(t){if(console.error((0,mn.sprintf)((0,mn.__)("Initial: %s","jet-form-builder"),this.formula)),console.error((0,mn.sprintf)((0,mn.__)("Computed: %s","jet-form-builder"),t)),!this.input&&!this.root?.parent)return;if(this.input)return void console.error((0,mn.sprintf)((0,mn.__)("Field: %s","jet-form-builder"),this.input.path.join(".")));const e=this.root.parent.findIndex(this.root);console.error((0,mn.sprintf)((0,mn.__)("Scope: %s","jet-form-builder"),[...this.root.parent.path,-1===e?"":e].filter(Boolean).join(".")))}};const Sn=wn,{applyFilters:jn}=JetPlugins.hooks;function Nn(t){if(!t)return"";if("SELECT"===t.tagName)return Array.from(t.selectedOptions||[]).map(t=>String(t.label||t.textContent||t.value||"").trim()).filter(Boolean).join(", ");if(("checkbox"===t.type||"radio"===t.type)&&!t.checked)return"";if("checkbox"===t.type||"radio"===t.type){const e=t.closest("label");if(!e)return"";const n=e.querySelector("span");return String(n?.textContent||e.textContent||t.value||"").trim()}return""}function _n(t,{withPrefix:e=!0,macroHost:n=!1,macroFormat:r="",...o}={}){Sn.call(this,t,o),e&&(this.regexp=/JFB_FIELD::(.+)/gi),this.macroHost=n||!1,this.macroFormat=r||"",this.relatedCallback=function(t){const e=jQuery(t.nodes[0]),n=!!this.macroHost&&jQuery(this.macroHost);let r=jn("jet.fb.macro.field.value",!1,e,n,this.macroFormat);return r=wp?.hooks?.applyFilters?wp.hooks.applyFilters("jet.fb.macro.field.value",r,e,n,this.macroFormat):r,!1!==r?r:"option-label"===this.macroFormat&&function(t){return Array.from(t.nodes||[]).map(Nn).filter(Boolean).join(", ")}(t)||t.value.current}.bind(this),this.onMissingPart=function(){}}_n.prototype=Object.create(Sn.prototype),_n.prototype.observeMacro=function(t){null===this.formula&&(this.formula=t);const[e,...n]=t.split("|"),r=e.match(/[\w\-:]+/g);if(!r)return!1;const[o,...i]=r;if(void 0===this.isFieldNodeExists(o))return!1;const s="this"!==o?this.root.getInput(o):this.input;if(!s&&!o.includes("::"))return!1;const u=Ue(n);if(o.includes("::"))return Sn.prototype.observeMacro.call(this,t);if(this.related.includes(s.name)||(this.related.push(s.name),this.watchers.push(s.watch(()=>this.setResult()))),!i?.length)return()=>{if("repeater"===s.inputType&&u?.length){const t=this.relatedCallback(s);return s.reQueryValue?.(),Dt(t,u,{rawRepeaterValue:s.value.current})}return Dt(this.relatedCallback(s),u)};const[a]=i;if(!s.attrs.hasOwnProperty(a))return!1;const c=s.attrs[a];return this.relatedAttrs.includes(s.name+a)||(this.relatedAttrs.push(s.name+a),this.watchers.push(c.value.watch(()=>this.setResult()))),()=>Dt(c.value.current,u)},_n.prototype.calculateString=function(){return this.parts.length?this.parts.map(t=>{if("function"!=typeof t)return t;const e=t();return null===e||""===e?"":e}).join(""):this.formula};const In=_n,{__:Fn,sprintf:On}=wp.i18n,kn=function(t,e){if(t.jfbObserved)return;const n=new In(e);if(n.observe(t.textContent),!n.parts?.length)return console.group(Fn("JetFormBuilder: You have invalid html macro","jet-form-builder")),console.error(On(Fn("Content: %s","jet-form-builder"),t.textContent)),console.groupEnd(),void n.clearWatchers();const r=document.createElement("span"),o=t.parentNode.insertBefore(r,t);n.setResult=()=>{o.innerHTML=n.calculateString()},n.setResult(),t.jfbObserved=!0},Cn=function(t,e,n){var r;const o=null!==(r=t[e])&&void 0!==r?r:"";if("string"!=typeof o)return null;const i=new In(n);i.observe(o),i.setResult=()=>{t[e]=i.calculateString()},i.setResult()},Rn=function(t,e){t.__jfbMacroTemplate||(t.__jfbMacroTemplate=t.innerHTML);const n=new In(e,{withPrefix:!1,macroHost:t,macroFormat:t.dataset.jfbMacroFormat||""});if(n.observe(`%${t.dataset.jfbMacro}%`),!n.parts?.length)return console.group((0,mn.__)("JetFormBuilder: You have invalid html macro","jet-form-builder")),console.error((0,mn.sprintf)((0,mn.__)("Content: %s","jet-form-builder"),t.dataset.jfbMacro)),console.groupEnd(),void n.clearWatchers();t.dataset.jfbObserved=1,n.setResult=()=>{let e=String(n.calculateString());const r=t.querySelector?.("textarea");r&&(e=e.replace(/\r\n|\r|\n/g,"
")),t.innerHTML=e},n.setResult()};function En(t){this.root=t,this.reportedFirst=!1,this.silence=!0}En.prototype={reset(t={}){var e;this.reportedFirst=!1,this.setSilence(null===(e=t?.silence)||void 0===e||e)},reportFirst(){this.reportedFirst=!0},setSilence(t){this.silence=!!t}};const Pn=En,{doAction:Tn}=JetPlugins.hooks;function Mn(t=null){this.parent=t,this.dataInputs={},this.form=null,this.multistep=null,this.rootNode=null,this.isObserved=!1,this.context=this.parent?null:new Pn(this)}Mn.prototype={parent:null,dataInputs:{},form:null,multistep:null,rootNode:null,isObserved:!1,value:null,observe(t=null){this.isObserved||(null!==t&&(this.rootNode=t),this.isObserved=!0,Tn("jet.fb.observe.before",this),this.initSubmitHandler(),this.initFields(),this.makeReactiveProxy(),this.initMacros(),this.initActionButtons(),this.initValue(),Tn("jet.fb.observe.after",this))},initFields(){for(const t of this.rootNode.querySelectorAll("[data-jfb-sync]"))this.pushInput(t)},initMacros(){for(const t of Bt(this.rootNode))kn(t,this);const t=Mt(this.rootNode,"JFB_FIELD::"),{replaceAttrs:e=[]}=window.JetFormBuilderSettings;for(const n of t)for(const t of e)Cn(n,t,this);const n=this.rootNode.querySelectorAll("[data-jfb-macro]:not([data-jfb-observed])");for(const t of n)Rn(t,this)},initSubmitHandler(){this.parent||(this.form=new Tt(this))},initActionButtons(){if(!this.parent)for(const t of this.rootNode.querySelectorAll(".jet-form-builder__button-switch-state")){let e;try{e=JSON.parse(t.dataset.switchOn)}catch(t){continue}t.addEventListener("click",()=>{this.getState().value.current=e})}},async inputsAreValid(){const t=await st(It(this.getInputs()));return Boolean(t.length)?Promise.reject(t):Promise.resolve()},watch(t,e){const n=this.getInput(t);if(n)return n.watch(e);throw new Error(`dataInputs in Observable don't have ${t} field`)},observeInput(t,e=!1){const n=this.pushInput(t,e);n.makeReactive(),Tn("jet.fb.observe.input.manual",n)},makeReactiveProxy(){for(const t of this.getInputs())t.makeReactive()},pushInput(t,e=!1){var n;if(!this.parent&&t.parentElement.closest(".jet-form-builder-repeater"))return;const r=function(t,e){Nt.length||(Nt=St("jet.fb.inputs",[wt,ft,ht,gt]));for(const n of Nt){const r=new n;if(r.isSupported(t))return r.setRoot(e),r.setNode(t),m(r),jt("jet.fb.input.created",r),r}throw new Error("Something went wrong")}(t,this),o=null!==(n=this.dataInputs[r.getName()])&&void 0!==n&&n;return!1===o||e?(this.dataInputs[r.getName()]=r,r):(o.merge(r),o)},getInputs(){return Object.values(this.dataInputs)},getState(){return this.getInput("_jfb_current_render_states")},getInput(t){var e;if(this.dataInputs.hasOwnProperty(t))return this.dataInputs[t];const n=null!==(e=this.parent?.root)&&void 0!==e?e:null;return n&&n.dataInputs.hasOwnProperty(t)?n.dataInputs[t]:null},getSubmit(){return this.form?this.form:this.parent.root.form},getContext(){var t;return null!==(t=this.context)&&void 0!==t?t:this.parent.root.context},remove(){for(const t of this.getInputs())t.onRemove()},reQueryValues(){for(const t of this.getInputs())t.reQueryValue()},initValue(){this.value=new _({}),this.value.watch(()=>{const t=Object.entries(this.value.current);for(const[e,n]of t)this.getInput(e).revertValue(n)});for(const t of this.getInputs())t.watch(()=>{this.value.current[t.getName()]=t.getValue()});this.value.make()}};const xn=Mn;var Bn;window.JetFormBuilder=null!==(Bn=window.JetFormBuilder)&&void 0!==Bn?Bn:{};const Dn=function(t){const e=t[0].querySelector("form.jet-form-builder");if(!e)return;const n=new xn;window.JetFormBuilder[e.dataset.formId]=n,jQuery(document).trigger("jet-form-builder/init",[t,n]),n.observe(e),jQuery(document).trigger("jet-form-builder/after-init",[t,n])};var An,Vn,Ln,Jn,Hn;window.JetFormBuilderAbstract={...null!==(An=window.JetFormBuilderAbstract)&&void 0!==An?An:{},Filter:Vt,CalculatedFormula:Sn,BaseInternalMacro:Xe},window.JetFormBuilderFunctions={...null!==(Vn=window.JetFormBuilderFunctions)&&void 0!==Vn?Vn:{},getFilters:Ue,applyFilters:Dt,toDate:Yt,toDateTime:Wt,toTime:$t,getTimestamp:zt},window.JetFormBuilderConst={...null!==(Ln=window.JetFormBuilderConst)&&void 0!==Ln?Ln:{},...nn},window.JetFormBuilderAbstract={...null!==(Jn=window.JetFormBuilderAbstract)&&void 0!==Jn?Jn:{},InputData:ct,BaseSignal:P,ReactiveVar:_,ReactiveHook:k,LoadingReactiveVar:F,Observable:xn,ReportingInterface:$,Restriction:U,RestrictionError:q,BaseHtmlAttr:e,ReactiveSet:yt,RequiredRestriction:tt},window.JetFormBuilderFunctions={...null!==(Hn=window.JetFormBuilderFunctions)&&void 0!==Hn?Hn:{},allRejected:f,getLanguage:function(){const t=window?.navigator?.languages?.length?window.navigator.languages[0]:window?.navigator?.language;return null!=t?t:"en-US"},toHTML:function(t){const e=document.createElement("template");return e.innerHTML=t.trim(),e.content},validateInputs:function(t,e=!1){return Promise.all(it(t,e).map(t=>new Promise(t)))},validateInputsAll:st,getParsedName:_t,isEmpty:y,getValidateCallbacks:it,getOffsetTop:v,focusOnInvalidInput:j,populateInputs:It,isVisible:b,queryByAttrValue:Mt,iterateComments:xt,observeMacroAttr:Cn,observeComment:kn,iterateJfbComments:Bt,getScrollParent:S,isUA:function(t){return h?.[t]}},document.addEventListener("DOMContentLoaded",function(){for(const[t,e]of Object.entries(h))e&&document.body.classList.add(`jet--ua-${t}`)}),jQuery(()=>JetPlugins.init()),JetPlugins.bulkBlocksInit([{block:"jet-forms.form-block",callback:Dn,condition:()=>"loading"!==document.readyState}]),jQuery(window).on("elementor/frontend/init",function(){if(!window.elementorFrontend)return;const t={"jet-engine-booking-form.default":Dn,"jet-form-builder-form.default":Dn};jQuery.each(t,function(t,e){window.elementorFrontend.hooks.addAction("frontend/element_ready/"+t,e)})}),addEventListener("load",()=>{const t=Object.values(window.JetFormBuilder);for(const e of t)e instanceof xn&&e.reQueryValues()})})(); \ No newline at end of file +(()=>{"use strict";function t(){this.attrName="",this.initial=null,this.isFromData=!1,this.value=null}t.prototype={attrName:"",input:null,initial:null,value:null,observe(){this.value=new _(this.initial),this.value.make(),this.addWatcherAttr()},nodeSignal(){const[t]=this.input.nodes;t[this.attrName]=this.value.current},addWatcherAttr(){this.value.watch(()=>this.nodeSignal())},isSupported(t){var e;const[n]=t.nodes,r=null!==(e=-1!==n[this.attrName])&&void 0!==e?e:-1;return!(!n.dataset.hasOwnProperty(this.attrName)&&!r)&&(this.initial=this.getInitial(t),Boolean(this.initial))},getInitial(t){const[e]=t.nodes;return e.dataset[this.attrName]||e[this.attrName]||!1},setInput(t){this.input=t}};const e=t;function n(){e.call(this),this.attrName="max_files",this.isSupported=function(t){const[e]=t.nodes;return"file"===e.type},this.setInput=function(t){e.prototype.setInput.call(this,t);const{max_files:n=1}=JSON.parse(t.previewsContainer.dataset.args);this.initial=+n},this.addWatcherAttr=()=>{}}n.prototype=Object.create(e.prototype);const r=n;function o(){r.call(this),this.attrName="max_size",this.setInput=function(t){r.prototype.setInput.call(this,t);const{max_size:e=1}=JSON.parse(t.previewsContainer.dataset.args);this.initial=+e}}o.prototype=Object.create(r.prototype);const i=o;function s(){e.call(this),this.attrName="remaining",this.isSupported=function(t){return t.attrs.hasOwnProperty("maxLength")},this.setInput=function(t){var n;e.prototype.setInput.call(this,t);const{maxLength:r}=t.attrs,o=null!==(n=t.value.current?.length)&&void 0!==n?n:0;this.initial=r.value.current-o},this.addWatcherAttr=()=>{},this.observe=function(){e.prototype.observe.call(this),this.input.value.watch(()=>this.updateAttr()),this.input.attrs.maxLength.value.watch(()=>this.updateAttr())},this.updateAttr=function(){var t;const{maxLength:e}=this.input.attrs,n=null!==(t=this.input.value.current?.length)&&void 0!==t?t:0;this.value.current=e.value.current-n}}s.prototype=Object.create(e.prototype);const u=s;function a(){r.call(this),this.attrName="file_ext",this.isSupported=function(t){const[e]=t.nodes;return"file"===e.type&&Boolean(e.accept)},this.setInput=function(t){r.prototype.setInput.call(this,t);const[e]=t.nodes;this.initial=e.accept.split(",")},this.addWatcherAttr=function(){const[t]=this.input.nodes;this.value.watch(()=>{t.accept=this.value.current.join(",")})}}a.prototype=Object.create(r.prototype);const c=a,l=navigator.userAgent,h={safari:/^((?!chrome|android).)*safari/i.test(l)||/constructor/i.test(window.HTMLElement)||"[object SafariRemoteNotification]"===(!window.safari||"undefined"!=typeof safari&&window.safari.pushNotification).toString()},{applyFilters:p}=JetPlugins.hooks;async function f(t){const e=await Promise.allSettled(t.map(t=>new Promise(t)));return window?.JetFormBuilderSettings?.devmode&&(console.group("allRejected"),console.info(...e),console.groupEnd()),e.filter(t=>"rejected"===t.status).map(({reason:t,value:e})=>t?.length?t[0]:null!=t?t:e)}let d=[];function m(t){const n=new e;return n.attrName=t,n}function g(t){d.length||(d=p("jet.fb.input.html.attrs",["min","max","minLength","maxLength",r,i,u,c]));for(const e of d){let n;n="string"==typeof e?m(e):new e,n.isSupported(t)&&(t.attrs[n.attrName]=n,n.setInput(t),n.observe())}}function y(t){return"boolean"==typeof t?!t:null==t||("object"!=typeof t||Array.isArray(t)?"number"==typeof t?0===t:!t?.length:!Object.keys(t)?.length)}function b(t){return t?.isConnected&&null!==t?.offsetParent}function v(t){var e;const n=t.getBoundingClientRect(),r=S(t);return n?.top+(null!==(e=r?.scrollY)&&void 0!==e?e:0)}const w=t=>t.scrollHeight>t.clientHeight&&t;function S(t){let e=t.closest(".jet-popup__container-inner");return e?w(e):(e=t.closest(".elementor-popup-modal .dialog-message"),e?w(e):window)}function j(t){for(const e of t)if(!e.reporting.validityState.current){!e.reporting.hasAutoScroll()&&e.onFocus();break}}function N(t=null){this.current=t,this.signals=[],this.sanitizers=[],this.isDebug=!1,this.isSilence=!1,this.isMaked=!1}N.prototype={watchOnce(t){if("function"!=typeof t)return;const e=this.watch(()=>{e(),t()})},watch(t){if("function"!=typeof t)return!1;if(this.signals.some(({signal:e})=>e===t))return!0;this.signals.push({signal:t,trace:(new Error).stack});const e=this.signals.length-1;return()=>this.signals.splice(e,1)},sanitize(t){if("function"!=typeof t)return!1;if(-1!==this.sanitizers.indexOf(t))return!0;this.sanitizers.push(t);const e=this.sanitizers.length-1;return()=>this.sanitizers.splice(e,1)},make(){if(this.isMaked)return;this.isMaked=!0;let t=this.current,e=null;const n=this;Object.defineProperty(this,"current",{get:()=>t,set(r){t!==r&&(e=t,n.isDebug&&(console.group("ReactiveVar has changed"),console.log("current:",t),console.log("newVal:",r),console.groupEnd()),t=n.applySanitizers(r),n.isSilence||n.notify(e))}})},notify(t=null){this.signals.forEach(({signal:e})=>e.call(this,t))},applySanitizers(t){for(const e of this.sanitizers)t=e.call(this,t);return t},setIfEmpty(t){y(this.current)&&(this.current=t)},debug(){this.isDebug=!this.isDebug},silence(){this.isSilence=!this.isSilence}};const _=N;function I(){_.call(this,!1),this.start=function(){this.current=!0},this.end=function(){this.current=!1},this.toggle=function(){this.current=!this.current}}I.prototype=Object.create(_.prototype);const F=I;function O(){this.handlers=[]}O.prototype={addFilter(t){this.handlers.push(t);const e=this.handlers.length-1;return()=>this.handlers.splice(e,1)},applyFilters(...t){let e=t[0];const n=t.slice(1);for(const t of this.handlers)e=t(e,...n);return e}};const k=O,{strict_mode:C=!1}=window?.JetFormBuilderSettings,R=Boolean(C);function E(){this.input=null,this.lock=new _,this.lock.make(),this.triggerjQuery=!R}E.prototype={input:null,lock:null,isSupported:(t,e)=>!1,setInput(t){this.input=t},run(t){if(!this.lock.current)return this.runSignal(t),void this.unlockTrigger();this.lock.signals.length||this.lock.watchOnce(()=>this.runSignal(t))},triggerJQuery(t){this.triggerjQuery&&jQuery(t).trigger("change")},runSignal(t){},lockTrigger(){this.triggerjQuery=!1},unlockTrigger(){R||(this.triggerjQuery=!0)}};const P=E;function T(t){return"hidden"===t.type}function M(t){return"range"===t.type}function x(){P.call(this)}x.prototype=Object.create(P.prototype),x.prototype.isSupported=function(t,e){return T(t)&&e.isArray()},x.prototype.runSignal=function(){const{current:t}=this.input.value;if(!t?.length){for(const t of this.input.nodes)t.remove();return void this.input.nodes.splice(0,this.input.nodes.length)}const e=[];for(const n of t){if(this.input.nodes.some((t,r)=>t.value===n&&(e.push(r),!0)))continue;const t=document.createElement("input");t.type="hidden",t.value=n,t.name=this.input.rawName,this.input.nodes.push(t),e.push(this.input.nodes.length-1),this.input.comment.parentElement.insertBefore(t,this.input.comment.nextElementSibling)}this.input.nodes=this.input.nodes.filter((t,n)=>!!e.includes(n)||(t.remove(),!1))};const B=x;function D(){P.call(this),this.isSupported=function(t){return M(t)},this.runSignal=function(){const[t]=this.input.nodes;t.value=this.input.value.current,this.input.numberNode.textContent=t.value,this.triggerJQuery(t)}}D.prototype=Object.create(P.prototype);const A=D;function V(){B.call(this),this.isSupported=function(t){return"_jfb_current_render_states[]"===t.name},this.runSignal=function(t){B.prototype.runSignal.call(this,t);const e=new URL(window.location),n=this.input.getSubmit().getFormId(),r=this.input.value.current||[],o=`jfb[${n}][state]`,i=[];for(const t of r)this.input.isCustom(t)&&i.push(t);if(!i.length){if(!e.searchParams.has(o))return;return e.searchParams.delete(o),void window.history.pushState({},"",e.toString())}const s=i.join(",");e.searchParams.get(o)!==s&&(e.searchParams.set(o,s),window.history.pushState({},"",e.toString()))}}V.prototype=Object.create(B.prototype);const L=V,{applyFilters:J}=JetPlugins.hooks;let H=[];function Q(t){Error.call(this,t),Error.captureStackTrace?Error.captureStackTrace(this,Q):this.stack=(new Error).stack}Q.prototype=Object.create(Error.prototype);const q=Q;function Y(){this.input=null,this.isRequired=!1,this.errors=null,this.restrictions=[],this.valuePrev=null,this.validityState=null,this.promisesCount=0}Y.prototype={restrictions:[],valuePrev:null,validityState:null,promisesCount:0,validateOnChange(){},validateOnBlur(){},async validate(t=null){const e=await this.getErrors(t);if(this.validityState.current=!Boolean(e.length),!e.length)return this.clearReport(),!0;throw!this.input.root.getContext().silence&&this.report(e),new q(e[0].name)},async getErrorsRaw(t){throw new Error("getError must return a Promise")},async getErrors(t=null){if(this.input.loading.current||this.input?.callable?.lock?.current||!this.input.isVisible())return[];const e=this.getPromises(t);var n;return this.hasChangedValue()||this.promisesCount!==e.length||this.input.stopValidation||"hr-select-level"===this.input.inputType?(this.promisesCount=e.length,this.errors=[],e.length?(this.errors=await this.getErrorsRaw(e,t),this.errors):this.errors):null!==(n=this.errors)&&void 0!==n?n:[]},report(t){this.input.getContext().reportedFirst?this.reportRaw(t):(this.input.getContext().reportFirst(),this.reportFirst(t))},reportRaw(t){throw new Error("report is empty")},reportFirst(t){this.report(t)},clearReport(){throw new Error("clearReport is empty")},getPromises(t=null){const e=[];for(const n of this.restrictions)this.canProcessRestriction(n)&&(this.beforeProcessRestriction(n),e.push((e,r)=>{n.validatePromise(t).then(()=>e(n)).catch(t=>r([n,t]))}));return e},canProcessRestriction:t=>!0,beforeProcessRestriction(t){},isSupported(t,e){throw new Error("isSupported is empty")},setInput(t){this.validityState=new _,this.validityState.make(),this.input=t,this.setRestrictions(),this.filterRestrictions()},setRestrictions(){},getNode(){return this.input.nodes[0]},hasChangedValue(){return this.valuePrev!==this.input.getValue()},checkValidity(){const t=this.input.getContext().silence;return null===this.validityState.current?this.validateOnChangeState():this.validityState.current?Promise.resolve():(t||!t&&this.report(this.errors||[]),Promise.reject())},hasAutoScroll:()=>!1,filterRestrictions(){const t={};for(let[e,n]of Object.entries(this.restrictions))e=n.getType()?n.getType():e,t[e]=n;this.restrictions=Object.values(t)}};const $=Y;function W(){$.call(this),this.isSupported=function(){return!0},this.reportRaw=function(){},this.reportFirst=function(){this.getNode().reportValidity()},this.setRestrictions=function(){const[t]=this.input.nodes;!function(t,e){ot.length||(ot=rt());for(const n of ot){const r=new n;r.isSupported(e,t)&&t.restrictions.push(r)}t.restrictions.forEach(e=>e.setReporting(t))}(this,t)},this.clearReport=function(){},this.validateOnChange=function(){this.validate().then(()=>{}).catch(()=>{})},this.getErrorsRaw=async function(t){const e=await f(t);return this.valuePrev=this.input.getValue(),e},this.validateOnChangeState=function(){return this.validate()},this.hasAutoScroll=function(){return this.input.hasAutoScroll()},this.getNode=function(){return this.input.getReportingNode()}}W.prototype=Object.create($.prototype);const z=W;function K(){this.reporting=null,this.type=""}K.prototype={isSupported:(t,e)=>!0,getType(){return this.type},setReporting(t){this.reporting=t},getValue(){return this.reporting.input.value.current},validate(){throw new Error("validate is wrong")},async validatePromise(){let t;try{t=await this.validate()}catch(t){var e;return Promise.reject(null!==(e=t?.message)&&void 0!==e?e:t)}return t?Promise.resolve():Promise.reject("validate is wrong")},onReady(){}};const U=K;function G(){U.call(this),this.isSupported=function(t){return!!t.checkValidity},this.validate=function(){const{nodes:t}=this.reporting.input;for(const e of t)if(e.checkValidity())return!0;return!1}}G.prototype=Object.create(U.prototype);const X=G;function Z(){U.call(this),this.type="required"}Z.prototype=Object.create(U.prototype),Z.prototype.isSupported=function(t,e){return e.input.isRequired},Z.prototype.validate=function(){const{current:t}=this.reporting.input.value;return!y(t)};const tt=Z,{applyFilters:et}=JetPlugins.hooks;let nt=[];const rt=()=>et("jet.fb.restrictions.default",[X,tt]);let ot=[];function it(t,e=!1){const n=[];t?.[0]?.getContext()?.reset({silence:e});for(const e of t){if(!(e instanceof ct))throw new Error("Input is not instance of InputData");n.push((t,n)=>{e.reporting.validateOnChangeState().then(t).catch(n)})}return n}function st(t,e=!1){return f(it(t,e))}const{doAction:ut}=JetPlugins.hooks;function at(){this.rawName="",this.name="",this.comment=!1,this.nodes=[],this.attrs={},this.enterKey=null,this.inputType=null,this.offsetOnFocus=75,this.path=[],this.value=this.getReactive(),this.value.watch(this.onChange.bind(this)),this.isRequired=!1,this.calcValue=null,this.reporting=null,this.checker=null,this.root=null,this.loading=new F(!1),this.loading.make(),this.isResetCalcValue=!0,this.validateTimer=!1,this.stopValidation=!1,this.abortController=null}at.prototype.attrs={},at.prototype.isSupported=function(t){return!1},at.prototype.addListeners=function(){const[t]=this.nodes;t.addEventListener("input",t=>{this.value.current=t.target.value}),t.addEventListener("blur",()=>{}),t.addEventListener("input",()=>{this.reporting&&"function"==typeof this.reporting.switchButtonsState&&this.reporting.switchButtonsState(!0),this.debouncedReport()}),!R&&jQuery(t).on("change",t=>{this.value.current!=t.target.value&&(this.callable.lockTrigger(),this.value.current=t.target.value,this.callable.unlockTrigger())}),"input"===this.inputType&&(this.enterKey=new k,t.addEventListener("keydown",this.handleEnterKey.bind(this)))},at.prototype.makeReactive=function(){this.onObserve(),this.addListeners(),this.setValue(),this.initNotifyValue(),this.value.make(),ut("jet.fb.input.makeReactive",this)},at.prototype.onChange=function(t){this.isResetCalcValue&&(this.calcValue=this.value.current),this?.callable?.run(t),this.report()},at.prototype.report=function(){this.reporting.validateOnChange()},at.prototype.reportOnBlur=function(t=null){this.reporting.validateOnBlur(t)},at.prototype.debouncedReport=function(){this.validateTimer&&(this.stopValidation=!0,clearTimeout(this.validateTimer),this.abortController&&this.abortController.abort()),this.abortController=new AbortController;let t=this.abortController.signal;this.validateTimer=setTimeout(()=>{this.reportOnBlur(t)},450)},at.prototype.watch=function(t){return this.value.watch(t)},at.prototype.watchValidity=function(t){return this.reporting.validityState.watch(t)},at.prototype.sanitize=function(t){return this.value.sanitize(t)},at.prototype.merge=function(t){this.nodes=[...t.getNode()]},at.prototype.setValue=function(){let t;t=this.isArray()?Array.from(this.nodes).map(({value:t})=>t):this.nodes[0]?.value,this.calcValue=t,this.value.current=t},at.prototype.setNode=function(t){var e;this.nodes=[t],this.rawName=null!==(e=t.name)&&void 0!==e?e:"",this.name=_t(this.rawName),this.inputType=t.nodeName.toLowerCase()},at.prototype.onObserve=function(){const[t]=this.nodes;t.jfbSync=this,this.isRequired=this.checkIsRequired(),this.callable=function(t,e){H.length||(H=J("jet.fb.signals",[A,L,B]));for(const n of H){const r=new n;if(r.isSupported(t,e))return r}return null}(t,this),this.callable.setInput(this),this.reporting=function(t){nt.length||(nt=et("jet.fb.reporting",[z]));for(const e of nt){const n=new e;if(n.isSupported(t.nodes[0],t))return n.setInput(t),n}throw new Error("Something went wrong")}(this),this.loading.watch(()=>this.onChangeLoading()),this.path=[...this.getParentPath(),this.name],this.getSubmit().submitter.hasOwnProperty("status")&&!this.hasParent()&&this.getSubmit().submitter.watchReset(()=>this.onClear())},at.prototype.onChangeLoading=function(){this.getSubmit().lockState.current=this.loading.current;const[t]=this.nodes;t.closest(".jet-form-builder-row").classList.toggle("is-loading",this.loading.current)},at.prototype.setRoot=function(t){this.root=t},at.prototype.onRemove=function(){},at.prototype.getName=function(){return this.name},at.prototype.getValue=function(){return this.value.current},at.prototype.getNode=function(){return this.nodes},at.prototype.isArray=function(){return this.rawName.includes("[]")},at.prototype.beforeSubmit=function(t,e=!1){this.getSubmit().submitter.promise(t,e)},at.prototype.getSubmit=function(){return this.getRoot().form},at.prototype.getRoot=function(){return this.root?.parent?this.root.parent.getRoot():this.root},at.prototype.isVisible=function(){return b(this.getWrapperNode())},at.prototype.onClear=function(){this.silenceSet(null)},at.prototype.getReactive=function(){return new _},at.prototype.checkIsRequired=function(){var t;const[e]=this.nodes;return null!==(t=e.required)&&void 0!==t?t:!!e.dataset.required?.length},at.prototype.silenceSet=function(t){const e=this.report.bind(this);this.report=()=>{},this.value.current=t,this.report=e},at.prototype.silenceNotify=function(){const t=this.report.bind(this);this.report=()=>{},this.value.notify(),this.report=t},at.prototype.hasParent=function(){return!!this.root?.parent},at.prototype.getWrapperNode=function(){return this.nodes[0].closest(".jet-form-builder-row")},at.prototype.handleEnterKey=function(t){"Enter"!==t.key||!this.enterKey||t.shiftKey||t.isComposing||(t.preventDefault(),this.onEnterKey())},at.prototype.onEnterKey=function(){this.enterKey.applyFilters(!0)&&!0===this.getSubmit().canTriggerEnterSubmit&&this.getSubmit().submit()},at.prototype.initNotifyValue=function(){this.silenceNotify()},at.prototype.onFocus=function(){this.scrollTo(),this.focusRaw()},at.prototype.focusRaw=function(){const[t]=this.nodes;["date","time","datetime-local"].includes(t.type)||t?.focus({preventScroll:!0})},at.prototype.scrollTo=function(){const t=this.getWrapperNode();window.scrollTo({top:v(t)-this.offsetOnFocus,behavior:"smooth"})},at.prototype.getContext=function(){return this.root.getContext()},at.prototype.populateInner=function(){return!1},at.prototype.hasAutoScroll=function(){return!0},at.prototype.getReportingNode=function(){return this.nodes[0]},at.prototype.getParentPath=function(){if(!this.root?.parent)return[];const t=this.root.parent.value.current;if("object"!=typeof t)return[];for(const[e,n]of Object.entries(t))if(n===this.root)return[...this.root.parent.getParentPath(),this.root.parent.name,e];return[]},at.prototype.reQueryValue=function(){this.setValue(),this.initNotifyValue()},at.prototype.revertValue=function(t){this.value.current=t},at.prototype.reCalculateFormula=function(){this.setValue(),this.initNotifyValue()};const ct=at;function lt(){ct.call(this),this.isSupported=function(t){return function(t){return["select-one","range"].includes(t.type)}(t)},this.addListeners=function(){const[t]=this.nodes;t.addEventListener("change",t=>{this.value.current=t.target.value}),!R&&jQuery(t).on("change",t=>{this.value.current!=t.target.value&&(this.callable.lockTrigger(),this.value.current=t.target.value,this.callable.unlockTrigger())}),this.enterKey=new k,t.addEventListener("keydown",this.handleEnterKey.bind(this))},this.onClear=function(){this.silenceSet("")}}lt.prototype=Object.create(ct.prototype);const ht=lt;function pt(){ct.call(this),this.numberNode=null,this.isSupported=function(t){return M(t)},this.setNode=function(t){ct.prototype.setNode.call(this,t),this.numberNode=t.parentElement.querySelector(".jet-form-builder__field-value-number")}}pt.prototype=Object.create(ct.prototype);const ft=pt;function dt(){ct.call(this),this.comment=null,this.isSupported=function(t){return T(t)},this.addListeners=function(){},this.onObserve=function(){ct.prototype.onObserve.call(this),this.isArray()&&this.setComment()},this.setComment=function(){this.comment=document.createComment(this.name);const[t]=this.nodes;t.parentElement.insertBefore(this.comment,t)},this.isVisible=function(){return!1},this.merge=function(t){this.nodes.push(...t.getNode())}}dt.prototype=Object.create(ct.prototype);const mt=dt;function gt(t){_.call(this,t)}gt.prototype=Object.create(_.prototype),gt.prototype.add=function(t){var e;this.current=[...new Set([...null!==(e=this.current)&&void 0!==e?e:[],t])]},gt.prototype.remove=function(t){this.current=this.current.filter(e=>e!==t)},gt.prototype.toggle=function(t,e=null){null===e?this.current.includes(t)?this.remove(t):this.add(t):e?this.add(t):this.remove(t)};const yt=gt,{builtInStates:bt}=window.JetFormBuilderSettings;function vt(){mt.call(this),this.isSupported=function(t){return"hidden"===t?.type&&"_jfb_current_render_states[]"===t.name},this.add=function(t){this.value.add(t)},this.remove=function(t){this.value.remove(t)},this.toggle=function(t,e=null){this.value.toggle(t,e)},this.isCustom=function(t){return!bt.includes(t)}}vt.prototype=Object.create(mt.prototype),vt.prototype.getReactive=function(){return new yt};const wt=vt,{applyFilters:St,doAction:jt}=JetPlugins.hooks;let Nt=[];function _t(t){const e=[/^([\w\-]+)\[\]$/,/^[\w\-]+\[\d+\]\[([\w\-]+)\]\[?\]?$/];for(const n of e)if(n.test(t))return t.match(n)[1];return t}function It(t){const e=[];for(const n of t){const t=n.populateInner();t?.length&&e.push(...t),e.push(n)}return e}function Ft(t){this.form=t,this.lastResponse={},this.promises=[]}Ft.prototype.submit=function(){throw new Error("You need to replace this callback")},Ft.prototype.getPromises=function(){return this.promises.map(({callable:t})=>new Promise(t))},Ft.prototype.promise=function(t,e=!1){const n=e?e.path.join("."):"";this.promises=this.promises.filter(({idPath:t})=>!t||t!==n),this.promises.push({callable:t,idPath:e?e.path.join("."):""})};const Ot=Ft;function kt(t){return"success"===t||t?.includes("dsuccess|")}function Ct(t){Ot.call(this,t),this.status=new _,this.status.make(),this.submit=function(){const t=jQuery(this.form.observable.rootNode),{applyFilters:e}=JetPlugins.hooks;Promise.all(e("jet.fb.submit.ajax.promises",this.getPromises(),t)).then(t=>this.runSubmit(t)).catch(()=>this.form.toggle())},this.runSubmit=function(t){const{rootNode:e}=this.form.observable,n=new FormData(e);n.append("_jet_engine_booking_form_id",this.form.getFormId()),this.status.silence(),this.status.current=null,this.status.silence(),jQuery.ajax({url:JetFormBuilderSettings.ajaxurl,type:"POST",dataType:"json",data:n,cache:!1,contentType:!1,processData:!1}).done(n=>{this.onSuccess(n);const r=jQuery(e);t.forEach(t=>{"function"==typeof t&&t.call(r,n)})}).fail(this.onFail.bind(this))},this.onSuccess=function(t){this.form.toggle();const{rootNode:e}=this.form.observable;this.lastResponse=t;const n=jQuery(e),r=t?._jfb_csrf_token;r&&this.refreshCsrfToken(r),"success"===t.status?jQuery(document).trigger("jet-form-builder/ajax/on-success",[t,n]):jQuery(document).trigger("jet-form-builder/ajax/processing-error",[t,n]),this.status.current=t.status,t.redirect?t.open_in_new_tab?window.open(t.redirect,"_blank"):window.location=t.redirect:t.reload&&window.location.reload(),this.insertMessage(t.message)},this.onFail=function(t,e,n){this.form.toggle(),this.status.current=!1;const{rootNode:r}=this.form.observable,o=jQuery(r);jQuery(document).trigger("jet-form-builder/ajax/on-fail",[t,e,n,o]),console.error(t.responseText,n)},this.insertMessage=function(t){const{rootNode:e}=this.form.observable,n=document.createElement("div");n.classList.add("jet-form-builder-messages-wrap"),n.innerHTML=t,e.appendChild(n)},this.refreshCsrfToken=function(t){const e=this.form.getFormId(),n=document.querySelectorAll("form.jet-form-builder[data-form-id]");for(const r of n){if(+r.dataset.formId!==e)continue;const n=r.querySelectorAll('input[name="_jfb_csrf_token"]');for(const e of n)e.value=t}}}Ct.prototype=Object.create(Ot.prototype),Ct.prototype.status=null,Ct.prototype.watchReset=function(t){const{rootNode:e}=this.form.observable;e.dataset?.clear&&this.watchSuccess(t)},Ct.prototype.watchSuccess=function(t){const e=this.status;e.watch(()=>{kt(e.current)&&t()})},Ct.prototype.watchFail=function(t){const e=this.status;e.watch(()=>{kt(e.current)||t()})};const Rt=Ct;function Et(t){Ot.call(this,t),this.failPromises=[],this.submit=function(){const{rootNode:t}=this.form.observable,{applyFilters:e}=JetPlugins.hooks;Promise.all(e("jet.fb.submit.reload.promises",this.getPromises(),{target:t})).then(()=>t.submit()).catch(()=>{this.failPromises.forEach(t=>t()),this.form.toggle()})},this.onFailSubmit=function(t){"function"==typeof t&&this.failPromises.push(t)}}Et.prototype=Object.create(Ot.prototype);const Pt=Et,Tt=function(t){this.observable=t,this.lockState=new F(!1),this.lockState.make(),this.autoFocus=window.JetFormBuilderSettings?.auto_focus,this.canSubmitForm=!0,this.canTriggerEnterSubmit=!0,this.onSubmit=function(t){t.preventDefault(),this.submit()},this.submit=function(){!0===this.canSubmitForm&&(this.canSubmitForm=!1,this.canTriggerEnterSubmit=!1,this.observable.inputsAreValid().then(()=>{this.clearErrors(),this.toggle(),this.submitter.submit()}).catch(()=>{this.autoFocus&&j(It(this.observable.getInputs()))}).finally(()=>{this.canTriggerEnterSubmit=!0,this.canSubmitForm=!0}))},this.clearErrors=function(){const t=this.observable.rootNode.querySelectorAll(".jet-form-builder-messages-wrap");for(const e of t)e.remove()},this.toggle=function(){this.lockState.toggle(),this.toggleLoading()},this.handleButtons=function(){const t=this.observable.rootNode.querySelectorAll(".jet-form-builder__submit");this.lockState.watch(()=>{for(const e of t)e.disabled=this.lockState.current;!1===this.lockState.current&&(this.canSubmitForm=!0)})},this.toggleLoading=function(){this.observable.rootNode.classList.toggle("is-loading")},this.createSubmitter=function(){const{classList:t}=this.observable.rootNode;return t.contains("submit-type-ajax")?new Rt(this):new Pt(this)},this.getFormId=function(){const{rootNode:t}=this.observable;return+t.dataset.formId},this.onEndSubmit=function(t){this.submitter.hasOwnProperty("status")?this.submitter.status.watch(t):this.submitter.onFailSubmit(t)},this.observable.rootNode.addEventListener("submit",t=>this.onSubmit(t)),this.submitter=this.createSubmitter(),this.handleButtons()},Mt=function(t,e){const{replaceAttrs:n=[]}=window.JetFormBuilderSettings,r=[];for(let t=0;tNodeFilter.FILTER_ACCEPT){const n=document.createNodeIterator(t,NodeFilter.SHOW_COMMENT,{acceptNode:e});let r;for(;r=n.nextNode();)r.nodeValue=r.nodeValue.trim(),yield r},Bt=function*(t){yield*xt(t,t=>!t.jfbObserved&&t.textContent.includes("JFB_FIELD::"))},Dt=function(t,e,n={}){if(null===e||!e?.length)return t;let r=Boolean(n?.rawRepeaterValue);for(const o of e){const e=r&&!1===o?.isCoreFilter;t=o.applyWithProps(e?n.rawRepeaterValue:t),r=!1}return t};function At(){this.props=[]}At.prototype.getSlug=function(){throw new Error("getSlug is empty")},At.prototype.setProps=function(t){this.props.push(...t)},At.prototype.applyWithProps=function(t){return this.apply(t,...this.props)},At.prototype.apply=function(t,...e){return t};const Vt=At;function Lt(){Vt.call(this),this.getSlug=function(){return"length"},this.apply=function(t){var e;return null!==(e=t?.length)&&void 0!==e?e:0}}Lt.prototype=Object.create(Vt.prototype);const Jt=Lt;function Ht(){Vt.call(this),this.getSlug=function(){return"ifEmpty"},this.apply=function(t,e){return y(t)||Number.isNaN(t)?e:t}}Ht.prototype=Object.create(Vt.prototype);const Qt=Ht;function qt(t,e){return(t=""+t).length>=e?t:new Array(e-t.length).fill(0)+t}function Yt(t,e=!0){const n=e?t.getUTCMonth():t.getMonth(),r=e?t.getUTCDate():t.getDate();return[e?t.getUTCFullYear():t.getFullYear(),qt(n+1,2),qt(r,2)].join("-")}function $t(t,e=!0){const n=e?t.getUTCHours():t.getHours(),r=e?t.getUTCMinutes():t.getMinutes();return[qt(n,2),qt(r,2)].join(":")}function Wt(t,e=!1){return Yt(t,e)+"T"+$t(t,e)}function zt(t){if(!Number.isNaN(+t))return{time:+t,type:"number"};if((t=t.toString()).split("-").length>1)return{time:new Date(t).getTime(),type:"date"};const e=t.split(":"),n=[Date.prototype.setHours,Date.prototype.setMinutes,Date.prototype.setSeconds],r=new Date;for(const t in e)e.hasOwnProperty(t)&&n.hasOwnProperty(t)&&n[t].call(r,e[t]);return{time:r.getTime(),type:"time"}}function Kt(){Vt.call(this),this.getSlug=function(){return"toDate"},this.apply=function(t,e=!0){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"");e="false"!==t.toLowerCase()}else e=Boolean(e);return Yt(new Date(t),e)}}Kt.prototype=Object.create(Vt.prototype);const Ut=Kt;function Gt(){Vt.call(this),this.getSlug=function(){return"toTime"},this.apply=function(t,e=!0){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"");e="false"!==t.toLowerCase()}else e=Boolean(e);return $t(new Date(t),e)}}Gt.prototype=Object.create(Vt.prototype);const Xt=Gt;function Zt(){Vt.call(this),this.getSlug=function(){return"toDateTime"},this.apply=function(t,e=!1){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"").toLowerCase();e=""!==t&&"false"!==t}else e=Boolean(e);return Wt(new Date(t),e)}}Zt.prototype=Object.create(Vt.prototype);const te=Zt;function ee(){Vt.call(this),this.getSlug=function(){return"addYear"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setFullYear(r.getFullYear()+e))}}ee.prototype=Object.create(Vt.prototype);const ne=ee;function re(){Vt.call(this),this.getSlug=function(){return"addMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(r.getMonth()+e))}}re.prototype=Object.create(Vt.prototype);const oe=re;function ie(){Vt.call(this),this.getSlug=function(){return"addDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(r.getDate()+e))}}ie.prototype=Object.create(Vt.prototype);const se=ie;function ue(){Vt.call(this),this.getSlug=function(){return"addHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setHours(r.getHours()+e))}}ue.prototype=Object.create(Vt.prototype);const ae=ue;function ce(){Vt.call(this),this.getSlug=function(){return"addMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMinutes(r.getMinutes()+e))}}ce.prototype=Object.create(Vt.prototype);const le=ce;function he(){Vt.call(this),this.getSlug=function(){return"T"},this.apply=function(t){if(!t)return 0;const{time:e}=zt(t);return e}}he.prototype=Object.create(Vt.prototype);const pe=he;function fe(){Vt.call(this),this.getSlug=function(){return"setHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?t:(e=e?+e.trim():0,r.setHours(e))}}fe.prototype=Object.create(Vt.prototype);const de=fe;function me(){Vt.call(this),this.getSlug=function(){return"setMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?t:(e=e?+e.trim():0,r.setMinutes(e))}}me.prototype=Object.create(Vt.prototype);const ge=me;function ye(){Vt.call(this),this.getSlug=function(){return"setDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(e))}}ye.prototype=Object.create(Vt.prototype);const be=ye;function ve(){Vt.call(this),this.getSlug=function(){return"setYear"},this.apply=function(t,e){if(!(e=!!e&&+e.trim()))return t;const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:r.setFullYear(e)}}ve.prototype=Object.create(Vt.prototype);const we=ve;function Se(){Vt.call(this),this.getSlug=function(){return"setMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(e))}}Se.prototype=Object.create(Vt.prototype);const je=Se;function Ne(){Vt.call(this),this.getSlug=function(){return"subHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setHours(r.getHours()-e))}}Ne.prototype=Object.create(Vt.prototype);const _e=Ne;function Ie(){Vt.call(this),this.getSlug=function(){return"subDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(r.getDate()-e))}}Ie.prototype=Object.create(Vt.prototype);const Fe=Ie;function Oe(){Vt.call(this),this.getSlug=function(){return"subMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMinutes(r.getMinutes()-e))}}Oe.prototype=Object.create(Vt.prototype);const ke=Oe;function Ce(){Vt.call(this),this.getSlug=function(){return"subMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(r.getMonth()-e))}}Ce.prototype=Object.create(Vt.prototype);const Re=Ce;function Ee(){Vt.call(this),this.getSlug=function(){return"subYear"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setFullYear(r.getFullYear()-e))}}Ee.prototype=Object.create(Vt.prototype);const Pe=Ee;function Te(){Vt.call(this),this.getSlug=function(){return"toDayInMs"},this.apply=function(t){return 864e5*t}}Te.prototype=Object.create(Vt.prototype);const Me=Te;function xe(){Vt.call(this),this.getSlug=function(){return"toMonthInMs"},this.apply=function(t){return 2592e6*t}}xe.prototype=Object.create(Vt.prototype);const Be=xe;function De(){Vt.call(this),this.getSlug=function(){return"toYearInMs"},this.apply=function(t){return 31536e6*t}}De.prototype=Object.create(Vt.prototype);const Ae=De;function Ve(){Vt.call(this),this.getSlug=function(){return"toHourInMs"},this.apply=function(t){return 36e5*t}}Ve.prototype=Object.create(Vt.prototype);const Le=Ve;function Je(){Vt.call(this),this.getSlug=function(){return"toMinuteInMs"},this.apply=function(t){return 6e4*t}}Je.prototype=Object.create(Vt.prototype);const He=Je;function Qe(){Vt.call(this),this.getSlug=function(){return"toWeekInMs"},this.apply=function(t){return 6048e5*t}}Qe.prototype=Object.create(Vt.prototype);const qe=Qe,{applyFilters:Ye}=JetPlugins.hooks;let $e=[];const We=[we,je,be,de,ge,Pe,Re,Fe,_e,ke,ne,oe,se,ae,le,Jt,Qt,Ut,Xt,te,pe,Me,Be,Ae,Le,He,qe];let ze=[];function Ke(t,e=""){let n;$e.length||($e=Ye("jet.fb.filters",[...We]));for(let e of $e){const r=e;if(e=new r,t===e.getSlug()){e.isCoreFilter=We.includes(r),n=e;break}}n&&(e=e.split(",").map(t=>t.trim()),n.setProps(e),ze.push(n))}const Ue=function(t){if(null===t||!t?.length)return null;for(const e of t){const t=e.match(/^(\w+)\(([^()]+)\)/);null!==t?Ke(t[1],t[2]):Ke(e)}const e=[...ze];return ze=[],e};function Ge(){}Ge.prototype={getId(){throw new Error("You need to rewrite this method")},getResult(){throw new Error("You need to rewrite this method")}};const Xe=Ge;function Ze(){Xe.call(this),this.getId=()=>"CurrentDate",this.getResult=()=>(new Date).getTime()}Ze.prototype=Object.create(Xe.prototype);const tn=Ze,en={Milli_In_Sec:1e3,Sec_In_Min:60,Min_In_Hour:60,Hour_In_Day:24,Day_In_Month:30,Year_In_Day:365,Kb_In_Bytes:1024};en.Min_In_Sec=en.Sec_In_Min*en.Milli_In_Sec,en.Hour_In_Sec=en.Min_In_Hour*en.Min_In_Sec,en.Day_In_Sec=en.Hour_In_Day*en.Hour_In_Sec,en.Month_In_Sec=en.Day_In_Month*en.Day_In_Sec,en.Year_In_Sec=en.Year_In_Day*en.Day_In_Sec,en.Mb_In_Bytes=1024*en.Kb_In_Bytes,en.Gb_In_Bytes=1024*en.Mb_In_Bytes,en.Tb_In_Bytes=1024*en.Gb_In_Bytes;const nn=en;function rn(){Xe.call(this),this.getId=()=>"Min_In_Sec",this.getResult=()=>nn.Min_In_Sec}rn.prototype=Object.create(Xe.prototype);const on=rn;function sn(){Xe.call(this),this.getId=()=>"Month_In_Sec",this.getResult=()=>nn.Month_In_Sec}sn.prototype=Object.create(Xe.prototype);const un=sn;function an(){Xe.call(this),this.getId=()=>"Hour_In_Sec",this.getResult=()=>nn.Hour_In_Sec}an.prototype=Object.create(Xe.prototype);const cn=an;function ln(){Xe.call(this),this.getId=()=>"Day_In_Sec",this.getResult=()=>nn.Day_In_Sec}ln.prototype=Object.create(Xe.prototype);const hn=ln;function pn(){Xe.call(this),this.getId=()=>"Year_In_Sec",this.getResult=()=>nn.Year_In_Sec}pn.prototype=Object.create(Xe.prototype);const fn=pn,{applyFilters:dn}=JetPlugins.hooks;let mn=[];const gn=window.wp.i18n,{applyFilters:yn,addFilter:bn}=JetPlugins.hooks;function vn(t){if(!t)return"";if("SELECT"===t.tagName)return Array.from(t.selectedOptions||[]).map(t=>String(t.label||t.textContent||t.value||"").trim()).filter(Boolean).join(", ");if(("checkbox"===t.type||"radio"===t.type)&&!t.checked)return"";if("checkbox"===t.type||"radio"===t.type){const e=t.closest("label");if(!e)return"";const n=e.querySelector("span");return String(n?.textContent||e.textContent||t.value||"").trim()}return""}function wn(t,e={}){var n;this.parts=[],this.related=[],this.relatedAttrs=[],this.regexp=/%([\w\-].*?\S?)%/g,this.watchers=[];const{forceFunction:r=!1}=e;this.forceFunction=r,t instanceof ct&&(this.input=t),this.root=null!==(n=this.input?.root)&&void 0!==n?n:t}bn("jet.fb.custom.formula.macro","jet-form-builder",function(t,e){if(!e.includes("CT::"))return t;const n=function(t){mn.length||(mn=dn("jet.fb.static.functions",[tn,on,un,cn,hn,fn]));for(const e of mn){const n=new e;if(n.getId()===t)return n}return!1}(e=e.replace("CT::",""));return!1===n?t:n.getResult()}),wn.prototype={formula:null,parts:[],related:[],relatedAttrs:[],input:null,root:null,regexp:null,forceFunction:!1,setResult:()=>{throw new Error("CalculatedFormula.setResult is not set!")},relatedCallback:t=>t.value.current,relatedLabelCallback:t=>function(t){const e=Array.from(t.nodes||[]).map(vn).filter(Boolean);return e.length?e.join(", "):t.value.current}(t),observe(t){this.formula=t,Array.isArray(t)?t.forEach(t=>{this.observeItem(t)}):this.observeItem(t)},observeItem(t){let e,n=0;for(t+="";null!==(e=this.regexp.exec(t));){const r=this.observeMacro(e[1]);0!==e.index&&this.parts.push(t.slice(n,e.index)),n=e.index+e[0].length,!1===r?this.onMissingPart(e[0]):this.parts.push(r)}n!==t.length&&(this.parts.push(t.slice(n)),1===this.parts.length&&(this.parts=[]))},onMissingPart(t){this.parts.push(t)},isFieldNodeExists(t){if(void 0===this.root.dataInputs[t])return!1;let e=this.root.rootNode[t]||this.root.rootNode[t+"[]"]||this.root.rootNode.querySelectorAll('[data-field-name="'+t+'"]');if(e&&0===e.length&&(e=void 0),void 0===e){const n=t.replace(/([\\^$*+?.()|{}\[\]])/g,"\\$1"),r=`[name$="[${n}]"],[name$="[${n}][]"],[name*="[${n}]["]`,o=this.root.rootNode.querySelectorAll(r);o&&o.length&&(e=o)}return e=yn("jet.fb.formula.node.exists",e,t,this),e},observeMacro(t){null===this.formula&&(this.formula=t);const[e,...n]=t.split("|"),r=e.match(/[\w\-:]+/g);if(!r)return!1;let[o,...i]=r;if(e.includes("::")){const[t,...n]=e.split("::");this.root.getInput(t)&&(o=t,i=n)}if(void 0===this.isFieldNodeExists(o)){const t=new RegExp(`%${o}%`,"g");let e,n=0,r=this.formula;for(;null!==(e=t.exec(this.formula));){const t=this.formula[e.index-1],r=this.formula[e.index+e[0].length];if("*"===t||"/"===t||"*"===r||"/"===r){n="/"===t||"*"===t&&"*"===r?1:0;break}n=0;break}return r=r.replace(e[0],n),this.formula=r,n}const s="this"!==o?this.root.getInput(o):this.input;if(!s&&!o.includes("::"))return!1;const u=Ue(n);if(o.includes("::")){const t=yn("jet.fb.custom.formula.macro",!1,o,i,this);return!1!==t&&("function"==typeof t?()=>Dt(t(),u):Dt(t,u))}if(this.related.includes(s.name)||(this.related.push(s.name),this.watchers.push(s.watch(()=>this.setResult()))),!i?.length)return()=>Dt(this.relatedCallback(s),u);const[a]=i;if("label"===a)return()=>Dt(this.relatedLabelCallback(s),u);if(!s.attrs.hasOwnProperty(a))return!1;const c=s.attrs[a];return this.relatedAttrs.includes(s.name+a)||(this.relatedAttrs.push(s.name+a),this.watchers.push(c.value.watch(()=>this.setResult()))),()=>Dt(c.value.current,u)},calculateString(){var t;if(!this.parts.length)return this.formula;const{applyFilters:e=!1}=null!==(t=window?.JetFormBuilderMain?.filters)&&void 0!==t?t:{};return this.parts.map(t=>{if("function"!=typeof t)return this.input?.nodes&&!1!==e&&"string"==typeof t?(t=yn("jet.fb.onCalculate.part",t,this),e("forms/calculated-formula-before-value",t,jQuery(this.input.nodes[0]))):t;const n=t();return null===n||""===n||Number.isNaN(n)?this.emptyValue():n}).join("")},emptyValue:()=>"",calculate(){if(!this.parts.length&&!this.forceFunction)return this.formula;const t=function(t){if("string"!=typeof t)return t;let e="",n=!1,r="code",o=0;for(let i=0;i"function"==typeof t&&t()),this.watchers=[],this.relatedAttrs=[],this.related=[]},showError(t){console.group((0,gn.__)("JetFormBuilder: You have invalid calculated formula","jet-form-builder")),this.showErrorDetails(t),console.groupEnd()},showErrorDetails(t){if(console.error((0,gn.sprintf)((0,gn.__)("Initial: %s","jet-form-builder"),this.formula)),console.error((0,gn.sprintf)((0,gn.__)("Computed: %s","jet-form-builder"),t)),!this.input&&!this.root?.parent)return;if(this.input)return void console.error((0,gn.sprintf)((0,gn.__)("Field: %s","jet-form-builder"),this.input.path.join(".")));const e=this.root.parent.findIndex(this.root);console.error((0,gn.sprintf)((0,gn.__)("Scope: %s","jet-form-builder"),[...this.root.parent.path,-1===e?"":e].filter(Boolean).join(".")))}};const Sn=wn,{applyFilters:jn}=JetPlugins.hooks;function Nn(t){if(!t)return"";if("SELECT"===t.tagName)return Array.from(t.selectedOptions||[]).map(t=>String(t.label||t.textContent||t.value||"").trim()).filter(Boolean).join(", ");if(("checkbox"===t.type||"radio"===t.type)&&!t.checked)return"";if("checkbox"===t.type||"radio"===t.type){const e=t.closest("label");if(!e)return"";const n=e.querySelector("span");return String(n?.textContent||e.textContent||t.value||"").trim()}return""}function _n(t,{withPrefix:e=!0,macroHost:n=!1,macroFormat:r="",...o}={}){Sn.call(this,t,o),e&&(this.regexp=/JFB_FIELD::(.+)/gi),this.macroHost=n||!1,this.macroFormat=r||"",this.relatedCallback=function(t){const e=jQuery(t.nodes[0]),n=!!this.macroHost&&jQuery(this.macroHost);let r=jn("jet.fb.macro.field.value",!1,e,n,this.macroFormat);return r=wp?.hooks?.applyFilters?wp.hooks.applyFilters("jet.fb.macro.field.value",r,e,n,this.macroFormat):r,!1!==r?r:"option-label"===this.macroFormat&&function(t){return Array.from(t.nodes||[]).map(Nn).filter(Boolean).join(", ")}(t)||t.value.current}.bind(this),this.onMissingPart=function(){}}_n.prototype=Object.create(Sn.prototype),_n.prototype.observeMacro=function(t){null===this.formula&&(this.formula=t);const[e,...n]=t.split("|"),r=e.match(/[\w\-:]+/g);if(!r)return!1;const[o,...i]=r;if(void 0===this.isFieldNodeExists(o))return!1;const s="this"!==o?this.root.getInput(o):this.input;if(!s&&!o.includes("::"))return!1;const u=Ue(n);if(o.includes("::"))return Sn.prototype.observeMacro.call(this,t);if(this.related.includes(s.name)||(this.related.push(s.name),this.watchers.push(s.watch(()=>this.setResult()))),!i?.length)return()=>{if("repeater"===s.inputType&&u?.length){const t=this.relatedCallback(s);return s.reQueryValue?.(),Dt(t,u,{rawRepeaterValue:s.value.current})}return Dt(this.relatedCallback(s),u)};const[a]=i;if(!s.attrs.hasOwnProperty(a))return!1;const c=s.attrs[a];return this.relatedAttrs.includes(s.name+a)||(this.relatedAttrs.push(s.name+a),this.watchers.push(c.value.watch(()=>this.setResult()))),()=>Dt(c.value.current,u)},_n.prototype.calculateString=function(){return this.parts.length?this.parts.map(t=>{if("function"!=typeof t)return t;const e=t();return null===e||""===e?"":e}).join(""):this.formula};const In=_n,{__:Fn,sprintf:On}=wp.i18n,kn=function(t,e){if(t.jfbObserved)return;const n=new In(e);if(n.observe(t.textContent),!n.parts?.length)return console.group(Fn("JetFormBuilder: You have invalid html macro","jet-form-builder")),console.error(On(Fn("Content: %s","jet-form-builder"),t.textContent)),console.groupEnd(),void n.clearWatchers();const r=document.createElement("span"),o=t.parentNode.insertBefore(r,t);n.setResult=()=>{o.innerHTML=n.calculateString()},n.setResult(),t.jfbObserved=!0},Cn=function(t,e,n){var r;const o=null!==(r=t[e])&&void 0!==r?r:"";if("string"!=typeof o)return null;const i=new In(n);i.observe(o),i.setResult=()=>{t[e]=i.calculateString()},i.setResult()},Rn=function(t,e){t.__jfbMacroTemplate||(t.__jfbMacroTemplate=t.innerHTML);const n=new In(e,{withPrefix:!1,macroHost:t,macroFormat:t.dataset.jfbMacroFormat||""});if(n.observe(`%${t.dataset.jfbMacro}%`),!n.parts?.length)return console.group((0,gn.__)("JetFormBuilder: You have invalid html macro","jet-form-builder")),console.error((0,gn.sprintf)((0,gn.__)("Content: %s","jet-form-builder"),t.dataset.jfbMacro)),console.groupEnd(),void n.clearWatchers();t.dataset.jfbObserved=1,n.setResult=()=>{let e=String(n.calculateString());const r=t.querySelector?.("textarea");r&&(e=e.replace(/\r\n|\r|\n/g,"
")),t.innerHTML=e},n.setResult()};function En(t){this.root=t,this.reportedFirst=!1,this.silence=!0}En.prototype={reset(t={}){var e;this.reportedFirst=!1,this.setSilence(null===(e=t?.silence)||void 0===e||e)},reportFirst(){this.reportedFirst=!0},setSilence(t){this.silence=!!t}};const Pn=En,{doAction:Tn}=JetPlugins.hooks;function Mn(t=null){this.parent=t,this.dataInputs={},this.form=null,this.multistep=null,this.rootNode=null,this.isObserved=!1,this.context=this.parent?null:new Pn(this)}Mn.prototype={parent:null,dataInputs:{},form:null,multistep:null,rootNode:null,isObserved:!1,value:null,observe(t=null){this.isObserved||(null!==t&&(this.rootNode=t),this.isObserved=!0,Tn("jet.fb.observe.before",this),this.initSubmitHandler(),this.initFields(),this.makeReactiveProxy(),this.initMacros(),this.initActionButtons(),this.initValue(),Tn("jet.fb.observe.after",this))},initFields(){for(const t of this.rootNode.querySelectorAll("[data-jfb-sync]"))this.pushInput(t)},initMacros(){for(const t of Bt(this.rootNode))kn(t,this);const t=Mt(this.rootNode,"JFB_FIELD::"),{replaceAttrs:e=[]}=window.JetFormBuilderSettings;for(const n of t)for(const t of e)Cn(n,t,this);const n=this.rootNode.querySelectorAll("[data-jfb-macro]:not([data-jfb-observed])");for(const t of n)Rn(t,this)},initSubmitHandler(){this.parent||(this.form=new Tt(this))},initActionButtons(){if(!this.parent)for(const t of this.rootNode.querySelectorAll(".jet-form-builder__button-switch-state")){let e;try{e=JSON.parse(t.dataset.switchOn)}catch(t){continue}t.addEventListener("click",()=>{this.getState().value.current=e})}},async inputsAreValid(){const t=await st(It(this.getInputs()));return Boolean(t.length)?Promise.reject(t):Promise.resolve()},watch(t,e){const n=this.getInput(t);if(n)return n.watch(e);throw new Error(`dataInputs in Observable don't have ${t} field`)},observeInput(t,e=!1){const n=this.pushInput(t,e);n.makeReactive(),Tn("jet.fb.observe.input.manual",n)},makeReactiveProxy(){for(const t of this.getInputs())t.makeReactive()},pushInput(t,e=!1){var n;if(!this.parent&&t.parentElement.closest(".jet-form-builder-repeater"))return;const r=function(t,e){Nt.length||(Nt=St("jet.fb.inputs",[wt,ft,ht,mt]));for(const n of Nt){const r=new n;if(r.isSupported(t))return r.setRoot(e),r.setNode(t),g(r),jt("jet.fb.input.created",r),r}throw new Error("Something went wrong")}(t,this),o=null!==(n=this.dataInputs[r.getName()])&&void 0!==n&&n;return!1===o||e?(this.dataInputs[r.getName()]=r,r):(o.merge(r),o)},getInputs(){return Object.values(this.dataInputs)},getState(){return this.getInput("_jfb_current_render_states")},getInput(t){var e;if(this.dataInputs.hasOwnProperty(t))return this.dataInputs[t];const n=null!==(e=this.parent?.root)&&void 0!==e?e:null;return n&&n.dataInputs.hasOwnProperty(t)?n.dataInputs[t]:null},getSubmit(){return this.form?this.form:this.parent.root.form},getContext(){var t;return null!==(t=this.context)&&void 0!==t?t:this.parent.root.context},remove(){for(const t of this.getInputs())t.onRemove()},reQueryValues(){for(const t of this.getInputs())t.reQueryValue()},initValue(){this.value=new _({}),this.value.watch(()=>{const t=Object.entries(this.value.current);for(const[e,n]of t)this.getInput(e).revertValue(n)});for(const t of this.getInputs())t.watch(()=>{this.value.current[t.getName()]=t.getValue()});this.value.make()}};const xn=Mn;var Bn;window.JetFormBuilder=null!==(Bn=window.JetFormBuilder)&&void 0!==Bn?Bn:{};const Dn=function(t){const e=t[0].querySelector("form.jet-form-builder");if(!e)return;const n=new xn;window.JetFormBuilder[e.dataset.formId]=n,jQuery(document).trigger("jet-form-builder/init",[t,n]),n.observe(e),jQuery(document).trigger("jet-form-builder/after-init",[t,n])};var An,Vn,Ln,Jn,Hn;window.JetFormBuilderAbstract={...null!==(An=window.JetFormBuilderAbstract)&&void 0!==An?An:{},Filter:Vt,CalculatedFormula:Sn,BaseInternalMacro:Xe},window.JetFormBuilderFunctions={...null!==(Vn=window.JetFormBuilderFunctions)&&void 0!==Vn?Vn:{},getFilters:Ue,applyFilters:Dt,toDate:Yt,toDateTime:Wt,toTime:$t,getTimestamp:zt},window.JetFormBuilderConst={...null!==(Ln=window.JetFormBuilderConst)&&void 0!==Ln?Ln:{},...nn},window.JetFormBuilderAbstract={...null!==(Jn=window.JetFormBuilderAbstract)&&void 0!==Jn?Jn:{},InputData:ct,BaseSignal:P,ReactiveVar:_,ReactiveHook:k,LoadingReactiveVar:F,Observable:xn,ReportingInterface:$,Restriction:U,RestrictionError:q,BaseHtmlAttr:e,ReactiveSet:yt,RequiredRestriction:tt},window.JetFormBuilderFunctions={...null!==(Hn=window.JetFormBuilderFunctions)&&void 0!==Hn?Hn:{},allRejected:f,getLanguage:function(){const t=window?.navigator?.languages?.length?window.navigator.languages[0]:window?.navigator?.language;return null!=t?t:"en-US"},toHTML:function(t){const e=document.createElement("template");return e.innerHTML=t.trim(),e.content},validateInputs:function(t,e=!1){return Promise.all(it(t,e).map(t=>new Promise(t)))},validateInputsAll:st,getParsedName:_t,isEmpty:y,getValidateCallbacks:it,getOffsetTop:v,focusOnInvalidInput:j,populateInputs:It,isVisible:b,queryByAttrValue:Mt,iterateComments:xt,observeMacroAttr:Cn,observeComment:kn,iterateJfbComments:Bt,getScrollParent:S,isUA:function(t){return h?.[t]}},document.addEventListener("DOMContentLoaded",function(){for(const[t,e]of Object.entries(h))e&&document.body.classList.add(`jet--ua-${t}`)}),jQuery(()=>JetPlugins.init()),JetPlugins.bulkBlocksInit([{block:"jet-forms.form-block",callback:Dn,condition:()=>"loading"!==document.readyState}]),jQuery(window).on("elementor/frontend/init",function(){if(!window.elementorFrontend)return;const t={"jet-engine-booking-form.default":Dn,"jet-form-builder-form.default":Dn};jQuery.each(t,function(t,e){window.elementorFrontend.hooks.addAction("frontend/element_ready/"+t,e)})}),addEventListener("load",()=>{const t=Object.values(window.JetFormBuilder);for(const e of t)e instanceof xn&&e.reQueryValues()})})(); \ No newline at end of file diff --git a/assets/src/frontend/main/submit/AjaxSubmit.js b/assets/src/frontend/main/submit/AjaxSubmit.js index 3d118eaf4..b64c58dfd 100644 --- a/assets/src/frontend/main/submit/AjaxSubmit.js +++ b/assets/src/frontend/main/submit/AjaxSubmit.js @@ -72,6 +72,11 @@ function AjaxSubmit( form ) { this.lastResponse = response; const $form = jQuery( rootNode ); + const csrfToken = response?._jfb_csrf_token; + + if ( csrfToken ) { + this.refreshCsrfToken( csrfToken ); + } switch ( response.status ) { case 'success': @@ -129,6 +134,26 @@ function AjaxSubmit( form ) { rootNode.appendChild( node ); }; + this.refreshCsrfToken = function ( csrfToken ) { + const formId = this.form.getFormId(); + const forms = document.querySelectorAll( + 'form.jet-form-builder[data-form-id]', + ); + + for ( const formNode of forms ) { + if ( +formNode.dataset.formId !== formId ) { + continue; + } + + const csrfFields = formNode.querySelectorAll( + 'input[name="_jfb_csrf_token"]', + ); + + for ( const field of csrfFields ) { + field.value = csrfToken; + } + } + }; } AjaxSubmit.prototype = Object.create( BaseSubmit.prototype ); @@ -167,4 +192,4 @@ AjaxSubmit.prototype.watchFail = function ( callable ) { } ); }; -export default AjaxSubmit; \ No newline at end of file +export default AjaxSubmit; diff --git a/codeception.dist.yml b/codeception.dist.yml index 67c6de23a..fbb14dd21 100644 --- a/codeception.dist.yml +++ b/codeception.dist.yml @@ -17,6 +17,7 @@ extensions: - Codeception\Command\GenerateWPCanonical - Codeception\Command\GenerateWPXMLRPC params: + - tests/_envs/.env.local - tests/_envs/.env settings: colors: true @@ -80,5 +81,3 @@ modules: mu-plugins: '/wp-content/mu-plugins' themes: '/wp-content/themes' uploads: '/wp-content/uploads' - - diff --git a/modules/security/csrf/csrf-tools.php b/modules/security/csrf/csrf-tools.php index 988a12f54..644fe5c07 100644 --- a/modules/security/csrf/csrf-tools.php +++ b/modules/security/csrf/csrf-tools.php @@ -97,6 +97,10 @@ public static function delete( string $token, string $client_id ): int { } } + public static function consume( string $token, string $client_id ): bool { + return (bool) static::delete( $token, $client_id ); + } + public static function generate( int $bytes = 16 ): string { try { return \bin2hex( \random_bytes( $bytes ) ); diff --git a/modules/security/csrf/module.php b/modules/security/csrf/module.php index 220a1bde4..561b6b9ce 100644 --- a/modules/security/csrf/module.php +++ b/modules/security/csrf/module.php @@ -24,8 +24,7 @@ class Module implements Base_Module_It, Base_Module_Url_It, Base_Module_Handle_I use Base_Module_Url_Trait; use Base_Module_Handle_Trait; - private $token; - private $client; + private $client_id = ''; public function rep_item_id() { return 'csrf'; @@ -75,29 +74,40 @@ public function handle_request( array $request ): array { return $request; } - $this->token = $request[ Csrf_Tools::FIELD ] ?? false; - $this->client = Csrf_Tools::client_id( jet_fb_live()->form_id ); + $token = $request[ Csrf_Tools::FIELD ] ?? false; + $this->client_id = Csrf_Tools::client_id( jet_fb_live()->form_id ); // delete all old tokens Csrf_Token_Model::clear(); - if ( ! Csrf_Tools::verify( $this->token, $this->client ) ) { + if ( ! Csrf_Tools::consume( $token, $this->client_id ) ) { // phpcs:ignore WordPress.Security.EscapeOutput.ExceptionNotEscaped throw new Spam_Exception( self::SPAM_EXCEPTION ); } - // delete verified token only on success - add_action( 'jet-form-builder/form-handler/after-send', array( $this, 'handle_after_send' ) ); + add_action( 'jet-form-builder/form-handler/after-send', array( $this, 'handle_after_send' ), 10, 2 ); return $request; } - public function handle_after_send() { - if ( ! jet_fb_handler()->is_success ) { + public function handle_after_send( $handler, bool $is_success ) { + remove_action( 'jet-form-builder/form-handler/after-send', array( $this, 'handle_after_send' ), 10 ); + + if ( ! $handler->is_ajax() ) { return; } - Csrf_Tools::delete( $this->token, $this->client ); + try { + $token = Csrf_Tools::add( Csrf_Tools::generate(), $this->client_id ); + } catch ( \Exception $exception ) { + return; + } + + $handler->add_response_data( + array( + Csrf_Tools::FIELD => $token, + ) + ); } public function handle_messages( array $messages ): array { diff --git a/tests/_envs/.env b/tests/_envs/.env index 5eedcb8c5..6273630f0 100644 --- a/tests/_envs/.env +++ b/tests/_envs/.env @@ -1,7 +1,7 @@ -WP_ROOT=C:\\laragon\\www\\dev.loc -WP_URL='http://jetformbuilder.test.local' -WP_DOMAIN='jetformbuilder.test.local' -DB_HOST='127.0.0.1' +WP_ROOT=/tmp/WP/ +WP_URL='http://jetformbuilder.test:8000' +WP_DOMAIN='jetformbuilder.test:8000' +DB_HOST='127.0.0.1:3306' DB_NAME='wp.codeception.test' -DB_USER='root' -DB_PASSWORD='' +DB_USER='user' +DB_PASSWORD='passw0rd' diff --git a/tests/_envs/.env.local.example b/tests/_envs/.env.local.example new file mode 100644 index 000000000..9b1dfe02c --- /dev/null +++ b/tests/_envs/.env.local.example @@ -0,0 +1,7 @@ +WP_ROOT='/absolute/path/to/your/local/wp/root' +WP_URL='http://your-local-site.test' +WP_DOMAIN='your-local-site.test' +DB_HOST='127.0.0.1:3306' +DB_NAME='your_local_test_db' +DB_USER='your_db_user' +DB_PASSWORD='your_db_password' diff --git a/tests/wpunit/CsrfTokenLifecycleTest.php b/tests/wpunit/CsrfTokenLifecycleTest.php new file mode 100644 index 000000000..bca12ab2e --- /dev/null +++ b/tests/wpunit/CsrfTokenLifecycleTest.php @@ -0,0 +1,125 @@ +create(); + $this->clear_tokens(); + } + + protected function tearDown(): void { + $this->clear_tokens(); + + parent::tearDown(); + } + + public function testTokenCanOnlyBeConsumedOnce(): void { + $client_id = 'csrf-test-client'; + $token = Csrf_Tools::add( 'csrf-test-token', $client_id ); + + $this->assertTrue( Csrf_Tools::consume( $token, $client_id ) ); + $this->assertFalse( Csrf_Tools::consume( $token, $client_id ) ); + $this->assertFalse( Csrf_Tools::verify( $token, $client_id ) ); + } + + public function testTokenCannotBeConsumedForDifferentClient(): void { + $token = Csrf_Tools::add( 'csrf-test-token', 'csrf-test-client' ); + + $this->assertFalse( Csrf_Tools::consume( $token, 'csrf-other-client' ) ); + $this->assertTrue( Csrf_Tools::consume( $token, 'csrf-test-client' ) ); + } + + public function testConsumedTokenCanBeReplacedForRetry(): void { + $client_id = 'csrf-test-client'; + $token = Csrf_Tools::add( 'csrf-test-token', $client_id ); + + $this->assertTrue( Csrf_Tools::consume( $token, $client_id ) ); + + $retry_token = Csrf_Tools::add( 'csrf-retry-token', $client_id ); + + $this->assertSame( 'csrf-retry-token', $retry_token ); + $this->assertFalse( Csrf_Tools::consume( $token, $client_id ) ); + $this->assertTrue( Csrf_Tools::consume( $retry_token, $client_id ) ); + } + + public function testAjaxContinuationReceivesReplacementTokenAfterConsume(): void { + $client_id = 'csrf-test-client'; + $token = Csrf_Tools::add( 'csrf-test-token', $client_id ); + + $this->assertTrue( Csrf_Tools::consume( $token, $client_id ) ); + + $module = new Module(); + $property = new \ReflectionProperty( $module, 'client_id' ); + $property->setAccessible( true ); + $property->setValue( $module, $client_id ); + + $handler = new class() { + public $response_data = array(); + + public function is_ajax(): bool { + return true; + } + + public function add_response_data( array $data ) { + $this->response_data = array_merge( $this->response_data, $data ); + } + }; + + $module->handle_after_send( $handler, true ); + + $replacement_token = $handler->response_data[ Csrf_Tools::FIELD ] ?? ''; + + $this->assertNotEmpty( $replacement_token ); + $this->assertNotSame( $token, $replacement_token ); + $this->assertFalse( Csrf_Tools::consume( $token, $client_id ) ); + $this->assertTrue( Csrf_Tools::consume( $replacement_token, $client_id ) ); + } + + public function testAjaxValidationFailureReceivesReplacementTokenAfterConsume(): void { + $client_id = 'csrf-test-client'; + $token = Csrf_Tools::add( 'csrf-test-token', $client_id ); + + $this->assertTrue( Csrf_Tools::consume( $token, $client_id ) ); + + $module = new Module(); + $property = new \ReflectionProperty( $module, 'client_id' ); + $property->setAccessible( true ); + $property->setValue( $module, $client_id ); + + $handler = new class() { + public $response_data = array(); + + public function is_ajax(): bool { + return true; + } + + public function add_response_data( array $data ) { + $this->response_data = array_merge( $this->response_data, $data ); + } + }; + + $module->handle_after_send( $handler, false ); + + $replacement_token = $handler->response_data[ Csrf_Tools::FIELD ] ?? ''; + + $this->assertNotEmpty( $replacement_token ); + $this->assertNotSame( $token, $replacement_token ); + $this->assertFalse( Csrf_Tools::consume( $token, $client_id ) ); + $this->assertTrue( Csrf_Tools::consume( $replacement_token, $client_id ) ); + } + + private function clear_tokens(): void { + global $wpdb; + + // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching + $wpdb->query( 'DELETE FROM ' . Csrf_Token_Model::table() ); + } +} diff --git a/tests/wpunit/FormHandlerPostContextTest.php b/tests/wpunit/FormHandlerPostContextTest.php new file mode 100644 index 000000000..b513ec492 --- /dev/null +++ b/tests/wpunit/FormHandlerPostContextTest.php @@ -0,0 +1,106 @@ +form_id = wp_insert_post( + array( + 'post_type' => 'jet-form-builder', + 'post_status' => 'publish', + 'post_title' => 'Context form', + ) + ); + + $this->handler = new Form_Handler(); + $this->handler->set_form_id( $this->form_id ); + + unset( $_POST[ $this->handler->post_id_sig_key ] ); + + global $post; + $post = null; + } + + protected function tearDown(): void { + unset( $_POST[ $this->handler->post_id_sig_key ] ); + + global $post; + $post = null; + + parent::tearDown(); + } + + public function testTamperedPostContextFallsBackToReferrerPost(): void { + $referrer_post_id = wp_insert_post( + array( + 'post_type' => 'page', + 'post_status' => 'publish', + 'post_title' => 'Referrer page', + ) + ); + $forged_post_id = wp_insert_post( + array( + 'post_type' => 'post', + 'post_status' => 'publish', + 'post_title' => 'Forged context post', + ) + ); + $referrer = get_permalink( $referrer_post_id ); + + $this->handler->set_referrer( $referrer ); + $_POST[ $this->handler->post_id_sig_key ] = $this->handler->get_post_context_signature( + $referrer_post_id, + $this->form_id, + $referrer + ); + + $this->handler->set_current_post_context( (string) $forged_post_id ); + + $this->assertSame( $referrer_post_id, get_post()->ID ); + } + + public function testSignedLoopContextIsAccepted(): void { + $referrer_post_id = wp_insert_post( + array( + 'post_type' => 'page', + 'post_status' => 'publish', + 'post_title' => 'Container page', + ) + ); + $loop_post_id = wp_insert_post( + array( + 'post_type' => 'post', + 'post_status' => 'publish', + 'post_title' => 'Loop item post', + ) + ); + $referrer = get_permalink( $referrer_post_id ); + + $this->handler->set_referrer( $referrer ); + $_POST[ $this->handler->post_id_sig_key ] = $this->handler->get_post_context_signature( + $loop_post_id, + $this->form_id, + $referrer + ); + + $this->handler->set_current_post_context( (string) $loop_post_id ); + + $this->assertSame( $loop_post_id, get_post()->ID ); + } + + public function testNegativeLegacyPostIdDoesNotResolveToPostOne(): void { + $this->handler->set_referrer( home_url( '/not-a-post-context/' ) ); + + $this->handler->set_current_post_context( '-1' ); + + $this->assertNull( get_post() ); + } +} From 2a931bf0c579f57e626143c3273a53054604c0e7 Mon Sep 17 00:00:00 2001 From: Andrew Shevchenko Date: Sat, 27 Jun 2026 12:15:49 +0300 Subject: [PATCH 3/7] FIX: Validation pipeline - 3.1 --- .../block-parsers/choices-field-parser.php | 4 + modules/block-parsers/field-data-parser.php | 10 ++ .../block-parsers/fields/default-parser.php | 11 ++ .../fields/media-field-parser.php | 4 + .../fields/repeater-field-parser.php | 4 + modules/validation/module.php | 2 +- .../_generated/WpunitTesterActions.php | 2 +- tests/wpunit/ValidationPipelineTest.php | 168 ++++++++++++++++++ vendor/composer/installed.php | 4 +- 9 files changed, 205 insertions(+), 4 deletions(-) create mode 100644 tests/wpunit/ValidationPipelineTest.php diff --git a/modules/advanced-choices/block-parsers/choices-field-parser.php b/modules/advanced-choices/block-parsers/choices-field-parser.php index 40590c28a..c1bbdc7ab 100644 --- a/modules/advanced-choices/block-parsers/choices-field-parser.php +++ b/modules/advanced-choices/block-parsers/choices-field-parser.php @@ -15,4 +15,8 @@ class Choices_Field_Parser extends Field_Data_Parser { public function type() { return 'choices-field'; } + + protected function allows_array_value(): bool { + return (bool) $this->get_setting( 'allow_multiple' ); + } } diff --git a/modules/block-parsers/field-data-parser.php b/modules/block-parsers/field-data-parser.php index aee20521d..ef84bc351 100644 --- a/modules/block-parsers/field-data-parser.php +++ b/modules/block-parsers/field-data-parser.php @@ -146,9 +146,19 @@ final public function set_request() { } public function parse_value( $value ) { + if ( is_array( $value ) && ! $this->allows_array_value() ) { + $this->collect_error( 'invalid_value' ); + + return ''; + } + return $value; } + protected function allows_array_value(): bool { + return false; + } + public function check_response() { if ( $this->is_inside_conditional() || diff --git a/modules/block-parsers/fields/default-parser.php b/modules/block-parsers/fields/default-parser.php index 98f22f229..44abab472 100644 --- a/modules/block-parsers/fields/default-parser.php +++ b/modules/block-parsers/fields/default-parser.php @@ -16,4 +16,15 @@ public function type() { return 'default'; } + protected function allows_array_value(): bool { + switch ( $this->get_type() ) { + case 'checkbox-field': + return true; + case 'select-field': + return (bool) $this->get_setting( 'multiple' ); + default: + return false; + } + } + } diff --git a/modules/block-parsers/fields/media-field-parser.php b/modules/block-parsers/fields/media-field-parser.php index 7464fa1c9..ef58637c4 100644 --- a/modules/block-parsers/fields/media-field-parser.php +++ b/modules/block-parsers/fields/media-field-parser.php @@ -22,6 +22,10 @@ public function type() { return 'media-field'; } + protected function allows_array_value(): bool { + return true; + } + /** * @since 3.0.4 Added `jet-form-builder/media-field/before-upload` hook * diff --git a/modules/block-parsers/fields/repeater-field-parser.php b/modules/block-parsers/fields/repeater-field-parser.php index 1ed549717..b7a603bf5 100644 --- a/modules/block-parsers/fields/repeater-field-parser.php +++ b/modules/block-parsers/fields/repeater-field-parser.php @@ -17,6 +17,10 @@ public function type() { return 'repeater-field'; } + protected function allows_array_value(): bool { + return true; + } + /** * @return int|void * @throws Sanitize_Value_Exception diff --git a/modules/validation/module.php b/modules/validation/module.php index 3d5ef48df..16dd043e2 100644 --- a/modules/validation/module.php +++ b/modules/validation/module.php @@ -351,7 +351,7 @@ public function formats(): array { public function validate_block( Field_Data_Parser $parser ) { if ( ! $this->is_advanced( $parser->get_settings() ) || - ! $parser->get_value() || + Tools::is_empty( $parser->get_value() ) || $parser->is_inside_conditional() ) { return; diff --git a/tests/_support/_generated/WpunitTesterActions.php b/tests/_support/_generated/WpunitTesterActions.php index 6048c6d8c..94f6e6bcd 100644 --- a/tests/_support/_generated/WpunitTesterActions.php +++ b/tests/_support/_generated/WpunitTesterActions.php @@ -1,4 +1,4 @@ -set_name( 'zero_value' ); + $parser->set_type( 'text-field' ); + $parser->set_context( + $this->make_context( + array( + 'zero_value' => $value, + ) + ) + ); + $parser->set_settings( + array( + 'validation' => array( + 'type' => Module::FORMAT_ADVANCED, + 'rules' => array( + array( + 'type' => 'equal', + 'value' => 'expected-non-zero', + ), + ), + ), + ) + ); + $parser->update_request(); + + ( new Module() )->validate_block( $parser ); + + $this->assertSame( $value, $parser->get_value() ); + $this->assertContains( 'rule:equal', $parser->get_errors() ); + } + + public function zeroLikeValuesProvider(): array { + return array( + 'integer zero' => array( 0 ), + 'string zero' => array( '0' ), + ); + } + + /** + * @dataProvider scalarParserProvider + * + * @param mixed $parser + */ + public function testScalarParsersRejectArrayPayloads( $parser ): void { + $parser->set_name( 'scalar_field' ); + $parser->set_context( + $this->make_context( + array( + 'scalar_field' => array( 'unexpected' => 'array' ), + ) + ) + ); + $parser->update_request(); + + $this->assertContains( 'invalid_value', $parser->get_errors() ); + $this->assertSame( '', $parser->get_value() ); + } + + public function scalarParserProvider(): array { + $number = new Default_Parser(); + $number->set_type( 'number-field' ); + + $text = new Text_Field_Parser(); + $text->set_type( 'text-field' ); + + $single_choice = new Choices_Field_Parser(); + $single_choice->set_type( 'choices-field' ); + $single_choice->set_settings( array( 'allow_multiple' => false ) ); + + return array( + 'default scalar number' => array( $number ), + 'text field' => array( $text ), + 'single choice field' => array( $single_choice ), + ); + } + + public function testKnownArrayParsersAcceptArrayPayloads(): void { + $checkbox = new Default_Parser(); + $checkbox->set_name( 'checkbox_field' ); + $checkbox->set_type( 'checkbox-field' ); + $checkbox->set_context( + $this->make_context( + array( + 'checkbox_field' => array( 'one_value', 'second_value' ), + ) + ) + ); + $checkbox->update_request(); + + $multiple_select = new Default_Parser(); + $multiple_select->set_name( 'multiple_select_field' ); + $multiple_select->set_type( 'select-field' ); + $multiple_select->set_settings( array( 'multiple' => true ) ); + $multiple_select->set_context( + $this->make_context( + array( + 'multiple_select_field' => array( 'one_value', 'second_value' ), + ) + ) + ); + $multiple_select->update_request(); + + $multiple_choice = new Choices_Field_Parser(); + $multiple_choice->set_name( 'multiple_choice_field' ); + $multiple_choice->set_type( 'choices-field' ); + $multiple_choice->set_settings( array( 'allow_multiple' => true ) ); + $multiple_choice->set_context( + $this->make_context( + array( + 'multiple_choice_field' => array( 'Book Name #1', 'Book Name #2' ), + ) + ) + ); + $multiple_choice->update_request(); + + $media = new Media_Field_Parser(); + $media->set_name( 'media_field' ); + $media->set_type( 'media-field' ); + $media->set_context( + $this->make_context( + array( + 'media_field' => array( 15, 29 ), + ) + ) + ); + $media->update_request(); + + $repeater_value = array( array( 'field' => 'value' ) ); + $repeater = new Repeater_Field_Parser(); + $repeater->set_type( 'repeater-field' ); + $repeater->set_value( $repeater_value ); + + $this->assertSame( array(), $checkbox->get_errors() ); + $this->assertSame( array( 'one_value', 'second_value' ), $checkbox->get_value() ); + $this->assertSame( array(), $multiple_select->get_errors() ); + $this->assertSame( array( 'one_value', 'second_value' ), $multiple_select->get_value() ); + $this->assertSame( array(), $multiple_choice->get_errors() ); + $this->assertSame( array( 'Book Name #1', 'Book Name #2' ), $multiple_choice->get_value() ); + $this->assertSame( array(), $media->get_errors() ); + $this->assertSame( array( 15, 29 ), $media->get_value() ); + $this->assertSame( array(), $repeater->get_errors() ); + $this->assertSame( $repeater_value, $repeater->get_value() ); + } + + private function make_context( array $request ): Parser_Context { + return ( new Parser_Context() )->set_request( $request ); + } +} diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 11cd5fc64..38d6ae93d 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -3,7 +3,7 @@ 'name' => 'crocoblock/jetformbuilder', 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '96bbb0a16dfd2da65c0392fc2240a3506b130143', + 'reference' => '0f18f7497860571f26df223fad28500ffce6cfdf', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -13,7 +13,7 @@ 'crocoblock/jetformbuilder' => array( 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '96bbb0a16dfd2da65c0392fc2240a3506b130143', + 'reference' => '0f18f7497860571f26df223fad28500ffce6cfdf', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), From f402a3d470facf0f2381b64dfac08cf145c29d6f Mon Sep 17 00:00:00 2001 From: Andrew Shevchenko Date: Tue, 30 Jun 2026 09:27:24 +0300 Subject: [PATCH 4/7] FIX: SSR validation - 3.2 --- .../validation/ssr/is-field-value-unique.php | 120 ++++++++++++++-- tests/wpunit/ValidationPipelineTest.php | 128 ++++++++++++++++++ vendor/composer/installed.php | 4 +- 3 files changed, 239 insertions(+), 13 deletions(-) diff --git a/modules/validation/ssr/is-field-value-unique.php b/modules/validation/ssr/is-field-value-unique.php index 545f7868c..5584ee8fb 100644 --- a/modules/validation/ssr/is-field-value-unique.php +++ b/modules/validation/ssr/is-field-value-unique.php @@ -3,6 +3,8 @@ namespace JFB_Modules\Validation\Ssr; +use Jet_Form_Builder\Classes\Arrayable\Array_Tools; +use Jet_Form_Builder\Classes\Tools; use Jet_Form_Builder\Request\Parser_Context; // If this file is called directly, abort. @@ -21,9 +23,11 @@ public function get_label(): string { } public function is_valid( $value, Parser_Context $context ): bool { - $request = $context->get_request(); - $field_name = $request['_jfb_validation_path'][0]; - $form_id = $request['_jet_engine_booking_form_id']; + $request = $context->get_request(); + $field_path = $this->get_field_path( $request['_jfb_validation_path'] ?? '' ); + $field_name = $field_path[0] ?? ''; + $nested_path = array_slice( $field_path, 1 ); + $form_id = $request['_jet_engine_booking_form_id']; global $wpdb; $record_ids = $wpdb->get_col( @@ -34,25 +38,119 @@ public function is_valid( $value, Parser_Context $context ): bool { ) ); - if ( ! empty( $record_ids ) ) { - $placeholders = array_fill( 0, count( $record_ids ), '%d' ); + if ( empty( $record_ids ) || '' === $field_name ) { + return true; + } + + $placeholders = array_fill( 0, count( $record_ids ), '%d' ); + + if ( empty( $nested_path ) ) { $sql = sprintf( - 'SELECT COUNT(*) FROM ' . $wpdb->prefix . 'jet_fb_records_fields - WHERE record_id IN (%s) - AND field_name = %%s + 'SELECT COUNT(*) FROM ' . $wpdb->prefix . 'jet_fb_records_fields + WHERE record_id IN (%s) + AND field_name = %%s AND field_value = %%s', implode( ', ', $placeholders ) ); $params = array_merge( $record_ids, array( $field_name, $value ) ); - $exists = $wpdb->get_var( $wpdb->prepare( $sql, $params ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared - if ( $exists ) { - return false; + return ! $exists; + } + + $sql = sprintf( + 'SELECT field_value, field_attrs FROM ' . $wpdb->prefix . 'jet_fb_records_fields + WHERE record_id IN (%s) + AND field_name = %%s', + implode( ', ', $placeholders ) + ); + + $params = array_merge( $record_ids, array( $field_name ) ); + $rows = $wpdb->get_results( $wpdb->prepare( $sql, $params ), ARRAY_A ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared + + foreach ( $rows as $row ) { + if ( ! $this->matches_nested_value( $row, $nested_path, $value ) ) { + continue; } + + return false; } return true; } + + private function get_field_path( $field_path ): array { + if ( ! is_array( $field_path ) ) { + $field_path = array( $field_path ); + } + + $segments = array(); + + foreach ( $field_path as $segment ) { + if ( ! is_scalar( $segment ) ) { + continue; + } + + $segment = sanitize_text_field( (string) $segment ); + + if ( '' === $segment ) { + continue; + } + + $segments[] = $segment; + } + + return $segments; + } + + private function matches_nested_value( array $row, array $nested_path, $value ): bool { + $attrs = Tools::decode_json( $row['field_attrs'] ?? '{}' ); + + if ( empty( $attrs['is_encoded'] ) ) { + return false; + } + + $decoded = Tools::decode_json( $row['field_value'] ?? '' ); + + if ( ! is_array( $decoded ) ) { + return false; + } + + if ( Array_Tools::get( $decoded, $nested_path, null ) === $value ) { + return true; + } + + $wildcard_path = $this->normalize_nested_path( $nested_path ); + + if ( $wildcard_path === $nested_path ) { + return false; + } + + foreach ( $decoded as $item ) { + if ( ! is_array( $item ) ) { + continue; + } + + if ( Array_Tools::get( $item, $wildcard_path, null ) === $value ) { + return true; + } + } + + return false; + } + + private function normalize_nested_path( array $nested_path ): array { + $normalized = array(); + + foreach ( $nested_path as $segment ) { + if ( is_numeric( $segment ) ) { + continue; + } + + $normalized[] = $segment; + } + + return $normalized; + } } diff --git a/tests/wpunit/ValidationPipelineTest.php b/tests/wpunit/ValidationPipelineTest.php index e304f1d56..6166816ff 100644 --- a/tests/wpunit/ValidationPipelineTest.php +++ b/tests/wpunit/ValidationPipelineTest.php @@ -9,6 +9,7 @@ use JFB_Modules\Block_Parsers\Fields\Repeater_Field_Parser; use JFB_Modules\Block_Parsers\Fields\Text_Field_Parser; use JFB_Modules\Validation\Module; +use JFB_Modules\Validation\Ssr\Is_Field_Value_Unique; class ValidationPipelineTest extends \Codeception\TestCase\WPTestCase { @@ -162,7 +163,134 @@ public function testKnownArrayParsersAcceptArrayPayloads(): void { $this->assertSame( $repeater_value, $repeater->get_value() ); } + public function testSsrUniqueCallbackUsesScopedRepeaterFieldName(): void { + $form_id = $this->factory()->post->create( array( 'post_type' => 'jet-form-builder' ) ); + $record_id = $this->insert_success_record( $form_id ); + + $this->insert_record_field( + $record_id, + 'repeater', + wp_json_encode( + array( + array( + 'email' => 'duplicate@example.com', + ), + array( + 'email' => 'other@example.com', + ), + ) + ), + 'repeater-field', + wp_json_encode( array( 'is_encoded' => true ) ) + ); + + $callback = new Is_Field_Value_Unique(); + $context = $this->make_context( + array( + jet_fb_handler()->form_key => $form_id, + '_jfb_validation_path' => array( 'repeater', '0', 'email' ), + ) + ); + + $this->assertFalse( $callback->is_valid( 'duplicate@example.com', $context ) ); + $this->assertTrue( $callback->is_valid( 'unique@example.com', $context ) ); + } + + public function testSsrUniqueCallbackRejectsRepeaterDuplicatesAcrossRowIndexes(): void { + $form_id = $this->factory()->post->create( array( 'post_type' => 'jet-form-builder' ) ); + $record_id = $this->insert_success_record( $form_id ); + + $this->insert_record_field( + $record_id, + 'repeater', + wp_json_encode( + array( + array( + 'email' => 'row-zero@example.com', + ), + array( + 'email' => 'duplicate@example.com', + ), + ) + ), + 'repeater-field', + wp_json_encode( array( 'is_encoded' => true ) ) + ); + + $callback = new Is_Field_Value_Unique(); + $context = $this->make_context( + array( + jet_fb_handler()->form_key => $form_id, + '_jfb_validation_path' => array( 'repeater', '0', 'email' ), + ) + ); + + $this->assertFalse( $callback->is_valid( 'duplicate@example.com', $context ) ); + $this->assertTrue( $callback->is_valid( 'unique@example.com', $context ) ); + } + + public function testSsrUniqueCallbackKeepsTopLevelFieldLookup(): void { + $form_id = $this->factory()->post->create( array( 'post_type' => 'jet-form-builder' ) ); + $record_id = $this->insert_success_record( $form_id ); + + $this->insert_record_field( $record_id, 'email', 'duplicate@example.com' ); + + $callback = new Is_Field_Value_Unique(); + $context = $this->make_context( + array( + jet_fb_handler()->form_key => $form_id, + '_jfb_validation_path' => 'email', + ) + ); + + $this->assertFalse( $callback->is_valid( 'duplicate@example.com', $context ) ); + $this->assertTrue( $callback->is_valid( 'unique@example.com', $context ) ); + } + private function make_context( array $request ): Parser_Context { return ( new Parser_Context() )->set_request( $request ); } + + private function insert_success_record( int $form_id ): int { + global $wpdb; + + $inserted = $wpdb->insert( + $wpdb->prefix . 'jet_fb_records', + array( + 'form_id' => $form_id, + 'user_id' => 0, + 'from_content_id' => 0, + 'from_content_type' => '', + 'status' => 'success', + 'submit_type' => 'ajax', + ) + ); + + $this->assertNotFalse( $inserted ); + + return (int) $wpdb->insert_id; + } + + private function insert_record_field( + int $record_id, + string $field_name, + string $field_value, + string $field_type = 'text-field', + string $field_attrs = '{}' + ): void { + global $wpdb; + + $inserted = $wpdb->insert( + $wpdb->prefix . 'jet_fb_records_fields', + array( + 'record_id' => $record_id, + 'field_name' => $field_name, + 'field_value' => $field_value, + 'field_type' => $field_type, + 'field_attrs' => $field_attrs, + ) + ); + + $this->assertNotFalse( $inserted ); + } } diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 38d6ae93d..4f7f015b4 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -3,7 +3,7 @@ 'name' => 'crocoblock/jetformbuilder', 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '0f18f7497860571f26df223fad28500ffce6cfdf', + 'reference' => '2a931bf0c579f57e626143c3273a53054604c0e7', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -13,7 +13,7 @@ 'crocoblock/jetformbuilder' => array( 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '0f18f7497860571f26df223fad28500ffce6cfdf', + 'reference' => '2a931bf0c579f57e626143c3273a53054604c0e7', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), From b92facf7c56bef621d173c7d20057bd3a5643e15 Mon Sep 17 00:00:00 2001 From: Andrew Shevchenko Date: Mon, 20 Jul 2026 13:27:10 +0300 Subject: [PATCH 5/7] UPD: Fix Repeater SSR + rebuild scripts --- assets/build/admin/package.asset.php | 2 +- assets/build/admin/package.js | 2 +- assets/build/admin/pages/jfb-addons.asset.php | 2 +- assets/build/admin/pages/jfb-addons.js | 2 +- .../build/admin/pages/jfb-settings.asset.php | 2 +- assets/build/admin/pages/jfb-settings.js | 2 +- assets/build/admin/vuex.package.asset.php | 2 +- assets/build/admin/vuex.package.js | 2 +- assets/build/editor/form.builder.asset.php | 2 +- assets/build/editor/form.builder.js | 2 +- assets/build/editor/package.asset.php | 2 +- assets/build/editor/package.js | 2 +- .../frontend/advanced.reporting.asset.php | 2 +- assets/build/frontend/advanced.reporting.js | 2 +- .../build/frontend/calculated.field.asset.php | 2 +- assets/build/frontend/calculated.field.js | 2 +- .../frontend/conditional.block.asset.php | 2 +- assets/build/frontend/conditional.block.js | 2 +- assets/build/frontend/dynamic.value.asset.php | 2 +- assets/build/frontend/dynamic.value.js | 2 +- assets/build/frontend/main.asset.php | 2 +- assets/build/frontend/main.js | 2 +- assets/build/frontend/media.field.asset.php | 2 +- assets/build/frontend/media.field.js | 2 +- .../media.field.restrictions.asset.php | 2 +- .../frontend/media.field.restrictions.js | 2 +- assets/build/frontend/multi.step.asset.php | 2 +- assets/build/frontend/multi.step.js | 2 +- .../bricks/assets/build/frontend.asset.php | 2 +- compatibility/bricks/assets/build/frontend.js | 2 +- .../assets/build/frontend.asset.php | 2 +- .../jet-appointment/assets/build/frontend.js | 2 +- .../assets/build/frontend.asset.php | 2 +- .../jet-booking/assets/build/frontend.js | 2 +- .../jet-engine/assets/build/editor.asset.php | 2 +- .../jet-engine/assets/build/editor.js | 2 +- .../build/frontend/listing.options.asset.php | 2 +- .../assets/build/frontend/listing.options.js | 2 +- .../check-mark/assets/build/editor.asset.php | 2 +- .../blocks/check-mark/assets/build/editor.js | 2 +- .../assets/build/frontend/checkbox.asset.php | 2 +- .../assets/build/frontend/checkbox.js | 2 +- .../assets/build/frontend/radio.asset.php | 2 +- .../check-mark/assets/build/frontend/radio.js | 2 +- .../map-field/assets/build/editor.asset.php | 2 +- .../blocks/map-field/assets/build/editor.js | 2 +- .../build/frontend/autocomplete.asset.php | 2 +- .../assets/build/frontend/autocomplete.js | 2 +- .../assets/build/frontend/map.asset.php | 2 +- .../map-field/assets/build/frontend/map.js | 2 +- .../woocommerce/assets/build/editor.asset.php | 2 +- .../woocommerce/assets/build/editor.js | 2 +- .../actions-v2/assets/build/editor.asset.php | 2 +- modules/actions-v2/assets/build/editor.js | 2 +- .../call-hook/assets/build/editor.asset.php | 2 +- .../call-hook/assets/build/editor.js | 2 +- .../assets/build/editor.asset.php | 2 +- .../call-webhook/assets/build/editor.js | 2 +- .../assets/build/editor.asset.php | 2 +- .../get-response/assets/build/editor.js | 2 +- .../insert-post/assets/build/editor.asset.php | 2 +- .../insert-post/assets/build/editor.js | 2 +- .../insert-term/assets/build/editor.asset.php | 2 +- .../insert-term/assets/build/editor.js | 2 +- .../mailchimp/assets/build/editor.asset.php | 2 +- .../mailchimp/assets/build/editor.js | 2 +- .../assets/build/editor.asset.php | 2 +- .../redirect-to-page/assets/build/editor.js | 2 +- .../assets/build/editor.asset.php | 2 +- .../register-user/assets/build/editor.js | 2 +- .../send-email/assets/build/editor.asset.php | 2 +- .../send-email/assets/build/editor.js | 2 +- .../update-user/assets/build/editor.asset.php | 2 +- .../update-user/assets/build/editor.js | 2 +- .../assets/build/admin/jfb-settings.asset.php | 2 +- .../assets/build/admin/jfb-settings.js | 2 +- .../assets/build/editor.asset.php | 2 +- .../active-campaign/assets/build/editor.js | 2 +- modules/admin/assets/build/plugins.js | 2 +- .../build/editor-not-supported.asset.php | 2 +- .../assets/build/editor-not-supported.js | 2 +- .../assets/build/editor.asset.php | 2 +- .../advanced-choices/assets/build/editor.js | 2 +- .../build/frontend/choices.field.asset.php | 2 +- .../assets/build/frontend/choices.field.js | 2 +- modules/ai/assets/build/admin/forms.asset.php | 2 +- modules/ai/assets/build/admin/forms.js | 2 +- modules/ai/assets/build/editor.asset.php | 2 +- modules/ai/assets/build/editor.js | 2 +- .../assets/build/editor.asset.php | 2 +- .../assets/build/editor.js | 2 +- .../assets/build/editor/index.asset.php | 2 +- .../phone-field/assets/build/editor/index.js | 2 +- .../assets/build/frontend/field.asset.php | 2 +- .../assets/build/frontend/field.js | 2 +- .../build/frontend/i18n/phone-i18n-ar.js | 2 +- .../build/frontend/i18n/phone-i18n-bg.js | 2 +- .../build/frontend/i18n/phone-i18n-bn.js | 2 +- .../build/frontend/i18n/phone-i18n-bs.js | 2 +- .../build/frontend/i18n/phone-i18n-ca.js | 2 +- .../build/frontend/i18n/phone-i18n-cs.js | 2 +- .../build/frontend/i18n/phone-i18n-da.js | 2 +- .../build/frontend/i18n/phone-i18n-de.js | 2 +- .../build/frontend/i18n/phone-i18n-el.js | 2 +- .../build/frontend/i18n/phone-i18n-es.js | 2 +- .../build/frontend/i18n/phone-i18n-fa.js | 2 +- .../build/frontend/i18n/phone-i18n-fi.js | 2 +- .../build/frontend/i18n/phone-i18n-fr.js | 2 +- .../build/frontend/i18n/phone-i18n-hi.js | 2 +- .../build/frontend/i18n/phone-i18n-hr.js | 2 +- .../build/frontend/i18n/phone-i18n-hu.js | 2 +- .../build/frontend/i18n/phone-i18n-id.js | 2 +- .../build/frontend/i18n/phone-i18n-it.js | 2 +- .../build/frontend/i18n/phone-i18n-ja.js | 2 +- .../build/frontend/i18n/phone-i18n-ko.js | 2 +- .../build/frontend/i18n/phone-i18n-mr.js | 2 +- .../build/frontend/i18n/phone-i18n-nl.js | 2 +- .../build/frontend/i18n/phone-i18n-no.js | 2 +- .../build/frontend/i18n/phone-i18n-pl.js | 2 +- .../build/frontend/i18n/phone-i18n-pt.js | 2 +- .../build/frontend/i18n/phone-i18n-ro.js | 2 +- .../build/frontend/i18n/phone-i18n-ru.js | 2 +- .../build/frontend/i18n/phone-i18n-sk.js | 2 +- .../build/frontend/i18n/phone-i18n-sv.js | 2 +- .../build/frontend/i18n/phone-i18n-te.js | 2 +- .../build/frontend/i18n/phone-i18n-th.js | 2 +- .../build/frontend/i18n/phone-i18n-tr.js | 2 +- .../build/frontend/i18n/phone-i18n-uk.js | 2 +- .../build/frontend/i18n/phone-i18n-ur.js | 2 +- .../build/frontend/i18n/phone-i18n-vi.js | 2 +- .../build/frontend/i18n/phone-i18n-zh.js | 2 +- .../assets/build/editor.asset.php | 2 +- .../repeater-field/assets/build/editor.js | 2 +- .../assets/build/frontend.asset.php | 2 +- .../repeater-field/assets/build/frontend.js | 2 +- .../text-field/assets/build/editor.asset.php | 2 +- .../text-field/assets/build/editor.js | 2 +- .../assets/build/frontend/field.asset.php | 2 +- .../text-field/assets/build/frontend/field.js | 2 +- .../build/frontend/field.mask.asset.php | 2 +- .../assets/build/frontend/field.mask.js | 2 +- modules/captcha/assets/build/editor.asset.php | 2 +- modules/captcha/assets/build/editor.js | 2 +- .../assets/build/editor.package.asset.php | 2 +- .../captcha/assets/build/editor.package.js | 2 +- .../build/friendly.captcha/editor.asset.php | 2 +- .../assets/build/friendly.captcha/editor.js | 2 +- .../build/friendly.captcha/frontend.asset.php | 2 +- .../assets/build/friendly.captcha/frontend.js | 2 +- .../assets/build/hcaptcha/editor.asset.php | 2 +- .../captcha/assets/build/hcaptcha/editor.js | 2 +- .../assets/build/hcaptcha/frontend.asset.php | 2 +- .../captcha/assets/build/hcaptcha/frontend.js | 2 +- .../build/re-captcha-v3/editor.asset.php | 2 +- .../assets/build/re-captcha-v3/editor.js | 2 +- .../build/re-captcha-v3/frontend.asset.php | 2 +- .../assets/build/re-captcha-v3/frontend.js | 2 +- .../assets/build/turnstile/editor.asset.php | 2 +- .../captcha/assets/build/turnstile/editor.js | 2 +- .../assets/build/turnstile/frontend.asset.php | 2 +- .../assets/build/turnstile/frontend.js | 2 +- .../components/assets/build/index.asset.php | 2 +- modules/components/assets/build/index.js | 2 +- modules/data/assets/build/index.asset.php | 2 +- modules/data/assets/build/index.js | 2 +- .../admin/pages/jfb-records-single.asset.php | 2 +- .../build/admin/pages/jfb-records-single.js | 2 +- .../build/admin/pages/jfb-records.asset.php | 2 +- .../assets/build/admin/pages/jfb-records.js | 2 +- .../build/admin/pages/record-print.asset.php | 2 +- .../assets/build/admin/pages/record-print.js | 2 +- .../admin/pages/jfb-payments-single.asset.php | 2 +- .../build/admin/pages/jfb-payments-single.js | 2 +- .../gateways/assets/build/editor.asset.php | 2 +- modules/gateways/assets/build/editor.js | 2 +- .../assets/build/admin-ui.asset.php | 2 +- modules/html-parser/assets/build/admin-ui.js | 2 +- .../html-parser/assets/build/parser.asset.php | 2 +- modules/html-parser/assets/build/parser.js | 2 +- modules/jet-plugins/assets/build/index.js | 2 +- .../jet-style/assets/build/editor.asset.php | 2 +- modules/jet-style/assets/build/editor.js | 2 +- .../assets/build/editor.asset.php | 2 +- .../macros-inserter/assets/build/editor.js | 2 +- .../assets/build/editor.asset.php | 2 +- modules/multi-gateway/assets/build/editor.js | 2 +- .../onboarding/assets/build/editor.asset.php | 2 +- modules/onboarding/assets/build/editor.js | 2 +- .../assets/build/editor.package.asset.php | 2 +- .../onboarding/assets/build/editor.package.js | 2 +- .../assets/build/preview.frontend.asset.php | 2 +- .../assets/build/preview.frontend.js | 2 +- .../use-form/assets/build/index.asset.php | 2 +- .../onboarding/use-form/assets/build/index.js | 2 +- .../assets/build/auto-update.asset.php | 2 +- .../option-field/assets/build/auto-update.js | 2 +- .../assets/build/checkbox.asset.php | 2 +- modules/option-field/assets/build/checkbox.js | 2 +- .../custom.options.restrictions.asset.php | 2 +- .../build/custom.options.restrictions.js | 2 +- .../assets/build/editor.asset.php | 2 +- modules/option-field/assets/build/editor.js | 2 +- .../option-field/assets/build/radio.asset.php | 2 +- modules/option-field/assets/build/radio.js | 2 +- .../assets/build/select.asset.php | 2 +- modules/option-field/assets/build/select.js | 2 +- .../promo-banner/assets/build/index.asset.php | 2 +- modules/promo-banner/assets/build/index.js | 2 +- .../assets/build/editor.asset.php | 2 +- modules/sanitize-value/assets/build/editor.js | 2 +- .../assets/build/block.editor.asset.php | 2 +- .../shortcode/assets/build/block.editor.js | 2 +- .../assets/build/editor.asset.php | 2 +- .../assets/build/editor.js | 2 +- .../assets/build/frontend.asset.php | 2 +- .../assets/build/frontend.js | 2 +- .../switcher/assets/build/editor.asset.php | 2 +- modules/switcher/assets/build/editor.js | 2 +- .../switcher/assets/build/switcher.asset.php | 2 +- modules/switcher/assets/build/switcher.js | 2 +- .../advanced-rules/server-side-rule.php | 4 +- .../ssr/base-validation-callback.php | 16 + .../validation/ssr/is-field-value-unique.php | 75 +++- .../build/admin/form-record-single.asset.php | 2 +- .../assets/build/admin/form-record-single.js | 2 +- .../assets/build/admin/form-records.asset.php | 2 +- .../assets/build/admin/form-records.js | 2 +- .../assets/build/editor.asset.php | 2 +- modules/verification/assets/build/editor.js | 2 +- modules/wysiwyg/assets/build/editor.asset.php | 2 +- modules/wysiwyg/assets/build/editor.js | 2 +- .../wysiwyg/assets/build/wysiwyg.asset.php | 2 +- modules/wysiwyg/assets/build/wysiwyg.js | 2 +- tests/wpunit/ValidationPipelineTest.php | 373 ++++++++++++++++-- vendor/composer/installed.php | 4 +- 235 files changed, 647 insertions(+), 285 deletions(-) diff --git a/assets/build/admin/package.asset.php b/assets/build/admin/package.asset.php index 25a539b68..484964828 100644 --- a/assets/build/admin/package.asset.php +++ b/assets/build/admin/package.asset.php @@ -1 +1 @@ - array('wp-i18n'), 'version' => 'cd879d1903e305e67f49'); + array('wp-i18n'), 'version' => '99fe468873e64c9eac92'); diff --git a/assets/build/admin/package.js b/assets/build/admin/package.js index a0ab1be31..490ae5aa3 100644 --- a/assets/build/admin/package.js +++ b/assets/build/admin/package.js @@ -1 +1 @@ -(()=>{var t={2373(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-component[data-v-327e05fd]{flex-direction:column;width:100%;border-top:unset;gap:.7em}.cx-vui-component.padding-side-unset[data-v-327e05fd]{padding-left:unset;padding-right:unset}.padding-top-bottom-unset[data-v-327e05fd]{padding-top:unset;padding-bottom:unset}.padding-unset[data-v-327e05fd]{padding:unset}",""]);const r=o},7944(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-collapse-mini__wrap{padding:0 0 20px}.cx-vui-collapse-mini__item{border-bottom:1px solid #ececec}.cx-vui-collapse-mini__item:first-child{border-top:1px solid #ececec}.cx-vui-collapse-mini__item:last-child{margin-bottom:unset}.cx-vui-collapse-mini__item--active .cx-vui-collapse-mini__header-label>svg{transform:rotate(90deg)}.cx-vui-collapse-mini__header{padding:1.2rem;display:flex;align-items:center;cursor:pointer;column-gap:1em}.cx-vui-collapse-mini__header-label{font-weight:500;font-size:15px;line-height:23px;color:#007cba;display:flex;align-items:center}.cx-vui-collapse-mini__header-desc{font-size:15px;line-height:23px;color:#7b7e81}.cx-vui-collapse-mini__header-label svg{margin:-1px 8px 0 0;transition:.3s}.cx-vui-collapse-mini--disabled{opacity:.5}.cx-vui-collapse-mini--disabled .cx-vui-collapse-mini__header{cursor:not-allowed}.cx-vui-collapse-mini__content{padding:0 1.5rem 1.5rem}",""]);const r=o},6278(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-input--warning-danger[data-v-13c6d87e]{border:1px solid #d63638}",""]);const r=o},5965(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-popup__close[data-v-7acae1c9]{position:unset}.cx-vui-popup__header[data-v-7acae1c9]{display:flex;justify-content:space-between;padding-bottom:10px;margin:unset;border-bottom:1px solid #ececec}.cx-vui-popup.sticky-header .cx-vui-popup__body[data-v-7acae1c9],.cx-vui-popup.sticky-footer .cx-vui-popup__body[data-v-7acae1c9]{max-height:80vh;overflow-y:auto}.cx-vui-popup.sticky-header .cx-vui-popup__header[data-v-7acae1c9]{position:sticky;top:0;background-color:#fff;padding-top:20px;z-index:1}.cx-vui-popup.sticky-header .cx-vui-popup__body[data-v-7acae1c9]{padding-top:0}.cx-vui-popup.sticky-footer .cx-vui-popup__body[data-v-7acae1c9]{padding-bottom:0}.cx-vui-popup.sticky-footer .cx-vui-popup__content[data-v-7acae1c9]{padding-bottom:40px}.cx-vui-popup.sticky-footer .cx-vui-popup__footer[data-v-7acae1c9]{position:sticky;bottom:0;background-color:#fff;padding-bottom:20px;border-top:1px solid #ececec}",""]);const r=o},1618(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-select[data-v-b31905c2]{line-height:2em;padding:6px 24px 6px 8px}.cx-vui-select.fullwidth[data-v-b31905c2]{width:100%}",""]);const r=o},6291(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-tabs__nav-item--disabled{opacity:.5;cursor:not-allowed}.cx-vui-tabs__nav-item--disabled:hover{color:unset}.cx-vui-tabs__nav-item--has-icon{display:flex;justify-content:space-between;column-gap:1em}.cx-vui-tabs--layout-vertical>.cx-vui-tabs__nav{width:unset;flex:unset;max-width:unset}.cx-vui-tabs--layout-vertical>.cx-vui-tabs__content{flex:1}",""]);const r=o},4761(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,"hr.jfb[data-v-362c518d]{border:0;border-top:1px solid #ececec;margin:unset}",""]);const r=o},1700(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".table-details{display:flex;flex-direction:column}",""]);const r=o},1418(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".table-details-row{display:flex;justify-content:space-between;font-size:1.1em}.table-details-row:first-child{font-weight:bold}.table-details-row:nth-child(even){background-color:#eee}.table-details-row-column{padding:.5em 1em}.table-details-row--heading{flex:1;text-align:right}.table-details-row-role--default.table-details-row--heading{font-weight:600}.table-details-row--content{flex:2}.table-details-row--actions{flex:.3}.table-details-row h3{padding:.5em;border-bottom:1px solid #aaa;width:50%;margin:1em auto;text-align:center;color:#aaa;font-weight:400}",""]);const r=o},4965(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,'.fade-enter-active[data-v-7d75afce],.fade-leave-active[data-v-7d75afce]{transition:opacity .5s}.fade-enter[data-v-7d75afce],.fade-leave-to[data-v-7d75afce]{opacity:0}.jfb-recursive-details[data-v-7d75afce]:not(.jfb-recursive-details--indent){margin-top:unset}.jfb-recursive-details--indent[data-v-7d75afce]{margin-left:1.5em;margin-top:.5em}.jfb-recursive-details-row[data-v-7d75afce]:not(:last-child){margin-bottom:.5em;padding-bottom:.5em}.jfb-recursive-details-item--content[data-v-7d75afce]{border-bottom:1px solid #ccc}.jfb-recursive-details-item-without-children>.jfb-recursive-details-item--heading[data-v-7d75afce]::after{content:":"}.jfb-recursive-details-item-with-children>.jfb-recursive-details-item--heading[data-v-7d75afce]{cursor:pointer}.jfb-recursive-details-item-with-children>.jfb-recursive-details-item--heading[data-v-7d75afce]:hover{color:#2271b1;border-bottom-color:#2271b1}',""]);const r=o},4244(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-external-link__icon{width:1em;height:1em;fill:currentcolor;vertical-align:middle}",""]);const r=o},8984(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".size--1-x-2 .cx-vui-component__meta[data-v-6f5201e4]{flex:1}.size--1-x-2 .cx-vui-component__control[data-v-6f5201e4]{flex:2}.padding-side-unset.cx-vui-component[data-v-6f5201e4]{padding-left:unset;padding-right:unset}.cx-vui-component__control-actions[data-v-6f5201e4]{display:flex;justify-content:flex-end;gap:1em;margin-top:.5em}",""]);const r=o},1292(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".jfb-tooltip[data-v-431c7ba2]{position:relative;display:inline-block}.jfb-tooltip-has-help[data-v-431c7ba2]{cursor:pointer}.jfb-tooltip-has-text[data-v-431c7ba2]{display:flex;column-gap:.5em;align-items:center}.jfb-tooltip--text[data-v-431c7ba2]{text-overflow:ellipsis;overflow:hidden;padding:.1em 0}.jfb-tooltip .dashicons-dismiss[data-v-431c7ba2]{color:#d63638}.jfb-tooltip .dashicons-warning[data-v-431c7ba2]{color:orange}.jfb-tooltip .dashicons-warning.danger[data-v-431c7ba2]{color:#d63638}.jfb-tooltip .dashicons-yes-alt[data-v-431c7ba2]{color:#32cd32}.jfb-tooltip .dashicons-info[data-v-431c7ba2]{color:#90c6db}.jfb-tooltip .dashicons-hourglass[data-v-431c7ba2]{color:#b5b5b5}.jfb-tooltip .dashicons-update.loading[data-v-431c7ba2]{animation:jfb-tooltip-loading-icon-data-v-431c7ba2 1.5s infinite linear}.jfb-tooltip .cx-vui-tooltip[data-v-431c7ba2]{width:fit-content;bottom:calc(100% + 15px);box-sizing:border-box;pointer-events:none;transition:all .18s linear;opacity:0;padding-left:1em;padding-right:1em;position:absolute;z-index:2}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]{right:-1.2em}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]:after{right:20px;left:unset}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]{left:-0.9em}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]:after{left:20px;right:unset}.jfb-tooltip:hover .cx-vui-tooltip[data-v-431c7ba2]{opacity:1}.jfb-tooltip:hover .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]{bottom:100%}.jfb-tooltip:hover .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]{bottom:100%}.jfb-tooltip-position--top-right[data-v-431c7ba2]{flex-direction:row-reverse}@keyframes jfb-tooltip-loading-icon-data-v-431c7ba2{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}",""]);const r=o},5598(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,"\n@media print {\n.cx-vui-button[data-v-aa3950ea] {\n\t\tdisplay: none;\n}\n}\n",""]);const r=o},935(t){"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var i="",a=void 0!==e[5];return e[4]&&(i+="@supports (".concat(e[4],") {")),e[2]&&(i+="@media ".concat(e[2]," {")),a&&(i+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),i+=t(e),a&&(i+="}"),e[2]&&(i+="}"),e[4]&&(i+="}"),i}).join("")},e.i=function(t,i,a,n,s){"string"==typeof t&&(t=[[null,t,void 0]]);var o={};if(a)for(var r=0;r0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=s),i&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=i):u[2]=i),n&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=n):u[4]="".concat(n)),e.push(u))}},e}},6758(t){"use strict";t.exports=function(t){return t[1]}},6945(t,e,i){var a=i(2373);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("b1875a50",a,!1,{})},9356(t,e,i){var a=i(7944);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("30df35ee",a,!1,{})},9330(t,e,i){var a=i(6278);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("21fb632e",a,!1,{})},1041(t,e,i){var a=i(5965);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("0c7f7908",a,!1,{})},2310(t,e,i){var a=i(1618);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("2e7817a3",a,!1,{})},799(t,e,i){var a=i(6291);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("4168dbce",a,!1,{})},5981(t,e,i){var a=i(4761);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("8c144c80",a,!1,{})},6168(t,e,i){var a=i(1700);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("206d9f3c",a,!1,{})},8862(t,e,i){var a=i(1418);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("6aaa4088",a,!1,{})},7393(t,e,i){var a=i(4965);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("29e569e4",a,!1,{})},8528(t,e,i){var a=i(4244);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("45767117",a,!1,{})},8036(t,e,i){var a=i(8984);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("57efcfaf",a,!1,{})},6608(t,e,i){var a=i(1292);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("3a21f3b2",a,!1,{})},7922(t,e,i){var a=i(5598);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("7e55f3a9",a,!1,{})},611(t,e,i){"use strict";function a(t,e){for(var i=[],a={},n=0;nf});var n="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!n)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},o=n&&(document.head||document.getElementsByTagName("head")[0]),r=null,l=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",v="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(t,e,i,n){c=i,d=n||{};var o=a(t,e);return h(o),function(e){for(var i=[],n=0;ni.parts.length&&(a.parts.length=i.parts.length)}else{var o=[];for(n=0;n{var e=t&&t.__esModule?()=>t.default:()=>t;return i.d(e,{a:e}),e},i.d=(t,e)=>{for(var a in e)i.o(e,a)&&!i.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:e[a]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),i.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},(()=>{"use strict";class t extends Error{constructor(e=!1,i=""){super(i),Error.captureStackTrace&&Error.captureStackTrace(this,t),this.name="ApiInputError",this.noticeOptions=e}}const e=t;var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:{"cx-vui-panel":t.withPanel,"cx-vui-collapse-mini--disabled":t.disabled,"cx-vui-collapse-mini__item":!0,"cx-vui-collapse-mini__item--active":t.isActive}},[i("div",{staticClass:"cx-vui-collapse-mini__header",on:{click:t.collapse}},[i("div",{staticClass:"cx-vui-collapse-mini__header-label"},[i("svg",{attrs:{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[i("path",{attrs:{d:"M14 13.9999L14 -0.00012207L0 -0.000121458L6.11959e-07 13.9999L14 13.9999Z",fill:"white"}}),t._v(" "),i("path",{attrs:{d:"M5.32911 1L11 7L5.32911 13L4 11.5938L8.34177 7L4 2.40625L5.32911 1Z",fill:"#007CBA"}})]),t._v("\n\t\t\t"+t._s(t.label)+"\n\t\t")]),t._v(" "),t.icon?i("div",{staticClass:"cx-vui-collapse-mini__header-desc"},["object"==typeof t.icon?i(t.icon,{tag:"component"}):t._e()],1):t.desc?i("div",{staticClass:"cx-vui-collapse-mini__header-desc"},[t._v("\n\t\t\t"+t._s(t.desc)+"\n\t\t")]):t._e(),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-collapse-mini__header-custom-description"},[t._t("description")],2):t._e()]),t._v(" "),t.disabled?t._e():[this.$slots.default?[i("div",{directives:[{name:"show",rawName:"v-show",value:t.isActive,expression:"isActive"}],staticClass:"cx-vui-collapse-mini__content"},[t._t("default")],2)]:[t._t("custom",null,{state:{isActive:t.isActive}})]]],2)};a._withStripped=!0;const n={name:"cx-vui-collapse-mini",props:{withPanel:{type:Boolean,default:!1},initialActive:{type:Boolean,default:!1},label:{type:String,default:"Collapse Mini"},desc:{type:String,default:""},disabled:{type:Boolean,default:!1},icon:{type:[Object,String],default:""}},data:()=>({isActive:!1}),created(){this.isActive=this.initialActive},methods:{collapse(){this.disabled||(this.isActive=!this.isActive,this.$emit("change",this.isActive))}}};function s(t,e,i,a,n,s,o,r){var l,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=i,c._compiled=!0),a&&(c.functional=!0),s&&(c._scopeId="data-v-"+s),o?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),n&&n.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},c._ssrRegister=l):n&&(l=r?function(){n.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:n),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(t,e){return l.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:t,options:c}}i(9356);const o=s(n,a,[],!1,null,null,null).exports,r={methods:{getIncoming:t=>t?window.JetFBPageConfig[t]:window.JetFBPageConfig}},l={methods:{saveByAjax(t,e){const i=this;let a={};try{a=this.getAjaxObject(t,e)}catch(t){if(!t)return;return"object"==typeof t.noticeOptions?void i.$CXNotice.add({message:"Invalid request data.",type:"error",duration:2e3,...t.noticeOptions}):void i.$CXNotice.add({message:t,type:"error",duration:2e3})}jfbEventBus.$emit("request-state",{state:"begin",slug:e}),jQuery.ajax(a).done(function(a){"function"==typeof t.onSaveDone?t.onSaveDone(a):a.success?(i.$CXNotice.add({message:a.data.message,type:"success",duration:5e3}),"function"==typeof t.onSaveDoneSuccess&&t.onSaveDoneSuccess(a)):(i.$CXNotice.add({message:a.data.message,type:"error",duration:5e3}),"function"==typeof t.onSaveDoneError&&t.onSaveDoneError(a)),jfbEventBus.$emit("request-state",{state:"end",slug:e})}).fail(function(a,n,s){"function"==typeof t.onSaveFail?t.onSaveFail(a,n,s):i.$CXNotice.add({message:s,type:"error",duration:5e3}),jfbEventBus.$emit("request-state",{state:"end",slug:e})})},getAjaxObject(t,e){const i={url:window.ajaxurl,type:"POST",dataType:"json",...t.getRequestOnSave()};return i.data={action:`jet_fb_save_tab__${e}`,...i.data},window?.JetFBPageConfigPackage?.nonce&&(i.data._nonce=window.JetFBPageConfigPackage.nonce),i}}},c={props:["value","full-entry","entry-id","scope"],computed:{parsedJson(){return JSON.parse(JSON.stringify(this.value))}}},u={methods:{promiseWrapper(t){const e=t=>"object"==typeof t?t?.message:t;return(i,a,...n)=>{const s=t=>{"function"==typeof i&&i(),this.$CXNotice.add({message:e(t),type:"success",duration:4e3})},o=t=>{"function"==typeof i&&i(),this.$CXNotice.add({message:e(t),type:"error",duration:4e3})};try{t.call(this,{resolve:s,reject:o},...n)}catch(t){o(t.message)}}}}};var d=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("section",{staticClass:"table-details"},t._l(t.columns,function(e,a){return t.canShow(a)?i("DetailsTableRow",{key:a,attrs:{type:t.getType(a)},scopedSlots:t._u([{key:"name",fn:function(){return[t._v(t._s(e.label))]},proxy:!0},{key:"value",fn:function(){return["object"==typeof t.getColumnValue(a,!1)?[i("DetailsTableRowValue",{attrs:{value:t.getColumnValue(a,!1),columns:e.children||{}}})]:[t._v(t._s(t.getColumnValue(a,"")))]]},proxy:!0}],null,!0)}):t._e()}),1)};d._withStripped=!0;var p=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("ul",{directives:[{name:"show",rawName:"v-show",value:!this.withIndent,expression:"! this.withIndent"}],class:t.rootClasses},t._l(t.value,function(e,a){return t.isHiddenLevel(a)?i("li",{key:a,staticClass:"jfb-recursive-details-row"},[t.isSkipLevel(a)?[i("DetailsTableRowValue",{attrs:{value:e,columns:t.getChildren(a)}})]:[t.isObject(e)?i("span",{class:t.itemClasses(!0)},[i("span",{staticClass:"jfb-recursive-details-item--heading",on:{click:function(e){return t.toggleNext(a)}}},[t._v("\n\t\t\t\t\t"+t._s(t.getItemLabel(a))+"\n\t\t\t\t\t"),i("span",{class:t.arrowClasses(a)})]),t._v(" "),i("span",{staticClass:"jfb-recursive-details-item--content"},[i("transition",{attrs:{name:"fade"}},[i("DetailsTableRowValue",{directives:[{name:"show",rawName:"v-show",value:t.isShow(a),expression:"isShow( itemName )"}],attrs:{value:e,"with-indent":!0,columns:t.getChildren(a)}})],1)],1)]):i("span",{class:t.itemClasses(!1)},[i("span",{staticClass:"jfb-recursive-details-item--heading"},[t._v(t._s(t.getItemLabel(a)))]),t._v(" \n\t\t\t\t"),i("span",{staticClass:"jfb-recursive-details-item--content"},[t._v(t._s(e))])])]],2):t._e()}),0)};p._withStripped=!0;const v={name:"DetailsTableRowValue",props:{value:Object,withIndent:{type:Boolean,default:!1},columns:{type:Object,default:()=>({})}},data:()=>({showNext:{}}),computed:{rootClasses(){return{"jfb-recursive-details":!0,"jfb-recursive-details--indent":this.withIndent}}},methods:{getChildren(t){return this.columns[t]?.children||[]},getItemLabel(t){return this.columns[t]?this.columns[t].label:t},isObject:t=>"object"==typeof t,toggleNext(t){const e=this.showNext[t]||!1;this.$set(this.showNext,t,!e)},isShow(t){return"undefined"===this.showNext[t]||this.showNext[t]},itemClasses:(t=!0)=>({"jfb-recursive-details-item":!0,"jfb-recursive-details-item-with-children":t,"jfb-recursive-details-item-without-children":!t}),arrowClasses(t){return{dashicons:!0,"dashicons-arrow-down-alt2":!this.isShow(t),"dashicons-arrow-up-alt2":this.isShow(t)}},isSkipLevel(t){return this.columns[t]?.skip_level},isHiddenLevel(t){return!this.columns[t]?.hide}}};i(7393);const f=s(v,p,[],!1,null,"7d75afce",null).exports;var h=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"table-details-row"},["rowValue"===t.type?[i("div",{class:t.headingClasses},["default"!==t.role?[t._v(t._s("Name"))]:[t._t("name"),t._v("\n\t\t\t\t:\n\t\t\t")]],2),t._v(" "),i("div",{class:t.contentClasses},["default"!==t.role?[t._v(t._s("Value"))]:[t._t("value")]],2),t._v(" "),i("div",{class:t.actionClasses},["default"!==t.role?[t._v(t._s("Actions"))]:[t._t("actions")]],2)]:[i("h3",[t._t("name")],2)]],2)};h._withStripped=!0;const m={name:"DetailsTableRow",props:{role:{type:String,default:"default",validator:function(t){return-1!==["header","default","footer"].indexOf(t)}},type:{type:String,default:"rowValue",validator:function(t){return-1!==["rowValue","heading"].indexOf(t)}}},computed:{headingClasses(){return this.classes({"table-details-row--heading":!0})},contentClasses(){return this.classes({"table-details-row--content":!0})},actionClasses(){return this.classes({"table-details-row--actions":!0})}},methods:{classes(t){return{"table-details-row-column":!0,...t,["table-details-row-role--"+this.role]:!0}}}};i(8862);const _={name:"DetailsTable",components:{DetailsTableRow:s(m,h,[],!1,null,null,null).exports,DetailsTableRowValue:f},props:{columns:{type:Object},source:{type:Object}},methods:{getColumnValue(t,e=!1){return this.source[t]?this.source[t].value:e},hasValueOrAnotherType(t){return this.getColumnValue(t)||"rowValue"!==this.getType(t)},getType(t){var e;return null!==(e=this.columns[t].type)&&void 0!==e?e:"rowValue"},canShow(t){const e=this.getType(t),i=!1!==this.columns[t].show_in_details,a=this.getColumnValue(t);return i&&("rowValue"!==e||a)}}};i(6168);const b=s(_,d,[],!1,null,null,null).exports;var g=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[t.$slots.meta?i("div",{staticClass:"cx-vui-component__meta"},[t._t("meta")],2):t.$slots.label||t.$slots.description?i("div",{staticClass:"cx-vui-component__meta"},[t.$slots.label?i("label",{staticClass:"cx-vui-component__label",attrs:{for:t.elementIdData}},[t.stateType?[i("Tooltip",{attrs:{icon:t.stateType,position:"top-right"},scopedSlots:t._u([{key:"help",fn:function(){return[t._v(t._s(t.stateHelp))]},proxy:!0},{key:"default",fn:function(){return[t._t("label")]},proxy:!0}],null,!0)})]:[t._t("label")]],2):t._e(),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-component__desc"},[t._t("description")],2):t._e()]):t._e(),t._v(" "),i("div",{staticClass:"cx-vui-component__control"},[t._t("default"),t._v(" "),t.$slots.actions?i("div",{staticClass:"cx-vui-component__control-actions"},[t._t("actions")],2):t._e()],2)])};g._withStripped=!0;var y=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.wrapperClasses},[i("span",{class:t.dashIconClass}),t._v(" "),t.$slots.default?i("span",{staticClass:"jfb-icon-status--text"},[t._t("default")],2):t._e(),t._v(" "),t.$slots.help?i("div",{class:t.tooltipClasses},[t._t("help")],2):t._e()])};y._withStripped=!0;const x={success:"dashicons-yes-alt",warning:"dashicons-warning","warning-danger":["dashicons-warning","danger"],info:"dashicons-info",pending:"dashicons-hourglass",error:"dashicons-dismiss",loading:["dashicons-update","loading"]},w={name:"Tooltip",props:{icon:{type:String,validator:t=>Object.keys(x).includes(t),default:"info"},position:{type:String,validator:t=>["top-right","top-left"].includes(t),default:"top-left"}},computed:{wrapperClasses(){return{"jfb-tooltip":!0,"jfb-tooltip-has-text":!!this.$slots.default,"jfb-tooltip-has-help":!!this.$slots.help,["jfb-tooltip-position--"+this.position]:!0}},dashIconClass(){var t;let e=null!==(t=x[this.icon])&&void 0!==t?t:"";return Array.isArray(e)||(e=[e]),["dashicons",...e]},tooltipClasses(){return{"cx-vui-tooltip":!0,["tooltip-position-"+this.position]:!0}}}};i(6608);const C=s(w,y,[],!1,null,"431c7ba2",null).exports,j={name:"RowWrapper",components:{Tooltip:C},props:{elementId:{type:String},state:{type:[String,Object],validator:t=>(t=>["warning-danger","warning","loading",""].includes(t))("string"==typeof t?t:t.type),default:""},classNames:{type:Object,default:()=>({"cx-vui-component--equalwidth":!0})}},data(){return{elementIdData:`cx_${this.elementId}`}},computed:{className(){return{"cx-vui-component":!0,["cx-vui-component--is-"+this.stateType]:this.stateType,...this.classNames}},stateType(){return"string"==typeof this.state?this.state:this.state.type},stateHelp(){return"string"==typeof this.state?"":this.state.message}},provide(){return{elementId:this.elementIdData,stateType:()=>this.stateType}}};i(8036);const S=s(j,g,[],!1,null,"6f5201e4",null).exports,O=window.wp.i18n,k={methods:{__:(t,e)=>(0,O.__)(t,e),sprintf:(t,...e)=>(0,O.sprintf)(t,...e),__s:(t,e,...i)=>(0,O.sprintf)((0,O.__)(t,e),...i)}},{doAction:$}=wp.hooks;function T(){return window.location.pathname}function L(){const t={};return window.location.search.replace("?","").split("&").forEach(e=>{const[i,a]=e.split("=");t[i]=a}),t}function I(t,e){if("object"!=typeof e)return[[t,e]];const i=[];for(let[a,n]of Object.entries(e))a=`${t}[${a}]`,i.push(...I(a,n));return i}var N=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"jfb-list-components"},[t._l(t.components,function(e,a){return i("div",{key:"entry_"+a,staticClass:"jfb-list-components-item"},[i("keep-alive",[i(e,{tag:"component",attrs:{scope:t.scope}})],1)],1)}),t._v(" "),t._t("default")],2)};N._withStripped=!0;const A=s({name:"ListComponents",props:{components:Array,scope:String}},N,[],!1,null,null,null).exports;var E=function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{directives:[{name:"show",rawName:"v-show",value:t.show,expression:"show"}],staticClass:"cx-vui-tabs-panel"},[t._t("default")],2)};E._withStripped=!0;const D=s({name:"cx-vui-tabs-panel",props:{tab:{type:String,default:""},name:{type:String,default:""},label:{type:String,default:""},disabled:{type:Boolean,default:!1},icon:{type:[Object,String],default:""}},data:()=>({show:!1})},E,[],!1,null,null,null).exports;var V=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:{"cx-vui-tabs":!0,"cx-vui-tabs--invert":t.invert,"cx-vui-tabs--layout-vertical":"vertical"===this.layout,"cx-vui-tabs--layout-horizontal":"horizontal"===this.layout,"cx-vui-tabs--in-panel":t.inPanel}},[i("div",{staticClass:"cx-vui-tabs__nav"},t._l(t.navList,function(e){return i("div",{class:{"cx-vui-tabs__nav-item":!0,"cx-vui-tabs__nav-item--active":t.isActive(e.name),"cx-vui-tabs__nav-item--disabled":t.isDisabled(e.name),"cx-vui-tabs__nav-item--has-icon":!!e.icon},on:{click:function(i){return t.onTabClick(e.name)}}},[i("span",{staticClass:"item-label"},[t._v(t._s(e.label))]),t._v(" "),e.icon?i("span",{staticClass:"item-icon"},["object"==typeof e.icon?i(e.icon,{tag:"component",attrs:{"is-active":t.isActive(e.name)}}):t._e()],1):t._e()])}),0),t._v(" "),i("div",{staticClass:"cx-vui-tabs__content"},[t._t("default")],2)])};V._withStripped=!0;const P={name:"cx-vui-tabs",props:{value:{type:[String,Number],default:""},name:{type:String,default:""},invert:{type:Boolean,default:!1},inPanel:{type:Boolean,default:!1},layout:{validator:t=>["horizontal","vertical"].includes(t),default:"horizontal"},conditions:{type:Array,default:()=>[]}},data(){return{navList:[],activeTab:this.value,disabledTabs:[]}},mounted(){const t=this.getTabs();this.disabledTabs=this.getDisabledTabs(),this.navList=t,this.activeTab||(this.activeTab=t[0].name),this.updateState()},methods:{isActive(t){return t===this.activeTab},isDisabled(t){return this.disabledTabs.includes(t)},getDisabledTabs(){const t=[];for(const e of this.$children)e.disabled&&t.push(e.name);return t},onTabClick(t){this.isDisabled(t)||(this.activeTab=t,this.$emit("input",this.activeTab),this.updateState())},updateState(){const t=this.getTabs();this.navList=t,t.forEach(t=>{t.show=this.activeTab===t.name})},getTabs(){const t=this.$children.filter(t=>"cx-vui-tabs-panel"===t.$options.name),e=[];return t.forEach(t=>{t.tab&&this.name?t.tab===this.name&&e.push(t):e.push(t)}),e}}};i(799);const B=s(P,V,[],!1,null,null,null).exports,F="JetFBConfig";function M(t){localStorage.setItem(F,JSON.stringify(t))}function R(){const t=localStorage.getItem(F);return null===t?{}:JSON.parse(t)}function z(t,e){let i=R();i={...i,[t]:e},M(i)}function q(t,e=!1){var i;return null!==(i=R()[t])&&void 0!==i?i:e}const J={setStorage:M,getStorage:R,setItem:z,getItem:q,storage:function(t){const e={setStorage(e){z(t,e)},getStorage:()=>q(t,{})};return{...e,setItem(t,i){let a=e.getStorage();a={...a,[t]:i},e.setStorage(a)},getItem(t,i=!1){var a;return null!==(a=e.getStorage()[t])&&void 0!==a?a:i}}}};var U=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("a",{staticClass:"cx-vui-external-link",attrs:{href:t.href,target:"_blank",rel:"external noreferrer noopener"}},[t._t("default"),t._v(" "),i("svg",{staticClass:"cx-vui-external-link__icon",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"}},[i("path",{attrs:{d:"M18.2 17c0 .7-.6 1.2-1.2 1.2H7c-.7 0-1.2-.6-1.2-1.2V7c0-.7.6-1.2 1.2-1.2h3.2V4.2H7C5.5 4.2 4.2 5.5 4.2 7v10c0 1.5 1.2 2.8 2.8 2.8h10c1.5 0 2.8-1.2 2.8-2.8v-3.6h-1.5V17zM14.9 3v1.5h3.7l-6.4 6.4 1.1 1.1 6.4-6.4v3.7h1.5V3h-6.3z"}})])],2)};U._withStripped=!0;const H={name:"ExternalLink",mixins:[k],props:{href:{type:String,default:""}}};i(8528);const W=s(H,U,[],!1,null,null,null).exports;var X=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[t.$slots.label?i("label",{staticClass:"cx-vui-component__label",attrs:{for:t.elementIdData}},[t._t("label")],2):t._e(),t._v(" "),t._t("default"),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-component__desc"},[t._t("description")],2):t._e()],2)};X._withStripped=!0;const Z={name:"ColumnWrapper",props:{elementId:{type:String,required:!0},classNames:{type:Object,default:()=>({})}},data(){return{elementIdData:`cx_${this.elementId}`}},computed:{className(){return{"cx-vui-component":!0,...this.classNames}}},provide(){return{elementId:this.elementIdData}}};i(6945);const G=s(Z,X,[],!1,null,"327e05fd",null).exports;var Q=function(){var t=this,e=t.$createElement;return(t._self._c||e)("select",{class:t.className,attrs:{name:t.elementId,id:t.elementId},domProps:{value:t.value},on:{input:t.handleInput}},[t._t("default")],2)};Q._withStripped=!0;const K={name:"CxVuiSelect",props:{value:{type:[String,Number],default:""},elementId:{type:String},classNames:{type:Object,default:()=>({})}},computed:{className(){return{"cx-vui-select":!0,...this.classNames}}},methods:{handleInput(t){this.$emit("input",t.target.value)}},inject:["elementId"]};i(2310);const Y=s(K,Q,[],!1,null,"b31905c2",null).exports;var tt=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[i("div",{staticClass:"cx-vui-popup__overlay",on:{click:function(e){return t.$emit("close")}}}),t._v(" "),i("div",{staticClass:"cx-vui-popup__body"},[t.$slots.title?i("h2",{staticClass:"cx-vui-popup__header"},[t._t("title"),t._v(" "),t.$slots.close?[t._t("close")]:i("div",{staticClass:"cx-vui-popup__close",on:{click:function(e){return t.$emit("close")}}},[i("svg",{attrs:{width:"20",height:"20",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[i("path",{attrs:{d:"M12 3.00671L8.00671 7L12 10.9933L10.9933 12L7 8.00671L3.00671 12L2 10.9933L5.99329 7L2 3.00671L3.00671 2L7 5.99329L10.9933 2L12 3.00671Z"}})])])],2):t._e(),t._v(" "),i("div",{staticClass:"cx-vui-popup__content"},[t._t("content")],2),t._v(" "),t.$slots.footer?i("div",{staticClass:"cx-vui-popup__footer"},[t._t("footer")],2):t._e()])])};tt._withStripped=!0;const et={name:"CxVuiPopup",props:{classNames:{type:Object,default:()=>({})},stickyFooter:{type:Boolean,default:!1}},computed:{className(){return{"cx-vui-popup":!0,...this.classNames}}}};i(1041);const it=s(et,tt,[],!1,null,"7acae1c9",null).exports;var at=function(){var t,e=this,i=e.$createElement,a=e._self._c||i;return a("div",{staticClass:"cx-vui-f-select"},[a("div",{class:{"cx-vui-f-select__selected":!0,"cx-vui-f-select__selected-not-empty":this.value.length>0}},e._l(e.value,function(t){return a("div",{staticClass:"cx-vui-f-select__selected-option",on:{click:function(i){return e.handleResultClick(t)}}},[e.$slots["option-"+t]?[e._t("option-"+t)]:[e.isNonRemovable(t)?e._e():a("span",{staticClass:"cx-vui-f-select__selected-option-icon"},[a("svg",{attrs:{width:"10",height:"10",viewBox:"0 0 10 10",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M10 1.00671L6.00671 5L10 8.99329L8.99329 10L5 6.00671L1.00671 10L0 8.99329L3.99329 5L0 1.00671L1.00671 0L5 3.99329L8.99329 0L10 1.00671Z"}})])]),e._v("\n\t\t\t\t"+e._s(e.getOptionLabel(t))+"\n\t\t\t")]],2)}),0),e._v(" "),a("div",{directives:[{name:"click-outside",rawName:"v-click-outside.capture",value:e.onClickOutside,expression:"onClickOutside",modifiers:{capture:!0}},{name:"click-outside",rawName:"v-click-outside:mousedown.capture",value:e.onClickOutside,expression:"onClickOutside",arg:"mousedown",modifiers:{capture:!0}},{name:"click-outside",rawName:"v-click-outside:touchstart.capture",value:e.onClickOutside,expression:"onClickOutside",arg:"touchstart",modifiers:{capture:!0}}],staticClass:"cx-vui-f-select__control",on:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),e.handleOptionsNav.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),e.handleOptionsNav.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:e.handleOptionsNav.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.handleEnter.apply(null,arguments)}]}},[a("input",{class:(t={"cx-vui-f-select__input":!0,"cx-vui-input--in-focus":e.inFocus,"cx-vui-input":!0},t["cx-vui-input--"+e.stateType()]=e.stateType(),t["size-fullwidth"]=!0,t["has-error"]=e.error,t),attrs:{id:e.elementId,placeholder:e.placeholder,autocomplete:e.autocomplete,type:"text"},domProps:{value:e.query},on:{input:e.handleInput,focus:e.handleFocus}}),e._v(" "),e.inFocus?a("div",{staticClass:"cx-vui-f-select__results"},[e.filteredOptions.length?a("div",e._l(e.filteredOptions,function(t,i){return a("div",{class:{"cx-vui-f-select__result":!0,"in-focus":i===e.optionInFocus,"is-selected":e.isSelectedOption(t)},on:{click:function(i){return e.handleResultClick(t.value)}}},[e._v(e._s(e.getOptionLabel(t))+"\n\t\t\t\t")])}),0):a("div",{staticClass:"cx-vui-f-select__results-message",domProps:{innerHTML:e._s(e.notFoundMeassge)}})]):e._e()]),e._v(" "),a("select",{staticClass:"cx-vui-f-select__select-tag",attrs:{placeholder:e.placeholder,disabled:e.disabled,readonly:e.readonly,multiple:e.multiple},domProps:{value:e.currentValues}},e._l(e.currentValues,function(t){return a("option",{attrs:{selected:""},domProps:{value:t}})}),0)])};function nt(t){return nt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},nt(t)}function st(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),i.push.apply(i,a)}return i}function ot(t){for(var e=1;e["on","off"].includes(t),default:"off"},conditions:{type:Array,default:function(){return[]}},remote:{type:Boolean,default:!1},remoteCallback:{type:Function},remoteTrigger:{type:Number,default:3},remoteTriggerMessage:{type:String,default:"Please enter %d char(s) to start search"},notFoundMeassge:{type:String,default:"There is no items find matching this query"},loadingMessage:{type:String,default:"Loading..."},preventWrap:{type:Boolean,default:!1},wrapperCss:{type:Array,default:function(){return[]}},elementId:{type:String},stateType:{type:Function}},data:()=>({query:"",inFocus:!1,optionInFocus:!1,loading:!1,loaded:!1}),created(){this.currentValues||(this.currentValues=[])},computed:{filteredOptions(){return this.query?this.optionsList.filter(t=>t.label.includes(this.query)||t.value.includes(this.query)):this.optionsList}},methods:{handleFocus(t){this.inFocus=!0,this.$emit("on-focus",t)},handleOptionsNav(t){"ArrowUp"!==t.key&&"Tab"!==t.key||this.navigateOptions(-1),"ArrowDown"===t.key&&this.navigateOptions(1)},navigateOptions(t){!1===this.optionInFocus&&(this.optionInFocus=-1);let e=this.optionInFocus+t,i=this.filteredOptions.length-1;i<0&&(i=0),e<0?e=0:e>i&&(e=i),this.optionInFocus=e},onClickOutside(t){this.inFocus&&(this.inFocus=!1,this.$emit("on-blur",t))},handleInput(t){this.$emit("input",t.target.value),this.query=t.target.value,this.inFocus||(this.inFocus=!0)},handleEnter(){if(!1===this.optionInFocus||!this.optionsList[this.optionInFocus])return;let t=this.filteredOptions[this.optionInFocus].value;this.handleResultClick(t)},handleResultClick(t){this.isNonRemovable(t)||(this.value.includes(t)?this.removeValue(t):this.multiple?this.storeValues([...new Set(this.value),t]):this.storeValues(t),this.inFocus=!1,this.optionInFocus=!1,this.query="")},removeValue(t){this.multiple||this.storeValues("");const e=this.value.filter(e=>e!==t);this.storeValues(e)},storeValues(t){this.$emit("change",this.sanitizeValue(t))},getOptionLabel(t){var e;const i="string"==typeof t?t:t.value,a=this.optionsList.find(({value:t})=>t===i);return null!==(e=a?.label)&&void 0!==e?e:""},sanitizeValue(t){return this.multiple?Array.isArray(t)?t:[t].filter(Boolean):Array.isArray(t)?t[0]:t},isSelectedOption(t){const e="string"==typeof t?t:t.value;return this.value.includes(e)},isNonRemovable(t){var e;const i="string"==typeof t?t:t.value,a=this.optionsList.find(({value:t})=>t===i);return null!==(e=a?.nonRemovable)&&void 0!==e&&e}},inject:["elementId","stateType"]};i(9330);const mt=s(ht,at,[],!1,null,"13c6d87e",null).exports;var _t=function(){var t=this,e=t.$createElement;return(t._self._c||e)("input",{staticClass:"cx-vui-input size-fullwidth",attrs:{type:"date",name:t.elementId,id:t.elementId,max:t.max,min:t.min},domProps:{value:t.value},on:{input:t.handleInput}})};_t._withStripped=!0;let bt=new Date(Date.now()-864e4).toJSON();[bt]=bt.split("T");const gt=t=>!!["now"].includes(t)||!Number.isNaN(new Date(t).getTime()),yt=s({name:"CxVuiDate",props:{value:{type:String},maxDate:{validator:gt},minDate:{validator:gt},elementId:{type:String}},data(){return{max:"now"===this.maxDate?bt:this.maxDate,min:"now"===this.minDate?bt:this.minDate}},methods:{handleInput(t){this.$emit("input",t.target.value)}},inject:["elementId"]},_t,[],!1,null,"1707aa50",null).exports;var xt=function(){var t=this.$createElement;return(this._self._c||t)("hr",{staticClass:"jfb"})};xt._withStripped=!0;i(5981);const wt=s({name:"Delimiter"},xt,[],!1,null,"362c518d",null).exports;var Ct=function(){var t=this,e=t.$createElement;return(t._self._c||e)("cx-vui-button",{attrs:{"button-style":"accent",size:"mini"},on:{click:t.print},scopedSlots:t._u([{key:"label",fn:function(){return[t.$slots.default?[t._t("default")]:[t._v("\n\t\t\t"+t._s(t.__("Print","jet-form-builder"))+"\n\t\t")]]},proxy:!0}],null,!0)})};Ct._withStripped=!0;const jt={name:"PrintButton",methods:{print(){window.print()}},mixins:[k]};i(7922);const St=s(jt,Ct,[],!1,null,"aa3950ea",null).exports;window.JetFBActions={renderCurrentPage:function(t,e={}){const i=new Vue({el:"#jet-form-builder_page_"+t.name,render:e=>e(t),...e});$("jet.fb.render.page",i)},getCurrentPath:T,getSearch:L,createPath:function(t={},e={},i=[]){const a=[];t={...L(),...t};for(const[e,n]of Object.entries(t))i.includes(e)||a.push(`${e}=${encodeURIComponent(n)}`);return[T(),a.join("&")].filter(t=>t).join("?")},addQueryArgs:function(t,e){e=new URL(e);const i=new URLSearchParams(e.search),a=[];for(const[e,i]of Object.entries(t))a.push(...I(e,i));for(const[t,e]of a)e&&i.append(t,e);return e.origin+e.pathname+"?"+i},LocalStorage:J,resolveRestUrl:function(t,e){if("object"!=typeof e||!Object.keys(e)?.length)return t;for(let[i,a]of Object.entries(e)){const e=new RegExp(`\\{${i}\\}`,"g");if(t.match(e)){t=t.replace(e,String(a));continue}const n=new RegExp(`\\(\\?P<${i}>(.*?)\\)`),s=t.match(n);if(Array.isArray(s)){if(a=""+a,!new RegExp(s[1]).test(a))throw new Error((0,O.sprintf)((0,O.__)("Invalid parameter for rest url. RegExp: %1$s, Value: %2$s","jet-form-builder"),s[1],a));t=t.replace(n,a)}}return t}},window.JetFBErrors={ApiInputError:e},window.JetFBComponents={CxVuiCollapseMini:o,DetailsTable:b,SimpleWrapperComponent:S,ListComponents:A,CxVuiTabsPanel:D,CxVuiTabs:B,ExternalLink:W,RowWrapper:S,ColumnWrapper:G,CxVuiSelect:Y,CxVuiPopup:it,CxVuiFSelect:mt,CxVuiDate:yt,Tooltip:C,Delimiter:wt,PrintButton:St},window.JetFBMixins={GetIncoming:r,SaveTabByAjax:l,i18n:k,ParseIncomingValueMixin:c,PromiseWrapper:u}})()})(); \ No newline at end of file +(()=>{var t={611:(t,e,i)=>{"use strict";function a(t,e){for(var i=[],a={},n=0;nf});var n="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!n)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},o=n&&(document.head||document.getElementsByTagName("head")[0]),r=null,l=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",v="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(t,e,i,n){c=i,d=n||{};var o=a(t,e);return h(o),function(e){for(var i=[],n=0;ni.parts.length&&(a.parts.length=i.parts.length)}else{var o=[];for(n=0;n{var a=i(6291);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("4168dbce",a,!1,{})},935:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var i="",a=void 0!==e[5];return e[4]&&(i+="@supports (".concat(e[4],") {")),e[2]&&(i+="@media ".concat(e[2]," {")),a&&(i+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),i+=t(e),a&&(i+="}"),e[2]&&(i+="}"),e[4]&&(i+="}"),i})).join("")},e.i=function(t,i,a,n,s){"string"==typeof t&&(t=[[null,t,void 0]]);var o={};if(a)for(var r=0;r0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=s),i&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=i):u[2]=i),n&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=n):u[4]="".concat(n)),e.push(u))}},e}},1041:(t,e,i)=>{var a=i(5965);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("0c7f7908",a,!1,{})},1292:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".jfb-tooltip[data-v-431c7ba2]{position:relative;display:inline-block}.jfb-tooltip-has-help[data-v-431c7ba2]{cursor:pointer}.jfb-tooltip-has-text[data-v-431c7ba2]{display:flex;column-gap:.5em;align-items:center}.jfb-tooltip--text[data-v-431c7ba2]{text-overflow:ellipsis;overflow:hidden;padding:.1em 0}.jfb-tooltip .dashicons-dismiss[data-v-431c7ba2]{color:#d63638}.jfb-tooltip .dashicons-warning[data-v-431c7ba2]{color:orange}.jfb-tooltip .dashicons-warning.danger[data-v-431c7ba2]{color:#d63638}.jfb-tooltip .dashicons-yes-alt[data-v-431c7ba2]{color:#32cd32}.jfb-tooltip .dashicons-info[data-v-431c7ba2]{color:#90c6db}.jfb-tooltip .dashicons-hourglass[data-v-431c7ba2]{color:#b5b5b5}.jfb-tooltip .dashicons-update.loading[data-v-431c7ba2]{animation:jfb-tooltip-loading-icon-data-v-431c7ba2 1.5s infinite linear}.jfb-tooltip .cx-vui-tooltip[data-v-431c7ba2]{width:fit-content;bottom:calc(100% + 15px);box-sizing:border-box;pointer-events:none;transition:all .18s linear;opacity:0;padding-left:1em;padding-right:1em;position:absolute;z-index:2}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]{right:-1.2em}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]:after{right:20px;left:unset}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]{left:-0.9em}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]:after{left:20px;right:unset}.jfb-tooltip:hover .cx-vui-tooltip[data-v-431c7ba2]{opacity:1}.jfb-tooltip:hover .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]{bottom:100%}.jfb-tooltip:hover .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]{bottom:100%}.jfb-tooltip-position--top-right[data-v-431c7ba2]{flex-direction:row-reverse}@keyframes jfb-tooltip-loading-icon-data-v-431c7ba2{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}",""]);const r=o},1418:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".table-details-row{display:flex;justify-content:space-between;font-size:1.1em}.table-details-row:first-child{font-weight:bold}.table-details-row:nth-child(even){background-color:#eee}.table-details-row-column{padding:.5em 1em}.table-details-row--heading{flex:1;text-align:right}.table-details-row-role--default.table-details-row--heading{font-weight:600}.table-details-row--content{flex:2}.table-details-row--actions{flex:.3}.table-details-row h3{padding:.5em;border-bottom:1px solid #aaa;width:50%;margin:1em auto;text-align:center;color:#aaa;font-weight:400}",""]);const r=o},1618:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-select[data-v-b31905c2]{line-height:2em;padding:6px 24px 6px 8px}.cx-vui-select.fullwidth[data-v-b31905c2]{width:100%}",""]);const r=o},1700:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".table-details{display:flex;flex-direction:column}",""]);const r=o},2310:(t,e,i)=>{var a=i(1618);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("2e7817a3",a,!1,{})},2373:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-component[data-v-327e05fd]{flex-direction:column;width:100%;border-top:unset;gap:.7em}.cx-vui-component.padding-side-unset[data-v-327e05fd]{padding-left:unset;padding-right:unset}.padding-top-bottom-unset[data-v-327e05fd]{padding-top:unset;padding-bottom:unset}.padding-unset[data-v-327e05fd]{padding:unset}",""]);const r=o},4244:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-external-link__icon{width:1em;height:1em;fill:currentcolor;vertical-align:middle}",""]);const r=o},4761:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,"hr.jfb[data-v-362c518d]{border:0;border-top:1px solid #ececec;margin:unset}",""]);const r=o},4965:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,'.fade-enter-active[data-v-7d75afce],.fade-leave-active[data-v-7d75afce]{transition:opacity .5s}.fade-enter[data-v-7d75afce],.fade-leave-to[data-v-7d75afce]{opacity:0}.jfb-recursive-details[data-v-7d75afce]:not(.jfb-recursive-details--indent){margin-top:unset}.jfb-recursive-details--indent[data-v-7d75afce]{margin-left:1.5em;margin-top:.5em}.jfb-recursive-details-row[data-v-7d75afce]:not(:last-child){margin-bottom:.5em;padding-bottom:.5em}.jfb-recursive-details-item--content[data-v-7d75afce]{border-bottom:1px solid #ccc}.jfb-recursive-details-item-without-children>.jfb-recursive-details-item--heading[data-v-7d75afce]::after{content:":"}.jfb-recursive-details-item-with-children>.jfb-recursive-details-item--heading[data-v-7d75afce]{cursor:pointer}.jfb-recursive-details-item-with-children>.jfb-recursive-details-item--heading[data-v-7d75afce]:hover{color:#2271b1;border-bottom-color:#2271b1}',""]);const r=o},5598:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,"\n@media print {\n.cx-vui-button[data-v-aa3950ea] {\n\t\tdisplay: none;\n}\n}\n",""]);const r=o},5965:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-popup__close[data-v-7acae1c9]{position:unset}.cx-vui-popup__header[data-v-7acae1c9]{display:flex;justify-content:space-between;padding-bottom:10px;margin:unset;border-bottom:1px solid #ececec}.cx-vui-popup.sticky-header .cx-vui-popup__body[data-v-7acae1c9],.cx-vui-popup.sticky-footer .cx-vui-popup__body[data-v-7acae1c9]{max-height:80vh;overflow-y:auto}.cx-vui-popup.sticky-header .cx-vui-popup__header[data-v-7acae1c9]{position:sticky;top:0;background-color:#fff;padding-top:20px;z-index:1}.cx-vui-popup.sticky-header .cx-vui-popup__body[data-v-7acae1c9]{padding-top:0}.cx-vui-popup.sticky-footer .cx-vui-popup__body[data-v-7acae1c9]{padding-bottom:0}.cx-vui-popup.sticky-footer .cx-vui-popup__content[data-v-7acae1c9]{padding-bottom:40px}.cx-vui-popup.sticky-footer .cx-vui-popup__footer[data-v-7acae1c9]{position:sticky;bottom:0;background-color:#fff;padding-bottom:20px;border-top:1px solid #ececec}",""]);const r=o},5981:(t,e,i)=>{var a=i(4761);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("8c144c80",a,!1,{})},6168:(t,e,i)=>{var a=i(1700);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("206d9f3c",a,!1,{})},6278:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-input--warning-danger[data-v-13c6d87e]{border:1px solid #d63638}",""]);const r=o},6291:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-tabs__nav-item--disabled{opacity:.5;cursor:not-allowed}.cx-vui-tabs__nav-item--disabled:hover{color:unset}.cx-vui-tabs__nav-item--has-icon{display:flex;justify-content:space-between;column-gap:1em}.cx-vui-tabs--layout-vertical>.cx-vui-tabs__nav{width:unset;flex:unset;max-width:unset}.cx-vui-tabs--layout-vertical>.cx-vui-tabs__content{flex:1}",""]);const r=o},6608:(t,e,i)=>{var a=i(1292);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("3a21f3b2",a,!1,{})},6758:t=>{"use strict";t.exports=function(t){return t[1]}},6945:(t,e,i)=>{var a=i(2373);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("b1875a50",a,!1,{})},7393:(t,e,i)=>{var a=i(4965);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("29e569e4",a,!1,{})},7922:(t,e,i)=>{var a=i(5598);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("7e55f3a9",a,!1,{})},7944:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-collapse-mini__wrap{padding:0 0 20px}.cx-vui-collapse-mini__item{border-bottom:1px solid #ececec}.cx-vui-collapse-mini__item:first-child{border-top:1px solid #ececec}.cx-vui-collapse-mini__item:last-child{margin-bottom:unset}.cx-vui-collapse-mini__item--active .cx-vui-collapse-mini__header-label>svg{transform:rotate(90deg)}.cx-vui-collapse-mini__header{padding:1.2rem;display:flex;align-items:center;cursor:pointer;column-gap:1em}.cx-vui-collapse-mini__header-label{font-weight:500;font-size:15px;line-height:23px;color:#007cba;display:flex;align-items:center}.cx-vui-collapse-mini__header-desc{font-size:15px;line-height:23px;color:#7b7e81}.cx-vui-collapse-mini__header-label svg{margin:-1px 8px 0 0;transition:.3s}.cx-vui-collapse-mini--disabled{opacity:.5}.cx-vui-collapse-mini--disabled .cx-vui-collapse-mini__header{cursor:not-allowed}.cx-vui-collapse-mini__content{padding:0 1.5rem 1.5rem}",""]);const r=o},8036:(t,e,i)=>{var a=i(8984);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("57efcfaf",a,!1,{})},8528:(t,e,i)=>{var a=i(4244);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("45767117",a,!1,{})},8862:(t,e,i)=>{var a=i(1418);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("6aaa4088",a,!1,{})},8984:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".size--1-x-2 .cx-vui-component__meta[data-v-6f5201e4]{flex:1}.size--1-x-2 .cx-vui-component__control[data-v-6f5201e4]{flex:2}.padding-side-unset.cx-vui-component[data-v-6f5201e4]{padding-left:unset;padding-right:unset}.cx-vui-component__control-actions[data-v-6f5201e4]{display:flex;justify-content:flex-end;gap:1em;margin-top:.5em}",""]);const r=o},9330:(t,e,i)=>{var a=i(6278);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("21fb632e",a,!1,{})},9356:(t,e,i)=>{var a=i(7944);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("30df35ee",a,!1,{})}},e={};function i(a){var n=e[a];if(void 0!==n)return n.exports;var s=e[a]={id:a,exports:{}};return t[a](s,s.exports,i),s.exports}i.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return i.d(e,{a:e}),e},i.d=(t,e)=>{for(var a in e)i.o(e,a)&&!i.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:e[a]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),i.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},(()=>{"use strict";class t extends Error{constructor(e=!1,i=""){super(i),Error.captureStackTrace&&Error.captureStackTrace(this,t),this.name="ApiInputError",this.noticeOptions=e}}const e=t;var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:{"cx-vui-panel":t.withPanel,"cx-vui-collapse-mini--disabled":t.disabled,"cx-vui-collapse-mini__item":!0,"cx-vui-collapse-mini__item--active":t.isActive}},[i("div",{staticClass:"cx-vui-collapse-mini__header",on:{click:t.collapse}},[i("div",{staticClass:"cx-vui-collapse-mini__header-label"},[i("svg",{attrs:{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[i("path",{attrs:{d:"M14 13.9999L14 -0.00012207L0 -0.000121458L6.11959e-07 13.9999L14 13.9999Z",fill:"white"}}),t._v(" "),i("path",{attrs:{d:"M5.32911 1L11 7L5.32911 13L4 11.5938L8.34177 7L4 2.40625L5.32911 1Z",fill:"#007CBA"}})]),t._v("\n\t\t\t"+t._s(t.label)+"\n\t\t")]),t._v(" "),t.icon?i("div",{staticClass:"cx-vui-collapse-mini__header-desc"},["object"==typeof t.icon?i(t.icon,{tag:"component"}):t._e()],1):t.desc?i("div",{staticClass:"cx-vui-collapse-mini__header-desc"},[t._v("\n\t\t\t"+t._s(t.desc)+"\n\t\t")]):t._e(),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-collapse-mini__header-custom-description"},[t._t("description")],2):t._e()]),t._v(" "),t.disabled?t._e():[this.$slots.default?[i("div",{directives:[{name:"show",rawName:"v-show",value:t.isActive,expression:"isActive"}],staticClass:"cx-vui-collapse-mini__content"},[t._t("default")],2)]:[t._t("custom",null,{state:{isActive:t.isActive}})]]],2)};a._withStripped=!0;const n={name:"cx-vui-collapse-mini",props:{withPanel:{type:Boolean,default:!1},initialActive:{type:Boolean,default:!1},label:{type:String,default:"Collapse Mini"},desc:{type:String,default:""},disabled:{type:Boolean,default:!1},icon:{type:[Object,String],default:""}},data:()=>({isActive:!1}),created(){this.isActive=this.initialActive},methods:{collapse(){this.disabled||(this.isActive=!this.isActive,this.$emit("change",this.isActive))}}};function s(t,e,i,a,n,s,o,r){var l,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=i,c._compiled=!0),a&&(c.functional=!0),s&&(c._scopeId="data-v-"+s),o?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),n&&n.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},c._ssrRegister=l):n&&(l=r?function(){n.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:n),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(t,e){return l.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:t,options:c}}i(9356);const o=s(n,a,[],!1,null,null,null).exports,r={methods:{getIncoming:t=>t?window.JetFBPageConfig[t]:window.JetFBPageConfig}},l={methods:{saveByAjax(t,e){const i=this;let a={};try{a=this.getAjaxObject(t,e)}catch(t){if(!t)return;return"object"==typeof t.noticeOptions?void i.$CXNotice.add({message:"Invalid request data.",type:"error",duration:2e3,...t.noticeOptions}):void i.$CXNotice.add({message:t,type:"error",duration:2e3})}jfbEventBus.$emit("request-state",{state:"begin",slug:e}),jQuery.ajax(a).done((function(a){"function"==typeof t.onSaveDone?t.onSaveDone(a):a.success?(i.$CXNotice.add({message:a.data.message,type:"success",duration:5e3}),"function"==typeof t.onSaveDoneSuccess&&t.onSaveDoneSuccess(a)):(i.$CXNotice.add({message:a.data.message,type:"error",duration:5e3}),"function"==typeof t.onSaveDoneError&&t.onSaveDoneError(a)),jfbEventBus.$emit("request-state",{state:"end",slug:e})})).fail((function(a,n,s){"function"==typeof t.onSaveFail?t.onSaveFail(a,n,s):i.$CXNotice.add({message:s,type:"error",duration:5e3}),jfbEventBus.$emit("request-state",{state:"end",slug:e})}))},getAjaxObject(t,e){const i={url:window.ajaxurl,type:"POST",dataType:"json",...t.getRequestOnSave()};return i.data={action:`jet_fb_save_tab__${e}`,...i.data},window?.JetFBPageConfigPackage?.nonce&&(i.data._nonce=window.JetFBPageConfigPackage.nonce),i}}},c={props:["value","full-entry","entry-id","scope"],computed:{parsedJson(){return JSON.parse(JSON.stringify(this.value))}}},u={methods:{promiseWrapper(t){const e=t=>"object"==typeof t?t?.message:t;return(i,a,...n)=>{const s=t=>{"function"==typeof i&&i(),this.$CXNotice.add({message:e(t),type:"success",duration:4e3})},o=t=>{"function"==typeof i&&i(),this.$CXNotice.add({message:e(t),type:"error",duration:4e3})};try{t.call(this,{resolve:s,reject:o},...n)}catch(t){o(t.message)}}}}};var d=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("section",{staticClass:"table-details"},t._l(t.columns,(function(e,a){return t.canShow(a)?i("DetailsTableRow",{key:a,attrs:{type:t.getType(a)},scopedSlots:t._u([{key:"name",fn:function(){return[t._v(t._s(e.label))]},proxy:!0},{key:"value",fn:function(){return["object"==typeof t.getColumnValue(a,!1)?[i("DetailsTableRowValue",{attrs:{value:t.getColumnValue(a,!1),columns:e.children||{}}})]:[t._v(t._s(t.getColumnValue(a,"")))]]},proxy:!0}],null,!0)}):t._e()})),1)};d._withStripped=!0;var p=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("ul",{directives:[{name:"show",rawName:"v-show",value:!this.withIndent,expression:"! this.withIndent"}],class:t.rootClasses},t._l(t.value,(function(e,a){return t.isHiddenLevel(a)?i("li",{key:a,staticClass:"jfb-recursive-details-row"},[t.isSkipLevel(a)?[i("DetailsTableRowValue",{attrs:{value:e,columns:t.getChildren(a)}})]:[t.isObject(e)?i("span",{class:t.itemClasses(!0)},[i("span",{staticClass:"jfb-recursive-details-item--heading",on:{click:function(e){return t.toggleNext(a)}}},[t._v("\n\t\t\t\t\t"+t._s(t.getItemLabel(a))+"\n\t\t\t\t\t"),i("span",{class:t.arrowClasses(a)})]),t._v(" "),i("span",{staticClass:"jfb-recursive-details-item--content"},[i("transition",{attrs:{name:"fade"}},[i("DetailsTableRowValue",{directives:[{name:"show",rawName:"v-show",value:t.isShow(a),expression:"isShow( itemName )"}],attrs:{value:e,"with-indent":!0,columns:t.getChildren(a)}})],1)],1)]):i("span",{class:t.itemClasses(!1)},[i("span",{staticClass:"jfb-recursive-details-item--heading"},[t._v(t._s(t.getItemLabel(a)))]),t._v(" \n\t\t\t\t"),i("span",{staticClass:"jfb-recursive-details-item--content"},[t._v(t._s(e))])])]],2):t._e()})),0)};p._withStripped=!0;const v={name:"DetailsTableRowValue",props:{value:Object,withIndent:{type:Boolean,default:!1},columns:{type:Object,default:()=>({})}},data:()=>({showNext:{}}),computed:{rootClasses(){return{"jfb-recursive-details":!0,"jfb-recursive-details--indent":this.withIndent}}},methods:{getChildren(t){return this.columns[t]?.children||[]},getItemLabel(t){return this.columns[t]?this.columns[t].label:t},isObject:t=>"object"==typeof t,toggleNext(t){const e=this.showNext[t]||!1;this.$set(this.showNext,t,!e)},isShow(t){return"undefined"===this.showNext[t]||this.showNext[t]},itemClasses:(t=!0)=>({"jfb-recursive-details-item":!0,"jfb-recursive-details-item-with-children":t,"jfb-recursive-details-item-without-children":!t}),arrowClasses(t){return{dashicons:!0,"dashicons-arrow-down-alt2":!this.isShow(t),"dashicons-arrow-up-alt2":this.isShow(t)}},isSkipLevel(t){return this.columns[t]?.skip_level},isHiddenLevel(t){return!this.columns[t]?.hide}}};i(7393);const f=s(v,p,[],!1,null,"7d75afce",null).exports;var h=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"table-details-row"},["rowValue"===t.type?[i("div",{class:t.headingClasses},["default"!==t.role?[t._v(t._s("Name"))]:[t._t("name"),t._v("\n\t\t\t\t:\n\t\t\t")]],2),t._v(" "),i("div",{class:t.contentClasses},["default"!==t.role?[t._v(t._s("Value"))]:[t._t("value")]],2),t._v(" "),i("div",{class:t.actionClasses},["default"!==t.role?[t._v(t._s("Actions"))]:[t._t("actions")]],2)]:[i("h3",[t._t("name")],2)]],2)};h._withStripped=!0;const m={name:"DetailsTableRow",props:{role:{type:String,default:"default",validator:function(t){return-1!==["header","default","footer"].indexOf(t)}},type:{type:String,default:"rowValue",validator:function(t){return-1!==["rowValue","heading"].indexOf(t)}}},computed:{headingClasses(){return this.classes({"table-details-row--heading":!0})},contentClasses(){return this.classes({"table-details-row--content":!0})},actionClasses(){return this.classes({"table-details-row--actions":!0})}},methods:{classes(t){return{"table-details-row-column":!0,...t,["table-details-row-role--"+this.role]:!0}}}};i(8862);const _={name:"DetailsTable",components:{DetailsTableRow:s(m,h,[],!1,null,null,null).exports,DetailsTableRowValue:f},props:{columns:{type:Object},source:{type:Object}},methods:{getColumnValue(t,e=!1){return this.source[t]?this.source[t].value:e},hasValueOrAnotherType(t){return this.getColumnValue(t)||"rowValue"!==this.getType(t)},getType(t){var e;return null!==(e=this.columns[t].type)&&void 0!==e?e:"rowValue"},canShow(t){const e=this.getType(t),i=!1!==this.columns[t].show_in_details,a=this.getColumnValue(t);return i&&("rowValue"!==e||a)}}};i(6168);const b=s(_,d,[],!1,null,null,null).exports;var g=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[t.$slots.meta?i("div",{staticClass:"cx-vui-component__meta"},[t._t("meta")],2):t.$slots.label||t.$slots.description?i("div",{staticClass:"cx-vui-component__meta"},[t.$slots.label?i("label",{staticClass:"cx-vui-component__label",attrs:{for:t.elementIdData}},[t.stateType?[i("Tooltip",{attrs:{icon:t.stateType,position:"top-right"},scopedSlots:t._u([{key:"help",fn:function(){return[t._v(t._s(t.stateHelp))]},proxy:!0},{key:"default",fn:function(){return[t._t("label")]},proxy:!0}],null,!0)})]:[t._t("label")]],2):t._e(),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-component__desc"},[t._t("description")],2):t._e()]):t._e(),t._v(" "),i("div",{staticClass:"cx-vui-component__control"},[t._t("default"),t._v(" "),t.$slots.actions?i("div",{staticClass:"cx-vui-component__control-actions"},[t._t("actions")],2):t._e()],2)])};g._withStripped=!0;var y=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.wrapperClasses},[i("span",{class:t.dashIconClass}),t._v(" "),t.$slots.default?i("span",{staticClass:"jfb-icon-status--text"},[t._t("default")],2):t._e(),t._v(" "),t.$slots.help?i("div",{class:t.tooltipClasses},[t._t("help")],2):t._e()])};y._withStripped=!0;const x={success:"dashicons-yes-alt",warning:"dashicons-warning","warning-danger":["dashicons-warning","danger"],info:"dashicons-info",pending:"dashicons-hourglass",error:"dashicons-dismiss",loading:["dashicons-update","loading"]},w={name:"Tooltip",props:{icon:{type:String,validator:t=>Object.keys(x).includes(t),default:"info"},position:{type:String,validator:t=>["top-right","top-left"].includes(t),default:"top-left"}},computed:{wrapperClasses(){return{"jfb-tooltip":!0,"jfb-tooltip-has-text":!!this.$slots.default,"jfb-tooltip-has-help":!!this.$slots.help,["jfb-tooltip-position--"+this.position]:!0}},dashIconClass(){var t;let e=null!==(t=x[this.icon])&&void 0!==t?t:"";return Array.isArray(e)||(e=[e]),["dashicons",...e]},tooltipClasses(){return{"cx-vui-tooltip":!0,["tooltip-position-"+this.position]:!0}}}};i(6608);const C=s(w,y,[],!1,null,"431c7ba2",null).exports,j={name:"RowWrapper",components:{Tooltip:C},props:{elementId:{type:String},state:{type:[String,Object],validator:t=>(t=>["warning-danger","warning","loading",""].includes(t))("string"==typeof t?t:t.type),default:""},classNames:{type:Object,default:()=>({"cx-vui-component--equalwidth":!0})}},data(){return{elementIdData:`cx_${this.elementId}`}},computed:{className(){return{"cx-vui-component":!0,["cx-vui-component--is-"+this.stateType]:this.stateType,...this.classNames}},stateType(){return"string"==typeof this.state?this.state:this.state.type},stateHelp(){return"string"==typeof this.state?"":this.state.message}},provide(){return{elementId:this.elementIdData,stateType:()=>this.stateType}}};i(8036);const S=s(j,g,[],!1,null,"6f5201e4",null).exports,O=window.wp.i18n,k={methods:{__:(t,e)=>(0,O.__)(t,e),sprintf:(t,...e)=>(0,O.sprintf)(t,...e),__s:(t,e,...i)=>(0,O.sprintf)((0,O.__)(t,e),...i)}},{doAction:$}=wp.hooks;function T(){return window.location.pathname}function L(){const t={};return window.location.search.replace("?","").split("&").forEach((e=>{const[i,a]=e.split("=");t[i]=a})),t}function I(t,e){if("object"!=typeof e)return[[t,e]];const i=[];for(let[a,n]of Object.entries(e))a=`${t}[${a}]`,i.push(...I(a,n));return i}var N=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"jfb-list-components"},[t._l(t.components,(function(e,a){return i("div",{key:"entry_"+a,staticClass:"jfb-list-components-item"},[i("keep-alive",[i(e,{tag:"component",attrs:{scope:t.scope}})],1)],1)})),t._v(" "),t._t("default")],2)};N._withStripped=!0;const A=s({name:"ListComponents",props:{components:Array,scope:String}},N,[],!1,null,null,null).exports;var E=function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{directives:[{name:"show",rawName:"v-show",value:t.show,expression:"show"}],staticClass:"cx-vui-tabs-panel"},[t._t("default")],2)};E._withStripped=!0;const D=s({name:"cx-vui-tabs-panel",props:{tab:{type:String,default:""},name:{type:String,default:""},label:{type:String,default:""},disabled:{type:Boolean,default:!1},icon:{type:[Object,String],default:""}},data:()=>({show:!1})},E,[],!1,null,null,null).exports;var V=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:{"cx-vui-tabs":!0,"cx-vui-tabs--invert":t.invert,"cx-vui-tabs--layout-vertical":"vertical"===this.layout,"cx-vui-tabs--layout-horizontal":"horizontal"===this.layout,"cx-vui-tabs--in-panel":t.inPanel}},[i("div",{staticClass:"cx-vui-tabs__nav"},t._l(t.navList,(function(e){return i("div",{class:{"cx-vui-tabs__nav-item":!0,"cx-vui-tabs__nav-item--active":t.isActive(e.name),"cx-vui-tabs__nav-item--disabled":t.isDisabled(e.name),"cx-vui-tabs__nav-item--has-icon":!!e.icon},on:{click:function(i){return t.onTabClick(e.name)}}},[i("span",{staticClass:"item-label"},[t._v(t._s(e.label))]),t._v(" "),e.icon?i("span",{staticClass:"item-icon"},["object"==typeof e.icon?i(e.icon,{tag:"component",attrs:{"is-active":t.isActive(e.name)}}):t._e()],1):t._e()])})),0),t._v(" "),i("div",{staticClass:"cx-vui-tabs__content"},[t._t("default")],2)])};V._withStripped=!0;const P={name:"cx-vui-tabs",props:{value:{type:[String,Number],default:""},name:{type:String,default:""},invert:{type:Boolean,default:!1},inPanel:{type:Boolean,default:!1},layout:{validator:t=>["horizontal","vertical"].includes(t),default:"horizontal"},conditions:{type:Array,default:()=>[]}},data(){return{navList:[],activeTab:this.value,disabledTabs:[]}},mounted(){const t=this.getTabs();this.disabledTabs=this.getDisabledTabs(),this.navList=t,this.activeTab||(this.activeTab=t[0].name),this.updateState()},methods:{isActive(t){return t===this.activeTab},isDisabled(t){return this.disabledTabs.includes(t)},getDisabledTabs(){const t=[];for(const e of this.$children)e.disabled&&t.push(e.name);return t},onTabClick(t){this.isDisabled(t)||(this.activeTab=t,this.$emit("input",this.activeTab),this.updateState())},updateState(){const t=this.getTabs();this.navList=t,t.forEach((t=>{t.show=this.activeTab===t.name}))},getTabs(){const t=this.$children.filter((t=>"cx-vui-tabs-panel"===t.$options.name)),e=[];return t.forEach((t=>{t.tab&&this.name?t.tab===this.name&&e.push(t):e.push(t)})),e}}};i(799);const B=s(P,V,[],!1,null,null,null).exports,F="JetFBConfig";function M(t){localStorage.setItem(F,JSON.stringify(t))}function R(){const t=localStorage.getItem(F);return null===t?{}:JSON.parse(t)}function z(t,e){let i=R();i={...i,[t]:e},M(i)}function q(t,e=!1){var i;return null!==(i=R()[t])&&void 0!==i?i:e}const J={setStorage:M,getStorage:R,setItem:z,getItem:q,storage:function(t){const e={setStorage(e){z(t,e)},getStorage:()=>q(t,{})};return{...e,setItem(t,i){let a=e.getStorage();a={...a,[t]:i},e.setStorage(a)},getItem(t,i=!1){var a;return null!==(a=e.getStorage()[t])&&void 0!==a?a:i}}}};var U=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("a",{staticClass:"cx-vui-external-link",attrs:{href:t.href,target:"_blank",rel:"external noreferrer noopener"}},[t._t("default"),t._v(" "),i("svg",{staticClass:"cx-vui-external-link__icon",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"}},[i("path",{attrs:{d:"M18.2 17c0 .7-.6 1.2-1.2 1.2H7c-.7 0-1.2-.6-1.2-1.2V7c0-.7.6-1.2 1.2-1.2h3.2V4.2H7C5.5 4.2 4.2 5.5 4.2 7v10c0 1.5 1.2 2.8 2.8 2.8h10c1.5 0 2.8-1.2 2.8-2.8v-3.6h-1.5V17zM14.9 3v1.5h3.7l-6.4 6.4 1.1 1.1 6.4-6.4v3.7h1.5V3h-6.3z"}})])],2)};U._withStripped=!0;const H={name:"ExternalLink",mixins:[k],props:{href:{type:String,default:""}}};i(8528);const W=s(H,U,[],!1,null,null,null).exports;var X=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[t.$slots.label?i("label",{staticClass:"cx-vui-component__label",attrs:{for:t.elementIdData}},[t._t("label")],2):t._e(),t._v(" "),t._t("default"),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-component__desc"},[t._t("description")],2):t._e()],2)};X._withStripped=!0;const Z={name:"ColumnWrapper",props:{elementId:{type:String,required:!0},classNames:{type:Object,default:()=>({})}},data(){return{elementIdData:`cx_${this.elementId}`}},computed:{className(){return{"cx-vui-component":!0,...this.classNames}}},provide(){return{elementId:this.elementIdData}}};i(6945);const G=s(Z,X,[],!1,null,"327e05fd",null).exports;var Q=function(){var t=this,e=t.$createElement;return(t._self._c||e)("select",{class:t.className,attrs:{name:t.elementId,id:t.elementId},domProps:{value:t.value},on:{input:t.handleInput}},[t._t("default")],2)};Q._withStripped=!0;const K={name:"CxVuiSelect",props:{value:{type:[String,Number],default:""},elementId:{type:String},classNames:{type:Object,default:()=>({})}},computed:{className(){return{"cx-vui-select":!0,...this.classNames}}},methods:{handleInput(t){this.$emit("input",t.target.value)}},inject:["elementId"]};i(2310);const Y=s(K,Q,[],!1,null,"b31905c2",null).exports;var tt=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[i("div",{staticClass:"cx-vui-popup__overlay",on:{click:function(e){return t.$emit("close")}}}),t._v(" "),i("div",{staticClass:"cx-vui-popup__body"},[t.$slots.title?i("h2",{staticClass:"cx-vui-popup__header"},[t._t("title"),t._v(" "),t.$slots.close?[t._t("close")]:i("div",{staticClass:"cx-vui-popup__close",on:{click:function(e){return t.$emit("close")}}},[i("svg",{attrs:{width:"20",height:"20",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[i("path",{attrs:{d:"M12 3.00671L8.00671 7L12 10.9933L10.9933 12L7 8.00671L3.00671 12L2 10.9933L5.99329 7L2 3.00671L3.00671 2L7 5.99329L10.9933 2L12 3.00671Z"}})])])],2):t._e(),t._v(" "),i("div",{staticClass:"cx-vui-popup__content"},[t._t("content")],2),t._v(" "),t.$slots.footer?i("div",{staticClass:"cx-vui-popup__footer"},[t._t("footer")],2):t._e()])])};tt._withStripped=!0;const et={name:"CxVuiPopup",props:{classNames:{type:Object,default:()=>({})},stickyFooter:{type:Boolean,default:!1}},computed:{className(){return{"cx-vui-popup":!0,...this.classNames}}}};i(1041);const it=s(et,tt,[],!1,null,"7acae1c9",null).exports;var at=function(){var t,e=this,i=e.$createElement,a=e._self._c||i;return a("div",{staticClass:"cx-vui-f-select"},[a("div",{class:{"cx-vui-f-select__selected":!0,"cx-vui-f-select__selected-not-empty":this.value.length>0}},e._l(e.value,(function(t){return a("div",{staticClass:"cx-vui-f-select__selected-option",on:{click:function(i){return e.handleResultClick(t)}}},[e.$slots["option-"+t]?[e._t("option-"+t)]:[e.isNonRemovable(t)?e._e():a("span",{staticClass:"cx-vui-f-select__selected-option-icon"},[a("svg",{attrs:{width:"10",height:"10",viewBox:"0 0 10 10",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M10 1.00671L6.00671 5L10 8.99329L8.99329 10L5 6.00671L1.00671 10L0 8.99329L3.99329 5L0 1.00671L1.00671 0L5 3.99329L8.99329 0L10 1.00671Z"}})])]),e._v("\n\t\t\t\t"+e._s(e.getOptionLabel(t))+"\n\t\t\t")]],2)})),0),e._v(" "),a("div",{directives:[{name:"click-outside",rawName:"v-click-outside.capture",value:e.onClickOutside,expression:"onClickOutside",modifiers:{capture:!0}},{name:"click-outside",rawName:"v-click-outside:mousedown.capture",value:e.onClickOutside,expression:"onClickOutside",arg:"mousedown",modifiers:{capture:!0}},{name:"click-outside",rawName:"v-click-outside:touchstart.capture",value:e.onClickOutside,expression:"onClickOutside",arg:"touchstart",modifiers:{capture:!0}}],staticClass:"cx-vui-f-select__control",on:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),e.handleOptionsNav.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),e.handleOptionsNav.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:e.handleOptionsNav.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.handleEnter.apply(null,arguments)}]}},[a("input",{class:(t={"cx-vui-f-select__input":!0,"cx-vui-input--in-focus":e.inFocus,"cx-vui-input":!0},t["cx-vui-input--"+e.stateType()]=e.stateType(),t["size-fullwidth"]=!0,t["has-error"]=e.error,t),attrs:{id:e.elementId,placeholder:e.placeholder,autocomplete:e.autocomplete,type:"text"},domProps:{value:e.query},on:{input:e.handleInput,focus:e.handleFocus}}),e._v(" "),e.inFocus?a("div",{staticClass:"cx-vui-f-select__results"},[e.filteredOptions.length?a("div",e._l(e.filteredOptions,(function(t,i){return a("div",{class:{"cx-vui-f-select__result":!0,"in-focus":i===e.optionInFocus,"is-selected":e.isSelectedOption(t)},on:{click:function(i){return e.handleResultClick(t.value)}}},[e._v(e._s(e.getOptionLabel(t))+"\n\t\t\t\t")])})),0):a("div",{staticClass:"cx-vui-f-select__results-message",domProps:{innerHTML:e._s(e.notFoundMeassge)}})]):e._e()]),e._v(" "),a("select",{staticClass:"cx-vui-f-select__select-tag",attrs:{placeholder:e.placeholder,disabled:e.disabled,readonly:e.readonly,multiple:e.multiple},domProps:{value:e.currentValues}},e._l(e.currentValues,(function(t){return a("option",{attrs:{selected:""},domProps:{value:t}})})),0)])};function nt(t){return nt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},nt(t)}function st(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,a)}return i}function ot(t){for(var e=1;e["on","off"].includes(t),default:"off"},conditions:{type:Array,default:function(){return[]}},remote:{type:Boolean,default:!1},remoteCallback:{type:Function},remoteTrigger:{type:Number,default:3},remoteTriggerMessage:{type:String,default:"Please enter %d char(s) to start search"},notFoundMeassge:{type:String,default:"There is no items find matching this query"},loadingMessage:{type:String,default:"Loading..."},preventWrap:{type:Boolean,default:!1},wrapperCss:{type:Array,default:function(){return[]}},elementId:{type:String},stateType:{type:Function}},data:()=>({query:"",inFocus:!1,optionInFocus:!1,loading:!1,loaded:!1}),created(){this.currentValues||(this.currentValues=[])},computed:{filteredOptions(){return this.query?this.optionsList.filter((t=>t.label.includes(this.query)||t.value.includes(this.query))):this.optionsList}},methods:{handleFocus(t){this.inFocus=!0,this.$emit("on-focus",t)},handleOptionsNav(t){"ArrowUp"!==t.key&&"Tab"!==t.key||this.navigateOptions(-1),"ArrowDown"===t.key&&this.navigateOptions(1)},navigateOptions(t){!1===this.optionInFocus&&(this.optionInFocus=-1);let e=this.optionInFocus+t,i=this.filteredOptions.length-1;i<0&&(i=0),e<0?e=0:e>i&&(e=i),this.optionInFocus=e},onClickOutside(t){this.inFocus&&(this.inFocus=!1,this.$emit("on-blur",t))},handleInput(t){this.$emit("input",t.target.value),this.query=t.target.value,this.inFocus||(this.inFocus=!0)},handleEnter(){if(!1===this.optionInFocus||!this.optionsList[this.optionInFocus])return;let t=this.filteredOptions[this.optionInFocus].value;this.handleResultClick(t)},handleResultClick(t){this.isNonRemovable(t)||(this.value.includes(t)?this.removeValue(t):this.multiple?this.storeValues([...new Set(this.value),t]):this.storeValues(t),this.inFocus=!1,this.optionInFocus=!1,this.query="")},removeValue(t){this.multiple||this.storeValues("");const e=this.value.filter((e=>e!==t));this.storeValues(e)},storeValues(t){this.$emit("change",this.sanitizeValue(t))},getOptionLabel(t){var e;const i="string"==typeof t?t:t.value,a=this.optionsList.find((({value:t})=>t===i));return null!==(e=a?.label)&&void 0!==e?e:""},sanitizeValue(t){return this.multiple?Array.isArray(t)?t:[t].filter(Boolean):Array.isArray(t)?t[0]:t},isSelectedOption(t){const e="string"==typeof t?t:t.value;return this.value.includes(e)},isNonRemovable(t){var e;const i="string"==typeof t?t:t.value,a=this.optionsList.find((({value:t})=>t===i));return null!==(e=a?.nonRemovable)&&void 0!==e&&e}},inject:["elementId","stateType"]};i(9330);const mt=s(ht,at,[],!1,null,"13c6d87e",null).exports;var _t=function(){var t=this,e=t.$createElement;return(t._self._c||e)("input",{staticClass:"cx-vui-input size-fullwidth",attrs:{type:"date",name:t.elementId,id:t.elementId,max:t.max,min:t.min},domProps:{value:t.value},on:{input:t.handleInput}})};_t._withStripped=!0;let bt=new Date(Date.now()-864e4).toJSON();[bt]=bt.split("T");const gt=t=>!!["now"].includes(t)||!Number.isNaN(new Date(t).getTime()),yt=s({name:"CxVuiDate",props:{value:{type:String},maxDate:{validator:gt},minDate:{validator:gt},elementId:{type:String}},data(){return{max:"now"===this.maxDate?bt:this.maxDate,min:"now"===this.minDate?bt:this.minDate}},methods:{handleInput(t){this.$emit("input",t.target.value)}},inject:["elementId"]},_t,[],!1,null,"1707aa50",null).exports;var xt=function(){var t=this.$createElement;return(this._self._c||t)("hr",{staticClass:"jfb"})};xt._withStripped=!0;i(5981);const wt=s({name:"Delimiter"},xt,[],!1,null,"362c518d",null).exports;var Ct=function(){var t=this,e=t.$createElement;return(t._self._c||e)("cx-vui-button",{attrs:{"button-style":"accent",size:"mini"},on:{click:t.print},scopedSlots:t._u([{key:"label",fn:function(){return[t.$slots.default?[t._t("default")]:[t._v("\n\t\t\t"+t._s(t.__("Print","jet-form-builder"))+"\n\t\t")]]},proxy:!0}],null,!0)})};Ct._withStripped=!0;const jt={name:"PrintButton",methods:{print(){window.print()}},mixins:[k]};i(7922);const St=s(jt,Ct,[],!1,null,"aa3950ea",null).exports;window.JetFBActions={renderCurrentPage:function(t,e={}){const i=new Vue({el:"#jet-form-builder_page_"+t.name,render:e=>e(t),...e});$("jet.fb.render.page",i)},getCurrentPath:T,getSearch:L,createPath:function(t={},e={},i=[]){const a=[];t={...L(),...t};for(const[e,n]of Object.entries(t))i.includes(e)||a.push(`${e}=${encodeURIComponent(n)}`);return[T(),a.join("&")].filter((t=>t)).join("?")},addQueryArgs:function(t,e){e=new URL(e);const i=new URLSearchParams(e.search),a=[];for(const[e,i]of Object.entries(t))a.push(...I(e,i));for(const[t,e]of a)e&&i.append(t,e);return e.origin+e.pathname+"?"+i},LocalStorage:J,resolveRestUrl:function(t,e){if("object"!=typeof e||!Object.keys(e)?.length)return t;for(let[i,a]of Object.entries(e)){const e=new RegExp(`\\{${i}\\}`,"g");if(t.match(e)){t=t.replace(e,String(a));continue}const n=new RegExp(`\\(\\?P<${i}>(.*?)\\)`),s=t.match(n);if(Array.isArray(s)){if(a=""+a,!new RegExp(s[1]).test(a))throw new Error((0,O.sprintf)((0,O.__)("Invalid parameter for rest url. RegExp: %1$s, Value: %2$s","jet-form-builder"),s[1],a));t=t.replace(n,a)}}return t}},window.JetFBErrors={ApiInputError:e},window.JetFBComponents={CxVuiCollapseMini:o,DetailsTable:b,SimpleWrapperComponent:S,ListComponents:A,CxVuiTabsPanel:D,CxVuiTabs:B,ExternalLink:W,RowWrapper:S,ColumnWrapper:G,CxVuiSelect:Y,CxVuiPopup:it,CxVuiFSelect:mt,CxVuiDate:yt,Tooltip:C,Delimiter:wt,PrintButton:St},window.JetFBMixins={GetIncoming:r,SaveTabByAjax:l,i18n:k,ParseIncomingValueMixin:c,PromiseWrapper:u}})()})(); \ No newline at end of file diff --git a/assets/build/admin/pages/jfb-addons.asset.php b/assets/build/admin/pages/jfb-addons.asset.php index 12ae3bdf1..d6822f163 100644 --- a/assets/build/admin/pages/jfb-addons.asset.php +++ b/assets/build/admin/pages/jfb-addons.asset.php @@ -1 +1 @@ - array(), 'version' => '58e4f26e1e761fa19ecd'); + array(), 'version' => 'bfae07f8ba82cbe1f94d'); diff --git a/assets/build/admin/pages/jfb-addons.js b/assets/build/admin/pages/jfb-addons.js index aef2595d5..5cec6d745 100644 --- a/assets/build/admin/pages/jfb-addons.js +++ b/assets/build/admin/pages/jfb-addons.js @@ -1 +1 @@ -(()=>{var e={153(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>d});var n=a(6758),i=a.n(n),s=a(935),o=a.n(s)()(i());o.push([e.id,".proccesing-state{opacity:.5;pointer-events:none}.jfb-addons-page__inner{padding:30px;height:100%}.jfb-addons-page__header{margin-bottom:30px}.jfb-addons-page__header-controls{display:flex;justify-content:flex-end;align-items:center;padding-bottom:15px;border-bottom:1px solid #dcdcdd}.jfb-addons-page__header-controls>.cx-vui-button{margin-left:10px}.jfb-addons-page .cx-vui-button{font-size:13px;font-weight:400;background-color:rgba(0,0,0,0)}.jfb-addons-page .cx-vui-button .button-icon{margin-right:5px}.jfb-addons-page .cx-vui-button--style-accent{color:#007cba;box-shadow:inset 0 0 0 1px #007cba}.jfb-addons-page .cx-vui-button--style-accent:hover{background-color:rgba(0,124,186,.0705882353)}.jfb-addons-page .cx-vui-button--style-accent .button-icon path{fill:#007cba}.jfb-addons-page .cx-vui-button--style-danger{color:#d6336c;box-shadow:inset 0 0 0 1px #d6336c}.jfb-addons-page .cx-vui-button--style-danger:hover{background-color:rgba(214,51,108,.0705882353)}.jfb-addons-page .cx-vui-button--style-danger .button-icon path{fill:#d6336c}.jfb-addons-page .cx-vui-button__content>span{display:flex;justify-content:center;align-items:center}.jfb-addons-page .cx-vui-popup__header{padding-bottom:15px;border-bottom:1px solid #dcdcdd;margin-bottom:30px}.jfb-addons-page .cx-vui-popup__header-title{font-weight:500;font-size:24px;line-height:36px;color:#23282d}.jfb-addons-page__license-form{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.jfb-addons-page__license-form>span{margin-bottom:10px}.jfb-addons-page__license-input{margin-bottom:10px}.jfb-addons-page .go-pro-banner{display:flex;flex-direction:column;justify-content:center;align-items:center;padding:24px 0;border-bottom:1px solid #dcdcdd}.jfb-addons-page .go-pro-banner__subtitle{font-size:18px;line-height:1.25;font-weight:500;color:#007cba;margin-bottom:5px}.jfb-addons-page .go-pro-banner__title{font-size:24px;line-height:1.25;font-weight:500;color:#23282d;margin-bottom:20px}.jfb-addons-page .go-pro-banner__button{color:#fff;background-color:#007cba}",""]);const d=o},6321(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>d});var n=a(6758),i=a.n(n),s=a(935),o=a.n(s)()(i());o.push([e.id,".jfb-addons{margin-bottom:50px}.jfb-addons:last-child{margin-bottom:0}.jfb-addons a{color:#007cba}.jfb-addons__header{margin-bottom:20px}.jfb-addons__list{display:grid;grid-template-columns:repeat(4, 1fr);gap:40px}@media(max-width: 1140px){.jfb-addons__list{grid-template-columns:repeat(2, 1fr)}}.jfb-addons__item{transition:box-shadow .3s ease-out;border-radius:10px}.jfb-addons__item:hover{box-shadow:0px 4px 28px rgba(15,23,42,.1)}.jfb-addons__item.activated .jfb-addons__item-info{background-color:#fff}.jfb-addons__item.update-avaliable .jfb-addons__item-name .version{background-color:#d6336c}.jfb-addons__item.update-avaliable .jfb-addons__item-update .latest-version{color:#fff;background-color:#46b450;padding:2px 8px;border-radius:4px}.jfb-addons__item-inner{display:flex;flex-direction:column;align-items:stretch;height:100%}.jfb-addons__item-thumb{border-radius:10px 10px 0 0;line-height:0;overflow:hidden;position:relative}.jfb-addons__item-thumb .pro-badge{position:absolute;top:12px;left:12px}.jfb-addons__item-thumb img{width:100%;height:auto}.jfb-addons__item-info{display:flex;flex-direction:column;align-items:stretch;flex:1 1 auto;padding:20px;border-radius:0 0 10px 10px;border-width:0 1px 1px 1px;border-color:#dcdcdd;border-style:solid;background-color:#fff}.jfb-addons__item-name{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:10px}.jfb-addons__item-name .label{font-size:20px;font-weight:700;line-height:1.25}.jfb-addons__item-name .version{padding:1px 8px;border-radius:4px;color:#fff;background-color:#46b450;margin-left:10px}.jfb-addons__item-update{color:#7b7e81;margin-bottom:10px}.jfb-addons__item-license{margin-bottom:10px;color:#7b7e81}.jfb-addons__item-license .cx-vui-button{margin-left:3px}.jfb-addons__item-desc{flex:1 1 auto}.jfb-addons__item-desc a{text-decoration:none}.jfb-addons__item-actions{display:flex;justify-content:flex-start;align-items:center;flex-wrap:wrap;margin-top:20px}.jfb-addons__item-actions:empty{display:none}.jfb-addons__item-actions .cx-vui-button{margin-right:20px}",""]);const d=o},935(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var a="",n=void 0!==t[5];return t[4]&&(a+="@supports (".concat(t[4],") {")),t[2]&&(a+="@media ".concat(t[2]," {")),n&&(a+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),a+=e(t),n&&(a+="}"),t[2]&&(a+="}"),t[4]&&(a+="}"),a}).join("")},t.i=function(e,a,n,i,s){"string"==typeof e&&(e=[[null,e,void 0]]);var o={};if(n)for(var d=0;d0?" ".concat(r[5]):""," {").concat(r[1],"}")),r[5]=s),a&&(r[2]?(r[1]="@media ".concat(r[2]," {").concat(r[1],"}"),r[2]=a):r[2]=a),i&&(r[4]?(r[1]="@supports (".concat(r[4],") {").concat(r[1],"}"),r[4]=i):r[4]="".concat(i)),t.push(r))}},t}},6758(e){"use strict";e.exports=function(e){return e[1]}},7101(e,t,a){var n=a(153);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("2075d987",n,!1,{})},3517(e,t,a){var n=a(6321);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("1a01cdee",n,!1,{})},611(e,t,a){"use strict";function n(e,t){for(var a=[],n={},i=0;if});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},o=i&&(document.head||document.getElementsByTagName("head")[0]),d=null,c=0,l=!1,r=function(){},u=null,p="data-vue-ssr-id",v="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(e,t,a,i){l=a,u=i||{};var o=n(e,t);return b(o),function(t){for(var a=[],i=0;ia.parts.length&&(n.parts.length=a.parts.length)}else{var o=[];for(i=0;i{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons-page wrap",class:{"proccesing-state":e.proccesingState}},[a("h1",{staticClass:"cs-vui-title"},[e._v(e._s("JetFormBuilder Addons"))]),e._v(" "),a("div",{staticClass:"jfb-addons-page__inner cx-vui-panel"},[a("div",{staticClass:"jfb-addons-page__header"},[e.isLicenseMode?a("div",{staticClass:"jfb-addons-page__header-controls"},[a("cx-vui-button",{attrs:{"button-style":"accent",size:"mini",loading:e.checkUpdatesProcessed},on:{click:e.checkPluginsUpdate}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("svg",{staticClass:"button-icon",attrs:{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M11.7085 2.29171C10.5001 1.08337 8.8418 0.333374 7.00013 0.333374C3.3168 0.333374 0.341797 3.31671 0.341797 7.00004C0.341797 10.6834 3.3168 13.6667 7.00013 13.6667C10.1085 13.6667 12.7001 11.5417 13.4418 8.66671H11.7085C11.0251 10.6084 9.17513 12 7.00013 12C4.2418 12 2.00013 9.75837 2.00013 7.00004C2.00013 4.24171 4.2418 2.00004 7.00013 2.00004C8.38346 2.00004 9.6168 2.57504 10.5168 3.48337L7.83346 6.16671H13.6668V0.333374L11.7085 2.29171Z",fill:"#007CBA"}})]),e._v(" "),a("span",[e._v("Check For Updates")])])]),e._v(" "),a("cx-vui-button",{class:[e.isLicenseActivated?"cx-vui-button--style-danger":"cx-vui-button--style-accent"],attrs:{size:"mini"},on:{click:e.showLicensePopup}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("svg",{staticClass:"button-icon",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M15.4985 0H12.4897C12.4166 0 12.3487 0.0156709 12.286 0.0470127C12.2338 0.0679073 12.1867 0.104473 12.145 0.156709L5.7669 6.47209C5.62063 6.44074 5.46392 6.41463 5.29677 6.39373C5.12961 6.37284 4.96768 6.36239 4.81097 6.36239C4.16324 6.36239 3.54685 6.48776 2.9618 6.73849C2.37675 6.97878 1.85961 7.32354 1.41038 7.77277C0.961149 8.222 0.611166 8.73914 0.360431 9.32419C0.120144 9.90924 0 10.5309 0 11.189C0 11.8368 0.120144 12.4532 0.360431 13.0382C0.611166 13.6232 0.961149 14.1404 1.41038 14.5896C1.85961 15.0389 2.37675 15.3836 2.9618 15.6239C3.54685 15.8746 4.16324 16 4.81097 16C5.46915 16 6.09076 15.8746 6.67581 15.6239C7.26086 15.3836 7.778 15.0389 8.22723 14.5896C8.80183 14.015 9.19882 13.3464 9.41822 12.5837C9.64806 11.8211 9.68462 11.0375 9.52791 10.2331L10.8913 8.86974C10.9331 8.82795 10.9644 8.78093 10.9853 8.7287C11.0167 8.66601 11.0323 8.59811 11.0323 8.52498V7.02057H12.5367C12.6934 7.02057 12.8136 6.97356 12.8972 6.87953C12.9912 6.7855 13.0382 6.66536 13.0382 6.5191V5.01469H14.5426C14.6157 5.01469 14.6784 5.00424 14.7307 4.98335C14.7933 4.95201 14.8508 4.91022 14.903 4.85798L15.906 3.85504C15.9269 3.81326 15.9478 3.76624 15.9687 3.71401C15.9896 3.65132 16 3.58342 16 3.51028V0.501469C16 0.355207 15.953 0.235064 15.859 0.141038C15.7649 0.0470127 15.6448 0 15.4985 0ZM4.96768 12.7875C4.79008 12.9651 4.5968 13.0957 4.38786 13.1792C4.18936 13.2524 3.96474 13.2889 3.71401 13.2889C3.46327 13.2889 3.23343 13.2419 3.02449 13.1479C2.82599 13.0539 2.63794 12.9337 2.46033 12.7875C2.28273 12.6099 2.15214 12.4218 2.06856 12.2233C1.99543 12.0144 1.95886 11.7845 1.95886 11.5338C1.95886 11.2831 2.00588 11.0584 2.0999 10.8599C2.19393 10.651 2.31407 10.4577 2.46033 10.2801C2.7842 9.95625 3.19164 9.79432 3.68266 9.79432C4.18413 9.79432 4.5968 9.95625 4.92067 10.2801C5.09827 10.4577 5.22364 10.651 5.29677 10.8599C5.38035 11.0584 5.42214 11.2831 5.42214 11.5338C5.42214 11.7845 5.38035 12.0144 5.29677 12.2233C5.22364 12.4218 5.11394 12.6099 4.96768 12.7875Z",fill:"#D3D3D3"}})]),e._v(" "),e.isLicenseActivated?e._e():a("span",[e._v("Activate License")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("Deactivate License")]):e._e()])])],1):e._e(),e._v(" "),e.isLicenseActivated?e._e():a("div",{staticClass:"go-pro-banner"},[a("div",{staticClass:"go-pro-banner__subtitle"},[e._v("Features & Integrations")]),e._v(" "),a("div",{staticClass:"go-pro-banner__title"},[e._v("Extend functionality with PRO Addons")]),e._v(" "),a("cx-vui-button",{staticClass:"go-pro-banner__button",attrs:{"button-style":"default",size:"mini",url:e.goProLink,"tag-name":"a",target:"_blank"}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Go Pro")])])])],1)]),e._v(" "),0!==Object.keys(e.installedAddonList).length?a("div",{staticClass:"jfb-addons"},[e._m(0),e._v(" "),a("div",{staticClass:"jfb-addons__list"},e._l(e.installedAddonList,function(e,t){return a("AddonItem",{key:t,attrs:{"addon-data":e}})}),1)]):e._e(),e._v(" "),0!==Object.keys(e.availableAddonList).length?a("div",{staticClass:"jfb-addons"},[e._m(1),e._v(" "),a("div",{staticClass:"jfb-addons__list"},e._l(e.availableAddonList,function(e,t){return a("AddonItem",{key:t,attrs:{"addon-data":e}})}),1)]):e._e()]),e._v(" "),a("cx-vui-popup",{staticClass:"jfb-addons-page__license-popup",attrs:{footer:!1,"body-width":"540px"},model:{value:e.licensePopupVisible,callback:function(t){e.licensePopupVisible=t},expression:"licensePopupVisible"}},[a("div",{staticClass:"cx-vui-popup__header-title",attrs:{slot:"title"},slot:"title"},[e.isLicenseActivated?e._e():a("span",[e._v("Activate License")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("Deactivate License")]):e._e()]),e._v(" "),a("div",{staticClass:"jfb-addons-page__license-form",attrs:{slot:"content"},slot:"content"},[e.isLicenseActivated?e._e():a("span",[e._v("Activate license for automatic updates and awesome support")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("By deactivating the license you will not be able to update the addons")]):e._e(),e._v(" "),a("cx-vui-input",{staticClass:"jfb-addons-page__license-input",attrs:{size:"fullwidth",type:"password",autofocus:!0,"prevent-wrap":!0,placeholder:"Just paste it here"},model:{value:e.licenseKey,callback:function(t){e.licenseKey=t},expression:"licenseKey"}}),e._v(" "),a("cx-vui-button",{staticClass:"jfb-addons-page__license-action",attrs:{"button-style":"accent",size:"mini",loading:e.licenseProccesingState},on:{click:e.licenseAction}},[a("span",{attrs:{slot:"label"},slot:"label"},[e.isLicenseActivated?e._e():a("span",[e._v("Activate")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("Deactivate")]):e._e()])])],1)])],1)};e._withStripped=!0;var t=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons__item",class:{activated:e.addonData.isActivated,"update-avaliable":e.updateAvaliable}},[a("div",{staticClass:"jfb-addons__item-inner",class:{"proccesing-state":e.proccesingState}},[a("div",{staticClass:"jfb-addons__item-thumb"},[e.addonData.isInstalled?e._e():a("div",{staticClass:"pro-badge"},[a("svg",{attrs:{width:"40",height:"20",viewBox:"0 0 40 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("rect",{attrs:{width:"40",height:"20",rx:"4",fill:"#EE7B16"}}),e._v(" "),a("path",{attrs:{d:"M10.625 10.8301V14H9.14258V5.46875H12.4062C13.3594 5.46875 14.1152 5.7168 14.6738 6.21289C15.2363 6.70898 15.5176 7.36523 15.5176 8.18164C15.5176 9.01758 15.2422 9.66797 14.6914 10.1328C14.1445 10.5977 13.377 10.8301 12.3887 10.8301H10.625ZM10.625 9.64062H12.4062C12.9336 9.64062 13.3359 9.51758 13.6133 9.27148C13.8906 9.02148 14.0293 8.66211 14.0293 8.19336C14.0293 7.73242 13.8887 7.36523 13.6074 7.0918C13.3262 6.81445 12.9395 6.67188 12.4473 6.66406H10.625V9.64062ZM19.9531 10.7129H18.3008V14H16.8184V5.46875H19.8184C20.8027 5.46875 21.5625 5.68945 22.0977 6.13086C22.6328 6.57227 22.9004 7.21094 22.9004 8.04688C22.9004 8.61719 22.7617 9.0957 22.4844 9.48242C22.2109 9.86523 21.8281 10.1602 21.3359 10.3672L23.252 13.9238V14H21.6641L19.9531 10.7129ZM18.3008 9.52344H19.8242C20.3242 9.52344 20.7148 9.39844 20.9961 9.14844C21.2773 8.89453 21.418 8.54883 21.418 8.11133C21.418 7.6543 21.2871 7.30078 21.0254 7.05078C20.7676 6.80078 20.3809 6.67188 19.8652 6.66406H18.3008V9.52344ZM31.1152 9.95703C31.1152 10.793 30.9707 11.5273 30.6816 12.1602C30.3926 12.7891 29.9785 13.2734 29.4395 13.6133C28.9043 13.9492 28.2871 14.1172 27.5879 14.1172C26.8965 14.1172 26.2793 13.9492 25.7363 13.6133C25.1973 13.2734 24.7793 12.791 24.4824 12.166C24.1895 11.541 24.041 10.8203 24.0371 10.0039V9.52344C24.0371 8.69141 24.1836 7.95703 24.4766 7.32031C24.7734 6.68359 25.1895 6.19727 25.7246 5.86133C26.2637 5.52148 26.8809 5.35156 27.5762 5.35156C28.2715 5.35156 28.8867 5.51953 29.4219 5.85547C29.9609 6.1875 30.377 6.66797 30.6699 7.29688C30.9629 7.92188 31.1113 8.65039 31.1152 9.48242V9.95703ZM29.6328 9.51172C29.6328 8.56641 29.4531 7.8418 29.0938 7.33789C28.7383 6.83398 28.2324 6.58203 27.5762 6.58203C26.9355 6.58203 26.4336 6.83398 26.0703 7.33789C25.7109 7.83789 25.5273 8.54688 25.5195 9.46484V9.95703C25.5195 10.8945 25.7012 11.6191 26.0645 12.1309C26.4316 12.6426 26.9395 12.8984 27.5879 12.8984C28.2441 12.8984 28.748 12.6484 29.0996 12.1484C29.4551 11.6484 29.6328 10.918 29.6328 9.95703V9.51172Z",fill:"white"}})])]),e._v(" "),a("img",{attrs:{src:e.addonData.thumb,alt:""}})]),e._v(" "),a("div",{staticClass:"jfb-addons__item-info"},[a("div",{staticClass:"jfb-addons__item-name"},[a("span",{staticClass:"label"},[e._v(e._s(e.addonData.name))]),e._v(" "),a("span",{staticClass:"version"},[e._v(e._s(e.addonData.currentVersion))])]),e._v(" "),e.$parent.isLicenseActivated?a("div",{staticClass:"jfb-addons__item-update"},[e.updateAvaliable?e._e():a("div",[e._v("Your plugin is up to date")]),e._v(" "),e.updateAvaliable?a("div",[e._v("\n\t\t\t\t\tVersion "),a("span",{staticClass:"latest-version"},[e._v(e._s(e.addonData.version))]),e._v(" available\n\t\t\t\t\t"),!e.activateLicenceActionAvaliable&&e.isLicenseMode?a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",loading:e.updatePluginProcessed},on:{click:e.updatePlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Update Now")])])]):e._e()],1):e._e()]):e._e(),e._v(" "),e.activateLicenceActionAvaliable?a("div",{staticClass:"jfb-addons__item-license"},[a("span",[e._v("License not activated")]),e._v(" "),a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link"},on:{click:e.activateLicense}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Activate Now")])])])],1):e._e(),e._v(" "),a("div",{staticClass:"jfb-addons__item-desc"},[a("span",{domProps:{innerHTML:e._s(e.addonData.desc)}}),e._v(" "),a("a",{attrs:{href:e.learnMoreUrl,target:"_blank"}},[e._v("Learn More")])]),e._v(" "),a("div",{staticClass:"jfb-addons__item-actions"},[e.installActionAvaliable?a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",loading:e.actionPluginProcessed},on:{click:e.installPlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Install Addon")])])]):e._e(),e._v(" "),e.activateActionAvaliable?a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",loading:e.actionPluginProcessed},on:{click:e.activatePlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Activate Addon")])])]):e._e(),e._v(" "),e.deactivateActionAvaliable?a("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",loading:e.actionPluginProcessed},on:{click:e.deactivatePlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Deactivate Addon")])])]):e._e()],1)])])])};t._withStripped=!0;const n={name:"addon-item",props:{addonData:Object},data:()=>({actionPlugin:!1,actionPluginRequest:null,actionPluginProcessed:!1,updatePluginProcessed:!1}),computed:{classList:function(){return["jfb-addons__item",!!this.updateAvaliable&&"update-avaliable",!!this.activateAvaliable&&"activate-avaliable"]},learnMoreAvaliable(){return!this.$parent.isLicenseActivated},activateLicenceActionAvaliable(){return!(this.$parent.isLicenseActivated||!this.$parent.isLicenseMode)},installActionAvaliable(){return!(this.addonData.isInstalled||!this.$parent.isLicenseActivated)},activateActionAvaliable(){return!(!this.addonData.isInstalled||this.addonData.isActivated)},deactivateActionAvaliable(){return!(!this.addonData.isInstalled||!this.addonData.isActivated)},updateAvaliable(){return!!this.addonData.updateAvaliable},isLicenseMode(){return this.$parent.isLicenseMode},proccesingState(){return this.actionPluginProcessed||this.updatePluginProcessed},learnMoreUrl(){const e=this.$parent.isLicenseActivated?"jetformbuilder-license":"license-not-activated",[t]=this.addonData.slug.split("/");return`${this.addonData.demo}?${this.$parent.getUtmParamsString({utm_source:"plugin",utm_medium:"addons",utm_campaign:t.replace("jet-form-builder-",""),utm_content:`${e}/${this.$parent.themeInfo.authorSlug}`})}`}},methods:{activateLicense(){window.jfbEventBus.$emit("showLicensePopup")},installPlugin(){this.actionPlugin="install",this.pluginAction()},deactivatePlugin(){this.actionPlugin="deactivate",this.pluginAction()},activatePlugin(){this.actionPlugin="activate",this.pluginAction()},updatePlugin(){this.updateAvaliable&&(this.actionPlugin="update",this.pluginAction())},pluginAction:function(){let e=this;e.actionPluginRequest=jQuery.ajax({type:"POST",url:window.JetFBPageConfig.ajaxUrl,dataType:"json",data:{action:`jfb_addon_${e.actionPlugin}_action`,nonce:window.JetFBPageConfig.nonce,data:{plugin:e.addonData.slug}},beforeSend:function(t,a){switch(null!==e.actionPluginRequest&&e.actionPluginRequest.abort(),e.actionPlugin){case"install":case"activate":case"deactivate":e.actionPluginProcessed=!0;break;case"update":e.updatePluginProcessed=!0}},success:function(t,a,n){t.success?(e.$CXNotice.add({message:t.message,type:"success",duration:4e3}),window.jfbEventBus.$emit("updateAddonData",{slug:e.addonData.slug,addonData:t.data,action:e.actionPlugin})):e.$CXNotice.add({message:t.message,type:"error",duration:4e3})},error:function(t,a,n){e.$CXNotice.add({message:n,type:"error",duration:4e3})},complete:()=>this.onEndRequest()})},onEndRequest(){switch(this.actionPlugin){case"install":case"activate":case"deactivate":this.actionPluginProcessed=!1;break;case"update":this.updatePluginProcessed=!1}}}};function i(e,t,a,n,i,s,o,d){var c,l="function"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=a,l._compiled=!0),n&&(l.functional=!0),s&&(l._scopeId="data-v-"+s),o?(c=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},l._ssrRegister=c):i&&(c=d?function(){i.call(this,(l.functional?this.parent:this).$root.$options.shadowRoot)}:i),c)if(l.functional){l._injectStyles=c;var r=l.render;l.render=function(e,t){return c.call(t),r(e,t)}}else{var u=l.beforeCreate;l.beforeCreate=u?[].concat(u,c):[c]}return{exports:e,options:l}}a(3517);const s=i(n,t,[],!1,null,null,null).exports,{applyFilters:o,doAction:d}=wp.hooks;window.jfbEventBus=new Vue;const c={name:"jfb-addons",components:{AddonItem:s},data:()=>({allAddons:window.JetFBPageConfig.allAddons||{},licenseList:window.JetFBPageConfig.licenseList||[],licenseKey:window.JetFBPageConfig.licenseKey||"",themeInfo:window.JetFBPageConfig.themeInfo||!1,miscInfo:window.JetFBPageConfig.miscInfo||!1,licenseActivated:!1,licensePopupVisible:!1,licenseProccesingState:!1,licenseAjaxAction:null,checkUpdatesAction:null,checkUpdatesProcessed:!1,proccesingState:!1}),mounted:function(){window.jfbEventBus.$on("updateAddonData",this.updateAddonData),window.jfbEventBus.$on("showLicensePopup",this.showLicensePopup)},computed:{isLicenseMode:()=>""!==window.JetFBPageConfig.licenseMode,isLicenseActivated(){return 0!==this.licenseList.length},licenseActionType(){return this.isLicenseActivated?"deactivate_license":"activate_license"},installedAddonList(){let e={};for(let t in this.allAddons)this.allAddons[t].isInstalled&&(e[t]=this.allAddons[t]);return e},availableAddonList(){let e={};for(let t in this.allAddons)this.allAddons[t].isInstalled||(e[t]=this.allAddons[t]);return e},goProLink(){return`${this.miscInfo.pricingPageUrl}?${this.getUtmParamsString({utm_source:"plugin",utm_medium:"addons",utm_campaign:"go-pro-button",utm_content:`license-not-activated/${this.themeInfo.authorSlug}`})}`}},methods:{showLicensePopup(){this.licensePopupVisible=!0},updateAddonData(e){let t=e.slug,a=e.addonData,n=e.action;this.allAddons[t]=Object.assign({},this.allAddons[t],a),["activate","deactivate","update"].includes(n)&&(this.proccesingState=!0,setTimeout(function(){window.location.reload()},1e3))},licenseAction(){var e=this;if(""===this.licenseKey)return e.$CXNotice.add({message:"License key is missing",type:"error",duration:4e3}),!1;this.licenseProccesingState=!0,e.licenseAjaxAction=jQuery.ajax({type:"POST",url:window.JetFBPageConfig.ajaxUrl,dataType:"json",data:{action:"jfb_license_action",nonce:window.JetFBPageConfig.nonce,data:{license:e.licenseKey,action:e.licenseActionType}},beforeSend:(t,a)=>{null!==e.licenseAjaxAction&&e.licenseAjaxAction.abort()},success:(t,a,n)=>{if(e.licenseProccesingState=!1,t.success){e.$CXNotice.add({message:t.message,type:"success",duration:4e3});let a=t.data;switch(a.license_key=e.licenseKey,e.licenseActionType){case"activate_license":e.licenseList.push(a);break;case"deactivate_license":e.licenseList=e.licenseList.filter(t=>e.licenseKey!==t.license_key),e.licenseKey=""}e.licensePopupVisible=!1}else e.$CXNotice.add({message:t.message,type:"error",duration:4e3})}})},checkPluginsUpdate:function(){var e=this;e.checkUpdatesAction=jQuery.ajax({type:"POST",url:window.JetFBPageConfig.ajaxUrl,dataType:"json",data:{action:"jfb_license_service_action",nonce:window.JetFBPageConfig.nonce,data:{action:"check-plugin-update"}},beforeSend:(t,a)=>{null!==e.checkUpdatesAction&&e.checkUpdatesAction.abort(),e.checkUpdatesProcessed=!0},success:function(t,a,n){e.checkUpdatesProcessed=!1,t.success?(e.$CXNotice.add({message:t.message,type:"success",duration:4e3}),e.proccesingState=!0,setTimeout(function(){window.location.reload()},1e3)):e.$CXNotice.add({message:t.message,type:"error",duration:4e3})}})},addLicense(e){this.licenseList.push(e),self.proccesingState=!0,setTimeout(function(){window.location.reload()},3e3)},removeLicense(e){let t=!1;for(let a in this.licenseList)if(this.licenseList[a].licenseKey===e){t=a;break}t&&this.licenseList.splice(t,1),this.licensePopupVisible=!1,setTimeout(function(){window.location.reload()},500)},getUtmParamsString(e={}){let t=!1;return 0===Object.keys(e).length||(t=Object.keys(e).map(t=>[t,e[t]].map(encodeURIComponent).join("=")).join("&")),t}}};a(7101);const l=i(c,e,[function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons__header"},[a("span",{staticClass:"cx-vui-subtitle"},[e._v("Your Installed Addons")])])},function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons__header"},[a("span",{staticClass:"cx-vui-subtitle"},[e._v("All Available Addons")])])}],!1,null,null,null).exports,{renderCurrentPage:r}=window.JetFBActions;r(l)})()})(); \ No newline at end of file +(()=>{var e={153:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var n=a(6758),i=a.n(n),s=a(935),o=a.n(s)()(i());o.push([e.id,".proccesing-state{opacity:.5;pointer-events:none}.jfb-addons-page__inner{padding:30px;height:100%}.jfb-addons-page__header{margin-bottom:30px}.jfb-addons-page__header-controls{display:flex;justify-content:flex-end;align-items:center;padding-bottom:15px;border-bottom:1px solid #dcdcdd}.jfb-addons-page__header-controls>.cx-vui-button{margin-left:10px}.jfb-addons-page .cx-vui-button{font-size:13px;font-weight:400;background-color:rgba(0,0,0,0)}.jfb-addons-page .cx-vui-button .button-icon{margin-right:5px}.jfb-addons-page .cx-vui-button--style-accent{color:#007cba;box-shadow:inset 0 0 0 1px #007cba}.jfb-addons-page .cx-vui-button--style-accent:hover{background-color:rgba(0,124,186,.0705882353)}.jfb-addons-page .cx-vui-button--style-accent .button-icon path{fill:#007cba}.jfb-addons-page .cx-vui-button--style-danger{color:#d6336c;box-shadow:inset 0 0 0 1px #d6336c}.jfb-addons-page .cx-vui-button--style-danger:hover{background-color:rgba(214,51,108,.0705882353)}.jfb-addons-page .cx-vui-button--style-danger .button-icon path{fill:#d6336c}.jfb-addons-page .cx-vui-button__content>span{display:flex;justify-content:center;align-items:center}.jfb-addons-page .cx-vui-popup__header{padding-bottom:15px;border-bottom:1px solid #dcdcdd;margin-bottom:30px}.jfb-addons-page .cx-vui-popup__header-title{font-weight:500;font-size:24px;line-height:36px;color:#23282d}.jfb-addons-page__license-form{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.jfb-addons-page__license-form>span{margin-bottom:10px}.jfb-addons-page__license-input{margin-bottom:10px}.jfb-addons-page .go-pro-banner{display:flex;flex-direction:column;justify-content:center;align-items:center;padding:24px 0;border-bottom:1px solid #dcdcdd}.jfb-addons-page .go-pro-banner__subtitle{font-size:18px;line-height:1.25;font-weight:500;color:#007cba;margin-bottom:5px}.jfb-addons-page .go-pro-banner__title{font-size:24px;line-height:1.25;font-weight:500;color:#23282d;margin-bottom:20px}.jfb-addons-page .go-pro-banner__button{color:#fff;background-color:#007cba}",""]);const d=o},611:(e,t,a)=>{"use strict";function n(e,t){for(var a=[],n={},i=0;if});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},o=i&&(document.head||document.getElementsByTagName("head")[0]),d=null,c=0,l=!1,r=function(){},u=null,p="data-vue-ssr-id",v="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(e,t,a,i){l=a,u=i||{};var o=n(e,t);return b(o),function(t){for(var a=[],i=0;ia.parts.length&&(n.parts.length=a.parts.length)}else{var o=[];for(i=0;i{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var a="",n=void 0!==t[5];return t[4]&&(a+="@supports (".concat(t[4],") {")),t[2]&&(a+="@media ".concat(t[2]," {")),n&&(a+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),a+=e(t),n&&(a+="}"),t[2]&&(a+="}"),t[4]&&(a+="}"),a})).join("")},t.i=function(e,a,n,i,s){"string"==typeof e&&(e=[[null,e,void 0]]);var o={};if(n)for(var d=0;d0?" ".concat(r[5]):""," {").concat(r[1],"}")),r[5]=s),a&&(r[2]?(r[1]="@media ".concat(r[2]," {").concat(r[1],"}"),r[2]=a):r[2]=a),i&&(r[4]?(r[1]="@supports (".concat(r[4],") {").concat(r[1],"}"),r[4]=i):r[4]="".concat(i)),t.push(r))}},t}},3517:(e,t,a)=>{var n=a(6321);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("1a01cdee",n,!1,{})},6321:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var n=a(6758),i=a.n(n),s=a(935),o=a.n(s)()(i());o.push([e.id,".jfb-addons{margin-bottom:50px}.jfb-addons:last-child{margin-bottom:0}.jfb-addons a{color:#007cba}.jfb-addons__header{margin-bottom:20px}.jfb-addons__list{display:grid;grid-template-columns:repeat(4, 1fr);gap:40px}@media(max-width: 1140px){.jfb-addons__list{grid-template-columns:repeat(2, 1fr)}}.jfb-addons__item{transition:box-shadow .3s ease-out;border-radius:10px}.jfb-addons__item:hover{box-shadow:0px 4px 28px rgba(15,23,42,.1)}.jfb-addons__item.activated .jfb-addons__item-info{background-color:#fff}.jfb-addons__item.update-avaliable .jfb-addons__item-name .version{background-color:#d6336c}.jfb-addons__item.update-avaliable .jfb-addons__item-update .latest-version{color:#fff;background-color:#46b450;padding:2px 8px;border-radius:4px}.jfb-addons__item-inner{display:flex;flex-direction:column;align-items:stretch;height:100%}.jfb-addons__item-thumb{border-radius:10px 10px 0 0;line-height:0;overflow:hidden;position:relative}.jfb-addons__item-thumb .pro-badge{position:absolute;top:12px;left:12px}.jfb-addons__item-thumb img{width:100%;height:auto}.jfb-addons__item-info{display:flex;flex-direction:column;align-items:stretch;flex:1 1 auto;padding:20px;border-radius:0 0 10px 10px;border-width:0 1px 1px 1px;border-color:#dcdcdd;border-style:solid;background-color:#fff}.jfb-addons__item-name{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:10px}.jfb-addons__item-name .label{font-size:20px;font-weight:700;line-height:1.25}.jfb-addons__item-name .version{padding:1px 8px;border-radius:4px;color:#fff;background-color:#46b450;margin-left:10px}.jfb-addons__item-update{color:#7b7e81;margin-bottom:10px}.jfb-addons__item-license{margin-bottom:10px;color:#7b7e81}.jfb-addons__item-license .cx-vui-button{margin-left:3px}.jfb-addons__item-desc{flex:1 1 auto}.jfb-addons__item-desc a{text-decoration:none}.jfb-addons__item-actions{display:flex;justify-content:flex-start;align-items:center;flex-wrap:wrap;margin-top:20px}.jfb-addons__item-actions:empty{display:none}.jfb-addons__item-actions .cx-vui-button{margin-right:20px}",""]);const d=o},6758:e=>{"use strict";e.exports=function(e){return e[1]}},7101:(e,t,a)=>{var n=a(153);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("2075d987",n,!1,{})}},t={};function a(n){var i=t[n];if(void 0!==i)return i.exports;var s=t[n]={id:n,exports:{}};return e[n](s,s.exports,a),s.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons-page wrap",class:{"proccesing-state":e.proccesingState}},[a("h1",{staticClass:"cs-vui-title"},[e._v(e._s("JetFormBuilder Addons"))]),e._v(" "),a("div",{staticClass:"jfb-addons-page__inner cx-vui-panel"},[a("div",{staticClass:"jfb-addons-page__header"},[e.isLicenseMode?a("div",{staticClass:"jfb-addons-page__header-controls"},[a("cx-vui-button",{attrs:{"button-style":"accent",size:"mini",loading:e.checkUpdatesProcessed},on:{click:e.checkPluginsUpdate}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("svg",{staticClass:"button-icon",attrs:{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M11.7085 2.29171C10.5001 1.08337 8.8418 0.333374 7.00013 0.333374C3.3168 0.333374 0.341797 3.31671 0.341797 7.00004C0.341797 10.6834 3.3168 13.6667 7.00013 13.6667C10.1085 13.6667 12.7001 11.5417 13.4418 8.66671H11.7085C11.0251 10.6084 9.17513 12 7.00013 12C4.2418 12 2.00013 9.75837 2.00013 7.00004C2.00013 4.24171 4.2418 2.00004 7.00013 2.00004C8.38346 2.00004 9.6168 2.57504 10.5168 3.48337L7.83346 6.16671H13.6668V0.333374L11.7085 2.29171Z",fill:"#007CBA"}})]),e._v(" "),a("span",[e._v("Check For Updates")])])]),e._v(" "),a("cx-vui-button",{class:[e.isLicenseActivated?"cx-vui-button--style-danger":"cx-vui-button--style-accent"],attrs:{size:"mini"},on:{click:e.showLicensePopup}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("svg",{staticClass:"button-icon",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M15.4985 0H12.4897C12.4166 0 12.3487 0.0156709 12.286 0.0470127C12.2338 0.0679073 12.1867 0.104473 12.145 0.156709L5.7669 6.47209C5.62063 6.44074 5.46392 6.41463 5.29677 6.39373C5.12961 6.37284 4.96768 6.36239 4.81097 6.36239C4.16324 6.36239 3.54685 6.48776 2.9618 6.73849C2.37675 6.97878 1.85961 7.32354 1.41038 7.77277C0.961149 8.222 0.611166 8.73914 0.360431 9.32419C0.120144 9.90924 0 10.5309 0 11.189C0 11.8368 0.120144 12.4532 0.360431 13.0382C0.611166 13.6232 0.961149 14.1404 1.41038 14.5896C1.85961 15.0389 2.37675 15.3836 2.9618 15.6239C3.54685 15.8746 4.16324 16 4.81097 16C5.46915 16 6.09076 15.8746 6.67581 15.6239C7.26086 15.3836 7.778 15.0389 8.22723 14.5896C8.80183 14.015 9.19882 13.3464 9.41822 12.5837C9.64806 11.8211 9.68462 11.0375 9.52791 10.2331L10.8913 8.86974C10.9331 8.82795 10.9644 8.78093 10.9853 8.7287C11.0167 8.66601 11.0323 8.59811 11.0323 8.52498V7.02057H12.5367C12.6934 7.02057 12.8136 6.97356 12.8972 6.87953C12.9912 6.7855 13.0382 6.66536 13.0382 6.5191V5.01469H14.5426C14.6157 5.01469 14.6784 5.00424 14.7307 4.98335C14.7933 4.95201 14.8508 4.91022 14.903 4.85798L15.906 3.85504C15.9269 3.81326 15.9478 3.76624 15.9687 3.71401C15.9896 3.65132 16 3.58342 16 3.51028V0.501469C16 0.355207 15.953 0.235064 15.859 0.141038C15.7649 0.0470127 15.6448 0 15.4985 0ZM4.96768 12.7875C4.79008 12.9651 4.5968 13.0957 4.38786 13.1792C4.18936 13.2524 3.96474 13.2889 3.71401 13.2889C3.46327 13.2889 3.23343 13.2419 3.02449 13.1479C2.82599 13.0539 2.63794 12.9337 2.46033 12.7875C2.28273 12.6099 2.15214 12.4218 2.06856 12.2233C1.99543 12.0144 1.95886 11.7845 1.95886 11.5338C1.95886 11.2831 2.00588 11.0584 2.0999 10.8599C2.19393 10.651 2.31407 10.4577 2.46033 10.2801C2.7842 9.95625 3.19164 9.79432 3.68266 9.79432C4.18413 9.79432 4.5968 9.95625 4.92067 10.2801C5.09827 10.4577 5.22364 10.651 5.29677 10.8599C5.38035 11.0584 5.42214 11.2831 5.42214 11.5338C5.42214 11.7845 5.38035 12.0144 5.29677 12.2233C5.22364 12.4218 5.11394 12.6099 4.96768 12.7875Z",fill:"#D3D3D3"}})]),e._v(" "),e.isLicenseActivated?e._e():a("span",[e._v("Activate License")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("Deactivate License")]):e._e()])])],1):e._e(),e._v(" "),e.isLicenseActivated?e._e():a("div",{staticClass:"go-pro-banner"},[a("div",{staticClass:"go-pro-banner__subtitle"},[e._v("Features & Integrations")]),e._v(" "),a("div",{staticClass:"go-pro-banner__title"},[e._v("Extend functionality with PRO Addons")]),e._v(" "),a("cx-vui-button",{staticClass:"go-pro-banner__button",attrs:{"button-style":"default",size:"mini",url:e.goProLink,"tag-name":"a",target:"_blank"}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Go Pro")])])])],1)]),e._v(" "),0!==Object.keys(e.installedAddonList).length?a("div",{staticClass:"jfb-addons"},[e._m(0),e._v(" "),a("div",{staticClass:"jfb-addons__list"},e._l(e.installedAddonList,(function(e,t){return a("AddonItem",{key:t,attrs:{"addon-data":e}})})),1)]):e._e(),e._v(" "),0!==Object.keys(e.availableAddonList).length?a("div",{staticClass:"jfb-addons"},[e._m(1),e._v(" "),a("div",{staticClass:"jfb-addons__list"},e._l(e.availableAddonList,(function(e,t){return a("AddonItem",{key:t,attrs:{"addon-data":e}})})),1)]):e._e()]),e._v(" "),a("cx-vui-popup",{staticClass:"jfb-addons-page__license-popup",attrs:{footer:!1,"body-width":"540px"},model:{value:e.licensePopupVisible,callback:function(t){e.licensePopupVisible=t},expression:"licensePopupVisible"}},[a("div",{staticClass:"cx-vui-popup__header-title",attrs:{slot:"title"},slot:"title"},[e.isLicenseActivated?e._e():a("span",[e._v("Activate License")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("Deactivate License")]):e._e()]),e._v(" "),a("div",{staticClass:"jfb-addons-page__license-form",attrs:{slot:"content"},slot:"content"},[e.isLicenseActivated?e._e():a("span",[e._v("Activate license for automatic updates and awesome support")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("By deactivating the license you will not be able to update the addons")]):e._e(),e._v(" "),a("cx-vui-input",{staticClass:"jfb-addons-page__license-input",attrs:{size:"fullwidth",type:"password",autofocus:!0,"prevent-wrap":!0,placeholder:"Just paste it here"},model:{value:e.licenseKey,callback:function(t){e.licenseKey=t},expression:"licenseKey"}}),e._v(" "),a("cx-vui-button",{staticClass:"jfb-addons-page__license-action",attrs:{"button-style":"accent",size:"mini",loading:e.licenseProccesingState},on:{click:e.licenseAction}},[a("span",{attrs:{slot:"label"},slot:"label"},[e.isLicenseActivated?e._e():a("span",[e._v("Activate")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("Deactivate")]):e._e()])])],1)])],1)};e._withStripped=!0;var t=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons__item",class:{activated:e.addonData.isActivated,"update-avaliable":e.updateAvaliable}},[a("div",{staticClass:"jfb-addons__item-inner",class:{"proccesing-state":e.proccesingState}},[a("div",{staticClass:"jfb-addons__item-thumb"},[e.addonData.isInstalled?e._e():a("div",{staticClass:"pro-badge"},[a("svg",{attrs:{width:"40",height:"20",viewBox:"0 0 40 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("rect",{attrs:{width:"40",height:"20",rx:"4",fill:"#EE7B16"}}),e._v(" "),a("path",{attrs:{d:"M10.625 10.8301V14H9.14258V5.46875H12.4062C13.3594 5.46875 14.1152 5.7168 14.6738 6.21289C15.2363 6.70898 15.5176 7.36523 15.5176 8.18164C15.5176 9.01758 15.2422 9.66797 14.6914 10.1328C14.1445 10.5977 13.377 10.8301 12.3887 10.8301H10.625ZM10.625 9.64062H12.4062C12.9336 9.64062 13.3359 9.51758 13.6133 9.27148C13.8906 9.02148 14.0293 8.66211 14.0293 8.19336C14.0293 7.73242 13.8887 7.36523 13.6074 7.0918C13.3262 6.81445 12.9395 6.67188 12.4473 6.66406H10.625V9.64062ZM19.9531 10.7129H18.3008V14H16.8184V5.46875H19.8184C20.8027 5.46875 21.5625 5.68945 22.0977 6.13086C22.6328 6.57227 22.9004 7.21094 22.9004 8.04688C22.9004 8.61719 22.7617 9.0957 22.4844 9.48242C22.2109 9.86523 21.8281 10.1602 21.3359 10.3672L23.252 13.9238V14H21.6641L19.9531 10.7129ZM18.3008 9.52344H19.8242C20.3242 9.52344 20.7148 9.39844 20.9961 9.14844C21.2773 8.89453 21.418 8.54883 21.418 8.11133C21.418 7.6543 21.2871 7.30078 21.0254 7.05078C20.7676 6.80078 20.3809 6.67188 19.8652 6.66406H18.3008V9.52344ZM31.1152 9.95703C31.1152 10.793 30.9707 11.5273 30.6816 12.1602C30.3926 12.7891 29.9785 13.2734 29.4395 13.6133C28.9043 13.9492 28.2871 14.1172 27.5879 14.1172C26.8965 14.1172 26.2793 13.9492 25.7363 13.6133C25.1973 13.2734 24.7793 12.791 24.4824 12.166C24.1895 11.541 24.041 10.8203 24.0371 10.0039V9.52344C24.0371 8.69141 24.1836 7.95703 24.4766 7.32031C24.7734 6.68359 25.1895 6.19727 25.7246 5.86133C26.2637 5.52148 26.8809 5.35156 27.5762 5.35156C28.2715 5.35156 28.8867 5.51953 29.4219 5.85547C29.9609 6.1875 30.377 6.66797 30.6699 7.29688C30.9629 7.92188 31.1113 8.65039 31.1152 9.48242V9.95703ZM29.6328 9.51172C29.6328 8.56641 29.4531 7.8418 29.0938 7.33789C28.7383 6.83398 28.2324 6.58203 27.5762 6.58203C26.9355 6.58203 26.4336 6.83398 26.0703 7.33789C25.7109 7.83789 25.5273 8.54688 25.5195 9.46484V9.95703C25.5195 10.8945 25.7012 11.6191 26.0645 12.1309C26.4316 12.6426 26.9395 12.8984 27.5879 12.8984C28.2441 12.8984 28.748 12.6484 29.0996 12.1484C29.4551 11.6484 29.6328 10.918 29.6328 9.95703V9.51172Z",fill:"white"}})])]),e._v(" "),a("img",{attrs:{src:e.addonData.thumb,alt:""}})]),e._v(" "),a("div",{staticClass:"jfb-addons__item-info"},[a("div",{staticClass:"jfb-addons__item-name"},[a("span",{staticClass:"label"},[e._v(e._s(e.addonData.name))]),e._v(" "),a("span",{staticClass:"version"},[e._v(e._s(e.addonData.currentVersion))])]),e._v(" "),e.$parent.isLicenseActivated?a("div",{staticClass:"jfb-addons__item-update"},[e.updateAvaliable?e._e():a("div",[e._v("Your plugin is up to date")]),e._v(" "),e.updateAvaliable?a("div",[e._v("\n\t\t\t\t\tVersion "),a("span",{staticClass:"latest-version"},[e._v(e._s(e.addonData.version))]),e._v(" available\n\t\t\t\t\t"),!e.activateLicenceActionAvaliable&&e.isLicenseMode?a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",loading:e.updatePluginProcessed},on:{click:e.updatePlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Update Now")])])]):e._e()],1):e._e()]):e._e(),e._v(" "),e.activateLicenceActionAvaliable?a("div",{staticClass:"jfb-addons__item-license"},[a("span",[e._v("License not activated")]),e._v(" "),a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link"},on:{click:e.activateLicense}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Activate Now")])])])],1):e._e(),e._v(" "),a("div",{staticClass:"jfb-addons__item-desc"},[a("span",{domProps:{innerHTML:e._s(e.addonData.desc)}}),e._v(" "),a("a",{attrs:{href:e.learnMoreUrl,target:"_blank"}},[e._v("Learn More")])]),e._v(" "),a("div",{staticClass:"jfb-addons__item-actions"},[e.installActionAvaliable?a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",loading:e.actionPluginProcessed},on:{click:e.installPlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Install Addon")])])]):e._e(),e._v(" "),e.activateActionAvaliable?a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",loading:e.actionPluginProcessed},on:{click:e.activatePlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Activate Addon")])])]):e._e(),e._v(" "),e.deactivateActionAvaliable?a("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",loading:e.actionPluginProcessed},on:{click:e.deactivatePlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Deactivate Addon")])])]):e._e()],1)])])])};t._withStripped=!0;const n={name:"addon-item",props:{addonData:Object},data:()=>({actionPlugin:!1,actionPluginRequest:null,actionPluginProcessed:!1,updatePluginProcessed:!1}),computed:{classList:function(){return["jfb-addons__item",!!this.updateAvaliable&&"update-avaliable",!!this.activateAvaliable&&"activate-avaliable"]},learnMoreAvaliable(){return!this.$parent.isLicenseActivated},activateLicenceActionAvaliable(){return!(this.$parent.isLicenseActivated||!this.$parent.isLicenseMode)},installActionAvaliable(){return!(this.addonData.isInstalled||!this.$parent.isLicenseActivated)},activateActionAvaliable(){return!(!this.addonData.isInstalled||this.addonData.isActivated)},deactivateActionAvaliable(){return!(!this.addonData.isInstalled||!this.addonData.isActivated)},updateAvaliable(){return!!this.addonData.updateAvaliable},isLicenseMode(){return this.$parent.isLicenseMode},proccesingState(){return this.actionPluginProcessed||this.updatePluginProcessed},learnMoreUrl(){const e=this.$parent.isLicenseActivated?"jetformbuilder-license":"license-not-activated",[t]=this.addonData.slug.split("/");return`${this.addonData.demo}?${this.$parent.getUtmParamsString({utm_source:"plugin",utm_medium:"addons",utm_campaign:t.replace("jet-form-builder-",""),utm_content:`${e}/${this.$parent.themeInfo.authorSlug}`})}`}},methods:{activateLicense(){window.jfbEventBus.$emit("showLicensePopup")},installPlugin(){this.actionPlugin="install",this.pluginAction()},deactivatePlugin(){this.actionPlugin="deactivate",this.pluginAction()},activatePlugin(){this.actionPlugin="activate",this.pluginAction()},updatePlugin(){this.updateAvaliable&&(this.actionPlugin="update",this.pluginAction())},pluginAction:function(){let e=this;e.actionPluginRequest=jQuery.ajax({type:"POST",url:window.JetFBPageConfig.ajaxUrl,dataType:"json",data:{action:`jfb_addon_${e.actionPlugin}_action`,nonce:window.JetFBPageConfig.nonce,data:{plugin:e.addonData.slug}},beforeSend:function(t,a){switch(null!==e.actionPluginRequest&&e.actionPluginRequest.abort(),e.actionPlugin){case"install":case"activate":case"deactivate":e.actionPluginProcessed=!0;break;case"update":e.updatePluginProcessed=!0}},success:function(t,a,n){t.success?(e.$CXNotice.add({message:t.message,type:"success",duration:4e3}),window.jfbEventBus.$emit("updateAddonData",{slug:e.addonData.slug,addonData:t.data,action:e.actionPlugin})):e.$CXNotice.add({message:t.message,type:"error",duration:4e3})},error:function(t,a,n){e.$CXNotice.add({message:n,type:"error",duration:4e3})},complete:()=>this.onEndRequest()})},onEndRequest(){switch(this.actionPlugin){case"install":case"activate":case"deactivate":this.actionPluginProcessed=!1;break;case"update":this.updatePluginProcessed=!1}}}};function i(e,t,a,n,i,s,o,d){var c,l="function"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=a,l._compiled=!0),n&&(l.functional=!0),s&&(l._scopeId="data-v-"+s),o?(c=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},l._ssrRegister=c):i&&(c=d?function(){i.call(this,(l.functional?this.parent:this).$root.$options.shadowRoot)}:i),c)if(l.functional){l._injectStyles=c;var r=l.render;l.render=function(e,t){return c.call(t),r(e,t)}}else{var u=l.beforeCreate;l.beforeCreate=u?[].concat(u,c):[c]}return{exports:e,options:l}}a(3517);const s=i(n,t,[],!1,null,null,null).exports,{applyFilters:o,doAction:d}=wp.hooks;window.jfbEventBus=new Vue;const c={name:"jfb-addons",components:{AddonItem:s},data:()=>({allAddons:window.JetFBPageConfig.allAddons||{},licenseList:window.JetFBPageConfig.licenseList||[],licenseKey:window.JetFBPageConfig.licenseKey||"",themeInfo:window.JetFBPageConfig.themeInfo||!1,miscInfo:window.JetFBPageConfig.miscInfo||!1,licenseActivated:!1,licensePopupVisible:!1,licenseProccesingState:!1,licenseAjaxAction:null,checkUpdatesAction:null,checkUpdatesProcessed:!1,proccesingState:!1}),mounted:function(){window.jfbEventBus.$on("updateAddonData",this.updateAddonData),window.jfbEventBus.$on("showLicensePopup",this.showLicensePopup)},computed:{isLicenseMode:()=>""!==window.JetFBPageConfig.licenseMode,isLicenseActivated(){return 0!==this.licenseList.length},licenseActionType(){return this.isLicenseActivated?"deactivate_license":"activate_license"},installedAddonList(){let e={};for(let t in this.allAddons)this.allAddons[t].isInstalled&&(e[t]=this.allAddons[t]);return e},availableAddonList(){let e={};for(let t in this.allAddons)this.allAddons[t].isInstalled||(e[t]=this.allAddons[t]);return e},goProLink(){return`${this.miscInfo.pricingPageUrl}?${this.getUtmParamsString({utm_source:"plugin",utm_medium:"addons",utm_campaign:"go-pro-button",utm_content:`license-not-activated/${this.themeInfo.authorSlug}`})}`}},methods:{showLicensePopup(){this.licensePopupVisible=!0},updateAddonData(e){let t=e.slug,a=e.addonData,n=e.action;this.allAddons[t]=Object.assign({},this.allAddons[t],a),["activate","deactivate","update"].includes(n)&&(this.proccesingState=!0,setTimeout((function(){window.location.reload()}),1e3))},licenseAction(){var e=this;if(""===this.licenseKey)return e.$CXNotice.add({message:"License key is missing",type:"error",duration:4e3}),!1;this.licenseProccesingState=!0,e.licenseAjaxAction=jQuery.ajax({type:"POST",url:window.JetFBPageConfig.ajaxUrl,dataType:"json",data:{action:"jfb_license_action",nonce:window.JetFBPageConfig.nonce,data:{license:e.licenseKey,action:e.licenseActionType}},beforeSend:(t,a)=>{null!==e.licenseAjaxAction&&e.licenseAjaxAction.abort()},success:(t,a,n)=>{if(e.licenseProccesingState=!1,t.success){e.$CXNotice.add({message:t.message,type:"success",duration:4e3});let a=t.data;switch(a.license_key=e.licenseKey,e.licenseActionType){case"activate_license":e.licenseList.push(a);break;case"deactivate_license":e.licenseList=e.licenseList.filter((t=>e.licenseKey!==t.license_key)),e.licenseKey=""}e.licensePopupVisible=!1}else e.$CXNotice.add({message:t.message,type:"error",duration:4e3})}})},checkPluginsUpdate:function(){var e=this;e.checkUpdatesAction=jQuery.ajax({type:"POST",url:window.JetFBPageConfig.ajaxUrl,dataType:"json",data:{action:"jfb_license_service_action",nonce:window.JetFBPageConfig.nonce,data:{action:"check-plugin-update"}},beforeSend:(t,a)=>{null!==e.checkUpdatesAction&&e.checkUpdatesAction.abort(),e.checkUpdatesProcessed=!0},success:function(t,a,n){e.checkUpdatesProcessed=!1,t.success?(e.$CXNotice.add({message:t.message,type:"success",duration:4e3}),e.proccesingState=!0,setTimeout((function(){window.location.reload()}),1e3)):e.$CXNotice.add({message:t.message,type:"error",duration:4e3})}})},addLicense(e){this.licenseList.push(e),self.proccesingState=!0,setTimeout((function(){window.location.reload()}),3e3)},removeLicense(e){let t=!1;for(let a in this.licenseList)if(this.licenseList[a].licenseKey===e){t=a;break}t&&this.licenseList.splice(t,1),this.licensePopupVisible=!1,setTimeout((function(){window.location.reload()}),500)},getUtmParamsString(e={}){let t=!1;return 0===Object.keys(e).length||(t=Object.keys(e).map((t=>[t,e[t]].map(encodeURIComponent).join("="))).join("&")),t}}};a(7101);const l=i(c,e,[function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons__header"},[a("span",{staticClass:"cx-vui-subtitle"},[e._v("Your Installed Addons")])])},function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons__header"},[a("span",{staticClass:"cx-vui-subtitle"},[e._v("All Available Addons")])])}],!1,null,null,null).exports,{renderCurrentPage:r}=window.JetFBActions;r(l)})()})(); \ No newline at end of file diff --git a/assets/build/admin/pages/jfb-settings.asset.php b/assets/build/admin/pages/jfb-settings.asset.php index 47b4476ae..455eef387 100644 --- a/assets/build/admin/pages/jfb-settings.asset.php +++ b/assets/build/admin/pages/jfb-settings.asset.php @@ -1 +1 @@ - array('wp-i18n'), 'version' => '7c4b81a0908947caebc0'); + array('wp-i18n'), 'version' => 'c7318b86f3ea24c07f14'); diff --git a/assets/build/admin/pages/jfb-settings.js b/assets/build/admin/pages/jfb-settings.js index f7422552d..0bb477ac2 100644 --- a/assets/build/admin/pages/jfb-settings.js +++ b/assets/build/admin/pages/jfb-settings.js @@ -1 +1 @@ -(()=>{var e={4495(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,".jfb-content{display:flex;flex-wrap:wrap;gap:2em;margin-top:1em}.jfb-content-main{flex:1}",""]);const o=r},6875(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,".jet-form-builder-page__banner.useful{padding:20px 30px}.jet-form-builder-page__panel.help{width:100%}@media(max-width: 1140px){.jet-form-builder-page__panel.help{width:50%}}.jet-form-builder-page__panel.help .jet-form-builder-page__panel-content{display:flex;flex-direction:column;margin-top:12px;border-top:1px solid #dcdcdd;padding-top:23px}.jet-form-builder-page__panel.help .help-center-link{display:flex;justify-content:flex-start;margin-bottom:22px}.jet-form-builder-page__panel.help .help-center-link:last-child{margin-bottom:0}.jet-form-builder-page__panel.help .help-center-link a{display:flex;justify-content:flex-start;align-items:center;font-size:14px;line-height:18px;color:#007cba;text-decoration:none}.jet-form-builder-page__panel.help .help-center-link a:hover{color:#066ea2;text-decoration:underline}.jet-form-builder-page__panel.help .help-center-link a .help-center-link-icon{margin-right:28px}",""]);const o=r},9642(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,"\nspan[data-v-14b2e3f9] {\n\tbackground-color: #007CBA;\n\tpadding: 0.1em 0.3em;\n\ttext-transform: uppercase;\n\tborder-radius: 3px;\n\tcolor: white;\n\tfont-size: 12px;\n\tfont-style: normal;\n\tfont-weight: 700;\n\tline-height: 16px;\n\tletter-spacing: 0;\n\ttext-align: left;\n}\n",""]);const o=r},1027(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,"\n.jfb-has-error .cx-vui-input[data-v-2967d914],\n.jfb-has-error input[data-v-2967d914] {\n border-color: #dc2626 !important;\n outline: none;\n}\n.jfb-field-error[data-v-2967d914] {\n margin: 6px 0 12px;\n color: #dc2626;\n font-size: 12px;\n line-height: 1.4;\n text-align:right;\n}\n",""]);const o=r},1982(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,"\n.user-journey-select select.cx-vui-select {\n\tpadding: 6px 24px 6px 12px;\n}\n",""]);const o=r},935(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var a="",n=void 0!==t[5];return t[4]&&(a+="@supports (".concat(t[4],") {")),t[2]&&(a+="@media ".concat(t[2]," {")),n&&(a+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),a+=e(t),n&&(a+="}"),t[2]&&(a+="}"),t[4]&&(a+="}"),a}).join("")},t.i=function(e,a,n,i,s){"string"==typeof e&&(e=[[null,e,void 0]]);var r={};if(n)for(var o=0;o0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=s),a&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=a):u[2]=a),i&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=i):u[4]="".concat(i)),t.push(u))}},t}},6758(e){"use strict";e.exports=function(e){return e[1]}},2995(e,t,a){var n=a(4495);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("14f9a7b5",n,!1,{})},52(e,t,a){var n=a(6875);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("3f74c29a",n,!1,{})},5654(e,t,a){var n=a(9642);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("2ac5270a",n,!1,{})},7167(e,t,a){var n=a(1027);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("75f68a91",n,!1,{})},74(e,t,a){var n=a(1982);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("df5e862a",n,!1,{})},611(e,t,a){"use strict";function n(e,t){for(var a=[],n={},i=0;ih});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},r=i&&(document.head||document.getElementsByTagName("head")[0]),o=null,l=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",_="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function h(e,t,a,i){c=a,d=i||{};var r=n(e,t);return f(r),function(t){for(var a=[],i=0;ia.parts.length&&(n.parts.length=a.parts.length)}else{var r=[];for(i=0;i{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e={};a.r(e),a.d(e,{component:()=>he,displayButton:()=>fe,title:()=>_e});var t={};a.r(t),a.d(t,{component:()=>je,title:()=>xe});var n={};a.r(n),a.d(n,{component:()=>$e,title:()=>Oe});var i={};a.r(i),a.d(i,{component:()=>Ne,title:()=>Ge});var s={};a.r(s),a.d(s,{component:()=>Qe,displayButton:()=>et,title:()=>Xe});var r={};a.r(r),a.d(r,{component:()=>ut,displayButton:()=>dt,title:()=>ct});var o={};a.r(o),a.d(o,{component:()=>wt,displayButton:()=>xt,title:()=>yt});var l={};a.r(l),a.d(l,{component:()=>Pt,title:()=>qt});var c=function(){var e=this,t=e.$createElement;return(e._self._c||t)("span",[e._v(e._s(e.__("Pro","jet-form-builder")))])};c._withStripped=!0;const{i18n:u}=JetFBMixins,d={name:"IsPROIcon",mixins:[u],props:{isActive:{type:Boolean,default:!1}}};function p(e,t,a,n,i,s,r,o){var l,c="function"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=a,c._compiled=!0),n&&(c.functional=!0),s&&(c._scopeId="data-v-"+s),r?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},c._ssrRegister=l):i&&(l=o?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}a(5654);const h=p(d,c,[],!1,null,"14b2e3f9",null).exports,{__:f}=wp.i18n,g={title:f("HubSpot API","jet-form-builder"),component:{name:"hubspot"},disabled:!0,icon:h},{__:b}=wp.i18n,m={title:b("Address Autocomplete","jet-form-builder"),component:{name:"jfb-address-tab"},disabled:!0,icon:h},{__:v}=wp.i18n,y={title:v("ConvertKit API","jet-form-builder"),component:{name:"convert-kit-tab"},disabled:!0,icon:h},{__:w}=wp.i18n,x={title:w("MailerLite API","jet-form-builder"),component:{name:"mailer-lite-tab"},disabled:!0,icon:h},{__:j}=wp.i18n,k={title:j("Moosend API","jet-form-builder"),component:{name:"moosend"},disabled:!0,icon:h},{__:C}=wp.i18n,S={title:C("Stripe Gateway API","jet-form-builder"),component:{name:"stripe"},disabled:!0,icon:h},{addFilter:A}=wp.hooks,B=[m,g,y,x,k],L=[S],O=e=>e.map(e=>e.component.name);window?.JetFBPageConfig?.is_active||(A("jet.fb.register.settings-page.tabs","jet-form-builder",e=>{const t=O(e);for(const a of B)t.includes(a.component.name)||e.push(a);return e},1e3),A("jet.fb.register.gateways","jet-form-builder",e=>{const t=O(e);for(const a of L)t.includes(a.component.name)||e.push(a);return e},1e3));var $=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("FormBuilderPage",{attrs:{title:e.__("JetFormBuilder Settings","jet-form-builder")}},[a("div",{staticClass:"jfb-content"},[a("AlertsList"),e._v(" "),a("div",{staticClass:"jfb-content-main"},[a("div",{staticClass:"cx-vui-panel"},[a("CxVuiTabs",{attrs:{"in-panel":!1,value:e.activeTabSlug,layout:"vertical"},on:{input:e.onChangeActiveTab}},e._l(e.tabs,function(t,n){var i=t.displayButton;void 0===i&&(i=!0);var s=function(e,t){var a={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&-1===t.indexOf(n)&&(a[n]=e[n]);return a}(t,["displayButton"]);return a("CxVuiTabsPanel",{key:s.component.name,attrs:{name:s.component.name,label:s.title,disabled:s.disabled,icon:s.icon},scopedSlots:e._u([s.component.render?{key:"default",fn:function(){return[a("keep-alive",[a(s.component,{ref:"tabComponents",refInFor:!0,tag:"component",attrs:{incoming:e.getIncoming(s.component.name),"inner-slugs":e.activeTabInnerSlugs||[]}})],1),e._v(" "),i?a("cx-vui-button",{attrs:{"button-style":"accent",loading:e.loadingTab[s.component.name]},on:{click:function(t){return e.onSaveTab(n,s.component.name)}},scopedSlots:e._u([{key:"label",fn:function(){return[a("span",[e._v("Save")])]},proxy:!0}],null,!0)}):e._e()]},proxy:!0}:null],null,!0)})}),1)],1)]),e._v(" "),a("SettingsSideBar")],1)])};$._withStripped=!0;var q=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",e._l(e.captcha,function(t,n){return a("CxVuiCollapseMini",{key:t.component.name,attrs:{"with-panel":"",icon:t.icon,label:e.getTabTitle(t),disabled:t.disabled,"initial-active":e.isActive(t.component.name)},on:{change:function(a){return e.onChangeActive(a,t.component.name)}}},[a("keep-alive",[a(t.component,{ref:"captcha",refInFor:!0,tag:"component",attrs:{incoming:e.getIncomingCaptcha(t.component.name)}})],1),e._v(" "),a("cx-vui-button",{attrs:{"button-style":"accent",loading:e.loadingGateways[t.component.name]},on:{click:function(a){return e.onSaveGateway(n,t.component.name)}}},[a("span",{attrs:{slot:"label"},slot:"label"},[e._v("Save")])])],1)}),1)};q._withStripped=!0;var P=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-input",{attrs:{label:e.label.key,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.key,callback:function(t){e.$set(e.storage,"key",t)},expression:"storage.key"}}),e._v(" "),a("cx-vui-input",{attrs:{label:e.label.secret,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}}),e._v(" "),a("cx-vui-input",{attrs:{type:"number",min:0,max:1,step:.1,label:e.label.threshold,description:e.help.threshold,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.threshold,callback:function(t){e.$set(e.storage,"threshold",t)},expression:"storage.threshold"}}),e._v(" "),a("p",{staticClass:"fb-description"},[e._v(e._s(e.help.apiPref)+" "),a("a",{attrs:{href:e.help.apiLink,target:"_blank"}},[e._v(e._s(e.help.apiLinkLabel))])])],1)};P._withStripped=!0;const{__:T}=wp.i18n,E={key:T("Site Key","jet-form-builder"),secret:T("Secret Key","jet-form-builder"),threshold:T("Score Threshold","jet-form-builder")},M={threshold:T("It should be a value between 0 and 1, default 0.5 (1.0 is very likely a good interaction, 0.0 is very likely a bot).","jet-form-builder"),apiPref:T("Register reCAPTCHA v3 keys","jet-form-builder"),apiLinkLabel:T("here","jet-form-builder"),apiLink:"https://www.google.com/recaptcha/admin/create"},J={component:p({name:"google",props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:E,help:M,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},P,[],!1,null,null,null).exports};var V=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("SimpleWrapperComponent",{attrs:{"element-id":"hcaptcha_key"},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.label.key))]},proxy:!0},{key:"description",fn:function(){return[a("p",{staticClass:"fb-description"},[e._v("\n\t\t\t\t\t"+e._s(e.__("You can find it on this page in the first column of Sitekey.","jet-form-builder")+" ")+"\n\t\t\t\t\t"),a("ExternalLink",{attrs:{href:"https://dashboard.hcaptcha.com/sites"}},[e._v("\n\t\t\t\t\t\t"+e._s(e.__("Go to the dashboard of sites","jet-form-builder"))+"\n\t\t\t\t\t")])],1)]},proxy:!0},{key:"default",fn:function(){return[a("input",{directives:[{name:"model",rawName:"v-model",value:e.storage.key,expression:"storage.key"}],staticClass:"cx-vui-input size-fullwidth",attrs:{id:"hcaptcha_key",type:"text"},domProps:{value:e.storage.key},on:{input:function(t){t.target.composing||e.$set(e.storage,"key",t.target.value)}}})]},proxy:!0}])}),e._v(" "),a("SimpleWrapperComponent",{attrs:{"element-id":"hcaptcha_secret"},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.label.secret))]},proxy:!0},{key:"description",fn:function(){return[a("p",{staticClass:"fb-description"},[e._v("\n\t\t\t\t\t"+e._s(e.__("You can find it on the settings page,\nthis will be the first field.","jet-form-builder")+" ")+"\n\t\t\t\t\t"),a("ExternalLink",{attrs:{href:"https://dashboard.hcaptcha.com/settings"}},[e._v("\n\t\t\t\t\t\t"+e._s(e.__("Go to the Settings page","jet-form-builder"))+"\n\t\t\t\t\t")])],1)]},proxy:!0},{key:"default",fn:function(){return[a("input",{directives:[{name:"model",rawName:"v-model",value:e.storage.secret,expression:"storage.secret"}],staticClass:"cx-vui-input size-fullwidth",attrs:{id:"hcaptcha_secret",type:"text"},domProps:{value:e.storage.secret},on:{input:function(t){t.target.composing||e.$set(e.storage,"secret",t.target.value)}}})]},proxy:!0}])})],1)};V._withStripped=!0;const{__:I}=wp.i18n,R={key:I("Site Key","jet-form-builder"),secret:I("Secret Key","jet-form-builder")},{SimpleWrapperComponent:F,ExternalLink:G}=JetFBComponents,{i18n:N}=JetFBMixins,z={component:p({name:"hcaptcha",components:{SimpleWrapperComponent:F,ExternalLink:G},mixins:[N],props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:R,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},V,[],!1,null,null,null).exports};var U=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("SimpleWrapperComponent",{attrs:{"element-id":"friendly_key"},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.label.key))]},proxy:!0},{key:"description",fn:function(){return[a("p",{staticClass:"fb-description"},[e._v("\n\t\t\t\t"+e._s(e.__("It can be found on the page listing your Applications. Or follow this","jet-form-builder")+" ")+"\n\t\t\t\t"),a("ExternalLink",{attrs:{href:"https://docs.friendlycaptcha.com/#/installation?id=_1-generating-a-sitekey"}},[e._v("\n\t\t\t\t\t"+e._s(e.__("guide","jet-form-builder"))+"\n\t\t\t\t")])],1)]},proxy:!0},{key:"default",fn:function(){return[a("input",{directives:[{name:"model",rawName:"v-model",value:e.storage.key,expression:"storage.key"}],staticClass:"cx-vui-input size-fullwidth",attrs:{id:"friendly_key",type:"text"},domProps:{value:e.storage.key},on:{input:function(t){t.target.composing||e.$set(e.storage,"key",t.target.value)}}})]},proxy:!0}])}),e._v(" "),a("cx-vui-input",{attrs:{"element-id":"friendly_secret",label:e.label.secret,description:e.__("It can be found on the page listing your API keys.","jet-form-builder"),"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}})],1)};U._withStripped=!0;const{__:H}=wp.i18n,K={key:H("Site Key","jet-form-builder"),secret:H("Secret Key","jet-form-builder")},{SimpleWrapperComponent:Z,ExternalLink:W}=JetFBComponents,{i18n:D}=JetFBMixins,Y={component:p({name:"friendly",components:{SimpleWrapperComponent:Z,ExternalLink:W},mixins:[D],props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:K,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},U,[],!1,null,null,null).exports};var X=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-input",{attrs:{"element-id":"turnstile_key",label:e.label.key,description:e.__("Read the hint to the Secret Key field","jet-form-builder"),"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.key,callback:function(t){e.$set(e.storage,"key",t)},expression:"storage.key"}}),e._v(" "),a("cx-vui-input",{attrs:{"element-id":"turnstile_secret",label:e.label.secret,description:e.__("You can find both keys on your Turnstile Site settings page","jet-form-builder"),"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}}),e._v(" "),a("p",{staticClass:"fb-description"},[e._v("\n\t\t"+e._s(e.__("Didn't find it? Here is","jet-form-builder")+" ")+"\n\t\t"),a("ExternalLink",{attrs:{href:"https://developers.cloudflare.com/turnstile/get-started/#get-a-sitekey-and-secret-key"}},[e._v("\n\t\t\t"+e._s(e.__("a more detailed description","jet-form-builder"))+"\n\t\t")])],1)],1)};X._withStripped=!0;const{__:Q}=wp.i18n,ee={key:Q("Site Key","jet-form-builder"),secret:Q("Secret Key","jet-form-builder")},{i18n:te}=JetFBMixins,{ExternalLink:ae}=JetFBComponents,ne={component:p({name:"turnstile",mixins:[te],components:{ExternalLink:ae},props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:ee,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},X,[],!1,null,null,null).exports},{applyFilters:ie}=wp.hooks,{SaveTabByAjax:se,GetIncoming:re}=window.JetFBMixins,{CxVuiCollapseMini:oe}=window.JetFBComponents;window.jfbEventBus=window.jfbEventBus||new Vue({});const le=ie("jet.fb.register.captcha",[J,z,Y,ne]);let ce=()=>{};const ue={name:"captcha-tab",props:{incoming:{type:Object,default:{}},innerSlugs:Array},components:{CxVuiCollapseMini:oe},mixins:[se],data(){return{captcha:le,storage:JSON.parse(JSON.stringify(this.incoming)),settings:JSON.parse(JSON.stringify(window.JetFBPageConfig["captcha-tab-config"])),activeGatewaysTabs:[],loadingGateways:{}}},created(){jfbEventBus.$on("request-state",e=>{const{state:t,slug:a}=e;this.$set(this.loadingGateways,a,"begin"===t)}),jfbEventBus.$on("change-tab",function({slug:e}){if(e!==this.$options.name)return!1;window.location.hash="#"+[this.$options.name,...this.activeGatewaysTabs].join("__")}.bind(this)),this.activeGatewaysTabs=this.innerSlugs,ce=_.debounce(()=>{this.saveByAjax(this,this.$options.name)},1e3)},methods:{getIncomingCaptcha(e){var t;return null!==(t=this.incoming?.[e])&&void 0!==t?t:{}},getTabTitle(e){const{title:t}=e;if(t?.length)return t;const{name:a}=e.component,n=this.settings.find(({value:e})=>e===a);return n?.label||"Undefined captcha title"},onChangeActive(e,t){let[a,...n]=window.location.hash.replace("#","").split("__");e?n.push(t):n=n.filter(a=>t!==a||e),this.changeGatewaysTabs(n),window.location.hash=[this.$options.name,...n].join("__")},changeGatewaysTabs(e){this.activeGatewaysTabs=e},isActive(e){return Boolean(this.activeGatewaysTabs?.includes(e))},changeVal(e,t){this.$set(this.storage,e,t),ce()},onSaveGateway(e,t){const a=this.$refs.captcha[e];this.saveByAjax(a,t)},getAjaxObject(e,t){const a={url:window.ajaxurl,type:"POST",dataType:"json"},n=e.getRequestOnSave();return a.data={action:`jet_fb_save_tab__${this.$options.name}`,...t===this.$options.name?n.data:{[t]:n.data}},window?.JetFBPageConfigPackage?.nonce&&(a.data._nonce=window.JetFBPageConfigPackage.nonce),a},getRequestOnSave(){return{data:{...this.storage}}}}},de=p(ue,q,[],!1,null,null,null).exports,{__:pe}=wp.i18n,_e=pe("Captcha Settings","jet-form-builder"),he=de,fe=!1;var ge=function(){var e=this,t=e.$createElement;return(e._self._c||t)("cx-vui-input",{attrs:{label:e.label.api_key,"wrapper-css":["equalwidth"],description:e.help.apiPref+' '+e.help.apiLinkLabel+"",size:"fullwidth"},model:{value:e.api_key,callback:function(t){e.api_key=t},expression:"api_key"}})};ge._withStripped=!0;const{__:be}=wp.i18n,me={api_key:be("API Key","jet-form-builder")},ve={apiPref:be("How to obtain your MailChimp API Key? More info","jet-form-builder"),apiLinkLabel:be("here","jet-form-builder"),apiLink:"https://mailchimp.com/help/about-api-keys/"},ye=p({name:"mailchimp-tab",props:{incoming:{type:Object,default:{}}},data:()=>({label:me,help:ve,api_key:""}),created(){this.api_key=this.incoming.api_key||""},methods:{getRequestOnSave(){return{data:{api_key:this.api_key}}}}},ge,[],!1,null,null,null).exports,{__:we}=wp.i18n,xe=we("MailChimp API","jet-form-builder"),je=ye;var ke=function(){var e=this,t=e.$createElement;return(e._self._c||t)("cx-vui-input",{attrs:{label:e.label.api_key,"wrapper-css":["equalwidth"],description:e.help.apiPref+' '+e.help.apiLinkLabel+"",size:"fullwidth"},model:{value:e.api_key,callback:function(t){e.api_key=t},expression:"api_key"}})};ke._withStripped=!0;const{__:Ce}=wp.i18n,Se={api_key:Ce("API Key","jet-form-builder")},Ae={apiPref:Ce("How to obtain your GetResponse API Key? More info","jet-form-builder"),apiLinkLabel:Ce("here","jet-form-builder"),apiLink:"https://app.getresponse.com/api"},Be=p({name:"get-response-tab",props:{incoming:{type:Object,default:{}}},data:()=>({label:Se,help:Ae,api_key:""}),created(){this.api_key=this.incoming.api_key||""},methods:{getRequestOnSave(){return{data:{api_key:this.api_key}}}}},ke,[],!1,null,null,null).exports,{__:Le}=wp.i18n,Oe=Le("GetResponse API","jet-form-builder"),$e=Be;var qe=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-switcher",{attrs:{name:"use_gateways","wrapper-css":["equalwidth"],label:e.label.use_gateways,description:e.help.use_gateways,value:e.storage.use_gateways},on:{input:function(t){return e.changeVal("use_gateways",t)}}}),e._v(" "),e.storage.use_gateways?a("cx-vui-switcher",{attrs:{name:"enable_test_mode","wrapper-css":["equalwidth"],description:e.help.enable_test_mode,label:e.label.enable_test_mode,value:e.storage.enable_test_mode},on:{input:function(t){return e.changeVal("enable_test_mode",t)}}}):e._e(),e._v(" "),e.storage.use_gateways?[a("div",{staticClass:"cx-vui-inner-panel"},e._l(e.gateways,function(t,n){return a("CxVuiCollapseMini",{key:t.component.name,attrs:{"with-panel":"",icon:t.icon,label:t.title,disabled:t.disabled,"initial-active":e.isActive(t.component.name)},on:{change:function(a){return e.onChangeActive(a,t.component.name)}}},[a("keep-alive",[a(t.component,{ref:"gateways",refInFor:!0,tag:"component",attrs:{incoming:e.getIncoming(t.component.name)}})],1),e._v(" "),a("cx-vui-button",{attrs:{"button-style":"accent",loading:e.loadingGateways[t.component.name]},on:{click:function(a){return e.onSaveGateway(n,t.component.name)}}},[a("span",{attrs:{slot:"label"},slot:"label"},[e._v("Save")])])],1)}),1)]:e._e()],2)};qe._withStripped=!0;const Pe=window.wp.i18n,Te={use_gateways:(0,Pe.__)("Enable Gateways","jet-form-builder"),enable_test_mode:(0,Pe.__)("Enable Test Mode","jet-form-builder")},Ee={enable_test_mode:(0,Pe.__)("This option takes precedence over the jet-form-builder/gateways/paypal/sandbox-mode filter. As of right now, works only for PayPal payment system","jet-form-builder"),use_gateways:(0,Pe.__)("Activate payment gateways for the forms. This option takes precedence over the jet-form-builder/allow-gateways filter","jet-form-builder")};var Me=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-input",{attrs:{label:e.label.client_id,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.client_id,callback:function(t){e.$set(e.storage,"client_id",t)},expression:"storage.client_id"}}),e._v(" "),a("cx-vui-input",{attrs:{label:e.label.secret,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}})],1)};Me._withStripped=!0;const{__:Je}=wp.i18n,Ve={client_id:Je("Client ID","jet-form-builder"),secret:Je("Secret Key","jet-form-builder")},Ie={},Re=p({name:"paypal",props:{incoming:{type:Object,default:()=>({})}},data:()=>({label:Ve,help:Ie,storage:{}}),created(){this.storage=JSON.parse(JSON.stringify(this.incoming))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},Me,[],!1,null,null,null).exports,{__:Fe}=wp.i18n,Ge=Fe("PayPal Gateway API","jet-form-builder"),Ne=Re,{applyFilters:ze}=wp.hooks,{SaveTabByAjax:Ue,GetIncoming:He}=window.JetFBMixins,{CxVuiCollapseMini:Ke}=window.JetFBComponents;window.jfbEventBus=window.jfbEventBus||new Vue({});const Ze=ze("jet.fb.register.gateways",[i]);let We=()=>{};const De=p({name:"payments-gateways",props:{incoming:{type:Object,default:()=>({})},innerSlugs:Array},components:{CxVuiCollapseMini:Ke},mixins:[Ue,He],data(){return{label:Te,help:Ee,storage:JSON.parse(JSON.stringify(this.incoming)),gateways:Ze,loadingGateways:{},activeGatewaysTabs:[]}},created(){jfbEventBus.$on("request-state",e=>{const{state:t,slug:a}=e;this.$set(this.loadingGateways,a,"begin"===t)}),jfbEventBus.$on("change-tab",function({slug:e}){if(e!==this.$options.name)return!1;window.location.hash="#"+[this.$options.name,...this.activeGatewaysTabs].join("__")}.bind(this)),this.activeGatewaysTabs=this.innerSlugs,We=_.debounce(()=>{this.saveByAjax(this,this.$options.name)},1e3)},methods:{onChangeActive(e,t){let[a,...n]=window.location.hash.replace("#","").split("__");e?n.push(t):n=n.filter(a=>t!==a||e),this.changeGatewaysTabs(n),window.location.hash=[this.$options.name,...n].join("__")},changeGatewaysTabs(e){this.activeGatewaysTabs=e},isActive(e){return Boolean(this.activeGatewaysTabs.length&&this.activeGatewaysTabs.includes(e))},changeVal(e,t){this.$set(this.storage,e,t),We()},onSaveGateway(e,t){const a=this.$refs.gateways[e];this.saveByAjax(a,t)},getRequestOnSave(){return{data:{...this.storage}}}}},qe,[],!1,null,null,null).exports,{__:Ye}=wp.i18n,Xe=Ye("Payments Gateways","jet-form-builder"),Qe=De,et=!1;var tt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[a("cx-vui-switcher",{attrs:{name:"enable_dev_mode","wrapper-css":["equalwidth"],label:e.loading.enable_dev_mode?e.label.enable_dev_mode+" (loading...)":e.label.enable_dev_mode,description:e.help.enable_dev_mode,value:!!e.storage.hasOwnProperty("enable_dev_mode")&&e.storage.enable_dev_mode,disabled:e.isLoading},on:{input:function(t){return e.changeVal("enable_dev_mode",t)}}}),e._v(" "),a("cx-vui-switcher",{attrs:{name:"clear_on_uninstall","wrapper-css":["equalwidth"],label:e.loading.clear_on_uninstall?e.label.clear_on_uninstall+" (loading...)":e.label.clear_on_uninstall,description:e.help.clear_on_uninstall,value:!!e.storage.hasOwnProperty("clear_on_uninstall")&&e.storage.clear_on_uninstall,disabled:e.isLoading},on:{input:function(t){return e.changeVal("clear_on_uninstall",t)}}}),e._v(" "),a("cx-vui-input",{attrs:{name:"form_records_access_capability","wrapper-css":["equalwidth"],size:"fullwidth",label:e.loading.form_records_access_capability?e.label.form_records_access_capability+" (loading...)":e.label.form_records_access_capability,description:e.help.form_records_access_capability,value:e.storage.hasOwnProperty("form_records_access_capability")?e.storage.form_records_access_capability:"manage_options",disabled:e.isLoading},on:{input:function(t){return e.changeVal("form_records_access_capability",t)}}}),e._v(" "),a("cx-vui-select",{attrs:{name:"ssr_validation_method","wrapper-css":["equalwidth"],size:"fullwidth",label:e.loading.ssr_validation_method?e.label.ssr_validation_method+" (loading...)":e.label.ssr_validation_method,description:e.help.ssr_validation_method,value:e.storage.hasOwnProperty("ssr_validation_method")?e.storage.ssr_validation_method:"rest","options-list":e.selectOptions,disabled:e.isLoading},on:{input:function(t){return e.changeVal("ssr_validation_method",t)}}}),e._v(" "),a("cx-vui-f-select",{attrs:{name:"self_promotable_roles",label:e.loading.self_promotable_roles?e.label.self_promotable_roles+" (loading...)":e.label.self_promotable_roles,description:e.help.self_promotable_roles,value:e.selectedSelfPromotableRoles,"options-list":e.availableRoles,multiple:!0,disabled:e.isLoading,"wrapper-css":["equalwidth"],size:"fullwidth"},on:{"on-change":function(t){return e.changeSelfPromotableRoles(t)}}}),e._v(" "),a("cx-vui-component-wrapper",{attrs:{label:e.__("Form Accessibility","jet-form-builder"),"wrapper-css":["equalwidth"]}}),e._v(" "),a("div",{staticClass:"cx-vui-inner-panel"},[a("cx-vui-switcher",{attrs:{name:"disable_next_button","wrapper-css":["equalwidth"],label:e.loading.disable_next_button?e.label.disable_next_button+" (loading...)":e.label.disable_next_button,description:e.help.disable_next_button,value:!e.storage.hasOwnProperty("disable_next_button")||e.storage.disable_next_button,disabled:e.isLoading},on:{input:function(t){return e.changeVal("disable_next_button",t)}}}),e._v(" "),a("cx-vui-switcher",{attrs:{name:"scroll_on_next","wrapper-css":["equalwidth"],label:e.loading.scroll_on_next?e.label.scroll_on_next+" (loading...)":e.label.scroll_on_next,description:e.help.scroll_on_next,value:!!e.storage.hasOwnProperty("scroll_on_next")&&e.storage.scroll_on_next,disabled:e.isLoading},on:{input:function(t){return e.changeVal("scroll_on_next",t)}}}),e._v(" "),a("cx-vui-switcher",{attrs:{name:"auto_focus","wrapper-css":["equalwidth"],label:e.loading.auto_focus?e.label.auto_focus+" (loading...)":e.label.auto_focus,description:e.help.auto_focus,value:!!e.storage.hasOwnProperty("auto_focus")&&e.storage.auto_focus,disabled:e.isLoading},on:{input:function(t){return e.changeVal("auto_focus",t)}}})],1),e._v(" "),a("cx-vui-component-wrapper",{attrs:{label:e.__("Form Request Args","jet-form-builder"),"wrapper-css":["equalwidth"]}}),e._v(" "),a("cx-vui-input",{attrs:{name:"gfb_request_args_key","wrapper-css":["equalwidth",e.errors.gfb_request_args_key?"jfb-has-error":""],size:"fullwidth",label:"Request key",description:"Unique form parameter (key)",value:e.storage.hasOwnProperty("gfb_request_args_key")?e.storage.gfb_request_args_key:"1111",disabled:e.isLoading},on:{input:function(t){return e.changeVal("gfb_request_args_key",t)}}}),e._v(" "),e.errors.gfb_request_args_key?a("div",{staticClass:"jfb-field-error"},[e._v("\n "+e._s(e.errors.gfb_request_args_key)+"\n ")]):e._e(),e._v(" "),a("cx-vui-input",{attrs:{name:"gfb_request_args_value","wrapper-css":["equalwidth",e.errors.gfb_request_args_value?"jfb-has-error":""],size:"fullwidth",label:"Request value",description:"Unique form parameter (value)",value:e.storage.hasOwnProperty("gfb_request_args_value")?e.storage.gfb_request_args_value:"2222",disabled:e.isLoading},on:{input:function(t){return e.changeVal("gfb_request_args_value",t)}}}),e._v(" "),e.errors.gfb_request_args_value?a("div",{staticClass:"jfb-field-error"},[e._v("\n "+e._s(e.errors.gfb_request_args_value)+"\n ")]):e._e()],1)};tt._withStripped=!0;const at={enable_dev_mode:(0,Pe.__)("Enable Dev-Mode","jet-form-builder"),disable_next_button:(0,Pe.__)('Disable "Next" button',"jet-form-builder"),clear_on_uninstall:(0,Pe.__)("Clear plugin data after the uninstall","jet-form-builder"),scroll_on_next:(0,Pe.__)("Scroll to the top on page change","jet-form-builder"),auto_focus:(0,Pe.__)("Automatic focus","jet-form-builder"),form_records_access_capability:(0,Pe.__)("Form Records Access Capability","jet-form-builder"),ssr_validation_method:(0,Pe.__)("Server side validation method","jet-form-builder"),self_promotable_roles:(0,Pe.__)("Self-Promotable Roles","jet-form-builder")},nt={enable_dev_mode:(0,Pe.__)("With developer mode enabled, errors from the form will be saved.","jet-form-builder"),disable_next_button:(0,Pe.__)("If this option is active, the Next button in a multi-step form won't become clickable until all the required fields are completed.","jet-form-builder"),clear_on_uninstall:(0,Pe.__)("If this option is active, when the plugin is deleted, all custom sql-tables, all options and files will also be deleted. In particular, those that were uploaded using Media Field.","jet-form-builder"),scroll_on_next:(0,Pe.__)("Automatic scrolling to the top of the form when switching between form pages.","jet-form-builder"),auto_focus:(0,Pe.__)("Indicates invalid field and prevents the user from going to the next page or submitting the form unless filled.","jet-form-builder"),form_records_access_capability:(0,Pe.__)('By default any Form Records available only for users with `manage_options` capability. Here you can overwrite it with any capability you want. More about capabilities here',"jet-form-builder"),ssr_validation_method:(0,Pe.__)("Select how the server-side validation request will be made – via WP REST API, admin-ajax.php, or through the URL of the current page.","jet-form-builder"),self_promotable_roles:(0,Pe.__)("Users without the `promote_users` capability can keep their current role or switch only to roles from this list in Update User actions. Leave it empty to skip self-service role changes.","jet-form-builder")},{SaveTabByAjax:it,i18n:st}=window.JetFBMixins,rt={name:"options-tab",props:{incoming:{type:Object,default:{}}},mixins:[it,st],data(){return{label:at,help:nt,storage:JSON.parse(JSON.stringify(this.incoming)),isLoading:!1,loading:{},pendingSave:!1,errors:{gfb_request_args_key:"",gfb_request_args_value:""},selectOptions:[{value:"rest",label:"Rest API"},{value:"admin_ajax",label:"Admin Ajax"},{value:"self",label:"Self"}]}},computed:{availableRoles(){return this.storage.available_roles||[]},selectedSelfPromotableRoles(){return this.storage.self_promotable_roles||[]}},created(){jfbEventBus.$on("request-state",this.onChangeState.bind(this))},methods:{getSavableData(){const{enable_dev_mode:e,clear_on_uninstall:t,form_records_access_capability:a,ssr_validation_method:n,self_promotable_roles:i,disable_next_button:s,scroll_on_next:r,auto_focus:o,gfb_request_args_key:l,gfb_request_args_value:c}=this.storage;return{enable_dev_mode:e,clear_on_uninstall:t,form_records_access_capability:a,ssr_validation_method:n,self_promotable_roles:Array.isArray(i)&&!i.length?[""]:i,disable_next_button:s,scroll_on_next:r,auto_focus:o,gfb_request_args_key:l,gfb_request_args_value:c}},getRequestOnSave(){return{data:this.getSavableData()}},onChangeState({state:e,slug:t}){if("options-tab"===t)return"end"===e?(this.loading={},this.$set(this,"isLoading",!1),void(this.pendingSave&&(this.pendingSave=!1,this.saveByAjax(this,this.$options.name)))):void this.$set(this,"isLoading","begin"===e)},validateField(e,t){if("gfb_request_args_key"!==e&&"gfb_request_args_value"!==e)return!0;const a=String(null!=t?t:"");if(/^\d+$/.test(a)){const t=this.__("Must contain at least one letter (A–Z). Numbers only are not allowed.","jet-form-builder");return this.$set(this.errors,e,t),!1}return this.$set(this.errors,e,""),!0},changeSelfPromotableRoles(e){Array.isArray(e)&&this.changeVal("self_promotable_roles",e)},changeVal(e,t){this.$set(this.storage,e,t),("gfb_request_args_key"!==e&&"gfb_request_args_value"!==e||this.validateField(e,t))&&(this.$set(this.loading,e,!0),this.isLoading?this.pendingSave=!0:this.saveByAjax(this,this.$options.name))}}};a(7167);const ot=p(rt,tt,[],!1,null,"2967d914",null).exports,{__:lt}=wp.i18n,ct=lt("Options","jet-form-builder"),ut=ot,dt=!1;var pt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[a("cx-vui-switcher",{attrs:{name:"enable_user_journey",label:e.loading.enable_user_journey?e.label.enable_user_journey+" (loading...)":e.label.enable_user_journey,description:e.help.enable_user_journey,"wrapper-css":["equalwidth"],value:!!e.storage.hasOwnProperty("enable_user_journey")&&e.storage.enable_user_journey,disabled:e.isLoading},on:{input:function(t){return e.changeVal("enable_user_journey",t)}}}),e._v(" "),e.storage.enable_user_journey?[a("cx-vui-select",{staticClass:"user-journey-select",attrs:{name:"storage_type",label:e.loading.storage_type?e.label.storage_type+" (loading...)":e.label.storage_type,description:e.help.storage_type,"wrapper-css":["equalwidth"],"options-list":[{value:"local",label:"Local Storage"},{value:"session",label:"Session Storage"}],value:e.storage.hasOwnProperty("storage_type")?e.storage.storage_type:"local",disabled:!e.storage.enable_user_journey||e.isLoading},on:{input:function(t){return e.changeVal("storage_type",t)}}}),e._v(" "),a("cx-vui-component-wrapper",[a("div",{staticClass:"cx-vui-component__label"},[e._v("Please note!")]),e._v(" "),a("div",[a("b",[e._v("Session Storage:")]),e._v(" The information is kept only while this tab or window is open. Reloading the page is fine, but as soon as you close the tab, the data disappears. Other tabs or windows of the site can’t see it. You can still get it back by pressing Ctrl + Shift + T (“Reopen Closed Tab”)")]),e._v(" "),a("div",[a("b",[e._v("Local Storage:")]),e._v(" The information stays much longer—every tab or window of this site can use it, and it remains even after you close and reopen the browser, until you clear it yourself.")])]),e._v(" "),a("cx-vui-select",{staticClass:"user-journey-select",attrs:{name:"clear_after_submit",label:e.loading.clear_after_submit?e.label.clear_after_submit+" (loading...)":e.label.clear_after_submit,description:e.help.clear_after_submit,"wrapper-css":["equalwidth"],"options-list":[{value:"always",label:"After any submit (success or failure)"},{value:"success",label:"After successful submit only"}],value:e.storage.hasOwnProperty("clear_after_submit")?e.storage.clear_after_submit:"success",disabled:!e.storage.enable_user_journey||e.isLoading},on:{input:function(t){return e.changeVal("clear_after_submit",t)}}})]:e._e()],2)};pt._withStripped=!0;const _t={enable_user_journey:(0,Pe.__)("Enable User Journey Tracking","jet-form-builder"),storage_type:(0,Pe.__)("Storage Type","jet-form-builder"),clear_after_submit:(0,Pe.__)("Clear Journey After Submit","jet-form-builder")},ht={enable_user_journey:(0,Pe.__)("Track the user’s journey across the website and save it in the browser.","jet-form-builder"),storage_type:(0,Pe.__)("Choose where to store the user journey data","jet-form-builder"),clear_after_submit:(0,Pe.__)("When to clear the journey data after form submission","jet-form-builder")},{SaveTabByAjax:ft,i18n:gt}=window.JetFBMixins,bt={name:"user-journey-tab",props:{incoming:{type:Object,default:()=>({})}},mixins:[ft,gt],data(){return{label:_t,help:ht,storage:JSON.parse(JSON.stringify(this.incoming)),isLoading:!1,loading:{}}},created(){jfbEventBus.$on("request-state",this.onChangeState.bind(this))},methods:{getRequestOnSave(){return{data:{...this.storage}}},onChangeState({state:e,slug:t}){"user-journey-tab"===t&&("end"===e&&(this.loading={}),this.$set(this,"isLoading","begin"===e))},changeVal(e,t){this.isLoading||(this.$set(this.storage,e,t),this.$set(this.loading,e,!0),this.saveByAjax(this,this.$options.name))}}};a(74);const mt=p(bt,pt,[],!1,null,null,null).exports,{__:vt}=wp.i18n,yt=vt("User Journey","jet-form-builder"),wt=mt,xt=!1;var jt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[a("cx-vui-input",{attrs:{name:"ipinfo_token","wrapper-css":["equalwidth"],size:"fullwidth",label:e.loading.ipinfo_token?e.label.ipinfo_token+" (loading...)":e.label.ipinfo_token,description:e.help.ipinfo_token,value:e.storage.hasOwnProperty("ipinfo_token")?e.storage.ipinfo_token:"",disabled:e.isLoading},on:{input:function(t){return e.changeVal("ipinfo_token",t)}}})],1)};jt._withStripped=!0;const{sprintf:kt,__:Ct}=wp.i18n,St={ipinfo_token:kt(Ct('Sign in at ipinfo.io and get your API token here.',"jet-form-builder"),"https://ipinfo.io","https://ipinfo.io/dashboard/token")},At={ipinfo_token:Ct("API Token","jet-form-builder")},{SaveTabByAjax:Bt,i18n:Lt}=window.JetFBMixins,Ot=p({name:"phone-field-tab",props:{incoming:{type:Object,default:{}}},mixins:[Bt,Lt],data(){return{label:At,help:St,storage:JSON.parse(JSON.stringify(this.incoming)),isLoading:!1,loading:{}}},created(){jfbEventBus.$on("request-state",this.onChangeState.bind(this))},methods:{getRequestOnSave(){return{data:{...this.storage}}},onChangeState({state:e,slug:t}){"phone-field-tab"===t&&("end"===e&&(this.loading={}),this.$set(this,"isLoading","begin"===e))},changeVal(e,t){this.isLoading||(this.$set(this.storage,e,t),this.$set(this.loading,e,!0),this.saveByAjax(this,this.$options.name))}}},jt,[],!1,null,null,null).exports,{__:$t}=wp.i18n,qt=$t("Ipinfo API","jet-form-builder"),Pt=Ot;var Tt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("SideBarBoxes",{scopedSlots:e._u([{key:"icon-help",fn:function(){return[a("svg",{attrs:{width:"14",height:"21",viewBox:"0 0 14 21",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M5.25 21H8.75V17.5H5.25V21ZM7 0C3.1325 0 0 3.1325 0 7H3.5C3.5 5.075 5.075 3.5 7 3.5C8.925 3.5 10.5 5.075 10.5 7C10.5 10.5 5.25 10.0625 5.25 15.75H8.75C8.75 11.8125 14 11.375 14 7C14 3.1325 10.8675 0 7 0Z",fill:"#7B7E81"}})])]},proxy:!0},{key:"content-help",fn:function(t){return[a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_knowledge,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"14",height:"16",viewBox:"0 0 14 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M13.458 11.2552L13.458 1.4115C13.458 1.03064 13.1357 0.708374 12.7549 0.708374L3.14551 0.708374C1.59277 0.708374 0.333008 1.96814 0.333008 3.52087L0.333008 12.8959C0.333008 14.4486 1.59277 15.7084 3.14551 15.7084L12.7549 15.7084C13.1357 15.7084 13.458 15.4154 13.458 15.0052L13.458 14.5365C13.458 14.3314 13.3408 14.1263 13.1943 14.0092C13.0479 13.5404 13.0479 12.2513 13.1943 11.8119C13.3408 11.6947 13.458 11.4896 13.458 11.2552ZM4.08301 4.63416C4.08301 4.54626 4.1416 4.45837 4.25879 4.45837L10.4697 4.45837C10.5576 4.45837 10.6455 4.54626 10.6455 4.63416L10.6455 5.22009C10.6455 5.33728 10.5576 5.39587 10.4697 5.39587L4.25879 5.39587C4.1416 5.39587 4.08301 5.33728 4.08301 5.22009L4.08301 4.63416ZM4.08301 6.50916C4.08301 6.42127 4.1416 6.33337 4.25879 6.33337L10.4697 6.33337C10.5576 6.33337 10.6455 6.42127 10.6455 6.50916L10.6455 7.09509C10.6455 7.21228 10.5576 7.27087 10.4697 7.27087L4.25879 7.27087C4.1416 7.27087 4.08301 7.21228 4.08301 7.09509L4.08301 6.50916ZM11.4951 13.8334L3.14551 13.8334C2.61816 13.8334 2.20801 13.4232 2.20801 12.8959C2.20801 12.3978 2.61816 11.9584 3.14551 11.9584L11.4951 11.9584C11.4365 12.4857 11.4365 13.3353 11.4951 13.8334Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_knowledge))])])]),e._v(" "),a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_community,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M15.5913 8.04564C15.5913 3.87728 12.214 0.5 8.04564 0.5C3.87728 0.5 0.5 3.87728 0.5 8.04564C0.5 11.8185 3.23834 14.9523 6.85903 15.5L6.85903 10.2363L4.94219 10.2363L4.94219 8.04564L6.85903 8.04564L6.85903 6.40264C6.85903 4.51623 7.98479 3.45132 9.68864 3.45132C10.5406 3.45132 11.3925 3.60345 11.3925 3.60345L11.3925 5.45943L10.4493 5.45943C9.50609 5.45943 9.20183 6.03753 9.20183 6.64604L9.20183 8.04564L11.3012 8.04564L10.9665 10.2363L9.20183 10.2363L9.20183 15.5C12.8225 14.9523 15.5913 11.8185 15.5913 8.04564Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_community))])])]),e._v(" "),a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_support,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"15",height:"18",viewBox:"0 0 15 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M7.58333 0.666687C3.675 0.666687 0.5 3.84169 0.5 7.75002C0.5 11.6584 3.675 14.8334 7.58333 14.8334H8V17.3334C12.05 15.3834 14.6667 11.5 14.6667 7.75002C14.6667 3.84169 11.4917 0.666687 7.58333 0.666687ZM8.41667 12.75H6.75V11.0834H8.41667V12.75ZM8.41667 9.83335H6.75C6.75 7.12502 9.25 7.33335 9.25 5.66669C9.25 4.75002 8.5 4.00002 7.58333 4.00002C6.66667 4.00002 5.91667 4.75002 5.91667 5.66669H4.25C4.25 3.82502 5.74167 2.33335 7.58333 2.33335C9.425 2.33335 10.9167 3.82502 10.9167 5.66669C10.9167 7.75002 8.41667 7.95835 8.41667 9.83335Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_support))])])]),e._v(" "),a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_git,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M7.976 0C5.86071 0.000265156 3.83214 0.840676 2.33641 2.33641C0.840676 3.83214 0.000265156 5.86071 0 7.976C0 11.498 2.3 14.483 5.431 15.56C5.823 15.609 5.969 15.364 5.969 15.168V13.798C3.768 14.288 3.279 12.722 3.279 12.722C2.936 11.792 2.398 11.547 2.398 11.547C1.664 11.058 2.446 11.058 2.446 11.058C3.229 11.107 3.67 11.89 3.67 11.89C4.404 13.113 5.529 12.77 5.97 12.575C6.018 12.037 6.263 11.695 6.459 11.499C4.697 11.303 2.838 10.618 2.838 7.535C2.838 6.655 3.131 5.969 3.67 5.382C3.62 5.235 3.327 4.404 3.768 3.327C3.768 3.327 4.453 3.131 5.969 4.159C6.605 3.963 7.291 3.914 7.976 3.914C8.661 3.914 9.346 4.012 9.982 4.159C11.499 3.132 12.184 3.327 12.184 3.327C12.624 4.404 12.33 5.235 12.281 5.431C12.8199 6.01808 13.1171 6.7871 13.113 7.584C13.113 10.667 11.253 11.303 9.493 11.499C9.786 11.743 10.031 12.232 10.031 12.966V15.168C10.031 15.364 10.177 15.608 10.569 15.56C12.155 15.0248 13.5327 14.0046 14.5073 12.6436C15.4818 11.2827 16.004 9.64989 16 7.976C15.951 3.572 12.38 0 7.976 0Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_git))])])])]}}])})};Tt._withStripped=!0;const{SideBarBoxes:Et}=JetFBComponents,Mt={name:"SettingsSideBar",components:{SideBarBoxes:Et}};a(52);const Jt=p(Mt,Tt,[],!1,null,null,null).exports,{applyFilters:Vt,doAction:It}=wp.hooks,{SaveTabByAjax:Rt,GetIncoming:Ft,i18n:Gt}=window.JetFBMixins,{CxVuiTabsPanel:Nt,CxVuiTabs:zt,AlertsList:Ut,FormBuilderPage:Ht}=JetFBComponents;window.jfbEventBus=window.jfbEventBus||new Vue({});const Kt=Vt("jet.fb.register.settings-page.tabs",[r,o,s,e,l,t,n]),Zt=e=>{window.location.hash="#"+e},Wt={name:"jfb-settings",components:{AlertsList:Ut,CxVuiTabsPanel:Nt,CxVuiTabs:zt,SettingsSideBar:Jt,FormBuilderPage:Ht},data(){const[e,t]=(()=>{const e=Kt[0].component.name;if(!window.location.hash)return Zt(e),[e];let[t,...a]=window.location.hash.replace("#","").split("__"),n=Kt.find(e=>e?.component?.name===t);return n?(Zt([n.component.name,...a].join("__")),[n.component.name,a]):(Zt(e),[e])})();return{activeTabSlug:e,activeTabInnerSlugs:t,tabs:Kt,loadingTab:{},isActivePro:!1}},mixins:[Rt,Ft,Gt],created(){this.isActivePro=this.getIncoming("is_active"),jfbEventBus.$on("request-state",e=>{const{state:t,slug:a}=e;this.$set(this.loadingTab,a,"begin"===t)}),jfbEventBus.$on("alert-click-thanks",({self:e})=>{e.closeAlert()}),jfbEventBus.$on("alert-click-check",({self:e})=>{e.closeAlert()})},methods:{onChangeActiveTab(e){const t=new URL(document.URL);t.hash="#"+e,document.location.href=t.href,jfbEventBus.$emit("change-tab",{slug:e})},onSaveTab(e,t){const a=this.$refs.tabComponents[e];this.saveByAjax(a,t)}}};a(2995);const Dt=p(Wt,$,[],!1,null,null,null).exports,{renderCurrentPage:Yt}=window.JetFBActions,{NoticesPlugin:Xt}=JetFBStore;Yt(Dt,{store:new Vuex.Store({plugins:[Xt]})})})()})(); \ No newline at end of file +(()=>{var e={52:(e,t,a)=>{var n=a(6875);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("3f74c29a",n,!1,{})},74:(e,t,a)=>{var n=a(1982);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("df5e862a",n,!1,{})},611:(e,t,a)=>{"use strict";function n(e,t){for(var a=[],n={},i=0;ih});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},r=i&&(document.head||document.getElementsByTagName("head")[0]),o=null,l=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",_="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function h(e,t,a,i){c=a,d=i||{};var r=n(e,t);return f(r),function(t){for(var a=[],i=0;ia.parts.length&&(n.parts.length=a.parts.length)}else{var r=[];for(i=0;i{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var a="",n=void 0!==t[5];return t[4]&&(a+="@supports (".concat(t[4],") {")),t[2]&&(a+="@media ".concat(t[2]," {")),n&&(a+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),a+=e(t),n&&(a+="}"),t[2]&&(a+="}"),t[4]&&(a+="}"),a})).join("")},t.i=function(e,a,n,i,s){"string"==typeof e&&(e=[[null,e,void 0]]);var r={};if(n)for(var o=0;o0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=s),a&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=a):u[2]=a),i&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=i):u[4]="".concat(i)),t.push(u))}},t}},1027:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,"\n.jfb-has-error .cx-vui-input[data-v-2967d914],\n.jfb-has-error input[data-v-2967d914] {\n border-color: #dc2626 !important;\n outline: none;\n}\n.jfb-field-error[data-v-2967d914] {\n margin: 6px 0 12px;\n color: #dc2626;\n font-size: 12px;\n line-height: 1.4;\n text-align:right;\n}\n",""]);const o=r},1982:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,"\n.user-journey-select select.cx-vui-select {\n\tpadding: 6px 24px 6px 12px;\n}\n",""]);const o=r},2995:(e,t,a)=>{var n=a(4495);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("14f9a7b5",n,!1,{})},4495:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,".jfb-content{display:flex;flex-wrap:wrap;gap:2em;margin-top:1em}.jfb-content-main{flex:1}",""]);const o=r},5654:(e,t,a)=>{var n=a(9642);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("2ac5270a",n,!1,{})},6758:e=>{"use strict";e.exports=function(e){return e[1]}},6875:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,".jet-form-builder-page__banner.useful{padding:20px 30px}.jet-form-builder-page__panel.help{width:100%}@media(max-width: 1140px){.jet-form-builder-page__panel.help{width:50%}}.jet-form-builder-page__panel.help .jet-form-builder-page__panel-content{display:flex;flex-direction:column;margin-top:12px;border-top:1px solid #dcdcdd;padding-top:23px}.jet-form-builder-page__panel.help .help-center-link{display:flex;justify-content:flex-start;margin-bottom:22px}.jet-form-builder-page__panel.help .help-center-link:last-child{margin-bottom:0}.jet-form-builder-page__panel.help .help-center-link a{display:flex;justify-content:flex-start;align-items:center;font-size:14px;line-height:18px;color:#007cba;text-decoration:none}.jet-form-builder-page__panel.help .help-center-link a:hover{color:#066ea2;text-decoration:underline}.jet-form-builder-page__panel.help .help-center-link a .help-center-link-icon{margin-right:28px}",""]);const o=r},7167:(e,t,a)=>{var n=a(1027);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("75f68a91",n,!1,{})},9642:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,"\nspan[data-v-14b2e3f9] {\n\tbackground-color: #007CBA;\n\tpadding: 0.1em 0.3em;\n\ttext-transform: uppercase;\n\tborder-radius: 3px;\n\tcolor: white;\n\tfont-size: 12px;\n\tfont-style: normal;\n\tfont-weight: 700;\n\tline-height: 16px;\n\tletter-spacing: 0;\n\ttext-align: left;\n}\n",""]);const o=r}},t={};function a(n){var i=t[n];if(void 0!==i)return i.exports;var s=t[n]={id:n,exports:{}};return e[n](s,s.exports,a),s.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e={};a.r(e),a.d(e,{component:()=>he,displayButton:()=>fe,title:()=>_e});var t={};a.r(t),a.d(t,{component:()=>je,title:()=>xe});var n={};a.r(n),a.d(n,{component:()=>$e,title:()=>Oe});var i={};a.r(i),a.d(i,{component:()=>Ne,title:()=>Ge});var s={};a.r(s),a.d(s,{component:()=>Qe,displayButton:()=>et,title:()=>Xe});var r={};a.r(r),a.d(r,{component:()=>ut,displayButton:()=>dt,title:()=>ct});var o={};a.r(o),a.d(o,{component:()=>wt,displayButton:()=>xt,title:()=>yt});var l={};a.r(l),a.d(l,{component:()=>Pt,title:()=>qt});var c=function(){var e=this,t=e.$createElement;return(e._self._c||t)("span",[e._v(e._s(e.__("Pro","jet-form-builder")))])};c._withStripped=!0;const{i18n:u}=JetFBMixins,d={name:"IsPROIcon",mixins:[u],props:{isActive:{type:Boolean,default:!1}}};function p(e,t,a,n,i,s,r,o){var l,c="function"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=a,c._compiled=!0),n&&(c.functional=!0),s&&(c._scopeId="data-v-"+s),r?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},c._ssrRegister=l):i&&(l=o?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}a(5654);const h=p(d,c,[],!1,null,"14b2e3f9",null).exports,{__:f}=wp.i18n,g={title:f("HubSpot API","jet-form-builder"),component:{name:"hubspot"},disabled:!0,icon:h},{__:b}=wp.i18n,m={title:b("Address Autocomplete","jet-form-builder"),component:{name:"jfb-address-tab"},disabled:!0,icon:h},{__:v}=wp.i18n,y={title:v("ConvertKit API","jet-form-builder"),component:{name:"convert-kit-tab"},disabled:!0,icon:h},{__:w}=wp.i18n,x={title:w("MailerLite API","jet-form-builder"),component:{name:"mailer-lite-tab"},disabled:!0,icon:h},{__:j}=wp.i18n,k={title:j("Moosend API","jet-form-builder"),component:{name:"moosend"},disabled:!0,icon:h},{__:C}=wp.i18n,S={title:C("Stripe Gateway API","jet-form-builder"),component:{name:"stripe"},disabled:!0,icon:h},{addFilter:A}=wp.hooks,B=[m,g,y,x,k],L=[S],O=e=>e.map((e=>e.component.name));window?.JetFBPageConfig?.is_active||(A("jet.fb.register.settings-page.tabs","jet-form-builder",(e=>{const t=O(e);for(const a of B)t.includes(a.component.name)||e.push(a);return e}),1e3),A("jet.fb.register.gateways","jet-form-builder",(e=>{const t=O(e);for(const a of L)t.includes(a.component.name)||e.push(a);return e}),1e3));var $=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("FormBuilderPage",{attrs:{title:e.__("JetFormBuilder Settings","jet-form-builder")}},[a("div",{staticClass:"jfb-content"},[a("AlertsList"),e._v(" "),a("div",{staticClass:"jfb-content-main"},[a("div",{staticClass:"cx-vui-panel"},[a("CxVuiTabs",{attrs:{"in-panel":!1,value:e.activeTabSlug,layout:"vertical"},on:{input:e.onChangeActiveTab}},e._l(e.tabs,(function(t,n){var i=t.displayButton;void 0===i&&(i=!0);var s=function(e,t){var a={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&-1===t.indexOf(n)&&(a[n]=e[n]);return a}(t,["displayButton"]);return a("CxVuiTabsPanel",{key:s.component.name,attrs:{name:s.component.name,label:s.title,disabled:s.disabled,icon:s.icon},scopedSlots:e._u([s.component.render?{key:"default",fn:function(){return[a("keep-alive",[a(s.component,{ref:"tabComponents",refInFor:!0,tag:"component",attrs:{incoming:e.getIncoming(s.component.name),"inner-slugs":e.activeTabInnerSlugs||[]}})],1),e._v(" "),i?a("cx-vui-button",{attrs:{"button-style":"accent",loading:e.loadingTab[s.component.name]},on:{click:function(t){return e.onSaveTab(n,s.component.name)}},scopedSlots:e._u([{key:"label",fn:function(){return[a("span",[e._v("Save")])]},proxy:!0}],null,!0)}):e._e()]},proxy:!0}:null],null,!0)})})),1)],1)]),e._v(" "),a("SettingsSideBar")],1)])};$._withStripped=!0;var q=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",e._l(e.captcha,(function(t,n){return a("CxVuiCollapseMini",{key:t.component.name,attrs:{"with-panel":"",icon:t.icon,label:e.getTabTitle(t),disabled:t.disabled,"initial-active":e.isActive(t.component.name)},on:{change:function(a){return e.onChangeActive(a,t.component.name)}}},[a("keep-alive",[a(t.component,{ref:"captcha",refInFor:!0,tag:"component",attrs:{incoming:e.getIncomingCaptcha(t.component.name)}})],1),e._v(" "),a("cx-vui-button",{attrs:{"button-style":"accent",loading:e.loadingGateways[t.component.name]},on:{click:function(a){return e.onSaveGateway(n,t.component.name)}}},[a("span",{attrs:{slot:"label"},slot:"label"},[e._v("Save")])])],1)})),1)};q._withStripped=!0;var P=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-input",{attrs:{label:e.label.key,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.key,callback:function(t){e.$set(e.storage,"key",t)},expression:"storage.key"}}),e._v(" "),a("cx-vui-input",{attrs:{label:e.label.secret,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}}),e._v(" "),a("cx-vui-input",{attrs:{type:"number",min:0,max:1,step:.1,label:e.label.threshold,description:e.help.threshold,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.threshold,callback:function(t){e.$set(e.storage,"threshold",t)},expression:"storage.threshold"}}),e._v(" "),a("p",{staticClass:"fb-description"},[e._v(e._s(e.help.apiPref)+" "),a("a",{attrs:{href:e.help.apiLink,target:"_blank"}},[e._v(e._s(e.help.apiLinkLabel))])])],1)};P._withStripped=!0;const{__:T}=wp.i18n,E={key:T("Site Key","jet-form-builder"),secret:T("Secret Key","jet-form-builder"),threshold:T("Score Threshold","jet-form-builder")},M={threshold:T("It should be a value between 0 and 1, default 0.5 (1.0 is very likely a good interaction, 0.0 is very likely a bot).","jet-form-builder"),apiPref:T("Register reCAPTCHA v3 keys","jet-form-builder"),apiLinkLabel:T("here","jet-form-builder"),apiLink:"https://www.google.com/recaptcha/admin/create"},J={component:p({name:"google",props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:E,help:M,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},P,[],!1,null,null,null).exports};var V=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("SimpleWrapperComponent",{attrs:{"element-id":"hcaptcha_key"},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.label.key))]},proxy:!0},{key:"description",fn:function(){return[a("p",{staticClass:"fb-description"},[e._v("\n\t\t\t\t\t"+e._s(e.__("You can find it on this page in the first column of Sitekey.","jet-form-builder")+" ")+"\n\t\t\t\t\t"),a("ExternalLink",{attrs:{href:"https://dashboard.hcaptcha.com/sites"}},[e._v("\n\t\t\t\t\t\t"+e._s(e.__("Go to the dashboard of sites","jet-form-builder"))+"\n\t\t\t\t\t")])],1)]},proxy:!0},{key:"default",fn:function(){return[a("input",{directives:[{name:"model",rawName:"v-model",value:e.storage.key,expression:"storage.key"}],staticClass:"cx-vui-input size-fullwidth",attrs:{id:"hcaptcha_key",type:"text"},domProps:{value:e.storage.key},on:{input:function(t){t.target.composing||e.$set(e.storage,"key",t.target.value)}}})]},proxy:!0}])}),e._v(" "),a("SimpleWrapperComponent",{attrs:{"element-id":"hcaptcha_secret"},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.label.secret))]},proxy:!0},{key:"description",fn:function(){return[a("p",{staticClass:"fb-description"},[e._v("\n\t\t\t\t\t"+e._s(e.__("You can find it on the settings page,\nthis will be the first field.","jet-form-builder")+" ")+"\n\t\t\t\t\t"),a("ExternalLink",{attrs:{href:"https://dashboard.hcaptcha.com/settings"}},[e._v("\n\t\t\t\t\t\t"+e._s(e.__("Go to the Settings page","jet-form-builder"))+"\n\t\t\t\t\t")])],1)]},proxy:!0},{key:"default",fn:function(){return[a("input",{directives:[{name:"model",rawName:"v-model",value:e.storage.secret,expression:"storage.secret"}],staticClass:"cx-vui-input size-fullwidth",attrs:{id:"hcaptcha_secret",type:"text"},domProps:{value:e.storage.secret},on:{input:function(t){t.target.composing||e.$set(e.storage,"secret",t.target.value)}}})]},proxy:!0}])})],1)};V._withStripped=!0;const{__:I}=wp.i18n,R={key:I("Site Key","jet-form-builder"),secret:I("Secret Key","jet-form-builder")},{SimpleWrapperComponent:F,ExternalLink:G}=JetFBComponents,{i18n:N}=JetFBMixins,z={component:p({name:"hcaptcha",components:{SimpleWrapperComponent:F,ExternalLink:G},mixins:[N],props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:R,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},V,[],!1,null,null,null).exports};var U=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("SimpleWrapperComponent",{attrs:{"element-id":"friendly_key"},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.label.key))]},proxy:!0},{key:"description",fn:function(){return[a("p",{staticClass:"fb-description"},[e._v("\n\t\t\t\t"+e._s(e.__("It can be found on the page listing your Applications. Or follow this","jet-form-builder")+" ")+"\n\t\t\t\t"),a("ExternalLink",{attrs:{href:"https://docs.friendlycaptcha.com/#/installation?id=_1-generating-a-sitekey"}},[e._v("\n\t\t\t\t\t"+e._s(e.__("guide","jet-form-builder"))+"\n\t\t\t\t")])],1)]},proxy:!0},{key:"default",fn:function(){return[a("input",{directives:[{name:"model",rawName:"v-model",value:e.storage.key,expression:"storage.key"}],staticClass:"cx-vui-input size-fullwidth",attrs:{id:"friendly_key",type:"text"},domProps:{value:e.storage.key},on:{input:function(t){t.target.composing||e.$set(e.storage,"key",t.target.value)}}})]},proxy:!0}])}),e._v(" "),a("cx-vui-input",{attrs:{"element-id":"friendly_secret",label:e.label.secret,description:e.__("It can be found on the page listing your API keys.","jet-form-builder"),"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}})],1)};U._withStripped=!0;const{__:H}=wp.i18n,K={key:H("Site Key","jet-form-builder"),secret:H("Secret Key","jet-form-builder")},{SimpleWrapperComponent:Z,ExternalLink:W}=JetFBComponents,{i18n:D}=JetFBMixins,Y={component:p({name:"friendly",components:{SimpleWrapperComponent:Z,ExternalLink:W},mixins:[D],props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:K,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},U,[],!1,null,null,null).exports};var X=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-input",{attrs:{"element-id":"turnstile_key",label:e.label.key,description:e.__("Read the hint to the Secret Key field","jet-form-builder"),"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.key,callback:function(t){e.$set(e.storage,"key",t)},expression:"storage.key"}}),e._v(" "),a("cx-vui-input",{attrs:{"element-id":"turnstile_secret",label:e.label.secret,description:e.__("You can find both keys on your Turnstile Site settings page","jet-form-builder"),"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}}),e._v(" "),a("p",{staticClass:"fb-description"},[e._v("\n\t\t"+e._s(e.__("Didn't find it? Here is","jet-form-builder")+" ")+"\n\t\t"),a("ExternalLink",{attrs:{href:"https://developers.cloudflare.com/turnstile/get-started/#get-a-sitekey-and-secret-key"}},[e._v("\n\t\t\t"+e._s(e.__("a more detailed description","jet-form-builder"))+"\n\t\t")])],1)],1)};X._withStripped=!0;const{__:Q}=wp.i18n,ee={key:Q("Site Key","jet-form-builder"),secret:Q("Secret Key","jet-form-builder")},{i18n:te}=JetFBMixins,{ExternalLink:ae}=JetFBComponents,ne={component:p({name:"turnstile",mixins:[te],components:{ExternalLink:ae},props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:ee,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},X,[],!1,null,null,null).exports},{applyFilters:ie}=wp.hooks,{SaveTabByAjax:se,GetIncoming:re}=window.JetFBMixins,{CxVuiCollapseMini:oe}=window.JetFBComponents;window.jfbEventBus=window.jfbEventBus||new Vue({});const le=ie("jet.fb.register.captcha",[J,z,Y,ne]);let ce=()=>{};const ue={name:"captcha-tab",props:{incoming:{type:Object,default:{}},innerSlugs:Array},components:{CxVuiCollapseMini:oe},mixins:[se],data(){return{captcha:le,storage:JSON.parse(JSON.stringify(this.incoming)),settings:JSON.parse(JSON.stringify(window.JetFBPageConfig["captcha-tab-config"])),activeGatewaysTabs:[],loadingGateways:{}}},created(){jfbEventBus.$on("request-state",(e=>{const{state:t,slug:a}=e;this.$set(this.loadingGateways,a,"begin"===t)})),jfbEventBus.$on("change-tab",function({slug:e}){if(e!==this.$options.name)return!1;window.location.hash="#"+[this.$options.name,...this.activeGatewaysTabs].join("__")}.bind(this)),this.activeGatewaysTabs=this.innerSlugs,ce=_.debounce((()=>{this.saveByAjax(this,this.$options.name)}),1e3)},methods:{getIncomingCaptcha(e){var t;return null!==(t=this.incoming?.[e])&&void 0!==t?t:{}},getTabTitle(e){const{title:t}=e;if(t?.length)return t;const{name:a}=e.component,n=this.settings.find((({value:e})=>e===a));return n?.label||"Undefined captcha title"},onChangeActive(e,t){let[a,...n]=window.location.hash.replace("#","").split("__");e?n.push(t):n=n.filter((a=>t!==a||e)),this.changeGatewaysTabs(n),window.location.hash=[this.$options.name,...n].join("__")},changeGatewaysTabs(e){this.activeGatewaysTabs=e},isActive(e){return Boolean(this.activeGatewaysTabs?.includes(e))},changeVal(e,t){this.$set(this.storage,e,t),ce()},onSaveGateway(e,t){const a=this.$refs.captcha[e];this.saveByAjax(a,t)},getAjaxObject(e,t){const a={url:window.ajaxurl,type:"POST",dataType:"json"},n=e.getRequestOnSave();return a.data={action:`jet_fb_save_tab__${this.$options.name}`,...t===this.$options.name?n.data:{[t]:n.data}},window?.JetFBPageConfigPackage?.nonce&&(a.data._nonce=window.JetFBPageConfigPackage.nonce),a},getRequestOnSave(){return{data:{...this.storage}}}}},de=p(ue,q,[],!1,null,null,null).exports,{__:pe}=wp.i18n,_e=pe("Captcha Settings","jet-form-builder"),he=de,fe=!1;var ge=function(){var e=this,t=e.$createElement;return(e._self._c||t)("cx-vui-input",{attrs:{label:e.label.api_key,"wrapper-css":["equalwidth"],description:e.help.apiPref+' '+e.help.apiLinkLabel+"",size:"fullwidth"},model:{value:e.api_key,callback:function(t){e.api_key=t},expression:"api_key"}})};ge._withStripped=!0;const{__:be}=wp.i18n,me={api_key:be("API Key","jet-form-builder")},ve={apiPref:be("How to obtain your MailChimp API Key? More info","jet-form-builder"),apiLinkLabel:be("here","jet-form-builder"),apiLink:"https://mailchimp.com/help/about-api-keys/"},ye=p({name:"mailchimp-tab",props:{incoming:{type:Object,default:{}}},data:()=>({label:me,help:ve,api_key:""}),created(){this.api_key=this.incoming.api_key||""},methods:{getRequestOnSave(){return{data:{api_key:this.api_key}}}}},ge,[],!1,null,null,null).exports,{__:we}=wp.i18n,xe=we("MailChimp API","jet-form-builder"),je=ye;var ke=function(){var e=this,t=e.$createElement;return(e._self._c||t)("cx-vui-input",{attrs:{label:e.label.api_key,"wrapper-css":["equalwidth"],description:e.help.apiPref+' '+e.help.apiLinkLabel+"",size:"fullwidth"},model:{value:e.api_key,callback:function(t){e.api_key=t},expression:"api_key"}})};ke._withStripped=!0;const{__:Ce}=wp.i18n,Se={api_key:Ce("API Key","jet-form-builder")},Ae={apiPref:Ce("How to obtain your GetResponse API Key? More info","jet-form-builder"),apiLinkLabel:Ce("here","jet-form-builder"),apiLink:"https://app.getresponse.com/api"},Be=p({name:"get-response-tab",props:{incoming:{type:Object,default:{}}},data:()=>({label:Se,help:Ae,api_key:""}),created(){this.api_key=this.incoming.api_key||""},methods:{getRequestOnSave(){return{data:{api_key:this.api_key}}}}},ke,[],!1,null,null,null).exports,{__:Le}=wp.i18n,Oe=Le("GetResponse API","jet-form-builder"),$e=Be;var qe=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-switcher",{attrs:{name:"use_gateways","wrapper-css":["equalwidth"],label:e.label.use_gateways,description:e.help.use_gateways,value:e.storage.use_gateways},on:{input:function(t){return e.changeVal("use_gateways",t)}}}),e._v(" "),e.storage.use_gateways?a("cx-vui-switcher",{attrs:{name:"enable_test_mode","wrapper-css":["equalwidth"],description:e.help.enable_test_mode,label:e.label.enable_test_mode,value:e.storage.enable_test_mode},on:{input:function(t){return e.changeVal("enable_test_mode",t)}}}):e._e(),e._v(" "),e.storage.use_gateways?[a("div",{staticClass:"cx-vui-inner-panel"},e._l(e.gateways,(function(t,n){return a("CxVuiCollapseMini",{key:t.component.name,attrs:{"with-panel":"",icon:t.icon,label:t.title,disabled:t.disabled,"initial-active":e.isActive(t.component.name)},on:{change:function(a){return e.onChangeActive(a,t.component.name)}}},[a("keep-alive",[a(t.component,{ref:"gateways",refInFor:!0,tag:"component",attrs:{incoming:e.getIncoming(t.component.name)}})],1),e._v(" "),a("cx-vui-button",{attrs:{"button-style":"accent",loading:e.loadingGateways[t.component.name]},on:{click:function(a){return e.onSaveGateway(n,t.component.name)}}},[a("span",{attrs:{slot:"label"},slot:"label"},[e._v("Save")])])],1)})),1)]:e._e()],2)};qe._withStripped=!0;const Pe=window.wp.i18n,Te={use_gateways:(0,Pe.__)("Enable Gateways","jet-form-builder"),enable_test_mode:(0,Pe.__)("Enable Test Mode","jet-form-builder")},Ee={enable_test_mode:(0,Pe.__)("This option takes precedence over the jet-form-builder/gateways/paypal/sandbox-mode filter. As of right now, works only for PayPal payment system","jet-form-builder"),use_gateways:(0,Pe.__)("Activate payment gateways for the forms. This option takes precedence over the jet-form-builder/allow-gateways filter","jet-form-builder")};var Me=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-input",{attrs:{label:e.label.client_id,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.client_id,callback:function(t){e.$set(e.storage,"client_id",t)},expression:"storage.client_id"}}),e._v(" "),a("cx-vui-input",{attrs:{label:e.label.secret,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}})],1)};Me._withStripped=!0;const{__:Je}=wp.i18n,Ve={client_id:Je("Client ID","jet-form-builder"),secret:Je("Secret Key","jet-form-builder")},Ie={},Re=p({name:"paypal",props:{incoming:{type:Object,default:()=>({})}},data:()=>({label:Ve,help:Ie,storage:{}}),created(){this.storage=JSON.parse(JSON.stringify(this.incoming))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},Me,[],!1,null,null,null).exports,{__:Fe}=wp.i18n,Ge=Fe("PayPal Gateway API","jet-form-builder"),Ne=Re,{applyFilters:ze}=wp.hooks,{SaveTabByAjax:Ue,GetIncoming:He}=window.JetFBMixins,{CxVuiCollapseMini:Ke}=window.JetFBComponents;window.jfbEventBus=window.jfbEventBus||new Vue({});const Ze=ze("jet.fb.register.gateways",[i]);let We=()=>{};const De=p({name:"payments-gateways",props:{incoming:{type:Object,default:()=>({})},innerSlugs:Array},components:{CxVuiCollapseMini:Ke},mixins:[Ue,He],data(){return{label:Te,help:Ee,storage:JSON.parse(JSON.stringify(this.incoming)),gateways:Ze,loadingGateways:{},activeGatewaysTabs:[]}},created(){jfbEventBus.$on("request-state",(e=>{const{state:t,slug:a}=e;this.$set(this.loadingGateways,a,"begin"===t)})),jfbEventBus.$on("change-tab",function({slug:e}){if(e!==this.$options.name)return!1;window.location.hash="#"+[this.$options.name,...this.activeGatewaysTabs].join("__")}.bind(this)),this.activeGatewaysTabs=this.innerSlugs,We=_.debounce((()=>{this.saveByAjax(this,this.$options.name)}),1e3)},methods:{onChangeActive(e,t){let[a,...n]=window.location.hash.replace("#","").split("__");e?n.push(t):n=n.filter((a=>t!==a||e)),this.changeGatewaysTabs(n),window.location.hash=[this.$options.name,...n].join("__")},changeGatewaysTabs(e){this.activeGatewaysTabs=e},isActive(e){return Boolean(this.activeGatewaysTabs.length&&this.activeGatewaysTabs.includes(e))},changeVal(e,t){this.$set(this.storage,e,t),We()},onSaveGateway(e,t){const a=this.$refs.gateways[e];this.saveByAjax(a,t)},getRequestOnSave(){return{data:{...this.storage}}}}},qe,[],!1,null,null,null).exports,{__:Ye}=wp.i18n,Xe=Ye("Payments Gateways","jet-form-builder"),Qe=De,et=!1;var tt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[a("cx-vui-switcher",{attrs:{name:"enable_dev_mode","wrapper-css":["equalwidth"],label:e.loading.enable_dev_mode?e.label.enable_dev_mode+" (loading...)":e.label.enable_dev_mode,description:e.help.enable_dev_mode,value:!!e.storage.hasOwnProperty("enable_dev_mode")&&e.storage.enable_dev_mode,disabled:e.isLoading},on:{input:function(t){return e.changeVal("enable_dev_mode",t)}}}),e._v(" "),a("cx-vui-switcher",{attrs:{name:"clear_on_uninstall","wrapper-css":["equalwidth"],label:e.loading.clear_on_uninstall?e.label.clear_on_uninstall+" (loading...)":e.label.clear_on_uninstall,description:e.help.clear_on_uninstall,value:!!e.storage.hasOwnProperty("clear_on_uninstall")&&e.storage.clear_on_uninstall,disabled:e.isLoading},on:{input:function(t){return e.changeVal("clear_on_uninstall",t)}}}),e._v(" "),a("cx-vui-input",{attrs:{name:"form_records_access_capability","wrapper-css":["equalwidth"],size:"fullwidth",label:e.loading.form_records_access_capability?e.label.form_records_access_capability+" (loading...)":e.label.form_records_access_capability,description:e.help.form_records_access_capability,value:e.storage.hasOwnProperty("form_records_access_capability")?e.storage.form_records_access_capability:"manage_options",disabled:e.isLoading},on:{input:function(t){return e.changeVal("form_records_access_capability",t)}}}),e._v(" "),a("cx-vui-select",{attrs:{name:"ssr_validation_method","wrapper-css":["equalwidth"],size:"fullwidth",label:e.loading.ssr_validation_method?e.label.ssr_validation_method+" (loading...)":e.label.ssr_validation_method,description:e.help.ssr_validation_method,value:e.storage.hasOwnProperty("ssr_validation_method")?e.storage.ssr_validation_method:"rest","options-list":e.selectOptions,disabled:e.isLoading},on:{input:function(t){return e.changeVal("ssr_validation_method",t)}}}),e._v(" "),a("cx-vui-f-select",{attrs:{name:"self_promotable_roles",label:e.loading.self_promotable_roles?e.label.self_promotable_roles+" (loading...)":e.label.self_promotable_roles,description:e.help.self_promotable_roles,value:e.selectedSelfPromotableRoles,"options-list":e.availableRoles,multiple:!0,disabled:e.isLoading,"wrapper-css":["equalwidth"],size:"fullwidth"},on:{"on-change":function(t){return e.changeSelfPromotableRoles(t)}}}),e._v(" "),a("cx-vui-component-wrapper",{attrs:{label:e.__("Form Accessibility","jet-form-builder"),"wrapper-css":["equalwidth"]}}),e._v(" "),a("div",{staticClass:"cx-vui-inner-panel"},[a("cx-vui-switcher",{attrs:{name:"disable_next_button","wrapper-css":["equalwidth"],label:e.loading.disable_next_button?e.label.disable_next_button+" (loading...)":e.label.disable_next_button,description:e.help.disable_next_button,value:!e.storage.hasOwnProperty("disable_next_button")||e.storage.disable_next_button,disabled:e.isLoading},on:{input:function(t){return e.changeVal("disable_next_button",t)}}}),e._v(" "),a("cx-vui-switcher",{attrs:{name:"scroll_on_next","wrapper-css":["equalwidth"],label:e.loading.scroll_on_next?e.label.scroll_on_next+" (loading...)":e.label.scroll_on_next,description:e.help.scroll_on_next,value:!!e.storage.hasOwnProperty("scroll_on_next")&&e.storage.scroll_on_next,disabled:e.isLoading},on:{input:function(t){return e.changeVal("scroll_on_next",t)}}}),e._v(" "),a("cx-vui-switcher",{attrs:{name:"auto_focus","wrapper-css":["equalwidth"],label:e.loading.auto_focus?e.label.auto_focus+" (loading...)":e.label.auto_focus,description:e.help.auto_focus,value:!!e.storage.hasOwnProperty("auto_focus")&&e.storage.auto_focus,disabled:e.isLoading},on:{input:function(t){return e.changeVal("auto_focus",t)}}})],1),e._v(" "),a("cx-vui-component-wrapper",{attrs:{label:e.__("Form Request Args","jet-form-builder"),"wrapper-css":["equalwidth"]}}),e._v(" "),a("cx-vui-input",{attrs:{name:"gfb_request_args_key","wrapper-css":["equalwidth",e.errors.gfb_request_args_key?"jfb-has-error":""],size:"fullwidth",label:"Request key",description:"Unique form parameter (key)",value:e.storage.hasOwnProperty("gfb_request_args_key")?e.storage.gfb_request_args_key:"1111",disabled:e.isLoading},on:{input:function(t){return e.changeVal("gfb_request_args_key",t)}}}),e._v(" "),e.errors.gfb_request_args_key?a("div",{staticClass:"jfb-field-error"},[e._v("\n "+e._s(e.errors.gfb_request_args_key)+"\n ")]):e._e(),e._v(" "),a("cx-vui-input",{attrs:{name:"gfb_request_args_value","wrapper-css":["equalwidth",e.errors.gfb_request_args_value?"jfb-has-error":""],size:"fullwidth",label:"Request value",description:"Unique form parameter (value)",value:e.storage.hasOwnProperty("gfb_request_args_value")?e.storage.gfb_request_args_value:"2222",disabled:e.isLoading},on:{input:function(t){return e.changeVal("gfb_request_args_value",t)}}}),e._v(" "),e.errors.gfb_request_args_value?a("div",{staticClass:"jfb-field-error"},[e._v("\n "+e._s(e.errors.gfb_request_args_value)+"\n ")]):e._e()],1)};tt._withStripped=!0;const at={enable_dev_mode:(0,Pe.__)("Enable Dev-Mode","jet-form-builder"),disable_next_button:(0,Pe.__)('Disable "Next" button',"jet-form-builder"),clear_on_uninstall:(0,Pe.__)("Clear plugin data after the uninstall","jet-form-builder"),scroll_on_next:(0,Pe.__)("Scroll to the top on page change","jet-form-builder"),auto_focus:(0,Pe.__)("Automatic focus","jet-form-builder"),form_records_access_capability:(0,Pe.__)("Form Records Access Capability","jet-form-builder"),ssr_validation_method:(0,Pe.__)("Server side validation method","jet-form-builder"),self_promotable_roles:(0,Pe.__)("Self-Promotable Roles","jet-form-builder")},nt={enable_dev_mode:(0,Pe.__)("With developer mode enabled, errors from the form will be saved.","jet-form-builder"),disable_next_button:(0,Pe.__)("If this option is active, the Next button in a multi-step form won't become clickable until all the required fields are completed.","jet-form-builder"),clear_on_uninstall:(0,Pe.__)("If this option is active, when the plugin is deleted, all custom sql-tables, all options and files will also be deleted. In particular, those that were uploaded using Media Field.","jet-form-builder"),scroll_on_next:(0,Pe.__)("Automatic scrolling to the top of the form when switching between form pages.","jet-form-builder"),auto_focus:(0,Pe.__)("Indicates invalid field and prevents the user from going to the next page or submitting the form unless filled.","jet-form-builder"),form_records_access_capability:(0,Pe.__)('By default any Form Records available only for users with `manage_options` capability. Here you can overwrite it with any capability you want. More about capabilities here',"jet-form-builder"),ssr_validation_method:(0,Pe.__)("Select how the server-side validation request will be made – via WP REST API, admin-ajax.php, or through the URL of the current page.","jet-form-builder"),self_promotable_roles:(0,Pe.__)("Users without the `promote_users` capability can keep their current role or switch only to roles from this list in Update User actions. Leave it empty to skip self-service role changes.","jet-form-builder")},{SaveTabByAjax:it,i18n:st}=window.JetFBMixins,rt={name:"options-tab",props:{incoming:{type:Object,default:{}}},mixins:[it,st],data(){return{label:at,help:nt,storage:JSON.parse(JSON.stringify(this.incoming)),isLoading:!1,loading:{},pendingSave:!1,errors:{gfb_request_args_key:"",gfb_request_args_value:""},selectOptions:[{value:"rest",label:"Rest API"},{value:"admin_ajax",label:"Admin Ajax"},{value:"self",label:"Self"}]}},computed:{availableRoles(){return this.storage.available_roles||[]},selectedSelfPromotableRoles(){return this.storage.self_promotable_roles||[]}},created(){jfbEventBus.$on("request-state",this.onChangeState.bind(this))},methods:{getSavableData(){const{enable_dev_mode:e,clear_on_uninstall:t,form_records_access_capability:a,ssr_validation_method:n,self_promotable_roles:i,disable_next_button:s,scroll_on_next:r,auto_focus:o,gfb_request_args_key:l,gfb_request_args_value:c}=this.storage;return{enable_dev_mode:e,clear_on_uninstall:t,form_records_access_capability:a,ssr_validation_method:n,self_promotable_roles:Array.isArray(i)&&!i.length?[""]:i,disable_next_button:s,scroll_on_next:r,auto_focus:o,gfb_request_args_key:l,gfb_request_args_value:c}},getRequestOnSave(){return{data:this.getSavableData()}},onChangeState({state:e,slug:t}){if("options-tab"===t)return"end"===e?(this.loading={},this.$set(this,"isLoading",!1),void(this.pendingSave&&(this.pendingSave=!1,this.saveByAjax(this,this.$options.name)))):void this.$set(this,"isLoading","begin"===e)},validateField(e,t){if("gfb_request_args_key"!==e&&"gfb_request_args_value"!==e)return!0;const a=String(null!=t?t:"");if(/^\d+$/.test(a)){const t=this.__("Must contain at least one letter (A–Z). Numbers only are not allowed.","jet-form-builder");return this.$set(this.errors,e,t),!1}return this.$set(this.errors,e,""),!0},changeSelfPromotableRoles(e){Array.isArray(e)&&this.changeVal("self_promotable_roles",e)},changeVal(e,t){this.$set(this.storage,e,t),("gfb_request_args_key"!==e&&"gfb_request_args_value"!==e||this.validateField(e,t))&&(this.$set(this.loading,e,!0),this.isLoading?this.pendingSave=!0:this.saveByAjax(this,this.$options.name))}}};a(7167);const ot=p(rt,tt,[],!1,null,"2967d914",null).exports,{__:lt}=wp.i18n,ct=lt("Options","jet-form-builder"),ut=ot,dt=!1;var pt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[a("cx-vui-switcher",{attrs:{name:"enable_user_journey",label:e.loading.enable_user_journey?e.label.enable_user_journey+" (loading...)":e.label.enable_user_journey,description:e.help.enable_user_journey,"wrapper-css":["equalwidth"],value:!!e.storage.hasOwnProperty("enable_user_journey")&&e.storage.enable_user_journey,disabled:e.isLoading},on:{input:function(t){return e.changeVal("enable_user_journey",t)}}}),e._v(" "),e.storage.enable_user_journey?[a("cx-vui-select",{staticClass:"user-journey-select",attrs:{name:"storage_type",label:e.loading.storage_type?e.label.storage_type+" (loading...)":e.label.storage_type,description:e.help.storage_type,"wrapper-css":["equalwidth"],"options-list":[{value:"local",label:"Local Storage"},{value:"session",label:"Session Storage"}],value:e.storage.hasOwnProperty("storage_type")?e.storage.storage_type:"local",disabled:!e.storage.enable_user_journey||e.isLoading},on:{input:function(t){return e.changeVal("storage_type",t)}}}),e._v(" "),a("cx-vui-component-wrapper",[a("div",{staticClass:"cx-vui-component__label"},[e._v("Please note!")]),e._v(" "),a("div",[a("b",[e._v("Session Storage:")]),e._v(" The information is kept only while this tab or window is open. Reloading the page is fine, but as soon as you close the tab, the data disappears. Other tabs or windows of the site can’t see it. You can still get it back by pressing Ctrl + Shift + T (“Reopen Closed Tab”)")]),e._v(" "),a("div",[a("b",[e._v("Local Storage:")]),e._v(" The information stays much longer—every tab or window of this site can use it, and it remains even after you close and reopen the browser, until you clear it yourself.")])]),e._v(" "),a("cx-vui-select",{staticClass:"user-journey-select",attrs:{name:"clear_after_submit",label:e.loading.clear_after_submit?e.label.clear_after_submit+" (loading...)":e.label.clear_after_submit,description:e.help.clear_after_submit,"wrapper-css":["equalwidth"],"options-list":[{value:"always",label:"After any submit (success or failure)"},{value:"success",label:"After successful submit only"}],value:e.storage.hasOwnProperty("clear_after_submit")?e.storage.clear_after_submit:"success",disabled:!e.storage.enable_user_journey||e.isLoading},on:{input:function(t){return e.changeVal("clear_after_submit",t)}}})]:e._e()],2)};pt._withStripped=!0;const _t={enable_user_journey:(0,Pe.__)("Enable User Journey Tracking","jet-form-builder"),storage_type:(0,Pe.__)("Storage Type","jet-form-builder"),clear_after_submit:(0,Pe.__)("Clear Journey After Submit","jet-form-builder")},ht={enable_user_journey:(0,Pe.__)("Track the user’s journey across the website and save it in the browser.","jet-form-builder"),storage_type:(0,Pe.__)("Choose where to store the user journey data","jet-form-builder"),clear_after_submit:(0,Pe.__)("When to clear the journey data after form submission","jet-form-builder")},{SaveTabByAjax:ft,i18n:gt}=window.JetFBMixins,bt={name:"user-journey-tab",props:{incoming:{type:Object,default:()=>({})}},mixins:[ft,gt],data(){return{label:_t,help:ht,storage:JSON.parse(JSON.stringify(this.incoming)),isLoading:!1,loading:{}}},created(){jfbEventBus.$on("request-state",this.onChangeState.bind(this))},methods:{getRequestOnSave(){return{data:{...this.storage}}},onChangeState({state:e,slug:t}){"user-journey-tab"===t&&("end"===e&&(this.loading={}),this.$set(this,"isLoading","begin"===e))},changeVal(e,t){this.isLoading||(this.$set(this.storage,e,t),this.$set(this.loading,e,!0),this.saveByAjax(this,this.$options.name))}}};a(74);const mt=p(bt,pt,[],!1,null,null,null).exports,{__:vt}=wp.i18n,yt=vt("User Journey","jet-form-builder"),wt=mt,xt=!1;var jt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[a("cx-vui-input",{attrs:{name:"ipinfo_token","wrapper-css":["equalwidth"],size:"fullwidth",label:e.loading.ipinfo_token?e.label.ipinfo_token+" (loading...)":e.label.ipinfo_token,description:e.help.ipinfo_token,value:e.storage.hasOwnProperty("ipinfo_token")?e.storage.ipinfo_token:"",disabled:e.isLoading},on:{input:function(t){return e.changeVal("ipinfo_token",t)}}})],1)};jt._withStripped=!0;const{sprintf:kt,__:Ct}=wp.i18n,St={ipinfo_token:kt(Ct('Sign in at ipinfo.io and get your API token here.',"jet-form-builder"),"https://ipinfo.io","https://ipinfo.io/dashboard/token")},At={ipinfo_token:Ct("API Token","jet-form-builder")},{SaveTabByAjax:Bt,i18n:Lt}=window.JetFBMixins,Ot=p({name:"phone-field-tab",props:{incoming:{type:Object,default:{}}},mixins:[Bt,Lt],data(){return{label:At,help:St,storage:JSON.parse(JSON.stringify(this.incoming)),isLoading:!1,loading:{}}},created(){jfbEventBus.$on("request-state",this.onChangeState.bind(this))},methods:{getRequestOnSave(){return{data:{...this.storage}}},onChangeState({state:e,slug:t}){"phone-field-tab"===t&&("end"===e&&(this.loading={}),this.$set(this,"isLoading","begin"===e))},changeVal(e,t){this.isLoading||(this.$set(this.storage,e,t),this.$set(this.loading,e,!0),this.saveByAjax(this,this.$options.name))}}},jt,[],!1,null,null,null).exports,{__:$t}=wp.i18n,qt=$t("Ipinfo API","jet-form-builder"),Pt=Ot;var Tt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("SideBarBoxes",{scopedSlots:e._u([{key:"icon-help",fn:function(){return[a("svg",{attrs:{width:"14",height:"21",viewBox:"0 0 14 21",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M5.25 21H8.75V17.5H5.25V21ZM7 0C3.1325 0 0 3.1325 0 7H3.5C3.5 5.075 5.075 3.5 7 3.5C8.925 3.5 10.5 5.075 10.5 7C10.5 10.5 5.25 10.0625 5.25 15.75H8.75C8.75 11.8125 14 11.375 14 7C14 3.1325 10.8675 0 7 0Z",fill:"#7B7E81"}})])]},proxy:!0},{key:"content-help",fn:function(t){return[a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_knowledge,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"14",height:"16",viewBox:"0 0 14 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M13.458 11.2552L13.458 1.4115C13.458 1.03064 13.1357 0.708374 12.7549 0.708374L3.14551 0.708374C1.59277 0.708374 0.333008 1.96814 0.333008 3.52087L0.333008 12.8959C0.333008 14.4486 1.59277 15.7084 3.14551 15.7084L12.7549 15.7084C13.1357 15.7084 13.458 15.4154 13.458 15.0052L13.458 14.5365C13.458 14.3314 13.3408 14.1263 13.1943 14.0092C13.0479 13.5404 13.0479 12.2513 13.1943 11.8119C13.3408 11.6947 13.458 11.4896 13.458 11.2552ZM4.08301 4.63416C4.08301 4.54626 4.1416 4.45837 4.25879 4.45837L10.4697 4.45837C10.5576 4.45837 10.6455 4.54626 10.6455 4.63416L10.6455 5.22009C10.6455 5.33728 10.5576 5.39587 10.4697 5.39587L4.25879 5.39587C4.1416 5.39587 4.08301 5.33728 4.08301 5.22009L4.08301 4.63416ZM4.08301 6.50916C4.08301 6.42127 4.1416 6.33337 4.25879 6.33337L10.4697 6.33337C10.5576 6.33337 10.6455 6.42127 10.6455 6.50916L10.6455 7.09509C10.6455 7.21228 10.5576 7.27087 10.4697 7.27087L4.25879 7.27087C4.1416 7.27087 4.08301 7.21228 4.08301 7.09509L4.08301 6.50916ZM11.4951 13.8334L3.14551 13.8334C2.61816 13.8334 2.20801 13.4232 2.20801 12.8959C2.20801 12.3978 2.61816 11.9584 3.14551 11.9584L11.4951 11.9584C11.4365 12.4857 11.4365 13.3353 11.4951 13.8334Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_knowledge))])])]),e._v(" "),a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_community,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M15.5913 8.04564C15.5913 3.87728 12.214 0.5 8.04564 0.5C3.87728 0.5 0.5 3.87728 0.5 8.04564C0.5 11.8185 3.23834 14.9523 6.85903 15.5L6.85903 10.2363L4.94219 10.2363L4.94219 8.04564L6.85903 8.04564L6.85903 6.40264C6.85903 4.51623 7.98479 3.45132 9.68864 3.45132C10.5406 3.45132 11.3925 3.60345 11.3925 3.60345L11.3925 5.45943L10.4493 5.45943C9.50609 5.45943 9.20183 6.03753 9.20183 6.64604L9.20183 8.04564L11.3012 8.04564L10.9665 10.2363L9.20183 10.2363L9.20183 15.5C12.8225 14.9523 15.5913 11.8185 15.5913 8.04564Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_community))])])]),e._v(" "),a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_support,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"15",height:"18",viewBox:"0 0 15 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M7.58333 0.666687C3.675 0.666687 0.5 3.84169 0.5 7.75002C0.5 11.6584 3.675 14.8334 7.58333 14.8334H8V17.3334C12.05 15.3834 14.6667 11.5 14.6667 7.75002C14.6667 3.84169 11.4917 0.666687 7.58333 0.666687ZM8.41667 12.75H6.75V11.0834H8.41667V12.75ZM8.41667 9.83335H6.75C6.75 7.12502 9.25 7.33335 9.25 5.66669C9.25 4.75002 8.5 4.00002 7.58333 4.00002C6.66667 4.00002 5.91667 4.75002 5.91667 5.66669H4.25C4.25 3.82502 5.74167 2.33335 7.58333 2.33335C9.425 2.33335 10.9167 3.82502 10.9167 5.66669C10.9167 7.75002 8.41667 7.95835 8.41667 9.83335Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_support))])])]),e._v(" "),a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_git,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M7.976 0C5.86071 0.000265156 3.83214 0.840676 2.33641 2.33641C0.840676 3.83214 0.000265156 5.86071 0 7.976C0 11.498 2.3 14.483 5.431 15.56C5.823 15.609 5.969 15.364 5.969 15.168V13.798C3.768 14.288 3.279 12.722 3.279 12.722C2.936 11.792 2.398 11.547 2.398 11.547C1.664 11.058 2.446 11.058 2.446 11.058C3.229 11.107 3.67 11.89 3.67 11.89C4.404 13.113 5.529 12.77 5.97 12.575C6.018 12.037 6.263 11.695 6.459 11.499C4.697 11.303 2.838 10.618 2.838 7.535C2.838 6.655 3.131 5.969 3.67 5.382C3.62 5.235 3.327 4.404 3.768 3.327C3.768 3.327 4.453 3.131 5.969 4.159C6.605 3.963 7.291 3.914 7.976 3.914C8.661 3.914 9.346 4.012 9.982 4.159C11.499 3.132 12.184 3.327 12.184 3.327C12.624 4.404 12.33 5.235 12.281 5.431C12.8199 6.01808 13.1171 6.7871 13.113 7.584C13.113 10.667 11.253 11.303 9.493 11.499C9.786 11.743 10.031 12.232 10.031 12.966V15.168C10.031 15.364 10.177 15.608 10.569 15.56C12.155 15.0248 13.5327 14.0046 14.5073 12.6436C15.4818 11.2827 16.004 9.64989 16 7.976C15.951 3.572 12.38 0 7.976 0Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_git))])])])]}}])})};Tt._withStripped=!0;const{SideBarBoxes:Et}=JetFBComponents,Mt={name:"SettingsSideBar",components:{SideBarBoxes:Et}};a(52);const Jt=p(Mt,Tt,[],!1,null,null,null).exports,{applyFilters:Vt,doAction:It}=wp.hooks,{SaveTabByAjax:Rt,GetIncoming:Ft,i18n:Gt}=window.JetFBMixins,{CxVuiTabsPanel:Nt,CxVuiTabs:zt,AlertsList:Ut,FormBuilderPage:Ht}=JetFBComponents;window.jfbEventBus=window.jfbEventBus||new Vue({});const Kt=Vt("jet.fb.register.settings-page.tabs",[r,o,s,e,l,t,n]),Zt=e=>{window.location.hash="#"+e},Wt={name:"jfb-settings",components:{AlertsList:Ut,CxVuiTabsPanel:Nt,CxVuiTabs:zt,SettingsSideBar:Jt,FormBuilderPage:Ht},data(){const[e,t]=(()=>{const e=Kt[0].component.name;if(!window.location.hash)return Zt(e),[e];let[t,...a]=window.location.hash.replace("#","").split("__"),n=Kt.find((e=>e?.component?.name===t));return n?(Zt([n.component.name,...a].join("__")),[n.component.name,a]):(Zt(e),[e])})();return{activeTabSlug:e,activeTabInnerSlugs:t,tabs:Kt,loadingTab:{},isActivePro:!1}},mixins:[Rt,Ft,Gt],created(){this.isActivePro=this.getIncoming("is_active"),jfbEventBus.$on("request-state",(e=>{const{state:t,slug:a}=e;this.$set(this.loadingTab,a,"begin"===t)})),jfbEventBus.$on("alert-click-thanks",(({self:e})=>{e.closeAlert()})),jfbEventBus.$on("alert-click-check",(({self:e})=>{e.closeAlert()}))},methods:{onChangeActiveTab(e){const t=new URL(document.URL);t.hash="#"+e,document.location.href=t.href,jfbEventBus.$emit("change-tab",{slug:e})},onSaveTab(e,t){const a=this.$refs.tabComponents[e];this.saveByAjax(a,t)}}};a(2995);const Dt=p(Wt,$,[],!1,null,null,null).exports,{renderCurrentPage:Yt}=window.JetFBActions,{NoticesPlugin:Xt}=JetFBStore;Yt(Dt,{store:new Vuex.Store({plugins:[Xt]})})})()})(); \ No newline at end of file diff --git a/assets/build/admin/vuex.package.asset.php b/assets/build/admin/vuex.package.asset.php index f75d7379d..dd0af0eca 100644 --- a/assets/build/admin/vuex.package.asset.php +++ b/assets/build/admin/vuex.package.asset.php @@ -1 +1 @@ - array('wp-api-fetch', 'wp-i18n'), 'version' => '282f8bf25f7004a4e2a9'); + array('wp-api-fetch', 'wp-i18n'), 'version' => '5479d2c7ce7ecc27f851'); diff --git a/assets/build/admin/vuex.package.js b/assets/build/admin/vuex.package.js index 1e31dbf9e..7b5826d5b 100644 --- a/assets/build/admin/vuex.package.js +++ b/assets/build/admin/vuex.package.js @@ -1 +1 @@ -(()=>{var t={6565(){window.jfbEventBus=window.jfbEventBus||new Vue({data:()=>({reactiveCounter:0})})},4285(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>p});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o),r=n(62),a=n.n(r),c=new URL(n(2054),n.b),u=l()(i()),d=a()(c);u.push([t.id,`.jet-form-builder-page__banner{display:flex;flex-direction:column;align-items:stretch;gap:20px;border-radius:4px;color:#23282d;overflow:hidden;position:relative;background-size:cover;background-position:50% 50%;box-shadow:0px 2px 6px rgba(35,40,45,.07)}.jet-form-builder-page__banner .banner-frame{display:flex;flex-direction:column;align-items:stretch;border-radius:4px;z-index:1}.jet-form-builder-page__banner .banner-inner{height:100%;box-sizing:border-box;border-radius:4px}.jet-form-builder-page__banner .banner-label{font-weight:500;font-size:14px;line-height:18px;text-transform:uppercase;margin-bottom:38px}.jet-form-builder-page__banner .banner-title{font-size:20px;line-height:28px;margin-bottom:10px}.jet-form-builder-page__banner .banner-content{font-size:14px;line-height:18px;margin-bottom:20px}.jet-form-builder-page__banner .banner-buttons{display:flex;justify-content:flex-start;align-items:flex-end;flex:1 1 auto}.jet-form-builder-page__banner .banner-buttons .cx-vui-button{margin-right:10px}.jet-form-builder-page__banner .banner-buttons .cx-vui-button:last-child{margin-right:0}.jet-form-builder-page__banner.light-1-preset{background-color:#fff}.jet-form-builder-page__banner.light-1-preset .banner-label{color:#bb97ff}.jet-form-builder-page__banner.light-1-preset .banner-content{color:#7b7e81}.jet-form-builder-page__banner.light-1-preset:after{content:"";display:block;position:absolute;width:100%;height:100%;top:0;left:0;background-image:url(${d});background-repeat:no-repeat;background-position:right;background-position-y:0}`,""]);const p=u},9840(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-row-wrapper[data-v-4f8e09cf]{display:flex;gap:2em;align-items:end;padding:1em;margin-top:2em;flex-wrap:wrap}.jfb-row-wrapper--loading[data-v-4f8e09cf]{opacity:.5}.filters[data-v-4f8e09cf]{display:flex;gap:1em;align-items:flex-end;flex-wrap:wrap}.wrapper-buttons[data-v-4f8e09cf]{flex:1;text-align:end}",""]);const r=l},6561(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-form-builder-page .cx-vui-alert{width:100%;box-sizing:border-box;padding:10px 20px;margin-top:20px;background-color:#f4f4f5;border-radius:4px;display:flex;justify-content:flex-start;align-items:flex-start}.jet-form-builder-page .cx-vui-alert .cx-vui-alert__icon{margin-top:3px;margin-right:10px}.jet-form-builder-page .cx-vui-alert .cx-vui-alert__message{flex:1 1 auto;color:#7b7e81;font-size:13px}.jet-form-builder-page .cx-vui-alert.info-type{background-color:#edf6fa}.jet-form-builder-page .cx-vui-alert.info-type .cx-vui-alert__icon svg{fill:#007cba}.jet-form-builder-page .cx-vui-alert.info-type .cx-vui-alert__message{color:#007cba}.jet-form-builder-page .cx-vui-alert.success-type{background-color:#e9f6ea}.jet-form-builder-page .cx-vui-alert.success-type .cx-vui-alert__icon svg{fill:#46b450}.jet-form-builder-page .cx-vui-alert.success-type .cx-vui-alert__message{color:#46b450}.jet-form-builder-page .cx-vui-alert.error-type{background-color:#fbf0f0}.jet-form-builder-page .cx-vui-alert.error-type .cx-vui-alert__icon svg{fill:#c92c2c}.jet-form-builder-page .cx-vui-alert.error-type .cx-vui-alert__message{color:#c92c2c}.jet-form-builder-page__alerts{width:100%;display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.jet-form-builder-page__alert{position:relative;display:flex;justify-content:flex-start;align-items:flex-start;background-color:#fff;box-shadow:0px 2px 6px rgba(35,40,45,.07);padding:20px;margin-top:10px}.jet-form-builder-page__alert:first-child{margin-top:0}.jet-form-builder-page__alert.info-type .alert-type-line{background:#3b82f6}.jet-form-builder-page__alert.success-type .alert-type-line{background:#40d825;background:linear-gradient(180deg, #40D825 0%, #B1EF3A 100%)}.jet-form-builder-page__alert.danger-type .alert-type-line{background:#fedb22;background:linear-gradient(0deg, #FEDB22 0%, #FFA901 100%),#5099e6}.jet-form-builder-page__alert.error-type .alert-type-line{background:#ff8b8b;background:linear-gradient(0deg, #FF8B8B 0%, #F5435A 100%),#5099e6}.jet-form-builder-page__alert .alert-type-line{display:block;position:absolute;width:4px;height:100%;top:0;left:0;background:linear-gradient(0deg, #5B77E7 0%, #49B5D2 53.65%, #26E8A8 100%)}.jet-form-builder-page__alert .alert-close{display:flex;justify-content:center;align-items:center;position:absolute;top:7px;right:7px;cursor:pointer}.jet-form-builder-page__alert .alert-icon{position:relative;display:flex;justify-content:center;align-items:center;max-width:80px;width:48px;margin-right:20px}.jet-form-builder-page__alert .alert-icon svg{width:100%;height:auto}.jet-form-builder-page__alert .alert-content{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.jet-form-builder-page__alert .alert-title{color:#23282d;font-size:14px;line-height:18px;font-weight:500;margin-bottom:5px}.jet-form-builder-page__alert .alert-message{color:#7b7e81;font-size:13px;line-height:16px}.jet-form-builder-page__alert .alert-buttons{margin-top:10px}.jet-form-builder-page__alert .alert-buttons .cx-vui-button{margin-right:10px}.jet-form-builder-page__alert .alert-buttons .cx-vui-button:last-child{margin-right:0}",""]);const r=l},8908(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-cx-vui-component.cx-vui-component{column-gap:1em;flex-direction:row-reverse;padding:1.2em}.jfb-cx-vui-component .cx-vui-component__label{font-size:inherit}",""]);const r=l},7443(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-fb-choose-action-wrapper{display:flex;align-items:center;justify-content:space-between;gap:.7em;max-width:20vw;min-width:250px}.jet-fb-choose-action-wrapper .cx-vui-component{flex:1;padding:unset}.jet-fb-choose-action-wrapper .cx-vui-component__control{flex:1}",""]);const r=l},9942(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"#normal-sortables .jfb-list-table th{width:30%}.jfb-list-table{border-collapse:collapse;width:100%}.jfb-list-table-row{border-bottom:1px solid #ececec}.jfb-list-table-row--inner{padding:.8em}.jfb-list-table-row--item{word-break:break-word}.jfb-list-table-row--heading{text-align:left}.jfb-list-table-row:last-child{border-bottom:unset}body.rtl .jfb-list-table-row--heading{text-align:right}",""]);const r=l},2485(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,'.cx-vui-panel--loading{opacity:.5}.cx-vui-panel-table-wrapper{margin-bottom:unset}.cx-vue-list-table .list-table-heading,.cx-vue-list-table .list-table-item-columns{justify-content:space-between}.cx-vue-list-table .list-table-item{flex-direction:column;position:relative;background-color:#fff}.cx-vue-list-table .list-table-item:not(:last-child){border-bottom:1px solid #ececec}.cx-vue-list-table .list-table-item:hover{background-color:#e3f6fd}.cx-vue-list-table .list-table-item:hover .list-table-item-actions{visibility:visible}.cx-vue-list-table .list-table-item--has-choose .list-table-item-actions{left:5.2em}.cx-vue-list-table .list-table-item--has-actions .list-table-item-columns{margin-bottom:1.5em}.cx-vue-list-table .list-table-item-actions{display:flex;width:85%;column-gap:.5em;visibility:hidden;position:absolute;bottom:.5em;left:1.5em}.cx-vue-list-table .list-table-item-actions>*:not(:last-child)::after{content:"|"}.cx-vue-list-table .list-table-item-actions-single{text-decoration:unset}.cx-vue-list-table .list-table-item-actions-single--type-danger{color:#b22222}.cx-vue-list-table .list-table-item-actions-single.disabled{pointer-events:none;cursor:default}.cx-vue-list-table .list-table-item-columns{display:flex;justify-content:space-between;width:100%}.cx-vue-list-table .list-table-item__cell{white-space:nowrap;overflow:hidden;position:relative;padding:8px 20px 6px}.cx-vue-list-table .list-table-item__cell:not(.cell--choose){flex:1}.cx-vue-list-table .list-table-heading__cell:not(.cell--choose){flex:1}body.rtl .cx-vue-list-table .list-table-item--has-choose .list-table-item-actions{right:5.2em}body.rtl .cx-vue-list-table .list-table-item-actions{right:1.5em}',""]);const r=l},4378(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-ellipsis{overflow:hidden;text-overflow:ellipsis}.list-table-item__cell{overflow:hidden;text-overflow:ellipsis}.list-table-item__cell.overflow-visible.overflow-visible{overflow:visible}.list-table-item__cell.is-editable{display:flex;justify-content:space-between;column-gap:1em}.list-table-item__cell.is-editable span.dashicons{transition:all .2s ease-in-out;padding:.2em;border-radius:50%;box-shadow:unset;cursor:pointer;background-color:#fff}.list-table-item__cell--body{flex:1}.list-table-item__cell--body-value{overflow:hidden;text-overflow:ellipsis}.list-table-item__cell--body-value.jfb-control{flex:1;padding:.1em}.list-table-item__cell--body-value.jfb-control>*{width:100%}.list-table-item__cell.show-overflow.show-overflow{word-break:break-word;white-space:normal;line-height:1.5}.list-table-item__cell:hover .list-table-item__cell--body-is-editable span.dashicons:hover{box-shadow:0 0 8px #ccc}",""]);const r=l},665(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-form-builder-page>h1.inline{display:inline-block}",""]);const r=l},7950(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vue-list-table .cell--id.cell--id{flex:.3}",""]);const r=l},6284(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vui-popup.export-popup .cx-vui-popup__body{width:65vw}.cx-vui-popup.export-popup .cx-vui-popup__footer{justify-content:space-between}.cx-vui-popup.export-popup .footer-counter{display:flex;gap:1em}",""]);const r=l},7803(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-content-sidebar{width:300px;display:flex;flex-direction:column;gap:2em}",""]);const r=l},1645(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-actions{display:flex;flex-direction:column;row-gap:10px}.jfb-actions a.jfb-dropdown-item{padding:.5em 0;text-decoration:none}.jfb-actions a.jfb-dropdown-item:hover{text-decoration:underline}.jfb-actions a.jfb-dropdown-item:not(:first-child){border-top:1px solid #ccc}",""]);const r=l},5343(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vui-component[data-v-207e75c4]{padding:unset}",""]);const r=l},9699(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vue-list-table .cell--choose.cell--choose{padding-right:unset}.cx-vue-list-table .cell--choose.cell--choose .cx-vui-component{padding:unset}.cx-vue-list-table .cell--choose.cell--choose .cx-vui-checkbox__check{margin-top:0}",""]);const r=l},3033(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-icon-status[data-v-5890b8d6]{position:relative;display:inline-block}.jfb-icon-status-has-help[data-v-5890b8d6]{cursor:pointer}.jfb-icon-status-has-text[data-v-5890b8d6]{display:flex;column-gap:.5em;align-items:center}.jfb-icon-status--text[data-v-5890b8d6]{text-overflow:ellipsis;overflow:hidden;padding:.1em 0}.jfb-icon-status .dashicons-dismiss[data-v-5890b8d6]{color:#ff4500}.jfb-icon-status .dashicons-warning[data-v-5890b8d6]{color:orange}.jfb-icon-status .dashicons-yes-alt[data-v-5890b8d6]{color:#32cd32}.jfb-icon-status .dashicons-info[data-v-5890b8d6]{color:#90c6db}.jfb-icon-status .dashicons-hourglass[data-v-5890b8d6]{color:#b5b5b5}.jfb-icon-status .cx-vui-tooltip[data-v-5890b8d6]{width:fit-content;bottom:calc(100% + 15px);box-sizing:border-box;pointer-events:none;transition:all .18s linear;opacity:0;padding-left:1em;padding-right:1em;position:absolute}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-right[data-v-5890b8d6]{right:-1.2em}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-right[data-v-5890b8d6]:after{right:20px;left:unset}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-left[data-v-5890b8d6]{left:-0.9em}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-left[data-v-5890b8d6]:after{left:20px;right:unset}.jfb-icon-status:hover .cx-vui-tooltip[data-v-5890b8d6]{opacity:1}.jfb-icon-status:hover .cx-vui-tooltip.tooltip-position-top-right[data-v-5890b8d6]{bottom:100%}.jfb-icon-status:hover .cx-vui-tooltip.tooltip-position-top-left[data-v-5890b8d6]{bottom:100%}",""]);const r=l},9831(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"a[data-v-53bef95e]{text-decoration:none}a.with-flex[data-v-53bef95e]{display:flex;align-items:center;column-gap:.3em;width:fit-content}",""]);const r=l},3189(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-form-builder-page pre{margin:unset;overflow:auto}",""]);const r=l},8469(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"select option[data-v-1bd48c17]:disabled{background-color:#f5f5f5}",""]);const r=l},8192(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-pagination{display:flex;justify-content:space-between;align-items:center;padding:1.5em;margin-bottom:unset}.jfb-pagination--sort .cx-vui-component{column-gap:1em;justify-content:center;align-items:center;padding:unset}.jfb-pagination .cx-vui-input{background-color:#fff}.jfb-pagination li.cx-vui-pagination-item{width:1.2em;height:1.5em;border-radius:5px;font-size:1.15em;transition:all .3s ease-in-out}.jfb-pagination li.cx-vui-pagination-item-active,.jfb-pagination li.cx-vui-pagination-item:hover{box-shadow:0 5px 5px -1px #bdbdbd;background-color:#007cba;color:#f5f5f5;border-color:#007cba}",""]);const r=l},2877(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.jfb-primary-actions {\n\tdisplay: flex;\n\tjustify-content: space-between;\n}\n.cx-vui-button.cx-vui-button--size-link {\n\tfont-size: inherit;\n}\n.major-publishing-actions {\n\tpadding: 10px;\n\tclear: both;\n\tborder-top: 1px solid #dcdcde;\n\tbackground: #f6f7f7;\n}\n",""]);const r=l},7008(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\na[data-v-6c61ef64] {\n\tmargin-right: 1em;\n\ttext-decoration: none;\n}\nbody.rtl a[data-v-6c61ef64] {\n\tmargin-left: 1em;\n}\n",""]);const r=l},7513(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.page-actions[data-v-35fab3b2] {\n\tdisplay: flex;\n\tgap: 1em;\n}\n\n",""]);const r=l},1060(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.misc-pub-section {\n\tborder-bottom: 1px solid #ececec;\n}\n.misc-pub-section:last-child {\n\tborder-bottom: unset;\n}\n\n",""]);const r=l},2269(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.handle-actions[data-v-5ebbe4a6] {\n\tdisplay: flex;\n}\n\n",""]);const r=l},935(t){"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var n="",s=void 0!==e[5];return e[4]&&(n+="@supports (".concat(e[4],") {")),e[2]&&(n+="@media ".concat(e[2]," {")),s&&(n+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),n+=t(e),s&&(n+="}"),e[2]&&(n+="}"),e[4]&&(n+="}"),n}).join("")},e.i=function(t,n,s,i,o){"string"==typeof t&&(t=[[null,t,void 0]]);var l={};if(s)for(var r=0;r0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=o),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),i&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=i):u[4]="".concat(i)),e.push(u))}},e}},62(t){"use strict";t.exports=function(t,e){return e||(e={}),t?(t=String(t.__esModule?t.default:t),/^['"].*['"]$/.test(t)&&(t=t.slice(1,-1)),e.hash&&(t+=e.hash),/["'() \t\n]|(%20)/.test(t)||e.needQuotes?'"'.concat(t.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):t):t}},6758(t){"use strict";t.exports=function(t){return t[1]}},5201(t,e,n){var s=n(4285);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("c4aaf4cc",s,!1,{})},9492(t,e,n){var s=n(9840);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("3db94e28",s,!1,{})},8661(t,e,n){var s=n(6561);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("4a3f50be",s,!1,{})},4744(t,e,n){var s=n(8908);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("9b25b9f2",s,!1,{})},7287(t,e,n){var s=n(7443);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("d08b32f0",s,!1,{})},5850(t,e,n){var s=n(9942);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("f88cbe24",s,!1,{})},97(t,e,n){var s=n(2485);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("5184e3d8",s,!1,{})},3726(t,e,n){var s=n(4378);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("15f24569",s,!1,{})},1746(t,e,n){var s=n(665);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("04f1d88b",s,!1,{})},7834(t,e,n){var s=n(7950);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("fa7110b0",s,!1,{})},9256(t,e,n){var s=n(6284);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("eab0c31e",s,!1,{})},7823(t,e,n){var s=n(7803);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("94a4f310",s,!1,{})},8241(t,e,n){var s=n(1645);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("d35e5ff6",s,!1,{})},9971(t,e,n){var s=n(5343);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("3fee1c64",s,!1,{})},4487(t,e,n){var s=n(9699);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("7f272449",s,!1,{})},7597(t,e,n){var s=n(3033);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("39430ad8",s,!1,{})},9963(t,e,n){var s=n(9831);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("237ecbda",s,!1,{})},3249(t,e,n){var s=n(3189);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("922c9ac8",s,!1,{})},361(t,e,n){var s=n(8469);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("fa8aca68",s,!1,{})},2972(t,e,n){var s=n(8192);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("c692d034",s,!1,{})},7289(t,e,n){var s=n(2877);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("1e0fc7e8",s,!1,{})},9244(t,e,n){var s=n(7008);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("5c9c0768",s,!1,{})},3061(t,e,n){var s=n(7513);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("2fdc9246",s,!1,{})},8848(t,e,n){var s=n(1060);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("25d89817",s,!1,{})},7985(t,e,n){var s=n(2269);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("bbaec80a",s,!1,{})},611(t,e,n){"use strict";function s(t,e){for(var n=[],s={},i=0;if});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},l=i&&(document.head||document.getElementsByTagName("head")[0]),r=null,a=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",m="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(t,e,n,i){c=n,d=i||{};var l=s(t,e);return g(l),function(e){for(var n=[],i=0;in.parts.length&&(s.parts.length=n.parts.length)}else{var l=[];for(i=0;i{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var s in e)n.o(e,s)&&!n.o(t,s)&&Object.defineProperty(t,s,{enumerable:!0,get:e[s]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.b="undefined"!=typeof document&&document.baseURI||self.location.href,(()=>{"use strict";var t={};n.r(t),n.d(t,{head:()=>Z,item:()=>R});var e={};n.r(e),n.d(e,{item:()=>X});var s={};n.r(s),n.d(s,{item:()=>tt});var i={};n.r(i),n.d(i,{control:()=>nt});var o={};n.r(o),n.d(o,{control:()=>it});var l={};n.r(l),n.d(l,{item:()=>ni}),n(6565);var r=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("FormBuilderPage",{attrs:{title:t.__("JetFormBuilder Payments","jet-form-builder")},scopedSlots:t._u([{key:"heading-after",fn:function(){return[n("ExportPaymentsButton")]},proxy:!0}])},[t._v(" "),n("ActionsWithFilters",{scopedSlots:t._u([{key:"filters",fn:function(){return[n("StatusFilter")]},proxy:!0}])}),t._v(" "),n("TablePagination"),t._v(" "),n("EntriesTable"),t._v(" "),t.$slots.default?[t._t("default")]:t._e(),t._v(" "),n("TablePagination")],2)};r._withStripped=!0;var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.show?n("div",{class:t.wrapperClass},[n("ChooseAction"),t._v(" "),n("div",{staticClass:"filters"},[t._t("filters")],2),t._v(" "),n("div",{staticClass:"wrapper-buttons"},[t._t("buttons")],2)],1):t._e()};a._withStripped=!0;var c=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jet-fb-choose-action-wrapper"},[n("cx-vui-select",{attrs:{placeholder:t.__("Bulk actions","jet-form-builder"),size:"fullwidth",value:t.currentAction,"options-list":t.actionsList},on:{input:t.setCurrentAction}}),t._v(" "),n("cx-vui-button",{attrs:{loading:t.isLoading,disabled:t.isDoing,"button-style":"accent-border",size:"mini"},on:{click:t.applyAction},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Apply","jet-form-builder")))]},proxy:!0}])})],1)};c._withStripped=!0;const u={CHOOSE_ACTION:"chooseAction",CLICK_ACTION:"clickAction"},d={props:{scope:{type:String,default:"default"}},methods:{scopedName(t){return"scope-"+this.scope+"/"+t},getter(t,e){const n=this.$store.getters[this.scopedName(t)];return void 0!==e&&"function"==typeof n?e?.length&&"object"==typeof e?n(...e):n(e):n},commit(t,e){return this.$store.commit(this.scopedName(t),e)},dispatch(t,e){return this.$store.dispatch(this.scopedName(t),e)}}},{i18n:p}=JetFBMixins,{applyFilters:m}=wp.hooks,{CHOOSE_ACTION:f,CLICK_ACTION:g}=u;window.jfbEventBus=window.jfbEventBus||new Vue({});const{mapState:h,mapGetters:b,mapMutations:v,mapActions:_}=Vuex,C={name:"ChooseAction",mixins:[p,d],computed:{...b(["isDoing"]),currentAction(){return this.getter("currentAction")},isLoading(){return this.getter("isLoading","applyButton")},actionsList(){return this.getter("actionsList")},getChecked(){return this.getter("getChecked")},getActionPromise(){return this.getter("getActionPromise")}},methods:{...v(["toggleDoingAction"]),setCurrentAction(t){this.commit("setCurrentAction",t)},onFinish(){this.commit("toggleLoading","applyButton"),this.toggleDoingAction()},applyAction(){this.onFinish(),this.commit("setProcess",{action:this.currentAction,context:f,payload:[this.getChecked,f]});const t=()=>{this.onFinish(),this.commit("clearProcess"),this.commit("setChecked",[]),this.commit("unChooseHead")};try{this.getActionPromise().finally(t)}catch(t){this.onFinish()}}}};function y(t,e,n,s,i,o,l,r){var a,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),s&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),l?(a=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(l)},c._ssrRegister=a):i&&(a=r?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),a)if(c.functional){c._injectStyles=a;var u=c.render;c.render=function(t,e){return a.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,a):[a]}return{exports:t,options:c}}n(7287);const x=y(C,c,[],!1,null,null,null).exports,{GetIncoming:w,i18n:S}=JetFBMixins,{mapMutations:j,mapActions:E,mapState:k,mapGetters:P}=Vuex,L={name:"ActionsWithFilters",components:{ChooseAction:x},mixins:[w,S,d],data:()=>({}),computed:{...P(["isDoing"]),hasFilters(){return jfbEventBus.reactiveCounter,this.getter("hasFilters")},items(){return this.getter("list")},show(){return this.items.length||this.hasFilters},wrapperClass(){return{"cx-vui-panel":!0,"jfb-row-wrapper":!0,"jfb-row-wrapper--loading":this.isDoing}}},created(){if(!this.items.length)return;const{filters_endpoint:t}=this.getIncoming();t&&this.dispatch("maybeFetchFilters",t)}};n(9492);const A=y(L,a,[],!1,null,"4f8e09cf",null).exports;var B=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jfb-pagination"},[n("span",{staticClass:"jfb-pagination--results"},[t._v("\n\t\t"+t._s(t.__s("Showing %d - %d of %d results.","jet-form-builder",t.queryState.itemsFrom,t.queryState.itemsTo,t.queryState.total))+"\n\t")]),t._v(" "),t.queryState.limit[]}},data:()=>({componentsCols:[]}),created(){this.componentsCols=[...this.columnsComponents,t,e,s,i,o,ut,rt]},methods:{getColumnComponentByPrefix(t,e){const n=this.componentsCols.findIndex(n=>n[e]?.name===t+"--"+e);return-1!==n&&this.componentsCols[n][e]}}};var pt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.getClasses},[n("div",{staticClass:"list-table-item__cell--body jfb-ellipsis"},[t.initial.editable&&t.isEnableEdit?n("div",{staticClass:"list-table-item__cell--body-value jfb-control"},[n("keep-alive",[n(t.getComponentEditControl,{tag:"component",attrs:{options:t.initial.control_options},model:{value:t.editedCellValue,callback:function(e){t.editedCellValue=e},expression:"editedCellValue"}})],1)],1):t.getComponentColumn?[n(t.getComponentColumn,{tag:"component",attrs:{value:t.value,"full-entry":t.entry,"entry-id":t.entryId,scope:t.scope}})]:t.getComponentType?[n(t.getComponentType,{tag:"component",attrs:{value:t.value,"full-entry":t.entry,"entry-id":t.entryId,scope:t.scope}})]:n("div",{staticClass:"list-table-item__cell--body-value",domProps:{innerHTML:t._s(t.value)}})],2),t._v(" "),t.initial.editable&&t.editedCellValue!==t.initialValue?n("div",{staticClass:"list-table-item__cell--actions"},[n("span",{staticClass:"dashicons dashicons-undo",on:{click:t.revertChangesColumn}})]):t._e()])};pt._withStripped=!0;const mt={name:"EntryColumnsTable",props:{entry:Object,column:String,entryId:Number},mixins:[d,dt],computed:{initial(){var t;return null!==(t=this.entry[this.column])&&void 0!==t?t:{}},value(){return this.initial.editable?this.editedCellValue:this.initialValue},initialValue(){var t,e;return null!==(t=null!==(e=this.initial?.value)&&void 0!==e?e:this.initial?.value?.value)&&void 0!==t&&t},initialType(){var t;return null!==(t=this.initial?.type)&&void 0!==t?t:"string"},initialClasses(){var t;return null!==(t=this.initial?.classes)&&void 0!==t?t:[]},getClasses(){const t=["list-table-item__cell","cell--"+this.column,"cell-type--"+this.initialType,...this.initialClasses];return!t.includes("overflow-visible")&&this.isShowOverflow&&t.push("show-overflow"),this.initial.editable&&t.push("is-editable"),t},editedCellValue:{get(){return jfbEventBus.reactiveCounter,this.getter("editedCellValue",[this.column,this.entry])},set(t){this.commit("updateEditableCell",{record:this.entry,column:this.column,initial:this.initialValue,props:{value:t}}),jfbEventBus.reactiveCounter++}},isEnableEdit(){return jfbEventBus.reactiveCounter,this.getter("isEnableEdit")},isShowOverflow(){return this.getter("options/isShowOverflow")},getComponentType(){return this.getItemComponent(this.initialType)},getComponentColumn(){return this.getItemComponent(this.column)},getComponentEditControl(){return this.getColumnComponentByPrefix(this.initial?.control,"control")}},methods:{revertChangesColumn(){this.commit("revertChangesColumn",{record:this.entry,column:this.column}),jfbEventBus.reactiveCounter++},getItemComponent(t){return this.getColumnComponentByPrefix(t,"item")}}};n(3726);const ft=y(mt,pt,[],!1,null,null,null).exports;function gt(t){var e,n;return null!==(e=null!==(n=t?.id?.value)&&void 0!==n?n:t?.choose?.value)&&void 0!==e?e:0}const{CHOOSE_ACTION:ht,CLICK_ACTION:bt}=u,{mapState:vt,mapGetters:_t,mapActions:Ct,mapMutations:yt}=window.Vuex,xt={name:"EntriesTableSkeleton",components:{EntryColumnsTable:ft},props:{list:{type:Array},columns:{type:Object},loading:{type:Boolean,default:!1},emptyMessage:{type:String,default:""},footerHeading:{type:Boolean,default:!0}},data:()=>({columnsIDs:[]}),mixins:[dt,d],created(){this.columnsIDs=Object.keys(this.columns)},computed:{rootClasses(){return{"cx-vui-panel":!0,"cx-vui-panel--loading":this.loading,"cx-vui-panel-table-wrapper":!0}},filteredColumns(){return this.columnsIDs.filter(this.isShown).sort((t,e)=>{var n,s;return(null!==(n=this.columns[t].table_order)&&void 0!==n?n:999)-(null!==(s=this.columns[e].table_order)&&void 0!==s?s:999)})},..._t(["isDoing"])},methods:{...yt(["toggleDoingAction"]),getHeadingComponent(t){return this.getColumnComponentByPrefix(t,"head")},getActionHref:t=>t?.href||"javascript:void(0)",getActionClass(t){const{type:e="default",class_name:n=""}=t;return{"list-table-item-actions-single":!0,[n]:!0,["list-table-item-actions-single--type-"+e]:!0,disabled:this.isDoing}},isShown(t){var e;return null===(e=this.columns[t].show_in_table)||void 0===e||e},classEntry(t,e){var n;return{"list-table-item":!0,"list-table-item--has-choose":e?.choose?.value,"list-table-item--has-actions":e?.actions?.value?.length,...null!==(n=e?.classes?.value)&&void 0!==n?n:{}}},columnType(t,e){var n;return null!==(n=t[e]?.type)&&void 0!==n?n:"string"},onClickAction(t,e,n){if(!t?.href||"#"===t.href){n.preventDefault(),this.commit("setProcess",{action:t.value,context:bt,payload:[[gt(e)],bt,t?.payload,e]});try{this.dispatch("beforeRowAction")}catch(t){return}this.dispatch("runRowAction")}}}},wt=xt;n(97);const St=y(wt,I,[],!1,null,null,null).exports,{mapState:jt,mapGetters:Et,mapActions:kt,mapMutations:Pt}=window.Vuex,{applyFilters:Lt}=wp.hooks,At=y({name:"entries-table",data:()=>({components:[]}),components:{EntriesTableSkeleton:St},mixins:[d],created(){this.components=Lt(`jet.fb.admin.table.${this.scope}`,[])},computed:{list(){return this.getter("list")},columns(){return this.getter("columns")},emptyMessage(){return this.getter("emptyMessage")},isLoading(){return this.getter("isLoading","page")},footerHeading(){return this.getter("options/footerHeading")}}},D,[],!1,null,null,null).exports;var Bt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:{wrap:!0,"jet-form-builder-page":!0}},[t._t("heading-before"),t._v(" "),n("h1",{staticClass:"wp-heading-inline"},[t._v("\n\t\t"+t._s(t.title)+"\n\t")]),t._v(" "),t.$slots["heading-after"]?[t._t("heading-after")]:t.hasGlobalActions?[n("PageActions")]:t._e(),t._v(" "),n("hr",{staticClass:"wp-header-end"}),t._v(" "),t._t("default")],2)};Bt._withStripped=!0;var Ft=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"page-actions"},t._l(t.secondaryActions,function(e){return n("div",{key:e.slug,class:["page-actions-item","action-"+e.slug]},[e.button?n("cx-vui-button",{key:"button-action-"+e.slug,class:["cx-vui-button--style-"+e.button.type].concat(e.button.classes),attrs:{"button-style":e.button.style,size:e.button.size,url:e.button.url,"tag-name":e.button.url?"a":"button",disabled:t.isDisabled(e.slug)||t.isGlobalDoing,loading:t.isLoading(e.slug),target:"_blank"},on:{click:function(n){return t.globalEmit(e)}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(e.button.label))]},proxy:!0}],null,!0)}):t._e()],1)}),0)};Ft._withStripped=!0;const{mapState:Tt,mapGetters:Mt,mapMutations:Vt,mapActions:Ot}=Vuex,$t={name:"PageActions",mixins:[d],computed:{...Mt("actions",["actions","isLoading","isDisabled"]),...Mt(["isDoing"]),isGlobalDoing(){return jfbEventBus.reactiveCounter,this.isDoing},secondaryActions(){return this.actions.filter(t=>"secondary"===t.position)}},methods:{...Vt("actions",["setCurrentAction"]),globalEmit({slug:t}){this.setCurrentAction(t),jfbEventBus.$emit("page-"+t)}}},Dt=$t;n(3061);const It=y(Dt,Ft,[],!1,null,"35fab3b2",null).exports;var Nt;const Ht={name:"FormBuilderPage",props:{title:{type:String,default:null!==(Nt=window?.JetFBPageConfig?.title)&&void 0!==Nt?Nt:""}},computed:{hasGlobalActions(){return this.$store.hasModule("actions")}},components:{PageActions:It}};n(1746);const Jt=y(Ht,Bt,[],!1,null,null,null).exports;var Gt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("CxVuiSelect",{attrs:{value:t.filter.selected},on:{input:t.onChangeFilter}},t._l(t.filter.options||[],function(e){return n("option",{domProps:{value:e.value}},[t._v("\n\t\t"+t._s(e.label)+"\n\t")])}),0)};Gt._withStripped=!0;const zt={mixins:[d],computed:{filter(){return jfbEventBus.reactiveCounter,this.getter("getFilter",this.filter_id)}},methods:{setCurrentFilter(t){this.commit("setFilter",{slug:this.filter_id,props:t})},onChangeFilter(t){this.setCurrentFilter({selected:t})}}},{__:Ut}=wp.i18n,{mapState:Rt,mapGetters:Zt,mapMutations:Wt,mapActions:qt}=Vuex,{i18n:Qt}=JetFBMixins,{ColumnWrapper:Xt,CxVuiSelect:Kt}=JetFBComponents,Yt=y({name:"StatusFilter",components:{ColumnWrapper:Xt,CxVuiSelect:Kt},data:()=>({filter_id:"status"}),created(){this.setCurrentFilter({options:[{value:"",label:Ut("All statuses","jet-form-builder")},{value:"COMPLETED",label:Ut("Only completed ones","jet-form-builder")},{value:"VOIDED",label:Ut("Only not completed ones","jet-form-builder")}]})},mixins:[zt,Qt]},Gt,[],!1,null,null,null).exports;var te=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{display:"inline-block"}},[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"mini"},on:{click:function(e){t.showPopup=!0}},scopedSlots:t._u([{key:"label",fn:function(){return[n("span",{staticClass:"dashicons dashicons-database-export"}),t._v("\n\t\t\t"+t._s(t.__("Export","jet-form-builder"))+"\n\t\t")]},proxy:!0}])}),t._v(" "),t.showPopup?n("CxVuiPopup",{attrs:{"class-names":{"export-popup":!0,"sticky-footer":!0}},on:{close:function(e){t.showPopup=!1}},scopedSlots:t._u([{key:"title",fn:function(){return[t._v(t._s(t.__("1. Select data to export:","jet-form-builder")))]},proxy:!0},{key:"content",fn:function(){return[n("RowWrapper",{attrs:{"element-id":"columns","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:t.columnsState},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("General Columns","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiFSelect",{attrs:{"options-list":t.columns,multiple:!0,value:t.selectedColumns},on:{change:t.setColumns}})]},proxy:!0},{key:"actions",fn:function(){return[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.columnsValues.length===t.selectedColumns.length},on:{click:t.selectAllColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,3825749283)}),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!t.selectedColumns.length},on:{click:t.clearAllColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,782737158)})]},proxy:!0}],null,!1,2802837545)}),t._v(" "),n("RowWrapper",{attrs:{"element-id":"payerColumns","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:t.columnsState},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Payer Columns","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiFSelect",{attrs:{"options-list":t.payerColumns,multiple:!0,value:t.selectedPayerColumns},on:{change:t.setPayerColumns}})]},proxy:!0},{key:"actions",fn:function(){return[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.payerColumnsValues.length===t.selectedPayerColumns.length},on:{click:t.selectAllPayerColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,3825749283)}),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!t.selectedPayerColumns.length},on:{click:t.clearAllPayerColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,782737158)})]},proxy:!0}],null,!1,4094018880)}),t._v(" "),n("RowWrapper",{attrs:{"element-id":"shippingColumns","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:t.columnsState},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Shipping Columns","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiFSelect",{attrs:{"options-list":t.shippingColumns,multiple:!0,value:t.selectedShippingColumns},on:{change:t.setShippingColumns}})]},proxy:!0},{key:"actions",fn:function(){return[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.shippingColumnsValues.length===t.selectedShippingColumns.length},on:{click:t.selectAllShippingColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,3825749283)}),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!t.selectedShippingColumns.length},on:{click:t.clearAllShippingColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,782737158)})]},proxy:!0}],null,!1,1335985645)}),t._v(" "),n("h3",[t._v(t._s(t.__("2. Filter payments:","jet-form-builder")))]),t._v(" "),n("Delimiter"),t._v(" "),n("RowWrapper",{attrs:{"element-id":"status","class-names":{"size--1-x-2":!0,"padding-side-unset":!0}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Status","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiSelect",{attrs:{value:t.status,"class-names":{fullwidth:!0}},on:{input:t.setStatus}},t._l(t.statusFilter.options||[],function(e){return n("option",{domProps:{value:e.value}},[t._v("\n\t\t\t\t\t\t\t"+t._s(e.label)+"\n\t\t\t\t\t\t")])}),0)]},proxy:!0}],null,!1,3912950338)})]},proxy:!0},{key:"footer",fn:function(){return[n("div",{staticClass:"footer-buttons"},[n("cx-vui-button",{attrs:{"button-style":"accent",size:"mini",disabled:!t.canBeExported},on:{click:t.startExport},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Export","jet-form-builder")))]},proxy:!0}],null,!1,2420192243)}),t._v(" "),n("cx-vui-button",{attrs:{size:"mini"},on:{click:function(e){t.showPopup=!1}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Cancel","jet-form-builder")))]},proxy:!0}],null,!1,298029969)})],1),t._v(" "),n("div",{staticClass:"footer-counter"},[n("div",{staticClass:"footer-counter--message"},[t._v("\n\t\t\t\t\t"+t._s(t.countMessage)+"\n\t\t\t\t")]),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.isLoading("count"),loading:t.isLoading("count")},on:{click:t.onClickUpdateCount},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t"+t._s(t.__("Update","jet-form-builder"))+"\n\t\t\t\t\t")]},proxy:!0}],null,!1,168407598)})],1)]},proxy:!0}],null,!1,3777172923)}):t._e()],1)};te._withStripped=!0;const{__:ee,sprintf:ne}=wp.i18n,{mapState:se,mapGetters:ie,mapMutations:oe,mapActions:le}=Vuex,{i18n:re,GetIncoming:ae}=JetFBMixins,{RowWrapper:ce,CxVuiPopup:ue,CxVuiFSelect:de,CxVuiSelect:pe,Delimiter:me}=JetFBComponents,{addQueryArgs:fe}=JetFBActions,{export_url:ge}=window.JetFBPageConfig,he={name:"ExportPaymentsButton",components:{CxVuiFSelect:de,RowWrapper:ce,CxVuiPopup:ue,CxVuiSelect:pe,Delimiter:me},mixins:[re,d,ae],data:()=>({showPopup:!1}),created(){this.resolveCount()},computed:{exportUrl(){return fe({columns:this.selectedColumns,payerColumns:this.selectedPayerColumns,shippingColumns:this.selectedShippingColumns,filters:{status:this.status}},ge)},...ie(["exportPayments/columns","exportPayments/columnsValues","exportPayments/selectedColumns","exportPayments/payerColumns","exportPayments/payerColumnsValues","exportPayments/selectedPayerColumns","exportPayments/shippingColumns","exportPayments/shippingColumnsValues","exportPayments/selectedShippingColumns","exportPayments/statusesList","exportPayments/status","exportPayments/isLoading","exportPayments/count"]),canBeExported(){return!this.isLoading()&&!this.isEmptyColumns&&this.count>0},isEmptyColumns(){return!this.selectedColumns?.length&&!this.selectedShippingColumns?.length&&!this.selectedPayerColumns?.length},columnsState(){return this.isEmptyColumns?{type:"warning-danger",message:ee("Please fill this field","jet-form-builder")}:""},statusFilter(){return this.getter("getFilter","status")},status(){return this["exportPayments/status"]},columns(){return this["exportPayments/columns"]},columnsValues(){return this["exportPayments/columnsValues"]},selectedColumns(){return this["exportPayments/selectedColumns"]},payerColumns(){return this["exportPayments/payerColumns"]},payerColumnsValues(){return this["exportPayments/payerColumnsValues"]},selectedPayerColumns(){return this["exportPayments/selectedPayerColumns"]},shippingColumns(){return this["exportPayments/shippingColumns"]},shippingColumnsValues(){return this["exportPayments/shippingColumnsValues"]},selectedShippingColumns(){return this["exportPayments/selectedShippingColumns"]},count(){return this["exportPayments/count"]},countMessage(){return ne(ee("%d items can be exported","jet-form-builder"),this.count)}},methods:{...oe("exportPayments",["setColumns","setShippingColumns","setPayerColumns","setStatus"]),...le("exportPayments",["clearAllColumns","selectAllColumns","clearAllPayerColumns","selectAllPayerColumns","clearAllShippingColumns","selectAllShippingColumns","resolveCount"]),startExport(){window.location=this.exportUrl},onClickUpdateCount(){this.resolveCount()},isLoading(t){return this["exportPayments/isLoading"](t)}}};n(9256);const be=y(he,te,[],!1,null,null,null).exports,{GetIncoming:ve,i18n:_e,PromiseWrapper:Ce}=JetFBMixins,{apiFetch:ye}=wp,{mapMutations:xe,mapState:we,mapActions:Se,mapGetters:je}=Vuex,Ee={name:"payments-table-core",components:{ExportPaymentsButton:be,StatusFilter:Yt,ActionsWithFilters:A,FormBuilderPage:Jt,EntriesTable:At,TablePagination:$},mixins:[ve,_e,Ce],created(){this.setActionPromises({action:"delete",promise:this.promiseWrapper(this.delete.bind(this))})},methods:{...xe("scope-default",["setActionPromises"]),...Se("scope-default",["updateList","apiFetch"]),delete({resolve:t,reject:e}){this.apiFetch().then(e=>{this.updateList(e),t(e.message)}).catch(e)}}};n(7834);const ke=y(Ee,r,[],!1,null,null,null).exports,Pe={toggleDoingAction(t){t.doingAction=!t.doingAction}},Le={state:{...()=>({doingAction:!1})},getters:{isDoing:t=>t.doingAction},mutations:{...Pe}},Ae={loading:{page:!1,applyButton:!1}},Be={toggleLoading(t,e){var n;t.loading={...t.loading,[e]:!(null!==(n=t.loading[e])&&void 0!==n&&n)}}},Fe={state:()=>({...Ae}),getters:{isLoading:t=>e=>{var n;return null!==(n=t.loading[e])&&void 0!==n&&n}},mutations:Be},Te={currentPage:1,extreme_id:0,limit:25,sort:"DESC",total:0,itemsFrom:0,itemsTo:0,filters:{},receiveEndpoint:{},apiOptions:{},apiData:{}},Me=(t,e)=>1!==t?(t-1)*e:0,Ve=t=>{const e={};for(const n in t){const s=t[n];e[n]=s.selected}return e},{addQueryArgs:Oe}=JetFBActions,$e={offset:t=>Me(t.currentPage,t.limit),getLimit:t=>t.limit,getFilter:t=>e=>{var n;return null!==(n=t.filters[e])&&void 0!==n?n:{}},receiveEndpoint:t=>t.receiveEndpoint,queryState:t=>({limit:t.limit,total:t.total,currentPage:t.currentPage,itemsFrom:t.itemsFrom,itemsTo:t.itemsTo}),hasFilters:t=>0Object.values(t.filters).some(({selected:t})=>!!t),apiOptions:t=>t.apiOptions,apiData:t=>t.apiData,filtersObj:t=>Ve(t.filters),fetchListOptions:t=>e=>{const{limit:n,sort:s,currentPage:i}=t;return{...e,url:Oe({limit:n,sort:s,page:i,filters:Ve(t.filters)},e.url)}}},De={...$e},Ie={setTotal(t,e){t.total=+e},setLimit(t,e){+e<1&&(e=1),t.limit=+e},setCurrentPage(t,e){t.currentPage=+e},setOffset(t,e){const n=e+t.limit;t.itemsFrom=e+1,t.itemsTo=n>t.total?t.total:n},setReceiveEndpoint(t,e){t.receiveEndpoint={...e}},setFilters(t,e){t.filters={...t.filters,...e}},setFilter(t,{slug:e,props:n={}}){var s;t.filters={...t.filters,[e]:{...null!==(s=t.filters[e])&&void 0!==s?s:{},...n}}},clearSelectedFilters(t,e={}){for(const s in t.filters){var n;t.filters[s].selected=null!==(n=e[s])&&void 0!==n?n:""}},setApiOptions(t,e){t.apiOptions=e},setApiData(t,e){t.apiData=e}},Ne={setQueryState({commit:t},e){"currentPage"in e&&t("setCurrentPage",e.currentPage),"total"in e&&t("setTotal",e.total),"limit"in e&&t("setLimit",e.limit)},setQueriedPage({commit:t,state:e},n){const s=Me(+n,e.limit);t("setCurrentPage",n),t("setOffset",s)},updateQueryState({state:t,dispatch:e},n=!1){e("setQueriedPage",n||t.currentPage)}},He={state:()=>({...Te}),getters:De,mutations:Ie,actions:Ne},Je={list:[],columns:{}},Ge={setList(t,e){t.list=JSON.parse(JSON.stringify(e))},setColumns(t,e){t.columns=JSON.parse(JSON.stringify(e))}},ze={state:()=>({...Je}),getters:{list:t=>t.list,columns:t=>t.columns},mutations:Ge},Ue={checked:[],chooseHead:"",idList:[]},Re={toggleHead(t){t.chooseHead=t.chooseHead?"":"checked"},unChooseHead(t){t.chooseHead=""},chooseHead(t){t.chooseHead="checked"},addChecked(t,{id:e}){t.checked.push(e)},setChecked(t,e=[]){t.checked=e},removeChecked(t,{id:e}){t.checked=t.checked.filter(t=>t!==e)}},Ze={state:()=>({...Ue}),getters:{chooseHeadValue:t=>t.chooseHead,isChecked:t=>e=>t.checked.includes(e),isCheckedHead:t=>"checked"===t.chooseHead,getChecked:t=>t.checked},mutations:Re,actions:{changeChecked({commit:t},{id:e,active:n}){t(n?"addChecked":"removeChecked",{id:e})}}};window.jfbEventBus=window.jfbEventBus||new Vue({});const{apiFetch:We}=wp,qe={fetchPage({commit:t,getters:e,dispatch:n}){t("toggleLoading","page");const s=e.receiveEndpoint;n("fetch",e.fetchListOptions(s)).then(e=>{n("updateList",e),n("updateQueryState"),t("unChooseHead"),t("setChecked",[])}).finally(()=>{t("toggleLoading","page")})},fetchPageWithFilters({commit:t,getters:e,dispatch:n}){t("toggleLoading","page"),n("updateQueryState",1);const s=e.receiveEndpoint;n("fetch",e.fetchListOptions(s)).then(t=>{n("updateList",t),jfbEventBus.reactiveCounter++}).catch(t=>{t?.hasOwnProperty?.("code")&&"not_found"===t.code&&n("updateList",{list:[],total:0})}).finally(()=>{t("toggleLoading","page")})},updateList({commit:t,getters:e},n){var s;t("setList",n.list),e.queryState&&t("setTotal",null!==(s=n?.total)&&void 0!==s?s:e.queryState.total),n.list.length>e.getLimit&&t("setLimit",n.list.length),t("setOffset",0)},fetch:(t,e)=>new Promise((t,n)=>{We(e).then(t).catch(t=>{jfbEventBus.$CXNotice.add({message:t.message,type:"error",duration:4e3}),n(t)}).finally(n)}),apiFetch:({getters:t,dispatch:e})=>(e("beforeRunFetch"),We((t=>{const{action:e,payload:n}=t.currentProcess,[s]=n;let i=t.getAction(e);var o,l,r;return i||(l=null!==(o=n[3])&&void 0!==o?o:{},r=e,i=l.actions.value.find(t=>r===t.value)),{...t.fetchListOptions(i?.endpoint),...t.apiOptions,data:{checked:s,...t.apiData}}})(t))),maybeFetchFilters(t,e){const{commit:n,getters:s,rootGetters:i}=t;s.hasFilters||i.isDoing||(n("toggleDoingAction",null,{root:!0}),We(e).then(t=>{n("setFilters",t.filters),jfbEventBus.reactiveCounter++}).finally(()=>{n("toggleDoingAction",null,{root:!0})}))},activeAll({commit:t,getters:e}){t("setChecked",e.list.map(t=>t?.choose?.value))},clearFiltersWithFetch({commit:t,dispatch:e},n){t("clearSelectedFilters",n),e("fetchPageWithFilters")}},Qe={currentAction:"",actionsList:[],actionsPromises:{},beforeActions:{},currentProcess:{}},{__:Xe}=wp.i18n,Ke={getAction:t=>e=>t.actionsList.find(t=>e===t.value),actionsList:t=>t.actionsList,currentAction:t=>t.currentAction,getActionPromise:t=>{var e;const{action:n,payload:s=[]}=t.currentProcess;if("function"!=typeof t.actionsPromises[n])throw new Error(Xe("Please choose your action","jet-form-builder"));const i=null!==(e=t.actionsPromises[n])&&void 0!==e&&e;return()=>new Promise((t,e)=>i(t,e,...s))},processContext:t=>t.currentProcess.context,currentProcess:t=>t.currentProcess},Ye={...Ke,getCurrentAction:t=>Ke.getAction(t)(t.currentAction)},tn={setCurrentAction(t,e){t.currentAction=e},setActionsList(t,e){t.actionsList=JSON.parse(JSON.stringify(e||[]))},setActionPromises(t,{action:e,promise:n}){t.actionsPromises={...t.actionsPromises,[e]:n}},setBeforeAction(t,{action:e,callback:n}){t.beforeActions={...t.beforeActions,[e]:n}},setProcess(t,e){t.currentProcess=e},clearProcess(t){t.currentProcess={}}},en={beforeRunFetch({getters:t,rootGetters:e}){if(u.CHOOSE_ACTION!==t.processContext)return;const n=e["messages/label"];if(!t.getChecked.length)throw new Error(n("empty_checked"));if(!t.getCurrentAction?.endpoint)throw new Error(n("empty_action"))},runRowAction({commit:t,getters:e}){t("toggleDoingAction",null,{root:!0}),t("toggleLoading","page");const n=()=>{t("toggleLoading","page"),t("toggleDoingAction",null,{root:!0})};try{e.getActionPromise().finally(n)}catch(t){n()}},beforeRowAction({state:t}){var e;const{action:n,payload:s=[]}=t.currentProcess;if("function"==typeof t.beforeActions[n])throw(null!==(e=t.beforeActions[n])&&void 0!==e&&e)(...s),new Error}},nn={state:()=>({...Qe}),getters:Ye,mutations:tn,actions:en},sn={renderType:""},on={setRenderType(t,e){t.renderType=e}},{__:ln}=wp.i18n,rn={singleEndpoint:{}},an={hasSingleEndpoint:t=>0t.singleEndpoint,getSingleHref:t=>{var e;return null!==(e=t.singleEndpoint?.href)&&void 0!==e?e:"#"},getSingleType:t=>{var e;return null!==(e=t.singleEndpoint?.type)&&void 0!==e?e:"external"},getSingleTitle:t=>{var e;return null!==(e=t.singleEndpoint.title)&&void 0!==e?e:ln("View","jet-form-builder")}},cn={setSingleEndpoint(t,e){t.singleEndpoint=e}},{__:un}=wp.i18n,dn={message:""},pn={setEmptyMessage(t,e){t.message=e||un("No items found","jet-form-builder")}},mn={state:()=>({...sn,...rn,...dn}),getters:{isTable:t=>"table"===t.renderType,isList:t=>"list"===t.renderType,isUnknownType:t=>!["table","list"].includes(t.renderType),...an,emptyMessage:t=>t.message},mutations:{...on,...cn,...pn},actions:{}},fn={namespaced:!0,state:()=>({options:{}}),getters:{all:t=>t.options,footerHeading:t=>{var e;return null===(e=t.options?.footer_heading)||void 0===e||e},isShowOverflow:t=>{var e;return null!==(e=t.options?.show_overflow)&&void 0!==e&&e},showOverflowControl:t=>{var e;return null!==(e=t.options.show_overflow_control)&&void 0!==e&&e}},mutations:{insert(t,e){t.options=e},toggleShowOverflow(t){t.options.show_overflow=!t.options.show_overflow}}},gn={namespaced:!0,modules:{view:{actions:qe,modules:{action:nn,chooseColumn:Ze,loading:Fe,query:He,table:ze,tableOptions:mn,options:fn}}}},hn={state:()=>({editedList:{},isEnableEdit:!1,isEditableTable:!1,hasChanges:!1}),getters:{isEnableEdit:t=>t.isEnableEdit,isEditableTable:t=>t.isEditableTable,hasChanges:t=>t.hasChanges,editedList:t=>t.editedList},mutations:{toggleEditTable(t,e){t.isEnableEdit=null!=e?e:!t.isEnableEdit},setEditableTable(t,e){t.isEditableTable=!!e},revertChanges(t){t.editedList={},t.hasChanges=!1}}},bn=(t,e,n)=>{const s=gt(n),{base:i}=t;if(!s)throw new Error("Empty primary column");return i.editedList[s]=i.editedList[s]||{},[i.editedList[s][e]||{},s]},vn={editedColumn:t=>(e,n)=>{const s=gt(n),{base:i}=t;if(!s||!i.editedList[s]||!i.editedList[s][e])throw new Error("Column is not edited");return i.editedList[s][e]},editedColumnProp:t=>(e,n,s)=>{var i;const o=null!==(i=vn.editedColumn(t)(e,n)[s])&&void 0!==i&&i;if(!1===o)throw new Error("Prop is not defined");return o}},_n={modules:{base:hn},getters:{...vn,editedCellValue:t=>(e,n)=>{try{return vn.editedColumnProp(t)(e,n,"value")}catch(t){var s;return null!==(s=n[e]?.value)&&void 0!==s?s:"NULL"}},editedListValues:t=>{const e={},{base:n}=t;for(const[t,s]of Object.entries(n.editedList)){const n={};for(const[t,{value:e}]of Object.entries(s))n[t]=e;e[t]=n}return e}},mutations:{updateEditableCell(t,{column:e,props:n,record:s}){let i,o;const{base:l}=t;try{[o,i]=bn(t,e,s)}catch(t){return}l.editedList[i]={...l.editedList[i],[e]:{...o,...n}},l.hasChanges=!0},revertChangesColumn(t,{column:e,record:n}){let s;const{base:i}=t;try{[,s]=bn(t,e,n)}catch(t){return}Vue.delete(i.editedList[s],e),Object.keys(i.editedList[s]).length||(Vue.delete(i.editedList,s),Object.keys(i.editedList).length||(i.hasChanges=!1))}}},Cn={editedColumn:t=>e=>{const{base:n}=t;if(!n.editedList[e])throw new Error("Column is not edited");return n.editedList[e]},editedColumnProp:t=>(e,n)=>{var s;const i=null!==(s=Cn.editedColumn(t)(e)[n])&&void 0!==s&&s;if(!1===i)throw new Error("Prop is not defined");return i}},yn={revertChangesColumn(t,{column:e}){const{base:n}=t;Vue.delete(n.editedList,e),Object.keys(n.editedList).length||(n.hasChanges=!1)}},xn={modules:{base:hn},getters:{...Cn,editedCellValue:t=>(e,n)=>{try{return Cn.editedColumnProp(t)(e,"value")}catch(t){return null!=n?n:"NULL"}},editedListValues:t=>{const e={},{base:n}=t;for(const[t,{value:s}]of Object.entries(n.editedList))e[t]=s;return e}},mutations:{...yn,updateEditableCell(t,{column:e,initial:n,props:s}){const{base:i}=t;if(n===s.value)return void yn.revertChangesColumn(t,{column:e});const o=i.editedList[e]||{};i.editedList[e]={...o,...s},i.hasChanges=!0}}},wn=(t,e)=>{const n=t.actions.findIndex(t=>e===t.slug);if(-1===n)throw new Error("Undefined "+e);return n},Sn=(t,{slug:e,force:n}={})=>{var s;e=null!=e?e:t.current,t.disabled={...t.disabled,[e]:null!=n?n:!(null!==(s=t.disabled[e])&&void 0!==s&&s)}},jn=t=>{try{const e=wn(t,t.current);return t.actions[e]}catch(t){return{}}},{apiFetch:En}=wp,kn={namespaced:!0,state:()=>({actions:[],current:"",loading:{},disabled:{}}),getters:{actions:t=>t.actions,isLoading:t=>e=>{var n;return null!==(n=t.loading[e])&&void 0!==n&&n},isDisabled:t=>e=>{var n;return null!==(n=t.disabled[e])&&void 0!==n&&n},current:jn,label:t=>{const e=jn(t);return t=>e?.messages?e.messages[t]:"null"},byEvent:t=>e=>t.actions.filter(t=>t.subscriptions.includes(e))},mutations:{replaceCurrent(t,e){try{const n=wn(t,t.current);t.actions[n]={...e}}catch(t){}},setActions(t,e){t.actions=e,e.forEach(e=>{e?.button?.disabled&&(t.disabled[e.slug]=!0)})},setCurrentAction(t,e){t.current=e},toggleDisabled:Sn,toggleLoading:(t,{slug:e,force:n}={})=>{var s;e=null!=e?e:t.current,t.loading={...t.loading,[e]:null!=n?n:!(null!==(s=t.loading[e])&&void 0!==s&&s)}},disabledAll(t){t.actions.forEach(({slug:e})=>{Sn(t,{slug:e,force:!0})})}},actions:{defaultDelete({getters:t,commit:e}){e("toggleLoading"),e("toggleDoingAction",null,{root:!0}),En(t.current.endpoint).then(n=>{jfbEventBus.$CXNotice.add({message:n.message,type:"success",duration:4e3}),e("toggleDisabled"),document.location.href=t.current.payload.redirect}).catch(t=>{jfbEventBus.$CXNotice.add({message:t.message,type:"error",duration:4e3})}).finally(()=>{e("toggleLoading"),e("toggleDoingAction",null,{root:!0})})}}},Pn=()=>window.JetFBPageConfig;function Ln(t){return"scope-"+function(t){return"string"==typeof t?t:t?.slug||"default"}(t)}function An(t,e){const{render_type:n}=e,s=(t={})=>({...gn,modules:{...gn.modules,...t}});"table"===n?t.registerModule(Ln(e),s({edit:_n})):t.registerModule(Ln(e),s({edit:xn,actions:kn}))}function Bn(t){const e=Ln(t);return t=>`${e}/${t}`}function Fn(t,e){const{list:n=[],columns:s={},total:i=0,receive_url:o={},actions:l,render_type:r="",empty_message:a="",is_editable_table:c=!1,is_editable_table_control:u=!1,stable_limit:d=null,...p}=e,m=Bn(e);t.commit(m("setEmptyMessage"),a),t.commit(m("setRenderType"),r),t.commit(m("setActionsList"),l),t.commit(m("setColumns"),s),t.commit(m("setList"),n),t.commit(m("setTotal"),i),t.commit(m("setReceiveEndpoint"),o),t.commit(m("setLimit"),null!=d?d:n?.length),t.commit(m("toggleEditTable"),c),t.commit(m("setEditableTable"),u),t.commit(m("options/insert"),p),t.dispatch(m("setQueriedPage"),1),t.subscribe(e=>{if("setFilter"===e.type.split("/").at(-1)){if(!e?.payload?.props?.hasOwnProperty?.("selected"))return;t.dispatch(m("fetchPageWithFilters"))}})}function Tn(t="default"){return e=>{An(e,t)}}const Mn=function(t=!1){return e=>{t||(t=Pn()),Fn(e,t)}},Vn={namespaced:!0,state:()=>({messages:{}}),getters:{label:t=>e=>{var n;return null!==(n=t.messages[e])&&void 0!==n?n:""}},mutations:{insert(t,e){t.messages=JSON.parse(JSON.stringify(e))}}};function On(t){t.registerModule("messages",Vn);const{messages:e}=Pn();t.commit("messages/insert",e)}const $n=window.wp.i18n,Dn=window.wp.apiFetch;var In=n.n(Dn);const Nn=[{value:"id",label:(0,$n.__)("ID (primary)","jet-form-builder")},{value:"amount_value",label:(0,$n.__)("Amount Value","jet-form-builder")},{value:"amount_code",label:(0,$n.__)("Amount Code","jet-form-builder")},{value:"gateway_id",label:(0,$n.__)("Gateway Slug","jet-form-builder")},{value:"scenario",label:(0,$n.__)("Scenario","jet-form-builder")},{value:"type",label:(0,$n.__)("Type","jet-form-builder")},{value:"status",label:(0,$n.__)("Status","jet-form-builder")},{value:"transaction_id",label:(0,$n.__)("Transaction ID","jet-form-builder")},{value:"form_id",label:(0,$n.__)("Form ID","jet-form-builder")},{value:"user_id",label:(0,$n.__)("User ID","jet-form-builder")},{value:"record_id",label:(0,$n.__)("Record ID","jet-form-builder")},{value:"created_at",label:(0,$n.__)("Created","jet-form-builder")},{value:"updated_at",label:(0,$n.__)("Updated","jet-form-builder")}],Hn=[{value:"payer_id",label:(0,$n.__)("Payer ID","jet-form-builder")},{value:"first_name",label:(0,$n.__)("First Name","jet-form-builder")},{value:"last_name",label:(0,$n.__)("Last Name","jet-form-builder")},{value:"email",label:(0,$n.__)("Email","jet-form-builder")}],Jn=[{value:"full_name",label:(0,$n.__)("Full Name","jet-form-builder")},{value:"address_line_1",label:(0,$n.__)("Address Line 1","jet-form-builder")},{value:"address_line_2",label:(0,$n.__)("Address Line 2","jet-form-builder")},{value:"admin_area_1",label:(0,$n.__)("Admin Area 1","jet-form-builder")},{value:"admin_area_2",label:(0,$n.__)("Admin Area 2","jet-form-builder")},{value:"postal_code",label:(0,$n.__)("Postal Code","jet-form-builder")},{value:"country_code",label:(0,$n.__)("Country Code","jet-form-builder")}],{counter_endpoint:Gn}=window.JetFBPageConfig,{addQueryArgs:zn}=JetFBActions,Un={status:t=>t.status,statusesList:t=>t.statusesList,columns:t=>t.columns,selectedColumns:t=>t.selectedColumns,columnsValues:t=>Un.columns(t).map(({value:t})=>t),payerColumns:t=>t.payerColumns,selectedPayerColumns:t=>t.selectedPayerColumns,payerColumnsValues:t=>Un.payerColumns(t).map(({value:t})=>t),shippingColumns:t=>t.shippingColumns,selectedShippingColumns:t=>t.selectedShippingColumns,shippingColumnsValues:t=>Un.shippingColumns(t).map(({value:t})=>t),isLoading:t=>e=>{var n;return e?null!==(n=t.loading?.[e])&&void 0!==n&&n:Object.values(t.loading).some(Boolean)},count:t=>t.count,filtersObj:t=>({status:t.status})},Rn={namespaced:!0,state:()=>({status:"",columns:Nn,selectedColumns:Nn.map(({value:t})=>t),payerColumns:Hn,selectedPayerColumns:Hn.map(({value:t})=>t),shippingColumns:Jn,selectedShippingColumns:Jn.map(({value:t})=>t),count:0,loading:{}}),mutations:{setStatus(t,e){t.status=e},setColumns(t,e){t.selectedColumns=e},setPayerColumns(t,e){t.selectedPayerColumns=e},setShippingColumns(t,e){t.selectedShippingColumns=e},setCount(t,e){t.count=e},toggleLoading(t,e){var n;t.loading={...t.loading,[e]:!(null!==(n=t.loading?.[e])&&void 0!==n&&n)}}},getters:Un,actions:{handleFilters({commit:t,state:e,rootGetters:n}){const s=(0,n["scope-default/getFilter"])("status");s.selected!==e.status&&t("setStatus",s.selected)},selectAllColumns({commit:t,getters:e}){t("setColumns",e.columnsValues)},clearAllColumns({commit:t}){t("setColumns",[])},selectAllPayerColumns({commit:t,getters:e}){t("setPayerColumns",e.payerColumnsValues)},clearAllPayerColumns({commit:t}){t("setPayerColumns",[])},selectAllShippingColumns({commit:t,getters:e}){t("setShippingColumns",e.shippingColumnsValues)},clearAllShippingColumns({commit:t}){t("setShippingColumns",[])},async resolveCount({commit:t,dispatch:e}){let n;t("toggleLoading","count");try{n=await e("fetchPaymentsCount")}finally{t("toggleLoading","count")}t("setCount",n.total)},fetchPaymentsCount({getters:t}){const e=zn({filters:t.filtersObj},Gn.url);return In()({...Gn,url:e})}}},Zn=Rn,Wn={PaymentsComponent:ke,options:{store:{...Le,plugins:[Tn(),Mn(),On,function(t){t.registerModule("exportPayments",Zn),t.subscribe(e=>{const n=e.type.split("/");switch(n.at(-1)){case"setFilter":case"clearSelectedFilters":return void t.dispatch("exportPayments/handleFilters")}"exportPayments"===n[0]&&"setStatus"===n.at(-1)&&t.dispatch("exportPayments/resolveCount").then(()=>{})})}]}}};var qn=function(){var t=this,e=t.$createElement;return(t._self._c||e)("DetailsTable",{attrs:{columns:t.columnsFromStore,source:t.currentFromStore}})};qn._withStripped=!0;const{DetailsTable:Qn}=JetFBComponents,Xn=y({name:"DetailsTableWithStore",props:{columns:{type:String,default:"columns"},current:{type:String,default:"currentPopupData"}},components:{DetailsTable:Qn},computed:{columnsFromStore(){return this.$store.state[this.columns]},currentFromStore(){return this.$store.state[this.current]}}},qn,[],!1,null,null,null).exports;var Kn=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("cx-vui-button",{attrs:{"button-style":"link-error",size:"mini",disabled:!t.hasSelectedFilters},on:{click:function(e){return t.dispatch("clearFiltersWithFetch")}},scopedSlots:t._u([{key:"label",fn:function(){return[n("span",{staticClass:"dashicons dashicons-no-alt"}),t._v("\n\t\t\t"+t._s(t.label)+"\n\t\t")]},proxy:!0}])})};Kn._withStripped=!0;const{__:Yn}=wp.i18n,{mapState:ts,mapGetters:es,mapMutations:ns,mapActions:ss}=Vuex,is=y({name:"ClearFiltersButton",props:{label:{type:String,default:Yn("Clear filters","jet-form-builder")}},mixins:[d],computed:{hasSelectedFilters(){return this.getter("hasSelectedFilters")}}},Kn,[],!1,null,null,null).exports;function os(t,e){switch(e.render_type){case"table":Fn(t,e);break;case"list":!function(t,e){const{list:n={},columns:s={},render_type:i="",single_endpoint:o={},receive_url:l={},is_editable_table:r=!1,is_editable_table_control:a=!1,box_actions:c=[],...u}=e,d=Bn(e);t.commit(d("setColumns"),s),t.commit(d("setList"),n),t.commit(d("setReceiveEndpoint"),l),t.commit(d("setRenderType"),i),t.commit(d("setSingleEndpoint"),o),t.commit(d("toggleEditTable"),r),t.commit(d("setEditableTable"),a),t.commit(d("actions/setActions"),c),t.commit(d("options/insert"),u)}(t,e)}}const{LocalStorage:ls}=JetFBActions,rs=ls.storage("notices"),as={insertNotices(t,e){t.notices=e.filter(t=>!rs.getItem(t.id))},clearNoticeById(t,e){const n=t.notices.findIndex(t=>e===t.id);if(-1===n)return;const s=t.notices[n];Vue.delete(t.notices,n);const{is_hide_after_close:i}=s.options;if(!i)return;const o=rs.getItem(s.id,{});rs.setItem(s.id,{...o,closed:!0})}},cs={state:()=>({notices:[]}),getters:{getNotices:t=>t.notices,getNotice:t=>e=>t.notices.find(t=>e===t.id)||{}},mutations:as};var us=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"postbox",attrs:{id:t.slug}},[n("div",{staticClass:"postbox-header"},[n("h2",{staticClass:"ui-sortable-handle"},[t._v(t._s(t.title))]),t._v(" "),t.$slots["header-actions"]?n("div",{staticClass:"handle-actions"},[t._t("header-actions")],2):n("div",{staticClass:"handle-actions"},[n("UndoChangesTable",{attrs:{scope:t.slug}}),t._v(" "),n("EditTableSwitcher",{attrs:{scope:t.slug}}),t._v(" "),n("ShowOverflowTable",{attrs:{scope:t.slug}}),t._v(" "),n("RedirectToSingle",{attrs:{scope:t.slug}})],1)]),t._v(" "),n("div",{staticClass:"postbox-inner submitbox"},[t._t("default"),t._v(" "),t.$slots.actions?n("div",{staticClass:"major-publishing-actions"},[t._t("actions"),t._v(" "),n("div",{staticClass:"clear"})],2):n("PrimaryActions",{attrs:{scope:t.slug}})],2)])};us._withStripped=!0;var ds=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isEditableTable?n("cx-vui-switcher",{staticClass:"jfb-cx-vui-component",attrs:{label:t.__("Edit table","jet-form-builder"),value:t.isEnableEdit},on:{input:t.toggleEditTable}}):t._e()};ds._withStripped=!0;const{i18n:ps}=JetFBMixins,ms={name:"EditTableSwitcher",mixins:[d,ps],computed:{isEnableEdit(){return this.getter("isEnableEdit")},isEditableTable(){return this.getter("isEditableTable")}},methods:{toggleEditTable(){this.commit("toggleEditTable")}}};n(4744);const fs=y(ms,ds,[],!1,null,null,null).exports;var gs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isEditableTable?n("cx-vui-button",{attrs:{disabled:!t.hasChanges,"button-style":"link-accent",size:"mini"},on:{click:function(e){t.hasChanges=!0}},scopedSlots:t._u([{key:"label",fn:function(){return[n("span",{staticClass:"dashicons dashicons-undo"}),t._v("\n\t\t"+t._s(t.__("Undo","jet-form-builder"))+"\n\t")]},proxy:!0}],null,!1,1196425)}):t._e()};gs._withStripped=!0;const{i18n:hs}=JetFBMixins,bs=y({name:"UndoChangesTable",mixins:[d,hs],computed:{hasChanges:{get(){return this.getter("hasChanges")},set(t){this.commit("revertChanges")}},isEditableTable(){return this.getter("isEditableTable")}}},gs,[],!1,null,null,null).exports;var vs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.showOverflowControl?n("cx-vui-switcher",{staticClass:"jfb-cx-vui-component",attrs:{label:t.__("Show overflow","jet-form-builder")},model:{value:t.showOverflow,callback:function(e){t.showOverflow=e},expression:"showOverflow"}}):t._e()};vs._withStripped=!0;const{i18n:_s}=JetFBMixins,Cs=y({name:"ShowOverflowTable",mixins:[d,_s],computed:{showOverflowControl(){return this.getter("options/showOverflowControl")},showOverflow:{get(){return this.getter("options/isShowOverflow")},set(){this.commit("options/toggleShowOverflow")}}}},vs,[],!1,null,null,null).exports;var ys=function(){var t,e=this,n=e.$createElement,s=e._self._c||n;return e.hasSingleEndpoint?s("a",{attrs:{href:e.getSingleHref,title:e.getSingleTitle}},[s("span",{class:(t={dashicons:!0},t["dashicons-"+e.getSingleType]=!0,t),attrs:{"aria-hidden":"true"}})]):e._e()};ys._withStripped=!0;const{i18n:xs}=JetFBMixins,ws={name:"RedirectToSingle",mixins:[d,xs],computed:{hasSingleEndpoint(){return this.getter("hasSingleEndpoint")},getSingleHref(){return this.getter("getSingleHref")},getSingleType(){return this.getter("getSingleType")},getSingleTitle(){return this.getter("getSingleTitle")}}};n(9244);const Ss=y(ws,ys,[],!1,null,"6c61ef64",null).exports;var js=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.primary.length?n("div",{staticClass:"major-publishing-actions"},[n("div",{staticClass:"jfb-primary-actions"},t._l(t.primary,function(e){return n("ActionButton",{key:e.slug,class:["box-actions-item","action-"+e.slug],attrs:{scope:t.scope,action:e}})}),1),t._v(" "),n("div",{staticClass:"clear"})]):t._e()};js._withStripped=!0;var Es=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.action.button?n("cx-vui-button",{key:"button-action-"+t.action.slug,class:["cx-vui-button--style-"+t.action.button.type].concat(t.action.button.classes),attrs:{"button-style":t.action.button.style,size:t.action.button.size,url:t.action.button.url,"tag-name":t.action.button.url?"a":"button",disabled:t.isDisabled,loading:t.isLoading,target:"_blank"},on:{click:t.globalEmit},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.action.button.label))]},proxy:!0}],null,!1,389569784)}):t._e()};Es._withStripped=!0;const{mapState:ks,mapGetters:Ps,mapMutations:Ls,mapActions:As}=Vuex,Bs=y({name:"ActionButton",mixins:[d],props:{action:Object},computed:{...Ps(["isDoing"]),slug(){return this.action.slug},isDisabled(){return this.getter("actions/isDisabled",this.slug)||this.isGlobalDoing},isLoading(){return this.getter("actions/isLoading",this.slug)},isGlobalDoing(){return jfbEventBus.reactiveCounter,this.isDoing}},methods:{globalEmit(){this.commit("actions/setCurrentAction",this.slug),jfbEventBus.$emit(this.scope+"-"+this.slug)}}},Es,[],!1,null,"2b75aad2",null).exports,{mapState:Fs,mapGetters:Ts,mapMutations:Ms,mapActions:Vs}=Vuex,Os={name:"BoxActions",components:{ActionButton:Bs},mixins:[d],computed:{primary(){const t=this.getter("actions/actions");return t?t.filter(t=>"primary"===t.position):[]}}},$s=Os;n(7289);const Ds=y($s,js,[],!1,null,null,null).exports,Is={name:"PostBoxSkeleton",props:{title:String,slug:String},components:{PrimaryActions:Ds,RedirectToSingle:Ss,ShowOverflowTable:Cs,UndoChangesTable:bs,EditTableSwitcher:fs},computed:{}};n(7985);const Ns=y(Is,us,[],!1,null,"5ebbe4a6",null).exports;var Hs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{attrs:{id:"poststuff"}},[n("div",{class:t.bodyClasses,attrs:{id:"post-body"}},[t.$slots.topBody?n("div",{attrs:{id:"post-body-content"}},[t._t("topBody")],2):t._e(),t._v(" "),t._l(t.containers,function(e){var s=e.wrap_id,i=e.id,o=e.classes,l=e.boxes;return n("PostBoxContainer",{key:s,attrs:{"wrap-id":s,id:i,classes:o}},t._l(l,function(e){var s=e.slug,i=e.title,o=e.list,l=e.render_type;return void 0===l&&(l=!1),n("PostBoxSimple",{key:s,attrs:{slug:s,title:i,list:o,"render-type":l},scopedSlots:t._u([{key:"header-actions",fn:function(){return[t._t("header-actions-"+s,null,null,{list:o})]},proxy:!0},{key:"default",fn:function(){return[t._t("body-"+s,null,null,{list:o})]},proxy:!0},{key:"before",fn:function(){return[t._t("before-"+s,null,null,{list:o})]},proxy:!0},{key:"after",fn:function(){return[t._t("after-"+s,null,null,{list:o})]},proxy:!0},t.$slots["in-header-"+s]?{key:"in-header",fn:function(){return[t._t("in-header-"+s)]},proxy:!0}:null,t.$slots["in-footer-"+s]?{key:"in-footer",fn:function(){return[t._t("in-footer-"+s)]},proxy:!0}:null],null,!0)})}),1)})],2)])};Hs._withStripped=!0;var Js=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"postbox-container",attrs:{id:t.wrapId}},[n("div",{class:t.classes,attrs:{id:t.id}},[t._t("default")],2)])};Js._withStripped=!0;const Gs=y({name:"PostBoxContainer",props:{wrapId:String,id:String,classes:String},computed:{}},Js,[],!1,null,null,null).exports;var zs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jfb-post-box",attrs:{id:t.slug+"-wrapper"}},[t.$slots.default?n("div",{staticClass:"jfb-post-box--content"},[t._t("default")],2):n("div",{staticClass:"jfb-post-box--content"},[t._t("before"),t._v(" "),n("PostBoxSkeleton",{attrs:{title:t.title,slug:t.slug},scopedSlots:t._u([{key:"header-actions",fn:function(){return[t._t("header-actions")]},proxy:!0},{key:"default",fn:function(){return[t._t("in-header"),t._v(" "),"table"===t.renderType?n("EntriesTable",{attrs:{scope:t.slug}}):"list"===t.renderType?n("EntriesList",{attrs:{scope:t.slug}}):n("div",{attrs:{id:"misc-publishing-actions"}},t._l(t.list,function(e,s){return n("div",{key:s,staticClass:"misc-pub-section"},[t._v("\n\t\t\t\t\t\t"+t._s(s)+": "),n("strong",[t._v(t._s(e))])])}),0),t._v(" "),t._t("in-footer")]},proxy:!0}],null,!0)}),t._v(" "),t._t("after")],2)])};zs._withStripped=!0;var Us=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("table",{staticClass:"jfb-list-table"},t._l(t.columns,function(e,s){var i=e.label;return n("tr",{key:s,class:["jfb-list-table-row","row--"+s]},[i?n("th",{staticClass:"jfb-list-table-row--inner jfb-list-table-row--heading"},[t._v("\n\t\t\t"+t._s(i)+"\n\t\t")]):t._e(),t._v(" "),n("td",{staticClass:"jfb-list-table-row--inner jfb-list-table-row--item"},[n("EntryColumnList",{attrs:{scope:t.scope,list:t.list,column:s}})],1)])}),0)};Us._withStripped=!0;var Rs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.record.editable&&t.isEnableEdit?n("div",{staticClass:"list-table-item__cell--body-value jfb-control"},[n("keep-alive",[n(t.getComponentEditControl,{tag:"component",attrs:{options:t.record.control_options},model:{value:t.editedCellValue,callback:function(e){t.editedCellValue=e},expression:"editedCellValue"}})],1)],1):t.getItemComponentColumn?[n(t.getItemComponentColumn,{tag:"component",attrs:{value:t.value,"full-entry":t.list,scope:t.scope}})]:t.getItemComponentType?[n(t.getItemComponentType,{tag:"component",attrs:{value:t.value,"full-entry":t.list,scope:t.scope}})]:n("div",{domProps:{innerHTML:t._s(t.value)}})],2)};Rs._withStripped=!0;const Zs={name:"EntriesList",mixins:[d],components:{EntryColumnList:y({name:"EntryColumnList",props:{column:String,list:Object},mixins:[dt,d],computed:{record(){return this.list[this.column]},value(){return this.record.editable?this.editedCellValue:this.initialValue},initialValue(){var t,e;return null!==(t=null!==(e=this.record?.value)&&void 0!==e?e:this.record?.value?.value)&&void 0!==t&&t},isEnableEdit(){return jfbEventBus.reactiveCounter,this.getter("isEnableEdit")},getItemComponentColumn(){return this.getColumnComponentByPrefix(this.column,"item")},getItemComponentType(){return this.getColumnComponentByPrefix(this.getColumnType,"item")},getComponentEditControl(){return this.getColumnComponentByPrefix(this.record?.control,"control")},getColumnType(){var t;return null!==(t=this.record.type)&&void 0!==t&&t},editedCellValue:{get(){return jfbEventBus.reactiveCounter,this.getter("editedCellValue",[this.column,this.initialValue])},set(t){this.commit("updateEditableCell",{column:this.column,initial:this.initialValue,props:{value:t}}),jfbEventBus.reactiveCounter++}}},methods:{revertChangesColumn(){this.commit("revertChangesColumn",{column:this.column}),jfbEventBus.reactiveCounter++}}},Rs,[],!1,null,null,null).exports},computed:{columns(){return this.getter("columns")},list(){return this.getter("list")}},methods:{}};n(5850);const Ws=y(Zs,Us,[],!1,null,null,null).exports,qs={name:"PostBoxSimple",props:["title","slug","list","renderType"],components:{EntriesTable:At,EntriesList:Ws,PostBoxSkeleton:Ns,EditTableSwitcher:fs}};n(8848);const Qs=y(qs,zs,[],!1,null,null,null).exports,Xs={name:"PostBoxGrid",props:{containers:{type:Array,default(){var t;return null!==(t=window?.JetFBPageConfig?.containers)&&void 0!==t?t:[]}}},components:{EditTableSwitcher:fs,PostBoxContainer:Gs,PostBoxSimple:Qs},computed:{bodyClasses(){return{"metabox-holder":!0,["columns-"+this.containers?.length]:!0}}}},Ks=y(Xs,Hs,[],!1,null,null,null).exports;var Ys=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jfb-actions"},t._l(t.parsedJson,function(e,s){return n("a",{key:s,staticClass:"jfb-dropdown-item",attrs:{href:"javascript:void(0)"},on:{click:function(e){return t.run(s)}}},[t._v("\n\t\t"+t._s(e.label)+"\n\t")])}),0)};Ys._withStripped=!0;const{ParseIncomingValueMixin:ti}=JetFBMixins;window.jfbEventBus=window.jfbEventBus||new Vue({});const ei={name:"actions--item",props:["value","full-entry","entry-id"],components:{},mixins:[ti],methods:{getPayload(t){return this.parsedJson[t]?.payload||{}},run(t){jfbEventBus.$emit(`click-${t}`,this.getPayload(t),this.fullEntry||{},this.entryId)}}};n(8241);const ni=y(ei,Ys,[],!1,null,null,null).exports;var si=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.visible?n("div",{staticClass:"jet-form-builder-page__alerts"},t._l(t.getNotices,function(e){return n("AlertItem",{key:e.id,attrs:{id:e.id},scopedSlots:t._u([t.$slots["alert-buttons-"+e.id]?{key:"alert-buttons",fn:function(){return[t._t(["alert-buttons-"+e.id])]},proxy:!0}:null],null,!0)})}),1):t._e()};si._withStripped=!0;var ii=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.classes},[n("div",{staticClass:"alert-type-line"}),t._v(" "),n("div",{staticClass:"alert-icon",domProps:{innerHTML:t._s(t.iconHtml)}}),t._v(" "),n("div",{staticClass:"alert-content"},[t.config.title?n("div",{staticClass:"alert-title",domProps:{innerHTML:t._s(t.config.title)}}):t._e(),t._v(" "),t.config.message?n("div",{staticClass:"alert-message",domProps:{innerHTML:t._s(t.config.message)}}):t._e(),t._v(" "),t.$slots["alert-buttons"]?n("div",{staticClass:"alert-buttons"},[t._t("alert-buttons")],2):t.config.buttons?n("div",{staticClass:"alert-buttons"},t._l(t.config.buttons,function(e,s){return n("cx-vui-button",{key:"button-alert-"+s,class:"cx-vui-button--style-"+e.type,attrs:{"button-style":e.style,size:"mini",url:e.url,"tag-name":e.rest.url?"button":"a",target:e.rest.url?"":"_blank"},on:{click:function(n){return t.emitClick(n,e)}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(e.label))]},proxy:!0}],null,!0)})}),1):t._e()]),t._v(" "),n("div",{staticClass:"alert-close",on:{click:t.closeAlert}},[n("svg",{attrs:{width:"20",height:"20",viewBox:"0 0 14 14",fill:"#dcdcdd",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M12 3.00671L8.00671 7L12 10.9933L10.9933 12L7 8.00671L3.00671 12L2 10.9933L5.99329 7L2 3.00671L3.00671 2L7 5.99329L10.9933 2L12 3.00671Z"}})])])])};ii._withStripped=!0;const{LocalStorage:oi}=JetFBActions,{mapGetters:li,mapMutations:ri}=Vuex,ai=y({name:"AlertItem",props:{id:String},created:function(){},computed:{...li(["getNotice"]),config(){return this.getNotice(this.id)},type:function(){var t;return null!==(t=this.config?.type)&&void 0!==t&&t},classes:function(){return["jet-form-builder-page__alert",`${this.type}-type`]},iconHtml:function(){let t=!1;switch(this.type){case"info":t='\n\n\n';break;case"success":t='';break;case"danger":t='';break;case"error":t=''}return this.config?.icon||t}},methods:{...ri(["clearNoticeById"]),closeAlert:function(){this.clearNoticeById(this.id)},emitClick(t,e){jfbEventBus.$emit("alert-click-"+e.slug,{self:this,target:t,button:e})}}},ii,[],!1,null,null,null).exports,{mapGetters:ci}=Vuex,ui={name:"AlertsList",components:{AlertItem:ai},computed:{...ci(["getNotices"]),visible:function(){return 0!==this.getNotices.length}}};n(8661);const di=y(ui,si,[],!1,null,null,null).exports;var pi=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.wrapperClasses},[n("div",{staticClass:"jet-form-builder-page__panel-header"},[n("div",{staticClass:"panel-header-icon"},[t._t("icon")],2),t._v(" "),n("div",{staticClass:"panel-header-content"},[n("span",{staticClass:"panel-header-desc"},[t._v(t._s(t.config.description))]),t._v(" "),n("div",{staticClass:"panel-header-title"},[t._v(t._s(t.config.title))])])]),t._v(" "),t.$slots.default?n("div",{staticClass:"jet-form-builder-page__panel-content"},[t._t("default")],2):t._e()])};pi._withStripped=!0;const mi=y({name:"DashboardPanel",props:{config:Object},computed:{wrapperClasses(){return["jet-form-builder-page__panel",this.config.slug,...this.config.classes]}}},pi,[],!1,null,null,null).exports;var fi=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.boxes.length?n("div",{staticClass:"jfb-content-sidebar"},[t._l(t.boxes,function(e,s){return["panel"===e.type?n("DashboardPanel",{key:s,attrs:{config:e},scopedSlots:t._u([t.$slots["icon-"+e.slug]?{key:"icon",fn:function(){return[t._t("icon-"+e.slug)]},proxy:!0}:null,t.$scopedSlots["content-"+e.slug]?{key:"default",fn:function(){return[t._t("content-"+e.slug,null,null,e)]},proxy:!0}:null],null,!0)}):"banner"===e.type?n("DashboardBanner",{key:"banner-"+s,attrs:{config:e}}):t._e()]})],2):t._e()};fi._withStripped=!0;var gi=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.wrapperClasses},[n("div",{staticClass:"banner-frame"},[n("div",{staticClass:"banner-inner"},[n("div",{staticClass:"banner-label"},[t._v(t._s(t.config.label))]),t._v(" "),n("div",{staticClass:"banner-title"},[n("span",[t._v(t._s(t.config.title))])]),t._v(" "),n("div",{staticClass:"banner-content"},[t._v(t._s(t.config.content))]),t._v(" "),t.hasButtons?n("div",{staticClass:"banner-buttons"},t._l(t.config.buttons,function(e,s){return n("cx-vui-button",{key:"button-banner-"+s,class:"cx-vui-button--style-"+e.type,attrs:{"button-style":e.style,size:"mini",url:e.url,"tag-name":"a",target:"_blank"},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(e.label))]},proxy:!0}],null,!0)})}),1):t._e()])])])};gi._withStripped=!0;const hi=y({name:"DashboardBanner",props:{config:Object},computed:{wrapperClasses(){return["jet-form-builder-page__banner",this.config.slug,...this.config.classes]},hasButtons(){return 0!==this.config?.buttons?.length}}},gi,[],!1,null,null,null).exports;n(5201);const{i18n:bi,GetIncoming:vi}=JetFBMixins,_i={name:"SideBarBoxes",components:{DashboardPanel:mi,DashboardBanner:hi},mixins:[bi,vi],data:()=>({boxes:[]}),created(){this.boxes=this.getIncoming("boxes")}};n(7823);const Ci=y(_i,fi,[],!1,null,null,null).exports,yi={namespaced:!0,state:()=>({edited:{}}),mutations:{collectScope(t,{rootGetters:e,scope:n}){n.includes("scope-")&&(e[`${n}/hasChanges`]?t.edited[n]=e[`${n}/editedListValues`]:Vue.delete(t.edited,n))}},getters:{all:t=>t.edited},actions:{collect({rootState:t,rootGetters:e,commit:n}){for(const s in t)n("collectScope",{rootGetters:e,scope:s})}}};Vue.use(Vuex),window.JetFBComponents={...window.JetFBComponents,EntriesTable:At,PaymentsPage:Wn,DetailsTableWithStore:Xn,TablePagination:$,ChooseAction:x,ClearFiltersButton:is,PostBoxSkeleton:Ns,PostBoxGrid:Ks,PostBoxContainer:Gs,PostBoxSimple:Qs,EntriesList:Ws,ChooseColumn:t,ActionsColumn:l,LinkTypeColumn:e,EditTableSwitcher:fs,AlertsList:di,DashboardPanel:mi,SideBarBoxes:Ci,FormBuilderPage:Jt,ActionsWithFilters:A},window.JetFBMixins={...window.JetFBMixins,FilterMixin:zt,GetColumnComponent:dt,ScopeStoreMixin:d},window.JetFBStore={BaseStore:Le,TableSeedPlugin:Mn,TableModulePlugin:Tn,SingleMetaBoxesPlugin:function(t){const e=[];for(const t of Pn().containers)e.push(...t.boxes.filter(t=>["table","list"].includes(t.render_type)));for(const n of e)An(t,n),os(t,n)},NoticesPlugin:function(t){t.registerModule("notices",cs);const{notices:e}=Pn();t.commit("insertNotices",e)},PageActionsPlugin:function(t){const{actions:e=[]}=Pn();t.registerModule("actions",kn),t.commit("actions/setActions",[...e])},MessagesPlugin:On,OnUpdateEditableCellPlugin:function(t){const e=(e,n)=>{for(const s in e){const e=t.getters[`${s}/actions/byEvent`];if("function"!=typeof e)continue;const i=e("update");for(const e of i)t.commit(`${s}/actions/toggleDisabled`,{slug:e.slug,force:n})}};t.subscribe((n,s)=>{n.type.split("/").includes("updateEditableCell")&&((e=>{for(const n in e)if(t.getters[`${n}/hasChanges`])return!0;return!1})(s)?e(s,!1):e(s,!0))})},EditCollectorPlugin:function(t){t.registerModule("editCollector",yi),t.subscribe(e=>{e.type.split("/").includes("updateEditableCell")&&t.dispatch("editCollector/collect")})}},window.JetFBConst=u})()})(); \ No newline at end of file +(()=>{var t={62:t=>{"use strict";t.exports=function(t,e){return e||(e={}),t?(t=String(t.__esModule?t.default:t),/^['"].*['"]$/.test(t)&&(t=t.slice(1,-1)),e.hash&&(t+=e.hash),/["'() \t\n]|(%20)/.test(t)||e.needQuotes?'"'.concat(t.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):t):t}},97:(t,e,n)=>{var s=n(2485);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("5184e3d8",s,!1,{})},361:(t,e,n)=>{var s=n(8469);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("fa8aca68",s,!1,{})},611:(t,e,n)=>{"use strict";function s(t,e){for(var n=[],s={},i=0;if});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},l=i&&(document.head||document.getElementsByTagName("head")[0]),r=null,a=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",m="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(t,e,n,i){c=n,d=i||{};var l=s(t,e);return g(l),function(e){for(var n=[],i=0;in.parts.length&&(s.parts.length=n.parts.length)}else{var l=[];for(i=0;i{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-form-builder-page>h1.inline{display:inline-block}",""]);const r=l},935:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n="",s=void 0!==e[5];return e[4]&&(n+="@supports (".concat(e[4],") {")),e[2]&&(n+="@media ".concat(e[2]," {")),s&&(n+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),n+=t(e),s&&(n+="}"),e[2]&&(n+="}"),e[4]&&(n+="}"),n})).join("")},e.i=function(t,n,s,i,o){"string"==typeof t&&(t=[[null,t,void 0]]);var l={};if(s)for(var r=0;r0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=o),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),i&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=i):u[4]="".concat(i)),e.push(u))}},e}},1060:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.misc-pub-section {\n\tborder-bottom: 1px solid #ececec;\n}\n.misc-pub-section:last-child {\n\tborder-bottom: unset;\n}\n\n",""]);const r=l},1645:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-actions{display:flex;flex-direction:column;row-gap:10px}.jfb-actions a.jfb-dropdown-item{padding:.5em 0;text-decoration:none}.jfb-actions a.jfb-dropdown-item:hover{text-decoration:underline}.jfb-actions a.jfb-dropdown-item:not(:first-child){border-top:1px solid #ccc}",""]);const r=l},1746:(t,e,n)=>{var s=n(665);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("04f1d88b",s,!1,{})},2054:t=>{"use strict";t.exports="data:image/svg+xml;charset=UTF-8,%3csvg width=%27132%27 height=%2781%27 viewBox=%270 0 132 81%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%2792%27 cy=%275%27 r=%2776%27 fill=%27%23F6F9FE%27/%3e%3cg opacity=%270.4%27%3e%3cpath d=%27M20.6371 44.9469L15.9629 39.4702C15.145 39.7207 14.3531 39.9097 14.3531 39.9097C13.5343 40.1604 13.1715 38.9014 13.9908 38.6495C13.9908 38.6495 16.5129 37.9254 17.9722 37.3814C19.5255 36.8023 21.8593 35.7162 21.8593 35.7162C22.6423 35.3717 23.1754 36.5128 22.4105 36.9059C22.4105 36.9059 21.6395 37.2996 20.7639 37.6805L32.0768 51.6442L31.7149 46.143C31.747 43.9315 31.53 42.1915 31.0561 40.9194C30.372 39.083 29.2388 38.0585 28.3061 37.2798C27.0964 36.3373 26.0057 35.5657 25.5494 34.3406C25.0413 32.9769 25.6022 31.32 27.0623 30.7757C27.1269 30.7516 27.1912 30.7367 27.2577 30.7155C23.7132 29.2801 19.6444 29.1149 15.7775 30.5564C10.5891 32.4906 7.01753 36.852 5.86248 41.8748C6.21571 41.7559 6.54644 41.6398 6.82618 41.5356C8.37789 40.9571 10.7125 39.8707 10.7125 39.8707C11.4955 39.5262 12.0293 40.667 11.2637 41.0604C11.2637 41.0604 10.4943 41.4535 9.6163 41.8353L21.0168 55.9052L20.6371 44.9469Z%27 fill=%27%23162B40%27/%3e%3cpath d=%27M6.46129 50.9413C8.6507 56.8188 13.9578 60.6272 19.8089 61.1864L5.49425 44.4176C5.35841 46.5723 5.65903 48.7877 6.46129 50.9413Z%27 fill=%27%23162B40%27/%3e%3cpath d=%27M31.4607 57.5783C31.3974 57.5302 31.3355 57.4761 31.2786 57.4111L22.0547 46.6064L22.4227 61.2171C23.9 61.1139 25.3857 60.8016 26.8426 60.2584C28.5717 59.6129 30.1197 58.6955 31.4607 57.5783Z%27 fill=%27%23162B40%27/%3e%3cpath d=%27M31.6882 33.4237C31.9275 33.8737 32.1538 34.3666 32.3575 34.9134C32.919 36.4206 33.2678 38.2195 33.2098 40.6539L33.559 55.4605C37.0161 51.2397 38.2019 45.3494 36.161 39.8705C35.199 37.2881 33.6345 35.1082 31.6882 33.4237Z%27 fill=%27%23162B40%27/%3e%3c/g%3e%3cpath d=%27M41.1479 35.2973C40.8922 35.1497 40.8202 34.8809 40.7973 34.5268L42.3832 26.4665C39.5027 23.7809 37.1369 20.5971 35.358 17.184L27.1958 16.5619C26.8909 16.4995 26.6353 16.3519 26.5633 16.0831L24.0914 6.58894C24.0193 6.32011 24.2161 5.97925 24.3997 5.85802L31.2426 1.2873C31.1618 -2.50875 31.6187 -6.44886 32.7706 -10.215L27.4162 -16.4877C27.2097 -16.7205 27.2721 -17.0253 27.3345 -17.3302L32.2543 -25.8516C32.4019 -26.1073 32.6708 -26.1793 33.0248 -26.2021L41.0851 -24.6162C43.7708 -27.4968 46.9545 -29.8626 50.3676 -31.6415L50.9898 -39.8037C51.0522 -40.1085 51.1998 -40.3642 51.4686 -40.4362L60.9627 -42.9081C61.2315 -42.9801 61.5724 -42.7833 61.6936 -42.5997L66.2643 -35.7569C70.0604 -35.8376 74.0005 -35.3807 77.7666 -34.2289L84.0393 -39.5833C84.2721 -39.7897 84.577 -39.7274 84.8818 -39.665L93.4033 -34.7451C93.6589 -34.5975 93.7309 -34.3287 93.7538 -33.9747L92.1679 -25.9144C95.0484 -23.2287 97.4142 -20.0449 99.1931 -16.6319L107.355 -16.0097C107.66 -15.9473 107.916 -15.7997 107.988 -15.5309L110.46 -6.03677C110.532 -5.76795 110.335 -5.42709 110.151 -5.30586L103.309 -0.735128C103.389 3.06092 102.932 7.00103 101.781 10.7672L107.135 17.0399C107.341 17.2727 107.279 17.5775 107.217 17.8823L102.297 26.4038C102.149 26.6594 101.88 26.7315 101.526 26.7543L93.466 25.1684C90.7803 28.049 87.5966 30.4147 84.1835 32.1936L83.5613 40.3559C83.4989 40.6607 83.3514 40.9163 83.0825 40.9884L73.5884 43.4603C73.3196 43.5323 72.9787 43.3355 72.8575 43.1519L68.2868 36.3091C64.4907 36.3898 60.5506 35.9329 56.7845 34.7811L50.5118 40.1355C50.279 40.3419 49.9741 40.2795 49.6693 40.2171L41.1479 35.2973ZM81.4877 15.4123C89.7609 7.57702 90.1486 -5.49257 82.3133 -13.7657C74.4781 -22.0388 61.4085 -22.4265 53.0862 -14.5061C44.8131 -6.67081 44.4254 6.39878 52.3458 14.7211C60.0958 22.945 73.2146 23.2475 81.4877 15.4123Z%27 fill=%27url%28%23paint0_linear_24_666%29%27/%3e%3cpath d=%27M61.3119 25.2309C75.1151 28.4819 88.9856 20.0313 92.2436 6.22154C95.5838 -7.54069 87.0143 -21.3761 73.2586 -24.7095C59.4554 -27.9605 45.5849 -19.5099 42.3269 -5.70014C39.0689 8.10956 47.5087 21.9798 61.3119 25.2309ZM47.9045 -4.34527C50.4645 -15.0468 61.2045 -21.6839 71.9009 -19.1292C82.5974 -16.5746 89.226 -5.83483 86.6185 4.94896C84.0585 15.6505 73.3185 22.2876 62.5398 19.6854C51.9256 17.1783 45.3445 6.35623 47.9045 -4.34527Z%27 fill=%27url%28%23paint1_linear_24_666%29%27/%3e%3cdefs%3e%3clinearGradient id=%27paint0_linear_24_666%27 x1=%277.99947%27 y1=%2716.1591%27 x2=%27118.131%27 y2=%27-34.0701%27 gradientUnits=%27userSpaceOnUse%27%3e%3cstop offset=%270.00114429%27 stop-color=%27%239EFFFF%27/%3e%3cstop offset=%271%27 stop-color=%27%233D59C9%27/%3e%3c/linearGradient%3e%3clinearGradient id=%27paint1_linear_24_666%27 x1=%2763.2476%27 y1=%27-27.4653%27 x2=%2751.7464%27 y2=%2730.0552%27 gradientUnits=%27userSpaceOnUse%27%3e%3cstop offset=%270.00114429%27 stop-color=%27%234EFEC3%27/%3e%3cstop offset=%271%27 stop-color=%27%233D59C9%27/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e"},2269:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.handle-actions[data-v-5ebbe4a6] {\n\tdisplay: flex;\n}\n\n",""]);const r=l},2485:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,'.cx-vui-panel--loading{opacity:.5}.cx-vui-panel-table-wrapper{margin-bottom:unset}.cx-vue-list-table .list-table-heading,.cx-vue-list-table .list-table-item-columns{justify-content:space-between}.cx-vue-list-table .list-table-item{flex-direction:column;position:relative;background-color:#fff}.cx-vue-list-table .list-table-item:not(:last-child){border-bottom:1px solid #ececec}.cx-vue-list-table .list-table-item:hover{background-color:#e3f6fd}.cx-vue-list-table .list-table-item:hover .list-table-item-actions{visibility:visible}.cx-vue-list-table .list-table-item--has-choose .list-table-item-actions{left:5.2em}.cx-vue-list-table .list-table-item--has-actions .list-table-item-columns{margin-bottom:1.5em}.cx-vue-list-table .list-table-item-actions{display:flex;width:85%;column-gap:.5em;visibility:hidden;position:absolute;bottom:.5em;left:1.5em}.cx-vue-list-table .list-table-item-actions>*:not(:last-child)::after{content:"|"}.cx-vue-list-table .list-table-item-actions-single{text-decoration:unset}.cx-vue-list-table .list-table-item-actions-single--type-danger{color:#b22222}.cx-vue-list-table .list-table-item-actions-single.disabled{pointer-events:none;cursor:default}.cx-vue-list-table .list-table-item-columns{display:flex;justify-content:space-between;width:100%}.cx-vue-list-table .list-table-item__cell{white-space:nowrap;overflow:hidden;position:relative;padding:8px 20px 6px}.cx-vue-list-table .list-table-item__cell:not(.cell--choose){flex:1}.cx-vue-list-table .list-table-heading__cell:not(.cell--choose){flex:1}body.rtl .cx-vue-list-table .list-table-item--has-choose .list-table-item-actions{right:5.2em}body.rtl .cx-vue-list-table .list-table-item-actions{right:1.5em}',""]);const r=l},2877:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.jfb-primary-actions {\n\tdisplay: flex;\n\tjustify-content: space-between;\n}\n.cx-vui-button.cx-vui-button--size-link {\n\tfont-size: inherit;\n}\n.major-publishing-actions {\n\tpadding: 10px;\n\tclear: both;\n\tborder-top: 1px solid #dcdcde;\n\tbackground: #f6f7f7;\n}\n",""]);const r=l},2972:(t,e,n)=>{var s=n(8192);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("c692d034",s,!1,{})},3033:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-icon-status[data-v-5890b8d6]{position:relative;display:inline-block}.jfb-icon-status-has-help[data-v-5890b8d6]{cursor:pointer}.jfb-icon-status-has-text[data-v-5890b8d6]{display:flex;column-gap:.5em;align-items:center}.jfb-icon-status--text[data-v-5890b8d6]{text-overflow:ellipsis;overflow:hidden;padding:.1em 0}.jfb-icon-status .dashicons-dismiss[data-v-5890b8d6]{color:#ff4500}.jfb-icon-status .dashicons-warning[data-v-5890b8d6]{color:orange}.jfb-icon-status .dashicons-yes-alt[data-v-5890b8d6]{color:#32cd32}.jfb-icon-status .dashicons-info[data-v-5890b8d6]{color:#90c6db}.jfb-icon-status .dashicons-hourglass[data-v-5890b8d6]{color:#b5b5b5}.jfb-icon-status .cx-vui-tooltip[data-v-5890b8d6]{width:fit-content;bottom:calc(100% + 15px);box-sizing:border-box;pointer-events:none;transition:all .18s linear;opacity:0;padding-left:1em;padding-right:1em;position:absolute}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-right[data-v-5890b8d6]{right:-1.2em}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-right[data-v-5890b8d6]:after{right:20px;left:unset}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-left[data-v-5890b8d6]{left:-0.9em}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-left[data-v-5890b8d6]:after{left:20px;right:unset}.jfb-icon-status:hover .cx-vui-tooltip[data-v-5890b8d6]{opacity:1}.jfb-icon-status:hover .cx-vui-tooltip.tooltip-position-top-right[data-v-5890b8d6]{bottom:100%}.jfb-icon-status:hover .cx-vui-tooltip.tooltip-position-top-left[data-v-5890b8d6]{bottom:100%}",""]);const r=l},3061:(t,e,n)=>{var s=n(7513);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("2fdc9246",s,!1,{})},3189:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-form-builder-page pre{margin:unset;overflow:auto}",""]);const r=l},3249:(t,e,n)=>{var s=n(3189);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("922c9ac8",s,!1,{})},3726:(t,e,n)=>{var s=n(4378);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("15f24569",s,!1,{})},4285:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>p});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o),r=n(62),a=n.n(r),c=new URL(n(2054),n.b),u=l()(i()),d=a()(c);u.push([t.id,`.jet-form-builder-page__banner{display:flex;flex-direction:column;align-items:stretch;gap:20px;border-radius:4px;color:#23282d;overflow:hidden;position:relative;background-size:cover;background-position:50% 50%;box-shadow:0px 2px 6px rgba(35,40,45,.07)}.jet-form-builder-page__banner .banner-frame{display:flex;flex-direction:column;align-items:stretch;border-radius:4px;z-index:1}.jet-form-builder-page__banner .banner-inner{height:100%;box-sizing:border-box;border-radius:4px}.jet-form-builder-page__banner .banner-label{font-weight:500;font-size:14px;line-height:18px;text-transform:uppercase;margin-bottom:38px}.jet-form-builder-page__banner .banner-title{font-size:20px;line-height:28px;margin-bottom:10px}.jet-form-builder-page__banner .banner-content{font-size:14px;line-height:18px;margin-bottom:20px}.jet-form-builder-page__banner .banner-buttons{display:flex;justify-content:flex-start;align-items:flex-end;flex:1 1 auto}.jet-form-builder-page__banner .banner-buttons .cx-vui-button{margin-right:10px}.jet-form-builder-page__banner .banner-buttons .cx-vui-button:last-child{margin-right:0}.jet-form-builder-page__banner.light-1-preset{background-color:#fff}.jet-form-builder-page__banner.light-1-preset .banner-label{color:#bb97ff}.jet-form-builder-page__banner.light-1-preset .banner-content{color:#7b7e81}.jet-form-builder-page__banner.light-1-preset:after{content:"";display:block;position:absolute;width:100%;height:100%;top:0;left:0;background-image:url(${d});background-repeat:no-repeat;background-position:right;background-position-y:0}`,""]);const p=u},4378:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-ellipsis{overflow:hidden;text-overflow:ellipsis}.list-table-item__cell{overflow:hidden;text-overflow:ellipsis}.list-table-item__cell.overflow-visible.overflow-visible{overflow:visible}.list-table-item__cell.is-editable{display:flex;justify-content:space-between;column-gap:1em}.list-table-item__cell.is-editable span.dashicons{transition:all .2s ease-in-out;padding:.2em;border-radius:50%;box-shadow:unset;cursor:pointer;background-color:#fff}.list-table-item__cell--body{flex:1}.list-table-item__cell--body-value{overflow:hidden;text-overflow:ellipsis}.list-table-item__cell--body-value.jfb-control{flex:1;padding:.1em}.list-table-item__cell--body-value.jfb-control>*{width:100%}.list-table-item__cell.show-overflow.show-overflow{word-break:break-word;white-space:normal;line-height:1.5}.list-table-item__cell:hover .list-table-item__cell--body-is-editable span.dashicons:hover{box-shadow:0 0 8px #ccc}",""]);const r=l},4487:(t,e,n)=>{var s=n(9699);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("7f272449",s,!1,{})},4744:(t,e,n)=>{var s=n(8908);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("9b25b9f2",s,!1,{})},5201:(t,e,n)=>{var s=n(4285);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("c4aaf4cc",s,!1,{})},5343:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vui-component[data-v-207e75c4]{padding:unset}",""]);const r=l},5850:(t,e,n)=>{var s=n(9942);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("f88cbe24",s,!1,{})},6284:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vui-popup.export-popup .cx-vui-popup__body{width:65vw}.cx-vui-popup.export-popup .cx-vui-popup__footer{justify-content:space-between}.cx-vui-popup.export-popup .footer-counter{display:flex;gap:1em}",""]);const r=l},6561:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-form-builder-page .cx-vui-alert{width:100%;box-sizing:border-box;padding:10px 20px;margin-top:20px;background-color:#f4f4f5;border-radius:4px;display:flex;justify-content:flex-start;align-items:flex-start}.jet-form-builder-page .cx-vui-alert .cx-vui-alert__icon{margin-top:3px;margin-right:10px}.jet-form-builder-page .cx-vui-alert .cx-vui-alert__message{flex:1 1 auto;color:#7b7e81;font-size:13px}.jet-form-builder-page .cx-vui-alert.info-type{background-color:#edf6fa}.jet-form-builder-page .cx-vui-alert.info-type .cx-vui-alert__icon svg{fill:#007cba}.jet-form-builder-page .cx-vui-alert.info-type .cx-vui-alert__message{color:#007cba}.jet-form-builder-page .cx-vui-alert.success-type{background-color:#e9f6ea}.jet-form-builder-page .cx-vui-alert.success-type .cx-vui-alert__icon svg{fill:#46b450}.jet-form-builder-page .cx-vui-alert.success-type .cx-vui-alert__message{color:#46b450}.jet-form-builder-page .cx-vui-alert.error-type{background-color:#fbf0f0}.jet-form-builder-page .cx-vui-alert.error-type .cx-vui-alert__icon svg{fill:#c92c2c}.jet-form-builder-page .cx-vui-alert.error-type .cx-vui-alert__message{color:#c92c2c}.jet-form-builder-page__alerts{width:100%;display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.jet-form-builder-page__alert{position:relative;display:flex;justify-content:flex-start;align-items:flex-start;background-color:#fff;box-shadow:0px 2px 6px rgba(35,40,45,.07);padding:20px;margin-top:10px}.jet-form-builder-page__alert:first-child{margin-top:0}.jet-form-builder-page__alert.info-type .alert-type-line{background:#3b82f6}.jet-form-builder-page__alert.success-type .alert-type-line{background:#40d825;background:linear-gradient(180deg, #40D825 0%, #B1EF3A 100%)}.jet-form-builder-page__alert.danger-type .alert-type-line{background:#fedb22;background:linear-gradient(0deg, #FEDB22 0%, #FFA901 100%),#5099e6}.jet-form-builder-page__alert.error-type .alert-type-line{background:#ff8b8b;background:linear-gradient(0deg, #FF8B8B 0%, #F5435A 100%),#5099e6}.jet-form-builder-page__alert .alert-type-line{display:block;position:absolute;width:4px;height:100%;top:0;left:0;background:linear-gradient(0deg, #5B77E7 0%, #49B5D2 53.65%, #26E8A8 100%)}.jet-form-builder-page__alert .alert-close{display:flex;justify-content:center;align-items:center;position:absolute;top:7px;right:7px;cursor:pointer}.jet-form-builder-page__alert .alert-icon{position:relative;display:flex;justify-content:center;align-items:center;max-width:80px;width:48px;margin-right:20px}.jet-form-builder-page__alert .alert-icon svg{width:100%;height:auto}.jet-form-builder-page__alert .alert-content{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.jet-form-builder-page__alert .alert-title{color:#23282d;font-size:14px;line-height:18px;font-weight:500;margin-bottom:5px}.jet-form-builder-page__alert .alert-message{color:#7b7e81;font-size:13px;line-height:16px}.jet-form-builder-page__alert .alert-buttons{margin-top:10px}.jet-form-builder-page__alert .alert-buttons .cx-vui-button{margin-right:10px}.jet-form-builder-page__alert .alert-buttons .cx-vui-button:last-child{margin-right:0}",""]);const r=l},6565:()=>{window.jfbEventBus=window.jfbEventBus||new Vue({data:()=>({reactiveCounter:0})})},6758:t=>{"use strict";t.exports=function(t){return t[1]}},7008:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\na[data-v-6c61ef64] {\n\tmargin-right: 1em;\n\ttext-decoration: none;\n}\nbody.rtl a[data-v-6c61ef64] {\n\tmargin-left: 1em;\n}\n",""]);const r=l},7287:(t,e,n)=>{var s=n(7443);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("d08b32f0",s,!1,{})},7289:(t,e,n)=>{var s=n(2877);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("1e0fc7e8",s,!1,{})},7443:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-fb-choose-action-wrapper{display:flex;align-items:center;justify-content:space-between;gap:.7em;max-width:20vw;min-width:250px}.jet-fb-choose-action-wrapper .cx-vui-component{flex:1;padding:unset}.jet-fb-choose-action-wrapper .cx-vui-component__control{flex:1}",""]);const r=l},7513:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.page-actions[data-v-35fab3b2] {\n\tdisplay: flex;\n\tgap: 1em;\n}\n\n",""]);const r=l},7597:(t,e,n)=>{var s=n(3033);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("39430ad8",s,!1,{})},7803:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-content-sidebar{width:300px;display:flex;flex-direction:column;gap:2em}",""]);const r=l},7823:(t,e,n)=>{var s=n(7803);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("94a4f310",s,!1,{})},7834:(t,e,n)=>{var s=n(7950);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("fa7110b0",s,!1,{})},7950:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vue-list-table .cell--id.cell--id{flex:.3}",""]);const r=l},7985:(t,e,n)=>{var s=n(2269);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("bbaec80a",s,!1,{})},8192:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-pagination{display:flex;justify-content:space-between;align-items:center;padding:1.5em;margin-bottom:unset}.jfb-pagination--sort .cx-vui-component{column-gap:1em;justify-content:center;align-items:center;padding:unset}.jfb-pagination .cx-vui-input{background-color:#fff}.jfb-pagination li.cx-vui-pagination-item{width:1.2em;height:1.5em;border-radius:5px;font-size:1.15em;transition:all .3s ease-in-out}.jfb-pagination li.cx-vui-pagination-item-active,.jfb-pagination li.cx-vui-pagination-item:hover{box-shadow:0 5px 5px -1px #bdbdbd;background-color:#007cba;color:#f5f5f5;border-color:#007cba}",""]);const r=l},8241:(t,e,n)=>{var s=n(1645);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("d35e5ff6",s,!1,{})},8469:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"select option[data-v-1bd48c17]:disabled{background-color:#f5f5f5}",""]);const r=l},8661:(t,e,n)=>{var s=n(6561);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("4a3f50be",s,!1,{})},8848:(t,e,n)=>{var s=n(1060);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("25d89817",s,!1,{})},8908:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-cx-vui-component.cx-vui-component{column-gap:1em;flex-direction:row-reverse;padding:1.2em}.jfb-cx-vui-component .cx-vui-component__label{font-size:inherit}",""]);const r=l},9244:(t,e,n)=>{var s=n(7008);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("5c9c0768",s,!1,{})},9256:(t,e,n)=>{var s=n(6284);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("eab0c31e",s,!1,{})},9492:(t,e,n)=>{var s=n(9840);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("3db94e28",s,!1,{})},9699:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vue-list-table .cell--choose.cell--choose{padding-right:unset}.cx-vue-list-table .cell--choose.cell--choose .cx-vui-component{padding:unset}.cx-vue-list-table .cell--choose.cell--choose .cx-vui-checkbox__check{margin-top:0}",""]);const r=l},9831:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"a[data-v-53bef95e]{text-decoration:none}a.with-flex[data-v-53bef95e]{display:flex;align-items:center;column-gap:.3em;width:fit-content}",""]);const r=l},9840:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-row-wrapper[data-v-4f8e09cf]{display:flex;gap:2em;align-items:end;padding:1em;margin-top:2em;flex-wrap:wrap}.jfb-row-wrapper--loading[data-v-4f8e09cf]{opacity:.5}.filters[data-v-4f8e09cf]{display:flex;gap:1em;align-items:flex-end;flex-wrap:wrap}.wrapper-buttons[data-v-4f8e09cf]{flex:1;text-align:end}",""]);const r=l},9942:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"#normal-sortables .jfb-list-table th{width:30%}.jfb-list-table{border-collapse:collapse;width:100%}.jfb-list-table-row{border-bottom:1px solid #ececec}.jfb-list-table-row--inner{padding:.8em}.jfb-list-table-row--item{word-break:break-word}.jfb-list-table-row--heading{text-align:left}.jfb-list-table-row:last-child{border-bottom:unset}body.rtl .jfb-list-table-row--heading{text-align:right}",""]);const r=l},9963:(t,e,n)=>{var s=n(9831);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("237ecbda",s,!1,{})},9971:(t,e,n)=>{var s=n(5343);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("3fee1c64",s,!1,{})}},e={};function n(s){var i=e[s];if(void 0!==i)return i.exports;var o=e[s]={id:s,exports:{}};return t[s](o,o.exports,n),o.exports}n.m=t,n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var s in e)n.o(e,s)&&!n.o(t,s)&&Object.defineProperty(t,s,{enumerable:!0,get:e[s]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.b=document.baseURI||self.location.href,(()=>{"use strict";var t={};n.r(t),n.d(t,{head:()=>Z,item:()=>R});var e={};n.r(e),n.d(e,{item:()=>X});var s={};n.r(s),n.d(s,{item:()=>tt});var i={};n.r(i),n.d(i,{control:()=>nt});var o={};n.r(o),n.d(o,{control:()=>it});var l={};n.r(l),n.d(l,{item:()=>ni}),n(6565);var r=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("FormBuilderPage",{attrs:{title:t.__("JetFormBuilder Payments","jet-form-builder")},scopedSlots:t._u([{key:"heading-after",fn:function(){return[n("ExportPaymentsButton")]},proxy:!0}])},[t._v(" "),n("ActionsWithFilters",{scopedSlots:t._u([{key:"filters",fn:function(){return[n("StatusFilter")]},proxy:!0}])}),t._v(" "),n("TablePagination"),t._v(" "),n("EntriesTable"),t._v(" "),t.$slots.default?[t._t("default")]:t._e(),t._v(" "),n("TablePagination")],2)};r._withStripped=!0;var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.show?n("div",{class:t.wrapperClass},[n("ChooseAction"),t._v(" "),n("div",{staticClass:"filters"},[t._t("filters")],2),t._v(" "),n("div",{staticClass:"wrapper-buttons"},[t._t("buttons")],2)],1):t._e()};a._withStripped=!0;var c=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jet-fb-choose-action-wrapper"},[n("cx-vui-select",{attrs:{placeholder:t.__("Bulk actions","jet-form-builder"),size:"fullwidth",value:t.currentAction,"options-list":t.actionsList},on:{input:t.setCurrentAction}}),t._v(" "),n("cx-vui-button",{attrs:{loading:t.isLoading,disabled:t.isDoing,"button-style":"accent-border",size:"mini"},on:{click:t.applyAction},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Apply","jet-form-builder")))]},proxy:!0}])})],1)};c._withStripped=!0;const u={CHOOSE_ACTION:"chooseAction",CLICK_ACTION:"clickAction"},d={props:{scope:{type:String,default:"default"}},methods:{scopedName(t){return"scope-"+this.scope+"/"+t},getter(t,e){const n=this.$store.getters[this.scopedName(t)];return void 0!==e&&"function"==typeof n?e?.length&&"object"==typeof e?n(...e):n(e):n},commit(t,e){return this.$store.commit(this.scopedName(t),e)},dispatch(t,e){return this.$store.dispatch(this.scopedName(t),e)}}},{i18n:p}=JetFBMixins,{applyFilters:m}=wp.hooks,{CHOOSE_ACTION:f,CLICK_ACTION:g}=u;window.jfbEventBus=window.jfbEventBus||new Vue({});const{mapState:h,mapGetters:b,mapMutations:v,mapActions:_}=Vuex,C={name:"ChooseAction",mixins:[p,d],computed:{...b(["isDoing"]),currentAction(){return this.getter("currentAction")},isLoading(){return this.getter("isLoading","applyButton")},actionsList(){return this.getter("actionsList")},getChecked(){return this.getter("getChecked")},getActionPromise(){return this.getter("getActionPromise")}},methods:{...v(["toggleDoingAction"]),setCurrentAction(t){this.commit("setCurrentAction",t)},onFinish(){this.commit("toggleLoading","applyButton"),this.toggleDoingAction()},applyAction(){this.onFinish(),this.commit("setProcess",{action:this.currentAction,context:f,payload:[this.getChecked,f]});const t=()=>{this.onFinish(),this.commit("clearProcess"),this.commit("setChecked",[]),this.commit("unChooseHead")};try{this.getActionPromise().finally(t)}catch(t){this.onFinish()}}}};function y(t,e,n,s,i,o,l,r){var a,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),s&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),l?(a=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(l)},c._ssrRegister=a):i&&(a=r?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),a)if(c.functional){c._injectStyles=a;var u=c.render;c.render=function(t,e){return a.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,a):[a]}return{exports:t,options:c}}n(7287);const x=y(C,c,[],!1,null,null,null).exports,{GetIncoming:w,i18n:S}=JetFBMixins,{mapMutations:j,mapActions:E,mapState:k,mapGetters:P}=Vuex,L={name:"ActionsWithFilters",components:{ChooseAction:x},mixins:[w,S,d],data:()=>({}),computed:{...P(["isDoing"]),hasFilters(){return jfbEventBus.reactiveCounter,this.getter("hasFilters")},items(){return this.getter("list")},show(){return this.items.length||this.hasFilters},wrapperClass(){return{"cx-vui-panel":!0,"jfb-row-wrapper":!0,"jfb-row-wrapper--loading":this.isDoing}}},created(){if(!this.items.length)return;const{filters_endpoint:t}=this.getIncoming();t&&this.dispatch("maybeFetchFilters",t)}};n(9492);const A=y(L,a,[],!1,null,"4f8e09cf",null).exports;var B=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jfb-pagination"},[n("span",{staticClass:"jfb-pagination--results"},[t._v("\n\t\t"+t._s(t.__s("Showing %d - %d of %d results.","jet-form-builder",t.queryState.itemsFrom,t.queryState.itemsTo,t.queryState.total))+"\n\t")]),t._v(" "),t.queryState.limit[]}},data:()=>({componentsCols:[]}),created(){this.componentsCols=[...this.columnsComponents,t,e,s,i,o,ut,rt]},methods:{getColumnComponentByPrefix(t,e){const n=this.componentsCols.findIndex((n=>n[e]?.name===t+"--"+e));return-1!==n&&this.componentsCols[n][e]}}};var pt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.getClasses},[n("div",{staticClass:"list-table-item__cell--body jfb-ellipsis"},[t.initial.editable&&t.isEnableEdit?n("div",{staticClass:"list-table-item__cell--body-value jfb-control"},[n("keep-alive",[n(t.getComponentEditControl,{tag:"component",attrs:{options:t.initial.control_options},model:{value:t.editedCellValue,callback:function(e){t.editedCellValue=e},expression:"editedCellValue"}})],1)],1):t.getComponentColumn?[n(t.getComponentColumn,{tag:"component",attrs:{value:t.value,"full-entry":t.entry,"entry-id":t.entryId,scope:t.scope}})]:t.getComponentType?[n(t.getComponentType,{tag:"component",attrs:{value:t.value,"full-entry":t.entry,"entry-id":t.entryId,scope:t.scope}})]:n("div",{staticClass:"list-table-item__cell--body-value",domProps:{innerHTML:t._s(t.value)}})],2),t._v(" "),t.initial.editable&&t.editedCellValue!==t.initialValue?n("div",{staticClass:"list-table-item__cell--actions"},[n("span",{staticClass:"dashicons dashicons-undo",on:{click:t.revertChangesColumn}})]):t._e()])};pt._withStripped=!0;const mt={name:"EntryColumnsTable",props:{entry:Object,column:String,entryId:Number},mixins:[d,dt],computed:{initial(){var t;return null!==(t=this.entry[this.column])&&void 0!==t?t:{}},value(){return this.initial.editable?this.editedCellValue:this.initialValue},initialValue(){var t,e;return null!==(t=null!==(e=this.initial?.value)&&void 0!==e?e:this.initial?.value?.value)&&void 0!==t&&t},initialType(){var t;return null!==(t=this.initial?.type)&&void 0!==t?t:"string"},initialClasses(){var t;return null!==(t=this.initial?.classes)&&void 0!==t?t:[]},getClasses(){const t=["list-table-item__cell","cell--"+this.column,"cell-type--"+this.initialType,...this.initialClasses];return!t.includes("overflow-visible")&&this.isShowOverflow&&t.push("show-overflow"),this.initial.editable&&t.push("is-editable"),t},editedCellValue:{get(){return jfbEventBus.reactiveCounter,this.getter("editedCellValue",[this.column,this.entry])},set(t){this.commit("updateEditableCell",{record:this.entry,column:this.column,initial:this.initialValue,props:{value:t}}),jfbEventBus.reactiveCounter++}},isEnableEdit(){return jfbEventBus.reactiveCounter,this.getter("isEnableEdit")},isShowOverflow(){return this.getter("options/isShowOverflow")},getComponentType(){return this.getItemComponent(this.initialType)},getComponentColumn(){return this.getItemComponent(this.column)},getComponentEditControl(){return this.getColumnComponentByPrefix(this.initial?.control,"control")}},methods:{revertChangesColumn(){this.commit("revertChangesColumn",{record:this.entry,column:this.column}),jfbEventBus.reactiveCounter++},getItemComponent(t){return this.getColumnComponentByPrefix(t,"item")}}};n(3726);const ft=y(mt,pt,[],!1,null,null,null).exports;function gt(t){var e,n;return null!==(e=null!==(n=t?.id?.value)&&void 0!==n?n:t?.choose?.value)&&void 0!==e?e:0}const{CHOOSE_ACTION:ht,CLICK_ACTION:bt}=u,{mapState:vt,mapGetters:_t,mapActions:Ct,mapMutations:yt}=window.Vuex,xt={name:"EntriesTableSkeleton",components:{EntryColumnsTable:ft},props:{list:{type:Array},columns:{type:Object},loading:{type:Boolean,default:!1},emptyMessage:{type:String,default:""},footerHeading:{type:Boolean,default:!0}},data:()=>({columnsIDs:[]}),mixins:[dt,d],created(){this.columnsIDs=Object.keys(this.columns)},computed:{rootClasses(){return{"cx-vui-panel":!0,"cx-vui-panel--loading":this.loading,"cx-vui-panel-table-wrapper":!0}},filteredColumns(){return this.columnsIDs.filter(this.isShown).sort(((t,e)=>{var n,s;return(null!==(n=this.columns[t].table_order)&&void 0!==n?n:999)-(null!==(s=this.columns[e].table_order)&&void 0!==s?s:999)}))},..._t(["isDoing"])},methods:{...yt(["toggleDoingAction"]),getHeadingComponent(t){return this.getColumnComponentByPrefix(t,"head")},getActionHref:t=>t?.href||"javascript:void(0)",getActionClass(t){const{type:e="default",class_name:n=""}=t;return{"list-table-item-actions-single":!0,[n]:!0,["list-table-item-actions-single--type-"+e]:!0,disabled:this.isDoing}},isShown(t){var e;return null===(e=this.columns[t].show_in_table)||void 0===e||e},classEntry(t,e){var n;return{"list-table-item":!0,"list-table-item--has-choose":e?.choose?.value,"list-table-item--has-actions":e?.actions?.value?.length,...null!==(n=e?.classes?.value)&&void 0!==n?n:{}}},columnType(t,e){var n;return null!==(n=t[e]?.type)&&void 0!==n?n:"string"},onClickAction(t,e,n){if(!t?.href||"#"===t.href){n.preventDefault(),this.commit("setProcess",{action:t.value,context:bt,payload:[[gt(e)],bt,t?.payload,e]});try{this.dispatch("beforeRowAction")}catch(t){return}this.dispatch("runRowAction")}}}},wt=xt;n(97);const St=y(wt,I,[],!1,null,null,null).exports,{mapState:jt,mapGetters:Et,mapActions:kt,mapMutations:Pt}=window.Vuex,{applyFilters:Lt}=wp.hooks,At=y({name:"entries-table",data:()=>({components:[]}),components:{EntriesTableSkeleton:St},mixins:[d],created(){this.components=Lt(`jet.fb.admin.table.${this.scope}`,[])},computed:{list(){return this.getter("list")},columns(){return this.getter("columns")},emptyMessage(){return this.getter("emptyMessage")},isLoading(){return this.getter("isLoading","page")},footerHeading(){return this.getter("options/footerHeading")}}},D,[],!1,null,null,null).exports;var Bt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:{wrap:!0,"jet-form-builder-page":!0}},[t._t("heading-before"),t._v(" "),n("h1",{staticClass:"wp-heading-inline"},[t._v("\n\t\t"+t._s(t.title)+"\n\t")]),t._v(" "),t.$slots["heading-after"]?[t._t("heading-after")]:t.hasGlobalActions?[n("PageActions")]:t._e(),t._v(" "),n("hr",{staticClass:"wp-header-end"}),t._v(" "),t._t("default")],2)};Bt._withStripped=!0;var Ft=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"page-actions"},t._l(t.secondaryActions,(function(e){return n("div",{key:e.slug,class:["page-actions-item","action-"+e.slug]},[e.button?n("cx-vui-button",{key:"button-action-"+e.slug,class:["cx-vui-button--style-"+e.button.type].concat(e.button.classes),attrs:{"button-style":e.button.style,size:e.button.size,url:e.button.url,"tag-name":e.button.url?"a":"button",disabled:t.isDisabled(e.slug)||t.isGlobalDoing,loading:t.isLoading(e.slug),target:"_blank"},on:{click:function(n){return t.globalEmit(e)}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(e.button.label))]},proxy:!0}],null,!0)}):t._e()],1)})),0)};Ft._withStripped=!0;const{mapState:Tt,mapGetters:Mt,mapMutations:Vt,mapActions:Ot}=Vuex,$t={name:"PageActions",mixins:[d],computed:{...Mt("actions",["actions","isLoading","isDisabled"]),...Mt(["isDoing"]),isGlobalDoing(){return jfbEventBus.reactiveCounter,this.isDoing},secondaryActions(){return this.actions.filter((t=>"secondary"===t.position))}},methods:{...Vt("actions",["setCurrentAction"]),globalEmit({slug:t}){this.setCurrentAction(t),jfbEventBus.$emit("page-"+t)}}},Dt=$t;n(3061);const It=y(Dt,Ft,[],!1,null,"35fab3b2",null).exports;var Nt;const Ht={name:"FormBuilderPage",props:{title:{type:String,default:null!==(Nt=window?.JetFBPageConfig?.title)&&void 0!==Nt?Nt:""}},computed:{hasGlobalActions(){return this.$store.hasModule("actions")}},components:{PageActions:It}};n(1746);const Jt=y(Ht,Bt,[],!1,null,null,null).exports;var Gt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("CxVuiSelect",{attrs:{value:t.filter.selected},on:{input:t.onChangeFilter}},t._l(t.filter.options||[],(function(e){return n("option",{domProps:{value:e.value}},[t._v("\n\t\t"+t._s(e.label)+"\n\t")])})),0)};Gt._withStripped=!0;const zt={mixins:[d],computed:{filter(){return jfbEventBus.reactiveCounter,this.getter("getFilter",this.filter_id)}},methods:{setCurrentFilter(t){this.commit("setFilter",{slug:this.filter_id,props:t})},onChangeFilter(t){this.setCurrentFilter({selected:t})}}},{__:Ut}=wp.i18n,{mapState:Rt,mapGetters:Zt,mapMutations:Wt,mapActions:qt}=Vuex,{i18n:Qt}=JetFBMixins,{ColumnWrapper:Xt,CxVuiSelect:Kt}=JetFBComponents,Yt=y({name:"StatusFilter",components:{ColumnWrapper:Xt,CxVuiSelect:Kt},data:()=>({filter_id:"status"}),created(){this.setCurrentFilter({options:[{value:"",label:Ut("All statuses","jet-form-builder")},{value:"COMPLETED",label:Ut("Only completed ones","jet-form-builder")},{value:"VOIDED",label:Ut("Only not completed ones","jet-form-builder")}]})},mixins:[zt,Qt]},Gt,[],!1,null,null,null).exports;var te=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{display:"inline-block"}},[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"mini"},on:{click:function(e){t.showPopup=!0}},scopedSlots:t._u([{key:"label",fn:function(){return[n("span",{staticClass:"dashicons dashicons-database-export"}),t._v("\n\t\t\t"+t._s(t.__("Export","jet-form-builder"))+"\n\t\t")]},proxy:!0}])}),t._v(" "),t.showPopup?n("CxVuiPopup",{attrs:{"class-names":{"export-popup":!0,"sticky-footer":!0}},on:{close:function(e){t.showPopup=!1}},scopedSlots:t._u([{key:"title",fn:function(){return[t._v(t._s(t.__("1. Select data to export:","jet-form-builder")))]},proxy:!0},{key:"content",fn:function(){return[n("RowWrapper",{attrs:{"element-id":"columns","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:t.columnsState},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("General Columns","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiFSelect",{attrs:{"options-list":t.columns,multiple:!0,value:t.selectedColumns},on:{change:t.setColumns}})]},proxy:!0},{key:"actions",fn:function(){return[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.columnsValues.length===t.selectedColumns.length},on:{click:t.selectAllColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,3825749283)}),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!t.selectedColumns.length},on:{click:t.clearAllColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,782737158)})]},proxy:!0}],null,!1,2802837545)}),t._v(" "),n("RowWrapper",{attrs:{"element-id":"payerColumns","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:t.columnsState},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Payer Columns","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiFSelect",{attrs:{"options-list":t.payerColumns,multiple:!0,value:t.selectedPayerColumns},on:{change:t.setPayerColumns}})]},proxy:!0},{key:"actions",fn:function(){return[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.payerColumnsValues.length===t.selectedPayerColumns.length},on:{click:t.selectAllPayerColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,3825749283)}),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!t.selectedPayerColumns.length},on:{click:t.clearAllPayerColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,782737158)})]},proxy:!0}],null,!1,4094018880)}),t._v(" "),n("RowWrapper",{attrs:{"element-id":"shippingColumns","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:t.columnsState},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Shipping Columns","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiFSelect",{attrs:{"options-list":t.shippingColumns,multiple:!0,value:t.selectedShippingColumns},on:{change:t.setShippingColumns}})]},proxy:!0},{key:"actions",fn:function(){return[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.shippingColumnsValues.length===t.selectedShippingColumns.length},on:{click:t.selectAllShippingColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,3825749283)}),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!t.selectedShippingColumns.length},on:{click:t.clearAllShippingColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,782737158)})]},proxy:!0}],null,!1,1335985645)}),t._v(" "),n("h3",[t._v(t._s(t.__("2. Filter payments:","jet-form-builder")))]),t._v(" "),n("Delimiter"),t._v(" "),n("RowWrapper",{attrs:{"element-id":"status","class-names":{"size--1-x-2":!0,"padding-side-unset":!0}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Status","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiSelect",{attrs:{value:t.status,"class-names":{fullwidth:!0}},on:{input:t.setStatus}},t._l(t.statusFilter.options||[],(function(e){return n("option",{domProps:{value:e.value}},[t._v("\n\t\t\t\t\t\t\t"+t._s(e.label)+"\n\t\t\t\t\t\t")])})),0)]},proxy:!0}],null,!1,3912950338)})]},proxy:!0},{key:"footer",fn:function(){return[n("div",{staticClass:"footer-buttons"},[n("cx-vui-button",{attrs:{"button-style":"accent",size:"mini",disabled:!t.canBeExported},on:{click:t.startExport},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Export","jet-form-builder")))]},proxy:!0}],null,!1,2420192243)}),t._v(" "),n("cx-vui-button",{attrs:{size:"mini"},on:{click:function(e){t.showPopup=!1}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Cancel","jet-form-builder")))]},proxy:!0}],null,!1,298029969)})],1),t._v(" "),n("div",{staticClass:"footer-counter"},[n("div",{staticClass:"footer-counter--message"},[t._v("\n\t\t\t\t\t"+t._s(t.countMessage)+"\n\t\t\t\t")]),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.isLoading("count"),loading:t.isLoading("count")},on:{click:t.onClickUpdateCount},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t"+t._s(t.__("Update","jet-form-builder"))+"\n\t\t\t\t\t")]},proxy:!0}],null,!1,168407598)})],1)]},proxy:!0}],null,!1,3777172923)}):t._e()],1)};te._withStripped=!0;const{__:ee,sprintf:ne}=wp.i18n,{mapState:se,mapGetters:ie,mapMutations:oe,mapActions:le}=Vuex,{i18n:re,GetIncoming:ae}=JetFBMixins,{RowWrapper:ce,CxVuiPopup:ue,CxVuiFSelect:de,CxVuiSelect:pe,Delimiter:me}=JetFBComponents,{addQueryArgs:fe}=JetFBActions,{export_url:ge}=window.JetFBPageConfig,he={name:"ExportPaymentsButton",components:{CxVuiFSelect:de,RowWrapper:ce,CxVuiPopup:ue,CxVuiSelect:pe,Delimiter:me},mixins:[re,d,ae],data:()=>({showPopup:!1}),created(){this.resolveCount()},computed:{exportUrl(){return fe({columns:this.selectedColumns,payerColumns:this.selectedPayerColumns,shippingColumns:this.selectedShippingColumns,filters:{status:this.status}},ge)},...ie(["exportPayments/columns","exportPayments/columnsValues","exportPayments/selectedColumns","exportPayments/payerColumns","exportPayments/payerColumnsValues","exportPayments/selectedPayerColumns","exportPayments/shippingColumns","exportPayments/shippingColumnsValues","exportPayments/selectedShippingColumns","exportPayments/statusesList","exportPayments/status","exportPayments/isLoading","exportPayments/count"]),canBeExported(){return!this.isLoading()&&!this.isEmptyColumns&&this.count>0},isEmptyColumns(){return!this.selectedColumns?.length&&!this.selectedShippingColumns?.length&&!this.selectedPayerColumns?.length},columnsState(){return this.isEmptyColumns?{type:"warning-danger",message:ee("Please fill this field","jet-form-builder")}:""},statusFilter(){return this.getter("getFilter","status")},status(){return this["exportPayments/status"]},columns(){return this["exportPayments/columns"]},columnsValues(){return this["exportPayments/columnsValues"]},selectedColumns(){return this["exportPayments/selectedColumns"]},payerColumns(){return this["exportPayments/payerColumns"]},payerColumnsValues(){return this["exportPayments/payerColumnsValues"]},selectedPayerColumns(){return this["exportPayments/selectedPayerColumns"]},shippingColumns(){return this["exportPayments/shippingColumns"]},shippingColumnsValues(){return this["exportPayments/shippingColumnsValues"]},selectedShippingColumns(){return this["exportPayments/selectedShippingColumns"]},count(){return this["exportPayments/count"]},countMessage(){return ne(ee("%d items can be exported","jet-form-builder"),this.count)}},methods:{...oe("exportPayments",["setColumns","setShippingColumns","setPayerColumns","setStatus"]),...le("exportPayments",["clearAllColumns","selectAllColumns","clearAllPayerColumns","selectAllPayerColumns","clearAllShippingColumns","selectAllShippingColumns","resolveCount"]),startExport(){window.location=this.exportUrl},onClickUpdateCount(){this.resolveCount()},isLoading(t){return this["exportPayments/isLoading"](t)}}};n(9256);const be=y(he,te,[],!1,null,null,null).exports,{GetIncoming:ve,i18n:_e,PromiseWrapper:Ce}=JetFBMixins,{apiFetch:ye}=wp,{mapMutations:xe,mapState:we,mapActions:Se,mapGetters:je}=Vuex,Ee={name:"payments-table-core",components:{ExportPaymentsButton:be,StatusFilter:Yt,ActionsWithFilters:A,FormBuilderPage:Jt,EntriesTable:At,TablePagination:$},mixins:[ve,_e,Ce],created(){this.setActionPromises({action:"delete",promise:this.promiseWrapper(this.delete.bind(this))})},methods:{...xe("scope-default",["setActionPromises"]),...Se("scope-default",["updateList","apiFetch"]),delete({resolve:t,reject:e}){this.apiFetch().then((e=>{this.updateList(e),t(e.message)})).catch(e)}}};n(7834);const ke=y(Ee,r,[],!1,null,null,null).exports,Pe={toggleDoingAction(t){t.doingAction=!t.doingAction}},Le={state:{...()=>({doingAction:!1})},getters:{isDoing:t=>t.doingAction},mutations:{...Pe}},Ae={loading:{page:!1,applyButton:!1}},Be={toggleLoading(t,e){var n;t.loading={...t.loading,[e]:!(null!==(n=t.loading[e])&&void 0!==n&&n)}}},Fe={state:()=>({...Ae}),getters:{isLoading:t=>e=>{var n;return null!==(n=t.loading[e])&&void 0!==n&&n}},mutations:Be},Te={currentPage:1,extreme_id:0,limit:25,sort:"DESC",total:0,itemsFrom:0,itemsTo:0,filters:{},receiveEndpoint:{},apiOptions:{},apiData:{}},Me=(t,e)=>1!==t?(t-1)*e:0,Ve=t=>{const e={};for(const n in t){const s=t[n];e[n]=s.selected}return e},{addQueryArgs:Oe}=JetFBActions,$e={offset:t=>Me(t.currentPage,t.limit),getLimit:t=>t.limit,getFilter:t=>e=>{var n;return null!==(n=t.filters[e])&&void 0!==n?n:{}},receiveEndpoint:t=>t.receiveEndpoint,queryState:t=>({limit:t.limit,total:t.total,currentPage:t.currentPage,itemsFrom:t.itemsFrom,itemsTo:t.itemsTo}),hasFilters:t=>0Object.values(t.filters).some((({selected:t})=>!!t)),apiOptions:t=>t.apiOptions,apiData:t=>t.apiData,filtersObj:t=>Ve(t.filters),fetchListOptions:t=>e=>{const{limit:n,sort:s,currentPage:i}=t;return{...e,url:Oe({limit:n,sort:s,page:i,filters:Ve(t.filters)},e.url)}}},De={...$e},Ie={setTotal(t,e){t.total=+e},setLimit(t,e){+e<1&&(e=1),t.limit=+e},setCurrentPage(t,e){t.currentPage=+e},setOffset(t,e){const n=e+t.limit;t.itemsFrom=e+1,t.itemsTo=n>t.total?t.total:n},setReceiveEndpoint(t,e){t.receiveEndpoint={...e}},setFilters(t,e){t.filters={...t.filters,...e}},setFilter(t,{slug:e,props:n={}}){var s;t.filters={...t.filters,[e]:{...null!==(s=t.filters[e])&&void 0!==s?s:{},...n}}},clearSelectedFilters(t,e={}){for(const s in t.filters){var n;t.filters[s].selected=null!==(n=e[s])&&void 0!==n?n:""}},setApiOptions(t,e){t.apiOptions=e},setApiData(t,e){t.apiData=e}},Ne={setQueryState({commit:t},e){"currentPage"in e&&t("setCurrentPage",e.currentPage),"total"in e&&t("setTotal",e.total),"limit"in e&&t("setLimit",e.limit)},setQueriedPage({commit:t,state:e},n){const s=Me(+n,e.limit);t("setCurrentPage",n),t("setOffset",s)},updateQueryState({state:t,dispatch:e},n=!1){e("setQueriedPage",n||t.currentPage)}},He={state:()=>({...Te}),getters:De,mutations:Ie,actions:Ne},Je={list:[],columns:{}},Ge={setList(t,e){t.list=JSON.parse(JSON.stringify(e))},setColumns(t,e){t.columns=JSON.parse(JSON.stringify(e))}},ze={state:()=>({...Je}),getters:{list:t=>t.list,columns:t=>t.columns},mutations:Ge},Ue={checked:[],chooseHead:"",idList:[]},Re={toggleHead(t){t.chooseHead=t.chooseHead?"":"checked"},unChooseHead(t){t.chooseHead=""},chooseHead(t){t.chooseHead="checked"},addChecked(t,{id:e}){t.checked.push(e)},setChecked(t,e=[]){t.checked=e},removeChecked(t,{id:e}){t.checked=t.checked.filter((t=>t!==e))}},Ze={state:()=>({...Ue}),getters:{chooseHeadValue:t=>t.chooseHead,isChecked:t=>e=>t.checked.includes(e),isCheckedHead:t=>"checked"===t.chooseHead,getChecked:t=>t.checked},mutations:Re,actions:{changeChecked({commit:t},{id:e,active:n}){t(n?"addChecked":"removeChecked",{id:e})}}};window.jfbEventBus=window.jfbEventBus||new Vue({});const{apiFetch:We}=wp,qe={fetchPage({commit:t,getters:e,dispatch:n}){t("toggleLoading","page");const s=e.receiveEndpoint;n("fetch",e.fetchListOptions(s)).then((e=>{n("updateList",e),n("updateQueryState"),t("unChooseHead"),t("setChecked",[])})).finally((()=>{t("toggleLoading","page")}))},fetchPageWithFilters({commit:t,getters:e,dispatch:n}){t("toggleLoading","page"),n("updateQueryState",1);const s=e.receiveEndpoint;n("fetch",e.fetchListOptions(s)).then((t=>{n("updateList",t),jfbEventBus.reactiveCounter++})).catch((t=>{t?.hasOwnProperty?.("code")&&"not_found"===t.code&&n("updateList",{list:[],total:0})})).finally((()=>{t("toggleLoading","page")}))},updateList({commit:t,getters:e},n){var s;t("setList",n.list),e.queryState&&t("setTotal",null!==(s=n?.total)&&void 0!==s?s:e.queryState.total),n.list.length>e.getLimit&&t("setLimit",n.list.length),t("setOffset",0)},fetch:(t,e)=>new Promise(((t,n)=>{We(e).then(t).catch((t=>{jfbEventBus.$CXNotice.add({message:t.message,type:"error",duration:4e3}),n(t)})).finally(n)})),apiFetch:({getters:t,dispatch:e})=>(e("beforeRunFetch"),We((t=>{const{action:e,payload:n}=t.currentProcess,[s]=n;let i=t.getAction(e);var o,l,r;return i||(l=null!==(o=n[3])&&void 0!==o?o:{},r=e,i=l.actions.value.find((t=>r===t.value))),{...t.fetchListOptions(i?.endpoint),...t.apiOptions,data:{checked:s,...t.apiData}}})(t))),maybeFetchFilters(t,e){const{commit:n,getters:s,rootGetters:i}=t;s.hasFilters||i.isDoing||(n("toggleDoingAction",null,{root:!0}),We(e).then((t=>{n("setFilters",t.filters),jfbEventBus.reactiveCounter++})).finally((()=>{n("toggleDoingAction",null,{root:!0})})))},activeAll({commit:t,getters:e}){t("setChecked",e.list.map((t=>t?.choose?.value)))},clearFiltersWithFetch({commit:t,dispatch:e},n){t("clearSelectedFilters",n),e("fetchPageWithFilters")}},Qe={currentAction:"",actionsList:[],actionsPromises:{},beforeActions:{},currentProcess:{}},{__:Xe}=wp.i18n,Ke={getAction:t=>e=>t.actionsList.find((t=>e===t.value)),actionsList:t=>t.actionsList,currentAction:t=>t.currentAction,getActionPromise:t=>{var e;const{action:n,payload:s=[]}=t.currentProcess;if("function"!=typeof t.actionsPromises[n])throw new Error(Xe("Please choose your action","jet-form-builder"));const i=null!==(e=t.actionsPromises[n])&&void 0!==e&&e;return()=>new Promise(((t,e)=>i(t,e,...s)))},processContext:t=>t.currentProcess.context,currentProcess:t=>t.currentProcess},Ye={...Ke,getCurrentAction:t=>Ke.getAction(t)(t.currentAction)},tn={setCurrentAction(t,e){t.currentAction=e},setActionsList(t,e){t.actionsList=JSON.parse(JSON.stringify(e||[]))},setActionPromises(t,{action:e,promise:n}){t.actionsPromises={...t.actionsPromises,[e]:n}},setBeforeAction(t,{action:e,callback:n}){t.beforeActions={...t.beforeActions,[e]:n}},setProcess(t,e){t.currentProcess=e},clearProcess(t){t.currentProcess={}}},en={beforeRunFetch({getters:t,rootGetters:e}){if(u.CHOOSE_ACTION!==t.processContext)return;const n=e["messages/label"];if(!t.getChecked.length)throw new Error(n("empty_checked"));if(!t.getCurrentAction?.endpoint)throw new Error(n("empty_action"))},runRowAction({commit:t,getters:e}){t("toggleDoingAction",null,{root:!0}),t("toggleLoading","page");const n=()=>{t("toggleLoading","page"),t("toggleDoingAction",null,{root:!0})};try{e.getActionPromise().finally(n)}catch(t){n()}},beforeRowAction({state:t}){var e;const{action:n,payload:s=[]}=t.currentProcess;if("function"==typeof t.beforeActions[n])throw(null!==(e=t.beforeActions[n])&&void 0!==e&&e)(...s),new Error}},nn={state:()=>({...Qe}),getters:Ye,mutations:tn,actions:en},sn={renderType:""},on={setRenderType(t,e){t.renderType=e}},{__:ln}=wp.i18n,rn={singleEndpoint:{}},an={hasSingleEndpoint:t=>0t.singleEndpoint,getSingleHref:t=>{var e;return null!==(e=t.singleEndpoint?.href)&&void 0!==e?e:"#"},getSingleType:t=>{var e;return null!==(e=t.singleEndpoint?.type)&&void 0!==e?e:"external"},getSingleTitle:t=>{var e;return null!==(e=t.singleEndpoint.title)&&void 0!==e?e:ln("View","jet-form-builder")}},cn={setSingleEndpoint(t,e){t.singleEndpoint=e}},{__:un}=wp.i18n,dn={message:""},pn={setEmptyMessage(t,e){t.message=e||un("No items found","jet-form-builder")}},mn={state:()=>({...sn,...rn,...dn}),getters:{isTable:t=>"table"===t.renderType,isList:t=>"list"===t.renderType,isUnknownType:t=>!["table","list"].includes(t.renderType),...an,emptyMessage:t=>t.message},mutations:{...on,...cn,...pn},actions:{}},fn={namespaced:!0,state:()=>({options:{}}),getters:{all:t=>t.options,footerHeading:t=>{var e;return null===(e=t.options?.footer_heading)||void 0===e||e},isShowOverflow:t=>{var e;return null!==(e=t.options?.show_overflow)&&void 0!==e&&e},showOverflowControl:t=>{var e;return null!==(e=t.options.show_overflow_control)&&void 0!==e&&e}},mutations:{insert(t,e){t.options=e},toggleShowOverflow(t){t.options.show_overflow=!t.options.show_overflow}}},gn={namespaced:!0,modules:{view:{actions:qe,modules:{action:nn,chooseColumn:Ze,loading:Fe,query:He,table:ze,tableOptions:mn,options:fn}}}},hn={state:()=>({editedList:{},isEnableEdit:!1,isEditableTable:!1,hasChanges:!1}),getters:{isEnableEdit:t=>t.isEnableEdit,isEditableTable:t=>t.isEditableTable,hasChanges:t=>t.hasChanges,editedList:t=>t.editedList},mutations:{toggleEditTable(t,e){t.isEnableEdit=null!=e?e:!t.isEnableEdit},setEditableTable(t,e){t.isEditableTable=!!e},revertChanges(t){t.editedList={},t.hasChanges=!1}}},bn=(t,e,n)=>{const s=gt(n),{base:i}=t;if(!s)throw new Error("Empty primary column");return i.editedList[s]=i.editedList[s]||{},[i.editedList[s][e]||{},s]},vn={editedColumn:t=>(e,n)=>{const s=gt(n),{base:i}=t;if(!s||!i.editedList[s]||!i.editedList[s][e])throw new Error("Column is not edited");return i.editedList[s][e]},editedColumnProp:t=>(e,n,s)=>{var i;const o=null!==(i=vn.editedColumn(t)(e,n)[s])&&void 0!==i&&i;if(!1===o)throw new Error("Prop is not defined");return o}},_n={modules:{base:hn},getters:{...vn,editedCellValue:t=>(e,n)=>{try{return vn.editedColumnProp(t)(e,n,"value")}catch(t){var s;return null!==(s=n[e]?.value)&&void 0!==s?s:"NULL"}},editedListValues:t=>{const e={},{base:n}=t;for(const[t,s]of Object.entries(n.editedList)){const n={};for(const[t,{value:e}]of Object.entries(s))n[t]=e;e[t]=n}return e}},mutations:{updateEditableCell(t,{column:e,props:n,record:s}){let i,o;const{base:l}=t;try{[o,i]=bn(t,e,s)}catch(t){return}l.editedList[i]={...l.editedList[i],[e]:{...o,...n}},l.hasChanges=!0},revertChangesColumn(t,{column:e,record:n}){let s;const{base:i}=t;try{[,s]=bn(t,e,n)}catch(t){return}Vue.delete(i.editedList[s],e),Object.keys(i.editedList[s]).length||(Vue.delete(i.editedList,s),Object.keys(i.editedList).length||(i.hasChanges=!1))}}},Cn={editedColumn:t=>e=>{const{base:n}=t;if(!n.editedList[e])throw new Error("Column is not edited");return n.editedList[e]},editedColumnProp:t=>(e,n)=>{var s;const i=null!==(s=Cn.editedColumn(t)(e)[n])&&void 0!==s&&s;if(!1===i)throw new Error("Prop is not defined");return i}},yn={revertChangesColumn(t,{column:e}){const{base:n}=t;Vue.delete(n.editedList,e),Object.keys(n.editedList).length||(n.hasChanges=!1)}},xn={modules:{base:hn},getters:{...Cn,editedCellValue:t=>(e,n)=>{try{return Cn.editedColumnProp(t)(e,"value")}catch(t){return null!=n?n:"NULL"}},editedListValues:t=>{const e={},{base:n}=t;for(const[t,{value:s}]of Object.entries(n.editedList))e[t]=s;return e}},mutations:{...yn,updateEditableCell(t,{column:e,initial:n,props:s}){const{base:i}=t;if(n===s.value)return void yn.revertChangesColumn(t,{column:e});const o=i.editedList[e]||{};i.editedList[e]={...o,...s},i.hasChanges=!0}}},wn=(t,e)=>{const n=t.actions.findIndex((t=>e===t.slug));if(-1===n)throw new Error("Undefined "+e);return n},Sn=(t,{slug:e,force:n}={})=>{var s;e=null!=e?e:t.current,t.disabled={...t.disabled,[e]:null!=n?n:!(null!==(s=t.disabled[e])&&void 0!==s&&s)}},jn=t=>{try{const e=wn(t,t.current);return t.actions[e]}catch(t){return{}}},{apiFetch:En}=wp,kn={namespaced:!0,state:()=>({actions:[],current:"",loading:{},disabled:{}}),getters:{actions:t=>t.actions,isLoading:t=>e=>{var n;return null!==(n=t.loading[e])&&void 0!==n&&n},isDisabled:t=>e=>{var n;return null!==(n=t.disabled[e])&&void 0!==n&&n},current:jn,label:t=>{const e=jn(t);return t=>e?.messages?e.messages[t]:"null"},byEvent:t=>e=>t.actions.filter((t=>t.subscriptions.includes(e)))},mutations:{replaceCurrent(t,e){try{const n=wn(t,t.current);t.actions[n]={...e}}catch(t){}},setActions(t,e){t.actions=e,e.forEach((e=>{e?.button?.disabled&&(t.disabled[e.slug]=!0)}))},setCurrentAction(t,e){t.current=e},toggleDisabled:Sn,toggleLoading:(t,{slug:e,force:n}={})=>{var s;e=null!=e?e:t.current,t.loading={...t.loading,[e]:null!=n?n:!(null!==(s=t.loading[e])&&void 0!==s&&s)}},disabledAll(t){t.actions.forEach((({slug:e})=>{Sn(t,{slug:e,force:!0})}))}},actions:{defaultDelete({getters:t,commit:e}){e("toggleLoading"),e("toggleDoingAction",null,{root:!0}),En(t.current.endpoint).then((n=>{jfbEventBus.$CXNotice.add({message:n.message,type:"success",duration:4e3}),e("toggleDisabled"),document.location.href=t.current.payload.redirect})).catch((t=>{jfbEventBus.$CXNotice.add({message:t.message,type:"error",duration:4e3})})).finally((()=>{e("toggleLoading"),e("toggleDoingAction",null,{root:!0})}))}}},Pn=()=>window.JetFBPageConfig;function Ln(t){return"scope-"+function(t){return"string"==typeof t?t:t?.slug||"default"}(t)}function An(t,e){const{render_type:n}=e,s=(t={})=>({...gn,modules:{...gn.modules,...t}});"table"===n?t.registerModule(Ln(e),s({edit:_n})):t.registerModule(Ln(e),s({edit:xn,actions:kn}))}function Bn(t){const e=Ln(t);return t=>`${e}/${t}`}function Fn(t,e){const{list:n=[],columns:s={},total:i=0,receive_url:o={},actions:l,render_type:r="",empty_message:a="",is_editable_table:c=!1,is_editable_table_control:u=!1,stable_limit:d=null,...p}=e,m=Bn(e);t.commit(m("setEmptyMessage"),a),t.commit(m("setRenderType"),r),t.commit(m("setActionsList"),l),t.commit(m("setColumns"),s),t.commit(m("setList"),n),t.commit(m("setTotal"),i),t.commit(m("setReceiveEndpoint"),o),t.commit(m("setLimit"),null!=d?d:n?.length),t.commit(m("toggleEditTable"),c),t.commit(m("setEditableTable"),u),t.commit(m("options/insert"),p),t.dispatch(m("setQueriedPage"),1),t.subscribe((e=>{if("setFilter"===e.type.split("/").at(-1)){if(!e?.payload?.props?.hasOwnProperty?.("selected"))return;t.dispatch(m("fetchPageWithFilters"))}}))}function Tn(t="default"){return e=>{An(e,t)}}const Mn=function(t=!1){return e=>{t||(t=Pn()),Fn(e,t)}},Vn={namespaced:!0,state:()=>({messages:{}}),getters:{label:t=>e=>{var n;return null!==(n=t.messages[e])&&void 0!==n?n:""}},mutations:{insert(t,e){t.messages=JSON.parse(JSON.stringify(e))}}};function On(t){t.registerModule("messages",Vn);const{messages:e}=Pn();t.commit("messages/insert",e)}const $n=window.wp.i18n,Dn=window.wp.apiFetch;var In=n.n(Dn);const Nn=[{value:"id",label:(0,$n.__)("ID (primary)","jet-form-builder")},{value:"amount_value",label:(0,$n.__)("Amount Value","jet-form-builder")},{value:"amount_code",label:(0,$n.__)("Amount Code","jet-form-builder")},{value:"gateway_id",label:(0,$n.__)("Gateway Slug","jet-form-builder")},{value:"scenario",label:(0,$n.__)("Scenario","jet-form-builder")},{value:"type",label:(0,$n.__)("Type","jet-form-builder")},{value:"status",label:(0,$n.__)("Status","jet-form-builder")},{value:"transaction_id",label:(0,$n.__)("Transaction ID","jet-form-builder")},{value:"form_id",label:(0,$n.__)("Form ID","jet-form-builder")},{value:"user_id",label:(0,$n.__)("User ID","jet-form-builder")},{value:"record_id",label:(0,$n.__)("Record ID","jet-form-builder")},{value:"created_at",label:(0,$n.__)("Created","jet-form-builder")},{value:"updated_at",label:(0,$n.__)("Updated","jet-form-builder")}],Hn=[{value:"payer_id",label:(0,$n.__)("Payer ID","jet-form-builder")},{value:"first_name",label:(0,$n.__)("First Name","jet-form-builder")},{value:"last_name",label:(0,$n.__)("Last Name","jet-form-builder")},{value:"email",label:(0,$n.__)("Email","jet-form-builder")}],Jn=[{value:"full_name",label:(0,$n.__)("Full Name","jet-form-builder")},{value:"address_line_1",label:(0,$n.__)("Address Line 1","jet-form-builder")},{value:"address_line_2",label:(0,$n.__)("Address Line 2","jet-form-builder")},{value:"admin_area_1",label:(0,$n.__)("Admin Area 1","jet-form-builder")},{value:"admin_area_2",label:(0,$n.__)("Admin Area 2","jet-form-builder")},{value:"postal_code",label:(0,$n.__)("Postal Code","jet-form-builder")},{value:"country_code",label:(0,$n.__)("Country Code","jet-form-builder")}],{counter_endpoint:Gn}=window.JetFBPageConfig,{addQueryArgs:zn}=JetFBActions,Un={status:t=>t.status,statusesList:t=>t.statusesList,columns:t=>t.columns,selectedColumns:t=>t.selectedColumns,columnsValues:t=>Un.columns(t).map((({value:t})=>t)),payerColumns:t=>t.payerColumns,selectedPayerColumns:t=>t.selectedPayerColumns,payerColumnsValues:t=>Un.payerColumns(t).map((({value:t})=>t)),shippingColumns:t=>t.shippingColumns,selectedShippingColumns:t=>t.selectedShippingColumns,shippingColumnsValues:t=>Un.shippingColumns(t).map((({value:t})=>t)),isLoading:t=>e=>{var n;return e?null!==(n=t.loading?.[e])&&void 0!==n&&n:Object.values(t.loading).some(Boolean)},count:t=>t.count,filtersObj:t=>({status:t.status})},Rn={namespaced:!0,state:()=>({status:"",columns:Nn,selectedColumns:Nn.map((({value:t})=>t)),payerColumns:Hn,selectedPayerColumns:Hn.map((({value:t})=>t)),shippingColumns:Jn,selectedShippingColumns:Jn.map((({value:t})=>t)),count:0,loading:{}}),mutations:{setStatus(t,e){t.status=e},setColumns(t,e){t.selectedColumns=e},setPayerColumns(t,e){t.selectedPayerColumns=e},setShippingColumns(t,e){t.selectedShippingColumns=e},setCount(t,e){t.count=e},toggleLoading(t,e){var n;t.loading={...t.loading,[e]:!(null!==(n=t.loading?.[e])&&void 0!==n&&n)}}},getters:Un,actions:{handleFilters({commit:t,state:e,rootGetters:n}){const s=(0,n["scope-default/getFilter"])("status");s.selected!==e.status&&t("setStatus",s.selected)},selectAllColumns({commit:t,getters:e}){t("setColumns",e.columnsValues)},clearAllColumns({commit:t}){t("setColumns",[])},selectAllPayerColumns({commit:t,getters:e}){t("setPayerColumns",e.payerColumnsValues)},clearAllPayerColumns({commit:t}){t("setPayerColumns",[])},selectAllShippingColumns({commit:t,getters:e}){t("setShippingColumns",e.shippingColumnsValues)},clearAllShippingColumns({commit:t}){t("setShippingColumns",[])},async resolveCount({commit:t,dispatch:e}){let n;t("toggleLoading","count");try{n=await e("fetchPaymentsCount")}finally{t("toggleLoading","count")}t("setCount",n.total)},fetchPaymentsCount({getters:t}){const e=zn({filters:t.filtersObj},Gn.url);return In()({...Gn,url:e})}}},Zn=Rn,Wn={PaymentsComponent:ke,options:{store:{...Le,plugins:[Tn(),Mn(),On,function(t){t.registerModule("exportPayments",Zn),t.subscribe((e=>{const n=e.type.split("/");switch(n.at(-1)){case"setFilter":case"clearSelectedFilters":return void t.dispatch("exportPayments/handleFilters")}"exportPayments"===n[0]&&"setStatus"===n.at(-1)&&t.dispatch("exportPayments/resolveCount").then((()=>{}))}))}]}}};var qn=function(){var t=this,e=t.$createElement;return(t._self._c||e)("DetailsTable",{attrs:{columns:t.columnsFromStore,source:t.currentFromStore}})};qn._withStripped=!0;const{DetailsTable:Qn}=JetFBComponents,Xn=y({name:"DetailsTableWithStore",props:{columns:{type:String,default:"columns"},current:{type:String,default:"currentPopupData"}},components:{DetailsTable:Qn},computed:{columnsFromStore(){return this.$store.state[this.columns]},currentFromStore(){return this.$store.state[this.current]}}},qn,[],!1,null,null,null).exports;var Kn=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("cx-vui-button",{attrs:{"button-style":"link-error",size:"mini",disabled:!t.hasSelectedFilters},on:{click:function(e){return t.dispatch("clearFiltersWithFetch")}},scopedSlots:t._u([{key:"label",fn:function(){return[n("span",{staticClass:"dashicons dashicons-no-alt"}),t._v("\n\t\t\t"+t._s(t.label)+"\n\t\t")]},proxy:!0}])})};Kn._withStripped=!0;const{__:Yn}=wp.i18n,{mapState:ts,mapGetters:es,mapMutations:ns,mapActions:ss}=Vuex,is=y({name:"ClearFiltersButton",props:{label:{type:String,default:Yn("Clear filters","jet-form-builder")}},mixins:[d],computed:{hasSelectedFilters(){return this.getter("hasSelectedFilters")}}},Kn,[],!1,null,null,null).exports;function os(t,e){switch(e.render_type){case"table":Fn(t,e);break;case"list":!function(t,e){const{list:n={},columns:s={},render_type:i="",single_endpoint:o={},receive_url:l={},is_editable_table:r=!1,is_editable_table_control:a=!1,box_actions:c=[],...u}=e,d=Bn(e);t.commit(d("setColumns"),s),t.commit(d("setList"),n),t.commit(d("setReceiveEndpoint"),l),t.commit(d("setRenderType"),i),t.commit(d("setSingleEndpoint"),o),t.commit(d("toggleEditTable"),r),t.commit(d("setEditableTable"),a),t.commit(d("actions/setActions"),c),t.commit(d("options/insert"),u)}(t,e)}}const{LocalStorage:ls}=JetFBActions,rs=ls.storage("notices"),as={insertNotices(t,e){t.notices=e.filter((t=>!rs.getItem(t.id)))},clearNoticeById(t,e){const n=t.notices.findIndex((t=>e===t.id));if(-1===n)return;const s=t.notices[n];Vue.delete(t.notices,n);const{is_hide_after_close:i}=s.options;if(!i)return;const o=rs.getItem(s.id,{});rs.setItem(s.id,{...o,closed:!0})}},cs={state:()=>({notices:[]}),getters:{getNotices:t=>t.notices,getNotice:t=>e=>t.notices.find((t=>e===t.id))||{}},mutations:as};var us=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"postbox",attrs:{id:t.slug}},[n("div",{staticClass:"postbox-header"},[n("h2",{staticClass:"ui-sortable-handle"},[t._v(t._s(t.title))]),t._v(" "),t.$slots["header-actions"]?n("div",{staticClass:"handle-actions"},[t._t("header-actions")],2):n("div",{staticClass:"handle-actions"},[n("UndoChangesTable",{attrs:{scope:t.slug}}),t._v(" "),n("EditTableSwitcher",{attrs:{scope:t.slug}}),t._v(" "),n("ShowOverflowTable",{attrs:{scope:t.slug}}),t._v(" "),n("RedirectToSingle",{attrs:{scope:t.slug}})],1)]),t._v(" "),n("div",{staticClass:"postbox-inner submitbox"},[t._t("default"),t._v(" "),t.$slots.actions?n("div",{staticClass:"major-publishing-actions"},[t._t("actions"),t._v(" "),n("div",{staticClass:"clear"})],2):n("PrimaryActions",{attrs:{scope:t.slug}})],2)])};us._withStripped=!0;var ds=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isEditableTable?n("cx-vui-switcher",{staticClass:"jfb-cx-vui-component",attrs:{label:t.__("Edit table","jet-form-builder"),value:t.isEnableEdit},on:{input:t.toggleEditTable}}):t._e()};ds._withStripped=!0;const{i18n:ps}=JetFBMixins,ms={name:"EditTableSwitcher",mixins:[d,ps],computed:{isEnableEdit(){return this.getter("isEnableEdit")},isEditableTable(){return this.getter("isEditableTable")}},methods:{toggleEditTable(){this.commit("toggleEditTable")}}};n(4744);const fs=y(ms,ds,[],!1,null,null,null).exports;var gs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isEditableTable?n("cx-vui-button",{attrs:{disabled:!t.hasChanges,"button-style":"link-accent",size:"mini"},on:{click:function(e){t.hasChanges=!0}},scopedSlots:t._u([{key:"label",fn:function(){return[n("span",{staticClass:"dashicons dashicons-undo"}),t._v("\n\t\t"+t._s(t.__("Undo","jet-form-builder"))+"\n\t")]},proxy:!0}],null,!1,1196425)}):t._e()};gs._withStripped=!0;const{i18n:hs}=JetFBMixins,bs=y({name:"UndoChangesTable",mixins:[d,hs],computed:{hasChanges:{get(){return this.getter("hasChanges")},set(t){this.commit("revertChanges")}},isEditableTable(){return this.getter("isEditableTable")}}},gs,[],!1,null,null,null).exports;var vs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.showOverflowControl?n("cx-vui-switcher",{staticClass:"jfb-cx-vui-component",attrs:{label:t.__("Show overflow","jet-form-builder")},model:{value:t.showOverflow,callback:function(e){t.showOverflow=e},expression:"showOverflow"}}):t._e()};vs._withStripped=!0;const{i18n:_s}=JetFBMixins,Cs=y({name:"ShowOverflowTable",mixins:[d,_s],computed:{showOverflowControl(){return this.getter("options/showOverflowControl")},showOverflow:{get(){return this.getter("options/isShowOverflow")},set(){this.commit("options/toggleShowOverflow")}}}},vs,[],!1,null,null,null).exports;var ys=function(){var t,e=this,n=e.$createElement,s=e._self._c||n;return e.hasSingleEndpoint?s("a",{attrs:{href:e.getSingleHref,title:e.getSingleTitle}},[s("span",{class:(t={dashicons:!0},t["dashicons-"+e.getSingleType]=!0,t),attrs:{"aria-hidden":"true"}})]):e._e()};ys._withStripped=!0;const{i18n:xs}=JetFBMixins,ws={name:"RedirectToSingle",mixins:[d,xs],computed:{hasSingleEndpoint(){return this.getter("hasSingleEndpoint")},getSingleHref(){return this.getter("getSingleHref")},getSingleType(){return this.getter("getSingleType")},getSingleTitle(){return this.getter("getSingleTitle")}}};n(9244);const Ss=y(ws,ys,[],!1,null,"6c61ef64",null).exports;var js=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.primary.length?n("div",{staticClass:"major-publishing-actions"},[n("div",{staticClass:"jfb-primary-actions"},t._l(t.primary,(function(e){return n("ActionButton",{key:e.slug,class:["box-actions-item","action-"+e.slug],attrs:{scope:t.scope,action:e}})})),1),t._v(" "),n("div",{staticClass:"clear"})]):t._e()};js._withStripped=!0;var Es=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.action.button?n("cx-vui-button",{key:"button-action-"+t.action.slug,class:["cx-vui-button--style-"+t.action.button.type].concat(t.action.button.classes),attrs:{"button-style":t.action.button.style,size:t.action.button.size,url:t.action.button.url,"tag-name":t.action.button.url?"a":"button",disabled:t.isDisabled,loading:t.isLoading,target:"_blank"},on:{click:t.globalEmit},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.action.button.label))]},proxy:!0}],null,!1,389569784)}):t._e()};Es._withStripped=!0;const{mapState:ks,mapGetters:Ps,mapMutations:Ls,mapActions:As}=Vuex,Bs=y({name:"ActionButton",mixins:[d],props:{action:Object},computed:{...Ps(["isDoing"]),slug(){return this.action.slug},isDisabled(){return this.getter("actions/isDisabled",this.slug)||this.isGlobalDoing},isLoading(){return this.getter("actions/isLoading",this.slug)},isGlobalDoing(){return jfbEventBus.reactiveCounter,this.isDoing}},methods:{globalEmit(){this.commit("actions/setCurrentAction",this.slug),jfbEventBus.$emit(this.scope+"-"+this.slug)}}},Es,[],!1,null,"2b75aad2",null).exports,{mapState:Fs,mapGetters:Ts,mapMutations:Ms,mapActions:Vs}=Vuex,Os={name:"BoxActions",components:{ActionButton:Bs},mixins:[d],computed:{primary(){const t=this.getter("actions/actions");return t?t.filter((t=>"primary"===t.position)):[]}}},$s=Os;n(7289);const Ds=y($s,js,[],!1,null,null,null).exports,Is={name:"PostBoxSkeleton",props:{title:String,slug:String},components:{PrimaryActions:Ds,RedirectToSingle:Ss,ShowOverflowTable:Cs,UndoChangesTable:bs,EditTableSwitcher:fs},computed:{}};n(7985);const Ns=y(Is,us,[],!1,null,"5ebbe4a6",null).exports;var Hs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{attrs:{id:"poststuff"}},[n("div",{class:t.bodyClasses,attrs:{id:"post-body"}},[t.$slots.topBody?n("div",{attrs:{id:"post-body-content"}},[t._t("topBody")],2):t._e(),t._v(" "),t._l(t.containers,(function(e){var s=e.wrap_id,i=e.id,o=e.classes,l=e.boxes;return n("PostBoxContainer",{key:s,attrs:{"wrap-id":s,id:i,classes:o}},t._l(l,(function(e){var s=e.slug,i=e.title,o=e.list,l=e.render_type;return void 0===l&&(l=!1),n("PostBoxSimple",{key:s,attrs:{slug:s,title:i,list:o,"render-type":l},scopedSlots:t._u([{key:"header-actions",fn:function(){return[t._t("header-actions-"+s,null,null,{list:o})]},proxy:!0},{key:"default",fn:function(){return[t._t("body-"+s,null,null,{list:o})]},proxy:!0},{key:"before",fn:function(){return[t._t("before-"+s,null,null,{list:o})]},proxy:!0},{key:"after",fn:function(){return[t._t("after-"+s,null,null,{list:o})]},proxy:!0},t.$slots["in-header-"+s]?{key:"in-header",fn:function(){return[t._t("in-header-"+s)]},proxy:!0}:null,t.$slots["in-footer-"+s]?{key:"in-footer",fn:function(){return[t._t("in-footer-"+s)]},proxy:!0}:null],null,!0)})})),1)}))],2)])};Hs._withStripped=!0;var Js=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"postbox-container",attrs:{id:t.wrapId}},[n("div",{class:t.classes,attrs:{id:t.id}},[t._t("default")],2)])};Js._withStripped=!0;const Gs=y({name:"PostBoxContainer",props:{wrapId:String,id:String,classes:String},computed:{}},Js,[],!1,null,null,null).exports;var zs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jfb-post-box",attrs:{id:t.slug+"-wrapper"}},[t.$slots.default?n("div",{staticClass:"jfb-post-box--content"},[t._t("default")],2):n("div",{staticClass:"jfb-post-box--content"},[t._t("before"),t._v(" "),n("PostBoxSkeleton",{attrs:{title:t.title,slug:t.slug},scopedSlots:t._u([{key:"header-actions",fn:function(){return[t._t("header-actions")]},proxy:!0},{key:"default",fn:function(){return[t._t("in-header"),t._v(" "),"table"===t.renderType?n("EntriesTable",{attrs:{scope:t.slug}}):"list"===t.renderType?n("EntriesList",{attrs:{scope:t.slug}}):n("div",{attrs:{id:"misc-publishing-actions"}},t._l(t.list,(function(e,s){return n("div",{key:s,staticClass:"misc-pub-section"},[t._v("\n\t\t\t\t\t\t"+t._s(s)+": "),n("strong",[t._v(t._s(e))])])})),0),t._v(" "),t._t("in-footer")]},proxy:!0}],null,!0)}),t._v(" "),t._t("after")],2)])};zs._withStripped=!0;var Us=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("table",{staticClass:"jfb-list-table"},t._l(t.columns,(function(e,s){var i=e.label;return n("tr",{key:s,class:["jfb-list-table-row","row--"+s]},[i?n("th",{staticClass:"jfb-list-table-row--inner jfb-list-table-row--heading"},[t._v("\n\t\t\t"+t._s(i)+"\n\t\t")]):t._e(),t._v(" "),n("td",{staticClass:"jfb-list-table-row--inner jfb-list-table-row--item"},[n("EntryColumnList",{attrs:{scope:t.scope,list:t.list,column:s}})],1)])})),0)};Us._withStripped=!0;var Rs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.record.editable&&t.isEnableEdit?n("div",{staticClass:"list-table-item__cell--body-value jfb-control"},[n("keep-alive",[n(t.getComponentEditControl,{tag:"component",attrs:{options:t.record.control_options},model:{value:t.editedCellValue,callback:function(e){t.editedCellValue=e},expression:"editedCellValue"}})],1)],1):t.getItemComponentColumn?[n(t.getItemComponentColumn,{tag:"component",attrs:{value:t.value,"full-entry":t.list,scope:t.scope}})]:t.getItemComponentType?[n(t.getItemComponentType,{tag:"component",attrs:{value:t.value,"full-entry":t.list,scope:t.scope}})]:n("div",{domProps:{innerHTML:t._s(t.value)}})],2)};Rs._withStripped=!0;const Zs={name:"EntriesList",mixins:[d],components:{EntryColumnList:y({name:"EntryColumnList",props:{column:String,list:Object},mixins:[dt,d],computed:{record(){return this.list[this.column]},value(){return this.record.editable?this.editedCellValue:this.initialValue},initialValue(){var t,e;return null!==(t=null!==(e=this.record?.value)&&void 0!==e?e:this.record?.value?.value)&&void 0!==t&&t},isEnableEdit(){return jfbEventBus.reactiveCounter,this.getter("isEnableEdit")},getItemComponentColumn(){return this.getColumnComponentByPrefix(this.column,"item")},getItemComponentType(){return this.getColumnComponentByPrefix(this.getColumnType,"item")},getComponentEditControl(){return this.getColumnComponentByPrefix(this.record?.control,"control")},getColumnType(){var t;return null!==(t=this.record.type)&&void 0!==t&&t},editedCellValue:{get(){return jfbEventBus.reactiveCounter,this.getter("editedCellValue",[this.column,this.initialValue])},set(t){this.commit("updateEditableCell",{column:this.column,initial:this.initialValue,props:{value:t}}),jfbEventBus.reactiveCounter++}}},methods:{revertChangesColumn(){this.commit("revertChangesColumn",{column:this.column}),jfbEventBus.reactiveCounter++}}},Rs,[],!1,null,null,null).exports},computed:{columns(){return this.getter("columns")},list(){return this.getter("list")}},methods:{}};n(5850);const Ws=y(Zs,Us,[],!1,null,null,null).exports,qs={name:"PostBoxSimple",props:["title","slug","list","renderType"],components:{EntriesTable:At,EntriesList:Ws,PostBoxSkeleton:Ns,EditTableSwitcher:fs}};n(8848);const Qs=y(qs,zs,[],!1,null,null,null).exports,Xs={name:"PostBoxGrid",props:{containers:{type:Array,default(){var t;return null!==(t=window?.JetFBPageConfig?.containers)&&void 0!==t?t:[]}}},components:{EditTableSwitcher:fs,PostBoxContainer:Gs,PostBoxSimple:Qs},computed:{bodyClasses(){return{"metabox-holder":!0,["columns-"+this.containers?.length]:!0}}}},Ks=y(Xs,Hs,[],!1,null,null,null).exports;var Ys=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jfb-actions"},t._l(t.parsedJson,(function(e,s){return n("a",{key:s,staticClass:"jfb-dropdown-item",attrs:{href:"javascript:void(0)"},on:{click:function(e){return t.run(s)}}},[t._v("\n\t\t"+t._s(e.label)+"\n\t")])})),0)};Ys._withStripped=!0;const{ParseIncomingValueMixin:ti}=JetFBMixins;window.jfbEventBus=window.jfbEventBus||new Vue({});const ei={name:"actions--item",props:["value","full-entry","entry-id"],components:{},mixins:[ti],methods:{getPayload(t){return this.parsedJson[t]?.payload||{}},run(t){jfbEventBus.$emit(`click-${t}`,this.getPayload(t),this.fullEntry||{},this.entryId)}}};n(8241);const ni=y(ei,Ys,[],!1,null,null,null).exports;var si=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.visible?n("div",{staticClass:"jet-form-builder-page__alerts"},t._l(t.getNotices,(function(e){return n("AlertItem",{key:e.id,attrs:{id:e.id},scopedSlots:t._u([t.$slots["alert-buttons-"+e.id]?{key:"alert-buttons",fn:function(){return[t._t(["alert-buttons-"+e.id])]},proxy:!0}:null],null,!0)})})),1):t._e()};si._withStripped=!0;var ii=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.classes},[n("div",{staticClass:"alert-type-line"}),t._v(" "),n("div",{staticClass:"alert-icon",domProps:{innerHTML:t._s(t.iconHtml)}}),t._v(" "),n("div",{staticClass:"alert-content"},[t.config.title?n("div",{staticClass:"alert-title",domProps:{innerHTML:t._s(t.config.title)}}):t._e(),t._v(" "),t.config.message?n("div",{staticClass:"alert-message",domProps:{innerHTML:t._s(t.config.message)}}):t._e(),t._v(" "),t.$slots["alert-buttons"]?n("div",{staticClass:"alert-buttons"},[t._t("alert-buttons")],2):t.config.buttons?n("div",{staticClass:"alert-buttons"},t._l(t.config.buttons,(function(e,s){return n("cx-vui-button",{key:"button-alert-"+s,class:"cx-vui-button--style-"+e.type,attrs:{"button-style":e.style,size:"mini",url:e.url,"tag-name":e.rest.url?"button":"a",target:e.rest.url?"":"_blank"},on:{click:function(n){return t.emitClick(n,e)}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(e.label))]},proxy:!0}],null,!0)})})),1):t._e()]),t._v(" "),n("div",{staticClass:"alert-close",on:{click:t.closeAlert}},[n("svg",{attrs:{width:"20",height:"20",viewBox:"0 0 14 14",fill:"#dcdcdd",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M12 3.00671L8.00671 7L12 10.9933L10.9933 12L7 8.00671L3.00671 12L2 10.9933L5.99329 7L2 3.00671L3.00671 2L7 5.99329L10.9933 2L12 3.00671Z"}})])])])};ii._withStripped=!0;const{LocalStorage:oi}=JetFBActions,{mapGetters:li,mapMutations:ri}=Vuex,ai=y({name:"AlertItem",props:{id:String},created:function(){},computed:{...li(["getNotice"]),config(){return this.getNotice(this.id)},type:function(){var t;return null!==(t=this.config?.type)&&void 0!==t&&t},classes:function(){return["jet-form-builder-page__alert",`${this.type}-type`]},iconHtml:function(){let t=!1;switch(this.type){case"info":t='\n\n\n';break;case"success":t='';break;case"danger":t='';break;case"error":t=''}return this.config?.icon||t}},methods:{...ri(["clearNoticeById"]),closeAlert:function(){this.clearNoticeById(this.id)},emitClick(t,e){jfbEventBus.$emit("alert-click-"+e.slug,{self:this,target:t,button:e})}}},ii,[],!1,null,null,null).exports,{mapGetters:ci}=Vuex,ui={name:"AlertsList",components:{AlertItem:ai},computed:{...ci(["getNotices"]),visible:function(){return 0!==this.getNotices.length}}};n(8661);const di=y(ui,si,[],!1,null,null,null).exports;var pi=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.wrapperClasses},[n("div",{staticClass:"jet-form-builder-page__panel-header"},[n("div",{staticClass:"panel-header-icon"},[t._t("icon")],2),t._v(" "),n("div",{staticClass:"panel-header-content"},[n("span",{staticClass:"panel-header-desc"},[t._v(t._s(t.config.description))]),t._v(" "),n("div",{staticClass:"panel-header-title"},[t._v(t._s(t.config.title))])])]),t._v(" "),t.$slots.default?n("div",{staticClass:"jet-form-builder-page__panel-content"},[t._t("default")],2):t._e()])};pi._withStripped=!0;const mi=y({name:"DashboardPanel",props:{config:Object},computed:{wrapperClasses(){return["jet-form-builder-page__panel",this.config.slug,...this.config.classes]}}},pi,[],!1,null,null,null).exports;var fi=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.boxes.length?n("div",{staticClass:"jfb-content-sidebar"},[t._l(t.boxes,(function(e,s){return["panel"===e.type?n("DashboardPanel",{key:s,attrs:{config:e},scopedSlots:t._u([t.$slots["icon-"+e.slug]?{key:"icon",fn:function(){return[t._t("icon-"+e.slug)]},proxy:!0}:null,t.$scopedSlots["content-"+e.slug]?{key:"default",fn:function(){return[t._t("content-"+e.slug,null,null,e)]},proxy:!0}:null],null,!0)}):"banner"===e.type?n("DashboardBanner",{key:"banner-"+s,attrs:{config:e}}):t._e()]}))],2):t._e()};fi._withStripped=!0;var gi=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.wrapperClasses},[n("div",{staticClass:"banner-frame"},[n("div",{staticClass:"banner-inner"},[n("div",{staticClass:"banner-label"},[t._v(t._s(t.config.label))]),t._v(" "),n("div",{staticClass:"banner-title"},[n("span",[t._v(t._s(t.config.title))])]),t._v(" "),n("div",{staticClass:"banner-content"},[t._v(t._s(t.config.content))]),t._v(" "),t.hasButtons?n("div",{staticClass:"banner-buttons"},t._l(t.config.buttons,(function(e,s){return n("cx-vui-button",{key:"button-banner-"+s,class:"cx-vui-button--style-"+e.type,attrs:{"button-style":e.style,size:"mini",url:e.url,"tag-name":"a",target:"_blank"},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(e.label))]},proxy:!0}],null,!0)})})),1):t._e()])])])};gi._withStripped=!0;const hi=y({name:"DashboardBanner",props:{config:Object},computed:{wrapperClasses(){return["jet-form-builder-page__banner",this.config.slug,...this.config.classes]},hasButtons(){return 0!==this.config?.buttons?.length}}},gi,[],!1,null,null,null).exports;n(5201);const{i18n:bi,GetIncoming:vi}=JetFBMixins,_i={name:"SideBarBoxes",components:{DashboardPanel:mi,DashboardBanner:hi},mixins:[bi,vi],data:()=>({boxes:[]}),created(){this.boxes=this.getIncoming("boxes")}};n(7823);const Ci=y(_i,fi,[],!1,null,null,null).exports,yi={namespaced:!0,state:()=>({edited:{}}),mutations:{collectScope(t,{rootGetters:e,scope:n}){n.includes("scope-")&&(e[`${n}/hasChanges`]?t.edited[n]=e[`${n}/editedListValues`]:Vue.delete(t.edited,n))}},getters:{all:t=>t.edited},actions:{collect({rootState:t,rootGetters:e,commit:n}){for(const s in t)n("collectScope",{rootGetters:e,scope:s})}}};Vue.use(Vuex),window.JetFBComponents={...window.JetFBComponents,EntriesTable:At,PaymentsPage:Wn,DetailsTableWithStore:Xn,TablePagination:$,ChooseAction:x,ClearFiltersButton:is,PostBoxSkeleton:Ns,PostBoxGrid:Ks,PostBoxContainer:Gs,PostBoxSimple:Qs,EntriesList:Ws,ChooseColumn:t,ActionsColumn:l,LinkTypeColumn:e,EditTableSwitcher:fs,AlertsList:di,DashboardPanel:mi,SideBarBoxes:Ci,FormBuilderPage:Jt,ActionsWithFilters:A},window.JetFBMixins={...window.JetFBMixins,FilterMixin:zt,GetColumnComponent:dt,ScopeStoreMixin:d},window.JetFBStore={BaseStore:Le,TableSeedPlugin:Mn,TableModulePlugin:Tn,SingleMetaBoxesPlugin:function(t){const e=[];for(const t of Pn().containers)e.push(...t.boxes.filter((t=>["table","list"].includes(t.render_type))));for(const n of e)An(t,n),os(t,n)},NoticesPlugin:function(t){t.registerModule("notices",cs);const{notices:e}=Pn();t.commit("insertNotices",e)},PageActionsPlugin:function(t){const{actions:e=[]}=Pn();t.registerModule("actions",kn),t.commit("actions/setActions",[...e])},MessagesPlugin:On,OnUpdateEditableCellPlugin:function(t){const e=(e,n)=>{for(const s in e){const e=t.getters[`${s}/actions/byEvent`];if("function"!=typeof e)continue;const i=e("update");for(const e of i)t.commit(`${s}/actions/toggleDisabled`,{slug:e.slug,force:n})}};t.subscribe(((n,s)=>{n.type.split("/").includes("updateEditableCell")&&((e=>{for(const n in e)if(t.getters[`${n}/hasChanges`])return!0;return!1})(s)?e(s,!1):e(s,!0))}))},EditCollectorPlugin:function(t){t.registerModule("editCollector",yi),t.subscribe((e=>{e.type.split("/").includes("updateEditableCell")&&t.dispatch("editCollector/collect")}))}},window.JetFBConst=u})()})(); \ No newline at end of file diff --git a/assets/build/editor/form.builder.asset.php b/assets/build/editor/form.builder.asset.php index 569e43d0f..2f03c8f9f 100644 --- a/assets/build/editor/form.builder.asset.php +++ b/assets/build/editor/form.builder.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-data', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins'), 'version' => 'f88c58075d1ea734c3c8'); + array('react', 'wp-components', 'wp-data', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins'), 'version' => '70b59effaf47afad2f87'); diff --git a/assets/build/editor/form.builder.js b/assets/build/editor/form.builder.js index b88726800..9215a6939 100644 --- a/assets/build/editor/form.builder.js +++ b/assets/build/editor/form.builder.js @@ -1 +1 @@ -(()=>{var e={5207(e,C,t){"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".s1ip8zmx.buddypress-active>div{height:auto;}\n",""]);const i=a},8525(e,C,t){"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".mqz01w{gap:1em;}\n.mqjtk22{background-color:#ffffff;}\n",""]);const i=a},5545(e,C,t){"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".f13zt8l2{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;gap:12px;}.f13zt8l2 .sortable-chosen{box-shadow:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)) 0 1px 4px;}\n.am4szan{border:1px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));margin-bottom:1px;}.am4szan .components-panel__body-title{background-color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));}.am4szan .components-panel__body-title .components-button{color:var(--wp-components-color-accent-inverted, #fff);}.am4szan.is-opened{background-color:rgba(var(--wp-admin-theme-color--rgb), .07);}.am4szan.is-opened .components-panel__body-title{background-color:transparent;}.am4szan.is-opened .components-panel__body-title .components-button{color:#1e1e1e;}.am4szan .components-panel__body-title:hover{background-color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));opacity:0.7;}.am4szan .components-panel__body-title:hover .components-button{color:var(--wp-components-color-accent-inverted, #fff);}\n.s8wdwdc.buddypress-active{height:auto;}\n",""]);const i=a},935(e){"use strict";e.exports=function(e){var C=[];return C.toString=function(){return this.map(function(C){var t="",l=void 0!==C[5];return C[4]&&(t+="@supports (".concat(C[4],") {")),C[2]&&(t+="@media ".concat(C[2]," {")),l&&(t+="@layer".concat(C[5].length>0?" ".concat(C[5]):""," {")),t+=e(C),l&&(t+="}"),C[2]&&(t+="}"),C[4]&&(t+="}"),t}).join("")},C.i=function(e,t,l,r,n){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(l)for(var i=0;i0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=n),t&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=t):c[2]=t),r&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=r):c[4]="".concat(r)),C.push(c))}},C}},6758(e){"use strict";e.exports=function(e){return e[1]}},6987(e,C,t){var l=t(5207);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("6979fc60",l,!1,{})},2065(e,C,t){var l=t(8525);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("cbeea060",l,!1,{})},1669(e,C,t){var l=t(5545);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("2bfdb416",l,!1,{})},611(e,C,t){"use strict";function l(e,C){for(var t=[],l={},r=0;rp});var r="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!r)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var n={},a=r&&(document.head||document.getElementsByTagName("head")[0]),i=null,o=0,s=!1,c=function(){},d=null,m="data-vue-ssr-id",u="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function p(e,C,t,r){s=t,d=r||{};var a=l(e,C);return f(a),function(C){for(var t=[],r=0;rt.parts.length&&(l.parts.length=t.parts.length)}else{var a=[];for(r=0;r{var C=e&&e.__esModule?()=>e.default:()=>e;return t.d(C,{a:C}),C},t.d=(e,C)=>{for(var l in C)t.o(C,l)&&!t.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:C[l]})},t.o=(e,C)=>Object.prototype.hasOwnProperty.call(e,C),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e={};t.r(e),t.d(e,{metadata:()=>YC,name:()=>et,settings:()=>tt});var C={};t.r(C),t.d(C,{metadata:()=>fl,name:()=>El,settings:()=>vl});var l={};t.r(l),t.d(l,{metadata:()=>er,name:()=>lr,settings:()=>nr});var r={};t.r(r),t.d(r,{metadata:()=>jr,name:()=>Br,settings:()=>Pr});var n={};t.r(n),t.d(n,{metadata:()=>Kr,name:()=>Xr,settings:()=>en});var a={};t.r(a),t.d(a,{metadata:()=>an,name:()=>cn,settings:()=>mn});var i={};t.r(i),t.d(i,{metadata:()=>bn,name:()=>gn,settings:()=>yn});var o={};t.r(o),t.d(o,{metadata:()=>la,name:()=>ma,settings:()=>pa});var s={};t.r(s),t.d(s,{metadata:()=>qa,name:()=>Ua,settings:()=>Wa});var c={};t.r(c),t.d(c,{metadata:()=>bi,name:()=>gi,settings:()=>yi});var d={};t.r(d),t.d(d,{metadata:()=>Wi,name:()=>Yi,settings:()=>Qi});var m={};t.r(m),t.d(m,{metadata:()=>uo,name:()=>Ro,settings:()=>Do});var u={};t.r(u),t.d(u,{metadata:()=>fs,name:()=>hs,settings:()=>Ms});var p={};t.r(p),t.d(p,{metadata:()=>zs,name:()=>Ws,settings:()=>$s});var f={};t.r(f),t.d(f,{metadata:()=>sc,name:()=>mc,settings:()=>pc});var V={};t.r(V),t.d(V,{metadata:()=>yc,name:()=>wc,settings:()=>_c});var H={};t.r(H),t.d(H,{metadata:()=>Sc,name:()=>Nc,settings:()=>Oc});const h=window.React,b=window.wp.data,M=window.wp.i18n,L=window.wp.components,g=window.jfb.components,Z=window.jfb.actions,y=window.wp.element,E=(0,y.forwardRef)(function({icon:e,size:C=24,...t},l){return(0,y.cloneElement)(e,{width:C,height:C,...t,ref:l})});function w(e){var C=Object.create(null);return function(t){return void 0===C[t]&&(C[t]=e(t)),C[t]}}var v=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_=w(function(e){return v.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),k=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),C={},t=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,t]=e.split("_");C[t]=e}else t.push(e)})});const l=[];for(const e in C)Object.prototype.hasOwnProperty.call(C,e)&&l.push(C[e]);return l.push(...t),l.join(" ")},j=(e,C)=>{const t={};return Object.keys(e).filter((e=>C=>-1===e.indexOf(C))(C)).forEach(C=>{t[C]=e[C]}),t},x=(e,C)=>{},F=function(e){let C="";return t=>{const l=(l,r)=>{const{as:n=e,class:a=C}=l;var i;const o=function(e,C){const t=j(C,["as","class"]);if(!e){const e="function"==typeof _?{default:_}:_;Object.keys(t).forEach(C=>{e.default(C)||delete t[C]})}return t}(void 0===t.propsAsIs?!("string"==typeof n&&-1===n.indexOf("-")&&(i=n[0],i.toUpperCase()!==i)):t.propsAsIs,l);o.ref=r,o.className=t.atomic?k(t.class,o.className||a):k(o.className||a,t.class);const{vars:s}=t;if(s){const e={};for(const C in s){const r=s[C],n=r[0],a=r[1]||"",i="function"==typeof n?n(l):n;x(0,t.name),e[`--${C}`]=`${i}${a}`}const C=o.style||{},r=Object.keys(C);r.length>0&&r.forEach(t=>{e[t]=C[t]}),o.style=e}return e.__wyw_meta&&e!==n?(o.as=n,(0,h.createElement)(e,o)):(0,h.createElement)(n,o)},r=h.forwardRef?(0,h.forwardRef)(l):e=>{const C=j(e,["innerRef"]);return l(C,e.innerRef)};return r.displayName=t.name,r.__wyw_meta={className:t.class||C,extends:e},r}};const B=".components-modal__frame",{ActionModal:A,ActionModalHeaderSlotFill:P,ActionModalFooterSlotFill:S,ActionModalBackButton:N,ActionModalCloseButton:I}=JetFBComponents,{useCurrentAction:T,useActionCallback:O,useUpdateCurrentAction:J,useUpdateCurrentActionMeta:R}=JetFBHooks,q=F("div")({name:"ModalHeading",class:"mqz01w",propsAsIs:!1}),D=F("div")({name:"ModalHeader",class:"mqjtk22",propsAsIs:!1}),z=function(){var e;(0,y.useEffect)(()=>{const e=e=>{(e=>{const C=e.metaKey&&!e.ctrlKey,t=e.ctrlKey&&!e.metaKey;return(C||t)&&"z"===e.key.toLowerCase()&&!e.altKey})(e)&&(e=>{const C=e.composedPath?.();return C?.length?C.some(e=>e instanceof Element&&e.matches?.(B)):e.target?.closest?.(B)})(e)&&e.stopPropagation()};return window.addEventListener("keydown",e,!0),()=>{window.removeEventListener("keydown",e,!0)}},[]);const C=O(),t=R(),{setTypeSettings:l,clearCurrent:r}=J(),{currentAction:n,currentSettings:a}=T(),{editMeta:i}=(0,b.useDispatch)("jet-forms/actions"),{isSettingsModal:o,actionType:s,isShowErrorNotice:c}=(0,b.useSelect)(e=>({isSettingsModal:e("jet-forms/actions").isSettingsModal(),actionType:e("jet-forms/actions").getAction(n.type),isShowErrorNotice:e("jet-forms/actions").getErrorVisibility()}),[n.type]),d=(0,Z.useActionErrors)(o?n:{});if(!o)return null;const m=function(e={},C=""){const t=e?.editor_name;return"string"==typeof t&&t.trim()?t.trim():C}(n,null!==(e=s?.label)&&void 0!==e?e:""),u=Boolean(d.length)&&c;return(0,h.createElement)(A,{size:"large",__experimentalHideHeader:!0,onRequestClose:r,onCancelClick:r,onUpdateClick:()=>{t(n),r()}},(0,h.createElement)(D,{className:"components-modal__header"},(0,h.createElement)(q,{className:"components-modal__header-heading-container"},s.icon&&(0,h.createElement)(E,{icon:s.icon}),(0,h.createElement)("h1",{className:"components-modal__header-heading"},(0,M.sprintf)((0,M.__)("Edit %s","jet-form-builder"),m)),(0,h.createElement)(P.Slot,null)),(0,h.createElement)(N,null),(0,h.createElement)(I,null)),(0,h.createElement)("div",{style:{height:"40px"}}),C&&(0,h.createElement)(C,{settings:a,actionId:n.id,onChange:e=>l(e)}),(0,h.createElement)(S.Fill,null,({updateClick:e,cancelClick:C})=>(0,h.createElement)(g.StickyModalActions,{justify:"space-between"},(0,h.createElement)(L.Flex,{justify:"flex-start",gap:3,style:{flex:1}},(0,h.createElement)(L.Button,{isPrimary:!0,onClick:()=>{d?.length?i({errorsShow:!0}):e()}},(0,M.__)("Update","jet-form-builder")),(0,h.createElement)(L.Button,{isSecondary:!0,onClick:C},(0,M.__)("Cancel","jet-form-builder")),u&&(0,h.createElement)(g.IconText,null,(0,M.__)("You have errors in some fields","jet-form-builder"))),u&&(0,h.createElement)(L.Button,{variant:"tertiary",onClick:e},(0,M.__)("Update anyway","jet-form-builder")))))};t(2065);const U=window.JetFormEditorData.actionConditionSettings,{RepeaterItemContext:G,Repeater:W,RepeaterAddNew:K,AdvancedModalControl:$,RepeaterState:Y,BaseHelp:X}=JetFBComponents,{useRequestEvents:Q,useCurrentAction:ee,useUpdateCurrentAction:Ce,useMetaState:te}=JetFBHooks,{getFormFieldsBlocks:le}=JetFBActions,{SelectControl:re,TextareaControl:ne,ToggleControl:ae,FormTokenField:ie,TabPanel:oe}=wp.components,{__:se}=wp.i18n,{useSelect:ce}=wp.data,{useEffect:de,useState:me,useContext:ue,RawHTML:pe}=wp.element,fe=[{value:"and",label:se("AND (ALL conditions must be met)","jet-form-builder")},{value:"or",label:se("OR (at least ONE condition must be met)","jet-form-builder")}],Ve=window.JetFormEditorData.actionConditionExcludeEvents;function He(e,C){const t=U[e].find(e=>e.value===C);return(e,C="")=>t&&t[e]||C}function he({formFields:e}){const{currentItem:C,changeCurrentItem:t}=ue(G);let l=se("To fulfill this condition, the result of the check must be","jet-form-builder")+" ";l+=C.execute?"TRUE":"FALSE";const r=He("compare_value_formats",C.compare_value_format),n=He("operators",C.operator);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ae,{label:l,checked:C.execute,onChange:e=>{t({execute:e})}}),(0,h.createElement)(re,{label:"Operator",labelPosition:"side",help:n("help"),value:C.operator,options:U.operators,onChange:e=>t({operator:e})}),(0,h.createElement)(re,{label:"Field",labelPosition:"side",value:C.field,options:e,onChange:e=>t({field:e})}),(0,h.createElement)(re,{label:se("Type transform comparing value","jet-form-builder"),labelPosition:"side",value:C.compare_value_format,options:U.compare_value_formats,onChange:e=>{t({compare_value_format:e})}}),r("help").length>0&&(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:r("help")}}),(0,h.createElement)($,{value:C.default,label:se("Value to Compare","jet-form-builder"),macroWithCurrent:!0,onChangePreset:e=>{t({default:e})}},({instanceId:e})=>(0,h.createElement)(ne,{id:e,value:C.default,help:n("need_explode")?U.help_for_exploding_compare:"",onChange:e=>{t({default:e})}})))}function be({events:e}){var C;const{currentAction:t}=ee(),{setCurrentAction:l}=Ce(),[r,n]=me(!1),a=ce(e=>e("jet-forms/events").getHelpMap());return de(()=>{if(Ve[t.type]&&t.events.length){const e=t.events.filter(e=>!Ve[t.type].includes(e));t.events.some(C=>!e.includes(C))&&l({...t,events:e})}},[t,l]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ie,{label:se("Add event","jet-form-builder"),value:null!==(C=t.events)&&void 0!==C?C:[],suggestions:e,onChange:e=>l({...t,events:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0,__experimentalShowHowTo:""}),(0,h.createElement)(X,null,se("Separate with commas, spaces, or press Enter.","jet-form-builder")+" ",(0,h.createElement)("a",{href:"#",role:"button",onClick:()=>n(e=>!e)},se(r?"Hide":"Details","jet-form-builder"))),r&&(0,h.createElement)("ul",{className:"jet-fb-ul-revert-layer"},e.map(e=>(0,h.createElement)("li",{key:e},(0,h.createElement)("b",null,e),": ",(0,h.createElement)(pe,null,a[e])))))}function Me(){var e;const[C,t]=me([]);de(()=>{t(le([],"--"))},[]);const{currentAction:l}=ee(),{setCurrentAction:r,updateCurrentConditions:n}=Ce();return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(re,{key:"SelectControl-operator",label:se("Condition Operator","jet-form-builder"),labelPosition:"side",value:l.condition_operator||"and",options:fe,onChange:e=>r({...l,condition_operator:e})}),(0,h.createElement)(Y,{state:n},(0,h.createElement)(W,{items:null!==(e=l.conditions)&&void 0!==e?e:[]},(0,h.createElement)(he,{formFields:C})),(0,h.createElement)(K,{item:{execute:!0}},se("Add New Condition","jet-form-builder"))))}const Le=function(){var e;let C=Q();const{currentAction:t}=ee(),[l]=te("_jf_gateways",{}),r=ce(e=>e("jet-forms/events").getEventValuesByGateway());if("manual"===l?.mode&&r&&"object"==typeof r){const e=Object.keys(r).filter(e=>!!l?.[e]?.show_on_front).flatMap(e=>{var C;return null!==(C=r?.[e])&&void 0!==C?C:[]});C=Array.from(new Set([...null!=C?C:[],...e]))}if(Ve?.[t.type]){const e=Ve[t.type];C=(null!=C?C:[]).filter(C=>!e.includes(C))}return 1===(null!==(e=C?.length)&&void 0!==e?e:0)?(0,h.createElement)(Me,null):(0,h.createElement)(h.Fragment,null,(0,h.createElement)(oe,{className:"jfb-conditions-tab-panel",initialTabName:"fields",tabs:[{name:"fields",title:se("Fields comparison","jet-form-builder"),edit:(0,h.createElement)(Me,null)},{name:"events",title:se("Events match","jet-form-builder"),edit:(0,h.createElement)(be,{events:C})}]},e=>e.edit))},{__:ge}=wp.i18n,{ActionModal:Ze}=JetFBComponents,{useRequestEvents:ye,useUpdateCurrentActionMeta:Ee,useCurrentAction:we}=JetFBHooks,{useDispatch:ve,useSelect:_e}=wp.data,ke=function(){const e=_e(e=>e("jet-forms/actions").isConditionalModal()),{clearCurrent:C}=ve("jet-forms/actions",[]),t=Ee(),{currentAction:l}=we(),r=ye();if(!e)return null;const n=["width-60"];return 1!==r.length&&n.push("without-margin"),(0,h.createElement)(Ze,{classNames:n,title:ge("Edit Action Conditions & Events","jet-form-builder"),onRequestClose:C,onCancelClick:C,onUpdateClick:()=>{t({...l}),C()}},(0,h.createElement)(Le,null))},je=window.wp.editor,xe=(0,L.withFilters)("jet.fb.action.item")(Z.ListActionItem),Fe=F(g.Sortable)({name:"FlexSortable",class:"f13zt8l2",propsAsIs:!0}),Be=F(je.PluginDocumentSettingPanel)({name:"ActionsPanel",class:"am4szan",propsAsIs:!0}),Ae=F(L.Flex)({name:"StyledFlex",class:"s8wdwdc",propsAsIs:!0});t(1669);const Pe={base:{name:"jf-actions-panel",jfbApiVersion:2},settings:{render:function(){const[e,C]=(0,Z.useActions)(),t=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return(0,h.createElement)(Be,{title:(0,M.__)("Post Submit Actions","jet-form-builder")},(0,h.createElement)(Ae,{direction:"column",gap:3,className:t?"buddypress-active":""},(0,h.createElement)(Fe,{list:e,setList:C,direction:"vertical",handle:".jfb-action-handle",draggable:".jet-form-action.draggable"},e.map((e,C)=>(0,h.createElement)(y.Fragment,{key:e.id},(0,h.createElement)(Z.ActionListItemContext.Provider,{value:{index:C,action:e}},(0,h.createElement)(xe,null))))),(0,h.createElement)(Z.ActionsAfterNewButtonSlotFill.Slot,null,e=>(0,h.createElement)(L.Flex,{className:"jfb-actions-panel--buttons"},(0,h.createElement)(Z.AddActionButton,null),e))),(0,h.createElement)(Z.AllProActionsLink,null),(0,h.createElement)(z,null),(0,h.createElement)(ke,null))}}},{useMetaState:Se}=JetFBHooks,{TextControl:Ne,SelectControl:Ie,ToggleControl:Te}=wp.components,{__:Oe}=wp.i18n,Je=window.JetFormEditorData.argumentsSource||{},{__:Re}=wp.i18n,qe={base:{name:"jf-args-panel",title:Re("Form Settings","jet-form-builder"),jfbTest:2},settings:{render:function(){var e,C,t,l,r,n,a;const[i,o]=Se("_jf_args"),s=window.location.href.includes("post-new.php");let c="label",d="fieldset";var m,u;return s||(c=null!==(m=i?.fields_label_tag)&&void 0!==m?m:"div",d=null!==(u=i?.markup_type)&&void 0!==u?u:"div"),(0,h.useEffect)(()=>{i?.fields_label_tag||o(e=>({...e,fields_label_tag:c}))},[i,c,o]),(0,h.useEffect)(()=>{i?.markup_type||o(e=>({...e,markup_type:d}))},[i,d,o]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ie,{label:Oe("Fields Layout","jet-form-builder"),value:null!==(e=i?.fields_layout)&&void 0!==e?e:"",options:Je.fields_layout,onChange:e=>{o(C=>({...C,fields_layout:e}))}}),(0,h.createElement)(Ne,{label:Oe("Required Mark","jet-form-builder"),value:null!==(C=i?.required_mark)&&void 0!==C?C:"",onChange:e=>{o(C=>({...C,required_mark:e}))}}),(0,h.createElement)(Ie,{label:Oe("Fields label HTML tag","jet-form-builder"),value:null!==(t=i?.fields_label_tag)&&void 0!==t?t:c,options:Je.fields_label_tag,onChange:e=>{o(C=>({...C,fields_label_tag:e}))}}),(0,h.createElement)(Ie,{label:Oe("Markup type","jet-form-builder"),value:null!==(l=i?.markup_type)&&void 0!==l?l:d,options:Je.markup_type,onChange:e=>{o(C=>({...C,markup_type:e}))}}),(0,h.createElement)(Ie,{label:Oe("Submit Type","jet-form-builder"),value:null!==(r=i?.submit_type)&&void 0!==r?r:"",options:Je.submit_type,onChange:e=>{o(C=>({...C,submit_type:e}))}}),(0,h.createElement)(Te,{key:"enable_progress",label:Oe("Enable form pages progress","jet-form-builder"),checked:null!==(n=i?.enable_progress)&&void 0!==n&&n,help:Oe("Displays the progress of a multi-page form","jet-form-builder"),onChange:()=>{o(e=>{const C=!Boolean(e.enable_progress);return{...e,enable_progress:C}})}}),(0,h.createElement)(Te,{key:"clear_on_ajax",label:Oe("Clear data on success submit","jet-form-builder"),checked:null!==(a=i?.clear)&&void 0!==a&&a,help:Oe("Remove input values on successful submit","jet-form-builder"),onChange:()=>{o(e=>({...e,clear:!Boolean(e.clear)}))}}))},icon:"admin-settings"}},{GlobalField:De,AvailableMapField:ze}=JetFBComponents,{withPreset:Ue}=JetFBActions,Ge=Ue(function({value:e,availableFields:C,isMapFieldVisible:t,isVisible:l,onChange:r}){const n=(C,t)=>{r({...e,[t]:C})};return(0,h.createElement)(L.Flex,{direction:"column",gap:4},window.JetFormEditorData.presetConfig.global_fields.map((C,t)=>(0,h.createElement)(De,{key:C.name+t,value:e,index:t,data:C,options:C.options,onChangeValue:n,isVisible:l,position:"general"})),e.from&&C.map((C,l)=>(0,h.createElement)(ze,{key:C+l,fieldsMap:e.fields_map,field:C,index:l,onChangeValue:n,isMapFieldVisible:t,value:e})))}),{useMetaState:We}=JetFBHooks,{getAvailableFields:Ke}=JetFBActions,{__:$e}=wp.i18n,{__:Ye}=wp.i18n,Xe={base:{name:"jf-preset-panel",title:Ye("Preset Settings","jet-form-builder")},settings:{render:function(){var e,C;const{ToggleControl:t}=wp.components,[l,r]=We("_jf_preset"),n=(0,y.useMemo)(()=>l.enabled?Ke([],"preset"):[],[l.enabled]);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(t,{key:"enable_preset",label:$e("Enable","jet-form-builder"),checked:l.enabled,help:"Check this to enable global form preset",onChange:e=>{r(C=>({...C,enabled:e}))}}),l.enabled&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ge,{key:"_jf_preset_general",value:l,onChange:e=>{r(C=>({...C,...e,enabled:C.enabled}))},availableFields:n}),(0,h.createElement)(t,{label:$e("Restrict access","jet-form-builder"),checked:null===(e=l.restricted)||void 0===e||e,help:null===(C=l.restricted)||void 0===C||C?$e("Will set default value from preset only for users who allowed to edit this value","jet-form-builder"):$e("Always set default value from preset. Make sure it can't be accidentally changed from form Actions","jet-form-builder"),onChange:e=>{r(C=>({...C,restricted:e?void 0:e}))}})))},icon:"database-import"}},{TextControl:Qe}=wp.components,{useMetaState:eC}=JetFBHooks,{__:CC}=wp.i18n,tC={base:{name:"jf-messages-panel",title:CC("General Messages Settings","jet-form-builder")},settings:{render:function(){const[e,C]=eC("_jf_messages");return(0,h.createElement)(h.Fragment,null,Object.entries(JetFormEditorData.messagesDefault).map(([t,{label:l,value:r}],n)=>{var a;return(0,h.createElement)(Qe,{key:t+n,label:l,value:null!==(a=e[t])&&void 0!==a?a:r,onChange:e=>C(C=>({...C,[t]:e}))})}))},icon:"format-status"}},{__:lC}=wp.i18n,{__:rC}=wp.i18n,nC={base:{name:"jf-limit-responses-panel",title:rC("Limit Form Responses","jet-form-builder")},settings:{render:function(){const{limitResponses:e}=JetFormEditorData.utmLinks;return(0,h.createElement)("p",null,lC("You’re using free version of JetFormBuilder.","jet-form-builder")+"\n",(0,h.createElement)("a",{href:e,target:"_blank",rel:"noreferrer"},lC("Upgrade","jet-form-builder"))," "+lC("to unlock this feature.","jet-form-builder"))},icon:"lock"}},{__:aC}=wp.i18n,{__:iC}=wp.i18n,oC={base:{name:"jf-schedule-panel",title:iC("Form Schedule","jet-form-builder")},settings:{render:function(){const{scheduleForm:e}=JetFormEditorData.utmLinks;return(0,h.createElement)("p",null,aC("You’re using free version of JetFormBuilder.","jet-form-builder")+"\n",(0,h.createElement)("a",{href:e,target:"_blank",rel:"noreferrer"},aC("Upgrade","jet-form-builder"))," "+aC("to unlock this feature.","jet-form-builder"))},icon:"lock"}},{ActionModalContext:sC,ValidationMetaMessage:cC}=JetFBComponents,{useMetaState:dC,useGroupedValidationMessages:mC}=JetFBHooks,uC=function(){const[e,C]=dC("_jf_validation","{}",[]),t=mC(),[l,r]=(0,y.useState)(()=>{var C;return null!==(C=e.messages)&&void 0!==C?C:{}}),{actionClick:n,onRequestClose:a}=(0,y.useContext)(sC);return(0,y.useEffect)(()=>{n&&C(e=>({...e,messages:l})),null!==n&&a()},[n]),(0,h.createElement)(L.Flex,{gap:4,direction:"column"},t.map((e,C)=>(0,h.createElement)(cC,{key:"message_item"+e.id,message:e,messages:l,update:r,value:l[e.id],className:0!==C?"jet-control-full":"",style:0!==C?{}:{paddingBottom:"5px"}})))},{Button:pC,ToggleControl:fC,__experimentalToggleGroupControl:VC,__experimentalToggleGroupControlOption:HC}=wp.components,{__:hC}=wp.i18n,{useState:bC,useEffect:MC}=wp.element,{useMetaState:LC}=JetFBHooks,{ActionModal:gC}=JetFBComponents,{formats:ZC}=window.jetFormValidation,{__:yC}=wp.i18n,EC={base:{name:"jf-validation-panel",title:yC("Validation","jet-form-builder")},settings:{render:function(){var e,C,t;const[l,r]=LC("_jf_validation"),[n,a]=LC("_jf_args"),[i,o]=bC(!1),[s,c]=bC("render"===n.load_nonce);return MC(()=>{a(e=>({...e,load_nonce:s?"render":"hide"}))},[s]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(fC,{key:"load_nonce",label:hC("Enable form safety","jet-form-builder"),checked:s,help:hC("Protects the form with a WordPress nonce. Toggle this option off if the form's page's caching can't be disabled","jet-form-builder"),onChange:()=>{c(e=>!e)}}),(0,h.createElement)(fC,{label:hC("Enable csrf protection","jet-form-builder"),checked:null!==(e=n?.use_csrf)&&void 0!==e&&e,onChange:()=>{a(e=>{const C=!Boolean(e.use_csrf);return{...e,use_csrf:C}})}}),(0,h.createElement)(fC,{label:hC("Enable Honeypot protection","jet-form-builder"),checked:null!==(C=n?.use_honeypot)&&void 0!==C&&C,onChange:()=>{a(e=>({...e,use_honeypot:!Boolean(e.use_honeypot)}))}}),(0,h.createElement)(VC,{onChange:e=>r(C=>({...C,type:e})),value:null!==(t=l?.type)&&void 0!==t?t:"browser",label:hC("Validation type","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},ZC.map(e=>(0,h.createElement)(HC,{key:e.value+"_key",label:e.label,value:e.value,"aria-label":e.title,showTooltip:!0}))),"advanced"===l.type&&(0,h.createElement)(pC,{className:"jet-fb-button w-100 jc-center",isSecondary:!0,isSmall:!0,icon:"edit",onClick:()=>o(!0)},hC("Edit validation messages","jet-form-builder")),i&&(0,h.createElement)(gC,{title:"Edit Manual Options",onRequestClose:()=>o(!1),classNames:["width-60"]},(0,h.createElement)(uC,null)))},icon:"shield-alt"}},wC=window.wp.plugins;(0,wC.registerPlugin)("jf-rating-popover",{render:()=>((()=>{const e=jQuery(".interface-interface-skeleton__footer");e.find(".jet-fb-rating-message").remove();const C=(0,M.sprintf)((0,M.__)('Liked JetFormBuilder? Please rate it ★★★★★. For troubleshooting, contact Crocoblock support.',"jet-form-builder"),"https://wordpress.org/support/plugin/jetformbuilder/reviews/?filter=5","https://support.crocoblock.com/support/home/");e.append(`\n\t
${C}
\n`)})(),null)});const vC=window.wp.hooks,_C=e=>{const{base:C,settings:t}=e;C.jfbApiVersion&&1!==C.jfbApiVersion||(t.render=((e,C)=>{const t=e.render;return()=>(0,h.createElement)(je.PluginDocumentSettingPanel,{key:`plugin-panel-${C.name}`,...C},(0,h.createElement)(t,{key:`plugin-render-${C.name}`}))})(t,C)),(0,wC.getPlugin)(C.name)&&(0,wC.unregisterPlugin)(C.name),(0,wC.registerPlugin)(C.name,t)};JetFormEditorData.isActivePro||(0,vC.addFilter)("jet.fb.register.plugin.jf-actions-panel.after","jet-form-builder",e=>(e.push(oC,nC),e),0);const kC=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("g",{clipPath:"url(#clip0_273_2176)"},(0,h.createElement)("path",{d:"M22.4785 28.4268V29.5H17.208V28.4268H22.4785ZM17.4746 19.5469V29.5H16.1553V19.5469H17.4746ZM21.7812 23.8262V24.8994H17.208V23.8262H21.7812ZM22.4102 19.5469V20.627H17.208V19.5469H22.4102ZM24.7754 22.1035L26.3955 24.7969L28.0361 22.1035H29.5195L27.0996 25.7539L29.5947 29.5H28.1318L26.4229 26.7246L24.7139 29.5H23.2441L25.7324 25.7539L23.3193 22.1035H24.7754ZM33.9629 22.1035V23.0742H29.9639V22.1035H33.9629ZM31.3174 20.3057H32.582V27.668C32.582 27.9186 32.6208 28.1077 32.6982 28.2354C32.7757 28.363 32.876 28.4473 32.999 28.4883C33.1221 28.5293 33.2542 28.5498 33.3955 28.5498C33.5003 28.5498 33.6097 28.5407 33.7236 28.5225C33.8421 28.4997 33.931 28.4814 33.9902 28.4678L33.9971 29.5C33.8968 29.5319 33.7646 29.5615 33.6006 29.5889C33.4411 29.6208 33.2474 29.6367 33.0195 29.6367C32.7096 29.6367 32.4248 29.5752 32.165 29.4521C31.9053 29.3291 31.6979 29.124 31.543 28.8369C31.3926 28.5452 31.3174 28.1533 31.3174 27.6611V20.3057ZM36.7109 23.2656V29.5H35.4463V22.1035H36.6768L36.7109 23.2656ZM39.0215 22.0625L39.0146 23.2383C38.9098 23.2155 38.8096 23.2018 38.7139 23.1973C38.6227 23.1882 38.5179 23.1836 38.3994 23.1836C38.1077 23.1836 37.8503 23.2292 37.627 23.3203C37.4036 23.4115 37.2145 23.5391 37.0596 23.7031C36.9046 23.8672 36.7816 24.0632 36.6904 24.291C36.6038 24.5143 36.5469 24.7604 36.5195 25.0293L36.1641 25.2344C36.1641 24.7878 36.2074 24.3685 36.2939 23.9766C36.3851 23.5846 36.5241 23.2383 36.7109 22.9375C36.8978 22.6322 37.1348 22.3952 37.4219 22.2266C37.7135 22.0534 38.0599 21.9668 38.4609 21.9668C38.5521 21.9668 38.6569 21.9782 38.7754 22.001C38.8939 22.0192 38.9759 22.0397 39.0215 22.0625ZM44.2783 28.2354V24.4277C44.2783 24.1361 44.2191 23.8831 44.1006 23.6689C43.9867 23.4502 43.8135 23.2816 43.5811 23.1631C43.3486 23.0446 43.0615 22.9854 42.7197 22.9854C42.4007 22.9854 42.1204 23.04 41.8789 23.1494C41.6419 23.2588 41.4551 23.4023 41.3184 23.5801C41.1862 23.7578 41.1201 23.9492 41.1201 24.1543H39.8555C39.8555 23.89 39.9238 23.6279 40.0605 23.3682C40.1973 23.1084 40.3932 22.8737 40.6484 22.6641C40.9082 22.4499 41.2181 22.2812 41.5781 22.1582C41.9427 22.0306 42.3483 21.9668 42.7949 21.9668C43.3327 21.9668 43.8066 22.0579 44.2168 22.2402C44.6315 22.4225 44.9551 22.6982 45.1875 23.0674C45.4245 23.432 45.543 23.89 45.543 24.4414V27.8867C45.543 28.1328 45.5635 28.3949 45.6045 28.6729C45.6501 28.9508 45.7161 29.1901 45.8027 29.3906V29.5H44.4834C44.4196 29.3542 44.3695 29.1605 44.333 28.9189C44.2965 28.6729 44.2783 28.445 44.2783 28.2354ZM44.4971 25.0156L44.5107 25.9043H43.2324C42.8724 25.9043 42.5511 25.9339 42.2686 25.9932C41.986 26.0479 41.749 26.1322 41.5576 26.2461C41.3662 26.36 41.2204 26.5036 41.1201 26.6768C41.0199 26.8454 40.9697 27.0436 40.9697 27.2715C40.9697 27.5039 41.0221 27.7158 41.127 27.9072C41.2318 28.0986 41.389 28.2513 41.5986 28.3652C41.8128 28.4746 42.0749 28.5293 42.3848 28.5293C42.7721 28.5293 43.1139 28.4473 43.4102 28.2832C43.7064 28.1191 43.9411 27.9186 44.1143 27.6816C44.292 27.4447 44.3877 27.2145 44.4014 26.9912L44.9414 27.5996C44.9095 27.791 44.8229 28.0029 44.6816 28.2354C44.5404 28.4678 44.3512 28.6911 44.1143 28.9053C43.8818 29.1149 43.6038 29.2904 43.2803 29.4316C42.9613 29.5684 42.6012 29.6367 42.2002 29.6367C41.6989 29.6367 41.2591 29.5387 40.8809 29.3428C40.5072 29.1468 40.2155 28.8848 40.0059 28.5566C39.8008 28.224 39.6982 27.8525 39.6982 27.4424C39.6982 27.0459 39.7757 26.6973 39.9307 26.3965C40.0856 26.0911 40.3089 25.8382 40.6006 25.6377C40.8923 25.4326 41.2432 25.2777 41.6533 25.1729C42.0635 25.068 42.5215 25.0156 43.0273 25.0156H44.4971ZM55.3115 27.5381C55.3115 27.3558 55.2705 27.1872 55.1885 27.0322C55.111 26.8727 54.9492 26.7292 54.7031 26.6016C54.4616 26.4694 54.097 26.3555 53.6094 26.2598C53.1992 26.1732 52.8278 26.0706 52.4951 25.9521C52.167 25.8337 51.8867 25.6901 51.6543 25.5215C51.4264 25.3529 51.251 25.1546 51.1279 24.9268C51.0049 24.6989 50.9434 24.4323 50.9434 24.127C50.9434 23.8353 51.0072 23.5596 51.1348 23.2998C51.2669 23.04 51.4515 22.8099 51.6885 22.6094C51.93 22.4089 52.2194 22.2516 52.5566 22.1377C52.8939 22.0238 53.2699 21.9668 53.6846 21.9668C54.277 21.9668 54.7829 22.0716 55.2021 22.2812C55.6214 22.4909 55.9427 22.7712 56.166 23.1221C56.3893 23.4684 56.501 23.8535 56.501 24.2773H55.2363C55.2363 24.0723 55.1748 23.874 55.0518 23.6826C54.9333 23.4867 54.7578 23.3249 54.5254 23.1973C54.2975 23.0697 54.0173 23.0059 53.6846 23.0059C53.3337 23.0059 53.0488 23.0605 52.8301 23.1699C52.6159 23.2747 52.4587 23.4092 52.3584 23.5732C52.2627 23.7373 52.2148 23.9105 52.2148 24.0928C52.2148 24.2295 52.2376 24.3525 52.2832 24.4619C52.3333 24.5667 52.4199 24.6647 52.543 24.7559C52.666 24.8424 52.8392 24.9245 53.0625 25.002C53.2858 25.0794 53.5706 25.1569 53.917 25.2344C54.5231 25.3711 55.0221 25.5352 55.4141 25.7266C55.806 25.918 56.0977 26.1527 56.2891 26.4307C56.4805 26.7087 56.5762 27.0459 56.5762 27.4424C56.5762 27.766 56.5078 28.0622 56.3711 28.3311C56.2389 28.5999 56.0452 28.8324 55.79 29.0283C55.5394 29.2197 55.2386 29.3701 54.8877 29.4795C54.5413 29.5843 54.1517 29.6367 53.7188 29.6367C53.0671 29.6367 52.5156 29.5205 52.0645 29.2881C51.6133 29.0557 51.2715 28.7549 51.0391 28.3857C50.8066 28.0166 50.6904 27.627 50.6904 27.2168H51.9619C51.9801 27.5632 52.0804 27.8389 52.2627 28.0439C52.445 28.2445 52.6683 28.388 52.9326 28.4746C53.1969 28.5566 53.459 28.5977 53.7188 28.5977C54.0651 28.5977 54.3545 28.5521 54.5869 28.4609C54.8239 28.3698 55.0039 28.2445 55.127 28.085C55.25 27.9255 55.3115 27.7432 55.3115 27.5381ZM61.3066 29.6367C60.7917 29.6367 60.3245 29.5501 59.9053 29.377C59.4906 29.1992 59.1328 28.9508 58.832 28.6318C58.5358 28.3128 58.3079 27.9346 58.1484 27.4971C57.9889 27.0596 57.9092 26.5811 57.9092 26.0615V25.7744C57.9092 25.1729 57.998 24.6374 58.1758 24.168C58.3535 23.694 58.5951 23.293 58.9004 22.9648C59.2057 22.6367 59.5521 22.3883 59.9395 22.2197C60.3268 22.0511 60.7279 21.9668 61.1426 21.9668C61.6712 21.9668 62.127 22.0579 62.5098 22.2402C62.8971 22.4225 63.2139 22.6777 63.46 23.0059C63.7061 23.3294 63.8883 23.7122 64.0068 24.1543C64.1253 24.5918 64.1846 25.0703 64.1846 25.5898V26.1572H58.6611V25.125H62.9199V25.0293C62.9017 24.7012 62.8333 24.3822 62.7148 24.0723C62.6009 23.7624 62.4186 23.5072 62.168 23.3066C61.9173 23.1061 61.5755 23.0059 61.1426 23.0059C60.8555 23.0059 60.5911 23.0674 60.3496 23.1904C60.1081 23.3089 59.9007 23.4867 59.7275 23.7236C59.5544 23.9606 59.4199 24.25 59.3242 24.5918C59.2285 24.9336 59.1807 25.3278 59.1807 25.7744V26.0615C59.1807 26.4124 59.2285 26.7428 59.3242 27.0527C59.4245 27.3581 59.568 27.627 59.7549 27.8594C59.9463 28.0918 60.1764 28.2741 60.4453 28.4062C60.7188 28.5384 61.0286 28.6045 61.375 28.6045C61.8216 28.6045 62.1999 28.5133 62.5098 28.3311C62.8197 28.1488 63.0908 27.9049 63.3232 27.5996L64.0889 28.208C63.9294 28.4495 63.7266 28.6797 63.4805 28.8984C63.2344 29.1172 62.9313 29.2949 62.5713 29.4316C62.2158 29.5684 61.7943 29.6367 61.3066 29.6367ZM66.9258 23.2656V29.5H65.6611V22.1035H66.8916L66.9258 23.2656ZM69.2363 22.0625L69.2295 23.2383C69.1247 23.2155 69.0244 23.2018 68.9287 23.1973C68.8376 23.1882 68.7327 23.1836 68.6143 23.1836C68.3226 23.1836 68.0651 23.2292 67.8418 23.3203C67.6185 23.4115 67.4294 23.5391 67.2744 23.7031C67.1195 23.8672 66.9964 24.0632 66.9053 24.291C66.8187 24.5143 66.7617 24.7604 66.7344 25.0293L66.3789 25.2344C66.3789 24.7878 66.4222 24.3685 66.5088 23.9766C66.5999 23.5846 66.7389 23.2383 66.9258 22.9375C67.1126 22.6322 67.3496 22.3952 67.6367 22.2266C67.9284 22.0534 68.2747 21.9668 68.6758 21.9668C68.7669 21.9668 68.8717 21.9782 68.9902 22.001C69.1087 22.0192 69.1908 22.0397 69.2363 22.0625ZM72.7773 28.3584L74.8008 22.1035H76.0928L73.4336 29.5H72.5859L72.7773 28.3584ZM71.0889 22.1035L73.1738 28.3926L73.3174 29.5H72.4697L69.79 22.1035H71.0889ZM78.6836 22.1035V29.5H77.4121V22.1035H78.6836ZM77.3164 20.1416C77.3164 19.9365 77.3779 19.7633 77.501 19.6221C77.6286 19.4808 77.8154 19.4102 78.0615 19.4102C78.3031 19.4102 78.4876 19.4808 78.6152 19.6221C78.7474 19.7633 78.8135 19.9365 78.8135 20.1416C78.8135 20.3376 78.7474 20.5062 78.6152 20.6475C78.4876 20.7842 78.3031 20.8525 78.0615 20.8525C77.8154 20.8525 77.6286 20.7842 77.501 20.6475C77.3779 20.5062 77.3164 20.3376 77.3164 20.1416ZM83.6738 28.5977C83.9746 28.5977 84.2526 28.5361 84.5078 28.4131C84.763 28.29 84.9727 28.1214 85.1367 27.9072C85.3008 27.6885 85.3942 27.4401 85.417 27.1621H86.6201C86.5973 27.5996 86.4492 28.0075 86.1758 28.3857C85.9069 28.7594 85.5537 29.0625 85.1162 29.2949C84.6787 29.5228 84.1979 29.6367 83.6738 29.6367C83.1178 29.6367 82.6325 29.5387 82.2178 29.3428C81.8076 29.1468 81.4658 28.8779 81.1924 28.5361C80.9235 28.1943 80.7207 27.8024 80.584 27.3604C80.4518 26.9137 80.3857 26.4421 80.3857 25.9453V25.6582C80.3857 25.1615 80.4518 24.6921 80.584 24.25C80.7207 23.8034 80.9235 23.4092 81.1924 23.0674C81.4658 22.7256 81.8076 22.4567 82.2178 22.2607C82.6325 22.0648 83.1178 21.9668 83.6738 21.9668C84.2526 21.9668 84.7585 22.0853 85.1914 22.3223C85.6243 22.5547 85.9639 22.8737 86.21 23.2793C86.4606 23.6803 86.5973 24.1361 86.6201 24.6465H85.417C85.3942 24.3411 85.3076 24.0654 85.1572 23.8193C85.0114 23.5732 84.8109 23.3773 84.5557 23.2314C84.305 23.0811 84.0111 23.0059 83.6738 23.0059C83.2865 23.0059 82.9606 23.0833 82.6963 23.2383C82.4365 23.3887 82.2292 23.5938 82.0742 23.8535C81.9238 24.1087 81.8145 24.3936 81.7461 24.708C81.6823 25.0179 81.6504 25.3346 81.6504 25.6582V25.9453C81.6504 26.2689 81.6823 26.5879 81.7461 26.9023C81.8099 27.2168 81.917 27.5016 82.0674 27.7568C82.2223 28.012 82.4297 28.2171 82.6895 28.3721C82.9538 28.5225 83.2819 28.5977 83.6738 28.5977ZM91.1113 29.6367C90.5964 29.6367 90.1292 29.5501 89.71 29.377C89.2952 29.1992 88.9375 28.9508 88.6367 28.6318C88.3405 28.3128 88.1126 27.9346 87.9531 27.4971C87.7936 27.0596 87.7139 26.5811 87.7139 26.0615V25.7744C87.7139 25.1729 87.8027 24.6374 87.9805 24.168C88.1582 23.694 88.3997 23.293 88.7051 22.9648C89.0104 22.6367 89.3568 22.3883 89.7441 22.2197C90.1315 22.0511 90.5326 21.9668 90.9473 21.9668C91.4759 21.9668 91.9316 22.0579 92.3145 22.2402C92.7018 22.4225 93.0186 22.6777 93.2646 23.0059C93.5107 23.3294 93.693 23.7122 93.8115 24.1543C93.93 24.5918 93.9893 25.0703 93.9893 25.5898V26.1572H88.4658V25.125H92.7246V25.0293C92.7064 24.7012 92.638 24.3822 92.5195 24.0723C92.4056 23.7624 92.2233 23.5072 91.9727 23.3066C91.722 23.1061 91.3802 23.0059 90.9473 23.0059C90.6602 23.0059 90.3958 23.0674 90.1543 23.1904C89.9128 23.3089 89.7054 23.4867 89.5322 23.7236C89.359 23.9606 89.2246 24.25 89.1289 24.5918C89.0332 24.9336 88.9854 25.3278 88.9854 25.7744V26.0615C88.9854 26.4124 89.0332 26.7428 89.1289 27.0527C89.2292 27.3581 89.3727 27.627 89.5596 27.8594C89.751 28.0918 89.9811 28.2741 90.25 28.4062C90.5234 28.5384 90.8333 28.6045 91.1797 28.6045C91.6263 28.6045 92.0046 28.5133 92.3145 28.3311C92.6243 28.1488 92.8955 27.9049 93.1279 27.5996L93.8936 28.208C93.734 28.4495 93.5312 28.6797 93.2852 28.8984C93.0391 29.1172 92.736 29.2949 92.376 29.4316C92.0205 29.5684 91.599 29.6367 91.1113 29.6367ZM99.7725 27.5381C99.7725 27.3558 99.7314 27.1872 99.6494 27.0322C99.5719 26.8727 99.4102 26.7292 99.1641 26.6016C98.9225 26.4694 98.5579 26.3555 98.0703 26.2598C97.6602 26.1732 97.2887 26.0706 96.9561 25.9521C96.6279 25.8337 96.3477 25.6901 96.1152 25.5215C95.8874 25.3529 95.7119 25.1546 95.5889 24.9268C95.4658 24.6989 95.4043 24.4323 95.4043 24.127C95.4043 23.8353 95.4681 23.5596 95.5957 23.2998C95.7279 23.04 95.9124 22.8099 96.1494 22.6094C96.391 22.4089 96.6803 22.2516 97.0176 22.1377C97.3548 22.0238 97.7308 21.9668 98.1455 21.9668C98.738 21.9668 99.2438 22.0716 99.6631 22.2812C100.082 22.4909 100.404 22.7712 100.627 23.1221C100.85 23.4684 100.962 23.8535 100.962 24.2773H99.6973C99.6973 24.0723 99.6357 23.874 99.5127 23.6826C99.3942 23.4867 99.2188 23.3249 98.9863 23.1973C98.7585 23.0697 98.4782 23.0059 98.1455 23.0059C97.7946 23.0059 97.5098 23.0605 97.291 23.1699C97.0768 23.2747 96.9196 23.4092 96.8193 23.5732C96.7236 23.7373 96.6758 23.9105 96.6758 24.0928C96.6758 24.2295 96.6986 24.3525 96.7441 24.4619C96.7943 24.5667 96.8809 24.6647 97.0039 24.7559C97.127 24.8424 97.3001 24.9245 97.5234 25.002C97.7467 25.0794 98.0316 25.1569 98.3779 25.2344C98.984 25.3711 99.4831 25.5352 99.875 25.7266C100.267 25.918 100.559 26.1527 100.75 26.4307C100.941 26.7087 101.037 27.0459 101.037 27.4424C101.037 27.766 100.969 28.0622 100.832 28.3311C100.7 28.5999 100.506 28.8324 100.251 29.0283C100 29.2197 99.6995 29.3701 99.3486 29.4795C99.0023 29.5843 98.6126 29.6367 98.1797 29.6367C97.528 29.6367 96.9766 29.5205 96.5254 29.2881C96.0742 29.0557 95.7324 28.7549 95.5 28.3857C95.2676 28.0166 95.1514 27.627 95.1514 27.2168H96.4229C96.4411 27.5632 96.5413 27.8389 96.7236 28.0439C96.9059 28.2445 97.1292 28.388 97.3936 28.4746C97.6579 28.5566 97.9199 28.5977 98.1797 28.5977C98.526 28.5977 98.8154 28.5521 99.0479 28.4609C99.2848 28.3698 99.4648 28.2445 99.5879 28.085C99.7109 27.9255 99.7725 27.7432 99.7725 27.5381Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M29.25 41.25V51.75H18.75V41.25H29.25ZM29.25 39.75H18.75C17.925 39.75 17.25 40.425 17.25 41.25V51.75C17.25 52.575 17.925 53.25 18.75 53.25H29.25C30.075 53.25 30.75 52.575 30.75 51.75V41.25C30.75 40.425 30.075 39.75 29.25 39.75Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M40.3672 46.6772H38.0249L38.0122 45.6934H40.1387C40.4899 45.6934 40.7967 45.6341 41.0591 45.5156C41.3215 45.3971 41.5246 45.2279 41.6685 45.0078C41.8166 44.7835 41.8906 44.5169 41.8906 44.208C41.8906 43.8695 41.825 43.5944 41.6938 43.3828C41.5669 43.167 41.3701 43.0104 41.1035 42.9131C40.8411 42.8115 40.5068 42.7607 40.1006 42.7607H38.2979V51H37.0728V41.7578H40.1006C40.5745 41.7578 40.9977 41.8065 41.3701 41.9038C41.7425 41.9969 42.0578 42.145 42.3159 42.3481C42.5783 42.547 42.7772 42.8009 42.9126 43.1099C43.048 43.4188 43.1157 43.7891 43.1157 44.2207C43.1157 44.6016 43.0184 44.9465 42.8237 45.2554C42.6291 45.5601 42.3582 45.8097 42.0112 46.0044C41.6685 46.1991 41.2664 46.3239 40.8052 46.3789L40.3672 46.6772ZM40.3101 51H37.5425L38.2344 50.0034H40.3101C40.6994 50.0034 41.0295 49.9357 41.3003 49.8003C41.5754 49.6649 41.7848 49.4744 41.9287 49.229C42.0726 48.9793 42.1445 48.6852 42.1445 48.3467C42.1445 48.0039 42.0832 47.7077 41.9604 47.458C41.8377 47.2083 41.6452 47.0158 41.3828 46.8804C41.1204 46.745 40.7819 46.6772 40.3672 46.6772H38.6216L38.6343 45.6934H41.021L41.2812 46.0488C41.7256 46.0869 42.1022 46.2139 42.4111 46.4297C42.7201 46.6413 42.9549 46.9121 43.1157 47.2422C43.2808 47.5723 43.3633 47.9362 43.3633 48.334C43.3633 48.9095 43.2363 49.3962 42.9824 49.7939C42.7327 50.1875 42.3794 50.488 41.9224 50.6953C41.4653 50.8984 40.9279 51 40.3101 51ZM46.1689 45.2109V51H44.9946V44.1318H46.1372L46.1689 45.2109ZM48.3145 44.0938L48.3081 45.1855C48.2108 45.1644 48.1177 45.1517 48.0288 45.1475C47.9442 45.139 47.8468 45.1348 47.7368 45.1348C47.466 45.1348 47.2269 45.1771 47.0195 45.2617C46.8122 45.3464 46.6366 45.4648 46.4927 45.6172C46.3488 45.7695 46.2345 45.9515 46.1499 46.1631C46.0695 46.3704 46.0166 46.599 45.9912 46.8486L45.6611 47.0391C45.6611 46.6243 45.7013 46.235 45.7817 45.8711C45.8664 45.5072 45.9954 45.1855 46.1689 44.9062C46.3424 44.6227 46.5625 44.4027 46.8291 44.2461C47.0999 44.0853 47.4215 44.0049 47.7939 44.0049C47.8786 44.0049 47.9759 44.0155 48.0859 44.0366C48.196 44.0535 48.2721 44.0726 48.3145 44.0938ZM52.123 51.127C51.6449 51.127 51.2111 51.0465 50.8218 50.8857C50.4367 50.7207 50.1045 50.4901 49.8252 50.1938C49.5501 49.8976 49.3385 49.5464 49.1904 49.1401C49.0423 48.7339 48.9683 48.2896 48.9683 47.8071V47.5405C48.9683 46.9819 49.0508 46.4847 49.2158 46.0488C49.3809 45.6087 49.6051 45.2363 49.8887 44.9316C50.1722 44.627 50.4938 44.3963 50.8535 44.2397C51.2132 44.0832 51.5856 44.0049 51.9707 44.0049C52.4616 44.0049 52.8848 44.0895 53.2402 44.2588C53.5999 44.4281 53.894 44.665 54.1226 44.9697C54.3511 45.2702 54.5203 45.6257 54.6304 46.0361C54.7404 46.4424 54.7954 46.8867 54.7954 47.3691V47.896H49.6665V46.9375H53.6211V46.8486C53.6042 46.5439 53.5407 46.2477 53.4307 45.96C53.3249 45.6722 53.1556 45.4352 52.9229 45.249C52.6901 45.0628 52.3727 44.9697 51.9707 44.9697C51.7041 44.9697 51.4587 45.0269 51.2344 45.1411C51.0101 45.2511 50.8175 45.4162 50.6567 45.6362C50.4959 45.8563 50.3711 46.125 50.2822 46.4424C50.1934 46.7598 50.1489 47.1258 50.1489 47.5405V47.8071C50.1489 48.133 50.1934 48.4398 50.2822 48.7275C50.3753 49.0111 50.5086 49.2607 50.6821 49.4766C50.8599 49.6924 51.0736 49.8617 51.3232 49.9844C51.5771 50.1071 51.8649 50.1685 52.1865 50.1685C52.6012 50.1685 52.9525 50.0838 53.2402 49.9146C53.528 49.7453 53.7798 49.5189 53.9956 49.2354L54.7065 49.8003C54.5584 50.0246 54.3701 50.2383 54.1416 50.4414C53.9131 50.6445 53.6317 50.8096 53.2974 50.9365C52.9673 51.0635 52.5758 51.127 52.123 51.127ZM60.2163 49.8257V46.29C60.2163 46.0192 60.1613 45.7843 60.0513 45.5854C59.9455 45.3823 59.7847 45.2257 59.5688 45.1157C59.353 45.0057 59.0864 44.9507 58.769 44.9507C58.4728 44.9507 58.2126 45.0015 57.9883 45.103C57.7682 45.2046 57.5947 45.3379 57.4678 45.5029C57.3451 45.668 57.2837 45.8457 57.2837 46.0361H56.1094C56.1094 45.7907 56.1729 45.5474 56.2998 45.3062C56.4268 45.0649 56.6087 44.847 56.8457 44.6523C57.0869 44.4535 57.3747 44.2969 57.709 44.1826C58.0475 44.0641 58.4242 44.0049 58.8389 44.0049C59.3382 44.0049 59.7783 44.0895 60.1592 44.2588C60.5443 44.4281 60.8447 44.6841 61.0605 45.0269C61.2806 45.3654 61.3906 45.7907 61.3906 46.3027V49.502C61.3906 49.7305 61.4097 49.9738 61.4478 50.2319C61.4901 50.4901 61.5514 50.7122 61.6318 50.8984V51H60.4067C60.3475 50.8646 60.3009 50.6847 60.2671 50.4604C60.2332 50.2319 60.2163 50.0203 60.2163 49.8257ZM60.4194 46.8359L60.4321 47.6611H59.2451C58.9108 47.6611 58.6125 47.6886 58.3501 47.7437C58.0877 47.7944 57.8677 47.8727 57.6899 47.9785C57.5122 48.0843 57.3768 48.2176 57.2837 48.3784C57.1906 48.535 57.144 48.7191 57.144 48.9307C57.144 49.1465 57.1927 49.3433 57.29 49.521C57.3874 49.6987 57.5334 49.8405 57.728 49.9463C57.9269 50.0479 58.1702 50.0986 58.458 50.0986C58.8177 50.0986 59.1351 50.0225 59.4102 49.8701C59.6852 49.7178 59.9032 49.5316 60.064 49.3115C60.229 49.0915 60.3179 48.8778 60.3306 48.6704L60.832 49.2354C60.8024 49.4131 60.722 49.6099 60.5908 49.8257C60.4596 50.0415 60.284 50.2489 60.064 50.4478C59.8481 50.6424 59.59 50.8053 59.2896 50.9365C58.9933 51.0635 58.659 51.127 58.2866 51.127C57.8211 51.127 57.4128 51.036 57.0615 50.854C56.7145 50.672 56.4437 50.4287 56.249 50.124C56.0586 49.8151 55.9634 49.4702 55.9634 49.0894C55.9634 48.7212 56.0353 48.3975 56.1792 48.1182C56.3231 47.8346 56.5304 47.5998 56.8013 47.4136C57.0721 47.2231 57.3979 47.0793 57.7788 46.9819C58.1597 46.8846 58.585 46.8359 59.0547 46.8359H60.4194ZM64.4185 41.25V51H63.2378V41.25H64.4185ZM68.6143 44.1318L65.6182 47.3374L63.9424 49.0767L63.8472 47.8262L65.0469 46.3916L67.1797 44.1318H68.6143ZM67.5415 51L65.0913 47.7246L65.7007 46.6772L68.9253 51H67.5415ZM71.5786 51H70.4043V43.4082C70.4043 42.9131 70.4932 42.4963 70.6709 42.1577C70.8529 41.8149 71.1131 41.5568 71.4517 41.3833C71.7902 41.2056 72.1922 41.1167 72.6577 41.1167C72.7931 41.1167 72.9285 41.1252 73.064 41.1421C73.2036 41.159 73.339 41.1844 73.4702 41.2183L73.4067 42.1768C73.3179 42.1556 73.2163 42.1408 73.1021 42.1323C72.992 42.1239 72.882 42.1196 72.772 42.1196C72.5223 42.1196 72.3065 42.1704 72.1245 42.272C71.9468 42.3693 71.8114 42.5132 71.7183 42.7036C71.6252 42.894 71.5786 43.1289 71.5786 43.4082V51ZM73.0386 44.1318V45.0332H69.3188V44.1318H73.0386ZM78.396 49.8257V46.29C78.396 46.0192 78.341 45.7843 78.231 45.5854C78.1252 45.3823 77.9644 45.2257 77.7485 45.1157C77.5327 45.0057 77.2661 44.9507 76.9487 44.9507C76.6525 44.9507 76.3923 45.0015 76.168 45.103C75.9479 45.2046 75.7744 45.3379 75.6475 45.5029C75.5247 45.668 75.4634 45.8457 75.4634 46.0361H74.2891C74.2891 45.7907 74.3525 45.5474 74.4795 45.3062C74.6064 45.0649 74.7884 44.847 75.0254 44.6523C75.2666 44.4535 75.5544 44.2969 75.8887 44.1826C76.2272 44.0641 76.6038 44.0049 77.0186 44.0049C77.5179 44.0049 77.958 44.0895 78.3389 44.2588C78.724 44.4281 79.0244 44.6841 79.2402 45.0269C79.4603 45.3654 79.5703 45.7907 79.5703 46.3027V49.502C79.5703 49.7305 79.5894 49.9738 79.6274 50.2319C79.6698 50.4901 79.7311 50.7122 79.8115 50.8984V51H78.5864C78.5272 50.8646 78.4806 50.6847 78.4468 50.4604C78.4129 50.2319 78.396 50.0203 78.396 49.8257ZM78.5991 46.8359L78.6118 47.6611H77.4248C77.0905 47.6611 76.7922 47.6886 76.5298 47.7437C76.2674 47.7944 76.0474 47.8727 75.8696 47.9785C75.6919 48.0843 75.5565 48.2176 75.4634 48.3784C75.3703 48.535 75.3237 48.7191 75.3237 48.9307C75.3237 49.1465 75.3724 49.3433 75.4697 49.521C75.5671 49.6987 75.7131 49.8405 75.9077 49.9463C76.1066 50.0479 76.3499 50.0986 76.6377 50.0986C76.9974 50.0986 77.3148 50.0225 77.5898 49.8701C77.8649 49.7178 78.0828 49.5316 78.2437 49.3115C78.4087 49.0915 78.4976 48.8778 78.5103 48.6704L79.0117 49.2354C78.9821 49.4131 78.9017 49.6099 78.7705 49.8257C78.6393 50.0415 78.4637 50.2489 78.2437 50.4478C78.0278 50.6424 77.7697 50.8053 77.4692 50.9365C77.173 51.0635 76.8387 51.127 76.4663 51.127C76.0008 51.127 75.5924 51.036 75.2412 50.854C74.8942 50.672 74.6234 50.4287 74.4287 50.124C74.2383 49.8151 74.1431 49.4702 74.1431 49.0894C74.1431 48.7212 74.215 48.3975 74.3589 48.1182C74.5028 47.8346 74.7101 47.5998 74.981 47.4136C75.2518 47.2231 75.5776 47.0793 75.9585 46.9819C76.3394 46.8846 76.7646 46.8359 77.2344 46.8359H78.5991ZM85.4165 49.1782C85.4165 49.009 85.3784 48.8524 85.3022 48.7085C85.2303 48.5604 85.0801 48.4271 84.8516 48.3086C84.6273 48.1859 84.2887 48.0801 83.8359 47.9912C83.4551 47.9108 83.1102 47.8156 82.8013 47.7056C82.4966 47.5955 82.2363 47.4622 82.0205 47.3057C81.8089 47.1491 81.646 46.965 81.5317 46.7534C81.4175 46.5418 81.3604 46.2943 81.3604 46.0107C81.3604 45.7399 81.4196 45.4839 81.5381 45.2427C81.6608 45.0015 81.8322 44.7878 82.0522 44.6016C82.2765 44.4154 82.5452 44.2694 82.8584 44.1636C83.1715 44.0578 83.5207 44.0049 83.9058 44.0049C84.4559 44.0049 84.9256 44.1022 85.3149 44.2969C85.7043 44.4915 86.0026 44.7518 86.21 45.0776C86.4173 45.3993 86.521 45.7568 86.521 46.1504H85.3467C85.3467 45.96 85.2896 45.7759 85.1753 45.5981C85.0653 45.4162 84.9023 45.266 84.6865 45.1475C84.4749 45.029 84.2147 44.9697 83.9058 44.9697C83.5799 44.9697 83.3154 45.0205 83.1123 45.1221C82.9134 45.2194 82.7674 45.3442 82.6743 45.4966C82.5854 45.6489 82.541 45.8097 82.541 45.979C82.541 46.106 82.5622 46.2202 82.6045 46.3218C82.651 46.4191 82.7314 46.5101 82.8457 46.5947C82.96 46.6751 83.1208 46.7513 83.3281 46.8232C83.5355 46.8952 83.8 46.9671 84.1216 47.0391C84.6844 47.166 85.1478 47.3184 85.5117 47.4961C85.8757 47.6738 86.1465 47.8918 86.3242 48.1499C86.502 48.408 86.5908 48.7212 86.5908 49.0894C86.5908 49.3898 86.5273 49.6649 86.4004 49.9146C86.2777 50.1642 86.0978 50.38 85.8608 50.562C85.6281 50.7397 85.3488 50.8794 85.0229 50.981C84.7013 51.0783 84.3395 51.127 83.9375 51.127C83.3324 51.127 82.8203 51.019 82.4014 50.8032C81.9824 50.5874 81.665 50.3081 81.4492 49.9653C81.2334 49.6226 81.1255 49.2607 81.1255 48.8799H82.3062C82.3231 49.2015 82.4162 49.4575 82.5854 49.6479C82.7547 49.8341 82.9621 49.9674 83.2075 50.0479C83.453 50.124 83.6963 50.1621 83.9375 50.1621C84.2591 50.1621 84.5278 50.1198 84.7437 50.0352C84.9637 49.9505 85.1309 49.8341 85.2451 49.686C85.3594 49.5379 85.4165 49.3687 85.4165 49.1782ZM91.0088 44.1318V45.0332H87.2954V44.1318H91.0088ZM88.5522 42.4624H89.7266V49.2988C89.7266 49.5316 89.7625 49.7072 89.8345 49.8257C89.9064 49.9442 89.9995 50.0225 90.1138 50.0605C90.228 50.0986 90.3507 50.1177 90.4819 50.1177C90.5793 50.1177 90.6808 50.1092 90.7866 50.0923C90.8966 50.0711 90.9792 50.0542 91.0342 50.0415L91.0405 51C90.9474 51.0296 90.8247 51.0571 90.6724 51.0825C90.5243 51.1121 90.3444 51.127 90.1328 51.127C89.8451 51.127 89.5806 51.0698 89.3394 50.9556C89.0981 50.8413 88.9056 50.6509 88.7617 50.3843C88.6221 50.1134 88.5522 49.7495 88.5522 49.2925V42.4624ZM101.546 46.0425V47.147H95.2109V46.0425H101.546ZM98.9688 43.3447V50.0732H97.7944V43.3447H98.9688ZM109.595 40.2598V42.1958H108.643V40.2598H109.595ZM109.48 50.6255V52.3203H108.535V50.6255H109.48ZM110.75 48.6196C110.75 48.3657 110.693 48.1372 110.579 47.9341C110.464 47.731 110.276 47.5448 110.014 47.3755C109.751 47.2062 109.4 47.0496 108.96 46.9058C108.427 46.7407 107.965 46.5397 107.576 46.3027C107.191 46.0658 106.893 45.7716 106.681 45.4204C106.474 45.0692 106.37 44.6439 106.37 44.1445C106.37 43.624 106.482 43.1755 106.707 42.7988C106.931 42.4222 107.248 42.1323 107.659 41.9292C108.069 41.7261 108.552 41.6245 109.106 41.6245C109.538 41.6245 109.923 41.6901 110.261 41.8213C110.6 41.9482 110.885 42.1387 111.118 42.3926C111.355 42.6465 111.535 42.9575 111.658 43.3257C111.785 43.6938 111.848 44.1191 111.848 44.6016H110.68C110.68 44.318 110.646 44.0578 110.579 43.8208C110.511 43.5838 110.409 43.3786 110.274 43.2051C110.139 43.0273 109.973 42.8919 109.779 42.7988C109.584 42.7015 109.36 42.6528 109.106 42.6528C108.75 42.6528 108.456 42.7142 108.224 42.8369C107.995 42.9596 107.826 43.1331 107.716 43.3574C107.606 43.5775 107.551 43.8335 107.551 44.1255C107.551 44.3963 107.606 44.6333 107.716 44.8364C107.826 45.0396 108.012 45.2236 108.274 45.3887C108.541 45.5495 108.907 45.7082 109.373 45.8647C109.918 46.0382 110.382 46.2435 110.763 46.4805C111.144 46.7132 111.433 47.001 111.632 47.3438C111.831 47.6823 111.931 48.1034 111.931 48.6069C111.931 49.1528 111.808 49.6141 111.562 49.9907C111.317 50.3631 110.972 50.6466 110.528 50.8413C110.083 51.036 109.563 51.1333 108.966 51.1333C108.607 51.1333 108.251 51.0846 107.9 50.9873C107.549 50.89 107.231 50.7313 106.948 50.5112C106.664 50.2869 106.438 49.9928 106.269 49.6289C106.099 49.2607 106.015 48.8101 106.015 48.2769H107.195C107.195 48.6366 107.246 48.9349 107.348 49.1719C107.453 49.4046 107.593 49.5908 107.767 49.7305C107.94 49.8659 108.131 49.9632 108.338 50.0225C108.549 50.0775 108.759 50.105 108.966 50.105C109.347 50.105 109.669 50.0457 109.931 49.9272C110.198 49.8045 110.401 49.631 110.541 49.4067C110.68 49.1825 110.75 48.9201 110.75 48.6196ZM117.256 41.707V51H116.082V43.1733L113.714 44.0366V42.9766L117.072 41.707H117.256ZM122.195 46.6011L121.255 46.3599L121.719 41.7578H126.46V42.8433H122.715L122.436 45.3569C122.605 45.2596 122.819 45.1686 123.077 45.084C123.34 44.9993 123.64 44.957 123.979 44.957C124.406 44.957 124.789 45.0311 125.127 45.1792C125.466 45.3231 125.754 45.5304 125.991 45.8013C126.232 46.0721 126.416 46.3979 126.543 46.7788C126.67 47.1597 126.733 47.585 126.733 48.0547C126.733 48.499 126.672 48.9074 126.549 49.2798C126.431 49.6522 126.251 49.978 126.01 50.2573C125.769 50.5324 125.464 50.7461 125.096 50.8984C124.732 51.0508 124.302 51.127 123.807 51.127C123.435 51.127 123.081 51.0762 122.747 50.9746C122.417 50.8688 122.121 50.7101 121.858 50.4985C121.6 50.2827 121.389 50.0161 121.224 49.6987C121.063 49.3771 120.961 49.0005 120.919 48.5688H122.036C122.087 48.9159 122.188 49.2078 122.341 49.4448C122.493 49.6818 122.692 49.8617 122.938 49.9844C123.187 50.1029 123.477 50.1621 123.807 50.1621C124.086 50.1621 124.334 50.1134 124.55 50.0161C124.766 49.9188 124.948 49.7791 125.096 49.5972C125.244 49.4152 125.356 49.1951 125.432 48.937C125.513 48.6789 125.553 48.389 125.553 48.0674C125.553 47.7754 125.513 47.5046 125.432 47.2549C125.352 47.0052 125.231 46.7873 125.07 46.6011C124.914 46.4149 124.721 46.271 124.493 46.1694C124.264 46.0636 124.002 46.0107 123.706 46.0107C123.312 46.0107 123.014 46.0636 122.811 46.1694C122.612 46.2752 122.406 46.4191 122.195 46.6011Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M22.8563 72.4813L28.275 67.0438L27.4688 66.2375L22.8563 70.8687L20.625 68.6375L19.8188 69.4438L22.8563 72.4813ZM18.375 76.25C18.075 76.25 17.8125 76.1375 17.5875 75.9125C17.3625 75.6875 17.25 75.425 17.25 75.125V63.875C17.25 63.575 17.3625 63.3125 17.5875 63.0875C17.8125 62.8625 18.075 62.75 18.375 62.75H29.625C29.925 62.75 30.1875 62.8625 30.4125 63.0875C30.6375 63.3125 30.75 63.575 30.75 63.875V75.125C30.75 75.425 30.6375 75.6875 30.4125 75.9125C30.1875 76.1375 29.925 76.25 29.625 76.25H18.375Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M40.4878 64.7578V74H39.2817V64.7578H40.4878ZM43.4585 64.7578V65.7607H36.3174V64.7578H43.4585ZM45.3438 68.2109V74H44.1694V67.1318H45.312L45.3438 68.2109ZM47.4893 67.0938L47.4829 68.1855C47.3856 68.1644 47.2925 68.1517 47.2036 68.1475C47.119 68.139 47.0216 68.1348 46.9116 68.1348C46.6408 68.1348 46.4017 68.1771 46.1943 68.2617C45.987 68.3464 45.8114 68.4648 45.6675 68.6172C45.5236 68.7695 45.4093 68.9515 45.3247 69.1631C45.2443 69.3704 45.1914 69.599 45.166 69.8486L44.8359 70.0391C44.8359 69.6243 44.8761 69.235 44.9565 68.8711C45.0412 68.5072 45.1702 68.1855 45.3438 67.9062C45.5173 67.6227 45.7373 67.4027 46.0039 67.2461C46.2747 67.0853 46.5964 67.0049 46.9688 67.0049C47.0534 67.0049 47.1507 67.0155 47.2607 67.0366C47.3708 67.0535 47.4469 67.0726 47.4893 67.0938ZM52.3706 72.8257V69.29C52.3706 69.0192 52.3156 68.7843 52.2056 68.5854C52.0998 68.3823 51.939 68.2257 51.7231 68.1157C51.5073 68.0057 51.2407 67.9507 50.9233 67.9507C50.6271 67.9507 50.3669 68.0015 50.1426 68.103C49.9225 68.2046 49.749 68.3379 49.6221 68.5029C49.4993 68.668 49.438 68.8457 49.438 69.0361H48.2637C48.2637 68.7907 48.3271 68.5474 48.4541 68.3062C48.5811 68.0649 48.763 67.847 49 67.6523C49.2412 67.4535 49.529 67.2969 49.8633 67.1826C50.2018 67.0641 50.5785 67.0049 50.9932 67.0049C51.4925 67.0049 51.9326 67.0895 52.3135 67.2588C52.6986 67.4281 52.999 67.6841 53.2148 68.0269C53.4349 68.3654 53.5449 68.7907 53.5449 69.3027V72.502C53.5449 72.7305 53.564 72.9738 53.6021 73.2319C53.6444 73.4901 53.7057 73.7122 53.7861 73.8984V74H52.561C52.5018 73.8646 52.4552 73.6847 52.4214 73.4604C52.3875 73.2319 52.3706 73.0203 52.3706 72.8257ZM52.5737 69.8359L52.5864 70.6611H51.3994C51.0651 70.6611 50.7668 70.6886 50.5044 70.7437C50.242 70.7944 50.022 70.8727 49.8442 70.9785C49.6665 71.0843 49.5311 71.2176 49.438 71.3784C49.3449 71.535 49.2983 71.7191 49.2983 71.9307C49.2983 72.1465 49.347 72.3433 49.4443 72.521C49.5417 72.6987 49.6877 72.8405 49.8823 72.9463C50.0812 73.0479 50.3245 73.0986 50.6123 73.0986C50.972 73.0986 51.2894 73.0225 51.5645 72.8701C51.8395 72.7178 52.0575 72.5316 52.2183 72.3115C52.3833 72.0915 52.4722 71.8778 52.4849 71.6704L52.9863 72.2354C52.9567 72.4131 52.8763 72.6099 52.7451 72.8257C52.6139 73.0415 52.4383 73.2489 52.2183 73.4478C52.0024 73.6424 51.7443 73.8053 51.4438 73.9365C51.1476 74.0635 50.8133 74.127 50.4409 74.127C49.9754 74.127 49.5671 74.036 49.2158 73.854C48.8688 73.672 48.598 73.4287 48.4033 73.124C48.2129 72.8151 48.1177 72.4702 48.1177 72.0894C48.1177 71.7212 48.1896 71.3975 48.3335 71.1182C48.4774 70.8346 48.6847 70.5998 48.9556 70.4136C49.2264 70.2231 49.5522 70.0793 49.9331 69.9819C50.314 69.8846 50.7393 69.8359 51.209 69.8359H52.5737ZM56.5664 68.5981V74H55.3921V67.1318H56.5029L56.5664 68.5981ZM56.2871 70.3057L55.7983 70.2866C55.8026 69.8169 55.8724 69.3831 56.0078 68.9854C56.1432 68.5833 56.3337 68.2342 56.5791 67.938C56.8245 67.6418 57.1165 67.4132 57.4551 67.2524C57.7979 67.0874 58.1766 67.0049 58.5913 67.0049C58.9299 67.0049 59.2345 67.0514 59.5054 67.1445C59.7762 67.2334 60.0068 67.3773 60.1973 67.5762C60.3919 67.7751 60.54 68.0332 60.6416 68.3506C60.7432 68.6637 60.7939 69.0467 60.7939 69.4995V74H59.6133V69.4868C59.6133 69.1271 59.5604 68.8394 59.4546 68.6235C59.3488 68.4035 59.1943 68.2448 58.9912 68.1475C58.7881 68.0459 58.5384 67.9951 58.2422 67.9951C57.9502 67.9951 57.6836 68.0565 57.4424 68.1792C57.2054 68.3019 57.0002 68.4712 56.8267 68.687C56.6574 68.9028 56.5241 69.1504 56.4268 69.4297C56.3337 69.7048 56.2871 69.9967 56.2871 70.3057ZM66.5767 72.1782C66.5767 72.009 66.5386 71.8524 66.4624 71.7085C66.3905 71.5604 66.2402 71.4271 66.0117 71.3086C65.7874 71.1859 65.4489 71.0801 64.9961 70.9912C64.6152 70.9108 64.2703 70.8156 63.9614 70.7056C63.6567 70.5955 63.3965 70.4622 63.1807 70.3057C62.9691 70.1491 62.8062 69.965 62.6919 69.7534C62.5776 69.5418 62.5205 69.2943 62.5205 69.0107C62.5205 68.7399 62.5798 68.4839 62.6982 68.2427C62.821 68.0015 62.9924 67.7878 63.2124 67.6016C63.4367 67.4154 63.7054 67.2694 64.0186 67.1636C64.3317 67.0578 64.6808 67.0049 65.0659 67.0049C65.616 67.0049 66.0858 67.1022 66.4751 67.2969C66.8644 67.4915 67.1628 67.7518 67.3701 68.0776C67.5775 68.3993 67.6812 68.7568 67.6812 69.1504H66.5068C66.5068 68.96 66.4497 68.7759 66.3354 68.5981C66.2254 68.4162 66.0625 68.266 65.8467 68.1475C65.6351 68.029 65.3748 67.9697 65.0659 67.9697C64.7401 67.9697 64.4756 68.0205 64.2725 68.1221C64.0736 68.2194 63.9276 68.3442 63.8345 68.4966C63.7456 68.6489 63.7012 68.8097 63.7012 68.979C63.7012 69.106 63.7223 69.2202 63.7646 69.3218C63.8112 69.4191 63.8916 69.5101 64.0059 69.5947C64.1201 69.6751 64.2809 69.7513 64.4883 69.8232C64.6956 69.8952 64.9601 69.9671 65.2817 70.0391C65.8446 70.166 66.3079 70.3184 66.6719 70.4961C67.0358 70.6738 67.3066 70.8918 67.4844 71.1499C67.6621 71.408 67.751 71.7212 67.751 72.0894C67.751 72.3898 67.6875 72.6649 67.5605 72.9146C67.4378 73.1642 67.258 73.38 67.021 73.562C66.7882 73.7397 66.509 73.8794 66.1831 73.981C65.8615 74.0783 65.4997 74.127 65.0977 74.127C64.4925 74.127 63.9805 74.019 63.5615 73.8032C63.1426 73.5874 62.8252 73.3081 62.6094 72.9653C62.3936 72.6226 62.2856 72.2607 62.2856 71.8799H63.4663C63.4832 72.2015 63.5763 72.4575 63.7456 72.6479C63.9149 72.8341 64.1222 72.9674 64.3677 73.0479C64.6131 73.124 64.8564 73.1621 65.0977 73.1621C65.4193 73.1621 65.688 73.1198 65.9038 73.0352C66.1239 72.9505 66.291 72.8341 66.4053 72.686C66.5195 72.5379 66.5767 72.3687 66.5767 72.1782ZM71.0454 74H69.8711V66.4082C69.8711 65.9131 69.96 65.4963 70.1377 65.1577C70.3197 64.8149 70.5799 64.5568 70.9185 64.3833C71.257 64.2056 71.659 64.1167 72.1245 64.1167C72.2599 64.1167 72.3953 64.1252 72.5308 64.1421C72.6704 64.159 72.8058 64.1844 72.937 64.2183L72.8735 65.1768C72.7847 65.1556 72.6831 65.1408 72.5688 65.1323C72.4588 65.1239 72.3488 65.1196 72.2388 65.1196C71.9891 65.1196 71.7733 65.1704 71.5913 65.272C71.4136 65.3693 71.2782 65.5132 71.1851 65.7036C71.092 65.894 71.0454 66.1289 71.0454 66.4082V74ZM72.5054 67.1318V68.0332H68.7856V67.1318H72.5054ZM76.5107 74.127C76.0326 74.127 75.5988 74.0465 75.2095 73.8857C74.8244 73.7207 74.4922 73.4901 74.2129 73.1938C73.9378 72.8976 73.7262 72.5464 73.5781 72.1401C73.43 71.7339 73.356 71.2896 73.356 70.8071V70.5405C73.356 69.9819 73.4385 69.4847 73.6035 69.0488C73.7686 68.6087 73.9928 68.2363 74.2764 67.9316C74.5599 67.627 74.8815 67.3963 75.2412 67.2397C75.6009 67.0832 75.9733 67.0049 76.3584 67.0049C76.8493 67.0049 77.2725 67.0895 77.6279 67.2588C77.9876 67.4281 78.2817 67.665 78.5103 67.9697C78.7388 68.2702 78.908 68.6257 79.0181 69.0361C79.1281 69.4424 79.1831 69.8867 79.1831 70.3691V70.896H74.0542V69.9375H78.0088V69.8486C77.9919 69.5439 77.9284 69.2477 77.8184 68.96C77.7126 68.6722 77.5433 68.4352 77.3105 68.249C77.0778 68.0628 76.7604 67.9697 76.3584 67.9697C76.0918 67.9697 75.8464 68.0269 75.6221 68.1411C75.3978 68.2511 75.2052 68.4162 75.0444 68.6362C74.8836 68.8563 74.7588 69.125 74.6699 69.4424C74.5811 69.7598 74.5366 70.1258 74.5366 70.5405V70.8071C74.5366 71.133 74.5811 71.4398 74.6699 71.7275C74.763 72.0111 74.8963 72.2607 75.0698 72.4766C75.2476 72.6924 75.4613 72.8617 75.7109 72.9844C75.9648 73.1071 76.2526 73.1685 76.5742 73.1685C76.9889 73.1685 77.3402 73.0838 77.6279 72.9146C77.9157 72.7453 78.1675 72.5189 78.3833 72.2354L79.0942 72.8003C78.9461 73.0246 78.7578 73.2383 78.5293 73.4414C78.3008 73.6445 78.0194 73.8096 77.6851 73.9365C77.355 74.0635 76.9635 74.127 76.5107 74.127ZM81.7285 68.2109V74H80.5542V67.1318H81.6968L81.7285 68.2109ZM83.874 67.0938L83.8677 68.1855C83.7703 68.1644 83.6772 68.1517 83.5884 68.1475C83.5037 68.139 83.4064 68.1348 83.2964 68.1348C83.0256 68.1348 82.7865 68.1771 82.5791 68.2617C82.3717 68.3464 82.1961 68.4648 82.0522 68.6172C81.9084 68.7695 81.7941 68.9515 81.7095 69.1631C81.6291 69.3704 81.5762 69.599 81.5508 69.8486L81.2207 70.0391C81.2207 69.6243 81.2609 69.235 81.3413 68.8711C81.4259 68.5072 81.555 68.1855 81.7285 67.9062C81.902 67.6227 82.1221 67.4027 82.3887 67.2461C82.6595 67.0853 82.9811 67.0049 83.3535 67.0049C83.4382 67.0049 83.5355 67.0155 83.6455 67.0366C83.7555 67.0535 83.8317 67.0726 83.874 67.0938ZM94.1191 69.0425V70.147H87.7842V69.0425H94.1191ZM91.542 66.3447V73.0732H90.3677V66.3447H91.542ZM102.168 63.2598V65.1958H101.216V63.2598H102.168ZM102.054 73.6255V75.3203H101.108V73.6255H102.054ZM103.323 71.6196C103.323 71.3657 103.266 71.1372 103.152 70.9341C103.038 70.731 102.849 70.5448 102.587 70.3755C102.325 70.2062 101.973 70.0496 101.533 69.9058C101 69.7407 100.539 69.5397 100.149 69.3027C99.7643 69.0658 99.466 68.7716 99.2544 68.4204C99.047 68.0692 98.9434 67.6439 98.9434 67.1445C98.9434 66.624 99.0555 66.1755 99.2798 65.7988C99.5041 65.4222 99.8215 65.1323 100.232 64.9292C100.642 64.7261 101.125 64.6245 101.679 64.6245C102.111 64.6245 102.496 64.6901 102.834 64.8213C103.173 64.9482 103.459 65.1387 103.691 65.3926C103.928 65.6465 104.108 65.9575 104.231 66.3257C104.358 66.6938 104.421 67.1191 104.421 67.6016H103.253C103.253 67.318 103.22 67.0578 103.152 66.8208C103.084 66.5838 102.983 66.3786 102.847 66.2051C102.712 66.0273 102.547 65.8919 102.352 65.7988C102.157 65.7015 101.933 65.6528 101.679 65.6528C101.324 65.6528 101.03 65.7142 100.797 65.8369C100.568 65.9596 100.399 66.1331 100.289 66.3574C100.179 66.5775 100.124 66.8335 100.124 67.1255C100.124 67.3963 100.179 67.6333 100.289 67.8364C100.399 68.0396 100.585 68.2236 100.848 68.3887C101.114 68.5495 101.48 68.7082 101.946 68.8647C102.492 69.0382 102.955 69.2435 103.336 69.4805C103.717 69.7132 104.007 70.001 104.206 70.3438C104.404 70.6823 104.504 71.1034 104.504 71.6069C104.504 72.1528 104.381 72.6141 104.136 72.9907C103.89 73.3631 103.545 73.6466 103.101 73.8413C102.657 74.036 102.136 74.1333 101.54 74.1333C101.18 74.1333 100.824 74.0846 100.473 73.9873C100.122 73.89 99.8045 73.7313 99.521 73.5112C99.2375 73.2869 99.0111 72.9928 98.8418 72.6289C98.6725 72.2607 98.5879 71.8101 98.5879 71.2769H99.7686C99.7686 71.6366 99.8193 71.9349 99.9209 72.1719C100.027 72.4046 100.166 72.5908 100.34 72.7305C100.513 72.8659 100.704 72.9632 100.911 73.0225C101.123 73.0775 101.332 73.105 101.54 73.105C101.92 73.105 102.242 73.0457 102.504 72.9272C102.771 72.8045 102.974 72.631 103.114 72.4067C103.253 72.1825 103.323 71.9201 103.323 71.6196ZM107.684 68.8013H108.522C108.932 68.8013 109.271 68.7336 109.538 68.5981C109.808 68.4585 110.009 68.2702 110.141 68.0332C110.276 67.792 110.344 67.5212 110.344 67.2207C110.344 66.8652 110.285 66.5669 110.166 66.3257C110.048 66.0845 109.87 65.9025 109.633 65.7798C109.396 65.6571 109.095 65.5957 108.731 65.5957C108.401 65.5957 108.109 65.6613 107.855 65.7925C107.606 65.9194 107.409 66.1014 107.265 66.3384C107.125 66.5754 107.056 66.8547 107.056 67.1763H105.881C105.881 66.7065 106 66.2791 106.237 65.894C106.474 65.509 106.806 65.2021 107.233 64.9736C107.665 64.7451 108.164 64.6309 108.731 64.6309C109.29 64.6309 109.779 64.7303 110.198 64.9292C110.617 65.1239 110.943 65.4159 111.175 65.8052C111.408 66.1903 111.524 66.6706 111.524 67.2461C111.524 67.4788 111.469 67.7285 111.359 67.9951C111.254 68.2575 111.086 68.5029 110.858 68.7314C110.634 68.96 110.342 69.1483 109.982 69.2964C109.622 69.4403 109.191 69.5122 108.687 69.5122H107.684V68.8013ZM107.684 69.7661V69.0615H108.687C109.275 69.0615 109.762 69.1313 110.147 69.271C110.532 69.4106 110.835 69.5968 111.055 69.8296C111.279 70.0623 111.436 70.3184 111.524 70.5977C111.618 70.8727 111.664 71.1478 111.664 71.4229C111.664 71.8545 111.59 72.2375 111.442 72.5718C111.298 72.9061 111.093 73.1896 110.826 73.4224C110.564 73.6551 110.255 73.8307 109.899 73.9492C109.544 74.0677 109.157 74.127 108.738 74.127C108.336 74.127 107.957 74.0698 107.602 73.9556C107.25 73.8413 106.939 73.6763 106.668 73.4604C106.398 73.2404 106.186 72.9717 106.034 72.6543C105.881 72.3327 105.805 71.9666 105.805 71.5562H106.979C106.979 71.8778 107.049 72.1592 107.189 72.4004C107.333 72.6416 107.536 72.8299 107.798 72.9653C108.065 73.0965 108.378 73.1621 108.738 73.1621C109.097 73.1621 109.406 73.1007 109.665 72.978C109.927 72.8511 110.128 72.6606 110.268 72.4067C110.411 72.1528 110.483 71.8333 110.483 71.4482C110.483 71.0632 110.403 70.7479 110.242 70.5024C110.081 70.2528 109.853 70.0687 109.557 69.9502C109.265 69.8275 108.92 69.7661 108.522 69.7661H107.684ZM119.084 68.6426V70.0518C119.084 70.8092 119.017 71.4482 118.881 71.9688C118.746 72.4893 118.551 72.9082 118.297 73.2256C118.043 73.543 117.737 73.7736 117.377 73.9175C117.021 74.0571 116.619 74.127 116.171 74.127C115.815 74.127 115.487 74.0825 115.187 73.9937C114.887 73.9048 114.616 73.763 114.375 73.5684C114.138 73.3695 113.934 73.1113 113.765 72.7939C113.596 72.4766 113.467 72.0915 113.378 71.6387C113.289 71.1859 113.245 70.6569 113.245 70.0518V68.6426C113.245 67.8851 113.312 67.2503 113.448 66.7383C113.587 66.2262 113.784 65.8158 114.038 65.5068C114.292 65.1937 114.597 64.9694 114.952 64.834C115.312 64.6986 115.714 64.6309 116.158 64.6309C116.518 64.6309 116.848 64.6753 117.148 64.7642C117.453 64.8488 117.724 64.9863 117.961 65.1768C118.198 65.363 118.399 65.6126 118.564 65.9258C118.733 66.2347 118.862 66.6134 118.951 67.062C119.04 67.5106 119.084 68.0374 119.084 68.6426ZM117.904 70.2422V68.4458C117.904 68.0311 117.878 67.6672 117.828 67.354C117.781 67.0366 117.711 66.7658 117.618 66.5415C117.525 66.3172 117.407 66.1353 117.263 65.9956C117.123 65.856 116.96 65.7544 116.774 65.6909C116.592 65.6232 116.387 65.5894 116.158 65.5894C115.879 65.5894 115.631 65.6423 115.416 65.748C115.2 65.8496 115.018 66.0125 114.87 66.2368C114.726 66.4611 114.616 66.7552 114.54 67.1191C114.463 67.4831 114.425 67.9253 114.425 68.4458V70.2422C114.425 70.6569 114.449 71.0229 114.495 71.3403C114.546 71.6577 114.62 71.9328 114.717 72.1655C114.815 72.394 114.933 72.5824 115.073 72.7305C115.212 72.8786 115.373 72.9886 115.555 73.0605C115.741 73.1283 115.947 73.1621 116.171 73.1621C116.459 73.1621 116.71 73.1071 116.926 72.9971C117.142 72.887 117.322 72.7157 117.466 72.4829C117.614 72.2459 117.724 71.9434 117.796 71.5752C117.868 71.2028 117.904 70.7585 117.904 70.2422Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"15",y:"88.5",width:"268",height:"38",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M31.6523 108.561H32.8711C32.8076 109.145 32.6405 109.668 32.3696 110.129C32.0988 110.59 31.7158 110.956 31.2207 111.227C30.7256 111.494 30.1077 111.627 29.3672 111.627C28.8255 111.627 28.3325 111.525 27.8882 111.322C27.4481 111.119 27.0693 110.831 26.752 110.459C26.4346 110.082 26.1891 109.632 26.0156 109.107C25.8464 108.578 25.7617 107.99 25.7617 107.342V106.422C25.7617 105.774 25.8464 105.188 26.0156 104.664C26.1891 104.135 26.4367 103.682 26.7583 103.305C27.0841 102.929 27.4756 102.639 27.9326 102.436C28.3896 102.232 28.9038 102.131 29.4751 102.131C30.1733 102.131 30.7637 102.262 31.2461 102.524C31.7285 102.787 32.103 103.151 32.3696 103.616C32.6405 104.077 32.8076 104.613 32.8711 105.222H31.6523C31.5931 104.791 31.4831 104.42 31.3223 104.111C31.1615 103.798 30.9329 103.557 30.6367 103.388C30.3405 103.218 29.9533 103.134 29.4751 103.134C29.0646 103.134 28.7028 103.212 28.3896 103.369C28.0807 103.525 27.8205 103.747 27.6089 104.035C27.4015 104.323 27.245 104.668 27.1392 105.07C27.0334 105.472 26.9805 105.918 26.9805 106.409V107.342C26.9805 107.795 27.027 108.22 27.1201 108.618C27.2174 109.016 27.3634 109.365 27.5581 109.666C27.7528 109.966 28.0003 110.203 28.3008 110.376C28.6012 110.546 28.9567 110.63 29.3672 110.63C29.8877 110.63 30.3024 110.548 30.6113 110.383C30.9202 110.218 31.153 109.981 31.3096 109.672C31.4704 109.363 31.5846 108.993 31.6523 108.561ZM38.4126 110.326V106.79C38.4126 106.519 38.3576 106.284 38.2476 106.085C38.1418 105.882 37.981 105.726 37.7651 105.616C37.5493 105.506 37.2827 105.451 36.9653 105.451C36.6691 105.451 36.4089 105.501 36.1846 105.603C35.9645 105.705 35.791 105.838 35.6641 106.003C35.5413 106.168 35.48 106.346 35.48 106.536H34.3057C34.3057 106.291 34.3691 106.047 34.4961 105.806C34.623 105.565 34.805 105.347 35.042 105.152C35.2832 104.953 35.571 104.797 35.9053 104.683C36.2438 104.564 36.6204 104.505 37.0352 104.505C37.5345 104.505 37.9746 104.59 38.3555 104.759C38.7406 104.928 39.041 105.184 39.2568 105.527C39.4769 105.865 39.5869 106.291 39.5869 106.803V110.002C39.5869 110.23 39.606 110.474 39.644 110.732C39.6864 110.99 39.7477 111.212 39.8281 111.398V111.5H38.603C38.5438 111.365 38.4972 111.185 38.4634 110.96C38.4295 110.732 38.4126 110.52 38.4126 110.326ZM38.6157 107.336L38.6284 108.161H37.4414C37.1071 108.161 36.8088 108.189 36.5464 108.244C36.284 108.294 36.064 108.373 35.8862 108.479C35.7085 108.584 35.5731 108.718 35.48 108.878C35.3869 109.035 35.3403 109.219 35.3403 109.431C35.3403 109.646 35.389 109.843 35.4863 110.021C35.5837 110.199 35.7297 110.34 35.9243 110.446C36.1232 110.548 36.3665 110.599 36.6543 110.599C37.014 110.599 37.3314 110.522 37.6064 110.37C37.8815 110.218 38.0994 110.032 38.2603 109.812C38.4253 109.591 38.5142 109.378 38.5269 109.17L39.0283 109.735C38.9987 109.913 38.9183 110.11 38.7871 110.326C38.6559 110.542 38.4803 110.749 38.2603 110.948C38.0444 111.142 37.7863 111.305 37.4858 111.437C37.1896 111.563 36.8553 111.627 36.4829 111.627C36.0174 111.627 35.609 111.536 35.2578 111.354C34.9108 111.172 34.64 110.929 34.4453 110.624C34.2549 110.315 34.1597 109.97 34.1597 109.589C34.1597 109.221 34.2316 108.897 34.3755 108.618C34.5194 108.335 34.7267 108.1 34.9976 107.914C35.2684 107.723 35.5942 107.579 35.9751 107.482C36.356 107.385 36.7812 107.336 37.251 107.336H38.6157ZM42.71 101.75V111.5H41.5293V101.75H42.71ZM47.3438 110.662C47.623 110.662 47.8812 110.605 48.1182 110.491C48.3551 110.376 48.5498 110.22 48.7021 110.021C48.8545 109.818 48.9412 109.587 48.9624 109.329H50.0796C50.0584 109.735 49.9209 110.114 49.667 110.465C49.4173 110.812 49.0894 111.094 48.6831 111.31C48.2769 111.521 47.8304 111.627 47.3438 111.627C46.8275 111.627 46.3768 111.536 45.9917 111.354C45.6108 111.172 45.2935 110.922 45.0396 110.605C44.7899 110.288 44.6016 109.924 44.4746 109.513C44.3519 109.098 44.2905 108.66 44.2905 108.199V107.933C44.2905 107.471 44.3519 107.035 44.4746 106.625C44.6016 106.21 44.7899 105.844 45.0396 105.527C45.2935 105.209 45.6108 104.96 45.9917 104.778C46.3768 104.596 46.8275 104.505 47.3438 104.505C47.8812 104.505 48.3509 104.615 48.7529 104.835C49.1549 105.051 49.4702 105.347 49.6987 105.724C49.9315 106.096 50.0584 106.519 50.0796 106.993H48.9624C48.9412 106.71 48.8608 106.454 48.7212 106.225C48.5858 105.997 48.3996 105.815 48.1626 105.679C47.9299 105.54 47.6569 105.47 47.3438 105.47C46.984 105.47 46.6815 105.542 46.436 105.686C46.1948 105.825 46.0023 106.016 45.8584 106.257C45.7188 106.494 45.6172 106.758 45.5537 107.05C45.4945 107.338 45.4648 107.632 45.4648 107.933V108.199C45.4648 108.5 45.4945 108.796 45.5537 109.088C45.613 109.38 45.7124 109.644 45.8521 109.881C45.9959 110.118 46.1885 110.309 46.4297 110.453C46.6751 110.592 46.9798 110.662 47.3438 110.662ZM55.6021 109.913V104.632H56.7827V111.5H55.6592L55.6021 109.913ZM55.8242 108.466L56.313 108.453C56.313 108.91 56.2643 109.333 56.167 109.723C56.0739 110.108 55.9215 110.442 55.71 110.726C55.4984 111.009 55.2212 111.231 54.8784 111.392C54.5356 111.549 54.1188 111.627 53.6279 111.627C53.2936 111.627 52.9868 111.578 52.7075 111.481C52.4325 111.384 52.1955 111.233 51.9966 111.03C51.7977 110.827 51.6432 110.563 51.5332 110.237C51.4274 109.911 51.3745 109.52 51.3745 109.062V104.632H52.5488V109.075C52.5488 109.384 52.5827 109.64 52.6504 109.843C52.7223 110.042 52.8175 110.201 52.936 110.319C53.0588 110.434 53.1942 110.514 53.3423 110.561C53.4946 110.607 53.6512 110.63 53.812 110.63C54.3114 110.63 54.707 110.535 54.999 110.345C55.291 110.15 55.5005 109.89 55.6274 109.564C55.7586 109.234 55.8242 108.868 55.8242 108.466ZM59.8486 101.75V111.5H58.668V101.75H59.8486ZM65.7837 110.326V106.79C65.7837 106.519 65.7287 106.284 65.6187 106.085C65.5129 105.882 65.3521 105.726 65.1362 105.616C64.9204 105.506 64.6538 105.451 64.3364 105.451C64.0402 105.451 63.7799 105.501 63.5557 105.603C63.3356 105.705 63.1621 105.838 63.0352 106.003C62.9124 106.168 62.8511 106.346 62.8511 106.536H61.6768C61.6768 106.291 61.7402 106.047 61.8672 105.806C61.9941 105.565 62.1761 105.347 62.4131 105.152C62.6543 104.953 62.9421 104.797 63.2764 104.683C63.6149 104.564 63.9915 104.505 64.4062 104.505C64.9056 104.505 65.3457 104.59 65.7266 104.759C66.1117 104.928 66.4121 105.184 66.6279 105.527C66.848 105.865 66.958 106.291 66.958 106.803V110.002C66.958 110.23 66.9771 110.474 67.0151 110.732C67.0575 110.99 67.1188 111.212 67.1992 111.398V111.5H65.9741C65.9149 111.365 65.8683 111.185 65.8345 110.96C65.8006 110.732 65.7837 110.52 65.7837 110.326ZM65.9868 107.336L65.9995 108.161H64.8125C64.4782 108.161 64.1799 108.189 63.9175 108.244C63.6551 108.294 63.4351 108.373 63.2573 108.479C63.0796 108.584 62.9442 108.718 62.8511 108.878C62.758 109.035 62.7114 109.219 62.7114 109.431C62.7114 109.646 62.7601 109.843 62.8574 110.021C62.9548 110.199 63.1007 110.34 63.2954 110.446C63.4943 110.548 63.7376 110.599 64.0254 110.599C64.3851 110.599 64.7025 110.522 64.9775 110.37C65.2526 110.218 65.4705 110.032 65.6313 109.812C65.7964 109.591 65.8853 109.378 65.8979 109.17L66.3994 109.735C66.3698 109.913 66.2894 110.11 66.1582 110.326C66.027 110.542 65.8514 110.749 65.6313 110.948C65.4155 111.142 65.1574 111.305 64.8569 111.437C64.5607 111.563 64.2264 111.627 63.854 111.627C63.3885 111.627 62.9801 111.536 62.6289 111.354C62.2819 111.172 62.0111 110.929 61.8164 110.624C61.626 110.315 61.5308 109.97 61.5308 109.589C61.5308 109.221 61.6027 108.897 61.7466 108.618C61.8905 108.335 62.0978 108.1 62.3687 107.914C62.6395 107.723 62.9653 107.579 63.3462 107.482C63.7271 107.385 64.1523 107.336 64.6221 107.336H65.9868ZM71.6807 104.632V105.533H67.9673V104.632H71.6807ZM69.2241 102.962H70.3984V109.799C70.3984 110.032 70.4344 110.207 70.5063 110.326C70.5783 110.444 70.6714 110.522 70.7856 110.561C70.8999 110.599 71.0226 110.618 71.1538 110.618C71.2511 110.618 71.3527 110.609 71.4585 110.592C71.5685 110.571 71.651 110.554 71.7061 110.542L71.7124 111.5C71.6193 111.53 71.4966 111.557 71.3442 111.583C71.1961 111.612 71.0163 111.627 70.8047 111.627C70.5169 111.627 70.2524 111.57 70.0112 111.456C69.77 111.341 69.5775 111.151 69.4336 110.884C69.2939 110.613 69.2241 110.25 69.2241 109.792V102.962ZM75.9082 111.627C75.43 111.627 74.9963 111.547 74.6069 111.386C74.2218 111.221 73.8896 110.99 73.6104 110.694C73.3353 110.398 73.1237 110.046 72.9756 109.64C72.8275 109.234 72.7534 108.79 72.7534 108.307V108.041C72.7534 107.482 72.8359 106.985 73.001 106.549C73.166 106.109 73.3903 105.736 73.6738 105.432C73.9574 105.127 74.279 104.896 74.6387 104.74C74.9984 104.583 75.3708 104.505 75.7559 104.505C76.2467 104.505 76.6699 104.59 77.0254 104.759C77.3851 104.928 77.6792 105.165 77.9077 105.47C78.1362 105.77 78.3055 106.126 78.4155 106.536C78.5256 106.942 78.5806 107.387 78.5806 107.869V108.396H73.4517V107.438H77.4062V107.349C77.3893 107.044 77.3258 106.748 77.2158 106.46C77.11 106.172 76.9408 105.935 76.708 105.749C76.4753 105.563 76.1579 105.47 75.7559 105.47C75.4893 105.47 75.2438 105.527 75.0195 105.641C74.7952 105.751 74.6027 105.916 74.4419 106.136C74.2811 106.356 74.1562 106.625 74.0674 106.942C73.9785 107.26 73.9341 107.626 73.9341 108.041V108.307C73.9341 108.633 73.9785 108.94 74.0674 109.228C74.1605 109.511 74.2938 109.761 74.4673 109.977C74.645 110.192 74.8587 110.362 75.1084 110.484C75.3623 110.607 75.6501 110.668 75.9717 110.668C76.3864 110.668 76.7376 110.584 77.0254 110.415C77.3132 110.245 77.5649 110.019 77.7808 109.735L78.4917 110.3C78.3436 110.525 78.1553 110.738 77.9268 110.941C77.6982 111.145 77.4168 111.31 77.0825 111.437C76.7524 111.563 76.361 111.627 75.9082 111.627ZM84.2808 110.167V101.75H85.4614V111.5H84.3823L84.2808 110.167ZM79.6597 108.142V108.009C79.6597 107.484 79.7231 107.008 79.8501 106.581C79.9813 106.149 80.1654 105.779 80.4023 105.47C80.6436 105.161 80.9292 104.924 81.2593 104.759C81.5936 104.59 81.966 104.505 82.3765 104.505C82.8081 104.505 83.1847 104.581 83.5063 104.733C83.8322 104.882 84.1073 105.099 84.3315 105.387C84.5601 105.671 84.7399 106.014 84.8711 106.416C85.0023 106.818 85.0933 107.272 85.144 107.78V108.364C85.0975 108.868 85.0065 109.321 84.8711 109.723C84.7399 110.125 84.5601 110.467 84.3315 110.751C84.1073 111.035 83.8322 111.252 83.5063 111.405C83.1805 111.553 82.7996 111.627 82.3638 111.627C81.9618 111.627 81.5936 111.54 81.2593 111.367C80.9292 111.193 80.6436 110.95 80.4023 110.637C80.1654 110.324 79.9813 109.955 79.8501 109.532C79.7231 109.105 79.6597 108.641 79.6597 108.142ZM80.8403 108.009V108.142C80.8403 108.485 80.8742 108.806 80.9419 109.107C81.0138 109.407 81.1239 109.672 81.272 109.9C81.4201 110.129 81.6084 110.309 81.8369 110.44C82.0654 110.567 82.3384 110.63 82.6558 110.63C83.0451 110.63 83.3646 110.548 83.6143 110.383C83.8682 110.218 84.0713 110 84.2236 109.729C84.376 109.458 84.4945 109.164 84.5791 108.847V107.317C84.5283 107.084 84.4543 106.86 84.3569 106.644C84.2638 106.424 84.1411 106.229 83.9888 106.06C83.8407 105.887 83.6566 105.749 83.4365 105.647C83.2207 105.546 82.9647 105.495 82.6685 105.495C82.3468 105.495 82.0697 105.563 81.8369 105.698C81.6084 105.829 81.4201 106.011 81.272 106.244C81.1239 106.473 81.0138 106.739 80.9419 107.044C80.8742 107.344 80.8403 107.666 80.8403 108.009ZM91.6885 105.952V114.141H90.5078V104.632H91.5869L91.6885 105.952ZM96.3159 108.009V108.142C96.3159 108.641 96.2567 109.105 96.1382 109.532C96.0197 109.955 95.8462 110.324 95.6177 110.637C95.3934 110.95 95.1162 111.193 94.7861 111.367C94.4561 111.54 94.0773 111.627 93.6499 111.627C93.214 111.627 92.8289 111.555 92.4946 111.411C92.1603 111.267 91.8768 111.058 91.644 110.783C91.4113 110.508 91.2251 110.178 91.0854 109.792C90.95 109.407 90.8569 108.974 90.8062 108.491V107.78C90.8569 107.272 90.9521 106.818 91.0918 106.416C91.2314 106.014 91.4155 105.671 91.644 105.387C91.8768 105.099 92.1582 104.882 92.4883 104.733C92.8184 104.581 93.1992 104.505 93.6309 104.505C94.0625 104.505 94.4455 104.59 94.7798 104.759C95.1141 104.924 95.3955 105.161 95.624 105.47C95.8525 105.779 96.0239 106.149 96.1382 106.581C96.2567 107.008 96.3159 107.484 96.3159 108.009ZM95.1353 108.142V108.009C95.1353 107.666 95.0993 107.344 95.0273 107.044C94.9554 106.739 94.8433 106.473 94.6909 106.244C94.5428 106.011 94.3524 105.829 94.1196 105.698C93.8869 105.563 93.6097 105.495 93.2881 105.495C92.9919 105.495 92.7337 105.546 92.5137 105.647C92.2979 105.749 92.1138 105.887 91.9614 106.06C91.8091 106.229 91.6842 106.424 91.5869 106.644C91.4938 106.86 91.424 107.084 91.3774 107.317V108.961C91.4621 109.257 91.5806 109.536 91.7329 109.799C91.8853 110.057 92.0884 110.266 92.3423 110.427C92.5962 110.584 92.9157 110.662 93.3008 110.662C93.6182 110.662 93.8911 110.597 94.1196 110.465C94.3524 110.33 94.5428 110.146 94.6909 109.913C94.8433 109.68 94.9554 109.414 95.0273 109.113C95.0993 108.809 95.1353 108.485 95.1353 108.142ZM98.9883 105.711V111.5H97.814V104.632H98.9565L98.9883 105.711ZM101.134 104.594L101.127 105.686C101.03 105.664 100.937 105.652 100.848 105.647C100.764 105.639 100.666 105.635 100.556 105.635C100.285 105.635 100.046 105.677 99.8389 105.762C99.6315 105.846 99.4559 105.965 99.312 106.117C99.1681 106.27 99.0539 106.451 98.9692 106.663C98.8888 106.87 98.8359 107.099 98.8105 107.349L98.4805 107.539C98.4805 107.124 98.5207 106.735 98.6011 106.371C98.6857 106.007 98.8148 105.686 98.9883 105.406C99.1618 105.123 99.3818 104.903 99.6484 104.746C99.9193 104.585 100.241 104.505 100.613 104.505C100.698 104.505 100.795 104.515 100.905 104.537C101.015 104.554 101.091 104.573 101.134 104.594ZM103.495 104.632V111.5H102.314V104.632H103.495ZM102.226 102.81C102.226 102.62 102.283 102.459 102.397 102.328C102.515 102.196 102.689 102.131 102.917 102.131C103.142 102.131 103.313 102.196 103.432 102.328C103.554 102.459 103.616 102.62 103.616 102.81C103.616 102.992 103.554 103.149 103.432 103.28C103.313 103.407 103.142 103.47 102.917 103.47C102.689 103.47 102.515 103.407 102.397 103.28C102.283 103.149 102.226 102.992 102.226 102.81ZM108.129 110.662C108.408 110.662 108.666 110.605 108.903 110.491C109.14 110.376 109.335 110.22 109.487 110.021C109.64 109.818 109.726 109.587 109.748 109.329H110.865C110.844 109.735 110.706 110.114 110.452 110.465C110.202 110.812 109.875 111.094 109.468 111.31C109.062 111.521 108.616 111.627 108.129 111.627C107.613 111.627 107.162 111.536 106.777 111.354C106.396 111.172 106.079 110.922 105.825 110.605C105.575 110.288 105.387 109.924 105.26 109.513C105.137 109.098 105.076 108.66 105.076 108.199V107.933C105.076 107.471 105.137 107.035 105.26 106.625C105.387 106.21 105.575 105.844 105.825 105.527C106.079 105.209 106.396 104.96 106.777 104.778C107.162 104.596 107.613 104.505 108.129 104.505C108.666 104.505 109.136 104.615 109.538 104.835C109.94 105.051 110.255 105.347 110.484 105.724C110.717 106.096 110.844 106.519 110.865 106.993H109.748C109.726 106.71 109.646 106.454 109.506 106.225C109.371 105.997 109.185 105.815 108.948 105.679C108.715 105.54 108.442 105.47 108.129 105.47C107.769 105.47 107.467 105.542 107.221 105.686C106.98 105.825 106.787 106.016 106.644 106.257C106.504 106.494 106.402 106.758 106.339 107.05C106.28 107.338 106.25 107.632 106.25 107.933V108.199C106.25 108.5 106.28 108.796 106.339 109.088C106.398 109.38 106.498 109.644 106.637 109.881C106.781 110.118 106.974 110.309 107.215 110.453C107.46 110.592 107.765 110.662 108.129 110.662ZM115.035 111.627C114.557 111.627 114.123 111.547 113.734 111.386C113.349 111.221 113.017 110.99 112.737 110.694C112.462 110.398 112.251 110.046 112.103 109.64C111.954 109.234 111.88 108.79 111.88 108.307V108.041C111.88 107.482 111.963 106.985 112.128 106.549C112.293 106.109 112.517 105.736 112.801 105.432C113.084 105.127 113.406 104.896 113.766 104.74C114.125 104.583 114.498 104.505 114.883 104.505C115.374 104.505 115.797 104.59 116.152 104.759C116.512 104.928 116.806 105.165 117.035 105.47C117.263 105.77 117.432 106.126 117.542 106.536C117.653 106.942 117.708 107.387 117.708 107.869V108.396H112.579V107.438H116.533V107.349C116.516 107.044 116.453 106.748 116.343 106.46C116.237 106.172 116.068 105.935 115.835 105.749C115.602 105.563 115.285 105.47 114.883 105.47C114.616 105.47 114.371 105.527 114.146 105.641C113.922 105.751 113.73 105.916 113.569 106.136C113.408 106.356 113.283 106.625 113.194 106.942C113.105 107.26 113.061 107.626 113.061 108.041V108.307C113.061 108.633 113.105 108.94 113.194 109.228C113.287 109.511 113.421 109.761 113.594 109.977C113.772 110.192 113.986 110.362 114.235 110.484C114.489 110.607 114.777 110.668 115.099 110.668C115.513 110.668 115.865 110.584 116.152 110.415C116.44 110.245 116.692 110.019 116.908 109.735L117.619 110.3C117.471 110.525 117.282 110.738 117.054 110.941C116.825 111.145 116.544 111.31 116.209 111.437C115.879 111.563 115.488 111.627 115.035 111.627ZM119.028 110.878C119.028 110.679 119.089 110.512 119.212 110.376C119.339 110.237 119.521 110.167 119.758 110.167C119.995 110.167 120.175 110.237 120.297 110.376C120.424 110.512 120.488 110.679 120.488 110.878C120.488 111.073 120.424 111.238 120.297 111.373C120.175 111.508 119.995 111.576 119.758 111.576C119.521 111.576 119.339 111.508 119.212 111.373C119.089 111.238 119.028 111.073 119.028 110.878ZM119.034 105.273C119.034 105.074 119.096 104.907 119.218 104.771C119.345 104.632 119.527 104.562 119.764 104.562C120.001 104.562 120.181 104.632 120.304 104.771C120.431 104.907 120.494 105.074 120.494 105.273C120.494 105.468 120.431 105.633 120.304 105.768C120.181 105.903 120.001 105.971 119.764 105.971C119.527 105.971 119.345 105.903 119.218 105.768C119.096 105.633 119.034 105.468 119.034 105.273Z",fill:"white"}),(0,h.createElement)("path",{d:"M131.45 100.792V102.664H130.459V100.792H131.45ZM131.329 111.157V112.865H130.339V111.157H131.329ZM132.027 109.075C132.027 108.834 131.983 108.629 131.894 108.459C131.809 108.29 131.67 108.14 131.475 108.009C131.285 107.878 131.027 107.751 130.701 107.628C130.151 107.416 129.666 107.192 129.247 106.955C128.832 106.714 128.509 106.416 128.276 106.06C128.043 105.7 127.927 105.245 127.927 104.695C127.927 104.171 128.052 103.716 128.301 103.331C128.551 102.945 128.896 102.649 129.336 102.442C129.78 102.23 130.297 102.125 130.885 102.125C131.333 102.125 131.74 102.192 132.104 102.328C132.467 102.459 132.781 102.653 133.043 102.912C133.305 103.166 133.506 103.477 133.646 103.845C133.786 104.213 133.855 104.634 133.855 105.108H132.034C132.034 104.854 132.006 104.63 131.951 104.435C131.896 104.24 131.816 104.077 131.71 103.946C131.608 103.815 131.486 103.718 131.342 103.654C131.198 103.587 131.039 103.553 130.866 103.553C130.608 103.553 130.396 103.604 130.231 103.705C130.066 103.807 129.945 103.944 129.869 104.118C129.797 104.287 129.761 104.482 129.761 104.702C129.761 104.917 129.799 105.106 129.875 105.267C129.956 105.427 130.093 105.576 130.288 105.711C130.483 105.842 130.749 105.978 131.088 106.117C131.638 106.329 132.12 106.557 132.535 106.803C132.95 107.048 133.274 107.349 133.506 107.704C133.739 108.06 133.855 108.512 133.855 109.062C133.855 109.608 133.729 110.074 133.475 110.459C133.221 110.84 132.865 111.132 132.408 111.335C131.951 111.534 131.422 111.633 130.821 111.633C130.432 111.633 130.045 111.583 129.66 111.481C129.275 111.375 128.925 111.206 128.612 110.973C128.299 110.74 128.049 110.431 127.863 110.046C127.677 109.657 127.584 109.179 127.584 108.612H129.412C129.412 108.921 129.452 109.179 129.533 109.386C129.613 109.589 129.719 109.752 129.85 109.875C129.986 109.993 130.138 110.078 130.307 110.129C130.476 110.18 130.648 110.205 130.821 110.205C131.092 110.205 131.314 110.156 131.488 110.059C131.666 109.962 131.799 109.828 131.888 109.659C131.981 109.486 132.027 109.291 132.027 109.075ZM141.422 110.072V111.5H135.1V110.281L138.089 107.076C138.39 106.741 138.627 106.447 138.8 106.193C138.974 105.935 139.099 105.705 139.175 105.501C139.255 105.294 139.295 105.097 139.295 104.911C139.295 104.632 139.249 104.393 139.156 104.194C139.063 103.991 138.925 103.834 138.743 103.724C138.565 103.614 138.345 103.559 138.083 103.559C137.804 103.559 137.562 103.627 137.359 103.762C137.16 103.898 137.008 104.086 136.902 104.327C136.801 104.568 136.75 104.841 136.75 105.146H134.916C134.916 104.596 135.047 104.092 135.309 103.635C135.571 103.174 135.942 102.808 136.42 102.537C136.898 102.262 137.465 102.125 138.121 102.125C138.769 102.125 139.314 102.23 139.759 102.442C140.207 102.649 140.546 102.95 140.774 103.343C141.007 103.733 141.124 104.198 141.124 104.74C141.124 105.044 141.075 105.343 140.978 105.635C140.88 105.923 140.741 106.21 140.559 106.498C140.381 106.782 140.165 107.069 139.911 107.361C139.657 107.653 139.376 107.956 139.067 108.269L137.461 110.072H141.422ZM148.785 106.066V107.666C148.785 108.36 148.711 108.959 148.563 109.462C148.415 109.962 148.201 110.372 147.922 110.694C147.647 111.011 147.319 111.246 146.938 111.398C146.557 111.551 146.134 111.627 145.668 111.627C145.296 111.627 144.949 111.58 144.627 111.487C144.306 111.39 144.016 111.24 143.758 111.037C143.504 110.833 143.284 110.577 143.098 110.269C142.916 109.955 142.776 109.583 142.679 109.151C142.581 108.72 142.533 108.225 142.533 107.666V106.066C142.533 105.372 142.607 104.778 142.755 104.283C142.907 103.783 143.121 103.375 143.396 103.058C143.675 102.74 144.005 102.507 144.386 102.359C144.767 102.207 145.19 102.131 145.656 102.131C146.028 102.131 146.373 102.18 146.69 102.277C147.012 102.37 147.302 102.516 147.56 102.715C147.818 102.914 148.038 103.17 148.22 103.483C148.402 103.792 148.542 104.162 148.639 104.594C148.736 105.021 148.785 105.512 148.785 106.066ZM146.951 107.907V105.819C146.951 105.485 146.932 105.193 146.894 104.943C146.86 104.693 146.807 104.482 146.735 104.308C146.663 104.13 146.574 103.986 146.468 103.876C146.362 103.766 146.242 103.686 146.106 103.635C145.971 103.584 145.821 103.559 145.656 103.559C145.448 103.559 145.264 103.599 145.104 103.68C144.947 103.76 144.814 103.889 144.704 104.067C144.594 104.24 144.509 104.473 144.45 104.765C144.395 105.053 144.367 105.404 144.367 105.819V107.907C144.367 108.242 144.384 108.536 144.418 108.79C144.456 109.043 144.511 109.261 144.583 109.443C144.659 109.621 144.748 109.767 144.85 109.881C144.955 109.991 145.076 110.072 145.211 110.123C145.351 110.173 145.503 110.199 145.668 110.199C145.872 110.199 146.051 110.159 146.208 110.078C146.369 109.993 146.504 109.862 146.614 109.685C146.729 109.503 146.813 109.266 146.868 108.974C146.923 108.682 146.951 108.326 146.951 107.907ZM156.25 106.066V107.666C156.25 108.36 156.176 108.959 156.028 109.462C155.88 109.962 155.666 110.372 155.387 110.694C155.112 111.011 154.784 111.246 154.403 111.398C154.022 111.551 153.599 111.627 153.133 111.627C152.761 111.627 152.414 111.58 152.092 111.487C151.771 111.39 151.481 111.24 151.223 111.037C150.969 110.833 150.749 110.577 150.562 110.269C150.381 109.955 150.241 109.583 150.144 109.151C150.046 108.72 149.998 108.225 149.998 107.666V106.066C149.998 105.372 150.072 104.778 150.22 104.283C150.372 103.783 150.586 103.375 150.861 103.058C151.14 102.74 151.47 102.507 151.851 102.359C152.232 102.207 152.655 102.131 153.121 102.131C153.493 102.131 153.838 102.18 154.155 102.277C154.477 102.37 154.767 102.516 155.025 102.715C155.283 102.914 155.503 103.17 155.685 103.483C155.867 103.792 156.007 104.162 156.104 104.594C156.201 105.021 156.25 105.512 156.25 106.066ZM154.416 107.907V105.819C154.416 105.485 154.396 105.193 154.358 104.943C154.325 104.693 154.272 104.482 154.2 104.308C154.128 104.13 154.039 103.986 153.933 103.876C153.827 103.766 153.707 103.686 153.571 103.635C153.436 103.584 153.286 103.559 153.121 103.559C152.913 103.559 152.729 103.599 152.568 103.68C152.412 103.76 152.278 103.889 152.168 104.067C152.058 104.24 151.974 104.473 151.915 104.765C151.86 105.053 151.832 105.404 151.832 105.819V107.907C151.832 108.242 151.849 108.536 151.883 108.79C151.921 109.043 151.976 109.261 152.048 109.443C152.124 109.621 152.213 109.767 152.314 109.881C152.42 109.991 152.541 110.072 152.676 110.123C152.816 110.173 152.968 110.199 153.133 110.199C153.336 110.199 153.516 110.159 153.673 110.078C153.834 109.993 153.969 109.862 154.079 109.685C154.193 109.503 154.278 109.266 154.333 108.974C154.388 108.682 154.416 108.326 154.416 107.907ZM157.659 110.618C157.659 110.347 157.752 110.12 157.938 109.938C158.129 109.757 158.381 109.666 158.694 109.666C159.007 109.666 159.257 109.757 159.443 109.938C159.633 110.12 159.729 110.347 159.729 110.618C159.729 110.889 159.633 111.115 159.443 111.297C159.257 111.479 159.007 111.57 158.694 111.57C158.381 111.57 158.129 111.479 157.938 111.297C157.752 111.115 157.659 110.889 157.659 110.618ZM167.485 106.066V107.666C167.485 108.36 167.411 108.959 167.263 109.462C167.115 109.962 166.901 110.372 166.622 110.694C166.347 111.011 166.019 111.246 165.638 111.398C165.257 111.551 164.834 111.627 164.369 111.627C163.996 111.627 163.649 111.58 163.328 111.487C163.006 111.39 162.716 111.24 162.458 111.037C162.204 110.833 161.984 110.577 161.798 110.269C161.616 109.955 161.476 109.583 161.379 109.151C161.282 108.72 161.233 108.225 161.233 107.666V106.066C161.233 105.372 161.307 104.778 161.455 104.283C161.607 103.783 161.821 103.375 162.096 103.058C162.375 102.74 162.706 102.507 163.086 102.359C163.467 102.207 163.89 102.131 164.356 102.131C164.728 102.131 165.073 102.18 165.391 102.277C165.712 102.37 166.002 102.516 166.26 102.715C166.518 102.914 166.738 103.17 166.92 103.483C167.102 103.792 167.242 104.162 167.339 104.594C167.437 105.021 167.485 105.512 167.485 106.066ZM165.651 107.907V105.819C165.651 105.485 165.632 105.193 165.594 104.943C165.56 104.693 165.507 104.482 165.435 104.308C165.363 104.13 165.274 103.986 165.168 103.876C165.063 103.766 164.942 103.686 164.807 103.635C164.671 103.584 164.521 103.559 164.356 103.559C164.149 103.559 163.965 103.599 163.804 103.68C163.647 103.76 163.514 103.889 163.404 104.067C163.294 104.24 163.209 104.473 163.15 104.765C163.095 105.053 163.067 105.404 163.067 105.819V107.907C163.067 108.242 163.084 108.536 163.118 108.79C163.156 109.043 163.211 109.261 163.283 109.443C163.359 109.621 163.448 109.767 163.55 109.881C163.656 109.991 163.776 110.072 163.912 110.123C164.051 110.173 164.204 110.199 164.369 110.199C164.572 110.199 164.752 110.159 164.908 110.078C165.069 109.993 165.204 109.862 165.314 109.685C165.429 109.503 165.513 109.266 165.568 108.974C165.623 108.682 165.651 108.326 165.651 107.907ZM174.95 106.066V107.666C174.95 108.36 174.876 108.959 174.728 109.462C174.58 109.962 174.366 110.372 174.087 110.694C173.812 111.011 173.484 111.246 173.103 111.398C172.722 111.551 172.299 111.627 171.833 111.627C171.461 111.627 171.114 111.58 170.792 111.487C170.471 111.39 170.181 111.24 169.923 111.037C169.669 110.833 169.449 110.577 169.263 110.269C169.081 109.955 168.941 109.583 168.844 109.151C168.746 108.72 168.698 108.225 168.698 107.666V106.066C168.698 105.372 168.772 104.778 168.92 104.283C169.072 103.783 169.286 103.375 169.561 103.058C169.84 102.74 170.17 102.507 170.551 102.359C170.932 102.207 171.355 102.131 171.821 102.131C172.193 102.131 172.538 102.18 172.855 102.277C173.177 102.37 173.467 102.516 173.725 102.715C173.983 102.914 174.203 103.17 174.385 103.483C174.567 103.792 174.707 104.162 174.804 104.594C174.902 105.021 174.95 105.512 174.95 106.066ZM173.116 107.907V105.819C173.116 105.485 173.097 105.193 173.059 104.943C173.025 104.693 172.972 104.482 172.9 104.308C172.828 104.13 172.739 103.986 172.633 103.876C172.528 103.766 172.407 103.686 172.271 103.635C172.136 103.584 171.986 103.559 171.821 103.559C171.613 103.559 171.429 103.599 171.269 103.68C171.112 103.76 170.979 103.889 170.869 104.067C170.759 104.24 170.674 104.473 170.615 104.765C170.56 105.053 170.532 105.404 170.532 105.819V107.907C170.532 108.242 170.549 108.536 170.583 108.79C170.621 109.043 170.676 109.261 170.748 109.443C170.824 109.621 170.913 109.767 171.015 109.881C171.12 109.991 171.241 110.072 171.376 110.123C171.516 110.173 171.668 110.199 171.833 110.199C172.037 110.199 172.216 110.159 172.373 110.078C172.534 109.993 172.669 109.862 172.779 109.685C172.894 109.503 172.978 109.266 173.033 108.974C173.088 108.682 173.116 108.326 173.116 107.907Z",fill:"white"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_273_2176"},(0,h.createElement)("rect",{x:"15",y:"16.5",width:"268",height:"110",rx:"4",fill:"white"})))),{AdvancedFields:jC,FieldWrapper:xC,FieldSettingsWrapper:FC,ToolBarFields:BC,BlockName:AC,BlockDescription:PC,BlockLabel:SC,MacrosFields:NC,ClientSideMacros:IC}=JetFBComponents,{useUniqueNameOnDuplicate:TC}=JetFBHooks,{__:OC}=wp.i18n,{InspectorControls:JC,useBlockProps:RC}=wp.blockEditor,{TextControl:qC,TextareaControl:DC,ToggleControl:zC,PanelBody:UC,SelectControl:GC,__experimentalNumberControl:WC}=wp.components,KC=WC,$C={calc_hidden:OC("Check this to hide calculated field","jet-form-builder")},YC=JSON.parse('{"apiVersion":3,"name":"jet-forms/calculated-field","category":"jet-form-builder-fields","title":"Calculated Field","description":"Calculate and display your number values","icon":"\\n\\n","keywords":["jetformbuilder","field","calculated"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"validation":{"type":"object","default":{}},"value_type":{"type":"string","default":"number"},"date_format":{"type":"string","default":"YYYY-MM-DD"},"separate_decimals":{"type":"string","default":"."},"separate_thousands":{"type":"string","default":""},"calc_formula":{"type":"string","default":""},"precision":{"type":"number","default":2},"calc_prefix":{"type":"string","default":"","jfb":{"rich":true}},"calc_suffix":{"type":"string","default":"","jfb":{"rich":true}},"calc_hidden":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"placeholder":{"type":"string","default":""},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:XC}=wp.i18n,{createBlock:QC}=wp.blocks,{name:et,icon:Ct}=YC,tt={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ct}}),description:XC("Pull out the values from the form fields and meta fields and use them to calculate the formula of any complexity you've set before.","jet-form-builder"),edit:function(e){const C=RC();TC();const{attributes:t,setAttributes:l,isSelected:r,editProps:{uniqKey:n}}=e,a=(0,h.useRef)(null);return t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},kC):[(0,h.createElement)(BC,{key:n("ToolBarFields"),...e},(0,h.createElement)(IC,{withThis:!0},(0,h.createElement)(NC,{onClick:(e,C,r)=>{const n="option-label"===r?e.replace(/%$/,"::label%"):e,i=t.calc_formula||"",o=a.current;if(o){const e=o.selectionStart,C=o.selectionEnd,t=i.slice(0,e)+n+i.slice(C);l({calc_formula:t}),setTimeout(()=>{o.focus(),o.selectionStart=o.selectionEnd=e+n.length})}}}))),r&&(0,h.createElement)(JC,{key:n("InspectorControls")},(0,h.createElement)(UC,{title:OC("General","jet-form-builder"),key:"jet-form-general-fields"},(0,h.createElement)(SC,null),(0,h.createElement)(AC,null),(0,h.createElement)(PC,null)),(0,h.createElement)(FC,{...e},"date"!==t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:JetFormCalculatedField.field_desc}})):null,(0,h.createElement)(GC,{label:OC("Value type","jet-form-builder"),labelPosition:"top",value:t.value_type,onChange:e=>l({value_type:e}),options:[{value:"number",label:OC("as Number","jet-form-builder")},{value:"string",label:OC("as String","jet-form-builder")},{value:"date",label:OC("as Date","jet-form-builder")}]}),"date"===t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)(qC,{key:"calc_date_format",label:OC("Date Format","jet-form-builder"),value:t.date_format,onChange:e=>l({date_format:e})}),(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:JetFormCalculatedField.date_format}})):null,"number"===t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)(KC,{label:OC("Decimal Places Number","jet-form-builder"),labelPosition:"top",key:"precision",value:t.precision,onChange:e=>{l({precision:parseInt(e)})}}),(0,h.createElement)(qC,{key:"calc_separate_decimals",label:OC("Decimals separator","jet-form-builder"),value:t.separate_decimals,onChange:e=>l({separate_decimals:e})}),(0,h.createElement)(qC,{key:"calc_separate_thousands",label:OC("Thousands separator","jet-form-builder"),value:t.separate_thousands,onChange:e=>l({separate_thousands:e})}),(0,h.createElement)(qC,{key:"calc_prefix",label:OC("Calculated Value Prefix","jet-form-builder"),value:t.calc_prefix,help:OC("For space before or after text use:  ","jet-form-builder"),onChange:e=>{l({calc_prefix:e})}}),(0,h.createElement)(qC,{key:"calc_suffix",label:OC("Calculated Value Suffix","jet-form-builder"),value:t.calc_suffix,help:OC("For space before or after text use:  ","jet-form-builder"),onChange:e=>{l({calc_suffix:e})}})):null,(0,h.createElement)(zC,{key:"calc_hidden",label:OC("Hidden","jet-form-builder"),checked:t.calc_hidden,help:$C.calc_hidden,onChange:e=>{l({calc_hidden:Boolean(e)})}})),(0,h.createElement)(jC,{key:n("JetForm-advanced"),...e})),(0,h.createElement)("div",{...C,key:n("viewBlock")},(0,h.createElement)(xC,{key:n("FieldWrapper"),...e},(0,h.createElement)("div",{className:"jet-form-builder__calculated-field"},(0,h.createElement)("div",{className:"calc-prefix"},t.calc_prefix),(0,h.createElement)("div",{className:"calc-formula"},t.calc_formula),(0,h.createElement)("div",{className:"calc-suffix"},t.calc_suffix)),e.isSelected&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(DC,{key:"calc_formula",value:t.calc_formula,onChange:e=>{l({calc_formula:e})},ref:a}),(0,h.createElement)("div",{className:"jet-form-builder__calculated-field_info"},OC("You may use JavaScript's built-in ","jet-form-builder"),(0,h.createElement)("a",{href:"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math",target:"_blank",rel:"noopener noreferrer"},OC("Math","jet-form-builder")),OC(" object (e.g., Math.sqrt(16) returns 4) to perform more sophisticated operations.","jet-form-builder"),(0,h.createElement)("br",null),OC("You can also explore","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters",target:"_blank",rel:"noopener noreferrer"},OC("Filters","jet-form-builder")),", ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros",target:"_blank",rel:"noopener noreferrer"},OC("External Macros","jet-form-builder"))," ",OC("and","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Field-Attributes",target:"_blank",rel:"noopener noreferrer"},OC("Field Attributes","jet-form-builder"))," ",OC("for deeper customization.","jet-form-builder"),(0,h.createElement)("br",null),OC("Additionally, you can use the ternary operator (?:) for conditional calculations. For example: ((%field_one% + %field_two%) > 20) ? 10 : 5","jet-form-builder"),(0,h.createElement)("br",null),OC("For more details on using calculated fields, check out the Block Field section or read our in-depth guide","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://jetformbuilder.com/features/calculated-field",target:"_blank",rel:"noopener noreferrer"},OC("here","jet-form-builder")),"."))))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/number-field"],transform:e=>QC("jet-forms/number-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/number-field","jet-forms/text-field"],transform:e=>QC(et,{...e}),priority:0}]}};Object.defineProperty(yt,"name",{value:"default",configurable:!0});const{Repeater:lt,RepeaterAddNew:rt,RepeaterAddOrOperator:nt,ConditionItem:at,RepeaterState:it,ToggleControl:ot,ConditionsRepeaterContextProvider:st}=JetFBComponents,{useState:ct}=wp.element,{useBlockAttributes:dt,useBlockConditions:mt,useUniqKey:ut,useOnUpdateModal:pt}=JetFBHooks;let{SelectControl:ft,withFilters:Vt,Button:Ht,ToggleGroupControl:ht,__experimentalToggleGroupControl:bt}=wp.components;const{__:Mt}=wp.i18n,{addFilter:Lt}=wp.hooks;ht=ht||bt;const gt=e=>e.func_type&&e?.func_settings?.hasOwnProperty(e.func_type)?e?.func_settings[e.func_type]:{};Lt("jet.fb.block.condition.settings","jet-form-builder",e=>C=>{var t;const{current:l,settings:r,update:n}=C;return["show","hide"].includes(l.func_type)?(0,h.createElement)(ot,{checked:null!==(t=r?.dom)&&void 0!==t&&t,onChange:e=>n({dom:Boolean(e)})},Mt("Remove hidden elements from page HTML","jet-form-builder")+" ",(0,h.createElement)(Ht,{isLink:!0,onClick:()=>{},label:Mt("If this block is removed from the HTML, then when sending the form, the values from the inner fields will be empty","jet-form-builder"),showTooltip:!0},"(?)")):(0,h.createElement)(e,{...C})});const Zt=Vt("jet.fb.block.condition.settings")(()=>null);function yt(){var e;const[C,t]=dt(),[l,r]=ct(()=>C),{functions:n}=mt(),a=ut(),i=e=>{const C="function"==typeof e?e(l.conditions):e;r(e=>({...e,conditions:C}))};pt(()=>t(l));const o=gt(l);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ft,{key:a("SelectControl-operator"),label:Mt("Which function need execute?","jet-form-builder"),labelPosition:"side",value:l.func_type,options:n,onChange:e=>r(C=>({...C,func_type:e}))}),(0,h.createElement)(Zt,{current:l,settings:o,update:e=>r(C=>{var t;return{...C,func_settings:{...null!==(t=C?.func_settings)&&void 0!==t?t:{},[C.func_type]:{...o,...e}}}})}),(0,h.createElement)(st,null,(0,h.createElement)(lt,{items:null!==(e=l.conditions)&&void 0!==e?e:[],onSetState:i},(0,h.createElement)(at,null))),(0,h.createElement)(it,{state:i},(0,h.createElement)(ht,{style:{display:"flex"},hideLabelFromVision:!0,className:"jfb-toggle-group-control jfb-toggle-group-control--no-gap"},(0,h.createElement)(rt,null,Mt("Add Condition","jet-form-builder")),Boolean(l?.conditions?.length)&&(0,h.createElement)(nt,null,Mt("Add OR Operator","jet-form-builder")))))}const{ActionModal:Et}=JetFBComponents;function wt(e){const{setShowModal:C}=e;return(0,h.createElement)(Et,{classNames:["width-60"],onRequestClose:()=>C(!1),title:"Conditional Logic"},(0,h.createElement)(yt,null))}const{createContext:vt}=wp.element,_t=vt({showModal:!1,setShowModal:()=>{}}),{DetailsContainer:kt,HoverContainer:jt,HumanReadableConditions:xt}=JetFBComponents,{useBlockAttributes:Ft}=JetFBHooks,{useState:Bt,useContext:At}=wp.element,{__:Pt}=wp.i18n,{Button:St}=wp.components,Nt=function({group:e}){const[C,t]=Bt(!1),{setShowModal:l}=At(_t),[r,n]=Ft(),a=e.map(({condition:e})=>e),i=e.map(({index:e})=>e);return(0,h.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>t(!0),onFocus:()=>t(!0),onMouseOut:()=>t(!1),onBlur:()=>t(!1)},(0,h.createElement)(jt,{isHover:C},(0,h.createElement)(St,{isSmall:!0,isSecondary:!0,icon:"edit",onClick:()=>{n(({conditions:e})=>e.map((e,C)=>(e.__visible=C===i[0],e))),l(e=>!e)}},Pt("Edit","jet-form-builder")),(0,h.createElement)(St,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{n({conditions:r.conditions.filter((e,C)=>!i.includes(C))})}},Pt("Delete","jet-form-builder"))),(0,h.createElement)(kt,null,(0,h.createElement)(xt,{conditions:a,showWarning:!0})))},{DetailsContainer:It,HoverContainer:Tt}=JetFBComponents,{useBlockAttributes:Ot}=JetFBHooks,{useContext:Jt,useState:Rt}=wp.element,{__:qt}=wp.i18n,{Button:Dt}=wp.components,zt=function(){const{setShowModal:e}=Jt(_t),[C,t]=Ot(),[l,r]=Rt(!1);return(0,h.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>r(!0),onFocus:()=>r(!0),onMouseOut:()=>r(!1),onBlur:()=>r(!1)},(0,h.createElement)(Tt,{isHover:l},(0,h.createElement)(Dt,{isSmall:!0,isSecondary:!0,icon:"plus-alt2",onClick:()=>{t({conditions:[...JSON.parse(JSON.stringify(C.conditions)),{__visible:!0}]}),e(e=>!e)}},qt("Add new","jet-form-builder"))),(0,h.createElement)(It,null,(0,h.createElement)("span",{"data-title":qt("You have no conditions in this block.","jet-form-builder")}),(0,h.createElement)("span",{"data-title":qt("Please click here to add new.","jet-form-builder")})))},{__:Ut}=wp.i18n,{Children:Gt,cloneElement:Wt}=wp.element,{ContainersList:Kt}=JetFBComponents,$t=e=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)("b",null,Ut("OR","jet-form-builder")),(0,h.createElement)(Nt,{group:e})),Yt=function({attributes:e}){return Boolean(e?.conditions?.length)?(0,h.createElement)(Kt,null,Gt.map((e=>{let C={},t=0,l=0;for(const n of e){var r;n.hasOwnProperty("or_operator")?(t++,l++):(C[t]=null!==(r=C[t])&&void 0!==r?r:[],C[t].push({condition:n,index:l}),l++)}C=Object.values(C);const n=C.filter((e,C)=>0!==C);return[(0,h.createElement)(Nt,{group:C[0],key:"first_item"}),...n.map($t)]})(e.conditions),Wt)):(0,h.createElement)(zt,null)},Xt=(0,h.createElement)("svg",{width:"298",height:"149",viewBox:"0 0 298 149",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"149",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M18.7734 19.9922L20.749 13.0469H21.7061L21.1523 15.7471L19.0264 23H18.0762L18.7734 19.9922ZM16.7295 13.0469L18.3018 19.8555L18.7734 23H17.8301L15.417 13.0469H16.7295ZM24.2627 19.8486L25.8008 13.0469H27.1201L24.7139 23H23.7705L24.2627 19.8486ZM21.8496 13.0469L23.7705 19.9922L24.4678 23H23.5176L21.4668 15.7471L20.9062 13.0469H21.8496ZM29.6562 12.5V23H28.3916V12.5H29.6562ZM29.3555 19.0215L28.8291 19.001C28.8337 18.4951 28.9089 18.028 29.0547 17.5996C29.2005 17.1667 29.4056 16.7907 29.6699 16.4717C29.9342 16.1527 30.2487 15.9066 30.6133 15.7334C30.9824 15.5557 31.3903 15.4668 31.8369 15.4668C32.2015 15.4668 32.5296 15.5169 32.8213 15.6172C33.113 15.7129 33.3613 15.8678 33.5664 16.082C33.776 16.2962 33.9355 16.5742 34.0449 16.916C34.1543 17.2533 34.209 17.6657 34.209 18.1533V23H32.9375V18.1396C32.9375 17.7523 32.8805 17.4424 32.7666 17.21C32.6527 16.973 32.4863 16.8021 32.2676 16.6973C32.0488 16.5879 31.7799 16.5332 31.4609 16.5332C31.1465 16.5332 30.8594 16.5993 30.5996 16.7314C30.3444 16.8636 30.1234 17.0459 29.9365 17.2783C29.7542 17.5107 29.6107 17.7773 29.5059 18.0781C29.4056 18.3743 29.3555 18.6888 29.3555 19.0215ZM40.4639 21.7354V17.9277C40.4639 17.6361 40.4046 17.3831 40.2861 17.1689C40.1722 16.9502 39.999 16.7816 39.7666 16.6631C39.5342 16.5446 39.2471 16.4854 38.9053 16.4854C38.5863 16.4854 38.306 16.54 38.0645 16.6494C37.8275 16.7588 37.6406 16.9023 37.5039 17.0801C37.3717 17.2578 37.3057 17.4492 37.3057 17.6543H36.041C36.041 17.39 36.1094 17.1279 36.2461 16.8682C36.3828 16.6084 36.5788 16.3737 36.834 16.1641C37.0938 15.9499 37.4036 15.7812 37.7637 15.6582C38.1283 15.5306 38.5339 15.4668 38.9805 15.4668C39.5182 15.4668 39.9922 15.5579 40.4023 15.7402C40.8171 15.9225 41.1406 16.1982 41.373 16.5674C41.61 16.932 41.7285 17.39 41.7285 17.9414V21.3867C41.7285 21.6328 41.749 21.8949 41.79 22.1729C41.8356 22.4508 41.9017 22.6901 41.9883 22.8906V23H40.6689C40.6051 22.8542 40.555 22.6605 40.5186 22.4189C40.4821 22.1729 40.4639 21.945 40.4639 21.7354ZM40.6826 18.5156L40.6963 19.4043H39.418C39.0579 19.4043 38.7367 19.4339 38.4541 19.4932C38.1715 19.5479 37.9346 19.6322 37.7432 19.7461C37.5518 19.86 37.4059 20.0036 37.3057 20.1768C37.2054 20.3454 37.1553 20.5436 37.1553 20.7715C37.1553 21.0039 37.2077 21.2158 37.3125 21.4072C37.4173 21.5986 37.5745 21.7513 37.7842 21.8652C37.9984 21.9746 38.2604 22.0293 38.5703 22.0293C38.9577 22.0293 39.2995 21.9473 39.5957 21.7832C39.8919 21.6191 40.1266 21.4186 40.2998 21.1816C40.4775 20.9447 40.5732 20.7145 40.5869 20.4912L41.127 21.0996C41.0951 21.291 41.0085 21.5029 40.8672 21.7354C40.7259 21.9678 40.5368 22.1911 40.2998 22.4053C40.0674 22.6149 39.7894 22.7904 39.4658 22.9316C39.1468 23.0684 38.7868 23.1367 38.3857 23.1367C37.8844 23.1367 37.4447 23.0387 37.0664 22.8428C36.6927 22.6468 36.401 22.3848 36.1914 22.0566C35.9863 21.724 35.8838 21.3525 35.8838 20.9424C35.8838 20.5459 35.9613 20.1973 36.1162 19.8965C36.2712 19.5911 36.4945 19.3382 36.7861 19.1377C37.0778 18.9326 37.4287 18.7777 37.8389 18.6729C38.249 18.568 38.707 18.5156 39.2129 18.5156H40.6826ZM46.8145 15.6035V16.5742H42.8154V15.6035H46.8145ZM44.1689 13.8057H45.4336V21.168C45.4336 21.4186 45.4723 21.6077 45.5498 21.7354C45.6273 21.863 45.7275 21.9473 45.8506 21.9883C45.9736 22.0293 46.1058 22.0498 46.2471 22.0498C46.3519 22.0498 46.4613 22.0407 46.5752 22.0225C46.6937 21.9997 46.7826 21.9814 46.8418 21.9678L46.8486 23C46.7484 23.0319 46.6162 23.0615 46.4521 23.0889C46.2926 23.1208 46.099 23.1367 45.8711 23.1367C45.5612 23.1367 45.2764 23.0752 45.0166 22.9521C44.7568 22.8291 44.5495 22.624 44.3945 22.3369C44.2441 22.0452 44.1689 21.6533 44.1689 21.1611V13.8057ZM54.8672 15.6035V16.5742H50.8682V15.6035H54.8672ZM52.2217 13.8057H53.4863V21.168C53.4863 21.4186 53.5251 21.6077 53.6025 21.7354C53.68 21.863 53.7803 21.9473 53.9033 21.9883C54.0264 22.0293 54.1585 22.0498 54.2998 22.0498C54.4046 22.0498 54.514 22.0407 54.6279 22.0225C54.7464 21.9997 54.8353 21.9814 54.8945 21.9678L54.9014 23C54.8011 23.0319 54.6689 23.0615 54.5049 23.0889C54.3454 23.1208 54.1517 23.1367 53.9238 23.1367C53.6139 23.1367 53.3291 23.0752 53.0693 22.9521C52.8096 22.8291 52.6022 22.624 52.4473 22.3369C52.2969 22.0452 52.2217 21.6533 52.2217 21.1611V13.8057ZM57.6152 16.7656V23H56.3506V15.6035H57.5811L57.6152 16.7656ZM59.9258 15.5625L59.9189 16.7383C59.8141 16.7155 59.7139 16.7018 59.6182 16.6973C59.527 16.6882 59.4222 16.6836 59.3037 16.6836C59.012 16.6836 58.7546 16.7292 58.5312 16.8203C58.3079 16.9115 58.1188 17.0391 57.9639 17.2031C57.8089 17.3672 57.6859 17.5632 57.5947 17.791C57.5081 18.0143 57.4512 18.2604 57.4238 18.5293L57.0684 18.7344C57.0684 18.2878 57.1117 17.8685 57.1982 17.4766C57.2894 17.0846 57.4284 16.7383 57.6152 16.4375C57.8021 16.1322 58.0391 15.8952 58.3262 15.7266C58.6178 15.5534 58.9642 15.4668 59.3652 15.4668C59.4564 15.4668 59.5612 15.4782 59.6797 15.501C59.7982 15.5192 59.8802 15.5397 59.9258 15.5625ZM65.1826 21.7354V17.9277C65.1826 17.6361 65.1234 17.3831 65.0049 17.1689C64.891 16.9502 64.7178 16.7816 64.4854 16.6631C64.2529 16.5446 63.9658 16.4854 63.624 16.4854C63.305 16.4854 63.0247 16.54 62.7832 16.6494C62.5462 16.7588 62.3594 16.9023 62.2227 17.0801C62.0905 17.2578 62.0244 17.4492 62.0244 17.6543H60.7598C60.7598 17.39 60.8281 17.1279 60.9648 16.8682C61.1016 16.6084 61.2975 16.3737 61.5527 16.1641C61.8125 15.9499 62.1224 15.7812 62.4824 15.6582C62.847 15.5306 63.2526 15.4668 63.6992 15.4668C64.237 15.4668 64.7109 15.5579 65.1211 15.7402C65.5358 15.9225 65.8594 16.1982 66.0918 16.5674C66.3288 16.932 66.4473 17.39 66.4473 17.9414V21.3867C66.4473 21.6328 66.4678 21.8949 66.5088 22.1729C66.5544 22.4508 66.6204 22.6901 66.707 22.8906V23H65.3877C65.3239 22.8542 65.2738 22.6605 65.2373 22.4189C65.2008 22.1729 65.1826 21.945 65.1826 21.7354ZM65.4014 18.5156L65.415 19.4043H64.1367C63.7767 19.4043 63.4554 19.4339 63.1729 19.4932C62.8903 19.5479 62.6533 19.6322 62.4619 19.7461C62.2705 19.86 62.1247 20.0036 62.0244 20.1768C61.9242 20.3454 61.874 20.5436 61.874 20.7715C61.874 21.0039 61.9264 21.2158 62.0312 21.4072C62.1361 21.5986 62.2933 21.7513 62.5029 21.8652C62.7171 21.9746 62.9792 22.0293 63.2891 22.0293C63.6764 22.0293 64.0182 21.9473 64.3145 21.7832C64.6107 21.6191 64.8454 21.4186 65.0186 21.1816C65.1963 20.9447 65.292 20.7145 65.3057 20.4912L65.8457 21.0996C65.8138 21.291 65.7272 21.5029 65.5859 21.7354C65.4447 21.9678 65.2555 22.1911 65.0186 22.4053C64.7861 22.6149 64.5081 22.7904 64.1846 22.9316C63.8656 23.0684 63.5055 23.1367 63.1045 23.1367C62.6032 23.1367 62.1634 23.0387 61.7852 22.8428C61.4115 22.6468 61.1198 22.3848 60.9102 22.0566C60.7051 21.724 60.6025 21.3525 60.6025 20.9424C60.6025 20.5459 60.68 20.1973 60.835 19.8965C60.9899 19.5911 61.2132 19.3382 61.5049 19.1377C61.7965 18.9326 62.1475 18.7777 62.5576 18.6729C62.9678 18.568 63.4258 18.5156 63.9316 18.5156H65.4014ZM69.7012 17.1826V23H68.4365V15.6035H69.6328L69.7012 17.1826ZM69.4004 19.0215L68.874 19.001C68.8786 18.4951 68.9538 18.028 69.0996 17.5996C69.2454 17.1667 69.4505 16.7907 69.7148 16.4717C69.9792 16.1527 70.2936 15.9066 70.6582 15.7334C71.0273 15.5557 71.4352 15.4668 71.8818 15.4668C72.2464 15.4668 72.5745 15.5169 72.8662 15.6172C73.1579 15.7129 73.4062 15.8678 73.6113 16.082C73.821 16.2962 73.9805 16.5742 74.0898 16.916C74.1992 17.2533 74.2539 17.6657 74.2539 18.1533V23H72.9824V18.1396C72.9824 17.7523 72.9255 17.4424 72.8115 17.21C72.6976 16.973 72.5312 16.8021 72.3125 16.6973C72.0938 16.5879 71.8249 16.5332 71.5059 16.5332C71.1914 16.5332 70.9043 16.5993 70.6445 16.7314C70.3893 16.8636 70.1683 17.0459 69.9814 17.2783C69.7992 17.5107 69.6556 17.7773 69.5508 18.0781C69.4505 18.3743 69.4004 18.6888 69.4004 19.0215ZM80.4814 21.0381C80.4814 20.8558 80.4404 20.6872 80.3584 20.5322C80.2809 20.3727 80.1191 20.2292 79.873 20.1016C79.6315 19.9694 79.2669 19.8555 78.7793 19.7598C78.3691 19.6732 77.9977 19.5706 77.665 19.4521C77.3369 19.3337 77.0566 19.1901 76.8242 19.0215C76.5964 18.8529 76.4209 18.6546 76.2979 18.4268C76.1748 18.1989 76.1133 17.9323 76.1133 17.627C76.1133 17.3353 76.1771 17.0596 76.3047 16.7998C76.4368 16.54 76.6214 16.3099 76.8584 16.1094C77.0999 15.9089 77.3893 15.7516 77.7266 15.6377C78.0638 15.5238 78.4398 15.4668 78.8545 15.4668C79.4469 15.4668 79.9528 15.5716 80.3721 15.7812C80.7913 15.9909 81.1126 16.2712 81.3359 16.6221C81.5592 16.9684 81.6709 17.3535 81.6709 17.7773H80.4062C80.4062 17.5723 80.3447 17.374 80.2217 17.1826C80.1032 16.9867 79.9277 16.8249 79.6953 16.6973C79.4674 16.5697 79.1872 16.5059 78.8545 16.5059C78.5036 16.5059 78.2188 16.5605 78 16.6699C77.7858 16.7747 77.6286 16.9092 77.5283 17.0732C77.4326 17.2373 77.3848 17.4105 77.3848 17.5928C77.3848 17.7295 77.4076 17.8525 77.4531 17.9619C77.5033 18.0667 77.5898 18.1647 77.7129 18.2559C77.8359 18.3424 78.0091 18.4245 78.2324 18.502C78.4557 18.5794 78.7406 18.6569 79.0869 18.7344C79.693 18.8711 80.1921 19.0352 80.584 19.2266C80.9759 19.418 81.2676 19.6527 81.459 19.9307C81.6504 20.2087 81.7461 20.5459 81.7461 20.9424C81.7461 21.266 81.6777 21.5622 81.541 21.8311C81.4089 22.0999 81.2152 22.3324 80.96 22.5283C80.7093 22.7197 80.4085 22.8701 80.0576 22.9795C79.7113 23.0843 79.3216 23.1367 78.8887 23.1367C78.237 23.1367 77.6855 23.0205 77.2344 22.7881C76.7832 22.5557 76.4414 22.2549 76.209 21.8857C75.9766 21.5166 75.8604 21.127 75.8604 20.7168H77.1318C77.1501 21.0632 77.2503 21.3389 77.4326 21.5439C77.6149 21.7445 77.8382 21.888 78.1025 21.9746C78.3669 22.0566 78.6289 22.0977 78.8887 22.0977C79.235 22.0977 79.5244 22.0521 79.7568 21.9609C79.9938 21.8698 80.1738 21.7445 80.2969 21.585C80.4199 21.4255 80.4814 21.2432 80.4814 21.0381ZM84.6719 17.0254V25.8438H83.4004V15.6035H84.5625L84.6719 17.0254ZM89.6553 19.2402V19.3838C89.6553 19.9215 89.5915 20.4206 89.4639 20.8809C89.3363 21.3366 89.1494 21.7331 88.9033 22.0703C88.6618 22.4076 88.3633 22.6696 88.0078 22.8564C87.6523 23.0433 87.2445 23.1367 86.7842 23.1367C86.3148 23.1367 85.9001 23.0592 85.54 22.9043C85.18 22.7493 84.8747 22.5238 84.624 22.2275C84.3734 21.9313 84.1729 21.5758 84.0225 21.1611C83.8766 20.7464 83.7764 20.2793 83.7217 19.7598V18.9941C83.7764 18.4473 83.8789 17.9574 84.0293 17.5244C84.1797 17.0915 84.3779 16.7223 84.624 16.417C84.8747 16.1071 85.1777 15.8724 85.5332 15.7129C85.8887 15.5488 86.2988 15.4668 86.7637 15.4668C87.2285 15.4668 87.641 15.5579 88.001 15.7402C88.361 15.918 88.6641 16.1732 88.9102 16.5059C89.1562 16.8385 89.3408 17.2373 89.4639 17.7021C89.5915 18.1624 89.6553 18.6751 89.6553 19.2402ZM88.3838 19.3838V19.2402C88.3838 18.8711 88.3451 18.5247 88.2676 18.2012C88.1901 17.873 88.0693 17.5859 87.9053 17.3398C87.7458 17.0892 87.5407 16.8932 87.29 16.752C87.0394 16.6061 86.7409 16.5332 86.3945 16.5332C86.0755 16.5332 85.7975 16.5879 85.5605 16.6973C85.3281 16.8066 85.1299 16.9548 84.9658 17.1416C84.8018 17.3239 84.6673 17.5335 84.5625 17.7705C84.4622 18.0029 84.387 18.2445 84.3369 18.4951V20.2656C84.4281 20.5846 84.5557 20.8854 84.7197 21.168C84.8838 21.446 85.1025 21.6715 85.376 21.8447C85.6494 22.0133 85.9935 22.0977 86.4082 22.0977C86.75 22.0977 87.0439 22.027 87.29 21.8857C87.5407 21.7399 87.7458 21.5417 87.9053 21.291C88.0693 21.0404 88.1901 20.7533 88.2676 20.4297C88.3451 20.1016 88.3838 19.7529 88.3838 19.3838ZM90.9336 19.3838V19.2266C90.9336 18.6934 91.0111 18.1989 91.166 17.7432C91.321 17.2829 91.5443 16.8841 91.8359 16.5469C92.1276 16.2051 92.4808 15.9408 92.8955 15.7539C93.3102 15.5625 93.7751 15.4668 94.29 15.4668C94.8096 15.4668 95.2767 15.5625 95.6914 15.7539C96.1107 15.9408 96.4661 16.2051 96.7578 16.5469C97.054 16.8841 97.2796 17.2829 97.4346 17.7432C97.5895 18.1989 97.667 18.6934 97.667 19.2266V19.3838C97.667 19.917 97.5895 20.4115 97.4346 20.8672C97.2796 21.3229 97.054 21.7217 96.7578 22.0635C96.4661 22.4007 96.113 22.665 95.6982 22.8564C95.2881 23.0433 94.8232 23.1367 94.3037 23.1367C93.7842 23.1367 93.3171 23.0433 92.9023 22.8564C92.4876 22.665 92.1322 22.4007 91.8359 22.0635C91.5443 21.7217 91.321 21.3229 91.166 20.8672C91.0111 20.4115 90.9336 19.917 90.9336 19.3838ZM92.1982 19.2266V19.3838C92.1982 19.7529 92.2415 20.1016 92.3281 20.4297C92.4147 20.7533 92.5446 21.0404 92.7178 21.291C92.8955 21.5417 93.1165 21.7399 93.3809 21.8857C93.6452 22.027 93.9528 22.0977 94.3037 22.0977C94.6501 22.0977 94.9531 22.027 95.2129 21.8857C95.4772 21.7399 95.696 21.5417 95.8691 21.291C96.0423 21.0404 96.1722 20.7533 96.2588 20.4297C96.3499 20.1016 96.3955 19.7529 96.3955 19.3838V19.2266C96.3955 18.862 96.3499 18.5179 96.2588 18.1943C96.1722 17.8662 96.04 17.5768 95.8623 17.3262C95.6891 17.071 95.4704 16.8704 95.2061 16.7246C94.9463 16.5788 94.641 16.5059 94.29 16.5059C93.9437 16.5059 93.6383 16.5788 93.374 16.7246C93.1143 16.8704 92.8955 17.071 92.7178 17.3262C92.5446 17.5768 92.4147 17.8662 92.3281 18.1943C92.2415 18.5179 92.1982 18.862 92.1982 19.2266ZM100.518 16.7656V23H99.2529V15.6035H100.483L100.518 16.7656ZM102.828 15.5625L102.821 16.7383C102.716 16.7155 102.616 16.7018 102.521 16.6973C102.429 16.6882 102.325 16.6836 102.206 16.6836C101.914 16.6836 101.657 16.7292 101.434 16.8203C101.21 16.9115 101.021 17.0391 100.866 17.2031C100.711 17.3672 100.588 17.5632 100.497 17.791C100.41 18.0143 100.354 18.2604 100.326 18.5293L99.9707 18.7344C99.9707 18.2878 100.014 17.8685 100.101 17.4766C100.192 17.0846 100.331 16.7383 100.518 16.4375C100.704 16.1322 100.941 15.8952 101.229 15.7266C101.52 15.5534 101.867 15.4668 102.268 15.4668C102.359 15.4668 102.464 15.4782 102.582 15.501C102.701 15.5192 102.783 15.5397 102.828 15.5625ZM107.436 15.6035V16.5742H103.437V15.6035H107.436ZM104.79 13.8057H106.055V21.168C106.055 21.4186 106.093 21.6077 106.171 21.7354C106.248 21.863 106.349 21.9473 106.472 21.9883C106.595 22.0293 106.727 22.0498 106.868 22.0498C106.973 22.0498 107.082 22.0407 107.196 22.0225C107.315 21.9997 107.404 21.9814 107.463 21.9678L107.47 23C107.369 23.0319 107.237 23.0615 107.073 23.0889C106.914 23.1208 106.72 23.1367 106.492 23.1367C106.182 23.1367 105.897 23.0752 105.638 22.9521C105.378 22.8291 105.171 22.624 105.016 22.3369C104.865 22.0452 104.79 21.6533 104.79 21.1611V13.8057ZM114.265 21.6875L116.165 15.6035H116.999L116.835 16.8135L114.9 23H114.087L114.265 21.6875ZM112.986 15.6035L114.606 21.7559L114.723 23H113.868L111.722 15.6035H112.986ZM118.817 21.708L120.362 15.6035H121.62L119.474 23H118.626L118.817 21.708ZM117.184 15.6035L119.043 21.585L119.255 23H118.448L116.459 16.7998L116.295 15.6035H117.184ZM124.293 15.6035V23H123.021V15.6035H124.293ZM122.926 13.6416C122.926 13.4365 122.987 13.2633 123.11 13.1221C123.238 12.9808 123.425 12.9102 123.671 12.9102C123.912 12.9102 124.097 12.9808 124.225 13.1221C124.357 13.2633 124.423 13.4365 124.423 13.6416C124.423 13.8376 124.357 14.0062 124.225 14.1475C124.097 14.2842 123.912 14.3525 123.671 14.3525C123.425 14.3525 123.238 14.2842 123.11 14.1475C122.987 14.0062 122.926 13.8376 122.926 13.6416ZM127.697 12.5V23H126.426V12.5H127.697ZM131.102 12.5V23H129.83V12.5H131.102ZM138.683 22.2344L140.74 15.6035H142.094L139.127 24.1416C139.059 24.3239 138.967 24.5199 138.854 24.7295C138.744 24.9437 138.603 25.1465 138.43 25.3379C138.257 25.5293 138.047 25.6842 137.801 25.8027C137.559 25.9258 137.27 25.9873 136.933 25.9873C136.832 25.9873 136.705 25.9736 136.55 25.9463C136.395 25.9189 136.285 25.8962 136.222 25.8779L136.215 24.8525C136.251 24.8571 136.308 24.8617 136.386 24.8662C136.468 24.8753 136.525 24.8799 136.557 24.8799C136.844 24.8799 137.088 24.8411 137.288 24.7637C137.489 24.6908 137.657 24.5654 137.794 24.3877C137.935 24.2145 138.056 23.9753 138.156 23.6699L138.683 22.2344ZM137.172 15.6035L139.093 21.3457L139.421 22.6787L138.512 23.1436L135.791 15.6035H137.172ZM142.791 19.3838V19.2266C142.791 18.6934 142.868 18.1989 143.023 17.7432C143.178 17.2829 143.402 16.8841 143.693 16.5469C143.985 16.2051 144.338 15.9408 144.753 15.7539C145.168 15.5625 145.632 15.4668 146.147 15.4668C146.667 15.4668 147.134 15.5625 147.549 15.7539C147.968 15.9408 148.324 16.2051 148.615 16.5469C148.911 16.8841 149.137 17.2829 149.292 17.7432C149.447 18.1989 149.524 18.6934 149.524 19.2266V19.3838C149.524 19.917 149.447 20.4115 149.292 20.8672C149.137 21.3229 148.911 21.7217 148.615 22.0635C148.324 22.4007 147.97 22.665 147.556 22.8564C147.146 23.0433 146.681 23.1367 146.161 23.1367C145.642 23.1367 145.174 23.0433 144.76 22.8564C144.345 22.665 143.99 22.4007 143.693 22.0635C143.402 21.7217 143.178 21.3229 143.023 20.8672C142.868 20.4115 142.791 19.917 142.791 19.3838ZM144.056 19.2266V19.3838C144.056 19.7529 144.099 20.1016 144.186 20.4297C144.272 20.7533 144.402 21.0404 144.575 21.291C144.753 21.5417 144.974 21.7399 145.238 21.8857C145.503 22.027 145.81 22.0977 146.161 22.0977C146.507 22.0977 146.811 22.027 147.07 21.8857C147.335 21.7399 147.553 21.5417 147.727 21.291C147.9 21.0404 148.03 20.7533 148.116 20.4297C148.207 20.1016 148.253 19.7529 148.253 19.3838V19.2266C148.253 18.862 148.207 18.5179 148.116 18.1943C148.03 17.8662 147.897 17.5768 147.72 17.3262C147.547 17.071 147.328 16.8704 147.063 16.7246C146.804 16.5788 146.498 16.5059 146.147 16.5059C145.801 16.5059 145.496 16.5788 145.231 16.7246C144.972 16.8704 144.753 17.071 144.575 17.3262C144.402 17.5768 144.272 17.8662 144.186 18.1943C144.099 18.5179 144.056 18.862 144.056 19.2266ZM155.636 21.291V15.6035H156.907V23H155.697L155.636 21.291ZM155.875 19.7324L156.401 19.7188C156.401 20.2109 156.349 20.6667 156.244 21.0859C156.144 21.5007 155.98 21.8607 155.752 22.166C155.524 22.4714 155.226 22.7106 154.856 22.8838C154.487 23.0524 154.038 23.1367 153.51 23.1367C153.15 23.1367 152.819 23.0843 152.519 22.9795C152.222 22.8747 151.967 22.7129 151.753 22.4941C151.539 22.2754 151.372 21.9906 151.254 21.6396C151.14 21.2887 151.083 20.8672 151.083 20.375V15.6035H152.348V20.3887C152.348 20.7214 152.384 20.9971 152.457 21.2158C152.535 21.43 152.637 21.6009 152.765 21.7285C152.897 21.8516 153.043 21.9382 153.202 21.9883C153.366 22.0384 153.535 22.0635 153.708 22.0635C154.246 22.0635 154.672 21.9609 154.986 21.7559C155.301 21.5462 155.526 21.266 155.663 20.915C155.804 20.5596 155.875 20.1654 155.875 19.7324ZM166.833 21.291V15.6035H168.104V23H166.895L166.833 21.291ZM167.072 19.7324L167.599 19.7188C167.599 20.2109 167.546 20.6667 167.441 21.0859C167.341 21.5007 167.177 21.8607 166.949 22.166C166.721 22.4714 166.423 22.7106 166.054 22.8838C165.685 23.0524 165.236 23.1367 164.707 23.1367C164.347 23.1367 164.017 23.0843 163.716 22.9795C163.42 22.8747 163.164 22.7129 162.95 22.4941C162.736 22.2754 162.57 21.9906 162.451 21.6396C162.337 21.2887 162.28 20.8672 162.28 20.375V15.6035H163.545V20.3887C163.545 20.7214 163.581 20.9971 163.654 21.2158C163.732 21.43 163.834 21.6009 163.962 21.7285C164.094 21.8516 164.24 21.9382 164.399 21.9883C164.563 22.0384 164.732 22.0635 164.905 22.0635C165.443 22.0635 165.869 21.9609 166.184 21.7559C166.498 21.5462 166.724 21.266 166.86 20.915C167.002 20.5596 167.072 20.1654 167.072 19.7324ZM174.339 21.0381C174.339 20.8558 174.298 20.6872 174.216 20.5322C174.138 20.3727 173.977 20.2292 173.73 20.1016C173.489 19.9694 173.124 19.8555 172.637 19.7598C172.227 19.6732 171.855 19.5706 171.522 19.4521C171.194 19.3337 170.914 19.1901 170.682 19.0215C170.454 18.8529 170.278 18.6546 170.155 18.4268C170.032 18.1989 169.971 17.9323 169.971 17.627C169.971 17.3353 170.035 17.0596 170.162 16.7998C170.294 16.54 170.479 16.3099 170.716 16.1094C170.957 15.9089 171.247 15.7516 171.584 15.6377C171.921 15.5238 172.297 15.4668 172.712 15.4668C173.304 15.4668 173.81 15.5716 174.229 15.7812C174.649 15.9909 174.97 16.2712 175.193 16.6221C175.417 16.9684 175.528 17.3535 175.528 17.7773H174.264C174.264 17.5723 174.202 17.374 174.079 17.1826C173.961 16.9867 173.785 16.8249 173.553 16.6973C173.325 16.5697 173.045 16.5059 172.712 16.5059C172.361 16.5059 172.076 16.5605 171.857 16.6699C171.643 16.7747 171.486 16.9092 171.386 17.0732C171.29 17.2373 171.242 17.4105 171.242 17.5928C171.242 17.7295 171.265 17.8525 171.311 17.9619C171.361 18.0667 171.447 18.1647 171.57 18.2559C171.693 18.3424 171.867 18.4245 172.09 18.502C172.313 18.5794 172.598 18.6569 172.944 18.7344C173.55 18.8711 174.049 19.0352 174.441 19.2266C174.833 19.418 175.125 19.6527 175.316 19.9307C175.508 20.2087 175.604 20.5459 175.604 20.9424C175.604 21.266 175.535 21.5622 175.398 21.8311C175.266 22.0999 175.073 22.3324 174.817 22.5283C174.567 22.7197 174.266 22.8701 173.915 22.9795C173.569 23.0843 173.179 23.1367 172.746 23.1367C172.094 23.1367 171.543 23.0205 171.092 22.7881C170.641 22.5557 170.299 22.2549 170.066 21.8857C169.834 21.5166 169.718 21.127 169.718 20.7168H170.989C171.007 21.0632 171.108 21.3389 171.29 21.5439C171.472 21.7445 171.696 21.888 171.96 21.9746C172.224 22.0566 172.486 22.0977 172.746 22.0977C173.092 22.0977 173.382 22.0521 173.614 21.9609C173.851 21.8698 174.031 21.7445 174.154 21.585C174.277 21.4255 174.339 21.2432 174.339 21.0381ZM180.334 23.1367C179.819 23.1367 179.352 23.0501 178.933 22.877C178.518 22.6992 178.16 22.4508 177.859 22.1318C177.563 21.8128 177.335 21.4346 177.176 20.9971C177.016 20.5596 176.937 20.0811 176.937 19.5615V19.2744C176.937 18.6729 177.025 18.1374 177.203 17.668C177.381 17.194 177.622 16.793 177.928 16.4648C178.233 16.1367 178.579 15.8883 178.967 15.7197C179.354 15.5511 179.755 15.4668 180.17 15.4668C180.699 15.4668 181.154 15.5579 181.537 15.7402C181.924 15.9225 182.241 16.1777 182.487 16.5059C182.733 16.8294 182.916 17.2122 183.034 17.6543C183.153 18.0918 183.212 18.5703 183.212 19.0898V19.6572H177.688V18.625H181.947V18.5293C181.929 18.2012 181.861 17.8822 181.742 17.5723C181.628 17.2624 181.446 17.0072 181.195 16.8066C180.945 16.6061 180.603 16.5059 180.17 16.5059C179.883 16.5059 179.618 16.5674 179.377 16.6904C179.135 16.8089 178.928 16.9867 178.755 17.2236C178.582 17.4606 178.447 17.75 178.352 18.0918C178.256 18.4336 178.208 18.8278 178.208 19.2744V19.5615C178.208 19.9124 178.256 20.2428 178.352 20.5527C178.452 20.8581 178.595 21.127 178.782 21.3594C178.974 21.5918 179.204 21.7741 179.473 21.9062C179.746 22.0384 180.056 22.1045 180.402 22.1045C180.849 22.1045 181.227 22.0133 181.537 21.8311C181.847 21.6488 182.118 21.4049 182.351 21.0996L183.116 21.708C182.957 21.9495 182.754 22.1797 182.508 22.3984C182.262 22.6172 181.959 22.7949 181.599 22.9316C181.243 23.0684 180.822 23.1367 180.334 23.1367ZM187.437 20.1973H186.165C186.17 19.7598 186.208 19.402 186.281 19.124C186.359 18.8415 186.484 18.584 186.657 18.3516C186.83 18.1191 187.061 17.8548 187.348 17.5586C187.557 17.3444 187.749 17.1439 187.922 16.957C188.1 16.7656 188.243 16.5605 188.353 16.3418C188.462 16.1185 188.517 15.8519 188.517 15.542C188.517 15.2275 188.46 14.9564 188.346 14.7285C188.236 14.5007 188.072 14.3252 187.854 14.2021C187.639 14.0791 187.373 14.0176 187.054 14.0176C186.789 14.0176 186.539 14.0654 186.302 14.1611C186.065 14.2568 185.873 14.4049 185.728 14.6055C185.582 14.8014 185.507 15.0589 185.502 15.3779H184.237C184.246 14.863 184.374 14.4209 184.62 14.0518C184.871 13.6826 185.208 13.4001 185.632 13.2041C186.056 13.0081 186.53 12.9102 187.054 12.9102C187.632 12.9102 188.125 13.015 188.53 13.2246C188.94 13.4342 189.253 13.735 189.467 14.127C189.681 14.5143 189.788 14.9746 189.788 15.5078C189.788 15.918 189.704 16.2962 189.535 16.6426C189.371 16.9844 189.159 17.3057 188.899 17.6064C188.64 17.9072 188.364 18.1943 188.072 18.4678C187.822 18.7002 187.653 18.9622 187.566 19.2539C187.48 19.5456 187.437 19.86 187.437 20.1973ZM186.11 22.3643C186.11 22.1592 186.174 21.986 186.302 21.8447C186.429 21.7035 186.614 21.6328 186.855 21.6328C187.102 21.6328 187.288 21.7035 187.416 21.8447C187.544 21.986 187.607 22.1592 187.607 22.3643C187.607 22.5602 187.544 22.7288 187.416 22.8701C187.288 23.0114 187.102 23.082 186.855 23.082C186.614 23.082 186.429 23.0114 186.302 22.8701C186.174 22.7288 186.11 22.5602 186.11 22.3643Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M24 32.5C19.86 32.5 16.5 35.86 16.5 40C16.5 44.14 19.86 47.5 24 47.5C28.14 47.5 31.5 44.14 31.5 40C31.5 35.86 28.14 32.5 24 32.5ZM24 46C20.685 46 18 43.315 18 40C18 36.685 20.685 34 24 34C27.315 34 30 36.685 30 40C30 43.315 27.315 46 24 46Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M40.4814 40.8755H38.0122V39.8789H40.4814C40.9596 39.8789 41.3468 39.8027 41.6431 39.6504C41.9393 39.498 42.1551 39.2865 42.2905 39.0156C42.4302 38.7448 42.5 38.4359 42.5 38.0889C42.5 37.7715 42.4302 37.4731 42.2905 37.1938C42.1551 36.9146 41.9393 36.6903 41.6431 36.521C41.3468 36.3475 40.9596 36.2607 40.4814 36.2607H38.2979V44.5H37.0728V35.2578H40.4814C41.1797 35.2578 41.77 35.3784 42.2524 35.6196C42.7349 35.8608 43.1009 36.1951 43.3506 36.6226C43.6003 37.0457 43.7251 37.5303 43.7251 38.0762C43.7251 38.6686 43.6003 39.1743 43.3506 39.5933C43.1009 40.0122 42.7349 40.3317 42.2524 40.5518C41.77 40.7676 41.1797 40.8755 40.4814 40.8755ZM49.2983 42.9131V37.6318H50.479V44.5H49.3555L49.2983 42.9131ZM49.5205 41.4658L50.0093 41.4531C50.0093 41.9102 49.9606 42.3333 49.8633 42.7227C49.7702 43.1077 49.6178 43.4421 49.4062 43.7256C49.1947 44.0091 48.9175 44.2313 48.5747 44.3921C48.2319 44.5487 47.8151 44.627 47.3242 44.627C46.9899 44.627 46.6831 44.5783 46.4038 44.481C46.1287 44.3836 45.8918 44.2334 45.6929 44.0303C45.494 43.8271 45.3395 43.5627 45.2295 43.2368C45.1237 42.911 45.0708 42.5195 45.0708 42.0625V37.6318H46.2451V42.0752C46.2451 42.3841 46.279 42.6401 46.3467 42.8433C46.4186 43.0422 46.5138 43.2008 46.6323 43.3193C46.755 43.4336 46.8905 43.514 47.0386 43.5605C47.1909 43.6071 47.3475 43.6304 47.5083 43.6304C48.0076 43.6304 48.4033 43.5352 48.6953 43.3447C48.9873 43.1501 49.1968 42.8898 49.3237 42.564C49.4549 42.2339 49.5205 41.8678 49.5205 41.4658ZM52.2627 34.75H53.4434V43.167L53.3418 44.5H52.2627V34.75ZM58.0835 41.0088V41.1421C58.0835 41.6414 58.0243 42.1048 57.9058 42.5322C57.7873 42.9554 57.6138 43.3236 57.3853 43.6367C57.1567 43.9499 56.8774 44.1932 56.5474 44.3667C56.2173 44.5402 55.8385 44.627 55.4111 44.627C54.9753 44.627 54.5923 44.5529 54.2622 44.4048C53.9364 44.2524 53.6613 44.0345 53.437 43.751C53.2127 43.4674 53.0329 43.1247 52.8975 42.7227C52.7663 42.3206 52.6753 41.8678 52.6245 41.3643V40.7803C52.6753 40.2725 52.7663 39.8175 52.8975 39.4155C53.0329 39.0135 53.2127 38.6707 53.437 38.3872C53.6613 38.0994 53.9364 37.8815 54.2622 37.7334C54.5881 37.5811 54.9668 37.5049 55.3984 37.5049C55.8301 37.5049 56.2131 37.5895 56.5474 37.7588C56.8817 37.9238 57.161 38.1608 57.3853 38.4697C57.6138 38.7786 57.7873 39.1489 57.9058 39.5806C58.0243 40.008 58.0835 40.484 58.0835 41.0088ZM56.9028 41.1421V41.0088C56.9028 40.666 56.8711 40.3444 56.8076 40.0439C56.7441 39.7393 56.6426 39.4727 56.5029 39.2441C56.3633 39.0114 56.1792 38.8294 55.9507 38.6982C55.7222 38.5628 55.4408 38.4951 55.1064 38.4951C54.8102 38.4951 54.5521 38.5459 54.332 38.6475C54.1162 38.749 53.9321 38.8866 53.7798 39.0601C53.6274 39.2293 53.5026 39.424 53.4053 39.644C53.3122 39.8599 53.2424 40.0841 53.1958 40.3169V41.8467C53.2635 42.1429 53.3735 42.4285 53.5259 42.7036C53.6825 42.9744 53.8898 43.1966 54.1479 43.3701C54.4103 43.5436 54.734 43.6304 55.1191 43.6304C55.4365 43.6304 55.7074 43.5669 55.9316 43.4399C56.1602 43.3088 56.3442 43.1289 56.4839 42.9004C56.6278 42.6719 56.7336 42.4074 56.8013 42.1069C56.869 41.8065 56.9028 41.4849 56.9028 41.1421ZM60.8447 34.75V44.5H59.6641V34.75H60.8447ZM64.0059 37.6318V44.5H62.8252V37.6318H64.0059ZM62.7363 35.8101C62.7363 35.6196 62.7935 35.4588 62.9077 35.3276C63.0262 35.1965 63.1997 35.1309 63.4282 35.1309C63.6525 35.1309 63.8239 35.1965 63.9424 35.3276C64.0651 35.4588 64.1265 35.6196 64.1265 35.8101C64.1265 35.992 64.0651 36.1486 63.9424 36.2798C63.8239 36.4067 63.6525 36.4702 63.4282 36.4702C63.1997 36.4702 63.0262 36.4067 62.9077 36.2798C62.7935 36.1486 62.7363 35.992 62.7363 35.8101ZM68.6396 43.6621C68.9189 43.6621 69.1771 43.605 69.4141 43.4907C69.651 43.3765 69.8457 43.2199 69.998 43.021C70.1504 42.8179 70.2371 42.5872 70.2583 42.3291H71.3755C71.3543 42.7354 71.2168 43.1141 70.9629 43.4653C70.7132 43.8123 70.3853 44.0938 69.979 44.3096C69.5728 44.5212 69.1263 44.627 68.6396 44.627C68.1234 44.627 67.6727 44.536 67.2876 44.354C66.9067 44.172 66.5894 43.9224 66.3354 43.605C66.0858 43.2876 65.8975 42.9237 65.7705 42.5132C65.6478 42.0985 65.5864 41.6605 65.5864 41.1992V40.9326C65.5864 40.4714 65.6478 40.0355 65.7705 39.625C65.8975 39.2103 66.0858 38.8442 66.3354 38.5269C66.5894 38.2095 66.9067 37.9598 67.2876 37.7778C67.6727 37.5959 68.1234 37.5049 68.6396 37.5049C69.1771 37.5049 69.6468 37.6149 70.0488 37.835C70.4508 38.0508 70.7661 38.347 70.9946 38.7236C71.2274 39.096 71.3543 39.5192 71.3755 39.9932H70.2583C70.2371 39.7096 70.1567 39.4536 70.0171 39.2251C69.8817 38.9966 69.6955 38.8146 69.4585 38.6792C69.2257 38.5396 68.9528 38.4697 68.6396 38.4697C68.2799 38.4697 67.9774 38.5417 67.7319 38.6855C67.4907 38.8252 67.2982 39.0156 67.1543 39.2568C67.0146 39.4938 66.9131 39.7583 66.8496 40.0503C66.7904 40.3381 66.7607 40.6322 66.7607 40.9326V41.1992C66.7607 41.4997 66.7904 41.7959 66.8496 42.0879C66.9089 42.3799 67.0083 42.6444 67.1479 42.8813C67.2918 43.1183 67.4844 43.3088 67.7256 43.4526C67.971 43.5923 68.2757 43.6621 68.6396 43.6621Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M24 59.25C21.93 59.25 20.25 60.93 20.25 63C20.25 65.07 21.93 66.75 24 66.75C26.07 66.75 27.75 65.07 27.75 63C27.75 60.93 26.07 59.25 24 59.25ZM24 55.5C19.86 55.5 16.5 58.86 16.5 63C16.5 67.14 19.86 70.5 24 70.5C28.14 70.5 31.5 67.14 31.5 63C31.5 58.86 28.14 55.5 24 55.5ZM24 69C20.685 69 18 66.315 18 63C18 59.685 20.685 57 24 57C27.315 57 30 59.685 30 63C30 66.315 27.315 69 24 69Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M42.6523 64.561H43.8711C43.8076 65.145 43.6405 65.6676 43.3696 66.1289C43.0988 66.5902 42.7158 66.9562 42.2207 67.2271C41.7256 67.4937 41.1077 67.627 40.3672 67.627C39.8255 67.627 39.3325 67.5254 38.8882 67.3223C38.4481 67.1191 38.0693 66.8314 37.752 66.459C37.4346 66.0824 37.1891 65.6317 37.0156 65.1069C36.8464 64.578 36.7617 63.9897 36.7617 63.3423V62.4219C36.7617 61.7744 36.8464 61.1883 37.0156 60.6636C37.1891 60.1346 37.4367 59.6818 37.7583 59.3052C38.0841 58.9285 38.4756 58.6387 38.9326 58.4355C39.3896 58.2324 39.9038 58.1309 40.4751 58.1309C41.1733 58.1309 41.7637 58.262 42.2461 58.5244C42.7285 58.7868 43.103 59.1507 43.3696 59.6162C43.6405 60.0775 43.8076 60.6128 43.8711 61.2222H42.6523C42.5931 60.7905 42.4831 60.4202 42.3223 60.1113C42.1615 59.7982 41.9329 59.557 41.6367 59.3877C41.3405 59.2184 40.9533 59.1338 40.4751 59.1338C40.0646 59.1338 39.7028 59.2121 39.3896 59.3687C39.0807 59.5252 38.8205 59.7474 38.6089 60.0352C38.4015 60.3229 38.245 60.6678 38.1392 61.0698C38.0334 61.4718 37.9805 61.9183 37.9805 62.4092V63.3423C37.9805 63.7951 38.027 64.2204 38.1201 64.6182C38.2174 65.016 38.3634 65.3651 38.5581 65.6655C38.7528 65.966 39.0003 66.203 39.3008 66.3765C39.6012 66.5457 39.9567 66.6304 40.3672 66.6304C40.8877 66.6304 41.3024 66.5479 41.6113 66.3828C41.9202 66.2178 42.153 65.9808 42.3096 65.6719C42.4704 65.363 42.5846 64.9927 42.6523 64.561ZM49.4126 66.3257V62.79C49.4126 62.5192 49.3576 62.2843 49.2476 62.0854C49.1418 61.8823 48.981 61.7257 48.7651 61.6157C48.5493 61.5057 48.2827 61.4507 47.9653 61.4507C47.6691 61.4507 47.4089 61.5015 47.1846 61.603C46.9645 61.7046 46.791 61.8379 46.6641 62.0029C46.5413 62.168 46.48 62.3457 46.48 62.5361H45.3057C45.3057 62.2907 45.3691 62.0474 45.4961 61.8062C45.623 61.5649 45.805 61.347 46.042 61.1523C46.2832 60.9535 46.571 60.7969 46.9053 60.6826C47.2438 60.5641 47.6204 60.5049 48.0352 60.5049C48.5345 60.5049 48.9746 60.5895 49.3555 60.7588C49.7406 60.9281 50.041 61.1841 50.2568 61.5269C50.4769 61.8654 50.5869 62.2907 50.5869 62.8027V66.002C50.5869 66.2305 50.606 66.4738 50.644 66.7319C50.6864 66.9901 50.7477 67.2122 50.8281 67.3984V67.5H49.603C49.5438 67.3646 49.4972 67.1847 49.4634 66.9604C49.4295 66.7319 49.4126 66.5203 49.4126 66.3257ZM49.6157 63.3359L49.6284 64.1611H48.4414C48.1071 64.1611 47.8088 64.1886 47.5464 64.2437C47.284 64.2944 47.064 64.3727 46.8862 64.4785C46.7085 64.5843 46.5731 64.7176 46.48 64.8784C46.3869 65.035 46.3403 65.2191 46.3403 65.4307C46.3403 65.6465 46.389 65.8433 46.4863 66.021C46.5837 66.1987 46.7297 66.3405 46.9243 66.4463C47.1232 66.5479 47.3665 66.5986 47.6543 66.5986C48.014 66.5986 48.3314 66.5225 48.6064 66.3701C48.8815 66.2178 49.0994 66.0316 49.2603 65.8115C49.4253 65.5915 49.5142 65.3778 49.5269 65.1704L50.0283 65.7354C49.9987 65.9131 49.9183 66.1099 49.7871 66.3257C49.6559 66.5415 49.4803 66.7489 49.2603 66.9478C49.0444 67.1424 48.7863 67.3053 48.4858 67.4365C48.1896 67.5635 47.8553 67.627 47.4829 67.627C47.0174 67.627 46.609 67.536 46.2578 67.354C45.9108 67.172 45.64 66.9287 45.4453 66.624C45.2549 66.3151 45.1597 65.9702 45.1597 65.5894C45.1597 65.2212 45.2316 64.8975 45.3755 64.6182C45.5194 64.3346 45.7267 64.0998 45.9976 63.9136C46.2684 63.7231 46.5942 63.5793 46.9751 63.4819C47.356 63.3846 47.7812 63.3359 48.251 63.3359H49.6157ZM53.6084 61.7109V67.5H52.4341V60.6318H53.5767L53.6084 61.7109ZM55.7539 60.5938L55.7476 61.6855C55.6502 61.6644 55.5571 61.6517 55.4683 61.6475C55.3836 61.639 55.2863 61.6348 55.1763 61.6348C54.9054 61.6348 54.6663 61.6771 54.459 61.7617C54.2516 61.8464 54.076 61.9648 53.9321 62.1172C53.7882 62.2695 53.674 62.4515 53.5894 62.6631C53.509 62.8704 53.4561 63.099 53.4307 63.3486L53.1006 63.5391C53.1006 63.1243 53.1408 62.735 53.2212 62.3711C53.3058 62.0072 53.4349 61.6855 53.6084 61.4062C53.7819 61.1227 54.002 60.9027 54.2686 60.7461C54.5394 60.5853 54.861 60.5049 55.2334 60.5049C55.318 60.5049 55.4154 60.5155 55.5254 60.5366C55.6354 60.5535 55.7116 60.5726 55.7539 60.5938Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M49.8262 86.0967H47.167V85.0234H49.8262C50.3411 85.0234 50.7581 84.9414 51.0771 84.7773C51.3962 84.6133 51.6286 84.3854 51.7744 84.0938C51.9248 83.8021 52 83.4694 52 83.0957C52 82.7539 51.9248 82.4326 51.7744 82.1318C51.6286 81.8311 51.3962 81.5895 51.0771 81.4072C50.7581 81.2204 50.3411 81.127 49.8262 81.127H47.4746V90H46.1553V80.0469H49.8262C50.5781 80.0469 51.2139 80.1768 51.7334 80.4365C52.2529 80.6963 52.6471 81.0563 52.916 81.5166C53.1849 81.9723 53.3193 82.4941 53.3193 83.082C53.3193 83.7201 53.1849 84.2646 52.916 84.7158C52.6471 85.167 52.2529 85.5111 51.7334 85.748C51.2139 85.9805 50.5781 86.0967 49.8262 86.0967ZM59.0752 88.7354V84.9277C59.0752 84.6361 59.016 84.3831 58.8975 84.1689C58.7835 83.9502 58.6104 83.7816 58.3779 83.6631C58.1455 83.5446 57.8584 83.4854 57.5166 83.4854C57.1976 83.4854 56.9173 83.54 56.6758 83.6494C56.4388 83.7588 56.252 83.9023 56.1152 84.0801C55.9831 84.2578 55.917 84.4492 55.917 84.6543H54.6523C54.6523 84.39 54.7207 84.1279 54.8574 83.8682C54.9941 83.6084 55.1901 83.3737 55.4453 83.1641C55.7051 82.9499 56.015 82.7812 56.375 82.6582C56.7396 82.5306 57.1452 82.4668 57.5918 82.4668C58.1296 82.4668 58.6035 82.5579 59.0137 82.7402C59.4284 82.9225 59.752 83.1982 59.9844 83.5674C60.2214 83.932 60.3398 84.39 60.3398 84.9414V88.3867C60.3398 88.6328 60.3604 88.8949 60.4014 89.1729C60.4469 89.4508 60.513 89.6901 60.5996 89.8906V90H59.2803C59.2165 89.8542 59.1663 89.6605 59.1299 89.4189C59.0934 89.1729 59.0752 88.945 59.0752 88.7354ZM59.2939 85.5156L59.3076 86.4043H58.0293C57.6693 86.4043 57.348 86.4339 57.0654 86.4932C56.7829 86.5479 56.5459 86.6322 56.3545 86.7461C56.1631 86.86 56.0173 87.0036 55.917 87.1768C55.8167 87.3454 55.7666 87.5436 55.7666 87.7715C55.7666 88.0039 55.819 88.2158 55.9238 88.4072C56.0286 88.5986 56.1859 88.7513 56.3955 88.8652C56.6097 88.9746 56.8717 89.0293 57.1816 89.0293C57.569 89.0293 57.9108 88.9473 58.207 88.7832C58.5033 88.6191 58.738 88.4186 58.9111 88.1816C59.0889 87.9447 59.1846 87.7145 59.1982 87.4912L59.7383 88.0996C59.7064 88.291 59.6198 88.5029 59.4785 88.7354C59.3372 88.9678 59.1481 89.1911 58.9111 89.4053C58.6787 89.6149 58.4007 89.7904 58.0771 89.9316C57.7581 90.0684 57.3981 90.1367 56.9971 90.1367C56.4958 90.1367 56.056 90.0387 55.6777 89.8428C55.304 89.6468 55.0124 89.3848 54.8027 89.0566C54.5977 88.724 54.4951 88.3525 54.4951 87.9424C54.4951 87.5459 54.5726 87.1973 54.7275 86.8965C54.8825 86.5911 55.1058 86.3382 55.3975 86.1377C55.6891 85.9326 56.04 85.7777 56.4502 85.6729C56.8604 85.568 57.3184 85.5156 57.8242 85.5156H59.2939ZM63.5938 83.7656V90H62.3291V82.6035H63.5596L63.5938 83.7656ZM65.9043 82.5625L65.8975 83.7383C65.7926 83.7155 65.6924 83.7018 65.5967 83.6973C65.5055 83.6882 65.4007 83.6836 65.2822 83.6836C64.9906 83.6836 64.7331 83.7292 64.5098 83.8203C64.2865 83.9115 64.0973 84.0391 63.9424 84.2031C63.7874 84.3672 63.6644 84.5632 63.5732 84.791C63.4867 85.0143 63.4297 85.2604 63.4023 85.5293L63.0469 85.7344C63.0469 85.2878 63.0902 84.8685 63.1768 84.4766C63.2679 84.0846 63.4069 83.7383 63.5938 83.4375C63.7806 83.1322 64.0176 82.8952 64.3047 82.7266C64.5964 82.5534 64.9427 82.4668 65.3438 82.4668C65.4349 82.4668 65.5397 82.4782 65.6582 82.501C65.7767 82.5192 65.8587 82.5397 65.9043 82.5625ZM68.3447 79.5V90H67.0732V79.5H68.3447ZM72.8633 82.6035L69.6367 86.0557L67.832 87.9287L67.7295 86.582L69.0215 85.0371L71.3184 82.6035H72.8633ZM71.708 90L69.0693 86.4727L69.7256 85.3447L73.1982 90H71.708ZM75.543 82.6035V90H74.2715V82.6035H75.543ZM74.1758 80.6416C74.1758 80.4365 74.2373 80.2633 74.3604 80.1221C74.488 79.9808 74.6748 79.9102 74.9209 79.9102C75.1624 79.9102 75.347 79.9808 75.4746 80.1221C75.6068 80.2633 75.6729 80.4365 75.6729 80.6416C75.6729 80.8376 75.6068 81.0062 75.4746 81.1475C75.347 81.2842 75.1624 81.3525 74.9209 81.3525C74.6748 81.3525 74.488 81.2842 74.3604 81.1475C74.2373 81.0062 74.1758 80.8376 74.1758 80.6416ZM78.8379 84.1826V90H77.5732V82.6035H78.7695L78.8379 84.1826ZM78.5371 86.0215L78.0107 86.001C78.0153 85.4951 78.0905 85.028 78.2363 84.5996C78.3822 84.1667 78.5872 83.7907 78.8516 83.4717C79.1159 83.1527 79.4303 82.9066 79.7949 82.7334C80.1641 82.5557 80.5719 82.4668 81.0186 82.4668C81.3831 82.4668 81.7113 82.5169 82.0029 82.6172C82.2946 82.7129 82.543 82.8678 82.748 83.082C82.9577 83.2962 83.1172 83.5742 83.2266 83.916C83.3359 84.2533 83.3906 84.6657 83.3906 85.1533V90H82.1191V85.1396C82.1191 84.7523 82.0622 84.4424 81.9482 84.21C81.8343 83.973 81.668 83.8021 81.4492 83.6973C81.2305 83.5879 80.9616 83.5332 80.6426 83.5332C80.3281 83.5332 80.041 83.5993 79.7812 83.7314C79.526 83.8636 79.305 84.0459 79.1182 84.2783C78.9359 84.5107 78.7923 84.7773 78.6875 85.0781C78.5872 85.3743 78.5371 85.6888 78.5371 86.0215ZM90.1035 82.6035H91.252V89.8428C91.252 90.4945 91.1198 91.0505 90.8555 91.5107C90.5911 91.971 90.222 92.3197 89.748 92.5566C89.2786 92.7982 88.7363 92.9189 88.1211 92.9189C87.8659 92.9189 87.5651 92.8779 87.2188 92.7959C86.877 92.7184 86.5397 92.584 86.207 92.3926C85.8789 92.2057 85.6032 91.9528 85.3799 91.6338L86.043 90.8818C86.3529 91.2555 86.6764 91.5153 87.0137 91.6611C87.3555 91.807 87.6927 91.8799 88.0254 91.8799C88.4264 91.8799 88.7728 91.8047 89.0645 91.6543C89.3561 91.5039 89.5817 91.2806 89.7412 90.9844C89.9053 90.6927 89.9873 90.3327 89.9873 89.9043V84.2305L90.1035 82.6035ZM85.0107 86.3838V86.2402C85.0107 85.6751 85.0768 85.1624 85.209 84.7021C85.3457 84.2373 85.5394 83.8385 85.79 83.5059C86.0452 83.1732 86.3529 82.918 86.7129 82.7402C87.0729 82.5579 87.4785 82.4668 87.9297 82.4668C88.3945 82.4668 88.8001 82.5488 89.1465 82.7129C89.4974 82.8724 89.7936 83.1071 90.0352 83.417C90.2812 83.7223 90.4749 84.0915 90.6162 84.5244C90.7575 84.9574 90.8555 85.4473 90.9102 85.9941V86.623C90.86 87.1654 90.762 87.653 90.6162 88.0859C90.4749 88.5189 90.2812 88.888 90.0352 89.1934C89.7936 89.4987 89.4974 89.7334 89.1465 89.8975C88.7956 90.057 88.3854 90.1367 87.916 90.1367C87.474 90.1367 87.0729 90.0433 86.7129 89.8564C86.3574 89.6696 86.0521 89.4076 85.7969 89.0703C85.5417 88.7331 85.3457 88.3366 85.209 87.8809C85.0768 87.4206 85.0107 86.9215 85.0107 86.3838ZM86.2754 86.2402V86.3838C86.2754 86.7529 86.3118 87.0993 86.3848 87.4229C86.4622 87.7464 86.5785 88.0312 86.7334 88.2773C86.8929 88.5234 87.0957 88.7171 87.3418 88.8584C87.5879 88.9951 87.8818 89.0635 88.2236 89.0635C88.6429 89.0635 88.9893 88.9746 89.2627 88.7969C89.5361 88.6191 89.7526 88.3844 89.9121 88.0928C90.0762 87.8011 90.2038 87.4844 90.2949 87.1426V85.4951C90.2448 85.2445 90.1673 85.0029 90.0625 84.7705C89.9622 84.5335 89.8301 84.3239 89.666 84.1416C89.5065 83.9548 89.3083 83.8066 89.0713 83.6973C88.8343 83.5879 88.5563 83.5332 88.2373 83.5332C87.891 83.5332 87.5924 83.6061 87.3418 83.752C87.0957 83.8932 86.8929 84.0892 86.7334 84.3398C86.5785 84.5859 86.4622 84.873 86.3848 85.2012C86.3118 85.5247 86.2754 85.8711 86.2754 86.2402ZM97.9102 84.0254V92.8438H96.6387V82.6035H97.8008L97.9102 84.0254ZM102.894 86.2402V86.3838C102.894 86.9215 102.83 87.4206 102.702 87.8809C102.575 88.3366 102.388 88.7331 102.142 89.0703C101.9 89.4076 101.602 89.6696 101.246 89.8564C100.891 90.0433 100.483 90.1367 100.022 90.1367C99.5531 90.1367 99.1383 90.0592 98.7783 89.9043C98.4183 89.7493 98.113 89.5238 97.8623 89.2275C97.6117 88.9313 97.4111 88.5758 97.2607 88.1611C97.1149 87.7464 97.0146 87.2793 96.96 86.7598V85.9941C97.0146 85.4473 97.1172 84.9574 97.2676 84.5244C97.418 84.0915 97.6162 83.7223 97.8623 83.417C98.113 83.1071 98.416 82.8724 98.7715 82.7129C99.127 82.5488 99.5371 82.4668 100.002 82.4668C100.467 82.4668 100.879 82.5579 101.239 82.7402C101.599 82.918 101.902 83.1732 102.148 83.5059C102.395 83.8385 102.579 84.2373 102.702 84.7021C102.83 85.1624 102.894 85.6751 102.894 86.2402ZM101.622 86.3838V86.2402C101.622 85.8711 101.583 85.5247 101.506 85.2012C101.428 84.873 101.308 84.5859 101.144 84.3398C100.984 84.0892 100.779 83.8932 100.528 83.752C100.278 83.6061 99.9792 83.5332 99.6328 83.5332C99.3138 83.5332 99.0358 83.5879 98.7988 83.6973C98.5664 83.8066 98.3682 83.9548 98.2041 84.1416C98.04 84.3239 97.9056 84.5335 97.8008 84.7705C97.7005 85.0029 97.6253 85.2445 97.5752 85.4951V87.2656C97.6663 87.5846 97.7939 87.8854 97.958 88.168C98.1221 88.446 98.3408 88.6715 98.6143 88.8447C98.8877 89.0133 99.2318 89.0977 99.6465 89.0977C99.9883 89.0977 100.282 89.027 100.528 88.8857C100.779 88.7399 100.984 88.5417 101.144 88.291C101.308 88.0404 101.428 87.7533 101.506 87.4297C101.583 87.1016 101.622 86.7529 101.622 86.3838ZM105.881 79.5V90H104.609V79.5H105.881ZM112.272 88.7354V84.9277C112.272 84.6361 112.213 84.3831 112.095 84.1689C111.981 83.9502 111.808 83.7816 111.575 83.6631C111.343 83.5446 111.056 83.4854 110.714 83.4854C110.395 83.4854 110.115 83.54 109.873 83.6494C109.636 83.7588 109.449 83.9023 109.312 84.0801C109.18 84.2578 109.114 84.4492 109.114 84.6543H107.85C107.85 84.39 107.918 84.1279 108.055 83.8682C108.191 83.6084 108.387 83.3737 108.643 83.1641C108.902 82.9499 109.212 82.7812 109.572 82.6582C109.937 82.5306 110.342 82.4668 110.789 82.4668C111.327 82.4668 111.801 82.5579 112.211 82.7402C112.626 82.9225 112.949 83.1982 113.182 83.5674C113.419 83.932 113.537 84.39 113.537 84.9414V88.3867C113.537 88.6328 113.558 88.8949 113.599 89.1729C113.644 89.4508 113.71 89.6901 113.797 89.8906V90H112.478C112.414 89.8542 112.364 89.6605 112.327 89.4189C112.291 89.1729 112.272 88.945 112.272 88.7354ZM112.491 85.5156L112.505 86.4043H111.227C110.867 86.4043 110.545 86.4339 110.263 86.4932C109.98 86.5479 109.743 86.6322 109.552 86.7461C109.36 86.86 109.215 87.0036 109.114 87.1768C109.014 87.3454 108.964 87.5436 108.964 87.7715C108.964 88.0039 109.016 88.2158 109.121 88.4072C109.226 88.5986 109.383 88.7513 109.593 88.8652C109.807 88.9746 110.069 89.0293 110.379 89.0293C110.766 89.0293 111.108 88.9473 111.404 88.7832C111.701 88.6191 111.935 88.4186 112.108 88.1816C112.286 87.9447 112.382 87.7145 112.396 87.4912L112.936 88.0996C112.904 88.291 112.817 88.5029 112.676 88.7354C112.535 88.9678 112.345 89.1911 112.108 89.4053C111.876 89.6149 111.598 89.7904 111.274 89.9316C110.955 90.0684 110.595 90.1367 110.194 90.1367C109.693 90.1367 109.253 90.0387 108.875 89.8428C108.501 89.6468 108.21 89.3848 108 89.0566C107.795 88.724 107.692 88.3525 107.692 87.9424C107.692 87.5459 107.77 87.1973 107.925 86.8965C108.08 86.5911 108.303 86.3382 108.595 86.1377C108.886 85.9326 109.237 85.7777 109.647 85.6729C110.058 85.568 110.516 85.5156 111.021 85.5156H112.491ZM118.486 89.0977C118.787 89.0977 119.065 89.0361 119.32 88.9131C119.576 88.79 119.785 88.6214 119.949 88.4072C120.113 88.1885 120.207 87.9401 120.229 87.6621H121.433C121.41 88.0996 121.262 88.5075 120.988 88.8857C120.719 89.2594 120.366 89.5625 119.929 89.7949C119.491 90.0228 119.01 90.1367 118.486 90.1367C117.93 90.1367 117.445 90.0387 117.03 89.8428C116.62 89.6468 116.278 89.3779 116.005 89.0361C115.736 88.6943 115.533 88.3024 115.396 87.8604C115.264 87.4137 115.198 86.9421 115.198 86.4453V86.1582C115.198 85.6615 115.264 85.1921 115.396 84.75C115.533 84.3034 115.736 83.9092 116.005 83.5674C116.278 83.2256 116.62 82.9567 117.03 82.7607C117.445 82.5648 117.93 82.4668 118.486 82.4668C119.065 82.4668 119.571 82.5853 120.004 82.8223C120.437 83.0547 120.776 83.3737 121.022 83.7793C121.273 84.1803 121.41 84.6361 121.433 85.1465H120.229C120.207 84.8411 120.12 84.5654 119.97 84.3193C119.824 84.0732 119.623 83.8773 119.368 83.7314C119.118 83.5811 118.824 83.5059 118.486 83.5059C118.099 83.5059 117.773 83.5833 117.509 83.7383C117.249 83.8887 117.042 84.0938 116.887 84.3535C116.736 84.6087 116.627 84.8936 116.559 85.208C116.495 85.5179 116.463 85.8346 116.463 86.1582V86.4453C116.463 86.7689 116.495 87.0879 116.559 87.4023C116.622 87.7168 116.729 88.0016 116.88 88.2568C117.035 88.512 117.242 88.7171 117.502 88.8721C117.766 89.0225 118.094 89.0977 118.486 89.0977ZM125.924 90.1367C125.409 90.1367 124.942 90.0501 124.522 89.877C124.108 89.6992 123.75 89.4508 123.449 89.1318C123.153 88.8128 122.925 88.4346 122.766 87.9971C122.606 87.5596 122.526 87.0811 122.526 86.5615V86.2744C122.526 85.6729 122.615 85.1374 122.793 84.668C122.971 84.194 123.212 83.793 123.518 83.4648C123.823 83.1367 124.169 82.8883 124.557 82.7197C124.944 82.5511 125.345 82.4668 125.76 82.4668C126.288 82.4668 126.744 82.5579 127.127 82.7402C127.514 82.9225 127.831 83.1777 128.077 83.5059C128.323 83.8294 128.506 84.2122 128.624 84.6543C128.743 85.0918 128.802 85.5703 128.802 86.0898V86.6572H123.278V85.625H127.537V85.5293C127.519 85.2012 127.451 84.8822 127.332 84.5723C127.218 84.2624 127.036 84.0072 126.785 83.8066C126.535 83.6061 126.193 83.5059 125.76 83.5059C125.473 83.5059 125.208 83.5674 124.967 83.6904C124.725 83.8089 124.518 83.9867 124.345 84.2236C124.172 84.4606 124.037 84.75 123.941 85.0918C123.846 85.4336 123.798 85.8278 123.798 86.2744V86.5615C123.798 86.9124 123.846 87.2428 123.941 87.5527C124.042 87.8581 124.185 88.127 124.372 88.3594C124.563 88.5918 124.794 88.7741 125.062 88.9062C125.336 89.0384 125.646 89.1045 125.992 89.1045C126.439 89.1045 126.817 89.0133 127.127 88.8311C127.437 88.6488 127.708 88.4049 127.94 88.0996L128.706 88.708C128.547 88.9495 128.344 89.1797 128.098 89.3984C127.852 89.6172 127.549 89.7949 127.188 89.9316C126.833 90.0684 126.411 90.1367 125.924 90.1367ZM133.026 87.1973H131.755C131.759 86.7598 131.798 86.402 131.871 86.124C131.949 85.8415 132.074 85.584 132.247 85.3516C132.42 85.1191 132.65 84.8548 132.938 84.5586C133.147 84.3444 133.339 84.1439 133.512 83.957C133.689 83.7656 133.833 83.5605 133.942 83.3418C134.052 83.1185 134.106 82.8519 134.106 82.542C134.106 82.2275 134.049 81.9564 133.936 81.7285C133.826 81.5007 133.662 81.3252 133.443 81.2021C133.229 81.0791 132.963 81.0176 132.644 81.0176C132.379 81.0176 132.129 81.0654 131.892 81.1611C131.655 81.2568 131.463 81.4049 131.317 81.6055C131.172 81.8014 131.096 82.0589 131.092 82.3779H129.827C129.836 81.863 129.964 81.4209 130.21 81.0518C130.461 80.6826 130.798 80.4001 131.222 80.2041C131.646 80.0081 132.119 79.9102 132.644 79.9102C133.222 79.9102 133.715 80.015 134.12 80.2246C134.53 80.4342 134.842 80.735 135.057 81.127C135.271 81.5143 135.378 81.9746 135.378 82.5078C135.378 82.918 135.294 83.2962 135.125 83.6426C134.961 83.9844 134.749 84.3057 134.489 84.6064C134.229 84.9072 133.954 85.1943 133.662 85.4678C133.411 85.7002 133.243 85.9622 133.156 86.2539C133.07 86.5456 133.026 86.86 133.026 87.1973ZM131.7 89.3643C131.7 89.1592 131.764 88.986 131.892 88.8447C132.019 88.7035 132.204 88.6328 132.445 88.6328C132.691 88.6328 132.878 88.7035 133.006 88.8447C133.133 88.986 133.197 89.1592 133.197 89.3643C133.197 89.5602 133.133 89.7288 133.006 89.8701C132.878 90.0114 132.691 90.082 132.445 90.082C132.204 90.082 132.019 90.0114 131.892 89.8701C131.764 89.7288 131.7 89.5602 131.7 89.3643Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M54 99.5C49.86 99.5 46.5 102.86 46.5 107C46.5 111.14 49.86 114.5 54 114.5C58.14 114.5 61.5 111.14 61.5 107C61.5 102.86 58.14 99.5 54 99.5ZM54 113C50.685 113 48 110.315 48 107C48 103.685 50.685 101 54 101C57.315 101 60 103.685 60 107C60 110.315 57.315 113 54 113Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M67.498 102.258L69.8975 106.898L72.3032 102.258H73.6934L70.5068 108.047V111.5H69.2817V108.047L66.0952 102.258H67.498ZM77.1338 111.627C76.6556 111.627 76.2218 111.547 75.8325 111.386C75.4474 111.221 75.1152 110.99 74.8359 110.694C74.5609 110.398 74.3493 110.046 74.2012 109.64C74.0531 109.234 73.979 108.79 73.979 108.307V108.041C73.979 107.482 74.0615 106.985 74.2266 106.549C74.3916 106.109 74.6159 105.736 74.8994 105.432C75.1829 105.127 75.5046 104.896 75.8643 104.74C76.224 104.583 76.5964 104.505 76.9814 104.505C77.4723 104.505 77.8955 104.59 78.251 104.759C78.6107 104.928 78.9048 105.165 79.1333 105.47C79.3618 105.77 79.5311 106.126 79.6411 106.536C79.7511 106.942 79.8062 107.387 79.8062 107.869V108.396H74.6772V107.438H78.6318V107.349C78.6149 107.044 78.5514 106.748 78.4414 106.46C78.3356 106.172 78.1663 105.935 77.9336 105.749C77.7008 105.563 77.3835 105.47 76.9814 105.47C76.7148 105.47 76.4694 105.527 76.2451 105.641C76.0208 105.751 75.8283 105.916 75.6675 106.136C75.5067 106.356 75.3818 106.625 75.293 106.942C75.2041 107.26 75.1597 107.626 75.1597 108.041V108.307C75.1597 108.633 75.2041 108.94 75.293 109.228C75.3861 109.511 75.5194 109.761 75.6929 109.977C75.8706 110.192 76.0843 110.362 76.334 110.484C76.5879 110.607 76.8757 110.668 77.1973 110.668C77.612 110.668 77.9632 110.584 78.251 110.415C78.5387 110.245 78.7905 110.019 79.0063 109.735L79.7173 110.3C79.5692 110.525 79.3809 110.738 79.1523 110.941C78.9238 111.145 78.6424 111.31 78.3081 111.437C77.978 111.563 77.5866 111.627 77.1338 111.627ZM85.1763 109.678C85.1763 109.509 85.1382 109.352 85.062 109.208C84.9901 109.06 84.8398 108.927 84.6113 108.809C84.387 108.686 84.0485 108.58 83.5957 108.491C83.2148 108.411 82.87 108.316 82.561 108.206C82.2563 108.096 81.9961 107.962 81.7803 107.806C81.5687 107.649 81.4058 107.465 81.2915 107.253C81.1772 107.042 81.1201 106.794 81.1201 106.511C81.1201 106.24 81.1794 105.984 81.2979 105.743C81.4206 105.501 81.592 105.288 81.812 105.102C82.0363 104.915 82.305 104.769 82.6182 104.664C82.9313 104.558 83.2804 104.505 83.6655 104.505C84.2157 104.505 84.6854 104.602 85.0747 104.797C85.464 104.992 85.7624 105.252 85.9697 105.578C86.1771 105.899 86.2808 106.257 86.2808 106.65H85.1064C85.1064 106.46 85.0493 106.276 84.9351 106.098C84.825 105.916 84.6621 105.766 84.4463 105.647C84.2347 105.529 83.9744 105.47 83.6655 105.47C83.3397 105.47 83.0752 105.521 82.8721 105.622C82.6732 105.719 82.5272 105.844 82.4341 105.997C82.3452 106.149 82.3008 106.31 82.3008 106.479C82.3008 106.606 82.3219 106.72 82.3643 106.822C82.4108 106.919 82.4912 107.01 82.6055 107.095C82.7197 107.175 82.8805 107.251 83.0879 107.323C83.2952 107.395 83.5597 107.467 83.8813 107.539C84.4442 107.666 84.9076 107.818 85.2715 107.996C85.6354 108.174 85.9062 108.392 86.084 108.65C86.2617 108.908 86.3506 109.221 86.3506 109.589C86.3506 109.89 86.2871 110.165 86.1602 110.415C86.0374 110.664 85.8576 110.88 85.6206 111.062C85.3879 111.24 85.1086 111.379 84.7827 111.481C84.4611 111.578 84.0993 111.627 83.6973 111.627C83.0921 111.627 82.5801 111.519 82.1611 111.303C81.7422 111.087 81.4248 110.808 81.209 110.465C80.9932 110.123 80.8853 109.761 80.8853 109.38H82.0659C82.0828 109.701 82.1759 109.958 82.3452 110.148C82.5145 110.334 82.7218 110.467 82.9673 110.548C83.2127 110.624 83.4561 110.662 83.6973 110.662C84.0189 110.662 84.2876 110.62 84.5034 110.535C84.7235 110.451 84.8906 110.334 85.0049 110.186C85.1191 110.038 85.1763 109.869 85.1763 109.678Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M54 122.5C49.86 122.5 46.5 125.86 46.5 130C46.5 134.14 49.86 137.5 54 137.5C58.14 137.5 61.5 134.14 61.5 130C61.5 125.86 58.14 122.5 54 122.5ZM54 136C50.685 136 48 133.315 48 130C48 126.685 50.685 124 54 124C57.315 124 60 126.685 60 130C60 133.315 57.315 136 54 136Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M74.1821 125.258V134.5H72.9507L68.2979 127.372V134.5H67.0728V125.258H68.2979L72.9697 132.405V125.258H74.1821ZM75.8643 131.142V130.996C75.8643 130.501 75.9362 130.042 76.0801 129.619C76.224 129.191 76.4313 128.821 76.7021 128.508C76.973 128.19 77.3009 127.945 77.686 127.771C78.0711 127.594 78.5028 127.505 78.981 127.505C79.4634 127.505 79.8971 127.594 80.2822 127.771C80.6715 127.945 81.0016 128.19 81.2725 128.508C81.5475 128.821 81.757 129.191 81.9009 129.619C82.0448 130.042 82.1167 130.501 82.1167 130.996V131.142C82.1167 131.637 82.0448 132.096 81.9009 132.52C81.757 132.943 81.5475 133.313 81.2725 133.63C81.0016 133.944 80.6737 134.189 80.2886 134.367C79.9077 134.54 79.4761 134.627 78.9937 134.627C78.5112 134.627 78.0775 134.54 77.6924 134.367C77.3073 134.189 76.9772 133.944 76.7021 133.63C76.4313 133.313 76.224 132.943 76.0801 132.52C75.9362 132.096 75.8643 131.637 75.8643 131.142ZM77.0386 130.996V131.142C77.0386 131.485 77.0788 131.809 77.1592 132.113C77.2396 132.414 77.3602 132.68 77.521 132.913C77.686 133.146 77.8913 133.33 78.1367 133.465C78.3822 133.597 78.6678 133.662 78.9937 133.662C79.3153 133.662 79.5967 133.597 79.8379 133.465C80.0833 133.33 80.2865 133.146 80.4473 132.913C80.6081 132.68 80.7287 132.414 80.8091 132.113C80.8937 131.809 80.936 131.485 80.936 131.142V130.996C80.936 130.658 80.8937 130.338 80.8091 130.038C80.7287 129.733 80.606 129.464 80.4409 129.231C80.2801 128.994 80.077 128.808 79.8315 128.673C79.5903 128.537 79.3068 128.47 78.981 128.47C78.6593 128.47 78.3758 128.537 78.1304 128.673C77.8892 128.808 77.686 128.994 77.521 129.231C77.3602 129.464 77.2396 129.733 77.1592 130.038C77.0788 130.338 77.0386 130.658 77.0386 130.996Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M39.7071 84.2929C40.0976 84.6834 40.0976 85.3166 39.7071 85.7071L33.3431 92.0711C32.9526 92.4616 32.3195 92.4616 31.9289 92.0711C31.5384 91.6805 31.5384 91.0474 31.9289 90.6569L37.5858 85L31.9289 79.3431C31.5384 78.9526 31.5384 78.3195 31.9289 77.9289C32.3195 77.5384 32.9526 77.5384 33.3431 77.9289L39.7071 84.2929ZM25 70V75H23V70H25ZM34 84H39V86H34V84ZM25 75C25 79.9706 29.0294 84 34 84V86C27.9249 86 23 81.0751 23 75H25Z",fill:"#4272F9"})),{getCurrentInnerBlocks:Qt}=JetFBActions,{__:el}=wp.i18n,{useSelect:Cl}=wp.data,{BlockControls:tl,InnerBlocks:ll,useBlockProps:rl,InspectorControls:nl}=wp.blockEditor,{Button:al,ToolbarGroup:il,TextControl:ol,PanelBody:sl,Tip:cl}=wp.components,{useState:dl,useEffect:ml,RawHTML:ul}=wp.element;function pl(e){return e.some(({name:e})=>e.includes("form-break-field"))}const fl=JSON.parse('{"apiVersion":3,"name":"jet-forms/conditional-block","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","conditonal"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Conditional Block","icon":"\\n\\n\\n\\n","attributes":{"name":{"type":"string","default":""},"last_page_name":{"type":"string","default":""},"func_type":{"type":"string","default":""},"func_settings":{"type":"object","default":{}},"conditions":{"type":"array","default":[]},"className":{"type":"string","default":""},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"providesContext":{"jet-forms/conditional-block--name":"name","jet-forms/conditional-block--last_page_name":"last_page_name"}}'),{InnerBlocks:Vl}=wp.blockEditor?wp.blockEditor:wp.editor;function Hl(){return(0,h.createElement)(Vl.Content,null)}const{dispatch:hl}=wp.data,{Tools:bl}=JetFBActions,Ml={attributes:fl.attributes,supports:fl.supports,save:Hl,isEligible(e){const{func_type:C=!1,conditions:t=[]}=e;return!1===C&&t?.length},migrate(e,C){const t={};let l=null;const[r]=C||[],n=[],a=e.conditions.sort(e=>"show"===e.type?-1:1);for(const e of a){var i;e.type=null!==(i=e.type)&&void 0!==i?i:"show","set_value"!==e.type?["show","hide"].includes(e.type)&&(null===l&&(l=e.type),delete e.type,"hide"===l&&Object.keys(t).length&&(t[e.field+"_or"]={or_operator:!0}),t[e.field]=e):n.push(e)}return n.length&&"object"==typeof r&&function(e,C){if(!e.name.includes("jet-forms/")||!e.attributes.hasOwnProperty("value"))return;const{updateBlock:t}=hl("core/block-editor"),l=[];for(const{field:e,operator:t,set_value:r,value:n}of C){const C={id:bl.getRandomID(),conditions:[{field:e,operator:t,value:n}],to_set:null!=r?r:""};l.push(C)}setTimeout(()=>{t(e.clientId,{attributes:{value:{groups:l}}})})}(r,n),l=null!=l?l:"show",{...e,func_type:l,conditions:Object.values(t)}}},{__:Ll,sprintf:gl}=wp.i18n,{createBlock:Zl,createBlocksFromInnerBlocksTemplate:yl}=wp.blocks,{name:El,icon:wl=""}=fl,vl={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:wl}}),description:Ll("Utilize the Conditional Visibility functionality allowing to make fields of the form invisible to the users until some conditions are met.","jet-form-builder"),edit:function(e){const C=rl(),{setAttributes:t,attributes:l,clientId:r,editProps:{uniqKey:n}}=e;ml(()=>{t({name:r})},[r,t]);const a=Qt(),i=a.reduce((e,{name:C})=>e+C,""),[o,s]=dl(!1),[c,d]=dl(()=>pl(a));ml(()=>{d(pl(a))},[i]);const m=Cl(e=>e("jet-forms/block-conditions").getFunctionDisplay(l.func_type||"show"),[l.func_type]),u=l?.conditions?.length?(0,h.createElement)("span",{className:"dashicon dashicons dashicons-randomize","data-count":l.conditions.reduce((e,C)=>C?.or_operator?e:e+1,0)}):(0,h.createElement)("span",{className:"dashicon dashicons dashicons-randomize"});return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Xt):(0,h.createElement)(h.Fragment,null,(0,h.createElement)("div",{...C},(0,h.createElement)("div",{className:"jet-form-builder__conditional"},(0,h.createElement)(ll,{key:n("conditional-fields")}))),o&&(0,h.createElement)(wt,{key:n("ConditionsModal"),setShowModal:s}),(0,h.createElement)(tl,null,(0,h.createElement)(il,{key:n("ToolbarGroup")},(0,h.createElement)(al,{className:"jet-fb-button",key:n("randomize"),isTertiary:!0,isSmall:!0,icon:u,onClick:()=>s(!0)}))),(0,h.createElement)(nl,null,(0,h.createElement)(sl,{title:el("Conditions","jet-form-builder"),initialOpen:!0},(0,h.createElement)("p",{className:"jet-fb flex ai-center gap-05em"},(0,h.createElement)("b",null,m),(0,h.createElement)(al,{isTertiary:!0,isSmall:!0,icon:"edit",onClick:()=>s(!0)})),(0,h.createElement)(_t.Provider,{value:{showModal:o,setShowModal:s}},(0,h.createElement)(Yt,{attributes:l}))),c&&(0,h.createElement)(sl,{title:el("Multistep","jet-form-builder")},(0,h.createElement)(ol,{label:el("Last Page Name","jet-form-builder"),key:n("last_page_name"),value:l.last_page_name,help:el('The value of this field will be set as the name of the last page with the "Progress Bar" block.',"jet-form-builder"),onChange:e=>t({last_page_name:e})}))),(0,h.createElement)(nl,{group:"advanced"},(0,h.createElement)("div",{style:{marginBottom:"1.5em"}},(0,h.createElement)(cl,null,(0,h.createElement)(ul,null,el("Add the CSS class jet-form-builder--hidden to make this block hidden by default.","jet-form-builder")))),(0,h.createElement)(ol,{label:el("Additional CSS class(es)","jet-form-builder"),help:el("Separate multiple classes with spaces.","jet-form-builder"),value:l.class_name,onChange:e=>t({class_name:e})})))},save:Hl,useEditProps:["uniqKey"],jfbGetFields:()=>[],__experimentalLabel:(e,{context:C})=>{var t;if("list-view"!==C)return;const l=wp.data.select("jet-forms/block-conditions").getFunction(e?.func_type),r=l?.label,n=null!==(t=e?.conditions?.reduce((e,C)=>C?.or_operator?e:e+1,0))&&void 0!==t?t:0;return gl(Ll("%1$s %2$d condition(s)","jet-form-builder"),r,n)},example:{attributes:{isPreview:!0}},transforms:{from:[{type:"block",blocks:["*"],isMultiBlock:!0,__experimentalConvert:e=>{const C=e.map(({name:e,attributes:C,innerBlocks:t})=>[e,{...C},t]);return Zl(El,{},yl(C))},priority:0}]},deprecated:[Ml]},_l=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_75_1407)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"20.5",width:"22",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.3887 29.4028V30.3677H28.0283V29.4028H34.3887ZM42.9199 29.4028V30.3677H36.5596V29.4028H42.9199Z",fill:"white"}),(0,h.createElement)("path",{d:"M49.8442 33.8779C49.8442 33.679 49.9056 33.5119 50.0283 33.3765C50.1553 33.2368 50.3372 33.167 50.5742 33.167C50.8112 33.167 50.991 33.2368 51.1138 33.3765C51.2407 33.5119 51.3042 33.679 51.3042 33.8779C51.3042 34.0726 51.2407 34.2376 51.1138 34.373C50.991 34.5085 50.8112 34.5762 50.5742 34.5762C50.3372 34.5762 50.1553 34.5085 50.0283 34.373C49.9056 34.2376 49.8442 34.0726 49.8442 33.8779ZM49.8506 28.2729C49.8506 28.0741 49.9119 27.9069 50.0347 27.7715C50.1616 27.6318 50.3436 27.562 50.5806 27.562C50.8175 27.562 50.9974 27.6318 51.1201 27.7715C51.2471 27.9069 51.3105 28.0741 51.3105 28.2729C51.3105 28.4676 51.2471 28.6326 51.1201 28.7681C50.9974 28.9035 50.8175 28.9712 50.5806 28.9712C50.3436 28.9712 50.1616 28.9035 50.0347 28.7681C49.9119 28.6326 49.8506 28.4676 49.8506 28.2729ZM62.7617 29.4028V30.3677H56.4014V29.4028H62.7617ZM71.293 29.4028V30.3677H64.9326V29.4028H71.293ZM76.5044 33.8779C76.5044 33.679 76.5658 33.5119 76.6885 33.3765C76.8154 33.2368 76.9974 33.167 77.2344 33.167C77.4714 33.167 77.6512 33.2368 77.7739 33.3765C77.9009 33.5119 77.9644 33.679 77.9644 33.8779C77.9644 34.0726 77.9009 34.2376 77.7739 34.373C77.6512 34.5085 77.4714 34.5762 77.2344 34.5762C76.9974 34.5762 76.8154 34.5085 76.6885 34.373C76.5658 34.2376 76.5044 34.0726 76.5044 33.8779ZM76.5107 28.2729C76.5107 28.0741 76.5721 27.9069 76.6948 27.7715C76.8218 27.6318 77.0037 27.562 77.2407 27.562C77.4777 27.562 77.6576 27.6318 77.7803 27.7715C77.9072 27.9069 77.9707 28.0741 77.9707 28.2729C77.9707 28.4676 77.9072 28.6326 77.7803 28.7681C77.6576 28.9035 77.4777 28.9712 77.2407 28.9712C77.0037 28.9712 76.8218 28.9035 76.6948 28.7681C76.5721 28.6326 76.5107 28.4676 76.5107 28.2729ZM89.4219 29.4028V30.3677H83.0615V29.4028H89.4219ZM97.9531 29.4028V30.3677H91.5928V29.4028H97.9531Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270 24V38C270 39.1 269.1 40 268 40H254C252.89 40 252 39.1 252 38L252.01 24C252.01 22.9 252.89 22 254 22H255V20H257V22H265V20H267V22H268C269.1 22 270 22.9 270 24ZM254 26H268V24H254V26ZM268 38V28H254V38H268Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"15",y:"45",width:"268",height:"231",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M26.6948 57.7578H28.3071L30.6812 64.5435L33.0552 57.7578H34.6675L31.3286 67H30.0337L26.6948 57.7578ZM25.8252 57.7578H27.4312L27.7231 64.3721V67H25.8252V57.7578ZM33.9312 57.7578H35.5435V67H33.6392V64.3721L33.9312 57.7578ZM40.8057 65.4512V62.3916C40.8057 62.1715 40.7697 61.9832 40.6978 61.8267C40.6258 61.6659 40.5137 61.541 40.3613 61.4521C40.2132 61.3633 40.0207 61.3188 39.7837 61.3188C39.5806 61.3188 39.4049 61.3548 39.2568 61.4268C39.1087 61.4945 38.9945 61.5939 38.9141 61.7251C38.8337 61.8521 38.7935 62.0023 38.7935 62.1758H36.9653C36.9653 61.8838 37.033 61.6066 37.1685 61.3442C37.3039 61.0819 37.5007 60.8512 37.7588 60.6523C38.0169 60.4492 38.3237 60.2905 38.6792 60.1763C39.0389 60.062 39.4409 60.0049 39.8853 60.0049C40.4185 60.0049 40.8924 60.0938 41.3071 60.2715C41.7218 60.4492 42.0477 60.7158 42.2847 61.0713C42.5259 61.4268 42.6465 61.8711 42.6465 62.4043V65.3433C42.6465 65.7199 42.6698 66.0288 42.7163 66.27C42.7629 66.507 42.8306 66.7144 42.9194 66.8921V67H41.0723C40.9834 66.8138 40.9157 66.5811 40.8691 66.3018C40.8268 66.0182 40.8057 65.7347 40.8057 65.4512ZM41.0469 62.8169L41.0596 63.8516H40.0376C39.7964 63.8516 39.5869 63.8791 39.4092 63.9341C39.2314 63.9891 39.0854 64.0674 38.9712 64.1689C38.8569 64.2663 38.7723 64.3805 38.7173 64.5117C38.6665 64.6429 38.6411 64.7868 38.6411 64.9434C38.6411 65.0999 38.6771 65.2417 38.749 65.3687C38.821 65.4914 38.9246 65.5887 39.0601 65.6606C39.1955 65.7284 39.3542 65.7622 39.5361 65.7622C39.8112 65.7622 40.0503 65.7072 40.2534 65.5972C40.4565 65.4871 40.6131 65.3517 40.7231 65.1909C40.8374 65.0301 40.8966 64.8778 40.9009 64.7339L41.3833 65.5083C41.3156 65.6818 41.2225 65.8617 41.104 66.0479C40.9897 66.234 40.8438 66.4097 40.666 66.5747C40.4883 66.7355 40.2746 66.8688 40.0249 66.9746C39.7752 67.0762 39.479 67.127 39.1362 67.127C38.7004 67.127 38.3047 67.0402 37.9492 66.8667C37.598 66.689 37.3187 66.4456 37.1113 66.1367C36.9082 65.8236 36.8066 65.4681 36.8066 65.0703C36.8066 64.7106 36.8743 64.3911 37.0098 64.1118C37.1452 63.8325 37.3441 63.5977 37.6064 63.4072C37.873 63.2126 38.2052 63.0666 38.603 62.9692C39.0008 62.8677 39.4621 62.8169 39.9868 62.8169H41.0469ZM45.8838 61.6299V67H44.0557V60.1318H45.7759L45.8838 61.6299ZM47.9531 60.0874L47.9214 61.7822C47.8325 61.7695 47.7246 61.759 47.5977 61.7505C47.4749 61.7378 47.3628 61.7314 47.2612 61.7314C47.0031 61.7314 46.7788 61.7653 46.5884 61.833C46.4022 61.8965 46.2456 61.9917 46.1187 62.1187C45.9959 62.2456 45.9028 62.4001 45.8394 62.582C45.7801 62.764 45.7463 62.9714 45.7378 63.2041L45.3696 63.0898C45.3696 62.6455 45.4141 62.2371 45.5029 61.8647C45.5918 61.4881 45.7209 61.1602 45.8901 60.8809C46.0636 60.6016 46.2752 60.3857 46.5249 60.2334C46.7746 60.0811 47.0602 60.0049 47.3818 60.0049C47.4834 60.0049 47.5871 60.0133 47.6929 60.0303C47.7987 60.043 47.8854 60.062 47.9531 60.0874ZM51.5269 65.6987C51.7511 65.6987 51.95 65.6564 52.1235 65.5718C52.297 65.4829 52.4325 65.3602 52.5298 65.2036C52.6313 65.0428 52.6842 64.8545 52.6885 64.6387H54.4087C54.4045 65.1211 54.2754 65.5506 54.0215 65.9272C53.7676 66.2996 53.4269 66.5938 52.9995 66.8096C52.5721 67.0212 52.0939 67.127 51.5649 67.127C51.0317 67.127 50.5662 67.0381 50.1685 66.8604C49.7749 66.6826 49.4469 66.4372 49.1846 66.124C48.9222 65.8066 48.7254 65.4385 48.5942 65.0195C48.4631 64.5964 48.3975 64.1436 48.3975 63.6611V63.4771C48.3975 62.9904 48.4631 62.5376 48.5942 62.1187C48.7254 61.6955 48.9222 61.3273 49.1846 61.0142C49.4469 60.6968 49.7749 60.4492 50.1685 60.2715C50.562 60.0938 51.0233 60.0049 51.5522 60.0049C52.1151 60.0049 52.6081 60.1128 53.0312 60.3286C53.4587 60.5444 53.793 60.8534 54.0342 61.2554C54.2796 61.6532 54.4045 62.125 54.4087 62.6709H52.6885C52.6842 62.4424 52.6356 62.235 52.5425 62.0488C52.4536 61.8626 52.3224 61.7145 52.1489 61.6045C51.9797 61.4902 51.7702 61.4331 51.5205 61.4331C51.2539 61.4331 51.036 61.4902 50.8667 61.6045C50.6974 61.7145 50.5662 61.8669 50.4731 62.0615C50.38 62.252 50.3145 62.4699 50.2764 62.7153C50.2425 62.9565 50.2256 63.2104 50.2256 63.4771V63.6611C50.2256 63.9277 50.2425 64.1838 50.2764 64.4292C50.3102 64.6746 50.3737 64.8926 50.4668 65.083C50.5641 65.2734 50.6974 65.4237 50.8667 65.5337C51.036 65.6437 51.256 65.6987 51.5269 65.6987ZM57.2524 57.25V67H55.4243V57.25H57.2524ZM56.9922 63.3247H56.4907C56.495 62.8465 56.5584 62.4064 56.6812 62.0044C56.8039 61.5981 56.9795 61.2469 57.208 60.9507C57.4365 60.6502 57.7095 60.4175 58.0269 60.2524C58.3485 60.0874 58.7039 60.0049 59.0933 60.0049C59.4318 60.0049 59.7386 60.0535 60.0137 60.1509C60.293 60.244 60.5321 60.3963 60.731 60.6079C60.9341 60.8153 61.0907 61.0882 61.2007 61.4268C61.3107 61.7653 61.3657 62.1758 61.3657 62.6582V67H59.5249V62.6455C59.5249 62.3408 59.4805 62.1017 59.3916 61.9282C59.307 61.7505 59.1821 61.6257 59.0171 61.5537C58.8563 61.4775 58.6574 61.4395 58.4204 61.4395C58.158 61.4395 57.9338 61.4881 57.7476 61.5854C57.5656 61.6828 57.4196 61.8182 57.3096 61.9917C57.1995 62.161 57.1191 62.3599 57.0684 62.5884C57.0176 62.8169 56.9922 63.0623 56.9922 63.3247ZM72.2393 65.5718V67H65.917V65.7812L68.9067 62.5757C69.2072 62.2414 69.4442 61.9473 69.6177 61.6934C69.7912 61.4352 69.916 61.2046 69.9922 61.0015C70.0726 60.7941 70.1128 60.5973 70.1128 60.4111C70.1128 60.1318 70.0662 59.8927 69.9731 59.6938C69.88 59.4907 69.7425 59.3341 69.5605 59.2241C69.3828 59.1141 69.1628 59.0591 68.9004 59.0591C68.6211 59.0591 68.3799 59.1268 68.1768 59.2622C67.9779 59.3976 67.8255 59.5859 67.7197 59.8271C67.6182 60.0684 67.5674 60.3413 67.5674 60.646H65.7329C65.7329 60.0959 65.8641 59.5923 66.1265 59.1353C66.3888 58.674 66.7591 58.3079 67.2373 58.0371C67.7155 57.762 68.2826 57.6245 68.9385 57.6245C69.5859 57.6245 70.1318 57.7303 70.5762 57.9419C71.0247 58.1493 71.3633 58.4497 71.5918 58.8433C71.8245 59.2326 71.9409 59.6981 71.9409 60.2397C71.9409 60.5444 71.8923 60.8428 71.7949 61.1348C71.6976 61.4225 71.5579 61.7103 71.376 61.998C71.1982 62.2816 70.9824 62.5693 70.7285 62.8613C70.4746 63.1533 70.1932 63.4559 69.8843 63.769L68.2783 65.5718H72.2393ZM79.6025 61.5664V63.166C79.6025 63.86 79.5285 64.4588 79.3804 64.9624C79.2323 65.4618 79.0186 65.8722 78.7393 66.1938C78.4642 66.5112 78.1362 66.7461 77.7554 66.8984C77.3745 67.0508 76.9513 67.127 76.4858 67.127C76.1134 67.127 75.7664 67.0804 75.4448 66.9873C75.1232 66.89 74.8333 66.7397 74.5752 66.5366C74.3213 66.3335 74.1012 66.0775 73.915 65.7686C73.7331 65.4554 73.5934 65.083 73.4961 64.6514C73.3988 64.2197 73.3501 63.7246 73.3501 63.166V61.5664C73.3501 60.8724 73.4242 60.2778 73.5723 59.7827C73.7246 59.2834 73.9383 58.875 74.2134 58.5576C74.4927 58.2402 74.8228 58.0075 75.2036 57.8594C75.5845 57.707 76.0076 57.6309 76.4731 57.6309C76.8455 57.6309 77.1904 57.6795 77.5078 57.7769C77.8294 57.87 78.1193 58.016 78.3774 58.2148C78.6356 58.4137 78.8556 58.6698 79.0376 58.9829C79.2196 59.2918 79.3592 59.6621 79.4565 60.0938C79.5539 60.5212 79.6025 61.012 79.6025 61.5664ZM77.7681 63.4072V61.3188C77.7681 60.9845 77.749 60.6925 77.7109 60.4429C77.6771 60.1932 77.6242 59.9816 77.5522 59.8081C77.4803 59.6304 77.3914 59.4865 77.2856 59.3765C77.1799 59.2664 77.0592 59.186 76.9238 59.1353C76.7884 59.0845 76.6382 59.0591 76.4731 59.0591C76.2658 59.0591 76.0817 59.0993 75.9209 59.1797C75.7643 59.2601 75.631 59.3892 75.521 59.5669C75.411 59.7404 75.3263 59.9731 75.2671 60.2651C75.2121 60.5529 75.1846 60.9041 75.1846 61.3188V63.4072C75.1846 63.7415 75.2015 64.0356 75.2354 64.2896C75.2734 64.5435 75.3285 64.7614 75.4004 64.9434C75.4766 65.1211 75.5654 65.2671 75.667 65.3813C75.7728 65.4914 75.8934 65.5718 76.0288 65.6226C76.1685 65.6733 76.3208 65.6987 76.4858 65.6987C76.689 65.6987 76.8688 65.6585 77.0254 65.5781C77.1862 65.4935 77.3216 65.3623 77.4316 65.1846C77.5459 65.0026 77.6305 64.7656 77.6855 64.4736C77.7406 64.1816 77.7681 63.8262 77.7681 63.4072ZM87.1689 65.5718V67H80.8467V65.7812L83.8364 62.5757C84.1369 62.2414 84.3739 61.9473 84.5474 61.6934C84.7209 61.4352 84.8457 61.2046 84.9219 61.0015C85.0023 60.7941 85.0425 60.5973 85.0425 60.4111C85.0425 60.1318 84.9959 59.8927 84.9028 59.6938C84.8097 59.4907 84.6722 59.3341 84.4902 59.2241C84.3125 59.1141 84.0924 59.0591 83.8301 59.0591C83.5508 59.0591 83.3096 59.1268 83.1064 59.2622C82.9076 59.3976 82.7552 59.5859 82.6494 59.8271C82.5479 60.0684 82.4971 60.3413 82.4971 60.646H80.6626C80.6626 60.0959 80.7938 59.5923 81.0562 59.1353C81.3185 58.674 81.6888 58.3079 82.167 58.0371C82.6452 57.762 83.2122 57.6245 83.8682 57.6245C84.5156 57.6245 85.0615 57.7303 85.5059 57.9419C85.9544 58.1493 86.293 58.4497 86.5215 58.8433C86.7542 59.2326 86.8706 59.6981 86.8706 60.2397C86.8706 60.5444 86.8219 60.8428 86.7246 61.1348C86.6273 61.4225 86.4876 61.7103 86.3057 61.998C86.1279 62.2816 85.9121 62.5693 85.6582 62.8613C85.4043 63.1533 85.1229 63.4559 84.814 63.769L83.208 65.5718H87.1689ZM92.7676 57.7388V67H90.9395V59.8462L88.7432 60.5444V59.1035L92.5708 57.7388H92.7676Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1407)"},(0,h.createElement)("path",{d:"M99.7917 61.4167L102.5 64.1251L105.208 61.4167H99.7917Z",fill:"#64748B"})),(0,h.createElement)("path",{d:"M249.167 62.4999L249.93 63.2637L252.958 60.2412L252.958 66.8333L254.042 66.8333L254.042 60.2412L257.07 63.2637L257.833 62.4999L253.5 58.1666L249.167 62.4999Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270.833 62.5001L270.07 61.7363L267.042 64.7588L267.042 58.1667L265.958 58.1667L265.958 64.7588L262.93 61.7363L262.167 62.5001L266.5 66.8334L270.833 62.5001Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M37.3305 89.6641C37.3305 89.4482 37.2967 89.2578 37.2289 89.0928C37.1655 88.9235 37.0512 88.7712 36.8862 88.6357C36.7254 88.5003 36.5011 88.3713 36.2133 88.2485C35.9298 88.1258 35.5701 88.001 35.1342 87.874C34.6772 87.7386 34.2646 87.5884 33.8964 87.4233C33.5283 87.2541 33.213 87.0615 32.9506 86.8457C32.6883 86.6299 32.4873 86.3823 32.3476 86.103C32.208 85.8237 32.1381 85.5042 32.1381 85.1445C32.1381 84.7848 32.2122 84.4526 32.3603 84.1479C32.5084 83.8433 32.72 83.5788 32.9951 83.3545C33.2744 83.126 33.6066 82.9482 33.9916 82.8213C34.3767 82.6943 34.8063 82.6309 35.2802 82.6309C35.9742 82.6309 36.5624 82.7642 37.0449 83.0308C37.5315 83.2931 37.9018 83.638 38.1557 84.0654C38.4096 84.4886 38.5366 84.9414 38.5366 85.4238H37.3178C37.3178 85.0768 37.2438 84.77 37.0956 84.5034C36.9475 84.2326 36.7233 84.021 36.4228 83.8687C36.1223 83.7121 35.7415 83.6338 35.2802 83.6338C34.8443 83.6338 34.4846 83.6994 34.2011 83.8306C33.9176 83.9618 33.706 84.1395 33.5664 84.3638C33.4309 84.5881 33.3632 84.8441 33.3632 85.1318C33.3632 85.3265 33.4034 85.5042 33.4838 85.665C33.5685 85.8216 33.6975 85.9676 33.871 86.103C34.0488 86.2384 34.2731 86.3633 34.5439 86.4775C34.819 86.5918 35.1469 86.7018 35.5278 86.8076C36.0525 86.9557 36.5053 87.1208 36.8862 87.3027C37.267 87.4847 37.5802 87.6899 37.8256 87.9185C38.0753 88.1427 38.2594 88.3988 38.3779 88.6865C38.5006 88.9701 38.562 89.2917 38.562 89.6514C38.562 90.028 38.4858 90.3687 38.3334 90.6733C38.1811 90.978 37.9632 91.2383 37.6796 91.4541C37.3961 91.6699 37.0554 91.8371 36.6577 91.9556C36.2641 92.0698 35.824 92.127 35.3373 92.127C34.9099 92.127 34.4889 92.0677 34.0742 91.9492C33.6637 91.8307 33.2892 91.653 32.9506 91.416C32.6163 91.179 32.3476 90.887 32.1445 90.54C31.9456 90.1888 31.8461 89.7826 31.8461 89.3213H33.0649C33.0649 89.6387 33.1262 89.9116 33.249 90.1401C33.3717 90.3644 33.5388 90.5506 33.7504 90.6987C33.9663 90.8468 34.2096 90.9569 34.4804 91.0288C34.7555 91.0965 35.0411 91.1304 35.3373 91.1304C35.7648 91.1304 36.1266 91.0711 36.4228 90.9526C36.719 90.8341 36.9433 90.6649 37.0956 90.4448C37.2522 90.2248 37.3305 89.9645 37.3305 89.6641ZM44.1479 90.4131V85.1318H45.3286V92H44.205L44.1479 90.4131ZM44.3701 88.9658L44.8588 88.9531C44.8588 89.4102 44.8102 89.8333 44.7128 90.2227C44.6197 90.6077 44.4674 90.9421 44.2558 91.2256C44.0442 91.5091 43.767 91.7313 43.4243 91.8921C43.0815 92.0487 42.6647 92.127 42.1738 92.127C41.8395 92.127 41.5327 92.0783 41.2534 91.981C40.9783 91.8836 40.7413 91.7334 40.5424 91.5303C40.3435 91.3271 40.1891 91.0627 40.079 90.7368C39.9733 90.411 39.9204 90.0195 39.9204 89.5625V85.1318H41.0947V89.5752C41.0947 89.8841 41.1285 90.1401 41.1962 90.3433C41.2682 90.5422 41.3634 90.7008 41.4819 90.8193C41.6046 90.9336 41.74 91.014 41.8881 91.0605C42.0405 91.1071 42.197 91.1304 42.3579 91.1304C42.8572 91.1304 43.2529 91.0352 43.5449 90.8447C43.8369 90.6501 44.0463 90.3898 44.1733 90.064C44.3045 89.7339 44.3701 89.3678 44.3701 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M109.587 82.7578V92H108.381V82.7578H109.587ZM112.558 82.7578V83.7607H105.417V82.7578H112.558ZM117.344 90.4131V85.1318H118.525V92H117.401L117.344 90.4131ZM117.566 88.9658L118.055 88.9531C118.055 89.4102 118.006 89.8333 117.909 90.2227C117.816 90.6077 117.663 90.9421 117.452 91.2256C117.24 91.5091 116.963 91.7313 116.62 91.8921C116.278 92.0487 115.861 92.127 115.37 92.127C115.036 92.127 114.729 92.0783 114.449 91.981C114.174 91.8836 113.937 91.7334 113.738 91.5303C113.54 91.3271 113.385 91.0627 113.275 90.7368C113.169 90.411 113.116 90.0195 113.116 89.5625V85.1318H114.291V89.5752C114.291 89.8841 114.325 90.1401 114.392 90.3433C114.464 90.5422 114.559 90.7008 114.678 90.8193C114.801 90.9336 114.936 91.014 115.084 91.0605C115.237 91.1071 115.393 91.1304 115.554 91.1304C116.053 91.1304 116.449 91.0352 116.741 90.8447C117.033 90.6501 117.242 90.3898 117.369 90.064C117.501 89.7339 117.566 89.3678 117.566 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M182.77 82.7578V92H181.564V82.7578H182.77ZM185.74 82.7578V83.7607H178.599V82.7578H185.74ZM188.108 82.25V92H186.934V82.25H188.108ZM187.829 88.3057L187.34 88.2866C187.344 87.8169 187.414 87.3831 187.55 86.9854C187.685 86.5833 187.875 86.2342 188.121 85.938C188.366 85.6418 188.658 85.4132 188.997 85.2524C189.34 85.0874 189.718 85.0049 190.133 85.0049C190.472 85.0049 190.776 85.0514 191.047 85.1445C191.318 85.2334 191.549 85.3773 191.739 85.5762C191.934 85.7751 192.082 86.0332 192.183 86.3506C192.285 86.6637 192.336 87.0467 192.336 87.4995V92H191.155V87.4868C191.155 87.1271 191.102 86.8394 190.996 86.6235C190.89 86.4035 190.736 86.2448 190.533 86.1475C190.33 86.0459 190.08 85.9951 189.784 85.9951C189.492 85.9951 189.225 86.0565 188.984 86.1792C188.747 86.3019 188.542 86.4712 188.368 86.687C188.199 86.9028 188.066 87.1504 187.968 87.4297C187.875 87.7048 187.829 87.9967 187.829 88.3057Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M257.826 89.6641C257.826 89.4482 257.792 89.2578 257.724 89.0928C257.661 88.9235 257.546 88.7712 257.381 88.6357C257.22 88.5003 256.996 88.3713 256.708 88.2485C256.425 88.1258 256.065 88.001 255.629 87.874C255.172 87.7386 254.76 87.5884 254.392 87.4233C254.023 87.2541 253.708 87.0615 253.446 86.8457C253.183 86.6299 252.982 86.3823 252.843 86.103C252.703 85.8237 252.633 85.5042 252.633 85.1445C252.633 84.7848 252.707 84.4526 252.855 84.1479C253.004 83.8433 253.215 83.5788 253.49 83.3545C253.769 83.126 254.102 82.9482 254.487 82.8213C254.872 82.6943 255.301 82.6309 255.775 82.6309C256.469 82.6309 257.058 82.7642 257.54 83.0308C258.027 83.2931 258.397 83.638 258.651 84.0654C258.905 84.4886 259.032 84.9414 259.032 85.4238H257.813C257.813 85.0768 257.739 84.77 257.591 84.5034C257.443 84.2326 257.218 84.021 256.918 83.8687C256.617 83.7121 256.237 83.6338 255.775 83.6338C255.339 83.6338 254.98 83.6994 254.696 83.8306C254.413 83.9618 254.201 84.1395 254.061 84.3638C253.926 84.5881 253.858 84.8441 253.858 85.1318C253.858 85.3265 253.899 85.5042 253.979 85.665C254.064 85.8216 254.193 85.9676 254.366 86.103C254.544 86.2384 254.768 86.3633 255.039 86.4775C255.314 86.5918 255.642 86.7018 256.023 86.8076C256.548 86.9557 257 87.1208 257.381 87.3027C257.762 87.4847 258.075 87.6899 258.321 87.9185C258.57 88.1427 258.755 88.3988 258.873 88.6865C258.996 88.9701 259.057 89.2917 259.057 89.6514C259.057 90.028 258.981 90.3687 258.829 90.6733C258.676 90.978 258.458 91.2383 258.175 91.4541C257.891 91.6699 257.551 91.8371 257.153 91.9556C256.759 92.0698 256.319 92.127 255.832 92.127C255.405 92.127 254.984 92.0677 254.569 91.9492C254.159 91.8307 253.784 91.653 253.446 91.416C253.111 91.179 252.843 90.887 252.64 90.54C252.441 90.1888 252.341 89.7826 252.341 89.3213H253.56C253.56 89.6387 253.621 89.9116 253.744 90.1401C253.867 90.3644 254.034 90.5506 254.246 90.6987C254.461 90.8468 254.705 90.9569 254.976 91.0288C255.251 91.0965 255.536 91.1304 255.832 91.1304C256.26 91.1304 256.622 91.0711 256.918 90.9526C257.214 90.8341 257.438 90.6649 257.591 90.4448C257.747 90.2248 257.826 89.9645 257.826 89.6641ZM264.491 90.8257V87.29C264.491 87.0192 264.436 86.7843 264.326 86.5854C264.22 86.3823 264.059 86.2257 263.843 86.1157C263.627 86.0057 263.361 85.9507 263.043 85.9507C262.747 85.9507 262.487 86.0015 262.263 86.103C262.043 86.2046 261.869 86.3379 261.742 86.5029C261.619 86.668 261.558 86.8457 261.558 87.0361H260.384C260.384 86.7907 260.447 86.5474 260.574 86.3062C260.701 86.0649 260.883 85.847 261.12 85.6523C261.361 85.4535 261.649 85.2969 261.983 85.1826C262.322 85.0641 262.699 85.0049 263.113 85.0049C263.613 85.0049 264.053 85.0895 264.434 85.2588C264.819 85.4281 265.119 85.6841 265.335 86.0269C265.555 86.3654 265.665 86.7907 265.665 87.3027V90.502C265.665 90.7305 265.684 90.9738 265.722 91.2319C265.764 91.4901 265.826 91.7122 265.906 91.8984V92H264.681C264.622 91.8646 264.575 91.6847 264.541 91.4604C264.508 91.2319 264.491 91.0203 264.491 90.8257ZM264.694 87.8359L264.706 88.6611H263.519C263.185 88.6611 262.887 88.6886 262.624 88.7437C262.362 88.7944 262.142 88.8727 261.964 88.9785C261.787 89.0843 261.651 89.2176 261.558 89.3784C261.465 89.535 261.418 89.7191 261.418 89.9307C261.418 90.1465 261.467 90.3433 261.564 90.521C261.662 90.6987 261.808 90.8405 262.002 90.9463C262.201 91.0479 262.445 91.0986 262.732 91.0986C263.092 91.0986 263.409 91.0225 263.685 90.8701C263.96 90.7178 264.178 90.5316 264.338 90.3115C264.503 90.0915 264.592 89.8778 264.605 89.6704L265.106 90.2354C265.077 90.4131 264.996 90.6099 264.865 90.8257C264.734 91.0415 264.558 91.2489 264.338 91.4478C264.123 91.6424 263.864 91.8053 263.564 91.9365C263.268 92.0635 262.933 92.127 262.561 92.127C262.095 92.127 261.687 92.036 261.336 91.854C260.989 91.672 260.718 91.4287 260.523 91.124C260.333 90.8151 260.238 90.4702 260.238 90.0894C260.238 89.7212 260.31 89.3975 260.454 89.1182C260.597 88.8346 260.805 88.5998 261.076 88.4136C261.346 88.2231 261.672 88.0793 262.053 87.9819C262.434 87.8846 262.859 87.8359 263.329 87.8359H264.694Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M67.5966 82.7578H68.7836L71.8115 90.2925L74.833 82.7578H76.0263L72.2685 92H71.3417L67.5966 82.7578ZM67.2094 82.7578H68.2568L68.4282 88.3945V92H67.2094V82.7578ZM75.3598 82.7578H76.4072V92H75.1884V88.3945L75.3598 82.7578ZM78.0703 88.6421V88.4961C78.0703 88.001 78.1422 87.5418 78.2861 87.1187C78.43 86.6912 78.6373 86.321 78.9081 86.0078C79.179 85.6904 79.5069 85.445 79.892 85.2715C80.2771 85.0938 80.7088 85.0049 81.187 85.0049C81.6694 85.0049 82.1031 85.0938 82.4882 85.2715C82.8775 85.445 83.2076 85.6904 83.4785 86.0078C83.7535 86.321 83.963 86.6912 84.1069 87.1187C84.2508 87.5418 84.3227 88.001 84.3227 88.4961V88.6421C84.3227 89.1372 84.2508 89.5964 84.1069 90.0195C83.963 90.4427 83.7535 90.813 83.4785 91.1304C83.2076 91.4435 82.8797 91.689 82.4946 91.8667C82.1137 92.0402 81.6821 92.127 81.1997 92.127C80.7172 92.127 80.2835 92.0402 79.8984 91.8667C79.5133 91.689 79.1832 91.4435 78.9081 91.1304C78.6373 90.813 78.43 90.4427 78.2861 90.0195C78.1422 89.5964 78.0703 89.1372 78.0703 88.6421ZM79.2446 88.4961V88.6421C79.2446 88.9849 79.2848 89.3086 79.3652 89.6133C79.4456 89.9137 79.5662 90.1803 79.727 90.4131C79.892 90.6458 80.0973 90.8299 80.3427 90.9653C80.5882 91.0965 80.8738 91.1621 81.1997 91.1621C81.5213 91.1621 81.8027 91.0965 82.0439 90.9653C82.2893 90.8299 82.4925 90.6458 82.6533 90.4131C82.8141 90.1803 82.9347 89.9137 83.0151 89.6133C83.0997 89.3086 83.142 88.9849 83.142 88.6421V88.4961C83.142 88.1576 83.0997 87.8381 83.0151 87.5376C82.9347 87.2329 82.812 86.9642 82.6469 86.7314C82.4861 86.4945 82.283 86.3083 82.0375 86.1729C81.7963 86.0374 81.5128 85.9697 81.187 85.9697C80.8653 85.9697 80.5818 86.0374 80.3364 86.1729C80.0952 86.3083 79.892 86.4945 79.727 86.7314C79.5662 86.9642 79.4456 87.2329 79.3652 87.5376C79.2848 87.8381 79.2446 88.1576 79.2446 88.4961Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M143.389 89.207L145.223 82.7578H146.112L145.598 85.2651L143.624 92H142.741L143.389 89.207ZM141.491 82.7578L142.951 89.0801L143.389 92H142.513L140.272 82.7578H141.491ZM148.486 89.0737L149.914 82.7578H151.139L148.905 92H148.029L148.486 89.0737ZM146.245 82.7578L148.029 89.207L148.676 92H147.794L145.89 85.2651L145.369 82.7578H146.245ZM154.967 92.127C154.489 92.127 154.055 92.0465 153.666 91.8857C153.281 91.7207 152.948 91.4901 152.669 91.1938C152.394 90.8976 152.182 90.5464 152.034 90.1401C151.886 89.7339 151.812 89.2896 151.812 88.8071V88.5405C151.812 87.9819 151.895 87.4847 152.06 87.0488C152.225 86.6087 152.449 86.2363 152.733 85.9316C153.016 85.627 153.338 85.3963 153.697 85.2397C154.057 85.0832 154.43 85.0049 154.815 85.0049C155.306 85.0049 155.729 85.0895 156.084 85.2588C156.444 85.4281 156.738 85.665 156.966 85.9697C157.195 86.2702 157.364 86.6257 157.474 87.0361C157.584 87.4424 157.639 87.8867 157.639 88.3691V88.896H152.51V87.9375H156.465V87.8486C156.448 87.5439 156.385 87.2477 156.275 86.96C156.169 86.6722 156 86.4352 155.767 86.249C155.534 86.0628 155.217 85.9697 154.815 85.9697C154.548 85.9697 154.303 86.0269 154.078 86.1411C153.854 86.2511 153.661 86.4162 153.501 86.6362C153.34 86.8563 153.215 87.125 153.126 87.4424C153.037 87.7598 152.993 88.1258 152.993 88.5405V88.8071C152.993 89.133 153.037 89.4398 153.126 89.7275C153.219 90.0111 153.353 90.2607 153.526 90.4766C153.704 90.6924 153.918 90.8617 154.167 90.9844C154.421 91.1071 154.709 91.1685 155.03 91.1685C155.445 91.1685 155.796 91.0838 156.084 90.9146C156.372 90.7453 156.624 90.5189 156.84 90.2354L157.55 90.8003C157.402 91.0246 157.214 91.2383 156.986 91.4414C156.757 91.6445 156.476 91.8096 156.141 91.9365C155.811 92.0635 155.42 92.127 154.967 92.127Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M219.066 82.7578V92H217.841V82.7578H219.066ZM222.938 86.9155V87.9185H218.8V86.9155H222.938ZM223.567 82.7578V83.7607H218.8V82.7578H223.567ZM225.858 86.2109V92H224.684V85.1318H225.826L225.858 86.2109ZM228.004 85.0938L227.997 86.1855C227.9 86.1644 227.807 86.1517 227.718 86.1475C227.633 86.139 227.536 86.1348 227.426 86.1348C227.155 86.1348 226.916 86.1771 226.709 86.2617C226.501 86.3464 226.326 86.4648 226.182 86.6172C226.038 86.7695 225.924 86.9515 225.839 87.1631C225.759 87.3704 225.706 87.599 225.68 87.8486L225.35 88.0391C225.35 87.6243 225.391 87.235 225.471 86.8711C225.556 86.5072 225.685 86.1855 225.858 85.9062C226.032 85.6227 226.252 85.4027 226.518 85.2461C226.789 85.0853 227.111 85.0049 227.483 85.0049C227.568 85.0049 227.665 85.0155 227.775 85.0366C227.885 85.0535 227.961 85.0726 228.004 85.0938Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"212",y:"100",width:"21",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{opacity:"0.4",d:"M38.289 114.035V115H32.2397V114.156L35.2675 110.785C35.6399 110.37 35.9277 110.019 36.1308 109.731C36.3382 109.439 36.482 109.179 36.5624 108.951C36.6471 108.718 36.6894 108.481 36.6894 108.24C36.6894 107.935 36.6259 107.66 36.499 107.415C36.3762 107.165 36.1943 106.966 35.9531 106.818C35.7119 106.67 35.4199 106.596 35.0771 106.596C34.6666 106.596 34.3238 106.676 34.0488 106.837C33.7779 106.993 33.5748 107.214 33.4394 107.497C33.304 107.781 33.2363 108.106 33.2363 108.475H32.062C32.062 107.954 32.1762 107.478 32.4047 107.046C32.6332 106.615 32.9718 106.272 33.4204 106.018C33.8689 105.76 34.4212 105.631 35.0771 105.631C35.6611 105.631 36.1604 105.735 36.5751 105.942C36.9899 106.145 37.3072 106.433 37.5273 106.805C37.7516 107.173 37.8637 107.605 37.8637 108.1C37.8637 108.371 37.8172 108.646 37.7241 108.925C37.6352 109.2 37.5104 109.475 37.3496 109.75C37.193 110.026 37.0089 110.296 36.7973 110.563C36.59 110.83 36.3678 111.092 36.1308 111.35L33.6552 114.035H38.289ZM45.373 112.499C45.373 113.062 45.2418 113.54 44.9794 113.934C44.7213 114.323 44.3701 114.619 43.9257 114.822C43.4856 115.025 42.9884 115.127 42.434 115.127C41.8797 115.127 41.3803 115.025 40.936 114.822C40.4916 114.619 40.1404 114.323 39.8823 113.934C39.6241 113.54 39.4951 113.062 39.4951 112.499C39.4951 112.131 39.5649 111.794 39.7045 111.49C39.8484 111.181 40.0494 110.912 40.3076 110.684C40.5699 110.455 40.8789 110.279 41.2343 110.157C41.594 110.03 41.9897 109.966 42.4213 109.966C42.9884 109.966 43.4941 110.076 43.9384 110.296C44.3828 110.512 44.7319 110.811 44.9858 111.191C45.2439 111.572 45.373 112.008 45.373 112.499ZM44.1923 112.474C44.1923 112.131 44.1183 111.828 43.9702 111.566C43.822 111.299 43.6147 111.092 43.3481 110.944C43.0815 110.796 42.7726 110.722 42.4213 110.722C42.0616 110.722 41.7506 110.796 41.4882 110.944C41.2301 111.092 41.0291 111.299 40.8852 111.566C40.7413 111.828 40.6694 112.131 40.6694 112.474C40.6694 112.829 40.7392 113.134 40.8789 113.388C41.0227 113.637 41.2259 113.83 41.4882 113.965C41.7548 114.097 42.0701 114.162 42.434 114.162C42.798 114.162 43.1111 114.097 43.3735 113.965C43.6359 113.83 43.8369 113.637 43.9765 113.388C44.1204 113.134 44.1923 112.829 44.1923 112.474ZM45.1572 108.164C45.1572 108.612 45.0387 109.016 44.8017 109.376C44.5647 109.736 44.241 110.019 43.8305 110.227C43.42 110.434 42.9545 110.538 42.434 110.538C41.9051 110.538 41.4332 110.434 41.0185 110.227C40.608 110.019 40.2864 109.736 40.0537 109.376C39.8209 109.016 39.7045 108.612 39.7045 108.164C39.7045 107.626 39.8209 107.169 40.0537 106.792C40.2906 106.416 40.6144 106.128 41.0248 105.929C41.4353 105.73 41.9029 105.631 42.4277 105.631C42.9567 105.631 43.4264 105.73 43.8369 105.929C44.2473 106.128 44.569 106.416 44.8017 106.792C45.0387 107.169 45.1572 107.626 45.1572 108.164ZM43.9829 108.183C43.9829 107.874 43.9173 107.601 43.7861 107.364C43.6549 107.127 43.4729 106.941 43.2402 106.805C43.0074 106.666 42.7366 106.596 42.4277 106.596C42.1188 106.596 41.8479 106.661 41.6152 106.792C41.3867 106.919 41.2068 107.101 41.0756 107.338C40.9487 107.575 40.8852 107.857 40.8852 108.183C40.8852 108.5 40.9487 108.777 41.0756 109.014C41.2068 109.251 41.3888 109.435 41.6215 109.566C41.8543 109.698 42.1251 109.763 42.434 109.763C42.7429 109.763 43.0117 109.698 43.2402 109.566C43.4729 109.435 43.6549 109.251 43.7861 109.014C43.9173 108.777 43.9829 108.5 43.9829 108.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M115.427 114.035V115H109.378V114.156L112.405 110.785C112.778 110.37 113.066 110.019 113.269 109.731C113.476 109.439 113.62 109.179 113.7 108.951C113.785 108.718 113.827 108.481 113.827 108.24C113.827 107.935 113.764 107.66 113.637 107.415C113.514 107.165 113.332 106.966 113.091 106.818C112.85 106.67 112.558 106.596 112.215 106.596C111.805 106.596 111.462 106.676 111.187 106.837C110.916 106.993 110.713 107.214 110.577 107.497C110.442 107.781 110.374 108.106 110.374 108.475H109.2C109.2 107.954 109.314 107.478 109.543 107.046C109.771 106.615 110.11 106.272 110.558 106.018C111.007 105.76 111.559 105.631 112.215 105.631C112.799 105.631 113.298 105.735 113.713 105.942C114.128 106.145 114.445 106.433 114.665 106.805C114.89 107.173 115.002 107.605 115.002 108.1C115.002 108.371 114.955 108.646 114.862 108.925C114.773 109.2 114.648 109.475 114.487 109.75C114.331 110.026 114.147 110.296 113.935 110.563C113.728 110.83 113.506 111.092 113.269 111.35L110.793 114.035H115.427Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M189.098 111.89V112.854H182.421V112.163L186.559 105.758H187.518L186.489 107.611L183.754 111.89H189.098ZM187.81 105.758V115H186.635V105.758H187.81Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.841 105.745H260.942V106.742H260.841C260.219 106.742 259.698 106.843 259.279 107.046C258.86 107.245 258.528 107.514 258.283 107.853C258.037 108.187 257.859 108.563 257.749 108.982C257.644 109.401 257.591 109.827 257.591 110.258V111.617C257.591 112.027 257.639 112.391 257.737 112.708C257.834 113.022 257.967 113.286 258.137 113.502C258.306 113.718 258.496 113.881 258.708 113.991C258.924 114.101 259.148 114.156 259.381 114.156C259.652 114.156 259.893 114.105 260.104 114.003C260.316 113.898 260.494 113.752 260.638 113.565C260.786 113.375 260.898 113.151 260.974 112.893C261.05 112.634 261.088 112.351 261.088 112.042C261.088 111.767 261.054 111.502 260.987 111.249C260.919 110.99 260.815 110.762 260.676 110.563C260.536 110.36 260.36 110.201 260.149 110.087C259.942 109.968 259.694 109.909 259.406 109.909C259.08 109.909 258.776 109.99 258.492 110.15C258.213 110.307 257.982 110.514 257.8 110.772C257.623 111.026 257.521 111.304 257.496 111.604L256.873 111.598C256.933 111.124 257.043 110.72 257.204 110.385C257.369 110.047 257.572 109.772 257.813 109.56C258.058 109.344 258.331 109.188 258.632 109.09C258.936 108.989 259.258 108.938 259.597 108.938C260.058 108.938 260.456 109.025 260.79 109.198C261.124 109.372 261.399 109.604 261.615 109.896C261.831 110.184 261.99 110.51 262.091 110.874C262.197 111.234 262.25 111.604 262.25 111.985C262.25 112.421 262.189 112.829 262.066 113.21C261.943 113.591 261.759 113.925 261.514 114.213C261.272 114.501 260.974 114.725 260.619 114.886C260.263 115.047 259.851 115.127 259.381 115.127C258.881 115.127 258.446 115.025 258.073 114.822C257.701 114.615 257.392 114.34 257.146 113.997C256.901 113.654 256.717 113.273 256.594 112.854C256.471 112.436 256.41 112.01 256.41 111.579V111.026C256.41 110.375 256.476 109.736 256.607 109.109C256.738 108.483 256.964 107.916 257.286 107.408C257.612 106.9 258.063 106.496 258.638 106.196C259.214 105.895 259.948 105.745 260.841 105.745Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M76.4897 105.707V115H75.3154V107.173L72.9477 108.037V106.977L76.3056 105.707H76.4897Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M147.826 109.801H148.664C149.074 109.801 149.413 109.734 149.679 109.598C149.95 109.458 150.151 109.27 150.282 109.033C150.418 108.792 150.486 108.521 150.486 108.221C150.486 107.865 150.426 107.567 150.308 107.326C150.189 107.084 150.012 106.903 149.775 106.78C149.538 106.657 149.237 106.596 148.873 106.596C148.543 106.596 148.251 106.661 147.997 106.792C147.748 106.919 147.551 107.101 147.407 107.338C147.267 107.575 147.197 107.855 147.197 108.176H146.023C146.023 107.707 146.142 107.279 146.379 106.894C146.616 106.509 146.948 106.202 147.375 105.974C147.807 105.745 148.306 105.631 148.873 105.631C149.432 105.631 149.921 105.73 150.34 105.929C150.758 106.124 151.084 106.416 151.317 106.805C151.55 107.19 151.666 107.671 151.666 108.246C151.666 108.479 151.611 108.729 151.501 108.995C151.395 109.257 151.228 109.503 151 109.731C150.775 109.96 150.483 110.148 150.124 110.296C149.764 110.44 149.332 110.512 148.829 110.512H147.826V109.801ZM147.826 110.766V110.062H148.829C149.417 110.062 149.904 110.131 150.289 110.271C150.674 110.411 150.976 110.597 151.196 110.83C151.421 111.062 151.577 111.318 151.666 111.598C151.759 111.873 151.806 112.148 151.806 112.423C151.806 112.854 151.732 113.237 151.584 113.572C151.44 113.906 151.235 114.19 150.968 114.422C150.706 114.655 150.397 114.831 150.041 114.949C149.686 115.068 149.299 115.127 148.88 115.127C148.478 115.127 148.099 115.07 147.743 114.956C147.392 114.841 147.081 114.676 146.81 114.46C146.539 114.24 146.328 113.972 146.175 113.654C146.023 113.333 145.947 112.967 145.947 112.556H147.121C147.121 112.878 147.191 113.159 147.331 113.4C147.475 113.642 147.678 113.83 147.94 113.965C148.207 114.097 148.52 114.162 148.88 114.162C149.239 114.162 149.548 114.101 149.806 113.978C150.069 113.851 150.27 113.661 150.409 113.407C150.553 113.153 150.625 112.833 150.625 112.448C150.625 112.063 150.545 111.748 150.384 111.502C150.223 111.253 149.995 111.069 149.698 110.95C149.406 110.827 149.062 110.766 148.664 110.766H147.826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M221.104 110.792L219.644 110.442L220.171 105.758H225.363V107.237H221.675L221.447 109.287C221.569 109.215 221.756 109.139 222.005 109.059C222.255 108.974 222.534 108.932 222.843 108.932C223.292 108.932 223.689 109.001 224.036 109.141C224.383 109.281 224.678 109.484 224.919 109.75C225.164 110.017 225.35 110.343 225.477 110.728C225.604 111.113 225.668 111.549 225.668 112.036C225.668 112.446 225.604 112.838 225.477 113.21C225.35 113.578 225.158 113.908 224.9 114.2C224.642 114.488 224.318 114.714 223.929 114.879C223.539 115.044 223.078 115.127 222.545 115.127C222.147 115.127 221.762 115.068 221.389 114.949C221.021 114.831 220.689 114.655 220.393 114.422C220.101 114.19 219.866 113.908 219.688 113.578C219.515 113.244 219.424 112.863 219.415 112.436H221.231C221.256 112.698 221.324 112.924 221.434 113.115C221.548 113.301 221.698 113.445 221.885 113.546C222.071 113.648 222.289 113.699 222.538 113.699C222.771 113.699 222.97 113.654 223.135 113.565C223.3 113.477 223.433 113.354 223.535 113.197C223.637 113.036 223.711 112.85 223.757 112.639C223.808 112.423 223.833 112.19 223.833 111.94C223.833 111.691 223.804 111.464 223.744 111.261C223.685 111.058 223.594 110.882 223.472 110.734C223.349 110.586 223.192 110.472 223.002 110.392C222.816 110.311 222.598 110.271 222.348 110.271C222.009 110.271 221.747 110.324 221.561 110.43C221.379 110.535 221.227 110.656 221.104 110.792Z",fill:"white"}),(0,h.createElement)("path",{d:"M41.8627 128.758V129.418L38.0351 138H36.7973L40.6186 129.723H35.6166V128.758H41.8627Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M110.539 137.016H110.66C111.337 137.016 111.887 136.921 112.31 136.73C112.733 136.54 113.059 136.284 113.288 135.962C113.516 135.641 113.673 135.279 113.758 134.877C113.842 134.471 113.884 134.054 113.884 133.626V132.211C113.884 131.792 113.836 131.42 113.738 131.094C113.645 130.768 113.514 130.495 113.345 130.275C113.18 130.055 112.992 129.888 112.78 129.773C112.568 129.659 112.344 129.602 112.107 129.602C111.836 129.602 111.593 129.657 111.377 129.767C111.166 129.873 110.986 130.023 110.838 130.218C110.694 130.412 110.584 130.641 110.508 130.903C110.431 131.166 110.393 131.451 110.393 131.76C110.393 132.035 110.427 132.302 110.495 132.56C110.563 132.818 110.666 133.051 110.806 133.258C110.946 133.466 111.119 133.631 111.326 133.753C111.538 133.872 111.786 133.931 112.069 133.931C112.331 133.931 112.577 133.88 112.805 133.779C113.038 133.673 113.243 133.531 113.421 133.354C113.603 133.172 113.747 132.966 113.853 132.738C113.963 132.509 114.026 132.27 114.043 132.021H114.602C114.602 132.372 114.532 132.719 114.392 133.062C114.257 133.4 114.066 133.709 113.821 133.988C113.576 134.268 113.288 134.492 112.958 134.661C112.628 134.826 112.268 134.909 111.879 134.909C111.422 134.909 111.026 134.82 110.692 134.642C110.357 134.464 110.082 134.227 109.866 133.931C109.655 133.635 109.496 133.305 109.39 132.941C109.289 132.573 109.238 132.2 109.238 131.824C109.238 131.384 109.299 130.971 109.422 130.586C109.545 130.201 109.727 129.862 109.968 129.57C110.209 129.274 110.508 129.043 110.863 128.878C111.223 128.713 111.637 128.631 112.107 128.631C112.636 128.631 113.087 128.737 113.459 128.948C113.832 129.16 114.134 129.443 114.367 129.799C114.604 130.154 114.777 130.554 114.887 130.999C114.997 131.443 115.052 131.9 115.052 132.37V132.795C115.052 133.273 115.021 133.76 114.957 134.255C114.898 134.746 114.782 135.215 114.608 135.664C114.439 136.113 114.191 136.515 113.865 136.87C113.54 137.221 113.114 137.501 112.59 137.708C112.069 137.911 111.426 138.013 110.66 138.013H110.539V137.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M183.055 128.707V138H181.881V130.173L179.513 131.037V129.977L182.871 128.707H183.055ZM190.368 128.707V138H189.194V130.173L186.826 131.037V129.977L190.184 128.707H190.368Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M256.537 128.707V138H255.363V130.173L252.995 131.037V129.977L256.353 128.707H256.537ZM261.704 132.801H262.542C262.952 132.801 263.291 132.734 263.558 132.598C263.828 132.458 264.029 132.27 264.161 132.033C264.296 131.792 264.364 131.521 264.364 131.221C264.364 130.865 264.304 130.567 264.186 130.326C264.067 130.084 263.89 129.903 263.653 129.78C263.416 129.657 263.115 129.596 262.751 129.596C262.421 129.596 262.129 129.661 261.875 129.792C261.626 129.919 261.429 130.101 261.285 130.338C261.145 130.575 261.076 130.855 261.076 131.176H259.901C259.901 130.707 260.02 130.279 260.257 129.894C260.494 129.509 260.826 129.202 261.253 128.974C261.685 128.745 262.184 128.631 262.751 128.631C263.31 128.631 263.799 128.73 264.218 128.929C264.637 129.124 264.963 129.416 265.195 129.805C265.428 130.19 265.544 130.671 265.544 131.246C265.544 131.479 265.489 131.729 265.379 131.995C265.274 132.257 265.106 132.503 264.878 132.731C264.654 132.96 264.362 133.148 264.002 133.296C263.642 133.44 263.211 133.512 262.707 133.512H261.704V132.801ZM261.704 133.766V133.062H262.707C263.295 133.062 263.782 133.131 264.167 133.271C264.552 133.411 264.855 133.597 265.075 133.83C265.299 134.062 265.456 134.318 265.544 134.598C265.637 134.873 265.684 135.148 265.684 135.423C265.684 135.854 265.61 136.237 265.462 136.572C265.318 136.906 265.113 137.19 264.846 137.422C264.584 137.655 264.275 137.831 263.919 137.949C263.564 138.068 263.177 138.127 262.758 138.127C262.356 138.127 261.977 138.07 261.622 137.956C261.27 137.841 260.959 137.676 260.688 137.46C260.418 137.24 260.206 136.972 260.054 136.654C259.901 136.333 259.825 135.967 259.825 135.556H260.999C260.999 135.878 261.069 136.159 261.209 136.4C261.353 136.642 261.556 136.83 261.818 136.965C262.085 137.097 262.398 137.162 262.758 137.162C263.117 137.162 263.426 137.101 263.685 136.978C263.947 136.851 264.148 136.661 264.288 136.407C264.431 136.153 264.503 135.833 264.503 135.448C264.503 135.063 264.423 134.748 264.262 134.502C264.101 134.253 263.873 134.069 263.577 133.95C263.285 133.827 262.94 133.766 262.542 133.766H261.704Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M78.4575 135.499C78.4575 136.062 78.3263 136.54 78.0639 136.934C77.8058 137.323 77.4545 137.619 77.0102 137.822C76.5701 138.025 76.0729 138.127 75.5185 138.127C74.9641 138.127 74.4648 138.025 74.0205 137.822C73.5761 137.619 73.2249 137.323 72.9667 136.934C72.7086 136.54 72.5795 136.062 72.5795 135.499C72.5795 135.131 72.6494 134.794 72.789 134.49C72.9329 134.181 73.1339 133.912 73.392 133.684C73.6544 133.455 73.9633 133.279 74.3188 133.157C74.6785 133.03 75.0742 132.966 75.5058 132.966C76.0729 132.966 76.5786 133.076 77.0229 133.296C77.4672 133.512 77.8164 133.811 78.0703 134.191C78.3284 134.572 78.4575 135.008 78.4575 135.499ZM77.2768 135.474C77.2768 135.131 77.2027 134.828 77.0546 134.566C76.9065 134.299 76.6992 134.092 76.4326 133.944C76.166 133.796 75.857 133.722 75.5058 133.722C75.1461 133.722 74.8351 133.796 74.5727 133.944C74.3146 134.092 74.1136 134.299 73.9697 134.566C73.8258 134.828 73.7539 135.131 73.7539 135.474C73.7539 135.829 73.8237 136.134 73.9633 136.388C74.1072 136.637 74.3103 136.83 74.5727 136.965C74.8393 137.097 75.1546 137.162 75.5185 137.162C75.8824 137.162 76.1956 137.097 76.458 136.965C76.7203 136.83 76.9213 136.637 77.061 136.388C77.2049 136.134 77.2768 135.829 77.2768 135.474ZM78.2416 131.164C78.2416 131.612 78.1232 132.016 77.8862 132.376C77.6492 132.736 77.3255 133.019 76.915 133.227C76.5045 133.434 76.039 133.538 75.5185 133.538C74.9895 133.538 74.5177 133.434 74.103 133.227C73.6925 133.019 73.3709 132.736 73.1381 132.376C72.9054 132.016 72.789 131.612 72.789 131.164C72.789 130.626 72.9054 130.169 73.1381 129.792C73.3751 129.416 73.6988 129.128 74.1093 128.929C74.5198 128.73 74.9874 128.631 75.5122 128.631C76.0411 128.631 76.5109 128.73 76.9213 128.929C77.3318 129.128 77.6534 129.416 77.8862 129.792C78.1232 130.169 78.2416 130.626 78.2416 131.164ZM77.0673 131.183C77.0673 130.874 77.0017 130.601 76.8706 130.364C76.7394 130.127 76.5574 129.941 76.3247 129.805C76.0919 129.666 75.8211 129.596 75.5122 129.596C75.2032 129.596 74.9324 129.661 74.6997 129.792C74.4711 129.919 74.2913 130.101 74.1601 130.338C74.0331 130.575 73.9697 130.857 73.9697 131.183C73.9697 131.5 74.0331 131.777 74.1601 132.014C74.2913 132.251 74.4733 132.435 74.706 132.566C74.9387 132.698 75.2096 132.763 75.5185 132.763C75.8274 132.763 76.0961 132.698 76.3247 132.566C76.5574 132.435 76.7394 132.251 76.8706 132.014C77.0017 131.777 77.0673 131.5 77.0673 131.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M146.315 128.707V138H145.141V130.173L142.773 131.037V129.977L146.131 128.707H146.315ZM155.57 132.643V134.052C155.57 134.809 155.502 135.448 155.367 135.969C155.231 136.489 155.037 136.908 154.783 137.226C154.529 137.543 154.222 137.774 153.862 137.917C153.507 138.057 153.105 138.127 152.656 138.127C152.301 138.127 151.973 138.083 151.673 137.994C151.372 137.905 151.101 137.763 150.86 137.568C150.623 137.369 150.42 137.111 150.251 136.794C150.081 136.477 149.952 136.091 149.863 135.639C149.775 135.186 149.73 134.657 149.73 134.052V132.643C149.73 131.885 149.798 131.25 149.933 130.738C150.073 130.226 150.27 129.816 150.524 129.507C150.778 129.194 151.082 128.969 151.438 128.834C151.797 128.699 152.199 128.631 152.644 128.631C153.003 128.631 153.334 128.675 153.634 128.764C153.939 128.849 154.209 128.986 154.446 129.177C154.683 129.363 154.884 129.613 155.05 129.926C155.219 130.235 155.348 130.613 155.437 131.062C155.526 131.511 155.57 132.037 155.57 132.643ZM154.389 134.242V132.446C154.389 132.031 154.364 131.667 154.313 131.354C154.267 131.037 154.197 130.766 154.104 130.542C154.011 130.317 153.892 130.135 153.748 129.996C153.609 129.856 153.446 129.754 153.259 129.691C153.078 129.623 152.872 129.589 152.644 129.589C152.364 129.589 152.117 129.642 151.901 129.748C151.685 129.85 151.503 130.013 151.355 130.237C151.211 130.461 151.101 130.755 151.025 131.119C150.949 131.483 150.911 131.925 150.911 132.446V134.242C150.911 134.657 150.934 135.023 150.981 135.34C151.031 135.658 151.105 135.933 151.203 136.166C151.3 136.394 151.419 136.582 151.558 136.73C151.698 136.879 151.859 136.989 152.041 137.061C152.227 137.128 152.432 137.162 152.656 137.162C152.944 137.162 153.196 137.107 153.412 136.997C153.628 136.887 153.807 136.716 153.951 136.483C154.099 136.246 154.209 135.943 154.281 135.575C154.353 135.203 154.389 134.758 154.389 134.242Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M219.796 128.707V138H218.622V130.173L216.254 131.037V129.977L219.612 128.707H219.796ZM229.305 137.035V138H223.256V137.156L226.284 133.785C226.656 133.37 226.944 133.019 227.147 132.731C227.354 132.439 227.498 132.179 227.578 131.951C227.663 131.718 227.705 131.481 227.705 131.24C227.705 130.935 227.642 130.66 227.515 130.415C227.392 130.165 227.21 129.966 226.969 129.818C226.728 129.67 226.436 129.596 226.093 129.596C225.683 129.596 225.34 129.676 225.065 129.837C224.794 129.993 224.591 130.214 224.455 130.497C224.32 130.781 224.252 131.106 224.252 131.475H223.078C223.078 130.954 223.192 130.478 223.421 130.046C223.649 129.615 223.988 129.272 224.436 129.018C224.885 128.76 225.437 128.631 226.093 128.631C226.677 128.631 227.176 128.735 227.591 128.942C228.006 129.145 228.323 129.433 228.543 129.805C228.768 130.173 228.88 130.605 228.88 131.1C228.88 131.371 228.833 131.646 228.74 131.925C228.651 132.2 228.526 132.475 228.366 132.75C228.209 133.026 228.025 133.296 227.813 133.563C227.606 133.83 227.384 134.092 227.147 134.35L224.671 137.035H229.305Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1407"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1407"},(0,h.createElement)("rect",{width:"13",height:"13",fill:"white",transform:"translate(96 56)"})))),{ToolBarFields:kl,BlockLabel:jl,BlockName:xl,BlockDescription:Fl,BlockAdvancedValue:Bl,AdvancedFields:Al,FieldWrapper:Pl,FieldSettingsWrapper:Sl,AdvancedInspectorControl:Nl,ClientSideMacros:Il,ValidationToggleGroup:Tl,ValidationBlockMessage:Ol,AttributeHelp:Jl}=JetFBComponents,{useInsertMacro:Rl,useIsAdvancedValidation:ql,useUniqueNameOnDuplicate:Dl}=JetFBHooks,{__:zl}=wp.i18n,{InspectorControls:Ul,useBlockProps:Gl}=wp.blockEditor,{TextControl:Wl,ToggleControl:Kl,PanelBody:$l,__experimentalInputControl:Yl,ExternalLink:Xl}=wp.components;let{InputControl:Ql}=wp.components;void 0===Ql&&(Ql=Yl);const er=JSON.parse('{"apiVersion":3,"name":"jet-forms/date-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","date"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Date Field","icon":"\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":"string","default":"","jfb":{"macro":true,"dynamic":true}},"max":{"type":"string","default":""},"is_timestamp":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Cr}=wp.i18n,{createBlock:tr}=wp.blocks,{name:lr,icon:rr=""}=er,nr={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:rr}}),description:Cr("Insert the date manually with Date Field, utilizing a drop-down calendar to choose the date from there conveniently.","jet-form-builder"),edit:function(e){const C=Gl(),[t,l]=Rl("min"),[r,n]=Rl("max"),{attributes:a,isSelected:i,setAttributes:o,editProps:{uniqKey:s,blockName:c,attrHelp:d}}=e,m=ql();if(Dl(),a.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},_l);const u=(0,h.createElement)(h.Fragment,null,zl("Plain date should be in yyyy-mm-dd format.","jet-form-builder")," ",zl("Or you can use","jet-form-builder")," ",(0,h.createElement)(Xl,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},zl("macros","jet-form-builder"))," ",zl("and","jet-form-builder")," ",(0,h.createElement)(Xl,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},zl("filters","jet-form-builder")),".");return[(0,h.createElement)(kl,{key:s("JetForm-toolbar"),...e}),i&&(0,h.createElement)(Ul,{key:s("InspectorControls")},(0,h.createElement)($l,{title:zl("General","jet-form-builder")},(0,h.createElement)(jl,null),(0,h.createElement)(xl,null),(0,h.createElement)(Fl,null)),(0,h.createElement)($l,{title:zl("Value","jet-form-builder")},(0,h.createElement)(Bl,{help:u,style:{marginBottom:"1em"}}),(0,h.createElement)(Il,null,(0,h.createElement)(Nl,{value:a.min,label:zl("Starting from date","jet-form-builder"),onChangePreset:e=>o({min:e}),onChangeMacros:l},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Wl,{id:e,ref:t,className:"jet-fb m-unset",value:a.min,onChange:e=>o({min:e})}),(0,h.createElement)(Jl,null,u))),(0,h.createElement)(Nl,{value:a.max,label:zl("Limit dates to","jet-form-builder"),onChangePreset:e=>o({max:e}),onChangeMacros:n},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Wl,{id:e,ref:r,className:"jet-fb m-unset",value:a.max,onChange:e=>o({max:e})}),(0,h.createElement)(Jl,null,u))))),(0,h.createElement)(Sl,{...e},(0,h.createElement)(Kl,{key:"is_timestamp",label:zl("Is Timestamp","jet-form-builder"),checked:a.is_timestamp,help:d("is_timestamp"),onChange:e=>{o({is_timestamp:Boolean(e)})}})),(0,h.createElement)($l,{title:zl("Validation","jet-form-builder")},(0,h.createElement)(Tl,null),m&&(0,h.createElement)(h.Fragment,null,Boolean(a.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ol,{name:"date_min"})),Boolean(a.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ol,{name:"date_max"})),(0,h.createElement)(Ol,{name:"empty"}))),(0,h.createElement)(Al,null)),(0,h.createElement)("div",{...C,key:s("viewBlock")},(0,h.createElement)(Pl,{key:s("FieldWrapper"),...e},(0,h.createElement)(Wl,{onChange:()=>{},className:"jet-form-builder__field-preview",key:`place_holder_block_${c}`,placeholder:'Input type="date"'})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>tr("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/time-field","jet-forms/datetime-field"],transform:e=>tr(lr,{...e}),priority:0}]}},ar=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_75_1425)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M31.5698 29.1426V30.5518C31.5698 31.3092 31.5021 31.9482 31.3667 32.4688C31.2313 32.9893 31.0366 33.4082 30.7827 33.7256C30.5288 34.043 30.222 34.2736 29.8623 34.4175C29.5068 34.5571 29.1048 34.627 28.6562 34.627C28.3008 34.627 27.9728 34.5825 27.6724 34.4937C27.3719 34.4048 27.1011 34.263 26.8599 34.0684C26.6229 33.8695 26.4198 33.6113 26.2505 33.2939C26.0812 32.9766 25.9521 32.5915 25.8633 32.1387C25.7744 31.6859 25.73 31.1569 25.73 30.5518V29.1426C25.73 28.3851 25.7977 27.7503 25.9331 27.2383C26.0728 26.7262 26.2695 26.3158 26.5234 26.0068C26.7773 25.6937 27.082 25.4694 27.4375 25.334C27.7972 25.1986 28.1992 25.1309 28.6436 25.1309C29.0033 25.1309 29.3333 25.1753 29.6338 25.2642C29.9385 25.3488 30.2093 25.4863 30.4463 25.6768C30.6833 25.863 30.8843 26.1126 31.0493 26.4258C31.2186 26.7347 31.3477 27.1134 31.4365 27.562C31.5254 28.0106 31.5698 28.5374 31.5698 29.1426ZM30.3892 30.7422V28.9458C30.3892 28.5311 30.3638 28.1672 30.313 27.854C30.2664 27.5366 30.1966 27.2658 30.1035 27.0415C30.0104 26.8172 29.8919 26.6353 29.748 26.4956C29.6084 26.356 29.4455 26.2544 29.2593 26.1909C29.0773 26.1232 28.8721 26.0894 28.6436 26.0894C28.3643 26.0894 28.1167 26.1423 27.9009 26.248C27.6851 26.3496 27.5031 26.5125 27.355 26.7368C27.2111 26.9611 27.1011 27.2552 27.0249 27.6191C26.9487 27.9831 26.9106 28.4253 26.9106 28.9458V30.7422C26.9106 31.1569 26.9339 31.5229 26.9805 31.8403C27.0312 32.1577 27.1053 32.4328 27.2026 32.6655C27.3 32.894 27.4185 33.0824 27.5581 33.2305C27.6978 33.3786 27.8586 33.4886 28.0405 33.5605C28.2267 33.6283 28.432 33.6621 28.6562 33.6621C28.944 33.6621 29.1958 33.6071 29.4116 33.4971C29.6274 33.387 29.8073 33.2157 29.9512 32.9829C30.0993 32.7459 30.2093 32.4434 30.2812 32.0752C30.3532 31.7028 30.3892 31.2585 30.3892 30.7422ZM34.7944 29.3013H35.6323C36.0428 29.3013 36.3813 29.2336 36.6479 29.0981C36.9188 28.9585 37.1198 28.7702 37.251 28.5332C37.3864 28.292 37.4541 28.0212 37.4541 27.7207C37.4541 27.3652 37.3949 27.0669 37.2764 26.8257C37.1579 26.5845 36.9801 26.4025 36.7432 26.2798C36.5062 26.1571 36.2057 26.0957 35.8418 26.0957C35.5117 26.0957 35.2197 26.1613 34.9658 26.2925C34.7161 26.4194 34.5194 26.6014 34.3755 26.8384C34.2358 27.0754 34.166 27.3547 34.166 27.6763H32.9917C32.9917 27.2065 33.1102 26.7791 33.3472 26.394C33.5841 26.009 33.9163 25.7021 34.3438 25.4736C34.7754 25.2451 35.2747 25.1309 35.8418 25.1309C36.4004 25.1309 36.8892 25.2303 37.3081 25.4292C37.7271 25.6239 38.0529 25.9159 38.2856 26.3052C38.5184 26.6903 38.6348 27.1706 38.6348 27.7461C38.6348 27.9788 38.5798 28.2285 38.4697 28.4951C38.3639 28.7575 38.1968 29.0029 37.9683 29.2314C37.744 29.46 37.452 29.6483 37.0923 29.7964C36.7326 29.9403 36.3009 30.0122 35.7974 30.0122H34.7944V29.3013ZM34.7944 30.2661V29.5615H35.7974C36.3856 29.5615 36.8722 29.6313 37.2573 29.771C37.6424 29.9106 37.945 30.0968 38.165 30.3296C38.3893 30.5623 38.5459 30.8184 38.6348 31.0977C38.7279 31.3727 38.7744 31.6478 38.7744 31.9229C38.7744 32.3545 38.7004 32.7375 38.5522 33.0718C38.4084 33.4061 38.2031 33.6896 37.9365 33.9224C37.6742 34.1551 37.3652 34.3307 37.0098 34.4492C36.6543 34.5677 36.2671 34.627 35.8481 34.627C35.4461 34.627 35.0674 34.5698 34.7119 34.4556C34.3607 34.3413 34.0496 34.1763 33.7788 33.9604C33.508 33.7404 33.2964 33.4717 33.144 33.1543C32.9917 32.8327 32.9155 32.4666 32.9155 32.0562H34.0898C34.0898 32.3778 34.1597 32.6592 34.2993 32.9004C34.4432 33.1416 34.6463 33.3299 34.9087 33.4653C35.1753 33.5965 35.4884 33.6621 35.8481 33.6621C36.2078 33.6621 36.5168 33.6007 36.7749 33.478C37.0373 33.3511 37.2383 33.1606 37.3779 32.9067C37.5218 32.6528 37.5938 32.3333 37.5938 31.9482C37.5938 31.5632 37.5133 31.2479 37.3525 31.0024C37.1917 30.7528 36.9632 30.5687 36.667 30.4502C36.375 30.3275 36.0301 30.2661 35.6323 30.2661H34.7944Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M46.9829 25.2578L43.1299 35.2935H42.1206L45.98 25.2578H46.9829Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"50",y:"20.5",width:"19",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M57.2241 33.167V24.75H58.4048V34.5H57.3257L57.2241 33.167ZM52.603 31.1421V31.0088C52.603 30.484 52.6665 30.008 52.7935 29.5806C52.9246 29.1489 53.1087 28.7786 53.3457 28.4697C53.5869 28.1608 53.8726 27.9238 54.2026 27.7588C54.5369 27.5895 54.9093 27.5049 55.3198 27.5049C55.7515 27.5049 56.1281 27.5811 56.4497 27.7334C56.7756 27.8815 57.0506 28.0994 57.2749 28.3872C57.5034 28.6707 57.6833 29.0135 57.8145 29.4155C57.9456 29.8175 58.0366 30.2725 58.0874 30.7803V31.3643C58.0409 31.8678 57.9499 32.3206 57.8145 32.7227C57.6833 33.1247 57.5034 33.4674 57.2749 33.751C57.0506 34.0345 56.7756 34.2524 56.4497 34.4048C56.1239 34.5529 55.743 34.627 55.3071 34.627C54.9051 34.627 54.5369 34.5402 54.2026 34.3667C53.8726 34.1932 53.5869 33.9499 53.3457 33.6367C53.1087 33.3236 52.9246 32.9554 52.7935 32.5322C52.6665 32.1048 52.603 31.6414 52.603 31.1421ZM53.7837 31.0088V31.1421C53.7837 31.4849 53.8175 31.8065 53.8853 32.1069C53.9572 32.4074 54.0672 32.6719 54.2153 32.9004C54.3634 33.1289 54.5518 33.3088 54.7803 33.4399C55.0088 33.5669 55.2817 33.6304 55.5991 33.6304C55.9884 33.6304 56.3079 33.5479 56.5576 33.3828C56.8115 33.2178 57.0146 32.9998 57.167 32.729C57.3193 32.4582 57.4378 32.1641 57.5225 31.8467V30.3169C57.4717 30.0841 57.3976 29.8599 57.3003 29.644C57.2072 29.424 57.0845 29.2293 56.9321 29.0601C56.784 28.8866 56.5999 28.749 56.3799 28.6475C56.1641 28.5459 55.908 28.4951 55.6118 28.4951C55.2902 28.4951 55.013 28.5628 54.7803 28.6982C54.5518 28.8294 54.3634 29.0114 54.2153 29.2441C54.0672 29.4727 53.9572 29.7393 53.8853 30.0439C53.8175 30.3444 53.7837 30.666 53.7837 31.0088ZM64.562 33.167V24.75H65.7427V34.5H64.6636L64.562 33.167ZM59.9409 31.1421V31.0088C59.9409 30.484 60.0044 30.008 60.1313 29.5806C60.2625 29.1489 60.4466 28.7786 60.6836 28.4697C60.9248 28.1608 61.2104 27.9238 61.5405 27.7588C61.8748 27.5895 62.2472 27.5049 62.6577 27.5049C63.0894 27.5049 63.466 27.5811 63.7876 27.7334C64.1134 27.8815 64.3885 28.0994 64.6128 28.3872C64.8413 28.6707 65.0212 29.0135 65.1523 29.4155C65.2835 29.8175 65.3745 30.2725 65.4253 30.7803V31.3643C65.3787 31.8678 65.2878 32.3206 65.1523 32.7227C65.0212 33.1247 64.8413 33.4674 64.6128 33.751C64.3885 34.0345 64.1134 34.2524 63.7876 34.4048C63.4618 34.5529 63.0809 34.627 62.645 34.627C62.243 34.627 61.8748 34.5402 61.5405 34.3667C61.2104 34.1932 60.9248 33.9499 60.6836 33.6367C60.4466 33.3236 60.2625 32.9554 60.1313 32.5322C60.0044 32.1048 59.9409 31.6414 59.9409 31.1421ZM61.1216 31.0088V31.1421C61.1216 31.4849 61.1554 31.8065 61.2231 32.1069C61.2951 32.4074 61.4051 32.6719 61.5532 32.9004C61.7013 33.1289 61.8896 33.3088 62.1182 33.4399C62.3467 33.5669 62.6196 33.6304 62.937 33.6304C63.3263 33.6304 63.6458 33.5479 63.8955 33.3828C64.1494 33.2178 64.3525 32.9998 64.5049 32.729C64.6572 32.4582 64.7757 32.1641 64.8604 31.8467V30.3169C64.8096 30.0841 64.7355 29.8599 64.6382 29.644C64.5451 29.424 64.4224 29.2293 64.27 29.0601C64.1219 28.8866 63.9378 28.749 63.7178 28.6475C63.502 28.5459 63.2459 28.4951 62.9497 28.4951C62.6281 28.4951 62.3509 28.5628 62.1182 28.6982C61.8896 28.8294 61.7013 29.0114 61.5532 29.2441C61.4051 29.4727 61.2951 29.7393 61.2231 30.0439C61.1554 30.3444 61.1216 30.666 61.1216 31.0088Z",fill:"white"}),(0,h.createElement)("path",{d:"M75.9829 25.2578L72.1299 35.2935H71.1206L74.98 25.2578H75.9829Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M81.8247 33.7891L83.7354 27.6318H84.9922L82.2373 35.5601C82.1738 35.7293 82.0892 35.9113 81.9834 36.106C81.8818 36.3049 81.7507 36.4932 81.5898 36.6709C81.429 36.8486 81.2344 36.9925 81.0059 37.1025C80.7816 37.2168 80.5129 37.2739 80.1997 37.2739C80.1066 37.2739 79.9881 37.2612 79.8442 37.2358C79.7004 37.2104 79.5988 37.1893 79.5396 37.1724L79.5332 36.2202C79.5671 36.2244 79.62 36.2287 79.6919 36.2329C79.7681 36.2414 79.821 36.2456 79.8506 36.2456C80.1172 36.2456 80.3436 36.2096 80.5298 36.1377C80.716 36.07 80.8726 35.9536 80.9995 35.7886C81.1307 35.6278 81.2428 35.4056 81.3359 35.1221L81.8247 33.7891ZM80.4219 27.6318L82.2056 32.9639L82.5103 34.2017L81.666 34.6333L79.1396 27.6318H80.4219ZM87.9819 33.7891L89.8926 27.6318H91.1494L88.3945 35.5601C88.3311 35.7293 88.2464 35.9113 88.1406 36.106C88.0391 36.3049 87.9079 36.4932 87.7471 36.6709C87.5863 36.8486 87.3916 36.9925 87.1631 37.1025C86.9388 37.2168 86.6701 37.2739 86.3569 37.2739C86.2638 37.2739 86.1453 37.2612 86.0015 37.2358C85.8576 37.2104 85.756 37.1893 85.6968 37.1724L85.6904 36.2202C85.7243 36.2244 85.7772 36.2287 85.8491 36.2329C85.9253 36.2414 85.9782 36.2456 86.0078 36.2456C86.2744 36.2456 86.5008 36.2096 86.687 36.1377C86.8732 36.07 87.0298 35.9536 87.1567 35.7886C87.2879 35.6278 87.4001 35.4056 87.4932 35.1221L87.9819 33.7891ZM86.5791 27.6318L88.3628 32.9639L88.6675 34.2017L87.8232 34.6333L85.2969 27.6318H86.5791ZM94.1392 33.7891L96.0498 27.6318H97.3066L94.5518 35.5601C94.4883 35.7293 94.4036 35.9113 94.2979 36.106C94.1963 36.3049 94.0651 36.4932 93.9043 36.6709C93.7435 36.8486 93.5488 36.9925 93.3203 37.1025C93.096 37.2168 92.8273 37.2739 92.5142 37.2739C92.4211 37.2739 92.3026 37.2612 92.1587 37.2358C92.0148 37.2104 91.9132 37.1893 91.854 37.1724L91.8477 36.2202C91.8815 36.2244 91.9344 36.2287 92.0063 36.2329C92.0825 36.2414 92.1354 36.2456 92.165 36.2456C92.4316 36.2456 92.658 36.2096 92.8442 36.1377C93.0304 36.07 93.187 35.9536 93.314 35.7886C93.4451 35.6278 93.5573 35.4056 93.6504 35.1221L94.1392 33.7891ZM92.7363 27.6318L94.52 32.9639L94.8247 34.2017L93.9805 34.6333L91.4541 27.6318H92.7363ZM100.296 33.7891L102.207 27.6318H103.464L100.709 35.5601C100.646 35.7293 100.561 35.9113 100.455 36.106C100.354 36.3049 100.222 36.4932 100.062 36.6709C99.9007 36.8486 99.7061 36.9925 99.4775 37.1025C99.2533 37.2168 98.9845 37.2739 98.6714 37.2739C98.5783 37.2739 98.4598 37.2612 98.3159 37.2358C98.172 37.2104 98.0705 37.1893 98.0112 37.1724L98.0049 36.2202C98.0387 36.2244 98.0916 36.2287 98.1636 36.2329C98.2397 36.2414 98.2926 36.2456 98.3223 36.2456C98.5889 36.2456 98.8153 36.2096 99.0015 36.1377C99.1877 36.07 99.3442 35.9536 99.4712 35.7886C99.6024 35.6278 99.7145 35.4056 99.8076 35.1221L100.296 33.7891ZM98.8936 27.6318L100.677 32.9639L100.982 34.2017L100.138 34.6333L97.6113 27.6318H98.8936Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270 24V38C270 39.1 269.1 40 268 40H254C252.89 40 252 39.1 252 38L252.01 24C252.01 22.9 252.89 22 254 22H255V20H257V22H265V20H267V22H268C269.1 22 270 22.9 270 24ZM254 26H268V24H254V26ZM268 38V28H254V38H268Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"15",y:"45",width:"268",height:"189",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M26.6948 60.7578H28.3071L30.6812 67.5435L33.0552 60.7578H34.6675L31.3286 70H30.0337L26.6948 60.7578ZM25.8252 60.7578H27.4312L27.7231 67.3721V70H25.8252V60.7578ZM33.9312 60.7578H35.5435V70H33.6392V67.3721L33.9312 60.7578ZM40.8057 68.4512V65.3916C40.8057 65.1715 40.7697 64.9832 40.6978 64.8267C40.6258 64.6659 40.5137 64.541 40.3613 64.4521C40.2132 64.3633 40.0207 64.3188 39.7837 64.3188C39.5806 64.3188 39.4049 64.3548 39.2568 64.4268C39.1087 64.4945 38.9945 64.5939 38.9141 64.7251C38.8337 64.8521 38.7935 65.0023 38.7935 65.1758H36.9653C36.9653 64.8838 37.033 64.6066 37.1685 64.3442C37.3039 64.0819 37.5007 63.8512 37.7588 63.6523C38.0169 63.4492 38.3237 63.2905 38.6792 63.1763C39.0389 63.062 39.4409 63.0049 39.8853 63.0049C40.4185 63.0049 40.8924 63.0938 41.3071 63.2715C41.7218 63.4492 42.0477 63.7158 42.2847 64.0713C42.5259 64.4268 42.6465 64.8711 42.6465 65.4043V68.3433C42.6465 68.7199 42.6698 69.0288 42.7163 69.27C42.7629 69.507 42.8306 69.7144 42.9194 69.8921V70H41.0723C40.9834 69.8138 40.9157 69.5811 40.8691 69.3018C40.8268 69.0182 40.8057 68.7347 40.8057 68.4512ZM41.0469 65.8169L41.0596 66.8516H40.0376C39.7964 66.8516 39.5869 66.8791 39.4092 66.9341C39.2314 66.9891 39.0854 67.0674 38.9712 67.1689C38.8569 67.2663 38.7723 67.3805 38.7173 67.5117C38.6665 67.6429 38.6411 67.7868 38.6411 67.9434C38.6411 68.0999 38.6771 68.2417 38.749 68.3687C38.821 68.4914 38.9246 68.5887 39.0601 68.6606C39.1955 68.7284 39.3542 68.7622 39.5361 68.7622C39.8112 68.7622 40.0503 68.7072 40.2534 68.5972C40.4565 68.4871 40.6131 68.3517 40.7231 68.1909C40.8374 68.0301 40.8966 67.8778 40.9009 67.7339L41.3833 68.5083C41.3156 68.6818 41.2225 68.8617 41.104 69.0479C40.9897 69.234 40.8438 69.4097 40.666 69.5747C40.4883 69.7355 40.2746 69.8688 40.0249 69.9746C39.7752 70.0762 39.479 70.127 39.1362 70.127C38.7004 70.127 38.3047 70.0402 37.9492 69.8667C37.598 69.689 37.3187 69.4456 37.1113 69.1367C36.9082 68.8236 36.8066 68.4681 36.8066 68.0703C36.8066 67.7106 36.8743 67.3911 37.0098 67.1118C37.1452 66.8325 37.3441 66.5977 37.6064 66.4072C37.873 66.2126 38.2052 66.0666 38.603 65.9692C39.0008 65.8677 39.4621 65.8169 39.9868 65.8169H41.0469ZM45.8838 64.6299V70H44.0557V63.1318H45.7759L45.8838 64.6299ZM47.9531 63.0874L47.9214 64.7822C47.8325 64.7695 47.7246 64.759 47.5977 64.7505C47.4749 64.7378 47.3628 64.7314 47.2612 64.7314C47.0031 64.7314 46.7788 64.7653 46.5884 64.833C46.4022 64.8965 46.2456 64.9917 46.1187 65.1187C45.9959 65.2456 45.9028 65.4001 45.8394 65.582C45.7801 65.764 45.7463 65.9714 45.7378 66.2041L45.3696 66.0898C45.3696 65.6455 45.4141 65.2371 45.5029 64.8647C45.5918 64.4881 45.7209 64.1602 45.8901 63.8809C46.0636 63.6016 46.2752 63.3857 46.5249 63.2334C46.7746 63.0811 47.0602 63.0049 47.3818 63.0049C47.4834 63.0049 47.5871 63.0133 47.6929 63.0303C47.7987 63.043 47.8854 63.062 47.9531 63.0874ZM51.5269 68.6987C51.7511 68.6987 51.95 68.6564 52.1235 68.5718C52.297 68.4829 52.4325 68.3602 52.5298 68.2036C52.6313 68.0428 52.6842 67.8545 52.6885 67.6387H54.4087C54.4045 68.1211 54.2754 68.5506 54.0215 68.9272C53.7676 69.2996 53.4269 69.5938 52.9995 69.8096C52.5721 70.0212 52.0939 70.127 51.5649 70.127C51.0317 70.127 50.5662 70.0381 50.1685 69.8604C49.7749 69.6826 49.4469 69.4372 49.1846 69.124C48.9222 68.8066 48.7254 68.4385 48.5942 68.0195C48.4631 67.5964 48.3975 67.1436 48.3975 66.6611V66.4771C48.3975 65.9904 48.4631 65.5376 48.5942 65.1187C48.7254 64.6955 48.9222 64.3273 49.1846 64.0142C49.4469 63.6968 49.7749 63.4492 50.1685 63.2715C50.562 63.0938 51.0233 63.0049 51.5522 63.0049C52.1151 63.0049 52.6081 63.1128 53.0312 63.3286C53.4587 63.5444 53.793 63.8534 54.0342 64.2554C54.2796 64.6532 54.4045 65.125 54.4087 65.6709H52.6885C52.6842 65.4424 52.6356 65.235 52.5425 65.0488C52.4536 64.8626 52.3224 64.7145 52.1489 64.6045C51.9797 64.4902 51.7702 64.4331 51.5205 64.4331C51.2539 64.4331 51.036 64.4902 50.8667 64.6045C50.6974 64.7145 50.5662 64.8669 50.4731 65.0615C50.38 65.252 50.3145 65.4699 50.2764 65.7153C50.2425 65.9565 50.2256 66.2104 50.2256 66.4771V66.6611C50.2256 66.9277 50.2425 67.1838 50.2764 67.4292C50.3102 67.6746 50.3737 67.8926 50.4668 68.083C50.5641 68.2734 50.6974 68.4237 50.8667 68.5337C51.036 68.6437 51.256 68.6987 51.5269 68.6987ZM57.2524 60.25V70H55.4243V60.25H57.2524ZM56.9922 66.3247H56.4907C56.495 65.8465 56.5584 65.4064 56.6812 65.0044C56.8039 64.5981 56.9795 64.2469 57.208 63.9507C57.4365 63.6502 57.7095 63.4175 58.0269 63.2524C58.3485 63.0874 58.7039 63.0049 59.0933 63.0049C59.4318 63.0049 59.7386 63.0535 60.0137 63.1509C60.293 63.244 60.5321 63.3963 60.731 63.6079C60.9341 63.8153 61.0907 64.0882 61.2007 64.4268C61.3107 64.7653 61.3657 65.1758 61.3657 65.6582V70H59.5249V65.6455C59.5249 65.3408 59.4805 65.1017 59.3916 64.9282C59.307 64.7505 59.1821 64.6257 59.0171 64.5537C58.8563 64.4775 58.6574 64.4395 58.4204 64.4395C58.158 64.4395 57.9338 64.4881 57.7476 64.5854C57.5656 64.6828 57.4196 64.8182 57.3096 64.9917C57.1995 65.161 57.1191 65.3599 57.0684 65.5884C57.0176 65.8169 56.9922 66.0623 56.9922 66.3247ZM72.2393 68.5718V70H65.917V68.7812L68.9067 65.5757C69.2072 65.2414 69.4442 64.9473 69.6177 64.6934C69.7912 64.4352 69.916 64.2046 69.9922 64.0015C70.0726 63.7941 70.1128 63.5973 70.1128 63.4111C70.1128 63.1318 70.0662 62.8927 69.9731 62.6938C69.88 62.4907 69.7425 62.3341 69.5605 62.2241C69.3828 62.1141 69.1628 62.0591 68.9004 62.0591C68.6211 62.0591 68.3799 62.1268 68.1768 62.2622C67.9779 62.3976 67.8255 62.5859 67.7197 62.8271C67.6182 63.0684 67.5674 63.3413 67.5674 63.646H65.7329C65.7329 63.0959 65.8641 62.5923 66.1265 62.1353C66.3888 61.674 66.7591 61.3079 67.2373 61.0371C67.7155 60.762 68.2826 60.6245 68.9385 60.6245C69.5859 60.6245 70.1318 60.7303 70.5762 60.9419C71.0247 61.1493 71.3633 61.4497 71.5918 61.8433C71.8245 62.2326 71.9409 62.6981 71.9409 63.2397C71.9409 63.5444 71.8923 63.8428 71.7949 64.1348C71.6976 64.4225 71.5579 64.7103 71.376 64.998C71.1982 65.2816 70.9824 65.5693 70.7285 65.8613C70.4746 66.1533 70.1932 66.4559 69.8843 66.769L68.2783 68.5718H72.2393ZM79.6025 64.5664V66.166C79.6025 66.86 79.5285 67.4588 79.3804 67.9624C79.2323 68.4618 79.0186 68.8722 78.7393 69.1938C78.4642 69.5112 78.1362 69.7461 77.7554 69.8984C77.3745 70.0508 76.9513 70.127 76.4858 70.127C76.1134 70.127 75.7664 70.0804 75.4448 69.9873C75.1232 69.89 74.8333 69.7397 74.5752 69.5366C74.3213 69.3335 74.1012 69.0775 73.915 68.7686C73.7331 68.4554 73.5934 68.083 73.4961 67.6514C73.3988 67.2197 73.3501 66.7246 73.3501 66.166V64.5664C73.3501 63.8724 73.4242 63.2778 73.5723 62.7827C73.7246 62.2834 73.9383 61.875 74.2134 61.5576C74.4927 61.2402 74.8228 61.0075 75.2036 60.8594C75.5845 60.707 76.0076 60.6309 76.4731 60.6309C76.8455 60.6309 77.1904 60.6795 77.5078 60.7769C77.8294 60.87 78.1193 61.016 78.3774 61.2148C78.6356 61.4137 78.8556 61.6698 79.0376 61.9829C79.2196 62.2918 79.3592 62.6621 79.4565 63.0938C79.5539 63.5212 79.6025 64.012 79.6025 64.5664ZM77.7681 66.4072V64.3188C77.7681 63.9845 77.749 63.6925 77.7109 63.4429C77.6771 63.1932 77.6242 62.9816 77.5522 62.8081C77.4803 62.6304 77.3914 62.4865 77.2856 62.3765C77.1799 62.2664 77.0592 62.186 76.9238 62.1353C76.7884 62.0845 76.6382 62.0591 76.4731 62.0591C76.2658 62.0591 76.0817 62.0993 75.9209 62.1797C75.7643 62.2601 75.631 62.3892 75.521 62.5669C75.411 62.7404 75.3263 62.9731 75.2671 63.2651C75.2121 63.5529 75.1846 63.9041 75.1846 64.3188V66.4072C75.1846 66.7415 75.2015 67.0356 75.2354 67.2896C75.2734 67.5435 75.3285 67.7614 75.4004 67.9434C75.4766 68.1211 75.5654 68.2671 75.667 68.3813C75.7728 68.4914 75.8934 68.5718 76.0288 68.6226C76.1685 68.6733 76.3208 68.6987 76.4858 68.6987C76.689 68.6987 76.8688 68.6585 77.0254 68.5781C77.1862 68.4935 77.3216 68.3623 77.4316 68.1846C77.5459 68.0026 77.6305 67.7656 77.6855 67.4736C77.7406 67.1816 77.7681 66.8262 77.7681 66.4072ZM87.1689 68.5718V70H80.8467V68.7812L83.8364 65.5757C84.1369 65.2414 84.3739 64.9473 84.5474 64.6934C84.7209 64.4352 84.8457 64.2046 84.9219 64.0015C85.0023 63.7941 85.0425 63.5973 85.0425 63.4111C85.0425 63.1318 84.9959 62.8927 84.9028 62.6938C84.8097 62.4907 84.6722 62.3341 84.4902 62.2241C84.3125 62.1141 84.0924 62.0591 83.8301 62.0591C83.5508 62.0591 83.3096 62.1268 83.1064 62.2622C82.9076 62.3976 82.7552 62.5859 82.6494 62.8271C82.5479 63.0684 82.4971 63.3413 82.4971 63.646H80.6626C80.6626 63.0959 80.7938 62.5923 81.0562 62.1353C81.3185 61.674 81.6888 61.3079 82.167 61.0371C82.6452 60.762 83.2122 60.6245 83.8682 60.6245C84.5156 60.6245 85.0615 60.7303 85.5059 60.9419C85.9544 61.1493 86.293 61.4497 86.5215 61.8433C86.7542 62.2326 86.8706 62.6981 86.8706 63.2397C86.8706 63.5444 86.8219 63.8428 86.7246 64.1348C86.6273 64.4225 86.4876 64.7103 86.3057 64.998C86.1279 65.2816 85.9121 65.5693 85.6582 65.8613C85.4043 66.1533 85.1229 66.4559 84.814 66.769L83.208 68.5718H87.1689ZM92.7676 60.7388V70H90.9395V62.8462L88.7432 63.5444V62.1035L92.5708 60.7388H92.7676Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1425)"},(0,h.createElement)("path",{d:"M99.7917 64.4167L102.5 67.1251L105.208 64.4167H99.7917Z",fill:"#64748B"})),(0,h.createElement)("path",{d:"M184.167 65.4999L184.93 66.2637L187.958 63.2412L187.958 69.8333L189.042 69.8333L189.042 63.2412L192.07 66.2637L192.833 65.4999L188.5 61.1666L184.167 65.4999Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M205.833 65.5001L205.07 64.7363L202.042 67.7588L202.042 61.1667L200.958 61.1667L200.958 67.7588L197.93 64.7363L197.167 65.5001L201.5 69.8334L205.833 65.5001Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M33.7192 89.6641C33.7192 89.4482 33.6853 89.2578 33.6176 89.0928C33.5541 88.9235 33.4399 88.7712 33.2748 88.6357C33.114 88.5003 32.8898 88.3713 32.602 88.2485C32.3185 88.1258 31.9588 88.001 31.5229 87.874C31.0659 87.7386 30.6533 87.5884 30.2851 87.4233C29.9169 87.2541 29.6017 87.0615 29.3393 86.8457C29.0769 86.6299 28.8759 86.3823 28.7363 86.103C28.5966 85.8237 28.5268 85.5042 28.5268 85.1445C28.5268 84.7848 28.6009 84.4526 28.749 84.1479C28.8971 83.8433 29.1087 83.5788 29.3837 83.3545C29.663 83.126 29.9952 82.9482 30.3803 82.8213C30.7654 82.6943 31.1949 82.6309 31.6689 82.6309C32.3629 82.6309 32.9511 82.7642 33.4335 83.0308C33.9202 83.2931 34.2905 83.638 34.5444 84.0654C34.7983 84.4886 34.9252 84.9414 34.9252 85.4238H33.7065C33.7065 85.0768 33.6324 84.77 33.4843 84.5034C33.3362 84.2326 33.1119 84.021 32.8115 83.8687C32.511 83.7121 32.1302 83.6338 31.6689 83.6338C31.233 83.6338 30.8733 83.6994 30.5898 83.8306C30.3063 83.9618 30.0947 84.1395 29.955 84.3638C29.8196 84.5881 29.7519 84.8441 29.7519 85.1318C29.7519 85.3265 29.7921 85.5042 29.8725 85.665C29.9571 85.8216 30.0862 85.9676 30.2597 86.103C30.4374 86.2384 30.6617 86.3633 30.9326 86.4775C31.2076 86.5918 31.5356 86.7018 31.9164 86.8076C32.4412 86.9557 32.894 87.1208 33.2748 87.3027C33.6557 87.4847 33.9689 87.6899 34.2143 87.9185C34.464 88.1427 34.6481 88.3988 34.7665 88.6865C34.8893 88.9701 34.9506 89.2917 34.9506 89.6514C34.9506 90.028 34.8745 90.3687 34.7221 90.6733C34.5698 90.978 34.3518 91.2383 34.0683 91.4541C33.7848 91.6699 33.4441 91.8371 33.0463 91.9556C32.6528 92.0698 32.2127 92.127 31.726 92.127C31.2986 92.127 30.8775 92.0677 30.4628 91.9492C30.0524 91.8307 29.6778 91.653 29.3393 91.416C29.005 91.179 28.7363 90.887 28.5331 90.54C28.3343 90.1888 28.2348 89.7826 28.2348 89.3213H29.4536C29.4536 89.6387 29.5149 89.9116 29.6376 90.1401C29.7604 90.3644 29.9275 90.5506 30.1391 90.6987C30.3549 90.8468 30.5983 90.9569 30.8691 91.0288C31.1442 91.0965 31.4298 91.1304 31.726 91.1304C32.1534 91.1304 32.5152 91.0711 32.8115 90.9526C33.1077 90.8341 33.332 90.6649 33.4843 90.4448C33.6409 90.2248 33.7192 89.9645 33.7192 89.6641ZM40.5366 90.4131V85.1318H41.7172V92H40.5937L40.5366 90.4131ZM40.7587 88.9658L41.2475 88.9531C41.2475 89.4102 41.1988 89.8333 41.1015 90.2227C41.0084 90.6077 40.8561 90.9421 40.6445 91.2256C40.4329 91.5091 40.1557 91.7313 39.8129 91.8921C39.4702 92.0487 39.0533 92.127 38.5624 92.127C38.2281 92.127 37.9213 92.0783 37.642 91.981C37.367 91.8836 37.13 91.7334 36.9311 91.5303C36.7322 91.3271 36.5777 91.0627 36.4677 90.7368C36.3619 90.411 36.309 90.0195 36.309 89.5625V85.1318H37.4833V89.5752C37.4833 89.8841 37.5172 90.1401 37.5849 90.3433C37.6568 90.5422 37.7521 90.7008 37.8706 90.8193C37.9933 90.9336 38.1287 91.014 38.2768 91.0605C38.4291 91.1071 38.5857 91.1304 38.7465 91.1304C39.2459 91.1304 39.6415 91.0352 39.9335 90.8447C40.2255 90.6501 40.435 90.3898 40.562 90.064C40.6931 89.7339 40.7587 89.3678 40.7587 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M86.7169 82.7578V92H85.5108V82.7578H86.7169ZM89.6876 82.7578V83.7607H82.5465V82.7578H89.6876ZM94.4737 90.4131V85.1318H95.6544V92H94.5308L94.4737 90.4131ZM94.6959 88.9658L95.1846 88.9531C95.1846 89.4102 95.136 89.8333 95.0386 90.2227C94.9455 90.6077 94.7932 90.9421 94.5816 91.2256C94.37 91.5091 94.0928 91.7313 93.7501 91.8921C93.4073 92.0487 92.9905 92.127 92.4996 92.127C92.1653 92.127 91.8585 92.0783 91.5792 91.981C91.3041 91.8836 91.0671 91.7334 90.8682 91.5303C90.6693 91.3271 90.5149 91.0627 90.4049 90.7368C90.2991 90.411 90.2462 90.0195 90.2462 89.5625V85.1318H91.4205V89.5752C91.4205 89.8841 91.4543 90.1401 91.522 90.3433C91.594 90.5422 91.6892 90.7008 91.8077 90.8193C91.9304 90.9336 92.0658 91.014 92.2139 91.0605C92.3663 91.1071 92.5229 91.1304 92.6837 91.1304C93.183 91.1304 93.5787 91.0352 93.8707 90.8447C94.1627 90.6501 94.3721 90.3898 94.4991 90.064C94.6303 89.7339 94.6959 89.3678 94.6959 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M140.637 82.7578V92H139.431V82.7578H140.637ZM143.608 82.7578V83.7607H136.467V82.7578H143.608ZM145.976 82.25V92H144.801V82.25H145.976ZM145.696 88.3057L145.208 88.2866C145.212 87.8169 145.282 87.3831 145.417 86.9854C145.553 86.5833 145.743 86.2342 145.988 85.938C146.234 85.6418 146.526 85.4132 146.864 85.2524C147.207 85.0874 147.586 85.0049 148.001 85.0049C148.339 85.0049 148.644 85.0514 148.915 85.1445C149.186 85.2334 149.416 85.3773 149.607 85.5762C149.801 85.7751 149.949 86.0332 150.051 86.3506C150.153 86.6637 150.203 87.0467 150.203 87.4995V92H149.023V87.4868C149.023 87.1271 148.97 86.8394 148.864 86.6235C148.758 86.4035 148.604 86.2448 148.401 86.1475C148.197 86.0459 147.948 85.9951 147.652 85.9951C147.36 85.9951 147.093 86.0565 146.852 86.1792C146.615 86.3019 146.41 86.4712 146.236 86.687C146.067 86.9028 145.933 87.1504 145.836 87.4297C145.743 87.7048 145.696 87.9967 145.696 88.3057Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M196.437 89.6641C196.437 89.4482 196.403 89.2578 196.335 89.0928C196.272 88.9235 196.158 88.7712 195.992 88.6357C195.832 88.5003 195.607 88.3713 195.32 88.2485C195.036 88.1258 194.676 88.001 194.241 87.874C193.784 87.7386 193.371 87.5884 193.003 87.4233C192.635 87.2541 192.319 87.0615 192.057 86.8457C191.795 86.6299 191.594 86.3823 191.454 86.103C191.314 85.8237 191.244 85.5042 191.244 85.1445C191.244 84.7848 191.319 84.4526 191.467 84.1479C191.615 83.8433 191.826 83.5788 192.101 83.3545C192.381 83.126 192.713 82.9482 193.098 82.8213C193.483 82.6943 193.913 82.6309 194.387 82.6309C195.081 82.6309 195.669 82.7642 196.151 83.0308C196.638 83.2931 197.008 83.638 197.262 84.0654C197.516 84.4886 197.643 84.9414 197.643 85.4238H196.424C196.424 85.0768 196.35 84.77 196.202 84.5034C196.054 84.2326 195.83 84.021 195.529 83.8687C195.229 83.7121 194.848 83.6338 194.387 83.6338C193.951 83.6338 193.591 83.6994 193.307 83.8306C193.024 83.9618 192.812 84.1395 192.673 84.3638C192.537 84.5881 192.47 84.8441 192.47 85.1318C192.47 85.3265 192.51 85.5042 192.59 85.665C192.675 85.8216 192.804 85.9676 192.977 86.103C193.155 86.2384 193.379 86.3633 193.65 86.4775C193.925 86.5918 194.253 86.7018 194.634 86.8076C195.159 86.9557 195.612 87.1208 195.992 87.3027C196.373 87.4847 196.687 87.6899 196.932 87.9185C197.182 88.1427 197.366 88.3988 197.484 88.6865C197.607 88.9701 197.668 89.2917 197.668 89.6514C197.668 90.028 197.592 90.3687 197.44 90.6733C197.287 90.978 197.069 91.2383 196.786 91.4541C196.502 91.6699 196.162 91.8371 195.764 91.9556C195.37 92.0698 194.93 92.127 194.444 92.127C194.016 92.127 193.595 92.0677 193.18 91.9492C192.77 91.8307 192.395 91.653 192.057 91.416C191.723 91.179 191.454 90.887 191.251 90.54C191.052 90.1888 190.952 89.7826 190.952 89.3213H192.171C192.171 89.6387 192.233 89.9116 192.355 90.1401C192.478 90.3644 192.645 90.5506 192.857 90.6987C193.073 90.8468 193.316 90.9569 193.587 91.0288C193.862 91.0965 194.147 91.1304 194.444 91.1304C194.871 91.1304 195.233 91.0711 195.529 90.9526C195.825 90.8341 196.05 90.6649 196.202 90.4448C196.359 90.2248 196.437 89.9645 196.437 89.6641ZM203.102 90.8257V87.29C203.102 87.0192 203.047 86.7843 202.937 86.5854C202.831 86.3823 202.67 86.2257 202.454 86.1157C202.239 86.0057 201.972 85.9507 201.655 85.9507C201.358 85.9507 201.098 86.0015 200.874 86.103C200.654 86.2046 200.48 86.3379 200.353 86.5029C200.231 86.668 200.169 86.8457 200.169 87.0361H198.995C198.995 86.7907 199.058 86.5474 199.185 86.3062C199.312 86.0649 199.494 85.847 199.731 85.6523C199.972 85.4535 200.26 85.2969 200.595 85.1826C200.933 85.0641 201.31 85.0049 201.724 85.0049C202.224 85.0049 202.664 85.0895 203.045 85.2588C203.43 85.4281 203.73 85.6841 203.946 86.0269C204.166 86.3654 204.276 86.7907 204.276 87.3027V90.502C204.276 90.7305 204.295 90.9738 204.333 91.2319C204.376 91.4901 204.437 91.7122 204.517 91.8984V92H203.292C203.233 91.8646 203.187 91.6847 203.153 91.4604C203.119 91.2319 203.102 91.0203 203.102 90.8257ZM203.305 87.8359L203.318 88.6611H202.131C201.796 88.6611 201.498 88.6886 201.236 88.7437C200.973 88.7944 200.753 88.8727 200.576 88.9785C200.398 89.0843 200.262 89.2176 200.169 89.3784C200.076 89.535 200.03 89.7191 200.03 89.9307C200.03 90.1465 200.078 90.3433 200.176 90.521C200.273 90.6987 200.419 90.8405 200.614 90.9463C200.812 91.0479 201.056 91.0986 201.344 91.0986C201.703 91.0986 202.021 91.0225 202.296 90.8701C202.571 90.7178 202.789 90.5316 202.95 90.3115C203.115 90.0915 203.203 89.8778 203.216 89.6704L203.718 90.2354C203.688 90.4131 203.608 90.6099 203.476 90.8257C203.345 91.0415 203.17 91.2489 202.95 91.4478C202.734 91.6424 202.476 91.8053 202.175 91.9365C201.879 92.0635 201.545 92.127 201.172 92.127C200.707 92.127 200.298 92.036 199.947 91.854C199.6 91.672 199.329 91.4287 199.135 91.124C198.944 90.8151 198.849 90.4702 198.849 90.0894C198.849 89.7212 198.921 89.3975 199.065 89.1182C199.209 88.8346 199.416 88.5998 199.687 88.4136C199.958 88.2231 200.284 88.0793 200.664 87.9819C201.045 87.8846 201.471 87.8359 201.94 87.8359H203.305Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M54.3552 82.7578H55.5422L58.57 90.2925L61.5915 82.7578H62.7849L59.027 92H58.1003L54.3552 82.7578ZM53.968 82.7578H55.0153L55.1867 88.3945V92H53.968V82.7578ZM62.1184 82.7578H63.1657V92H61.947V88.3945L62.1184 82.7578ZM64.8288 88.6421V88.4961C64.8288 88.001 64.9007 87.5418 65.0446 87.1187C65.1885 86.6912 65.3959 86.321 65.6667 86.0078C65.9375 85.6904 66.2655 85.445 66.6506 85.2715C67.0357 85.0938 67.4673 85.0049 67.9455 85.0049C68.4279 85.0049 68.8617 85.0938 69.2468 85.2715C69.6361 85.445 69.9662 85.6904 70.237 86.0078C70.5121 86.321 70.7215 86.6912 70.8654 87.1187C71.0093 87.5418 71.0812 88.001 71.0812 88.4961V88.6421C71.0812 89.1372 71.0093 89.5964 70.8654 90.0195C70.7215 90.4427 70.5121 90.813 70.237 91.1304C69.9662 91.4435 69.6382 91.689 69.2531 91.8667C68.8723 92.0402 68.4406 92.127 67.9582 92.127C67.4758 92.127 67.042 92.0402 66.6569 91.8667C66.2718 91.689 65.9418 91.4435 65.6667 91.1304C65.3959 90.813 65.1885 90.4427 65.0446 90.0195C64.9007 89.5964 64.8288 89.1372 64.8288 88.6421ZM66.0031 88.4961V88.6421C66.0031 88.9849 66.0433 89.3086 66.1237 89.6133C66.2041 89.9137 66.3247 90.1803 66.4855 90.4131C66.6506 90.6458 66.8558 90.8299 67.1013 90.9653C67.3467 91.0965 67.6324 91.1621 67.9582 91.1621C68.2798 91.1621 68.5612 91.0965 68.8024 90.9653C69.0479 90.8299 69.251 90.6458 69.4118 90.4131C69.5726 90.1803 69.6932 89.9137 69.7736 89.6133C69.8583 89.3086 69.9006 88.9849 69.9006 88.6421V88.4961C69.9006 88.1576 69.8583 87.8381 69.7736 87.5376C69.6932 87.2329 69.5705 86.9642 69.4055 86.7314C69.2447 86.4945 69.0415 86.3083 68.7961 86.1729C68.5549 86.0374 68.2713 85.9697 67.9455 85.9697C67.6239 85.9697 67.3404 86.0374 67.0949 86.1729C66.8537 86.3083 66.6506 86.4945 66.4855 86.7314C66.3247 86.9642 66.2041 87.2329 66.1237 87.5376C66.0433 87.8381 66.0031 88.1576 66.0031 88.4961Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M110.886 89.207L112.721 82.7578H113.609L113.095 85.2651L111.121 92H110.239L110.886 89.207ZM108.988 82.7578L110.448 89.0801L110.886 92H110.01L107.769 82.7578H108.988ZM115.983 89.0737L117.411 82.7578H118.637L116.402 92H115.526L115.983 89.0737ZM113.742 82.7578L115.526 89.207L116.174 92H115.291L113.387 85.2651L112.867 82.7578H113.742ZM122.464 92.127C121.986 92.127 121.552 92.0465 121.163 91.8857C120.778 91.7207 120.446 91.4901 120.166 91.1938C119.891 90.8976 119.68 90.5464 119.532 90.1401C119.383 89.7339 119.309 89.2896 119.309 88.8071V88.5405C119.309 87.9819 119.392 87.4847 119.557 87.0488C119.722 86.6087 119.946 86.2363 120.23 85.9316C120.513 85.627 120.835 85.3963 121.195 85.2397C121.554 85.0832 121.927 85.0049 122.312 85.0049C122.803 85.0049 123.226 85.0895 123.581 85.2588C123.941 85.4281 124.235 85.665 124.464 85.9697C124.692 86.2702 124.861 86.6257 124.972 87.0361C125.082 87.4424 125.137 87.8867 125.137 88.3691V88.896H120.008V87.9375H123.962V87.8486C123.945 87.5439 123.882 87.2477 123.772 86.96C123.666 86.6722 123.497 86.4352 123.264 86.249C123.031 86.0628 122.714 85.9697 122.312 85.9697C122.045 85.9697 121.8 86.0269 121.576 86.1411C121.351 86.2511 121.159 86.4162 120.998 86.6362C120.837 86.8563 120.712 87.125 120.623 87.4424C120.534 87.7598 120.49 88.1258 120.49 88.5405V88.8071C120.49 89.133 120.534 89.4398 120.623 89.7275C120.716 90.0111 120.85 90.2607 121.023 90.4766C121.201 90.6924 121.415 90.8617 121.664 90.9844C121.918 91.1071 122.206 91.1685 122.528 91.1685C122.942 91.1685 123.294 91.0838 123.581 90.9146C123.869 90.7453 124.121 90.5189 124.337 90.2354L125.048 90.8003C124.9 91.0246 124.711 91.2383 124.483 91.4414C124.254 91.6445 123.973 91.8096 123.638 91.9365C123.308 92.0635 122.917 92.127 122.464 92.127Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M167.305 82.7578V92H166.08V82.7578H167.305ZM171.177 86.9155V87.9185H167.038V86.9155H171.177ZM171.805 82.7578V83.7607H167.038V82.7578H171.805ZM174.097 86.2109V92H172.922V85.1318H174.065L174.097 86.2109ZM176.242 85.0938L176.236 86.1855C176.138 86.1644 176.045 86.1517 175.956 86.1475C175.872 86.139 175.775 86.1348 175.664 86.1348C175.394 86.1348 175.155 86.1771 174.947 86.2617C174.74 86.3464 174.564 86.4648 174.42 86.6172C174.276 86.7695 174.162 86.9515 174.078 87.1631C173.997 87.3704 173.944 87.599 173.919 87.8486L173.589 88.0391C173.589 87.6243 173.629 87.235 173.709 86.8711C173.794 86.5072 173.923 86.1855 174.097 85.9062C174.27 85.6227 174.49 85.4027 174.757 85.2461C175.028 85.0853 175.349 85.0049 175.722 85.0049C175.806 85.0049 175.904 85.0155 176.014 85.0366C176.124 85.0535 176.2 85.0726 176.242 85.0938Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"160.002",y:"100",width:"20.9999",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.6777 115.035V116H28.6284V115.156L31.6562 111.785C32.0286 111.37 32.3164 111.019 32.5195 110.731C32.7269 110.439 32.8707 110.179 32.9511 109.951C33.0358 109.718 33.0781 109.481 33.0781 109.24C33.0781 108.935 33.0146 108.66 32.8877 108.415C32.7649 108.165 32.583 107.966 32.3418 107.818C32.1006 107.67 31.8086 107.596 31.4658 107.596C31.0553 107.596 30.7125 107.676 30.4375 107.837C30.1666 107.993 29.9635 108.214 29.8281 108.497C29.6927 108.781 29.625 109.106 29.625 109.475H28.4507C28.4507 108.954 28.5649 108.478 28.7934 108.046C29.0219 107.615 29.3605 107.272 29.8091 107.018C30.2576 106.76 30.8099 106.631 31.4658 106.631C32.0498 106.631 32.5491 106.735 32.9638 106.942C33.3786 107.145 33.6959 107.433 33.916 107.805C34.1403 108.173 34.2524 108.605 34.2524 109.1C34.2524 109.371 34.2059 109.646 34.1128 109.925C34.0239 110.2 33.8991 110.475 33.7383 110.75C33.5817 111.026 33.3976 111.296 33.186 111.563C32.9786 111.83 32.7565 112.092 32.5195 112.35L30.0439 115.035H34.6777ZM41.7617 113.499C41.7617 114.062 41.6305 114.54 41.3681 114.934C41.11 115.323 40.7588 115.619 40.3144 115.822C39.8743 116.025 39.3771 116.127 38.8227 116.127C38.2684 116.127 37.769 116.025 37.3247 115.822C36.8803 115.619 36.5291 115.323 36.271 114.934C36.0128 114.54 35.8838 114.062 35.8838 113.499C35.8838 113.131 35.9536 112.794 36.0932 112.49C36.2371 112.181 36.4381 111.912 36.6963 111.684C36.9586 111.455 37.2675 111.279 37.623 111.157C37.9827 111.03 38.3784 110.966 38.81 110.966C39.3771 110.966 39.8828 111.076 40.3271 111.296C40.7715 111.512 41.1206 111.811 41.3745 112.191C41.6326 112.572 41.7617 113.008 41.7617 113.499ZM40.581 113.474C40.581 113.131 40.507 112.828 40.3589 112.566C40.2107 112.299 40.0034 112.092 39.7368 111.944C39.4702 111.796 39.1613 111.722 38.81 111.722C38.4503 111.722 38.1393 111.796 37.8769 111.944C37.6188 112.092 37.4178 112.299 37.2739 112.566C37.13 112.828 37.0581 113.131 37.0581 113.474C37.0581 113.829 37.1279 114.134 37.2675 114.388C37.4114 114.637 37.6146 114.83 37.8769 114.965C38.1435 115.097 38.4588 115.162 38.8227 115.162C39.1867 115.162 39.4998 115.097 39.7622 114.965C40.0245 114.83 40.2256 114.637 40.3652 114.388C40.5091 114.134 40.581 113.829 40.581 113.474ZM41.5459 109.164C41.5459 109.612 41.4274 110.016 41.1904 110.376C40.9534 110.736 40.6297 111.019 40.2192 111.227C39.8087 111.434 39.3432 111.538 38.8227 111.538C38.2938 111.538 37.8219 111.434 37.4072 111.227C36.9967 111.019 36.6751 110.736 36.4424 110.376C36.2096 110.016 36.0932 109.612 36.0932 109.164C36.0932 108.626 36.2096 108.169 36.4424 107.792C36.6793 107.416 37.0031 107.128 37.4135 106.929C37.824 106.73 38.2916 106.631 38.8164 106.631C39.3453 106.631 39.8151 106.73 40.2256 106.929C40.636 107.128 40.9577 107.416 41.1904 107.792C41.4274 108.169 41.5459 108.626 41.5459 109.164ZM40.3716 109.183C40.3716 108.874 40.306 108.601 40.1748 108.364C40.0436 108.127 39.8616 107.941 39.6289 107.805C39.3961 107.666 39.1253 107.596 38.8164 107.596C38.5075 107.596 38.2366 107.661 38.0039 107.792C37.7754 107.919 37.5955 108.101 37.4643 108.338C37.3374 108.575 37.2739 108.857 37.2739 109.183C37.2739 109.5 37.3374 109.777 37.4643 110.014C37.5955 110.251 37.7775 110.435 38.0102 110.566C38.243 110.698 38.5138 110.763 38.8227 110.763C39.1316 110.763 39.4004 110.698 39.6289 110.566C39.8616 110.435 40.0436 110.251 40.1748 110.014C40.306 109.777 40.3716 109.5 40.3716 109.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M92.5573 115.035V116H86.508V115.156L89.5359 111.785C89.9083 111.37 90.196 111.019 90.3991 110.731C90.6065 110.439 90.7504 110.179 90.8308 109.951C90.9154 109.718 90.9577 109.481 90.9577 109.24C90.9577 108.935 90.8943 108.66 90.7673 108.415C90.6446 108.165 90.4626 107.966 90.2214 107.818C89.9802 107.67 89.6882 107.596 89.3454 107.596C88.9349 107.596 88.5922 107.676 88.3171 107.837C88.0463 107.993 87.8432 108.214 87.7077 108.497C87.5723 108.781 87.5046 109.106 87.5046 109.475H86.3303C86.3303 108.954 86.4446 108.478 86.6731 108.046C86.9016 107.615 87.2401 107.272 87.6887 107.018C88.1373 106.76 88.6895 106.631 89.3454 106.631C89.9294 106.631 90.4288 106.735 90.8435 106.942C91.2582 107.145 91.5756 107.433 91.7956 107.805C92.0199 108.173 92.1321 108.605 92.1321 109.1C92.1321 109.371 92.0855 109.646 91.9924 109.925C91.9035 110.2 91.7787 110.475 91.6179 110.75C91.4613 111.026 91.2772 111.296 91.0656 111.563C90.8583 111.83 90.6361 112.092 90.3991 112.35L87.9236 115.035H92.5573Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M146.97 112.89V113.854H140.292V113.163L144.431 106.758H145.389L144.361 108.611L141.625 112.89H146.97ZM145.681 106.758V116H144.507V106.758H145.681Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M199.452 106.745H199.554V107.742H199.452C198.83 107.742 198.309 107.843 197.89 108.046C197.472 108.245 197.139 108.514 196.894 108.853C196.648 109.187 196.471 109.563 196.361 109.982C196.255 110.401 196.202 110.827 196.202 111.258V112.617C196.202 113.027 196.251 113.391 196.348 113.708C196.445 114.022 196.579 114.286 196.748 114.502C196.917 114.718 197.108 114.881 197.319 114.991C197.535 115.101 197.759 115.156 197.992 115.156C198.263 115.156 198.504 115.105 198.716 115.003C198.927 114.898 199.105 114.752 199.249 114.565C199.397 114.375 199.509 114.151 199.585 113.893C199.661 113.634 199.7 113.351 199.7 113.042C199.7 112.767 199.666 112.502 199.598 112.249C199.53 111.99 199.427 111.762 199.287 111.563C199.147 111.36 198.972 111.201 198.76 111.087C198.553 110.968 198.305 110.909 198.017 110.909C197.692 110.909 197.387 110.99 197.103 111.15C196.824 111.307 196.593 111.514 196.411 111.772C196.234 112.026 196.132 112.304 196.107 112.604L195.485 112.598C195.544 112.124 195.654 111.72 195.815 111.385C195.98 111.047 196.183 110.772 196.424 110.56C196.67 110.344 196.943 110.188 197.243 110.09C197.548 109.989 197.869 109.938 198.208 109.938C198.669 109.938 199.067 110.025 199.401 110.198C199.736 110.372 200.011 110.604 200.226 110.896C200.442 111.184 200.601 111.51 200.702 111.874C200.808 112.234 200.861 112.604 200.861 112.985C200.861 113.421 200.8 113.829 200.677 114.21C200.554 114.591 200.37 114.925 200.125 115.213C199.884 115.501 199.585 115.725 199.23 115.886C198.874 116.047 198.462 116.127 197.992 116.127C197.493 116.127 197.057 116.025 196.684 115.822C196.312 115.615 196.003 115.34 195.758 114.997C195.512 114.654 195.328 114.273 195.205 113.854C195.083 113.436 195.021 113.01 195.021 112.579V112.026C195.021 111.375 195.087 110.736 195.218 110.109C195.349 109.483 195.576 108.916 195.897 108.408C196.223 107.9 196.674 107.496 197.249 107.196C197.825 106.895 198.559 106.745 199.452 106.745Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M63.2484 106.707V116H62.0741V108.173L59.7064 109.037V107.977L63.0643 106.707H63.2484Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M115.324 110.801H116.162C116.573 110.801 116.911 110.734 117.178 110.598C117.449 110.458 117.65 110.27 117.781 110.033C117.916 109.792 117.984 109.521 117.984 109.221C117.984 108.865 117.925 108.567 117.806 108.326C117.688 108.084 117.51 107.903 117.273 107.78C117.036 107.657 116.735 107.596 116.372 107.596C116.041 107.596 115.749 107.661 115.496 107.792C115.246 107.919 115.049 108.101 114.905 108.338C114.766 108.575 114.696 108.855 114.696 109.176H113.521C113.521 108.707 113.64 108.279 113.877 107.894C114.114 107.509 114.446 107.202 114.874 106.974C115.305 106.745 115.804 106.631 116.372 106.631C116.93 106.631 117.419 106.73 117.838 106.929C118.257 107.124 118.583 107.416 118.815 107.805C119.048 108.19 119.165 108.671 119.165 109.246C119.165 109.479 119.11 109.729 118.999 109.995C118.894 110.257 118.727 110.503 118.498 110.731C118.274 110.96 117.982 111.148 117.622 111.296C117.262 111.44 116.831 111.512 116.327 111.512H115.324V110.801ZM115.324 111.766V111.062H116.327C116.915 111.062 117.402 111.131 117.787 111.271C118.172 111.411 118.475 111.597 118.695 111.83C118.919 112.062 119.076 112.318 119.165 112.598C119.258 112.873 119.304 113.148 119.304 113.423C119.304 113.854 119.23 114.237 119.082 114.572C118.938 114.906 118.733 115.19 118.466 115.422C118.204 115.655 117.895 115.831 117.54 115.949C117.184 116.068 116.797 116.127 116.378 116.127C115.976 116.127 115.597 116.07 115.242 115.956C114.89 115.841 114.579 115.676 114.309 115.46C114.038 115.24 113.826 114.972 113.674 114.654C113.521 114.333 113.445 113.967 113.445 113.556H114.62C114.62 113.878 114.689 114.159 114.829 114.4C114.973 114.642 115.176 114.83 115.438 114.965C115.705 115.097 116.018 115.162 116.378 115.162C116.738 115.162 117.047 115.101 117.305 114.978C117.567 114.851 117.768 114.661 117.908 114.407C118.052 114.153 118.124 113.833 118.124 113.448C118.124 113.063 118.043 112.748 117.882 112.502C117.721 112.253 117.493 112.069 117.197 111.95C116.905 111.827 116.56 111.766 116.162 111.766H115.324Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M169.344 111.792L167.884 111.442L168.411 106.758H173.603V108.237H169.915L169.687 110.287C169.81 110.215 169.996 110.139 170.246 110.059C170.495 109.974 170.775 109.932 171.083 109.932C171.532 109.932 171.93 110.001 172.277 110.141C172.624 110.281 172.918 110.484 173.159 110.75C173.405 111.017 173.591 111.343 173.718 111.728C173.845 112.113 173.908 112.549 173.908 113.036C173.908 113.446 173.845 113.838 173.718 114.21C173.591 114.578 173.398 114.908 173.14 115.2C172.882 115.488 172.558 115.714 172.169 115.879C171.78 116.044 171.318 116.127 170.785 116.127C170.387 116.127 170.002 116.068 169.63 115.949C169.262 115.831 168.929 115.655 168.633 115.422C168.341 115.19 168.106 114.908 167.929 114.578C167.755 114.244 167.664 113.863 167.656 113.436H169.471C169.497 113.698 169.564 113.924 169.674 114.115C169.789 114.301 169.939 114.445 170.125 114.546C170.311 114.648 170.529 114.699 170.779 114.699C171.012 114.699 171.21 114.654 171.375 114.565C171.54 114.477 171.674 114.354 171.775 114.197C171.877 114.036 171.951 113.85 171.998 113.639C172.048 113.423 172.074 113.19 172.074 112.94C172.074 112.691 172.044 112.464 171.985 112.261C171.926 112.058 171.835 111.882 171.712 111.734C171.589 111.586 171.433 111.472 171.242 111.392C171.056 111.311 170.838 111.271 170.588 111.271C170.25 111.271 169.987 111.324 169.801 111.43C169.619 111.535 169.467 111.656 169.344 111.792Z",fill:"white"}),(0,h.createElement)("path",{d:"M38.2515 131.758V132.418L34.4238 141H33.186L37.0073 132.723H32.0054V131.758H38.2515Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M87.6686 140.016H87.7892C88.4663 140.016 89.0164 139.921 89.4396 139.73C89.8628 139.54 90.1886 139.284 90.4171 138.962C90.6456 138.641 90.8022 138.279 90.8868 137.877C90.9715 137.471 91.0138 137.054 91.0138 136.626V135.211C91.0138 134.792 90.9651 134.42 90.8678 134.094C90.7747 133.768 90.6435 133.495 90.4742 133.275C90.3092 133.055 90.1209 132.888 89.9093 132.773C89.6977 132.659 89.4734 132.602 89.2365 132.602C88.9656 132.602 88.7223 132.657 88.5065 132.767C88.2949 132.873 88.115 133.023 87.9669 133.218C87.823 133.412 87.713 133.641 87.6368 133.903C87.5607 134.166 87.5226 134.451 87.5226 134.76C87.5226 135.035 87.5564 135.302 87.6241 135.56C87.6919 135.818 87.7955 136.051 87.9352 136.258C88.0748 136.466 88.2483 136.631 88.4557 136.753C88.6673 136.872 88.9148 136.931 89.1984 136.931C89.4607 136.931 89.7062 136.88 89.9347 136.779C90.1674 136.673 90.3727 136.531 90.5504 136.354C90.7324 136.172 90.8763 135.966 90.9821 135.738C91.0921 135.509 91.1556 135.27 91.1725 135.021H91.7311C91.7311 135.372 91.6613 135.719 91.5216 136.062C91.3862 136.4 91.1958 136.709 90.9503 136.988C90.7049 137.268 90.4171 137.492 90.087 137.661C89.757 137.826 89.3973 137.909 89.0079 137.909C88.5509 137.909 88.1552 137.82 87.8209 137.642C87.4866 137.464 87.2115 137.227 86.9957 136.931C86.7841 136.635 86.6254 136.305 86.5197 135.941C86.4181 135.573 86.3673 135.2 86.3673 134.824C86.3673 134.384 86.4287 133.971 86.5514 133.586C86.6741 133.201 86.8561 132.862 87.0973 132.57C87.3385 132.274 87.6368 132.043 87.9923 131.878C88.352 131.713 88.7667 131.631 89.2365 131.631C89.7654 131.631 90.2161 131.737 90.5885 131.948C90.9609 132.16 91.2635 132.443 91.4962 132.799C91.7332 133.154 91.9067 133.554 92.0167 133.999C92.1268 134.443 92.1818 134.9 92.1818 135.37V135.795C92.1818 136.273 92.15 136.76 92.0865 137.255C92.0273 137.746 91.9109 138.215 91.7374 138.664C91.5682 139.113 91.3206 139.515 90.9948 139.87C90.6689 140.221 90.2436 140.501 89.7189 140.708C89.1984 140.911 88.5551 141.013 87.7892 141.013H87.6686V140.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M140.923 131.707V141H139.749V133.173L137.381 134.037V132.977L140.739 131.707H140.923ZM148.236 131.707V141H147.061V133.173L144.694 134.037V132.977L148.052 131.707H148.236Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M195.148 131.707V141H193.974V133.173L191.606 134.037V132.977L194.964 131.707H195.148ZM200.315 135.801H201.153C201.564 135.801 201.902 135.734 202.169 135.598C202.44 135.458 202.641 135.27 202.772 135.033C202.907 134.792 202.975 134.521 202.975 134.221C202.975 133.865 202.916 133.567 202.797 133.326C202.679 133.084 202.501 132.903 202.264 132.78C202.027 132.657 201.727 132.596 201.363 132.596C201.033 132.596 200.741 132.661 200.487 132.792C200.237 132.919 200.04 133.101 199.896 133.338C199.757 133.575 199.687 133.855 199.687 134.176H198.513C198.513 133.707 198.631 133.279 198.868 132.894C199.105 132.509 199.437 132.202 199.865 131.974C200.296 131.745 200.796 131.631 201.363 131.631C201.921 131.631 202.41 131.73 202.829 131.929C203.248 132.124 203.574 132.416 203.807 132.805C204.039 133.19 204.156 133.671 204.156 134.246C204.156 134.479 204.101 134.729 203.991 134.995C203.885 135.257 203.718 135.503 203.489 135.731C203.265 135.96 202.973 136.148 202.613 136.296C202.254 136.44 201.822 136.512 201.318 136.512H200.315V135.801ZM200.315 136.766V136.062H201.318C201.907 136.062 202.393 136.131 202.778 136.271C203.163 136.411 203.466 136.597 203.686 136.83C203.91 137.062 204.067 137.318 204.156 137.598C204.249 137.873 204.295 138.148 204.295 138.423C204.295 138.854 204.221 139.237 204.073 139.572C203.929 139.906 203.724 140.19 203.458 140.422C203.195 140.655 202.886 140.831 202.531 140.949C202.175 141.068 201.788 141.127 201.369 141.127C200.967 141.127 200.588 141.07 200.233 140.956C199.882 140.841 199.571 140.676 199.3 140.46C199.029 140.24 198.817 139.972 198.665 139.654C198.513 139.333 198.437 138.967 198.437 138.556H199.611C199.611 138.878 199.681 139.159 199.82 139.4C199.964 139.642 200.167 139.83 200.43 139.965C200.696 140.097 201.009 140.162 201.369 140.162C201.729 140.162 202.038 140.101 202.296 139.978C202.558 139.851 202.759 139.661 202.899 139.407C203.043 139.153 203.115 138.833 203.115 138.448C203.115 138.063 203.034 137.748 202.874 137.502C202.713 137.253 202.484 137.069 202.188 136.95C201.896 136.827 201.551 136.766 201.153 136.766H200.315Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M65.2155 138.499C65.2155 139.062 65.0843 139.54 64.8219 139.934C64.5638 140.323 64.2125 140.619 63.7682 140.822C63.3281 141.025 62.8309 141.127 62.2765 141.127C61.7221 141.127 61.2228 141.025 60.7784 140.822C60.3341 140.619 59.9829 140.323 59.7247 139.934C59.4666 139.54 59.3375 139.062 59.3375 138.499C59.3375 138.131 59.4074 137.794 59.547 137.49C59.6909 137.181 59.8919 136.912 60.15 136.684C60.4124 136.455 60.7213 136.279 61.0768 136.157C61.4365 136.03 61.8322 135.966 62.2638 135.966C62.8309 135.966 63.3365 136.076 63.7809 136.296C64.2252 136.512 64.5743 136.811 64.8282 137.191C65.0864 137.572 65.2155 138.008 65.2155 138.499ZM64.0348 138.474C64.0348 138.131 63.9607 137.828 63.8126 137.566C63.6645 137.299 63.4572 137.092 63.1906 136.944C62.924 136.796 62.615 136.722 62.2638 136.722C61.9041 136.722 61.5931 136.796 61.3307 136.944C61.0726 137.092 60.8715 137.299 60.7277 137.566C60.5838 137.828 60.5118 138.131 60.5118 138.474C60.5118 138.829 60.5817 139.134 60.7213 139.388C60.8652 139.637 61.0683 139.83 61.3307 139.965C61.5973 140.097 61.9126 140.162 62.2765 140.162C62.6404 140.162 62.9536 140.097 63.2159 139.965C63.4783 139.83 63.6793 139.637 63.819 139.388C63.9629 139.134 64.0348 138.829 64.0348 138.474ZM64.9996 134.164C64.9996 134.612 64.8811 135.016 64.6442 135.376C64.4072 135.736 64.0835 136.019 63.673 136.227C63.2625 136.434 62.797 136.538 62.2765 136.538C61.7475 136.538 61.2757 136.434 60.861 136.227C60.4505 136.019 60.1289 135.736 59.8961 135.376C59.6634 135.016 59.547 134.612 59.547 134.164C59.547 133.626 59.6634 133.169 59.8961 132.792C60.1331 132.416 60.4568 132.128 60.8673 131.929C61.2778 131.73 61.7454 131.631 62.2701 131.631C62.7991 131.631 63.2688 131.73 63.6793 131.929C64.0898 132.128 64.4114 132.416 64.6442 132.792C64.8811 133.169 64.9996 133.626 64.9996 134.164ZM63.8253 134.183C63.8253 133.874 63.7597 133.601 63.6285 133.364C63.4974 133.127 63.3154 132.941 63.0826 132.805C62.8499 132.666 62.5791 132.596 62.2701 132.596C61.9612 132.596 61.6904 132.661 61.4576 132.792C61.2291 132.919 61.0493 133.101 60.9181 133.338C60.7911 133.575 60.7277 133.857 60.7277 134.183C60.7277 134.5 60.7911 134.777 60.9181 135.014C61.0493 135.251 61.2312 135.435 61.464 135.566C61.6967 135.698 61.9676 135.763 62.2765 135.763C62.5854 135.763 62.8541 135.698 63.0826 135.566C63.3154 135.435 63.4974 135.251 63.6285 135.014C63.7597 134.777 63.8253 134.5 63.8253 134.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M113.813 131.707V141H112.638V133.173L110.271 134.037V132.977L113.628 131.707H113.813ZM123.067 135.643V137.052C123.067 137.809 123 138.448 122.864 138.969C122.729 139.489 122.534 139.908 122.28 140.226C122.026 140.543 121.72 140.774 121.36 140.917C121.004 141.057 120.602 141.127 120.154 141.127C119.798 141.127 119.47 141.083 119.17 140.994C118.869 140.905 118.599 140.763 118.357 140.568C118.12 140.369 117.917 140.111 117.748 139.794C117.579 139.477 117.45 139.091 117.361 138.639C117.272 138.186 117.228 137.657 117.228 137.052V135.643C117.228 134.885 117.295 134.25 117.431 133.738C117.57 133.226 117.767 132.816 118.021 132.507C118.275 132.194 118.58 131.969 118.935 131.834C119.295 131.699 119.697 131.631 120.141 131.631C120.501 131.631 120.831 131.675 121.131 131.764C121.436 131.849 121.707 131.986 121.944 132.177C122.181 132.363 122.382 132.613 122.547 132.926C122.716 133.235 122.845 133.613 122.934 134.062C123.023 134.511 123.067 135.037 123.067 135.643ZM121.887 137.242V135.446C121.887 135.031 121.861 134.667 121.811 134.354C121.764 134.037 121.694 133.766 121.601 133.542C121.508 133.317 121.389 133.135 121.246 132.996C121.106 132.856 120.943 132.754 120.757 132.691C120.575 132.623 120.37 132.589 120.141 132.589C119.862 132.589 119.614 132.642 119.398 132.748C119.183 132.85 119.001 133.013 118.853 133.237C118.709 133.461 118.599 133.755 118.522 134.119C118.446 134.483 118.408 134.925 118.408 135.446V137.242C118.408 137.657 118.431 138.023 118.478 138.34C118.529 138.658 118.603 138.933 118.7 139.166C118.798 139.394 118.916 139.582 119.056 139.73C119.195 139.879 119.356 139.989 119.538 140.061C119.724 140.128 119.93 140.162 120.154 140.162C120.442 140.162 120.693 140.107 120.909 139.997C121.125 139.887 121.305 139.716 121.449 139.483C121.597 139.246 121.707 138.943 121.779 138.575C121.851 138.203 121.887 137.758 121.887 137.242Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M168.036 131.707V141H166.861V133.173L164.494 134.037V132.977L167.852 131.707H168.036ZM177.545 140.035V141H171.495V140.156L174.523 136.785C174.895 136.37 175.183 136.019 175.386 135.731C175.594 135.439 175.738 135.179 175.818 134.951C175.903 134.718 175.945 134.481 175.945 134.24C175.945 133.935 175.881 133.66 175.755 133.415C175.632 133.165 175.45 132.966 175.209 132.818C174.967 132.67 174.675 132.596 174.333 132.596C173.922 132.596 173.579 132.676 173.304 132.837C173.033 132.993 172.83 133.214 172.695 133.497C172.56 133.781 172.492 134.106 172.492 134.475H171.318C171.318 133.954 171.432 133.478 171.66 133.046C171.889 132.615 172.227 132.272 172.676 132.018C173.124 131.76 173.677 131.631 174.333 131.631C174.917 131.631 175.416 131.735 175.831 131.942C176.245 132.145 176.563 132.433 176.783 132.805C177.007 133.173 177.119 133.605 177.119 134.1C177.119 134.371 177.073 134.646 176.98 134.925C176.891 135.2 176.766 135.475 176.605 135.75C176.449 136.026 176.264 136.296 176.053 136.563C175.846 136.83 175.623 137.092 175.386 137.35L172.911 140.035H177.545Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"223",y:"55",width:"23.5",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M232.376 60.7388V70H230.548V62.8462L228.352 63.5444V62.1035L232.179 60.7388H232.376ZM239.841 60.7388V70H238.013V62.8462L235.816 63.5444V62.1035L239.644 60.7388H239.841Z",fill:"white"}),(0,h.createElement)("rect",{x:"249.5",y:"55",width:"23.5",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M260.742 68.5718V70H254.42V68.7812L257.41 65.5757C257.71 65.2414 257.947 64.9473 258.121 64.6934C258.294 64.4352 258.419 64.2046 258.495 64.0015C258.576 63.7941 258.616 63.5973 258.616 63.4111C258.616 63.1318 258.569 62.8927 258.476 62.6938C258.383 62.4907 258.245 62.3341 258.063 62.2241C257.886 62.1141 257.666 62.0591 257.403 62.0591C257.124 62.0591 256.883 62.1268 256.68 62.2622C256.481 62.3976 256.328 62.5859 256.223 62.8271C256.121 63.0684 256.07 63.3413 256.07 63.646H254.236C254.236 63.0959 254.367 62.5923 254.629 62.1353C254.892 61.674 255.262 61.3079 255.74 61.0371C256.218 60.762 256.785 60.6245 257.441 60.6245C258.089 60.6245 258.635 60.7303 259.079 60.9419C259.528 61.1493 259.866 61.4497 260.095 61.8433C260.327 62.2326 260.444 62.6981 260.444 63.2397C260.444 63.5444 260.395 63.8428 260.298 64.1348C260.201 64.4225 260.061 64.7103 259.879 64.998C259.701 65.2816 259.485 65.5693 259.231 65.8613C258.978 66.1533 258.696 66.4559 258.387 66.769L256.781 68.5718H260.742ZM268.163 60.7578V61.7417L264.589 70H262.659L266.233 62.186H261.631V60.7578H268.163Z",fill:"white"}),(0,h.createElement)("path",{d:"M232.065 86.707V96H230.891V88.1733L228.523 89.0366V87.9766L231.881 86.707H232.065ZM241.574 95.0352V96H235.524V95.1558L238.552 91.7852C238.925 91.3704 239.212 91.0192 239.416 90.7314C239.623 90.4395 239.767 90.1792 239.847 89.9507C239.932 89.7179 239.974 89.481 239.974 89.2397C239.974 88.9351 239.911 88.66 239.784 88.4146C239.661 88.1649 239.479 87.966 239.238 87.8179C238.997 87.6698 238.705 87.5957 238.362 87.5957C237.951 87.5957 237.609 87.6761 237.333 87.8369C237.063 87.9935 236.86 88.2135 236.724 88.4971C236.589 88.7806 236.521 89.1064 236.521 89.4746H235.347C235.347 88.9541 235.461 88.478 235.689 88.0464C235.918 87.6147 236.257 87.272 236.705 87.0181C237.154 86.7599 237.706 86.6309 238.362 86.6309C238.946 86.6309 239.445 86.7345 239.86 86.9419C240.275 87.145 240.592 87.4328 240.812 87.8052C241.036 88.1733 241.148 88.605 241.148 89.1001C241.148 89.3709 241.102 89.646 241.009 89.9253C240.92 90.2004 240.795 90.4754 240.634 90.7505C240.478 91.0256 240.294 91.2964 240.082 91.563C239.875 91.8296 239.653 92.092 239.416 92.3501L236.94 95.0352H241.574Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.761 95.0352V96H254.712V95.1558L257.74 91.7852C258.112 91.3704 258.4 91.0192 258.603 90.7314C258.81 90.4395 258.954 90.1792 259.035 89.9507C259.119 89.7179 259.162 89.481 259.162 89.2397C259.162 88.9351 259.098 88.66 258.971 88.4146C258.848 88.1649 258.667 87.966 258.425 87.8179C258.184 87.6698 257.892 87.5957 257.549 87.5957C257.139 87.5957 256.796 87.6761 256.521 87.8369C256.25 87.9935 256.047 88.2135 255.912 88.4971C255.776 88.7806 255.708 89.1064 255.708 89.4746H254.534C254.534 88.9541 254.648 88.478 254.877 88.0464C255.105 87.6147 255.444 87.272 255.893 87.0181C256.341 86.7599 256.893 86.6309 257.549 86.6309C258.133 86.6309 258.633 86.7345 259.047 86.9419C259.462 87.145 259.779 87.4328 260 87.8052C260.224 88.1733 260.336 88.605 260.336 89.1001C260.336 89.3709 260.289 89.646 260.196 89.9253C260.107 90.2004 259.983 90.4754 259.822 90.7505C259.665 91.0256 259.481 91.2964 259.27 91.563C259.062 91.8296 258.84 92.092 258.603 92.3501L256.127 95.0352H260.761ZM267.845 93.499C267.845 94.0618 267.714 94.54 267.452 94.9336C267.194 95.3229 266.842 95.6191 266.398 95.8223C265.958 96.0254 265.461 96.127 264.906 96.127C264.352 96.127 263.853 96.0254 263.408 95.8223C262.964 95.6191 262.613 95.3229 262.354 94.9336C262.096 94.54 261.967 94.0618 261.967 93.499C261.967 93.1309 262.037 92.7944 262.177 92.4897C262.321 92.1808 262.522 91.9121 262.78 91.6836C263.042 91.4551 263.351 91.2795 263.707 91.1567C264.066 91.0298 264.462 90.9663 264.894 90.9663C265.461 90.9663 265.966 91.0763 266.411 91.2964C266.855 91.5122 267.204 91.8105 267.458 92.1914C267.716 92.5723 267.845 93.0081 267.845 93.499ZM266.665 93.4736C266.665 93.1309 266.59 92.8283 266.442 92.5659C266.294 92.2993 266.087 92.092 265.82 91.9438C265.554 91.7957 265.245 91.7217 264.894 91.7217C264.534 91.7217 264.223 91.7957 263.96 91.9438C263.702 92.092 263.501 92.2993 263.357 92.5659C263.214 92.8283 263.142 93.1309 263.142 93.4736C263.142 93.8291 263.211 94.1338 263.351 94.3877C263.495 94.6374 263.698 94.8299 263.96 94.9653C264.227 95.0965 264.542 95.1621 264.906 95.1621C265.27 95.1621 265.583 95.0965 265.846 94.9653C266.108 94.8299 266.309 94.6374 266.449 94.3877C266.593 94.1338 266.665 93.8291 266.665 93.4736ZM267.629 89.1636C267.629 89.6121 267.511 90.0163 267.274 90.376C267.037 90.7357 266.713 91.0192 266.303 91.2266C265.892 91.4339 265.427 91.5376 264.906 91.5376C264.377 91.5376 263.905 91.4339 263.491 91.2266C263.08 91.0192 262.759 90.7357 262.526 90.376C262.293 90.0163 262.177 89.6121 262.177 89.1636C262.177 88.6261 262.293 88.1691 262.526 87.7925C262.763 87.4159 263.087 87.1281 263.497 86.9292C263.908 86.7303 264.375 86.6309 264.9 86.6309C265.429 86.6309 265.899 86.7303 266.309 86.9292C266.72 87.1281 267.041 87.4159 267.274 87.7925C267.511 88.1691 267.629 88.6261 267.629 89.1636ZM266.455 89.1826C266.455 88.8737 266.389 88.6007 266.258 88.3638C266.127 88.1268 265.945 87.9406 265.712 87.8052C265.48 87.6655 265.209 87.5957 264.9 87.5957C264.591 87.5957 264.32 87.6613 264.087 87.7925C263.859 87.9194 263.679 88.1014 263.548 88.3384C263.421 88.5754 263.357 88.8568 263.357 89.1826C263.357 89.5 263.421 89.7772 263.548 90.0142C263.679 90.2511 263.861 90.4352 264.094 90.5664C264.326 90.6976 264.597 90.7632 264.906 90.7632C265.215 90.7632 265.484 90.6976 265.712 90.5664C265.945 90.4352 266.127 90.2511 266.258 90.0142C266.389 89.7772 266.455 89.5 266.455 89.1826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M232.065 110.707V120H230.891V112.173L228.523 113.037V111.977L231.881 110.707H232.065ZM237.232 114.801H238.07C238.48 114.801 238.819 114.734 239.085 114.598C239.356 114.458 239.557 114.27 239.688 114.033C239.824 113.792 239.892 113.521 239.892 113.221C239.892 112.865 239.832 112.567 239.714 112.326C239.595 112.084 239.418 111.903 239.181 111.78C238.944 111.657 238.643 111.596 238.279 111.596C237.949 111.596 237.657 111.661 237.403 111.792C237.154 111.919 236.957 112.101 236.813 112.338C236.673 112.575 236.604 112.855 236.604 113.176H235.429C235.429 112.707 235.548 112.279 235.785 111.894C236.022 111.509 236.354 111.202 236.781 110.974C237.213 110.745 237.712 110.631 238.279 110.631C238.838 110.631 239.327 110.73 239.746 110.929C240.165 111.124 240.49 111.416 240.723 111.805C240.956 112.19 241.072 112.671 241.072 113.246C241.072 113.479 241.017 113.729 240.907 113.995C240.801 114.257 240.634 114.503 240.406 114.731C240.181 114.96 239.889 115.148 239.53 115.296C239.17 115.44 238.738 115.512 238.235 115.512H237.232V114.801ZM237.232 115.766V115.062H238.235C238.823 115.062 239.31 115.131 239.695 115.271C240.08 115.411 240.382 115.597 240.603 115.83C240.827 116.062 240.983 116.318 241.072 116.598C241.165 116.873 241.212 117.148 241.212 117.423C241.212 117.854 241.138 118.237 240.99 118.572C240.846 118.906 240.641 119.19 240.374 119.422C240.112 119.655 239.803 119.831 239.447 119.949C239.092 120.068 238.705 120.127 238.286 120.127C237.884 120.127 237.505 120.07 237.149 119.956C236.798 119.841 236.487 119.676 236.216 119.46C235.945 119.24 235.734 118.972 235.582 118.654C235.429 118.333 235.353 117.967 235.353 117.556H236.527C236.527 117.878 236.597 118.159 236.737 118.4C236.881 118.642 237.084 118.83 237.346 118.965C237.613 119.097 237.926 119.162 238.286 119.162C238.645 119.162 238.954 119.101 239.212 118.978C239.475 118.851 239.676 118.661 239.815 118.407C239.959 118.153 240.031 117.833 240.031 117.448C240.031 117.063 239.951 116.748 239.79 116.502C239.629 116.253 239.401 116.069 239.104 115.95C238.812 115.827 238.468 115.766 238.07 115.766H237.232Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.761 119.035V120H254.712V119.156L257.74 115.785C258.112 115.37 258.4 115.019 258.603 114.731C258.81 114.439 258.954 114.179 259.035 113.951C259.119 113.718 259.162 113.481 259.162 113.24C259.162 112.935 259.098 112.66 258.971 112.415C258.848 112.165 258.667 111.966 258.425 111.818C258.184 111.67 257.892 111.596 257.549 111.596C257.139 111.596 256.796 111.676 256.521 111.837C256.25 111.993 256.047 112.214 255.912 112.497C255.776 112.781 255.708 113.106 255.708 113.475H254.534C254.534 112.954 254.648 112.478 254.877 112.046C255.105 111.615 255.444 111.272 255.893 111.018C256.341 110.76 256.893 110.631 257.549 110.631C258.133 110.631 258.633 110.735 259.047 110.942C259.462 111.145 259.779 111.433 260 111.805C260.224 112.173 260.336 112.605 260.336 113.1C260.336 113.371 260.289 113.646 260.196 113.925C260.107 114.2 259.983 114.475 259.822 114.75C259.665 115.026 259.481 115.296 259.27 115.563C259.062 115.83 258.84 116.092 258.603 116.35L256.127 119.035H260.761ZM263.186 119.016H263.307C263.984 119.016 264.534 118.921 264.957 118.73C265.38 118.54 265.706 118.284 265.935 117.962C266.163 117.641 266.32 117.279 266.404 116.877C266.489 116.471 266.531 116.054 266.531 115.626V114.211C266.531 113.792 266.483 113.42 266.385 113.094C266.292 112.768 266.161 112.495 265.992 112.275C265.827 112.055 265.638 111.888 265.427 111.773C265.215 111.659 264.991 111.602 264.754 111.602C264.483 111.602 264.24 111.657 264.024 111.767C263.812 111.873 263.632 112.023 263.484 112.218C263.34 112.412 263.23 112.641 263.154 112.903C263.078 113.166 263.04 113.451 263.04 113.76C263.04 114.035 263.074 114.302 263.142 114.56C263.209 114.818 263.313 115.051 263.453 115.258C263.592 115.466 263.766 115.631 263.973 115.753C264.185 115.872 264.432 115.931 264.716 115.931C264.978 115.931 265.224 115.88 265.452 115.779C265.685 115.673 265.89 115.531 266.068 115.354C266.25 115.172 266.394 114.966 266.5 114.738C266.61 114.509 266.673 114.27 266.69 114.021H267.249C267.249 114.372 267.179 114.719 267.039 115.062C266.904 115.4 266.713 115.709 266.468 115.988C266.222 116.268 265.935 116.492 265.604 116.661C265.274 116.826 264.915 116.909 264.525 116.909C264.068 116.909 263.673 116.82 263.338 116.642C263.004 116.464 262.729 116.227 262.513 115.931C262.302 115.635 262.143 115.305 262.037 114.941C261.936 114.573 261.885 114.2 261.885 113.824C261.885 113.384 261.946 112.971 262.069 112.586C262.192 112.201 262.374 111.862 262.615 111.57C262.856 111.274 263.154 111.043 263.51 110.878C263.869 110.713 264.284 110.631 264.754 110.631C265.283 110.631 265.734 110.737 266.106 110.948C266.478 111.16 266.781 111.443 267.014 111.799C267.251 112.154 267.424 112.554 267.534 112.999C267.644 113.443 267.699 113.9 267.699 114.37V114.795C267.699 115.273 267.667 115.76 267.604 116.255C267.545 116.746 267.428 117.215 267.255 117.664C267.086 118.113 266.838 118.515 266.512 118.87C266.186 119.221 265.761 119.501 265.236 119.708C264.716 119.911 264.073 120.013 263.307 120.013H263.186V119.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M231.858 134.492V144.5H230.594V136.071L228.044 137.001V135.859L231.66 134.492H231.858ZM242.304 141.15V142.189H235.112V141.444L239.569 134.547H240.602L239.494 136.543L236.548 141.15H242.304ZM240.916 134.547V144.5H239.651V134.547H240.916Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M256.048 138.901H256.95C257.392 138.901 257.757 138.828 258.044 138.683C258.336 138.532 258.552 138.329 258.693 138.074C258.839 137.814 258.912 137.523 258.912 137.199C258.912 136.816 258.848 136.495 258.721 136.235C258.593 135.976 258.402 135.78 258.146 135.647C257.891 135.515 257.568 135.449 257.176 135.449C256.82 135.449 256.506 135.52 256.232 135.661C255.964 135.798 255.752 135.994 255.597 136.249C255.446 136.504 255.371 136.805 255.371 137.151H254.106C254.106 136.646 254.234 136.185 254.489 135.771C254.744 135.356 255.102 135.025 255.562 134.779C256.027 134.533 256.565 134.41 257.176 134.41C257.777 134.41 258.304 134.517 258.755 134.731C259.206 134.941 259.557 135.256 259.808 135.675C260.058 136.09 260.184 136.607 260.184 137.227C260.184 137.477 260.124 137.746 260.006 138.033C259.892 138.316 259.712 138.58 259.466 138.826C259.224 139.072 258.91 139.275 258.522 139.435C258.135 139.59 257.67 139.667 257.128 139.667H256.048V138.901ZM256.048 139.94V139.182H257.128C257.761 139.182 258.285 139.257 258.7 139.407C259.115 139.558 259.441 139.758 259.678 140.009C259.919 140.259 260.088 140.535 260.184 140.836C260.284 141.132 260.334 141.428 260.334 141.725C260.334 142.189 260.254 142.602 260.095 142.962C259.94 143.322 259.719 143.627 259.432 143.878C259.149 144.129 258.816 144.318 258.434 144.445C258.051 144.573 257.634 144.637 257.183 144.637C256.75 144.637 256.342 144.575 255.959 144.452C255.581 144.329 255.246 144.151 254.954 143.919C254.662 143.682 254.435 143.393 254.271 143.051C254.106 142.704 254.024 142.31 254.024 141.868H255.289C255.289 142.215 255.364 142.518 255.515 142.777C255.67 143.037 255.888 143.24 256.171 143.386C256.458 143.527 256.795 143.598 257.183 143.598C257.57 143.598 257.903 143.532 258.181 143.399C258.463 143.263 258.68 143.058 258.83 142.784C258.985 142.511 259.062 142.167 259.062 141.752C259.062 141.337 258.976 140.998 258.803 140.733C258.63 140.465 258.383 140.266 258.064 140.139C257.75 140.007 257.379 139.94 256.95 139.94H256.048ZM268.325 138.73V140.248C268.325 141.064 268.252 141.752 268.106 142.312C267.961 142.873 267.751 143.324 267.478 143.666C267.204 144.008 266.874 144.256 266.486 144.411C266.104 144.562 265.671 144.637 265.188 144.637C264.805 144.637 264.451 144.589 264.128 144.493C263.804 144.397 263.513 144.245 263.253 144.035C262.998 143.821 262.779 143.543 262.597 143.201C262.414 142.859 262.275 142.445 262.18 141.957C262.084 141.469 262.036 140.9 262.036 140.248V138.73C262.036 137.915 262.109 137.231 262.255 136.68C262.405 136.128 262.617 135.686 262.891 135.354C263.164 135.016 263.492 134.775 263.875 134.629C264.262 134.483 264.695 134.41 265.174 134.41C265.561 134.41 265.917 134.458 266.24 134.554C266.568 134.645 266.86 134.793 267.115 134.998C267.37 135.199 267.587 135.467 267.765 135.805C267.947 136.137 268.086 136.545 268.182 137.028C268.277 137.511 268.325 138.079 268.325 138.73ZM267.054 140.453V138.519C267.054 138.072 267.026 137.68 266.972 137.343C266.922 137.001 266.846 136.709 266.746 136.468C266.646 136.226 266.518 136.03 266.363 135.88C266.213 135.729 266.037 135.62 265.837 135.552C265.641 135.479 265.42 135.442 265.174 135.442C264.873 135.442 264.606 135.499 264.374 135.613C264.142 135.723 263.946 135.898 263.786 136.14C263.631 136.381 263.513 136.698 263.431 137.09C263.349 137.482 263.308 137.958 263.308 138.519V140.453C263.308 140.9 263.333 141.294 263.383 141.636C263.438 141.978 263.517 142.274 263.622 142.524C263.727 142.771 263.854 142.973 264.005 143.133C264.155 143.292 264.328 143.411 264.524 143.488C264.725 143.561 264.946 143.598 265.188 143.598C265.497 143.598 265.769 143.538 266.001 143.42C266.233 143.301 266.427 143.117 266.582 142.866C266.742 142.611 266.86 142.285 266.938 141.889C267.015 141.488 267.054 141.009 267.054 140.453Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1425"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1425"},(0,h.createElement)("rect",{width:"13",height:"13",fill:"white",transform:"translate(96 59)"})))),{ToolBarFields:ir,BlockName:or,BlockLabel:sr,BlockDescription:cr,BlockAdvancedValue:dr,AdvancedFields:mr,FieldWrapper:ur,FieldSettingsWrapper:pr,AdvancedInspectorControl:fr,ValidationToggleGroup:Vr,ValidationBlockMessage:Hr,ClientSideMacros:hr,AttributeHelp:br}=JetFBComponents,{useInsertMacro:Mr,useIsAdvancedValidation:Lr,useUniqueNameOnDuplicate:gr}=JetFBHooks,{__:Zr}=wp.i18n,{InspectorControls:yr,useBlockProps:Er}=wp.blockEditor,{TextControl:wr,ToggleControl:vr,PanelBody:_r,ExternalLink:kr}=wp.components,jr=JSON.parse('{"apiVersion":3,"name":"jet-forms/datetime-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","date"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Datetime Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"is_timestamp":{"type":"boolean","default":false},"min":{"type":"string","default":""},"max":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:xr}=wp.i18n,{createBlock:Fr}=wp.blocks,{name:Br,icon:Ar=""}=jr,Pr={className:Br.replace("/","-"),icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ar}}),description:xr("Type in the date and time manually following the input mask or choose the values from the calendar and timer.","jet-form-builder"),edit:function(e){const C=Er(),[t,l]=Mr("min"),[r,n]=Mr("max"),{attributes:a,setAttributes:i,isSelected:o,editProps:{uniqKey:s,attrHelp:c}}=e,d=Lr();if(gr(),a.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},ar);const m=(0,h.createElement)(h.Fragment,null,Zr("Plain date should be in yyyy-MM-ddThh:mm format.","jet-form-builder")," ",Zr("Or you can use","jet-form-builder")," ",(0,h.createElement)(kr,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},Zr("macros","jet-form-builder"))," ",Zr("and","jet-form-builder")," ",(0,h.createElement)(kr,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},Zr("filters","jet-form-builder")),".");return[(0,h.createElement)(ir,{key:s("ToolBarFields"),...e}),o&&(0,h.createElement)(yr,{key:s("InspectorControls")},(0,h.createElement)(_r,{title:Zr("General","jet-form-builder")},(0,h.createElement)(sr,null),(0,h.createElement)(or,null),(0,h.createElement)(cr,null)),(0,h.createElement)(_r,{title:Zr("Value","jet-form-builder")},(0,h.createElement)(dr,{help:m,style:{marginBottom:"1em"}}),(0,h.createElement)(hr,null,(0,h.createElement)(fr,{value:a.min,label:Zr("Starting from date","jet-form-builder"),onChangePreset:e=>i({min:e}),onChangeMacros:l},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(wr,{id:e,ref:t,className:"jet-fb m-unset",value:a.min,onChange:e=>i({min:e})}),(0,h.createElement)(br,null,m))),(0,h.createElement)(fr,{value:a.max,label:Zr("Limit dates to","jet-form-builder"),onChangePreset:e=>i({max:e}),onChangeMacros:n},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(wr,{id:e,ref:r,className:"jet-fb m-unset",value:a.max,onChange:e=>i({max:e})}),(0,h.createElement)(br,null,m))))),(0,h.createElement)(pr,{...e},(0,h.createElement)(vr,{key:s("is_timestamp"),label:Zr("Is Timestamp","jet-form-builder"),checked:a.is_timestamp,help:c("is_timestamp"),onChange:e=>{i({is_timestamp:Boolean(e)})}})),(0,h.createElement)(_r,{title:Zr("Validation","jet-form-builder")},(0,h.createElement)(Vr,null),d&&(0,h.createElement)(h.Fragment,null,Boolean(a.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Hr,{name:"date_min"})),Boolean(a.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Hr,{name:"date_max"})),(0,h.createElement)(Hr,{name:"empty"}))),(0,h.createElement)(mr,null)),(0,h.createElement)("div",{...C,key:s("viewBlock")},(0,h.createElement)(ur,{key:s("FieldWrapper"),...e},(0,h.createElement)(wr,{onChange:()=>{},className:"jet-form-builder__field-preview",key:s("place_holder_block"),placeholder:'Input type="datetime-local"'})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Fr("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/time-field","jet-forms/date-field"],transform:e=>Fr(Br,{...e}),priority:0}]}},Sr=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M0 0H298V144H0V0Z",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M23.5107 33.5439V37.1875C23.3877 37.3698 23.1917 37.5749 22.9229 37.8027C22.654 38.026 22.2826 38.222 21.8086 38.3906C21.3392 38.5547 20.7331 38.6367 19.9902 38.6367C19.3841 38.6367 18.8258 38.5319 18.3154 38.3223C17.8096 38.1081 17.3698 37.7982 16.9961 37.3926C16.627 36.9824 16.3398 36.4857 16.1348 35.9023C15.9342 35.3145 15.834 34.6491 15.834 33.9062V33.1338C15.834 32.391 15.9206 31.7279 16.0938 31.1445C16.2715 30.5612 16.5312 30.0667 16.873 29.6611C17.2148 29.251 17.6341 28.9411 18.1309 28.7314C18.6276 28.5173 19.1973 28.4102 19.8398 28.4102C20.6009 28.4102 21.2367 28.5423 21.7471 28.8066C22.262 29.0664 22.6631 29.4264 22.9502 29.8867C23.2419 30.347 23.4287 30.8711 23.5107 31.459H22.1914C22.1322 31.099 22.0137 30.7708 21.8359 30.4746C21.6628 30.1784 21.4144 29.9414 21.0908 29.7637C20.7673 29.5814 20.3503 29.4902 19.8398 29.4902C19.3796 29.4902 18.9808 29.5745 18.6436 29.7432C18.3063 29.9118 18.0283 30.1533 17.8096 30.4678C17.5908 30.7822 17.4268 31.1628 17.3174 31.6094C17.2126 32.056 17.1602 32.5596 17.1602 33.1201V33.9062C17.1602 34.4805 17.2262 34.9932 17.3584 35.4443C17.4951 35.8955 17.6888 36.2806 17.9395 36.5996C18.1901 36.9141 18.4886 37.1533 18.835 37.3174C19.1859 37.4814 19.5732 37.5635 19.9971 37.5635C20.4665 37.5635 20.847 37.5247 21.1387 37.4473C21.4303 37.3652 21.6582 37.2695 21.8223 37.1602C21.9863 37.0462 22.1117 36.9391 22.1982 36.8389V34.6104H19.8945V33.5439H23.5107ZM28.5762 38.6367C28.0612 38.6367 27.5941 38.5501 27.1748 38.377C26.7601 38.1992 26.4023 37.9508 26.1016 37.6318C25.8053 37.3128 25.5775 36.9346 25.418 36.4971C25.2585 36.0596 25.1787 35.5811 25.1787 35.0615V34.7744C25.1787 34.1729 25.2676 33.6374 25.4453 33.168C25.623 32.694 25.8646 32.293 26.1699 31.9648C26.4753 31.6367 26.8216 31.3883 27.209 31.2197C27.5964 31.0511 27.9974 30.9668 28.4121 30.9668C28.9408 30.9668 29.3965 31.0579 29.7793 31.2402C30.1667 31.4225 30.4834 31.6777 30.7295 32.0059C30.9756 32.3294 31.1579 32.7122 31.2764 33.1543C31.3949 33.5918 31.4541 34.0703 31.4541 34.5898V35.1572H25.9307V34.125H30.1895V34.0293C30.1712 33.7012 30.1029 33.3822 29.9844 33.0723C29.8704 32.7624 29.6882 32.5072 29.4375 32.3066C29.1868 32.1061 28.8451 32.0059 28.4121 32.0059C28.125 32.0059 27.8607 32.0674 27.6191 32.1904C27.3776 32.3089 27.1702 32.4867 26.9971 32.7236C26.8239 32.9606 26.6895 33.25 26.5938 33.5918C26.498 33.9336 26.4502 34.3278 26.4502 34.7744V35.0615C26.4502 35.4124 26.498 35.7428 26.5938 36.0527C26.694 36.3581 26.8376 36.627 27.0244 36.8594C27.2158 37.0918 27.446 37.2741 27.7148 37.4062C27.9883 37.5384 28.2982 37.6045 28.6445 37.6045C29.0911 37.6045 29.4694 37.5133 29.7793 37.3311C30.0892 37.1488 30.3604 36.9049 30.5928 36.5996L31.3584 37.208C31.1989 37.4495 30.9961 37.6797 30.75 37.8984C30.5039 38.1172 30.2008 38.2949 29.8408 38.4316C29.4854 38.5684 29.0638 38.6367 28.5762 38.6367ZM34.1953 32.6826V38.5H32.9307V31.1035H34.127L34.1953 32.6826ZM33.8945 34.5215L33.3682 34.501C33.3727 33.9951 33.4479 33.528 33.5938 33.0996C33.7396 32.6667 33.9447 32.2907 34.209 31.9717C34.4733 31.6527 34.7878 31.4066 35.1523 31.2334C35.5215 31.0557 35.9294 30.9668 36.376 30.9668C36.7406 30.9668 37.0687 31.0169 37.3604 31.1172C37.652 31.2129 37.9004 31.3678 38.1055 31.582C38.3151 31.7962 38.4746 32.0742 38.584 32.416C38.6934 32.7533 38.748 33.1657 38.748 33.6533V38.5H37.4766V33.6396C37.4766 33.2523 37.4196 32.9424 37.3057 32.71C37.1917 32.473 37.0254 32.3021 36.8066 32.1973C36.5879 32.0879 36.319 32.0332 36 32.0332C35.6855 32.0332 35.3984 32.0993 35.1387 32.2314C34.8835 32.3636 34.6624 32.5459 34.4756 32.7783C34.2933 33.0107 34.1497 33.2773 34.0449 33.5781C33.9447 33.8743 33.8945 34.1888 33.8945 34.5215ZM43.7383 38.6367C43.2233 38.6367 42.7562 38.5501 42.3369 38.377C41.9222 38.1992 41.5645 37.9508 41.2637 37.6318C40.9674 37.3128 40.7396 36.9346 40.5801 36.4971C40.4206 36.0596 40.3408 35.5811 40.3408 35.0615V34.7744C40.3408 34.1729 40.4297 33.6374 40.6074 33.168C40.7852 32.694 41.0267 32.293 41.332 31.9648C41.6374 31.6367 41.9837 31.3883 42.3711 31.2197C42.7585 31.0511 43.1595 30.9668 43.5742 30.9668C44.1029 30.9668 44.5586 31.0579 44.9414 31.2402C45.3288 31.4225 45.6455 31.6777 45.8916 32.0059C46.1377 32.3294 46.32 32.7122 46.4385 33.1543C46.557 33.5918 46.6162 34.0703 46.6162 34.5898V35.1572H41.0928V34.125H45.3516V34.0293C45.3333 33.7012 45.265 33.3822 45.1465 33.0723C45.0326 32.7624 44.8503 32.5072 44.5996 32.3066C44.349 32.1061 44.0072 32.0059 43.5742 32.0059C43.2871 32.0059 43.0228 32.0674 42.7812 32.1904C42.5397 32.3089 42.3324 32.4867 42.1592 32.7236C41.986 32.9606 41.8516 33.25 41.7559 33.5918C41.6602 33.9336 41.6123 34.3278 41.6123 34.7744V35.0615C41.6123 35.4124 41.6602 35.7428 41.7559 36.0527C41.8561 36.3581 41.9997 36.627 42.1865 36.8594C42.3779 37.0918 42.6081 37.2741 42.877 37.4062C43.1504 37.5384 43.4603 37.6045 43.8066 37.6045C44.2533 37.6045 44.6315 37.5133 44.9414 37.3311C45.2513 37.1488 45.5225 36.9049 45.7549 36.5996L46.5205 37.208C46.361 37.4495 46.1582 37.6797 45.9121 37.8984C45.666 38.1172 45.363 38.2949 45.0029 38.4316C44.6475 38.5684 44.2259 38.6367 43.7383 38.6367ZM49.3574 32.2656V38.5H48.0928V31.1035H49.3232L49.3574 32.2656ZM51.668 31.0625L51.6611 32.2383C51.5563 32.2155 51.4561 32.2018 51.3604 32.1973C51.2692 32.1882 51.1644 32.1836 51.0459 32.1836C50.7542 32.1836 50.4967 32.2292 50.2734 32.3203C50.0501 32.4115 49.861 32.5391 49.7061 32.7031C49.5511 32.8672 49.4281 33.0632 49.3369 33.291C49.2503 33.5143 49.1934 33.7604 49.166 34.0293L48.8105 34.2344C48.8105 33.7878 48.8538 33.3685 48.9404 32.9766C49.0316 32.5846 49.1706 32.2383 49.3574 31.9375C49.5443 31.6322 49.7812 31.3952 50.0684 31.2266C50.36 31.0534 50.7064 30.9668 51.1074 30.9668C51.1986 30.9668 51.3034 30.9782 51.4219 31.001C51.5404 31.0192 51.6224 31.0397 51.668 31.0625ZM56.9248 37.2354V33.4277C56.9248 33.1361 56.8656 32.8831 56.7471 32.6689C56.6331 32.4502 56.46 32.2816 56.2275 32.1631C55.9951 32.0446 55.708 31.9854 55.3662 31.9854C55.0472 31.9854 54.7669 32.04 54.5254 32.1494C54.2884 32.2588 54.1016 32.4023 53.9648 32.5801C53.8327 32.7578 53.7666 32.9492 53.7666 33.1543H52.502C52.502 32.89 52.5703 32.6279 52.707 32.3682C52.8438 32.1084 53.0397 31.8737 53.2949 31.6641C53.5547 31.4499 53.8646 31.2812 54.2246 31.1582C54.5892 31.0306 54.9948 30.9668 55.4414 30.9668C55.9792 30.9668 56.4531 31.0579 56.8633 31.2402C57.278 31.4225 57.6016 31.6982 57.834 32.0674C58.071 32.432 58.1895 32.89 58.1895 33.4414V36.8867C58.1895 37.1328 58.21 37.3949 58.251 37.6729C58.2965 37.9508 58.3626 38.1901 58.4492 38.3906V38.5H57.1299C57.0661 38.3542 57.016 38.1605 56.9795 37.9189C56.943 37.6729 56.9248 37.445 56.9248 37.2354ZM57.1436 34.0156L57.1572 34.9043H55.8789C55.5189 34.9043 55.1976 34.9339 54.915 34.9932C54.6325 35.0479 54.3955 35.1322 54.2041 35.2461C54.0127 35.36 53.8669 35.5036 53.7666 35.6768C53.6663 35.8454 53.6162 36.0436 53.6162 36.2715C53.6162 36.5039 53.6686 36.7158 53.7734 36.9072C53.8783 37.0986 54.0355 37.2513 54.2451 37.3652C54.4593 37.4746 54.7214 37.5293 55.0312 37.5293C55.4186 37.5293 55.7604 37.4473 56.0566 37.2832C56.3529 37.1191 56.5876 36.9186 56.7607 36.6816C56.9385 36.4447 57.0342 36.2145 57.0479 35.9912L57.5879 36.5996C57.556 36.791 57.4694 37.0029 57.3281 37.2354C57.1868 37.4678 56.9977 37.6911 56.7607 37.9053C56.5283 38.1149 56.2503 38.2904 55.9268 38.4316C55.6077 38.5684 55.2477 38.6367 54.8467 38.6367C54.3454 38.6367 53.9056 38.5387 53.5273 38.3428C53.1536 38.1468 52.862 37.8848 52.6523 37.5566C52.4473 37.224 52.3447 36.8525 52.3447 36.4424C52.3447 36.0459 52.4222 35.6973 52.5771 35.3965C52.7321 35.0911 52.9554 34.8382 53.2471 34.6377C53.5387 34.4326 53.8896 34.2777 54.2998 34.1729C54.71 34.068 55.168 34.0156 55.6738 34.0156H57.1436ZM61.5527 28V38.5H60.2812V28H61.5527ZM68.4297 31.1035V38.5H67.1582V31.1035H68.4297ZM67.0625 29.1416C67.0625 28.9365 67.124 28.7633 67.2471 28.6221C67.3747 28.4808 67.5615 28.4102 67.8076 28.4102C68.0492 28.4102 68.2337 28.4808 68.3613 28.6221C68.4935 28.7633 68.5596 28.9365 68.5596 29.1416C68.5596 29.3376 68.4935 29.5062 68.3613 29.6475C68.2337 29.7842 68.0492 29.8525 67.8076 29.8525C67.5615 29.8525 67.3747 29.7842 67.2471 29.6475C67.124 29.5062 67.0625 29.3376 67.0625 29.1416ZM71.7246 32.6826V38.5H70.46V31.1035H71.6562L71.7246 32.6826ZM71.4238 34.5215L70.8975 34.501C70.902 33.9951 70.9772 33.528 71.123 33.0996C71.2689 32.6667 71.474 32.2907 71.7383 31.9717C72.0026 31.6527 72.3171 31.4066 72.6816 31.2334C73.0508 31.0557 73.4587 30.9668 73.9053 30.9668C74.2699 30.9668 74.598 31.0169 74.8896 31.1172C75.1813 31.2129 75.4297 31.3678 75.6348 31.582C75.8444 31.7962 76.0039 32.0742 76.1133 32.416C76.2227 32.7533 76.2773 33.1657 76.2773 33.6533V38.5H75.0059V33.6396C75.0059 33.2523 74.9489 32.9424 74.835 32.71C74.721 32.473 74.5547 32.3021 74.3359 32.1973C74.1172 32.0879 73.8483 32.0332 73.5293 32.0332C73.2148 32.0332 72.9277 32.0993 72.668 32.2314C72.4128 32.3636 72.1917 32.5459 72.0049 32.7783C71.8226 33.0107 71.679 33.2773 71.5742 33.5781C71.474 33.8743 71.4238 34.1888 71.4238 34.5215ZM80.085 38.5H78.8203V30.3242C78.8203 29.791 78.916 29.3421 79.1074 28.9775C79.3034 28.6084 79.5837 28.3304 79.9482 28.1436C80.3128 27.9521 80.7458 27.8564 81.2471 27.8564C81.3929 27.8564 81.5387 27.8656 81.6846 27.8838C81.835 27.902 81.9808 27.9294 82.1221 27.9658L82.0537 28.998C81.958 28.9753 81.8486 28.9593 81.7256 28.9502C81.6071 28.9411 81.4886 28.9365 81.3701 28.9365C81.1012 28.9365 80.8688 28.9912 80.6729 29.1006C80.4814 29.2054 80.3356 29.3604 80.2354 29.5654C80.1351 29.7705 80.085 30.0234 80.085 30.3242V38.5ZM81.6572 31.1035V32.0742H77.6514V31.1035H81.6572ZM82.7305 34.8838V34.7266C82.7305 34.1934 82.8079 33.6989 82.9629 33.2432C83.1178 32.7829 83.3411 32.3841 83.6328 32.0469C83.9245 31.7051 84.2777 31.4408 84.6924 31.2539C85.1071 31.0625 85.5719 30.9668 86.0869 30.9668C86.6064 30.9668 87.0736 31.0625 87.4883 31.2539C87.9076 31.4408 88.263 31.7051 88.5547 32.0469C88.8509 32.3841 89.0765 32.7829 89.2314 33.2432C89.3864 33.6989 89.4639 34.1934 89.4639 34.7266V34.8838C89.4639 35.417 89.3864 35.9115 89.2314 36.3672C89.0765 36.8229 88.8509 37.2217 88.5547 37.5635C88.263 37.9007 87.9098 38.165 87.4951 38.3564C87.085 38.5433 86.6201 38.6367 86.1006 38.6367C85.5811 38.6367 85.1139 38.5433 84.6992 38.3564C84.2845 38.165 83.929 37.9007 83.6328 37.5635C83.3411 37.2217 83.1178 36.8229 82.9629 36.3672C82.8079 35.9115 82.7305 35.417 82.7305 34.8838ZM83.9951 34.7266V34.8838C83.9951 35.2529 84.0384 35.6016 84.125 35.9297C84.2116 36.2533 84.3415 36.5404 84.5146 36.791C84.6924 37.0417 84.9134 37.2399 85.1777 37.3857C85.4421 37.527 85.7497 37.5977 86.1006 37.5977C86.4469 37.5977 86.75 37.527 87.0098 37.3857C87.2741 37.2399 87.4928 37.0417 87.666 36.791C87.8392 36.5404 87.9691 36.2533 88.0557 35.9297C88.1468 35.6016 88.1924 35.2529 88.1924 34.8838V34.7266C88.1924 34.362 88.1468 34.0179 88.0557 33.6943C87.9691 33.3662 87.8369 33.0768 87.6592 32.8262C87.486 32.571 87.2673 32.3704 87.0029 32.2246C86.7432 32.0788 86.4378 32.0059 86.0869 32.0059C85.7406 32.0059 85.4352 32.0788 85.1709 32.2246C84.9111 32.3704 84.6924 32.571 84.5146 32.8262C84.3415 33.0768 84.2116 33.3662 84.125 33.6943C84.0384 34.0179 83.9951 34.362 83.9951 34.7266ZM92.3145 32.2656V38.5H91.0498V31.1035H92.2803L92.3145 32.2656ZM94.625 31.0625L94.6182 32.2383C94.5133 32.2155 94.4131 32.2018 94.3174 32.1973C94.2262 32.1882 94.1214 32.1836 94.0029 32.1836C93.7113 32.1836 93.4538 32.2292 93.2305 32.3203C93.0072 32.4115 92.818 32.5391 92.6631 32.7031C92.5081 32.8672 92.3851 33.0632 92.2939 33.291C92.2074 33.5143 92.1504 33.7604 92.123 34.0293L91.7676 34.2344C91.7676 33.7878 91.8109 33.3685 91.8975 32.9766C91.9886 32.5846 92.1276 32.2383 92.3145 31.9375C92.5013 31.6322 92.7383 31.3952 93.0254 31.2266C93.3171 31.0534 93.6634 30.9668 94.0645 30.9668C94.1556 30.9668 94.2604 30.9782 94.3789 31.001C94.4974 31.0192 94.5794 31.0397 94.625 31.0625ZM97.0518 32.5732V38.5H95.7803V31.1035H96.9834L97.0518 32.5732ZM96.792 34.5215L96.2041 34.501C96.2087 33.9951 96.2747 33.528 96.4023 33.0996C96.5299 32.6667 96.7191 32.2907 96.9697 31.9717C97.2204 31.6527 97.5326 31.4066 97.9062 31.2334C98.2799 31.0557 98.7129 30.9668 99.2051 30.9668C99.5514 30.9668 99.8704 31.0169 100.162 31.1172C100.454 31.2129 100.707 31.3656 100.921 31.5752C101.135 31.7848 101.301 32.0537 101.42 32.3818C101.538 32.71 101.598 33.1064 101.598 33.5713V38.5H100.333V33.6328C100.333 33.2454 100.267 32.9355 100.135 32.7031C100.007 32.4707 99.8249 32.3021 99.5879 32.1973C99.3509 32.0879 99.0729 32.0332 98.7539 32.0332C98.3802 32.0332 98.068 32.0993 97.8174 32.2314C97.5667 32.3636 97.3662 32.5459 97.2158 32.7783C97.0654 33.0107 96.9561 33.2773 96.8877 33.5781C96.8239 33.8743 96.792 34.1888 96.792 34.5215ZM101.584 33.8242L100.736 34.084C100.741 33.6784 100.807 33.2887 100.935 32.915C101.067 32.5413 101.256 32.2087 101.502 31.917C101.753 31.6253 102.06 31.3952 102.425 31.2266C102.789 31.0534 103.206 30.9668 103.676 30.9668C104.072 30.9668 104.423 31.0192 104.729 31.124C105.038 31.2288 105.298 31.3906 105.508 31.6094C105.722 31.8236 105.884 32.0993 105.993 32.4365C106.103 32.7738 106.157 33.1748 106.157 33.6396V38.5H104.886V33.626C104.886 33.2113 104.82 32.89 104.688 32.6621C104.56 32.4297 104.378 32.2679 104.141 32.1768C103.908 32.0811 103.63 32.0332 103.307 32.0332C103.029 32.0332 102.783 32.0811 102.568 32.1768C102.354 32.2725 102.174 32.4046 102.028 32.5732C101.882 32.7373 101.771 32.9264 101.693 33.1406C101.62 33.3548 101.584 33.5827 101.584 33.8242ZM112.433 37.2354V33.4277C112.433 33.1361 112.373 32.8831 112.255 32.6689C112.141 32.4502 111.968 32.2816 111.735 32.1631C111.503 32.0446 111.216 31.9854 110.874 31.9854C110.555 31.9854 110.275 32.04 110.033 32.1494C109.796 32.2588 109.609 32.4023 109.473 32.5801C109.34 32.7578 109.274 32.9492 109.274 33.1543H108.01C108.01 32.89 108.078 32.6279 108.215 32.3682C108.352 32.1084 108.548 31.8737 108.803 31.6641C109.062 31.4499 109.372 31.2812 109.732 31.1582C110.097 31.0306 110.503 30.9668 110.949 30.9668C111.487 30.9668 111.961 31.0579 112.371 31.2402C112.786 31.4225 113.109 31.6982 113.342 32.0674C113.579 32.432 113.697 32.89 113.697 33.4414V36.8867C113.697 37.1328 113.718 37.3949 113.759 37.6729C113.804 37.9508 113.87 38.1901 113.957 38.3906V38.5H112.638C112.574 38.3542 112.524 38.1605 112.487 37.9189C112.451 37.6729 112.433 37.445 112.433 37.2354ZM112.651 34.0156L112.665 34.9043H111.387C111.027 34.9043 110.705 34.9339 110.423 34.9932C110.14 35.0479 109.903 35.1322 109.712 35.2461C109.521 35.36 109.375 35.5036 109.274 35.6768C109.174 35.8454 109.124 36.0436 109.124 36.2715C109.124 36.5039 109.176 36.7158 109.281 36.9072C109.386 37.0986 109.543 37.2513 109.753 37.3652C109.967 37.4746 110.229 37.5293 110.539 37.5293C110.926 37.5293 111.268 37.4473 111.564 37.2832C111.861 37.1191 112.095 36.9186 112.269 36.6816C112.446 36.4447 112.542 36.2145 112.556 35.9912L113.096 36.5996C113.064 36.791 112.977 37.0029 112.836 37.2354C112.695 37.4678 112.506 37.6911 112.269 37.9053C112.036 38.1149 111.758 38.2904 111.435 38.4316C111.116 38.5684 110.756 38.6367 110.354 38.6367C109.853 38.6367 109.413 38.5387 109.035 38.3428C108.661 38.1468 108.37 37.8848 108.16 37.5566C107.955 37.224 107.853 36.8525 107.853 36.4424C107.853 36.0459 107.93 35.6973 108.085 35.3965C108.24 35.0911 108.463 34.8382 108.755 34.6377C109.047 34.4326 109.397 34.2777 109.808 34.1729C110.218 34.068 110.676 34.0156 111.182 34.0156H112.651ZM118.783 31.1035V32.0742H114.784V31.1035H118.783ZM116.138 29.3057H117.402V36.668C117.402 36.9186 117.441 37.1077 117.519 37.2354C117.596 37.363 117.696 37.4473 117.819 37.4883C117.942 37.5293 118.075 37.5498 118.216 37.5498C118.321 37.5498 118.43 37.5407 118.544 37.5225C118.662 37.4997 118.751 37.4814 118.811 37.4678L118.817 38.5C118.717 38.5319 118.585 38.5615 118.421 38.5889C118.261 38.6208 118.068 38.6367 117.84 38.6367C117.53 38.6367 117.245 38.5752 116.985 38.4521C116.726 38.3291 116.518 38.124 116.363 37.8369C116.213 37.5452 116.138 37.1533 116.138 36.6611V29.3057ZM121.641 31.1035V38.5H120.369V31.1035H121.641ZM120.273 29.1416C120.273 28.9365 120.335 28.7633 120.458 28.6221C120.586 28.4808 120.772 28.4102 121.019 28.4102C121.26 28.4102 121.445 28.4808 121.572 28.6221C121.704 28.7633 121.771 28.9365 121.771 29.1416C121.771 29.3376 121.704 29.5062 121.572 29.6475C121.445 29.7842 121.26 29.8525 121.019 29.8525C120.772 29.8525 120.586 29.7842 120.458 29.6475C120.335 29.5062 120.273 29.3376 120.273 29.1416ZM123.336 34.8838V34.7266C123.336 34.1934 123.413 33.6989 123.568 33.2432C123.723 32.7829 123.947 32.3841 124.238 32.0469C124.53 31.7051 124.883 31.4408 125.298 31.2539C125.713 31.0625 126.177 30.9668 126.692 30.9668C127.212 30.9668 127.679 31.0625 128.094 31.2539C128.513 31.4408 128.868 31.7051 129.16 32.0469C129.456 32.3841 129.682 32.7829 129.837 33.2432C129.992 33.6989 130.069 34.1934 130.069 34.7266V34.8838C130.069 35.417 129.992 35.9115 129.837 36.3672C129.682 36.8229 129.456 37.2217 129.16 37.5635C128.868 37.9007 128.515 38.165 128.101 38.3564C127.69 38.5433 127.226 38.6367 126.706 38.6367C126.187 38.6367 125.719 38.5433 125.305 38.3564C124.89 38.165 124.535 37.9007 124.238 37.5635C123.947 37.2217 123.723 36.8229 123.568 36.3672C123.413 35.9115 123.336 35.417 123.336 34.8838ZM124.601 34.7266V34.8838C124.601 35.2529 124.644 35.6016 124.73 35.9297C124.817 36.2533 124.947 36.5404 125.12 36.791C125.298 37.0417 125.519 37.2399 125.783 37.3857C126.048 37.527 126.355 37.5977 126.706 37.5977C127.052 37.5977 127.355 37.527 127.615 37.3857C127.88 37.2399 128.098 37.0417 128.271 36.791C128.445 36.5404 128.575 36.2533 128.661 35.9297C128.752 35.6016 128.798 35.2529 128.798 34.8838V34.7266C128.798 34.362 128.752 34.0179 128.661 33.6943C128.575 33.3662 128.442 33.0768 128.265 32.8262C128.091 32.571 127.873 32.3704 127.608 32.2246C127.349 32.0788 127.043 32.0059 126.692 32.0059C126.346 32.0059 126.041 32.0788 125.776 32.2246C125.517 32.3704 125.298 32.571 125.12 32.8262C124.947 33.0768 124.817 33.3662 124.73 33.6943C124.644 34.0179 124.601 34.362 124.601 34.7266ZM132.92 32.6826V38.5H131.655V31.1035H132.852L132.92 32.6826ZM132.619 34.5215L132.093 34.501C132.097 33.9951 132.173 33.528 132.318 33.0996C132.464 32.6667 132.669 32.2907 132.934 31.9717C133.198 31.6527 133.512 31.4066 133.877 31.2334C134.246 31.0557 134.654 30.9668 135.101 30.9668C135.465 30.9668 135.793 31.0169 136.085 31.1172C136.377 31.2129 136.625 31.3678 136.83 31.582C137.04 31.7962 137.199 32.0742 137.309 32.416C137.418 32.7533 137.473 33.1657 137.473 33.6533V38.5H136.201V33.6396C136.201 33.2523 136.144 32.9424 136.03 32.71C135.916 32.473 135.75 32.3021 135.531 32.1973C135.312 32.0879 135.044 32.0332 134.725 32.0332C134.41 32.0332 134.123 32.0993 133.863 32.2314C133.608 32.3636 133.387 32.5459 133.2 32.7783C133.018 33.0107 132.874 33.2773 132.77 33.5781C132.669 33.8743 132.619 34.1888 132.619 34.5215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15.5",y:"47",width:"267",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("path",{d:"M27.3867 56.7578V66H26.1616V56.7578H27.3867ZM30.6113 60.5981V66H29.437V59.1318H30.5479L30.6113 60.5981ZM30.332 62.3057L29.8433 62.2866C29.8475 61.8169 29.9173 61.3831 30.0527 60.9854C30.1882 60.5833 30.3786 60.2342 30.624 59.938C30.8695 59.6418 31.1615 59.4132 31.5 59.2524C31.8428 59.0874 32.2215 59.0049 32.6362 59.0049C32.9748 59.0049 33.2795 59.0514 33.5503 59.1445C33.8211 59.2334 34.0518 59.3773 34.2422 59.5762C34.4368 59.7751 34.585 60.0332 34.6865 60.3506C34.7881 60.6637 34.8389 61.0467 34.8389 61.4995V66H33.6582V61.4868C33.6582 61.1271 33.6053 60.8394 33.4995 60.6235C33.3937 60.4035 33.2393 60.2448 33.0361 60.1475C32.833 60.0459 32.5833 59.9951 32.2871 59.9951C31.9951 59.9951 31.7285 60.0565 31.4873 60.1792C31.2503 60.3019 31.0451 60.4712 30.8716 60.687C30.7023 60.9028 30.569 61.1504 30.4717 61.4297C30.3786 61.7048 30.332 61.9967 30.332 62.3057ZM37.7969 60.4521V68.6406H36.6162V59.1318H37.6953L37.7969 60.4521ZM42.4243 62.5088V62.6421C42.4243 63.1414 42.3651 63.6048 42.2466 64.0322C42.1281 64.4554 41.9546 64.8236 41.7261 65.1367C41.5018 65.4499 41.2246 65.6932 40.8945 65.8667C40.5645 66.0402 40.1857 66.127 39.7583 66.127C39.3224 66.127 38.9373 66.055 38.603 65.9111C38.2687 65.7673 37.9852 65.5578 37.7524 65.2827C37.5197 65.0076 37.3335 64.6776 37.1938 64.2925C37.0584 63.9074 36.9653 63.4736 36.9146 62.9912V62.2803C36.9653 61.7725 37.0605 61.3175 37.2002 60.9155C37.3398 60.5135 37.5239 60.1707 37.7524 59.8872C37.9852 59.5994 38.2666 59.3815 38.5967 59.2334C38.9268 59.0811 39.3076 59.0049 39.7393 59.0049C40.1709 59.0049 40.5539 59.0895 40.8882 59.2588C41.2225 59.4238 41.5039 59.6608 41.7324 59.9697C41.9609 60.2786 42.1323 60.6489 42.2466 61.0806C42.3651 61.508 42.4243 61.984 42.4243 62.5088ZM41.2437 62.6421V62.5088C41.2437 62.166 41.2077 61.8444 41.1357 61.5439C41.0638 61.2393 40.9517 60.9727 40.7993 60.7441C40.6512 60.5114 40.4608 60.3294 40.228 60.1982C39.9953 60.0628 39.7181 59.9951 39.3965 59.9951C39.1003 59.9951 38.8421 60.0459 38.6221 60.1475C38.4062 60.249 38.2222 60.3866 38.0698 60.5601C37.9175 60.7293 37.7926 60.924 37.6953 61.144C37.6022 61.3599 37.5324 61.5841 37.4858 61.8169V63.4609C37.5705 63.7572 37.689 64.0365 37.8413 64.2988C37.9937 64.557 38.1968 64.7664 38.4507 64.9272C38.7046 65.0838 39.0241 65.1621 39.4092 65.1621C39.7266 65.1621 39.9995 65.0965 40.228 64.9653C40.4608 64.8299 40.6512 64.6458 40.7993 64.4131C40.9517 64.1803 41.0638 63.9137 41.1357 63.6133C41.2077 63.3086 41.2437 62.9849 41.2437 62.6421ZM48.1245 64.4131V59.1318H49.3052V66H48.1816L48.1245 64.4131ZM48.3467 62.9658L48.8354 62.9531C48.8354 63.4102 48.7868 63.8333 48.6895 64.2227C48.5964 64.6077 48.444 64.9421 48.2324 65.2256C48.0208 65.5091 47.7437 65.7313 47.4009 65.8921C47.0581 66.0487 46.6413 66.127 46.1504 66.127C45.8161 66.127 45.5093 66.0783 45.23 65.981C44.9549 65.8836 44.7179 65.7334 44.519 65.5303C44.3201 65.3271 44.1657 65.0627 44.0557 64.7368C43.9499 64.411 43.897 64.0195 43.897 63.5625V59.1318H45.0713V63.5752C45.0713 63.8841 45.1051 64.1401 45.1729 64.3433C45.2448 64.5422 45.34 64.7008 45.4585 64.8193C45.5812 64.9336 45.7166 65.014 45.8647 65.0605C46.0171 65.1071 46.1737 65.1304 46.3345 65.1304C46.8338 65.1304 47.2295 65.0352 47.5215 64.8447C47.8135 64.6501 48.0229 64.3898 48.1499 64.064C48.2811 63.7339 48.3467 63.3678 48.3467 62.9658ZM53.9707 59.1318V60.0332H50.2573V59.1318H53.9707ZM51.5142 57.4624H52.6885V64.2988C52.6885 64.5316 52.7244 64.7072 52.7964 64.8257C52.8683 64.9442 52.9614 65.0225 53.0757 65.0605C53.1899 65.0986 53.3127 65.1177 53.4438 65.1177C53.5412 65.1177 53.6427 65.1092 53.7485 65.0923C53.8586 65.0711 53.9411 65.0542 53.9961 65.0415L54.0024 66C53.9093 66.0296 53.7866 66.0571 53.6343 66.0825C53.4862 66.1121 53.3063 66.127 53.0947 66.127C52.807 66.127 52.5425 66.0698 52.3013 65.9556C52.0601 65.8413 51.8675 65.6509 51.7236 65.3843C51.584 65.1134 51.5142 64.7495 51.5142 64.2925V57.4624ZM60.1406 66H58.9663V58.5352C58.9663 58.0146 59.0679 57.5745 59.271 57.2148C59.4741 56.8551 59.764 56.5822 60.1406 56.396C60.5173 56.2098 60.9637 56.1167 61.48 56.1167C61.7847 56.1167 62.083 56.1548 62.375 56.231C62.667 56.3029 62.9674 56.3939 63.2764 56.5039L63.0796 57.4941C62.8849 57.418 62.6585 57.346 62.4004 57.2783C62.1465 57.2064 61.8672 57.1704 61.5625 57.1704C61.0589 57.1704 60.695 57.2847 60.4707 57.5132C60.2507 57.7375 60.1406 58.0781 60.1406 58.5352V66ZM61.5435 59.1318V60.0332H57.8809V59.1318H61.5435ZM63.854 59.1318V66H62.6797V59.1318H63.854ZM68.6338 66.127C68.1556 66.127 67.7218 66.0465 67.3325 65.8857C66.9474 65.7207 66.6152 65.4901 66.3359 65.1938C66.0609 64.8976 65.8493 64.5464 65.7012 64.1401C65.5531 63.7339 65.479 63.2896 65.479 62.8071V62.5405C65.479 61.9819 65.5615 61.4847 65.7266 61.0488C65.8916 60.6087 66.1159 60.2363 66.3994 59.9316C66.6829 59.627 67.0046 59.3963 67.3643 59.2397C67.724 59.0832 68.0964 59.0049 68.4814 59.0049C68.9723 59.0049 69.3955 59.0895 69.751 59.2588C70.1107 59.4281 70.4048 59.665 70.6333 59.9697C70.8618 60.2702 71.0311 60.6257 71.1411 61.0361C71.2511 61.4424 71.3062 61.8867 71.3062 62.3691V62.896H66.1772V61.9375H70.1318V61.8486C70.1149 61.5439 70.0514 61.2477 69.9414 60.96C69.8356 60.6722 69.6663 60.4352 69.4336 60.249C69.2008 60.0628 68.8835 59.9697 68.4814 59.9697C68.2148 59.9697 67.9694 60.0269 67.7451 60.1411C67.5208 60.2511 67.3283 60.4162 67.1675 60.6362C67.0067 60.8563 66.8818 61.125 66.793 61.4424C66.7041 61.7598 66.6597 62.1258 66.6597 62.5405V62.8071C66.6597 63.133 66.7041 63.4398 66.793 63.7275C66.8861 64.0111 67.0194 64.2607 67.1929 64.4766C67.3706 64.6924 67.5843 64.8617 67.834 64.9844C68.0879 65.1071 68.3757 65.1685 68.6973 65.1685C69.112 65.1685 69.4632 65.0838 69.751 64.9146C70.0387 64.7453 70.2905 64.5189 70.5063 64.2354L71.2173 64.8003C71.0692 65.0246 70.8809 65.2383 70.6523 65.4414C70.4238 65.6445 70.1424 65.8096 69.8081 65.9365C69.478 66.0635 69.0866 66.127 68.6338 66.127ZM73.9531 56.25V66H72.7725V56.25H73.9531ZM80.1675 64.667V56.25H81.3481V66H80.269L80.1675 64.667ZM75.5464 62.6421V62.5088C75.5464 61.984 75.6099 61.508 75.7368 61.0806C75.868 60.6489 76.0521 60.2786 76.2891 59.9697C76.5303 59.6608 76.8159 59.4238 77.146 59.2588C77.4803 59.0895 77.8527 59.0049 78.2632 59.0049C78.6948 59.0049 79.0715 59.0811 79.3931 59.2334C79.7189 59.3815 79.994 59.5994 80.2183 59.8872C80.4468 60.1707 80.6266 60.5135 80.7578 60.9155C80.889 61.3175 80.98 61.7725 81.0308 62.2803V62.8643C80.9842 63.3678 80.8932 63.8206 80.7578 64.2227C80.6266 64.6247 80.4468 64.9674 80.2183 65.251C79.994 65.5345 79.7189 65.7524 79.3931 65.9048C79.0672 66.0529 78.6864 66.127 78.2505 66.127C77.8485 66.127 77.4803 66.0402 77.146 65.8667C76.8159 65.6932 76.5303 65.4499 76.2891 65.1367C76.0521 64.8236 75.868 64.4554 75.7368 64.0322C75.6099 63.6048 75.5464 63.1414 75.5464 62.6421ZM76.7271 62.5088V62.6421C76.7271 62.9849 76.7609 63.3065 76.8286 63.6069C76.9006 63.9074 77.0106 64.1719 77.1587 64.4004C77.3068 64.6289 77.4951 64.8088 77.7236 64.9399C77.9521 65.0669 78.2251 65.1304 78.5425 65.1304C78.9318 65.1304 79.2513 65.0479 79.501 64.8828C79.7549 64.7178 79.958 64.4998 80.1104 64.229C80.2627 63.9582 80.3812 63.6641 80.4658 63.3467V61.8169C80.415 61.5841 80.341 61.3599 80.2437 61.144C80.1506 60.924 80.0278 60.7293 79.8755 60.5601C79.7274 60.3866 79.5433 60.249 79.3232 60.1475C79.1074 60.0459 78.8514 59.9951 78.5552 59.9951C78.2336 59.9951 77.9564 60.0628 77.7236 60.1982C77.4951 60.3294 77.3068 60.5114 77.1587 60.7441C77.0106 60.9727 76.9006 61.2393 76.8286 61.5439C76.7609 61.8444 76.7271 62.166 76.7271 62.5088Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15.5",y:"47",width:"267",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M57.6997 107V97.9H60.9367C61.6344 97.9 62.2237 98.004 62.7047 98.212C63.1857 98.42 63.5497 98.7407 63.7967 99.174C64.0481 99.6073 64.1737 100.162 64.1737 100.838C64.1737 101.523 64.0502 102.088 63.8032 102.534C63.5562 102.976 63.1944 103.306 62.7177 103.522C62.2411 103.735 61.6604 103.841 60.9757 103.841H59.3637V107H57.6997ZM59.3637 102.45H60.7807C61.3484 102.45 61.7731 102.322 62.0547 102.066C62.3407 101.811 62.4837 101.41 62.4837 100.864C62.4837 100.318 62.3386 99.9193 62.0482 99.668C61.7622 99.4167 61.3267 99.291 60.7417 99.291H59.3637V102.45ZM65.0953 107V100.5H66.6033L66.6423 101.189C66.807 101.007 67.0388 100.825 67.3378 100.643C67.6368 100.461 67.964 100.37 68.3193 100.37C68.4233 100.37 68.5186 100.379 68.6053 100.396L68.4883 101.982C68.393 101.956 68.2976 101.939 68.2023 101.93C68.1113 101.921 68.0203 101.917 67.9293 101.917C67.6563 101.917 67.4071 101.98 67.1818 102.105C66.9565 102.231 66.7983 102.385 66.7073 102.567V107H65.0953ZM72.4051 107.13C71.6207 107.13 70.9664 106.974 70.4421 106.662C69.9221 106.346 69.5321 105.93 69.2721 105.414C69.0121 104.894 68.8821 104.326 68.8821 103.711C68.8821 103.117 69.0034 102.569 69.2461 102.066C69.4931 101.564 69.8527 101.161 70.3251 100.857C70.7974 100.55 71.3737 100.396 72.0541 100.396C72.6781 100.396 73.1981 100.524 73.6141 100.779C74.0301 101.035 74.3421 101.377 74.5501 101.806C74.7581 102.231 74.8621 102.701 74.8621 103.217C74.8621 103.36 74.8534 103.505 74.8361 103.652C74.8187 103.795 74.7927 103.945 74.7581 104.101H70.5591C70.6197 104.504 70.7454 104.831 70.9361 105.082C71.1311 105.329 71.3672 105.511 71.6446 105.628C71.9262 105.745 72.2274 105.804 72.5481 105.804C72.9251 105.804 73.2761 105.756 73.6011 105.661C73.9261 105.561 74.2251 105.431 74.4981 105.271L74.5761 106.636C74.3291 106.766 74.0214 106.881 73.6531 106.98C73.2847 107.08 72.8687 107.13 72.4051 107.13ZM70.5981 103.009H73.2241C73.2241 102.814 73.1872 102.619 73.1136 102.424C73.0399 102.225 72.9164 102.058 72.7431 101.923C72.5741 101.789 72.3444 101.722 72.0541 101.722C71.6381 101.722 71.3109 101.843 71.0726 102.086C70.8342 102.329 70.6761 102.636 70.5981 103.009ZM77.68 107L75.184 100.5H76.77L78.369 104.998L79.968 100.5H81.554L79.058 107H77.68ZM82.3482 107V100.5H83.9602V107H82.3482ZM82.3482 99.512V97.9H83.9602V99.512H82.3482ZM88.4223 107.13C87.716 107.13 87.1136 106.976 86.6153 106.668C86.117 106.361 85.7356 105.951 85.4713 105.44C85.2113 104.929 85.0813 104.37 85.0813 103.763C85.0813 103.152 85.2113 102.589 85.4713 102.073C85.7356 101.557 86.117 101.146 86.6153 100.838C87.1136 100.526 87.716 100.37 88.4223 100.37C89.1286 100.37 89.731 100.526 90.2293 100.838C90.7276 101.146 91.1068 101.557 91.3668 102.073C91.6311 102.589 91.7633 103.152 91.7633 103.763C91.7633 104.37 91.6311 104.929 91.3668 105.44C91.1068 105.951 90.7276 106.361 90.2293 106.668C89.731 106.976 89.1286 107.13 88.4223 107.13ZM88.4223 105.804C88.964 105.804 89.38 105.615 89.6703 105.238C89.965 104.857 90.1123 104.365 90.1123 103.763C90.1123 103.152 89.965 102.656 89.6703 102.274C89.38 101.889 88.964 101.696 88.4223 101.696C87.885 101.696 87.469 101.889 87.1743 102.274C86.8796 102.656 86.7323 103.152 86.7323 103.763C86.7323 104.365 86.8796 104.857 87.1743 105.238C87.469 105.615 87.885 105.804 88.4223 105.804ZM95.5763 107.13C94.9003 107.13 94.3608 106.996 93.9578 106.727C93.5548 106.458 93.2645 106.09 93.0868 105.622C92.9092 105.15 92.8203 104.608 92.8203 103.997V100.5H94.4323V103.997C94.4323 104.599 94.532 105.048 94.7313 105.342C94.935 105.633 95.2643 105.778 95.7193 105.778C96.0833 105.778 96.3845 105.691 96.6228 105.518C96.8655 105.345 97.067 105.102 97.2273 104.79L96.9413 105.609V100.5H98.5533V107H97.0453L96.9673 105.869L97.3183 106.324C97.1623 106.523 96.9153 106.707 96.5773 106.876C96.2437 107.046 95.91 107.13 95.5763 107.13ZM101.904 107.13C101.475 107.13 101.087 107.089 100.741 107.007C100.398 106.924 100.054 106.805 99.7072 106.649L99.8502 105.271C100.184 105.466 100.511 105.624 100.832 105.745C101.157 105.862 101.497 105.921 101.852 105.921C102.173 105.921 102.418 105.869 102.587 105.765C102.756 105.661 102.84 105.496 102.84 105.271C102.84 105.102 102.795 104.963 102.704 104.855C102.617 104.747 102.485 104.649 102.307 104.562C102.13 104.476 101.909 104.383 101.644 104.283C101.246 104.136 100.905 103.975 100.624 103.802C100.346 103.629 100.134 103.421 99.9867 103.178C99.8437 102.931 99.7722 102.628 99.7722 102.268C99.7722 101.895 99.8697 101.566 100.065 101.28C100.26 100.994 100.537 100.771 100.897 100.61C101.256 100.45 101.683 100.37 102.177 100.37C102.589 100.37 102.957 100.415 103.282 100.506C103.612 100.597 103.915 100.721 104.192 100.877L104.049 102.255C103.759 102.051 103.466 101.884 103.172 101.754C102.877 101.62 102.554 101.553 102.203 101.553C101.926 101.553 101.711 101.609 101.56 101.722C101.408 101.835 101.332 101.995 101.332 102.203C101.332 102.454 101.438 102.643 101.651 102.768C101.863 102.894 102.203 103.048 102.671 103.23C102.975 103.347 103.237 103.468 103.458 103.594C103.683 103.72 103.869 103.858 104.017 104.01C104.164 104.162 104.272 104.335 104.342 104.53C104.415 104.721 104.452 104.942 104.452 105.193C104.452 105.605 104.353 105.956 104.153 106.246C103.958 106.532 103.67 106.751 103.289 106.902C102.912 107.054 102.45 107.13 101.904 107.13Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"16",y:"87.5",width:"129.5",height:"30",rx:"15",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"151.5",y:"86.5",width:"131.5",height:"32",rx:"16",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M204.997 107V97.9H206.635L210.522 103.776V97.9H212.186V107H210.821L206.661 100.76V107H204.997ZM216.897 107.13C216.112 107.13 215.458 106.974 214.934 106.662C214.414 106.346 214.024 105.93 213.764 105.414C213.504 104.894 213.374 104.326 213.374 103.711C213.374 103.117 213.495 102.569 213.738 102.066C213.985 101.564 214.344 101.161 214.817 100.857C215.289 100.55 215.865 100.396 216.546 100.396C217.17 100.396 217.69 100.524 218.106 100.779C218.522 101.035 218.834 101.377 219.042 101.806C219.25 102.231 219.354 102.701 219.354 103.217C219.354 103.36 219.345 103.505 219.328 103.652C219.31 103.795 219.284 103.945 219.25 104.101H215.051C215.111 104.504 215.237 104.831 215.428 105.082C215.623 105.329 215.859 105.511 216.136 105.628C216.418 105.745 216.719 105.804 217.04 105.804C217.417 105.804 217.768 105.756 218.093 105.661C218.418 105.561 218.717 105.431 218.99 105.271L219.068 106.636C218.821 106.766 218.513 106.881 218.145 106.98C217.776 107.08 217.36 107.13 216.897 107.13ZM215.09 103.009H217.716C217.716 102.814 217.679 102.619 217.605 102.424C217.532 102.225 217.408 102.058 217.235 101.923C217.066 101.789 216.836 101.722 216.546 101.722C216.13 101.722 215.803 101.843 215.564 102.086C215.326 102.329 215.168 102.636 215.09 103.009ZM219.779 107L221.937 103.75L219.779 100.5H221.703L222.886 102.385L223.978 100.5H225.902L223.744 103.75L225.902 107H223.978L222.795 105.115L221.703 107H219.779ZM228.908 107.13C228.501 107.13 228.169 107.048 227.914 106.883C227.658 106.714 227.469 106.499 227.348 106.239C227.227 105.979 227.166 105.709 227.166 105.427V101.826H226.243L226.386 100.5H227.166V99.07L228.778 98.901V100.5H230.208V101.826H228.778V104.764C228.778 105.093 228.798 105.332 228.837 105.479C228.876 105.622 228.964 105.713 229.103 105.752C229.242 105.787 229.463 105.804 229.766 105.804H230.208L230.065 107.13H228.908Z",fill:"white"})),{BlockClassName:Nr,BlockAddPrevButton:Ir,BlockPrevButtonLabel:Tr}=JetFBComponents,{__:Or}=wp.i18n,{InspectorControls:Jr,useBlockProps:Rr,RichText:qr}=wp.blockEditor?wp.blockEditor:wp.editor,{TextareaControl:Dr,TextControl:zr,PanelBody:Ur,Button:Gr,ToggleControl:Wr}=wp.components,Kr=JSON.parse('{"apiVersion":3,"name":"jet-forms/form-break-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","break","pagebreak","formbreak"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Form Page Break","icon":"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"add_next_button":{"type":"boolean","default":true},"page_break_disabled":{"type":"string","default":"","jfb":{"rich":true}},"label_progress":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:$r}=wp.i18n,{createBlock:Yr}=wp.blocks,{name:Xr,icon:Qr=""}=Kr,en={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Qr}}),description:$r("With the help of Form Break Field, divide one big form into several parts and make those parts appear after filling in the previous part.","jet-form-builder"),edit:function(e){const C=Rr(),{attributes:t,setAttributes:l,editProps:{uniqKey:r,attrHelp:n}}=e;return t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Sr):[e.isSelected&&(0,h.createElement)(Jr,{key:r("InspectorControls")},(0,h.createElement)(Ur,{title:Or("Buttons Settings","jet-form-builder")},(0,h.createElement)(Wr,{key:r("add_next_button"),label:Or('Enable "Next" Button',"jet-form-builder"),checked:t.add_next_button,help:n("add_next_button"),onChange:e=>l({add_next_button:e})}),t.add_next_button&&(0,h.createElement)(zr,{label:Or("Next Button label","jet-form-builder"),value:t.label,onChange:e=>l({label:e})}),(0,h.createElement)(Ir,null),(0,h.createElement)(Tr,null)),(0,h.createElement)(Ur,{title:Or("Page Settings","jet-form-builder")},(0,h.createElement)(zr,{label:Or("Label of progress","jet-form-builder"),value:t.label_progress,help:n("label_progress"),onChange:C=>{e.setAttributes({label_progress:C})}}),(0,h.createElement)(Dr,{key:"page_break_disabled",value:t.page_break_disabled,label:Or("Validation message","jet-form-builder"),help:n("page_break_disabled"),onChange:e=>{l({page_break_disabled:e})}})),(0,h.createElement)(Ur,{title:Or("Advanced","jet-form-builder")},(0,h.createElement)(Nr,null))),(0,h.createElement)("div",{...C,key:r("viewBlock")},(0,h.createElement)("div",{className:"jet-form-builder__next-page-wrap jet-form-builder__bottom-line"},t.add_next_button&&(0,h.createElement)(Gr,{isSecondary:!0,key:"next_page_button",className:"jet-form-builder__next-page"},(0,h.createElement)(qr,{placeholder:"Next...",allowedFormats:[],value:t.label,onChange:e=>l({label:e})})),t.add_prev&&(0,h.createElement)(Gr,{isSecondary:!0,key:"prev_page_button",className:"jet-form-builder__prev-page"},(0,h.createElement)(qr,{placeholder:"Prev...",allowedFormats:[],value:t.prev_label,onChange:e=>l({prev_label:e})})),!t.add_next_button&&!t.add_prev&&(0,h.createElement)("span",null,Or("Form Break","jet-form-builder"))))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Yr("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["jet-forms/submit-field"],isMatch:e=>e.add_next_button,transform:e=>Yr("jet-forms/submit-field",{...e,action_type:"next"}),priority:0},{type:"block",blocks:["core/buttons"],isMatch:e=>e.add_next_button,transform:({label:e=""})=>Yr("core/buttons",{},[Yr("core/button",{text:e})]),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Yr(Xr,{...e}),priority:0},{type:"block",blocks:["jet-forms/submit-field"],isMatch:e=>"next"===e.action_type,transform:e=>Yr(Xr,{...e}),priority:0},{type:"block",blocks:["core/buttons"],transform:(e,C)=>Yr(Xr,{label:C[0]?.attributes?.text||"Next"}),priority:0}]}},Cn=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M47.0752 33.2305V34.748C47.0752 35.5638 47.0023 36.252 46.8564 36.8125C46.7106 37.373 46.501 37.8242 46.2275 38.166C45.9541 38.5078 45.6237 38.7562 45.2363 38.9111C44.8535 39.0615 44.4206 39.1367 43.9375 39.1367C43.5547 39.1367 43.2015 39.0889 42.8779 38.9932C42.5544 38.8975 42.2627 38.7448 42.0029 38.5352C41.7477 38.321 41.529 38.043 41.3467 37.7012C41.1644 37.3594 41.0254 36.9447 40.9297 36.457C40.834 35.9694 40.7861 35.3997 40.7861 34.748V33.2305C40.7861 32.4147 40.859 31.7311 41.0049 31.1797C41.1553 30.6283 41.3672 30.1862 41.6406 29.8535C41.9141 29.5163 42.2422 29.2747 42.625 29.1289C43.0124 28.9831 43.4453 28.9102 43.9238 28.9102C44.3112 28.9102 44.6667 28.958 44.9902 29.0537C45.3184 29.1449 45.61 29.293 45.8652 29.498C46.1204 29.6986 46.3369 29.9674 46.5146 30.3047C46.6969 30.6374 46.8359 31.0452 46.9316 31.5283C47.0273 32.0114 47.0752 32.5788 47.0752 33.2305ZM45.8037 34.9531V33.0186C45.8037 32.5719 45.7764 32.18 45.7217 31.8428C45.6715 31.501 45.5964 31.2093 45.4961 30.9678C45.3958 30.7262 45.2682 30.5303 45.1133 30.3799C44.9629 30.2295 44.7874 30.1201 44.5869 30.0518C44.391 29.9788 44.1699 29.9424 43.9238 29.9424C43.623 29.9424 43.3564 29.9993 43.124 30.1133C42.8916 30.2227 42.6956 30.3981 42.5361 30.6396C42.3812 30.8812 42.2627 31.1979 42.1807 31.5898C42.0986 31.9818 42.0576 32.458 42.0576 33.0186V34.9531C42.0576 35.3997 42.0827 35.7939 42.1328 36.1357C42.1875 36.4775 42.2673 36.7738 42.3721 37.0244C42.4769 37.2705 42.6045 37.4733 42.7549 37.6328C42.9053 37.7923 43.0785 37.9108 43.2744 37.9883C43.4749 38.0612 43.696 38.0977 43.9375 38.0977C44.2474 38.0977 44.5186 38.0384 44.751 37.9199C44.9834 37.8014 45.1771 37.6169 45.332 37.3662C45.4915 37.111 45.61 36.7852 45.6875 36.3887C45.765 35.9876 45.8037 35.5091 45.8037 34.9531ZM52.8584 28.9922V39H51.5938V30.5713L49.0439 31.501V30.3594L52.6602 28.9922H52.8584ZM56.7344 38.3301C56.7344 38.1159 56.8005 37.9359 56.9326 37.79C57.0693 37.6396 57.2653 37.5645 57.5205 37.5645C57.7757 37.5645 57.9694 37.6396 58.1016 37.79C58.2383 37.9359 58.3066 38.1159 58.3066 38.3301C58.3066 38.5397 58.2383 38.7174 58.1016 38.8633C57.9694 39.0091 57.7757 39.082 57.5205 39.082C57.2653 39.082 57.0693 39.0091 56.9326 38.8633C56.8005 38.7174 56.7344 38.5397 56.7344 38.3301ZM71.4248 34.0439V37.6875C71.3018 37.8698 71.1058 38.0749 70.8369 38.3027C70.568 38.526 70.1966 38.722 69.7227 38.8906C69.2533 39.0547 68.6471 39.1367 67.9043 39.1367C67.2982 39.1367 66.7399 39.0319 66.2295 38.8223C65.7236 38.6081 65.2839 38.2982 64.9102 37.8926C64.541 37.4824 64.2539 36.9857 64.0488 36.4023C63.8483 35.8145 63.748 35.1491 63.748 34.4062V33.6338C63.748 32.891 63.8346 32.2279 64.0078 31.6445C64.1855 31.0612 64.4453 30.5667 64.7871 30.1611C65.1289 29.751 65.5482 29.4411 66.0449 29.2314C66.5417 29.0173 67.1113 28.9102 67.7539 28.9102C68.515 28.9102 69.1507 29.0423 69.6611 29.3066C70.1761 29.5664 70.5771 29.9264 70.8643 30.3867C71.1559 30.847 71.3428 31.3711 71.4248 31.959H70.1055C70.0462 31.599 69.9277 31.2708 69.75 30.9746C69.5768 30.6784 69.3285 30.4414 69.0049 30.2637C68.6813 30.0814 68.2643 29.9902 67.7539 29.9902C67.2936 29.9902 66.8949 30.0745 66.5576 30.2432C66.2204 30.4118 65.9424 30.6533 65.7236 30.9678C65.5049 31.2822 65.3408 31.6628 65.2314 32.1094C65.1266 32.556 65.0742 33.0596 65.0742 33.6201V34.4062C65.0742 34.9805 65.1403 35.4932 65.2725 35.9443C65.4092 36.3955 65.6029 36.7806 65.8535 37.0996C66.1042 37.4141 66.4027 37.6533 66.749 37.8174C67.0999 37.9814 67.4873 38.0635 67.9111 38.0635C68.3805 38.0635 68.7611 38.0247 69.0527 37.9473C69.3444 37.8652 69.5723 37.7695 69.7363 37.6602C69.9004 37.5462 70.0257 37.4391 70.1123 37.3389V35.1104H67.8086V34.0439H71.4248ZM76.4902 39.1367C75.9753 39.1367 75.5081 39.0501 75.0889 38.877C74.6742 38.6992 74.3164 38.4508 74.0156 38.1318C73.7194 37.8128 73.4915 37.4346 73.332 36.9971C73.1725 36.5596 73.0928 36.0811 73.0928 35.5615V35.2744C73.0928 34.6729 73.1816 34.1374 73.3594 33.668C73.5371 33.194 73.7786 32.793 74.084 32.4648C74.3893 32.1367 74.7357 31.8883 75.123 31.7197C75.5104 31.5511 75.9115 31.4668 76.3262 31.4668C76.8548 31.4668 77.3105 31.5579 77.6934 31.7402C78.0807 31.9225 78.3975 32.1777 78.6436 32.5059C78.8896 32.8294 79.0719 33.2122 79.1904 33.6543C79.3089 34.0918 79.3682 34.5703 79.3682 35.0898V35.6572H73.8447V34.625H78.1035V34.5293C78.0853 34.2012 78.0169 33.8822 77.8984 33.5723C77.7845 33.2624 77.6022 33.0072 77.3516 32.8066C77.1009 32.6061 76.7591 32.5059 76.3262 32.5059C76.0391 32.5059 75.7747 32.5674 75.5332 32.6904C75.2917 32.8089 75.0843 32.9867 74.9111 33.2236C74.738 33.4606 74.6035 33.75 74.5078 34.0918C74.4121 34.4336 74.3643 34.8278 74.3643 35.2744V35.5615C74.3643 35.9124 74.4121 36.2428 74.5078 36.5527C74.6081 36.8581 74.7516 37.127 74.9385 37.3594C75.1299 37.5918 75.36 37.7741 75.6289 37.9062C75.9023 38.0384 76.2122 38.1045 76.5586 38.1045C77.0052 38.1045 77.3835 38.0133 77.6934 37.8311C78.0033 37.6488 78.2744 37.4049 78.5068 37.0996L79.2725 37.708C79.113 37.9495 78.9102 38.1797 78.6641 38.3984C78.418 38.6172 78.1149 38.7949 77.7549 38.9316C77.3994 39.0684 76.9779 39.1367 76.4902 39.1367ZM82.1094 33.1826V39H80.8447V31.6035H82.041L82.1094 33.1826ZM81.8086 35.0215L81.2822 35.001C81.2868 34.4951 81.362 34.028 81.5078 33.5996C81.6536 33.1667 81.8587 32.7907 82.123 32.4717C82.3874 32.1527 82.7018 31.9066 83.0664 31.7334C83.4355 31.5557 83.8434 31.4668 84.29 31.4668C84.6546 31.4668 84.9827 31.5169 85.2744 31.6172C85.5661 31.7129 85.8145 31.8678 86.0195 32.082C86.2292 32.2962 86.3887 32.5742 86.498 32.916C86.6074 33.2533 86.6621 33.6657 86.6621 34.1533V39H85.3906V34.1396C85.3906 33.7523 85.3337 33.4424 85.2197 33.21C85.1058 32.973 84.9395 32.8021 84.7207 32.6973C84.502 32.5879 84.2331 32.5332 83.9141 32.5332C83.5996 32.5332 83.3125 32.5993 83.0527 32.7314C82.7975 32.8636 82.5765 33.0459 82.3896 33.2783C82.2074 33.5107 82.0638 33.7773 81.959 34.0781C81.8587 34.3743 81.8086 34.6888 81.8086 35.0215ZM91.6523 39.1367C91.1374 39.1367 90.6702 39.0501 90.251 38.877C89.8363 38.6992 89.4785 38.4508 89.1777 38.1318C88.8815 37.8128 88.6536 37.4346 88.4941 36.9971C88.3346 36.5596 88.2549 36.0811 88.2549 35.5615V35.2744C88.2549 34.6729 88.3438 34.1374 88.5215 33.668C88.6992 33.194 88.9408 32.793 89.2461 32.4648C89.5514 32.1367 89.8978 31.8883 90.2852 31.7197C90.6725 31.5511 91.0736 31.4668 91.4883 31.4668C92.0169 31.4668 92.4727 31.5579 92.8555 31.7402C93.2428 31.9225 93.5596 32.1777 93.8057 32.5059C94.0518 32.8294 94.234 33.2122 94.3525 33.6543C94.471 34.0918 94.5303 34.5703 94.5303 35.0898V35.6572H89.0068V34.625H93.2656V34.5293C93.2474 34.2012 93.179 33.8822 93.0605 33.5723C92.9466 33.2624 92.7643 33.0072 92.5137 32.8066C92.263 32.6061 91.9212 32.5059 91.4883 32.5059C91.2012 32.5059 90.9368 32.5674 90.6953 32.6904C90.4538 32.8089 90.2464 32.9867 90.0732 33.2236C89.9001 33.4606 89.7656 33.75 89.6699 34.0918C89.5742 34.4336 89.5264 34.8278 89.5264 35.2744V35.5615C89.5264 35.9124 89.5742 36.2428 89.6699 36.5527C89.7702 36.8581 89.9137 37.127 90.1006 37.3594C90.292 37.5918 90.5221 37.7741 90.791 37.9062C91.0645 38.0384 91.3743 38.1045 91.7207 38.1045C92.1673 38.1045 92.5456 38.0133 92.8555 37.8311C93.1654 37.6488 93.4365 37.4049 93.6689 37.0996L94.4346 37.708C94.2751 37.9495 94.0723 38.1797 93.8262 38.3984C93.5801 38.6172 93.277 38.7949 92.917 38.9316C92.5615 39.0684 92.14 39.1367 91.6523 39.1367ZM97.2715 32.7656V39H96.0068V31.6035H97.2373L97.2715 32.7656ZM99.582 31.5625L99.5752 32.7383C99.4704 32.7155 99.3701 32.7018 99.2744 32.6973C99.1833 32.6882 99.0785 32.6836 98.96 32.6836C98.6683 32.6836 98.4108 32.7292 98.1875 32.8203C97.9642 32.9115 97.7751 33.0391 97.6201 33.2031C97.4652 33.3672 97.3421 33.5632 97.251 33.791C97.1644 34.0143 97.1074 34.2604 97.0801 34.5293L96.7246 34.7344C96.7246 34.2878 96.7679 33.8685 96.8545 33.4766C96.9456 33.0846 97.0846 32.7383 97.2715 32.4375C97.4583 32.1322 97.6953 31.8952 97.9824 31.7266C98.2741 31.5534 98.6204 31.4668 99.0215 31.4668C99.1126 31.4668 99.2174 31.4782 99.3359 31.501C99.4544 31.5192 99.5365 31.5397 99.582 31.5625ZM104.839 37.7354V33.9277C104.839 33.6361 104.78 33.3831 104.661 33.1689C104.547 32.9502 104.374 32.7816 104.142 32.6631C103.909 32.5446 103.622 32.4854 103.28 32.4854C102.961 32.4854 102.681 32.54 102.439 32.6494C102.202 32.7588 102.016 32.9023 101.879 33.0801C101.747 33.2578 101.681 33.4492 101.681 33.6543H100.416C100.416 33.39 100.484 33.1279 100.621 32.8682C100.758 32.6084 100.954 32.3737 101.209 32.1641C101.469 31.9499 101.779 31.7812 102.139 31.6582C102.503 31.5306 102.909 31.4668 103.355 31.4668C103.893 31.4668 104.367 31.5579 104.777 31.7402C105.192 31.9225 105.516 32.1982 105.748 32.5674C105.985 32.932 106.104 33.39 106.104 33.9414V37.3867C106.104 37.6328 106.124 37.8949 106.165 38.1729C106.211 38.4508 106.277 38.6901 106.363 38.8906V39H105.044C104.98 38.8542 104.93 38.6605 104.894 38.4189C104.857 38.1729 104.839 37.945 104.839 37.7354ZM105.058 34.5156L105.071 35.4043H103.793C103.433 35.4043 103.112 35.4339 102.829 35.4932C102.547 35.5479 102.31 35.6322 102.118 35.7461C101.927 35.86 101.781 36.0036 101.681 36.1768C101.58 36.3454 101.53 36.5436 101.53 36.7715C101.53 37.0039 101.583 37.2158 101.688 37.4072C101.792 37.5986 101.95 37.7513 102.159 37.8652C102.373 37.9746 102.635 38.0293 102.945 38.0293C103.333 38.0293 103.674 37.9473 103.971 37.7832C104.267 37.6191 104.502 37.4186 104.675 37.1816C104.853 36.9447 104.948 36.7145 104.962 36.4912L105.502 37.0996C105.47 37.291 105.383 37.5029 105.242 37.7354C105.101 37.9678 104.912 38.1911 104.675 38.4053C104.442 38.6149 104.164 38.7904 103.841 38.9316C103.522 39.0684 103.162 39.1367 102.761 39.1367C102.259 39.1367 101.82 39.0387 101.441 38.8428C101.068 38.6468 100.776 38.3848 100.566 38.0566C100.361 37.724 100.259 37.3525 100.259 36.9424C100.259 36.5459 100.336 36.1973 100.491 35.8965C100.646 35.5911 100.869 35.3382 101.161 35.1377C101.453 34.9326 101.804 34.7777 102.214 34.6729C102.624 34.568 103.082 34.5156 103.588 34.5156H105.058ZM109.467 28.5V39H108.195V28.5H109.467ZM116.344 31.6035V39H115.072V31.6035H116.344ZM114.977 29.6416C114.977 29.4365 115.038 29.2633 115.161 29.1221C115.289 28.9808 115.476 28.9102 115.722 28.9102C115.963 28.9102 116.148 28.9808 116.275 29.1221C116.408 29.2633 116.474 29.4365 116.474 29.6416C116.474 29.8376 116.408 30.0062 116.275 30.1475C116.148 30.2842 115.963 30.3525 115.722 30.3525C115.476 30.3525 115.289 30.2842 115.161 30.1475C115.038 30.0062 114.977 29.8376 114.977 29.6416ZM119.639 33.1826V39H118.374V31.6035H119.57L119.639 33.1826ZM119.338 35.0215L118.812 35.001C118.816 34.4951 118.891 34.028 119.037 33.5996C119.183 33.1667 119.388 32.7907 119.652 32.4717C119.917 32.1527 120.231 31.9066 120.596 31.7334C120.965 31.5557 121.373 31.4668 121.819 31.4668C122.184 31.4668 122.512 31.5169 122.804 31.6172C123.095 31.7129 123.344 31.8678 123.549 32.082C123.758 32.2962 123.918 32.5742 124.027 32.916C124.137 33.2533 124.191 33.6657 124.191 34.1533V39H122.92V34.1396C122.92 33.7523 122.863 33.4424 122.749 33.21C122.635 32.973 122.469 32.8021 122.25 32.6973C122.031 32.5879 121.762 32.5332 121.443 32.5332C121.129 32.5332 120.842 32.5993 120.582 32.7314C120.327 32.8636 120.106 33.0459 119.919 33.2783C119.737 33.5107 119.593 33.7773 119.488 34.0781C119.388 34.3743 119.338 34.6888 119.338 35.0215ZM127.999 39H126.734V30.8242C126.734 30.291 126.83 29.8421 127.021 29.4775C127.217 29.1084 127.498 28.8304 127.862 28.6436C128.227 28.4521 128.66 28.3564 129.161 28.3564C129.307 28.3564 129.453 28.3656 129.599 28.3838C129.749 28.402 129.895 28.4294 130.036 28.4658L129.968 29.498C129.872 29.4753 129.763 29.4593 129.64 29.4502C129.521 29.4411 129.403 29.4365 129.284 29.4365C129.015 29.4365 128.783 29.4912 128.587 29.6006C128.396 29.7054 128.25 29.8604 128.149 30.0654C128.049 30.2705 127.999 30.5234 127.999 30.8242V39ZM129.571 31.6035V32.5742H125.565V31.6035H129.571ZM130.645 35.3838V35.2266C130.645 34.6934 130.722 34.1989 130.877 33.7432C131.032 33.2829 131.255 32.8841 131.547 32.5469C131.839 32.2051 132.192 31.9408 132.606 31.7539C133.021 31.5625 133.486 31.4668 134.001 31.4668C134.521 31.4668 134.988 31.5625 135.402 31.7539C135.822 31.9408 136.177 32.2051 136.469 32.5469C136.765 32.8841 136.991 33.2829 137.146 33.7432C137.3 34.1989 137.378 34.6934 137.378 35.2266V35.3838C137.378 35.917 137.3 36.4115 137.146 36.8672C136.991 37.3229 136.765 37.7217 136.469 38.0635C136.177 38.4007 135.824 38.665 135.409 38.8564C134.999 39.0433 134.534 39.1367 134.015 39.1367C133.495 39.1367 133.028 39.0433 132.613 38.8564C132.199 38.665 131.843 38.4007 131.547 38.0635C131.255 37.7217 131.032 37.3229 130.877 36.8672C130.722 36.4115 130.645 35.917 130.645 35.3838ZM131.909 35.2266V35.3838C131.909 35.7529 131.952 36.1016 132.039 36.4297C132.126 36.7533 132.256 37.0404 132.429 37.291C132.606 37.5417 132.827 37.7399 133.092 37.8857C133.356 38.027 133.664 38.0977 134.015 38.0977C134.361 38.0977 134.664 38.027 134.924 37.8857C135.188 37.7399 135.407 37.5417 135.58 37.291C135.753 37.0404 135.883 36.7533 135.97 36.4297C136.061 36.1016 136.106 35.7529 136.106 35.3838V35.2266C136.106 34.862 136.061 34.5179 135.97 34.1943C135.883 33.8662 135.751 33.5768 135.573 33.3262C135.4 33.071 135.181 32.8704 134.917 32.7246C134.657 32.5788 134.352 32.5059 134.001 32.5059C133.655 32.5059 133.349 32.5788 133.085 32.7246C132.825 32.8704 132.606 33.071 132.429 33.3262C132.256 33.5768 132.126 33.8662 132.039 34.1943C131.952 34.5179 131.909 34.862 131.909 35.2266ZM140.229 32.7656V39H138.964V31.6035H140.194L140.229 32.7656ZM142.539 31.5625L142.532 32.7383C142.427 32.7155 142.327 32.7018 142.231 32.6973C142.14 32.6882 142.035 32.6836 141.917 32.6836C141.625 32.6836 141.368 32.7292 141.145 32.8203C140.921 32.9115 140.732 33.0391 140.577 33.2031C140.422 33.3672 140.299 33.5632 140.208 33.791C140.121 34.0143 140.064 34.2604 140.037 34.5293L139.682 34.7344C139.682 34.2878 139.725 33.8685 139.812 33.4766C139.903 33.0846 140.042 32.7383 140.229 32.4375C140.415 32.1322 140.652 31.8952 140.939 31.7266C141.231 31.5534 141.577 31.4668 141.979 31.4668C142.07 31.4668 142.174 31.4782 142.293 31.501C142.411 31.5192 142.493 31.5397 142.539 31.5625ZM144.966 33.0732V39H143.694V31.6035H144.897L144.966 33.0732ZM144.706 35.0215L144.118 35.001C144.123 34.4951 144.189 34.028 144.316 33.5996C144.444 33.1667 144.633 32.7907 144.884 32.4717C145.134 32.1527 145.447 31.9066 145.82 31.7334C146.194 31.5557 146.627 31.4668 147.119 31.4668C147.465 31.4668 147.785 31.5169 148.076 31.6172C148.368 31.7129 148.621 31.8656 148.835 32.0752C149.049 32.2848 149.215 32.5537 149.334 32.8818C149.452 33.21 149.512 33.6064 149.512 34.0713V39H148.247V34.1328C148.247 33.7454 148.181 33.4355 148.049 33.2031C147.921 32.9707 147.739 32.8021 147.502 32.6973C147.265 32.5879 146.987 32.5332 146.668 32.5332C146.294 32.5332 145.982 32.5993 145.731 32.7314C145.481 32.8636 145.28 33.0459 145.13 33.2783C144.979 33.5107 144.87 33.7773 144.802 34.0781C144.738 34.3743 144.706 34.6888 144.706 35.0215ZM149.498 34.3242L148.65 34.584C148.655 34.1784 148.721 33.7887 148.849 33.415C148.981 33.0413 149.17 32.7087 149.416 32.417C149.667 32.1253 149.974 31.8952 150.339 31.7266C150.703 31.5534 151.12 31.4668 151.59 31.4668C151.986 31.4668 152.337 31.5192 152.643 31.624C152.952 31.7288 153.212 31.8906 153.422 32.1094C153.636 32.3236 153.798 32.5993 153.907 32.9365C154.017 33.2738 154.071 33.6748 154.071 34.1396V39H152.8V34.126C152.8 33.7113 152.734 33.39 152.602 33.1621C152.474 32.9297 152.292 32.7679 152.055 32.6768C151.822 32.5811 151.544 32.5332 151.221 32.5332C150.943 32.5332 150.697 32.5811 150.482 32.6768C150.268 32.7725 150.088 32.9046 149.942 33.0732C149.797 33.2373 149.685 33.4264 149.607 33.6406C149.535 33.8548 149.498 34.0827 149.498 34.3242ZM160.347 37.7354V33.9277C160.347 33.6361 160.287 33.3831 160.169 33.1689C160.055 32.9502 159.882 32.7816 159.649 32.6631C159.417 32.5446 159.13 32.4854 158.788 32.4854C158.469 32.4854 158.189 32.54 157.947 32.6494C157.71 32.7588 157.523 32.9023 157.387 33.0801C157.255 33.2578 157.188 33.4492 157.188 33.6543H155.924C155.924 33.39 155.992 33.1279 156.129 32.8682C156.266 32.6084 156.462 32.3737 156.717 32.1641C156.977 31.9499 157.286 31.7812 157.646 31.6582C158.011 31.5306 158.417 31.4668 158.863 31.4668C159.401 31.4668 159.875 31.5579 160.285 31.7402C160.7 31.9225 161.023 32.1982 161.256 32.5674C161.493 32.932 161.611 33.39 161.611 33.9414V37.3867C161.611 37.6328 161.632 37.8949 161.673 38.1729C161.718 38.4508 161.785 38.6901 161.871 38.8906V39H160.552C160.488 38.8542 160.438 38.6605 160.401 38.4189C160.365 38.1729 160.347 37.945 160.347 37.7354ZM160.565 34.5156L160.579 35.4043H159.301C158.941 35.4043 158.619 35.4339 158.337 35.4932C158.054 35.5479 157.817 35.6322 157.626 35.7461C157.435 35.86 157.289 36.0036 157.188 36.1768C157.088 36.3454 157.038 36.5436 157.038 36.7715C157.038 37.0039 157.09 37.2158 157.195 37.4072C157.3 37.5986 157.457 37.7513 157.667 37.8652C157.881 37.9746 158.143 38.0293 158.453 38.0293C158.84 38.0293 159.182 37.9473 159.479 37.7832C159.775 37.6191 160.009 37.4186 160.183 37.1816C160.36 36.9447 160.456 36.7145 160.47 36.4912L161.01 37.0996C160.978 37.291 160.891 37.5029 160.75 37.7354C160.609 37.9678 160.42 38.1911 160.183 38.4053C159.95 38.6149 159.672 38.7904 159.349 38.9316C159.03 39.0684 158.67 39.1367 158.269 39.1367C157.767 39.1367 157.327 39.0387 156.949 38.8428C156.576 38.6468 156.284 38.3848 156.074 38.0566C155.869 37.724 155.767 37.3525 155.767 36.9424C155.767 36.5459 155.844 36.1973 155.999 35.8965C156.154 35.5911 156.377 35.3382 156.669 35.1377C156.961 34.9326 157.312 34.7777 157.722 34.6729C158.132 34.568 158.59 34.5156 159.096 34.5156H160.565ZM166.697 31.6035V32.5742H162.698V31.6035H166.697ZM164.052 29.8057H165.316V37.168C165.316 37.4186 165.355 37.6077 165.433 37.7354C165.51 37.863 165.61 37.9473 165.733 37.9883C165.856 38.0293 165.989 38.0498 166.13 38.0498C166.235 38.0498 166.344 38.0407 166.458 38.0225C166.576 37.9997 166.665 37.9814 166.725 37.9678L166.731 39C166.631 39.0319 166.499 39.0615 166.335 39.0889C166.175 39.1208 165.982 39.1367 165.754 39.1367C165.444 39.1367 165.159 39.0752 164.899 38.9521C164.64 38.8291 164.432 38.624 164.277 38.3369C164.127 38.0452 164.052 37.6533 164.052 37.1611V29.8057ZM169.555 31.6035V39H168.283V31.6035H169.555ZM168.188 29.6416C168.188 29.4365 168.249 29.2633 168.372 29.1221C168.5 28.9808 168.687 28.9102 168.933 28.9102C169.174 28.9102 169.359 28.9808 169.486 29.1221C169.618 29.2633 169.685 29.4365 169.685 29.6416C169.685 29.8376 169.618 30.0062 169.486 30.1475C169.359 30.2842 169.174 30.3525 168.933 30.3525C168.687 30.3525 168.5 30.2842 168.372 30.1475C168.249 30.0062 168.188 29.8376 168.188 29.6416ZM171.25 35.3838V35.2266C171.25 34.6934 171.327 34.1989 171.482 33.7432C171.637 33.2829 171.861 32.8841 172.152 32.5469C172.444 32.2051 172.797 31.9408 173.212 31.7539C173.627 31.5625 174.091 31.4668 174.606 31.4668C175.126 31.4668 175.593 31.5625 176.008 31.7539C176.427 31.9408 176.783 32.2051 177.074 32.5469C177.37 32.8841 177.596 33.2829 177.751 33.7432C177.906 34.1989 177.983 34.6934 177.983 35.2266V35.3838C177.983 35.917 177.906 36.4115 177.751 36.8672C177.596 37.3229 177.37 37.7217 177.074 38.0635C176.783 38.4007 176.429 38.665 176.015 38.8564C175.604 39.0433 175.14 39.1367 174.62 39.1367C174.101 39.1367 173.633 39.0433 173.219 38.8564C172.804 38.665 172.449 38.4007 172.152 38.0635C171.861 37.7217 171.637 37.3229 171.482 36.8672C171.327 36.4115 171.25 35.917 171.25 35.3838ZM172.515 35.2266V35.3838C172.515 35.7529 172.558 36.1016 172.645 36.4297C172.731 36.7533 172.861 37.0404 173.034 37.291C173.212 37.5417 173.433 37.7399 173.697 37.8857C173.962 38.027 174.269 38.0977 174.62 38.0977C174.966 38.0977 175.27 38.027 175.529 37.8857C175.794 37.7399 176.012 37.5417 176.186 37.291C176.359 37.0404 176.489 36.7533 176.575 36.4297C176.666 36.1016 176.712 35.7529 176.712 35.3838V35.2266C176.712 34.862 176.666 34.5179 176.575 34.1943C176.489 33.8662 176.356 33.5768 176.179 33.3262C176.006 33.071 175.787 32.8704 175.522 32.7246C175.263 32.5788 174.957 32.5059 174.606 32.5059C174.26 32.5059 173.955 32.5788 173.69 32.7246C173.431 32.8704 173.212 33.071 173.034 33.3262C172.861 33.5768 172.731 33.8662 172.645 34.1943C172.558 34.5179 172.515 34.862 172.515 35.2266ZM180.834 33.1826V39H179.569V31.6035H180.766L180.834 33.1826ZM180.533 35.0215L180.007 35.001C180.011 34.4951 180.087 34.028 180.232 33.5996C180.378 33.1667 180.583 32.7907 180.848 32.4717C181.112 32.1527 181.426 31.9066 181.791 31.7334C182.16 31.5557 182.568 31.4668 183.015 31.4668C183.379 31.4668 183.707 31.5169 183.999 31.6172C184.291 31.7129 184.539 31.8678 184.744 32.082C184.954 32.2962 185.113 32.5742 185.223 32.916C185.332 33.2533 185.387 33.6657 185.387 34.1533V39H184.115V34.1396C184.115 33.7523 184.058 33.4424 183.944 33.21C183.83 32.973 183.664 32.8021 183.445 32.6973C183.227 32.5879 182.958 32.5332 182.639 32.5332C182.324 32.5332 182.037 32.5993 181.777 32.7314C181.522 32.8636 181.301 33.0459 181.114 33.2783C180.932 33.5107 180.788 33.7773 180.684 34.0781C180.583 34.3743 180.533 34.6888 180.533 35.0215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15",y:"52",width:"268",height:"40",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M258 72H40",stroke:"#4272F9",strokeWidth:"3",strokeLinecap:"round"}),(0,h.createElement)("path",{d:"M47.0752 109.23V110.748C47.0752 111.564 47.0023 112.252 46.8564 112.812C46.7106 113.373 46.501 113.824 46.2275 114.166C45.9541 114.508 45.6237 114.756 45.2363 114.911C44.8535 115.062 44.4206 115.137 43.9375 115.137C43.5547 115.137 43.2015 115.089 42.8779 114.993C42.5544 114.897 42.2627 114.745 42.0029 114.535C41.7477 114.321 41.529 114.043 41.3467 113.701C41.1644 113.359 41.0254 112.945 40.9297 112.457C40.834 111.969 40.7861 111.4 40.7861 110.748V109.23C40.7861 108.415 40.859 107.731 41.0049 107.18C41.1553 106.628 41.3672 106.186 41.6406 105.854C41.9141 105.516 42.2422 105.275 42.625 105.129C43.0124 104.983 43.4453 104.91 43.9238 104.91C44.3112 104.91 44.6667 104.958 44.9902 105.054C45.3184 105.145 45.61 105.293 45.8652 105.498C46.1204 105.699 46.3369 105.967 46.5146 106.305C46.6969 106.637 46.8359 107.045 46.9316 107.528C47.0273 108.011 47.0752 108.579 47.0752 109.23ZM45.8037 110.953V109.019C45.8037 108.572 45.7764 108.18 45.7217 107.843C45.6715 107.501 45.5964 107.209 45.4961 106.968C45.3958 106.726 45.2682 106.53 45.1133 106.38C44.9629 106.229 44.7874 106.12 44.5869 106.052C44.391 105.979 44.1699 105.942 43.9238 105.942C43.623 105.942 43.3564 105.999 43.124 106.113C42.8916 106.223 42.6956 106.398 42.5361 106.64C42.3812 106.881 42.2627 107.198 42.1807 107.59C42.0986 107.982 42.0576 108.458 42.0576 109.019V110.953C42.0576 111.4 42.0827 111.794 42.1328 112.136C42.1875 112.478 42.2673 112.774 42.3721 113.024C42.4769 113.271 42.6045 113.473 42.7549 113.633C42.9053 113.792 43.0785 113.911 43.2744 113.988C43.4749 114.061 43.696 114.098 43.9375 114.098C44.2474 114.098 44.5186 114.038 44.751 113.92C44.9834 113.801 45.1771 113.617 45.332 113.366C45.4915 113.111 45.61 112.785 45.6875 112.389C45.765 111.988 45.8037 111.509 45.8037 110.953ZM55.2236 113.961V115H48.709V114.091L51.9697 110.461C52.3708 110.014 52.6807 109.636 52.8994 109.326C53.1227 109.012 53.2777 108.731 53.3643 108.485C53.4554 108.235 53.501 107.979 53.501 107.72C53.501 107.392 53.4326 107.095 53.2959 106.831C53.1637 106.562 52.9678 106.348 52.708 106.188C52.4482 106.029 52.1338 105.949 51.7646 105.949C51.3226 105.949 50.9535 106.036 50.6572 106.209C50.3656 106.378 50.1468 106.615 50.001 106.92C49.8551 107.225 49.7822 107.576 49.7822 107.973H48.5176C48.5176 107.412 48.6406 106.899 48.8867 106.435C49.1328 105.97 49.4974 105.601 49.9805 105.327C50.4635 105.049 51.0583 104.91 51.7646 104.91C52.3936 104.91 52.9313 105.022 53.3779 105.245C53.8245 105.464 54.1663 105.774 54.4033 106.175C54.6449 106.571 54.7656 107.036 54.7656 107.569C54.7656 107.861 54.7155 108.157 54.6152 108.458C54.5195 108.754 54.3851 109.05 54.2119 109.347C54.0433 109.643 53.8451 109.935 53.6172 110.222C53.3939 110.509 53.1546 110.791 52.8994 111.069L50.2334 113.961H55.2236ZM56.7344 114.33C56.7344 114.116 56.8005 113.936 56.9326 113.79C57.0693 113.64 57.2653 113.564 57.5205 113.564C57.7757 113.564 57.9694 113.64 58.1016 113.79C58.2383 113.936 58.3066 114.116 58.3066 114.33C58.3066 114.54 58.2383 114.717 58.1016 114.863C57.9694 115.009 57.7757 115.082 57.5205 115.082C57.2653 115.082 57.0693 115.009 56.9326 114.863C56.8005 114.717 56.7344 114.54 56.7344 114.33ZM67.7402 111.097H65.0811V110.023H67.7402C68.2552 110.023 68.6722 109.941 68.9912 109.777C69.3102 109.613 69.5426 109.385 69.6885 109.094C69.8389 108.802 69.9141 108.469 69.9141 108.096C69.9141 107.754 69.8389 107.433 69.6885 107.132C69.5426 106.831 69.3102 106.59 68.9912 106.407C68.6722 106.22 68.2552 106.127 67.7402 106.127H65.3887V115H64.0693V105.047H67.7402C68.4922 105.047 69.1279 105.177 69.6475 105.437C70.167 105.696 70.5612 106.056 70.8301 106.517C71.099 106.972 71.2334 107.494 71.2334 108.082C71.2334 108.72 71.099 109.265 70.8301 109.716C70.5612 110.167 70.167 110.511 69.6475 110.748C69.1279 110.98 68.4922 111.097 67.7402 111.097ZM75.6836 115.137C75.1686 115.137 74.7015 115.05 74.2822 114.877C73.8675 114.699 73.5098 114.451 73.209 114.132C72.9128 113.813 72.6849 113.435 72.5254 112.997C72.3659 112.56 72.2861 112.081 72.2861 111.562V111.274C72.2861 110.673 72.375 110.137 72.5527 109.668C72.7305 109.194 72.972 108.793 73.2773 108.465C73.5827 108.137 73.929 107.888 74.3164 107.72C74.7038 107.551 75.1048 107.467 75.5195 107.467C76.0482 107.467 76.5039 107.558 76.8867 107.74C77.2741 107.923 77.5908 108.178 77.8369 108.506C78.083 108.829 78.2653 109.212 78.3838 109.654C78.5023 110.092 78.5615 110.57 78.5615 111.09V111.657H73.0381V110.625H77.2969V110.529C77.2786 110.201 77.2103 109.882 77.0918 109.572C76.9779 109.262 76.7956 109.007 76.5449 108.807C76.2943 108.606 75.9525 108.506 75.5195 108.506C75.2324 108.506 74.9681 108.567 74.7266 108.69C74.485 108.809 74.2777 108.987 74.1045 109.224C73.9313 109.461 73.7969 109.75 73.7012 110.092C73.6055 110.434 73.5576 110.828 73.5576 111.274V111.562C73.5576 111.912 73.6055 112.243 73.7012 112.553C73.8014 112.858 73.945 113.127 74.1318 113.359C74.3232 113.592 74.5534 113.774 74.8223 113.906C75.0957 114.038 75.4056 114.104 75.752 114.104C76.1986 114.104 76.5768 114.013 76.8867 113.831C77.1966 113.649 77.4678 113.405 77.7002 113.1L78.4658 113.708C78.3063 113.95 78.1035 114.18 77.8574 114.398C77.6113 114.617 77.3083 114.795 76.9482 114.932C76.5928 115.068 76.1712 115.137 75.6836 115.137ZM81.3027 108.766V115H80.0381V107.604H81.2686L81.3027 108.766ZM83.6133 107.562L83.6064 108.738C83.5016 108.715 83.4014 108.702 83.3057 108.697C83.2145 108.688 83.1097 108.684 82.9912 108.684C82.6995 108.684 82.4421 108.729 82.2188 108.82C81.9954 108.911 81.8063 109.039 81.6514 109.203C81.4964 109.367 81.3734 109.563 81.2822 109.791C81.1956 110.014 81.1387 110.26 81.1113 110.529L80.7559 110.734C80.7559 110.288 80.7992 109.868 80.8857 109.477C80.9769 109.085 81.1159 108.738 81.3027 108.438C81.4896 108.132 81.7266 107.895 82.0137 107.727C82.3053 107.553 82.6517 107.467 83.0527 107.467C83.1439 107.467 83.2487 107.478 83.3672 107.501C83.4857 107.519 83.5677 107.54 83.6133 107.562ZM89.0889 113.038C89.0889 112.856 89.0479 112.687 88.9658 112.532C88.8883 112.373 88.7266 112.229 88.4805 112.102C88.2389 111.969 87.8743 111.855 87.3867 111.76C86.9766 111.673 86.6051 111.571 86.2725 111.452C85.9443 111.334 85.6641 111.19 85.4316 111.021C85.2038 110.853 85.0283 110.655 84.9053 110.427C84.7822 110.199 84.7207 109.932 84.7207 109.627C84.7207 109.335 84.7845 109.06 84.9121 108.8C85.0443 108.54 85.2288 108.31 85.4658 108.109C85.7074 107.909 85.9967 107.752 86.334 107.638C86.6712 107.524 87.0472 107.467 87.4619 107.467C88.0544 107.467 88.5602 107.572 88.9795 107.781C89.3988 107.991 89.7201 108.271 89.9434 108.622C90.1667 108.968 90.2783 109.354 90.2783 109.777H89.0137C89.0137 109.572 88.9521 109.374 88.8291 109.183C88.7106 108.987 88.5352 108.825 88.3027 108.697C88.0749 108.57 87.7946 108.506 87.4619 108.506C87.111 108.506 86.8262 108.561 86.6074 108.67C86.3932 108.775 86.236 108.909 86.1357 109.073C86.04 109.237 85.9922 109.41 85.9922 109.593C85.9922 109.729 86.015 109.853 86.0605 109.962C86.1107 110.067 86.1973 110.165 86.3203 110.256C86.4434 110.342 86.6165 110.424 86.8398 110.502C87.0632 110.579 87.348 110.657 87.6943 110.734C88.3005 110.871 88.7995 111.035 89.1914 111.227C89.5833 111.418 89.875 111.653 90.0664 111.931C90.2578 112.209 90.3535 112.546 90.3535 112.942C90.3535 113.266 90.2852 113.562 90.1484 113.831C90.0163 114.1 89.8226 114.332 89.5674 114.528C89.3167 114.72 89.016 114.87 88.665 114.979C88.3187 115.084 87.929 115.137 87.4961 115.137C86.8444 115.137 86.293 115.021 85.8418 114.788C85.3906 114.556 85.0488 114.255 84.8164 113.886C84.584 113.517 84.4678 113.127 84.4678 112.717H85.7393C85.7575 113.063 85.8577 113.339 86.04 113.544C86.2223 113.744 86.4456 113.888 86.71 113.975C86.9743 114.057 87.2363 114.098 87.4961 114.098C87.8424 114.098 88.1318 114.052 88.3643 113.961C88.6012 113.87 88.7812 113.744 88.9043 113.585C89.0273 113.425 89.0889 113.243 89.0889 113.038ZM91.6797 111.384V111.227C91.6797 110.693 91.7572 110.199 91.9121 109.743C92.0671 109.283 92.2904 108.884 92.582 108.547C92.8737 108.205 93.2269 107.941 93.6416 107.754C94.0563 107.562 94.5212 107.467 95.0361 107.467C95.5557 107.467 96.0228 107.562 96.4375 107.754C96.8568 107.941 97.2122 108.205 97.5039 108.547C97.8001 108.884 98.0257 109.283 98.1807 109.743C98.3356 110.199 98.4131 110.693 98.4131 111.227V111.384C98.4131 111.917 98.3356 112.411 98.1807 112.867C98.0257 113.323 97.8001 113.722 97.5039 114.063C97.2122 114.401 96.859 114.665 96.4443 114.856C96.0342 115.043 95.5693 115.137 95.0498 115.137C94.5303 115.137 94.0632 115.043 93.6484 114.856C93.2337 114.665 92.8783 114.401 92.582 114.063C92.2904 113.722 92.0671 113.323 91.9121 112.867C91.7572 112.411 91.6797 111.917 91.6797 111.384ZM92.9443 111.227V111.384C92.9443 111.753 92.9876 112.102 93.0742 112.43C93.1608 112.753 93.2907 113.04 93.4639 113.291C93.6416 113.542 93.8626 113.74 94.127 113.886C94.3913 114.027 94.6989 114.098 95.0498 114.098C95.3962 114.098 95.6992 114.027 95.959 113.886C96.2233 113.74 96.4421 113.542 96.6152 113.291C96.7884 113.04 96.9183 112.753 97.0049 112.43C97.096 112.102 97.1416 111.753 97.1416 111.384V111.227C97.1416 110.862 97.096 110.518 97.0049 110.194C96.9183 109.866 96.7861 109.577 96.6084 109.326C96.4352 109.071 96.2165 108.87 95.9521 108.725C95.6924 108.579 95.387 108.506 95.0361 108.506C94.6898 108.506 94.3844 108.579 94.1201 108.725C93.8604 108.87 93.6416 109.071 93.4639 109.326C93.2907 109.577 93.1608 109.866 93.0742 110.194C92.9876 110.518 92.9443 110.862 92.9443 111.227ZM101.264 109.183V115H99.999V107.604H101.195L101.264 109.183ZM100.963 111.021L100.437 111.001C100.441 110.495 100.516 110.028 100.662 109.6C100.808 109.167 101.013 108.791 101.277 108.472C101.542 108.153 101.856 107.907 102.221 107.733C102.59 107.556 102.998 107.467 103.444 107.467C103.809 107.467 104.137 107.517 104.429 107.617C104.72 107.713 104.969 107.868 105.174 108.082C105.383 108.296 105.543 108.574 105.652 108.916C105.762 109.253 105.816 109.666 105.816 110.153V115H104.545V110.14C104.545 109.752 104.488 109.442 104.374 109.21C104.26 108.973 104.094 108.802 103.875 108.697C103.656 108.588 103.387 108.533 103.068 108.533C102.754 108.533 102.467 108.599 102.207 108.731C101.952 108.864 101.731 109.046 101.544 109.278C101.362 109.511 101.218 109.777 101.113 110.078C101.013 110.374 100.963 110.689 100.963 111.021ZM112.099 113.735V109.928C112.099 109.636 112.039 109.383 111.921 109.169C111.807 108.95 111.634 108.782 111.401 108.663C111.169 108.545 110.882 108.485 110.54 108.485C110.221 108.485 109.941 108.54 109.699 108.649C109.462 108.759 109.275 108.902 109.139 109.08C109.007 109.258 108.94 109.449 108.94 109.654H107.676C107.676 109.39 107.744 109.128 107.881 108.868C108.018 108.608 108.214 108.374 108.469 108.164C108.729 107.95 109.038 107.781 109.398 107.658C109.763 107.531 110.169 107.467 110.615 107.467C111.153 107.467 111.627 107.558 112.037 107.74C112.452 107.923 112.775 108.198 113.008 108.567C113.245 108.932 113.363 109.39 113.363 109.941V113.387C113.363 113.633 113.384 113.895 113.425 114.173C113.47 114.451 113.536 114.69 113.623 114.891V115H112.304C112.24 114.854 112.19 114.66 112.153 114.419C112.117 114.173 112.099 113.945 112.099 113.735ZM112.317 110.516L112.331 111.404H111.053C110.693 111.404 110.371 111.434 110.089 111.493C109.806 111.548 109.569 111.632 109.378 111.746C109.187 111.86 109.041 112.004 108.94 112.177C108.84 112.345 108.79 112.544 108.79 112.771C108.79 113.004 108.842 113.216 108.947 113.407C109.052 113.599 109.209 113.751 109.419 113.865C109.633 113.975 109.895 114.029 110.205 114.029C110.592 114.029 110.934 113.947 111.23 113.783C111.527 113.619 111.761 113.419 111.935 113.182C112.112 112.945 112.208 112.715 112.222 112.491L112.762 113.1C112.73 113.291 112.643 113.503 112.502 113.735C112.361 113.968 112.172 114.191 111.935 114.405C111.702 114.615 111.424 114.79 111.101 114.932C110.782 115.068 110.422 115.137 110.021 115.137C109.519 115.137 109.079 115.039 108.701 114.843C108.327 114.647 108.036 114.385 107.826 114.057C107.621 113.724 107.519 113.353 107.519 112.942C107.519 112.546 107.596 112.197 107.751 111.896C107.906 111.591 108.129 111.338 108.421 111.138C108.713 110.933 109.063 110.778 109.474 110.673C109.884 110.568 110.342 110.516 110.848 110.516H112.317ZM116.727 104.5V115H115.455V104.5H116.727ZM123.604 107.604V115H122.332V107.604H123.604ZM122.236 105.642C122.236 105.437 122.298 105.263 122.421 105.122C122.549 104.981 122.735 104.91 122.981 104.91C123.223 104.91 123.408 104.981 123.535 105.122C123.667 105.263 123.733 105.437 123.733 105.642C123.733 105.838 123.667 106.006 123.535 106.147C123.408 106.284 123.223 106.353 122.981 106.353C122.735 106.353 122.549 106.284 122.421 106.147C122.298 106.006 122.236 105.838 122.236 105.642ZM126.898 109.183V115H125.634V107.604H126.83L126.898 109.183ZM126.598 111.021L126.071 111.001C126.076 110.495 126.151 110.028 126.297 109.6C126.443 109.167 126.648 108.791 126.912 108.472C127.176 108.153 127.491 107.907 127.855 107.733C128.225 107.556 128.632 107.467 129.079 107.467C129.444 107.467 129.772 107.517 130.063 107.617C130.355 107.713 130.604 107.868 130.809 108.082C131.018 108.296 131.178 108.574 131.287 108.916C131.396 109.253 131.451 109.666 131.451 110.153V115H130.18V110.14C130.18 109.752 130.123 109.442 130.009 109.21C129.895 108.973 129.729 108.802 129.51 108.697C129.291 108.588 129.022 108.533 128.703 108.533C128.389 108.533 128.102 108.599 127.842 108.731C127.587 108.864 127.366 109.046 127.179 109.278C126.996 109.511 126.853 109.777 126.748 110.078C126.648 110.374 126.598 110.689 126.598 111.021ZM135.259 115H133.994V106.824C133.994 106.291 134.09 105.842 134.281 105.478C134.477 105.108 134.757 104.83 135.122 104.644C135.487 104.452 135.92 104.356 136.421 104.356C136.567 104.356 136.713 104.366 136.858 104.384C137.009 104.402 137.155 104.429 137.296 104.466L137.228 105.498C137.132 105.475 137.022 105.459 136.899 105.45C136.781 105.441 136.662 105.437 136.544 105.437C136.275 105.437 136.043 105.491 135.847 105.601C135.655 105.705 135.509 105.86 135.409 106.065C135.309 106.271 135.259 106.523 135.259 106.824V115ZM136.831 107.604V108.574H132.825V107.604H136.831ZM137.904 111.384V111.227C137.904 110.693 137.982 110.199 138.137 109.743C138.292 109.283 138.515 108.884 138.807 108.547C139.098 108.205 139.451 107.941 139.866 107.754C140.281 107.562 140.746 107.467 141.261 107.467C141.78 107.467 142.247 107.562 142.662 107.754C143.081 107.941 143.437 108.205 143.729 108.547C144.025 108.884 144.25 109.283 144.405 109.743C144.56 110.199 144.638 110.693 144.638 111.227V111.384C144.638 111.917 144.56 112.411 144.405 112.867C144.25 113.323 144.025 113.722 143.729 114.063C143.437 114.401 143.084 114.665 142.669 114.856C142.259 115.043 141.794 115.137 141.274 115.137C140.755 115.137 140.288 115.043 139.873 114.856C139.458 114.665 139.103 114.401 138.807 114.063C138.515 113.722 138.292 113.323 138.137 112.867C137.982 112.411 137.904 111.917 137.904 111.384ZM139.169 111.227V111.384C139.169 111.753 139.212 112.102 139.299 112.43C139.385 112.753 139.515 113.04 139.688 113.291C139.866 113.542 140.087 113.74 140.352 113.886C140.616 114.027 140.924 114.098 141.274 114.098C141.621 114.098 141.924 114.027 142.184 113.886C142.448 113.74 142.667 113.542 142.84 113.291C143.013 113.04 143.143 112.753 143.229 112.43C143.321 112.102 143.366 111.753 143.366 111.384V111.227C143.366 110.862 143.321 110.518 143.229 110.194C143.143 109.866 143.011 109.577 142.833 109.326C142.66 109.071 142.441 108.87 142.177 108.725C141.917 108.579 141.612 108.506 141.261 108.506C140.914 108.506 140.609 108.579 140.345 108.725C140.085 108.87 139.866 109.071 139.688 109.326C139.515 109.577 139.385 109.866 139.299 110.194C139.212 110.518 139.169 110.862 139.169 111.227ZM147.488 108.766V115H146.224V107.604H147.454L147.488 108.766ZM149.799 107.562L149.792 108.738C149.687 108.715 149.587 108.702 149.491 108.697C149.4 108.688 149.295 108.684 149.177 108.684C148.885 108.684 148.628 108.729 148.404 108.82C148.181 108.911 147.992 109.039 147.837 109.203C147.682 109.367 147.559 109.563 147.468 109.791C147.381 110.014 147.324 110.26 147.297 110.529L146.941 110.734C146.941 110.288 146.985 109.868 147.071 109.477C147.162 109.085 147.301 108.738 147.488 108.438C147.675 108.132 147.912 107.895 148.199 107.727C148.491 107.553 148.837 107.467 149.238 107.467C149.329 107.467 149.434 107.478 149.553 107.501C149.671 107.519 149.753 107.54 149.799 107.562ZM152.226 109.073V115H150.954V107.604H152.157L152.226 109.073ZM151.966 111.021L151.378 111.001C151.382 110.495 151.449 110.028 151.576 109.6C151.704 109.167 151.893 108.791 152.144 108.472C152.394 108.153 152.706 107.907 153.08 107.733C153.454 107.556 153.887 107.467 154.379 107.467C154.725 107.467 155.044 107.517 155.336 107.617C155.628 107.713 155.881 107.866 156.095 108.075C156.309 108.285 156.475 108.554 156.594 108.882C156.712 109.21 156.771 109.606 156.771 110.071V115H155.507V110.133C155.507 109.745 155.441 109.436 155.309 109.203C155.181 108.971 154.999 108.802 154.762 108.697C154.525 108.588 154.247 108.533 153.928 108.533C153.554 108.533 153.242 108.599 152.991 108.731C152.741 108.864 152.54 109.046 152.39 109.278C152.239 109.511 152.13 109.777 152.062 110.078C151.998 110.374 151.966 110.689 151.966 111.021ZM156.758 110.324L155.91 110.584C155.915 110.178 155.981 109.789 156.108 109.415C156.241 109.041 156.43 108.709 156.676 108.417C156.926 108.125 157.234 107.895 157.599 107.727C157.963 107.553 158.38 107.467 158.85 107.467C159.246 107.467 159.597 107.519 159.902 107.624C160.212 107.729 160.472 107.891 160.682 108.109C160.896 108.324 161.058 108.599 161.167 108.937C161.276 109.274 161.331 109.675 161.331 110.14V115H160.06V110.126C160.06 109.711 159.993 109.39 159.861 109.162C159.734 108.93 159.551 108.768 159.314 108.677C159.082 108.581 158.804 108.533 158.48 108.533C158.202 108.533 157.956 108.581 157.742 108.677C157.528 108.772 157.348 108.905 157.202 109.073C157.056 109.237 156.945 109.426 156.867 109.641C156.794 109.855 156.758 110.083 156.758 110.324ZM167.606 113.735V109.928C167.606 109.636 167.547 109.383 167.429 109.169C167.315 108.95 167.142 108.782 166.909 108.663C166.677 108.545 166.39 108.485 166.048 108.485C165.729 108.485 165.449 108.54 165.207 108.649C164.97 108.759 164.783 108.902 164.646 109.08C164.514 109.258 164.448 109.449 164.448 109.654H163.184C163.184 109.39 163.252 109.128 163.389 108.868C163.525 108.608 163.721 108.374 163.977 108.164C164.236 107.95 164.546 107.781 164.906 107.658C165.271 107.531 165.676 107.467 166.123 107.467C166.661 107.467 167.135 107.558 167.545 107.74C167.96 107.923 168.283 108.198 168.516 108.567C168.753 108.932 168.871 109.39 168.871 109.941V113.387C168.871 113.633 168.892 113.895 168.933 114.173C168.978 114.451 169.044 114.69 169.131 114.891V115H167.812C167.748 114.854 167.698 114.66 167.661 114.419C167.625 114.173 167.606 113.945 167.606 113.735ZM167.825 110.516L167.839 111.404H166.561C166.201 111.404 165.879 111.434 165.597 111.493C165.314 111.548 165.077 111.632 164.886 111.746C164.694 111.86 164.549 112.004 164.448 112.177C164.348 112.345 164.298 112.544 164.298 112.771C164.298 113.004 164.35 113.216 164.455 113.407C164.56 113.599 164.717 113.751 164.927 113.865C165.141 113.975 165.403 114.029 165.713 114.029C166.1 114.029 166.442 113.947 166.738 113.783C167.035 113.619 167.269 113.419 167.442 113.182C167.62 112.945 167.716 112.715 167.729 112.491L168.27 113.1C168.238 113.291 168.151 113.503 168.01 113.735C167.868 113.968 167.679 114.191 167.442 114.405C167.21 114.615 166.932 114.79 166.608 114.932C166.289 115.068 165.929 115.137 165.528 115.137C165.027 115.137 164.587 115.039 164.209 114.843C163.835 114.647 163.544 114.385 163.334 114.057C163.129 113.724 163.026 113.353 163.026 112.942C163.026 112.546 163.104 112.197 163.259 111.896C163.414 111.591 163.637 111.338 163.929 111.138C164.22 110.933 164.571 110.778 164.981 110.673C165.392 110.568 165.85 110.516 166.355 110.516H167.825ZM173.957 107.604V108.574H169.958V107.604H173.957ZM171.312 105.806H172.576V113.168C172.576 113.419 172.615 113.608 172.692 113.735C172.77 113.863 172.87 113.947 172.993 113.988C173.116 114.029 173.248 114.05 173.39 114.05C173.494 114.05 173.604 114.041 173.718 114.022C173.836 114 173.925 113.981 173.984 113.968L173.991 115C173.891 115.032 173.759 115.062 173.595 115.089C173.435 115.121 173.242 115.137 173.014 115.137C172.704 115.137 172.419 115.075 172.159 114.952C171.899 114.829 171.692 114.624 171.537 114.337C171.387 114.045 171.312 113.653 171.312 113.161V105.806ZM176.814 107.604V115H175.543V107.604H176.814ZM175.447 105.642C175.447 105.437 175.509 105.263 175.632 105.122C175.759 104.981 175.946 104.91 176.192 104.91C176.434 104.91 176.618 104.981 176.746 105.122C176.878 105.263 176.944 105.437 176.944 105.642C176.944 105.838 176.878 106.006 176.746 106.147C176.618 106.284 176.434 106.353 176.192 106.353C175.946 106.353 175.759 106.284 175.632 106.147C175.509 106.006 175.447 105.838 175.447 105.642ZM178.51 111.384V111.227C178.51 110.693 178.587 110.199 178.742 109.743C178.897 109.283 179.12 108.884 179.412 108.547C179.704 108.205 180.057 107.941 180.472 107.754C180.886 107.562 181.351 107.467 181.866 107.467C182.386 107.467 182.853 107.562 183.268 107.754C183.687 107.941 184.042 108.205 184.334 108.547C184.63 108.884 184.856 109.283 185.011 109.743C185.166 110.199 185.243 110.693 185.243 111.227V111.384C185.243 111.917 185.166 112.411 185.011 112.867C184.856 113.323 184.63 113.722 184.334 114.063C184.042 114.401 183.689 114.665 183.274 114.856C182.864 115.043 182.399 115.137 181.88 115.137C181.36 115.137 180.893 115.043 180.479 114.856C180.064 114.665 179.708 114.401 179.412 114.063C179.12 113.722 178.897 113.323 178.742 112.867C178.587 112.411 178.51 111.917 178.51 111.384ZM179.774 111.227V111.384C179.774 111.753 179.818 112.102 179.904 112.43C179.991 112.753 180.121 113.04 180.294 113.291C180.472 113.542 180.693 113.74 180.957 113.886C181.221 114.027 181.529 114.098 181.88 114.098C182.226 114.098 182.529 114.027 182.789 113.886C183.053 113.74 183.272 113.542 183.445 113.291C183.618 113.04 183.748 112.753 183.835 112.43C183.926 112.102 183.972 111.753 183.972 111.384V111.227C183.972 110.862 183.926 110.518 183.835 110.194C183.748 109.866 183.616 109.577 183.438 109.326C183.265 109.071 183.047 108.87 182.782 108.725C182.522 108.579 182.217 108.506 181.866 108.506C181.52 108.506 181.215 108.579 180.95 108.725C180.69 108.87 180.472 109.071 180.294 109.326C180.121 109.577 179.991 109.866 179.904 110.194C179.818 110.518 179.774 110.862 179.774 111.227ZM188.094 109.183V115H186.829V107.604H188.025L188.094 109.183ZM187.793 111.021L187.267 111.001C187.271 110.495 187.346 110.028 187.492 109.6C187.638 109.167 187.843 108.791 188.107 108.472C188.372 108.153 188.686 107.907 189.051 107.733C189.42 107.556 189.828 107.467 190.274 107.467C190.639 107.467 190.967 107.517 191.259 107.617C191.55 107.713 191.799 107.868 192.004 108.082C192.214 108.296 192.373 108.574 192.482 108.916C192.592 109.253 192.646 109.666 192.646 110.153V115H191.375V110.14C191.375 109.752 191.318 109.442 191.204 109.21C191.09 108.973 190.924 108.802 190.705 108.697C190.486 108.588 190.217 108.533 189.898 108.533C189.584 108.533 189.297 108.599 189.037 108.731C188.782 108.864 188.561 109.046 188.374 109.278C188.192 109.511 188.048 109.777 187.943 110.078C187.843 110.374 187.793 110.689 187.793 111.021Z",fill:"#64748B"})),{AdvancedFields:tn}=JetFBComponents,{__:ln}=wp.i18n,{InspectorControls:rn,useBlockProps:nn}=wp.blockEditor?wp.blockEditor:wp.editor,an=JSON.parse('{"apiVersion":3,"name":"jet-forms/group-break-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","conditonal"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Group Break Field","icon":"\\n\\n\\n\\n","attributes":{"visibility":{"type":"string","default":""},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:on}=wp.i18n,{createBlock:sn}=wp.blocks,{name:cn,icon:dn=""}=an,mn={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:dn}}),description:on("Create a break between two fields with a horizontal line. Separate different form parts without dividing form on two pages.","jet-form-builder"),edit:function(e){const C=nn(),{isSelected:t,attributes:l,editProps:{uniqKey:r}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Cn):(0,h.createElement)(h.Fragment,null,t&&(0,h.createElement)(rn,{key:r("InspectorControls")},(0,h.createElement)(tn,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{...C},(0,h.createElement)("div",{className:"jet-form-builder__group-break jet-form-builder__bottom-line"},(0,h.createElement)("span",null,ln("GROUP BREAK","jet-form-builder")))))},useEditProps:["uniqKey"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>sn("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["core/separator"],transform:()=>sn("core/separator",{}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>sn(cn,{...e}),priority:0},{type:"block",blocks:["core/separator"],transform:()=>sn(cn,{}),priority:0}]}},un=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_274_2880)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{width:"268",height:"143",transform:"translate(15 15)",fill:"white"}),(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V45H15V19Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M37.6562 29.3262V30.3994H32.2695V29.3262H37.6562ZM32.4746 25.0469V35H31.1553V25.0469H32.4746ZM38.8047 25.0469V35H37.4922V25.0469H38.8047ZM44.0273 35.1367C43.5124 35.1367 43.0452 35.0501 42.626 34.877C42.2113 34.6992 41.8535 34.4508 41.5527 34.1318C41.2565 33.8128 41.0286 33.4346 40.8691 32.9971C40.7096 32.5596 40.6299 32.0811 40.6299 31.5615V31.2744C40.6299 30.6729 40.7188 30.1374 40.8965 29.668C41.0742 29.194 41.3158 28.793 41.6211 28.4648C41.9264 28.1367 42.2728 27.8883 42.6602 27.7197C43.0475 27.5511 43.4486 27.4668 43.8633 27.4668C44.3919 27.4668 44.8477 27.5579 45.2305 27.7402C45.6178 27.9225 45.9346 28.1777 46.1807 28.5059C46.4268 28.8294 46.609 29.2122 46.7275 29.6543C46.846 30.0918 46.9053 30.5703 46.9053 31.0898V31.6572H41.3818V30.625H45.6406V30.5293C45.6224 30.2012 45.554 29.8822 45.4355 29.5723C45.3216 29.2624 45.1393 29.0072 44.8887 28.8066C44.638 28.6061 44.2962 28.5059 43.8633 28.5059C43.5762 28.5059 43.3118 28.5674 43.0703 28.6904C42.8288 28.8089 42.6214 28.9867 42.4482 29.2236C42.2751 29.4606 42.1406 29.75 42.0449 30.0918C41.9492 30.4336 41.9014 30.8278 41.9014 31.2744V31.5615C41.9014 31.9124 41.9492 32.2428 42.0449 32.5527C42.1452 32.8581 42.2887 33.127 42.4756 33.3594C42.667 33.5918 42.8971 33.7741 43.166 33.9062C43.4395 34.0384 43.7493 34.1045 44.0957 34.1045C44.5423 34.1045 44.9206 34.0133 45.2305 33.8311C45.5404 33.6488 45.8115 33.4049 46.0439 33.0996L46.8096 33.708C46.6501 33.9495 46.4473 34.1797 46.2012 34.3984C45.9551 34.6172 45.652 34.7949 45.292 34.9316C44.9365 35.0684 44.515 35.1367 44.0273 35.1367ZM52.7432 33.7354V29.9277C52.7432 29.6361 52.6839 29.3831 52.5654 29.1689C52.4515 28.9502 52.2783 28.7816 52.0459 28.6631C51.8135 28.5446 51.5264 28.4854 51.1846 28.4854C50.8656 28.4854 50.5853 28.54 50.3438 28.6494C50.1068 28.7588 49.9199 28.9023 49.7832 29.0801C49.651 29.2578 49.585 29.4492 49.585 29.6543H48.3203C48.3203 29.39 48.3887 29.1279 48.5254 28.8682C48.6621 28.6084 48.8581 28.3737 49.1133 28.1641C49.373 27.9499 49.6829 27.7812 50.043 27.6582C50.4076 27.5306 50.8132 27.4668 51.2598 27.4668C51.7975 27.4668 52.2715 27.5579 52.6816 27.7402C53.0964 27.9225 53.4199 28.1982 53.6523 28.5674C53.8893 28.932 54.0078 29.39 54.0078 29.9414V33.3867C54.0078 33.6328 54.0283 33.8949 54.0693 34.1729C54.1149 34.4508 54.181 34.6901 54.2676 34.8906V35H52.9482C52.8844 34.8542 52.8343 34.6605 52.7979 34.4189C52.7614 34.1729 52.7432 33.945 52.7432 33.7354ZM52.9619 30.5156L52.9756 31.4043H51.6973C51.3372 31.4043 51.016 31.4339 50.7334 31.4932C50.4508 31.5479 50.2139 31.6322 50.0225 31.7461C49.8311 31.86 49.6852 32.0036 49.585 32.1768C49.4847 32.3454 49.4346 32.5436 49.4346 32.7715C49.4346 33.0039 49.487 33.2158 49.5918 33.4072C49.6966 33.5986 49.8538 33.7513 50.0635 33.8652C50.2777 33.9746 50.5397 34.0293 50.8496 34.0293C51.237 34.0293 51.5788 33.9473 51.875 33.7832C52.1712 33.6191 52.4059 33.4186 52.5791 33.1816C52.7568 32.9447 52.8525 32.7145 52.8662 32.4912L53.4062 33.0996C53.3743 33.291 53.2878 33.5029 53.1465 33.7354C53.0052 33.9678 52.8161 34.1911 52.5791 34.4053C52.3467 34.6149 52.0687 34.7904 51.7451 34.9316C51.4261 35.0684 51.0661 35.1367 50.665 35.1367C50.1637 35.1367 49.724 35.0387 49.3457 34.8428C48.972 34.6468 48.6803 34.3848 48.4707 34.0566C48.2656 33.724 48.1631 33.3525 48.1631 32.9424C48.1631 32.5459 48.2406 32.1973 48.3955 31.8965C48.5505 31.5911 48.7738 31.3382 49.0654 31.1377C49.3571 30.9326 49.708 30.7777 50.1182 30.6729C50.5283 30.568 50.9863 30.5156 51.4922 30.5156H52.9619ZM60.6592 33.5645V24.5H61.9307V35H60.7686L60.6592 33.5645ZM55.6826 31.3838V31.2402C55.6826 30.6751 55.751 30.1624 55.8877 29.7021C56.029 29.2373 56.2272 28.8385 56.4824 28.5059C56.7422 28.1732 57.0498 27.918 57.4053 27.7402C57.7653 27.5579 58.1663 27.4668 58.6084 27.4668C59.0732 27.4668 59.4788 27.5488 59.8252 27.7129C60.1761 27.8724 60.4723 28.1071 60.7139 28.417C60.96 28.7223 61.1536 29.0915 61.2949 29.5244C61.4362 29.9574 61.5342 30.4473 61.5889 30.9941V31.623C61.5387 32.1654 61.4408 32.653 61.2949 33.0859C61.1536 33.5189 60.96 33.888 60.7139 34.1934C60.4723 34.4987 60.1761 34.7334 59.8252 34.8975C59.4743 35.057 59.0641 35.1367 58.5947 35.1367C58.1618 35.1367 57.7653 35.0433 57.4053 34.8564C57.0498 34.6696 56.7422 34.4076 56.4824 34.0703C56.2272 33.7331 56.029 33.3366 55.8877 32.8809C55.751 32.4206 55.6826 31.9215 55.6826 31.3838ZM56.9541 31.2402V31.3838C56.9541 31.7529 56.9906 32.0993 57.0635 32.4229C57.141 32.7464 57.2594 33.0312 57.4189 33.2773C57.5785 33.5234 57.7812 33.7171 58.0273 33.8584C58.2734 33.9951 58.5674 34.0635 58.9092 34.0635C59.3285 34.0635 59.6725 33.9746 59.9414 33.7969C60.2148 33.6191 60.4336 33.3844 60.5977 33.0928C60.7617 32.8011 60.8893 32.4844 60.9805 32.1426V30.4951C60.9258 30.2445 60.846 30.0029 60.7412 29.7705C60.641 29.5335 60.5088 29.3239 60.3447 29.1416C60.1852 28.9548 59.987 28.8066 59.75 28.6973C59.5176 28.5879 59.2419 28.5332 58.9229 28.5332C58.5765 28.5332 58.278 28.6061 58.0273 28.752C57.7812 28.8932 57.5785 29.0892 57.4189 29.3398C57.2594 29.5859 57.141 29.873 57.0635 30.2012C56.9906 30.5247 56.9541 30.8711 56.9541 31.2402ZM65.2734 27.6035V35H64.002V27.6035H65.2734ZM63.9062 25.6416C63.9062 25.4365 63.9678 25.2633 64.0908 25.1221C64.2184 24.9808 64.4053 24.9102 64.6514 24.9102C64.8929 24.9102 65.0775 24.9808 65.2051 25.1221C65.3372 25.2633 65.4033 25.4365 65.4033 25.6416C65.4033 25.8376 65.3372 26.0062 65.2051 26.1475C65.0775 26.2842 64.8929 26.3525 64.6514 26.3525C64.4053 26.3525 64.2184 26.2842 64.0908 26.1475C63.9678 26.0062 63.9062 25.8376 63.9062 25.6416ZM68.5684 29.1826V35H67.3037V27.6035H68.5L68.5684 29.1826ZM68.2676 31.0215L67.7412 31.001C67.7458 30.4951 67.821 30.028 67.9668 29.5996C68.1126 29.1667 68.3177 28.7907 68.582 28.4717C68.8464 28.1527 69.1608 27.9066 69.5254 27.7334C69.8945 27.5557 70.3024 27.4668 70.749 27.4668C71.1136 27.4668 71.4417 27.5169 71.7334 27.6172C72.0251 27.7129 72.2734 27.8678 72.4785 28.082C72.6882 28.2962 72.8477 28.5742 72.957 28.916C73.0664 29.2533 73.1211 29.6657 73.1211 30.1533V35H71.8496V30.1396C71.8496 29.7523 71.7926 29.4424 71.6787 29.21C71.5648 28.973 71.3984 28.8021 71.1797 28.6973C70.9609 28.5879 70.6921 28.5332 70.373 28.5332C70.0586 28.5332 69.7715 28.5993 69.5117 28.7314C69.2565 28.8636 69.0355 29.0459 68.8486 29.2783C68.6663 29.5107 68.5228 29.7773 68.418 30.0781C68.3177 30.3743 68.2676 30.6888 68.2676 31.0215ZM79.834 27.6035H80.9824V34.8428C80.9824 35.4945 80.8503 36.0505 80.5859 36.5107C80.3216 36.971 79.9525 37.3197 79.4785 37.5566C79.0091 37.7982 78.4668 37.9189 77.8516 37.9189C77.5964 37.9189 77.2956 37.8779 76.9492 37.7959C76.6074 37.7184 76.2702 37.584 75.9375 37.3926C75.6094 37.2057 75.3337 36.9528 75.1104 36.6338L75.7734 35.8818C76.0833 36.2555 76.4069 36.5153 76.7441 36.6611C77.0859 36.807 77.4232 36.8799 77.7559 36.8799C78.1569 36.8799 78.5033 36.8047 78.7949 36.6543C79.0866 36.5039 79.3122 36.2806 79.4717 35.9844C79.6357 35.6927 79.7178 35.3327 79.7178 34.9043V29.2305L79.834 27.6035ZM74.7412 31.3838V31.2402C74.7412 30.6751 74.8073 30.1624 74.9395 29.7021C75.0762 29.2373 75.2699 28.8385 75.5205 28.5059C75.7757 28.1732 76.0833 27.918 76.4434 27.7402C76.8034 27.5579 77.209 27.4668 77.6602 27.4668C78.125 27.4668 78.5306 27.5488 78.877 27.7129C79.2279 27.8724 79.5241 28.1071 79.7656 28.417C80.0117 28.7223 80.2054 29.0915 80.3467 29.5244C80.488 29.9574 80.5859 30.4473 80.6406 30.9941V31.623C80.5905 32.1654 80.4925 32.653 80.3467 33.0859C80.2054 33.5189 80.0117 33.888 79.7656 34.1934C79.5241 34.4987 79.2279 34.7334 78.877 34.8975C78.526 35.057 78.1159 35.1367 77.6465 35.1367C77.2044 35.1367 76.8034 35.0433 76.4434 34.8564C76.0879 34.6696 75.7826 34.4076 75.5273 34.0703C75.2721 33.7331 75.0762 33.3366 74.9395 32.8809C74.8073 32.4206 74.7412 31.9215 74.7412 31.3838ZM76.0059 31.2402V31.3838C76.0059 31.7529 76.0423 32.0993 76.1152 32.4229C76.1927 32.7464 76.3089 33.0312 76.4639 33.2773C76.6234 33.5234 76.8262 33.7171 77.0723 33.8584C77.3184 33.9951 77.6123 34.0635 77.9541 34.0635C78.3734 34.0635 78.7197 33.9746 78.9932 33.7969C79.2666 33.6191 79.4831 33.3844 79.6426 33.0928C79.8066 32.8011 79.9342 32.4844 80.0254 32.1426V30.4951C79.9753 30.2445 79.8978 30.0029 79.793 29.7705C79.6927 29.5335 79.5605 29.3239 79.3965 29.1416C79.237 28.9548 79.0387 28.8066 78.8018 28.6973C78.5648 28.5879 78.2868 28.5332 77.9678 28.5332C77.6214 28.5332 77.3229 28.6061 77.0723 28.752C76.8262 28.8932 76.6234 29.0892 76.4639 29.3398C76.3089 29.5859 76.1927 29.873 76.1152 30.2012C76.0423 30.5247 76.0059 30.8711 76.0059 31.2402Z",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"55",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"25.5",y:"64.5",width:"247",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"25.5",y:"64.5",width:"247",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("rect",{x:"25",y:"109",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"25.5",y:"118.5",width:"247",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"25.5",y:"118.5",width:"247",height:"29",rx:"3.5",stroke:"#E2E8F0"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_274_2880"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})))),{GeneralFields:pn,AdvancedFields:fn,FieldWrapper:Vn}=JetFBComponents,{InspectorControls:Hn,useBlockProps:hn}=wp.blockEditor?wp.blockEditor:wp.editor,bn=JSON.parse('{"apiVersion":3,"name":"jet-forms/heading-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","field","heading"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Heading Field","icon":"\\n\\n","attributes":{"label":{"type":"string","default":"","jfb":{"rich":true}},"desc":{"type":"string","default":"","jfb":{"rich":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:Mn}=wp.i18n,{createBlock:Ln}=wp.blocks,{name:gn,icon:Zn=""}=bn,yn={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Zn}}),description:Mn("Build a heading for the form that can’t be changed by the users. Add the labels and descriptions to the different parts of the form.","jet-form-builder"),edit:function(e){const C=hn(),{isSelected:t,attributes:l,editProps:{uniqKey:r}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},un):[t&&(0,h.createElement)(Hn,{key:r("InspectorControls")},(0,h.createElement)(pn,{key:r("GeneralFields"),...e}),(0,h.createElement)(fn,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{...C,key:r("viewBlock")},(0,h.createElement)(Vn,{key:r("FieldWrapper"),valueIfEmptyLabel:"Heading",...e}))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},__experimentalLabel:(e,{context:C})=>{if("list-view"===C)return e.label||bn.title},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Ln("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["core/paragraph"],transform:({label:e=""})=>Ln("core/paragraph",{content:e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Ln(gn,{...e}),priority:0},{type:"block",blocks:["core/paragraph"],transform:({content:e=""})=>Ln(gn,{label:e}),priority:0}]}},{ToggleControl:En,withFilters:wn}=wp.components,{__:vn}=wp.i18n,{useBlockAttributes:_n}=JetFBHooks;let kn=function(){const[e,C]=_n();return(0,h.createElement)(h.Fragment,null,"referer_url"!==e.field_value&&(0,h.createElement)(En,{label:vn("Render in HTML","jet-form-builder"),checked:e.render,help:vn("Enable this option if you use this field in Calculated Field, Conditional Block, Advanced Validation, Global Macros, or Dynamic Value.","jet-form-builder"),onChange:e=>C({render:Boolean(e)})}),(0,h.createElement)(En,{label:vn("Return the raw value","jet-form-builder"),help:vn("If this option is enabled, the value of the field will be JSON-encoded if the value is an array or object","jet-form-builder"),checked:e.return_raw,onChange:e=>C({return_raw:e})}))};kn=wn("jfb.hidden-field.header.controls")(kn);const jn=kn,{__:xn}=wp.i18n,{TextControl:Fn,withFilters:Bn}=wp.components;let An=function({attributes:e,setAttributes:C}){return(0,h.createElement)(h.Fragment,null,["post_meta","user_meta"].includes(e.field_value)&&(0,h.createElement)(Fn,{key:"hidden_value_field",label:"Meta Field to Get Value From",value:e.hidden_value_field,onChange:e=>C({hidden_value_field:e})}),"query_var"===e.field_value&&(0,h.createElement)(Fn,{key:"query_var_key",label:"Query Variable Key",value:e.query_var_key,onChange:e=>C({query_var_key:e})}),"current_date"===e.field_value&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Fn,{key:"date_format",label:"Format",value:e.date_format,onChange:e=>C({date_format:e})}),(0,h.createElement)("b",null,xn("Example:","jet-form-builder")),(0,h.createElement)("br",null),(0,h.createElement)("i",null,"Y-m-d\\TH:i - "),xn("datetime format","jet-form-builder"),(0,h.createElement)("br",null),(0,h.createElement)("i",null,"U - "),xn("timestamp format","jet-form-builder")),"manual_input"===e.field_value&&(0,h.createElement)(Fn,{key:"hidden_value",label:"Value",value:e.hidden_value,onChange:e=>{C({hidden_value:e})}}))};An=Bn("jfb.hidden-field.field-value.controls")(An);const Pn=An,{useBlockAttributes:Sn}=JetFBHooks,{SelectControl:Nn}=wp.components,In=function(){const[e,C]=Sn();return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(jn,{attributes:e,setAttributes:C}),(0,h.createElement)(Nn,{key:"field_value",label:"Field Value",labelPosition:"top",value:e.field_value,onChange:t=>{C({field_value:t}),(t=>{!t||e.name&&"hidden_field_name"!==e.name||C({name:t})})(t)},options:JetFormHiddenField.sources}),(0,h.createElement)(Pn,{attributes:e,setAttributes:C}))},Tn=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("g",{clipPath:"url(#clip0_75_1466)"},(0,h.createElement)("path",{d:"M22.6562 48.3262V49.3994H17.2695V48.3262H22.6562ZM17.4746 44.0469V54H16.1553V44.0469H17.4746ZM23.8047 44.0469V54H22.4922V44.0469H23.8047ZM27.332 46.6035V54H26.0605V46.6035H27.332ZM25.9648 44.6416C25.9648 44.4365 26.0264 44.2633 26.1494 44.1221C26.277 43.9808 26.4639 43.9102 26.71 43.9102C26.9515 43.9102 27.1361 43.9808 27.2637 44.1221C27.3958 44.2633 27.4619 44.4365 27.4619 44.6416C27.4619 44.8376 27.3958 45.0062 27.2637 45.1475C27.1361 45.2842 26.9515 45.3525 26.71 45.3525C26.4639 45.3525 26.277 45.2842 26.1494 45.1475C26.0264 45.0062 25.9648 44.8376 25.9648 44.6416ZM34.0244 52.5645V43.5H35.2959V54H34.1338L34.0244 52.5645ZM29.0479 50.3838V50.2402C29.0479 49.6751 29.1162 49.1624 29.2529 48.7021C29.3942 48.2373 29.5924 47.8385 29.8477 47.5059C30.1074 47.1732 30.415 46.918 30.7705 46.7402C31.1305 46.5579 31.5316 46.4668 31.9736 46.4668C32.4385 46.4668 32.8441 46.5488 33.1904 46.7129C33.5413 46.8724 33.8376 47.1071 34.0791 47.417C34.3252 47.7223 34.5189 48.0915 34.6602 48.5244C34.8014 48.9574 34.8994 49.4473 34.9541 49.9941V50.623C34.904 51.1654 34.806 51.653 34.6602 52.0859C34.5189 52.5189 34.3252 52.888 34.0791 53.1934C33.8376 53.4987 33.5413 53.7334 33.1904 53.8975C32.8395 54.057 32.4294 54.1367 31.96 54.1367C31.527 54.1367 31.1305 54.0433 30.7705 53.8564C30.415 53.6696 30.1074 53.4076 29.8477 53.0703C29.5924 52.7331 29.3942 52.3366 29.2529 51.8809C29.1162 51.4206 29.0479 50.9215 29.0479 50.3838ZM30.3193 50.2402V50.3838C30.3193 50.7529 30.3558 51.0993 30.4287 51.4229C30.5062 51.7464 30.6247 52.0312 30.7842 52.2773C30.9437 52.5234 31.1465 52.7171 31.3926 52.8584C31.6387 52.9951 31.9326 53.0635 32.2744 53.0635C32.6937 53.0635 33.0378 52.9746 33.3066 52.7969C33.5801 52.6191 33.7988 52.3844 33.9629 52.0928C34.127 51.8011 34.2546 51.4844 34.3457 51.1426V49.4951C34.291 49.2445 34.2113 49.0029 34.1064 48.7705C34.0062 48.5335 33.874 48.3239 33.71 48.1416C33.5505 47.9548 33.3522 47.8066 33.1152 47.6973C32.8828 47.5879 32.6071 47.5332 32.2881 47.5332C31.9417 47.5332 31.6432 47.6061 31.3926 47.752C31.1465 47.8932 30.9437 48.0892 30.7842 48.3398C30.6247 48.5859 30.5062 48.873 30.4287 49.2012C30.3558 49.5247 30.3193 49.8711 30.3193 50.2402ZM41.9268 52.5645V43.5H43.1982V54H42.0361L41.9268 52.5645ZM36.9502 50.3838V50.2402C36.9502 49.6751 37.0186 49.1624 37.1553 48.7021C37.2965 48.2373 37.4948 47.8385 37.75 47.5059C38.0098 47.1732 38.3174 46.918 38.6729 46.7402C39.0329 46.5579 39.4339 46.4668 39.876 46.4668C40.3408 46.4668 40.7464 46.5488 41.0928 46.7129C41.4437 46.8724 41.7399 47.1071 41.9814 47.417C42.2275 47.7223 42.4212 48.0915 42.5625 48.5244C42.7038 48.9574 42.8018 49.4473 42.8564 49.9941V50.623C42.8063 51.1654 42.7083 51.653 42.5625 52.0859C42.4212 52.5189 42.2275 52.888 41.9814 53.1934C41.7399 53.4987 41.4437 53.7334 41.0928 53.8975C40.7419 54.057 40.3317 54.1367 39.8623 54.1367C39.4294 54.1367 39.0329 54.0433 38.6729 53.8564C38.3174 53.6696 38.0098 53.4076 37.75 53.0703C37.4948 52.7331 37.2965 52.3366 37.1553 51.8809C37.0186 51.4206 36.9502 50.9215 36.9502 50.3838ZM38.2217 50.2402V50.3838C38.2217 50.7529 38.2581 51.0993 38.3311 51.4229C38.4085 51.7464 38.527 52.0312 38.6865 52.2773C38.846 52.5234 39.0488 52.7171 39.2949 52.8584C39.541 52.9951 39.835 53.0635 40.1768 53.0635C40.596 53.0635 40.9401 52.9746 41.209 52.7969C41.4824 52.6191 41.7012 52.3844 41.8652 52.0928C42.0293 51.8011 42.1569 51.4844 42.248 51.1426V49.4951C42.1934 49.2445 42.1136 49.0029 42.0088 48.7705C41.9085 48.5335 41.7764 48.3239 41.6123 48.1416C41.4528 47.9548 41.2546 47.8066 41.0176 47.6973C40.7852 47.5879 40.5094 47.5332 40.1904 47.5332C39.8441 47.5332 39.5456 47.6061 39.2949 47.752C39.0488 47.8932 38.846 48.0892 38.6865 48.3398C38.527 48.5859 38.4085 48.873 38.3311 49.2012C38.2581 49.5247 38.2217 49.8711 38.2217 50.2402ZM48.2363 54.1367C47.7214 54.1367 47.2542 54.0501 46.835 53.877C46.4202 53.6992 46.0625 53.4508 45.7617 53.1318C45.4655 52.8128 45.2376 52.4346 45.0781 51.9971C44.9186 51.5596 44.8389 51.0811 44.8389 50.5615V50.2744C44.8389 49.6729 44.9277 49.1374 45.1055 48.668C45.2832 48.194 45.5247 47.793 45.8301 47.4648C46.1354 47.1367 46.4818 46.8883 46.8691 46.7197C47.2565 46.5511 47.6576 46.4668 48.0723 46.4668C48.6009 46.4668 49.0566 46.5579 49.4395 46.7402C49.8268 46.9225 50.1436 47.1777 50.3896 47.5059C50.6357 47.8294 50.818 48.2122 50.9365 48.6543C51.055 49.0918 51.1143 49.5703 51.1143 50.0898V50.6572H45.5908V49.625H49.8496V49.5293C49.8314 49.2012 49.763 48.8822 49.6445 48.5723C49.5306 48.2624 49.3483 48.0072 49.0977 47.8066C48.847 47.6061 48.5052 47.5059 48.0723 47.5059C47.7852 47.5059 47.5208 47.5674 47.2793 47.6904C47.0378 47.8089 46.8304 47.9867 46.6572 48.2236C46.484 48.4606 46.3496 48.75 46.2539 49.0918C46.1582 49.4336 46.1104 49.8278 46.1104 50.2744V50.5615C46.1104 50.9124 46.1582 51.2428 46.2539 51.5527C46.3542 51.8581 46.4977 52.127 46.6846 52.3594C46.876 52.5918 47.1061 52.7741 47.375 52.9062C47.6484 53.0384 47.9583 53.1045 48.3047 53.1045C48.7513 53.1045 49.1296 53.0133 49.4395 52.8311C49.7493 52.6488 50.0205 52.4049 50.2529 52.0996L51.0186 52.708C50.859 52.9495 50.6562 53.1797 50.4102 53.3984C50.1641 53.6172 49.861 53.7949 49.501 53.9316C49.1455 54.0684 48.724 54.1367 48.2363 54.1367ZM53.8555 48.1826V54H52.5908V46.6035H53.7871L53.8555 48.1826ZM53.5547 50.0215L53.0283 50.001C53.0329 49.4951 53.1081 49.028 53.2539 48.5996C53.3997 48.1667 53.6048 47.7907 53.8691 47.4717C54.1335 47.1527 54.4479 46.9066 54.8125 46.7334C55.1816 46.5557 55.5895 46.4668 56.0361 46.4668C56.4007 46.4668 56.7288 46.5169 57.0205 46.6172C57.3122 46.7129 57.5605 46.8678 57.7656 47.082C57.9753 47.2962 58.1348 47.5742 58.2441 47.916C58.3535 48.2533 58.4082 48.6657 58.4082 49.1533V54H57.1367V49.1396C57.1367 48.7523 57.0798 48.4424 56.9658 48.21C56.8519 47.973 56.6855 47.8021 56.4668 47.6973C56.248 47.5879 55.9792 47.5332 55.6602 47.5332C55.3457 47.5332 55.0586 47.5993 54.7988 47.7314C54.5436 47.8636 54.3226 48.0459 54.1357 48.2783C53.9535 48.5107 53.8099 48.7773 53.7051 49.0781C53.6048 49.3743 53.5547 49.6888 53.5547 50.0215ZM65.4902 54H64.2256V45.9609C64.2256 45.4004 64.335 44.9264 64.5537 44.5391C64.7725 44.1517 65.0846 43.8577 65.4902 43.6572C65.8958 43.4567 66.3766 43.3564 66.9326 43.3564C67.2607 43.3564 67.582 43.3975 67.8965 43.4795C68.2109 43.557 68.5345 43.6549 68.8672 43.7734L68.6553 44.8398C68.4456 44.7578 68.2018 44.6803 67.9238 44.6074C67.6504 44.5299 67.3496 44.4912 67.0215 44.4912C66.4792 44.4912 66.0872 44.6143 65.8457 44.8604C65.6087 45.1019 65.4902 45.4688 65.4902 45.9609V54ZM67.001 46.6035V47.5742H63.0566V46.6035H67.001ZM69.4893 46.6035V54H68.2246V46.6035H69.4893ZM74.6367 54.1367C74.1217 54.1367 73.6546 54.0501 73.2354 53.877C72.8206 53.6992 72.4629 53.4508 72.1621 53.1318C71.8659 52.8128 71.638 52.4346 71.4785 51.9971C71.319 51.5596 71.2393 51.0811 71.2393 50.5615V50.2744C71.2393 49.6729 71.3281 49.1374 71.5059 48.668C71.6836 48.194 71.9251 47.793 72.2305 47.4648C72.5358 47.1367 72.8822 46.8883 73.2695 46.7197C73.6569 46.5511 74.0579 46.4668 74.4727 46.4668C75.0013 46.4668 75.457 46.5579 75.8398 46.7402C76.2272 46.9225 76.5439 47.1777 76.79 47.5059C77.0361 47.8294 77.2184 48.2122 77.3369 48.6543C77.4554 49.0918 77.5146 49.5703 77.5146 50.0898V50.6572H71.9912V49.625H76.25V49.5293C76.2318 49.2012 76.1634 48.8822 76.0449 48.5723C75.931 48.2624 75.7487 48.0072 75.498 47.8066C75.2474 47.6061 74.9056 47.5059 74.4727 47.5059C74.1855 47.5059 73.9212 47.5674 73.6797 47.6904C73.4382 47.8089 73.2308 47.9867 73.0576 48.2236C72.8844 48.4606 72.75 48.75 72.6543 49.0918C72.5586 49.4336 72.5107 49.8278 72.5107 50.2744V50.5615C72.5107 50.9124 72.5586 51.2428 72.6543 51.5527C72.7546 51.8581 72.8981 52.127 73.085 52.3594C73.2764 52.5918 73.5065 52.7741 73.7754 52.9062C74.0488 53.0384 74.3587 53.1045 74.7051 53.1045C75.1517 53.1045 75.5299 53.0133 75.8398 52.8311C76.1497 52.6488 76.4209 52.4049 76.6533 52.0996L77.4189 52.708C77.2594 52.9495 77.0566 53.1797 76.8105 53.3984C76.5645 53.6172 76.2614 53.7949 75.9014 53.9316C75.5459 54.0684 75.1243 54.1367 74.6367 54.1367ZM80.3652 43.5V54H79.0938V43.5H80.3652ZM87.0576 52.5645V43.5H88.3291V54H87.167L87.0576 52.5645ZM82.0811 50.3838V50.2402C82.0811 49.6751 82.1494 49.1624 82.2861 48.7021C82.4274 48.2373 82.6257 47.8385 82.8809 47.5059C83.1406 47.1732 83.4482 46.918 83.8037 46.7402C84.1637 46.5579 84.5648 46.4668 85.0068 46.4668C85.4717 46.4668 85.8773 46.5488 86.2236 46.7129C86.5745 46.8724 86.8708 47.1071 87.1123 47.417C87.3584 47.7223 87.5521 48.0915 87.6934 48.5244C87.8346 48.9574 87.9326 49.4473 87.9873 49.9941V50.623C87.9372 51.1654 87.8392 51.653 87.6934 52.0859C87.5521 52.5189 87.3584 52.888 87.1123 53.1934C86.8708 53.4987 86.5745 53.7334 86.2236 53.8975C85.8727 54.057 85.4626 54.1367 84.9932 54.1367C84.5602 54.1367 84.1637 54.0433 83.8037 53.8564C83.4482 53.6696 83.1406 53.4076 82.8809 53.0703C82.6257 52.7331 82.4274 52.3366 82.2861 51.8809C82.1494 51.4206 82.0811 50.9215 82.0811 50.3838ZM83.3525 50.2402V50.3838C83.3525 50.7529 83.389 51.0993 83.4619 51.4229C83.5394 51.7464 83.6579 52.0312 83.8174 52.2773C83.9769 52.5234 84.1797 52.7171 84.4258 52.8584C84.6719 52.9951 84.9658 53.0635 85.3076 53.0635C85.7269 53.0635 86.071 52.9746 86.3398 52.7969C86.6133 52.6191 86.832 52.3844 86.9961 52.0928C87.1602 51.8011 87.2878 51.4844 87.3789 51.1426V49.4951C87.3242 49.2445 87.2445 49.0029 87.1396 48.7705C87.0394 48.5335 86.9072 48.3239 86.7432 48.1416C86.5837 47.9548 86.3854 47.8066 86.1484 47.6973C85.916 47.5879 85.6403 47.5332 85.3213 47.5332C84.9749 47.5332 84.6764 47.6061 84.4258 47.752C84.1797 47.8932 83.9769 48.0892 83.8174 48.3398C83.6579 48.5859 83.5394 48.873 83.4619 49.2012C83.389 49.5247 83.3525 49.8711 83.3525 50.2402ZM94.6045 52.0381C94.6045 51.8558 94.5635 51.6872 94.4814 51.5322C94.404 51.3727 94.2422 51.2292 93.9961 51.1016C93.7546 50.9694 93.39 50.8555 92.9023 50.7598C92.4922 50.6732 92.1208 50.5706 91.7881 50.4521C91.46 50.3337 91.1797 50.1901 90.9473 50.0215C90.7194 49.8529 90.5439 49.6546 90.4209 49.4268C90.2979 49.1989 90.2363 48.9323 90.2363 48.627C90.2363 48.3353 90.3001 48.0596 90.4277 47.7998C90.5599 47.54 90.7445 47.3099 90.9814 47.1094C91.223 46.9089 91.5124 46.7516 91.8496 46.6377C92.1868 46.5238 92.5628 46.4668 92.9775 46.4668C93.57 46.4668 94.0758 46.5716 94.4951 46.7812C94.9144 46.9909 95.2357 47.2712 95.459 47.6221C95.6823 47.9684 95.7939 48.3535 95.7939 48.7773H94.5293C94.5293 48.5723 94.4678 48.374 94.3447 48.1826C94.2262 47.9867 94.0508 47.8249 93.8184 47.6973C93.5905 47.5697 93.3102 47.5059 92.9775 47.5059C92.6266 47.5059 92.3418 47.5605 92.123 47.6699C91.9089 47.7747 91.7516 47.9092 91.6514 48.0732C91.5557 48.2373 91.5078 48.4105 91.5078 48.5928C91.5078 48.7295 91.5306 48.8525 91.5762 48.9619C91.6263 49.0667 91.7129 49.1647 91.8359 49.2559C91.959 49.3424 92.1322 49.4245 92.3555 49.502C92.5788 49.5794 92.8636 49.6569 93.21 49.7344C93.8161 49.8711 94.3151 50.0352 94.707 50.2266C95.099 50.418 95.3906 50.6527 95.582 50.9307C95.7734 51.2087 95.8691 51.5459 95.8691 51.9424C95.8691 52.266 95.8008 52.5622 95.6641 52.8311C95.5319 53.0999 95.3382 53.3324 95.083 53.5283C94.8324 53.7197 94.5316 53.8701 94.1807 53.9795C93.8343 54.0843 93.4447 54.1367 93.0117 54.1367C92.36 54.1367 91.8086 54.0205 91.3574 53.7881C90.9062 53.5557 90.5645 53.2549 90.332 52.8857C90.0996 52.5166 89.9834 52.127 89.9834 51.7168H91.2549C91.2731 52.0632 91.3734 52.3389 91.5557 52.5439C91.738 52.7445 91.9613 52.888 92.2256 52.9746C92.4899 53.0566 92.752 53.0977 93.0117 53.0977C93.3581 53.0977 93.6475 53.0521 93.8799 52.9609C94.1169 52.8698 94.2969 52.7445 94.4199 52.585C94.543 52.4255 94.6045 52.2432 94.6045 52.0381Z",fill:"#64748B"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1466)"},(0,h.createElement)("path",{d:"M24.0001 67.25C26.0701 67.25 27.7501 68.93 27.7501 71C27.7501 71.4875 27.6526 71.945 27.4801 72.3725L29.6701 74.5625C30.8026 73.6175 31.6951 72.395 32.2426 71C30.9451 67.7075 27.7426 65.375 23.9926 65.375C22.9426 65.375 21.9376 65.5625 21.0076 65.9L22.6276 67.52C23.0551 67.3475 23.5126 67.25 24.0001 67.25ZM16.5001 65.2025L18.2101 66.9125L18.5551 67.2575C17.3101 68.225 16.3351 69.515 15.7501 71C17.0476 74.2925 20.2501 76.625 24.0001 76.625C25.1626 76.625 26.2726 76.4 27.2851 75.995L27.6001 76.31L29.7976 78.5L30.7501 77.5475L17.4526 64.25L16.5001 65.2025ZM20.6476 69.35L21.8101 70.5125C21.7726 70.67 21.7501 70.835 21.7501 71C21.7501 72.245 22.7551 73.25 24.0001 73.25C24.1651 73.25 24.3301 73.2275 24.4876 73.19L25.6501 74.3525C25.1476 74.6 24.5926 74.75 24.0001 74.75C21.9301 74.75 20.2501 73.07 20.2501 71C20.2501 70.4075 20.4001 69.8525 20.6476 69.35ZM23.8801 68.765L26.2426 71.1275L26.2576 71.0075C26.2576 69.7625 25.2526 68.7575 24.0076 68.7575L23.8801 68.765Z",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M40.0693 65.75V75.5H38.895V65.75H40.0693ZM39.79 71.8057L39.3013 71.7866C39.3055 71.3169 39.3753 70.8831 39.5107 70.4854C39.6462 70.0833 39.8366 69.7342 40.082 69.438C40.3275 69.1418 40.6195 68.9132 40.958 68.7524C41.3008 68.5874 41.6795 68.5049 42.0942 68.5049C42.4328 68.5049 42.7375 68.5514 43.0083 68.6445C43.2791 68.7334 43.5098 68.8773 43.7002 69.0762C43.8949 69.2751 44.043 69.5332 44.1445 69.8506C44.2461 70.1637 44.2969 70.5467 44.2969 70.9995V75.5H43.1162V70.9868C43.1162 70.6271 43.0633 70.3394 42.9575 70.1235C42.8517 69.9035 42.6973 69.7448 42.4941 69.6475C42.291 69.5459 42.0413 69.4951 41.7451 69.4951C41.4531 69.4951 41.1865 69.5565 40.9453 69.6792C40.7083 69.8019 40.5031 69.9712 40.3296 70.187C40.1603 70.4028 40.027 70.6504 39.9297 70.9297C39.8366 71.2048 39.79 71.4967 39.79 71.8057ZM47.3311 68.6318V75.5H46.1504V68.6318H47.3311ZM46.0615 66.8101C46.0615 66.6196 46.1187 66.4588 46.2329 66.3276C46.3514 66.1965 46.5249 66.1309 46.7534 66.1309C46.9777 66.1309 47.1491 66.1965 47.2676 66.3276C47.3903 66.4588 47.4517 66.6196 47.4517 66.8101C47.4517 66.992 47.3903 67.1486 47.2676 67.2798C47.1491 67.4067 46.9777 67.4702 46.7534 67.4702C46.5249 67.4702 46.3514 67.4067 46.2329 67.2798C46.1187 67.1486 46.0615 66.992 46.0615 66.8101ZM53.5454 74.167V65.75H54.7261V75.5H53.647L53.5454 74.167ZM48.9243 72.1421V72.0088C48.9243 71.484 48.9878 71.008 49.1147 70.5806C49.2459 70.1489 49.43 69.7786 49.667 69.4697C49.9082 69.1608 50.1938 68.9238 50.5239 68.7588C50.8582 68.5895 51.2306 68.5049 51.6411 68.5049C52.0728 68.5049 52.4494 68.5811 52.771 68.7334C53.0968 68.8815 53.3719 69.0994 53.5962 69.3872C53.8247 69.6707 54.0046 70.0135 54.1357 70.4155C54.2669 70.8175 54.3579 71.2725 54.4087 71.7803V72.3643C54.3621 72.8678 54.2712 73.3206 54.1357 73.7227C54.0046 74.1247 53.8247 74.4674 53.5962 74.751C53.3719 75.0345 53.0968 75.2524 52.771 75.4048C52.4451 75.5529 52.0643 75.627 51.6284 75.627C51.2264 75.627 50.8582 75.5402 50.5239 75.3667C50.1938 75.1932 49.9082 74.9499 49.667 74.6367C49.43 74.3236 49.2459 73.9554 49.1147 73.5322C48.9878 73.1048 48.9243 72.6414 48.9243 72.1421ZM50.105 72.0088V72.1421C50.105 72.4849 50.1388 72.8065 50.2065 73.1069C50.2785 73.4074 50.3885 73.6719 50.5366 73.9004C50.6847 74.1289 50.873 74.3088 51.1016 74.4399C51.3301 74.5669 51.603 74.6304 51.9204 74.6304C52.3097 74.6304 52.6292 74.5479 52.8789 74.3828C53.1328 74.2178 53.3359 73.9998 53.4883 73.729C53.6406 73.4582 53.7591 73.1641 53.8438 72.8467V71.3169C53.793 71.0841 53.7189 70.8599 53.6216 70.644C53.5285 70.424 53.4058 70.2293 53.2534 70.0601C53.1053 69.8866 52.9212 69.749 52.7012 69.6475C52.4854 69.5459 52.2293 69.4951 51.9331 69.4951C51.6115 69.4951 51.3343 69.5628 51.1016 69.6982C50.873 69.8294 50.6847 70.0114 50.5366 70.2441C50.3885 70.4727 50.2785 70.7393 50.2065 71.0439C50.1388 71.3444 50.105 71.666 50.105 72.0088ZM60.8833 74.167V65.75H62.064V75.5H60.9849L60.8833 74.167ZM56.2622 72.1421V72.0088C56.2622 71.484 56.3257 71.008 56.4526 70.5806C56.5838 70.1489 56.7679 69.7786 57.0049 69.4697C57.2461 69.1608 57.5317 68.9238 57.8618 68.7588C58.1961 68.5895 58.5685 68.5049 58.979 68.5049C59.4106 68.5049 59.7873 68.5811 60.1089 68.7334C60.4347 68.8815 60.7098 69.0994 60.9341 69.3872C61.1626 69.6707 61.3424 70.0135 61.4736 70.4155C61.6048 70.8175 61.6958 71.2725 61.7466 71.7803V72.3643C61.7 72.8678 61.609 73.3206 61.4736 73.7227C61.3424 74.1247 61.1626 74.4674 60.9341 74.751C60.7098 75.0345 60.4347 75.2524 60.1089 75.4048C59.783 75.5529 59.4022 75.627 58.9663 75.627C58.5643 75.627 58.1961 75.5402 57.8618 75.3667C57.5317 75.1932 57.2461 74.9499 57.0049 74.6367C56.7679 74.3236 56.5838 73.9554 56.4526 73.5322C56.3257 73.1048 56.2622 72.6414 56.2622 72.1421ZM57.4429 72.0088V72.1421C57.4429 72.4849 57.4767 72.8065 57.5444 73.1069C57.6164 73.4074 57.7264 73.6719 57.8745 73.9004C58.0226 74.1289 58.2109 74.3088 58.4395 74.4399C58.668 74.5669 58.9409 74.6304 59.2583 74.6304C59.6476 74.6304 59.9671 74.5479 60.2168 74.3828C60.4707 74.2178 60.6738 73.9998 60.8262 73.729C60.9785 73.4582 61.097 73.1641 61.1816 72.8467V71.3169C61.1309 71.0841 61.0568 70.8599 60.9595 70.644C60.8664 70.424 60.7437 70.2293 60.5913 70.0601C60.4432 69.8866 60.2591 69.749 60.0391 69.6475C59.8232 69.5459 59.5672 69.4951 59.271 69.4951C58.9494 69.4951 58.6722 69.5628 58.4395 69.6982C58.2109 69.8294 58.0226 70.0114 57.8745 70.2441C57.7264 70.4727 57.6164 70.7393 57.5444 71.0439C57.4767 71.3444 57.4429 71.666 57.4429 72.0088ZM66.7422 75.627C66.264 75.627 65.8302 75.5465 65.4409 75.3857C65.0558 75.2207 64.7236 74.9901 64.4443 74.6938C64.1693 74.3976 63.9577 74.0464 63.8096 73.6401C63.6615 73.2339 63.5874 72.7896 63.5874 72.3071V72.0405C63.5874 71.4819 63.6699 70.9847 63.835 70.5488C64 70.1087 64.2243 69.7363 64.5078 69.4316C64.7913 69.127 65.113 68.8963 65.4727 68.7397C65.8324 68.5832 66.2048 68.5049 66.5898 68.5049C67.0807 68.5049 67.5039 68.5895 67.8594 68.7588C68.2191 68.9281 68.5132 69.165 68.7417 69.4697C68.9702 69.7702 69.1395 70.1257 69.2495 70.5361C69.3595 70.9424 69.4146 71.3867 69.4146 71.8691V72.396H64.2856V71.4375H68.2402V71.3486C68.2233 71.0439 68.1598 70.7477 68.0498 70.46C67.944 70.1722 67.7747 69.9352 67.542 69.749C67.3092 69.5628 66.9919 69.4697 66.5898 69.4697C66.3232 69.4697 66.0778 69.5269 65.8535 69.6411C65.6292 69.7511 65.4367 69.9162 65.2759 70.1362C65.1151 70.3563 64.9902 70.625 64.9014 70.9424C64.8125 71.2598 64.7681 71.6258 64.7681 72.0405V72.3071C64.7681 72.633 64.8125 72.9398 64.9014 73.2275C64.9945 73.5111 65.1278 73.7607 65.3013 73.9766C65.479 74.1924 65.6927 74.3617 65.9424 74.4844C66.1963 74.6071 66.484 74.6685 66.8057 74.6685C67.2204 74.6685 67.5716 74.5838 67.8594 74.4146C68.1471 74.2453 68.3989 74.0189 68.6147 73.7354L69.3257 74.3003C69.1776 74.5246 68.9893 74.7383 68.7607 74.9414C68.5322 75.1445 68.2508 75.3096 67.9165 75.4365C67.5864 75.5635 67.195 75.627 66.7422 75.627ZM71.96 70.0981V75.5H70.7856V68.6318H71.8965L71.96 70.0981ZM71.6807 71.8057L71.1919 71.7866C71.1961 71.3169 71.266 70.8831 71.4014 70.4854C71.5368 70.0833 71.7272 69.7342 71.9727 69.438C72.2181 69.1418 72.5101 68.9132 72.8486 68.7524C73.1914 68.5874 73.5701 68.5049 73.9849 68.5049C74.3234 68.5049 74.6281 68.5514 74.8989 68.6445C75.1698 68.7334 75.4004 68.8773 75.5908 69.0762C75.7855 69.2751 75.9336 69.5332 76.0352 69.8506C76.1367 70.1637 76.1875 70.5467 76.1875 70.9995V75.5H75.0068V70.9868C75.0068 70.6271 74.9539 70.3394 74.8481 70.1235C74.7424 69.9035 74.5879 69.7448 74.3848 69.6475C74.1816 69.5459 73.932 69.4951 73.6357 69.4951C73.3438 69.4951 73.0771 69.5565 72.8359 69.6792C72.599 69.8019 72.3937 69.9712 72.2202 70.187C72.0509 70.4028 71.9176 70.6504 71.8203 70.9297C71.7272 71.2048 71.6807 71.4967 71.6807 71.8057ZM82.9224 75.5V76.4648H77.1016V75.5H82.9224ZM86.7119 68.6318V69.5332H82.9985V68.6318H86.7119ZM84.2554 66.9624H85.4297V73.7988C85.4297 74.0316 85.4657 74.2072 85.5376 74.3257C85.6095 74.4442 85.7026 74.5225 85.8169 74.5605C85.9312 74.5986 86.0539 74.6177 86.1851 74.6177C86.2824 74.6177 86.384 74.6092 86.4897 74.5923C86.5998 74.5711 86.6823 74.5542 86.7373 74.5415L86.7437 75.5C86.6506 75.5296 86.5278 75.5571 86.3755 75.5825C86.2274 75.6121 86.0475 75.627 85.8359 75.627C85.5482 75.627 85.2837 75.5698 85.0425 75.4556C84.8013 75.3413 84.6087 75.1509 84.4648 74.8843C84.3252 74.6134 84.2554 74.2495 84.2554 73.7925V66.9624ZM92.1392 74.3257V70.79C92.1392 70.5192 92.0841 70.2843 91.9741 70.0854C91.8683 69.8823 91.7075 69.7257 91.4917 69.6157C91.2759 69.5057 91.0093 69.4507 90.6919 69.4507C90.3957 69.4507 90.1354 69.5015 89.9111 69.603C89.6911 69.7046 89.5176 69.8379 89.3906 70.0029C89.2679 70.168 89.2065 70.3457 89.2065 70.5361H88.0322C88.0322 70.2907 88.0957 70.0474 88.2227 69.8062C88.3496 69.5649 88.5316 69.347 88.7686 69.1523C89.0098 68.9535 89.2975 68.7969 89.6318 68.6826C89.9704 68.5641 90.347 68.5049 90.7617 68.5049C91.2611 68.5049 91.7012 68.5895 92.082 68.7588C92.4671 68.9281 92.7676 69.1841 92.9834 69.5269C93.2035 69.8654 93.3135 70.2907 93.3135 70.8027V74.002C93.3135 74.2305 93.3325 74.4738 93.3706 74.7319C93.4129 74.9901 93.4743 75.2122 93.5547 75.3984V75.5H92.3296C92.2703 75.3646 92.2238 75.1847 92.1899 74.9604C92.1561 74.7319 92.1392 74.5203 92.1392 74.3257ZM92.3423 71.3359L92.355 72.1611H91.168C90.8337 72.1611 90.5353 72.1886 90.2729 72.2437C90.0106 72.2944 89.7905 72.3727 89.6128 72.4785C89.4351 72.5843 89.2996 72.7176 89.2065 72.8784C89.1134 73.035 89.0669 73.2191 89.0669 73.4307C89.0669 73.6465 89.1156 73.8433 89.2129 74.021C89.3102 74.1987 89.4562 74.3405 89.6509 74.4463C89.8498 74.5479 90.0931 74.5986 90.3809 74.5986C90.7406 74.5986 91.0579 74.5225 91.333 74.3701C91.6081 74.2178 91.826 74.0316 91.9868 73.8115C92.1519 73.5915 92.2407 73.3778 92.2534 73.1704L92.7549 73.7354C92.7253 73.9131 92.6449 74.1099 92.5137 74.3257C92.3825 74.5415 92.2069 74.7489 91.9868 74.9478C91.771 75.1424 91.5129 75.3053 91.2124 75.4365C90.9162 75.5635 90.5819 75.627 90.2095 75.627C89.744 75.627 89.3356 75.536 88.9844 75.354C88.6374 75.172 88.3665 74.9287 88.1719 74.624C87.9814 74.3151 87.8862 73.9702 87.8862 73.5894C87.8862 73.2212 87.9582 72.8975 88.1021 72.6182C88.2459 72.3346 88.4533 72.0998 88.7241 71.9136C88.995 71.7231 89.3208 71.5793 89.7017 71.4819C90.0825 71.3846 90.5078 71.3359 90.9775 71.3359H92.3423ZM95.9541 68.6318L97.4585 71.1328L98.9819 68.6318H100.359L98.1123 72.0215L100.429 75.5H99.0708L97.4839 72.9229L95.897 75.5H94.5322L96.8428 72.0215L94.6021 68.6318H95.9541ZM106.561 75.5V76.4648H100.74V75.5H106.561ZM108.649 69.9521V78.1406H107.469V68.6318H108.548L108.649 69.9521ZM113.277 72.0088V72.1421C113.277 72.6414 113.218 73.1048 113.099 73.5322C112.981 73.9554 112.807 74.3236 112.579 74.6367C112.354 74.9499 112.077 75.1932 111.747 75.3667C111.417 75.5402 111.038 75.627 110.611 75.627C110.175 75.627 109.79 75.555 109.456 75.4111C109.121 75.2673 108.838 75.0578 108.605 74.7827C108.372 74.5076 108.186 74.1776 108.046 73.7925C107.911 73.4074 107.818 72.9736 107.767 72.4912V71.7803C107.818 71.2725 107.913 70.8175 108.053 70.4155C108.192 70.0135 108.376 69.6707 108.605 69.3872C108.838 69.0994 109.119 68.8815 109.449 68.7334C109.779 68.5811 110.16 68.5049 110.592 68.5049C111.023 68.5049 111.406 68.5895 111.741 68.7588C112.075 68.9238 112.356 69.1608 112.585 69.4697C112.813 69.7786 112.985 70.1489 113.099 70.5806C113.218 71.008 113.277 71.484 113.277 72.0088ZM112.096 72.1421V72.0088C112.096 71.666 112.06 71.3444 111.988 71.0439C111.916 70.7393 111.804 70.4727 111.652 70.2441C111.504 70.0114 111.313 69.8294 111.081 69.6982C110.848 69.5628 110.571 69.4951 110.249 69.4951C109.953 69.4951 109.695 69.5459 109.475 69.6475C109.259 69.749 109.075 69.8866 108.922 70.0601C108.77 70.2293 108.645 70.424 108.548 70.644C108.455 70.8599 108.385 71.0841 108.338 71.3169V72.9609C108.423 73.2572 108.542 73.5365 108.694 73.7988C108.846 74.057 109.049 74.2664 109.303 74.4272C109.557 74.5838 109.877 74.6621 110.262 74.6621C110.579 74.6621 110.852 74.5965 111.081 74.4653C111.313 74.3299 111.504 74.1458 111.652 73.9131C111.804 73.6803 111.916 73.4137 111.988 73.1133C112.06 72.8086 112.096 72.4849 112.096 72.1421ZM117.625 75.627C117.147 75.627 116.713 75.5465 116.324 75.3857C115.939 75.2207 115.606 74.9901 115.327 74.6938C115.052 74.3976 114.84 74.0464 114.692 73.6401C114.544 73.2339 114.47 72.7896 114.47 72.3071V72.0405C114.47 71.4819 114.553 70.9847 114.718 70.5488C114.883 70.1087 115.107 69.7363 115.391 69.4316C115.674 69.127 115.996 68.8963 116.355 68.7397C116.715 68.5832 117.088 68.5049 117.473 68.5049C117.964 68.5049 118.387 68.5895 118.742 68.7588C119.102 68.9281 119.396 69.165 119.625 69.4697C119.853 69.7702 120.022 70.1257 120.132 70.5361C120.242 70.9424 120.297 71.3867 120.297 71.8691V72.396H115.168V71.4375H119.123V71.3486C119.106 71.0439 119.043 70.7477 118.933 70.46C118.827 70.1722 118.658 69.9352 118.425 69.749C118.192 69.5628 117.875 69.4697 117.473 69.4697C117.206 69.4697 116.961 69.5269 116.736 69.6411C116.512 69.7511 116.319 69.9162 116.159 70.1362C115.998 70.3563 115.873 70.625 115.784 70.9424C115.695 71.2598 115.651 71.6258 115.651 72.0405V72.3071C115.651 72.633 115.695 72.9398 115.784 73.2275C115.877 73.5111 116.011 73.7607 116.184 73.9766C116.362 74.1924 116.576 74.3617 116.825 74.4844C117.079 74.6071 117.367 74.6685 117.688 74.6685C118.103 74.6685 118.454 74.5838 118.742 74.4146C119.03 74.2453 119.282 74.0189 119.498 73.7354L120.208 74.3003C120.06 74.5246 119.872 74.7383 119.644 74.9414C119.415 75.1445 119.134 75.3096 118.799 75.4365C118.469 75.5635 118.078 75.627 117.625 75.627ZM122.843 69.7109V75.5H121.668V68.6318H122.811L122.843 69.7109ZM124.988 68.5938L124.982 69.6855C124.885 69.6644 124.792 69.6517 124.703 69.6475C124.618 69.639 124.521 69.6348 124.411 69.6348C124.14 69.6348 123.901 69.6771 123.693 69.7617C123.486 69.8464 123.31 69.9648 123.167 70.1172C123.023 70.2695 122.908 70.4515 122.824 70.6631C122.743 70.8704 122.69 71.099 122.665 71.3486L122.335 71.5391C122.335 71.1243 122.375 70.735 122.456 70.3711C122.54 70.0072 122.669 69.6855 122.843 69.4062C123.016 69.1227 123.236 68.9027 123.503 68.7461C123.774 68.5853 124.095 68.5049 124.468 68.5049C124.552 68.5049 124.65 68.5155 124.76 68.5366C124.87 68.5535 124.946 68.5726 124.988 68.5938ZM128.695 74.6621C128.975 74.6621 129.233 74.605 129.47 74.4907C129.707 74.3765 129.901 74.2199 130.054 74.021C130.206 73.8179 130.293 73.5872 130.314 73.3291H131.431C131.41 73.7354 131.272 74.1141 131.019 74.4653C130.769 74.8123 130.441 75.0938 130.035 75.3096C129.628 75.5212 129.182 75.627 128.695 75.627C128.179 75.627 127.728 75.536 127.343 75.354C126.962 75.172 126.645 74.9224 126.391 74.605C126.141 74.2876 125.953 73.9237 125.826 73.5132C125.703 73.0985 125.642 72.6605 125.642 72.1992V71.9326C125.642 71.4714 125.703 71.0355 125.826 70.625C125.953 70.2103 126.141 69.8442 126.391 69.5269C126.645 69.2095 126.962 68.9598 127.343 68.7778C127.728 68.5959 128.179 68.5049 128.695 68.5049C129.233 68.5049 129.702 68.6149 130.104 68.835C130.507 69.0508 130.822 69.347 131.05 69.7236C131.283 70.096 131.41 70.5192 131.431 70.9932H130.314C130.293 70.7096 130.212 70.4536 130.073 70.2251C129.937 69.9966 129.751 69.8146 129.514 69.6792C129.281 69.5396 129.008 69.4697 128.695 69.4697C128.336 69.4697 128.033 69.5417 127.788 69.6855C127.546 69.8252 127.354 70.0156 127.21 70.2568C127.07 70.4938 126.969 70.7583 126.905 71.0503C126.846 71.3381 126.816 71.6322 126.816 71.9326V72.1992C126.816 72.4997 126.846 72.7959 126.905 73.0879C126.965 73.3799 127.064 73.6444 127.204 73.8813C127.347 74.1183 127.54 74.3088 127.781 74.4526C128.027 74.5923 128.331 74.6621 128.695 74.6621ZM135.602 75.627C135.123 75.627 134.69 75.5465 134.3 75.3857C133.915 75.2207 133.583 74.9901 133.304 74.6938C133.029 74.3976 132.817 74.0464 132.669 73.6401C132.521 73.2339 132.447 72.7896 132.447 72.3071V72.0405C132.447 71.4819 132.529 70.9847 132.694 70.5488C132.859 70.1087 133.084 69.7363 133.367 69.4316C133.651 69.127 133.972 68.8963 134.332 68.7397C134.692 68.5832 135.064 68.5049 135.449 68.5049C135.94 68.5049 136.363 68.5895 136.719 68.7588C137.078 68.9281 137.373 69.165 137.601 69.4697C137.83 69.7702 137.999 70.1257 138.109 70.5361C138.219 70.9424 138.274 71.3867 138.274 71.8691V72.396H133.145V71.4375H137.1V71.3486C137.083 71.0439 137.019 70.7477 136.909 70.46C136.803 70.1722 136.634 69.9352 136.401 69.749C136.169 69.5628 135.851 69.4697 135.449 69.4697C135.183 69.4697 134.937 69.5269 134.713 69.6411C134.489 69.7511 134.296 69.9162 134.135 70.1362C133.974 70.3563 133.85 70.625 133.761 70.9424C133.672 71.2598 133.627 71.6258 133.627 72.0405V72.3071C133.627 72.633 133.672 72.9398 133.761 73.2275C133.854 73.5111 133.987 73.7607 134.161 73.9766C134.338 74.1924 134.552 74.3617 134.802 74.4844C135.056 74.6071 135.343 74.6685 135.665 74.6685C136.08 74.6685 136.431 74.5838 136.719 74.4146C137.007 74.2453 137.258 74.0189 137.474 73.7354L138.185 74.3003C138.037 74.5246 137.849 74.7383 137.62 74.9414C137.392 75.1445 137.11 75.3096 136.776 75.4365C136.446 75.5635 136.054 75.627 135.602 75.627ZM140.819 70.0981V75.5H139.645V68.6318H140.756L140.819 70.0981ZM140.54 71.8057L140.051 71.7866C140.056 71.3169 140.125 70.8831 140.261 70.4854C140.396 70.0833 140.587 69.7342 140.832 69.438C141.077 69.1418 141.369 68.9132 141.708 68.7524C142.051 68.5874 142.43 68.5049 142.844 68.5049C143.183 68.5049 143.487 68.5514 143.758 68.6445C144.029 68.7334 144.26 68.8773 144.45 69.0762C144.645 69.2751 144.793 69.5332 144.895 69.8506C144.996 70.1637 145.047 70.5467 145.047 70.9995V75.5H143.866V70.9868C143.866 70.6271 143.813 70.3394 143.708 70.1235C143.602 69.9035 143.447 69.7448 143.244 69.6475C143.041 69.5459 142.791 69.4951 142.495 69.4951C142.203 69.4951 141.937 69.5565 141.695 69.6792C141.458 69.8019 141.253 69.9712 141.08 70.187C140.91 70.4028 140.777 70.6504 140.68 70.9297C140.587 71.2048 140.54 71.4967 140.54 71.8057ZM149.706 68.6318V69.5332H145.993V68.6318H149.706ZM147.25 66.9624H148.424V73.7988C148.424 74.0316 148.46 74.2072 148.532 74.3257C148.604 74.4442 148.697 74.5225 148.811 74.5605C148.925 74.5986 149.048 74.6177 149.179 74.6177C149.277 74.6177 149.378 74.6092 149.484 74.5923C149.594 74.5711 149.676 74.5542 149.731 74.5415L149.738 75.5C149.645 75.5296 149.522 75.5571 149.37 75.5825C149.222 75.6121 149.042 75.627 148.83 75.627C148.542 75.627 148.278 75.5698 148.037 75.4556C147.795 75.3413 147.603 75.1509 147.459 74.8843C147.319 74.6134 147.25 74.2495 147.25 73.7925V66.9624Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M255.253 71.1011L254.314 70.8599L254.777 66.2578H259.519V67.3433H255.774L255.495 69.8569C255.664 69.7596 255.878 69.6686 256.136 69.584C256.398 69.4993 256.699 69.457 257.037 69.457C257.465 69.457 257.847 69.5311 258.186 69.6792C258.525 69.8231 258.812 70.0304 259.049 70.3013C259.291 70.5721 259.475 70.8979 259.602 71.2788C259.729 71.6597 259.792 72.085 259.792 72.5547C259.792 72.999 259.731 73.4074 259.608 73.7798C259.489 74.1522 259.31 74.478 259.068 74.7573C258.827 75.0324 258.522 75.2461 258.154 75.3984C257.79 75.5508 257.361 75.627 256.866 75.627C256.493 75.627 256.14 75.5762 255.806 75.4746C255.476 75.3688 255.179 75.2101 254.917 74.9985C254.659 74.7827 254.447 74.5161 254.282 74.1987C254.121 73.8771 254.02 73.5005 253.978 73.0688H255.095C255.146 73.4159 255.247 73.7078 255.399 73.9448C255.552 74.1818 255.751 74.3617 255.996 74.4844C256.246 74.6029 256.536 74.6621 256.866 74.6621C257.145 74.6621 257.393 74.6134 257.608 74.5161C257.824 74.4188 258.006 74.2791 258.154 74.0972C258.302 73.9152 258.415 73.6951 258.491 73.437C258.571 73.1789 258.611 72.889 258.611 72.5674C258.611 72.2754 258.571 72.0046 258.491 71.7549C258.41 71.5052 258.29 71.2873 258.129 71.1011C257.972 70.9149 257.78 70.771 257.551 70.6694C257.323 70.5636 257.06 70.5107 256.764 70.5107C256.371 70.5107 256.072 70.5636 255.869 70.6694C255.67 70.7752 255.465 70.9191 255.253 71.1011ZM260.979 68.5239V68.0352C260.979 67.6839 261.055 67.3644 261.208 67.0767C261.36 66.7889 261.578 66.5583 261.861 66.3848C262.145 66.2113 262.481 66.1245 262.871 66.1245C263.268 66.1245 263.607 66.2113 263.886 66.3848C264.17 66.5583 264.388 66.7889 264.54 67.0767C264.692 67.3644 264.769 67.6839 264.769 68.0352V68.5239C264.769 68.8667 264.692 69.182 264.54 69.4697C264.392 69.7575 264.176 69.9881 263.893 70.1616C263.613 70.3351 263.277 70.4219 262.883 70.4219C262.49 70.4219 262.149 70.3351 261.861 70.1616C261.578 69.9881 261.36 69.7575 261.208 69.4697C261.055 69.182 260.979 68.8667 260.979 68.5239ZM261.861 68.0352V68.5239C261.861 68.7186 261.897 68.9027 261.969 69.0762C262.045 69.2497 262.16 69.3914 262.312 69.5015C262.464 69.6073 262.655 69.6602 262.883 69.6602C263.112 69.6602 263.3 69.6073 263.448 69.5015C263.596 69.3914 263.706 69.2497 263.778 69.0762C263.85 68.9027 263.886 68.7186 263.886 68.5239V68.0352C263.886 67.8363 263.848 67.6501 263.772 67.4766C263.7 67.2988 263.588 67.1571 263.436 67.0513C263.287 66.9412 263.099 66.8862 262.871 66.8862C262.646 66.8862 262.458 66.9412 262.306 67.0513C262.158 67.1571 262.045 67.2988 261.969 67.4766C261.897 67.6501 261.861 67.8363 261.861 68.0352ZM265.479 73.729V73.2339C265.479 72.8869 265.556 72.5695 265.708 72.2817C265.86 71.994 266.078 71.7633 266.362 71.5898C266.645 71.4163 266.982 71.3296 267.371 71.3296C267.769 71.3296 268.107 71.4163 268.387 71.5898C268.67 71.7633 268.888 71.994 269.041 72.2817C269.193 72.5695 269.269 72.8869 269.269 73.2339V73.729C269.269 74.076 269.193 74.3934 269.041 74.6812C268.892 74.9689 268.677 75.1995 268.393 75.373C268.114 75.5465 267.777 75.6333 267.384 75.6333C266.99 75.6333 266.652 75.5465 266.368 75.373C266.085 75.1995 265.865 74.9689 265.708 74.6812C265.556 74.3934 265.479 74.076 265.479 73.729ZM266.362 73.2339V73.729C266.362 73.9237 266.398 74.1099 266.47 74.2876C266.546 74.4611 266.66 74.6029 266.812 74.7129C266.965 74.8187 267.155 74.8716 267.384 74.8716C267.612 74.8716 267.801 74.8187 267.949 74.7129C268.101 74.6029 268.213 74.4611 268.285 74.2876C268.357 74.1141 268.393 73.9279 268.393 73.729V73.2339C268.393 73.035 268.355 72.8488 268.279 72.6753C268.207 72.5018 268.095 72.3621 267.942 72.2563C267.794 72.1463 267.604 72.0913 267.371 72.0913C267.147 72.0913 266.958 72.1463 266.806 72.2563C266.658 72.3621 266.546 72.5018 266.47 72.6753C266.398 72.8488 266.362 73.035 266.362 73.2339ZM267.663 67.5718L263.15 74.7954L262.49 74.3765L267.003 67.1528L267.663 67.5718Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip2_75_1466)"},(0,h.createElement)("path",{d:"M24.0001 90.25C26.0701 90.25 27.7501 91.93 27.7501 94C27.7501 94.4875 27.6526 94.945 27.4801 95.3725L29.6701 97.5625C30.8026 96.6175 31.6951 95.395 32.2426 94C30.9451 90.7075 27.7426 88.375 23.9926 88.375C22.9426 88.375 21.9376 88.5625 21.0076 88.9L22.6276 90.52C23.0551 90.3475 23.5126 90.25 24.0001 90.25ZM16.5001 88.2025L18.2101 89.9125L18.5551 90.2575C17.3101 91.225 16.3351 92.515 15.7501 94C17.0476 97.2925 20.2501 99.625 24.0001 99.625C25.1626 99.625 26.2726 99.4 27.2851 98.995L27.6001 99.31L29.7976 101.5L30.7501 100.547L17.4526 87.25L16.5001 88.2025ZM20.6476 92.35L21.8101 93.5125C21.7726 93.67 21.7501 93.835 21.7501 94C21.7501 95.245 22.7551 96.25 24.0001 96.25C24.1651 96.25 24.3301 96.2275 24.4876 96.19L25.6501 97.3525C25.1476 97.6 24.5926 97.75 24.0001 97.75C21.9301 97.75 20.2501 96.07 20.2501 94C20.2501 93.4075 20.4001 92.8525 20.6476 92.35ZM23.8801 91.765L26.2426 94.1275L26.2576 94.0075C26.2576 92.7625 25.2526 91.7575 24.0076 91.7575L23.8801 91.765Z",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M40.0693 88.75V98.5H38.895V88.75H40.0693ZM39.79 94.8057L39.3013 94.7866C39.3055 94.3169 39.3753 93.8831 39.5107 93.4854C39.6462 93.0833 39.8366 92.7342 40.082 92.438C40.3275 92.1418 40.6195 91.9132 40.958 91.7524C41.3008 91.5874 41.6795 91.5049 42.0942 91.5049C42.4328 91.5049 42.7375 91.5514 43.0083 91.6445C43.2791 91.7334 43.5098 91.8773 43.7002 92.0762C43.8949 92.2751 44.043 92.5332 44.1445 92.8506C44.2461 93.1637 44.2969 93.5467 44.2969 93.9995V98.5H43.1162V93.9868C43.1162 93.6271 43.0633 93.3394 42.9575 93.1235C42.8517 92.9035 42.6973 92.7448 42.4941 92.6475C42.291 92.5459 42.0413 92.4951 41.7451 92.4951C41.4531 92.4951 41.1865 92.5565 40.9453 92.6792C40.7083 92.8019 40.5031 92.9712 40.3296 93.187C40.1603 93.4028 40.027 93.6504 39.9297 93.9297C39.8366 94.2048 39.79 94.4967 39.79 94.8057ZM47.3311 91.6318V98.5H46.1504V91.6318H47.3311ZM46.0615 89.8101C46.0615 89.6196 46.1187 89.4588 46.2329 89.3276C46.3514 89.1965 46.5249 89.1309 46.7534 89.1309C46.9777 89.1309 47.1491 89.1965 47.2676 89.3276C47.3903 89.4588 47.4517 89.6196 47.4517 89.8101C47.4517 89.992 47.3903 90.1486 47.2676 90.2798C47.1491 90.4067 46.9777 90.4702 46.7534 90.4702C46.5249 90.4702 46.3514 90.4067 46.2329 90.2798C46.1187 90.1486 46.0615 89.992 46.0615 89.8101ZM53.5454 97.167V88.75H54.7261V98.5H53.647L53.5454 97.167ZM48.9243 95.1421V95.0088C48.9243 94.484 48.9878 94.008 49.1147 93.5806C49.2459 93.1489 49.43 92.7786 49.667 92.4697C49.9082 92.1608 50.1938 91.9238 50.5239 91.7588C50.8582 91.5895 51.2306 91.5049 51.6411 91.5049C52.0728 91.5049 52.4494 91.5811 52.771 91.7334C53.0968 91.8815 53.3719 92.0994 53.5962 92.3872C53.8247 92.6707 54.0046 93.0135 54.1357 93.4155C54.2669 93.8175 54.3579 94.2725 54.4087 94.7803V95.3643C54.3621 95.8678 54.2712 96.3206 54.1357 96.7227C54.0046 97.1247 53.8247 97.4674 53.5962 97.751C53.3719 98.0345 53.0968 98.2524 52.771 98.4048C52.4451 98.5529 52.0643 98.627 51.6284 98.627C51.2264 98.627 50.8582 98.5402 50.5239 98.3667C50.1938 98.1932 49.9082 97.9499 49.667 97.6367C49.43 97.3236 49.2459 96.9554 49.1147 96.5322C48.9878 96.1048 48.9243 95.6414 48.9243 95.1421ZM50.105 95.0088V95.1421C50.105 95.4849 50.1388 95.8065 50.2065 96.1069C50.2785 96.4074 50.3885 96.6719 50.5366 96.9004C50.6847 97.1289 50.873 97.3088 51.1016 97.4399C51.3301 97.5669 51.603 97.6304 51.9204 97.6304C52.3097 97.6304 52.6292 97.5479 52.8789 97.3828C53.1328 97.2178 53.3359 96.9998 53.4883 96.729C53.6406 96.4582 53.7591 96.1641 53.8438 95.8467V94.3169C53.793 94.0841 53.7189 93.8599 53.6216 93.644C53.5285 93.424 53.4058 93.2293 53.2534 93.0601C53.1053 92.8866 52.9212 92.749 52.7012 92.6475C52.4854 92.5459 52.2293 92.4951 51.9331 92.4951C51.6115 92.4951 51.3343 92.5628 51.1016 92.6982C50.873 92.8294 50.6847 93.0114 50.5366 93.2441C50.3885 93.4727 50.2785 93.7393 50.2065 94.0439C50.1388 94.3444 50.105 94.666 50.105 95.0088ZM60.8833 97.167V88.75H62.064V98.5H60.9849L60.8833 97.167ZM56.2622 95.1421V95.0088C56.2622 94.484 56.3257 94.008 56.4526 93.5806C56.5838 93.1489 56.7679 92.7786 57.0049 92.4697C57.2461 92.1608 57.5317 91.9238 57.8618 91.7588C58.1961 91.5895 58.5685 91.5049 58.979 91.5049C59.4106 91.5049 59.7873 91.5811 60.1089 91.7334C60.4347 91.8815 60.7098 92.0994 60.9341 92.3872C61.1626 92.6707 61.3424 93.0135 61.4736 93.4155C61.6048 93.8175 61.6958 94.2725 61.7466 94.7803V95.3643C61.7 95.8678 61.609 96.3206 61.4736 96.7227C61.3424 97.1247 61.1626 97.4674 60.9341 97.751C60.7098 98.0345 60.4347 98.2524 60.1089 98.4048C59.783 98.5529 59.4022 98.627 58.9663 98.627C58.5643 98.627 58.1961 98.5402 57.8618 98.3667C57.5317 98.1932 57.2461 97.9499 57.0049 97.6367C56.7679 97.3236 56.5838 96.9554 56.4526 96.5322C56.3257 96.1048 56.2622 95.6414 56.2622 95.1421ZM57.4429 95.0088V95.1421C57.4429 95.4849 57.4767 95.8065 57.5444 96.1069C57.6164 96.4074 57.7264 96.6719 57.8745 96.9004C58.0226 97.1289 58.2109 97.3088 58.4395 97.4399C58.668 97.5669 58.9409 97.6304 59.2583 97.6304C59.6476 97.6304 59.9671 97.5479 60.2168 97.3828C60.4707 97.2178 60.6738 96.9998 60.8262 96.729C60.9785 96.4582 61.097 96.1641 61.1816 95.8467V94.3169C61.1309 94.0841 61.0568 93.8599 60.9595 93.644C60.8664 93.424 60.7437 93.2293 60.5913 93.0601C60.4432 92.8866 60.2591 92.749 60.0391 92.6475C59.8232 92.5459 59.5672 92.4951 59.271 92.4951C58.9494 92.4951 58.6722 92.5628 58.4395 92.6982C58.2109 92.8294 58.0226 93.0114 57.8745 93.2441C57.7264 93.4727 57.6164 93.7393 57.5444 94.0439C57.4767 94.3444 57.4429 94.666 57.4429 95.0088ZM66.7422 98.627C66.264 98.627 65.8302 98.5465 65.4409 98.3857C65.0558 98.2207 64.7236 97.9901 64.4443 97.6938C64.1693 97.3976 63.9577 97.0464 63.8096 96.6401C63.6615 96.2339 63.5874 95.7896 63.5874 95.3071V95.0405C63.5874 94.4819 63.6699 93.9847 63.835 93.5488C64 93.1087 64.2243 92.7363 64.5078 92.4316C64.7913 92.127 65.113 91.8963 65.4727 91.7397C65.8324 91.5832 66.2048 91.5049 66.5898 91.5049C67.0807 91.5049 67.5039 91.5895 67.8594 91.7588C68.2191 91.9281 68.5132 92.165 68.7417 92.4697C68.9702 92.7702 69.1395 93.1257 69.2495 93.5361C69.3595 93.9424 69.4146 94.3867 69.4146 94.8691V95.396H64.2856V94.4375H68.2402V94.3486C68.2233 94.0439 68.1598 93.7477 68.0498 93.46C67.944 93.1722 67.7747 92.9352 67.542 92.749C67.3092 92.5628 66.9919 92.4697 66.5898 92.4697C66.3232 92.4697 66.0778 92.5269 65.8535 92.6411C65.6292 92.7511 65.4367 92.9162 65.2759 93.1362C65.1151 93.3563 64.9902 93.625 64.9014 93.9424C64.8125 94.2598 64.7681 94.6258 64.7681 95.0405V95.3071C64.7681 95.633 64.8125 95.9398 64.9014 96.2275C64.9945 96.5111 65.1278 96.7607 65.3013 96.9766C65.479 97.1924 65.6927 97.3617 65.9424 97.4844C66.1963 97.6071 66.484 97.6685 66.8057 97.6685C67.2204 97.6685 67.5716 97.5838 67.8594 97.4146C68.1471 97.2453 68.3989 97.0189 68.6147 96.7354L69.3257 97.3003C69.1776 97.5246 68.9893 97.7383 68.7607 97.9414C68.5322 98.1445 68.2508 98.3096 67.9165 98.4365C67.5864 98.5635 67.195 98.627 66.7422 98.627ZM71.96 93.0981V98.5H70.7856V91.6318H71.8965L71.96 93.0981ZM71.6807 94.8057L71.1919 94.7866C71.1961 94.3169 71.266 93.8831 71.4014 93.4854C71.5368 93.0833 71.7272 92.7342 71.9727 92.438C72.2181 92.1418 72.5101 91.9132 72.8486 91.7524C73.1914 91.5874 73.5701 91.5049 73.9849 91.5049C74.3234 91.5049 74.6281 91.5514 74.8989 91.6445C75.1698 91.7334 75.4004 91.8773 75.5908 92.0762C75.7855 92.2751 75.9336 92.5332 76.0352 92.8506C76.1367 93.1637 76.1875 93.5467 76.1875 93.9995V98.5H75.0068V93.9868C75.0068 93.6271 74.9539 93.3394 74.8481 93.1235C74.7424 92.9035 74.5879 92.7448 74.3848 92.6475C74.1816 92.5459 73.932 92.4951 73.6357 92.4951C73.3438 92.4951 73.0771 92.5565 72.8359 92.6792C72.599 92.8019 72.3937 92.9712 72.2202 93.187C72.0509 93.4028 71.9176 93.6504 71.8203 93.9297C71.7272 94.2048 71.6807 94.4967 71.6807 94.8057ZM82.9224 98.5V99.4648H77.1016V98.5H82.9224ZM88.1655 97.167V88.75H89.3462V98.5H88.2671L88.1655 97.167ZM83.5444 95.1421V95.0088C83.5444 94.484 83.6079 94.008 83.7349 93.5806C83.866 93.1489 84.0501 92.7786 84.2871 92.4697C84.5283 92.1608 84.814 91.9238 85.144 91.7588C85.4784 91.5895 85.8507 91.5049 86.2612 91.5049C86.6929 91.5049 87.0695 91.5811 87.3911 91.7334C87.717 91.8815 87.992 92.0994 88.2163 92.3872C88.4448 92.6707 88.6247 93.0135 88.7559 93.4155C88.887 93.8175 88.978 94.2725 89.0288 94.7803V95.3643C88.9823 95.8678 88.8913 96.3206 88.7559 96.7227C88.6247 97.1247 88.4448 97.4674 88.2163 97.751C87.992 98.0345 87.717 98.2524 87.3911 98.4048C87.0653 98.5529 86.6844 98.627 86.2485 98.627C85.8465 98.627 85.4784 98.5402 85.144 98.3667C84.814 98.1932 84.5283 97.9499 84.2871 97.6367C84.0501 97.3236 83.866 96.9554 83.7349 96.5322C83.6079 96.1048 83.5444 95.6414 83.5444 95.1421ZM84.7251 95.0088V95.1421C84.7251 95.4849 84.759 95.8065 84.8267 96.1069C84.8986 96.4074 85.0086 96.6719 85.1567 96.9004C85.3049 97.1289 85.4932 97.3088 85.7217 97.4399C85.9502 97.5669 86.2231 97.6304 86.5405 97.6304C86.9299 97.6304 87.2493 97.5479 87.499 97.3828C87.7529 97.2178 87.9561 96.9998 88.1084 96.729C88.2607 96.4582 88.3792 96.1641 88.4639 95.8467V94.3169C88.4131 94.0841 88.339 93.8599 88.2417 93.644C88.1486 93.424 88.0259 93.2293 87.8735 93.0601C87.7254 92.8866 87.5413 92.749 87.3213 92.6475C87.1055 92.5459 86.8494 92.4951 86.5532 92.4951C86.2316 92.4951 85.9544 92.5628 85.7217 92.6982C85.4932 92.8294 85.3049 93.0114 85.1567 93.2441C85.0086 93.4727 84.8986 93.7393 84.8267 94.0439C84.759 94.3444 84.7251 94.666 84.7251 95.0088ZM94.0244 98.627C93.5462 98.627 93.1125 98.5465 92.7231 98.3857C92.3381 98.2207 92.0059 97.9901 91.7266 97.6938C91.4515 97.3976 91.2399 97.0464 91.0918 96.6401C90.9437 96.2339 90.8696 95.7896 90.8696 95.3071V95.0405C90.8696 94.4819 90.9521 93.9847 91.1172 93.5488C91.2822 93.1087 91.5065 92.7363 91.79 92.4316C92.0736 92.127 92.3952 91.8963 92.7549 91.7397C93.1146 91.5832 93.487 91.5049 93.8721 91.5049C94.363 91.5049 94.7861 91.5895 95.1416 91.7588C95.5013 91.9281 95.7954 92.165 96.0239 92.4697C96.2524 92.7702 96.4217 93.1257 96.5317 93.5361C96.6418 93.9424 96.6968 94.3867 96.6968 94.8691V95.396H91.5679V94.4375H95.5225V94.3486C95.5055 94.0439 95.4421 93.7477 95.332 93.46C95.2262 93.1722 95.057 92.9352 94.8242 92.749C94.5915 92.5628 94.2741 92.4697 93.8721 92.4697C93.6055 92.4697 93.36 92.5269 93.1357 92.6411C92.9115 92.7511 92.7189 92.9162 92.5581 93.1362C92.3973 93.3563 92.2725 93.625 92.1836 93.9424C92.0947 94.2598 92.0503 94.6258 92.0503 95.0405V95.3071C92.0503 95.633 92.0947 95.9398 92.1836 96.2275C92.2767 96.5111 92.41 96.7607 92.5835 96.9766C92.7612 97.1924 92.9749 97.3617 93.2246 97.4844C93.4785 97.6071 93.7663 97.6685 94.0879 97.6685C94.5026 97.6685 94.8538 97.5838 95.1416 97.4146C95.4294 97.2453 95.6812 97.0189 95.897 96.7354L96.6079 97.3003C96.4598 97.5246 96.2715 97.7383 96.043 97.9414C95.8145 98.1445 95.533 98.3096 95.1987 98.4365C94.8687 98.5635 94.4772 98.627 94.0244 98.627ZM99.3438 88.75V98.5H98.1631V88.75H99.3438ZM102.505 91.6318V98.5H101.324V91.6318H102.505ZM101.235 89.8101C101.235 89.6196 101.292 89.4588 101.407 89.3276C101.525 89.1965 101.699 89.1309 101.927 89.1309C102.152 89.1309 102.323 89.1965 102.441 89.3276C102.564 89.4588 102.625 89.6196 102.625 89.8101C102.625 89.992 102.564 90.1486 102.441 90.2798C102.323 90.4067 102.152 90.4702 101.927 90.4702C101.699 90.4702 101.525 90.4067 101.407 90.2798C101.292 90.1486 101.235 89.992 101.235 89.8101ZM106.479 97.4399L108.357 91.6318H109.557L107.088 98.5H106.301L106.479 97.4399ZM104.911 91.6318L106.847 97.4717L106.98 98.5H106.193L103.705 91.6318H104.911ZM113.448 98.627C112.97 98.627 112.536 98.5465 112.147 98.3857C111.762 98.2207 111.43 97.9901 111.15 97.6938C110.875 97.3976 110.664 97.0464 110.516 96.6401C110.368 96.2339 110.293 95.7896 110.293 95.3071V95.0405C110.293 94.4819 110.376 93.9847 110.541 93.5488C110.706 93.1087 110.93 92.7363 111.214 92.4316C111.497 92.127 111.819 91.8963 112.179 91.7397C112.538 91.5832 112.911 91.5049 113.296 91.5049C113.787 91.5049 114.21 91.5895 114.565 91.7588C114.925 91.9281 115.219 92.165 115.448 92.4697C115.676 92.7702 115.846 93.1257 115.956 93.5361C116.066 93.9424 116.121 94.3867 116.121 94.8691V95.396H110.992V94.4375H114.946V94.3486C114.929 94.0439 114.866 93.7477 114.756 93.46C114.65 93.1722 114.481 92.9352 114.248 92.749C114.015 92.5628 113.698 92.4697 113.296 92.4697C113.029 92.4697 112.784 92.5269 112.56 92.6411C112.335 92.7511 112.143 92.9162 111.982 93.1362C111.821 93.3563 111.696 93.625 111.607 93.9424C111.519 94.2598 111.474 94.6258 111.474 95.0405V95.3071C111.474 95.633 111.519 95.9398 111.607 96.2275C111.701 96.5111 111.834 96.7607 112.007 96.9766C112.185 97.1924 112.399 97.3617 112.648 97.4844C112.902 97.6071 113.19 97.6685 113.512 97.6685C113.926 97.6685 114.278 97.5838 114.565 97.4146C114.853 97.2453 115.105 97.0189 115.321 96.7354L116.032 97.3003C115.884 97.5246 115.695 97.7383 115.467 97.9414C115.238 98.1445 114.957 98.3096 114.623 98.4365C114.292 98.5635 113.901 98.627 113.448 98.627ZM118.666 92.7109V98.5H117.492V91.6318H118.634L118.666 92.7109ZM120.812 91.5938L120.805 92.6855C120.708 92.6644 120.615 92.6517 120.526 92.6475C120.441 92.639 120.344 92.6348 120.234 92.6348C119.963 92.6348 119.724 92.6771 119.517 92.7617C119.309 92.8464 119.134 92.9648 118.99 93.1172C118.846 93.2695 118.732 93.4515 118.647 93.6631C118.567 93.8704 118.514 94.099 118.488 94.3486L118.158 94.5391C118.158 94.1243 118.198 93.735 118.279 93.3711C118.363 93.0072 118.493 92.6855 118.666 92.4062C118.84 92.1227 119.06 91.9027 119.326 91.7461C119.597 91.5853 119.919 91.5049 120.291 91.5049C120.376 91.5049 120.473 91.5155 120.583 91.5366C120.693 91.5535 120.769 91.5726 120.812 91.5938ZM123.941 97.7891L125.852 91.6318H127.108L124.354 99.5601C124.29 99.7293 124.205 99.9113 124.1 100.106C123.998 100.305 123.867 100.493 123.706 100.671C123.545 100.849 123.351 100.993 123.122 101.103C122.898 101.217 122.629 101.274 122.316 101.274C122.223 101.274 122.104 101.261 121.96 101.236C121.817 101.21 121.715 101.189 121.656 101.172L121.649 100.22C121.683 100.224 121.736 100.229 121.808 100.233C121.884 100.241 121.937 100.246 121.967 100.246C122.233 100.246 122.46 100.21 122.646 100.138C122.832 100.07 122.989 99.9536 123.116 99.7886C123.247 99.6278 123.359 99.4056 123.452 99.1221L123.941 97.7891ZM122.538 91.6318L124.322 96.9639L124.626 98.2017L123.782 98.6333L121.256 91.6318H122.538Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M257.278 87.7598V89.6958H256.326V87.7598H257.278ZM257.164 98.1255V99.8203H256.218V98.1255H257.164ZM258.434 96.1196C258.434 95.8657 258.376 95.6372 258.262 95.4341C258.148 95.231 257.96 95.0448 257.697 94.8755C257.435 94.7062 257.084 94.5496 256.644 94.4058C256.11 94.2407 255.649 94.0397 255.26 93.8027C254.875 93.5658 254.576 93.2716 254.365 92.9204C254.157 92.5692 254.054 92.1439 254.054 91.6445C254.054 91.124 254.166 90.6755 254.39 90.2988C254.614 89.9222 254.932 89.6323 255.342 89.4292C255.753 89.2261 256.235 89.1245 256.79 89.1245C257.221 89.1245 257.606 89.1901 257.945 89.3213C258.283 89.4482 258.569 89.6387 258.802 89.8926C259.039 90.1465 259.219 90.4575 259.341 90.8257C259.468 91.1938 259.532 91.6191 259.532 92.1016H258.364C258.364 91.818 258.33 91.5578 258.262 91.3208C258.194 91.0838 258.093 90.8786 257.958 90.7051C257.822 90.5273 257.657 90.3919 257.462 90.2988C257.268 90.2015 257.043 90.1528 256.79 90.1528C256.434 90.1528 256.14 90.2142 255.907 90.3369C255.679 90.4596 255.509 90.6331 255.399 90.8574C255.289 91.0775 255.234 91.3335 255.234 91.6255C255.234 91.8963 255.289 92.1333 255.399 92.3364C255.509 92.5396 255.696 92.7236 255.958 92.8887C256.225 93.0495 256.591 93.2082 257.056 93.3647C257.602 93.5382 258.065 93.7435 258.446 93.9805C258.827 94.2132 259.117 94.501 259.316 94.8438C259.515 95.1823 259.614 95.6034 259.614 96.1069C259.614 96.6528 259.492 97.1141 259.246 97.4907C259.001 97.8631 258.656 98.1466 258.211 98.3413C257.767 98.536 257.247 98.6333 256.65 98.6333C256.29 98.6333 255.935 98.5846 255.583 98.4873C255.232 98.39 254.915 98.2313 254.631 98.0112C254.348 97.7869 254.121 97.4928 253.952 97.1289C253.783 96.7607 253.698 96.3101 253.698 95.7769H254.879C254.879 96.1366 254.93 96.4349 255.031 96.6719C255.137 96.9046 255.277 97.0908 255.45 97.2305C255.624 97.3659 255.814 97.4632 256.021 97.5225C256.233 97.5775 256.443 97.605 256.65 97.605C257.031 97.605 257.352 97.5457 257.615 97.4272C257.881 97.3045 258.084 97.131 258.224 96.9067C258.364 96.6825 258.434 96.4201 258.434 96.1196ZM267.136 97.5352V98.5H261.087V97.6558L264.115 94.2852C264.487 93.8704 264.775 93.5192 264.978 93.2314C265.185 92.9395 265.329 92.6792 265.41 92.4507C265.494 92.2179 265.537 91.981 265.537 91.7397C265.537 91.4351 265.473 91.16 265.346 90.9146C265.223 90.6649 265.042 90.466 264.8 90.3179C264.559 90.1698 264.267 90.0957 263.924 90.0957C263.514 90.0957 263.171 90.1761 262.896 90.3369C262.625 90.4935 262.422 90.7135 262.287 90.9971C262.151 91.2806 262.083 91.6064 262.083 91.9746H260.909C260.909 91.4541 261.023 90.978 261.252 90.5464C261.48 90.1147 261.819 89.772 262.268 89.5181C262.716 89.2599 263.268 89.1309 263.924 89.1309C264.508 89.1309 265.008 89.2345 265.422 89.4419C265.837 89.645 266.154 89.9328 266.375 90.3052C266.599 90.6733 266.711 91.105 266.711 91.6001C266.711 91.8709 266.664 92.146 266.571 92.4253C266.482 92.7004 266.358 92.9754 266.197 93.2505C266.04 93.5256 265.856 93.7964 265.645 94.063C265.437 94.3296 265.215 94.592 264.978 94.8501L262.502 97.5352H267.136ZM269.878 94.1011L268.939 93.8599L269.402 89.2578H274.144V90.3433H270.399L270.12 92.8569C270.289 92.7596 270.503 92.6686 270.761 92.584C271.023 92.4993 271.324 92.457 271.662 92.457C272.09 92.457 272.472 92.5311 272.811 92.6792C273.15 92.8231 273.437 93.0304 273.674 93.3013C273.916 93.5721 274.1 93.8979 274.227 94.2788C274.354 94.6597 274.417 95.085 274.417 95.5547C274.417 95.999 274.356 96.4074 274.233 96.7798C274.114 97.1522 273.935 97.478 273.693 97.7573C273.452 98.0324 273.147 98.2461 272.779 98.3984C272.415 98.5508 271.986 98.627 271.491 98.627C271.118 98.627 270.765 98.5762 270.431 98.4746C270.101 98.3688 269.804 98.2101 269.542 97.9985C269.284 97.7827 269.072 97.5161 268.907 97.1987C268.746 96.8771 268.645 96.5005 268.603 96.0688H269.72C269.771 96.4159 269.872 96.7078 270.024 96.9448C270.177 97.1818 270.376 97.3617 270.621 97.4844C270.871 97.6029 271.161 97.6621 271.491 97.6621C271.77 97.6621 272.018 97.6134 272.233 97.5161C272.449 97.4188 272.631 97.2791 272.779 97.0972C272.927 96.9152 273.04 96.6951 273.116 96.437C273.196 96.1789 273.236 95.889 273.236 95.5674C273.236 95.2754 273.196 95.0046 273.116 94.7549C273.035 94.5052 272.915 94.2873 272.754 94.1011C272.597 93.9149 272.405 93.771 272.176 93.6694C271.948 93.5636 271.685 93.5107 271.389 93.5107C270.996 93.5107 270.697 93.5636 270.494 93.6694C270.295 93.7752 270.09 93.9191 269.878 94.1011Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1466"},(0,h.createElement)("rect",{x:"15",y:"41",width:"268",height:"62",rx:"4",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1466"},(0,h.createElement)("rect",{width:"18",height:"18",fill:"white",transform:"translate(15 62)"})),(0,h.createElement)("clipPath",{id:"clip2_75_1466"},(0,h.createElement)("rect",{width:"18",height:"18",fill:"white",transform:"translate(15 85)"})))),{__:On}=wp.i18n,{AdvancedFields:Jn,FieldSettingsWrapper:Rn,BlockLabel:qn,BlockDescription:Dn,BlockAdvancedValue:zn,BlockName:Un}=JetFBComponents,{useBlockAttributes:Gn,useUniqueNameOnDuplicate:Wn}=JetFBHooks,{InspectorControls:Kn,useBlockProps:$n,RichText:Yn}=wp.blockEditor,{CardHeader:Xn,CardBody:Qn,PanelBody:ea}=wp.components,{useEffect:Ca}=wp.element,ta=F(L.Card)({name:"StyledCard",class:"s1ip8zmx",propsAsIs:!0});t(6987);const la=JSON.parse('{"apiVersion":3,"name":"jet-forms/hidden-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","hidden"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Hidden Field","icon":"\\n\\n","attributes":{"return_raw":{"type":"boolean","default":false},"value":{"type":"object","default":{}},"render":{"type":"boolean","default":true},"field_value":{"type":"string","default":"post_id"},"hidden_value_field":{"type":"string","default":""},"query_var_key":{"type":"string","default":""},"date_format":{"type":"string","default":""},"hidden_value":{"type":"string","default":""},"name":{"type":"string","default":"hidden_field_name"},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false},"random":{"type":"object","default":{"length":10,"upper":true,"lower":true,"numbers":true,"symbols":true}}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:ra}=wp.i18n,{RangeControl:na,CheckboxControl:aa}=wp.components,{ToggleControl:ia}=wp.components,{__:oa}=wp.i18n,{addFilter:sa}=wp.hooks;sa("jfb.hidden-field.field-value.controls","jet-form-builder/random-string-controls",function(e){return C=>{var t;const{attributes:l,setAttributes:r}=C;if("random_string"!==l.field_value)return(0,h.createElement)(e,{...C});const n=Object.values({...l.random,length:void 0}).filter(Boolean).length,a=e=>{const[C]=Object.keys(e);l.random[C]&&1===n||r({random:{...l.random,...e}})};return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(na,{label:ra("String length","jet-form-builder"),value:null!==(t=l.random?.length)&&void 0!==t?t:10,onChange:e=>r({random:{...l.random,length:e}}),allowReset:!0,resetFallbackValue:10,min:1,max:50}),(0,h.createElement)(aa,{label:ra("Uppercase","jet-form-builder"),checked:l.random.upper,onChange:e=>a({upper:e})}),(0,h.createElement)(aa,{label:ra("Lowercase","jet-form-builder"),checked:l.random.lower,onChange:e=>a({lower:e})}),(0,h.createElement)(aa,{label:ra("Numbers","jet-form-builder"),checked:l.random.numbers,onChange:e=>a({numbers:e})}),(0,h.createElement)(aa,{label:ra("Symbols","jet-form-builder"),checked:l.random.symbols,onChange:e=>a({symbols:e})}))}}),sa("jfb.hidden-field.header.controls","jet-form-builder/disable-raw-value-control",function(e){return C=>{const{attributes:t,setAttributes:l}=C;return"random_string"!==t.field_value?(0,h.createElement)(e,{...C}):(0,h.createElement)(ia,{label:oa("Render in HTML","jet-form-builder"),checked:t.render,help:oa("Enable this option if you use this field in Calculated Field, Conditional Block, Advanced Validation, Global Macros, or Dynamic Value.","jet-form-builder"),onChange:e=>l({render:Boolean(e)})})}});const{__:ca}=wp.i18n,{createBlock:da}=wp.blocks,{name:ma,icon:ua=""}=la,pa={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:ua}}),description:ca("Insert Hidden field invisible on the frontend with the assigned value to use it in calculations or for other purposes.","jet-form-builder"),edit:function(e){const{attributes:C,setAttributes:t,isSelected:l,editProps:{uniqKey:r}}=e,n=$n();Wn();const[,a]=Gn();if(Ca(()=>{"referer_url"===C.field_value&&t({render:!0})},[C.field_value]),C.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Tn);const{label:i="Please set `Field Value`"}=JetFormHiddenField.sources.find(e=>e.value===C.field_value)||{label:"--",value:""},o=[i];switch(C.field_value){case"post_meta":case"user_meta":o.push(C.hidden_value_field);break;case"query_var":o.push(C.query_var_key);break;case"current_date":o.push(C.date_format);break;case"manual_input":o.push(C.hidden_value)}const s=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return[l&&(0,h.createElement)(Kn,{key:r("InspectorControls")},(0,h.createElement)(ea,{title:On("General","jet-form-builder")},(0,h.createElement)(qn,null),(0,h.createElement)(Un,null),(0,h.createElement)(Dn,null)),(0,h.createElement)(ea,{title:On("Value","jet-form-builder")},(0,h.createElement)(zn,null)),(0,h.createElement)(Rn,{...e},(0,h.createElement)(In,null)),(0,h.createElement)(Jn,null)),(0,h.createElement)("div",{...n,key:r("viewBlock")},(0,h.createElement)(ta,{elevation:2,className:s?"buddypress-active":""},(0,h.createElement)(Xn,null,(0,h.createElement)(Yn,{placeholder:"hidden_field_name...",allowedFormats:[],value:C.name,onChange:e=>a({name:e})})),(0,h.createElement)(Qn,null,l&&(0,h.createElement)(In,null),!l&&o.join(": "))))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>da("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>((e.default?.length||Object.keys(e.value)?.length)&&(e.field_value=""),da(ma,{...e})),priority:0}]}},{Tools:fa}=JetFBActions,Va=fa.withPlaceholder([{value:"all",label:"Any registered user"},{value:"upload_files",label:"Any user, who allowed to upload files"},{value:"edit_posts",label:"Any user, who allowed to edit posts"},{value:"any_user",label:"Any user ( incl. Guest )"}]),Ha=fa.withPlaceholder([{value:"id",label:"Attachment ID"},{value:"url",label:"Attachment URL"},{value:"both",label:"Array with attachment ID and URL"},{value:"ids",label:"Array of attachment IDs"}]),ha=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"15.5",y:"47.5",width:"156",height:"29",rx:"3.5",fill:"#E2E8F0"}),(0,h.createElement)("path",{d:"M62.6523 63.561H63.8711C63.8076 64.145 63.6405 64.6676 63.3696 65.1289C63.0988 65.5902 62.7158 65.9562 62.2207 66.2271C61.7256 66.4937 61.1077 66.627 60.3672 66.627C59.8255 66.627 59.3325 66.5254 58.8882 66.3223C58.4481 66.1191 58.0693 65.8314 57.752 65.459C57.4346 65.0824 57.1891 64.6317 57.0156 64.1069C56.8464 63.578 56.7617 62.9897 56.7617 62.3423V61.4219C56.7617 60.7744 56.8464 60.1883 57.0156 59.6636C57.1891 59.1346 57.4367 58.6818 57.7583 58.3052C58.0841 57.9285 58.4756 57.6387 58.9326 57.4355C59.3896 57.2324 59.9038 57.1309 60.4751 57.1309C61.1733 57.1309 61.7637 57.262 62.2461 57.5244C62.7285 57.7868 63.103 58.1507 63.3696 58.6162C63.6405 59.0775 63.8076 59.6128 63.8711 60.2222H62.6523C62.5931 59.7905 62.4831 59.4202 62.3223 59.1113C62.1615 58.7982 61.9329 58.557 61.6367 58.3877C61.3405 58.2184 60.9533 58.1338 60.4751 58.1338C60.0646 58.1338 59.7028 58.2121 59.3896 58.3687C59.0807 58.5252 58.8205 58.7474 58.6089 59.0352C58.4015 59.3229 58.245 59.6678 58.1392 60.0698C58.0334 60.4718 57.9805 60.9183 57.9805 61.4092V62.3423C57.9805 62.7951 58.027 63.2204 58.1201 63.6182C58.2174 64.016 58.3634 64.3651 58.5581 64.6655C58.7528 64.966 59.0003 65.203 59.3008 65.3765C59.6012 65.5457 59.9567 65.6304 60.3672 65.6304C60.8877 65.6304 61.3024 65.5479 61.6113 65.3828C61.9202 65.2178 62.153 64.9808 62.3096 64.6719C62.4704 64.363 62.5846 63.9927 62.6523 63.561ZM66.5371 56.75V66.5H65.3628V56.75H66.5371ZM66.2578 62.8057L65.769 62.7866C65.7733 62.3169 65.8431 61.8831 65.9785 61.4854C66.1139 61.0833 66.3044 60.7342 66.5498 60.438C66.7952 60.1418 67.0872 59.9132 67.4258 59.7524C67.7686 59.5874 68.1473 59.5049 68.562 59.5049C68.9006 59.5049 69.2052 59.5514 69.4761 59.6445C69.7469 59.7334 69.9775 59.8773 70.168 60.0762C70.3626 60.2751 70.5107 60.5332 70.6123 60.8506C70.7139 61.1637 70.7646 61.5467 70.7646 61.9995V66.5H69.584V61.9868C69.584 61.6271 69.5311 61.3394 69.4253 61.1235C69.3195 60.9035 69.165 60.7448 68.9619 60.6475C68.7588 60.5459 68.5091 60.4951 68.2129 60.4951C67.9209 60.4951 67.6543 60.5565 67.4131 60.6792C67.1761 60.8019 66.9709 60.9712 66.7974 61.187C66.6281 61.4028 66.4948 61.6504 66.3975 61.9297C66.3044 62.2048 66.2578 62.4967 66.2578 62.8057ZM72.2119 63.1421V62.9961C72.2119 62.501 72.2839 62.0418 72.4277 61.6187C72.5716 61.1912 72.779 60.821 73.0498 60.5078C73.3206 60.1904 73.6486 59.945 74.0337 59.7715C74.4188 59.5938 74.8504 59.5049 75.3286 59.5049C75.811 59.5049 76.2448 59.5938 76.6299 59.7715C77.0192 59.945 77.3493 60.1904 77.6201 60.5078C77.8952 60.821 78.1047 61.1912 78.2485 61.6187C78.3924 62.0418 78.4644 62.501 78.4644 62.9961V63.1421C78.4644 63.6372 78.3924 64.0964 78.2485 64.5195C78.1047 64.9427 77.8952 65.313 77.6201 65.6304C77.3493 65.9435 77.0213 66.189 76.6362 66.3667C76.2554 66.5402 75.8237 66.627 75.3413 66.627C74.8589 66.627 74.4251 66.5402 74.04 66.3667C73.6549 66.189 73.3249 65.9435 73.0498 65.6304C72.779 65.313 72.5716 64.9427 72.4277 64.5195C72.2839 64.0964 72.2119 63.6372 72.2119 63.1421ZM73.3862 62.9961V63.1421C73.3862 63.4849 73.4264 63.8086 73.5068 64.1133C73.5872 64.4137 73.7078 64.6803 73.8687 64.9131C74.0337 65.1458 74.2389 65.3299 74.4844 65.4653C74.7298 65.5965 75.0155 65.6621 75.3413 65.6621C75.6629 65.6621 75.9443 65.5965 76.1855 65.4653C76.431 65.3299 76.6341 65.1458 76.7949 64.9131C76.9557 64.6803 77.0763 64.4137 77.1567 64.1133C77.2414 63.8086 77.2837 63.4849 77.2837 63.1421V62.9961C77.2837 62.6576 77.2414 62.3381 77.1567 62.0376C77.0763 61.7329 76.9536 61.4642 76.7886 61.2314C76.6278 60.9945 76.4246 60.8083 76.1792 60.6729C75.938 60.5374 75.6545 60.4697 75.3286 60.4697C75.007 60.4697 74.7235 60.5374 74.478 60.6729C74.2368 60.8083 74.0337 60.9945 73.8687 61.2314C73.7078 61.4642 73.5872 61.7329 73.5068 62.0376C73.4264 62.3381 73.3862 62.6576 73.3862 62.9961ZM79.626 63.1421V62.9961C79.626 62.501 79.6979 62.0418 79.8418 61.6187C79.9857 61.1912 80.193 60.821 80.4639 60.5078C80.7347 60.1904 81.0627 59.945 81.4478 59.7715C81.8328 59.5938 82.2645 59.5049 82.7427 59.5049C83.2251 59.5049 83.6589 59.5938 84.0439 59.7715C84.4333 59.945 84.7633 60.1904 85.0342 60.5078C85.3092 60.821 85.5187 61.1912 85.6626 61.6187C85.8065 62.0418 85.8784 62.501 85.8784 62.9961V63.1421C85.8784 63.6372 85.8065 64.0964 85.6626 64.5195C85.5187 64.9427 85.3092 65.313 85.0342 65.6304C84.7633 65.9435 84.4354 66.189 84.0503 66.3667C83.6694 66.5402 83.2378 66.627 82.7554 66.627C82.2729 66.627 81.8392 66.5402 81.4541 66.3667C81.069 66.189 80.7389 65.9435 80.4639 65.6304C80.193 65.313 79.9857 64.9427 79.8418 64.5195C79.6979 64.0964 79.626 63.6372 79.626 63.1421ZM80.8003 62.9961V63.1421C80.8003 63.4849 80.8405 63.8086 80.9209 64.1133C81.0013 64.4137 81.1219 64.6803 81.2827 64.9131C81.4478 65.1458 81.653 65.3299 81.8984 65.4653C82.1439 65.5965 82.4295 65.6621 82.7554 65.6621C83.077 65.6621 83.3584 65.5965 83.5996 65.4653C83.8451 65.3299 84.0482 65.1458 84.209 64.9131C84.3698 64.6803 84.4904 64.4137 84.5708 64.1133C84.6554 63.8086 84.6978 63.4849 84.6978 63.1421V62.9961C84.6978 62.6576 84.6554 62.3381 84.5708 62.0376C84.4904 61.7329 84.3677 61.4642 84.2026 61.2314C84.0418 60.9945 83.8387 60.8083 83.5933 60.6729C83.3521 60.5374 83.0685 60.4697 82.7427 60.4697C82.4211 60.4697 82.1375 60.5374 81.8921 60.6729C81.6509 60.8083 81.4478 60.9945 81.2827 61.2314C81.1219 61.4642 81.0013 61.7329 80.9209 62.0376C80.8405 62.3381 80.8003 62.6576 80.8003 62.9961ZM91.3501 64.6782C91.3501 64.509 91.312 64.3524 91.2358 64.2085C91.1639 64.0604 91.0137 63.9271 90.7852 63.8086C90.5609 63.6859 90.2223 63.5801 89.7695 63.4912C89.3887 63.4108 89.0438 63.3156 88.7349 63.2056C88.4302 63.0955 88.1699 62.9622 87.9541 62.8057C87.7425 62.6491 87.5796 62.465 87.4653 62.2534C87.3511 62.0418 87.2939 61.7943 87.2939 61.5107C87.2939 61.2399 87.3532 60.9839 87.4717 60.7427C87.5944 60.5015 87.7658 60.2878 87.9858 60.1016C88.2101 59.9154 88.4788 59.7694 88.792 59.6636C89.1051 59.5578 89.4543 59.5049 89.8394 59.5049C90.3895 59.5049 90.8592 59.6022 91.2485 59.7969C91.6379 59.9915 91.9362 60.2518 92.1436 60.5776C92.3509 60.8993 92.4546 61.2568 92.4546 61.6504H91.2803C91.2803 61.46 91.2231 61.2759 91.1089 61.0981C90.9989 60.9162 90.8359 60.766 90.6201 60.6475C90.4085 60.529 90.1483 60.4697 89.8394 60.4697C89.5135 60.4697 89.249 60.5205 89.0459 60.6221C88.847 60.7194 88.701 60.8442 88.6079 60.9966C88.519 61.1489 88.4746 61.3097 88.4746 61.479C88.4746 61.606 88.4958 61.7202 88.5381 61.8218C88.5846 61.9191 88.665 62.0101 88.7793 62.0947C88.8936 62.1751 89.0544 62.2513 89.2617 62.3232C89.4691 62.3952 89.7336 62.4671 90.0552 62.5391C90.618 62.666 91.0814 62.8184 91.4453 62.9961C91.8092 63.1738 92.0801 63.3918 92.2578 63.6499C92.4355 63.908 92.5244 64.2212 92.5244 64.5894C92.5244 64.8898 92.4609 65.1649 92.334 65.4146C92.2113 65.6642 92.0314 65.88 91.7944 66.062C91.5617 66.2397 91.2824 66.3794 90.9565 66.481C90.6349 66.5783 90.2731 66.627 89.8711 66.627C89.266 66.627 88.7539 66.519 88.335 66.3032C87.916 66.0874 87.5986 65.8081 87.3828 65.4653C87.167 65.1226 87.0591 64.7607 87.0591 64.3799H88.2397C88.2567 64.7015 88.3498 64.9575 88.519 65.1479C88.6883 65.3341 88.8957 65.4674 89.1411 65.5479C89.3866 65.624 89.6299 65.6621 89.8711 65.6621C90.1927 65.6621 90.4614 65.6198 90.6772 65.5352C90.8973 65.4505 91.0645 65.3341 91.1787 65.186C91.293 65.0379 91.3501 64.8687 91.3501 64.6782ZM96.917 66.627C96.4388 66.627 96.005 66.5465 95.6157 66.3857C95.2306 66.2207 94.8984 65.9901 94.6191 65.6938C94.3441 65.3976 94.1325 65.0464 93.9844 64.6401C93.8363 64.2339 93.7622 63.7896 93.7622 63.3071V63.0405C93.7622 62.4819 93.8447 61.9847 94.0098 61.5488C94.1748 61.1087 94.3991 60.7363 94.6826 60.4316C94.9661 60.127 95.2878 59.8963 95.6475 59.7397C96.0072 59.5832 96.3796 59.5049 96.7646 59.5049C97.2555 59.5049 97.6787 59.5895 98.0342 59.7588C98.3939 59.9281 98.688 60.165 98.9165 60.4697C99.145 60.7702 99.3143 61.1257 99.4243 61.5361C99.5343 61.9424 99.5894 62.3867 99.5894 62.8691V63.396H94.4604V62.4375H98.415V62.3486C98.3981 62.0439 98.3346 61.7477 98.2246 61.46C98.1188 61.1722 97.9495 60.9352 97.7168 60.749C97.484 60.5628 97.1667 60.4697 96.7646 60.4697C96.498 60.4697 96.2526 60.5269 96.0283 60.6411C95.804 60.7511 95.6115 60.9162 95.4507 61.1362C95.2899 61.3563 95.165 61.625 95.0762 61.9424C94.9873 62.2598 94.9429 62.6258 94.9429 63.0405V63.3071C94.9429 63.633 94.9873 63.9398 95.0762 64.2275C95.1693 64.5111 95.3026 64.7607 95.4761 64.9766C95.6538 65.1924 95.8675 65.3617 96.1172 65.4844C96.3711 65.6071 96.6589 65.6685 96.9805 65.6685C97.3952 65.6685 97.7464 65.5838 98.0342 65.4146C98.3219 65.2453 98.5737 65.0189 98.7896 64.7354L99.5005 65.3003C99.3524 65.5246 99.1641 65.7383 98.9355 65.9414C98.707 66.1445 98.4256 66.3096 98.0913 66.4365C97.7612 66.5635 97.3698 66.627 96.917 66.627ZM105.588 57.2578V66.5H104.363V57.2578H105.588ZM109.46 61.4155V62.4185H105.321V61.4155H109.46ZM110.088 57.2578V58.2607H105.321V57.2578H110.088ZM112.646 59.6318V66.5H111.466V59.6318H112.646ZM111.377 57.8101C111.377 57.6196 111.434 57.4588 111.548 57.3276C111.667 57.1965 111.84 57.1309 112.069 57.1309C112.293 57.1309 112.465 57.1965 112.583 57.3276C112.706 57.4588 112.767 57.6196 112.767 57.8101C112.767 57.992 112.706 58.1486 112.583 58.2798C112.465 58.4067 112.293 58.4702 112.069 58.4702C111.84 58.4702 111.667 58.4067 111.548 58.2798C111.434 58.1486 111.377 57.992 111.377 57.8101ZM115.808 56.75V66.5H114.627V56.75H115.808ZM120.543 66.627C120.065 66.627 119.631 66.5465 119.242 66.3857C118.857 66.2207 118.524 65.9901 118.245 65.6938C117.97 65.3976 117.758 65.0464 117.61 64.6401C117.462 64.2339 117.388 63.7896 117.388 63.3071V63.0405C117.388 62.4819 117.471 61.9847 117.636 61.5488C117.801 61.1087 118.025 60.7363 118.309 60.4316C118.592 60.127 118.914 59.8963 119.273 59.7397C119.633 59.5832 120.006 59.5049 120.391 59.5049C120.882 59.5049 121.305 59.5895 121.66 59.7588C122.02 59.9281 122.314 60.165 122.542 60.4697C122.771 60.7702 122.94 61.1257 123.05 61.5361C123.16 61.9424 123.215 62.3867 123.215 62.8691V63.396H118.086V62.4375H122.041V62.3486C122.024 62.0439 121.961 61.7477 121.851 61.46C121.745 61.1722 121.576 60.9352 121.343 60.749C121.11 60.5628 120.793 60.4697 120.391 60.4697C120.124 60.4697 119.879 60.5269 119.654 60.6411C119.43 60.7511 119.237 60.9162 119.077 61.1362C118.916 61.3563 118.791 61.625 118.702 61.9424C118.613 62.2598 118.569 62.6258 118.569 63.0405V63.3071C118.569 63.633 118.613 63.9398 118.702 64.2275C118.795 64.5111 118.929 64.7607 119.102 64.9766C119.28 65.1924 119.493 65.3617 119.743 65.4844C119.997 65.6071 120.285 65.6685 120.606 65.6685C121.021 65.6685 121.372 65.5838 121.66 65.4146C121.948 65.2453 122.2 65.0189 122.416 64.7354L123.126 65.3003C122.978 65.5246 122.79 65.7383 122.562 65.9414C122.333 66.1445 122.052 66.3096 121.717 66.4365C121.387 66.5635 120.996 66.627 120.543 66.627ZM128.585 64.6782C128.585 64.509 128.547 64.3524 128.471 64.2085C128.399 64.0604 128.249 63.9271 128.021 63.8086C127.796 63.6859 127.458 63.5801 127.005 63.4912C126.624 63.4108 126.279 63.3156 125.97 63.2056C125.666 63.0955 125.405 62.9622 125.189 62.8057C124.978 62.6491 124.815 62.465 124.701 62.2534C124.586 62.0418 124.529 61.7943 124.529 61.5107C124.529 61.2399 124.589 60.9839 124.707 60.7427C124.83 60.5015 125.001 60.2878 125.221 60.1016C125.445 59.9154 125.714 59.7694 126.027 59.6636C126.34 59.5578 126.69 59.5049 127.075 59.5049C127.625 59.5049 128.095 59.6022 128.484 59.7969C128.873 59.9915 129.172 60.2518 129.379 60.5776C129.586 60.8993 129.69 61.2568 129.69 61.6504H128.516C128.516 61.46 128.458 61.2759 128.344 61.0981C128.234 60.9162 128.071 60.766 127.855 60.6475C127.644 60.529 127.384 60.4697 127.075 60.4697C126.749 60.4697 126.484 60.5205 126.281 60.6221C126.082 60.7194 125.936 60.8442 125.843 60.9966C125.754 61.1489 125.71 61.3097 125.71 61.479C125.71 61.606 125.731 61.7202 125.773 61.8218C125.82 61.9191 125.9 62.0101 126.015 62.0947C126.129 62.1751 126.29 62.2513 126.497 62.3232C126.704 62.3952 126.969 62.4671 127.291 62.5391C127.853 62.666 128.317 62.8184 128.681 62.9961C129.045 63.1738 129.315 63.3918 129.493 63.6499C129.671 63.908 129.76 64.2212 129.76 64.5894C129.76 64.8898 129.696 65.1649 129.569 65.4146C129.447 65.6642 129.267 65.88 129.03 66.062C128.797 66.2397 128.518 66.3794 128.192 66.481C127.87 66.5783 127.508 66.627 127.106 66.627C126.501 66.627 125.989 66.519 125.57 66.3032C125.151 66.0874 124.834 65.8081 124.618 65.4653C124.402 65.1226 124.294 64.7607 124.294 64.3799H125.475C125.492 64.7015 125.585 64.9575 125.754 65.1479C125.924 65.3341 126.131 65.4674 126.376 65.5479C126.622 65.624 126.865 65.6621 127.106 65.6621C127.428 65.6621 127.697 65.6198 127.913 65.5352C128.133 65.4505 128.3 65.3341 128.414 65.186C128.528 65.0379 128.585 64.8687 128.585 64.6782Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"15.5",y:"47.5",width:"156",height:"29",rx:"3.5",stroke:"#0F172A"}),(0,h.createElement)("path",{d:"M188.182 57.2578V66.5H186.951L182.298 59.3716V66.5H181.073V57.2578H182.298L186.97 64.4053V57.2578H188.182ZM189.864 63.1421V62.9961C189.864 62.501 189.936 62.0418 190.08 61.6187C190.224 61.1912 190.431 60.821 190.702 60.5078C190.973 60.1904 191.301 59.945 191.686 59.7715C192.071 59.5938 192.503 59.5049 192.981 59.5049C193.463 59.5049 193.897 59.5938 194.282 59.7715C194.672 59.945 195.002 60.1904 195.272 60.5078C195.548 60.821 195.757 61.1912 195.901 61.6187C196.045 62.0418 196.117 62.501 196.117 62.9961V63.1421C196.117 63.6372 196.045 64.0964 195.901 64.5195C195.757 64.9427 195.548 65.313 195.272 65.6304C195.002 65.9435 194.674 66.189 194.289 66.3667C193.908 66.5402 193.476 66.627 192.994 66.627C192.511 66.627 192.077 66.5402 191.692 66.3667C191.307 66.189 190.977 65.9435 190.702 65.6304C190.431 65.313 190.224 64.9427 190.08 64.5195C189.936 64.0964 189.864 63.6372 189.864 63.1421ZM191.039 62.9961V63.1421C191.039 63.4849 191.079 63.8086 191.159 64.1133C191.24 64.4137 191.36 64.6803 191.521 64.9131C191.686 65.1458 191.891 65.3299 192.137 65.4653C192.382 65.5965 192.668 65.6621 192.994 65.6621C193.315 65.6621 193.597 65.5965 193.838 65.4653C194.083 65.3299 194.286 65.1458 194.447 64.9131C194.608 64.6803 194.729 64.4137 194.809 64.1133C194.894 63.8086 194.936 63.4849 194.936 63.1421V62.9961C194.936 62.6576 194.894 62.3381 194.809 62.0376C194.729 61.7329 194.606 61.4642 194.441 61.2314C194.28 60.9945 194.077 60.8083 193.832 60.6729C193.59 60.5374 193.307 60.4697 192.981 60.4697C192.659 60.4697 192.376 60.5374 192.13 60.6729C191.889 60.8083 191.686 60.9945 191.521 61.2314C191.36 61.4642 191.24 61.7329 191.159 62.0376C191.079 62.3381 191.039 62.6576 191.039 62.9961ZM202.382 66.5H201.208V59.0352C201.208 58.5146 201.309 58.0745 201.512 57.7148C201.715 57.3551 202.005 57.0822 202.382 56.896C202.758 56.7098 203.205 56.6167 203.721 56.6167C204.026 56.6167 204.324 56.6548 204.616 56.731C204.908 56.8029 205.209 56.8939 205.518 57.0039L205.321 57.9941C205.126 57.918 204.9 57.846 204.642 57.7783C204.388 57.7064 204.108 57.6704 203.804 57.6704C203.3 57.6704 202.936 57.7847 202.712 58.0132C202.492 58.2375 202.382 58.5781 202.382 59.0352V66.5ZM203.785 59.6318V60.5332H200.122V59.6318H203.785ZM206.095 59.6318V66.5H204.921V59.6318H206.095ZM209.301 56.75V66.5H208.12V56.75H209.301ZM214.036 66.627C213.558 66.627 213.124 66.5465 212.735 66.3857C212.35 66.2207 212.018 65.9901 211.738 65.6938C211.463 65.3976 211.252 65.0464 211.104 64.6401C210.955 64.2339 210.881 63.7896 210.881 63.3071V63.0405C210.881 62.4819 210.964 61.9847 211.129 61.5488C211.294 61.1087 211.518 60.7363 211.802 60.4316C212.085 60.127 212.407 59.8963 212.767 59.7397C213.126 59.5832 213.499 59.5049 213.884 59.5049C214.375 59.5049 214.798 59.5895 215.153 59.7588C215.513 59.9281 215.807 60.165 216.036 60.4697C216.264 60.7702 216.433 61.1257 216.543 61.5361C216.653 61.9424 216.708 62.3867 216.708 62.8691V63.396H211.58V62.4375H215.534V62.3486C215.517 62.0439 215.454 61.7477 215.344 61.46C215.238 61.1722 215.069 60.9352 214.836 60.749C214.603 60.5628 214.286 60.4697 213.884 60.4697C213.617 60.4697 213.372 60.5269 213.147 60.6411C212.923 60.7511 212.731 60.9162 212.57 61.1362C212.409 61.3563 212.284 61.625 212.195 61.9424C212.106 62.2598 212.062 62.6258 212.062 63.0405V63.3071C212.062 63.633 212.106 63.9398 212.195 64.2275C212.288 64.5111 212.422 64.7607 212.595 64.9766C212.773 65.1924 212.987 65.3617 213.236 65.4844C213.49 65.6071 213.778 65.6685 214.1 65.6685C214.514 65.6685 214.866 65.5838 215.153 65.4146C215.441 65.2453 215.693 65.0189 215.909 64.7354L216.62 65.3003C216.472 65.5246 216.283 65.7383 216.055 65.9414C215.826 66.1445 215.545 66.3096 215.21 66.4365C214.88 66.5635 214.489 66.627 214.036 66.627ZM224.053 65.6621C224.332 65.6621 224.59 65.605 224.827 65.4907C225.064 65.3765 225.259 65.2199 225.411 65.021C225.563 64.8179 225.65 64.5872 225.671 64.3291H226.789C226.767 64.7354 226.63 65.1141 226.376 65.4653C226.126 65.8123 225.798 66.0938 225.392 66.3096C224.986 66.5212 224.539 66.627 224.053 66.627C223.536 66.627 223.086 66.536 222.701 66.354C222.32 66.172 222.002 65.9224 221.749 65.605C221.499 65.2876 221.311 64.9237 221.184 64.5132C221.061 64.0985 221 63.6605 221 63.1992V62.9326C221 62.4714 221.061 62.0355 221.184 61.625C221.311 61.2103 221.499 60.8442 221.749 60.5269C222.002 60.2095 222.32 59.9598 222.701 59.7778C223.086 59.5959 223.536 59.5049 224.053 59.5049C224.59 59.5049 225.06 59.6149 225.462 59.835C225.864 60.0508 226.179 60.347 226.408 60.7236C226.64 61.096 226.767 61.5192 226.789 61.9932H225.671C225.65 61.7096 225.57 61.4536 225.43 61.2251C225.295 60.9966 225.109 60.8146 224.872 60.6792C224.639 60.5396 224.366 60.4697 224.053 60.4697C223.693 60.4697 223.39 60.5417 223.145 60.6855C222.904 60.8252 222.711 61.0156 222.567 61.2568C222.428 61.4938 222.326 61.7583 222.263 62.0503C222.203 62.3381 222.174 62.6322 222.174 62.9326V63.1992C222.174 63.4997 222.203 63.7959 222.263 64.0879C222.322 64.3799 222.421 64.6444 222.561 64.8813C222.705 65.1183 222.897 65.3088 223.139 65.4526C223.384 65.5923 223.689 65.6621 224.053 65.6621ZM229.283 56.75V66.5H228.109V56.75H229.283ZM229.004 62.8057L228.515 62.7866C228.519 62.3169 228.589 61.8831 228.725 61.4854C228.86 61.0833 229.05 60.7342 229.296 60.438C229.541 60.1418 229.833 59.9132 230.172 59.7524C230.515 59.5874 230.893 59.5049 231.308 59.5049C231.647 59.5049 231.951 59.5514 232.222 59.6445C232.493 59.7334 232.724 59.8773 232.914 60.0762C233.109 60.2751 233.257 60.5332 233.358 60.8506C233.46 61.1637 233.511 61.5467 233.511 61.9995V66.5H232.33V61.9868C232.33 61.6271 232.277 61.3394 232.171 61.1235C232.066 60.9035 231.911 60.7448 231.708 60.6475C231.505 60.5459 231.255 60.4951 230.959 60.4951C230.667 60.4951 230.4 60.5565 230.159 60.6792C229.922 60.8019 229.717 60.9712 229.543 61.187C229.374 61.4028 229.241 61.6504 229.144 61.9297C229.05 62.2048 229.004 62.4967 229.004 62.8057ZM234.958 63.1421V62.9961C234.958 62.501 235.03 62.0418 235.174 61.6187C235.318 61.1912 235.525 60.821 235.796 60.5078C236.067 60.1904 236.395 59.945 236.78 59.7715C237.165 59.5938 237.597 59.5049 238.075 59.5049C238.557 59.5049 238.991 59.5938 239.376 59.7715C239.765 59.945 240.095 60.1904 240.366 60.5078C240.641 60.821 240.851 61.1912 240.995 61.6187C241.139 62.0418 241.21 62.501 241.21 62.9961V63.1421C241.21 63.6372 241.139 64.0964 240.995 64.5195C240.851 64.9427 240.641 65.313 240.366 65.6304C240.095 65.9435 239.767 66.189 239.382 66.3667C239.001 66.5402 238.57 66.627 238.087 66.627C237.605 66.627 237.171 66.5402 236.786 66.3667C236.401 66.189 236.071 65.9435 235.796 65.6304C235.525 65.313 235.318 64.9427 235.174 64.5195C235.03 64.0964 234.958 63.6372 234.958 63.1421ZM236.132 62.9961V63.1421C236.132 63.4849 236.173 63.8086 236.253 64.1133C236.333 64.4137 236.454 64.6803 236.615 64.9131C236.78 65.1458 236.985 65.3299 237.23 65.4653C237.476 65.5965 237.762 65.6621 238.087 65.6621C238.409 65.6621 238.69 65.5965 238.932 65.4653C239.177 65.3299 239.38 65.1458 239.541 64.9131C239.702 64.6803 239.822 64.4137 239.903 64.1133C239.987 63.8086 240.03 63.4849 240.03 63.1421V62.9961C240.03 62.6576 239.987 62.3381 239.903 62.0376C239.822 61.7329 239.7 61.4642 239.535 61.2314C239.374 60.9945 239.171 60.8083 238.925 60.6729C238.684 60.5374 238.401 60.4697 238.075 60.4697C237.753 60.4697 237.47 60.5374 237.224 60.6729C236.983 60.8083 236.78 60.9945 236.615 61.2314C236.454 61.4642 236.333 61.7329 236.253 62.0376C236.173 62.3381 236.132 62.6576 236.132 62.9961ZM246.682 64.6782C246.682 64.509 246.644 64.3524 246.568 64.2085C246.496 64.0604 246.346 63.9271 246.117 63.8086C245.893 63.6859 245.554 63.5801 245.102 63.4912C244.721 63.4108 244.376 63.3156 244.067 63.2056C243.762 63.0955 243.502 62.9622 243.286 62.8057C243.075 62.6491 242.912 62.465 242.797 62.2534C242.683 62.0418 242.626 61.7943 242.626 61.5107C242.626 61.2399 242.685 60.9839 242.804 60.7427C242.926 60.5015 243.098 60.2878 243.318 60.1016C243.542 59.9154 243.811 59.7694 244.124 59.6636C244.437 59.5578 244.786 59.5049 245.171 59.5049C245.722 59.5049 246.191 59.6022 246.581 59.7969C246.97 59.9915 247.268 60.2518 247.476 60.5776C247.683 60.8993 247.787 61.2568 247.787 61.6504H246.612C246.612 61.46 246.555 61.2759 246.441 61.0981C246.331 60.9162 246.168 60.766 245.952 60.6475C245.741 60.529 245.48 60.4697 245.171 60.4697C244.846 60.4697 244.581 60.5205 244.378 60.6221C244.179 60.7194 244.033 60.8442 243.94 60.9966C243.851 61.1489 243.807 61.3097 243.807 61.479C243.807 61.606 243.828 61.7202 243.87 61.8218C243.917 61.9191 243.997 62.0101 244.111 62.0947C244.226 62.1751 244.386 62.2513 244.594 62.3232C244.801 62.3952 245.066 62.4671 245.387 62.5391C245.95 62.666 246.413 62.8184 246.777 62.9961C247.141 63.1738 247.412 63.3918 247.59 63.6499C247.768 63.908 247.856 64.2212 247.856 64.5894C247.856 64.8898 247.793 65.1649 247.666 65.4146C247.543 65.6642 247.363 65.88 247.126 66.062C246.894 66.2397 246.614 66.3794 246.289 66.481C245.967 66.5783 245.605 66.627 245.203 66.627C244.598 66.627 244.086 66.519 243.667 66.3032C243.248 66.0874 242.931 65.8081 242.715 65.4653C242.499 65.1226 242.391 64.7607 242.391 64.3799H243.572C243.589 64.7015 243.682 64.9575 243.851 65.1479C244.02 65.3341 244.228 65.4674 244.473 65.5479C244.719 65.624 244.962 65.6621 245.203 65.6621C245.525 65.6621 245.793 65.6198 246.009 65.5352C246.229 65.4505 246.396 65.3341 246.511 65.186C246.625 65.0379 246.682 64.8687 246.682 64.6782ZM252.249 66.627C251.771 66.627 251.337 66.5465 250.948 66.3857C250.563 66.2207 250.23 65.9901 249.951 65.6938C249.676 65.3976 249.465 65.0464 249.316 64.6401C249.168 64.2339 249.094 63.7896 249.094 63.3071V63.0405C249.094 62.4819 249.177 61.9847 249.342 61.5488C249.507 61.1087 249.731 60.7363 250.015 60.4316C250.298 60.127 250.62 59.8963 250.979 59.7397C251.339 59.5832 251.712 59.5049 252.097 59.5049C252.588 59.5049 253.011 59.5895 253.366 59.7588C253.726 59.9281 254.02 60.165 254.249 60.4697C254.477 60.7702 254.646 61.1257 254.756 61.5361C254.866 61.9424 254.921 62.3867 254.921 62.8691V63.396H249.792V62.4375H253.747V62.3486C253.73 62.0439 253.667 61.7477 253.557 61.46C253.451 61.1722 253.282 60.9352 253.049 60.749C252.816 60.5628 252.499 60.4697 252.097 60.4697C251.83 60.4697 251.585 60.5269 251.36 60.6411C251.136 60.7511 250.944 60.9162 250.783 61.1362C250.622 61.3563 250.497 61.625 250.408 61.9424C250.319 62.2598 250.275 62.6258 250.275 63.0405V63.3071C250.275 63.633 250.319 63.9398 250.408 64.2275C250.501 64.5111 250.635 64.7607 250.808 64.9766C250.986 65.1924 251.2 65.3617 251.449 65.4844C251.703 65.6071 251.991 65.6685 252.312 65.6685C252.727 65.6685 253.078 65.5838 253.366 65.4146C253.654 65.2453 253.906 65.0189 254.122 64.7354L254.833 65.3003C254.684 65.5246 254.496 65.7383 254.268 65.9414C254.039 66.1445 253.758 66.3096 253.423 66.4365C253.093 66.5635 252.702 66.627 252.249 66.627ZM257.467 61.0981V66.5H256.292V59.6318H257.403L257.467 61.0981ZM257.188 62.8057L256.699 62.7866C256.703 62.3169 256.773 61.8831 256.908 61.4854C257.044 61.0833 257.234 60.7342 257.479 60.438C257.725 60.1418 258.017 59.9132 258.355 59.7524C258.698 59.5874 259.077 59.5049 259.492 59.5049C259.83 59.5049 260.135 59.5514 260.406 59.6445C260.677 59.7334 260.907 59.8773 261.098 60.0762C261.292 60.2751 261.44 60.5332 261.542 60.8506C261.644 61.1637 261.694 61.5467 261.694 61.9995V66.5H260.514V61.9868C260.514 61.6271 260.461 61.3394 260.355 61.1235C260.249 60.9035 260.095 60.7448 259.892 60.6475C259.688 60.5459 259.439 60.4951 259.143 60.4951C258.851 60.4951 258.584 60.5565 258.343 60.6792C258.106 60.8019 257.901 60.9712 257.727 61.187C257.558 61.4028 257.424 61.6504 257.327 61.9297C257.234 62.2048 257.188 62.4967 257.188 62.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M16.46 84.7578H17.647L20.6748 92.2925L23.6963 84.7578H24.8896L21.1318 94H20.2051L16.46 84.7578ZM16.0728 84.7578H17.1201L17.2915 90.3945V94H16.0728V84.7578ZM24.2231 84.7578H25.2705V94H24.0518V90.3945L24.2231 84.7578ZM31.2944 92.8257V89.29C31.2944 89.0192 31.2394 88.7843 31.1294 88.5854C31.0236 88.3823 30.8628 88.2257 30.647 88.1157C30.4312 88.0057 30.1646 87.9507 29.8472 87.9507C29.5509 87.9507 29.2907 88.0015 29.0664 88.103C28.8464 88.2046 28.6729 88.3379 28.5459 88.5029C28.4232 88.668 28.3618 88.8457 28.3618 89.0361H27.1875C27.1875 88.7907 27.251 88.5474 27.3779 88.3062C27.5049 88.0649 27.6868 87.847 27.9238 87.6523C28.165 87.4535 28.4528 87.2969 28.7871 87.1826C29.1257 87.0641 29.5023 87.0049 29.917 87.0049C30.4163 87.0049 30.8564 87.0895 31.2373 87.2588C31.6224 87.4281 31.9229 87.6841 32.1387 88.0269C32.3587 88.3654 32.4688 88.7907 32.4688 89.3027V92.502C32.4688 92.7305 32.4878 92.9738 32.5259 93.2319C32.5682 93.4901 32.6296 93.7122 32.71 93.8984V94H31.4849C31.4256 93.8646 31.3791 93.6847 31.3452 93.4604C31.3114 93.2319 31.2944 93.0203 31.2944 92.8257ZM31.4976 89.8359L31.5103 90.6611H30.3232C29.9889 90.6611 29.6906 90.6886 29.4282 90.7437C29.1659 90.7944 28.9458 90.8727 28.7681 90.9785C28.5903 91.0843 28.4549 91.2176 28.3618 91.3784C28.2687 91.535 28.2222 91.7191 28.2222 91.9307C28.2222 92.1465 28.2708 92.3433 28.3682 92.521C28.4655 92.6987 28.6115 92.8405 28.8062 92.9463C29.005 93.0479 29.2484 93.0986 29.5361 93.0986C29.8958 93.0986 30.2132 93.0225 30.4883 92.8701C30.7633 92.7178 30.9813 92.5316 31.1421 92.3115C31.3071 92.0915 31.396 91.8778 31.4087 91.6704L31.9102 92.2354C31.8805 92.4131 31.8001 92.6099 31.6689 92.8257C31.5378 93.0415 31.3621 93.2489 31.1421 93.4478C30.9263 93.6424 30.6681 93.8053 30.3677 93.9365C30.0715 94.0635 29.7371 94.127 29.3647 94.127C28.8993 94.127 28.4909 94.036 28.1396 93.854C27.7926 93.672 27.5218 93.4287 27.3271 93.124C27.1367 92.8151 27.0415 92.4702 27.0415 92.0894C27.0415 91.7212 27.1134 91.3975 27.2573 91.1182C27.4012 90.8346 27.6086 90.5998 27.8794 90.4136C28.1502 90.2231 28.4761 90.0793 28.8569 89.9819C29.2378 89.8846 29.6631 89.8359 30.1328 89.8359H31.4976ZM35.1094 87.1318L36.6138 89.6328L38.1372 87.1318H39.5146L37.2676 90.5215L39.5845 94H38.2261L36.6392 91.4229L35.0522 94H33.6875L35.998 90.5215L33.7573 87.1318H35.1094ZM42.041 87.1318V94H40.8604V87.1318H42.041ZM40.7715 85.3101C40.7715 85.1196 40.8286 84.9588 40.9429 84.8276C41.0614 84.6965 41.2349 84.6309 41.4634 84.6309C41.6877 84.6309 41.859 84.6965 41.9775 84.8276C42.1003 84.9588 42.1616 85.1196 42.1616 85.3101C42.1616 85.492 42.1003 85.6486 41.9775 85.7798C41.859 85.9067 41.6877 85.9702 41.4634 85.9702C41.2349 85.9702 41.0614 85.9067 40.9429 85.7798C40.8286 85.6486 40.7715 85.492 40.7715 85.3101ZM45.0942 88.4966V94H43.9136V87.1318H45.0308L45.0942 88.4966ZM44.853 90.3057L44.3071 90.2866C44.3114 89.8169 44.3727 89.3831 44.4912 88.9854C44.6097 88.5833 44.7853 88.2342 45.0181 87.938C45.2508 87.6418 45.5407 87.4132 45.8877 87.2524C46.2347 87.0874 46.6367 87.0049 47.0938 87.0049C47.4154 87.0049 47.7116 87.0514 47.9824 87.1445C48.2533 87.2334 48.4881 87.3752 48.687 87.5698C48.8859 87.7645 49.0404 88.0142 49.1504 88.3188C49.2604 88.6235 49.3154 88.9917 49.3154 89.4233V94H48.1411V89.4805C48.1411 89.1208 48.0798 88.833 47.957 88.6172C47.8385 88.4014 47.6693 88.2448 47.4492 88.1475C47.2292 88.0459 46.971 87.9951 46.6748 87.9951C46.3278 87.9951 46.0379 88.0565 45.8052 88.1792C45.5724 88.3019 45.3862 88.4712 45.2466 88.687C45.1069 88.9028 45.0054 89.1504 44.9419 89.4297C44.8826 89.7048 44.853 89.9967 44.853 90.3057ZM49.3027 89.6582L48.5156 89.8994C48.5199 89.5228 48.5812 89.161 48.6997 88.814C48.8224 88.467 48.998 88.158 49.2266 87.8872C49.4593 87.6164 49.745 87.4027 50.0835 87.2461C50.422 87.0853 50.8092 87.0049 51.2451 87.0049C51.6133 87.0049 51.9391 87.0535 52.2227 87.1509C52.5104 87.2482 52.7516 87.3984 52.9463 87.6016C53.1452 87.8005 53.2954 88.0565 53.397 88.3696C53.4985 88.6828 53.5493 89.0552 53.5493 89.4868V94H52.3687V89.4741C52.3687 89.089 52.3073 88.7907 52.1846 88.5791C52.0661 88.3633 51.8968 88.2131 51.6768 88.1284C51.4609 88.0396 51.2028 87.9951 50.9023 87.9951C50.6442 87.9951 50.4157 88.0396 50.2168 88.1284C50.0179 88.2173 49.8507 88.34 49.7153 88.4966C49.5799 88.6489 49.4762 88.8245 49.4043 89.0234C49.3366 89.2223 49.3027 89.4339 49.3027 89.6582ZM59.5288 92.4131V87.1318H60.7095V94H59.5859L59.5288 92.4131ZM59.751 90.9658L60.2397 90.9531C60.2397 91.4102 60.1911 91.8333 60.0938 92.2227C60.0007 92.6077 59.8483 92.9421 59.6367 93.2256C59.4251 93.5091 59.1479 93.7313 58.8052 93.8921C58.4624 94.0487 58.0456 94.127 57.5547 94.127C57.2204 94.127 56.9136 94.0783 56.6343 93.981C56.3592 93.8836 56.1222 93.7334 55.9233 93.5303C55.7244 93.3271 55.57 93.0627 55.46 92.7368C55.3542 92.411 55.3013 92.0195 55.3013 91.5625V87.1318H56.4756V91.5752C56.4756 91.8841 56.5094 92.1401 56.5771 92.3433C56.6491 92.5422 56.7443 92.7008 56.8628 92.8193C56.9855 92.9336 57.1209 93.014 57.269 93.0605C57.4214 93.1071 57.578 93.1304 57.7388 93.1304C58.2381 93.1304 58.6338 93.0352 58.9258 92.8447C59.2178 92.6501 59.4272 92.3898 59.5542 92.064C59.6854 91.7339 59.751 91.3678 59.751 90.9658ZM63.6675 88.4966V94H62.4868V87.1318H63.604L63.6675 88.4966ZM63.4263 90.3057L62.8804 90.2866C62.8846 89.8169 62.946 89.3831 63.0645 88.9854C63.1829 88.5833 63.3586 88.2342 63.5913 87.938C63.8241 87.6418 64.1139 87.4132 64.4609 87.2524C64.8079 87.0874 65.21 87.0049 65.667 87.0049C65.9886 87.0049 66.2848 87.0514 66.5557 87.1445C66.8265 87.2334 67.0614 87.3752 67.2603 87.5698C67.4591 87.7645 67.6136 88.0142 67.7236 88.3188C67.8337 88.6235 67.8887 88.9917 67.8887 89.4233V94H66.7144V89.4805C66.7144 89.1208 66.653 88.833 66.5303 88.6172C66.4118 88.4014 66.2425 88.2448 66.0225 88.1475C65.8024 88.0459 65.5443 87.9951 65.248 87.9951C64.901 87.9951 64.6112 88.0565 64.3784 88.1792C64.1457 88.3019 63.9595 88.4712 63.8198 88.687C63.6802 88.9028 63.5786 89.1504 63.5151 89.4297C63.4559 89.7048 63.4263 89.9967 63.4263 90.3057ZM67.876 89.6582L67.0889 89.8994C67.0931 89.5228 67.1545 89.161 67.2729 88.814C67.3957 88.467 67.5713 88.158 67.7998 87.8872C68.0326 87.6164 68.3182 87.4027 68.6567 87.2461C68.9953 87.0853 69.3825 87.0049 69.8184 87.0049C70.1865 87.0049 70.5124 87.0535 70.7959 87.1509C71.0837 87.2482 71.3249 87.3984 71.5195 87.6016C71.7184 87.8005 71.8687 88.0565 71.9702 88.3696C72.0718 88.6828 72.1226 89.0552 72.1226 89.4868V94H70.9419V89.4741C70.9419 89.089 70.8805 88.7907 70.7578 88.5791C70.6393 88.3633 70.4701 88.2131 70.25 88.1284C70.0342 88.0396 69.776 87.9951 69.4756 87.9951C69.2174 87.9951 68.9889 88.0396 68.79 88.1284C68.5911 88.2173 68.424 88.34 68.2886 88.4966C68.1532 88.6489 68.0495 88.8245 67.9775 89.0234C67.9098 89.2223 67.876 89.4339 67.876 89.6582ZM78.6924 94H77.5181V86.5352C77.5181 86.0146 77.6196 85.5745 77.8228 85.2148C78.0259 84.8551 78.3158 84.5822 78.6924 84.396C79.069 84.2098 79.5155 84.1167 80.0317 84.1167C80.3364 84.1167 80.6348 84.1548 80.9268 84.231C81.2188 84.3029 81.5192 84.3939 81.8281 84.5039L81.6313 85.4941C81.4367 85.418 81.2103 85.346 80.9521 85.2783C80.6982 85.2064 80.4189 85.1704 80.1143 85.1704C79.6107 85.1704 79.2467 85.2847 79.0225 85.5132C78.8024 85.7375 78.6924 86.0781 78.6924 86.5352V94ZM80.0952 87.1318V88.0332H76.4326V87.1318H80.0952ZM82.4058 87.1318V94H81.2314V87.1318H82.4058ZM85.6113 84.25V94H84.4307V84.25H85.6113ZM90.3467 94.127C89.8685 94.127 89.4347 94.0465 89.0454 93.8857C88.6603 93.7207 88.3281 93.4901 88.0488 93.1938C87.7738 92.8976 87.5622 92.5464 87.4141 92.1401C87.266 91.7339 87.1919 91.2896 87.1919 90.8071V90.5405C87.1919 89.9819 87.2744 89.4847 87.4395 89.0488C87.6045 88.6087 87.8288 88.2363 88.1123 87.9316C88.3958 87.627 88.7174 87.3963 89.0771 87.2397C89.4368 87.0832 89.8092 87.0049 90.1943 87.0049C90.6852 87.0049 91.1084 87.0895 91.4639 87.2588C91.8236 87.4281 92.1177 87.665 92.3462 87.9697C92.5747 88.2702 92.744 88.6257 92.854 89.0361C92.964 89.4424 93.019 89.8867 93.019 90.3691V90.896H87.8901V89.9375H91.8447V89.8486C91.8278 89.5439 91.7643 89.2477 91.6543 88.96C91.5485 88.6722 91.3792 88.4352 91.1465 88.249C90.9137 88.0628 90.5964 87.9697 90.1943 87.9697C89.9277 87.9697 89.6823 88.0269 89.458 88.1411C89.2337 88.2511 89.0412 88.4162 88.8804 88.6362C88.7196 88.8563 88.5947 89.125 88.5059 89.4424C88.417 89.7598 88.3726 90.1258 88.3726 90.5405V90.8071C88.3726 91.133 88.417 91.4398 88.5059 91.7275C88.599 92.0111 88.7323 92.2607 88.9058 92.4766C89.0835 92.6924 89.2972 92.8617 89.5469 92.9844C89.8008 93.1071 90.0885 93.1685 90.4102 93.1685C90.8249 93.1685 91.1761 93.0838 91.4639 92.9146C91.7516 92.7453 92.0034 92.5189 92.2192 92.2354L92.9302 92.8003C92.7821 93.0246 92.5938 93.2383 92.3652 93.4414C92.1367 93.6445 91.8553 93.8096 91.521 93.9365C91.1909 94.0635 90.7995 94.127 90.3467 94.127ZM101.614 92.1782C101.614 92.009 101.576 91.8524 101.5 91.7085C101.428 91.5604 101.277 91.4271 101.049 91.3086C100.825 91.1859 100.486 91.0801 100.033 90.9912C99.6523 90.9108 99.3075 90.8156 98.9985 90.7056C98.6938 90.5955 98.4336 90.4622 98.2178 90.3057C98.0062 90.1491 97.8433 89.965 97.729 89.7534C97.6147 89.5418 97.5576 89.2943 97.5576 89.0107C97.5576 88.7399 97.6169 88.4839 97.7354 88.2427C97.8581 88.0015 98.0295 87.7878 98.2495 87.6016C98.4738 87.4154 98.7425 87.2694 99.0557 87.1636C99.3688 87.0578 99.7179 87.0049 100.103 87.0049C100.653 87.0049 101.123 87.1022 101.512 87.2969C101.902 87.4915 102.2 87.7518 102.407 88.0776C102.615 88.3993 102.718 88.7568 102.718 89.1504H101.544C101.544 88.96 101.487 88.7759 101.373 88.5981C101.263 88.4162 101.1 88.266 100.884 88.1475C100.672 88.029 100.412 87.9697 100.103 87.9697C99.7772 87.9697 99.5127 88.0205 99.3096 88.1221C99.1107 88.2194 98.9647 88.3442 98.8716 88.4966C98.7827 88.6489 98.7383 88.8097 98.7383 88.979C98.7383 89.106 98.7594 89.2202 98.8018 89.3218C98.8483 89.4191 98.9287 89.5101 99.043 89.5947C99.1572 89.6751 99.318 89.7513 99.5254 89.8232C99.7327 89.8952 99.9972 89.9671 100.319 90.0391C100.882 90.166 101.345 90.3184 101.709 90.4961C102.073 90.6738 102.344 90.8918 102.521 91.1499C102.699 91.408 102.788 91.7212 102.788 92.0894C102.788 92.3898 102.725 92.6649 102.598 92.9146C102.475 93.1642 102.295 93.38 102.058 93.562C101.825 93.7397 101.546 93.8794 101.22 93.981C100.899 94.0783 100.537 94.127 100.135 94.127C99.5296 94.127 99.0176 94.019 98.5986 93.8032C98.1797 93.5874 97.8623 93.3081 97.6465 92.9653C97.4307 92.6226 97.3228 92.2607 97.3228 91.8799H98.5034C98.5203 92.2015 98.6134 92.4575 98.7827 92.6479C98.952 92.8341 99.1593 92.9674 99.4048 93.0479C99.6502 93.124 99.8936 93.1621 100.135 93.1621C100.456 93.1621 100.725 93.1198 100.941 93.0352C101.161 92.9505 101.328 92.8341 101.442 92.686C101.557 92.5379 101.614 92.3687 101.614 92.1782ZM105.606 87.1318V94H104.426V87.1318H105.606ZM104.337 85.3101C104.337 85.1196 104.394 84.9588 104.508 84.8276C104.627 84.6965 104.8 84.6309 105.029 84.6309C105.253 84.6309 105.424 84.6965 105.543 84.8276C105.666 84.9588 105.727 85.1196 105.727 85.3101C105.727 85.492 105.666 85.6486 105.543 85.7798C105.424 85.9067 105.253 85.9702 105.029 85.9702C104.8 85.9702 104.627 85.9067 104.508 85.7798C104.394 85.6486 104.337 85.492 104.337 85.3101ZM112.608 93.0352V94H107.612V93.0352H112.608ZM112.424 87.9634L107.879 94H107.162V93.1367L111.675 87.1318H112.424V87.9634ZM111.903 87.1318V88.103H107.212V87.1318H111.903ZM116.689 94.127C116.211 94.127 115.778 94.0465 115.388 93.8857C115.003 93.7207 114.671 93.4901 114.392 93.1938C114.117 92.8976 113.905 92.5464 113.757 92.1401C113.609 91.7339 113.535 91.2896 113.535 90.8071V90.5405C113.535 89.9819 113.617 89.4847 113.782 89.0488C113.947 88.6087 114.172 88.2363 114.455 87.9316C114.739 87.627 115.06 87.3963 115.42 87.2397C115.78 87.0832 116.152 87.0049 116.537 87.0049C117.028 87.0049 117.451 87.0895 117.807 87.2588C118.166 87.4281 118.46 87.665 118.689 87.9697C118.917 88.2702 119.087 88.6257 119.197 89.0361C119.307 89.4424 119.362 89.8867 119.362 90.3691V90.896H114.233V89.9375H118.188V89.8486C118.171 89.5439 118.107 89.2477 117.997 88.96C117.891 88.6722 117.722 88.4352 117.489 88.249C117.257 88.0628 116.939 87.9697 116.537 87.9697C116.271 87.9697 116.025 88.0269 115.801 88.1411C115.576 88.2511 115.384 88.4162 115.223 88.6362C115.062 88.8563 114.938 89.125 114.849 89.4424C114.76 89.7598 114.715 90.1258 114.715 90.5405V90.8071C114.715 91.133 114.76 91.4398 114.849 91.7275C114.942 92.0111 115.075 92.2607 115.249 92.4766C115.426 92.6924 115.64 92.8617 115.89 92.9844C116.144 93.1071 116.431 93.1685 116.753 93.1685C117.168 93.1685 117.519 93.0838 117.807 92.9146C118.094 92.7453 118.346 92.5189 118.562 92.2354L119.273 92.8003C119.125 93.0246 118.937 93.2383 118.708 93.4414C118.479 93.6445 118.198 93.8096 117.864 93.9365C117.534 94.0635 117.142 94.127 116.689 94.127ZM120.682 93.3779C120.682 93.179 120.743 93.0119 120.866 92.8765C120.993 92.7368 121.175 92.667 121.412 92.667C121.649 92.667 121.829 92.7368 121.952 92.8765C122.079 93.0119 122.142 93.179 122.142 93.3779C122.142 93.5726 122.079 93.7376 121.952 93.873C121.829 94.0085 121.649 94.0762 121.412 94.0762C121.175 94.0762 120.993 94.0085 120.866 93.873C120.743 93.7376 120.682 93.5726 120.682 93.3779ZM120.688 87.7729C120.688 87.5741 120.75 87.4069 120.873 87.2715C121 87.1318 121.181 87.062 121.418 87.062C121.655 87.062 121.835 87.1318 121.958 87.2715C122.085 87.4069 122.148 87.5741 122.148 87.7729C122.148 87.9676 122.085 88.1326 121.958 88.2681C121.835 88.4035 121.655 88.4712 121.418 88.4712C121.181 88.4712 121 88.4035 120.873 88.2681C120.75 88.1326 120.688 87.9676 120.688 87.7729ZM130.838 84.707V94H129.664V86.1733L127.296 87.0366V85.9766L130.654 84.707H130.838ZM140.093 88.6426V90.0518C140.093 90.8092 140.026 91.4482 139.89 91.9688C139.755 92.4893 139.56 92.9082 139.306 93.2256C139.052 93.543 138.745 93.7736 138.386 93.9175C138.03 94.0571 137.628 94.127 137.18 94.127C136.824 94.127 136.496 94.0825 136.196 93.9937C135.895 93.9048 135.625 93.763 135.383 93.5684C135.146 93.3695 134.943 93.1113 134.774 92.7939C134.605 92.4766 134.476 92.0915 134.387 91.6387C134.298 91.1859 134.253 90.6569 134.253 90.0518V88.6426C134.253 87.8851 134.321 87.2503 134.457 86.7383C134.596 86.2262 134.793 85.8158 135.047 85.5068C135.301 85.1937 135.605 84.9694 135.961 84.834C136.321 84.6986 136.723 84.6309 137.167 84.6309C137.527 84.6309 137.857 84.6753 138.157 84.7642C138.462 84.8488 138.733 84.9863 138.97 85.1768C139.207 85.363 139.408 85.6126 139.573 85.9258C139.742 86.2347 139.871 86.6134 139.96 87.062C140.049 87.5106 140.093 88.0374 140.093 88.6426ZM138.913 90.2422V88.4458C138.913 88.0311 138.887 87.6672 138.836 87.354C138.79 87.0366 138.72 86.7658 138.627 86.5415C138.534 86.3172 138.415 86.1353 138.271 85.9956C138.132 85.856 137.969 85.7544 137.783 85.6909C137.601 85.6232 137.396 85.5894 137.167 85.5894C136.888 85.5894 136.64 85.6423 136.424 85.748C136.208 85.8496 136.027 86.0125 135.878 86.2368C135.735 86.4611 135.625 86.7552 135.548 87.1191C135.472 87.4831 135.434 87.9253 135.434 88.4458V90.2422C135.434 90.6569 135.457 91.0229 135.504 91.3403C135.555 91.6577 135.629 91.9328 135.726 92.1655C135.823 92.394 135.942 92.5824 136.082 92.7305C136.221 92.8786 136.382 92.9886 136.564 93.0605C136.75 93.1283 136.955 93.1621 137.18 93.1621C137.467 93.1621 137.719 93.1071 137.935 92.9971C138.151 92.887 138.331 92.7157 138.475 92.4829C138.623 92.2459 138.733 91.9434 138.805 91.5752C138.877 91.2028 138.913 90.7585 138.913 90.2422ZM145.521 84.7578H146.708L149.735 92.2925L152.757 84.7578H153.95L150.192 94H149.266L145.521 84.7578ZM145.133 84.7578H146.181L146.352 90.3945V94H145.133V84.7578ZM153.284 84.7578H154.331V94H153.112V90.3945L153.284 84.7578ZM159.777 89.6772H157.435L157.422 88.6934H159.549C159.9 88.6934 160.207 88.6341 160.469 88.5156C160.732 88.3971 160.935 88.2279 161.079 88.0078C161.227 87.7835 161.301 87.5169 161.301 87.208C161.301 86.8695 161.235 86.5944 161.104 86.3828C160.977 86.167 160.78 86.0104 160.514 85.9131C160.251 85.8115 159.917 85.7607 159.511 85.7607H157.708V94H156.483V84.7578H159.511C159.985 84.7578 160.408 84.8065 160.78 84.9038C161.153 84.9969 161.468 85.145 161.726 85.3481C161.988 85.547 162.187 85.8009 162.323 86.1099C162.458 86.4188 162.526 86.7891 162.526 87.2207C162.526 87.6016 162.429 87.9465 162.234 88.2554C162.039 88.5601 161.768 88.8097 161.421 89.0044C161.079 89.1991 160.677 89.3239 160.215 89.3789L159.777 89.6772ZM159.72 94H156.953L157.645 93.0034H159.72C160.11 93.0034 160.44 92.9357 160.71 92.8003C160.986 92.6649 161.195 92.4744 161.339 92.229C161.483 91.9793 161.555 91.6852 161.555 91.3467C161.555 91.0039 161.493 90.7077 161.371 90.458C161.248 90.2083 161.055 90.0158 160.793 89.8804C160.531 89.745 160.192 89.6772 159.777 89.6772H158.032L158.044 88.6934H160.431L160.691 89.0488C161.136 89.0869 161.512 89.2139 161.821 89.4297C162.13 89.6413 162.365 89.9121 162.526 90.2422C162.691 90.5723 162.773 90.9362 162.773 91.334C162.773 91.9095 162.646 92.3962 162.393 92.7939C162.143 93.1875 161.79 93.488 161.333 93.6953C160.875 93.8984 160.338 94 159.72 94Z",fill:"#64748B"})),{ToolBarFields:ba,GeneralFields:Ma,AdvancedFields:La,FieldWrapper:ga,FieldSettingsWrapper:Za,ValidationBlockMessage:ya,ValidationToggleGroup:Ea,AdvancedInspectorControl:wa,AttributeHelp:va}=JetFBComponents,{useIsAdvancedValidation:_a,useUniqueNameOnDuplicate:ka}=JetFBHooks,{__:ja}=wp.i18n,{useBlockProps:xa,InspectorControls:Fa}=wp.blockEditor,{SelectControl:Ba,ToggleControl:Aa,FormTokenField:Pa,TextControl:Sa,__experimentalNumberControl:Na,__experimentalInputControl:Ia,PanelBody:Ta}=wp.components;let{NumberControl:Oa,InputControl:Ja}=wp.components;void 0===Oa&&(Oa=Na),void 0===Ja&&(Ja=Ia);const Ra=window.jetFormMediaFieldData,qa=JSON.parse('{"apiVersion":3,"name":"jet-forms/media-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","media","image","file"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Media Field","icon":"\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{"messages":{"max_size":"Maximum file size: %max_size%"}}},"allowed_user_cap":{"type":"string","default":""},"insert_attachment":{"type":"boolean","default":false},"value_format":{"type":"string","default":""},"delete_uploaded_attachment":{"type":"boolean","default":false},"max_files":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max_size":{"type":["number","string"],"default":"","jfb":{"rich":true}},"allowed_mimes":{"type":"array","default":[]},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Da}=wp.i18n,{createBlock:za}=wp.blocks,{name:Ua,icon:Ga=""}=qa,Wa={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ga}}),description:Da("Gives users the opportunity to upload media files to your website, e.g., users photos or images of the product for sale.","jet-form-builder"),edit:function(e){var C;const t=xa(),l=_a();ka();const{attributes:r,setAttributes:n,isSelected:a,editProps:{uniqKey:i,attrHelp:o}}=e,s=!r.allowed_user_cap,c=["id","ids","both"],d=r.insert_attachment&&c.includes(r.value_format);return r.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},ha):[(0,h.createElement)(ba,{key:i("ToolBarFields"),...e}),a&&(0,h.createElement)(Fa,{key:i("InspectorControls")},(0,h.createElement)(Ma,null),(0,h.createElement)(Za,{...e},(0,h.createElement)("div",{className:["jet-form-builder__user-access-control",s?"jet-form-builder__user-access-control--error":""].filter(Boolean).join(" ")},(0,h.createElement)(Ba,{key:"allowed_user_cap",label:ja("User access","jet-form-builder"),labelPosition:"top",value:r.allowed_user_cap,onChange:e=>{n({allowed_user_cap:e})},options:Va,required:!0,help:s?ja("Please select who is allowed to upload files.","jet-form-builder"):void 0})),"any_user"!==r.allowed_user_cap&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Aa,{key:"insert_attachment",label:ja("Insert attachment","jet-form-builder"),checked:r.insert_attachment,help:o("insert_attachment"),onChange:e=>{const C=Boolean(e);n({insert_attachment:C,delete_uploaded_attachment:!!C&&r.delete_uploaded_attachment})}}),r.insert_attachment&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ba,{key:"value_format",label:ja("Field value","jet-form-builder"),labelPosition:"top",value:r.value_format,onChange:e=>{n({value_format:e,delete_uploaded_attachment:!!c.includes(e)&&r.delete_uploaded_attachment})},options:Ha,help:ja("If you're using this field for an ACF Gallery, always select **Array of attachment IDs**. For JetEngine, match the format used in the corresponding JetEngine meta field.","jet-form-builder")}),d&&(0,h.createElement)(Aa,{key:"delete_uploaded_attachment",label:ja("Delete removed attachments","jet-form-builder"),checked:r.delete_uploaded_attachment,help:ja("Permanently deletes old attachments from the Media Library after the form is submitted. Enable only if these files are not used anywhere else.","jet-form-builder"),onChange:e=>{n({delete_uploaded_attachment:Boolean(e)})}}))),(0,h.createElement)(wa,{value:r.max_files,label:ja("Maximum allowed files to upload","jet-form-builder"),onChangePreset:e=>n({max_files:e})},({instanceId:e})=>(0,h.createElement)(Sa,{id:e,className:"jet-fb m-unset",value:r.max_files,onChange:e=>n({max_files:e})})),(0,h.createElement)(va,{name:"max_files"},ja("If not set allow to upload 1 file.","jet-form-builder")),(0,h.createElement)(wa,{value:r.max_size,label:ja("Maximum size in Mb","jet-form-builder"),onChangePreset:e=>n({max_size:e})},({instanceId:e})=>(0,h.createElement)(Sa,{id:e,className:"jet-fb m-unset",value:r.max_size,onChange:e=>n({max_size:e})})),(0,h.createElement)(va,{name:"max_size"}),(0,h.createElement)(Sa,{label:ja("Maximum file size message","jet-form-builder"),value:null!==(C=r?.validation?.messages?.max_size)&&void 0!==C?C:"Maximum file size: %max_size%",onChange:e=>{n({validation:{messages:{max_size:e}}})},help:ja("Use the %max_size% macro to display the maximum allowed file size","jet-form-builder")}),(0,h.createElement)(Pa,{key:"allowed_mimes",value:r.allowed_mimes,label:ja("Allow MIME types","jet-form-builder"),suggestions:Ra.mime_types,onChange:e=>n({allowed_mimes:e}),tokenizeOnSpace:!0})),(0,h.createElement)(Ta,{title:ja("Validation","jet-form-builder")},(0,h.createElement)(Ea,null),l&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ya,{name:"max_files"}),(0,h.createElement)(ya,{name:"file_max_size"}),Boolean(r.allowed_mimes.length)&&(0,h.createElement)(ya,{name:"file_ext"}))),(0,h.createElement)(La,{key:i("AdvancedFields"),...e})),(0,h.createElement)("div",{...t,key:i("viewBlock")},(0,h.createElement)(ga,{key:i("FieldWrapper"),...e},(0,h.createElement)(Ja,{key:i("place_holder_block_new"),type:"file",className:"jet-form-builder__field-preview",disabled:!0})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>za("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>za(Ua,{...e}),priority:0}]}},Ka=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M23.8115 49.5469V59.5H22.4854L17.4746 51.8232V59.5H16.1553V49.5469H17.4746L22.5059 57.2441V49.5469H23.8115ZM30.4834 57.791V52.1035H31.7549V59.5H30.5449L30.4834 57.791ZM30.7227 56.2324L31.249 56.2188C31.249 56.7109 31.1966 57.1667 31.0918 57.5859C30.9915 58.0007 30.8275 58.3607 30.5996 58.666C30.3717 58.9714 30.0732 59.2106 29.7041 59.3838C29.335 59.5524 28.8861 59.6367 28.3574 59.6367C27.9974 59.6367 27.667 59.5843 27.3662 59.4795C27.07 59.3747 26.8148 59.2129 26.6006 58.9941C26.3864 58.7754 26.2201 58.4906 26.1016 58.1396C25.9876 57.7887 25.9307 57.3672 25.9307 56.875V52.1035H27.1953V56.8887C27.1953 57.2214 27.2318 57.4971 27.3047 57.7158C27.3822 57.93 27.4847 58.1009 27.6123 58.2285C27.7445 58.3516 27.8903 58.4382 28.0498 58.4883C28.2139 58.5384 28.3825 58.5635 28.5557 58.5635C29.0934 58.5635 29.5195 58.4609 29.834 58.2559C30.1484 58.0462 30.374 57.766 30.5107 57.415C30.652 57.0596 30.7227 56.6654 30.7227 56.2324ZM34.9404 53.5732V59.5H33.6689V52.1035H34.8721L34.9404 53.5732ZM34.6807 55.5215L34.0928 55.501C34.0973 54.9951 34.1634 54.528 34.291 54.0996C34.4186 53.6667 34.6077 53.2907 34.8584 52.9717C35.109 52.6527 35.4212 52.4066 35.7949 52.2334C36.1686 52.0557 36.6016 51.9668 37.0938 51.9668C37.4401 51.9668 37.7591 52.0169 38.0508 52.1172C38.3424 52.2129 38.5954 52.3656 38.8096 52.5752C39.0238 52.7848 39.1901 53.0537 39.3086 53.3818C39.4271 53.71 39.4863 54.1064 39.4863 54.5713V59.5H38.2217V54.6328C38.2217 54.2454 38.1556 53.9355 38.0234 53.7031C37.8958 53.4707 37.7135 53.3021 37.4766 53.1973C37.2396 53.0879 36.9616 53.0332 36.6426 53.0332C36.2689 53.0332 35.9567 53.0993 35.7061 53.2314C35.4554 53.3636 35.2549 53.5459 35.1045 53.7783C34.9541 54.0107 34.8447 54.2773 34.7764 54.5781C34.7126 54.8743 34.6807 55.1888 34.6807 55.5215ZM39.4727 54.8242L38.625 55.084C38.6296 54.6784 38.6956 54.2887 38.8232 53.915C38.9554 53.5413 39.1445 53.2087 39.3906 52.917C39.6413 52.6253 39.9489 52.3952 40.3135 52.2266C40.6781 52.0534 41.0951 51.9668 41.5645 51.9668C41.9609 51.9668 42.3118 52.0192 42.6172 52.124C42.9271 52.2288 43.1868 52.3906 43.3965 52.6094C43.6107 52.8236 43.7725 53.0993 43.8818 53.4365C43.9912 53.7738 44.0459 54.1748 44.0459 54.6396V59.5H42.7744V54.626C42.7744 54.2113 42.7083 53.89 42.5762 53.6621C42.4486 53.4297 42.2663 53.2679 42.0293 53.1768C41.7969 53.0811 41.5189 53.0332 41.1953 53.0332C40.9173 53.0332 40.6712 53.0811 40.457 53.1768C40.2428 53.2725 40.0628 53.4046 39.917 53.5732C39.7712 53.7373 39.6595 53.9264 39.582 54.1406C39.5091 54.3548 39.4727 54.5827 39.4727 54.8242ZM45.9531 49H47.2246V58.0645L47.1152 59.5H45.9531V49ZM52.2217 55.7402V55.8838C52.2217 56.4215 52.1579 56.9206 52.0303 57.3809C51.9027 57.8366 51.7158 58.2331 51.4697 58.5703C51.2236 58.9076 50.9229 59.1696 50.5674 59.3564C50.2119 59.5433 49.804 59.6367 49.3438 59.6367C48.8743 59.6367 48.4619 59.557 48.1064 59.3975C47.7555 59.2334 47.4593 58.9987 47.2178 58.6934C46.9762 58.388 46.7826 58.0189 46.6367 57.5859C46.4954 57.153 46.3975 56.6654 46.3428 56.123V55.4941C46.3975 54.9473 46.4954 54.4574 46.6367 54.0244C46.7826 53.5915 46.9762 53.2223 47.2178 52.917C47.4593 52.6071 47.7555 52.3724 48.1064 52.2129C48.4574 52.0488 48.8652 51.9668 49.3301 51.9668C49.7949 51.9668 50.2074 52.0579 50.5674 52.2402C50.9274 52.418 51.2282 52.6732 51.4697 53.0059C51.7158 53.3385 51.9027 53.7373 52.0303 54.2021C52.1579 54.6624 52.2217 55.1751 52.2217 55.7402ZM50.9502 55.8838V55.7402C50.9502 55.3711 50.916 55.0247 50.8477 54.7012C50.7793 54.373 50.6699 54.0859 50.5195 53.8398C50.3691 53.5892 50.1709 53.3932 49.9248 53.252C49.6787 53.1061 49.3757 53.0332 49.0156 53.0332C48.6966 53.0332 48.4186 53.0879 48.1816 53.1973C47.9492 53.3066 47.751 53.4548 47.5869 53.6416C47.4229 53.8239 47.2884 54.0335 47.1836 54.2705C47.0833 54.5029 47.0081 54.7445 46.958 54.9951V56.6426C47.0309 56.9616 47.1494 57.2692 47.3135 57.5654C47.4821 57.8571 47.7054 58.0964 47.9834 58.2832C48.266 58.4701 48.6146 58.5635 49.0293 58.5635C49.3711 58.5635 49.6628 58.4951 49.9043 58.3584C50.1504 58.2171 50.3486 58.0234 50.499 57.7773C50.654 57.5312 50.7679 57.2464 50.8408 56.9229C50.9137 56.5993 50.9502 56.2529 50.9502 55.8838ZM56.8906 59.6367C56.3757 59.6367 55.9085 59.5501 55.4893 59.377C55.0745 59.1992 54.7168 58.9508 54.416 58.6318C54.1198 58.3128 53.8919 57.9346 53.7324 57.4971C53.5729 57.0596 53.4932 56.5811 53.4932 56.0615V55.7744C53.4932 55.1729 53.582 54.6374 53.7598 54.168C53.9375 53.694 54.179 53.293 54.4844 52.9648C54.7897 52.6367 55.1361 52.3883 55.5234 52.2197C55.9108 52.0511 56.3118 51.9668 56.7266 51.9668C57.2552 51.9668 57.7109 52.0579 58.0938 52.2402C58.4811 52.4225 58.7979 52.6777 59.0439 53.0059C59.29 53.3294 59.4723 53.7122 59.5908 54.1543C59.7093 54.5918 59.7686 55.0703 59.7686 55.5898V56.1572H54.2451V55.125H58.5039V55.0293C58.4857 54.7012 58.4173 54.3822 58.2988 54.0723C58.1849 53.7624 58.0026 53.5072 57.752 53.3066C57.5013 53.1061 57.1595 53.0059 56.7266 53.0059C56.4395 53.0059 56.1751 53.0674 55.9336 53.1904C55.6921 53.3089 55.4847 53.4867 55.3115 53.7236C55.1383 53.9606 55.0039 54.25 54.9082 54.5918C54.8125 54.9336 54.7646 55.3278 54.7646 55.7744V56.0615C54.7646 56.4124 54.8125 56.7428 54.9082 57.0527C55.0085 57.3581 55.152 57.627 55.3389 57.8594C55.5303 58.0918 55.7604 58.2741 56.0293 58.4062C56.3027 58.5384 56.6126 58.6045 56.959 58.6045C57.4056 58.6045 57.7839 58.5133 58.0938 58.3311C58.4036 58.1488 58.6748 57.9049 58.9072 57.5996L59.6729 58.208C59.5133 58.4495 59.3105 58.6797 59.0645 58.8984C58.8184 59.1172 58.5153 59.2949 58.1553 59.4316C57.7998 59.5684 57.3783 59.6367 56.8906 59.6367ZM62.5098 53.2656V59.5H61.2451V52.1035H62.4756L62.5098 53.2656ZM64.8203 52.0625L64.8135 53.2383C64.7087 53.2155 64.6084 53.2018 64.5127 53.1973C64.4215 53.1882 64.3167 53.1836 64.1982 53.1836C63.9066 53.1836 63.6491 53.2292 63.4258 53.3203C63.2025 53.4115 63.0133 53.5391 62.8584 53.7031C62.7035 53.8672 62.5804 54.0632 62.4893 54.291C62.4027 54.5143 62.3457 54.7604 62.3184 55.0293L61.9629 55.2344C61.9629 54.7878 62.0062 54.3685 62.0928 53.9766C62.1839 53.5846 62.3229 53.2383 62.5098 52.9375C62.6966 52.6322 62.9336 52.3952 63.2207 52.2266C63.5124 52.0534 63.8587 51.9668 64.2598 51.9668C64.3509 51.9668 64.4557 51.9782 64.5742 52.001C64.6927 52.0192 64.7747 52.0397 64.8203 52.0625ZM69.127 55.8838V55.7266C69.127 55.1934 69.2044 54.6989 69.3594 54.2432C69.5143 53.7829 69.7376 53.3841 70.0293 53.0469C70.321 52.7051 70.6742 52.4408 71.0889 52.2539C71.5036 52.0625 71.9684 51.9668 72.4834 51.9668C73.0029 51.9668 73.4701 52.0625 73.8848 52.2539C74.304 52.4408 74.6595 52.7051 74.9512 53.0469C75.2474 53.3841 75.473 53.7829 75.6279 54.2432C75.7829 54.6989 75.8604 55.1934 75.8604 55.7266V55.8838C75.8604 56.417 75.7829 56.9115 75.6279 57.3672C75.473 57.8229 75.2474 58.2217 74.9512 58.5635C74.6595 58.9007 74.3063 59.165 73.8916 59.3564C73.4814 59.5433 73.0166 59.6367 72.4971 59.6367C71.9775 59.6367 71.5104 59.5433 71.0957 59.3564C70.681 59.165 70.3255 58.9007 70.0293 58.5635C69.7376 58.2217 69.5143 57.8229 69.3594 57.3672C69.2044 56.9115 69.127 56.417 69.127 55.8838ZM70.3916 55.7266V55.8838C70.3916 56.2529 70.4349 56.6016 70.5215 56.9297C70.6081 57.2533 70.738 57.5404 70.9111 57.791C71.0889 58.0417 71.3099 58.2399 71.5742 58.3857C71.8385 58.527 72.1462 58.5977 72.4971 58.5977C72.8434 58.5977 73.1465 58.527 73.4062 58.3857C73.6706 58.2399 73.8893 58.0417 74.0625 57.791C74.2357 57.5404 74.3656 57.2533 74.4521 56.9297C74.5433 56.6016 74.5889 56.2529 74.5889 55.8838V55.7266C74.5889 55.362 74.5433 55.0179 74.4521 54.6943C74.3656 54.3662 74.2334 54.0768 74.0557 53.8262C73.8825 53.571 73.6637 53.3704 73.3994 53.2246C73.1396 53.0788 72.8343 53.0059 72.4834 53.0059C72.137 53.0059 71.8317 53.0788 71.5674 53.2246C71.3076 53.3704 71.0889 53.571 70.9111 53.8262C70.738 54.0768 70.6081 54.3662 70.5215 54.6943C70.4349 55.0179 70.3916 55.362 70.3916 55.7266ZM79.333 59.5H78.0684V51.3242C78.0684 50.791 78.1641 50.3421 78.3555 49.9775C78.5514 49.6084 78.8317 49.3304 79.1963 49.1436C79.5609 48.9521 79.9938 48.8564 80.4951 48.8564C80.641 48.8564 80.7868 48.8656 80.9326 48.8838C81.083 48.902 81.2288 48.9294 81.3701 48.9658L81.3018 49.998C81.2061 49.9753 81.0967 49.9593 80.9736 49.9502C80.8551 49.9411 80.7367 49.9365 80.6182 49.9365C80.3493 49.9365 80.1169 49.9912 79.9209 50.1006C79.7295 50.2054 79.5837 50.3604 79.4834 50.5654C79.3831 50.7705 79.333 51.0234 79.333 51.3242V59.5ZM80.9053 52.1035V53.0742H76.8994V52.1035H80.9053ZM90.5781 52.1035H91.7266V59.3428C91.7266 59.9945 91.5944 60.5505 91.3301 61.0107C91.0658 61.471 90.6966 61.8197 90.2227 62.0566C89.7533 62.2982 89.2109 62.4189 88.5957 62.4189C88.3405 62.4189 88.0397 62.3779 87.6934 62.2959C87.3516 62.2184 87.0143 62.084 86.6816 61.8926C86.3535 61.7057 86.0778 61.4528 85.8545 61.1338L86.5176 60.3818C86.8275 60.7555 87.151 61.0153 87.4883 61.1611C87.8301 61.307 88.1673 61.3799 88.5 61.3799C88.901 61.3799 89.2474 61.3047 89.5391 61.1543C89.8307 61.0039 90.0563 60.7806 90.2158 60.4844C90.3799 60.1927 90.4619 59.8327 90.4619 59.4043V53.7305L90.5781 52.1035ZM85.4854 55.8838V55.7402C85.4854 55.1751 85.5514 54.6624 85.6836 54.2021C85.8203 53.7373 86.014 53.3385 86.2646 53.0059C86.5199 52.6732 86.8275 52.418 87.1875 52.2402C87.5475 52.0579 87.9531 51.9668 88.4043 51.9668C88.8691 51.9668 89.2747 52.0488 89.6211 52.2129C89.972 52.3724 90.2682 52.6071 90.5098 52.917C90.7559 53.2223 90.9495 53.5915 91.0908 54.0244C91.2321 54.4574 91.3301 54.9473 91.3848 55.4941V56.123C91.3346 56.6654 91.2367 57.153 91.0908 57.5859C90.9495 58.0189 90.7559 58.388 90.5098 58.6934C90.2682 58.9987 89.972 59.2334 89.6211 59.3975C89.2702 59.557 88.86 59.6367 88.3906 59.6367C87.9486 59.6367 87.5475 59.5433 87.1875 59.3564C86.832 59.1696 86.5267 58.9076 86.2715 58.5703C86.0163 58.2331 85.8203 57.8366 85.6836 57.3809C85.5514 56.9206 85.4854 56.4215 85.4854 55.8838ZM86.75 55.7402V55.8838C86.75 56.2529 86.7865 56.5993 86.8594 56.9229C86.9368 57.2464 87.0531 57.5312 87.208 57.7773C87.3675 58.0234 87.5703 58.2171 87.8164 58.3584C88.0625 58.4951 88.3564 58.5635 88.6982 58.5635C89.1175 58.5635 89.4639 58.4746 89.7373 58.2969C90.0107 58.1191 90.2272 57.8844 90.3867 57.5928C90.5508 57.3011 90.6784 56.9844 90.7695 56.6426V54.9951C90.7194 54.7445 90.6419 54.5029 90.5371 54.2705C90.4368 54.0335 90.3047 53.8239 90.1406 53.6416C89.9811 53.4548 89.7829 53.3066 89.5459 53.1973C89.3089 53.0879 89.0309 53.0332 88.7119 53.0332C88.3656 53.0332 88.0671 53.1061 87.8164 53.252C87.5703 53.3932 87.3675 53.5892 87.208 53.8398C87.0531 54.0859 86.9368 54.373 86.8594 54.7012C86.7865 55.0247 86.75 55.3711 86.75 55.7402ZM98.1729 57.791V52.1035H99.4443V59.5H98.2344L98.1729 57.791ZM98.4121 56.2324L98.9385 56.2188C98.9385 56.7109 98.8861 57.1667 98.7812 57.5859C98.681 58.0007 98.5169 58.3607 98.2891 58.666C98.0612 58.9714 97.7627 59.2106 97.3936 59.3838C97.0244 59.5524 96.5755 59.6367 96.0469 59.6367C95.6868 59.6367 95.3564 59.5843 95.0557 59.4795C94.7594 59.3747 94.5042 59.2129 94.29 58.9941C94.0758 58.7754 93.9095 58.4906 93.791 58.1396C93.6771 57.7887 93.6201 57.3672 93.6201 56.875V52.1035H94.8848V56.8887C94.8848 57.2214 94.9212 57.4971 94.9941 57.7158C95.0716 57.93 95.1742 58.1009 95.3018 58.2285C95.4339 58.3516 95.5798 58.4382 95.7393 58.4883C95.9033 58.5384 96.0719 58.5635 96.2451 58.5635C96.7829 58.5635 97.209 58.4609 97.5234 58.2559C97.8379 58.0462 98.0635 57.766 98.2002 57.415C98.3415 57.0596 98.4121 56.6654 98.4121 56.2324ZM104.441 59.6367C103.926 59.6367 103.459 59.5501 103.04 59.377C102.625 59.1992 102.268 58.9508 101.967 58.6318C101.671 58.3128 101.443 57.9346 101.283 57.4971C101.124 57.0596 101.044 56.5811 101.044 56.0615V55.7744C101.044 55.1729 101.133 54.6374 101.311 54.168C101.488 53.694 101.73 53.293 102.035 52.9648C102.34 52.6367 102.687 52.3883 103.074 52.2197C103.462 52.0511 103.863 51.9668 104.277 51.9668C104.806 51.9668 105.262 52.0579 105.645 52.2402C106.032 52.4225 106.349 52.6777 106.595 53.0059C106.841 53.3294 107.023 53.7122 107.142 54.1543C107.26 54.5918 107.319 55.0703 107.319 55.5898V56.1572H101.796V55.125H106.055V55.0293C106.036 54.7012 105.968 54.3822 105.85 54.0723C105.736 53.7624 105.553 53.5072 105.303 53.3066C105.052 53.1061 104.71 53.0059 104.277 53.0059C103.99 53.0059 103.726 53.0674 103.484 53.1904C103.243 53.3089 103.035 53.4867 102.862 53.7236C102.689 53.9606 102.555 54.25 102.459 54.5918C102.363 54.9336 102.315 55.3278 102.315 55.7744V56.0615C102.315 56.4124 102.363 56.7428 102.459 57.0527C102.559 57.3581 102.703 57.627 102.89 57.8594C103.081 58.0918 103.311 58.2741 103.58 58.4062C103.854 58.5384 104.163 58.6045 104.51 58.6045C104.956 58.6045 105.335 58.5133 105.645 58.3311C105.954 58.1488 106.226 57.9049 106.458 57.5996L107.224 58.208C107.064 58.4495 106.861 58.6797 106.615 58.8984C106.369 59.1172 106.066 59.2949 105.706 59.4316C105.351 59.5684 104.929 59.6367 104.441 59.6367ZM113.103 57.5381C113.103 57.3558 113.062 57.1872 112.979 57.0322C112.902 56.8727 112.74 56.7292 112.494 56.6016C112.253 56.4694 111.888 56.3555 111.4 56.2598C110.99 56.1732 110.619 56.0706 110.286 55.9521C109.958 55.8337 109.678 55.6901 109.445 55.5215C109.217 55.3529 109.042 55.1546 108.919 54.9268C108.796 54.6989 108.734 54.4323 108.734 54.127C108.734 53.8353 108.798 53.5596 108.926 53.2998C109.058 53.04 109.243 52.8099 109.479 52.6094C109.721 52.4089 110.01 52.2516 110.348 52.1377C110.685 52.0238 111.061 51.9668 111.476 51.9668C112.068 51.9668 112.574 52.0716 112.993 52.2812C113.412 52.4909 113.734 52.7712 113.957 53.1221C114.18 53.4684 114.292 53.8535 114.292 54.2773H113.027C113.027 54.0723 112.966 53.874 112.843 53.6826C112.724 53.4867 112.549 53.3249 112.316 53.1973C112.089 53.0697 111.808 53.0059 111.476 53.0059C111.125 53.0059 110.84 53.0605 110.621 53.1699C110.407 53.2747 110.25 53.4092 110.149 53.5732C110.054 53.7373 110.006 53.9105 110.006 54.0928C110.006 54.2295 110.029 54.3525 110.074 54.4619C110.124 54.5667 110.211 54.6647 110.334 54.7559C110.457 54.8424 110.63 54.9245 110.854 55.002C111.077 55.0794 111.362 55.1569 111.708 55.2344C112.314 55.3711 112.813 55.5352 113.205 55.7266C113.597 55.918 113.889 56.1527 114.08 56.4307C114.271 56.7087 114.367 57.0459 114.367 57.4424C114.367 57.766 114.299 58.0622 114.162 58.3311C114.03 58.5999 113.836 58.8324 113.581 59.0283C113.33 59.2197 113.03 59.3701 112.679 59.4795C112.332 59.5843 111.943 59.6367 111.51 59.6367C110.858 59.6367 110.307 59.5205 109.855 59.2881C109.404 59.0557 109.062 58.7549 108.83 58.3857C108.598 58.0166 108.481 57.627 108.481 57.2168H109.753C109.771 57.5632 109.871 57.8389 110.054 58.0439C110.236 58.2445 110.459 58.388 110.724 58.4746C110.988 58.5566 111.25 58.5977 111.51 58.5977C111.856 58.5977 112.146 58.5521 112.378 58.4609C112.615 58.3698 112.795 58.2445 112.918 58.085C113.041 57.9255 113.103 57.7432 113.103 57.5381ZM119.125 52.1035V53.0742H115.126V52.1035H119.125ZM116.479 50.3057H117.744V57.668C117.744 57.9186 117.783 58.1077 117.86 58.2354C117.938 58.363 118.038 58.4473 118.161 58.4883C118.284 58.5293 118.416 58.5498 118.558 58.5498C118.662 58.5498 118.772 58.5407 118.886 58.5225C119.004 58.4997 119.093 58.4814 119.152 58.4678L119.159 59.5C119.059 59.5319 118.927 59.5615 118.763 59.5889C118.603 59.6208 118.41 59.6367 118.182 59.6367C117.872 59.6367 117.587 59.5752 117.327 59.4521C117.067 59.3291 116.86 59.124 116.705 58.8369C116.555 58.5452 116.479 58.1533 116.479 57.6611V50.3057ZM124.915 57.5381C124.915 57.3558 124.874 57.1872 124.792 57.0322C124.715 56.8727 124.553 56.7292 124.307 56.6016C124.065 56.4694 123.701 56.3555 123.213 56.2598C122.803 56.1732 122.431 56.0706 122.099 55.9521C121.771 55.8337 121.49 55.6901 121.258 55.5215C121.03 55.3529 120.854 55.1546 120.731 54.9268C120.608 54.6989 120.547 54.4323 120.547 54.127C120.547 53.8353 120.611 53.5596 120.738 53.2998C120.87 53.04 121.055 52.8099 121.292 52.6094C121.534 52.4089 121.823 52.2516 122.16 52.1377C122.497 52.0238 122.873 51.9668 123.288 51.9668C123.881 51.9668 124.386 52.0716 124.806 52.2812C125.225 52.4909 125.546 52.7712 125.77 53.1221C125.993 53.4684 126.104 53.8535 126.104 54.2773H124.84C124.84 54.0723 124.778 53.874 124.655 53.6826C124.537 53.4867 124.361 53.3249 124.129 53.1973C123.901 53.0697 123.621 53.0059 123.288 53.0059C122.937 53.0059 122.652 53.0605 122.434 53.1699C122.219 53.2747 122.062 53.4092 121.962 53.5732C121.866 53.7373 121.818 53.9105 121.818 54.0928C121.818 54.2295 121.841 54.3525 121.887 54.4619C121.937 54.5667 122.023 54.6647 122.146 54.7559C122.27 54.8424 122.443 54.9245 122.666 55.002C122.889 55.0794 123.174 55.1569 123.521 55.2344C124.127 55.3711 124.626 55.5352 125.018 55.7266C125.41 55.918 125.701 56.1527 125.893 56.4307C126.084 56.7087 126.18 57.0459 126.18 57.4424C126.18 57.766 126.111 58.0622 125.975 58.3311C125.842 58.5999 125.649 58.8324 125.394 59.0283C125.143 59.2197 124.842 59.3701 124.491 59.4795C124.145 59.5843 123.755 59.6367 123.322 59.6367C122.671 59.6367 122.119 59.5205 121.668 59.2881C121.217 59.0557 120.875 58.7549 120.643 58.3857C120.41 58.0166 120.294 57.627 120.294 57.2168H121.565C121.584 57.5632 121.684 57.8389 121.866 58.0439C122.049 58.2445 122.272 58.388 122.536 58.4746C122.8 58.5566 123.062 58.5977 123.322 58.5977C123.669 58.5977 123.958 58.5521 124.19 58.4609C124.427 58.3698 124.607 58.2445 124.73 58.085C124.854 57.9255 124.915 57.7432 124.915 57.5381Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"68.5",width:"265",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M27.4819 81.8013H28.3198C28.7303 81.8013 29.0688 81.7336 29.3354 81.5981C29.6063 81.4585 29.8073 81.2702 29.9385 81.0332C30.0739 80.792 30.1416 80.5212 30.1416 80.2207C30.1416 79.8652 30.0824 79.5669 29.9639 79.3257C29.8454 79.0845 29.6676 78.9025 29.4307 78.7798C29.1937 78.6571 28.8932 78.5957 28.5293 78.5957C28.1992 78.5957 27.9072 78.6613 27.6533 78.7925C27.4036 78.9194 27.2069 79.1014 27.063 79.3384C26.9233 79.5754 26.8535 79.8547 26.8535 80.1763H25.6792C25.6792 79.7065 25.7977 79.2791 26.0347 78.894C26.2716 78.509 26.6038 78.2021 27.0312 77.9736C27.4629 77.7451 27.9622 77.6309 28.5293 77.6309C29.0879 77.6309 29.5767 77.7303 29.9956 77.9292C30.4146 78.1239 30.7404 78.4159 30.9731 78.8052C31.2059 79.1903 31.3223 79.6706 31.3223 80.2461C31.3223 80.4788 31.2673 80.7285 31.1572 80.9951C31.0514 81.2575 30.8843 81.5029 30.6558 81.7314C30.4315 81.96 30.1395 82.1483 29.7798 82.2964C29.4201 82.4403 28.9884 82.5122 28.4849 82.5122H27.4819V81.8013ZM27.4819 82.7661V82.0615H28.4849C29.0731 82.0615 29.5597 82.1313 29.9448 82.271C30.3299 82.4106 30.6325 82.5968 30.8525 82.8296C31.0768 83.0623 31.2334 83.3184 31.3223 83.5977C31.4154 83.8727 31.4619 84.1478 31.4619 84.4229C31.4619 84.8545 31.3879 85.2375 31.2397 85.5718C31.0959 85.9061 30.8906 86.1896 30.624 86.4224C30.3617 86.6551 30.0527 86.8307 29.6973 86.9492C29.3418 87.0677 28.9546 87.127 28.5356 87.127C28.1336 87.127 27.7549 87.0698 27.3994 86.9556C27.0482 86.8413 26.7371 86.6763 26.4663 86.4604C26.1955 86.2404 25.9839 85.9717 25.8315 85.6543C25.6792 85.3327 25.603 84.9666 25.603 84.5562H26.7773C26.7773 84.8778 26.8472 85.1592 26.9868 85.4004C27.1307 85.6416 27.3338 85.8299 27.5962 85.9653C27.8628 86.0965 28.1759 86.1621 28.5356 86.1621C28.8953 86.1621 29.2043 86.1007 29.4624 85.978C29.7248 85.8511 29.9258 85.6606 30.0654 85.4067C30.2093 85.1528 30.2812 84.8333 30.2812 84.4482C30.2812 84.0632 30.2008 83.7479 30.04 83.5024C29.8792 83.2528 29.6507 83.0687 29.3545 82.9502C29.0625 82.8275 28.7176 82.7661 28.3198 82.7661H27.4819Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M261.761 85.7886L264.773 91.2693L267.784 85.7886H261.761Z",fill:"#CBD5E1"}),(0,h.createElement)("path",{d:"M267.784 79.2117L264.773 73.7309L261.761 79.2117L267.784 79.2117Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"16",y:"68.5",width:"265",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),{ToolBarFields:$a,BlockLabel:Ya,BlockDescription:Xa,BlockAdvancedValue:Qa,BlockName:ei,AdvancedFields:Ci,FieldWrapper:ti,FieldSettingsWrapper:li,ValidationToggleGroup:ri,ValidationBlockMessage:ni,AdvancedInspectorControl:ai,AttributeHelp:ii}=JetFBComponents,{useIsAdvancedValidation:oi,useUniqueNameOnDuplicate:si}=JetFBHooks,{__:ci}=wp.i18n,{InspectorControls:di,useBlockProps:mi}=wp.blockEditor,{PanelBody:ui,TextControl:pi,__experimentalInputControl:fi,__experimentalNumberControl:Vi}=wp.components;let{InputControl:Hi,NumberControl:hi}=wp.components;void 0===Hi&&(Hi=fi),void 0===hi&&(hi=Vi);const bi=JSON.parse('{"apiVersion":3,"name":"jet-forms/number-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","media","image","file"],"textdomain":"jet-form-builder","title":"Number Field","icon":"\\n\\n\\n\\n\\n","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max":{"type":["number","string"],"default":"","jfb":{"rich":true}},"step":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Mi}=wp.i18n,{createBlock:Li}=wp.blocks,{name:gi,icon:Zi=""}=bi,yi={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Zi}}),description:Mi("Make a bar in the form that will be filled with numbers or set a range with the Min/Max Value options for the user to choose from.","jet-form-builder"),edit:function(e){const C=mi(),t=oi();si();const{attributes:l,setAttributes:r,isSelected:n,editProps:{uniqKey:a}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ka):[(0,h.createElement)($a,{key:a("ToolBarFields"),...e}),n&&(0,h.createElement)(di,{key:a("InspectorControls")},(0,h.createElement)(ui,{title:ci("General","jet-form-builder")},(0,h.createElement)(Ya,null),(0,h.createElement)(ei,null),(0,h.createElement)(Xa,null)),(0,h.createElement)(ui,{title:ci("Value","jet-form-builder")},(0,h.createElement)(Qa,null)),(0,h.createElement)(li,{...e},(0,h.createElement)(ai,{value:l.min,label:ci("Min Value","jet-form-builder"),onChangePreset:e=>r({min:e})},({instanceId:e})=>(0,h.createElement)(pi,{id:e,className:"jet-fb m-unset",value:l.min,onChange:e=>r({min:e})})),(0,h.createElement)(ii,{name:"min"}),(0,h.createElement)(ai,{value:l.max,label:ci("Max Value","jet-form-builder"),onChangePreset:e=>r({max:e})},({instanceId:e})=>(0,h.createElement)(pi,{id:e,className:"jet-fb m-unset",value:l.max,onChange:e=>r({max:e})})),(0,h.createElement)(ii,{name:"max"}),(0,h.createElement)(ai,{value:l.step,label:ci("Step","jet-form-builder"),onChangePreset:e=>r({step:e})},({instanceId:e})=>(0,h.createElement)(pi,{id:e,className:"jet-fb m-unset",value:l.step,onChange:e=>r({step:e})})),(0,h.createElement)(ii,{name:"step"})),(0,h.createElement)(ui,{title:ci("Validation","jet-form-builder")},(0,h.createElement)(ri,null),t&&(0,h.createElement)(h.Fragment,null,null!==l.min&&(0,h.createElement)(ni,{name:"number_min"}),null!==l.max&&(0,h.createElement)(ni,{name:"number_max"}),(0,h.createElement)(ni,{name:"empty"}))),(0,h.createElement)(Ci,null)),(0,h.createElement)("div",{...C,key:a("viewBlock")},(0,h.createElement)(ti,{key:a("FieldWrapper"),...e},(0,h.createElement)(hi,{placeholder:l.placeholder,className:"jet-form-builder__field-preview",key:a("place_holder_block"),min:l.min||0,max:l.max||1e3,step:l.step||1})))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Li("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/range-field"],transform:e=>Li(gi,{...e}),priority:0}]}},Ei=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M19.8262 57.0967H17.167V56.0234H19.8262C20.3411 56.0234 20.7581 55.9414 21.0771 55.7773C21.3962 55.6133 21.6286 55.3854 21.7744 55.0938C21.9248 54.8021 22 54.4694 22 54.0957C22 53.7539 21.9248 53.4326 21.7744 53.1318C21.6286 52.8311 21.3962 52.5895 21.0771 52.4072C20.7581 52.2204 20.3411 52.127 19.8262 52.127H17.4746V61H16.1553V51.0469H19.8262C20.5781 51.0469 21.2139 51.1768 21.7334 51.4365C22.2529 51.6963 22.6471 52.0563 22.916 52.5166C23.1849 52.9723 23.3193 53.4941 23.3193 54.082C23.3193 54.7201 23.1849 55.2646 22.916 55.7158C22.6471 56.167 22.2529 56.5111 21.7334 56.748C21.2139 56.9805 20.5781 57.0967 19.8262 57.0967ZM26.0605 54.7656V61H24.7959V53.6035H26.0264L26.0605 54.7656ZM28.3711 53.5625L28.3643 54.7383C28.2594 54.7155 28.1592 54.7018 28.0635 54.6973C27.9723 54.6882 27.8675 54.6836 27.749 54.6836C27.4574 54.6836 27.1999 54.7292 26.9766 54.8203C26.7533 54.9115 26.5641 55.0391 26.4092 55.2031C26.2542 55.3672 26.1312 55.5632 26.04 55.791C25.9535 56.0143 25.8965 56.2604 25.8691 56.5293L25.5137 56.7344C25.5137 56.2878 25.557 55.8685 25.6436 55.4766C25.7347 55.0846 25.8737 54.7383 26.0605 54.4375C26.2474 54.1322 26.4844 53.8952 26.7715 53.7266C27.0632 53.5534 27.4095 53.4668 27.8105 53.4668C27.9017 53.4668 28.0065 53.4782 28.125 53.501C28.2435 53.5192 28.3255 53.5397 28.3711 53.5625ZM30.9141 53.6035V61H29.6426V53.6035H30.9141ZM29.5469 51.6416C29.5469 51.4365 29.6084 51.2633 29.7314 51.1221C29.859 50.9808 30.0459 50.9102 30.292 50.9102C30.5335 50.9102 30.7181 50.9808 30.8457 51.1221C30.9779 51.2633 31.0439 51.4365 31.0439 51.6416C31.0439 51.8376 30.9779 52.0062 30.8457 52.1475C30.7181 52.2842 30.5335 52.3525 30.292 52.3525C30.0459 52.3525 29.859 52.2842 29.7314 52.1475C29.6084 52.0062 29.5469 51.8376 29.5469 51.6416ZM35.9043 60.0977C36.2051 60.0977 36.4831 60.0361 36.7383 59.9131C36.9935 59.79 37.2031 59.6214 37.3672 59.4072C37.5312 59.1885 37.6247 58.9401 37.6475 58.6621H38.8506C38.8278 59.0996 38.6797 59.5075 38.4062 59.8857C38.1374 60.2594 37.7842 60.5625 37.3467 60.7949C36.9092 61.0228 36.4284 61.1367 35.9043 61.1367C35.3483 61.1367 34.863 61.0387 34.4482 60.8428C34.0381 60.6468 33.6963 60.3779 33.4229 60.0361C33.154 59.6943 32.9512 59.3024 32.8145 58.8604C32.6823 58.4137 32.6162 57.9421 32.6162 57.4453V57.1582C32.6162 56.6615 32.6823 56.1921 32.8145 55.75C32.9512 55.3034 33.154 54.9092 33.4229 54.5674C33.6963 54.2256 34.0381 53.9567 34.4482 53.7607C34.863 53.5648 35.3483 53.4668 35.9043 53.4668C36.4831 53.4668 36.9889 53.5853 37.4219 53.8223C37.8548 54.0547 38.1943 54.3737 38.4404 54.7793C38.6911 55.1803 38.8278 55.6361 38.8506 56.1465H37.6475C37.6247 55.8411 37.5381 55.5654 37.3877 55.3193C37.2419 55.0732 37.0413 54.8773 36.7861 54.7314C36.5355 54.5811 36.2415 54.5059 35.9043 54.5059C35.5169 54.5059 35.1911 54.5833 34.9268 54.7383C34.667 54.8887 34.4596 55.0938 34.3047 55.3535C34.1543 55.6087 34.0449 55.8936 33.9766 56.208C33.9128 56.5179 33.8809 56.8346 33.8809 57.1582V57.4453C33.8809 57.7689 33.9128 58.0879 33.9766 58.4023C34.0404 58.7168 34.1475 59.0016 34.2979 59.2568C34.4528 59.512 34.6602 59.7171 34.9199 59.8721C35.1842 60.0225 35.5124 60.0977 35.9043 60.0977ZM43.3418 61.1367C42.8268 61.1367 42.3597 61.0501 41.9404 60.877C41.5257 60.6992 41.168 60.4508 40.8672 60.1318C40.571 59.8128 40.3431 59.4346 40.1836 58.9971C40.0241 58.5596 39.9443 58.0811 39.9443 57.5615V57.2744C39.9443 56.6729 40.0332 56.1374 40.2109 55.668C40.3887 55.194 40.6302 54.793 40.9355 54.4648C41.2409 54.1367 41.5872 53.8883 41.9746 53.7197C42.362 53.5511 42.763 53.4668 43.1777 53.4668C43.7064 53.4668 44.1621 53.5579 44.5449 53.7402C44.9323 53.9225 45.249 54.1777 45.4951 54.5059C45.7412 54.8294 45.9235 55.2122 46.042 55.6543C46.1605 56.0918 46.2197 56.5703 46.2197 57.0898V57.6572H40.6963V56.625H44.9551V56.5293C44.9368 56.2012 44.8685 55.8822 44.75 55.5723C44.6361 55.2624 44.4538 55.0072 44.2031 54.8066C43.9525 54.6061 43.6107 54.5059 43.1777 54.5059C42.8906 54.5059 42.6263 54.5674 42.3848 54.6904C42.1432 54.8089 41.9359 54.9867 41.7627 55.2236C41.5895 55.4606 41.4551 55.75 41.3594 56.0918C41.2637 56.4336 41.2158 56.8278 41.2158 57.2744V57.5615C41.2158 57.9124 41.2637 58.2428 41.3594 58.5527C41.4596 58.8581 41.6032 59.127 41.79 59.3594C41.9814 59.5918 42.2116 59.7741 42.4805 59.9062C42.7539 60.0384 43.0638 60.1045 43.4102 60.1045C43.8568 60.1045 44.235 60.0133 44.5449 59.8311C44.8548 59.6488 45.126 59.4049 45.3584 59.0996L46.124 59.708C45.9645 59.9495 45.7617 60.1797 45.5156 60.3984C45.2695 60.6172 44.9665 60.7949 44.6064 60.9316C44.251 61.0684 43.8294 61.1367 43.3418 61.1367ZM52.4336 55.0254V63.8438H51.1621V53.6035H52.3242L52.4336 55.0254ZM57.417 57.2402V57.3838C57.417 57.9215 57.3532 58.4206 57.2256 58.8809C57.098 59.3366 56.9111 59.7331 56.665 60.0703C56.4235 60.4076 56.125 60.6696 55.7695 60.8564C55.4141 61.0433 55.0062 61.1367 54.5459 61.1367C54.0765 61.1367 53.6618 61.0592 53.3018 60.9043C52.9417 60.7493 52.6364 60.5238 52.3857 60.2275C52.1351 59.9313 51.9346 59.5758 51.7842 59.1611C51.6383 58.7464 51.5381 58.2793 51.4834 57.7598V56.9941C51.5381 56.4473 51.6406 55.9574 51.791 55.5244C51.9414 55.0915 52.1396 54.7223 52.3857 54.417C52.6364 54.1071 52.9395 53.8724 53.2949 53.7129C53.6504 53.5488 54.0605 53.4668 54.5254 53.4668C54.9902 53.4668 55.4027 53.5579 55.7627 53.7402C56.1227 53.918 56.4258 54.1732 56.6719 54.5059C56.918 54.8385 57.1025 55.2373 57.2256 55.7021C57.3532 56.1624 57.417 56.6751 57.417 57.2402ZM56.1455 57.3838V57.2402C56.1455 56.8711 56.1068 56.5247 56.0293 56.2012C55.9518 55.873 55.8311 55.5859 55.667 55.3398C55.5075 55.0892 55.3024 54.8932 55.0518 54.752C54.8011 54.6061 54.5026 54.5332 54.1562 54.5332C53.8372 54.5332 53.5592 54.5879 53.3223 54.6973C53.0898 54.8066 52.8916 54.9548 52.7275 55.1416C52.5635 55.3239 52.429 55.5335 52.3242 55.7705C52.224 56.0029 52.1488 56.2445 52.0986 56.4951V58.2656C52.1898 58.5846 52.3174 58.8854 52.4814 59.168C52.6455 59.446 52.8643 59.6715 53.1377 59.8447C53.4111 60.0133 53.7552 60.0977 54.1699 60.0977C54.5117 60.0977 54.8057 60.027 55.0518 59.8857C55.3024 59.7399 55.5075 59.5417 55.667 59.291C55.8311 59.0404 55.9518 58.7533 56.0293 58.4297C56.1068 58.1016 56.1455 57.7529 56.1455 57.3838ZM62.0996 61.1367C61.5846 61.1367 61.1175 61.0501 60.6982 60.877C60.2835 60.6992 59.9258 60.4508 59.625 60.1318C59.3288 59.8128 59.1009 59.4346 58.9414 58.9971C58.7819 58.5596 58.7021 58.0811 58.7021 57.5615V57.2744C58.7021 56.6729 58.791 56.1374 58.9688 55.668C59.1465 55.194 59.388 54.793 59.6934 54.4648C59.9987 54.1367 60.3451 53.8883 60.7324 53.7197C61.1198 53.5511 61.5208 53.4668 61.9355 53.4668C62.4642 53.4668 62.9199 53.5579 63.3027 53.7402C63.6901 53.9225 64.0068 54.1777 64.2529 54.5059C64.499 54.8294 64.6813 55.2122 64.7998 55.6543C64.9183 56.0918 64.9775 56.5703 64.9775 57.0898V57.6572H59.4541V56.625H63.7129V56.5293C63.6947 56.2012 63.6263 55.8822 63.5078 55.5723C63.3939 55.2624 63.2116 55.0072 62.9609 54.8066C62.7103 54.6061 62.3685 54.5059 61.9355 54.5059C61.6484 54.5059 61.3841 54.5674 61.1426 54.6904C60.901 54.8089 60.6937 54.9867 60.5205 55.2236C60.3473 55.4606 60.2129 55.75 60.1172 56.0918C60.0215 56.4336 59.9736 56.8278 59.9736 57.2744V57.5615C59.9736 57.9124 60.0215 58.2428 60.1172 58.5527C60.2174 58.8581 60.361 59.127 60.5479 59.3594C60.7393 59.5918 60.9694 59.7741 61.2383 59.9062C61.5117 60.0384 61.8216 60.1045 62.168 60.1045C62.6146 60.1045 62.9928 60.0133 63.3027 59.8311C63.6126 59.6488 63.8838 59.4049 64.1162 59.0996L64.8818 59.708C64.7223 59.9495 64.5195 60.1797 64.2734 60.3984C64.0273 60.6172 63.7243 60.7949 63.3643 60.9316C63.0088 61.0684 62.5872 61.1367 62.0996 61.1367ZM67.7188 54.7656V61H66.4541V53.6035H67.6846L67.7188 54.7656ZM70.0293 53.5625L70.0225 54.7383C69.9176 54.7155 69.8174 54.7018 69.7217 54.6973C69.6305 54.6882 69.5257 54.6836 69.4072 54.6836C69.1156 54.6836 68.8581 54.7292 68.6348 54.8203C68.4115 54.9115 68.2223 55.0391 68.0674 55.2031C67.9124 55.3672 67.7894 55.5632 67.6982 55.791C67.6117 56.0143 67.5547 56.2604 67.5273 56.5293L67.1719 56.7344C67.1719 56.2878 67.2152 55.8685 67.3018 55.4766C67.3929 55.0846 67.5319 54.7383 67.7188 54.4375C67.9056 54.1322 68.1426 53.8952 68.4297 53.7266C68.7214 53.5534 69.0677 53.4668 69.4688 53.4668C69.5599 53.4668 69.6647 53.4782 69.7832 53.501C69.9017 53.5192 69.9837 53.5397 70.0293 53.5625ZM75.9355 55.1826V61H74.6709V53.6035H75.8672L75.9355 55.1826ZM75.6348 57.0215L75.1084 57.001C75.113 56.4951 75.1882 56.028 75.334 55.5996C75.4798 55.1667 75.6849 54.7907 75.9492 54.4717C76.2135 54.1527 76.528 53.9066 76.8926 53.7334C77.2617 53.5557 77.6696 53.4668 78.1162 53.4668C78.4808 53.4668 78.8089 53.5169 79.1006 53.6172C79.3923 53.7129 79.6406 53.8678 79.8457 54.082C80.0553 54.2962 80.2148 54.5742 80.3242 54.916C80.4336 55.2533 80.4883 55.6657 80.4883 56.1533V61H79.2168V56.1396C79.2168 55.7523 79.1598 55.4424 79.0459 55.21C78.932 54.973 78.7656 54.8021 78.5469 54.6973C78.3281 54.5879 78.0592 54.5332 77.7402 54.5332C77.4258 54.5332 77.1387 54.5993 76.8789 54.7314C76.6237 54.8636 76.4027 55.0459 76.2158 55.2783C76.0335 55.5107 75.89 55.7773 75.7852 56.0781C75.6849 56.3743 75.6348 56.6888 75.6348 57.0215ZM83.7832 53.6035V61H82.5117V53.6035H83.7832ZM82.416 51.6416C82.416 51.4365 82.4775 51.2633 82.6006 51.1221C82.7282 50.9808 82.915 50.9102 83.1611 50.9102C83.4027 50.9102 83.5872 50.9808 83.7148 51.1221C83.847 51.2633 83.9131 51.4365 83.9131 51.6416C83.9131 51.8376 83.847 52.0062 83.7148 52.1475C83.5872 52.2842 83.4027 52.3525 83.1611 52.3525C82.915 52.3525 82.7282 52.2842 82.6006 52.1475C82.4775 52.0062 82.416 51.8376 82.416 51.6416ZM90.6055 53.6035H91.7539V60.8428C91.7539 61.4945 91.6217 62.0505 91.3574 62.5107C91.0931 62.971 90.724 63.3197 90.25 63.5566C89.7806 63.7982 89.2383 63.9189 88.623 63.9189C88.3678 63.9189 88.0671 63.8779 87.7207 63.7959C87.3789 63.7184 87.0417 63.584 86.709 63.3926C86.3809 63.2057 86.1051 62.9528 85.8818 62.6338L86.5449 61.8818C86.8548 62.2555 87.1784 62.5153 87.5156 62.6611C87.8574 62.807 88.1947 62.8799 88.5273 62.8799C88.9284 62.8799 89.2747 62.8047 89.5664 62.6543C89.8581 62.5039 90.0837 62.2806 90.2432 61.9844C90.4072 61.6927 90.4893 61.3327 90.4893 60.9043V55.2305L90.6055 53.6035ZM85.5127 57.3838V57.2402C85.5127 56.6751 85.5788 56.1624 85.7109 55.7021C85.8477 55.2373 86.0413 54.8385 86.292 54.5059C86.5472 54.1732 86.8548 53.918 87.2148 53.7402C87.5749 53.5579 87.9805 53.4668 88.4316 53.4668C88.8965 53.4668 89.3021 53.5488 89.6484 53.7129C89.9993 53.8724 90.2956 54.1071 90.5371 54.417C90.7832 54.7223 90.9769 55.0915 91.1182 55.5244C91.2594 55.9574 91.3574 56.4473 91.4121 56.9941V57.623C91.362 58.1654 91.264 58.653 91.1182 59.0859C90.9769 59.5189 90.7832 59.888 90.5371 60.1934C90.2956 60.4987 89.9993 60.7334 89.6484 60.8975C89.2975 61.057 88.8874 61.1367 88.418 61.1367C87.9759 61.1367 87.5749 61.0433 87.2148 60.8564C86.8594 60.6696 86.554 60.4076 86.2988 60.0703C86.0436 59.7331 85.8477 59.3366 85.7109 58.8809C85.5788 58.4206 85.5127 57.9215 85.5127 57.3838ZM86.7773 57.2402V57.3838C86.7773 57.7529 86.8138 58.0993 86.8867 58.4229C86.9642 58.7464 87.0804 59.0312 87.2354 59.2773C87.3949 59.5234 87.5977 59.7171 87.8438 59.8584C88.0898 59.9951 88.3838 60.0635 88.7256 60.0635C89.1449 60.0635 89.4912 59.9746 89.7646 59.7969C90.0381 59.6191 90.2546 59.3844 90.4141 59.0928C90.5781 58.8011 90.7057 58.4844 90.7969 58.1426V56.4951C90.7467 56.2445 90.6693 56.0029 90.5645 55.7705C90.4642 55.5335 90.332 55.3239 90.168 55.1416C90.0085 54.9548 89.8102 54.8066 89.5732 54.6973C89.3363 54.5879 89.0583 54.5332 88.7393 54.5332C88.3929 54.5332 88.0944 54.6061 87.8438 54.752C87.5977 54.8932 87.3949 55.0892 87.2354 55.3398C87.0804 55.5859 86.9642 55.873 86.8867 56.2012C86.8138 56.5247 86.7773 56.8711 86.7773 57.2402ZM94.9395 50.5V61H93.6748V50.5H94.9395ZM94.6387 57.0215L94.1123 57.001C94.1169 56.4951 94.1921 56.028 94.3379 55.5996C94.4837 55.1667 94.6888 54.7907 94.9531 54.4717C95.2174 54.1527 95.5319 53.9066 95.8965 53.7334C96.2656 53.5557 96.6735 53.4668 97.1201 53.4668C97.4847 53.4668 97.8128 53.5169 98.1045 53.6172C98.3962 53.7129 98.6445 53.8678 98.8496 54.082C99.0592 54.2962 99.2188 54.5742 99.3281 54.916C99.4375 55.2533 99.4922 55.6657 99.4922 56.1533V61H98.2207V56.1396C98.2207 55.7523 98.1637 55.4424 98.0498 55.21C97.9359 54.973 97.7695 54.8021 97.5508 54.6973C97.332 54.5879 97.0632 54.5332 96.7441 54.5332C96.4297 54.5332 96.1426 54.5993 95.8828 54.7314C95.6276 54.8636 95.4066 55.0459 95.2197 55.2783C95.0374 55.5107 94.8939 55.7773 94.7891 56.0781C94.6888 56.3743 94.6387 56.6888 94.6387 57.0215ZM104.482 53.6035V54.5742H100.483V53.6035H104.482ZM101.837 51.8057H103.102V59.168C103.102 59.4186 103.14 59.6077 103.218 59.7354C103.295 59.863 103.396 59.9473 103.519 59.9883C103.642 60.0293 103.774 60.0498 103.915 60.0498C104.02 60.0498 104.129 60.0407 104.243 60.0225C104.362 59.9997 104.451 59.9814 104.51 59.9678L104.517 61C104.416 61.0319 104.284 61.0615 104.12 61.0889C103.961 61.1208 103.767 61.1367 103.539 61.1367C103.229 61.1367 102.944 61.0752 102.685 60.9521C102.425 60.8291 102.217 60.624 102.062 60.3369C101.912 60.0452 101.837 59.6533 101.837 59.1611V51.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M19.8574 78.4336V80.5186H18.832V78.4336H19.8574ZM19.7344 89.5967V91.4219H18.7158V89.5967H19.7344ZM21.1016 87.4365C21.1016 87.1631 21.04 86.917 20.917 86.6982C20.7939 86.4795 20.5911 86.279 20.3086 86.0967C20.026 85.9144 19.6478 85.7458 19.1738 85.5908C18.5996 85.4131 18.1029 85.1966 17.6836 84.9414C17.2689 84.6862 16.9476 84.3695 16.7197 83.9912C16.4964 83.613 16.3848 83.1549 16.3848 82.6172C16.3848 82.0566 16.5055 81.5736 16.7471 81.168C16.9886 80.7624 17.3304 80.4502 17.7725 80.2314C18.2145 80.0127 18.734 79.9033 19.3311 79.9033C19.7959 79.9033 20.2106 79.974 20.5752 80.1152C20.9398 80.252 21.2474 80.457 21.498 80.7305C21.7533 81.0039 21.9469 81.3389 22.0791 81.7354C22.2158 82.1318 22.2842 82.5898 22.2842 83.1094H21.0264C21.0264 82.804 20.9899 82.5238 20.917 82.2686C20.8441 82.0133 20.7347 81.7923 20.5889 81.6055C20.443 81.4141 20.2653 81.2682 20.0557 81.168C19.846 81.0632 19.6045 81.0107 19.3311 81.0107C18.9482 81.0107 18.6315 81.0768 18.3809 81.209C18.1348 81.3411 17.9525 81.528 17.834 81.7695C17.7155 82.0065 17.6562 82.2822 17.6562 82.5967C17.6562 82.8883 17.7155 83.1436 17.834 83.3623C17.9525 83.5811 18.153 83.7793 18.4355 83.957C18.7227 84.1302 19.1169 84.3011 19.6182 84.4697C20.2061 84.6566 20.7051 84.8776 21.1152 85.1328C21.5254 85.3835 21.8376 85.6934 22.0518 86.0625C22.266 86.4271 22.373 86.8805 22.373 87.4229C22.373 88.0107 22.2409 88.5075 21.9766 88.9131C21.7122 89.3141 21.3408 89.6195 20.8623 89.8291C20.3838 90.0387 19.8232 90.1436 19.1807 90.1436C18.7933 90.1436 18.4105 90.0911 18.0322 89.9863C17.654 89.8815 17.3122 89.7106 17.0068 89.4736C16.7015 89.2321 16.4577 88.9154 16.2754 88.5234C16.0931 88.127 16.002 87.6416 16.002 87.0674H17.2734C17.2734 87.4548 17.3281 87.776 17.4375 88.0312C17.5514 88.2819 17.7018 88.4824 17.8887 88.6328C18.0755 88.7786 18.2806 88.8835 18.5039 88.9473C18.7318 89.0065 18.9574 89.0361 19.1807 89.0361C19.5908 89.0361 19.9372 88.9723 20.2197 88.8447C20.5068 88.7126 20.7256 88.5257 20.876 88.2842C21.0264 88.0426 21.1016 87.7601 21.1016 87.4365ZM30.2002 84.2305V85.748C30.2002 86.5638 30.1273 87.252 29.9814 87.8125C29.8356 88.373 29.626 88.8242 29.3525 89.166C29.0791 89.5078 28.7487 89.7562 28.3613 89.9111C27.9785 90.0615 27.5456 90.1367 27.0625 90.1367C26.6797 90.1367 26.3265 90.0889 26.0029 89.9932C25.6794 89.8975 25.3877 89.7448 25.1279 89.5352C24.8727 89.321 24.654 89.043 24.4717 88.7012C24.2894 88.3594 24.1504 87.9447 24.0547 87.457C23.959 86.9694 23.9111 86.3997 23.9111 85.748V84.2305C23.9111 83.4147 23.984 82.7311 24.1299 82.1797C24.2803 81.6283 24.4922 81.1862 24.7656 80.8535C25.0391 80.5163 25.3672 80.2747 25.75 80.1289C26.1374 79.9831 26.5703 79.9102 27.0488 79.9102C27.4362 79.9102 27.7917 79.958 28.1152 80.0537C28.4434 80.1449 28.735 80.293 28.9902 80.498C29.2454 80.6986 29.4619 80.9674 29.6396 81.3047C29.8219 81.6374 29.9609 82.0452 30.0566 82.5283C30.1523 83.0114 30.2002 83.5788 30.2002 84.2305ZM28.9287 85.9531V84.0186C28.9287 83.5719 28.9014 83.18 28.8467 82.8428C28.7965 82.501 28.7214 82.2093 28.6211 81.9678C28.5208 81.7262 28.3932 81.5303 28.2383 81.3799C28.0879 81.2295 27.9124 81.1201 27.7119 81.0518C27.516 80.9788 27.2949 80.9424 27.0488 80.9424C26.748 80.9424 26.4814 80.9993 26.249 81.1133C26.0166 81.2227 25.8206 81.3981 25.6611 81.6396C25.5062 81.8812 25.3877 82.1979 25.3057 82.5898C25.2236 82.9818 25.1826 83.458 25.1826 84.0186V85.9531C25.1826 86.3997 25.2077 86.7939 25.2578 87.1357C25.3125 87.4775 25.3923 87.7738 25.4971 88.0244C25.6019 88.2705 25.7295 88.4733 25.8799 88.6328C26.0303 88.7923 26.2035 88.9108 26.3994 88.9883C26.5999 89.0612 26.821 89.0977 27.0625 89.0977C27.3724 89.0977 27.6436 89.0384 27.876 88.9199C28.1084 88.8014 28.3021 88.6169 28.457 88.3662C28.6165 88.111 28.735 87.7852 28.8125 87.3887C28.89 86.9876 28.9287 86.5091 28.9287 85.9531Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"41",y:"83.5",width:"200",height:"2",rx:"1",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"41",y:"83.5",width:"122",height:"2",rx:"1",fill:"#4272F9"}),(0,h.createElement)("g",{filter:"url(#filter0_d_76_1271)"},(0,h.createElement)("circle",{cx:"163",cy:"84.5",r:"11",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M256.107 78.4336V80.5186H255.082V78.4336H256.107ZM255.984 89.5967V91.4219H254.966V89.5967H255.984ZM257.352 87.4365C257.352 87.1631 257.29 86.917 257.167 86.6982C257.044 86.4795 256.841 86.279 256.559 86.0967C256.276 85.9144 255.898 85.7458 255.424 85.5908C254.85 85.4131 254.353 85.1966 253.934 84.9414C253.519 84.6862 253.198 84.3695 252.97 83.9912C252.746 83.613 252.635 83.1549 252.635 82.6172C252.635 82.0566 252.756 81.5736 252.997 81.168C253.239 80.7624 253.58 80.4502 254.022 80.2314C254.465 80.0127 254.984 79.9033 255.581 79.9033C256.046 79.9033 256.461 79.974 256.825 80.1152C257.19 80.252 257.497 80.457 257.748 80.7305C258.003 81.0039 258.197 81.3389 258.329 81.7354C258.466 82.1318 258.534 82.5898 258.534 83.1094H257.276C257.276 82.804 257.24 82.5238 257.167 82.2686C257.094 82.0133 256.985 81.7923 256.839 81.6055C256.693 81.4141 256.515 81.2682 256.306 81.168C256.096 81.0632 255.854 81.0107 255.581 81.0107C255.198 81.0107 254.882 81.0768 254.631 81.209C254.385 81.3411 254.202 81.528 254.084 81.7695C253.965 82.0065 253.906 82.2822 253.906 82.5967C253.906 82.8883 253.965 83.1436 254.084 83.3623C254.202 83.5811 254.403 83.7793 254.686 83.957C254.973 84.1302 255.367 84.3011 255.868 84.4697C256.456 84.6566 256.955 84.8776 257.365 85.1328C257.775 85.3835 258.088 85.6934 258.302 86.0625C258.516 86.4271 258.623 86.8805 258.623 87.4229C258.623 88.0107 258.491 88.5075 258.227 88.9131C257.962 89.3141 257.591 89.6195 257.112 89.8291C256.634 90.0387 256.073 90.1436 255.431 90.1436C255.043 90.1436 254.66 90.0911 254.282 89.9863C253.904 89.8815 253.562 89.7106 253.257 89.4736C252.951 89.2321 252.708 88.9154 252.525 88.5234C252.343 88.127 252.252 87.6416 252.252 87.0674H253.523C253.523 87.4548 253.578 87.776 253.688 88.0312C253.801 88.2819 253.952 88.4824 254.139 88.6328C254.326 88.7786 254.531 88.8835 254.754 88.9473C254.982 89.0065 255.207 89.0361 255.431 89.0361C255.841 89.0361 256.187 88.9723 256.47 88.8447C256.757 88.7126 256.976 88.5257 257.126 88.2842C257.276 88.0426 257.352 87.7601 257.352 87.4365ZM266.724 88.9609V90H260.209V89.0908L263.47 85.4609C263.871 85.0143 264.181 84.6361 264.399 84.3262C264.623 84.0117 264.778 83.7314 264.864 83.4854C264.955 83.2347 265.001 82.9795 265.001 82.7197C265.001 82.3916 264.933 82.0954 264.796 81.8311C264.664 81.5622 264.468 81.348 264.208 81.1885C263.948 81.029 263.634 80.9492 263.265 80.9492C262.823 80.9492 262.453 81.0358 262.157 81.209C261.866 81.3776 261.647 81.6146 261.501 81.9199C261.355 82.2253 261.282 82.5762 261.282 82.9727H260.018C260.018 82.4121 260.141 81.8994 260.387 81.4346C260.633 80.9697 260.997 80.6006 261.48 80.3271C261.964 80.0492 262.558 79.9102 263.265 79.9102C263.894 79.9102 264.431 80.0218 264.878 80.2451C265.325 80.4639 265.666 80.7738 265.903 81.1748C266.145 81.5713 266.266 82.0361 266.266 82.5693C266.266 82.861 266.215 83.1572 266.115 83.458C266.02 83.7542 265.885 84.0505 265.712 84.3467C265.543 84.6429 265.345 84.9346 265.117 85.2217C264.894 85.5088 264.655 85.7913 264.399 86.0693L261.733 88.9609H266.724ZM272.233 79.9922V90H270.969V81.5713L268.419 82.501V81.3594L272.035 79.9922H272.233ZM282.2 84.2305V85.748C282.2 86.5638 282.127 87.252 281.981 87.8125C281.836 88.373 281.626 88.8242 281.353 89.166C281.079 89.5078 280.749 89.7562 280.361 89.9111C279.979 90.0615 279.546 90.1367 279.062 90.1367C278.68 90.1367 278.326 90.0889 278.003 89.9932C277.679 89.8975 277.388 89.7448 277.128 89.5352C276.873 89.321 276.654 89.043 276.472 88.7012C276.289 88.3594 276.15 87.9447 276.055 87.457C275.959 86.9694 275.911 86.3997 275.911 85.748V84.2305C275.911 83.4147 275.984 82.7311 276.13 82.1797C276.28 81.6283 276.492 81.1862 276.766 80.8535C277.039 80.5163 277.367 80.2747 277.75 80.1289C278.137 79.9831 278.57 79.9102 279.049 79.9102C279.436 79.9102 279.792 79.958 280.115 80.0537C280.443 80.1449 280.735 80.293 280.99 80.498C281.245 80.6986 281.462 80.9674 281.64 81.3047C281.822 81.6374 281.961 82.0452 282.057 82.5283C282.152 83.0114 282.2 83.5788 282.2 84.2305ZM280.929 85.9531V84.0186C280.929 83.5719 280.901 83.18 280.847 82.8428C280.797 82.501 280.721 82.2093 280.621 81.9678C280.521 81.7262 280.393 81.5303 280.238 81.3799C280.088 81.2295 279.912 81.1201 279.712 81.0518C279.516 80.9788 279.295 80.9424 279.049 80.9424C278.748 80.9424 278.481 80.9993 278.249 81.1133C278.017 81.2227 277.821 81.3981 277.661 81.6396C277.506 81.8812 277.388 82.1979 277.306 82.5898C277.224 82.9818 277.183 83.458 277.183 84.0186V85.9531C277.183 86.3997 277.208 86.7939 277.258 87.1357C277.312 87.4775 277.392 87.7738 277.497 88.0244C277.602 88.2705 277.729 88.4733 277.88 88.6328C278.03 88.7923 278.203 88.9108 278.399 88.9883C278.6 89.0612 278.821 89.0977 279.062 89.0977C279.372 89.0977 279.644 89.0384 279.876 88.9199C280.108 88.8014 280.302 88.6169 280.457 88.3662C280.617 88.111 280.735 87.7852 280.812 87.3887C280.89 86.9876 280.929 86.5091 280.929 85.9531Z",fill:"#0F172A"}),(0,h.createElement)("defs",null,(0,h.createElement)("filter",{id:"filter0_d_76_1271",x:"140",y:"65.5",width:"46",height:"46",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB"},(0,h.createElement)("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),(0,h.createElement)("feColorMatrix",{in:"SourceAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",result:"hardAlpha"}),(0,h.createElement)("feOffset",{dy:"4"}),(0,h.createElement)("feGaussianBlur",{stdDeviation:"6"}),(0,h.createElement)("feColorMatrix",{type:"matrix",values:"0 0 0 0 0.258824 0 0 0 0 0.447059 0 0 0 0 0.976471 0 0 0 0.5 0"}),(0,h.createElement)("feBlend",{mode:"normal",in2:"BackgroundImageFix",result:"effect1_dropShadow_76_1271"}),(0,h.createElement)("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_dropShadow_76_1271",result:"shape"})))),{BlockLabel:wi,BlockDescription:vi,BlockAdvancedValue:_i,BlockName:ki,AdvancedFields:ji,FieldWrapper:xi,ValidationToggleGroup:Fi,ValidationBlockMessage:Bi,AdvancedInspectorControl:Ai,AttributeHelp:Pi}=JetFBComponents,{useIsAdvancedValidation:Si,useUniqueNameOnDuplicate:Ni}=JetFBHooks,{__:Ii}=wp.i18n,{InspectorControls:Ti,useBlockProps:Oi}=wp.blockEditor,{TextControl:Ji,PanelBody:Ri,__experimentalNumberControl:qi,__experimentalInputControl:Di}=wp.components,{useState:zi}=wp.element;let{NumberControl:Ui,InputControl:Gi}=wp.components;void 0===Ui&&(Ui=qi),void 0===Gi&&(Gi=Di);const Wi=JSON.parse('{"apiVersion":3,"name":"jet-forms/range-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","range"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Range Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max":{"type":["number","string"],"default":"","jfb":{"rich":true}},"step":{"type":["number","string"],"default":"","jfb":{"rich":true}},"prefix":{"type":"string","default":"","jfb":{"rich":true}},"suffix":{"type":"string","default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Ki}=wp.i18n,{createBlock:$i}=wp.blocks,{name:Yi,icon:Xi=""}=Wi,Qi={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Xi}}),description:Ki("Insert a range with a slider in the form for the users to move it. So the visitors can set the desired price range for products they want to buy.","jet-form-builder"),edit:function(e){const C=Oi(),t=Si();Ni();const[l,r]=zi(50),{attributes:n,setAttributes:a,editProps:{uniqKey:i,attrHelp:o}}=e;return n.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ei):[e.isSelected&&(0,h.createElement)(Ti,{key:i("InspectorControls")},(0,h.createElement)(Ri,{title:Ii("General","jet-form-builder")},(0,h.createElement)(wi,null),(0,h.createElement)(ki,null),(0,h.createElement)(vi,null)),(0,h.createElement)(Ri,{title:Ii("Value","jet-form-builder")},(0,h.createElement)(_i,null)),(0,h.createElement)(Ri,{title:Ii("Field","jet-form-builder"),key:i("PanelBody")},(0,h.createElement)(Ai,{value:n.min,label:Ii("Min Value","jet-form-builder"),onChangePreset:e=>a({min:e})},({instanceId:e})=>(0,h.createElement)(Ji,{id:e,className:"jet-fb m-unset",value:n.min,onChange:e=>a({min:e})})),(0,h.createElement)(Pi,{name:"min"}),(0,h.createElement)(Ai,{value:n.max,label:Ii("Max Value","jet-form-builder"),onChangePreset:e=>a({max:e})},({instanceId:e})=>(0,h.createElement)(Ji,{id:e,className:"jet-fb m-unset",value:n.max,onChange:e=>a({max:e})})),(0,h.createElement)(Pi,{name:"max"}),(0,h.createElement)(Ai,{value:n.step,label:Ii("Step","jet-form-builder"),onChangePreset:e=>a({step:e})},({instanceId:e})=>(0,h.createElement)(Ji,{id:e,className:"jet-fb m-unset",value:n.step,onChange:e=>a({step:e})})),(0,h.createElement)(Pi,{name:"step"}),(0,h.createElement)(Ji,{key:"prefix",label:Ii("Value prefix","jet-form-builder"),value:n.prefix,help:o("prefix_suffix"),onChange:e=>{a({prefix:e})}}),(0,h.createElement)(Ji,{key:"suffix",label:Ii("Value suffix","jet-form-builder"),value:n.suffix,help:o("prefix_suffix"),onChange:e=>{a({suffix:e})}})),(0,h.createElement)(Ri,{title:Ii("Validation","jet-form-builder")},(0,h.createElement)(Fi,null),t&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Bi,{name:"empty"}),(0,h.createElement)(Bi,{name:"number_max"}),(0,h.createElement)(Bi,{name:"number_min"}))),(0,h.createElement)(ji,{key:i("AdvancedFields"),...e})),(0,h.createElement)("div",{...C,key:i("viewBlock")},(0,h.createElement)(xi,{key:i("FieldWrapper"),wrapClasses:["range-wrap"],...e},(0,h.createElement)("div",{className:"range-flex-wrap jet-form-builder__field-preview"},(0,h.createElement)(Gi,{key:i("placeholder_block"),type:"range",min:n.min||0,max:n.max||100,step:n.step||1,onChange:r}),(0,h.createElement)("div",{className:"jet-form-builder__field-value"},(0,h.createElement)("span",{className:"jet-form-builder__field-value-prefix"},n.prefix),(0,h.createElement)("span",null,l),(0,h.createElement)("span",{className:"jet-form-builder__field-value-suffix"},n.suffix)))))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>$i("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/number-field"],transform:e=>$i(Yi,{...e}),priority:0}]}},eo=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"70",y:"44",width:"158",height:"56",rx:"28",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M99.8051 79.28C99.2384 79.28 98.6551 79.2233 98.0551 79.11C97.4551 79.0033 96.8984 78.8733 96.3851 78.72C95.8717 78.56 95.4651 78.4067 95.1651 78.26L95.4651 75.54C95.9317 75.7667 96.4184 75.9767 96.9251 76.17C97.4317 76.3633 97.9517 76.52 98.4851 76.64C99.0184 76.76 99.5584 76.82 100.105 76.82C100.785 76.82 101.332 76.6867 101.745 76.42C102.158 76.1533 102.365 75.7467 102.365 75.2C102.365 74.78 102.248 74.4433 102.015 74.19C101.782 73.93 101.425 73.7 100.945 73.5C100.465 73.2933 99.8517 73.06 99.1051 72.8C98.3584 72.54 97.6884 72.2467 97.0951 71.92C96.5017 71.5867 96.0317 71.1667 95.6851 70.66C95.3384 70.1533 95.1651 69.5067 95.1651 68.72C95.1651 67.9467 95.3551 67.26 95.7351 66.66C96.1151 66.0533 96.6817 65.58 97.4351 65.24C98.1951 64.8933 99.1384 64.72 100.265 64.72C101.118 64.72 101.932 64.8167 102.705 65.01C103.478 65.1967 104.138 65.4 104.685 65.62L104.425 68.24C103.638 67.8867 102.898 67.62 102.205 67.44C101.518 67.2533 100.818 67.16 100.105 67.16C99.3584 67.16 98.7817 67.2833 98.3751 67.53C97.9684 67.7767 97.7651 68.1467 97.7651 68.64C97.7651 69.0333 97.8784 69.35 98.1051 69.59C98.3317 69.83 98.6551 70.0367 99.0751 70.21C99.4951 70.3767 99.9984 70.5533 100.585 70.74C101.598 71.06 102.448 71.4133 103.135 71.8C103.828 72.18 104.348 72.6433 104.695 73.19C105.048 73.73 105.225 74.4 105.225 75.2C105.225 75.6 105.162 76.0367 105.035 76.51C104.908 76.9767 104.658 77.42 104.285 77.84C103.912 78.26 103.365 78.6067 102.645 78.88C101.932 79.1467 100.985 79.28 99.8051 79.28ZM110.989 79.2C109.949 79.2 109.119 78.9933 108.499 78.58C107.879 78.1667 107.433 77.6 107.159 76.88C106.886 76.1533 106.749 75.32 106.749 74.38V69H109.229V74.38C109.229 75.3067 109.383 75.9967 109.689 76.45C110.003 76.8967 110.509 77.12 111.209 77.12C111.769 77.12 112.233 76.9867 112.599 76.72C112.973 76.4533 113.283 76.08 113.529 75.6L113.089 76.86V69H115.569V79H113.249L113.129 77.26L113.669 77.96C113.429 78.2667 113.049 78.55 112.529 78.81C112.016 79.07 111.503 79.2 110.989 79.2ZM123.085 79.2C122.325 79.2 121.668 79.0767 121.115 78.83C120.561 78.5833 120.045 78.2467 119.565 77.82L120.305 77.3L120.185 79H117.865V64H120.345V70.66L119.745 70.28C120.185 69.8267 120.675 69.4733 121.215 69.22C121.761 68.9667 122.385 68.84 123.085 68.84C124.065 68.84 124.888 69.0767 125.555 69.55C126.221 70.0233 126.725 70.6533 127.065 71.44C127.411 72.2267 127.585 73.0867 127.585 74.02C127.585 74.9533 127.411 75.8133 127.065 76.6C126.725 77.3867 126.221 78.0167 125.555 78.49C124.888 78.9633 124.065 79.2 123.085 79.2ZM122.725 77.16C123.218 77.16 123.638 77.0267 123.985 76.76C124.331 76.4933 124.595 76.1267 124.775 75.66C124.955 75.1867 125.045 74.64 125.045 74.02C125.045 73.4 124.955 72.8567 124.775 72.39C124.595 71.9167 124.331 71.5467 123.985 71.28C123.638 71.0133 123.218 70.88 122.725 70.88C122.145 70.88 121.671 71.0133 121.305 71.28C120.938 71.5467 120.665 71.9167 120.485 72.39C120.311 72.8567 120.225 73.4 120.225 74.02C120.225 74.64 120.311 75.1867 120.485 75.66C120.665 76.1267 120.938 76.4933 121.305 76.76C121.671 77.0267 122.145 77.16 122.725 77.16ZM129.31 79V69H131.43L131.59 70.46L131.23 70.02C131.61 69.72 132.064 69.45 132.59 69.21C133.124 68.9633 133.744 68.84 134.45 68.84C134.984 68.84 135.454 68.92 135.86 69.08C136.274 69.2333 136.627 69.4567 136.92 69.75C137.214 70.0367 137.45 70.38 137.63 70.78L137.03 70.64C137.35 70.0667 137.817 69.6233 138.43 69.31C139.05 68.9967 139.75 68.84 140.53 68.84C141.45 68.84 142.2 69.03 142.78 69.41C143.36 69.79 143.787 70.3267 144.06 71.02C144.334 71.7067 144.47 72.5133 144.47 73.44V79H141.99V73.62C141.99 72.6867 141.844 71.9967 141.55 71.55C141.264 71.1033 140.784 70.88 140.11 70.88C139.777 70.88 139.484 70.94 139.23 71.06C138.984 71.1733 138.777 71.3433 138.61 71.57C138.45 71.79 138.33 72.06 138.25 72.38C138.17 72.6933 138.13 73.0467 138.13 73.44V79H135.65V73.62C135.65 73 135.584 72.4867 135.45 72.08C135.324 71.6733 135.117 71.3733 134.83 71.18C134.55 70.98 134.184 70.88 133.73 70.88C133.15 70.88 132.674 71.0167 132.3 71.29C131.934 71.5567 131.61 71.92 131.33 72.38L131.79 71.04V79H129.31ZM146.693 79V69H149.173V79H146.693ZM146.693 67.48V65H149.173V67.48H146.693ZM154.758 79.2C154.131 79.2 153.621 79.0733 153.228 78.82C152.835 78.56 152.545 78.23 152.358 77.83C152.171 77.43 152.078 77.0133 152.078 76.58V71.04H150.658L150.878 69H152.078V66.8L154.558 66.54V69H156.758V71.04H154.558V75.56C154.558 76.0667 154.588 76.4333 154.648 76.66C154.708 76.88 154.845 77.02 155.058 77.08C155.271 77.1333 155.611 77.16 156.078 77.16H156.758L156.538 79.2H154.758ZM163.465 79V71.04H162.045L162.265 69H163.465V66.88C163.465 66 163.725 65.3 164.245 64.78C164.772 64.26 165.525 64 166.505 64C166.825 64 167.118 64.0167 167.385 64.05C167.658 64.0833 167.905 64.1267 168.125 64.18L167.905 66.18C167.805 66.1467 167.695 66.1233 167.575 66.11C167.455 66.09 167.305 66.08 167.125 66.08C166.765 66.08 166.478 66.1767 166.265 66.37C166.052 66.5633 165.945 66.88 165.945 67.32V69H168.145V71.04H165.945V79H163.465ZM174.104 79.2C173.018 79.2 172.091 78.9633 171.324 78.49C170.558 78.0167 169.971 77.3867 169.564 76.6C169.164 75.8133 168.964 74.9533 168.964 74.02C168.964 73.08 169.164 72.2133 169.564 71.42C169.971 70.6267 170.558 69.9933 171.324 69.52C172.091 69.04 173.018 68.8 174.104 68.8C175.191 68.8 176.118 69.04 176.884 69.52C177.651 69.9933 178.234 70.6267 178.634 71.42C179.041 72.2133 179.244 73.08 179.244 74.02C179.244 74.9533 179.041 75.8133 178.634 76.6C178.234 77.3867 177.651 78.0167 176.884 78.49C176.118 78.9633 175.191 79.2 174.104 79.2ZM174.104 77.16C174.938 77.16 175.578 76.87 176.024 76.29C176.478 75.7033 176.704 74.9467 176.704 74.02C176.704 73.08 176.478 72.3167 176.024 71.73C175.578 71.1367 174.938 70.84 174.104 70.84C173.278 70.84 172.638 71.1367 172.184 71.73C171.731 72.3167 171.504 73.08 171.504 74.02C171.504 74.9467 171.731 75.7033 172.184 76.29C172.638 76.87 173.278 77.16 174.104 77.16ZM180.971 79V69H183.291L183.351 70.06C183.604 69.78 183.961 69.5 184.421 69.22C184.881 68.94 185.384 68.8 185.931 68.8C186.091 68.8 186.237 68.8133 186.371 68.84L186.191 71.28C186.044 71.24 185.897 71.2133 185.751 71.2C185.611 71.1867 185.471 71.18 185.331 71.18C184.911 71.18 184.527 71.2767 184.181 71.47C183.834 71.6633 183.591 71.9 183.451 72.18V79H180.971ZM187.572 79V69H189.692L189.852 70.46L189.492 70.02C189.872 69.72 190.325 69.45 190.852 69.21C191.385 68.9633 192.005 68.84 192.712 68.84C193.245 68.84 193.715 68.92 194.122 69.08C194.535 69.2333 194.889 69.4567 195.182 69.75C195.475 70.0367 195.712 70.38 195.892 70.78L195.292 70.64C195.612 70.0667 196.079 69.6233 196.692 69.31C197.312 68.9967 198.012 68.84 198.792 68.84C199.712 68.84 200.462 69.03 201.042 69.41C201.622 69.79 202.049 70.3267 202.322 71.02C202.595 71.7067 202.732 72.5133 202.732 73.44V79H200.252V73.62C200.252 72.6867 200.105 71.9967 199.812 71.55C199.525 71.1033 199.045 70.88 198.372 70.88C198.039 70.88 197.745 70.94 197.492 71.06C197.245 71.1733 197.039 71.3433 196.872 71.57C196.712 71.79 196.592 72.06 196.512 72.38C196.432 72.6933 196.392 73.0467 196.392 73.44V79H193.912V73.62C193.912 73 193.845 72.4867 193.712 72.08C193.585 71.6733 193.379 71.3733 193.092 71.18C192.812 70.98 192.445 70.88 191.992 70.88C191.412 70.88 190.935 71.0167 190.562 71.29C190.195 71.5567 189.872 71.92 189.592 72.38L190.052 71.04V79H187.572Z",fill:"white"})),{GeneralFields:Co,AdvancedFields:to,ActionButtonPlaceholder:lo}=JetFBComponents,{InspectorControls:ro}=wp.blockEditor,{useState:no,useEffect:ao}=wp.element,{withFilters:io}=wp.components,oo=["jet-form-builder__action-button"],so=["jet-form-builder__action-button-wrapper"],co=io("jet.fb.block.action-button.edit")(lo),mo=e=>{var C;const{attributes:t,setAttributes:l}=e,r=()=>{if(!t.action_type)return oo;const e=JetFormActionButton.actions.find(e=>t.action_type===e.value);return e?(t.label||l({label:e.preset_label}),[...oo,e.button_class]):oo},n=()=>{if(!t.action_type)return[...so];const e=JetFormActionButton.actions.find(e=>t.action_type===e.value);return e?[...so,e.wrapper_class]:[...so]},[a,i]=no(r),[o,s]=no(n);return ao(()=>{i(r()),s(n())},[t.action_type]),(0,h.createElement)(co,{attributes:t,setAttributes:l,setActionAttributes:e=>{var C;const r=JSON.parse(JSON.stringify(t.buttons)),n=null!==(C=r[t.action_type])&&void 0!==C?C:{};r[t.action_type]={...n,...e},l({buttons:r})},actionAttributes:null!==(C=t.buttons[t.action_type])&&void 0!==C?C:{},buttonClasses:a,wrapperClasses:o})},uo=JSON.parse('{"apiVersion":3,"name":"jet-forms/submit-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","field","submit","break","next","prev","action","button"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Action Button","icon":"\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"label":{"type":"string","default":"Submit","jfb":{"rich":true}},"action_type":{"type":"string","default":"submit"},"buttons":{"type":"object","default":{}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""}}}'),{__:po}=wp.i18n,fo={name:"submit",isDefault:!0,title:po("Action Button","jet-form-builder"),isActive:["action_type"],description:po("Add the button by clicking which users can submit the form","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M24.8828 29.3223H23.0029C22.9619 29.7415 22.8639 30.0924 22.709 30.375C22.5586 30.6576 22.3376 30.8717 22.0459 31.0176C21.7588 31.1634 21.3851 31.2363 20.9248 31.2363C20.5465 31.2363 20.2207 31.1634 19.9473 31.0176C19.6738 30.8717 19.4505 30.6598 19.2773 30.3818C19.1042 30.1038 18.9766 29.7643 18.8945 29.3633C18.8125 28.9622 18.7715 28.5088 18.7715 28.0029V27.2305C18.7715 26.7018 18.8171 26.237 18.9082 25.8359C18.9993 25.4303 19.1361 25.0931 19.3184 24.8242C19.5007 24.5508 19.7285 24.3457 20.002 24.209C20.2799 24.0723 20.6012 24.0039 20.9658 24.0039C21.4352 24.0039 21.8112 24.0814 22.0938 24.2363C22.3809 24.3867 22.5951 24.6077 22.7363 24.8994C22.8822 25.1911 22.9733 25.5465 23.0098 25.9658H24.8896C24.8258 25.2913 24.639 24.6943 24.3291 24.1748C24.0192 23.6553 23.584 23.2474 23.0234 22.9512C22.4629 22.6504 21.777 22.5 20.9658 22.5C20.3415 22.5 19.7764 22.6117 19.2705 22.835C18.7692 23.0583 18.3385 23.3773 17.9785 23.792C17.623 24.2021 17.3496 24.6989 17.1582 25.2822C16.9668 25.8656 16.8711 26.5195 16.8711 27.2441V28.0029C16.8711 28.7275 16.9645 29.3815 17.1514 29.9648C17.3382 30.5436 17.6071 31.0404 17.958 31.4551C18.3135 31.8652 18.7396 32.182 19.2363 32.4053C19.7376 32.624 20.3005 32.7334 20.9248 32.7334C21.736 32.7334 22.4264 32.5876 22.9961 32.2959C23.5658 32.0042 24.0101 31.6032 24.3291 31.0928C24.6481 30.5778 24.8327 29.9876 24.8828 29.3223Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5371 22.6436L16.2764 32.5967H14.2803L13.5324 30.3818H9.81555L9.07129 32.5967H7.08203L10.8008 22.6436H12.5371ZM10.314 28.8984H13.0316L11.6695 24.8646L10.314 28.8984Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M30.4062 24.127V32.5967H28.5332V24.127H25.4775V22.6436H33.4961V24.127H30.4062Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M36.75 32.5967V22.6436H34.8701V32.5967H36.75Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M46.8398 27.3672V27.8799C46.8398 28.6318 46.7396 29.3086 46.5391 29.9102C46.3385 30.5072 46.0537 31.0153 45.6846 31.4346C45.3154 31.8538 44.8757 32.1751 44.3652 32.3984C43.8548 32.6217 43.2874 32.7334 42.6631 32.7334C42.0479 32.7334 41.4827 32.6217 40.9678 32.3984C40.4574 32.1751 40.0153 31.8538 39.6416 31.4346C39.2679 31.0153 38.9785 30.5072 38.7734 29.9102C38.5684 29.3086 38.4658 28.6318 38.4658 27.8799V27.3672C38.4658 26.6107 38.5684 25.9339 38.7734 25.3369C38.9785 24.7399 39.2656 24.2318 39.6348 23.8125C40.0039 23.3887 40.4437 23.0651 40.9541 22.8418C41.4691 22.6185 42.0342 22.5068 42.6494 22.5068C43.2738 22.5068 43.8411 22.6185 44.3516 22.8418C44.862 23.0651 45.3018 23.3887 45.6709 23.8125C46.0446 24.2318 46.3317 24.7399 46.5322 25.3369C46.7373 25.9339 46.8398 26.6107 46.8398 27.3672ZM44.9395 27.8799V27.3535C44.9395 26.8112 44.8893 26.335 44.7891 25.9248C44.6888 25.5101 44.5407 25.1615 44.3447 24.8789C44.1488 24.5964 43.9072 24.3844 43.6201 24.2432C43.333 24.0973 43.0094 24.0244 42.6494 24.0244C42.2848 24.0244 41.9613 24.0973 41.6787 24.2432C41.4007 24.3844 41.1637 24.5964 40.9678 24.8789C40.7718 25.1615 40.6214 25.5101 40.5166 25.9248C40.4163 26.335 40.3662 26.8112 40.3662 27.3535V27.8799C40.3662 28.4176 40.4163 28.8939 40.5166 29.3086C40.6214 29.7233 40.7718 30.0742 40.9678 30.3613C41.1683 30.6439 41.4098 30.8581 41.6924 31.0039C41.9749 31.1497 42.2985 31.2227 42.6631 31.2227C43.0277 31.2227 43.3512 31.1497 43.6338 31.0039C43.9163 30.8581 44.1533 30.6439 44.3447 30.3613C44.5407 30.0742 44.6888 29.7233 44.7891 29.3086C44.8893 28.8939 44.9395 28.4176 44.9395 27.8799Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M56.4307 32.5967V22.6436H54.5576V29.5547L50.3125 22.6436H48.4326V32.5967H50.3125V25.6924L54.5439 32.5967H56.4307Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M56.8581 44H60C62.2091 44 64 42.2091 64 40V15C64 12.7909 62.2091 11 60 11H4C1.79086 11 0 12.7909 0 15V40C0 42.2091 1.79086 44 4 44H40.778L42.9403 53.0096C43.0578 53.5382 43.3396 53.9897 43.7233 54.3254C44.0972 54.6525 44.5724 54.8763 45.1109 54.9302C45.6268 54.9818 46.1288 54.8712 46.5658 54.6285C47.0573 54.3554 47.415 53.9381 47.6217 53.4573L48.5248 51.4717L51.0479 54.0031L51.0743 54.0278C51.3798 54.3129 51.7296 54.5489 52.1209 54.7228L52.1642 54.742L52.2083 54.7592C52.6273 54.9221 53.0636 55 53.5023 55C53.941 55 54.3773 54.9221 54.7963 54.7592L54.8404 54.742L54.8837 54.7228C55.275 54.5489 55.6249 54.3129 55.9303 54.0278L55.9679 53.9927L56.0036 53.9557C56.6466 53.2906 57 52.4405 57 51.5023C57 50.5641 56.6466 49.714 56.0036 49.0489L55.9907 49.0355L53.4717 46.5248L55.4573 45.6217C55.9381 45.415 56.3554 45.0573 56.6285 44.5658C56.7279 44.3869 56.8051 44.1972 56.8581 44ZM60 13H4C2.89543 13 2 13.8954 2 15V40C2 41.1046 2.89543 42 4 42H40.298L40.0716 41.0566C39.9751 40.6621 39.9762 40.2536 40.0747 39.8594L40.1023 39.7489L40.1423 39.6422C40.2437 39.3718 40.3918 39.1023 40.5984 38.8544L40.6564 38.7847L40.7206 38.7206C41.029 38.4122 41.4173 38.1852 41.8594 38.0747C42.2536 37.9762 42.6621 37.9751 43.0566 38.0716L55.0096 40.9403C55.5382 41.0578 55.9897 41.3396 56.3254 41.7233C56.4015 41.8102 56.4719 41.9026 56.536 42H60C61.1046 42 62 41.1046 62 40V15C62 13.8954 61.1046 13 60 13ZM50.0127 45.9009L54.6555 43.7892C54.7554 43.7492 54.8303 43.6843 54.8802 43.5945C54.9301 43.5046 54.9501 43.4098 54.9401 43.3099C54.9301 43.2101 54.8902 43.1202 54.8203 43.0403C54.7504 42.9604 54.6655 42.9105 54.5657 42.8906L42.5841 40.015C42.5042 39.995 42.4243 39.995 42.3445 40.015C42.2646 40.0349 42.1947 40.0749 42.1348 40.1348C42.0849 40.1947 42.0449 40.2646 42.015 40.3445C41.995 40.4243 41.995 40.5042 42.015 40.5841L44.8906 52.5657C44.9105 52.6655 44.9604 52.7504 45.0403 52.8203C45.1202 52.8902 45.2101 52.9301 45.3099 52.9401C45.4098 52.9501 45.5046 52.9301 45.5945 52.8802C45.6843 52.8303 45.7492 52.7554 45.7892 52.6555L47.9009 48.0127L52.4389 52.5657C52.5887 52.7055 52.7535 52.8153 52.9332 52.8952C53.1129 52.9651 53.3026 53 53.5023 53C53.702 53 53.8917 52.9651 54.0714 52.8952C54.2512 52.8153 54.4159 52.7055 54.5657 52.5657C54.8552 52.2661 55 51.9117 55 51.5023C55 51.0929 54.8552 50.7385 54.5657 50.4389L50.0127 45.9009Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"submit"}},{registerBlockVariation:Vo}=wp.blocks;Vo("jet-forms/submit-field",fo);const{__:Ho}=wp.i18n,ho={name:"update",title:Ho("Update Field","jet-form-builder"),isActive:["action_type"],description:Ho("Update dependent fields without submitting the form","jet-form-builder"),icon:"update-alt",scope:["block","inserter","transform"],attributes:{action_type:"update"}};var bo;const{registerBlockVariation:Mo,getBlockVariations:Lo}=wp.blocks;(null!==(bo=Lo?.("jet-forms/submit-field"))&&void 0!==bo?bo:[]).some(e=>"update"===e?.name||"update"===e?.attributes?.action_type)||Mo("jet-forms/submit-field",ho);const{__:go}=wp.i18n,Zo={name:"next",title:go("Next Page","jet-form-builder"),isActive:["action_type"],description:go("Go to Next Page button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M48.615 39.6867C48.1972 40.1045 47.5236 40.1045 47.1058 39.6867C46.688 39.2774 46.688 38.5953 47.0973 38.186L53.279 32.0043L47.1058 25.8225C46.688 25.4047 46.688 24.7311 47.1058 24.3133C47.5236 23.8955 48.1972 23.8955 48.615 24.3133L55.7005 31.3989C56.0331 31.7314 56.0331 32.2686 55.7005 32.6011L48.615 39.6867Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M39 54C41.2091 54 43 52.2091 43 50H58C60.2091 50 62 48.2091 62 46V18C62 15.7909 60.2091 14 58 14H43C43 11.7909 41.2091 10 39 10H6C3.79086 10 2 11.7909 2 14V50C2 52.2091 3.79086 54 6 54H39ZM39 12H6C4.89543 12 4 12.8954 4 14V50C4 51.1046 4.89543 52 6 52H39C40.1046 52 41 51.1046 41 50V14C41 12.8954 40.1046 12 39 12ZM43 48V16H58C59.1046 16 60 16.8954 60 18V46C60 47.1046 59.1046 48 58 48H43Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"next"}},{registerBlockVariation:yo}=wp.blocks;yo("jet-forms/submit-field",Zo);const{__:Eo}=wp.i18n,wo={name:"prev",title:Eo("Prev Page","jet-form-builder"),isActive:["action_type"],description:Eo("Go to Prev Page button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M15.385 39.6867C15.8028 40.1045 16.4764 40.1045 16.8942 39.6867C17.312 39.2774 17.312 38.5953 16.9027 38.186L10.721 32.0043L16.8942 25.8225C17.312 25.4047 17.312 24.7311 16.8942 24.3133C16.4764 23.8955 15.8028 23.8955 15.385 24.3133L8.29947 31.3989C7.96694 31.7314 7.96694 32.2686 8.29947 32.6011L15.385 39.6867Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M25 54C22.7909 54 21 52.2091 21 50H6C3.79086 50 2 48.2091 2 46V18C2 15.7909 3.79086 14 6 14H21C21 11.7909 22.7909 10 25 10H58C60.2091 10 62 11.7909 62 14V50C62 52.2091 60.2091 54 58 54H25ZM25 12H58C59.1046 12 60 12.8954 60 14V50C60 51.1046 59.1046 52 58 52H25C23.8954 52 23 51.1046 23 50V14C23 12.8954 23.8954 12 25 12ZM21 48V16H6C4.89543 16 4 16.8954 4 18V46C4 47.1046 4.89543 48 6 48H21Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"prev"}},{registerBlockVariation:vo}=wp.blocks;vo("jet-forms/submit-field",wo);const{__:_o}=wp.i18n,ko={name:"switch-state",title:_o("Change Render State","jet-form-builder"),isActive:(e,C)=>e.action_type===C.action_type,description:_o("Change Render State button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M28 39V46C28 48.2091 26.2091 50 24 50H4C1.79086 50 0 48.2091 0 46V18C0 15.7909 1.79086 14 4 14H24C26.2091 14 28 15.7909 28 18V25H36V18C36 15.7909 37.7909 14 40 14H60C62.2091 14 64 15.7909 64 18V46C64 48.2091 62.2091 50 60 50H40C37.7909 50 36 48.2091 36 46V39H28ZM4 16H24C25.1046 16 26 16.8954 26 18V37H15.4142L20.0711 32.3431C20.4616 31.9526 20.4616 31.3195 20.0711 30.9289C19.6805 30.5384 19.0474 30.5384 18.6569 30.9289L12.2929 37.2929C11.9024 37.6834 11.9024 38.3166 12.2929 38.7071L18.6569 45.0711C19.0474 45.4616 19.6805 45.4616 20.0711 45.0711C20.4616 44.6805 20.4616 44.0474 20.0711 43.6569L15.4142 39H26V46C26 47.1046 25.1046 48 24 48H4C2.89543 48 2 47.1046 2 46V18C2 16.8954 2.89543 16 4 16ZM28 37H36V27H28V37ZM38 46C38 47.1046 38.8954 48 40 48H60C61.1046 48 62 47.1046 62 46V18C62 16.8954 61.1046 16 60 16H40C38.8954 16 38 16.8954 38 18V25H48.5858L43.9289 20.3431C43.5384 19.9526 43.5384 19.3195 43.9289 18.9289C44.3195 18.5384 44.9526 18.5384 45.3431 18.9289L51.7071 25.2929C52.0976 25.6834 52.0976 26.3166 51.7071 26.7071L45.3431 33.0711C44.9526 33.4616 44.3195 33.4616 43.9289 33.0711C43.5384 32.6805 43.5384 32.0474 43.9289 31.6569L48.5858 27H38V46Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"switch-state"}},{__:jo}=wp.i18n,{useSelect:xo}=wp.data,{FormTokenField:Fo,PanelBody:Bo}=wp.components,{InspectorControls:Ao}=wp.blockEditor,{useUniqKey:Po}=JetFBHooks,{ActionButtonPlaceholder:So}=JetFBComponents,{column:No}=JetFBActions,Io=function(e){const{actionAttributes:C,setActionAttributes:t}=e,l=Po(),r=xo(e=>No(e("jet-forms/block-conditions").getSwitchableRenderStates(),"value"),[]);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(So,{...e}),(0,h.createElement)(Ao,null,(0,h.createElement)(Bo,{title:jo("Change Render State","jet-form-builder")},(0,h.createElement)(Fo,{key:l("switch_on"),label:jo("Switch state","jet-form-builder"),value:C.switch_on,suggestions:r,onChange:e=>t({switch_on:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0}))))},{registerBlockVariation:To}=wp.blocks,{addFilter:Oo}=wp.hooks;To("jet-forms/submit-field",ko),Oo("jet.fb.block.action-button.edit","jet-form-builder/switch-state-variation",e=>C=>"switch-state"!==C.attributes?.action_type?(0,h.createElement)(e,{...C}):(0,h.createElement)(Io,{...C}));const{createBlock:Jo}=wp.blocks,{name:Ro,icon:qo=""}=uo;uo.attributes.isPreview={type:"boolean",default:!1};const Do={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:qo}}),edit:function(e){const{attributes:C,setAttributes:t}=e;return C.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},eo):(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ro,null,(0,h.createElement)(Co,{...e}),(0,h.createElement)(to,{...e})),(0,h.createElement)(mo,{attributes:C,setAttributes:t}))},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Jo("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Jo(Ro,{...e}),priority:0},{type:"block",blocks:["core/buttons"],transform:(e,C)=>Jo(Ro,{label:C[0]?.attributes?.text||""}),priority:0}]}},zo=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M19.8398 23.9287L16.5449 33H15.1982L18.9922 23.0469H19.8604L19.8398 23.9287ZM22.6016 33L19.2998 23.9287L19.2793 23.0469H20.1475L23.9551 33H22.6016ZM22.4307 29.3154V30.3955H16.8389V29.3154H22.4307ZM29.7588 31.5645V22.5H31.0303V33H29.8682L29.7588 31.5645ZM24.7822 29.3838V29.2402C24.7822 28.6751 24.8506 28.1624 24.9873 27.7021C25.1286 27.2373 25.3268 26.8385 25.582 26.5059C25.8418 26.1732 26.1494 25.918 26.5049 25.7402C26.8649 25.5579 27.266 25.4668 27.708 25.4668C28.1729 25.4668 28.5785 25.5488 28.9248 25.7129C29.2757 25.8724 29.5719 26.1071 29.8135 26.417C30.0596 26.7223 30.2533 27.0915 30.3945 27.5244C30.5358 27.9574 30.6338 28.4473 30.6885 28.9941V29.623C30.6383 30.1654 30.5404 30.653 30.3945 31.0859C30.2533 31.5189 30.0596 31.888 29.8135 32.1934C29.5719 32.4987 29.2757 32.7334 28.9248 32.8975C28.5739 33.057 28.1637 33.1367 27.6943 33.1367C27.2614 33.1367 26.8649 33.0433 26.5049 32.8564C26.1494 32.6696 25.8418 32.4076 25.582 32.0703C25.3268 31.7331 25.1286 31.3366 24.9873 30.8809C24.8506 30.4206 24.7822 29.9215 24.7822 29.3838ZM26.0537 29.2402V29.3838C26.0537 29.7529 26.0902 30.0993 26.1631 30.4229C26.2406 30.7464 26.359 31.0312 26.5186 31.2773C26.6781 31.5234 26.8809 31.7171 27.127 31.8584C27.373 31.9951 27.667 32.0635 28.0088 32.0635C28.4281 32.0635 28.7721 31.9746 29.041 31.7969C29.3145 31.6191 29.5332 31.3844 29.6973 31.0928C29.8613 30.8011 29.9889 30.4844 30.0801 30.1426V28.4951C30.0254 28.2445 29.9456 28.0029 29.8408 27.7705C29.7406 27.5335 29.6084 27.3239 29.4443 27.1416C29.2848 26.9548 29.0866 26.8066 28.8496 26.6973C28.6172 26.5879 28.3415 26.5332 28.0225 26.5332C27.6761 26.5332 27.3776 26.6061 27.127 26.752C26.8809 26.8932 26.6781 27.0892 26.5186 27.3398C26.359 27.5859 26.2406 27.873 26.1631 28.2012C26.0902 28.5247 26.0537 28.8711 26.0537 29.2402ZM37.6611 31.5645V22.5H38.9326V33H37.7705L37.6611 31.5645ZM32.6846 29.3838V29.2402C32.6846 28.6751 32.7529 28.1624 32.8896 27.7021C33.0309 27.2373 33.2292 26.8385 33.4844 26.5059C33.7441 26.1732 34.0518 25.918 34.4072 25.7402C34.7673 25.5579 35.1683 25.4668 35.6104 25.4668C36.0752 25.4668 36.4808 25.5488 36.8271 25.7129C37.1781 25.8724 37.4743 26.1071 37.7158 26.417C37.9619 26.7223 38.1556 27.0915 38.2969 27.5244C38.4382 27.9574 38.5361 28.4473 38.5908 28.9941V29.623C38.5407 30.1654 38.4427 30.653 38.2969 31.0859C38.1556 31.5189 37.9619 31.888 37.7158 32.1934C37.4743 32.4987 37.1781 32.7334 36.8271 32.8975C36.4762 33.057 36.0661 33.1367 35.5967 33.1367C35.1637 33.1367 34.7673 33.0433 34.4072 32.8564C34.0518 32.6696 33.7441 32.4076 33.4844 32.0703C33.2292 31.7331 33.0309 31.3366 32.8896 30.8809C32.7529 30.4206 32.6846 29.9215 32.6846 29.3838ZM33.9561 29.2402V29.3838C33.9561 29.7529 33.9925 30.0993 34.0654 30.4229C34.1429 30.7464 34.2614 31.0312 34.4209 31.2773C34.5804 31.5234 34.7832 31.7171 35.0293 31.8584C35.2754 31.9951 35.5693 32.0635 35.9111 32.0635C36.3304 32.0635 36.6745 31.9746 36.9434 31.7969C37.2168 31.6191 37.4355 31.3844 37.5996 31.0928C37.7637 30.8011 37.8913 30.4844 37.9824 30.1426V28.4951C37.9277 28.2445 37.848 28.0029 37.7432 27.7705C37.6429 27.5335 37.5107 27.3239 37.3467 27.1416C37.1872 26.9548 36.9889 26.8066 36.752 26.6973C36.5195 26.5879 36.2438 26.5332 35.9248 26.5332C35.5785 26.5332 35.2799 26.6061 35.0293 26.752C34.7832 26.8932 34.5804 27.0892 34.4209 27.3398C34.2614 27.5859 34.1429 27.873 34.0654 28.2012C33.9925 28.5247 33.9561 28.8711 33.9561 29.2402ZM42.2754 25.6035V33H41.0039V25.6035H42.2754ZM40.9082 23.6416C40.9082 23.4365 40.9697 23.2633 41.0928 23.1221C41.2204 22.9808 41.4072 22.9102 41.6533 22.9102C41.8949 22.9102 42.0794 22.9808 42.207 23.1221C42.3392 23.2633 42.4053 23.4365 42.4053 23.6416C42.4053 23.8376 42.3392 24.0062 42.207 24.1475C42.0794 24.2842 41.8949 24.3525 41.6533 24.3525C41.4072 24.3525 41.2204 24.2842 41.0928 24.1475C40.9697 24.0062 40.9082 23.8376 40.9082 23.6416ZM47.4023 25.6035V26.5742H43.4033V25.6035H47.4023ZM44.7568 23.8057H46.0215V31.168C46.0215 31.4186 46.0602 31.6077 46.1377 31.7354C46.2152 31.863 46.3154 31.9473 46.4385 31.9883C46.5615 32.0293 46.6937 32.0498 46.835 32.0498C46.9398 32.0498 47.0492 32.0407 47.1631 32.0225C47.2816 31.9997 47.3704 31.9814 47.4297 31.9678L47.4365 33C47.3363 33.0319 47.2041 33.0615 47.04 33.0889C46.8805 33.1208 46.6868 33.1367 46.459 33.1367C46.1491 33.1367 45.8643 33.0752 45.6045 32.9521C45.3447 32.8291 45.1374 32.624 44.9824 32.3369C44.832 32.0452 44.7568 31.6533 44.7568 31.1611V23.8057ZM50.2598 25.6035V33H48.9883V25.6035H50.2598ZM48.8926 23.6416C48.8926 23.4365 48.9541 23.2633 49.0771 23.1221C49.2048 22.9808 49.3916 22.9102 49.6377 22.9102C49.8792 22.9102 50.0638 22.9808 50.1914 23.1221C50.3236 23.2633 50.3896 23.4365 50.3896 23.6416C50.3896 23.8376 50.3236 24.0062 50.1914 24.1475C50.0638 24.2842 49.8792 24.3525 49.6377 24.3525C49.3916 24.3525 49.2048 24.2842 49.0771 24.1475C48.9541 24.0062 48.8926 23.8376 48.8926 23.6416ZM51.9551 29.3838V29.2266C51.9551 28.6934 52.0326 28.1989 52.1875 27.7432C52.3424 27.2829 52.5658 26.8841 52.8574 26.5469C53.1491 26.2051 53.5023 25.9408 53.917 25.7539C54.3317 25.5625 54.7965 25.4668 55.3115 25.4668C55.8311 25.4668 56.2982 25.5625 56.7129 25.7539C57.1322 25.9408 57.4876 26.2051 57.7793 26.5469C58.0755 26.8841 58.3011 27.2829 58.4561 27.7432C58.611 28.1989 58.6885 28.6934 58.6885 29.2266V29.3838C58.6885 29.917 58.611 30.4115 58.4561 30.8672C58.3011 31.3229 58.0755 31.7217 57.7793 32.0635C57.4876 32.4007 57.1344 32.665 56.7197 32.8564C56.3096 33.0433 55.8447 33.1367 55.3252 33.1367C54.8057 33.1367 54.3385 33.0433 53.9238 32.8564C53.5091 32.665 53.1536 32.4007 52.8574 32.0635C52.5658 31.7217 52.3424 31.3229 52.1875 30.8672C52.0326 30.4115 51.9551 29.917 51.9551 29.3838ZM53.2197 29.2266V29.3838C53.2197 29.7529 53.263 30.1016 53.3496 30.4297C53.4362 30.7533 53.5661 31.0404 53.7393 31.291C53.917 31.5417 54.138 31.7399 54.4023 31.8857C54.6667 32.027 54.9743 32.0977 55.3252 32.0977C55.6715 32.0977 55.9746 32.027 56.2344 31.8857C56.4987 31.7399 56.7174 31.5417 56.8906 31.291C57.0638 31.0404 57.1937 30.7533 57.2803 30.4297C57.3714 30.1016 57.417 29.7529 57.417 29.3838V29.2266C57.417 28.862 57.3714 28.5179 57.2803 28.1943C57.1937 27.8662 57.0615 27.5768 56.8838 27.3262C56.7106 27.071 56.4919 26.8704 56.2275 26.7246C55.9678 26.5788 55.6624 26.5059 55.3115 26.5059C54.9652 26.5059 54.6598 26.5788 54.3955 26.7246C54.1357 26.8704 53.917 27.071 53.7393 27.3262C53.5661 27.5768 53.4362 27.8662 53.3496 28.1943C53.263 28.5179 53.2197 28.862 53.2197 29.2266ZM61.5391 27.1826V33H60.2744V25.6035H61.4707L61.5391 27.1826ZM61.2383 29.0215L60.7119 29.001C60.7165 28.4951 60.7917 28.028 60.9375 27.5996C61.0833 27.1667 61.2884 26.7907 61.5527 26.4717C61.8171 26.1527 62.1315 25.9066 62.4961 25.7334C62.8652 25.5557 63.2731 25.4668 63.7197 25.4668C64.0843 25.4668 64.4124 25.5169 64.7041 25.6172C64.9958 25.7129 65.2441 25.8678 65.4492 26.082C65.6589 26.2962 65.8184 26.5742 65.9277 26.916C66.0371 27.2533 66.0918 27.6657 66.0918 28.1533V33H64.8203V28.1396C64.8203 27.7523 64.7633 27.4424 64.6494 27.21C64.5355 26.973 64.3691 26.8021 64.1504 26.6973C63.9316 26.5879 63.6628 26.5332 63.3438 26.5332C63.0293 26.5332 62.7422 26.5993 62.4824 26.7314C62.2272 26.8636 62.0062 27.0459 61.8193 27.2783C61.637 27.5107 61.4935 27.7773 61.3887 28.0781C61.2884 28.3743 61.2383 28.6888 61.2383 29.0215ZM72.374 31.7354V27.9277C72.374 27.6361 72.3148 27.3831 72.1963 27.1689C72.0824 26.9502 71.9092 26.7816 71.6768 26.6631C71.4443 26.5446 71.1572 26.4854 70.8154 26.4854C70.4964 26.4854 70.2161 26.54 69.9746 26.6494C69.7376 26.7588 69.5508 26.9023 69.4141 27.0801C69.2819 27.2578 69.2158 27.4492 69.2158 27.6543H67.9512C67.9512 27.39 68.0195 27.1279 68.1562 26.8682C68.293 26.6084 68.4889 26.3737 68.7441 26.1641C69.0039 25.9499 69.3138 25.7812 69.6738 25.6582C70.0384 25.5306 70.444 25.4668 70.8906 25.4668C71.4284 25.4668 71.9023 25.5579 72.3125 25.7402C72.7272 25.9225 73.0508 26.1982 73.2832 26.5674C73.5202 26.932 73.6387 27.39 73.6387 27.9414V31.3867C73.6387 31.6328 73.6592 31.8949 73.7002 32.1729C73.7458 32.4508 73.8118 32.6901 73.8984 32.8906V33H72.5791C72.5153 32.8542 72.4652 32.6605 72.4287 32.4189C72.3923 32.1729 72.374 31.945 72.374 31.7354ZM72.5928 28.5156L72.6064 29.4043H71.3281C70.9681 29.4043 70.6468 29.4339 70.3643 29.4932C70.0817 29.5479 69.8447 29.6322 69.6533 29.7461C69.4619 29.86 69.3161 30.0036 69.2158 30.1768C69.1156 30.3454 69.0654 30.5436 69.0654 30.7715C69.0654 31.0039 69.1178 31.2158 69.2227 31.4072C69.3275 31.5986 69.4847 31.7513 69.6943 31.8652C69.9085 31.9746 70.1706 32.0293 70.4805 32.0293C70.8678 32.0293 71.2096 31.9473 71.5059 31.7832C71.8021 31.6191 72.0368 31.4186 72.21 31.1816C72.3877 30.9447 72.4834 30.7145 72.4971 30.4912L73.0371 31.0996C73.0052 31.291 72.9186 31.5029 72.7773 31.7354C72.6361 31.9678 72.4469 32.1911 72.21 32.4053C71.9775 32.6149 71.6995 32.7904 71.376 32.9316C71.057 33.0684 70.6969 33.1367 70.2959 33.1367C69.7946 33.1367 69.3548 33.0387 68.9766 32.8428C68.6029 32.6468 68.3112 32.3848 68.1016 32.0566C67.8965 31.724 67.7939 31.3525 67.7939 30.9424C67.7939 30.5459 67.8714 30.1973 68.0264 29.8965C68.1813 29.5911 68.4046 29.3382 68.6963 29.1377C68.988 28.9326 69.3389 28.7777 69.749 28.6729C70.1592 28.568 70.6172 28.5156 71.123 28.5156H72.5928ZM77.002 22.5V33H75.7305V22.5H77.002ZM83.8789 25.6035V33H82.6074V25.6035H83.8789ZM82.5117 23.6416C82.5117 23.4365 82.5732 23.2633 82.6963 23.1221C82.8239 22.9808 83.0107 22.9102 83.2568 22.9102C83.4984 22.9102 83.6829 22.9808 83.8105 23.1221C83.9427 23.2633 84.0088 23.4365 84.0088 23.6416C84.0088 23.8376 83.9427 24.0062 83.8105 24.1475C83.6829 24.2842 83.4984 24.3525 83.2568 24.3525C83.0107 24.3525 82.8239 24.2842 82.6963 24.1475C82.5732 24.0062 82.5117 23.8376 82.5117 23.6416ZM87.1738 27.1826V33H85.9092V25.6035H87.1055L87.1738 27.1826ZM86.873 29.0215L86.3467 29.001C86.3512 28.4951 86.4264 28.028 86.5723 27.5996C86.7181 27.1667 86.9232 26.7907 87.1875 26.4717C87.4518 26.1527 87.7663 25.9066 88.1309 25.7334C88.5 25.5557 88.9079 25.4668 89.3545 25.4668C89.7191 25.4668 90.0472 25.5169 90.3389 25.6172C90.6305 25.7129 90.8789 25.8678 91.084 26.082C91.2936 26.2962 91.4531 26.5742 91.5625 26.916C91.6719 27.2533 91.7266 27.6657 91.7266 28.1533V33H90.4551V28.1396C90.4551 27.7523 90.3981 27.4424 90.2842 27.21C90.1702 26.973 90.0039 26.8021 89.7852 26.6973C89.5664 26.5879 89.2975 26.5332 88.9785 26.5332C88.6641 26.5332 88.377 26.5993 88.1172 26.7314C87.862 26.8636 87.641 27.0459 87.4541 27.2783C87.2718 27.5107 87.1283 27.7773 87.0234 28.0781C86.9232 28.3743 86.873 28.6888 86.873 29.0215ZM95.5342 33H94.2695V24.8242C94.2695 24.291 94.3652 23.8421 94.5566 23.4775C94.7526 23.1084 95.0329 22.8304 95.3975 22.6436C95.762 22.4521 96.195 22.3564 96.6963 22.3564C96.8421 22.3564 96.988 22.3656 97.1338 22.3838C97.2842 22.402 97.43 22.4294 97.5713 22.4658L97.5029 23.498C97.4072 23.4753 97.2979 23.4593 97.1748 23.4502C97.0563 23.4411 96.9378 23.4365 96.8193 23.4365C96.5505 23.4365 96.318 23.4912 96.1221 23.6006C95.9307 23.7054 95.7848 23.8604 95.6846 24.0654C95.5843 24.2705 95.5342 24.5234 95.5342 24.8242V33ZM97.1064 25.6035V26.5742H93.1006V25.6035H97.1064ZM98.1797 29.3838V29.2266C98.1797 28.6934 98.2572 28.1989 98.4121 27.7432C98.5671 27.2829 98.7904 26.8841 99.082 26.5469C99.3737 26.2051 99.7269 25.9408 100.142 25.7539C100.556 25.5625 101.021 25.4668 101.536 25.4668C102.056 25.4668 102.523 25.5625 102.938 25.7539C103.357 25.9408 103.712 26.2051 104.004 26.5469C104.3 26.8841 104.526 27.2829 104.681 27.7432C104.836 28.1989 104.913 28.6934 104.913 29.2266V29.3838C104.913 29.917 104.836 30.4115 104.681 30.8672C104.526 31.3229 104.3 31.7217 104.004 32.0635C103.712 32.4007 103.359 32.665 102.944 32.8564C102.534 33.0433 102.069 33.1367 101.55 33.1367C101.03 33.1367 100.563 33.0433 100.148 32.8564C99.7337 32.665 99.3783 32.4007 99.082 32.0635C98.7904 31.7217 98.5671 31.3229 98.4121 30.8672C98.2572 30.4115 98.1797 29.917 98.1797 29.3838ZM99.4443 29.2266V29.3838C99.4443 29.7529 99.4876 30.1016 99.5742 30.4297C99.6608 30.7533 99.7907 31.0404 99.9639 31.291C100.142 31.5417 100.363 31.7399 100.627 31.8857C100.891 32.027 101.199 32.0977 101.55 32.0977C101.896 32.0977 102.199 32.027 102.459 31.8857C102.723 31.7399 102.942 31.5417 103.115 31.291C103.288 31.0404 103.418 30.7533 103.505 30.4297C103.596 30.1016 103.642 29.7529 103.642 29.3838V29.2266C103.642 28.862 103.596 28.5179 103.505 28.1943C103.418 27.8662 103.286 27.5768 103.108 27.3262C102.935 27.071 102.716 26.8704 102.452 26.7246C102.192 26.5788 101.887 26.5059 101.536 26.5059C101.19 26.5059 100.884 26.5788 100.62 26.7246C100.36 26.8704 100.142 27.071 99.9639 27.3262C99.7907 27.5768 99.6608 27.8662 99.5742 28.1943C99.4876 28.5179 99.4443 28.862 99.4443 29.2266ZM107.764 26.7656V33H106.499V25.6035H107.729L107.764 26.7656ZM110.074 25.5625L110.067 26.7383C109.963 26.7155 109.862 26.7018 109.767 26.6973C109.675 26.6882 109.571 26.6836 109.452 26.6836C109.16 26.6836 108.903 26.7292 108.68 26.8203C108.456 26.9115 108.267 27.0391 108.112 27.2031C107.957 27.3672 107.834 27.5632 107.743 27.791C107.657 28.0143 107.6 28.2604 107.572 28.5293L107.217 28.7344C107.217 28.2878 107.26 27.8685 107.347 27.4766C107.438 27.0846 107.577 26.7383 107.764 26.4375C107.951 26.1322 108.188 25.8952 108.475 25.7266C108.766 25.5534 109.113 25.4668 109.514 25.4668C109.605 25.4668 109.71 25.4782 109.828 25.501C109.947 25.5192 110.029 25.5397 110.074 25.5625ZM112.501 27.0732V33H111.229V25.6035H112.433L112.501 27.0732ZM112.241 29.0215L111.653 29.001C111.658 28.4951 111.724 28.028 111.852 27.5996C111.979 27.1667 112.168 26.7907 112.419 26.4717C112.67 26.1527 112.982 25.9066 113.355 25.7334C113.729 25.5557 114.162 25.4668 114.654 25.4668C115.001 25.4668 115.32 25.5169 115.611 25.6172C115.903 25.7129 116.156 25.8656 116.37 26.0752C116.584 26.2848 116.751 26.5537 116.869 26.8818C116.988 27.21 117.047 27.6064 117.047 28.0713V33H115.782V28.1328C115.782 27.7454 115.716 27.4355 115.584 27.2031C115.456 26.9707 115.274 26.8021 115.037 26.6973C114.8 26.5879 114.522 26.5332 114.203 26.5332C113.829 26.5332 113.517 26.5993 113.267 26.7314C113.016 26.8636 112.815 27.0459 112.665 27.2783C112.515 27.5107 112.405 27.7773 112.337 28.0781C112.273 28.3743 112.241 28.6888 112.241 29.0215ZM117.033 28.3242L116.186 28.584C116.19 28.1784 116.256 27.7887 116.384 27.415C116.516 27.0413 116.705 26.7087 116.951 26.417C117.202 26.1253 117.509 25.8952 117.874 25.7266C118.239 25.5534 118.656 25.4668 119.125 25.4668C119.521 25.4668 119.872 25.5192 120.178 25.624C120.488 25.7288 120.747 25.8906 120.957 26.1094C121.171 26.3236 121.333 26.5993 121.442 26.9365C121.552 27.2738 121.606 27.6748 121.606 28.1396V33H120.335V28.126C120.335 27.7113 120.269 27.39 120.137 27.1621C120.009 26.9297 119.827 26.7679 119.59 26.6768C119.357 26.5811 119.079 26.5332 118.756 26.5332C118.478 26.5332 118.232 26.5811 118.018 26.6768C117.803 26.7725 117.623 26.9046 117.478 27.0732C117.332 27.2373 117.22 27.4264 117.143 27.6406C117.07 27.8548 117.033 28.0827 117.033 28.3242ZM127.882 31.7354V27.9277C127.882 27.6361 127.823 27.3831 127.704 27.1689C127.59 26.9502 127.417 26.7816 127.185 26.6631C126.952 26.5446 126.665 26.4854 126.323 26.4854C126.004 26.4854 125.724 26.54 125.482 26.6494C125.245 26.7588 125.059 26.9023 124.922 27.0801C124.79 27.2578 124.724 27.4492 124.724 27.6543H123.459C123.459 27.39 123.527 27.1279 123.664 26.8682C123.801 26.6084 123.997 26.3737 124.252 26.1641C124.512 25.9499 124.822 25.7812 125.182 25.6582C125.546 25.5306 125.952 25.4668 126.398 25.4668C126.936 25.4668 127.41 25.5579 127.82 25.7402C128.235 25.9225 128.559 26.1982 128.791 26.5674C129.028 26.932 129.146 27.39 129.146 27.9414V31.3867C129.146 31.6328 129.167 31.8949 129.208 32.1729C129.254 32.4508 129.32 32.6901 129.406 32.8906V33H128.087C128.023 32.8542 127.973 32.6605 127.937 32.4189C127.9 32.1729 127.882 31.945 127.882 31.7354ZM128.101 28.5156L128.114 29.4043H126.836C126.476 29.4043 126.155 29.4339 125.872 29.4932C125.59 29.5479 125.353 29.6322 125.161 29.7461C124.97 29.86 124.824 30.0036 124.724 30.1768C124.623 30.3454 124.573 30.5436 124.573 30.7715C124.573 31.0039 124.626 31.2158 124.73 31.4072C124.835 31.5986 124.993 31.7513 125.202 31.8652C125.416 31.9746 125.678 32.0293 125.988 32.0293C126.376 32.0293 126.717 31.9473 127.014 31.7832C127.31 31.6191 127.545 31.4186 127.718 31.1816C127.896 30.9447 127.991 30.7145 128.005 30.4912L128.545 31.0996C128.513 31.291 128.426 31.5029 128.285 31.7354C128.144 31.9678 127.955 32.1911 127.718 32.4053C127.485 32.6149 127.207 32.7904 126.884 32.9316C126.565 33.0684 126.205 33.1367 125.804 33.1367C125.302 33.1367 124.863 33.0387 124.484 32.8428C124.111 32.6468 123.819 32.3848 123.609 32.0566C123.404 31.724 123.302 31.3525 123.302 30.9424C123.302 30.5459 123.379 30.1973 123.534 29.8965C123.689 29.5911 123.912 29.3382 124.204 29.1377C124.496 28.9326 124.847 28.7777 125.257 28.6729C125.667 28.568 126.125 28.5156 126.631 28.5156H128.101ZM134.232 25.6035V26.5742H130.233V25.6035H134.232ZM131.587 23.8057H132.852V31.168C132.852 31.4186 132.89 31.6077 132.968 31.7354C133.045 31.863 133.146 31.9473 133.269 31.9883C133.392 32.0293 133.524 32.0498 133.665 32.0498C133.77 32.0498 133.879 32.0407 133.993 32.0225C134.112 31.9997 134.201 31.9814 134.26 31.9678L134.267 33C134.166 33.0319 134.034 33.0615 133.87 33.0889C133.711 33.1208 133.517 33.1367 133.289 33.1367C132.979 33.1367 132.694 33.0752 132.435 32.9521C132.175 32.8291 131.967 32.624 131.812 32.3369C131.662 32.0452 131.587 31.6533 131.587 31.1611V23.8057ZM137.09 25.6035V33H135.818V25.6035H137.09ZM135.723 23.6416C135.723 23.4365 135.784 23.2633 135.907 23.1221C136.035 22.9808 136.222 22.9102 136.468 22.9102C136.709 22.9102 136.894 22.9808 137.021 23.1221C137.154 23.2633 137.22 23.4365 137.22 23.6416C137.22 23.8376 137.154 24.0062 137.021 24.1475C136.894 24.2842 136.709 24.3525 136.468 24.3525C136.222 24.3525 136.035 24.2842 135.907 24.1475C135.784 24.0062 135.723 23.8376 135.723 23.6416ZM138.785 29.3838V29.2266C138.785 28.6934 138.863 28.1989 139.018 27.7432C139.173 27.2829 139.396 26.8841 139.688 26.5469C139.979 26.2051 140.332 25.9408 140.747 25.7539C141.162 25.5625 141.627 25.4668 142.142 25.4668C142.661 25.4668 143.128 25.5625 143.543 25.7539C143.962 25.9408 144.318 26.2051 144.609 26.5469C144.906 26.8841 145.131 27.2829 145.286 27.7432C145.441 28.1989 145.519 28.6934 145.519 29.2266V29.3838C145.519 29.917 145.441 30.4115 145.286 30.8672C145.131 31.3229 144.906 31.7217 144.609 32.0635C144.318 32.4007 143.965 32.665 143.55 32.8564C143.14 33.0433 142.675 33.1367 142.155 33.1367C141.636 33.1367 141.169 33.0433 140.754 32.8564C140.339 32.665 139.984 32.4007 139.688 32.0635C139.396 31.7217 139.173 31.3229 139.018 30.8672C138.863 30.4115 138.785 29.917 138.785 29.3838ZM140.05 29.2266V29.3838C140.05 29.7529 140.093 30.1016 140.18 30.4297C140.266 30.7533 140.396 31.0404 140.569 31.291C140.747 31.5417 140.968 31.7399 141.232 31.8857C141.497 32.027 141.804 32.0977 142.155 32.0977C142.502 32.0977 142.805 32.027 143.064 31.8857C143.329 31.7399 143.548 31.5417 143.721 31.291C143.894 31.0404 144.024 30.7533 144.11 30.4297C144.201 30.1016 144.247 29.7529 144.247 29.3838V29.2266C144.247 28.862 144.201 28.5179 144.11 28.1943C144.024 27.8662 143.892 27.5768 143.714 27.3262C143.541 27.071 143.322 26.8704 143.058 26.7246C142.798 26.5788 142.493 26.5059 142.142 26.5059C141.795 26.5059 141.49 26.5788 141.226 26.7246C140.966 26.8704 140.747 27.071 140.569 27.3262C140.396 27.5768 140.266 27.8662 140.18 28.1943C140.093 28.5179 140.05 28.862 140.05 29.2266ZM148.369 27.1826V33H147.104V25.6035H148.301L148.369 27.1826ZM148.068 29.0215L147.542 29.001C147.547 28.4951 147.622 28.028 147.768 27.5996C147.913 27.1667 148.118 26.7907 148.383 26.4717C148.647 26.1527 148.962 25.9066 149.326 25.7334C149.695 25.5557 150.103 25.4668 150.55 25.4668C150.914 25.4668 151.243 25.5169 151.534 25.6172C151.826 25.7129 152.074 25.8678 152.279 26.082C152.489 26.2962 152.648 26.5742 152.758 26.916C152.867 27.2533 152.922 27.6657 152.922 28.1533V33H151.65V28.1396C151.65 27.7523 151.593 27.4424 151.479 27.21C151.366 26.973 151.199 26.8021 150.98 26.6973C150.762 26.5879 150.493 26.5332 150.174 26.5332C149.859 26.5332 149.572 26.5993 149.312 26.7314C149.057 26.8636 148.836 27.0459 148.649 27.2783C148.467 27.5107 148.324 27.7773 148.219 28.0781C148.118 28.3743 148.068 28.6888 148.068 29.0215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"42",width:"266",height:"81",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M29.4814 59.3755H27.0122V58.3789H29.4814C29.9596 58.3789 30.3468 58.3027 30.6431 58.1504C30.9393 57.998 31.1551 57.7865 31.2905 57.5156C31.4302 57.2448 31.5 56.9359 31.5 56.5889C31.5 56.2715 31.4302 55.9731 31.2905 55.6938C31.1551 55.4146 30.9393 55.1903 30.6431 55.021C30.3468 54.8475 29.9596 54.7607 29.4814 54.7607H27.2979V63H26.0728V53.7578H29.4814C30.1797 53.7578 30.77 53.8784 31.2524 54.1196C31.7349 54.3608 32.1009 54.6951 32.3506 55.1226C32.6003 55.5457 32.7251 56.0303 32.7251 56.5762C32.7251 57.1686 32.6003 57.6743 32.3506 58.0933C32.1009 58.5122 31.7349 58.8317 31.2524 59.0518C30.77 59.2676 30.1797 59.3755 29.4814 59.3755ZM35.3721 56.1318V63H34.1914V56.1318H35.3721ZM34.1025 54.3101C34.1025 54.1196 34.1597 53.9588 34.2739 53.8276C34.3924 53.6965 34.5659 53.6309 34.7944 53.6309C35.0187 53.6309 35.1901 53.6965 35.3086 53.8276C35.4313 53.9588 35.4927 54.1196 35.4927 54.3101C35.4927 54.492 35.4313 54.6486 35.3086 54.7798C35.1901 54.9067 35.0187 54.9702 34.7944 54.9702C34.5659 54.9702 34.3924 54.9067 34.2739 54.7798C34.1597 54.6486 34.1025 54.492 34.1025 54.3101ZM40.0059 62.1621C40.2852 62.1621 40.5433 62.105 40.7803 61.9907C41.0173 61.8765 41.2119 61.7199 41.3643 61.521C41.5166 61.3179 41.6034 61.0872 41.6245 60.8291H42.7417C42.7205 61.2354 42.583 61.6141 42.3291 61.9653C42.0794 62.3123 41.7515 62.5938 41.3452 62.8096C40.939 63.0212 40.4925 63.127 40.0059 63.127C39.4896 63.127 39.0389 63.036 38.6538 62.854C38.2729 62.672 37.9556 62.4224 37.7017 62.105C37.452 61.7876 37.2637 61.4237 37.1367 61.0132C37.014 60.5985 36.9526 60.1605 36.9526 59.6992V59.4326C36.9526 58.9714 37.014 58.5355 37.1367 58.125C37.2637 57.7103 37.452 57.3442 37.7017 57.0269C37.9556 56.7095 38.2729 56.4598 38.6538 56.2778C39.0389 56.0959 39.4896 56.0049 40.0059 56.0049C40.5433 56.0049 41.013 56.1149 41.415 56.335C41.8171 56.5508 42.1323 56.847 42.3608 57.2236C42.5936 57.596 42.7205 58.0192 42.7417 58.4932H41.6245C41.6034 58.2096 41.5229 57.9536 41.3833 57.7251C41.2479 57.4966 41.0617 57.3146 40.8247 57.1792C40.592 57.0396 40.319 56.9697 40.0059 56.9697C39.6462 56.9697 39.3436 57.0417 39.0981 57.1855C38.8569 57.3252 38.6644 57.5156 38.5205 57.7568C38.3809 57.9938 38.2793 58.2583 38.2158 58.5503C38.1566 58.8381 38.127 59.1322 38.127 59.4326V59.6992C38.127 59.9997 38.1566 60.2959 38.2158 60.5879C38.2751 60.8799 38.3745 61.1444 38.5142 61.3813C38.658 61.6183 38.8506 61.8088 39.0918 61.9526C39.3372 62.0923 39.6419 62.1621 40.0059 62.1621ZM45.2427 53.25V63H44.062V53.25H45.2427ZM49.4385 56.1318L46.4424 59.3374L44.7666 61.0767L44.6714 59.8262L45.8711 58.3916L48.0039 56.1318H49.4385ZM48.3657 63L45.9155 59.7246L46.5249 58.6772L49.7495 63H48.3657ZM55.0435 57.4966V63H53.8628V56.1318H54.98L55.0435 57.4966ZM54.8022 59.3057L54.2563 59.2866C54.2606 58.8169 54.3219 58.3831 54.4404 57.9854C54.5589 57.5833 54.7345 57.2342 54.9673 56.938C55.2 56.6418 55.4899 56.4132 55.8369 56.2524C56.1839 56.0874 56.5859 56.0049 57.043 56.0049C57.3646 56.0049 57.6608 56.0514 57.9316 56.1445C58.2025 56.2334 58.4373 56.3752 58.6362 56.5698C58.8351 56.7645 58.9896 57.0142 59.0996 57.3188C59.2096 57.6235 59.2646 57.9917 59.2646 58.4233V63H58.0903V58.4805C58.0903 58.1208 58.029 57.833 57.9062 57.6172C57.7878 57.4014 57.6185 57.2448 57.3984 57.1475C57.1784 57.0459 56.9202 56.9951 56.624 56.9951C56.277 56.9951 55.9871 57.0565 55.7544 57.1792C55.5216 57.3019 55.3354 57.4712 55.1958 57.687C55.0562 57.9028 54.9546 58.1504 54.8911 58.4297C54.8319 58.7048 54.8022 58.9967 54.8022 59.3057ZM59.252 58.6582L58.4648 58.8994C58.4691 58.5228 58.5304 58.161 58.6489 57.814C58.7716 57.467 58.9473 57.158 59.1758 56.8872C59.4085 56.6164 59.6942 56.4027 60.0327 56.2461C60.3713 56.0853 60.7585 56.0049 61.1943 56.0049C61.5625 56.0049 61.8883 56.0535 62.1719 56.1509C62.4596 56.2482 62.7008 56.3984 62.8955 56.6016C63.0944 56.8005 63.2446 57.0565 63.3462 57.3696C63.4478 57.6828 63.4985 58.0552 63.4985 58.4868V63H62.3179V58.4741C62.3179 58.089 62.2565 57.7907 62.1338 57.5791C62.0153 57.3633 61.846 57.2131 61.626 57.1284C61.4102 57.0396 61.152 56.9951 60.8516 56.9951C60.5934 56.9951 60.3649 57.0396 60.166 57.1284C59.9671 57.2173 59.8 57.34 59.6646 57.4966C59.5291 57.6489 59.4255 57.8245 59.3535 58.0234C59.2858 58.2223 59.252 58.4339 59.252 58.6582ZM68.126 63.127C67.6478 63.127 67.214 63.0465 66.8247 62.8857C66.4396 62.7207 66.1074 62.4901 65.8281 62.1938C65.5531 61.8976 65.3415 61.5464 65.1934 61.1401C65.0452 60.7339 64.9712 60.2896 64.9712 59.8071V59.5405C64.9712 58.9819 65.0537 58.4847 65.2188 58.0488C65.3838 57.6087 65.6081 57.2363 65.8916 56.9316C66.1751 56.627 66.4967 56.3963 66.8564 56.2397C67.2161 56.0832 67.5885 56.0049 67.9736 56.0049C68.4645 56.0049 68.8877 56.0895 69.2432 56.2588C69.6029 56.4281 69.897 56.665 70.1255 56.9697C70.354 57.2702 70.5233 57.6257 70.6333 58.0361C70.7433 58.4424 70.7983 58.8867 70.7983 59.3691V59.896H65.6694V58.9375H69.624V58.8486C69.6071 58.5439 69.5436 58.2477 69.4336 57.96C69.3278 57.6722 69.1585 57.4352 68.9258 57.249C68.693 57.0628 68.3757 56.9697 67.9736 56.9697C67.707 56.9697 67.4616 57.0269 67.2373 57.1411C67.013 57.2511 66.8205 57.4162 66.6597 57.6362C66.4989 57.8563 66.374 58.125 66.2852 58.4424C66.1963 58.7598 66.1519 59.1258 66.1519 59.5405V59.8071C66.1519 60.133 66.1963 60.4398 66.2852 60.7275C66.3783 61.0111 66.5116 61.2607 66.6851 61.4766C66.8628 61.6924 67.0765 61.8617 67.3262 61.9844C67.5801 62.1071 67.8678 62.1685 68.1895 62.1685C68.6042 62.1685 68.9554 62.0838 69.2432 61.9146C69.5309 61.7453 69.7827 61.5189 69.9985 61.2354L70.7095 61.8003C70.5614 62.0246 70.373 62.2383 70.1445 62.4414C69.916 62.6445 69.6346 62.8096 69.3003 62.9365C68.9702 63.0635 68.5788 63.127 68.126 63.127ZM79.5962 61.4131V56.1318H80.7769V63H79.6533L79.5962 61.4131ZM79.8184 59.9658L80.3071 59.9531C80.3071 60.4102 80.2585 60.8333 80.1611 61.2227C80.068 61.6077 79.9157 61.9421 79.7041 62.2256C79.4925 62.5091 79.2153 62.7313 78.8726 62.8921C78.5298 63.0487 78.113 63.127 77.6221 63.127C77.2878 63.127 76.981 63.0783 76.7017 62.981C76.4266 62.8836 76.1896 62.7334 75.9907 62.5303C75.7918 62.3271 75.6374 62.0627 75.5273 61.7368C75.4215 61.411 75.3687 61.0195 75.3687 60.5625V56.1318H76.543V60.5752C76.543 60.8841 76.5768 61.1401 76.6445 61.3433C76.7165 61.5422 76.8117 61.7008 76.9302 61.8193C77.0529 61.9336 77.1883 62.014 77.3364 62.0605C77.4888 62.1071 77.6453 62.1304 77.8062 62.1304C78.3055 62.1304 78.7012 62.0352 78.9932 61.8447C79.2852 61.6501 79.4946 61.3898 79.6216 61.064C79.7528 60.7339 79.8184 60.3678 79.8184 59.9658ZM83.7412 57.4521V65.6406H82.5605V56.1318H83.6396L83.7412 57.4521ZM88.3687 59.5088V59.6421C88.3687 60.1414 88.3094 60.6048 88.1909 61.0322C88.0724 61.4554 87.8989 61.8236 87.6704 62.1367C87.4461 62.4499 87.1689 62.6932 86.8389 62.8667C86.5088 63.0402 86.13 63.127 85.7026 63.127C85.2668 63.127 84.8817 63.055 84.5474 62.9111C84.2131 62.7673 83.9295 62.5578 83.6968 62.2827C83.464 62.0076 83.2778 61.6776 83.1382 61.2925C83.0028 60.9074 82.9097 60.4736 82.8589 59.9912V59.2803C82.9097 58.7725 83.0049 58.3175 83.1445 57.9155C83.2842 57.5135 83.4683 57.1707 83.6968 56.8872C83.9295 56.5994 84.2109 56.3815 84.541 56.2334C84.8711 56.0811 85.252 56.0049 85.6836 56.0049C86.1152 56.0049 86.4982 56.0895 86.8325 56.2588C87.1668 56.4238 87.4482 56.6608 87.6768 56.9697C87.9053 57.2786 88.0767 57.6489 88.1909 58.0806C88.3094 58.508 88.3687 58.984 88.3687 59.5088ZM87.188 59.6421V59.5088C87.188 59.166 87.152 58.8444 87.0801 58.5439C87.0081 58.2393 86.896 57.9727 86.7437 57.7441C86.5955 57.5114 86.4051 57.3294 86.1724 57.1982C85.9396 57.0628 85.6624 56.9951 85.3408 56.9951C85.0446 56.9951 84.7865 57.0459 84.5664 57.1475C84.3506 57.249 84.1665 57.3866 84.0142 57.5601C83.8618 57.7293 83.737 57.924 83.6396 58.144C83.5465 58.3599 83.4767 58.5841 83.4302 58.8169V60.4609C83.5148 60.7572 83.6333 61.0365 83.7856 61.2988C83.938 61.557 84.1411 61.7664 84.395 61.9272C84.6489 62.0838 84.9684 62.1621 85.3535 62.1621C85.6709 62.1621 85.9438 62.0965 86.1724 61.9653C86.4051 61.8299 86.5955 61.6458 86.7437 61.4131C86.896 61.1803 87.0081 60.9137 87.0801 60.6133C87.152 60.3086 87.188 59.9849 87.188 59.6421ZM97.1411 61.8257V58.29C97.1411 58.0192 97.0861 57.7843 96.9761 57.5854C96.8703 57.3823 96.7095 57.2257 96.4937 57.1157C96.2778 57.0057 96.0112 56.9507 95.6938 56.9507C95.3976 56.9507 95.1374 57.0015 94.9131 57.103C94.693 57.2046 94.5195 57.3379 94.3926 57.5029C94.2699 57.668 94.2085 57.8457 94.2085 58.0361H93.0342C93.0342 57.7907 93.0977 57.5474 93.2246 57.3062C93.3516 57.0649 93.5335 56.847 93.7705 56.6523C94.0117 56.4535 94.2995 56.2969 94.6338 56.1826C94.9723 56.0641 95.349 56.0049 95.7637 56.0049C96.263 56.0049 96.7031 56.0895 97.084 56.2588C97.4691 56.4281 97.7695 56.6841 97.9854 57.0269C98.2054 57.3654 98.3154 57.7907 98.3154 58.3027V61.502C98.3154 61.7305 98.3345 61.9738 98.3726 62.2319C98.4149 62.4901 98.4762 62.7122 98.5566 62.8984V63H97.3315C97.2723 62.8646 97.2257 62.6847 97.1919 62.4604C97.158 62.2319 97.1411 62.0203 97.1411 61.8257ZM97.3442 58.8359L97.3569 59.6611H96.1699C95.8356 59.6611 95.5373 59.6886 95.2749 59.7437C95.0125 59.7944 94.7925 59.8727 94.6147 59.9785C94.437 60.0843 94.3016 60.2176 94.2085 60.3784C94.1154 60.535 94.0688 60.7191 94.0688 60.9307C94.0688 61.1465 94.1175 61.3433 94.2148 61.521C94.3122 61.6987 94.4582 61.8405 94.6528 61.9463C94.8517 62.0479 95.0951 62.0986 95.3828 62.0986C95.7425 62.0986 96.0599 62.0225 96.335 61.8701C96.61 61.7178 96.828 61.5316 96.9888 61.3115C97.1538 61.0915 97.2427 60.8778 97.2554 60.6704L97.7568 61.2354C97.7272 61.4131 97.6468 61.6099 97.5156 61.8257C97.3844 62.0415 97.2088 62.2489 96.9888 62.4478C96.7729 62.6424 96.5148 62.8053 96.2144 62.9365C95.9181 63.0635 95.5838 63.127 95.2114 63.127C94.7459 63.127 94.3376 63.036 93.9863 62.854C93.6393 62.672 93.3685 62.4287 93.1738 62.124C92.9834 61.8151 92.8882 61.4702 92.8882 61.0894C92.8882 60.7212 92.9601 60.3975 93.104 60.1182C93.2479 59.8346 93.4552 59.5998 93.7261 59.4136C93.9969 59.2231 94.3228 59.0793 94.7036 58.9819C95.0845 58.8846 95.5098 58.8359 95.9795 58.8359H97.3442ZM103.038 56.1318V57.0332H99.3247V56.1318H103.038ZM100.582 54.4624H101.756V61.2988C101.756 61.5316 101.792 61.7072 101.864 61.8257C101.936 61.9442 102.029 62.0225 102.143 62.0605C102.257 62.0986 102.38 62.1177 102.511 62.1177C102.609 62.1177 102.71 62.1092 102.816 62.0923C102.926 62.0711 103.008 62.0542 103.063 62.0415L103.07 63C102.977 63.0296 102.854 63.0571 102.702 63.0825C102.554 63.1121 102.374 63.127 102.162 63.127C101.874 63.127 101.61 63.0698 101.369 62.9556C101.127 62.8413 100.935 62.6509 100.791 62.3843C100.651 62.1134 100.582 61.7495 100.582 61.2925V54.4624ZM110.516 56.1318V57.0332H106.802V56.1318H110.516ZM108.059 54.4624H109.233V61.2988C109.233 61.5316 109.269 61.7072 109.341 61.8257C109.413 61.9442 109.506 62.0225 109.621 62.0605C109.735 62.0986 109.858 62.1177 109.989 62.1177C110.086 62.1177 110.188 62.1092 110.293 62.0923C110.403 62.0711 110.486 62.0542 110.541 62.0415L110.547 63C110.454 63.0296 110.332 63.0571 110.179 63.0825C110.031 63.1121 109.851 63.127 109.64 63.127C109.352 63.127 109.087 63.0698 108.846 62.9556C108.605 62.8413 108.412 62.6509 108.269 62.3843C108.129 62.1134 108.059 61.7495 108.059 61.2925V54.4624ZM113.067 53.25V63H111.893V53.25H113.067ZM112.788 59.3057L112.299 59.2866C112.304 58.8169 112.373 58.3831 112.509 57.9854C112.644 57.5833 112.835 57.2342 113.08 56.938C113.326 56.6418 113.618 56.4132 113.956 56.2524C114.299 56.0874 114.678 56.0049 115.092 56.0049C115.431 56.0049 115.736 56.0514 116.006 56.1445C116.277 56.2334 116.508 56.3773 116.698 56.5762C116.893 56.7751 117.041 57.0332 117.143 57.3506C117.244 57.6637 117.295 58.0467 117.295 58.4995V63H116.114V58.4868C116.114 58.1271 116.061 57.8394 115.956 57.6235C115.85 57.4035 115.695 57.2448 115.492 57.1475C115.289 57.0459 115.039 56.9951 114.743 56.9951C114.451 56.9951 114.185 57.0565 113.943 57.1792C113.706 57.3019 113.501 57.4712 113.328 57.687C113.158 57.9028 113.025 58.1504 112.928 58.4297C112.835 58.7048 112.788 58.9967 112.788 59.3057ZM121.903 63.127C121.425 63.127 120.991 63.0465 120.602 62.8857C120.217 62.7207 119.885 62.4901 119.605 62.1938C119.33 61.8976 119.119 61.5464 118.971 61.1401C118.823 60.7339 118.749 60.2896 118.749 59.8071V59.5405C118.749 58.9819 118.831 58.4847 118.996 58.0488C119.161 57.6087 119.385 57.2363 119.669 56.9316C119.952 56.627 120.274 56.3963 120.634 56.2397C120.993 56.0832 121.366 56.0049 121.751 56.0049C122.242 56.0049 122.665 56.0895 123.021 56.2588C123.38 56.4281 123.674 56.665 123.903 56.9697C124.131 57.2702 124.301 57.6257 124.411 58.0361C124.521 58.4424 124.576 58.8867 124.576 59.3691V59.896H119.447V58.9375H123.401V58.8486C123.384 58.5439 123.321 58.2477 123.211 57.96C123.105 57.6722 122.936 57.4352 122.703 57.249C122.47 57.0628 122.153 56.9697 121.751 56.9697C121.484 56.9697 121.239 57.0269 121.015 57.1411C120.79 57.2511 120.598 57.4162 120.437 57.6362C120.276 57.8563 120.151 58.125 120.062 58.4424C119.974 58.7598 119.929 59.1258 119.929 59.5405V59.8071C119.929 60.133 119.974 60.4398 120.062 60.7275C120.156 61.0111 120.289 61.2607 120.462 61.4766C120.64 61.6924 120.854 61.8617 121.104 61.9844C121.357 62.1071 121.645 62.1685 121.967 62.1685C122.382 62.1685 122.733 62.0838 123.021 61.9146C123.308 61.7453 123.56 61.5189 123.776 61.2354L124.487 61.8003C124.339 62.0246 124.15 62.2383 123.922 62.4414C123.693 62.6445 123.412 62.8096 123.078 62.9365C122.748 63.0635 122.356 63.127 121.903 63.127ZM133.221 61.8257V58.29C133.221 58.0192 133.166 57.7843 133.056 57.5854C132.95 57.3823 132.79 57.2257 132.574 57.1157C132.358 57.0057 132.091 56.9507 131.774 56.9507C131.478 56.9507 131.217 57.0015 130.993 57.103C130.773 57.2046 130.6 57.3379 130.473 57.5029C130.35 57.668 130.289 57.8457 130.289 58.0361H129.114C129.114 57.7907 129.178 57.5474 129.305 57.3062C129.432 57.0649 129.614 56.847 129.851 56.6523C130.092 56.4535 130.38 56.2969 130.714 56.1826C131.052 56.0641 131.429 56.0049 131.844 56.0049C132.343 56.0049 132.783 56.0895 133.164 56.2588C133.549 56.4281 133.85 56.6841 134.065 57.0269C134.285 57.3654 134.396 57.7907 134.396 58.3027V61.502C134.396 61.7305 134.415 61.9738 134.453 62.2319C134.495 62.4901 134.556 62.7122 134.637 62.8984V63H133.412C133.352 62.8646 133.306 62.6847 133.272 62.4604C133.238 62.2319 133.221 62.0203 133.221 61.8257ZM133.424 58.8359L133.437 59.6611H132.25C131.916 59.6611 131.617 59.6886 131.355 59.7437C131.093 59.7944 130.873 59.8727 130.695 59.9785C130.517 60.0843 130.382 60.2176 130.289 60.3784C130.195 60.535 130.149 60.7191 130.149 60.9307C130.149 61.1465 130.198 61.3433 130.295 61.521C130.392 61.6987 130.538 61.8405 130.733 61.9463C130.932 62.0479 131.175 62.0986 131.463 62.0986C131.823 62.0986 132.14 62.0225 132.415 61.8701C132.69 61.7178 132.908 61.5316 133.069 61.3115C133.234 61.0915 133.323 60.8778 133.335 60.6704L133.837 61.2354C133.807 61.4131 133.727 61.6099 133.596 61.8257C133.465 62.0415 133.289 62.2489 133.069 62.4478C132.853 62.6424 132.595 62.8053 132.294 62.9365C131.998 63.0635 131.664 63.127 131.292 63.127C130.826 63.127 130.418 63.036 130.066 62.854C129.719 62.672 129.449 62.4287 129.254 62.124C129.063 61.8151 128.968 61.4702 128.968 61.0894C128.968 60.7212 129.04 60.3975 129.184 60.1182C129.328 59.8346 129.535 59.5998 129.806 59.4136C130.077 59.2231 130.403 59.0793 130.784 58.9819C131.165 58.8846 131.59 58.8359 132.06 58.8359H133.424ZM137.519 56.1318V63H136.338V56.1318H137.519ZM136.249 54.3101C136.249 54.1196 136.306 53.9588 136.42 53.8276C136.539 53.6965 136.712 53.6309 136.941 53.6309C137.165 53.6309 137.337 53.6965 137.455 53.8276C137.578 53.9588 137.639 54.1196 137.639 54.3101C137.639 54.492 137.578 54.6486 137.455 54.7798C137.337 54.9067 137.165 54.9702 136.941 54.9702C136.712 54.9702 136.539 54.9067 136.42 54.7798C136.306 54.6486 136.249 54.492 136.249 54.3101ZM140.578 57.2109V63H139.404V56.1318H140.546L140.578 57.2109ZM142.724 56.0938L142.717 57.1855C142.62 57.1644 142.527 57.1517 142.438 57.1475C142.353 57.139 142.256 57.1348 142.146 57.1348C141.875 57.1348 141.636 57.1771 141.429 57.2617C141.221 57.3464 141.046 57.4648 140.902 57.6172C140.758 57.7695 140.644 57.9515 140.559 58.1631C140.479 58.3704 140.426 58.599 140.4 58.8486L140.07 59.0391C140.07 58.6243 140.111 58.235 140.191 57.8711C140.276 57.5072 140.405 57.1855 140.578 56.9062C140.752 56.6227 140.972 56.4027 141.238 56.2461C141.509 56.0853 141.831 56.0049 142.203 56.0049C142.288 56.0049 142.385 56.0155 142.495 56.0366C142.605 56.0535 142.681 56.0726 142.724 56.0938ZM144.983 57.4521V65.6406H143.803V56.1318H144.882L144.983 57.4521ZM149.611 59.5088V59.6421C149.611 60.1414 149.552 60.6048 149.433 61.0322C149.315 61.4554 149.141 61.8236 148.913 62.1367C148.688 62.4499 148.411 62.6932 148.081 62.8667C147.751 63.0402 147.372 63.127 146.945 63.127C146.509 63.127 146.124 63.055 145.79 62.9111C145.455 62.7673 145.172 62.5578 144.939 62.2827C144.706 62.0076 144.52 61.6776 144.38 61.2925C144.245 60.9074 144.152 60.4736 144.101 59.9912V59.2803C144.152 58.7725 144.247 58.3175 144.387 57.9155C144.526 57.5135 144.71 57.1707 144.939 56.8872C145.172 56.5994 145.453 56.3815 145.783 56.2334C146.113 56.0811 146.494 56.0049 146.926 56.0049C147.357 56.0049 147.74 56.0895 148.075 56.2588C148.409 56.4238 148.69 56.6608 148.919 56.9697C149.147 57.2786 149.319 57.6489 149.433 58.0806C149.552 58.508 149.611 58.984 149.611 59.5088ZM148.43 59.6421V59.5088C148.43 59.166 148.394 58.8444 148.322 58.5439C148.25 58.2393 148.138 57.9727 147.986 57.7441C147.838 57.5114 147.647 57.3294 147.415 57.1982C147.182 57.0628 146.905 56.9951 146.583 56.9951C146.287 56.9951 146.029 57.0459 145.809 57.1475C145.593 57.249 145.409 57.3866 145.256 57.5601C145.104 57.7293 144.979 57.924 144.882 58.144C144.789 58.3599 144.719 58.5841 144.672 58.8169V60.4609C144.757 60.7572 144.875 61.0365 145.028 61.2988C145.18 61.557 145.383 61.7664 145.637 61.9272C145.891 62.0838 146.211 62.1621 146.596 62.1621C146.913 62.1621 147.186 62.0965 147.415 61.9653C147.647 61.8299 147.838 61.6458 147.986 61.4131C148.138 61.1803 148.25 60.9137 148.322 60.6133C148.394 60.3086 148.43 59.9849 148.43 59.6421ZM150.798 59.6421V59.4961C150.798 59.001 150.87 58.5418 151.014 58.1187C151.158 57.6912 151.365 57.321 151.636 57.0078C151.907 56.6904 152.235 56.445 152.62 56.2715C153.005 56.0938 153.436 56.0049 153.915 56.0049C154.397 56.0049 154.831 56.0938 155.216 56.2715C155.605 56.445 155.935 56.6904 156.206 57.0078C156.481 57.321 156.691 57.6912 156.834 58.1187C156.978 58.5418 157.05 59.001 157.05 59.4961V59.6421C157.05 60.1372 156.978 60.5964 156.834 61.0195C156.691 61.4427 156.481 61.813 156.206 62.1304C155.935 62.4435 155.607 62.689 155.222 62.8667C154.841 63.0402 154.41 63.127 153.927 63.127C153.445 63.127 153.011 63.0402 152.626 62.8667C152.241 62.689 151.911 62.4435 151.636 62.1304C151.365 61.813 151.158 61.4427 151.014 61.0195C150.87 60.5964 150.798 60.1372 150.798 59.6421ZM151.972 59.4961V59.6421C151.972 59.9849 152.012 60.3086 152.093 60.6133C152.173 60.9137 152.294 61.1803 152.455 61.4131C152.62 61.6458 152.825 61.8299 153.07 61.9653C153.316 62.0965 153.601 62.1621 153.927 62.1621C154.249 62.1621 154.53 62.0965 154.771 61.9653C155.017 61.8299 155.22 61.6458 155.381 61.4131C155.542 61.1803 155.662 60.9137 155.743 60.6133C155.827 60.3086 155.87 59.9849 155.87 59.6421V59.4961C155.87 59.1576 155.827 58.8381 155.743 58.5376C155.662 58.2329 155.54 57.9642 155.375 57.7314C155.214 57.4945 155.011 57.3083 154.765 57.1729C154.524 57.0374 154.24 56.9697 153.915 56.9697C153.593 56.9697 153.309 57.0374 153.064 57.1729C152.823 57.3083 152.62 57.4945 152.455 57.7314C152.294 57.9642 152.173 58.2329 152.093 58.5376C152.012 58.8381 151.972 59.1576 151.972 59.4961ZM159.697 57.2109V63H158.523V56.1318H159.666L159.697 57.2109ZM161.843 56.0938L161.836 57.1855C161.739 57.1644 161.646 57.1517 161.557 57.1475C161.472 57.139 161.375 57.1348 161.265 57.1348C160.994 57.1348 160.755 57.1771 160.548 57.2617C160.34 57.3464 160.165 57.4648 160.021 57.6172C159.877 57.7695 159.763 57.9515 159.678 58.1631C159.598 58.3704 159.545 58.599 159.52 58.8486L159.189 59.0391C159.189 58.6243 159.23 58.235 159.31 57.8711C159.395 57.5072 159.524 57.1855 159.697 56.9062C159.871 56.6227 160.091 56.4027 160.357 56.2461C160.628 56.0853 160.95 56.0049 161.322 56.0049C161.407 56.0049 161.504 56.0155 161.614 56.0366C161.724 56.0535 161.8 56.0726 161.843 56.0938ZM166.121 56.1318V57.0332H162.408V56.1318H166.121ZM163.665 54.4624H164.839V61.2988C164.839 61.5316 164.875 61.7072 164.947 61.8257C165.019 61.9442 165.112 62.0225 165.226 62.0605C165.34 62.0986 165.463 62.1177 165.594 62.1177C165.692 62.1177 165.793 62.1092 165.899 62.0923C166.009 62.0711 166.091 62.0542 166.146 62.0415L166.153 63C166.06 63.0296 165.937 63.0571 165.785 63.0825C165.637 63.1121 165.457 63.127 165.245 63.127C164.957 63.127 164.693 63.0698 164.452 62.9556C164.21 62.8413 164.018 62.6509 163.874 62.3843C163.734 62.1134 163.665 61.7495 163.665 61.2925V54.4624ZM168.667 53.7578V64.7139H167.721V53.7578H168.667Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M279 113.496L272.495 120",stroke:"#64748B",strokeLinecap:"round"}),(0,h.createElement)("path",{d:"M279 116.748L275.747 120",stroke:"#64748B",strokeLinecap:"round"}),(0,h.createElement)("rect",{x:"16",y:"42",width:"266",height:"81",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),{ToolBarFields:Uo,AdvancedFields:Go,FieldWrapper:Wo,FieldSettingsWrapper:Ko,ValidationToggleGroup:$o,ValidationBlockMessage:Yo,BlockLabel:Xo,BlockDescription:Qo,BlockName:es,BlockAdvancedValue:Cs,EditAdvancedRulesButton:ts,AdvancedInspectorControl:ls,AttributeHelp:rs}=JetFBComponents,{useIsAdvancedValidation:ns,useUniqueNameOnDuplicate:as}=JetFBHooks,{__:is}=wp.i18n,{InspectorControls:os,useBlockProps:ss}=wp.blockEditor,{TextareaControl:cs,TextControl:ds,PanelBody:ms,__experimentalNumberControl:us}=wp.components;let{NumberControl:ps}=wp.components;void 0===ps&&(ps=us);const fs=JSON.parse('{"apiVersion":3,"name":"jet-forms/textarea-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","textarea"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Textarea Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"minlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"maxlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Vs}=wp.i18n,{createBlock:Hs}=wp.blocks,{name:hs,icon:bs=""}=fs,Ms={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:bs}}),description:Vs("Give the user enough space to type in a bigger piece of text. Add a text area where the data can be placed in several lines.","jet-form-builder"),edit:function(e){const{attributes:C,setAttributes:t,isSelected:l,editProps:{uniqKey:r}}=e,n=ss(),a=ns();return as(),C.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},zo):[(0,h.createElement)(Uo,{key:r("ToolBarFields"),...e}),l&&(0,h.createElement)(os,{key:r("InspectorControls")},(0,h.createElement)(ms,{title:is("General","jet-form-builder")},(0,h.createElement)(Xo,null),(0,h.createElement)(es,null),(0,h.createElement)(Qo,null)),(0,h.createElement)(ms,{title:is("Value","jet-form-builder")},(0,h.createElement)(Cs,null)),(0,h.createElement)(Ko,{...e},(0,h.createElement)(ls,{value:C.minlength,label:is("Min length (symbols)","jet-form-builder"),onChangePreset:e=>t({minlength:e})},({instanceId:e})=>(0,h.createElement)(ds,{id:e,className:"jet-fb m-unset",value:C.minlength,onChange:e=>t({minlength:e})})),(0,h.createElement)(rs,{name:"minlength"}),(0,h.createElement)(ls,{value:C.maxlength,label:is("Max length (symbols)","jet-form-builder"),onChangePreset:e=>t({maxlength:e})},({instanceId:e})=>(0,h.createElement)(ds,{id:e,className:"jet-fb m-unset",value:C.maxlength,onChange:e=>t({maxlength:e})})),(0,h.createElement)(rs,{name:"maxlength"})),(0,h.createElement)(ms,{title:is("Validation","jet-form-builder")},(0,h.createElement)($o,null),a&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ts,null),Boolean(C.minlength)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Yo,{name:"char_min"})),Boolean(C.maxlength)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Yo,{name:"char_max"})),(0,h.createElement)(Yo,{name:"empty"}))),(0,h.createElement)(Go,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{key:r("viewBlock"),...n},(0,h.createElement)(Wo,{key:r("FieldWrapper"),...e},(0,h.createElement)(cs,{className:"jet-form-builder__field-preview",key:r("place_holder_block"),placeholder:C.placeholder,onChange:()=>{}})))]},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Hs("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/wysiwyg-field"],transform:e=>Hs(hs,{...e}),priority:0}]}},Ls=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"20.5",width:"22",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.3887 29.4028V30.3677H28.0283V29.4028H34.3887ZM42.9199 29.4028V30.3677H36.5596V29.4028H42.9199Z",fill:"white"}),(0,h.createElement)("path",{d:"M49.8442 33.8779C49.8442 33.679 49.9056 33.5119 50.0283 33.3765C50.1553 33.2368 50.3372 33.167 50.5742 33.167C50.8112 33.167 50.991 33.2368 51.1138 33.3765C51.2407 33.5119 51.3042 33.679 51.3042 33.8779C51.3042 34.0726 51.2407 34.2376 51.1138 34.373C50.991 34.5085 50.8112 34.5762 50.5742 34.5762C50.3372 34.5762 50.1553 34.5085 50.0283 34.373C49.9056 34.2376 49.8442 34.0726 49.8442 33.8779ZM49.8506 28.2729C49.8506 28.0741 49.9119 27.9069 50.0347 27.7715C50.1616 27.6318 50.3436 27.562 50.5806 27.562C50.8175 27.562 50.9974 27.6318 51.1201 27.7715C51.2471 27.9069 51.3105 28.0741 51.3105 28.2729C51.3105 28.4676 51.2471 28.6326 51.1201 28.7681C50.9974 28.9035 50.8175 28.9712 50.5806 28.9712C50.3436 28.9712 50.1616 28.9035 50.0347 28.7681C49.9119 28.6326 49.8506 28.4676 49.8506 28.2729ZM62.7617 29.4028V30.3677H56.4014V29.4028H62.7617ZM71.293 29.4028V30.3677H64.9326V29.4028H71.293ZM76.5044 33.8779C76.5044 33.679 76.5658 33.5119 76.6885 33.3765C76.8154 33.2368 76.9974 33.167 77.2344 33.167C77.4714 33.167 77.6512 33.2368 77.7739 33.3765C77.9009 33.5119 77.9644 33.679 77.9644 33.8779C77.9644 34.0726 77.9009 34.2376 77.7739 34.373C77.6512 34.5085 77.4714 34.5762 77.2344 34.5762C76.9974 34.5762 76.8154 34.5085 76.6885 34.373C76.5658 34.2376 76.5044 34.0726 76.5044 33.8779ZM76.5107 28.2729C76.5107 28.0741 76.5721 27.9069 76.6948 27.7715C76.8218 27.6318 77.0037 27.562 77.2407 27.562C77.4777 27.562 77.6576 27.6318 77.7803 27.7715C77.9072 27.9069 77.9707 28.0741 77.9707 28.2729C77.9707 28.4676 77.9072 28.6326 77.7803 28.7681C77.6576 28.9035 77.4777 28.9712 77.2407 28.9712C77.0037 28.9712 76.8218 28.9035 76.6948 28.7681C76.5721 28.6326 76.5107 28.4676 76.5107 28.2729ZM89.4219 29.4028V30.3677H83.0615V29.4028H89.4219ZM97.9531 29.4028V30.3677H91.5928V29.4028H97.9531Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M260.991 21C256.023 21 252 25.032 252 30C252 34.968 256.023 39 260.991 39C265.968 39 270 34.968 270 30C270 25.032 265.968 21 260.991 21ZM261 37.2C257.022 37.2 253.8 33.978 253.8 30C253.8 26.022 257.022 22.8 261 22.8C264.978 22.8 268.2 26.022 268.2 30C268.2 33.978 264.978 37.2 261 37.2ZM260.802 25.5H260.748C260.388 25.5 260.1 25.788 260.1 26.148V30.396C260.1 30.711 260.262 31.008 260.541 31.17L264.276 33.411C264.582 33.591 264.978 33.501 265.158 33.195C265.347 32.889 265.248 32.484 264.933 32.304L261.45 30.234V26.148C261.45 25.788 261.162 25.5 260.802 25.5V25.5Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("path",{d:"M15 49C15 46.7909 16.7909 45 19 45H279C281.209 45 283 46.7909 283 49V144H15V49Z",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"64.9048",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"104.905",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M42.3906 64.5664V66.166C42.3906 66.86 42.3166 67.4588 42.1685 67.9624C42.0203 68.4618 41.8066 68.8722 41.5273 69.1938C41.2523 69.5112 40.9243 69.7461 40.5435 69.8984C40.1626 70.0508 39.7394 70.127 39.2739 70.127C38.9015 70.127 38.5545 70.0804 38.2329 69.9873C37.9113 69.89 37.6214 69.7397 37.3633 69.5366C37.1094 69.3335 36.8893 69.0775 36.7031 68.7686C36.5212 68.4554 36.3815 68.083 36.2842 67.6514C36.1868 67.2197 36.1382 66.7246 36.1382 66.166V64.5664C36.1382 63.8724 36.2122 63.2778 36.3604 62.7827C36.5127 62.2834 36.7264 61.875 37.0015 61.5576C37.2808 61.2402 37.6108 61.0075 37.9917 60.8594C38.3726 60.707 38.7957 60.6309 39.2612 60.6309C39.6336 60.6309 39.9785 60.6795 40.2959 60.7769C40.6175 60.87 40.9074 61.016 41.1655 61.2148C41.4237 61.4137 41.6437 61.6698 41.8257 61.9829C42.0076 62.2918 42.1473 62.6621 42.2446 63.0938C42.342 63.5212 42.3906 64.012 42.3906 64.5664ZM40.5562 66.4072V64.3188C40.5562 63.9845 40.5371 63.6925 40.499 63.4429C40.4652 63.1932 40.4123 62.9816 40.3403 62.8081C40.2684 62.6304 40.1795 62.4865 40.0737 62.3765C39.9679 62.2664 39.8473 62.186 39.7119 62.1353C39.5765 62.0845 39.4263 62.0591 39.2612 62.0591C39.0539 62.0591 38.8698 62.0993 38.709 62.1797C38.5524 62.2601 38.4191 62.3892 38.3091 62.5669C38.1991 62.7404 38.1144 62.9731 38.0552 63.2651C38.0002 63.5529 37.9727 63.9041 37.9727 64.3188V66.4072C37.9727 66.7415 37.9896 67.0356 38.0234 67.2896C38.0615 67.5435 38.1165 67.7614 38.1885 67.9434C38.2646 68.1211 38.3535 68.2671 38.4551 68.3813C38.5609 68.4914 38.6815 68.5718 38.8169 68.6226C38.9565 68.6733 39.1089 68.6987 39.2739 68.6987C39.4771 68.6987 39.6569 68.6585 39.8135 68.5781C39.9743 68.4935 40.1097 68.3623 40.2197 68.1846C40.334 68.0026 40.4186 67.7656 40.4736 67.4736C40.5286 67.1816 40.5562 66.8262 40.5562 66.4072ZM49.957 68.5718V70H43.6348V68.7812L46.6245 65.5757C46.925 65.2414 47.1619 64.9473 47.3354 64.6934C47.509 64.4352 47.6338 64.2046 47.71 64.0015C47.7904 63.7941 47.8306 63.5973 47.8306 63.4111C47.8306 63.1318 47.784 62.8927 47.6909 62.6938C47.5978 62.4907 47.4603 62.3341 47.2783 62.2241C47.1006 62.1141 46.8805 62.0591 46.6182 62.0591C46.3389 62.0591 46.0977 62.1268 45.8945 62.2622C45.6956 62.3976 45.5433 62.5859 45.4375 62.8271C45.3359 63.0684 45.2852 63.3413 45.2852 63.646H43.4507C43.4507 63.0959 43.5819 62.5923 43.8442 62.1353C44.1066 61.674 44.4769 61.3079 44.9551 61.0371C45.4333 60.762 46.0003 60.6245 46.6562 60.6245C47.3037 60.6245 47.8496 60.7303 48.2939 60.9419C48.7425 61.1493 49.0811 61.4497 49.3096 61.8433C49.5423 62.2326 49.6587 62.6981 49.6587 63.2397C49.6587 63.5444 49.61 63.8428 49.5127 64.1348C49.4154 64.4225 49.2757 64.7103 49.0938 64.998C48.916 65.2816 48.7002 65.5693 48.4463 65.8613C48.1924 66.1533 47.911 66.4559 47.6021 66.769L45.9961 68.5718H49.957Z",fill:"white"}),(0,h.createElement)("path",{d:"M82.4922 68.5718V70H76.1699V68.7812L79.1597 65.5757C79.4601 65.2414 79.6971 64.9473 79.8706 64.6934C80.0441 64.4352 80.1689 64.2046 80.2451 64.0015C80.3255 63.7941 80.3657 63.5973 80.3657 63.4111C80.3657 63.1318 80.3192 62.8927 80.2261 62.6938C80.133 62.4907 79.9954 62.3341 79.8135 62.2241C79.6357 62.1141 79.4157 62.0591 79.1533 62.0591C78.874 62.0591 78.6328 62.1268 78.4297 62.2622C78.2308 62.3976 78.0785 62.5859 77.9727 62.8271C77.8711 63.0684 77.8203 63.3413 77.8203 63.646H75.9858C75.9858 63.0959 76.117 62.5923 76.3794 62.1353C76.6418 61.674 77.012 61.3079 77.4902 61.0371C77.9684 60.762 78.5355 60.6245 79.1914 60.6245C79.8389 60.6245 80.3848 60.7303 80.8291 60.9419C81.2777 61.1493 81.6162 61.4497 81.8447 61.8433C82.0775 62.2326 82.1938 62.6981 82.1938 63.2397C82.1938 63.5444 82.1452 63.8428 82.0479 64.1348C81.9505 64.4225 81.8109 64.7103 81.6289 64.998C81.4512 65.2816 81.2354 65.5693 80.9814 65.8613C80.7275 66.1533 80.4461 66.4559 80.1372 66.769L78.5312 68.5718H82.4922ZM89.9126 60.7578V61.7417L86.3389 70H84.4092L87.9829 62.186H83.3809V60.7578H89.9126Z",fill:"white"}),(0,h.createElement)("path",{d:"M117.541 66.7056H115.186V65.2202H117.541C117.905 65.2202 118.201 65.161 118.43 65.0425C118.658 64.9198 118.825 64.7505 118.931 64.5347C119.037 64.3188 119.09 64.0755 119.09 63.8047C119.09 63.5296 119.037 63.2736 118.931 63.0366C118.825 62.7996 118.658 62.6092 118.43 62.4653C118.201 62.3215 117.905 62.2495 117.541 62.2495H115.846V70H113.942V60.7578H117.541C118.265 60.7578 118.885 60.889 119.401 61.1514C119.921 61.4095 120.319 61.7671 120.594 62.2241C120.869 62.6812 121.007 63.2038 121.007 63.792C121.007 64.3887 120.869 64.9049 120.594 65.3408C120.319 65.7767 119.921 66.1131 119.401 66.3501C118.885 66.5871 118.265 66.7056 117.541 66.7056ZM123.19 60.7578H124.803L127.177 67.5435L129.551 60.7578H131.163L127.824 70H126.529L123.19 60.7578ZM122.321 60.7578H123.927L124.219 67.3721V70H122.321V60.7578ZM130.427 60.7578H132.039V70H130.135V67.3721L130.427 60.7578Z",fill:"white"}),(0,h.createElement)("path",{d:"M42.2573 87.6426V89.0518C42.2573 89.8092 42.1896 90.4482 42.0542 90.9688C41.9188 91.4893 41.7241 91.9082 41.4702 92.2256C41.2163 92.543 40.9095 92.7736 40.5498 92.9175C40.1943 93.0571 39.7923 93.127 39.3438 93.127C38.9883 93.127 38.6603 93.0825 38.3599 92.9937C38.0594 92.9048 37.7886 92.763 37.5474 92.5684C37.3104 92.3695 37.1073 92.1113 36.938 91.7939C36.7687 91.4766 36.6396 91.0915 36.5508 90.6387C36.4619 90.1859 36.4175 89.6569 36.4175 89.0518V87.6426C36.4175 86.8851 36.4852 86.2503 36.6206 85.7383C36.7603 85.2262 36.957 84.8158 37.2109 84.5068C37.4648 84.1937 37.7695 83.9694 38.125 83.834C38.4847 83.6986 38.8867 83.6309 39.3311 83.6309C39.6908 83.6309 40.0208 83.6753 40.3213 83.7642C40.626 83.8488 40.8968 83.9863 41.1338 84.1768C41.3708 84.363 41.5718 84.6126 41.7368 84.9258C41.9061 85.2347 42.0352 85.6134 42.124 86.062C42.2129 86.5106 42.2573 87.0374 42.2573 87.6426ZM41.0767 89.2422V87.4458C41.0767 87.0311 41.0513 86.6672 41.0005 86.354C40.9539 86.0366 40.8841 85.7658 40.791 85.5415C40.6979 85.3172 40.5794 85.1353 40.4355 84.9956C40.2959 84.856 40.133 84.7544 39.9468 84.6909C39.7648 84.6232 39.5596 84.5894 39.3311 84.5894C39.0518 84.5894 38.8042 84.6423 38.5884 84.748C38.3726 84.8496 38.1906 85.0125 38.0425 85.2368C37.8986 85.4611 37.7886 85.7552 37.7124 86.1191C37.6362 86.4831 37.5981 86.9253 37.5981 87.4458V89.2422C37.5981 89.6569 37.6214 90.0229 37.668 90.3403C37.7188 90.6577 37.7928 90.9328 37.8901 91.1655C37.9875 91.394 38.106 91.5824 38.2456 91.7305C38.3853 91.8786 38.5461 91.9886 38.728 92.0605C38.9142 92.1283 39.1195 92.1621 39.3438 92.1621C39.6315 92.1621 39.8833 92.1071 40.0991 91.9971C40.3149 91.887 40.4948 91.7157 40.6387 91.4829C40.7868 91.2459 40.8968 90.9434 40.9688 90.5752C41.0407 90.2028 41.0767 89.7585 41.0767 89.2422ZM45.4819 87.8013H46.3198C46.7303 87.8013 47.0688 87.7336 47.3354 87.5981C47.6063 87.4585 47.8073 87.2702 47.9385 87.0332C48.0739 86.792 48.1416 86.5212 48.1416 86.2207C48.1416 85.8652 48.0824 85.5669 47.9639 85.3257C47.8454 85.0845 47.6676 84.9025 47.4307 84.7798C47.1937 84.6571 46.8932 84.5957 46.5293 84.5957C46.1992 84.5957 45.9072 84.6613 45.6533 84.7925C45.4036 84.9194 45.2069 85.1014 45.063 85.3384C44.9233 85.5754 44.8535 85.8547 44.8535 86.1763H43.6792C43.6792 85.7065 43.7977 85.2791 44.0347 84.894C44.2716 84.509 44.6038 84.2021 45.0312 83.9736C45.4629 83.7451 45.9622 83.6309 46.5293 83.6309C47.0879 83.6309 47.5767 83.7303 47.9956 83.9292C48.4146 84.1239 48.7404 84.4159 48.9731 84.8052C49.2059 85.1903 49.3223 85.6706 49.3223 86.2461C49.3223 86.4788 49.2673 86.7285 49.1572 86.9951C49.0514 87.2575 48.8843 87.5029 48.6558 87.7314C48.4315 87.96 48.1395 88.1483 47.7798 88.2964C47.4201 88.4403 46.9884 88.5122 46.4849 88.5122H45.4819V87.8013ZM45.4819 88.7661V88.0615H46.4849C47.0731 88.0615 47.5597 88.1313 47.9448 88.271C48.3299 88.4106 48.6325 88.5968 48.8525 88.8296C49.0768 89.0623 49.2334 89.3184 49.3223 89.5977C49.4154 89.8727 49.4619 90.1478 49.4619 90.4229C49.4619 90.8545 49.3879 91.2375 49.2397 91.5718C49.0959 91.9061 48.8906 92.1896 48.624 92.4224C48.3617 92.6551 48.0527 92.8307 47.6973 92.9492C47.3418 93.0677 46.9546 93.127 46.5356 93.127C46.1336 93.127 45.7549 93.0698 45.3994 92.9556C45.0482 92.8413 44.7371 92.6763 44.4663 92.4604C44.1955 92.2404 43.9839 91.9717 43.8315 91.6543C43.6792 91.3327 43.603 90.9666 43.603 90.5562H44.7773C44.7773 90.8778 44.8472 91.1592 44.9868 91.4004C45.1307 91.6416 45.3338 91.8299 45.5962 91.9653C45.8628 92.0965 46.1759 92.1621 46.5356 92.1621C46.8953 92.1621 47.2043 92.1007 47.4624 91.978C47.7248 91.8511 47.9258 91.6606 48.0654 91.4067C48.2093 91.1528 48.2812 90.8333 48.2812 90.4482C48.2812 90.0632 48.2008 89.7479 48.04 89.5024C47.8792 89.2528 47.6507 89.0687 47.3545 88.9502C47.0625 88.8275 46.7176 88.7661 46.3198 88.7661H45.4819Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M82.5112 92.0352V93H76.4619V92.1558L79.4897 88.7852C79.8621 88.3704 80.1499 88.0192 80.353 87.7314C80.5604 87.4395 80.7043 87.1792 80.7847 86.9507C80.8693 86.7179 80.9116 86.481 80.9116 86.2397C80.9116 85.9351 80.8481 85.66 80.7212 85.4146C80.5985 85.1649 80.4165 84.966 80.1753 84.8179C79.9341 84.6698 79.6421 84.5957 79.2993 84.5957C78.8888 84.5957 78.5461 84.6761 78.271 84.8369C78.0002 84.9935 77.797 85.2135 77.6616 85.4971C77.5262 85.7806 77.4585 86.1064 77.4585 86.4746H76.2842C76.2842 85.9541 76.3984 85.478 76.627 85.0464C76.8555 84.6147 77.194 84.272 77.6426 84.0181C78.0911 83.7599 78.6434 83.6309 79.2993 83.6309C79.8833 83.6309 80.3826 83.7345 80.7974 83.9419C81.2121 84.145 81.5295 84.4328 81.7495 84.8052C81.9738 85.1733 82.0859 85.605 82.0859 86.1001C82.0859 86.3709 82.0394 86.646 81.9463 86.9253C81.8574 87.2004 81.7326 87.4754 81.5718 87.7505C81.4152 88.0256 81.2311 88.2964 81.0195 88.563C80.8122 88.8296 80.59 89.092 80.353 89.3501L77.8774 92.0352H82.5112ZM89.5952 90.499C89.5952 91.0618 89.464 91.54 89.2017 91.9336C88.9435 92.3229 88.5923 92.6191 88.1479 92.8223C87.7078 93.0254 87.2106 93.127 86.6562 93.127C86.1019 93.127 85.6025 93.0254 85.1582 92.8223C84.7139 92.6191 84.3626 92.3229 84.1045 91.9336C83.8464 91.54 83.7173 91.0618 83.7173 90.499C83.7173 90.1309 83.7871 89.7944 83.9268 89.4897C84.0706 89.1808 84.2716 88.9121 84.5298 88.6836C84.7922 88.4551 85.1011 88.2795 85.4565 88.1567C85.8162 88.0298 86.2119 87.9663 86.6436 87.9663C87.2106 87.9663 87.7163 88.0763 88.1606 88.2964C88.605 88.5122 88.9541 88.8105 89.208 89.1914C89.4661 89.5723 89.5952 90.0081 89.5952 90.499ZM88.4146 90.4736C88.4146 90.1309 88.3405 89.8283 88.1924 89.5659C88.0443 89.2993 87.8369 89.092 87.5703 88.9438C87.3037 88.7957 86.9948 88.7217 86.6436 88.7217C86.2839 88.7217 85.9728 88.7957 85.7104 88.9438C85.4523 89.092 85.2513 89.2993 85.1074 89.5659C84.9635 89.8283 84.8916 90.1309 84.8916 90.4736C84.8916 90.8291 84.9614 91.1338 85.1011 91.3877C85.245 91.6374 85.4481 91.8299 85.7104 91.9653C85.9771 92.0965 86.2923 92.1621 86.6562 92.1621C87.0202 92.1621 87.3333 92.0965 87.5957 91.9653C87.8581 91.8299 88.0591 91.6374 88.1987 91.3877C88.3426 91.1338 88.4146 90.8291 88.4146 90.4736ZM89.3794 86.1636C89.3794 86.6121 89.2609 87.0163 89.0239 87.376C88.7869 87.7357 88.4632 88.0192 88.0527 88.2266C87.6423 88.4339 87.1768 88.5376 86.6562 88.5376C86.1273 88.5376 85.6554 88.4339 85.2407 88.2266C84.8302 88.0192 84.5086 87.7357 84.2759 87.376C84.0431 87.0163 83.9268 86.6121 83.9268 86.1636C83.9268 85.6261 84.0431 85.1691 84.2759 84.7925C84.5129 84.4159 84.8366 84.1281 85.2471 83.9292C85.6576 83.7303 86.1252 83.6309 86.6499 83.6309C87.1789 83.6309 87.6486 83.7303 88.0591 83.9292C88.4696 84.1281 88.7912 84.4159 89.0239 84.7925C89.2609 85.1691 89.3794 85.6261 89.3794 86.1636ZM88.2051 86.1826C88.2051 85.8737 88.1395 85.6007 88.0083 85.3638C87.8771 85.1268 87.6951 84.9406 87.4624 84.8052C87.2297 84.6655 86.9588 84.5957 86.6499 84.5957C86.341 84.5957 86.0701 84.6613 85.8374 84.7925C85.6089 84.9194 85.429 85.1014 85.2979 85.3384C85.1709 85.5754 85.1074 85.8568 85.1074 86.1826C85.1074 86.5 85.1709 86.7772 85.2979 87.0142C85.429 87.2511 85.611 87.4352 85.8438 87.5664C86.0765 87.6976 86.3473 87.7632 86.6562 87.7632C86.9652 87.7632 87.2339 87.6976 87.4624 87.5664C87.6951 87.4352 87.8771 87.2511 88.0083 87.0142C88.1395 86.7772 88.2051 86.5 88.2051 86.1826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M117.579 84.5767L114.52 93H113.269L116.792 83.7578H117.598L117.579 84.5767ZM120.144 93L117.078 84.5767L117.059 83.7578H117.865L121.4 93H120.144ZM119.985 89.5786V90.5815H114.792V89.5786H119.985ZM123.025 83.7578H124.212L127.24 91.2925L130.262 83.7578H131.455L127.697 93H126.771L123.025 83.7578ZM122.638 83.7578H123.686L123.857 89.3945V93H122.638V83.7578ZM130.789 83.7578H131.836V93H130.617V89.3945L130.789 83.7578Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M42.2573 107.643V109.052C42.2573 109.809 42.1896 110.448 42.0542 110.969C41.9188 111.489 41.7241 111.908 41.4702 112.226C41.2163 112.543 40.9095 112.774 40.5498 112.917C40.1943 113.057 39.7923 113.127 39.3438 113.127C38.9883 113.127 38.6603 113.083 38.3599 112.994C38.0594 112.905 37.7886 112.763 37.5474 112.568C37.3104 112.369 37.1073 112.111 36.938 111.794C36.7687 111.477 36.6396 111.091 36.5508 110.639C36.4619 110.186 36.4175 109.657 36.4175 109.052V107.643C36.4175 106.885 36.4852 106.25 36.6206 105.738C36.7603 105.226 36.957 104.816 37.2109 104.507C37.4648 104.194 37.7695 103.969 38.125 103.834C38.4847 103.699 38.8867 103.631 39.3311 103.631C39.6908 103.631 40.0208 103.675 40.3213 103.764C40.626 103.849 40.8968 103.986 41.1338 104.177C41.3708 104.363 41.5718 104.613 41.7368 104.926C41.9061 105.235 42.0352 105.613 42.124 106.062C42.2129 106.511 42.2573 107.037 42.2573 107.643ZM41.0767 109.242V107.446C41.0767 107.031 41.0513 106.667 41.0005 106.354C40.9539 106.037 40.8841 105.766 40.791 105.542C40.6979 105.317 40.5794 105.135 40.4355 104.996C40.2959 104.856 40.133 104.754 39.9468 104.691C39.7648 104.623 39.5596 104.589 39.3311 104.589C39.0518 104.589 38.8042 104.642 38.5884 104.748C38.3726 104.85 38.1906 105.013 38.0425 105.237C37.8986 105.461 37.7886 105.755 37.7124 106.119C37.6362 106.483 37.5981 106.925 37.5981 107.446V109.242C37.5981 109.657 37.6214 110.023 37.668 110.34C37.7188 110.658 37.7928 110.933 37.8901 111.166C37.9875 111.394 38.106 111.582 38.2456 111.73C38.3853 111.879 38.5461 111.989 38.728 112.061C38.9142 112.128 39.1195 112.162 39.3438 112.162C39.6315 112.162 39.8833 112.107 40.0991 111.997C40.3149 111.887 40.4948 111.716 40.6387 111.483C40.7868 111.246 40.8968 110.943 40.9688 110.575C41.0407 110.203 41.0767 109.758 41.0767 109.242ZM50.0142 109.89V110.854H43.3364V110.163L47.4751 103.758H48.4336L47.4053 105.611L44.6694 109.89H50.0142ZM48.7256 103.758V113H47.5513V103.758H48.7256Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M82.5112 112.035V113H76.4619V112.156L79.4897 108.785C79.8621 108.37 80.1499 108.019 80.353 107.731C80.5604 107.439 80.7043 107.179 80.7847 106.951C80.8693 106.718 80.9116 106.481 80.9116 106.24C80.9116 105.935 80.8481 105.66 80.7212 105.415C80.5985 105.165 80.4165 104.966 80.1753 104.818C79.9341 104.67 79.6421 104.596 79.2993 104.596C78.8888 104.596 78.5461 104.676 78.271 104.837C78.0002 104.993 77.797 105.214 77.6616 105.497C77.5262 105.781 77.4585 106.106 77.4585 106.475H76.2842C76.2842 105.954 76.3984 105.478 76.627 105.046C76.8555 104.615 77.194 104.272 77.6426 104.018C78.0911 103.76 78.6434 103.631 79.2993 103.631C79.8833 103.631 80.3826 103.735 80.7974 103.942C81.2121 104.145 81.5295 104.433 81.7495 104.805C81.9738 105.173 82.0859 105.605 82.0859 106.1C82.0859 106.371 82.0394 106.646 81.9463 106.925C81.8574 107.2 81.7326 107.475 81.5718 107.75C81.4152 108.026 81.2311 108.296 81.0195 108.563C80.8122 108.83 80.59 109.092 80.353 109.35L77.8774 112.035H82.5112ZM84.936 112.016H85.0566C85.7337 112.016 86.2839 111.921 86.707 111.73C87.1302 111.54 87.4561 111.284 87.6846 110.962C87.9131 110.641 88.0697 110.279 88.1543 109.877C88.2389 109.471 88.2812 109.054 88.2812 108.626V107.211C88.2812 106.792 88.2326 106.42 88.1353 106.094C88.0422 105.768 87.911 105.495 87.7417 105.275C87.5767 105.055 87.3883 104.888 87.1768 104.773C86.9652 104.659 86.7409 104.602 86.5039 104.602C86.2331 104.602 85.9897 104.657 85.7739 104.767C85.5623 104.873 85.3825 105.023 85.2344 105.218C85.0905 105.412 84.9805 105.641 84.9043 105.903C84.8281 106.166 84.79 106.451 84.79 106.76C84.79 107.035 84.8239 107.302 84.8916 107.56C84.9593 107.818 85.063 108.051 85.2026 108.258C85.3423 108.466 85.5158 108.631 85.7231 108.753C85.9347 108.872 86.1823 108.931 86.4658 108.931C86.7282 108.931 86.9736 108.88 87.2021 108.779C87.4349 108.673 87.6401 108.531 87.8179 108.354C87.9998 108.172 88.1437 107.966 88.2495 107.738C88.3595 107.509 88.423 107.27 88.4399 107.021H88.9985C88.9985 107.372 88.9287 107.719 88.7891 108.062C88.6536 108.4 88.4632 108.709 88.2178 108.988C87.9723 109.268 87.6846 109.492 87.3545 109.661C87.0244 109.826 86.6647 109.909 86.2754 109.909C85.8184 109.909 85.4227 109.82 85.0884 109.642C84.7541 109.464 84.479 109.227 84.2632 108.931C84.0516 108.635 83.8929 108.305 83.7871 107.941C83.6855 107.573 83.6348 107.2 83.6348 106.824C83.6348 106.384 83.6961 105.971 83.8188 105.586C83.9416 105.201 84.1235 104.862 84.3647 104.57C84.606 104.274 84.9043 104.043 85.2598 103.878C85.6195 103.713 86.0342 103.631 86.5039 103.631C87.0329 103.631 87.4836 103.737 87.856 103.948C88.2284 104.16 88.5309 104.443 88.7637 104.799C89.0007 105.154 89.1742 105.554 89.2842 105.999C89.3942 106.443 89.4492 106.9 89.4492 107.37V107.795C89.4492 108.273 89.4175 108.76 89.354 109.255C89.2948 109.746 89.1784 110.215 89.0049 110.664C88.8356 111.113 88.5881 111.515 88.2622 111.87C87.9364 112.221 87.5111 112.501 86.9863 112.708C86.4658 112.911 85.8226 113.013 85.0566 113.013H84.936V112.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M42.2573 127.643V129.052C42.2573 129.809 42.1896 130.448 42.0542 130.969C41.9188 131.489 41.7241 131.908 41.4702 132.226C41.2163 132.543 40.9095 132.774 40.5498 132.917C40.1943 133.057 39.7923 133.127 39.3438 133.127C38.9883 133.127 38.6603 133.083 38.3599 132.994C38.0594 132.905 37.7886 132.763 37.5474 132.568C37.3104 132.369 37.1073 132.111 36.938 131.794C36.7687 131.477 36.6396 131.091 36.5508 130.639C36.4619 130.186 36.4175 129.657 36.4175 129.052V127.643C36.4175 126.885 36.4852 126.25 36.6206 125.738C36.7603 125.226 36.957 124.816 37.2109 124.507C37.4648 124.194 37.7695 123.969 38.125 123.834C38.4847 123.699 38.8867 123.631 39.3311 123.631C39.6908 123.631 40.0208 123.675 40.3213 123.764C40.626 123.849 40.8968 123.986 41.1338 124.177C41.3708 124.363 41.5718 124.613 41.7368 124.926C41.9061 125.235 42.0352 125.613 42.124 126.062C42.2129 126.511 42.2573 127.037 42.2573 127.643ZM41.0767 129.242V127.446C41.0767 127.031 41.0513 126.667 41.0005 126.354C40.9539 126.037 40.8841 125.766 40.791 125.542C40.6979 125.317 40.5794 125.135 40.4355 124.996C40.2959 124.856 40.133 124.754 39.9468 124.691C39.7648 124.623 39.5596 124.589 39.3311 124.589C39.0518 124.589 38.8042 124.642 38.5884 124.748C38.3726 124.85 38.1906 125.013 38.0425 125.237C37.8986 125.461 37.7886 125.755 37.7124 126.119C37.6362 126.483 37.5981 126.925 37.5981 127.446V129.242C37.5981 129.657 37.6214 130.023 37.668 130.34C37.7188 130.658 37.7928 130.933 37.8901 131.166C37.9875 131.394 38.106 131.582 38.2456 131.73C38.3853 131.879 38.5461 131.989 38.728 132.061C38.9142 132.128 39.1195 132.162 39.3438 132.162C39.6315 132.162 39.8833 132.107 40.0991 131.997C40.3149 131.887 40.4948 131.716 40.6387 131.483C40.7868 131.246 40.8968 130.943 40.9688 130.575C41.0407 130.203 41.0767 129.758 41.0767 129.242ZM45.2534 128.601L44.314 128.36L44.7773 123.758H49.519V124.843H45.7739L45.4946 127.357C45.6639 127.26 45.8776 127.169 46.1357 127.084C46.3981 126.999 46.6986 126.957 47.0371 126.957C47.4645 126.957 47.8475 127.031 48.186 127.179C48.5246 127.323 48.8123 127.53 49.0493 127.801C49.2905 128.072 49.4746 128.398 49.6016 128.779C49.7285 129.16 49.792 129.585 49.792 130.055C49.792 130.499 49.7306 130.907 49.6079 131.28C49.4894 131.652 49.3096 131.978 49.0684 132.257C48.8271 132.532 48.5225 132.746 48.1543 132.898C47.7904 133.051 47.3608 133.127 46.8657 133.127C46.4933 133.127 46.14 133.076 45.8057 132.975C45.4756 132.869 45.1794 132.71 44.917 132.499C44.6589 132.283 44.4473 132.016 44.2822 131.699C44.1214 131.377 44.0199 131 43.9775 130.569H45.0947C45.1455 130.916 45.2471 131.208 45.3994 131.445C45.5518 131.682 45.7507 131.862 45.9961 131.984C46.2458 132.103 46.5356 132.162 46.8657 132.162C47.145 132.162 47.3926 132.113 47.6084 132.016C47.8242 131.919 48.0062 131.779 48.1543 131.597C48.3024 131.415 48.4146 131.195 48.4907 130.937C48.5711 130.679 48.6113 130.389 48.6113 130.067C48.6113 129.775 48.5711 129.505 48.4907 129.255C48.4103 129.005 48.2897 128.787 48.1289 128.601C47.9723 128.415 47.7798 128.271 47.5513 128.169C47.3228 128.064 47.0604 128.011 46.7642 128.011C46.3706 128.011 46.0723 128.064 45.8691 128.169C45.6702 128.275 45.465 128.419 45.2534 128.601Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M78.1694 127.801H79.0073C79.4178 127.801 79.7563 127.734 80.0229 127.598C80.2938 127.458 80.4948 127.27 80.626 127.033C80.7614 126.792 80.8291 126.521 80.8291 126.221C80.8291 125.865 80.7699 125.567 80.6514 125.326C80.5329 125.084 80.3551 124.903 80.1182 124.78C79.8812 124.657 79.5807 124.596 79.2168 124.596C78.8867 124.596 78.5947 124.661 78.3408 124.792C78.0911 124.919 77.8944 125.101 77.7505 125.338C77.6108 125.575 77.541 125.855 77.541 126.176H76.3667C76.3667 125.707 76.4852 125.279 76.7222 124.894C76.9591 124.509 77.2913 124.202 77.7188 123.974C78.1504 123.745 78.6497 123.631 79.2168 123.631C79.7754 123.631 80.2642 123.73 80.6831 123.929C81.1021 124.124 81.4279 124.416 81.6606 124.805C81.8934 125.19 82.0098 125.671 82.0098 126.246C82.0098 126.479 81.9548 126.729 81.8447 126.995C81.7389 127.257 81.5718 127.503 81.3433 127.731C81.119 127.96 80.827 128.148 80.4673 128.296C80.1076 128.44 79.6759 128.512 79.1724 128.512H78.1694V127.801ZM78.1694 128.766V128.062H79.1724C79.7606 128.062 80.2472 128.131 80.6323 128.271C81.0174 128.411 81.32 128.597 81.54 128.83C81.7643 129.062 81.9209 129.318 82.0098 129.598C82.1029 129.873 82.1494 130.148 82.1494 130.423C82.1494 130.854 82.0754 131.237 81.9272 131.572C81.7834 131.906 81.5781 132.19 81.3115 132.422C81.0492 132.655 80.7402 132.831 80.3848 132.949C80.0293 133.068 79.6421 133.127 79.2231 133.127C78.8211 133.127 78.4424 133.07 78.0869 132.956C77.7357 132.841 77.4246 132.676 77.1538 132.46C76.883 132.24 76.6714 131.972 76.519 131.654C76.3667 131.333 76.2905 130.967 76.2905 130.556H77.4648C77.4648 130.878 77.5347 131.159 77.6743 131.4C77.8182 131.642 78.0213 131.83 78.2837 131.965C78.5503 132.097 78.8634 132.162 79.2231 132.162C79.5828 132.162 79.8918 132.101 80.1499 131.978C80.4123 131.851 80.6133 131.661 80.7529 131.407C80.8968 131.153 80.9688 130.833 80.9688 130.448C80.9688 130.063 80.8883 129.748 80.7275 129.502C80.5667 129.253 80.3382 129.069 80.042 128.95C79.75 128.827 79.4051 128.766 79.0073 128.766H78.1694ZM89.5698 127.643V129.052C89.5698 129.809 89.5021 130.448 89.3667 130.969C89.2313 131.489 89.0366 131.908 88.7827 132.226C88.5288 132.543 88.222 132.774 87.8623 132.917C87.5068 133.057 87.1048 133.127 86.6562 133.127C86.3008 133.127 85.9728 133.083 85.6724 132.994C85.3719 132.905 85.1011 132.763 84.8599 132.568C84.6229 132.369 84.4198 132.111 84.2505 131.794C84.0812 131.477 83.9521 131.091 83.8633 130.639C83.7744 130.186 83.73 129.657 83.73 129.052V127.643C83.73 126.885 83.7977 126.25 83.9331 125.738C84.0728 125.226 84.2695 124.816 84.5234 124.507C84.7773 124.194 85.082 123.969 85.4375 123.834C85.7972 123.699 86.1992 123.631 86.6436 123.631C87.0033 123.631 87.3333 123.675 87.6338 123.764C87.9385 123.849 88.2093 123.986 88.4463 124.177C88.6833 124.363 88.8843 124.613 89.0493 124.926C89.2186 125.235 89.3477 125.613 89.4365 126.062C89.5254 126.511 89.5698 127.037 89.5698 127.643ZM88.3892 129.242V127.446C88.3892 127.031 88.3638 126.667 88.313 126.354C88.2664 126.037 88.1966 125.766 88.1035 125.542C88.0104 125.317 87.8919 125.135 87.748 124.996C87.6084 124.856 87.4455 124.754 87.2593 124.691C87.0773 124.623 86.8721 124.589 86.6436 124.589C86.3643 124.589 86.1167 124.642 85.9009 124.748C85.6851 124.85 85.5031 125.013 85.355 125.237C85.2111 125.461 85.1011 125.755 85.0249 126.119C84.9487 126.483 84.9106 126.925 84.9106 127.446V129.242C84.9106 129.657 84.9339 130.023 84.9805 130.34C85.0312 130.658 85.1053 130.933 85.2026 131.166C85.3 131.394 85.4185 131.582 85.5581 131.73C85.6978 131.879 85.8586 131.989 86.0405 132.061C86.2267 132.128 86.432 132.162 86.6562 132.162C86.944 132.162 87.1958 132.107 87.4116 131.997C87.6274 131.887 87.8073 131.716 87.9512 131.483C88.0993 131.246 88.2093 130.943 88.2812 130.575C88.3532 130.203 88.3892 129.758 88.3892 129.242Z",fill:"#0F172A"})),{ToolBarFields:gs,BlockName:Zs,BlockLabel:ys,BlockDescription:Es,BlockAdvancedValue:ws,AdvancedFields:vs,FieldWrapper:_s,AdvancedInspectorControl:ks,ClientSideMacros:js,ValidationToggleGroup:xs,ValidationBlockMessage:Fs,AttributeHelp:Bs}=JetFBComponents,{useInsertMacro:As,useIsAdvancedValidation:Ps,useUniqueNameOnDuplicate:Ss}=JetFBHooks,{__:Ns}=wp.i18n,{InspectorControls:Is,useBlockProps:Ts}=wp.blockEditor,{TextControl:Os,PanelBody:Js,__experimentalInputControl:Rs,ExternalLink:qs}=wp.components;let{InputControl:Ds}=wp.components;void 0===Ds&&(Ds=Rs);const zs=JSON.parse('{"apiVersion":3,"name":"jet-forms/time-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","time"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Time Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"min":{"type":"string","default":""},"max":{"type":"string","default":""},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Us}=wp.i18n,{createBlock:Gs}=wp.blocks,{name:Ws,icon:Ks=""}=zs,$s={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ks}}),description:Us("Allow the user to enter the desirable time. Let them type the time manually or choose from the convenient drop-down timer.","jet-form-builder"),edit:function(e){const{isSelected:C,attributes:t,setAttributes:l,editProps:{uniqKey:r}}=e,n=Ts(),[a,i]=As("min"),[o,s]=As("max"),c=Ps();if(Ss(),t.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ls);const d=(0,h.createElement)(h.Fragment,null,Ns("Plain date should be in hh:mm format.","jet-form-builder")," ",Ns("Or you can use","jet-form-builder")," ",(0,h.createElement)(qs,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},Ns("macros","jet-form-builder"))," ",Ns("and","jet-form-builder")," ",(0,h.createElement)(qs,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},Ns("filters","jet-form-builder")),".");return[(0,h.createElement)(gs,{key:r("ToolBarFields"),...e}),C&&(0,h.createElement)(Is,{key:r("InspectorControls")},(0,h.createElement)(Js,{title:Ns("General","jet-form-builder")},(0,h.createElement)(ys,null),(0,h.createElement)(Zs,null),(0,h.createElement)(Es,null)),(0,h.createElement)(Js,{title:Ns("Value","jet-form-builder")},(0,h.createElement)(ws,{help:d,style:{marginBottom:"1em"}}),(0,h.createElement)(js,null,(0,h.createElement)(ks,{value:t.min,label:Ns("Starting from time","jet-form-builder"),onChangePreset:e=>l({min:e}),onChangeMacros:i},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Os,{id:e,ref:a,className:"jet-fb m-unset",value:t.min,onChange:e=>l({min:e})}),(0,h.createElement)(Bs,null,d))),(0,h.createElement)(ks,{value:t.max,label:Ns("Limit time to","jet-form-builder"),onChangePreset:e=>l({max:e}),onChangeMacros:s},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Os,{id:e,ref:o,className:"jet-fb m-unset",value:t.max,onChange:e=>l({max:e})}),(0,h.createElement)(Bs,null,d))))),(0,h.createElement)(Js,{title:Ns("Validation","jet-form-builder")},(0,h.createElement)(xs,null),c&&(0,h.createElement)(h.Fragment,null,Boolean(t.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Fs,{name:"date_min"})),Boolean(t.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Fs,{name:"date_max"})),(0,h.createElement)(Fs,{name:"empty"}))),(0,h.createElement)(vs,null)),(0,h.createElement)("div",{...n,key:r("viewBlock")},(0,h.createElement)(_s,{key:r("FieldWrapper"),...e},(0,h.createElement)(Os,{onChange:()=>{},className:"jet-form-builder__field-preview",key:r("place_holder_block"),placeholder:'Input type="time"'})))]},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Gs("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/datetime-field","jet-forms/date-field"],transform:e=>Gs(Ws,{...e}),priority:0}]}},Ys=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,h.createElement)("g",{clipPath:"url(#clip0_75_1400)"},(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V144H15V19Z",fill:"white"}),(0,h.createElement)("path",{d:"M15 8H283.061V85H15V8Z",fill:"url(#paint0_linear_75_1400)"}),(0,h.createElement)("path",{d:"M15 8H283.061V85H15V8Z",fill:"url(#paint1_linear_75_1400)"}),(0,h.createElement)("g",{filter:"url(#filter0_d_75_1400)"},(0,h.createElement)("path",{d:"M219 14.2974C219 15.8887 218.421 17.4148 217.389 18.54C216.358 19.6652 214.959 20.2974 213.5 20.2974C212.041 20.2974 210.642 19.6652 209.611 18.54C208.579 17.4148 208 15.8887 208 14.2974L219 14.2974Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M219.5 14.2974V13.7974L219 13.7974L208 13.7974L207.5 13.7974L207.5 14.2974C207.5 16.0079 208.122 17.6562 209.242 18.8779C210.364 20.101 211.894 20.7974 213.5 20.7974C215.106 20.7974 216.636 20.101 217.758 18.8779C218.878 17.6562 219.5 16.0079 219.5 14.2974Z",stroke:"white"})),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1400)"},(0,h.createElement)("path",{d:"M35.0654 97.4038L33.9281 96.2664C33.7385 96.0769 33.4323 96.0769 33.2428 96.2664L31.7264 97.7829L30.7883 96.8545L30.103 97.5398L30.7932 98.23L26.4578 102.565V104.874H28.7664L33.1018 100.539L33.792 101.229L34.4773 100.544L33.5441 99.6103L35.0606 98.0939C35.255 97.8995 35.255 97.5933 35.0654 97.4038ZM28.363 103.902L27.4298 102.969L31.3473 99.0514L32.2804 99.9846L28.363 103.902Z",fill:"#64748B"})),(0,h.createElement)("circle",{cx:"47.8098",cy:"100.5",r:"7.5",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"272.69",y:"97.584",width:"5.8324",height:"213",rx:"2.9162",transform:"rotate(90 272.69 97.584)",fill:"url(#paint2_linear_75_1400)"}),(0,h.createElement)("circle",{cx:"182",cy:"100.742",r:"5.5",transform:"rotate(90 182 100.742)",fill:"white",stroke:"#64748B"}),(0,h.createElement)("rect",{x:"25.5",y:"114.333",width:"120",height:"19.4134",rx:"2.4162",fill:"white",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M67.4553 127.694L68.8372 120.585H69.5403L68.1536 127.694H67.4553ZM69.4426 127.694L70.8293 120.585H71.5276L70.1409 127.694H69.4426ZM72.1233 123.295H67.0452V122.616H72.1233V123.295ZM71.7571 125.692H66.6741V125.019H71.7571V125.692ZM77.6506 125.302V126.044H72.5139V125.512L75.6975 120.585H76.4348L75.6438 122.011L73.5393 125.302H77.6506ZM76.6594 120.585V127.694H75.7561V120.585H76.6594ZM83.1292 126.952V127.694H78.4758V127.045L80.8049 124.452C81.0914 124.133 81.3127 123.863 81.469 123.642C81.6285 123.417 81.7392 123.217 81.801 123.041C81.8661 122.862 81.8987 122.68 81.8987 122.494C81.8987 122.26 81.8499 122.048 81.7522 121.859C81.6578 121.667 81.5178 121.514 81.3323 121.4C81.1467 121.286 80.9221 121.229 80.6584 121.229C80.3427 121.229 80.079 121.291 79.8674 121.415C79.6591 121.535 79.5028 121.705 79.3987 121.923C79.2945 122.141 79.2424 122.392 79.2424 122.675H78.3391C78.3391 122.274 78.427 121.908 78.6028 121.576C78.7786 121.244 79.039 120.98 79.384 120.785C79.7291 120.587 80.1539 120.487 80.6584 120.487C81.1077 120.487 81.4918 120.567 81.8108 120.727C82.1298 120.883 82.3739 121.104 82.5432 121.391C82.7157 121.674 82.802 122.006 82.802 122.387C82.802 122.595 82.7662 122.807 82.6946 123.021C82.6262 123.233 82.5302 123.445 82.4065 123.656C82.2861 123.868 82.1444 124.076 81.9817 124.281C81.8222 124.486 81.6513 124.688 81.469 124.887L79.5647 126.952H83.1292ZM88.6907 120.585V121.093L85.7463 127.694H84.7942L87.7336 121.327H83.886V120.585H88.6907ZM94.3792 126.952V127.694H89.7258V127.045L92.0549 124.452C92.3414 124.133 92.5627 123.863 92.719 123.642C92.8785 123.417 92.9892 123.217 93.051 123.041C93.1161 122.862 93.1487 122.68 93.1487 122.494C93.1487 122.26 93.0999 122.048 93.0022 121.859C92.9078 121.667 92.7678 121.514 92.5823 121.4C92.3967 121.286 92.1721 121.229 91.9084 121.229C91.5927 121.229 91.329 121.291 91.1174 121.415C90.9091 121.535 90.7528 121.705 90.6487 121.923C90.5445 122.141 90.4924 122.392 90.4924 122.675H89.5891C89.5891 122.274 89.677 121.908 89.8528 121.576C90.0286 121.244 90.289 120.98 90.634 120.785C90.9791 120.587 91.4039 120.487 91.9084 120.487C92.3577 120.487 92.7418 120.567 93.0608 120.727C93.3798 120.883 93.6239 121.104 93.7932 121.391C93.9657 121.674 94.052 122.006 94.052 122.387C94.052 122.595 94.0162 122.807 93.9446 123.021C93.8762 123.233 93.7802 123.445 93.6565 123.656C93.5361 123.868 93.3944 124.076 93.2317 124.281C93.0722 124.486 92.9013 124.688 92.719 124.887L90.8147 126.952H94.3792ZM96.5227 120.585V127.694H95.5803V120.585H96.5227ZM99.5012 123.783V124.555H96.3176V123.783H99.5012ZM99.9846 120.585V121.356H96.3176V120.585H99.9846ZM101.772 126.938H101.865C102.385 126.938 102.809 126.864 103.134 126.718C103.46 126.571 103.71 126.374 103.886 126.127C104.062 125.88 104.182 125.601 104.247 125.292C104.312 124.979 104.345 124.659 104.345 124.33V123.241C104.345 122.919 104.308 122.632 104.233 122.382C104.161 122.131 104.06 121.921 103.93 121.752C103.803 121.583 103.658 121.454 103.495 121.366C103.333 121.278 103.16 121.234 102.978 121.234C102.769 121.234 102.582 121.277 102.416 121.361C102.253 121.443 102.115 121.558 102.001 121.708C101.891 121.858 101.806 122.034 101.747 122.235C101.689 122.437 101.659 122.657 101.659 122.895C101.659 123.106 101.685 123.311 101.738 123.51C101.79 123.708 101.869 123.887 101.977 124.047C102.084 124.206 102.218 124.333 102.377 124.428C102.54 124.519 102.73 124.564 102.948 124.564C103.15 124.564 103.339 124.525 103.515 124.447C103.694 124.366 103.852 124.257 103.989 124.12C104.128 123.98 104.239 123.822 104.321 123.646C104.405 123.471 104.454 123.287 104.467 123.095H104.897C104.897 123.365 104.843 123.632 104.736 123.896C104.631 124.156 104.485 124.394 104.296 124.608C104.107 124.823 103.886 124.996 103.632 125.126C103.378 125.253 103.101 125.316 102.802 125.316C102.45 125.316 102.146 125.248 101.889 125.111C101.632 124.975 101.42 124.792 101.254 124.564C101.091 124.337 100.969 124.083 100.888 123.803C100.81 123.52 100.771 123.233 100.771 122.943C100.771 122.605 100.818 122.287 100.912 121.991C101.007 121.695 101.147 121.435 101.332 121.21C101.518 120.982 101.747 120.805 102.021 120.678C102.297 120.551 102.616 120.487 102.978 120.487C103.385 120.487 103.731 120.569 104.018 120.731C104.304 120.894 104.537 121.112 104.716 121.386C104.898 121.659 105.032 121.967 105.116 122.309C105.201 122.65 105.243 123.002 105.243 123.363V123.69C105.243 124.058 105.219 124.433 105.17 124.813C105.125 125.191 105.035 125.552 104.902 125.897C104.771 126.243 104.581 126.552 104.33 126.825C104.08 127.095 103.753 127.31 103.349 127.47C102.948 127.626 102.454 127.704 101.865 127.704H101.772V126.938Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"152",y:"113.833",width:"120.835",height:"20.4134",rx:"2.9162",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M260.898 122.448L262.695 120.654L264.493 122.448L265.045 121.896L262.695 119.546L260.346 121.896L260.898 122.448Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M264.493 126.043L262.696 127.836L260.898 126.043L260.346 126.595L262.696 128.944L265.045 126.595L264.493 126.043Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M209.882 123.288V124.055H206.034V123.288H209.882ZM206.181 120.232V127.341H205.238V120.232H206.181ZM210.702 120.232V127.341H209.765V120.232H210.702ZM216.894 126.574V127.341H213.129V126.574H216.894ZM213.319 120.232V127.341H212.377V120.232H213.319ZM216.396 123.288V124.055H213.129V123.288H216.396ZM216.845 120.232V121.003H213.129V120.232H216.845ZM218.671 120.232L220.38 122.956L222.089 120.232H223.188L220.941 123.752L223.241 127.341H222.133L220.38 124.563L218.627 127.341H217.519L219.818 123.752L217.572 120.232H218.671Z",fill:"#64748B"})),(0,h.createElement)("defs",null,(0,h.createElement)("filter",{id:"filter0_d_75_1400",x:"204.28",y:"12.3766",width:"16.683",height:"11.683",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB"},(0,h.createElement)("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),(0,h.createElement)("feColorMatrix",{in:"SourceAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",result:"hardAlpha"}),(0,h.createElement)("feOffset",{dx:"-0.878599",dy:"0.920745"}),(0,h.createElement)("feGaussianBlur",{stdDeviation:"0.920745"}),(0,h.createElement)("feComposite",{in2:"hardAlpha",operator:"out"}),(0,h.createElement)("feColorMatrix",{type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"}),(0,h.createElement)("feBlend",{mode:"normal",in2:"BackgroundImageFix",result:"effect1_dropShadow_75_1400"}),(0,h.createElement)("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_dropShadow_75_1400",result:"shape"})),(0,h.createElement)("linearGradient",{id:"paint0_linear_75_1400",x1:"15",y1:"85",x2:"15",y2:"8",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",null),(0,h.createElement)("stop",{offset:"1",stopColor:"#C4C4C4",stopOpacity:"0"})),(0,h.createElement)("linearGradient",{id:"paint1_linear_75_1400",x1:"15",y1:"8",x2:"283.061",y2:"8.00001",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",{stopColor:"#4F46E5",stopOpacity:"0"}),(0,h.createElement)("stop",{offset:"1",stopColor:"#4272F9"})),(0,h.createElement)("linearGradient",{id:"paint2_linear_75_1400",x1:"275.82",y1:"310.274",x2:"275.896",y2:"97.274",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",{offset:"0.0521219",stopColor:"#FF0000"}),(0,h.createElement)("stop",{offset:"0.164776",stopColor:"#FF8A00"}),(0,h.createElement)("stop",{offset:"0.27743",stopColor:"#FFE600"}),(0,h.createElement)("stop",{offset:"0.393479",stopColor:"#14FF00"}),(0,h.createElement)("stop",{offset:"0.493654",stopColor:"#00A3FF"}),(0,h.createElement)("stop",{offset:"0.611759",stopColor:"#0500FF"}),(0,h.createElement)("stop",{offset:"0.722596",stopColor:"#AD00FF"}),(0,h.createElement)("stop",{offset:"0.83525",stopColor:"#FF00C7"}),(0,h.createElement)("stop",{offset:"0.946088",stopColor:"#FF0000"})),(0,h.createElement)("clipPath",{id:"clip0_75_1400"},(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V144H15V19Z",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1400"},(0,h.createElement)("rect",{width:"11.6648",height:"11.6648",fill:"white",transform:"translate(25 94.6675)"})))),{AdvancedFields:Xs,GeneralFields:Qs,ToolBarFields:ec,FieldWrapper:Cc,FieldSettingsWrapper:tc}=JetFBComponents,{useUniqKey:lc,useUniqueNameOnDuplicate:rc}=JetFBHooks,{__experimentalInputControl:nc}=wp.components,{InspectorControls:ac,useBlockProps:ic}=wp.blockEditor;let{InputControl:oc}=wp.components;void 0===oc&&(oc=nc);const sc=JSON.parse('{"apiVersion":3,"name":"jet-forms/color-picker-field","category":"jet-form-builder-fields","title":"Color Picker Field","icon":"\\n\\n","keywords":["jetformbuilder","field","colorpicker","picker","input"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:cc}=wp.i18n,{createBlock:dc}=wp.blocks,{name:mc,icon:uc}=sc,pc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:uc}}),description:cc("Give your users an opportunity to design your website and pick a certain color in the form with the help of the Color Picker Field.","jet-form-builder"),edit:function(e){const C=ic(),t=lc();rc();const{isSelected:l,attributes:r}=e;return r.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ys):[(0,h.createElement)(ec,{key:t("ToolBarFields"),...e}),l&&(0,h.createElement)(ac,{key:t("InspectorControls")},(0,h.createElement)(Qs,null),(0,h.createElement)(tc,null),(0,h.createElement)(Xs,null)),(0,h.createElement)("div",{...C,key:t("viewBlock")},(0,h.createElement)(Cc,{key:t("FieldWrapper"),...e},(0,h.createElement)(oc,{className:"jet-form-builder__field-wrap jet-form-builder__field-preview",type:"color",key:"color_picker_place_holder_block",onChange:()=>{}})))]},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>dc("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>dc(mc,{...e}),priority:0}]}},fc=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M87.1279 46.3447H84.6055L84.5918 45.2852H86.8818C87.2601 45.2852 87.5905 45.2214 87.873 45.0938C88.1556 44.9661 88.3743 44.7839 88.5293 44.5469C88.6888 44.3053 88.7686 44.0182 88.7686 43.6855C88.7686 43.321 88.6979 43.0247 88.5566 42.7969C88.4199 42.5645 88.208 42.3958 87.9209 42.291C87.6383 42.1816 87.2783 42.127 86.8408 42.127H84.8994V51H83.5801V41.0469H86.8408C87.3512 41.0469 87.807 41.0993 88.208 41.2041C88.609 41.3044 88.9486 41.4639 89.2266 41.6826C89.5091 41.8968 89.7233 42.1702 89.8691 42.5029C90.015 42.8356 90.0879 43.2344 90.0879 43.6992C90.0879 44.1094 89.9831 44.4808 89.7734 44.8135C89.5638 45.1416 89.2721 45.4105 88.8984 45.6201C88.5293 45.8298 88.0964 45.9642 87.5996 46.0234L87.1279 46.3447ZM87.0664 51H84.0859L84.8311 49.9268H87.0664C87.4857 49.9268 87.8411 49.8538 88.1328 49.708C88.429 49.5622 88.6546 49.3571 88.8096 49.0928C88.9645 48.8239 89.042 48.5072 89.042 48.1426C89.042 47.7734 88.9759 47.4544 88.8438 47.1855C88.7116 46.9167 88.5042 46.7093 88.2217 46.5635C87.9391 46.4176 87.5745 46.3447 87.1279 46.3447H85.248L85.2617 45.2852H87.832L88.1123 45.668C88.5908 45.709 88.9964 45.8457 89.3291 46.0781C89.6618 46.306 89.9147 46.5977 90.0879 46.9531C90.2656 47.3086 90.3545 47.7005 90.3545 48.1289C90.3545 48.7487 90.2178 49.2728 89.9443 49.7012C89.6755 50.125 89.2949 50.4486 88.8027 50.6719C88.3105 50.8906 87.7318 51 87.0664 51ZM91.7764 47.3838V47.2266C91.7764 46.6934 91.8538 46.1989 92.0088 45.7432C92.1637 45.2829 92.387 44.8841 92.6787 44.5469C92.9704 44.2051 93.3236 43.9408 93.7383 43.7539C94.153 43.5625 94.6178 43.4668 95.1328 43.4668C95.6523 43.4668 96.1195 43.5625 96.5342 43.7539C96.9535 43.9408 97.3089 44.2051 97.6006 44.5469C97.8968 44.8841 98.1224 45.2829 98.2773 45.7432C98.4323 46.1989 98.5098 46.6934 98.5098 47.2266V47.3838C98.5098 47.917 98.4323 48.4115 98.2773 48.8672C98.1224 49.3229 97.8968 49.7217 97.6006 50.0635C97.3089 50.4007 96.9557 50.665 96.541 50.8564C96.1309 51.0433 95.666 51.1367 95.1465 51.1367C94.627 51.1367 94.1598 51.0433 93.7451 50.8564C93.3304 50.665 92.9749 50.4007 92.6787 50.0635C92.387 49.7217 92.1637 49.3229 92.0088 48.8672C91.8538 48.4115 91.7764 47.917 91.7764 47.3838ZM93.041 47.2266V47.3838C93.041 47.7529 93.0843 48.1016 93.1709 48.4297C93.2575 48.7533 93.3874 49.0404 93.5605 49.291C93.7383 49.5417 93.9593 49.7399 94.2236 49.8857C94.488 50.027 94.7956 50.0977 95.1465 50.0977C95.4928 50.0977 95.7959 50.027 96.0557 49.8857C96.32 49.7399 96.5387 49.5417 96.7119 49.291C96.8851 49.0404 97.015 48.7533 97.1016 48.4297C97.1927 48.1016 97.2383 47.7529 97.2383 47.3838V47.2266C97.2383 46.862 97.1927 46.5179 97.1016 46.1943C97.015 45.8662 96.8828 45.5768 96.7051 45.3262C96.5319 45.071 96.3132 44.8704 96.0488 44.7246C95.7891 44.5788 95.4837 44.5059 95.1328 44.5059C94.7865 44.5059 94.4811 44.5788 94.2168 44.7246C93.957 44.8704 93.7383 45.071 93.5605 45.3262C93.3874 45.5768 93.2575 45.8662 93.1709 46.1943C93.0843 46.5179 93.041 46.862 93.041 47.2266ZM99.7607 47.3838V47.2266C99.7607 46.6934 99.8382 46.1989 99.9932 45.7432C100.148 45.2829 100.371 44.8841 100.663 44.5469C100.955 44.2051 101.308 43.9408 101.723 43.7539C102.137 43.5625 102.602 43.4668 103.117 43.4668C103.637 43.4668 104.104 43.5625 104.519 43.7539C104.938 43.9408 105.293 44.2051 105.585 44.5469C105.881 44.8841 106.107 45.2829 106.262 45.7432C106.417 46.1989 106.494 46.6934 106.494 47.2266V47.3838C106.494 47.917 106.417 48.4115 106.262 48.8672C106.107 49.3229 105.881 49.7217 105.585 50.0635C105.293 50.4007 104.94 50.665 104.525 50.8564C104.115 51.0433 103.65 51.1367 103.131 51.1367C102.611 51.1367 102.144 51.0433 101.729 50.8564C101.315 50.665 100.959 50.4007 100.663 50.0635C100.371 49.7217 100.148 49.3229 99.9932 48.8672C99.8382 48.4115 99.7607 47.917 99.7607 47.3838ZM101.025 47.2266V47.3838C101.025 47.7529 101.069 48.1016 101.155 48.4297C101.242 48.7533 101.372 49.0404 101.545 49.291C101.723 49.5417 101.944 49.7399 102.208 49.8857C102.472 50.027 102.78 50.0977 103.131 50.0977C103.477 50.0977 103.78 50.027 104.04 49.8857C104.304 49.7399 104.523 49.5417 104.696 49.291C104.869 49.0404 104.999 48.7533 105.086 48.4297C105.177 48.1016 105.223 47.7529 105.223 47.3838V47.2266C105.223 46.862 105.177 46.5179 105.086 46.1943C104.999 45.8662 104.867 45.5768 104.689 45.3262C104.516 45.071 104.298 44.8704 104.033 44.7246C103.773 44.5788 103.468 44.5059 103.117 44.5059C102.771 44.5059 102.465 44.5788 102.201 44.7246C101.941 44.8704 101.723 45.071 101.545 45.3262C101.372 45.5768 101.242 45.8662 101.155 46.1943C101.069 46.5179 101.025 46.862 101.025 47.2266ZM109.352 40.5V51H108.08V40.5H109.352ZM113.87 43.6035L110.644 47.0557L108.839 48.9287L108.736 47.582L110.028 46.0371L112.325 43.6035H113.87ZM112.715 51L110.076 47.4727L110.732 46.3447L114.205 51H112.715ZM123.01 49.7354V45.9277C123.01 45.6361 122.951 45.3831 122.832 45.1689C122.718 44.9502 122.545 44.7816 122.312 44.6631C122.08 44.5446 121.793 44.4854 121.451 44.4854C121.132 44.4854 120.852 44.54 120.61 44.6494C120.373 44.7588 120.187 44.9023 120.05 45.0801C119.918 45.2578 119.852 45.4492 119.852 45.6543H118.587C118.587 45.39 118.655 45.1279 118.792 44.8682C118.929 44.6084 119.125 44.3737 119.38 44.1641C119.64 43.9499 119.95 43.7812 120.31 43.6582C120.674 43.5306 121.08 43.4668 121.526 43.4668C122.064 43.4668 122.538 43.5579 122.948 43.7402C123.363 43.9225 123.687 44.1982 123.919 44.5674C124.156 44.932 124.274 45.39 124.274 45.9414V49.3867C124.274 49.6328 124.295 49.8949 124.336 50.1729C124.382 50.4508 124.448 50.6901 124.534 50.8906V51H123.215C123.151 50.8542 123.101 50.6605 123.064 50.4189C123.028 50.1729 123.01 49.945 123.01 49.7354ZM123.229 46.5156L123.242 47.4043H121.964C121.604 47.4043 121.283 47.4339 121 47.4932C120.717 47.5479 120.48 47.6322 120.289 47.7461C120.098 47.86 119.952 48.0036 119.852 48.1768C119.751 48.3454 119.701 48.5436 119.701 48.7715C119.701 49.0039 119.754 49.2158 119.858 49.4072C119.963 49.5986 120.12 49.7513 120.33 49.8652C120.544 49.9746 120.806 50.0293 121.116 50.0293C121.504 50.0293 121.845 49.9473 122.142 49.7832C122.438 49.6191 122.673 49.4186 122.846 49.1816C123.023 48.9447 123.119 48.7145 123.133 48.4912L123.673 49.0996C123.641 49.291 123.554 49.5029 123.413 49.7354C123.272 49.9678 123.083 50.1911 122.846 50.4053C122.613 50.6149 122.335 50.7904 122.012 50.9316C121.693 51.0684 121.333 51.1367 120.932 51.1367C120.43 51.1367 119.991 51.0387 119.612 50.8428C119.239 50.6468 118.947 50.3848 118.737 50.0566C118.532 49.724 118.43 49.3525 118.43 48.9424C118.43 48.5459 118.507 48.1973 118.662 47.8965C118.817 47.5911 119.04 47.3382 119.332 47.1377C119.624 46.9326 119.975 46.7777 120.385 46.6729C120.795 46.568 121.253 46.5156 121.759 46.5156H123.229ZM127.528 45.1826V51H126.264V43.6035H127.46L127.528 45.1826ZM127.228 47.0215L126.701 47.001C126.706 46.4951 126.781 46.028 126.927 45.5996C127.073 45.1667 127.278 44.7907 127.542 44.4717C127.806 44.1527 128.121 43.9066 128.485 43.7334C128.854 43.5557 129.262 43.4668 129.709 43.4668C130.074 43.4668 130.402 43.5169 130.693 43.6172C130.985 43.7129 131.233 43.8678 131.438 44.082C131.648 44.2962 131.808 44.5742 131.917 44.916C132.026 45.2533 132.081 45.6657 132.081 46.1533V51H130.81V46.1396C130.81 45.7523 130.753 45.4424 130.639 45.21C130.525 44.973 130.358 44.8021 130.14 44.6973C129.921 44.5879 129.652 44.5332 129.333 44.5332C129.019 44.5332 128.731 44.5993 128.472 44.7314C128.216 44.8636 127.995 45.0459 127.809 45.2783C127.626 45.5107 127.483 45.7773 127.378 46.0781C127.278 46.3743 127.228 46.6888 127.228 47.0215ZM141.836 49.7354V45.9277C141.836 45.6361 141.777 45.3831 141.658 45.1689C141.544 44.9502 141.371 44.7816 141.139 44.6631C140.906 44.5446 140.619 44.4854 140.277 44.4854C139.958 44.4854 139.678 44.54 139.437 44.6494C139.2 44.7588 139.013 44.9023 138.876 45.0801C138.744 45.2578 138.678 45.4492 138.678 45.6543H137.413C137.413 45.39 137.481 45.1279 137.618 44.8682C137.755 44.6084 137.951 44.3737 138.206 44.1641C138.466 43.9499 138.776 43.7812 139.136 43.6582C139.5 43.5306 139.906 43.4668 140.353 43.4668C140.89 43.4668 141.364 43.5579 141.774 43.7402C142.189 43.9225 142.513 44.1982 142.745 44.5674C142.982 44.932 143.101 45.39 143.101 45.9414V49.3867C143.101 49.6328 143.121 49.8949 143.162 50.1729C143.208 50.4508 143.274 50.6901 143.36 50.8906V51H142.041C141.977 50.8542 141.927 50.6605 141.891 50.4189C141.854 50.1729 141.836 49.945 141.836 49.7354ZM142.055 46.5156L142.068 47.4043H140.79C140.43 47.4043 140.109 47.4339 139.826 47.4932C139.544 47.5479 139.307 47.6322 139.115 47.7461C138.924 47.86 138.778 48.0036 138.678 48.1768C138.577 48.3454 138.527 48.5436 138.527 48.7715C138.527 49.0039 138.58 49.2158 138.685 49.4072C138.789 49.5986 138.947 49.7513 139.156 49.8652C139.37 49.9746 139.632 50.0293 139.942 50.0293C140.33 50.0293 140.672 49.9473 140.968 49.7832C141.264 49.6191 141.499 49.4186 141.672 49.1816C141.85 48.9447 141.945 48.7145 141.959 48.4912L142.499 49.0996C142.467 49.291 142.381 49.5029 142.239 49.7354C142.098 49.9678 141.909 50.1911 141.672 50.4053C141.439 50.6149 141.161 50.7904 140.838 50.9316C140.519 51.0684 140.159 51.1367 139.758 51.1367C139.257 51.1367 138.817 51.0387 138.438 50.8428C138.065 50.6468 137.773 50.3848 137.563 50.0566C137.358 49.724 137.256 49.3525 137.256 48.9424C137.256 48.5459 137.333 48.1973 137.488 47.8965C137.643 47.5911 137.867 47.3382 138.158 47.1377C138.45 46.9326 138.801 46.7777 139.211 46.6729C139.621 46.568 140.079 46.5156 140.585 46.5156H142.055ZM146.354 45.0254V53.8438H145.083V43.6035H146.245L146.354 45.0254ZM151.338 47.2402V47.3838C151.338 47.9215 151.274 48.4206 151.146 48.8809C151.019 49.3366 150.832 49.7331 150.586 50.0703C150.344 50.4076 150.046 50.6696 149.69 50.8564C149.335 51.0433 148.927 51.1367 148.467 51.1367C147.997 51.1367 147.583 51.0592 147.223 50.9043C146.863 50.7493 146.557 50.5238 146.307 50.2275C146.056 49.9313 145.855 49.5758 145.705 49.1611C145.559 48.7464 145.459 48.2793 145.404 47.7598V46.9941C145.459 46.4473 145.562 45.9574 145.712 45.5244C145.862 45.0915 146.061 44.7223 146.307 44.417C146.557 44.1071 146.86 43.8724 147.216 43.7129C147.571 43.5488 147.981 43.4668 148.446 43.4668C148.911 43.4668 149.324 43.5579 149.684 43.7402C150.044 43.918 150.347 44.1732 150.593 44.5059C150.839 44.8385 151.023 45.2373 151.146 45.7021C151.274 46.1624 151.338 46.6751 151.338 47.2402ZM150.066 47.3838V47.2402C150.066 46.8711 150.028 46.5247 149.95 46.2012C149.873 45.873 149.752 45.5859 149.588 45.3398C149.428 45.0892 149.223 44.8932 148.973 44.752C148.722 44.6061 148.424 44.5332 148.077 44.5332C147.758 44.5332 147.48 44.5879 147.243 44.6973C147.011 44.8066 146.812 44.9548 146.648 45.1416C146.484 45.3239 146.35 45.5335 146.245 45.7705C146.145 46.0029 146.07 46.2445 146.02 46.4951V48.2656C146.111 48.5846 146.238 48.8854 146.402 49.168C146.566 49.446 146.785 49.6715 147.059 49.8447C147.332 50.0133 147.676 50.0977 148.091 50.0977C148.433 50.0977 148.727 50.027 148.973 49.8857C149.223 49.7399 149.428 49.5417 149.588 49.291C149.752 49.0404 149.873 48.7533 149.95 48.4297C150.028 48.1016 150.066 47.7529 150.066 47.3838ZM154.216 45.0254V53.8438H152.944V43.6035H154.106L154.216 45.0254ZM159.199 47.2402V47.3838C159.199 47.9215 159.135 48.4206 159.008 48.8809C158.88 49.3366 158.693 49.7331 158.447 50.0703C158.206 50.4076 157.907 50.6696 157.552 50.8564C157.196 51.0433 156.788 51.1367 156.328 51.1367C155.859 51.1367 155.444 51.0592 155.084 50.9043C154.724 50.7493 154.419 50.5238 154.168 50.2275C153.917 49.9313 153.717 49.5758 153.566 49.1611C153.421 48.7464 153.32 48.2793 153.266 47.7598V46.9941C153.32 46.4473 153.423 45.9574 153.573 45.5244C153.724 45.0915 153.922 44.7223 154.168 44.417C154.419 44.1071 154.722 43.8724 155.077 43.7129C155.433 43.5488 155.843 43.4668 156.308 43.4668C156.772 43.4668 157.185 43.5579 157.545 43.7402C157.905 43.918 158.208 44.1732 158.454 44.5059C158.7 44.8385 158.885 45.2373 159.008 45.7021C159.135 46.1624 159.199 46.6751 159.199 47.2402ZM157.928 47.3838V47.2402C157.928 46.8711 157.889 46.5247 157.812 46.2012C157.734 45.873 157.613 45.5859 157.449 45.3398C157.29 45.0892 157.085 44.8932 156.834 44.752C156.583 44.6061 156.285 44.5332 155.938 44.5332C155.619 44.5332 155.341 44.5879 155.104 44.6973C154.872 44.8066 154.674 44.9548 154.51 45.1416C154.346 45.3239 154.211 45.5335 154.106 45.7705C154.006 46.0029 153.931 46.2445 153.881 46.4951V48.2656C153.972 48.5846 154.1 48.8854 154.264 49.168C154.428 49.446 154.646 49.6715 154.92 49.8447C155.193 50.0133 155.537 50.0977 155.952 50.0977C156.294 50.0977 156.588 50.027 156.834 49.8857C157.085 49.7399 157.29 49.5417 157.449 49.291C157.613 49.0404 157.734 48.7533 157.812 48.4297C157.889 48.1016 157.928 47.7529 157.928 47.3838ZM160.478 47.3838V47.2266C160.478 46.6934 160.555 46.1989 160.71 45.7432C160.865 45.2829 161.088 44.8841 161.38 44.5469C161.672 44.2051 162.025 43.9408 162.439 43.7539C162.854 43.5625 163.319 43.4668 163.834 43.4668C164.354 43.4668 164.821 43.5625 165.235 43.7539C165.655 43.9408 166.01 44.2051 166.302 44.5469C166.598 44.8841 166.824 45.2829 166.979 45.7432C167.133 46.1989 167.211 46.6934 167.211 47.2266V47.3838C167.211 47.917 167.133 48.4115 166.979 48.8672C166.824 49.3229 166.598 49.7217 166.302 50.0635C166.01 50.4007 165.657 50.665 165.242 50.8564C164.832 51.0433 164.367 51.1367 163.848 51.1367C163.328 51.1367 162.861 51.0433 162.446 50.8564C162.032 50.665 161.676 50.4007 161.38 50.0635C161.088 49.7217 160.865 49.3229 160.71 48.8672C160.555 48.4115 160.478 47.917 160.478 47.3838ZM161.742 47.2266V47.3838C161.742 47.7529 161.785 48.1016 161.872 48.4297C161.959 48.7533 162.089 49.0404 162.262 49.291C162.439 49.5417 162.66 49.7399 162.925 49.8857C163.189 50.027 163.497 50.0977 163.848 50.0977C164.194 50.0977 164.497 50.027 164.757 49.8857C165.021 49.7399 165.24 49.5417 165.413 49.291C165.586 49.0404 165.716 48.7533 165.803 48.4297C165.894 48.1016 165.939 47.7529 165.939 47.3838V47.2266C165.939 46.862 165.894 46.5179 165.803 46.1943C165.716 45.8662 165.584 45.5768 165.406 45.3262C165.233 45.071 165.014 44.8704 164.75 44.7246C164.49 44.5788 164.185 44.5059 163.834 44.5059C163.488 44.5059 163.182 44.5788 162.918 44.7246C162.658 44.8704 162.439 45.071 162.262 45.3262C162.089 45.5768 161.959 45.8662 161.872 46.1943C161.785 46.5179 161.742 46.862 161.742 47.2266ZM170.171 43.6035V51H168.899V43.6035H170.171ZM168.804 41.6416C168.804 41.4365 168.865 41.2633 168.988 41.1221C169.116 40.9808 169.303 40.9102 169.549 40.9102C169.79 40.9102 169.975 40.9808 170.103 41.1221C170.235 41.2633 170.301 41.4365 170.301 41.6416C170.301 41.8376 170.235 42.0062 170.103 42.1475C169.975 42.2842 169.79 42.3525 169.549 42.3525C169.303 42.3525 169.116 42.2842 168.988 42.1475C168.865 42.0062 168.804 41.8376 168.804 41.6416ZM173.466 45.1826V51H172.201V43.6035H173.397L173.466 45.1826ZM173.165 47.0215L172.639 47.001C172.643 46.4951 172.718 46.028 172.864 45.5996C173.01 45.1667 173.215 44.7907 173.479 44.4717C173.744 44.1527 174.058 43.9066 174.423 43.7334C174.792 43.5557 175.2 43.4668 175.646 43.4668C176.011 43.4668 176.339 43.5169 176.631 43.6172C176.923 43.7129 177.171 43.8678 177.376 44.082C177.586 44.2962 177.745 44.5742 177.854 44.916C177.964 45.2533 178.019 45.6657 178.019 46.1533V51H176.747V46.1396C176.747 45.7523 176.69 45.4424 176.576 45.21C176.462 44.973 176.296 44.8021 176.077 44.6973C175.858 44.5879 175.59 44.5332 175.271 44.5332C174.956 44.5332 174.669 44.5993 174.409 44.7314C174.154 44.8636 173.933 45.0459 173.746 45.2783C173.564 45.5107 173.42 45.7773 173.315 46.0781C173.215 46.3743 173.165 46.6888 173.165 47.0215ZM183.036 43.6035V44.5742H179.037V43.6035H183.036ZM180.391 41.8057H181.655V49.168C181.655 49.4186 181.694 49.6077 181.771 49.7354C181.849 49.863 181.949 49.9473 182.072 49.9883C182.195 50.0293 182.327 50.0498 182.469 50.0498C182.574 50.0498 182.683 50.0407 182.797 50.0225C182.915 49.9997 183.004 49.9814 183.063 49.9678L183.07 51C182.97 51.0319 182.838 51.0615 182.674 51.0889C182.514 51.1208 182.321 51.1367 182.093 51.1367C181.783 51.1367 181.498 51.0752 181.238 50.9521C180.979 50.8291 180.771 50.624 180.616 50.3369C180.466 50.0452 180.391 49.6533 180.391 49.1611V41.8057ZM185.777 45.0732V51H184.506V43.6035H185.709L185.777 45.0732ZM185.518 47.0215L184.93 47.001C184.934 46.4951 185 46.028 185.128 45.5996C185.256 45.1667 185.445 44.7907 185.695 44.4717C185.946 44.1527 186.258 43.9066 186.632 43.7334C187.006 43.5557 187.438 43.4668 187.931 43.4668C188.277 43.4668 188.596 43.5169 188.888 43.6172C189.179 43.7129 189.432 43.8656 189.646 44.0752C189.861 44.2848 190.027 44.5537 190.146 44.8818C190.264 45.21 190.323 45.6064 190.323 46.0713V51H189.059V46.1328C189.059 45.7454 188.993 45.4355 188.86 45.2031C188.733 44.9707 188.55 44.8021 188.313 44.6973C188.076 44.5879 187.799 44.5332 187.479 44.5332C187.106 44.5332 186.794 44.5993 186.543 44.7314C186.292 44.8636 186.092 45.0459 185.941 45.2783C185.791 45.5107 185.682 45.7773 185.613 46.0781C185.549 46.3743 185.518 46.6888 185.518 47.0215ZM190.31 46.3242L189.462 46.584C189.466 46.1784 189.533 45.7887 189.66 45.415C189.792 45.0413 189.981 44.7087 190.228 44.417C190.478 44.1253 190.786 43.8952 191.15 43.7266C191.515 43.5534 191.932 43.4668 192.401 43.4668C192.798 43.4668 193.149 43.5192 193.454 43.624C193.764 43.7288 194.024 43.8906 194.233 44.1094C194.448 44.3236 194.609 44.5993 194.719 44.9365C194.828 45.2738 194.883 45.6748 194.883 46.1396V51H193.611V46.126C193.611 45.7113 193.545 45.39 193.413 45.1621C193.285 44.9297 193.103 44.7679 192.866 44.6768C192.634 44.5811 192.356 44.5332 192.032 44.5332C191.754 44.5332 191.508 44.5811 191.294 44.6768C191.08 44.7725 190.9 44.9046 190.754 45.0732C190.608 45.2373 190.496 45.4264 190.419 45.6406C190.346 45.8548 190.31 46.0827 190.31 46.3242ZM199.866 51.1367C199.351 51.1367 198.884 51.0501 198.465 50.877C198.05 50.6992 197.692 50.4508 197.392 50.1318C197.095 49.8128 196.868 49.4346 196.708 48.9971C196.549 48.5596 196.469 48.0811 196.469 47.5615V47.2744C196.469 46.6729 196.558 46.1374 196.735 45.668C196.913 45.194 197.155 44.793 197.46 44.4648C197.765 44.1367 198.112 43.8883 198.499 43.7197C198.886 43.5511 199.287 43.4668 199.702 43.4668C200.231 43.4668 200.687 43.5579 201.069 43.7402C201.457 43.9225 201.773 44.1777 202.02 44.5059C202.266 44.8294 202.448 45.2122 202.566 45.6543C202.685 46.0918 202.744 46.5703 202.744 47.0898V47.6572H197.221V46.625H201.479V46.5293C201.461 46.2012 201.393 45.8822 201.274 45.5723C201.16 45.2624 200.978 45.0072 200.728 44.8066C200.477 44.6061 200.135 44.5059 199.702 44.5059C199.415 44.5059 199.151 44.5674 198.909 44.6904C198.668 44.8089 198.46 44.9867 198.287 45.2236C198.114 45.4606 197.979 45.75 197.884 46.0918C197.788 46.4336 197.74 46.8278 197.74 47.2744V47.5615C197.74 47.9124 197.788 48.2428 197.884 48.5527C197.984 48.8581 198.128 49.127 198.314 49.3594C198.506 49.5918 198.736 49.7741 199.005 49.9062C199.278 50.0384 199.588 50.1045 199.935 50.1045C200.381 50.1045 200.759 50.0133 201.069 49.8311C201.379 49.6488 201.65 49.4049 201.883 49.0996L202.648 49.708C202.489 49.9495 202.286 50.1797 202.04 50.3984C201.794 50.6172 201.491 50.7949 201.131 50.9316C200.775 51.0684 200.354 51.1367 199.866 51.1367ZM205.485 45.1826V51H204.221V43.6035H205.417L205.485 45.1826ZM205.185 47.0215L204.658 47.001C204.663 46.4951 204.738 46.028 204.884 45.5996C205.03 45.1667 205.235 44.7907 205.499 44.4717C205.763 44.1527 206.078 43.9066 206.442 43.7334C206.812 43.5557 207.219 43.4668 207.666 43.4668C208.031 43.4668 208.359 43.5169 208.65 43.6172C208.942 43.7129 209.19 43.8678 209.396 44.082C209.605 44.2962 209.765 44.5742 209.874 44.916C209.983 45.2533 210.038 45.6657 210.038 46.1533V51H208.767V46.1396C208.767 45.7523 208.71 45.4424 208.596 45.21C208.482 44.973 208.315 44.8021 208.097 44.6973C207.878 44.5879 207.609 44.5332 207.29 44.5332C206.976 44.5332 206.688 44.5993 206.429 44.7314C206.174 44.8636 205.952 45.0459 205.766 45.2783C205.583 45.5107 205.44 45.7773 205.335 46.0781C205.235 46.3743 205.185 46.6888 205.185 47.0215ZM215.056 43.6035V44.5742H211.057V43.6035H215.056ZM212.41 41.8057H213.675V49.168C213.675 49.4186 213.714 49.6077 213.791 49.7354C213.868 49.863 213.969 49.9473 214.092 49.9883C214.215 50.0293 214.347 50.0498 214.488 50.0498C214.593 50.0498 214.702 50.0407 214.816 50.0225C214.935 49.9997 215.024 49.9814 215.083 49.9678L215.09 51C214.99 51.0319 214.857 51.0615 214.693 51.0889C214.534 51.1208 214.34 51.1367 214.112 51.1367C213.802 51.1367 213.518 51.0752 213.258 50.9521C212.998 50.8291 212.791 50.624 212.636 50.3369C212.485 50.0452 212.41 49.6533 212.41 49.1611V41.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M63.2007 70.707V80H62.0264V72.1733L59.6587 73.0366V71.9766L63.0166 70.707H63.2007Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"51.7295",y:"64.5",width:"21",height:"21",rx:"10.5",stroke:"#4272F9"}),(0,h.createElement)("rect",{x:"77.7295",y:"74.5",width:"55.7706",height:"1",stroke:"#4272F9"}),(0,h.createElement)("rect",{x:"138",y:"64",width:"22",height:"22",rx:"11",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M152.168 79.0352V80H146.118V79.1558L149.146 75.7852C149.519 75.3704 149.806 75.0192 150.01 74.7314C150.217 74.4395 150.361 74.1792 150.441 73.9507C150.526 73.7179 150.568 73.481 150.568 73.2397C150.568 72.9351 150.505 72.66 150.378 72.4146C150.255 72.1649 150.073 71.966 149.832 71.8179C149.591 71.6698 149.299 71.5957 148.956 71.5957C148.545 71.5957 148.203 71.6761 147.927 71.8369C147.657 71.9935 147.454 72.2135 147.318 72.4971C147.183 72.7806 147.115 73.1064 147.115 73.4746H145.941C145.941 72.9541 146.055 72.478 146.283 72.0464C146.512 71.6147 146.851 71.272 147.299 71.0181C147.748 70.7599 148.3 70.6309 148.956 70.6309C149.54 70.6309 150.039 70.7345 150.454 70.9419C150.869 71.145 151.186 71.4328 151.406 71.8052C151.63 72.1733 151.742 72.605 151.742 73.1001C151.742 73.3709 151.696 73.646 151.603 73.9253C151.514 74.2004 151.389 74.4754 151.228 74.7505C151.072 75.0256 150.888 75.2964 150.676 75.563C150.469 75.8296 150.247 76.092 150.01 76.3501L147.534 79.0352H152.168Z",fill:"white"}),(0,h.createElement)("rect",{x:"164",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"198.936",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"172.734",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"207.67",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"181.468",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"216.404",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"190.202",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("path",{d:"M234.596 74.8013H235.434C235.845 74.8013 236.183 74.7336 236.45 74.5981C236.721 74.4585 236.922 74.2702 237.053 74.0332C237.188 73.792 237.256 73.5212 237.256 73.2207C237.256 72.8652 237.197 72.5669 237.078 72.3257C236.96 72.0845 236.782 71.9025 236.545 71.7798C236.308 71.6571 236.008 71.5957 235.644 71.5957C235.314 71.5957 235.022 71.6613 234.768 71.7925C234.518 71.9194 234.321 72.1014 234.177 72.3384C234.038 72.5754 233.968 72.8547 233.968 73.1763H232.794C232.794 72.7065 232.912 72.2791 233.149 71.894C233.386 71.509 233.718 71.2021 234.146 70.9736C234.577 70.7451 235.077 70.6309 235.644 70.6309C236.202 70.6309 236.691 70.7303 237.11 70.9292C237.529 71.1239 237.855 71.4159 238.088 71.8052C238.32 72.1903 238.437 72.6706 238.437 73.2461C238.437 73.4788 238.382 73.7285 238.272 73.9951C238.166 74.2575 237.999 74.5029 237.77 74.7314C237.546 74.96 237.254 75.1483 236.894 75.2964C236.535 75.4403 236.103 75.5122 235.599 75.5122H234.596V74.8013ZM234.596 75.7661V75.0615H235.599C236.188 75.0615 236.674 75.1313 237.059 75.271C237.444 75.4106 237.747 75.5968 237.967 75.8296C238.191 76.0623 238.348 76.3184 238.437 76.5977C238.53 76.8727 238.576 77.1478 238.576 77.4229C238.576 77.8545 238.502 78.2375 238.354 78.5718C238.21 78.9061 238.005 79.1896 237.739 79.4224C237.476 79.6551 237.167 79.8307 236.812 79.9492C236.456 80.0677 236.069 80.127 235.65 80.127C235.248 80.127 234.869 80.0698 234.514 79.9556C234.163 79.8413 233.852 79.6763 233.581 79.4604C233.31 79.2404 233.098 78.9717 232.946 78.6543C232.794 78.3327 232.718 77.9666 232.718 77.5562H233.892C233.892 77.8778 233.962 78.1592 234.101 78.4004C234.245 78.6416 234.448 78.8299 234.711 78.9653C234.977 79.0965 235.29 79.1621 235.65 79.1621C236.01 79.1621 236.319 79.1007 236.577 78.978C236.839 78.8511 237.04 78.6606 237.18 78.4067C237.324 78.1528 237.396 77.8333 237.396 77.4482C237.396 77.0632 237.315 76.7479 237.155 76.5024C236.994 76.2528 236.765 76.0687 236.469 75.9502C236.177 75.8275 235.832 75.7661 235.434 75.7661H234.596Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"225.271",y:"64.5",width:"21",height:"21",rx:"10.5",stroke:"#64748B"}),(0,h.createElement)("path",{d:"M47.2939 97.8979V101.281C47.1797 101.451 46.9977 101.641 46.748 101.853C46.4984 102.06 46.1535 102.242 45.7134 102.398C45.2775 102.551 44.7147 102.627 44.0249 102.627C43.4621 102.627 42.9437 102.53 42.4697 102.335C42 102.136 41.5916 101.848 41.2446 101.472C40.9019 101.091 40.6353 100.63 40.4448 100.088C40.2586 99.542 40.1655 98.9242 40.1655 98.2344V97.5171C40.1655 96.8273 40.2459 96.2116 40.4067 95.6699C40.5718 95.1283 40.813 94.6691 41.1304 94.2925C41.4478 93.9116 41.8371 93.6239 42.2983 93.4292C42.7596 93.2303 43.2886 93.1309 43.8853 93.1309C44.592 93.1309 45.1823 93.2536 45.6562 93.499C46.1344 93.7402 46.5068 94.0745 46.7734 94.502C47.0443 94.9294 47.2178 95.416 47.2939 95.9619H46.0688C46.0138 95.6276 45.9038 95.3229 45.7388 95.0479C45.578 94.7728 45.3473 94.5527 45.0469 94.3877C44.7464 94.2184 44.3592 94.1338 43.8853 94.1338C43.4578 94.1338 43.0876 94.2121 42.7744 94.3687C42.4613 94.5252 42.2031 94.7495 42 95.0415C41.7969 95.3335 41.6445 95.6868 41.543 96.1016C41.4456 96.5163 41.397 96.9839 41.397 97.5044V98.2344C41.397 98.7676 41.4583 99.2437 41.5811 99.6626C41.708 100.082 41.8879 100.439 42.1206 100.735C42.3534 101.027 42.6305 101.25 42.9521 101.402C43.278 101.554 43.6377 101.63 44.0312 101.63C44.4671 101.63 44.8205 101.594 45.0913 101.522C45.3621 101.446 45.5737 101.357 45.7261 101.256C45.8784 101.15 45.9948 101.051 46.0752 100.958V98.8882H43.936V97.8979H47.2939ZM51.9976 102.627C51.5194 102.627 51.0856 102.547 50.6963 102.386C50.3112 102.221 49.979 101.99 49.6997 101.694C49.4246 101.398 49.2131 101.046 49.0649 100.64C48.9168 100.234 48.8428 99.7896 48.8428 99.3071V99.0405C48.8428 98.4819 48.9253 97.9847 49.0903 97.5488C49.2554 97.1087 49.4797 96.7363 49.7632 96.4316C50.0467 96.127 50.3683 95.8963 50.728 95.7397C51.0877 95.5832 51.4601 95.5049 51.8452 95.5049C52.3361 95.5049 52.7593 95.5895 53.1147 95.7588C53.4744 95.9281 53.7686 96.165 53.9971 96.4697C54.2256 96.7702 54.3949 97.1257 54.5049 97.5361C54.6149 97.9424 54.6699 98.3867 54.6699 98.8691V99.396H49.541V98.4375H53.4956V98.3486C53.4787 98.0439 53.4152 97.7477 53.3052 97.46C53.1994 97.1722 53.0301 96.9352 52.7974 96.749C52.5646 96.5628 52.2472 96.4697 51.8452 96.4697C51.5786 96.4697 51.3332 96.5269 51.1089 96.6411C50.8846 96.7511 50.6921 96.9162 50.5312 97.1362C50.3704 97.3563 50.2456 97.625 50.1567 97.9424C50.0679 98.2598 50.0234 98.6258 50.0234 99.0405V99.3071C50.0234 99.633 50.0679 99.9398 50.1567 100.228C50.2498 100.511 50.3831 100.761 50.5566 100.977C50.7344 101.192 50.9481 101.362 51.1978 101.484C51.4517 101.607 51.7394 101.668 52.061 101.668C52.4757 101.668 52.827 101.584 53.1147 101.415C53.4025 101.245 53.6543 101.019 53.8701 100.735L54.5811 101.3C54.4329 101.525 54.2446 101.738 54.0161 101.941C53.7876 102.145 53.5062 102.31 53.1719 102.437C52.8418 102.563 52.4504 102.627 51.9976 102.627ZM57.2153 97.0981V102.5H56.041V95.6318H57.1519L57.2153 97.0981ZM56.936 98.8057L56.4473 98.7866C56.4515 98.3169 56.5213 97.8831 56.6567 97.4854C56.7922 97.0833 56.9826 96.7342 57.228 96.438C57.4735 96.1418 57.7655 95.9132 58.104 95.7524C58.4468 95.5874 58.8255 95.5049 59.2402 95.5049C59.5788 95.5049 59.8835 95.5514 60.1543 95.6445C60.4251 95.7334 60.6558 95.8773 60.8462 96.0762C61.0409 96.2751 61.189 96.5332 61.2905 96.8506C61.3921 97.1637 61.4429 97.5467 61.4429 97.9995V102.5H60.2622V97.9868C60.2622 97.6271 60.2093 97.3394 60.1035 97.1235C59.9977 96.9035 59.8433 96.7448 59.6401 96.6475C59.437 96.5459 59.1873 96.4951 58.8911 96.4951C58.5991 96.4951 58.3325 96.5565 58.0913 96.6792C57.8543 96.8019 57.6491 96.9712 57.4756 97.187C57.3063 97.4028 57.173 97.6504 57.0757 97.9297C56.9826 98.2048 56.936 98.4967 56.936 98.8057ZM66.0767 102.627C65.5985 102.627 65.1647 102.547 64.7754 102.386C64.3903 102.221 64.0581 101.99 63.7788 101.694C63.5037 101.398 63.2922 101.046 63.144 100.64C62.9959 100.234 62.9219 99.7896 62.9219 99.3071V99.0405C62.9219 98.4819 63.0044 97.9847 63.1694 97.5488C63.3345 97.1087 63.5588 96.7363 63.8423 96.4316C64.1258 96.127 64.4474 95.8963 64.8071 95.7397C65.1668 95.5832 65.5392 95.5049 65.9243 95.5049C66.4152 95.5049 66.8384 95.5895 67.1938 95.7588C67.5535 95.9281 67.8477 96.165 68.0762 96.4697C68.3047 96.7702 68.474 97.1257 68.584 97.5361C68.694 97.9424 68.749 98.3867 68.749 98.8691V99.396H63.6201V98.4375H67.5747V98.3486C67.5578 98.0439 67.4943 97.7477 67.3843 97.46C67.2785 97.1722 67.1092 96.9352 66.8765 96.749C66.6437 96.5628 66.3263 96.4697 65.9243 96.4697C65.6577 96.4697 65.4123 96.5269 65.188 96.6411C64.9637 96.7511 64.7712 96.9162 64.6104 97.1362C64.4495 97.3563 64.3247 97.625 64.2358 97.9424C64.147 98.2598 64.1025 98.6258 64.1025 99.0405V99.3071C64.1025 99.633 64.147 99.9398 64.2358 100.228C64.3289 100.511 64.4622 100.761 64.6357 100.977C64.8135 101.192 65.0272 101.362 65.2769 101.484C65.5308 101.607 65.8185 101.668 66.1401 101.668C66.5549 101.668 66.9061 101.584 67.1938 101.415C67.4816 101.245 67.7334 101.019 67.9492 100.735L68.6602 101.3C68.512 101.525 68.3237 101.738 68.0952 101.941C67.8667 102.145 67.5853 102.31 67.251 102.437C66.9209 102.563 66.5295 102.627 66.0767 102.627ZM71.2944 96.7109V102.5H70.1201V95.6318H71.2627L71.2944 96.7109ZM73.4399 95.5938L73.4336 96.6855C73.3363 96.6644 73.2432 96.6517 73.1543 96.6475C73.0697 96.639 72.9723 96.6348 72.8623 96.6348C72.5915 96.6348 72.3524 96.6771 72.145 96.7617C71.9377 96.8464 71.762 96.9648 71.6182 97.1172C71.4743 97.2695 71.36 97.4515 71.2754 97.6631C71.195 97.8704 71.1421 98.099 71.1167 98.3486L70.7866 98.5391C70.7866 98.1243 70.8268 97.735 70.9072 97.3711C70.9919 97.0072 71.1209 96.6855 71.2944 96.4062C71.4679 96.1227 71.688 95.9027 71.9546 95.7461C72.2254 95.5853 72.547 95.5049 72.9194 95.5049C73.0041 95.5049 73.1014 95.5155 73.2114 95.5366C73.3215 95.5535 73.3976 95.5726 73.4399 95.5938ZM78.3213 101.326V97.79C78.3213 97.5192 78.2663 97.2843 78.1562 97.0854C78.0505 96.8823 77.8896 96.7257 77.6738 96.6157C77.458 96.5057 77.1914 96.4507 76.874 96.4507C76.5778 96.4507 76.3175 96.5015 76.0933 96.603C75.8732 96.7046 75.6997 96.8379 75.5728 97.0029C75.45 97.168 75.3887 97.3457 75.3887 97.5361H74.2144C74.2144 97.2907 74.2778 97.0474 74.4048 96.8062C74.5317 96.5649 74.7137 96.347 74.9507 96.1523C75.1919 95.9535 75.4797 95.7969 75.814 95.6826C76.1525 95.5641 76.5291 95.5049 76.9438 95.5049C77.4432 95.5049 77.8833 95.5895 78.2642 95.7588C78.6493 95.9281 78.9497 96.1841 79.1655 96.5269C79.3856 96.8654 79.4956 97.2907 79.4956 97.8027V101.002C79.4956 101.23 79.5146 101.474 79.5527 101.732C79.5951 101.99 79.6564 102.212 79.7368 102.398V102.5H78.5117C78.4525 102.365 78.4059 102.185 78.3721 101.96C78.3382 101.732 78.3213 101.52 78.3213 101.326ZM78.5244 98.3359L78.5371 99.1611H77.3501C77.0158 99.1611 76.7174 99.1886 76.4551 99.2437C76.1927 99.2944 75.9727 99.3727 75.7949 99.4785C75.6172 99.5843 75.4818 99.7176 75.3887 99.8784C75.2956 100.035 75.249 100.219 75.249 100.431C75.249 100.646 75.2977 100.843 75.395 101.021C75.4924 101.199 75.6383 101.34 75.833 101.446C76.0319 101.548 76.2752 101.599 76.563 101.599C76.9227 101.599 77.2401 101.522 77.5151 101.37C77.7902 101.218 78.0081 101.032 78.1689 100.812C78.334 100.591 78.4229 100.378 78.4355 100.17L78.937 100.735C78.9074 100.913 78.827 101.11 78.6958 101.326C78.5646 101.542 78.389 101.749 78.1689 101.948C77.9531 102.142 77.695 102.305 77.3945 102.437C77.0983 102.563 76.764 102.627 76.3916 102.627C75.9261 102.627 75.5177 102.536 75.1665 102.354C74.8195 102.172 74.5487 101.929 74.354 101.624C74.1636 101.315 74.0684 100.97 74.0684 100.589C74.0684 100.221 74.1403 99.8975 74.2842 99.6182C74.4281 99.3346 74.6354 99.0998 74.9062 98.9136C75.1771 98.7231 75.5029 98.5793 75.8838 98.4819C76.2646 98.3846 76.6899 98.3359 77.1597 98.3359H78.5244ZM82.6187 92.75V102.5H81.438V92.75H82.6187Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M139.955 97.8979V101.281C139.84 101.451 139.658 101.641 139.409 101.853C139.159 102.06 138.814 102.242 138.374 102.398C137.938 102.551 137.375 102.627 136.686 102.627C136.123 102.627 135.604 102.53 135.13 102.335C134.661 102.136 134.252 101.848 133.905 101.472C133.562 101.091 133.296 100.63 133.105 100.088C132.919 99.542 132.826 98.9242 132.826 98.2344V97.5171C132.826 96.8273 132.907 96.2116 133.067 95.6699C133.232 95.1283 133.474 94.6691 133.791 94.2925C134.108 93.9116 134.498 93.6239 134.959 93.4292C135.42 93.2303 135.949 93.1309 136.546 93.1309C137.253 93.1309 137.843 93.2536 138.317 93.499C138.795 93.7402 139.167 94.0745 139.434 94.502C139.705 94.9294 139.878 95.416 139.955 95.9619H138.729C138.674 95.6276 138.564 95.3229 138.399 95.0479C138.239 94.7728 138.008 94.5527 137.708 94.3877C137.407 94.2184 137.02 94.1338 136.546 94.1338C136.118 94.1338 135.748 94.2121 135.435 94.3687C135.122 94.5252 134.864 94.7495 134.661 95.0415C134.458 95.3335 134.305 95.6868 134.204 96.1016C134.106 96.5163 134.058 96.9839 134.058 97.5044V98.2344C134.058 98.7676 134.119 99.2437 134.242 99.6626C134.369 100.082 134.549 100.439 134.781 100.735C135.014 101.027 135.291 101.25 135.613 101.402C135.939 101.554 136.298 101.63 136.692 101.63C137.128 101.63 137.481 101.594 137.752 101.522C138.023 101.446 138.234 101.357 138.387 101.256C138.539 101.15 138.655 101.051 138.736 100.958V98.8882H136.597V97.8979H139.955ZM146.01 100.913V95.6318H147.191V102.5H146.067L146.01 100.913ZM146.232 99.4658L146.721 99.4531C146.721 99.9102 146.673 100.333 146.575 100.723C146.482 101.108 146.33 101.442 146.118 101.726C145.907 102.009 145.629 102.231 145.287 102.392C144.944 102.549 144.527 102.627 144.036 102.627C143.702 102.627 143.395 102.578 143.116 102.481C142.841 102.384 142.604 102.233 142.405 102.03C142.206 101.827 142.051 101.563 141.941 101.237C141.836 100.911 141.783 100.52 141.783 100.062V95.6318H142.957V100.075C142.957 100.384 142.991 100.64 143.059 100.843C143.131 101.042 143.226 101.201 143.344 101.319C143.467 101.434 143.602 101.514 143.75 101.561C143.903 101.607 144.059 101.63 144.22 101.63C144.72 101.63 145.115 101.535 145.407 101.345C145.699 101.15 145.909 100.89 146.036 100.564C146.167 100.234 146.232 99.8678 146.232 99.4658ZM151.831 102.627C151.353 102.627 150.919 102.547 150.53 102.386C150.145 102.221 149.812 101.99 149.533 101.694C149.258 101.398 149.047 101.046 148.898 100.64C148.75 100.234 148.676 99.7896 148.676 99.3071V99.0405C148.676 98.4819 148.759 97.9847 148.924 97.5488C149.089 97.1087 149.313 96.7363 149.597 96.4316C149.88 96.127 150.202 95.8963 150.562 95.7397C150.921 95.5832 151.294 95.5049 151.679 95.5049C152.17 95.5049 152.593 95.5895 152.948 95.7588C153.308 95.9281 153.602 96.165 153.831 96.4697C154.059 96.7702 154.228 97.1257 154.338 97.5361C154.448 97.9424 154.503 98.3867 154.503 98.8691V99.396H149.375V98.4375H153.329V98.3486C153.312 98.0439 153.249 97.7477 153.139 97.46C153.033 97.1722 152.864 96.9352 152.631 96.749C152.398 96.5628 152.081 96.4697 151.679 96.4697C151.412 96.4697 151.167 96.5269 150.942 96.6411C150.718 96.7511 150.526 96.9162 150.365 97.1362C150.204 97.3563 150.079 97.625 149.99 97.9424C149.901 98.2598 149.857 98.6258 149.857 99.0405V99.3071C149.857 99.633 149.901 99.9398 149.99 100.228C150.083 100.511 150.217 100.761 150.39 100.977C150.568 101.192 150.782 101.362 151.031 101.484C151.285 101.607 151.573 101.668 151.895 101.668C152.309 101.668 152.66 101.584 152.948 101.415C153.236 101.245 153.488 101.019 153.704 100.735L154.415 101.3C154.266 101.525 154.078 101.738 153.85 101.941C153.621 102.145 153.34 102.31 153.005 102.437C152.675 102.563 152.284 102.627 151.831 102.627ZM159.874 100.678C159.874 100.509 159.835 100.352 159.759 100.208C159.687 100.06 159.537 99.9271 159.309 99.8086C159.084 99.6859 158.746 99.5801 158.293 99.4912C157.912 99.4108 157.567 99.3156 157.258 99.2056C156.954 99.0955 156.693 98.9622 156.478 98.8057C156.266 98.6491 156.103 98.465 155.989 98.2534C155.875 98.0418 155.817 97.7943 155.817 97.5107C155.817 97.2399 155.877 96.9839 155.995 96.7427C156.118 96.5015 156.289 96.2878 156.509 96.1016C156.734 95.9154 157.002 95.7694 157.315 95.6636C157.629 95.5578 157.978 95.5049 158.363 95.5049C158.913 95.5049 159.383 95.6022 159.772 95.7969C160.161 95.9915 160.46 96.2518 160.667 96.5776C160.874 96.8993 160.978 97.2568 160.978 97.6504H159.804C159.804 97.46 159.747 97.2759 159.632 97.0981C159.522 96.9162 159.359 96.766 159.144 96.6475C158.932 96.529 158.672 96.4697 158.363 96.4697C158.037 96.4697 157.772 96.5205 157.569 96.6221C157.37 96.7194 157.224 96.8442 157.131 96.9966C157.042 97.1489 156.998 97.3097 156.998 97.479C156.998 97.606 157.019 97.7202 157.062 97.8218C157.108 97.9191 157.188 98.0101 157.303 98.0947C157.417 98.1751 157.578 98.2513 157.785 98.3232C157.993 98.3952 158.257 98.4671 158.579 98.5391C159.141 98.666 159.605 98.8184 159.969 98.9961C160.333 99.1738 160.604 99.3918 160.781 99.6499C160.959 99.908 161.048 100.221 161.048 100.589C161.048 100.89 160.984 101.165 160.857 101.415C160.735 101.664 160.555 101.88 160.318 102.062C160.085 102.24 159.806 102.379 159.48 102.481C159.158 102.578 158.797 102.627 158.395 102.627C157.789 102.627 157.277 102.519 156.858 102.303C156.439 102.087 156.122 101.808 155.906 101.465C155.69 101.123 155.583 100.761 155.583 100.38H156.763C156.78 100.701 156.873 100.958 157.042 101.148C157.212 101.334 157.419 101.467 157.665 101.548C157.91 101.624 158.153 101.662 158.395 101.662C158.716 101.662 158.985 101.62 159.201 101.535C159.421 101.451 159.588 101.334 159.702 101.186C159.816 101.038 159.874 100.869 159.874 100.678ZM165.466 95.6318V96.5332H161.752V95.6318H165.466ZM163.009 93.9624H164.184V100.799C164.184 101.032 164.22 101.207 164.292 101.326C164.363 101.444 164.457 101.522 164.571 101.561C164.685 101.599 164.808 101.618 164.939 101.618C165.036 101.618 165.138 101.609 165.244 101.592C165.354 101.571 165.436 101.554 165.491 101.542L165.498 102.5C165.404 102.53 165.282 102.557 165.129 102.583C164.981 102.612 164.801 102.627 164.59 102.627C164.302 102.627 164.038 102.57 163.796 102.456C163.555 102.341 163.363 102.151 163.219 101.884C163.079 101.613 163.009 101.25 163.009 100.792V93.9624Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M226.556 93.7578V103H225.331V93.7578H226.556ZM229.781 97.5981V103H228.606V96.1318H229.717L229.781 97.5981ZM229.501 99.3057L229.013 99.2866C229.017 98.8169 229.087 98.3831 229.222 97.9854C229.358 97.5833 229.548 97.2342 229.793 96.938C230.039 96.6418 230.331 96.4132 230.669 96.2524C231.012 96.0874 231.391 96.0049 231.806 96.0049C232.144 96.0049 232.449 96.0514 232.72 96.1445C232.991 96.2334 233.221 96.3773 233.412 96.5762C233.606 96.7751 233.754 97.0332 233.856 97.3506C233.958 97.6637 234.008 98.0467 234.008 98.4995V103H232.828V98.4868C232.828 98.1271 232.775 97.8394 232.669 97.6235C232.563 97.4035 232.409 97.2448 232.206 97.1475C232.002 97.0459 231.753 96.9951 231.457 96.9951C231.165 96.9951 230.898 97.0565 230.657 97.1792C230.42 97.3019 230.215 97.4712 230.041 97.687C229.872 97.9028 229.738 98.1504 229.641 98.4297C229.548 98.7048 229.501 98.9967 229.501 99.3057ZM237.544 103H236.37V95.4082C236.37 94.9131 236.458 94.4963 236.636 94.1577C236.818 93.8149 237.078 93.5568 237.417 93.3833C237.756 93.2056 238.158 93.1167 238.623 93.1167C238.758 93.1167 238.894 93.1252 239.029 93.1421C239.169 93.159 239.304 93.1844 239.436 93.2183L239.372 94.1768C239.283 94.1556 239.182 94.1408 239.067 94.1323C238.957 94.1239 238.847 94.1196 238.737 94.1196C238.488 94.1196 238.272 94.1704 238.09 94.272C237.912 94.3693 237.777 94.5132 237.684 94.7036C237.59 94.894 237.544 95.1289 237.544 95.4082V103ZM239.004 96.1318V97.0332H235.284V96.1318H239.004ZM240 99.6421V99.4961C240 99.001 240.072 98.5418 240.216 98.1187C240.36 97.6912 240.568 97.321 240.838 97.0078C241.109 96.6904 241.437 96.445 241.822 96.2715C242.207 96.0938 242.639 96.0049 243.117 96.0049C243.6 96.0049 244.033 96.0938 244.418 96.2715C244.808 96.445 245.138 96.6904 245.409 97.0078C245.684 97.321 245.893 97.6912 246.037 98.1187C246.181 98.5418 246.253 99.001 246.253 99.4961V99.6421C246.253 100.137 246.181 100.596 246.037 101.02C245.893 101.443 245.684 101.813 245.409 102.13C245.138 102.444 244.81 102.689 244.425 102.867C244.044 103.04 243.612 103.127 243.13 103.127C242.647 103.127 242.214 103.04 241.829 102.867C241.444 102.689 241.113 102.444 240.838 102.13C240.568 101.813 240.36 101.443 240.216 101.02C240.072 100.596 240 100.137 240 99.6421ZM241.175 99.4961V99.6421C241.175 99.9849 241.215 100.309 241.295 100.613C241.376 100.914 241.496 101.18 241.657 101.413C241.822 101.646 242.028 101.83 242.273 101.965C242.518 102.097 242.804 102.162 243.13 102.162C243.451 102.162 243.733 102.097 243.974 101.965C244.22 101.83 244.423 101.646 244.583 101.413C244.744 101.18 244.865 100.914 244.945 100.613C245.03 100.309 245.072 99.9849 245.072 99.6421V99.4961C245.072 99.1576 245.03 98.8381 244.945 98.5376C244.865 98.2329 244.742 97.9642 244.577 97.7314C244.416 97.4945 244.213 97.3083 243.968 97.1729C243.727 97.0374 243.443 96.9697 243.117 96.9697C242.796 96.9697 242.512 97.0374 242.267 97.1729C242.025 97.3083 241.822 97.4945 241.657 97.7314C241.496 97.9642 241.376 98.2329 241.295 98.5376C241.215 98.8381 241.175 99.1576 241.175 99.4961Z",fill:"#0F172A"})),{FieldSettingsWrapper:Vc}=JetFBComponents,{__:Hc}=wp.i18n,{SelectControl:hc}=wp.components,{InspectorControls:bc,useBlockProps:Mc}=wp.blockEditor?wp.blockEditor:wp.editor,{RawHTML:Lc}=wp.element,{useState:gc,useEffect:Zc}=wp.element,yc=JSON.parse('{"apiVersion":3,"name":"jet-forms/progress-bar","category":"jet-form-builder-elements","keywords":["jetformbuilder","progress","steps","bar","break","form"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Progress Bar","icon":"\\n\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"progress_type":{"type":"string","default":"default"},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:Ec}=wp.i18n,{name:wc,icon:vc=""}=yc,_c={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:vc}}),description:Ec("Use the Progress Bar block to add the navigation and show users on what page they are now and how many pages are left to finish the form.","jet-form-builder"),edit:function(e){const C=Mc(),{attributes:t,setAttributes:l,editProps:{uniqKey:r}}=e,[n,a]=gc(""),i=e=>{const C=JetFormProgressBar.progress_types.find(C=>e===C.value);return C?C.html:""};return Zc(()=>{a(i(t.progress_type))},[t.progress_type]),t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},fc):[(0,h.createElement)(bc,{key:r("InspectorControls")},(0,h.createElement)(Vc,{key:r("FieldSettingsWrapper"),...e},1{l({progress_type:e}),a(i(e))},options:JetFormProgressBar.progress_types}))),(0,h.createElement)("div",{key:r("viewBlock"),...C},(0,h.createElement)(Lc,null,n))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}}},kc=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_76_1348)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,h.createElement)("rect",{x:"82",y:"29",width:"113",height:"86",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M103.46 54.4844C103.46 54.252 103.424 54.0469 103.351 53.8691C103.282 53.6868 103.159 53.5228 102.981 53.377C102.808 53.2311 102.567 53.0921 102.257 52.96C101.951 52.8278 101.564 52.6934 101.095 52.5566C100.603 52.4108 100.158 52.249 99.7617 52.0713C99.3652 51.889 99.0257 51.6816 98.7432 51.4492C98.4606 51.2168 98.2441 50.9502 98.0938 50.6494C97.9434 50.3486 97.8682 50.0046 97.8682 49.6172C97.8682 49.2298 97.9479 48.8721 98.1074 48.5439C98.2669 48.2158 98.4948 47.931 98.791 47.6895C99.0918 47.4434 99.4495 47.252 99.8643 47.1152C100.279 46.9785 100.742 46.9102 101.252 46.9102C101.999 46.9102 102.633 47.0537 103.152 47.3408C103.676 47.6234 104.075 47.9948 104.349 48.4551C104.622 48.9108 104.759 49.3984 104.759 49.918H103.446C103.446 49.5443 103.367 49.2139 103.207 48.9268C103.048 48.6351 102.806 48.4072 102.482 48.2432C102.159 48.0745 101.749 47.9902 101.252 47.9902C100.783 47.9902 100.395 48.0609 100.09 48.2021C99.7845 48.3434 99.5566 48.5348 99.4062 48.7764C99.2604 49.0179 99.1875 49.2936 99.1875 49.6035C99.1875 49.8132 99.2308 50.0046 99.3174 50.1777C99.4085 50.3464 99.5475 50.5036 99.7344 50.6494C99.9258 50.7952 100.167 50.9297 100.459 51.0527C100.755 51.1758 101.108 51.2943 101.519 51.4082C102.084 51.5677 102.571 51.7454 102.981 51.9414C103.392 52.1374 103.729 52.3584 103.993 52.6045C104.262 52.846 104.46 53.1217 104.588 53.4316C104.72 53.737 104.786 54.0833 104.786 54.4707C104.786 54.8763 104.704 55.2432 104.54 55.5713C104.376 55.8994 104.141 56.1797 103.836 56.4121C103.531 56.6445 103.164 56.8245 102.735 56.9521C102.312 57.0752 101.838 57.1367 101.313 57.1367C100.853 57.1367 100.4 57.0729 99.9531 56.9453C99.5111 56.8177 99.1077 56.6263 98.7432 56.3711C98.3831 56.1159 98.0938 55.8014 97.875 55.4277C97.6608 55.0495 97.5537 54.612 97.5537 54.1152H98.8662C98.8662 54.457 98.9323 54.751 99.0645 54.9971C99.1966 55.2386 99.3766 55.4391 99.6045 55.5986C99.8369 55.7581 100.099 55.8766 100.391 55.9541C100.687 56.027 100.994 56.0635 101.313 56.0635C101.774 56.0635 102.163 55.9997 102.482 55.8721C102.801 55.7445 103.043 55.5622 103.207 55.3252C103.376 55.0882 103.46 54.8079 103.46 54.4844ZM109.373 49.6035V50.5742H105.374V49.6035H109.373ZM106.728 47.8057H107.992V55.168C107.992 55.4186 108.031 55.6077 108.108 55.7354C108.186 55.863 108.286 55.9473 108.409 55.9883C108.532 56.0293 108.664 56.0498 108.806 56.0498C108.91 56.0498 109.02 56.0407 109.134 56.0225C109.252 55.9997 109.341 55.9814 109.4 55.9678L109.407 57C109.307 57.0319 109.175 57.0615 109.011 57.0889C108.851 57.1208 108.658 57.1367 108.43 57.1367C108.12 57.1367 107.835 57.0752 107.575 56.9521C107.315 56.8291 107.108 56.624 106.953 56.3369C106.803 56.0452 106.728 55.6533 106.728 55.1611V47.8057ZM113.926 57.1367C113.411 57.1367 112.944 57.0501 112.524 56.877C112.11 56.6992 111.752 56.4508 111.451 56.1318C111.155 55.8128 110.927 55.4346 110.768 54.9971C110.608 54.5596 110.528 54.0811 110.528 53.5615V53.2744C110.528 52.6729 110.617 52.1374 110.795 51.668C110.973 51.194 111.214 50.793 111.52 50.4648C111.825 50.1367 112.171 49.8883 112.559 49.7197C112.946 49.5511 113.347 49.4668 113.762 49.4668C114.29 49.4668 114.746 49.5579 115.129 49.7402C115.516 49.9225 115.833 50.1777 116.079 50.5059C116.325 50.8294 116.507 51.2122 116.626 51.6543C116.744 52.0918 116.804 52.5703 116.804 53.0898V53.6572H111.28V52.625H115.539V52.5293C115.521 52.2012 115.452 51.8822 115.334 51.5723C115.22 51.2624 115.038 51.0072 114.787 50.8066C114.536 50.6061 114.195 50.5059 113.762 50.5059C113.475 50.5059 113.21 50.5674 112.969 50.6904C112.727 50.8089 112.52 50.9867 112.347 51.2236C112.174 51.4606 112.039 51.75 111.943 52.0918C111.848 52.4336 111.8 52.8278 111.8 53.2744V53.5615C111.8 53.9124 111.848 54.2428 111.943 54.5527C112.044 54.8581 112.187 55.127 112.374 55.3594C112.565 55.5918 112.796 55.7741 113.064 55.9062C113.338 56.0384 113.648 56.1045 113.994 56.1045C114.441 56.1045 114.819 56.0133 115.129 55.8311C115.439 55.6488 115.71 55.4049 115.942 55.0996L116.708 55.708C116.549 55.9495 116.346 56.1797 116.1 56.3984C115.854 56.6172 115.55 56.7949 115.19 56.9316C114.835 57.0684 114.413 57.1367 113.926 57.1367ZM119.545 51.0254V59.8438H118.273V49.6035H119.436L119.545 51.0254ZM124.528 53.2402V53.3838C124.528 53.9215 124.465 54.4206 124.337 54.8809C124.209 55.3366 124.022 55.7331 123.776 56.0703C123.535 56.4076 123.236 56.6696 122.881 56.8564C122.525 57.0433 122.118 57.1367 121.657 57.1367C121.188 57.1367 120.773 57.0592 120.413 56.9043C120.053 56.7493 119.748 56.5238 119.497 56.2275C119.246 55.9313 119.046 55.5758 118.896 55.1611C118.75 54.7464 118.649 54.2793 118.595 53.7598V52.9941C118.649 52.4473 118.752 51.9574 118.902 51.5244C119.053 51.0915 119.251 50.7223 119.497 50.417C119.748 50.1071 120.051 49.8724 120.406 49.7129C120.762 49.5488 121.172 49.4668 121.637 49.4668C122.102 49.4668 122.514 49.5579 122.874 49.7402C123.234 49.918 123.537 50.1732 123.783 50.5059C124.029 50.8385 124.214 51.2373 124.337 51.7021C124.465 52.1624 124.528 52.6751 124.528 53.2402ZM123.257 53.3838V53.2402C123.257 52.8711 123.218 52.5247 123.141 52.2012C123.063 51.873 122.942 51.5859 122.778 51.3398C122.619 51.0892 122.414 50.8932 122.163 50.752C121.912 50.6061 121.614 50.5332 121.268 50.5332C120.949 50.5332 120.671 50.5879 120.434 50.6973C120.201 50.8066 120.003 50.9548 119.839 51.1416C119.675 51.3239 119.54 51.5335 119.436 51.7705C119.335 52.0029 119.26 52.2445 119.21 52.4951V54.2656C119.301 54.5846 119.429 54.8854 119.593 55.168C119.757 55.446 119.976 55.6715 120.249 55.8447C120.522 56.0133 120.867 56.0977 121.281 56.0977C121.623 56.0977 121.917 56.027 122.163 55.8857C122.414 55.7399 122.619 55.5417 122.778 55.291C122.942 55.0404 123.063 54.7533 123.141 54.4297C123.218 54.1016 123.257 53.7529 123.257 53.3838ZM130.161 46.9922V57H128.896V48.5713L126.347 49.501V48.3594L129.963 46.9922H130.161Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"97.5",y:"70.5",width:"82",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"97.5",y:"70.5",width:"82",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("rect",{x:"205",y:"29",width:"113",height:"86",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M226.46 54.4844C226.46 54.252 226.424 54.0469 226.351 53.8691C226.282 53.6868 226.159 53.5228 225.981 53.377C225.808 53.2311 225.567 53.0921 225.257 52.96C224.951 52.8278 224.564 52.6934 224.095 52.5566C223.603 52.4108 223.158 52.249 222.762 52.0713C222.365 51.889 222.026 51.6816 221.743 51.4492C221.461 51.2168 221.244 50.9502 221.094 50.6494C220.943 50.3486 220.868 50.0046 220.868 49.6172C220.868 49.2298 220.948 48.8721 221.107 48.5439C221.267 48.2158 221.495 47.931 221.791 47.6895C222.092 47.4434 222.45 47.252 222.864 47.1152C223.279 46.9785 223.742 46.9102 224.252 46.9102C224.999 46.9102 225.633 47.0537 226.152 47.3408C226.676 47.6234 227.075 47.9948 227.349 48.4551C227.622 48.9108 227.759 49.3984 227.759 49.918H226.446C226.446 49.5443 226.367 49.2139 226.207 48.9268C226.048 48.6351 225.806 48.4072 225.482 48.2432C225.159 48.0745 224.749 47.9902 224.252 47.9902C223.783 47.9902 223.395 48.0609 223.09 48.2021C222.785 48.3434 222.557 48.5348 222.406 48.7764C222.26 49.0179 222.188 49.2936 222.188 49.6035C222.188 49.8132 222.231 50.0046 222.317 50.1777C222.409 50.3464 222.548 50.5036 222.734 50.6494C222.926 50.7952 223.167 50.9297 223.459 51.0527C223.755 51.1758 224.108 51.2943 224.519 51.4082C225.084 51.5677 225.571 51.7454 225.981 51.9414C226.392 52.1374 226.729 52.3584 226.993 52.6045C227.262 52.846 227.46 53.1217 227.588 53.4316C227.72 53.737 227.786 54.0833 227.786 54.4707C227.786 54.8763 227.704 55.2432 227.54 55.5713C227.376 55.8994 227.141 56.1797 226.836 56.4121C226.531 56.6445 226.164 56.8245 225.735 56.9521C225.312 57.0752 224.838 57.1367 224.313 57.1367C223.853 57.1367 223.4 57.0729 222.953 56.9453C222.511 56.8177 222.108 56.6263 221.743 56.3711C221.383 56.1159 221.094 55.8014 220.875 55.4277C220.661 55.0495 220.554 54.612 220.554 54.1152H221.866C221.866 54.457 221.932 54.751 222.064 54.9971C222.197 55.2386 222.377 55.4391 222.604 55.5986C222.837 55.7581 223.099 55.8766 223.391 55.9541C223.687 56.027 223.994 56.0635 224.313 56.0635C224.774 56.0635 225.163 55.9997 225.482 55.8721C225.801 55.7445 226.043 55.5622 226.207 55.3252C226.376 55.0882 226.46 54.8079 226.46 54.4844ZM232.373 49.6035V50.5742H228.374V49.6035H232.373ZM229.728 47.8057H230.992V55.168C230.992 55.4186 231.031 55.6077 231.108 55.7354C231.186 55.863 231.286 55.9473 231.409 55.9883C231.532 56.0293 231.664 56.0498 231.806 56.0498C231.91 56.0498 232.02 56.0407 232.134 56.0225C232.252 55.9997 232.341 55.9814 232.4 55.9678L232.407 57C232.307 57.0319 232.175 57.0615 232.011 57.0889C231.851 57.1208 231.658 57.1367 231.43 57.1367C231.12 57.1367 230.835 57.0752 230.575 56.9521C230.315 56.8291 230.108 56.624 229.953 56.3369C229.803 56.0452 229.728 55.6533 229.728 55.1611V47.8057ZM236.926 57.1367C236.411 57.1367 235.944 57.0501 235.524 56.877C235.11 56.6992 234.752 56.4508 234.451 56.1318C234.155 55.8128 233.927 55.4346 233.768 54.9971C233.608 54.5596 233.528 54.0811 233.528 53.5615V53.2744C233.528 52.6729 233.617 52.1374 233.795 51.668C233.973 51.194 234.214 50.793 234.52 50.4648C234.825 50.1367 235.171 49.8883 235.559 49.7197C235.946 49.5511 236.347 49.4668 236.762 49.4668C237.29 49.4668 237.746 49.5579 238.129 49.7402C238.516 49.9225 238.833 50.1777 239.079 50.5059C239.325 50.8294 239.507 51.2122 239.626 51.6543C239.744 52.0918 239.804 52.5703 239.804 53.0898V53.6572H234.28V52.625H238.539V52.5293C238.521 52.2012 238.452 51.8822 238.334 51.5723C238.22 51.2624 238.038 51.0072 237.787 50.8066C237.536 50.6061 237.195 50.5059 236.762 50.5059C236.475 50.5059 236.21 50.5674 235.969 50.6904C235.727 50.8089 235.52 50.9867 235.347 51.2236C235.174 51.4606 235.039 51.75 234.943 52.0918C234.848 52.4336 234.8 52.8278 234.8 53.2744V53.5615C234.8 53.9124 234.848 54.2428 234.943 54.5527C235.044 54.8581 235.187 55.127 235.374 55.3594C235.565 55.5918 235.796 55.7741 236.064 55.9062C236.338 56.0384 236.648 56.1045 236.994 56.1045C237.441 56.1045 237.819 56.0133 238.129 55.8311C238.439 55.6488 238.71 55.4049 238.942 55.0996L239.708 55.708C239.549 55.9495 239.346 56.1797 239.1 56.3984C238.854 56.6172 238.55 56.7949 238.19 56.9316C237.835 57.0684 237.413 57.1367 236.926 57.1367ZM242.545 51.0254V59.8438H241.273V49.6035H242.436L242.545 51.0254ZM247.528 53.2402V53.3838C247.528 53.9215 247.465 54.4206 247.337 54.8809C247.209 55.3366 247.022 55.7331 246.776 56.0703C246.535 56.4076 246.236 56.6696 245.881 56.8564C245.525 57.0433 245.118 57.1367 244.657 57.1367C244.188 57.1367 243.773 57.0592 243.413 56.9043C243.053 56.7493 242.748 56.5238 242.497 56.2275C242.246 55.9313 242.046 55.5758 241.896 55.1611C241.75 54.7464 241.649 54.2793 241.595 53.7598V52.9941C241.649 52.4473 241.752 51.9574 241.902 51.5244C242.053 51.0915 242.251 50.7223 242.497 50.417C242.748 50.1071 243.051 49.8724 243.406 49.7129C243.762 49.5488 244.172 49.4668 244.637 49.4668C245.102 49.4668 245.514 49.5579 245.874 49.7402C246.234 49.918 246.537 50.1732 246.783 50.5059C247.029 50.8385 247.214 51.2373 247.337 51.7021C247.465 52.1624 247.528 52.6751 247.528 53.2402ZM246.257 53.3838V53.2402C246.257 52.8711 246.218 52.5247 246.141 52.2012C246.063 51.873 245.942 51.5859 245.778 51.3398C245.619 51.0892 245.414 50.8932 245.163 50.752C244.912 50.6061 244.614 50.5332 244.268 50.5332C243.949 50.5332 243.671 50.5879 243.434 50.6973C243.201 50.8066 243.003 50.9548 242.839 51.1416C242.675 51.3239 242.54 51.5335 242.436 51.7705C242.335 52.0029 242.26 52.2445 242.21 52.4951V54.2656C242.301 54.5846 242.429 54.8854 242.593 55.168C242.757 55.446 242.976 55.6715 243.249 55.8447C243.522 56.0133 243.867 56.0977 244.281 56.0977C244.623 56.0977 244.917 56.027 245.163 55.8857C245.414 55.7399 245.619 55.5417 245.778 55.291C245.942 55.0404 246.063 54.7533 246.141 54.4297C246.218 54.1016 246.257 53.7529 246.257 53.3838ZM255.526 55.9609V57H249.012V56.0908L252.272 52.4609C252.674 52.0143 252.983 51.6361 253.202 51.3262C253.425 51.0117 253.58 50.7314 253.667 50.4854C253.758 50.2347 253.804 49.9795 253.804 49.7197C253.804 49.3916 253.735 49.0954 253.599 48.8311C253.466 48.5622 253.271 48.348 253.011 48.1885C252.751 48.029 252.437 47.9492 252.067 47.9492C251.625 47.9492 251.256 48.0358 250.96 48.209C250.668 48.3776 250.45 48.6146 250.304 48.9199C250.158 49.2253 250.085 49.5762 250.085 49.9727H248.82C248.82 49.4121 248.943 48.8994 249.189 48.4346C249.436 47.9697 249.8 47.6006 250.283 47.3271C250.766 47.0492 251.361 46.9102 252.067 46.9102C252.696 46.9102 253.234 47.0218 253.681 47.2451C254.127 47.4639 254.469 47.7738 254.706 48.1748C254.948 48.5713 255.068 49.0361 255.068 49.5693C255.068 49.861 255.018 50.1572 254.918 50.458C254.822 50.7542 254.688 51.0505 254.515 51.3467C254.346 51.6429 254.148 51.9346 253.92 52.2217C253.697 52.5088 253.457 52.7913 253.202 53.0693L250.536 55.9609H255.526Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"220.5",y:"70.5",width:"82",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"220.5",y:"70.5",width:"82",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M15 57C15 54.7909 16.7909 53 19 53H82V91H19C16.7909 91 15 89.2091 15 87V57Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M30.9985 74.1641C30.9985 73.9482 30.9647 73.7578 30.897 73.5928C30.8335 73.4235 30.7192 73.2712 30.5542 73.1357C30.3934 73.0003 30.1691 72.8713 29.8813 72.7485C29.5978 72.6258 29.2381 72.501 28.8022 72.374C28.3452 72.2386 27.9326 72.0884 27.5645 71.9233C27.1963 71.7541 26.881 71.5615 26.6187 71.3457C26.3563 71.1299 26.1553 70.8823 26.0156 70.603C25.876 70.3237 25.8062 70.0042 25.8062 69.6445C25.8062 69.2848 25.8802 68.9526 26.0283 68.6479C26.1764 68.3433 26.388 68.0788 26.6631 67.8545C26.9424 67.626 27.2746 67.4482 27.6597 67.3213C28.0448 67.1943 28.4743 67.1309 28.9482 67.1309C29.6423 67.1309 30.2305 67.2642 30.7129 67.5308C31.1995 67.7931 31.5698 68.138 31.8237 68.5654C32.0776 68.9886 32.2046 69.4414 32.2046 69.9238H30.9858C30.9858 69.5768 30.9118 69.27 30.7637 69.0034C30.6156 68.7326 30.3913 68.521 30.0908 68.3687C29.7904 68.2121 29.4095 68.1338 28.9482 68.1338C28.5124 68.1338 28.1527 68.1994 27.8691 68.3306C27.5856 68.4618 27.374 68.6395 27.2344 68.8638C27.099 69.0881 27.0312 69.3441 27.0312 69.6318C27.0312 69.8265 27.0715 70.0042 27.1519 70.165C27.2365 70.3216 27.3656 70.4676 27.5391 70.603C27.7168 70.7384 27.9411 70.8633 28.2119 70.9775C28.487 71.0918 28.8149 71.2018 29.1958 71.3076C29.7205 71.4557 30.1733 71.6208 30.5542 71.8027C30.9351 71.9847 31.2482 72.1899 31.4937 72.4185C31.7433 72.6427 31.9274 72.8988 32.0459 73.1865C32.1686 73.4701 32.23 73.7917 32.23 74.1514C32.23 74.528 32.1538 74.8687 32.0015 75.1733C31.8491 75.478 31.6312 75.7383 31.3477 75.9541C31.0641 76.1699 30.7235 76.3371 30.3257 76.4556C29.9321 76.5698 29.492 76.627 29.0054 76.627C28.578 76.627 28.1569 76.5677 27.7422 76.4492C27.3317 76.3307 26.9572 76.153 26.6187 75.916C26.2843 75.679 26.0156 75.387 25.8125 75.04C25.6136 74.6888 25.5142 74.2826 25.5142 73.8213H26.7329C26.7329 74.1387 26.7943 74.4116 26.917 74.6401C27.0397 74.8644 27.2069 75.0506 27.4185 75.1987C27.6343 75.3468 27.8776 75.4569 28.1484 75.5288C28.4235 75.5965 28.7091 75.6304 29.0054 75.6304C29.4328 75.6304 29.7946 75.5711 30.0908 75.4526C30.387 75.3341 30.6113 75.1649 30.7637 74.9448C30.9202 74.7248 30.9985 74.4645 30.9985 74.1641ZM36.4893 69.6318V70.5332H32.7759V69.6318H36.4893ZM34.0327 67.9624H35.207V74.7988C35.207 75.0316 35.243 75.2072 35.3149 75.3257C35.3869 75.4442 35.48 75.5225 35.5942 75.5605C35.7085 75.5986 35.8312 75.6177 35.9624 75.6177C36.0597 75.6177 36.1613 75.6092 36.2671 75.5923C36.3771 75.5711 36.4596 75.5542 36.5146 75.5415L36.521 76.5C36.4279 76.5296 36.3052 76.5571 36.1528 76.5825C36.0047 76.6121 35.8249 76.627 35.6133 76.627C35.3255 76.627 35.061 76.5698 34.8198 76.4556C34.5786 76.3413 34.3861 76.1509 34.2422 75.8843C34.1025 75.6134 34.0327 75.2495 34.0327 74.7925V67.9624ZM41.9165 75.3257V71.79C41.9165 71.5192 41.8615 71.2843 41.7515 71.0854C41.6457 70.8823 41.4849 70.7257 41.269 70.6157C41.0532 70.5057 40.7866 70.4507 40.4692 70.4507C40.173 70.4507 39.9128 70.5015 39.6885 70.603C39.4684 70.7046 39.2949 70.8379 39.168 71.0029C39.0452 71.168 38.9839 71.3457 38.9839 71.5361H37.8096C37.8096 71.2907 37.873 71.0474 38 70.8062C38.127 70.5649 38.3089 70.347 38.5459 70.1523C38.7871 69.9535 39.0749 69.7969 39.4092 69.6826C39.7477 69.5641 40.1243 69.5049 40.5391 69.5049C41.0384 69.5049 41.4785 69.5895 41.8594 69.7588C42.2445 69.9281 42.5449 70.1841 42.7607 70.5269C42.9808 70.8654 43.0908 71.2907 43.0908 71.8027V75.002C43.0908 75.2305 43.1099 75.4738 43.1479 75.7319C43.1903 75.9901 43.2516 76.2122 43.332 76.3984V76.5H42.1069C42.0477 76.3646 42.0011 76.1847 41.9673 75.9604C41.9334 75.7319 41.9165 75.5203 41.9165 75.3257ZM42.1196 72.3359L42.1323 73.1611H40.9453C40.611 73.1611 40.3127 73.1886 40.0503 73.2437C39.7879 73.2944 39.5679 73.3727 39.3901 73.4785C39.2124 73.5843 39.077 73.7176 38.9839 73.8784C38.8908 74.035 38.8442 74.2191 38.8442 74.4307C38.8442 74.6465 38.8929 74.8433 38.9902 75.021C39.0876 75.1987 39.2336 75.3405 39.4282 75.4463C39.6271 75.5479 39.8704 75.5986 40.1582 75.5986C40.5179 75.5986 40.8353 75.5225 41.1104 75.3701C41.3854 75.2178 41.6034 75.0316 41.7642 74.8115C41.9292 74.5915 42.0181 74.3778 42.0308 74.1704L42.5322 74.7354C42.5026 74.9131 42.4222 75.1099 42.291 75.3257C42.1598 75.5415 41.9842 75.7489 41.7642 75.9478C41.5483 76.1424 41.2902 76.3053 40.9897 76.4365C40.6935 76.5635 40.3592 76.627 39.9868 76.627C39.5213 76.627 39.113 76.536 38.7617 76.354C38.4147 76.172 38.1439 75.9287 37.9492 75.624C37.7588 75.3151 37.6636 74.9702 37.6636 74.5894C37.6636 74.2212 37.7355 73.8975 37.8794 73.6182C38.0233 73.3346 38.2306 73.0998 38.5015 72.9136C38.7723 72.7231 39.0981 72.5793 39.479 72.4819C39.8599 72.3846 40.2852 72.3359 40.7549 72.3359H42.1196ZM46.1123 70.7109V76.5H44.938V69.6318H46.0806L46.1123 70.7109ZM48.2578 69.5938L48.2515 70.6855C48.1541 70.6644 48.061 70.6517 47.9722 70.6475C47.8875 70.639 47.7902 70.6348 47.6802 70.6348C47.4093 70.6348 47.1702 70.6771 46.9629 70.7617C46.7555 70.8464 46.5799 70.9648 46.436 71.1172C46.2922 71.2695 46.1779 71.4515 46.0933 71.6631C46.0129 71.8704 45.96 72.099 45.9346 72.3486L45.6045 72.5391C45.6045 72.1243 45.6447 71.735 45.7251 71.3711C45.8097 71.0072 45.9388 70.6855 46.1123 70.4062C46.2858 70.1227 46.5059 69.9027 46.7725 69.7461C47.0433 69.5853 47.3649 69.5049 47.7373 69.5049C47.8219 69.5049 47.9193 69.5155 48.0293 69.5366C48.1393 69.5535 48.2155 69.5726 48.2578 69.5938ZM52.5361 69.6318V70.5332H48.8228V69.6318H52.5361ZM50.0796 67.9624H51.2539V74.7988C51.2539 75.0316 51.2899 75.2072 51.3618 75.3257C51.4338 75.4442 51.5269 75.5225 51.6411 75.5605C51.7554 75.5986 51.8781 75.6177 52.0093 75.6177C52.1066 75.6177 52.2082 75.6092 52.314 75.5923C52.424 75.5711 52.5065 75.5542 52.5615 75.5415L52.5679 76.5C52.4748 76.5296 52.3521 76.5571 52.1997 76.5825C52.0516 76.6121 51.8717 76.627 51.6602 76.627C51.3724 76.627 51.1079 76.5698 50.8667 76.4556C50.6255 76.3413 50.4329 76.1509 50.2891 75.8843C50.1494 75.6134 50.0796 75.2495 50.0796 74.7925V67.9624Z",fill:"white"}),(0,h.createElement)("path",{d:"M61.1813 76.5188V67.4813L65.7 72.0001L61.1813 76.5188Z",fill:"white"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_76_1348"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})))),{__:jc}=wp.i18n,{PanelBody:xc}=wp.components,{BlockClassName:Fc}=JetFBComponents,{useUniqKey:Bc}=JetFBHooks,{InspectorControls:Ac,useBlockProps:Pc}=wp.blockEditor,Sc=JSON.parse('{"apiVersion":3,"name":"jet-forms/form-break-start","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","break","pagebreak","formbreak","start"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Form Page Start","icon":"\\n\\n\\n","attributes":{"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{name:Nc,icon:Ic=""}=Sc,{__:Tc}=wp.i18n,Oc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ic}}),description:Tc("Add the Form Page Start block after the two first form fields to start the new page not from the form beginning but from the block.","jet-form-builder"),edit:function(e){const C=Pc({className:"jet-form-builder__bottom-line"}),t=Bc();return e.attributes.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},kc):[(0,h.createElement)(Ac,{key:t("InspectorControls")},(0,h.createElement)(xc,{title:jc("Advanced","jet-form-builder")},(0,h.createElement)(Fc,null))),(0,h.createElement)("div",{key:t("viewBlock"),...C},(0,h.createElement)("span",null,jc("Form Break Start","jet-form-builder")))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}}},{__:Jc}=wp.i18n,Rc="jet-forms/media-field",qc="jet-forms/form-break-field",Dc="jet-forms/date-field",zc="jet-forms/datetime-field",Uc="jet-forms/radio-field",Gc="jet-forms/checkbox-field",Wc="jet-forms/select-field",Kc="jet-forms/text-field",$c=[{attribute:"is_timestamp",to:[Dc,zc],message:Jc("Check this if you want to send value of this field as timestamp instead of plain datetime","jet-form-builder")},{attribute:"default",to:[Dc],message:Jc("Plain date should be in yyyy-mm-dd format","jet-form-builder")},{attribute:"default",to:[zc],message:Jc("Plain datetime should be in yyyy-MM-ddThh:mm format","jet-form-builder")},{attribute:"page_break_disabled",to:[qc],message:Jc('Text to show if next page button is disabled. For example - "Fill required fields" etc.',"jet-form-builder")},{attribute:"insert_attachment",to:[Rc],message:Jc("If checked new attachment will be inserted for uploaded file.Note: work only for logged-in users!","jet-form-builder")},{attribute:"allowed_mimes",to:[Rc],message:Jc("If no MIME type selected will allow all types. Hold down the Ctrl (windows) / Command (Mac) button to select multiple options.","jet-form-builder")},{attribute:"value_from_meta",to:[Uc,Gc,Wc],message:Jc("By default post/term ID is used as value. Here you can set meta field name to use its value as form field value","jet-form-builder")},{attribute:"calculated_value_from_key",to:[Uc,Gc,Wc],message:Jc("Here you can set meta field name to use its value as calculated value for current form field","jet-form-builder")},{attribute:"generator_field",to:[Uc,Gc,Wc],message:Jc("For Numbers range generator set field with max range value","jet-form-builder"),conditions:{generator_function:"num_range"}},{attribute:"switch_on_change",to:[Wc],message:Jc("Check this to switch page to next on current value change","jet-form-builder")},{attribute:"prefix_suffix",to:["jet-forms/range-field"],message:Jc("For space before or after text use:  ","jet-form-builder")},{attribute:"calc_hidden",to:["jet-forms/repeater-field"],message:Jc("Check this to hide calculated field","jet-form-builder")},{attribute:"input_mask_default",to:[Kc],message:Jc("Examples: (999) 999-9999 - static mask, 9-a{1,3}9{1,3} - mask with dynamic syntax Default masking definitions: 9 - numeric, a - alphabetical, * - alphanumeric","jet-form-builder")},{attribute:"input_mask_datetime_link",to:[Kc],message:"https://robinherbots.github.io/Inputmask/#/documentation/datetime"},{attribute:"default",to:["jet-forms/time-field"],message:Jc("Plain time should be in hh:mm:ss format","jet-form-builder")},{attribute:"label_progress",to:[qc],message:Jc("To set/change a last progress name add a Form Break Field at the very end of the form.","jet-form-builder")}],{applyFilters:Yc}=wp.hooks,Xc=Yc("jet.fb.register.editProps",[{name:"uniqKey",callable:e=>C=>`${e.name}/${C}`},{name:"blockName",callable:e=>e.name},{name:"attrHelp",callable:e=>{const C={};return $c.forEach(t=>{t.to.includes(e.name)&&t.message&&(C[t.attribute]=t)}),(e,t={})=>{if(!(e in C))return"";const l=C[e];if(!("conditions"in l))return l.message;for(const e in l.conditions)if(!(e in t)||l.conditions[e]!==t[e])return;return l.message}}}]),{registerBlockType:Qc}=wp.blocks,{applyFilters:ed}=wp.hooks,Cd=ed("jet.fb.register.fields",[e,C,r,l,n,a,i,o,s,c,d,m,u,p,f,V,H]),td=e=>{if(!e)return;const{metadata:C,settings:t,name:l}=e;t.edit=function(e){const{edit:C}=e.settings,t={};if("useEditProps"in e.settings){const{useEditProps:C}=e.settings;C.forEach(C=>{const l=Xc.find(e=>C===e.name);l&&(t[C]=l.callable(e))}),delete e.settings.useEditProps}return e=>(0,h.createElement)(C,{...e,editProps:{...t}})}(e),t.hasOwnProperty("jfbResolveBlock")||(t.jfbResolveBlock=function(){const e={clientId:this.clientId,name:this.name};return this.attributes?.name?{...e,fields:[{name:this.attributes.name,label:this.attributes.label||this.attributes.name,value:this.attributes.name}]}:e}),!t.hasOwnProperty("__experimentalLabel")&&C.attributes.hasOwnProperty("name")&&(t.__experimentalLabel=(e,{context:t})=>{switch(t){case"list-view":return e.name||C.title;case"accessibility":return e.name?.length?`${C.title} (${e.name})`:C.title;default:return C.title}}),Qc(l,{...C,...t})};function ld(e,C){let{metadata:{title:t}}=e,{metadata:{title:l}}=C;t=t||e.settings?.title,l=l||C.settings?.title;try{return t.localeCompare(l)}catch(e){return 0}}!function(){const e=[];(0,vC.applyFilters)("jet.fb.register.plugins",[Pe,qe,EC,Xe,tC]).forEach(C=>{const{base:{name:t,condition:l=!0}}=C;if(!l)return!1;const r=(0,vC.applyFilters)(`jet.fb.register.plugin.${t}.before`,[]);r&&e.push(...r),e.push(C);const n=(0,vC.applyFilters)(`jet.fb.register.plugin.${t}.after`,[]);n&&e.push(...n)}),e.forEach(_C)}(),function(e=Cd){e.sort(ld),e.forEach(ed("jet.fb.register.fields.handler",td))}()})()})(); \ No newline at end of file +(()=>{var e={611:(e,C,t)=>{"use strict";function l(e,C){for(var t=[],l={},r=0;rp});var r="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!r)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var n={},a=r&&(document.head||document.getElementsByTagName("head")[0]),i=null,o=0,s=!1,c=function(){},d=null,m="data-vue-ssr-id",u="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function p(e,C,t,r){s=t,d=r||{};var a=l(e,C);return f(a),function(C){for(var t=[],r=0;rt.parts.length&&(l.parts.length=t.parts.length)}else{var a=[];for(r=0;r{"use strict";e.exports=function(e){var C=[];return C.toString=function(){return this.map((function(C){var t="",l=void 0!==C[5];return C[4]&&(t+="@supports (".concat(C[4],") {")),C[2]&&(t+="@media ".concat(C[2]," {")),l&&(t+="@layer".concat(C[5].length>0?" ".concat(C[5]):""," {")),t+=e(C),l&&(t+="}"),C[2]&&(t+="}"),C[4]&&(t+="}"),t})).join("")},C.i=function(e,t,l,r,n){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(l)for(var i=0;i0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=n),t&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=t):c[2]=t),r&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=r):c[4]="".concat(r)),C.push(c))}},C}},1669:(e,C,t)=>{var l=t(5545);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("2bfdb416",l,!1,{})},2065:(e,C,t)=>{var l=t(8525);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("cbeea060",l,!1,{})},5207:(e,C,t)=>{"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".s1ip8zmx.buddypress-active>div{height:auto;}\n",""]);const i=a},5545:(e,C,t)=>{"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".f13zt8l2{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;gap:12px;}.f13zt8l2 .sortable-chosen{box-shadow:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)) 0 1px 4px;}\n.am4szan{border:1px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));margin-bottom:1px;}.am4szan .components-panel__body-title{background-color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));}.am4szan .components-panel__body-title .components-button{color:var(--wp-components-color-accent-inverted, #fff);}.am4szan.is-opened{background-color:rgba(var(--wp-admin-theme-color--rgb), .07);}.am4szan.is-opened .components-panel__body-title{background-color:transparent;}.am4szan.is-opened .components-panel__body-title .components-button{color:#1e1e1e;}.am4szan .components-panel__body-title:hover{background-color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));opacity:0.7;}.am4szan .components-panel__body-title:hover .components-button{color:var(--wp-components-color-accent-inverted, #fff);}\n.s8wdwdc.buddypress-active{height:auto;}\n",""]);const i=a},6758:e=>{"use strict";e.exports=function(e){return e[1]}},6987:(e,C,t)=>{var l=t(5207);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("6979fc60",l,!1,{})},8525:(e,C,t)=>{"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".mqz01w{gap:1em;}\n.mqjtk22{background-color:#ffffff;}\n",""]);const i=a}},C={};function t(l){var r=C[l];if(void 0!==r)return r.exports;var n=C[l]={id:l,exports:{}};return e[l](n,n.exports,t),n.exports}t.n=e=>{var C=e&&e.__esModule?()=>e.default:()=>e;return t.d(C,{a:C}),C},t.d=(e,C)=>{for(var l in C)t.o(C,l)&&!t.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:C[l]})},t.o=(e,C)=>Object.prototype.hasOwnProperty.call(e,C),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e={};t.r(e),t.d(e,{metadata:()=>$C,name:()=>QC,settings:()=>Ct});var C={};t.r(C),t.d(C,{metadata:()=>ul,name:()=>Zl,settings:()=>El});var l={};t.r(l),t.d(l,{metadata:()=>Xl,name:()=>Cr,settings:()=>lr});var r={};t.r(r),t.d(r,{metadata:()=>_r,name:()=>xr,settings:()=>Br});var n={};t.r(n),t.d(n,{metadata:()=>Gr,name:()=>$r,settings:()=>Xr});var a={};t.r(a),t.d(a,{metadata:()=>rn,name:()=>on,settings:()=>cn});var i={};t.r(i),t.d(i,{metadata:()=>Hn,name:()=>Mn,settings:()=>gn});var o={};t.r(o),t.d(o,{metadata:()=>Ca,name:()=>ca,settings:()=>ma});var s={};t.r(s),t.d(s,{metadata:()=>Ja,name:()=>Da,settings:()=>Ua});var c={};t.r(c),t.d(c,{metadata:()=>Hi,name:()=>Mi,settings:()=>gi});var d={};t.r(d),t.d(d,{metadata:()=>Ui,name:()=>Ki,settings:()=>Yi});var m={};t.r(m),t.d(m,{metadata:()=>co,name:()=>Oo,settings:()=>Ro});var u={};t.r(u),t.d(u,{metadata:()=>us,name:()=>Vs,settings:()=>hs});var p={};t.r(p),t.d(p,{metadata:()=>qs,name:()=>Us,settings:()=>Ws});var f={};t.r(f),t.d(f,{metadata:()=>ic,name:()=>cc,settings:()=>mc});var V={};t.r(V),t.d(V,{metadata:()=>gc,name:()=>yc,settings:()=>wc});var H={};t.r(H),t.d(H,{metadata:()=>Ac,name:()=>Pc,settings:()=>Ic});const h=window.React,b=window.wp.data,M=window.wp.i18n,L=window.wp.components,g=window.jfb.components,Z=window.jfb.actions,y=window.wp.element,E=(0,y.forwardRef)((function({icon:e,size:C=24,...t},l){return(0,y.cloneElement)(e,{width:C,height:C,...t,ref:l})}));function w(e){var C=Object.create(null);return function(t){return void 0===C[t]&&(C[t]=e(t)),C[t]}}var v=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_=w((function(e){return v.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),k=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),C={},t=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,t]=e.split("_");C[t]=e}else t.push(e)}))}));const l=[];for(const e in C)Object.prototype.hasOwnProperty.call(C,e)&&l.push(C[e]);return l.push(...t),l.join(" ")},j=(e,C)=>{const t={};return Object.keys(e).filter((e=>C=>-1===e.indexOf(C))(C)).forEach((C=>{t[C]=e[C]})),t},x=function(e){let C="";return t=>{const l=(l,r)=>{const{as:n=e,class:a=C}=l;var i;const o=function(e,C){const t=j(C,["as","class"]);if(!e){const e="function"==typeof _?{default:_}:_;Object.keys(t).forEach((C=>{e.default(C)||delete t[C]}))}return t}(void 0===t.propsAsIs?!("string"==typeof n&&-1===n.indexOf("-")&&(i=n[0],i.toUpperCase()!==i)):t.propsAsIs,l);o.ref=r,o.className=t.atomic?k(t.class,o.className||a):k(o.className||a,t.class);const{vars:s}=t;if(s){const e={};for(const C in s){const r=s[C],n=r[0],a=r[1]||"",i="function"==typeof n?n(l):n;t.name,e[`--${C}`]=`${i}${a}`}const C=o.style||{},r=Object.keys(C);r.length>0&&r.forEach((t=>{e[t]=C[t]})),o.style=e}return e.__wyw_meta&&e!==n?(o.as=n,(0,h.createElement)(e,o)):(0,h.createElement)(n,o)},r=h.forwardRef?(0,h.forwardRef)(l):e=>{const C=j(e,["innerRef"]);return l(C,e.innerRef)};return r.displayName=t.name,r.__wyw_meta={className:t.class||C,extends:e},r}};const F=".components-modal__frame",{ActionModal:B,ActionModalHeaderSlotFill:A,ActionModalFooterSlotFill:P,ActionModalBackButton:S,ActionModalCloseButton:N}=JetFBComponents,{useCurrentAction:I,useActionCallback:T,useUpdateCurrentAction:O,useUpdateCurrentActionMeta:J}=JetFBHooks,R=x("div")({name:"ModalHeading",class:"mqz01w",propsAsIs:!1}),q=x("div")({name:"ModalHeader",class:"mqjtk22",propsAsIs:!1}),D=function(){var e;(0,y.useEffect)((()=>{const e=e=>{(e=>{const C=e.metaKey&&!e.ctrlKey,t=e.ctrlKey&&!e.metaKey;return(C||t)&&"z"===e.key.toLowerCase()&&!e.altKey})(e)&&(e=>{const C=e.composedPath?.();return C?.length?C.some((e=>e instanceof Element&&e.matches?.(F))):e.target?.closest?.(F)})(e)&&e.stopPropagation()};return window.addEventListener("keydown",e,!0),()=>{window.removeEventListener("keydown",e,!0)}}),[]);const C=T(),t=J(),{setTypeSettings:l,clearCurrent:r}=O(),{currentAction:n,currentSettings:a}=I(),{editMeta:i}=(0,b.useDispatch)("jet-forms/actions"),{isSettingsModal:o,actionType:s,isShowErrorNotice:c}=(0,b.useSelect)((e=>({isSettingsModal:e("jet-forms/actions").isSettingsModal(),actionType:e("jet-forms/actions").getAction(n.type),isShowErrorNotice:e("jet-forms/actions").getErrorVisibility()})),[n.type]),d=(0,Z.useActionErrors)(o?n:{});if(!o)return null;const m=function(e={},C=""){const t=e?.editor_name;return"string"==typeof t&&t.trim()?t.trim():C}(n,null!==(e=s?.label)&&void 0!==e?e:""),u=Boolean(d.length)&&c;return(0,h.createElement)(B,{size:"large",__experimentalHideHeader:!0,onRequestClose:r,onCancelClick:r,onUpdateClick:()=>{t(n),r()}},(0,h.createElement)(q,{className:"components-modal__header"},(0,h.createElement)(R,{className:"components-modal__header-heading-container"},s.icon&&(0,h.createElement)(E,{icon:s.icon}),(0,h.createElement)("h1",{className:"components-modal__header-heading"},(0,M.sprintf)((0,M.__)("Edit %s","jet-form-builder"),m)),(0,h.createElement)(A.Slot,null)),(0,h.createElement)(S,null),(0,h.createElement)(N,null)),(0,h.createElement)("div",{style:{height:"40px"}}),C&&(0,h.createElement)(C,{settings:a,actionId:n.id,onChange:e=>l(e)}),(0,h.createElement)(P.Fill,null,(({updateClick:e,cancelClick:C})=>(0,h.createElement)(g.StickyModalActions,{justify:"space-between"},(0,h.createElement)(L.Flex,{justify:"flex-start",gap:3,style:{flex:1}},(0,h.createElement)(L.Button,{isPrimary:!0,onClick:()=>{d?.length?i({errorsShow:!0}):e()}},(0,M.__)("Update","jet-form-builder")),(0,h.createElement)(L.Button,{isSecondary:!0,onClick:C},(0,M.__)("Cancel","jet-form-builder")),u&&(0,h.createElement)(g.IconText,null,(0,M.__)("You have errors in some fields","jet-form-builder"))),u&&(0,h.createElement)(L.Button,{variant:"tertiary",onClick:e},(0,M.__)("Update anyway","jet-form-builder"))))))};t(2065);const z=window.JetFormEditorData.actionConditionSettings,{RepeaterItemContext:U,Repeater:G,RepeaterAddNew:W,AdvancedModalControl:K,RepeaterState:$,BaseHelp:Y}=JetFBComponents,{useRequestEvents:X,useCurrentAction:Q,useUpdateCurrentAction:ee,useMetaState:Ce}=JetFBHooks,{getFormFieldsBlocks:te}=JetFBActions,{SelectControl:le,TextareaControl:re,ToggleControl:ne,FormTokenField:ae,TabPanel:ie}=wp.components,{__:oe}=wp.i18n,{useSelect:se}=wp.data,{useEffect:ce,useState:de,useContext:me,RawHTML:ue}=wp.element,pe=[{value:"and",label:oe("AND (ALL conditions must be met)","jet-form-builder")},{value:"or",label:oe("OR (at least ONE condition must be met)","jet-form-builder")}],fe=window.JetFormEditorData.actionConditionExcludeEvents;function Ve(e,C){const t=z[e].find((e=>e.value===C));return(e,C="")=>t&&t[e]||C}function He({formFields:e}){const{currentItem:C,changeCurrentItem:t}=me(U);let l=oe("To fulfill this condition, the result of the check must be","jet-form-builder")+" ";l+=C.execute?"TRUE":"FALSE";const r=Ve("compare_value_formats",C.compare_value_format),n=Ve("operators",C.operator);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ne,{label:l,checked:C.execute,onChange:e=>{t({execute:e})}}),(0,h.createElement)(le,{label:"Operator",labelPosition:"side",help:n("help"),value:C.operator,options:z.operators,onChange:e=>t({operator:e})}),(0,h.createElement)(le,{label:"Field",labelPosition:"side",value:C.field,options:e,onChange:e=>t({field:e})}),(0,h.createElement)(le,{label:oe("Type transform comparing value","jet-form-builder"),labelPosition:"side",value:C.compare_value_format,options:z.compare_value_formats,onChange:e=>{t({compare_value_format:e})}}),r("help").length>0&&(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:r("help")}}),(0,h.createElement)(K,{value:C.default,label:oe("Value to Compare","jet-form-builder"),macroWithCurrent:!0,onChangePreset:e=>{t({default:e})}},(({instanceId:e})=>(0,h.createElement)(re,{id:e,value:C.default,help:n("need_explode")?z.help_for_exploding_compare:"",onChange:e=>{t({default:e})}}))))}function he({events:e}){var C;const{currentAction:t}=Q(),{setCurrentAction:l}=ee(),[r,n]=de(!1),a=se((e=>e("jet-forms/events").getHelpMap()));return ce((()=>{if(fe[t.type]&&t.events.length){const e=t.events.filter((e=>!fe[t.type].includes(e)));t.events.some((C=>!e.includes(C)))&&l({...t,events:e})}}),[t,l]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ae,{label:oe("Add event","jet-form-builder"),value:null!==(C=t.events)&&void 0!==C?C:[],suggestions:e,onChange:e=>l({...t,events:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0,__experimentalShowHowTo:""}),(0,h.createElement)(Y,null,oe("Separate with commas, spaces, or press Enter.","jet-form-builder")+" ",(0,h.createElement)("a",{href:"#",role:"button",onClick:()=>n((e=>!e))},oe(r?"Hide":"Details","jet-form-builder"))),r&&(0,h.createElement)("ul",{className:"jet-fb-ul-revert-layer"},e.map((e=>(0,h.createElement)("li",{key:e},(0,h.createElement)("b",null,e),": ",(0,h.createElement)(ue,null,a[e]))))))}function be(){var e;const[C,t]=de([]);ce((()=>{t(te([],"--"))}),[]);const{currentAction:l}=Q(),{setCurrentAction:r,updateCurrentConditions:n}=ee();return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(le,{key:"SelectControl-operator",label:oe("Condition Operator","jet-form-builder"),labelPosition:"side",value:l.condition_operator||"and",options:pe,onChange:e=>r({...l,condition_operator:e})}),(0,h.createElement)($,{state:n},(0,h.createElement)(G,{items:null!==(e=l.conditions)&&void 0!==e?e:[]},(0,h.createElement)(He,{formFields:C})),(0,h.createElement)(W,{item:{execute:!0}},oe("Add New Condition","jet-form-builder"))))}const Me=function(){var e;let C=X();const{currentAction:t}=Q(),[l]=Ce("_jf_gateways",{}),r=se((e=>e("jet-forms/events").getEventValuesByGateway()));if("manual"===l?.mode&&r&&"object"==typeof r){const e=Object.keys(r).filter((e=>!!l?.[e]?.show_on_front)).flatMap((e=>{var C;return null!==(C=r?.[e])&&void 0!==C?C:[]}));C=Array.from(new Set([...null!=C?C:[],...e]))}if(fe?.[t.type]){const e=fe[t.type];C=(null!=C?C:[]).filter((C=>!e.includes(C)))}return 1===(null!==(e=C?.length)&&void 0!==e?e:0)?(0,h.createElement)(be,null):(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ie,{className:"jfb-conditions-tab-panel",initialTabName:"fields",tabs:[{name:"fields",title:oe("Fields comparison","jet-form-builder"),edit:(0,h.createElement)(be,null)},{name:"events",title:oe("Events match","jet-form-builder"),edit:(0,h.createElement)(he,{events:C})}]},(e=>e.edit)))},{__:Le}=wp.i18n,{ActionModal:ge}=JetFBComponents,{useRequestEvents:Ze,useUpdateCurrentActionMeta:ye,useCurrentAction:Ee}=JetFBHooks,{useDispatch:we,useSelect:ve}=wp.data,_e=function(){const e=ve((e=>e("jet-forms/actions").isConditionalModal())),{clearCurrent:C}=we("jet-forms/actions",[]),t=ye(),{currentAction:l}=Ee(),r=Ze();if(!e)return null;const n=["width-60"];return 1!==r.length&&n.push("without-margin"),(0,h.createElement)(ge,{classNames:n,title:Le("Edit Action Conditions & Events","jet-form-builder"),onRequestClose:C,onCancelClick:C,onUpdateClick:()=>{t({...l}),C()}},(0,h.createElement)(Me,null))},ke=window.wp.editor,je=(0,L.withFilters)("jet.fb.action.item")(Z.ListActionItem),xe=x(g.Sortable)({name:"FlexSortable",class:"f13zt8l2",propsAsIs:!0}),Fe=x(ke.PluginDocumentSettingPanel)({name:"ActionsPanel",class:"am4szan",propsAsIs:!0}),Be=x(L.Flex)({name:"StyledFlex",class:"s8wdwdc",propsAsIs:!0});t(1669);const Ae={base:{name:"jf-actions-panel",jfbApiVersion:2},settings:{render:function(){const[e,C]=(0,Z.useActions)(),t=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return(0,h.createElement)(Fe,{title:(0,M.__)("Post Submit Actions","jet-form-builder")},(0,h.createElement)(Be,{direction:"column",gap:3,className:t?"buddypress-active":""},(0,h.createElement)(xe,{list:e,setList:C,direction:"vertical",handle:".jfb-action-handle",draggable:".jet-form-action.draggable"},e.map(((e,C)=>(0,h.createElement)(y.Fragment,{key:e.id},(0,h.createElement)(Z.ActionListItemContext.Provider,{value:{index:C,action:e}},(0,h.createElement)(je,null)))))),(0,h.createElement)(Z.ActionsAfterNewButtonSlotFill.Slot,null,(e=>(0,h.createElement)(L.Flex,{className:"jfb-actions-panel--buttons"},(0,h.createElement)(Z.AddActionButton,null),e)))),(0,h.createElement)(Z.AllProActionsLink,null),(0,h.createElement)(D,null),(0,h.createElement)(_e,null))}}},{useMetaState:Pe}=JetFBHooks,{TextControl:Se,SelectControl:Ne,ToggleControl:Ie}=wp.components,{__:Te}=wp.i18n,Oe=window.JetFormEditorData.argumentsSource||{},{__:Je}=wp.i18n,Re={base:{name:"jf-args-panel",title:Je("Form Settings","jet-form-builder"),jfbTest:2},settings:{render:function(){var e,C,t,l,r,n,a;const[i,o]=Pe("_jf_args"),s=window.location.href.includes("post-new.php");let c="label",d="fieldset";var m,u;return s||(c=null!==(m=i?.fields_label_tag)&&void 0!==m?m:"div",d=null!==(u=i?.markup_type)&&void 0!==u?u:"div"),(0,h.useEffect)((()=>{i?.fields_label_tag||o((e=>({...e,fields_label_tag:c})))}),[i,c,o]),(0,h.useEffect)((()=>{i?.markup_type||o((e=>({...e,markup_type:d})))}),[i,d,o]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ne,{label:Te("Fields Layout","jet-form-builder"),value:null!==(e=i?.fields_layout)&&void 0!==e?e:"",options:Oe.fields_layout,onChange:e=>{o((C=>({...C,fields_layout:e})))}}),(0,h.createElement)(Se,{label:Te("Required Mark","jet-form-builder"),value:null!==(C=i?.required_mark)&&void 0!==C?C:"",onChange:e=>{o((C=>({...C,required_mark:e})))}}),(0,h.createElement)(Ne,{label:Te("Fields label HTML tag","jet-form-builder"),value:null!==(t=i?.fields_label_tag)&&void 0!==t?t:c,options:Oe.fields_label_tag,onChange:e=>{o((C=>({...C,fields_label_tag:e})))}}),(0,h.createElement)(Ne,{label:Te("Markup type","jet-form-builder"),value:null!==(l=i?.markup_type)&&void 0!==l?l:d,options:Oe.markup_type,onChange:e=>{o((C=>({...C,markup_type:e})))}}),(0,h.createElement)(Ne,{label:Te("Submit Type","jet-form-builder"),value:null!==(r=i?.submit_type)&&void 0!==r?r:"",options:Oe.submit_type,onChange:e=>{o((C=>({...C,submit_type:e})))}}),(0,h.createElement)(Ie,{key:"enable_progress",label:Te("Enable form pages progress","jet-form-builder"),checked:null!==(n=i?.enable_progress)&&void 0!==n&&n,help:Te("Displays the progress of a multi-page form","jet-form-builder"),onChange:()=>{o((e=>{const C=!Boolean(e.enable_progress);return{...e,enable_progress:C}}))}}),(0,h.createElement)(Ie,{key:"clear_on_ajax",label:Te("Clear data on success submit","jet-form-builder"),checked:null!==(a=i?.clear)&&void 0!==a&&a,help:Te("Remove input values on successful submit","jet-form-builder"),onChange:()=>{o((e=>({...e,clear:!Boolean(e.clear)})))}}))},icon:"admin-settings"}},{GlobalField:qe,AvailableMapField:De}=JetFBComponents,{withPreset:ze}=JetFBActions,Ue=ze((function({value:e,availableFields:C,isMapFieldVisible:t,isVisible:l,onChange:r}){const n=(C,t)=>{r({...e,[t]:C})};return(0,h.createElement)(L.Flex,{direction:"column",gap:4},window.JetFormEditorData.presetConfig.global_fields.map(((C,t)=>(0,h.createElement)(qe,{key:C.name+t,value:e,index:t,data:C,options:C.options,onChangeValue:n,isVisible:l,position:"general"}))),e.from&&C.map(((C,l)=>(0,h.createElement)(De,{key:C+l,fieldsMap:e.fields_map,field:C,index:l,onChangeValue:n,isMapFieldVisible:t,value:e}))))})),{useMetaState:Ge}=JetFBHooks,{getAvailableFields:We}=JetFBActions,{__:Ke}=wp.i18n,{__:$e}=wp.i18n,Ye={base:{name:"jf-preset-panel",title:$e("Preset Settings","jet-form-builder")},settings:{render:function(){var e,C;const{ToggleControl:t}=wp.components,[l,r]=Ge("_jf_preset"),n=(0,y.useMemo)((()=>l.enabled?We([],"preset"):[]),[l.enabled]);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(t,{key:"enable_preset",label:Ke("Enable","jet-form-builder"),checked:l.enabled,help:"Check this to enable global form preset",onChange:e=>{r((C=>({...C,enabled:e})))}}),l.enabled&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ue,{key:"_jf_preset_general",value:l,onChange:e=>{r((C=>({...C,...e,enabled:C.enabled})))},availableFields:n}),(0,h.createElement)(t,{label:Ke("Restrict access","jet-form-builder"),checked:null===(e=l.restricted)||void 0===e||e,help:null===(C=l.restricted)||void 0===C||C?Ke("Will set default value from preset only for users who allowed to edit this value","jet-form-builder"):Ke("Always set default value from preset. Make sure it can't be accidentally changed from form Actions","jet-form-builder"),onChange:e=>{r((C=>({...C,restricted:e?void 0:e})))}})))},icon:"database-import"}},{TextControl:Xe}=wp.components,{useMetaState:Qe}=JetFBHooks,{__:eC}=wp.i18n,CC={base:{name:"jf-messages-panel",title:eC("General Messages Settings","jet-form-builder")},settings:{render:function(){const[e,C]=Qe("_jf_messages");return(0,h.createElement)(h.Fragment,null,Object.entries(JetFormEditorData.messagesDefault).map((([t,{label:l,value:r}],n)=>{var a;return(0,h.createElement)(Xe,{key:t+n,label:l,value:null!==(a=e[t])&&void 0!==a?a:r,onChange:e=>C((C=>({...C,[t]:e})))})})))},icon:"format-status"}},{__:tC}=wp.i18n,{__:lC}=wp.i18n,rC={base:{name:"jf-limit-responses-panel",title:lC("Limit Form Responses","jet-form-builder")},settings:{render:function(){const{limitResponses:e}=JetFormEditorData.utmLinks;return(0,h.createElement)("p",null,tC("You’re using free version of JetFormBuilder.","jet-form-builder")+"\n",(0,h.createElement)("a",{href:e,target:"_blank",rel:"noreferrer"},tC("Upgrade","jet-form-builder"))," "+tC("to unlock this feature.","jet-form-builder"))},icon:"lock"}},{__:nC}=wp.i18n,{__:aC}=wp.i18n,iC={base:{name:"jf-schedule-panel",title:aC("Form Schedule","jet-form-builder")},settings:{render:function(){const{scheduleForm:e}=JetFormEditorData.utmLinks;return(0,h.createElement)("p",null,nC("You’re using free version of JetFormBuilder.","jet-form-builder")+"\n",(0,h.createElement)("a",{href:e,target:"_blank",rel:"noreferrer"},nC("Upgrade","jet-form-builder"))," "+nC("to unlock this feature.","jet-form-builder"))},icon:"lock"}},{ActionModalContext:oC,ValidationMetaMessage:sC}=JetFBComponents,{useMetaState:cC,useGroupedValidationMessages:dC}=JetFBHooks,mC=function(){const[e,C]=cC("_jf_validation","{}",[]),t=dC(),[l,r]=(0,y.useState)((()=>{var C;return null!==(C=e.messages)&&void 0!==C?C:{}})),{actionClick:n,onRequestClose:a}=(0,y.useContext)(oC);return(0,y.useEffect)((()=>{n&&C((e=>({...e,messages:l}))),null!==n&&a()}),[n]),(0,h.createElement)(L.Flex,{gap:4,direction:"column"},t.map(((e,C)=>(0,h.createElement)(sC,{key:"message_item"+e.id,message:e,messages:l,update:r,value:l[e.id],className:0!==C?"jet-control-full":"",style:0!==C?{}:{paddingBottom:"5px"}}))))},{Button:uC,ToggleControl:pC,__experimentalToggleGroupControl:fC,__experimentalToggleGroupControlOption:VC}=wp.components,{__:HC}=wp.i18n,{useState:hC,useEffect:bC}=wp.element,{useMetaState:MC}=JetFBHooks,{ActionModal:LC}=JetFBComponents,{formats:gC}=window.jetFormValidation,{__:ZC}=wp.i18n,yC={base:{name:"jf-validation-panel",title:ZC("Validation","jet-form-builder")},settings:{render:function(){var e,C,t;const[l,r]=MC("_jf_validation"),[n,a]=MC("_jf_args"),[i,o]=hC(!1),[s,c]=hC("render"===n.load_nonce);return bC((()=>{a((e=>({...e,load_nonce:s?"render":"hide"})))}),[s]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(pC,{key:"load_nonce",label:HC("Enable form safety","jet-form-builder"),checked:s,help:HC("Protects the form with a WordPress nonce. Toggle this option off if the form's page's caching can't be disabled","jet-form-builder"),onChange:()=>{c((e=>!e))}}),(0,h.createElement)(pC,{label:HC("Enable csrf protection","jet-form-builder"),checked:null!==(e=n?.use_csrf)&&void 0!==e&&e,onChange:()=>{a((e=>{const C=!Boolean(e.use_csrf);return{...e,use_csrf:C}}))}}),(0,h.createElement)(pC,{label:HC("Enable Honeypot protection","jet-form-builder"),checked:null!==(C=n?.use_honeypot)&&void 0!==C&&C,onChange:()=>{a((e=>({...e,use_honeypot:!Boolean(e.use_honeypot)})))}}),(0,h.createElement)(fC,{onChange:e=>r((C=>({...C,type:e}))),value:null!==(t=l?.type)&&void 0!==t?t:"browser",label:HC("Validation type","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},gC.map((e=>(0,h.createElement)(VC,{key:e.value+"_key",label:e.label,value:e.value,"aria-label":e.title,showTooltip:!0})))),"advanced"===l.type&&(0,h.createElement)(uC,{className:"jet-fb-button w-100 jc-center",isSecondary:!0,isSmall:!0,icon:"edit",onClick:()=>o(!0)},HC("Edit validation messages","jet-form-builder")),i&&(0,h.createElement)(LC,{title:"Edit Manual Options",onRequestClose:()=>o(!1),classNames:["width-60"]},(0,h.createElement)(mC,null)))},icon:"shield-alt"}},EC=window.wp.plugins;(0,EC.registerPlugin)("jf-rating-popover",{render:()=>((()=>{const e=jQuery(".interface-interface-skeleton__footer");e.find(".jet-fb-rating-message").remove();const C=(0,M.sprintf)((0,M.__)('Liked JetFormBuilder? Please rate it ★★★★★. For troubleshooting, contact Crocoblock support.',"jet-form-builder"),"https://wordpress.org/support/plugin/jetformbuilder/reviews/?filter=5","https://support.crocoblock.com/support/home/");e.append(`\n\t
${C}
\n`)})(),null)});const wC=window.wp.hooks,vC=e=>{const{base:C,settings:t}=e;C.jfbApiVersion&&1!==C.jfbApiVersion||(t.render=((e,C)=>{const t=e.render;return()=>(0,h.createElement)(ke.PluginDocumentSettingPanel,{key:`plugin-panel-${C.name}`,...C},(0,h.createElement)(t,{key:`plugin-render-${C.name}`}))})(t,C)),(0,EC.getPlugin)(C.name)&&(0,EC.unregisterPlugin)(C.name),(0,EC.registerPlugin)(C.name,t)};JetFormEditorData.isActivePro||(0,wC.addFilter)("jet.fb.register.plugin.jf-actions-panel.after","jet-form-builder",(e=>(e.push(iC,rC),e)),0);const _C=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("g",{clipPath:"url(#clip0_273_2176)"},(0,h.createElement)("path",{d:"M22.4785 28.4268V29.5H17.208V28.4268H22.4785ZM17.4746 19.5469V29.5H16.1553V19.5469H17.4746ZM21.7812 23.8262V24.8994H17.208V23.8262H21.7812ZM22.4102 19.5469V20.627H17.208V19.5469H22.4102ZM24.7754 22.1035L26.3955 24.7969L28.0361 22.1035H29.5195L27.0996 25.7539L29.5947 29.5H28.1318L26.4229 26.7246L24.7139 29.5H23.2441L25.7324 25.7539L23.3193 22.1035H24.7754ZM33.9629 22.1035V23.0742H29.9639V22.1035H33.9629ZM31.3174 20.3057H32.582V27.668C32.582 27.9186 32.6208 28.1077 32.6982 28.2354C32.7757 28.363 32.876 28.4473 32.999 28.4883C33.1221 28.5293 33.2542 28.5498 33.3955 28.5498C33.5003 28.5498 33.6097 28.5407 33.7236 28.5225C33.8421 28.4997 33.931 28.4814 33.9902 28.4678L33.9971 29.5C33.8968 29.5319 33.7646 29.5615 33.6006 29.5889C33.4411 29.6208 33.2474 29.6367 33.0195 29.6367C32.7096 29.6367 32.4248 29.5752 32.165 29.4521C31.9053 29.3291 31.6979 29.124 31.543 28.8369C31.3926 28.5452 31.3174 28.1533 31.3174 27.6611V20.3057ZM36.7109 23.2656V29.5H35.4463V22.1035H36.6768L36.7109 23.2656ZM39.0215 22.0625L39.0146 23.2383C38.9098 23.2155 38.8096 23.2018 38.7139 23.1973C38.6227 23.1882 38.5179 23.1836 38.3994 23.1836C38.1077 23.1836 37.8503 23.2292 37.627 23.3203C37.4036 23.4115 37.2145 23.5391 37.0596 23.7031C36.9046 23.8672 36.7816 24.0632 36.6904 24.291C36.6038 24.5143 36.5469 24.7604 36.5195 25.0293L36.1641 25.2344C36.1641 24.7878 36.2074 24.3685 36.2939 23.9766C36.3851 23.5846 36.5241 23.2383 36.7109 22.9375C36.8978 22.6322 37.1348 22.3952 37.4219 22.2266C37.7135 22.0534 38.0599 21.9668 38.4609 21.9668C38.5521 21.9668 38.6569 21.9782 38.7754 22.001C38.8939 22.0192 38.9759 22.0397 39.0215 22.0625ZM44.2783 28.2354V24.4277C44.2783 24.1361 44.2191 23.8831 44.1006 23.6689C43.9867 23.4502 43.8135 23.2816 43.5811 23.1631C43.3486 23.0446 43.0615 22.9854 42.7197 22.9854C42.4007 22.9854 42.1204 23.04 41.8789 23.1494C41.6419 23.2588 41.4551 23.4023 41.3184 23.5801C41.1862 23.7578 41.1201 23.9492 41.1201 24.1543H39.8555C39.8555 23.89 39.9238 23.6279 40.0605 23.3682C40.1973 23.1084 40.3932 22.8737 40.6484 22.6641C40.9082 22.4499 41.2181 22.2812 41.5781 22.1582C41.9427 22.0306 42.3483 21.9668 42.7949 21.9668C43.3327 21.9668 43.8066 22.0579 44.2168 22.2402C44.6315 22.4225 44.9551 22.6982 45.1875 23.0674C45.4245 23.432 45.543 23.89 45.543 24.4414V27.8867C45.543 28.1328 45.5635 28.3949 45.6045 28.6729C45.6501 28.9508 45.7161 29.1901 45.8027 29.3906V29.5H44.4834C44.4196 29.3542 44.3695 29.1605 44.333 28.9189C44.2965 28.6729 44.2783 28.445 44.2783 28.2354ZM44.4971 25.0156L44.5107 25.9043H43.2324C42.8724 25.9043 42.5511 25.9339 42.2686 25.9932C41.986 26.0479 41.749 26.1322 41.5576 26.2461C41.3662 26.36 41.2204 26.5036 41.1201 26.6768C41.0199 26.8454 40.9697 27.0436 40.9697 27.2715C40.9697 27.5039 41.0221 27.7158 41.127 27.9072C41.2318 28.0986 41.389 28.2513 41.5986 28.3652C41.8128 28.4746 42.0749 28.5293 42.3848 28.5293C42.7721 28.5293 43.1139 28.4473 43.4102 28.2832C43.7064 28.1191 43.9411 27.9186 44.1143 27.6816C44.292 27.4447 44.3877 27.2145 44.4014 26.9912L44.9414 27.5996C44.9095 27.791 44.8229 28.0029 44.6816 28.2354C44.5404 28.4678 44.3512 28.6911 44.1143 28.9053C43.8818 29.1149 43.6038 29.2904 43.2803 29.4316C42.9613 29.5684 42.6012 29.6367 42.2002 29.6367C41.6989 29.6367 41.2591 29.5387 40.8809 29.3428C40.5072 29.1468 40.2155 28.8848 40.0059 28.5566C39.8008 28.224 39.6982 27.8525 39.6982 27.4424C39.6982 27.0459 39.7757 26.6973 39.9307 26.3965C40.0856 26.0911 40.3089 25.8382 40.6006 25.6377C40.8923 25.4326 41.2432 25.2777 41.6533 25.1729C42.0635 25.068 42.5215 25.0156 43.0273 25.0156H44.4971ZM55.3115 27.5381C55.3115 27.3558 55.2705 27.1872 55.1885 27.0322C55.111 26.8727 54.9492 26.7292 54.7031 26.6016C54.4616 26.4694 54.097 26.3555 53.6094 26.2598C53.1992 26.1732 52.8278 26.0706 52.4951 25.9521C52.167 25.8337 51.8867 25.6901 51.6543 25.5215C51.4264 25.3529 51.251 25.1546 51.1279 24.9268C51.0049 24.6989 50.9434 24.4323 50.9434 24.127C50.9434 23.8353 51.0072 23.5596 51.1348 23.2998C51.2669 23.04 51.4515 22.8099 51.6885 22.6094C51.93 22.4089 52.2194 22.2516 52.5566 22.1377C52.8939 22.0238 53.2699 21.9668 53.6846 21.9668C54.277 21.9668 54.7829 22.0716 55.2021 22.2812C55.6214 22.4909 55.9427 22.7712 56.166 23.1221C56.3893 23.4684 56.501 23.8535 56.501 24.2773H55.2363C55.2363 24.0723 55.1748 23.874 55.0518 23.6826C54.9333 23.4867 54.7578 23.3249 54.5254 23.1973C54.2975 23.0697 54.0173 23.0059 53.6846 23.0059C53.3337 23.0059 53.0488 23.0605 52.8301 23.1699C52.6159 23.2747 52.4587 23.4092 52.3584 23.5732C52.2627 23.7373 52.2148 23.9105 52.2148 24.0928C52.2148 24.2295 52.2376 24.3525 52.2832 24.4619C52.3333 24.5667 52.4199 24.6647 52.543 24.7559C52.666 24.8424 52.8392 24.9245 53.0625 25.002C53.2858 25.0794 53.5706 25.1569 53.917 25.2344C54.5231 25.3711 55.0221 25.5352 55.4141 25.7266C55.806 25.918 56.0977 26.1527 56.2891 26.4307C56.4805 26.7087 56.5762 27.0459 56.5762 27.4424C56.5762 27.766 56.5078 28.0622 56.3711 28.3311C56.2389 28.5999 56.0452 28.8324 55.79 29.0283C55.5394 29.2197 55.2386 29.3701 54.8877 29.4795C54.5413 29.5843 54.1517 29.6367 53.7188 29.6367C53.0671 29.6367 52.5156 29.5205 52.0645 29.2881C51.6133 29.0557 51.2715 28.7549 51.0391 28.3857C50.8066 28.0166 50.6904 27.627 50.6904 27.2168H51.9619C51.9801 27.5632 52.0804 27.8389 52.2627 28.0439C52.445 28.2445 52.6683 28.388 52.9326 28.4746C53.1969 28.5566 53.459 28.5977 53.7188 28.5977C54.0651 28.5977 54.3545 28.5521 54.5869 28.4609C54.8239 28.3698 55.0039 28.2445 55.127 28.085C55.25 27.9255 55.3115 27.7432 55.3115 27.5381ZM61.3066 29.6367C60.7917 29.6367 60.3245 29.5501 59.9053 29.377C59.4906 29.1992 59.1328 28.9508 58.832 28.6318C58.5358 28.3128 58.3079 27.9346 58.1484 27.4971C57.9889 27.0596 57.9092 26.5811 57.9092 26.0615V25.7744C57.9092 25.1729 57.998 24.6374 58.1758 24.168C58.3535 23.694 58.5951 23.293 58.9004 22.9648C59.2057 22.6367 59.5521 22.3883 59.9395 22.2197C60.3268 22.0511 60.7279 21.9668 61.1426 21.9668C61.6712 21.9668 62.127 22.0579 62.5098 22.2402C62.8971 22.4225 63.2139 22.6777 63.46 23.0059C63.7061 23.3294 63.8883 23.7122 64.0068 24.1543C64.1253 24.5918 64.1846 25.0703 64.1846 25.5898V26.1572H58.6611V25.125H62.9199V25.0293C62.9017 24.7012 62.8333 24.3822 62.7148 24.0723C62.6009 23.7624 62.4186 23.5072 62.168 23.3066C61.9173 23.1061 61.5755 23.0059 61.1426 23.0059C60.8555 23.0059 60.5911 23.0674 60.3496 23.1904C60.1081 23.3089 59.9007 23.4867 59.7275 23.7236C59.5544 23.9606 59.4199 24.25 59.3242 24.5918C59.2285 24.9336 59.1807 25.3278 59.1807 25.7744V26.0615C59.1807 26.4124 59.2285 26.7428 59.3242 27.0527C59.4245 27.3581 59.568 27.627 59.7549 27.8594C59.9463 28.0918 60.1764 28.2741 60.4453 28.4062C60.7188 28.5384 61.0286 28.6045 61.375 28.6045C61.8216 28.6045 62.1999 28.5133 62.5098 28.3311C62.8197 28.1488 63.0908 27.9049 63.3232 27.5996L64.0889 28.208C63.9294 28.4495 63.7266 28.6797 63.4805 28.8984C63.2344 29.1172 62.9313 29.2949 62.5713 29.4316C62.2158 29.5684 61.7943 29.6367 61.3066 29.6367ZM66.9258 23.2656V29.5H65.6611V22.1035H66.8916L66.9258 23.2656ZM69.2363 22.0625L69.2295 23.2383C69.1247 23.2155 69.0244 23.2018 68.9287 23.1973C68.8376 23.1882 68.7327 23.1836 68.6143 23.1836C68.3226 23.1836 68.0651 23.2292 67.8418 23.3203C67.6185 23.4115 67.4294 23.5391 67.2744 23.7031C67.1195 23.8672 66.9964 24.0632 66.9053 24.291C66.8187 24.5143 66.7617 24.7604 66.7344 25.0293L66.3789 25.2344C66.3789 24.7878 66.4222 24.3685 66.5088 23.9766C66.5999 23.5846 66.7389 23.2383 66.9258 22.9375C67.1126 22.6322 67.3496 22.3952 67.6367 22.2266C67.9284 22.0534 68.2747 21.9668 68.6758 21.9668C68.7669 21.9668 68.8717 21.9782 68.9902 22.001C69.1087 22.0192 69.1908 22.0397 69.2363 22.0625ZM72.7773 28.3584L74.8008 22.1035H76.0928L73.4336 29.5H72.5859L72.7773 28.3584ZM71.0889 22.1035L73.1738 28.3926L73.3174 29.5H72.4697L69.79 22.1035H71.0889ZM78.6836 22.1035V29.5H77.4121V22.1035H78.6836ZM77.3164 20.1416C77.3164 19.9365 77.3779 19.7633 77.501 19.6221C77.6286 19.4808 77.8154 19.4102 78.0615 19.4102C78.3031 19.4102 78.4876 19.4808 78.6152 19.6221C78.7474 19.7633 78.8135 19.9365 78.8135 20.1416C78.8135 20.3376 78.7474 20.5062 78.6152 20.6475C78.4876 20.7842 78.3031 20.8525 78.0615 20.8525C77.8154 20.8525 77.6286 20.7842 77.501 20.6475C77.3779 20.5062 77.3164 20.3376 77.3164 20.1416ZM83.6738 28.5977C83.9746 28.5977 84.2526 28.5361 84.5078 28.4131C84.763 28.29 84.9727 28.1214 85.1367 27.9072C85.3008 27.6885 85.3942 27.4401 85.417 27.1621H86.6201C86.5973 27.5996 86.4492 28.0075 86.1758 28.3857C85.9069 28.7594 85.5537 29.0625 85.1162 29.2949C84.6787 29.5228 84.1979 29.6367 83.6738 29.6367C83.1178 29.6367 82.6325 29.5387 82.2178 29.3428C81.8076 29.1468 81.4658 28.8779 81.1924 28.5361C80.9235 28.1943 80.7207 27.8024 80.584 27.3604C80.4518 26.9137 80.3857 26.4421 80.3857 25.9453V25.6582C80.3857 25.1615 80.4518 24.6921 80.584 24.25C80.7207 23.8034 80.9235 23.4092 81.1924 23.0674C81.4658 22.7256 81.8076 22.4567 82.2178 22.2607C82.6325 22.0648 83.1178 21.9668 83.6738 21.9668C84.2526 21.9668 84.7585 22.0853 85.1914 22.3223C85.6243 22.5547 85.9639 22.8737 86.21 23.2793C86.4606 23.6803 86.5973 24.1361 86.6201 24.6465H85.417C85.3942 24.3411 85.3076 24.0654 85.1572 23.8193C85.0114 23.5732 84.8109 23.3773 84.5557 23.2314C84.305 23.0811 84.0111 23.0059 83.6738 23.0059C83.2865 23.0059 82.9606 23.0833 82.6963 23.2383C82.4365 23.3887 82.2292 23.5938 82.0742 23.8535C81.9238 24.1087 81.8145 24.3936 81.7461 24.708C81.6823 25.0179 81.6504 25.3346 81.6504 25.6582V25.9453C81.6504 26.2689 81.6823 26.5879 81.7461 26.9023C81.8099 27.2168 81.917 27.5016 82.0674 27.7568C82.2223 28.012 82.4297 28.2171 82.6895 28.3721C82.9538 28.5225 83.2819 28.5977 83.6738 28.5977ZM91.1113 29.6367C90.5964 29.6367 90.1292 29.5501 89.71 29.377C89.2952 29.1992 88.9375 28.9508 88.6367 28.6318C88.3405 28.3128 88.1126 27.9346 87.9531 27.4971C87.7936 27.0596 87.7139 26.5811 87.7139 26.0615V25.7744C87.7139 25.1729 87.8027 24.6374 87.9805 24.168C88.1582 23.694 88.3997 23.293 88.7051 22.9648C89.0104 22.6367 89.3568 22.3883 89.7441 22.2197C90.1315 22.0511 90.5326 21.9668 90.9473 21.9668C91.4759 21.9668 91.9316 22.0579 92.3145 22.2402C92.7018 22.4225 93.0186 22.6777 93.2646 23.0059C93.5107 23.3294 93.693 23.7122 93.8115 24.1543C93.93 24.5918 93.9893 25.0703 93.9893 25.5898V26.1572H88.4658V25.125H92.7246V25.0293C92.7064 24.7012 92.638 24.3822 92.5195 24.0723C92.4056 23.7624 92.2233 23.5072 91.9727 23.3066C91.722 23.1061 91.3802 23.0059 90.9473 23.0059C90.6602 23.0059 90.3958 23.0674 90.1543 23.1904C89.9128 23.3089 89.7054 23.4867 89.5322 23.7236C89.359 23.9606 89.2246 24.25 89.1289 24.5918C89.0332 24.9336 88.9854 25.3278 88.9854 25.7744V26.0615C88.9854 26.4124 89.0332 26.7428 89.1289 27.0527C89.2292 27.3581 89.3727 27.627 89.5596 27.8594C89.751 28.0918 89.9811 28.2741 90.25 28.4062C90.5234 28.5384 90.8333 28.6045 91.1797 28.6045C91.6263 28.6045 92.0046 28.5133 92.3145 28.3311C92.6243 28.1488 92.8955 27.9049 93.1279 27.5996L93.8936 28.208C93.734 28.4495 93.5312 28.6797 93.2852 28.8984C93.0391 29.1172 92.736 29.2949 92.376 29.4316C92.0205 29.5684 91.599 29.6367 91.1113 29.6367ZM99.7725 27.5381C99.7725 27.3558 99.7314 27.1872 99.6494 27.0322C99.5719 26.8727 99.4102 26.7292 99.1641 26.6016C98.9225 26.4694 98.5579 26.3555 98.0703 26.2598C97.6602 26.1732 97.2887 26.0706 96.9561 25.9521C96.6279 25.8337 96.3477 25.6901 96.1152 25.5215C95.8874 25.3529 95.7119 25.1546 95.5889 24.9268C95.4658 24.6989 95.4043 24.4323 95.4043 24.127C95.4043 23.8353 95.4681 23.5596 95.5957 23.2998C95.7279 23.04 95.9124 22.8099 96.1494 22.6094C96.391 22.4089 96.6803 22.2516 97.0176 22.1377C97.3548 22.0238 97.7308 21.9668 98.1455 21.9668C98.738 21.9668 99.2438 22.0716 99.6631 22.2812C100.082 22.4909 100.404 22.7712 100.627 23.1221C100.85 23.4684 100.962 23.8535 100.962 24.2773H99.6973C99.6973 24.0723 99.6357 23.874 99.5127 23.6826C99.3942 23.4867 99.2188 23.3249 98.9863 23.1973C98.7585 23.0697 98.4782 23.0059 98.1455 23.0059C97.7946 23.0059 97.5098 23.0605 97.291 23.1699C97.0768 23.2747 96.9196 23.4092 96.8193 23.5732C96.7236 23.7373 96.6758 23.9105 96.6758 24.0928C96.6758 24.2295 96.6986 24.3525 96.7441 24.4619C96.7943 24.5667 96.8809 24.6647 97.0039 24.7559C97.127 24.8424 97.3001 24.9245 97.5234 25.002C97.7467 25.0794 98.0316 25.1569 98.3779 25.2344C98.984 25.3711 99.4831 25.5352 99.875 25.7266C100.267 25.918 100.559 26.1527 100.75 26.4307C100.941 26.7087 101.037 27.0459 101.037 27.4424C101.037 27.766 100.969 28.0622 100.832 28.3311C100.7 28.5999 100.506 28.8324 100.251 29.0283C100 29.2197 99.6995 29.3701 99.3486 29.4795C99.0023 29.5843 98.6126 29.6367 98.1797 29.6367C97.528 29.6367 96.9766 29.5205 96.5254 29.2881C96.0742 29.0557 95.7324 28.7549 95.5 28.3857C95.2676 28.0166 95.1514 27.627 95.1514 27.2168H96.4229C96.4411 27.5632 96.5413 27.8389 96.7236 28.0439C96.9059 28.2445 97.1292 28.388 97.3936 28.4746C97.6579 28.5566 97.9199 28.5977 98.1797 28.5977C98.526 28.5977 98.8154 28.5521 99.0479 28.4609C99.2848 28.3698 99.4648 28.2445 99.5879 28.085C99.7109 27.9255 99.7725 27.7432 99.7725 27.5381Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M29.25 41.25V51.75H18.75V41.25H29.25ZM29.25 39.75H18.75C17.925 39.75 17.25 40.425 17.25 41.25V51.75C17.25 52.575 17.925 53.25 18.75 53.25H29.25C30.075 53.25 30.75 52.575 30.75 51.75V41.25C30.75 40.425 30.075 39.75 29.25 39.75Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M40.3672 46.6772H38.0249L38.0122 45.6934H40.1387C40.4899 45.6934 40.7967 45.6341 41.0591 45.5156C41.3215 45.3971 41.5246 45.2279 41.6685 45.0078C41.8166 44.7835 41.8906 44.5169 41.8906 44.208C41.8906 43.8695 41.825 43.5944 41.6938 43.3828C41.5669 43.167 41.3701 43.0104 41.1035 42.9131C40.8411 42.8115 40.5068 42.7607 40.1006 42.7607H38.2979V51H37.0728V41.7578H40.1006C40.5745 41.7578 40.9977 41.8065 41.3701 41.9038C41.7425 41.9969 42.0578 42.145 42.3159 42.3481C42.5783 42.547 42.7772 42.8009 42.9126 43.1099C43.048 43.4188 43.1157 43.7891 43.1157 44.2207C43.1157 44.6016 43.0184 44.9465 42.8237 45.2554C42.6291 45.5601 42.3582 45.8097 42.0112 46.0044C41.6685 46.1991 41.2664 46.3239 40.8052 46.3789L40.3672 46.6772ZM40.3101 51H37.5425L38.2344 50.0034H40.3101C40.6994 50.0034 41.0295 49.9357 41.3003 49.8003C41.5754 49.6649 41.7848 49.4744 41.9287 49.229C42.0726 48.9793 42.1445 48.6852 42.1445 48.3467C42.1445 48.0039 42.0832 47.7077 41.9604 47.458C41.8377 47.2083 41.6452 47.0158 41.3828 46.8804C41.1204 46.745 40.7819 46.6772 40.3672 46.6772H38.6216L38.6343 45.6934H41.021L41.2812 46.0488C41.7256 46.0869 42.1022 46.2139 42.4111 46.4297C42.7201 46.6413 42.9549 46.9121 43.1157 47.2422C43.2808 47.5723 43.3633 47.9362 43.3633 48.334C43.3633 48.9095 43.2363 49.3962 42.9824 49.7939C42.7327 50.1875 42.3794 50.488 41.9224 50.6953C41.4653 50.8984 40.9279 51 40.3101 51ZM46.1689 45.2109V51H44.9946V44.1318H46.1372L46.1689 45.2109ZM48.3145 44.0938L48.3081 45.1855C48.2108 45.1644 48.1177 45.1517 48.0288 45.1475C47.9442 45.139 47.8468 45.1348 47.7368 45.1348C47.466 45.1348 47.2269 45.1771 47.0195 45.2617C46.8122 45.3464 46.6366 45.4648 46.4927 45.6172C46.3488 45.7695 46.2345 45.9515 46.1499 46.1631C46.0695 46.3704 46.0166 46.599 45.9912 46.8486L45.6611 47.0391C45.6611 46.6243 45.7013 46.235 45.7817 45.8711C45.8664 45.5072 45.9954 45.1855 46.1689 44.9062C46.3424 44.6227 46.5625 44.4027 46.8291 44.2461C47.0999 44.0853 47.4215 44.0049 47.7939 44.0049C47.8786 44.0049 47.9759 44.0155 48.0859 44.0366C48.196 44.0535 48.2721 44.0726 48.3145 44.0938ZM52.123 51.127C51.6449 51.127 51.2111 51.0465 50.8218 50.8857C50.4367 50.7207 50.1045 50.4901 49.8252 50.1938C49.5501 49.8976 49.3385 49.5464 49.1904 49.1401C49.0423 48.7339 48.9683 48.2896 48.9683 47.8071V47.5405C48.9683 46.9819 49.0508 46.4847 49.2158 46.0488C49.3809 45.6087 49.6051 45.2363 49.8887 44.9316C50.1722 44.627 50.4938 44.3963 50.8535 44.2397C51.2132 44.0832 51.5856 44.0049 51.9707 44.0049C52.4616 44.0049 52.8848 44.0895 53.2402 44.2588C53.5999 44.4281 53.894 44.665 54.1226 44.9697C54.3511 45.2702 54.5203 45.6257 54.6304 46.0361C54.7404 46.4424 54.7954 46.8867 54.7954 47.3691V47.896H49.6665V46.9375H53.6211V46.8486C53.6042 46.5439 53.5407 46.2477 53.4307 45.96C53.3249 45.6722 53.1556 45.4352 52.9229 45.249C52.6901 45.0628 52.3727 44.9697 51.9707 44.9697C51.7041 44.9697 51.4587 45.0269 51.2344 45.1411C51.0101 45.2511 50.8175 45.4162 50.6567 45.6362C50.4959 45.8563 50.3711 46.125 50.2822 46.4424C50.1934 46.7598 50.1489 47.1258 50.1489 47.5405V47.8071C50.1489 48.133 50.1934 48.4398 50.2822 48.7275C50.3753 49.0111 50.5086 49.2607 50.6821 49.4766C50.8599 49.6924 51.0736 49.8617 51.3232 49.9844C51.5771 50.1071 51.8649 50.1685 52.1865 50.1685C52.6012 50.1685 52.9525 50.0838 53.2402 49.9146C53.528 49.7453 53.7798 49.5189 53.9956 49.2354L54.7065 49.8003C54.5584 50.0246 54.3701 50.2383 54.1416 50.4414C53.9131 50.6445 53.6317 50.8096 53.2974 50.9365C52.9673 51.0635 52.5758 51.127 52.123 51.127ZM60.2163 49.8257V46.29C60.2163 46.0192 60.1613 45.7843 60.0513 45.5854C59.9455 45.3823 59.7847 45.2257 59.5688 45.1157C59.353 45.0057 59.0864 44.9507 58.769 44.9507C58.4728 44.9507 58.2126 45.0015 57.9883 45.103C57.7682 45.2046 57.5947 45.3379 57.4678 45.5029C57.3451 45.668 57.2837 45.8457 57.2837 46.0361H56.1094C56.1094 45.7907 56.1729 45.5474 56.2998 45.3062C56.4268 45.0649 56.6087 44.847 56.8457 44.6523C57.0869 44.4535 57.3747 44.2969 57.709 44.1826C58.0475 44.0641 58.4242 44.0049 58.8389 44.0049C59.3382 44.0049 59.7783 44.0895 60.1592 44.2588C60.5443 44.4281 60.8447 44.6841 61.0605 45.0269C61.2806 45.3654 61.3906 45.7907 61.3906 46.3027V49.502C61.3906 49.7305 61.4097 49.9738 61.4478 50.2319C61.4901 50.4901 61.5514 50.7122 61.6318 50.8984V51H60.4067C60.3475 50.8646 60.3009 50.6847 60.2671 50.4604C60.2332 50.2319 60.2163 50.0203 60.2163 49.8257ZM60.4194 46.8359L60.4321 47.6611H59.2451C58.9108 47.6611 58.6125 47.6886 58.3501 47.7437C58.0877 47.7944 57.8677 47.8727 57.6899 47.9785C57.5122 48.0843 57.3768 48.2176 57.2837 48.3784C57.1906 48.535 57.144 48.7191 57.144 48.9307C57.144 49.1465 57.1927 49.3433 57.29 49.521C57.3874 49.6987 57.5334 49.8405 57.728 49.9463C57.9269 50.0479 58.1702 50.0986 58.458 50.0986C58.8177 50.0986 59.1351 50.0225 59.4102 49.8701C59.6852 49.7178 59.9032 49.5316 60.064 49.3115C60.229 49.0915 60.3179 48.8778 60.3306 48.6704L60.832 49.2354C60.8024 49.4131 60.722 49.6099 60.5908 49.8257C60.4596 50.0415 60.284 50.2489 60.064 50.4478C59.8481 50.6424 59.59 50.8053 59.2896 50.9365C58.9933 51.0635 58.659 51.127 58.2866 51.127C57.8211 51.127 57.4128 51.036 57.0615 50.854C56.7145 50.672 56.4437 50.4287 56.249 50.124C56.0586 49.8151 55.9634 49.4702 55.9634 49.0894C55.9634 48.7212 56.0353 48.3975 56.1792 48.1182C56.3231 47.8346 56.5304 47.5998 56.8013 47.4136C57.0721 47.2231 57.3979 47.0793 57.7788 46.9819C58.1597 46.8846 58.585 46.8359 59.0547 46.8359H60.4194ZM64.4185 41.25V51H63.2378V41.25H64.4185ZM68.6143 44.1318L65.6182 47.3374L63.9424 49.0767L63.8472 47.8262L65.0469 46.3916L67.1797 44.1318H68.6143ZM67.5415 51L65.0913 47.7246L65.7007 46.6772L68.9253 51H67.5415ZM71.5786 51H70.4043V43.4082C70.4043 42.9131 70.4932 42.4963 70.6709 42.1577C70.8529 41.8149 71.1131 41.5568 71.4517 41.3833C71.7902 41.2056 72.1922 41.1167 72.6577 41.1167C72.7931 41.1167 72.9285 41.1252 73.064 41.1421C73.2036 41.159 73.339 41.1844 73.4702 41.2183L73.4067 42.1768C73.3179 42.1556 73.2163 42.1408 73.1021 42.1323C72.992 42.1239 72.882 42.1196 72.772 42.1196C72.5223 42.1196 72.3065 42.1704 72.1245 42.272C71.9468 42.3693 71.8114 42.5132 71.7183 42.7036C71.6252 42.894 71.5786 43.1289 71.5786 43.4082V51ZM73.0386 44.1318V45.0332H69.3188V44.1318H73.0386ZM78.396 49.8257V46.29C78.396 46.0192 78.341 45.7843 78.231 45.5854C78.1252 45.3823 77.9644 45.2257 77.7485 45.1157C77.5327 45.0057 77.2661 44.9507 76.9487 44.9507C76.6525 44.9507 76.3923 45.0015 76.168 45.103C75.9479 45.2046 75.7744 45.3379 75.6475 45.5029C75.5247 45.668 75.4634 45.8457 75.4634 46.0361H74.2891C74.2891 45.7907 74.3525 45.5474 74.4795 45.3062C74.6064 45.0649 74.7884 44.847 75.0254 44.6523C75.2666 44.4535 75.5544 44.2969 75.8887 44.1826C76.2272 44.0641 76.6038 44.0049 77.0186 44.0049C77.5179 44.0049 77.958 44.0895 78.3389 44.2588C78.724 44.4281 79.0244 44.6841 79.2402 45.0269C79.4603 45.3654 79.5703 45.7907 79.5703 46.3027V49.502C79.5703 49.7305 79.5894 49.9738 79.6274 50.2319C79.6698 50.4901 79.7311 50.7122 79.8115 50.8984V51H78.5864C78.5272 50.8646 78.4806 50.6847 78.4468 50.4604C78.4129 50.2319 78.396 50.0203 78.396 49.8257ZM78.5991 46.8359L78.6118 47.6611H77.4248C77.0905 47.6611 76.7922 47.6886 76.5298 47.7437C76.2674 47.7944 76.0474 47.8727 75.8696 47.9785C75.6919 48.0843 75.5565 48.2176 75.4634 48.3784C75.3703 48.535 75.3237 48.7191 75.3237 48.9307C75.3237 49.1465 75.3724 49.3433 75.4697 49.521C75.5671 49.6987 75.7131 49.8405 75.9077 49.9463C76.1066 50.0479 76.3499 50.0986 76.6377 50.0986C76.9974 50.0986 77.3148 50.0225 77.5898 49.8701C77.8649 49.7178 78.0828 49.5316 78.2437 49.3115C78.4087 49.0915 78.4976 48.8778 78.5103 48.6704L79.0117 49.2354C78.9821 49.4131 78.9017 49.6099 78.7705 49.8257C78.6393 50.0415 78.4637 50.2489 78.2437 50.4478C78.0278 50.6424 77.7697 50.8053 77.4692 50.9365C77.173 51.0635 76.8387 51.127 76.4663 51.127C76.0008 51.127 75.5924 51.036 75.2412 50.854C74.8942 50.672 74.6234 50.4287 74.4287 50.124C74.2383 49.8151 74.1431 49.4702 74.1431 49.0894C74.1431 48.7212 74.215 48.3975 74.3589 48.1182C74.5028 47.8346 74.7101 47.5998 74.981 47.4136C75.2518 47.2231 75.5776 47.0793 75.9585 46.9819C76.3394 46.8846 76.7646 46.8359 77.2344 46.8359H78.5991ZM85.4165 49.1782C85.4165 49.009 85.3784 48.8524 85.3022 48.7085C85.2303 48.5604 85.0801 48.4271 84.8516 48.3086C84.6273 48.1859 84.2887 48.0801 83.8359 47.9912C83.4551 47.9108 83.1102 47.8156 82.8013 47.7056C82.4966 47.5955 82.2363 47.4622 82.0205 47.3057C81.8089 47.1491 81.646 46.965 81.5317 46.7534C81.4175 46.5418 81.3604 46.2943 81.3604 46.0107C81.3604 45.7399 81.4196 45.4839 81.5381 45.2427C81.6608 45.0015 81.8322 44.7878 82.0522 44.6016C82.2765 44.4154 82.5452 44.2694 82.8584 44.1636C83.1715 44.0578 83.5207 44.0049 83.9058 44.0049C84.4559 44.0049 84.9256 44.1022 85.3149 44.2969C85.7043 44.4915 86.0026 44.7518 86.21 45.0776C86.4173 45.3993 86.521 45.7568 86.521 46.1504H85.3467C85.3467 45.96 85.2896 45.7759 85.1753 45.5981C85.0653 45.4162 84.9023 45.266 84.6865 45.1475C84.4749 45.029 84.2147 44.9697 83.9058 44.9697C83.5799 44.9697 83.3154 45.0205 83.1123 45.1221C82.9134 45.2194 82.7674 45.3442 82.6743 45.4966C82.5854 45.6489 82.541 45.8097 82.541 45.979C82.541 46.106 82.5622 46.2202 82.6045 46.3218C82.651 46.4191 82.7314 46.5101 82.8457 46.5947C82.96 46.6751 83.1208 46.7513 83.3281 46.8232C83.5355 46.8952 83.8 46.9671 84.1216 47.0391C84.6844 47.166 85.1478 47.3184 85.5117 47.4961C85.8757 47.6738 86.1465 47.8918 86.3242 48.1499C86.502 48.408 86.5908 48.7212 86.5908 49.0894C86.5908 49.3898 86.5273 49.6649 86.4004 49.9146C86.2777 50.1642 86.0978 50.38 85.8608 50.562C85.6281 50.7397 85.3488 50.8794 85.0229 50.981C84.7013 51.0783 84.3395 51.127 83.9375 51.127C83.3324 51.127 82.8203 51.019 82.4014 50.8032C81.9824 50.5874 81.665 50.3081 81.4492 49.9653C81.2334 49.6226 81.1255 49.2607 81.1255 48.8799H82.3062C82.3231 49.2015 82.4162 49.4575 82.5854 49.6479C82.7547 49.8341 82.9621 49.9674 83.2075 50.0479C83.453 50.124 83.6963 50.1621 83.9375 50.1621C84.2591 50.1621 84.5278 50.1198 84.7437 50.0352C84.9637 49.9505 85.1309 49.8341 85.2451 49.686C85.3594 49.5379 85.4165 49.3687 85.4165 49.1782ZM91.0088 44.1318V45.0332H87.2954V44.1318H91.0088ZM88.5522 42.4624H89.7266V49.2988C89.7266 49.5316 89.7625 49.7072 89.8345 49.8257C89.9064 49.9442 89.9995 50.0225 90.1138 50.0605C90.228 50.0986 90.3507 50.1177 90.4819 50.1177C90.5793 50.1177 90.6808 50.1092 90.7866 50.0923C90.8966 50.0711 90.9792 50.0542 91.0342 50.0415L91.0405 51C90.9474 51.0296 90.8247 51.0571 90.6724 51.0825C90.5243 51.1121 90.3444 51.127 90.1328 51.127C89.8451 51.127 89.5806 51.0698 89.3394 50.9556C89.0981 50.8413 88.9056 50.6509 88.7617 50.3843C88.6221 50.1134 88.5522 49.7495 88.5522 49.2925V42.4624ZM101.546 46.0425V47.147H95.2109V46.0425H101.546ZM98.9688 43.3447V50.0732H97.7944V43.3447H98.9688ZM109.595 40.2598V42.1958H108.643V40.2598H109.595ZM109.48 50.6255V52.3203H108.535V50.6255H109.48ZM110.75 48.6196C110.75 48.3657 110.693 48.1372 110.579 47.9341C110.464 47.731 110.276 47.5448 110.014 47.3755C109.751 47.2062 109.4 47.0496 108.96 46.9058C108.427 46.7407 107.965 46.5397 107.576 46.3027C107.191 46.0658 106.893 45.7716 106.681 45.4204C106.474 45.0692 106.37 44.6439 106.37 44.1445C106.37 43.624 106.482 43.1755 106.707 42.7988C106.931 42.4222 107.248 42.1323 107.659 41.9292C108.069 41.7261 108.552 41.6245 109.106 41.6245C109.538 41.6245 109.923 41.6901 110.261 41.8213C110.6 41.9482 110.885 42.1387 111.118 42.3926C111.355 42.6465 111.535 42.9575 111.658 43.3257C111.785 43.6938 111.848 44.1191 111.848 44.6016H110.68C110.68 44.318 110.646 44.0578 110.579 43.8208C110.511 43.5838 110.409 43.3786 110.274 43.2051C110.139 43.0273 109.973 42.8919 109.779 42.7988C109.584 42.7015 109.36 42.6528 109.106 42.6528C108.75 42.6528 108.456 42.7142 108.224 42.8369C107.995 42.9596 107.826 43.1331 107.716 43.3574C107.606 43.5775 107.551 43.8335 107.551 44.1255C107.551 44.3963 107.606 44.6333 107.716 44.8364C107.826 45.0396 108.012 45.2236 108.274 45.3887C108.541 45.5495 108.907 45.7082 109.373 45.8647C109.918 46.0382 110.382 46.2435 110.763 46.4805C111.144 46.7132 111.433 47.001 111.632 47.3438C111.831 47.6823 111.931 48.1034 111.931 48.6069C111.931 49.1528 111.808 49.6141 111.562 49.9907C111.317 50.3631 110.972 50.6466 110.528 50.8413C110.083 51.036 109.563 51.1333 108.966 51.1333C108.607 51.1333 108.251 51.0846 107.9 50.9873C107.549 50.89 107.231 50.7313 106.948 50.5112C106.664 50.2869 106.438 49.9928 106.269 49.6289C106.099 49.2607 106.015 48.8101 106.015 48.2769H107.195C107.195 48.6366 107.246 48.9349 107.348 49.1719C107.453 49.4046 107.593 49.5908 107.767 49.7305C107.94 49.8659 108.131 49.9632 108.338 50.0225C108.549 50.0775 108.759 50.105 108.966 50.105C109.347 50.105 109.669 50.0457 109.931 49.9272C110.198 49.8045 110.401 49.631 110.541 49.4067C110.68 49.1825 110.75 48.9201 110.75 48.6196ZM117.256 41.707V51H116.082V43.1733L113.714 44.0366V42.9766L117.072 41.707H117.256ZM122.195 46.6011L121.255 46.3599L121.719 41.7578H126.46V42.8433H122.715L122.436 45.3569C122.605 45.2596 122.819 45.1686 123.077 45.084C123.34 44.9993 123.64 44.957 123.979 44.957C124.406 44.957 124.789 45.0311 125.127 45.1792C125.466 45.3231 125.754 45.5304 125.991 45.8013C126.232 46.0721 126.416 46.3979 126.543 46.7788C126.67 47.1597 126.733 47.585 126.733 48.0547C126.733 48.499 126.672 48.9074 126.549 49.2798C126.431 49.6522 126.251 49.978 126.01 50.2573C125.769 50.5324 125.464 50.7461 125.096 50.8984C124.732 51.0508 124.302 51.127 123.807 51.127C123.435 51.127 123.081 51.0762 122.747 50.9746C122.417 50.8688 122.121 50.7101 121.858 50.4985C121.6 50.2827 121.389 50.0161 121.224 49.6987C121.063 49.3771 120.961 49.0005 120.919 48.5688H122.036C122.087 48.9159 122.188 49.2078 122.341 49.4448C122.493 49.6818 122.692 49.8617 122.938 49.9844C123.187 50.1029 123.477 50.1621 123.807 50.1621C124.086 50.1621 124.334 50.1134 124.55 50.0161C124.766 49.9188 124.948 49.7791 125.096 49.5972C125.244 49.4152 125.356 49.1951 125.432 48.937C125.513 48.6789 125.553 48.389 125.553 48.0674C125.553 47.7754 125.513 47.5046 125.432 47.2549C125.352 47.0052 125.231 46.7873 125.07 46.6011C124.914 46.4149 124.721 46.271 124.493 46.1694C124.264 46.0636 124.002 46.0107 123.706 46.0107C123.312 46.0107 123.014 46.0636 122.811 46.1694C122.612 46.2752 122.406 46.4191 122.195 46.6011Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M22.8563 72.4813L28.275 67.0438L27.4688 66.2375L22.8563 70.8687L20.625 68.6375L19.8188 69.4438L22.8563 72.4813ZM18.375 76.25C18.075 76.25 17.8125 76.1375 17.5875 75.9125C17.3625 75.6875 17.25 75.425 17.25 75.125V63.875C17.25 63.575 17.3625 63.3125 17.5875 63.0875C17.8125 62.8625 18.075 62.75 18.375 62.75H29.625C29.925 62.75 30.1875 62.8625 30.4125 63.0875C30.6375 63.3125 30.75 63.575 30.75 63.875V75.125C30.75 75.425 30.6375 75.6875 30.4125 75.9125C30.1875 76.1375 29.925 76.25 29.625 76.25H18.375Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M40.4878 64.7578V74H39.2817V64.7578H40.4878ZM43.4585 64.7578V65.7607H36.3174V64.7578H43.4585ZM45.3438 68.2109V74H44.1694V67.1318H45.312L45.3438 68.2109ZM47.4893 67.0938L47.4829 68.1855C47.3856 68.1644 47.2925 68.1517 47.2036 68.1475C47.119 68.139 47.0216 68.1348 46.9116 68.1348C46.6408 68.1348 46.4017 68.1771 46.1943 68.2617C45.987 68.3464 45.8114 68.4648 45.6675 68.6172C45.5236 68.7695 45.4093 68.9515 45.3247 69.1631C45.2443 69.3704 45.1914 69.599 45.166 69.8486L44.8359 70.0391C44.8359 69.6243 44.8761 69.235 44.9565 68.8711C45.0412 68.5072 45.1702 68.1855 45.3438 67.9062C45.5173 67.6227 45.7373 67.4027 46.0039 67.2461C46.2747 67.0853 46.5964 67.0049 46.9688 67.0049C47.0534 67.0049 47.1507 67.0155 47.2607 67.0366C47.3708 67.0535 47.4469 67.0726 47.4893 67.0938ZM52.3706 72.8257V69.29C52.3706 69.0192 52.3156 68.7843 52.2056 68.5854C52.0998 68.3823 51.939 68.2257 51.7231 68.1157C51.5073 68.0057 51.2407 67.9507 50.9233 67.9507C50.6271 67.9507 50.3669 68.0015 50.1426 68.103C49.9225 68.2046 49.749 68.3379 49.6221 68.5029C49.4993 68.668 49.438 68.8457 49.438 69.0361H48.2637C48.2637 68.7907 48.3271 68.5474 48.4541 68.3062C48.5811 68.0649 48.763 67.847 49 67.6523C49.2412 67.4535 49.529 67.2969 49.8633 67.1826C50.2018 67.0641 50.5785 67.0049 50.9932 67.0049C51.4925 67.0049 51.9326 67.0895 52.3135 67.2588C52.6986 67.4281 52.999 67.6841 53.2148 68.0269C53.4349 68.3654 53.5449 68.7907 53.5449 69.3027V72.502C53.5449 72.7305 53.564 72.9738 53.6021 73.2319C53.6444 73.4901 53.7057 73.7122 53.7861 73.8984V74H52.561C52.5018 73.8646 52.4552 73.6847 52.4214 73.4604C52.3875 73.2319 52.3706 73.0203 52.3706 72.8257ZM52.5737 69.8359L52.5864 70.6611H51.3994C51.0651 70.6611 50.7668 70.6886 50.5044 70.7437C50.242 70.7944 50.022 70.8727 49.8442 70.9785C49.6665 71.0843 49.5311 71.2176 49.438 71.3784C49.3449 71.535 49.2983 71.7191 49.2983 71.9307C49.2983 72.1465 49.347 72.3433 49.4443 72.521C49.5417 72.6987 49.6877 72.8405 49.8823 72.9463C50.0812 73.0479 50.3245 73.0986 50.6123 73.0986C50.972 73.0986 51.2894 73.0225 51.5645 72.8701C51.8395 72.7178 52.0575 72.5316 52.2183 72.3115C52.3833 72.0915 52.4722 71.8778 52.4849 71.6704L52.9863 72.2354C52.9567 72.4131 52.8763 72.6099 52.7451 72.8257C52.6139 73.0415 52.4383 73.2489 52.2183 73.4478C52.0024 73.6424 51.7443 73.8053 51.4438 73.9365C51.1476 74.0635 50.8133 74.127 50.4409 74.127C49.9754 74.127 49.5671 74.036 49.2158 73.854C48.8688 73.672 48.598 73.4287 48.4033 73.124C48.2129 72.8151 48.1177 72.4702 48.1177 72.0894C48.1177 71.7212 48.1896 71.3975 48.3335 71.1182C48.4774 70.8346 48.6847 70.5998 48.9556 70.4136C49.2264 70.2231 49.5522 70.0793 49.9331 69.9819C50.314 69.8846 50.7393 69.8359 51.209 69.8359H52.5737ZM56.5664 68.5981V74H55.3921V67.1318H56.5029L56.5664 68.5981ZM56.2871 70.3057L55.7983 70.2866C55.8026 69.8169 55.8724 69.3831 56.0078 68.9854C56.1432 68.5833 56.3337 68.2342 56.5791 67.938C56.8245 67.6418 57.1165 67.4132 57.4551 67.2524C57.7979 67.0874 58.1766 67.0049 58.5913 67.0049C58.9299 67.0049 59.2345 67.0514 59.5054 67.1445C59.7762 67.2334 60.0068 67.3773 60.1973 67.5762C60.3919 67.7751 60.54 68.0332 60.6416 68.3506C60.7432 68.6637 60.7939 69.0467 60.7939 69.4995V74H59.6133V69.4868C59.6133 69.1271 59.5604 68.8394 59.4546 68.6235C59.3488 68.4035 59.1943 68.2448 58.9912 68.1475C58.7881 68.0459 58.5384 67.9951 58.2422 67.9951C57.9502 67.9951 57.6836 68.0565 57.4424 68.1792C57.2054 68.3019 57.0002 68.4712 56.8267 68.687C56.6574 68.9028 56.5241 69.1504 56.4268 69.4297C56.3337 69.7048 56.2871 69.9967 56.2871 70.3057ZM66.5767 72.1782C66.5767 72.009 66.5386 71.8524 66.4624 71.7085C66.3905 71.5604 66.2402 71.4271 66.0117 71.3086C65.7874 71.1859 65.4489 71.0801 64.9961 70.9912C64.6152 70.9108 64.2703 70.8156 63.9614 70.7056C63.6567 70.5955 63.3965 70.4622 63.1807 70.3057C62.9691 70.1491 62.8062 69.965 62.6919 69.7534C62.5776 69.5418 62.5205 69.2943 62.5205 69.0107C62.5205 68.7399 62.5798 68.4839 62.6982 68.2427C62.821 68.0015 62.9924 67.7878 63.2124 67.6016C63.4367 67.4154 63.7054 67.2694 64.0186 67.1636C64.3317 67.0578 64.6808 67.0049 65.0659 67.0049C65.616 67.0049 66.0858 67.1022 66.4751 67.2969C66.8644 67.4915 67.1628 67.7518 67.3701 68.0776C67.5775 68.3993 67.6812 68.7568 67.6812 69.1504H66.5068C66.5068 68.96 66.4497 68.7759 66.3354 68.5981C66.2254 68.4162 66.0625 68.266 65.8467 68.1475C65.6351 68.029 65.3748 67.9697 65.0659 67.9697C64.7401 67.9697 64.4756 68.0205 64.2725 68.1221C64.0736 68.2194 63.9276 68.3442 63.8345 68.4966C63.7456 68.6489 63.7012 68.8097 63.7012 68.979C63.7012 69.106 63.7223 69.2202 63.7646 69.3218C63.8112 69.4191 63.8916 69.5101 64.0059 69.5947C64.1201 69.6751 64.2809 69.7513 64.4883 69.8232C64.6956 69.8952 64.9601 69.9671 65.2817 70.0391C65.8446 70.166 66.3079 70.3184 66.6719 70.4961C67.0358 70.6738 67.3066 70.8918 67.4844 71.1499C67.6621 71.408 67.751 71.7212 67.751 72.0894C67.751 72.3898 67.6875 72.6649 67.5605 72.9146C67.4378 73.1642 67.258 73.38 67.021 73.562C66.7882 73.7397 66.509 73.8794 66.1831 73.981C65.8615 74.0783 65.4997 74.127 65.0977 74.127C64.4925 74.127 63.9805 74.019 63.5615 73.8032C63.1426 73.5874 62.8252 73.3081 62.6094 72.9653C62.3936 72.6226 62.2856 72.2607 62.2856 71.8799H63.4663C63.4832 72.2015 63.5763 72.4575 63.7456 72.6479C63.9149 72.8341 64.1222 72.9674 64.3677 73.0479C64.6131 73.124 64.8564 73.1621 65.0977 73.1621C65.4193 73.1621 65.688 73.1198 65.9038 73.0352C66.1239 72.9505 66.291 72.8341 66.4053 72.686C66.5195 72.5379 66.5767 72.3687 66.5767 72.1782ZM71.0454 74H69.8711V66.4082C69.8711 65.9131 69.96 65.4963 70.1377 65.1577C70.3197 64.8149 70.5799 64.5568 70.9185 64.3833C71.257 64.2056 71.659 64.1167 72.1245 64.1167C72.2599 64.1167 72.3953 64.1252 72.5308 64.1421C72.6704 64.159 72.8058 64.1844 72.937 64.2183L72.8735 65.1768C72.7847 65.1556 72.6831 65.1408 72.5688 65.1323C72.4588 65.1239 72.3488 65.1196 72.2388 65.1196C71.9891 65.1196 71.7733 65.1704 71.5913 65.272C71.4136 65.3693 71.2782 65.5132 71.1851 65.7036C71.092 65.894 71.0454 66.1289 71.0454 66.4082V74ZM72.5054 67.1318V68.0332H68.7856V67.1318H72.5054ZM76.5107 74.127C76.0326 74.127 75.5988 74.0465 75.2095 73.8857C74.8244 73.7207 74.4922 73.4901 74.2129 73.1938C73.9378 72.8976 73.7262 72.5464 73.5781 72.1401C73.43 71.7339 73.356 71.2896 73.356 70.8071V70.5405C73.356 69.9819 73.4385 69.4847 73.6035 69.0488C73.7686 68.6087 73.9928 68.2363 74.2764 67.9316C74.5599 67.627 74.8815 67.3963 75.2412 67.2397C75.6009 67.0832 75.9733 67.0049 76.3584 67.0049C76.8493 67.0049 77.2725 67.0895 77.6279 67.2588C77.9876 67.4281 78.2817 67.665 78.5103 67.9697C78.7388 68.2702 78.908 68.6257 79.0181 69.0361C79.1281 69.4424 79.1831 69.8867 79.1831 70.3691V70.896H74.0542V69.9375H78.0088V69.8486C77.9919 69.5439 77.9284 69.2477 77.8184 68.96C77.7126 68.6722 77.5433 68.4352 77.3105 68.249C77.0778 68.0628 76.7604 67.9697 76.3584 67.9697C76.0918 67.9697 75.8464 68.0269 75.6221 68.1411C75.3978 68.2511 75.2052 68.4162 75.0444 68.6362C74.8836 68.8563 74.7588 69.125 74.6699 69.4424C74.5811 69.7598 74.5366 70.1258 74.5366 70.5405V70.8071C74.5366 71.133 74.5811 71.4398 74.6699 71.7275C74.763 72.0111 74.8963 72.2607 75.0698 72.4766C75.2476 72.6924 75.4613 72.8617 75.7109 72.9844C75.9648 73.1071 76.2526 73.1685 76.5742 73.1685C76.9889 73.1685 77.3402 73.0838 77.6279 72.9146C77.9157 72.7453 78.1675 72.5189 78.3833 72.2354L79.0942 72.8003C78.9461 73.0246 78.7578 73.2383 78.5293 73.4414C78.3008 73.6445 78.0194 73.8096 77.6851 73.9365C77.355 74.0635 76.9635 74.127 76.5107 74.127ZM81.7285 68.2109V74H80.5542V67.1318H81.6968L81.7285 68.2109ZM83.874 67.0938L83.8677 68.1855C83.7703 68.1644 83.6772 68.1517 83.5884 68.1475C83.5037 68.139 83.4064 68.1348 83.2964 68.1348C83.0256 68.1348 82.7865 68.1771 82.5791 68.2617C82.3717 68.3464 82.1961 68.4648 82.0522 68.6172C81.9084 68.7695 81.7941 68.9515 81.7095 69.1631C81.6291 69.3704 81.5762 69.599 81.5508 69.8486L81.2207 70.0391C81.2207 69.6243 81.2609 69.235 81.3413 68.8711C81.4259 68.5072 81.555 68.1855 81.7285 67.9062C81.902 67.6227 82.1221 67.4027 82.3887 67.2461C82.6595 67.0853 82.9811 67.0049 83.3535 67.0049C83.4382 67.0049 83.5355 67.0155 83.6455 67.0366C83.7555 67.0535 83.8317 67.0726 83.874 67.0938ZM94.1191 69.0425V70.147H87.7842V69.0425H94.1191ZM91.542 66.3447V73.0732H90.3677V66.3447H91.542ZM102.168 63.2598V65.1958H101.216V63.2598H102.168ZM102.054 73.6255V75.3203H101.108V73.6255H102.054ZM103.323 71.6196C103.323 71.3657 103.266 71.1372 103.152 70.9341C103.038 70.731 102.849 70.5448 102.587 70.3755C102.325 70.2062 101.973 70.0496 101.533 69.9058C101 69.7407 100.539 69.5397 100.149 69.3027C99.7643 69.0658 99.466 68.7716 99.2544 68.4204C99.047 68.0692 98.9434 67.6439 98.9434 67.1445C98.9434 66.624 99.0555 66.1755 99.2798 65.7988C99.5041 65.4222 99.8215 65.1323 100.232 64.9292C100.642 64.7261 101.125 64.6245 101.679 64.6245C102.111 64.6245 102.496 64.6901 102.834 64.8213C103.173 64.9482 103.459 65.1387 103.691 65.3926C103.928 65.6465 104.108 65.9575 104.231 66.3257C104.358 66.6938 104.421 67.1191 104.421 67.6016H103.253C103.253 67.318 103.22 67.0578 103.152 66.8208C103.084 66.5838 102.983 66.3786 102.847 66.2051C102.712 66.0273 102.547 65.8919 102.352 65.7988C102.157 65.7015 101.933 65.6528 101.679 65.6528C101.324 65.6528 101.03 65.7142 100.797 65.8369C100.568 65.9596 100.399 66.1331 100.289 66.3574C100.179 66.5775 100.124 66.8335 100.124 67.1255C100.124 67.3963 100.179 67.6333 100.289 67.8364C100.399 68.0396 100.585 68.2236 100.848 68.3887C101.114 68.5495 101.48 68.7082 101.946 68.8647C102.492 69.0382 102.955 69.2435 103.336 69.4805C103.717 69.7132 104.007 70.001 104.206 70.3438C104.404 70.6823 104.504 71.1034 104.504 71.6069C104.504 72.1528 104.381 72.6141 104.136 72.9907C103.89 73.3631 103.545 73.6466 103.101 73.8413C102.657 74.036 102.136 74.1333 101.54 74.1333C101.18 74.1333 100.824 74.0846 100.473 73.9873C100.122 73.89 99.8045 73.7313 99.521 73.5112C99.2375 73.2869 99.0111 72.9928 98.8418 72.6289C98.6725 72.2607 98.5879 71.8101 98.5879 71.2769H99.7686C99.7686 71.6366 99.8193 71.9349 99.9209 72.1719C100.027 72.4046 100.166 72.5908 100.34 72.7305C100.513 72.8659 100.704 72.9632 100.911 73.0225C101.123 73.0775 101.332 73.105 101.54 73.105C101.92 73.105 102.242 73.0457 102.504 72.9272C102.771 72.8045 102.974 72.631 103.114 72.4067C103.253 72.1825 103.323 71.9201 103.323 71.6196ZM107.684 68.8013H108.522C108.932 68.8013 109.271 68.7336 109.538 68.5981C109.808 68.4585 110.009 68.2702 110.141 68.0332C110.276 67.792 110.344 67.5212 110.344 67.2207C110.344 66.8652 110.285 66.5669 110.166 66.3257C110.048 66.0845 109.87 65.9025 109.633 65.7798C109.396 65.6571 109.095 65.5957 108.731 65.5957C108.401 65.5957 108.109 65.6613 107.855 65.7925C107.606 65.9194 107.409 66.1014 107.265 66.3384C107.125 66.5754 107.056 66.8547 107.056 67.1763H105.881C105.881 66.7065 106 66.2791 106.237 65.894C106.474 65.509 106.806 65.2021 107.233 64.9736C107.665 64.7451 108.164 64.6309 108.731 64.6309C109.29 64.6309 109.779 64.7303 110.198 64.9292C110.617 65.1239 110.943 65.4159 111.175 65.8052C111.408 66.1903 111.524 66.6706 111.524 67.2461C111.524 67.4788 111.469 67.7285 111.359 67.9951C111.254 68.2575 111.086 68.5029 110.858 68.7314C110.634 68.96 110.342 69.1483 109.982 69.2964C109.622 69.4403 109.191 69.5122 108.687 69.5122H107.684V68.8013ZM107.684 69.7661V69.0615H108.687C109.275 69.0615 109.762 69.1313 110.147 69.271C110.532 69.4106 110.835 69.5968 111.055 69.8296C111.279 70.0623 111.436 70.3184 111.524 70.5977C111.618 70.8727 111.664 71.1478 111.664 71.4229C111.664 71.8545 111.59 72.2375 111.442 72.5718C111.298 72.9061 111.093 73.1896 110.826 73.4224C110.564 73.6551 110.255 73.8307 109.899 73.9492C109.544 74.0677 109.157 74.127 108.738 74.127C108.336 74.127 107.957 74.0698 107.602 73.9556C107.25 73.8413 106.939 73.6763 106.668 73.4604C106.398 73.2404 106.186 72.9717 106.034 72.6543C105.881 72.3327 105.805 71.9666 105.805 71.5562H106.979C106.979 71.8778 107.049 72.1592 107.189 72.4004C107.333 72.6416 107.536 72.8299 107.798 72.9653C108.065 73.0965 108.378 73.1621 108.738 73.1621C109.097 73.1621 109.406 73.1007 109.665 72.978C109.927 72.8511 110.128 72.6606 110.268 72.4067C110.411 72.1528 110.483 71.8333 110.483 71.4482C110.483 71.0632 110.403 70.7479 110.242 70.5024C110.081 70.2528 109.853 70.0687 109.557 69.9502C109.265 69.8275 108.92 69.7661 108.522 69.7661H107.684ZM119.084 68.6426V70.0518C119.084 70.8092 119.017 71.4482 118.881 71.9688C118.746 72.4893 118.551 72.9082 118.297 73.2256C118.043 73.543 117.737 73.7736 117.377 73.9175C117.021 74.0571 116.619 74.127 116.171 74.127C115.815 74.127 115.487 74.0825 115.187 73.9937C114.887 73.9048 114.616 73.763 114.375 73.5684C114.138 73.3695 113.934 73.1113 113.765 72.7939C113.596 72.4766 113.467 72.0915 113.378 71.6387C113.289 71.1859 113.245 70.6569 113.245 70.0518V68.6426C113.245 67.8851 113.312 67.2503 113.448 66.7383C113.587 66.2262 113.784 65.8158 114.038 65.5068C114.292 65.1937 114.597 64.9694 114.952 64.834C115.312 64.6986 115.714 64.6309 116.158 64.6309C116.518 64.6309 116.848 64.6753 117.148 64.7642C117.453 64.8488 117.724 64.9863 117.961 65.1768C118.198 65.363 118.399 65.6126 118.564 65.9258C118.733 66.2347 118.862 66.6134 118.951 67.062C119.04 67.5106 119.084 68.0374 119.084 68.6426ZM117.904 70.2422V68.4458C117.904 68.0311 117.878 67.6672 117.828 67.354C117.781 67.0366 117.711 66.7658 117.618 66.5415C117.525 66.3172 117.407 66.1353 117.263 65.9956C117.123 65.856 116.96 65.7544 116.774 65.6909C116.592 65.6232 116.387 65.5894 116.158 65.5894C115.879 65.5894 115.631 65.6423 115.416 65.748C115.2 65.8496 115.018 66.0125 114.87 66.2368C114.726 66.4611 114.616 66.7552 114.54 67.1191C114.463 67.4831 114.425 67.9253 114.425 68.4458V70.2422C114.425 70.6569 114.449 71.0229 114.495 71.3403C114.546 71.6577 114.62 71.9328 114.717 72.1655C114.815 72.394 114.933 72.5824 115.073 72.7305C115.212 72.8786 115.373 72.9886 115.555 73.0605C115.741 73.1283 115.947 73.1621 116.171 73.1621C116.459 73.1621 116.71 73.1071 116.926 72.9971C117.142 72.887 117.322 72.7157 117.466 72.4829C117.614 72.2459 117.724 71.9434 117.796 71.5752C117.868 71.2028 117.904 70.7585 117.904 70.2422Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"15",y:"88.5",width:"268",height:"38",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M31.6523 108.561H32.8711C32.8076 109.145 32.6405 109.668 32.3696 110.129C32.0988 110.59 31.7158 110.956 31.2207 111.227C30.7256 111.494 30.1077 111.627 29.3672 111.627C28.8255 111.627 28.3325 111.525 27.8882 111.322C27.4481 111.119 27.0693 110.831 26.752 110.459C26.4346 110.082 26.1891 109.632 26.0156 109.107C25.8464 108.578 25.7617 107.99 25.7617 107.342V106.422C25.7617 105.774 25.8464 105.188 26.0156 104.664C26.1891 104.135 26.4367 103.682 26.7583 103.305C27.0841 102.929 27.4756 102.639 27.9326 102.436C28.3896 102.232 28.9038 102.131 29.4751 102.131C30.1733 102.131 30.7637 102.262 31.2461 102.524C31.7285 102.787 32.103 103.151 32.3696 103.616C32.6405 104.077 32.8076 104.613 32.8711 105.222H31.6523C31.5931 104.791 31.4831 104.42 31.3223 104.111C31.1615 103.798 30.9329 103.557 30.6367 103.388C30.3405 103.218 29.9533 103.134 29.4751 103.134C29.0646 103.134 28.7028 103.212 28.3896 103.369C28.0807 103.525 27.8205 103.747 27.6089 104.035C27.4015 104.323 27.245 104.668 27.1392 105.07C27.0334 105.472 26.9805 105.918 26.9805 106.409V107.342C26.9805 107.795 27.027 108.22 27.1201 108.618C27.2174 109.016 27.3634 109.365 27.5581 109.666C27.7528 109.966 28.0003 110.203 28.3008 110.376C28.6012 110.546 28.9567 110.63 29.3672 110.63C29.8877 110.63 30.3024 110.548 30.6113 110.383C30.9202 110.218 31.153 109.981 31.3096 109.672C31.4704 109.363 31.5846 108.993 31.6523 108.561ZM38.4126 110.326V106.79C38.4126 106.519 38.3576 106.284 38.2476 106.085C38.1418 105.882 37.981 105.726 37.7651 105.616C37.5493 105.506 37.2827 105.451 36.9653 105.451C36.6691 105.451 36.4089 105.501 36.1846 105.603C35.9645 105.705 35.791 105.838 35.6641 106.003C35.5413 106.168 35.48 106.346 35.48 106.536H34.3057C34.3057 106.291 34.3691 106.047 34.4961 105.806C34.623 105.565 34.805 105.347 35.042 105.152C35.2832 104.953 35.571 104.797 35.9053 104.683C36.2438 104.564 36.6204 104.505 37.0352 104.505C37.5345 104.505 37.9746 104.59 38.3555 104.759C38.7406 104.928 39.041 105.184 39.2568 105.527C39.4769 105.865 39.5869 106.291 39.5869 106.803V110.002C39.5869 110.23 39.606 110.474 39.644 110.732C39.6864 110.99 39.7477 111.212 39.8281 111.398V111.5H38.603C38.5438 111.365 38.4972 111.185 38.4634 110.96C38.4295 110.732 38.4126 110.52 38.4126 110.326ZM38.6157 107.336L38.6284 108.161H37.4414C37.1071 108.161 36.8088 108.189 36.5464 108.244C36.284 108.294 36.064 108.373 35.8862 108.479C35.7085 108.584 35.5731 108.718 35.48 108.878C35.3869 109.035 35.3403 109.219 35.3403 109.431C35.3403 109.646 35.389 109.843 35.4863 110.021C35.5837 110.199 35.7297 110.34 35.9243 110.446C36.1232 110.548 36.3665 110.599 36.6543 110.599C37.014 110.599 37.3314 110.522 37.6064 110.37C37.8815 110.218 38.0994 110.032 38.2603 109.812C38.4253 109.591 38.5142 109.378 38.5269 109.17L39.0283 109.735C38.9987 109.913 38.9183 110.11 38.7871 110.326C38.6559 110.542 38.4803 110.749 38.2603 110.948C38.0444 111.142 37.7863 111.305 37.4858 111.437C37.1896 111.563 36.8553 111.627 36.4829 111.627C36.0174 111.627 35.609 111.536 35.2578 111.354C34.9108 111.172 34.64 110.929 34.4453 110.624C34.2549 110.315 34.1597 109.97 34.1597 109.589C34.1597 109.221 34.2316 108.897 34.3755 108.618C34.5194 108.335 34.7267 108.1 34.9976 107.914C35.2684 107.723 35.5942 107.579 35.9751 107.482C36.356 107.385 36.7812 107.336 37.251 107.336H38.6157ZM42.71 101.75V111.5H41.5293V101.75H42.71ZM47.3438 110.662C47.623 110.662 47.8812 110.605 48.1182 110.491C48.3551 110.376 48.5498 110.22 48.7021 110.021C48.8545 109.818 48.9412 109.587 48.9624 109.329H50.0796C50.0584 109.735 49.9209 110.114 49.667 110.465C49.4173 110.812 49.0894 111.094 48.6831 111.31C48.2769 111.521 47.8304 111.627 47.3438 111.627C46.8275 111.627 46.3768 111.536 45.9917 111.354C45.6108 111.172 45.2935 110.922 45.0396 110.605C44.7899 110.288 44.6016 109.924 44.4746 109.513C44.3519 109.098 44.2905 108.66 44.2905 108.199V107.933C44.2905 107.471 44.3519 107.035 44.4746 106.625C44.6016 106.21 44.7899 105.844 45.0396 105.527C45.2935 105.209 45.6108 104.96 45.9917 104.778C46.3768 104.596 46.8275 104.505 47.3438 104.505C47.8812 104.505 48.3509 104.615 48.7529 104.835C49.1549 105.051 49.4702 105.347 49.6987 105.724C49.9315 106.096 50.0584 106.519 50.0796 106.993H48.9624C48.9412 106.71 48.8608 106.454 48.7212 106.225C48.5858 105.997 48.3996 105.815 48.1626 105.679C47.9299 105.54 47.6569 105.47 47.3438 105.47C46.984 105.47 46.6815 105.542 46.436 105.686C46.1948 105.825 46.0023 106.016 45.8584 106.257C45.7188 106.494 45.6172 106.758 45.5537 107.05C45.4945 107.338 45.4648 107.632 45.4648 107.933V108.199C45.4648 108.5 45.4945 108.796 45.5537 109.088C45.613 109.38 45.7124 109.644 45.8521 109.881C45.9959 110.118 46.1885 110.309 46.4297 110.453C46.6751 110.592 46.9798 110.662 47.3438 110.662ZM55.6021 109.913V104.632H56.7827V111.5H55.6592L55.6021 109.913ZM55.8242 108.466L56.313 108.453C56.313 108.91 56.2643 109.333 56.167 109.723C56.0739 110.108 55.9215 110.442 55.71 110.726C55.4984 111.009 55.2212 111.231 54.8784 111.392C54.5356 111.549 54.1188 111.627 53.6279 111.627C53.2936 111.627 52.9868 111.578 52.7075 111.481C52.4325 111.384 52.1955 111.233 51.9966 111.03C51.7977 110.827 51.6432 110.563 51.5332 110.237C51.4274 109.911 51.3745 109.52 51.3745 109.062V104.632H52.5488V109.075C52.5488 109.384 52.5827 109.64 52.6504 109.843C52.7223 110.042 52.8175 110.201 52.936 110.319C53.0588 110.434 53.1942 110.514 53.3423 110.561C53.4946 110.607 53.6512 110.63 53.812 110.63C54.3114 110.63 54.707 110.535 54.999 110.345C55.291 110.15 55.5005 109.89 55.6274 109.564C55.7586 109.234 55.8242 108.868 55.8242 108.466ZM59.8486 101.75V111.5H58.668V101.75H59.8486ZM65.7837 110.326V106.79C65.7837 106.519 65.7287 106.284 65.6187 106.085C65.5129 105.882 65.3521 105.726 65.1362 105.616C64.9204 105.506 64.6538 105.451 64.3364 105.451C64.0402 105.451 63.7799 105.501 63.5557 105.603C63.3356 105.705 63.1621 105.838 63.0352 106.003C62.9124 106.168 62.8511 106.346 62.8511 106.536H61.6768C61.6768 106.291 61.7402 106.047 61.8672 105.806C61.9941 105.565 62.1761 105.347 62.4131 105.152C62.6543 104.953 62.9421 104.797 63.2764 104.683C63.6149 104.564 63.9915 104.505 64.4062 104.505C64.9056 104.505 65.3457 104.59 65.7266 104.759C66.1117 104.928 66.4121 105.184 66.6279 105.527C66.848 105.865 66.958 106.291 66.958 106.803V110.002C66.958 110.23 66.9771 110.474 67.0151 110.732C67.0575 110.99 67.1188 111.212 67.1992 111.398V111.5H65.9741C65.9149 111.365 65.8683 111.185 65.8345 110.96C65.8006 110.732 65.7837 110.52 65.7837 110.326ZM65.9868 107.336L65.9995 108.161H64.8125C64.4782 108.161 64.1799 108.189 63.9175 108.244C63.6551 108.294 63.4351 108.373 63.2573 108.479C63.0796 108.584 62.9442 108.718 62.8511 108.878C62.758 109.035 62.7114 109.219 62.7114 109.431C62.7114 109.646 62.7601 109.843 62.8574 110.021C62.9548 110.199 63.1007 110.34 63.2954 110.446C63.4943 110.548 63.7376 110.599 64.0254 110.599C64.3851 110.599 64.7025 110.522 64.9775 110.37C65.2526 110.218 65.4705 110.032 65.6313 109.812C65.7964 109.591 65.8853 109.378 65.8979 109.17L66.3994 109.735C66.3698 109.913 66.2894 110.11 66.1582 110.326C66.027 110.542 65.8514 110.749 65.6313 110.948C65.4155 111.142 65.1574 111.305 64.8569 111.437C64.5607 111.563 64.2264 111.627 63.854 111.627C63.3885 111.627 62.9801 111.536 62.6289 111.354C62.2819 111.172 62.0111 110.929 61.8164 110.624C61.626 110.315 61.5308 109.97 61.5308 109.589C61.5308 109.221 61.6027 108.897 61.7466 108.618C61.8905 108.335 62.0978 108.1 62.3687 107.914C62.6395 107.723 62.9653 107.579 63.3462 107.482C63.7271 107.385 64.1523 107.336 64.6221 107.336H65.9868ZM71.6807 104.632V105.533H67.9673V104.632H71.6807ZM69.2241 102.962H70.3984V109.799C70.3984 110.032 70.4344 110.207 70.5063 110.326C70.5783 110.444 70.6714 110.522 70.7856 110.561C70.8999 110.599 71.0226 110.618 71.1538 110.618C71.2511 110.618 71.3527 110.609 71.4585 110.592C71.5685 110.571 71.651 110.554 71.7061 110.542L71.7124 111.5C71.6193 111.53 71.4966 111.557 71.3442 111.583C71.1961 111.612 71.0163 111.627 70.8047 111.627C70.5169 111.627 70.2524 111.57 70.0112 111.456C69.77 111.341 69.5775 111.151 69.4336 110.884C69.2939 110.613 69.2241 110.25 69.2241 109.792V102.962ZM75.9082 111.627C75.43 111.627 74.9963 111.547 74.6069 111.386C74.2218 111.221 73.8896 110.99 73.6104 110.694C73.3353 110.398 73.1237 110.046 72.9756 109.64C72.8275 109.234 72.7534 108.79 72.7534 108.307V108.041C72.7534 107.482 72.8359 106.985 73.001 106.549C73.166 106.109 73.3903 105.736 73.6738 105.432C73.9574 105.127 74.279 104.896 74.6387 104.74C74.9984 104.583 75.3708 104.505 75.7559 104.505C76.2467 104.505 76.6699 104.59 77.0254 104.759C77.3851 104.928 77.6792 105.165 77.9077 105.47C78.1362 105.77 78.3055 106.126 78.4155 106.536C78.5256 106.942 78.5806 107.387 78.5806 107.869V108.396H73.4517V107.438H77.4062V107.349C77.3893 107.044 77.3258 106.748 77.2158 106.46C77.11 106.172 76.9408 105.935 76.708 105.749C76.4753 105.563 76.1579 105.47 75.7559 105.47C75.4893 105.47 75.2438 105.527 75.0195 105.641C74.7952 105.751 74.6027 105.916 74.4419 106.136C74.2811 106.356 74.1562 106.625 74.0674 106.942C73.9785 107.26 73.9341 107.626 73.9341 108.041V108.307C73.9341 108.633 73.9785 108.94 74.0674 109.228C74.1605 109.511 74.2938 109.761 74.4673 109.977C74.645 110.192 74.8587 110.362 75.1084 110.484C75.3623 110.607 75.6501 110.668 75.9717 110.668C76.3864 110.668 76.7376 110.584 77.0254 110.415C77.3132 110.245 77.5649 110.019 77.7808 109.735L78.4917 110.3C78.3436 110.525 78.1553 110.738 77.9268 110.941C77.6982 111.145 77.4168 111.31 77.0825 111.437C76.7524 111.563 76.361 111.627 75.9082 111.627ZM84.2808 110.167V101.75H85.4614V111.5H84.3823L84.2808 110.167ZM79.6597 108.142V108.009C79.6597 107.484 79.7231 107.008 79.8501 106.581C79.9813 106.149 80.1654 105.779 80.4023 105.47C80.6436 105.161 80.9292 104.924 81.2593 104.759C81.5936 104.59 81.966 104.505 82.3765 104.505C82.8081 104.505 83.1847 104.581 83.5063 104.733C83.8322 104.882 84.1073 105.099 84.3315 105.387C84.5601 105.671 84.7399 106.014 84.8711 106.416C85.0023 106.818 85.0933 107.272 85.144 107.78V108.364C85.0975 108.868 85.0065 109.321 84.8711 109.723C84.7399 110.125 84.5601 110.467 84.3315 110.751C84.1073 111.035 83.8322 111.252 83.5063 111.405C83.1805 111.553 82.7996 111.627 82.3638 111.627C81.9618 111.627 81.5936 111.54 81.2593 111.367C80.9292 111.193 80.6436 110.95 80.4023 110.637C80.1654 110.324 79.9813 109.955 79.8501 109.532C79.7231 109.105 79.6597 108.641 79.6597 108.142ZM80.8403 108.009V108.142C80.8403 108.485 80.8742 108.806 80.9419 109.107C81.0138 109.407 81.1239 109.672 81.272 109.9C81.4201 110.129 81.6084 110.309 81.8369 110.44C82.0654 110.567 82.3384 110.63 82.6558 110.63C83.0451 110.63 83.3646 110.548 83.6143 110.383C83.8682 110.218 84.0713 110 84.2236 109.729C84.376 109.458 84.4945 109.164 84.5791 108.847V107.317C84.5283 107.084 84.4543 106.86 84.3569 106.644C84.2638 106.424 84.1411 106.229 83.9888 106.06C83.8407 105.887 83.6566 105.749 83.4365 105.647C83.2207 105.546 82.9647 105.495 82.6685 105.495C82.3468 105.495 82.0697 105.563 81.8369 105.698C81.6084 105.829 81.4201 106.011 81.272 106.244C81.1239 106.473 81.0138 106.739 80.9419 107.044C80.8742 107.344 80.8403 107.666 80.8403 108.009ZM91.6885 105.952V114.141H90.5078V104.632H91.5869L91.6885 105.952ZM96.3159 108.009V108.142C96.3159 108.641 96.2567 109.105 96.1382 109.532C96.0197 109.955 95.8462 110.324 95.6177 110.637C95.3934 110.95 95.1162 111.193 94.7861 111.367C94.4561 111.54 94.0773 111.627 93.6499 111.627C93.214 111.627 92.8289 111.555 92.4946 111.411C92.1603 111.267 91.8768 111.058 91.644 110.783C91.4113 110.508 91.2251 110.178 91.0854 109.792C90.95 109.407 90.8569 108.974 90.8062 108.491V107.78C90.8569 107.272 90.9521 106.818 91.0918 106.416C91.2314 106.014 91.4155 105.671 91.644 105.387C91.8768 105.099 92.1582 104.882 92.4883 104.733C92.8184 104.581 93.1992 104.505 93.6309 104.505C94.0625 104.505 94.4455 104.59 94.7798 104.759C95.1141 104.924 95.3955 105.161 95.624 105.47C95.8525 105.779 96.0239 106.149 96.1382 106.581C96.2567 107.008 96.3159 107.484 96.3159 108.009ZM95.1353 108.142V108.009C95.1353 107.666 95.0993 107.344 95.0273 107.044C94.9554 106.739 94.8433 106.473 94.6909 106.244C94.5428 106.011 94.3524 105.829 94.1196 105.698C93.8869 105.563 93.6097 105.495 93.2881 105.495C92.9919 105.495 92.7337 105.546 92.5137 105.647C92.2979 105.749 92.1138 105.887 91.9614 106.06C91.8091 106.229 91.6842 106.424 91.5869 106.644C91.4938 106.86 91.424 107.084 91.3774 107.317V108.961C91.4621 109.257 91.5806 109.536 91.7329 109.799C91.8853 110.057 92.0884 110.266 92.3423 110.427C92.5962 110.584 92.9157 110.662 93.3008 110.662C93.6182 110.662 93.8911 110.597 94.1196 110.465C94.3524 110.33 94.5428 110.146 94.6909 109.913C94.8433 109.68 94.9554 109.414 95.0273 109.113C95.0993 108.809 95.1353 108.485 95.1353 108.142ZM98.9883 105.711V111.5H97.814V104.632H98.9565L98.9883 105.711ZM101.134 104.594L101.127 105.686C101.03 105.664 100.937 105.652 100.848 105.647C100.764 105.639 100.666 105.635 100.556 105.635C100.285 105.635 100.046 105.677 99.8389 105.762C99.6315 105.846 99.4559 105.965 99.312 106.117C99.1681 106.27 99.0539 106.451 98.9692 106.663C98.8888 106.87 98.8359 107.099 98.8105 107.349L98.4805 107.539C98.4805 107.124 98.5207 106.735 98.6011 106.371C98.6857 106.007 98.8148 105.686 98.9883 105.406C99.1618 105.123 99.3818 104.903 99.6484 104.746C99.9193 104.585 100.241 104.505 100.613 104.505C100.698 104.505 100.795 104.515 100.905 104.537C101.015 104.554 101.091 104.573 101.134 104.594ZM103.495 104.632V111.5H102.314V104.632H103.495ZM102.226 102.81C102.226 102.62 102.283 102.459 102.397 102.328C102.515 102.196 102.689 102.131 102.917 102.131C103.142 102.131 103.313 102.196 103.432 102.328C103.554 102.459 103.616 102.62 103.616 102.81C103.616 102.992 103.554 103.149 103.432 103.28C103.313 103.407 103.142 103.47 102.917 103.47C102.689 103.47 102.515 103.407 102.397 103.28C102.283 103.149 102.226 102.992 102.226 102.81ZM108.129 110.662C108.408 110.662 108.666 110.605 108.903 110.491C109.14 110.376 109.335 110.22 109.487 110.021C109.64 109.818 109.726 109.587 109.748 109.329H110.865C110.844 109.735 110.706 110.114 110.452 110.465C110.202 110.812 109.875 111.094 109.468 111.31C109.062 111.521 108.616 111.627 108.129 111.627C107.613 111.627 107.162 111.536 106.777 111.354C106.396 111.172 106.079 110.922 105.825 110.605C105.575 110.288 105.387 109.924 105.26 109.513C105.137 109.098 105.076 108.66 105.076 108.199V107.933C105.076 107.471 105.137 107.035 105.26 106.625C105.387 106.21 105.575 105.844 105.825 105.527C106.079 105.209 106.396 104.96 106.777 104.778C107.162 104.596 107.613 104.505 108.129 104.505C108.666 104.505 109.136 104.615 109.538 104.835C109.94 105.051 110.255 105.347 110.484 105.724C110.717 106.096 110.844 106.519 110.865 106.993H109.748C109.726 106.71 109.646 106.454 109.506 106.225C109.371 105.997 109.185 105.815 108.948 105.679C108.715 105.54 108.442 105.47 108.129 105.47C107.769 105.47 107.467 105.542 107.221 105.686C106.98 105.825 106.787 106.016 106.644 106.257C106.504 106.494 106.402 106.758 106.339 107.05C106.28 107.338 106.25 107.632 106.25 107.933V108.199C106.25 108.5 106.28 108.796 106.339 109.088C106.398 109.38 106.498 109.644 106.637 109.881C106.781 110.118 106.974 110.309 107.215 110.453C107.46 110.592 107.765 110.662 108.129 110.662ZM115.035 111.627C114.557 111.627 114.123 111.547 113.734 111.386C113.349 111.221 113.017 110.99 112.737 110.694C112.462 110.398 112.251 110.046 112.103 109.64C111.954 109.234 111.88 108.79 111.88 108.307V108.041C111.88 107.482 111.963 106.985 112.128 106.549C112.293 106.109 112.517 105.736 112.801 105.432C113.084 105.127 113.406 104.896 113.766 104.74C114.125 104.583 114.498 104.505 114.883 104.505C115.374 104.505 115.797 104.59 116.152 104.759C116.512 104.928 116.806 105.165 117.035 105.47C117.263 105.77 117.432 106.126 117.542 106.536C117.653 106.942 117.708 107.387 117.708 107.869V108.396H112.579V107.438H116.533V107.349C116.516 107.044 116.453 106.748 116.343 106.46C116.237 106.172 116.068 105.935 115.835 105.749C115.602 105.563 115.285 105.47 114.883 105.47C114.616 105.47 114.371 105.527 114.146 105.641C113.922 105.751 113.73 105.916 113.569 106.136C113.408 106.356 113.283 106.625 113.194 106.942C113.105 107.26 113.061 107.626 113.061 108.041V108.307C113.061 108.633 113.105 108.94 113.194 109.228C113.287 109.511 113.421 109.761 113.594 109.977C113.772 110.192 113.986 110.362 114.235 110.484C114.489 110.607 114.777 110.668 115.099 110.668C115.513 110.668 115.865 110.584 116.152 110.415C116.44 110.245 116.692 110.019 116.908 109.735L117.619 110.3C117.471 110.525 117.282 110.738 117.054 110.941C116.825 111.145 116.544 111.31 116.209 111.437C115.879 111.563 115.488 111.627 115.035 111.627ZM119.028 110.878C119.028 110.679 119.089 110.512 119.212 110.376C119.339 110.237 119.521 110.167 119.758 110.167C119.995 110.167 120.175 110.237 120.297 110.376C120.424 110.512 120.488 110.679 120.488 110.878C120.488 111.073 120.424 111.238 120.297 111.373C120.175 111.508 119.995 111.576 119.758 111.576C119.521 111.576 119.339 111.508 119.212 111.373C119.089 111.238 119.028 111.073 119.028 110.878ZM119.034 105.273C119.034 105.074 119.096 104.907 119.218 104.771C119.345 104.632 119.527 104.562 119.764 104.562C120.001 104.562 120.181 104.632 120.304 104.771C120.431 104.907 120.494 105.074 120.494 105.273C120.494 105.468 120.431 105.633 120.304 105.768C120.181 105.903 120.001 105.971 119.764 105.971C119.527 105.971 119.345 105.903 119.218 105.768C119.096 105.633 119.034 105.468 119.034 105.273Z",fill:"white"}),(0,h.createElement)("path",{d:"M131.45 100.792V102.664H130.459V100.792H131.45ZM131.329 111.157V112.865H130.339V111.157H131.329ZM132.027 109.075C132.027 108.834 131.983 108.629 131.894 108.459C131.809 108.29 131.67 108.14 131.475 108.009C131.285 107.878 131.027 107.751 130.701 107.628C130.151 107.416 129.666 107.192 129.247 106.955C128.832 106.714 128.509 106.416 128.276 106.06C128.043 105.7 127.927 105.245 127.927 104.695C127.927 104.171 128.052 103.716 128.301 103.331C128.551 102.945 128.896 102.649 129.336 102.442C129.78 102.23 130.297 102.125 130.885 102.125C131.333 102.125 131.74 102.192 132.104 102.328C132.467 102.459 132.781 102.653 133.043 102.912C133.305 103.166 133.506 103.477 133.646 103.845C133.786 104.213 133.855 104.634 133.855 105.108H132.034C132.034 104.854 132.006 104.63 131.951 104.435C131.896 104.24 131.816 104.077 131.71 103.946C131.608 103.815 131.486 103.718 131.342 103.654C131.198 103.587 131.039 103.553 130.866 103.553C130.608 103.553 130.396 103.604 130.231 103.705C130.066 103.807 129.945 103.944 129.869 104.118C129.797 104.287 129.761 104.482 129.761 104.702C129.761 104.917 129.799 105.106 129.875 105.267C129.956 105.427 130.093 105.576 130.288 105.711C130.483 105.842 130.749 105.978 131.088 106.117C131.638 106.329 132.12 106.557 132.535 106.803C132.95 107.048 133.274 107.349 133.506 107.704C133.739 108.06 133.855 108.512 133.855 109.062C133.855 109.608 133.729 110.074 133.475 110.459C133.221 110.84 132.865 111.132 132.408 111.335C131.951 111.534 131.422 111.633 130.821 111.633C130.432 111.633 130.045 111.583 129.66 111.481C129.275 111.375 128.925 111.206 128.612 110.973C128.299 110.74 128.049 110.431 127.863 110.046C127.677 109.657 127.584 109.179 127.584 108.612H129.412C129.412 108.921 129.452 109.179 129.533 109.386C129.613 109.589 129.719 109.752 129.85 109.875C129.986 109.993 130.138 110.078 130.307 110.129C130.476 110.18 130.648 110.205 130.821 110.205C131.092 110.205 131.314 110.156 131.488 110.059C131.666 109.962 131.799 109.828 131.888 109.659C131.981 109.486 132.027 109.291 132.027 109.075ZM141.422 110.072V111.5H135.1V110.281L138.089 107.076C138.39 106.741 138.627 106.447 138.8 106.193C138.974 105.935 139.099 105.705 139.175 105.501C139.255 105.294 139.295 105.097 139.295 104.911C139.295 104.632 139.249 104.393 139.156 104.194C139.063 103.991 138.925 103.834 138.743 103.724C138.565 103.614 138.345 103.559 138.083 103.559C137.804 103.559 137.562 103.627 137.359 103.762C137.16 103.898 137.008 104.086 136.902 104.327C136.801 104.568 136.75 104.841 136.75 105.146H134.916C134.916 104.596 135.047 104.092 135.309 103.635C135.571 103.174 135.942 102.808 136.42 102.537C136.898 102.262 137.465 102.125 138.121 102.125C138.769 102.125 139.314 102.23 139.759 102.442C140.207 102.649 140.546 102.95 140.774 103.343C141.007 103.733 141.124 104.198 141.124 104.74C141.124 105.044 141.075 105.343 140.978 105.635C140.88 105.923 140.741 106.21 140.559 106.498C140.381 106.782 140.165 107.069 139.911 107.361C139.657 107.653 139.376 107.956 139.067 108.269L137.461 110.072H141.422ZM148.785 106.066V107.666C148.785 108.36 148.711 108.959 148.563 109.462C148.415 109.962 148.201 110.372 147.922 110.694C147.647 111.011 147.319 111.246 146.938 111.398C146.557 111.551 146.134 111.627 145.668 111.627C145.296 111.627 144.949 111.58 144.627 111.487C144.306 111.39 144.016 111.24 143.758 111.037C143.504 110.833 143.284 110.577 143.098 110.269C142.916 109.955 142.776 109.583 142.679 109.151C142.581 108.72 142.533 108.225 142.533 107.666V106.066C142.533 105.372 142.607 104.778 142.755 104.283C142.907 103.783 143.121 103.375 143.396 103.058C143.675 102.74 144.005 102.507 144.386 102.359C144.767 102.207 145.19 102.131 145.656 102.131C146.028 102.131 146.373 102.18 146.69 102.277C147.012 102.37 147.302 102.516 147.56 102.715C147.818 102.914 148.038 103.17 148.22 103.483C148.402 103.792 148.542 104.162 148.639 104.594C148.736 105.021 148.785 105.512 148.785 106.066ZM146.951 107.907V105.819C146.951 105.485 146.932 105.193 146.894 104.943C146.86 104.693 146.807 104.482 146.735 104.308C146.663 104.13 146.574 103.986 146.468 103.876C146.362 103.766 146.242 103.686 146.106 103.635C145.971 103.584 145.821 103.559 145.656 103.559C145.448 103.559 145.264 103.599 145.104 103.68C144.947 103.76 144.814 103.889 144.704 104.067C144.594 104.24 144.509 104.473 144.45 104.765C144.395 105.053 144.367 105.404 144.367 105.819V107.907C144.367 108.242 144.384 108.536 144.418 108.79C144.456 109.043 144.511 109.261 144.583 109.443C144.659 109.621 144.748 109.767 144.85 109.881C144.955 109.991 145.076 110.072 145.211 110.123C145.351 110.173 145.503 110.199 145.668 110.199C145.872 110.199 146.051 110.159 146.208 110.078C146.369 109.993 146.504 109.862 146.614 109.685C146.729 109.503 146.813 109.266 146.868 108.974C146.923 108.682 146.951 108.326 146.951 107.907ZM156.25 106.066V107.666C156.25 108.36 156.176 108.959 156.028 109.462C155.88 109.962 155.666 110.372 155.387 110.694C155.112 111.011 154.784 111.246 154.403 111.398C154.022 111.551 153.599 111.627 153.133 111.627C152.761 111.627 152.414 111.58 152.092 111.487C151.771 111.39 151.481 111.24 151.223 111.037C150.969 110.833 150.749 110.577 150.562 110.269C150.381 109.955 150.241 109.583 150.144 109.151C150.046 108.72 149.998 108.225 149.998 107.666V106.066C149.998 105.372 150.072 104.778 150.22 104.283C150.372 103.783 150.586 103.375 150.861 103.058C151.14 102.74 151.47 102.507 151.851 102.359C152.232 102.207 152.655 102.131 153.121 102.131C153.493 102.131 153.838 102.18 154.155 102.277C154.477 102.37 154.767 102.516 155.025 102.715C155.283 102.914 155.503 103.17 155.685 103.483C155.867 103.792 156.007 104.162 156.104 104.594C156.201 105.021 156.25 105.512 156.25 106.066ZM154.416 107.907V105.819C154.416 105.485 154.396 105.193 154.358 104.943C154.325 104.693 154.272 104.482 154.2 104.308C154.128 104.13 154.039 103.986 153.933 103.876C153.827 103.766 153.707 103.686 153.571 103.635C153.436 103.584 153.286 103.559 153.121 103.559C152.913 103.559 152.729 103.599 152.568 103.68C152.412 103.76 152.278 103.889 152.168 104.067C152.058 104.24 151.974 104.473 151.915 104.765C151.86 105.053 151.832 105.404 151.832 105.819V107.907C151.832 108.242 151.849 108.536 151.883 108.79C151.921 109.043 151.976 109.261 152.048 109.443C152.124 109.621 152.213 109.767 152.314 109.881C152.42 109.991 152.541 110.072 152.676 110.123C152.816 110.173 152.968 110.199 153.133 110.199C153.336 110.199 153.516 110.159 153.673 110.078C153.834 109.993 153.969 109.862 154.079 109.685C154.193 109.503 154.278 109.266 154.333 108.974C154.388 108.682 154.416 108.326 154.416 107.907ZM157.659 110.618C157.659 110.347 157.752 110.12 157.938 109.938C158.129 109.757 158.381 109.666 158.694 109.666C159.007 109.666 159.257 109.757 159.443 109.938C159.633 110.12 159.729 110.347 159.729 110.618C159.729 110.889 159.633 111.115 159.443 111.297C159.257 111.479 159.007 111.57 158.694 111.57C158.381 111.57 158.129 111.479 157.938 111.297C157.752 111.115 157.659 110.889 157.659 110.618ZM167.485 106.066V107.666C167.485 108.36 167.411 108.959 167.263 109.462C167.115 109.962 166.901 110.372 166.622 110.694C166.347 111.011 166.019 111.246 165.638 111.398C165.257 111.551 164.834 111.627 164.369 111.627C163.996 111.627 163.649 111.58 163.328 111.487C163.006 111.39 162.716 111.24 162.458 111.037C162.204 110.833 161.984 110.577 161.798 110.269C161.616 109.955 161.476 109.583 161.379 109.151C161.282 108.72 161.233 108.225 161.233 107.666V106.066C161.233 105.372 161.307 104.778 161.455 104.283C161.607 103.783 161.821 103.375 162.096 103.058C162.375 102.74 162.706 102.507 163.086 102.359C163.467 102.207 163.89 102.131 164.356 102.131C164.728 102.131 165.073 102.18 165.391 102.277C165.712 102.37 166.002 102.516 166.26 102.715C166.518 102.914 166.738 103.17 166.92 103.483C167.102 103.792 167.242 104.162 167.339 104.594C167.437 105.021 167.485 105.512 167.485 106.066ZM165.651 107.907V105.819C165.651 105.485 165.632 105.193 165.594 104.943C165.56 104.693 165.507 104.482 165.435 104.308C165.363 104.13 165.274 103.986 165.168 103.876C165.063 103.766 164.942 103.686 164.807 103.635C164.671 103.584 164.521 103.559 164.356 103.559C164.149 103.559 163.965 103.599 163.804 103.68C163.647 103.76 163.514 103.889 163.404 104.067C163.294 104.24 163.209 104.473 163.15 104.765C163.095 105.053 163.067 105.404 163.067 105.819V107.907C163.067 108.242 163.084 108.536 163.118 108.79C163.156 109.043 163.211 109.261 163.283 109.443C163.359 109.621 163.448 109.767 163.55 109.881C163.656 109.991 163.776 110.072 163.912 110.123C164.051 110.173 164.204 110.199 164.369 110.199C164.572 110.199 164.752 110.159 164.908 110.078C165.069 109.993 165.204 109.862 165.314 109.685C165.429 109.503 165.513 109.266 165.568 108.974C165.623 108.682 165.651 108.326 165.651 107.907ZM174.95 106.066V107.666C174.95 108.36 174.876 108.959 174.728 109.462C174.58 109.962 174.366 110.372 174.087 110.694C173.812 111.011 173.484 111.246 173.103 111.398C172.722 111.551 172.299 111.627 171.833 111.627C171.461 111.627 171.114 111.58 170.792 111.487C170.471 111.39 170.181 111.24 169.923 111.037C169.669 110.833 169.449 110.577 169.263 110.269C169.081 109.955 168.941 109.583 168.844 109.151C168.746 108.72 168.698 108.225 168.698 107.666V106.066C168.698 105.372 168.772 104.778 168.92 104.283C169.072 103.783 169.286 103.375 169.561 103.058C169.84 102.74 170.17 102.507 170.551 102.359C170.932 102.207 171.355 102.131 171.821 102.131C172.193 102.131 172.538 102.18 172.855 102.277C173.177 102.37 173.467 102.516 173.725 102.715C173.983 102.914 174.203 103.17 174.385 103.483C174.567 103.792 174.707 104.162 174.804 104.594C174.902 105.021 174.95 105.512 174.95 106.066ZM173.116 107.907V105.819C173.116 105.485 173.097 105.193 173.059 104.943C173.025 104.693 172.972 104.482 172.9 104.308C172.828 104.13 172.739 103.986 172.633 103.876C172.528 103.766 172.407 103.686 172.271 103.635C172.136 103.584 171.986 103.559 171.821 103.559C171.613 103.559 171.429 103.599 171.269 103.68C171.112 103.76 170.979 103.889 170.869 104.067C170.759 104.24 170.674 104.473 170.615 104.765C170.56 105.053 170.532 105.404 170.532 105.819V107.907C170.532 108.242 170.549 108.536 170.583 108.79C170.621 109.043 170.676 109.261 170.748 109.443C170.824 109.621 170.913 109.767 171.015 109.881C171.12 109.991 171.241 110.072 171.376 110.123C171.516 110.173 171.668 110.199 171.833 110.199C172.037 110.199 172.216 110.159 172.373 110.078C172.534 109.993 172.669 109.862 172.779 109.685C172.894 109.503 172.978 109.266 173.033 108.974C173.088 108.682 173.116 108.326 173.116 107.907Z",fill:"white"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_273_2176"},(0,h.createElement)("rect",{x:"15",y:"16.5",width:"268",height:"110",rx:"4",fill:"white"})))),{AdvancedFields:kC,FieldWrapper:jC,FieldSettingsWrapper:xC,ToolBarFields:FC,BlockName:BC,BlockDescription:AC,BlockLabel:PC,MacrosFields:SC,ClientSideMacros:NC}=JetFBComponents,{useUniqueNameOnDuplicate:IC}=JetFBHooks,{__:TC}=wp.i18n,{InspectorControls:OC,useBlockProps:JC}=wp.blockEditor,{TextControl:RC,TextareaControl:qC,ToggleControl:DC,PanelBody:zC,SelectControl:UC,__experimentalNumberControl:GC}=wp.components,WC=GC,KC={calc_hidden:TC("Check this to hide calculated field","jet-form-builder")},$C=JSON.parse('{"apiVersion":3,"name":"jet-forms/calculated-field","category":"jet-form-builder-fields","title":"Calculated Field","description":"Calculate and display your number values","icon":"\\n\\n","keywords":["jetformbuilder","field","calculated"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"validation":{"type":"object","default":{}},"value_type":{"type":"string","default":"number"},"date_format":{"type":"string","default":"YYYY-MM-DD"},"separate_decimals":{"type":"string","default":"."},"separate_thousands":{"type":"string","default":""},"calc_formula":{"type":"string","default":""},"precision":{"type":"number","default":2},"calc_prefix":{"type":"string","default":"","jfb":{"rich":true}},"calc_suffix":{"type":"string","default":"","jfb":{"rich":true}},"calc_hidden":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"placeholder":{"type":"string","default":""},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:YC}=wp.i18n,{createBlock:XC}=wp.blocks,{name:QC,icon:et}=$C,Ct={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:et}}),description:YC("Pull out the values from the form fields and meta fields and use them to calculate the formula of any complexity you've set before.","jet-form-builder"),edit:function(e){const C=JC();IC();const{attributes:t,setAttributes:l,isSelected:r,editProps:{uniqKey:n}}=e,a=(0,h.useRef)(null);return t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},_C):[(0,h.createElement)(FC,{key:n("ToolBarFields"),...e},(0,h.createElement)(NC,{withThis:!0},(0,h.createElement)(SC,{onClick:(e,C,r)=>{const n="option-label"===r?e.replace(/%$/,"::label%"):e,i=t.calc_formula||"",o=a.current;if(o){const e=o.selectionStart,C=o.selectionEnd,t=i.slice(0,e)+n+i.slice(C);l({calc_formula:t}),setTimeout((()=>{o.focus(),o.selectionStart=o.selectionEnd=e+n.length}))}}}))),r&&(0,h.createElement)(OC,{key:n("InspectorControls")},(0,h.createElement)(zC,{title:TC("General","jet-form-builder"),key:"jet-form-general-fields"},(0,h.createElement)(PC,null),(0,h.createElement)(BC,null),(0,h.createElement)(AC,null)),(0,h.createElement)(xC,{...e},"date"!==t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:JetFormCalculatedField.field_desc}})):null,(0,h.createElement)(UC,{label:TC("Value type","jet-form-builder"),labelPosition:"top",value:t.value_type,onChange:e=>l({value_type:e}),options:[{value:"number",label:TC("as Number","jet-form-builder")},{value:"string",label:TC("as String","jet-form-builder")},{value:"date",label:TC("as Date","jet-form-builder")}]}),"date"===t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)(RC,{key:"calc_date_format",label:TC("Date Format","jet-form-builder"),value:t.date_format,onChange:e=>l({date_format:e})}),(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:JetFormCalculatedField.date_format}})):null,"number"===t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)(WC,{label:TC("Decimal Places Number","jet-form-builder"),labelPosition:"top",key:"precision",value:t.precision,onChange:e=>{l({precision:parseInt(e)})}}),(0,h.createElement)(RC,{key:"calc_separate_decimals",label:TC("Decimals separator","jet-form-builder"),value:t.separate_decimals,onChange:e=>l({separate_decimals:e})}),(0,h.createElement)(RC,{key:"calc_separate_thousands",label:TC("Thousands separator","jet-form-builder"),value:t.separate_thousands,onChange:e=>l({separate_thousands:e})}),(0,h.createElement)(RC,{key:"calc_prefix",label:TC("Calculated Value Prefix","jet-form-builder"),value:t.calc_prefix,help:TC("For space before or after text use:  ","jet-form-builder"),onChange:e=>{l({calc_prefix:e})}}),(0,h.createElement)(RC,{key:"calc_suffix",label:TC("Calculated Value Suffix","jet-form-builder"),value:t.calc_suffix,help:TC("For space before or after text use:  ","jet-form-builder"),onChange:e=>{l({calc_suffix:e})}})):null,(0,h.createElement)(DC,{key:"calc_hidden",label:TC("Hidden","jet-form-builder"),checked:t.calc_hidden,help:KC.calc_hidden,onChange:e=>{l({calc_hidden:Boolean(e)})}})),(0,h.createElement)(kC,{key:n("JetForm-advanced"),...e})),(0,h.createElement)("div",{...C,key:n("viewBlock")},(0,h.createElement)(jC,{key:n("FieldWrapper"),...e},(0,h.createElement)("div",{className:"jet-form-builder__calculated-field"},(0,h.createElement)("div",{className:"calc-prefix"},t.calc_prefix),(0,h.createElement)("div",{className:"calc-formula"},t.calc_formula),(0,h.createElement)("div",{className:"calc-suffix"},t.calc_suffix)),e.isSelected&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(qC,{key:"calc_formula",value:t.calc_formula,onChange:e=>{l({calc_formula:e})},ref:a}),(0,h.createElement)("div",{className:"jet-form-builder__calculated-field_info"},TC("You may use JavaScript's built-in ","jet-form-builder"),(0,h.createElement)("a",{href:"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math",target:"_blank",rel:"noopener noreferrer"},TC("Math","jet-form-builder")),TC(" object (e.g., Math.sqrt(16) returns 4) to perform more sophisticated operations.","jet-form-builder"),(0,h.createElement)("br",null),TC("You can also explore","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters",target:"_blank",rel:"noopener noreferrer"},TC("Filters","jet-form-builder")),", ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros",target:"_blank",rel:"noopener noreferrer"},TC("External Macros","jet-form-builder"))," ",TC("and","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Field-Attributes",target:"_blank",rel:"noopener noreferrer"},TC("Field Attributes","jet-form-builder"))," ",TC("for deeper customization.","jet-form-builder"),(0,h.createElement)("br",null),TC("Additionally, you can use the ternary operator (?:) for conditional calculations. For example: ((%field_one% + %field_two%) > 20) ? 10 : 5","jet-form-builder"),(0,h.createElement)("br",null),TC("For more details on using calculated fields, check out the Block Field section or read our in-depth guide","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://jetformbuilder.com/features/calculated-field",target:"_blank",rel:"noopener noreferrer"},TC("here","jet-form-builder")),"."))))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/number-field"],transform:e=>XC("jet-forms/number-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/number-field","jet-forms/text-field"],transform:e=>XC(QC,{...e}),priority:0}]}},{Repeater:tt,RepeaterAddNew:lt,RepeaterAddOrOperator:rt,ConditionItem:nt,RepeaterState:at,ToggleControl:it,ConditionsRepeaterContextProvider:ot}=JetFBComponents,{useState:st}=wp.element,{useBlockAttributes:ct,useBlockConditions:dt,useUniqKey:mt,useOnUpdateModal:ut}=JetFBHooks;let{SelectControl:pt,withFilters:ft,Button:Vt,ToggleGroupControl:Ht,__experimentalToggleGroupControl:ht}=wp.components;const{__:bt}=wp.i18n,{addFilter:Mt}=wp.hooks;Ht=Ht||ht,Mt("jet.fb.block.condition.settings","jet-form-builder",(e=>C=>{var t;const{current:l,settings:r,update:n}=C;return["show","hide"].includes(l.func_type)?(0,h.createElement)(it,{checked:null!==(t=r?.dom)&&void 0!==t&&t,onChange:e=>n({dom:Boolean(e)})},bt("Remove hidden elements from page HTML","jet-form-builder")+" ",(0,h.createElement)(Vt,{isLink:!0,onClick:()=>{},label:bt("If this block is removed from the HTML, then when sending the form, the values from the inner fields will be empty","jet-form-builder"),showTooltip:!0},"(?)")):(0,h.createElement)(e,{...C})}));const Lt=ft("jet.fb.block.condition.settings")((()=>null));function gt(){var e;const[C,t]=ct(),[l,r]=st((()=>C)),{functions:n}=dt(),a=mt(),i=e=>{const C="function"==typeof e?e(l.conditions):e;r((e=>({...e,conditions:C})))};ut((()=>t(l)));const o=(e=>e.func_type&&e?.func_settings?.hasOwnProperty(e.func_type)?e?.func_settings[e.func_type]:{})(l);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(pt,{key:a("SelectControl-operator"),label:bt("Which function need execute?","jet-form-builder"),labelPosition:"side",value:l.func_type,options:n,onChange:e=>r((C=>({...C,func_type:e})))}),(0,h.createElement)(Lt,{current:l,settings:o,update:e=>r((C=>{var t;return{...C,func_settings:{...null!==(t=C?.func_settings)&&void 0!==t?t:{},[C.func_type]:{...o,...e}}}}))}),(0,h.createElement)(ot,null,(0,h.createElement)(tt,{items:null!==(e=l.conditions)&&void 0!==e?e:[],onSetState:i},(0,h.createElement)(nt,null))),(0,h.createElement)(at,{state:i},(0,h.createElement)(Ht,{style:{display:"flex"},hideLabelFromVision:!0,className:"jfb-toggle-group-control jfb-toggle-group-control--no-gap"},(0,h.createElement)(lt,null,bt("Add Condition","jet-form-builder")),Boolean(l?.conditions?.length)&&(0,h.createElement)(rt,null,bt("Add OR Operator","jet-form-builder")))))}const{ActionModal:Zt}=JetFBComponents;function yt(e){const{setShowModal:C}=e;return(0,h.createElement)(Zt,{classNames:["width-60"],onRequestClose:()=>C(!1),title:"Conditional Logic"},(0,h.createElement)(gt,null))}const{createContext:Et}=wp.element,wt=Et({showModal:!1,setShowModal:()=>{}}),{DetailsContainer:vt,HoverContainer:_t,HumanReadableConditions:kt}=JetFBComponents,{useBlockAttributes:jt}=JetFBHooks,{useState:xt,useContext:Ft}=wp.element,{__:Bt}=wp.i18n,{Button:At}=wp.components,Pt=function({group:e}){const[C,t]=xt(!1),{setShowModal:l}=Ft(wt),[r,n]=jt(),a=e.map((({condition:e})=>e)),i=e.map((({index:e})=>e));return(0,h.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>t(!0),onFocus:()=>t(!0),onMouseOut:()=>t(!1),onBlur:()=>t(!1)},(0,h.createElement)(_t,{isHover:C},(0,h.createElement)(At,{isSmall:!0,isSecondary:!0,icon:"edit",onClick:()=>{n((({conditions:e})=>e.map(((e,C)=>(e.__visible=C===i[0],e))))),l((e=>!e))}},Bt("Edit","jet-form-builder")),(0,h.createElement)(At,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{n({conditions:r.conditions.filter(((e,C)=>!i.includes(C)))})}},Bt("Delete","jet-form-builder"))),(0,h.createElement)(vt,null,(0,h.createElement)(kt,{conditions:a,showWarning:!0})))},{DetailsContainer:St,HoverContainer:Nt}=JetFBComponents,{useBlockAttributes:It}=JetFBHooks,{useContext:Tt,useState:Ot}=wp.element,{__:Jt}=wp.i18n,{Button:Rt}=wp.components,qt=function(){const{setShowModal:e}=Tt(wt),[C,t]=It(),[l,r]=Ot(!1);return(0,h.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>r(!0),onFocus:()=>r(!0),onMouseOut:()=>r(!1),onBlur:()=>r(!1)},(0,h.createElement)(Nt,{isHover:l},(0,h.createElement)(Rt,{isSmall:!0,isSecondary:!0,icon:"plus-alt2",onClick:()=>{t({conditions:[...JSON.parse(JSON.stringify(C.conditions)),{__visible:!0}]}),e((e=>!e))}},Jt("Add new","jet-form-builder"))),(0,h.createElement)(St,null,(0,h.createElement)("span",{"data-title":Jt("You have no conditions in this block.","jet-form-builder")}),(0,h.createElement)("span",{"data-title":Jt("Please click here to add new.","jet-form-builder")})))},{__:Dt}=wp.i18n,{Children:zt,cloneElement:Ut}=wp.element,{ContainersList:Gt}=JetFBComponents,Wt=e=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)("b",null,Dt("OR","jet-form-builder")),(0,h.createElement)(Pt,{group:e})),Kt=function({attributes:e}){return Boolean(e?.conditions?.length)?(0,h.createElement)(Gt,null,zt.map((e=>{let C={},t=0,l=0;for(const n of e){var r;n.hasOwnProperty("or_operator")?(t++,l++):(C[t]=null!==(r=C[t])&&void 0!==r?r:[],C[t].push({condition:n,index:l}),l++)}C=Object.values(C);const n=C.filter(((e,C)=>0!==C));return[(0,h.createElement)(Pt,{group:C[0],key:"first_item"}),...n.map(Wt)]})(e.conditions),Ut)):(0,h.createElement)(qt,null)},$t=(0,h.createElement)("svg",{width:"298",height:"149",viewBox:"0 0 298 149",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"149",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M18.7734 19.9922L20.749 13.0469H21.7061L21.1523 15.7471L19.0264 23H18.0762L18.7734 19.9922ZM16.7295 13.0469L18.3018 19.8555L18.7734 23H17.8301L15.417 13.0469H16.7295ZM24.2627 19.8486L25.8008 13.0469H27.1201L24.7139 23H23.7705L24.2627 19.8486ZM21.8496 13.0469L23.7705 19.9922L24.4678 23H23.5176L21.4668 15.7471L20.9062 13.0469H21.8496ZM29.6562 12.5V23H28.3916V12.5H29.6562ZM29.3555 19.0215L28.8291 19.001C28.8337 18.4951 28.9089 18.028 29.0547 17.5996C29.2005 17.1667 29.4056 16.7907 29.6699 16.4717C29.9342 16.1527 30.2487 15.9066 30.6133 15.7334C30.9824 15.5557 31.3903 15.4668 31.8369 15.4668C32.2015 15.4668 32.5296 15.5169 32.8213 15.6172C33.113 15.7129 33.3613 15.8678 33.5664 16.082C33.776 16.2962 33.9355 16.5742 34.0449 16.916C34.1543 17.2533 34.209 17.6657 34.209 18.1533V23H32.9375V18.1396C32.9375 17.7523 32.8805 17.4424 32.7666 17.21C32.6527 16.973 32.4863 16.8021 32.2676 16.6973C32.0488 16.5879 31.7799 16.5332 31.4609 16.5332C31.1465 16.5332 30.8594 16.5993 30.5996 16.7314C30.3444 16.8636 30.1234 17.0459 29.9365 17.2783C29.7542 17.5107 29.6107 17.7773 29.5059 18.0781C29.4056 18.3743 29.3555 18.6888 29.3555 19.0215ZM40.4639 21.7354V17.9277C40.4639 17.6361 40.4046 17.3831 40.2861 17.1689C40.1722 16.9502 39.999 16.7816 39.7666 16.6631C39.5342 16.5446 39.2471 16.4854 38.9053 16.4854C38.5863 16.4854 38.306 16.54 38.0645 16.6494C37.8275 16.7588 37.6406 16.9023 37.5039 17.0801C37.3717 17.2578 37.3057 17.4492 37.3057 17.6543H36.041C36.041 17.39 36.1094 17.1279 36.2461 16.8682C36.3828 16.6084 36.5788 16.3737 36.834 16.1641C37.0938 15.9499 37.4036 15.7812 37.7637 15.6582C38.1283 15.5306 38.5339 15.4668 38.9805 15.4668C39.5182 15.4668 39.9922 15.5579 40.4023 15.7402C40.8171 15.9225 41.1406 16.1982 41.373 16.5674C41.61 16.932 41.7285 17.39 41.7285 17.9414V21.3867C41.7285 21.6328 41.749 21.8949 41.79 22.1729C41.8356 22.4508 41.9017 22.6901 41.9883 22.8906V23H40.6689C40.6051 22.8542 40.555 22.6605 40.5186 22.4189C40.4821 22.1729 40.4639 21.945 40.4639 21.7354ZM40.6826 18.5156L40.6963 19.4043H39.418C39.0579 19.4043 38.7367 19.4339 38.4541 19.4932C38.1715 19.5479 37.9346 19.6322 37.7432 19.7461C37.5518 19.86 37.4059 20.0036 37.3057 20.1768C37.2054 20.3454 37.1553 20.5436 37.1553 20.7715C37.1553 21.0039 37.2077 21.2158 37.3125 21.4072C37.4173 21.5986 37.5745 21.7513 37.7842 21.8652C37.9984 21.9746 38.2604 22.0293 38.5703 22.0293C38.9577 22.0293 39.2995 21.9473 39.5957 21.7832C39.8919 21.6191 40.1266 21.4186 40.2998 21.1816C40.4775 20.9447 40.5732 20.7145 40.5869 20.4912L41.127 21.0996C41.0951 21.291 41.0085 21.5029 40.8672 21.7354C40.7259 21.9678 40.5368 22.1911 40.2998 22.4053C40.0674 22.6149 39.7894 22.7904 39.4658 22.9316C39.1468 23.0684 38.7868 23.1367 38.3857 23.1367C37.8844 23.1367 37.4447 23.0387 37.0664 22.8428C36.6927 22.6468 36.401 22.3848 36.1914 22.0566C35.9863 21.724 35.8838 21.3525 35.8838 20.9424C35.8838 20.5459 35.9613 20.1973 36.1162 19.8965C36.2712 19.5911 36.4945 19.3382 36.7861 19.1377C37.0778 18.9326 37.4287 18.7777 37.8389 18.6729C38.249 18.568 38.707 18.5156 39.2129 18.5156H40.6826ZM46.8145 15.6035V16.5742H42.8154V15.6035H46.8145ZM44.1689 13.8057H45.4336V21.168C45.4336 21.4186 45.4723 21.6077 45.5498 21.7354C45.6273 21.863 45.7275 21.9473 45.8506 21.9883C45.9736 22.0293 46.1058 22.0498 46.2471 22.0498C46.3519 22.0498 46.4613 22.0407 46.5752 22.0225C46.6937 21.9997 46.7826 21.9814 46.8418 21.9678L46.8486 23C46.7484 23.0319 46.6162 23.0615 46.4521 23.0889C46.2926 23.1208 46.099 23.1367 45.8711 23.1367C45.5612 23.1367 45.2764 23.0752 45.0166 22.9521C44.7568 22.8291 44.5495 22.624 44.3945 22.3369C44.2441 22.0452 44.1689 21.6533 44.1689 21.1611V13.8057ZM54.8672 15.6035V16.5742H50.8682V15.6035H54.8672ZM52.2217 13.8057H53.4863V21.168C53.4863 21.4186 53.5251 21.6077 53.6025 21.7354C53.68 21.863 53.7803 21.9473 53.9033 21.9883C54.0264 22.0293 54.1585 22.0498 54.2998 22.0498C54.4046 22.0498 54.514 22.0407 54.6279 22.0225C54.7464 21.9997 54.8353 21.9814 54.8945 21.9678L54.9014 23C54.8011 23.0319 54.6689 23.0615 54.5049 23.0889C54.3454 23.1208 54.1517 23.1367 53.9238 23.1367C53.6139 23.1367 53.3291 23.0752 53.0693 22.9521C52.8096 22.8291 52.6022 22.624 52.4473 22.3369C52.2969 22.0452 52.2217 21.6533 52.2217 21.1611V13.8057ZM57.6152 16.7656V23H56.3506V15.6035H57.5811L57.6152 16.7656ZM59.9258 15.5625L59.9189 16.7383C59.8141 16.7155 59.7139 16.7018 59.6182 16.6973C59.527 16.6882 59.4222 16.6836 59.3037 16.6836C59.012 16.6836 58.7546 16.7292 58.5312 16.8203C58.3079 16.9115 58.1188 17.0391 57.9639 17.2031C57.8089 17.3672 57.6859 17.5632 57.5947 17.791C57.5081 18.0143 57.4512 18.2604 57.4238 18.5293L57.0684 18.7344C57.0684 18.2878 57.1117 17.8685 57.1982 17.4766C57.2894 17.0846 57.4284 16.7383 57.6152 16.4375C57.8021 16.1322 58.0391 15.8952 58.3262 15.7266C58.6178 15.5534 58.9642 15.4668 59.3652 15.4668C59.4564 15.4668 59.5612 15.4782 59.6797 15.501C59.7982 15.5192 59.8802 15.5397 59.9258 15.5625ZM65.1826 21.7354V17.9277C65.1826 17.6361 65.1234 17.3831 65.0049 17.1689C64.891 16.9502 64.7178 16.7816 64.4854 16.6631C64.2529 16.5446 63.9658 16.4854 63.624 16.4854C63.305 16.4854 63.0247 16.54 62.7832 16.6494C62.5462 16.7588 62.3594 16.9023 62.2227 17.0801C62.0905 17.2578 62.0244 17.4492 62.0244 17.6543H60.7598C60.7598 17.39 60.8281 17.1279 60.9648 16.8682C61.1016 16.6084 61.2975 16.3737 61.5527 16.1641C61.8125 15.9499 62.1224 15.7812 62.4824 15.6582C62.847 15.5306 63.2526 15.4668 63.6992 15.4668C64.237 15.4668 64.7109 15.5579 65.1211 15.7402C65.5358 15.9225 65.8594 16.1982 66.0918 16.5674C66.3288 16.932 66.4473 17.39 66.4473 17.9414V21.3867C66.4473 21.6328 66.4678 21.8949 66.5088 22.1729C66.5544 22.4508 66.6204 22.6901 66.707 22.8906V23H65.3877C65.3239 22.8542 65.2738 22.6605 65.2373 22.4189C65.2008 22.1729 65.1826 21.945 65.1826 21.7354ZM65.4014 18.5156L65.415 19.4043H64.1367C63.7767 19.4043 63.4554 19.4339 63.1729 19.4932C62.8903 19.5479 62.6533 19.6322 62.4619 19.7461C62.2705 19.86 62.1247 20.0036 62.0244 20.1768C61.9242 20.3454 61.874 20.5436 61.874 20.7715C61.874 21.0039 61.9264 21.2158 62.0312 21.4072C62.1361 21.5986 62.2933 21.7513 62.5029 21.8652C62.7171 21.9746 62.9792 22.0293 63.2891 22.0293C63.6764 22.0293 64.0182 21.9473 64.3145 21.7832C64.6107 21.6191 64.8454 21.4186 65.0186 21.1816C65.1963 20.9447 65.292 20.7145 65.3057 20.4912L65.8457 21.0996C65.8138 21.291 65.7272 21.5029 65.5859 21.7354C65.4447 21.9678 65.2555 22.1911 65.0186 22.4053C64.7861 22.6149 64.5081 22.7904 64.1846 22.9316C63.8656 23.0684 63.5055 23.1367 63.1045 23.1367C62.6032 23.1367 62.1634 23.0387 61.7852 22.8428C61.4115 22.6468 61.1198 22.3848 60.9102 22.0566C60.7051 21.724 60.6025 21.3525 60.6025 20.9424C60.6025 20.5459 60.68 20.1973 60.835 19.8965C60.9899 19.5911 61.2132 19.3382 61.5049 19.1377C61.7965 18.9326 62.1475 18.7777 62.5576 18.6729C62.9678 18.568 63.4258 18.5156 63.9316 18.5156H65.4014ZM69.7012 17.1826V23H68.4365V15.6035H69.6328L69.7012 17.1826ZM69.4004 19.0215L68.874 19.001C68.8786 18.4951 68.9538 18.028 69.0996 17.5996C69.2454 17.1667 69.4505 16.7907 69.7148 16.4717C69.9792 16.1527 70.2936 15.9066 70.6582 15.7334C71.0273 15.5557 71.4352 15.4668 71.8818 15.4668C72.2464 15.4668 72.5745 15.5169 72.8662 15.6172C73.1579 15.7129 73.4062 15.8678 73.6113 16.082C73.821 16.2962 73.9805 16.5742 74.0898 16.916C74.1992 17.2533 74.2539 17.6657 74.2539 18.1533V23H72.9824V18.1396C72.9824 17.7523 72.9255 17.4424 72.8115 17.21C72.6976 16.973 72.5312 16.8021 72.3125 16.6973C72.0938 16.5879 71.8249 16.5332 71.5059 16.5332C71.1914 16.5332 70.9043 16.5993 70.6445 16.7314C70.3893 16.8636 70.1683 17.0459 69.9814 17.2783C69.7992 17.5107 69.6556 17.7773 69.5508 18.0781C69.4505 18.3743 69.4004 18.6888 69.4004 19.0215ZM80.4814 21.0381C80.4814 20.8558 80.4404 20.6872 80.3584 20.5322C80.2809 20.3727 80.1191 20.2292 79.873 20.1016C79.6315 19.9694 79.2669 19.8555 78.7793 19.7598C78.3691 19.6732 77.9977 19.5706 77.665 19.4521C77.3369 19.3337 77.0566 19.1901 76.8242 19.0215C76.5964 18.8529 76.4209 18.6546 76.2979 18.4268C76.1748 18.1989 76.1133 17.9323 76.1133 17.627C76.1133 17.3353 76.1771 17.0596 76.3047 16.7998C76.4368 16.54 76.6214 16.3099 76.8584 16.1094C77.0999 15.9089 77.3893 15.7516 77.7266 15.6377C78.0638 15.5238 78.4398 15.4668 78.8545 15.4668C79.4469 15.4668 79.9528 15.5716 80.3721 15.7812C80.7913 15.9909 81.1126 16.2712 81.3359 16.6221C81.5592 16.9684 81.6709 17.3535 81.6709 17.7773H80.4062C80.4062 17.5723 80.3447 17.374 80.2217 17.1826C80.1032 16.9867 79.9277 16.8249 79.6953 16.6973C79.4674 16.5697 79.1872 16.5059 78.8545 16.5059C78.5036 16.5059 78.2188 16.5605 78 16.6699C77.7858 16.7747 77.6286 16.9092 77.5283 17.0732C77.4326 17.2373 77.3848 17.4105 77.3848 17.5928C77.3848 17.7295 77.4076 17.8525 77.4531 17.9619C77.5033 18.0667 77.5898 18.1647 77.7129 18.2559C77.8359 18.3424 78.0091 18.4245 78.2324 18.502C78.4557 18.5794 78.7406 18.6569 79.0869 18.7344C79.693 18.8711 80.1921 19.0352 80.584 19.2266C80.9759 19.418 81.2676 19.6527 81.459 19.9307C81.6504 20.2087 81.7461 20.5459 81.7461 20.9424C81.7461 21.266 81.6777 21.5622 81.541 21.8311C81.4089 22.0999 81.2152 22.3324 80.96 22.5283C80.7093 22.7197 80.4085 22.8701 80.0576 22.9795C79.7113 23.0843 79.3216 23.1367 78.8887 23.1367C78.237 23.1367 77.6855 23.0205 77.2344 22.7881C76.7832 22.5557 76.4414 22.2549 76.209 21.8857C75.9766 21.5166 75.8604 21.127 75.8604 20.7168H77.1318C77.1501 21.0632 77.2503 21.3389 77.4326 21.5439C77.6149 21.7445 77.8382 21.888 78.1025 21.9746C78.3669 22.0566 78.6289 22.0977 78.8887 22.0977C79.235 22.0977 79.5244 22.0521 79.7568 21.9609C79.9938 21.8698 80.1738 21.7445 80.2969 21.585C80.4199 21.4255 80.4814 21.2432 80.4814 21.0381ZM84.6719 17.0254V25.8438H83.4004V15.6035H84.5625L84.6719 17.0254ZM89.6553 19.2402V19.3838C89.6553 19.9215 89.5915 20.4206 89.4639 20.8809C89.3363 21.3366 89.1494 21.7331 88.9033 22.0703C88.6618 22.4076 88.3633 22.6696 88.0078 22.8564C87.6523 23.0433 87.2445 23.1367 86.7842 23.1367C86.3148 23.1367 85.9001 23.0592 85.54 22.9043C85.18 22.7493 84.8747 22.5238 84.624 22.2275C84.3734 21.9313 84.1729 21.5758 84.0225 21.1611C83.8766 20.7464 83.7764 20.2793 83.7217 19.7598V18.9941C83.7764 18.4473 83.8789 17.9574 84.0293 17.5244C84.1797 17.0915 84.3779 16.7223 84.624 16.417C84.8747 16.1071 85.1777 15.8724 85.5332 15.7129C85.8887 15.5488 86.2988 15.4668 86.7637 15.4668C87.2285 15.4668 87.641 15.5579 88.001 15.7402C88.361 15.918 88.6641 16.1732 88.9102 16.5059C89.1562 16.8385 89.3408 17.2373 89.4639 17.7021C89.5915 18.1624 89.6553 18.6751 89.6553 19.2402ZM88.3838 19.3838V19.2402C88.3838 18.8711 88.3451 18.5247 88.2676 18.2012C88.1901 17.873 88.0693 17.5859 87.9053 17.3398C87.7458 17.0892 87.5407 16.8932 87.29 16.752C87.0394 16.6061 86.7409 16.5332 86.3945 16.5332C86.0755 16.5332 85.7975 16.5879 85.5605 16.6973C85.3281 16.8066 85.1299 16.9548 84.9658 17.1416C84.8018 17.3239 84.6673 17.5335 84.5625 17.7705C84.4622 18.0029 84.387 18.2445 84.3369 18.4951V20.2656C84.4281 20.5846 84.5557 20.8854 84.7197 21.168C84.8838 21.446 85.1025 21.6715 85.376 21.8447C85.6494 22.0133 85.9935 22.0977 86.4082 22.0977C86.75 22.0977 87.0439 22.027 87.29 21.8857C87.5407 21.7399 87.7458 21.5417 87.9053 21.291C88.0693 21.0404 88.1901 20.7533 88.2676 20.4297C88.3451 20.1016 88.3838 19.7529 88.3838 19.3838ZM90.9336 19.3838V19.2266C90.9336 18.6934 91.0111 18.1989 91.166 17.7432C91.321 17.2829 91.5443 16.8841 91.8359 16.5469C92.1276 16.2051 92.4808 15.9408 92.8955 15.7539C93.3102 15.5625 93.7751 15.4668 94.29 15.4668C94.8096 15.4668 95.2767 15.5625 95.6914 15.7539C96.1107 15.9408 96.4661 16.2051 96.7578 16.5469C97.054 16.8841 97.2796 17.2829 97.4346 17.7432C97.5895 18.1989 97.667 18.6934 97.667 19.2266V19.3838C97.667 19.917 97.5895 20.4115 97.4346 20.8672C97.2796 21.3229 97.054 21.7217 96.7578 22.0635C96.4661 22.4007 96.113 22.665 95.6982 22.8564C95.2881 23.0433 94.8232 23.1367 94.3037 23.1367C93.7842 23.1367 93.3171 23.0433 92.9023 22.8564C92.4876 22.665 92.1322 22.4007 91.8359 22.0635C91.5443 21.7217 91.321 21.3229 91.166 20.8672C91.0111 20.4115 90.9336 19.917 90.9336 19.3838ZM92.1982 19.2266V19.3838C92.1982 19.7529 92.2415 20.1016 92.3281 20.4297C92.4147 20.7533 92.5446 21.0404 92.7178 21.291C92.8955 21.5417 93.1165 21.7399 93.3809 21.8857C93.6452 22.027 93.9528 22.0977 94.3037 22.0977C94.6501 22.0977 94.9531 22.027 95.2129 21.8857C95.4772 21.7399 95.696 21.5417 95.8691 21.291C96.0423 21.0404 96.1722 20.7533 96.2588 20.4297C96.3499 20.1016 96.3955 19.7529 96.3955 19.3838V19.2266C96.3955 18.862 96.3499 18.5179 96.2588 18.1943C96.1722 17.8662 96.04 17.5768 95.8623 17.3262C95.6891 17.071 95.4704 16.8704 95.2061 16.7246C94.9463 16.5788 94.641 16.5059 94.29 16.5059C93.9437 16.5059 93.6383 16.5788 93.374 16.7246C93.1143 16.8704 92.8955 17.071 92.7178 17.3262C92.5446 17.5768 92.4147 17.8662 92.3281 18.1943C92.2415 18.5179 92.1982 18.862 92.1982 19.2266ZM100.518 16.7656V23H99.2529V15.6035H100.483L100.518 16.7656ZM102.828 15.5625L102.821 16.7383C102.716 16.7155 102.616 16.7018 102.521 16.6973C102.429 16.6882 102.325 16.6836 102.206 16.6836C101.914 16.6836 101.657 16.7292 101.434 16.8203C101.21 16.9115 101.021 17.0391 100.866 17.2031C100.711 17.3672 100.588 17.5632 100.497 17.791C100.41 18.0143 100.354 18.2604 100.326 18.5293L99.9707 18.7344C99.9707 18.2878 100.014 17.8685 100.101 17.4766C100.192 17.0846 100.331 16.7383 100.518 16.4375C100.704 16.1322 100.941 15.8952 101.229 15.7266C101.52 15.5534 101.867 15.4668 102.268 15.4668C102.359 15.4668 102.464 15.4782 102.582 15.501C102.701 15.5192 102.783 15.5397 102.828 15.5625ZM107.436 15.6035V16.5742H103.437V15.6035H107.436ZM104.79 13.8057H106.055V21.168C106.055 21.4186 106.093 21.6077 106.171 21.7354C106.248 21.863 106.349 21.9473 106.472 21.9883C106.595 22.0293 106.727 22.0498 106.868 22.0498C106.973 22.0498 107.082 22.0407 107.196 22.0225C107.315 21.9997 107.404 21.9814 107.463 21.9678L107.47 23C107.369 23.0319 107.237 23.0615 107.073 23.0889C106.914 23.1208 106.72 23.1367 106.492 23.1367C106.182 23.1367 105.897 23.0752 105.638 22.9521C105.378 22.8291 105.171 22.624 105.016 22.3369C104.865 22.0452 104.79 21.6533 104.79 21.1611V13.8057ZM114.265 21.6875L116.165 15.6035H116.999L116.835 16.8135L114.9 23H114.087L114.265 21.6875ZM112.986 15.6035L114.606 21.7559L114.723 23H113.868L111.722 15.6035H112.986ZM118.817 21.708L120.362 15.6035H121.62L119.474 23H118.626L118.817 21.708ZM117.184 15.6035L119.043 21.585L119.255 23H118.448L116.459 16.7998L116.295 15.6035H117.184ZM124.293 15.6035V23H123.021V15.6035H124.293ZM122.926 13.6416C122.926 13.4365 122.987 13.2633 123.11 13.1221C123.238 12.9808 123.425 12.9102 123.671 12.9102C123.912 12.9102 124.097 12.9808 124.225 13.1221C124.357 13.2633 124.423 13.4365 124.423 13.6416C124.423 13.8376 124.357 14.0062 124.225 14.1475C124.097 14.2842 123.912 14.3525 123.671 14.3525C123.425 14.3525 123.238 14.2842 123.11 14.1475C122.987 14.0062 122.926 13.8376 122.926 13.6416ZM127.697 12.5V23H126.426V12.5H127.697ZM131.102 12.5V23H129.83V12.5H131.102ZM138.683 22.2344L140.74 15.6035H142.094L139.127 24.1416C139.059 24.3239 138.967 24.5199 138.854 24.7295C138.744 24.9437 138.603 25.1465 138.43 25.3379C138.257 25.5293 138.047 25.6842 137.801 25.8027C137.559 25.9258 137.27 25.9873 136.933 25.9873C136.832 25.9873 136.705 25.9736 136.55 25.9463C136.395 25.9189 136.285 25.8962 136.222 25.8779L136.215 24.8525C136.251 24.8571 136.308 24.8617 136.386 24.8662C136.468 24.8753 136.525 24.8799 136.557 24.8799C136.844 24.8799 137.088 24.8411 137.288 24.7637C137.489 24.6908 137.657 24.5654 137.794 24.3877C137.935 24.2145 138.056 23.9753 138.156 23.6699L138.683 22.2344ZM137.172 15.6035L139.093 21.3457L139.421 22.6787L138.512 23.1436L135.791 15.6035H137.172ZM142.791 19.3838V19.2266C142.791 18.6934 142.868 18.1989 143.023 17.7432C143.178 17.2829 143.402 16.8841 143.693 16.5469C143.985 16.2051 144.338 15.9408 144.753 15.7539C145.168 15.5625 145.632 15.4668 146.147 15.4668C146.667 15.4668 147.134 15.5625 147.549 15.7539C147.968 15.9408 148.324 16.2051 148.615 16.5469C148.911 16.8841 149.137 17.2829 149.292 17.7432C149.447 18.1989 149.524 18.6934 149.524 19.2266V19.3838C149.524 19.917 149.447 20.4115 149.292 20.8672C149.137 21.3229 148.911 21.7217 148.615 22.0635C148.324 22.4007 147.97 22.665 147.556 22.8564C147.146 23.0433 146.681 23.1367 146.161 23.1367C145.642 23.1367 145.174 23.0433 144.76 22.8564C144.345 22.665 143.99 22.4007 143.693 22.0635C143.402 21.7217 143.178 21.3229 143.023 20.8672C142.868 20.4115 142.791 19.917 142.791 19.3838ZM144.056 19.2266V19.3838C144.056 19.7529 144.099 20.1016 144.186 20.4297C144.272 20.7533 144.402 21.0404 144.575 21.291C144.753 21.5417 144.974 21.7399 145.238 21.8857C145.503 22.027 145.81 22.0977 146.161 22.0977C146.507 22.0977 146.811 22.027 147.07 21.8857C147.335 21.7399 147.553 21.5417 147.727 21.291C147.9 21.0404 148.03 20.7533 148.116 20.4297C148.207 20.1016 148.253 19.7529 148.253 19.3838V19.2266C148.253 18.862 148.207 18.5179 148.116 18.1943C148.03 17.8662 147.897 17.5768 147.72 17.3262C147.547 17.071 147.328 16.8704 147.063 16.7246C146.804 16.5788 146.498 16.5059 146.147 16.5059C145.801 16.5059 145.496 16.5788 145.231 16.7246C144.972 16.8704 144.753 17.071 144.575 17.3262C144.402 17.5768 144.272 17.8662 144.186 18.1943C144.099 18.5179 144.056 18.862 144.056 19.2266ZM155.636 21.291V15.6035H156.907V23H155.697L155.636 21.291ZM155.875 19.7324L156.401 19.7188C156.401 20.2109 156.349 20.6667 156.244 21.0859C156.144 21.5007 155.98 21.8607 155.752 22.166C155.524 22.4714 155.226 22.7106 154.856 22.8838C154.487 23.0524 154.038 23.1367 153.51 23.1367C153.15 23.1367 152.819 23.0843 152.519 22.9795C152.222 22.8747 151.967 22.7129 151.753 22.4941C151.539 22.2754 151.372 21.9906 151.254 21.6396C151.14 21.2887 151.083 20.8672 151.083 20.375V15.6035H152.348V20.3887C152.348 20.7214 152.384 20.9971 152.457 21.2158C152.535 21.43 152.637 21.6009 152.765 21.7285C152.897 21.8516 153.043 21.9382 153.202 21.9883C153.366 22.0384 153.535 22.0635 153.708 22.0635C154.246 22.0635 154.672 21.9609 154.986 21.7559C155.301 21.5462 155.526 21.266 155.663 20.915C155.804 20.5596 155.875 20.1654 155.875 19.7324ZM166.833 21.291V15.6035H168.104V23H166.895L166.833 21.291ZM167.072 19.7324L167.599 19.7188C167.599 20.2109 167.546 20.6667 167.441 21.0859C167.341 21.5007 167.177 21.8607 166.949 22.166C166.721 22.4714 166.423 22.7106 166.054 22.8838C165.685 23.0524 165.236 23.1367 164.707 23.1367C164.347 23.1367 164.017 23.0843 163.716 22.9795C163.42 22.8747 163.164 22.7129 162.95 22.4941C162.736 22.2754 162.57 21.9906 162.451 21.6396C162.337 21.2887 162.28 20.8672 162.28 20.375V15.6035H163.545V20.3887C163.545 20.7214 163.581 20.9971 163.654 21.2158C163.732 21.43 163.834 21.6009 163.962 21.7285C164.094 21.8516 164.24 21.9382 164.399 21.9883C164.563 22.0384 164.732 22.0635 164.905 22.0635C165.443 22.0635 165.869 21.9609 166.184 21.7559C166.498 21.5462 166.724 21.266 166.86 20.915C167.002 20.5596 167.072 20.1654 167.072 19.7324ZM174.339 21.0381C174.339 20.8558 174.298 20.6872 174.216 20.5322C174.138 20.3727 173.977 20.2292 173.73 20.1016C173.489 19.9694 173.124 19.8555 172.637 19.7598C172.227 19.6732 171.855 19.5706 171.522 19.4521C171.194 19.3337 170.914 19.1901 170.682 19.0215C170.454 18.8529 170.278 18.6546 170.155 18.4268C170.032 18.1989 169.971 17.9323 169.971 17.627C169.971 17.3353 170.035 17.0596 170.162 16.7998C170.294 16.54 170.479 16.3099 170.716 16.1094C170.957 15.9089 171.247 15.7516 171.584 15.6377C171.921 15.5238 172.297 15.4668 172.712 15.4668C173.304 15.4668 173.81 15.5716 174.229 15.7812C174.649 15.9909 174.97 16.2712 175.193 16.6221C175.417 16.9684 175.528 17.3535 175.528 17.7773H174.264C174.264 17.5723 174.202 17.374 174.079 17.1826C173.961 16.9867 173.785 16.8249 173.553 16.6973C173.325 16.5697 173.045 16.5059 172.712 16.5059C172.361 16.5059 172.076 16.5605 171.857 16.6699C171.643 16.7747 171.486 16.9092 171.386 17.0732C171.29 17.2373 171.242 17.4105 171.242 17.5928C171.242 17.7295 171.265 17.8525 171.311 17.9619C171.361 18.0667 171.447 18.1647 171.57 18.2559C171.693 18.3424 171.867 18.4245 172.09 18.502C172.313 18.5794 172.598 18.6569 172.944 18.7344C173.55 18.8711 174.049 19.0352 174.441 19.2266C174.833 19.418 175.125 19.6527 175.316 19.9307C175.508 20.2087 175.604 20.5459 175.604 20.9424C175.604 21.266 175.535 21.5622 175.398 21.8311C175.266 22.0999 175.073 22.3324 174.817 22.5283C174.567 22.7197 174.266 22.8701 173.915 22.9795C173.569 23.0843 173.179 23.1367 172.746 23.1367C172.094 23.1367 171.543 23.0205 171.092 22.7881C170.641 22.5557 170.299 22.2549 170.066 21.8857C169.834 21.5166 169.718 21.127 169.718 20.7168H170.989C171.007 21.0632 171.108 21.3389 171.29 21.5439C171.472 21.7445 171.696 21.888 171.96 21.9746C172.224 22.0566 172.486 22.0977 172.746 22.0977C173.092 22.0977 173.382 22.0521 173.614 21.9609C173.851 21.8698 174.031 21.7445 174.154 21.585C174.277 21.4255 174.339 21.2432 174.339 21.0381ZM180.334 23.1367C179.819 23.1367 179.352 23.0501 178.933 22.877C178.518 22.6992 178.16 22.4508 177.859 22.1318C177.563 21.8128 177.335 21.4346 177.176 20.9971C177.016 20.5596 176.937 20.0811 176.937 19.5615V19.2744C176.937 18.6729 177.025 18.1374 177.203 17.668C177.381 17.194 177.622 16.793 177.928 16.4648C178.233 16.1367 178.579 15.8883 178.967 15.7197C179.354 15.5511 179.755 15.4668 180.17 15.4668C180.699 15.4668 181.154 15.5579 181.537 15.7402C181.924 15.9225 182.241 16.1777 182.487 16.5059C182.733 16.8294 182.916 17.2122 183.034 17.6543C183.153 18.0918 183.212 18.5703 183.212 19.0898V19.6572H177.688V18.625H181.947V18.5293C181.929 18.2012 181.861 17.8822 181.742 17.5723C181.628 17.2624 181.446 17.0072 181.195 16.8066C180.945 16.6061 180.603 16.5059 180.17 16.5059C179.883 16.5059 179.618 16.5674 179.377 16.6904C179.135 16.8089 178.928 16.9867 178.755 17.2236C178.582 17.4606 178.447 17.75 178.352 18.0918C178.256 18.4336 178.208 18.8278 178.208 19.2744V19.5615C178.208 19.9124 178.256 20.2428 178.352 20.5527C178.452 20.8581 178.595 21.127 178.782 21.3594C178.974 21.5918 179.204 21.7741 179.473 21.9062C179.746 22.0384 180.056 22.1045 180.402 22.1045C180.849 22.1045 181.227 22.0133 181.537 21.8311C181.847 21.6488 182.118 21.4049 182.351 21.0996L183.116 21.708C182.957 21.9495 182.754 22.1797 182.508 22.3984C182.262 22.6172 181.959 22.7949 181.599 22.9316C181.243 23.0684 180.822 23.1367 180.334 23.1367ZM187.437 20.1973H186.165C186.17 19.7598 186.208 19.402 186.281 19.124C186.359 18.8415 186.484 18.584 186.657 18.3516C186.83 18.1191 187.061 17.8548 187.348 17.5586C187.557 17.3444 187.749 17.1439 187.922 16.957C188.1 16.7656 188.243 16.5605 188.353 16.3418C188.462 16.1185 188.517 15.8519 188.517 15.542C188.517 15.2275 188.46 14.9564 188.346 14.7285C188.236 14.5007 188.072 14.3252 187.854 14.2021C187.639 14.0791 187.373 14.0176 187.054 14.0176C186.789 14.0176 186.539 14.0654 186.302 14.1611C186.065 14.2568 185.873 14.4049 185.728 14.6055C185.582 14.8014 185.507 15.0589 185.502 15.3779H184.237C184.246 14.863 184.374 14.4209 184.62 14.0518C184.871 13.6826 185.208 13.4001 185.632 13.2041C186.056 13.0081 186.53 12.9102 187.054 12.9102C187.632 12.9102 188.125 13.015 188.53 13.2246C188.94 13.4342 189.253 13.735 189.467 14.127C189.681 14.5143 189.788 14.9746 189.788 15.5078C189.788 15.918 189.704 16.2962 189.535 16.6426C189.371 16.9844 189.159 17.3057 188.899 17.6064C188.64 17.9072 188.364 18.1943 188.072 18.4678C187.822 18.7002 187.653 18.9622 187.566 19.2539C187.48 19.5456 187.437 19.86 187.437 20.1973ZM186.11 22.3643C186.11 22.1592 186.174 21.986 186.302 21.8447C186.429 21.7035 186.614 21.6328 186.855 21.6328C187.102 21.6328 187.288 21.7035 187.416 21.8447C187.544 21.986 187.607 22.1592 187.607 22.3643C187.607 22.5602 187.544 22.7288 187.416 22.8701C187.288 23.0114 187.102 23.082 186.855 23.082C186.614 23.082 186.429 23.0114 186.302 22.8701C186.174 22.7288 186.11 22.5602 186.11 22.3643Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M24 32.5C19.86 32.5 16.5 35.86 16.5 40C16.5 44.14 19.86 47.5 24 47.5C28.14 47.5 31.5 44.14 31.5 40C31.5 35.86 28.14 32.5 24 32.5ZM24 46C20.685 46 18 43.315 18 40C18 36.685 20.685 34 24 34C27.315 34 30 36.685 30 40C30 43.315 27.315 46 24 46Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M40.4814 40.8755H38.0122V39.8789H40.4814C40.9596 39.8789 41.3468 39.8027 41.6431 39.6504C41.9393 39.498 42.1551 39.2865 42.2905 39.0156C42.4302 38.7448 42.5 38.4359 42.5 38.0889C42.5 37.7715 42.4302 37.4731 42.2905 37.1938C42.1551 36.9146 41.9393 36.6903 41.6431 36.521C41.3468 36.3475 40.9596 36.2607 40.4814 36.2607H38.2979V44.5H37.0728V35.2578H40.4814C41.1797 35.2578 41.77 35.3784 42.2524 35.6196C42.7349 35.8608 43.1009 36.1951 43.3506 36.6226C43.6003 37.0457 43.7251 37.5303 43.7251 38.0762C43.7251 38.6686 43.6003 39.1743 43.3506 39.5933C43.1009 40.0122 42.7349 40.3317 42.2524 40.5518C41.77 40.7676 41.1797 40.8755 40.4814 40.8755ZM49.2983 42.9131V37.6318H50.479V44.5H49.3555L49.2983 42.9131ZM49.5205 41.4658L50.0093 41.4531C50.0093 41.9102 49.9606 42.3333 49.8633 42.7227C49.7702 43.1077 49.6178 43.4421 49.4062 43.7256C49.1947 44.0091 48.9175 44.2313 48.5747 44.3921C48.2319 44.5487 47.8151 44.627 47.3242 44.627C46.9899 44.627 46.6831 44.5783 46.4038 44.481C46.1287 44.3836 45.8918 44.2334 45.6929 44.0303C45.494 43.8271 45.3395 43.5627 45.2295 43.2368C45.1237 42.911 45.0708 42.5195 45.0708 42.0625V37.6318H46.2451V42.0752C46.2451 42.3841 46.279 42.6401 46.3467 42.8433C46.4186 43.0422 46.5138 43.2008 46.6323 43.3193C46.755 43.4336 46.8905 43.514 47.0386 43.5605C47.1909 43.6071 47.3475 43.6304 47.5083 43.6304C48.0076 43.6304 48.4033 43.5352 48.6953 43.3447C48.9873 43.1501 49.1968 42.8898 49.3237 42.564C49.4549 42.2339 49.5205 41.8678 49.5205 41.4658ZM52.2627 34.75H53.4434V43.167L53.3418 44.5H52.2627V34.75ZM58.0835 41.0088V41.1421C58.0835 41.6414 58.0243 42.1048 57.9058 42.5322C57.7873 42.9554 57.6138 43.3236 57.3853 43.6367C57.1567 43.9499 56.8774 44.1932 56.5474 44.3667C56.2173 44.5402 55.8385 44.627 55.4111 44.627C54.9753 44.627 54.5923 44.5529 54.2622 44.4048C53.9364 44.2524 53.6613 44.0345 53.437 43.751C53.2127 43.4674 53.0329 43.1247 52.8975 42.7227C52.7663 42.3206 52.6753 41.8678 52.6245 41.3643V40.7803C52.6753 40.2725 52.7663 39.8175 52.8975 39.4155C53.0329 39.0135 53.2127 38.6707 53.437 38.3872C53.6613 38.0994 53.9364 37.8815 54.2622 37.7334C54.5881 37.5811 54.9668 37.5049 55.3984 37.5049C55.8301 37.5049 56.2131 37.5895 56.5474 37.7588C56.8817 37.9238 57.161 38.1608 57.3853 38.4697C57.6138 38.7786 57.7873 39.1489 57.9058 39.5806C58.0243 40.008 58.0835 40.484 58.0835 41.0088ZM56.9028 41.1421V41.0088C56.9028 40.666 56.8711 40.3444 56.8076 40.0439C56.7441 39.7393 56.6426 39.4727 56.5029 39.2441C56.3633 39.0114 56.1792 38.8294 55.9507 38.6982C55.7222 38.5628 55.4408 38.4951 55.1064 38.4951C54.8102 38.4951 54.5521 38.5459 54.332 38.6475C54.1162 38.749 53.9321 38.8866 53.7798 39.0601C53.6274 39.2293 53.5026 39.424 53.4053 39.644C53.3122 39.8599 53.2424 40.0841 53.1958 40.3169V41.8467C53.2635 42.1429 53.3735 42.4285 53.5259 42.7036C53.6825 42.9744 53.8898 43.1966 54.1479 43.3701C54.4103 43.5436 54.734 43.6304 55.1191 43.6304C55.4365 43.6304 55.7074 43.5669 55.9316 43.4399C56.1602 43.3088 56.3442 43.1289 56.4839 42.9004C56.6278 42.6719 56.7336 42.4074 56.8013 42.1069C56.869 41.8065 56.9028 41.4849 56.9028 41.1421ZM60.8447 34.75V44.5H59.6641V34.75H60.8447ZM64.0059 37.6318V44.5H62.8252V37.6318H64.0059ZM62.7363 35.8101C62.7363 35.6196 62.7935 35.4588 62.9077 35.3276C63.0262 35.1965 63.1997 35.1309 63.4282 35.1309C63.6525 35.1309 63.8239 35.1965 63.9424 35.3276C64.0651 35.4588 64.1265 35.6196 64.1265 35.8101C64.1265 35.992 64.0651 36.1486 63.9424 36.2798C63.8239 36.4067 63.6525 36.4702 63.4282 36.4702C63.1997 36.4702 63.0262 36.4067 62.9077 36.2798C62.7935 36.1486 62.7363 35.992 62.7363 35.8101ZM68.6396 43.6621C68.9189 43.6621 69.1771 43.605 69.4141 43.4907C69.651 43.3765 69.8457 43.2199 69.998 43.021C70.1504 42.8179 70.2371 42.5872 70.2583 42.3291H71.3755C71.3543 42.7354 71.2168 43.1141 70.9629 43.4653C70.7132 43.8123 70.3853 44.0938 69.979 44.3096C69.5728 44.5212 69.1263 44.627 68.6396 44.627C68.1234 44.627 67.6727 44.536 67.2876 44.354C66.9067 44.172 66.5894 43.9224 66.3354 43.605C66.0858 43.2876 65.8975 42.9237 65.7705 42.5132C65.6478 42.0985 65.5864 41.6605 65.5864 41.1992V40.9326C65.5864 40.4714 65.6478 40.0355 65.7705 39.625C65.8975 39.2103 66.0858 38.8442 66.3354 38.5269C66.5894 38.2095 66.9067 37.9598 67.2876 37.7778C67.6727 37.5959 68.1234 37.5049 68.6396 37.5049C69.1771 37.5049 69.6468 37.6149 70.0488 37.835C70.4508 38.0508 70.7661 38.347 70.9946 38.7236C71.2274 39.096 71.3543 39.5192 71.3755 39.9932H70.2583C70.2371 39.7096 70.1567 39.4536 70.0171 39.2251C69.8817 38.9966 69.6955 38.8146 69.4585 38.6792C69.2257 38.5396 68.9528 38.4697 68.6396 38.4697C68.2799 38.4697 67.9774 38.5417 67.7319 38.6855C67.4907 38.8252 67.2982 39.0156 67.1543 39.2568C67.0146 39.4938 66.9131 39.7583 66.8496 40.0503C66.7904 40.3381 66.7607 40.6322 66.7607 40.9326V41.1992C66.7607 41.4997 66.7904 41.7959 66.8496 42.0879C66.9089 42.3799 67.0083 42.6444 67.1479 42.8813C67.2918 43.1183 67.4844 43.3088 67.7256 43.4526C67.971 43.5923 68.2757 43.6621 68.6396 43.6621Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M24 59.25C21.93 59.25 20.25 60.93 20.25 63C20.25 65.07 21.93 66.75 24 66.75C26.07 66.75 27.75 65.07 27.75 63C27.75 60.93 26.07 59.25 24 59.25ZM24 55.5C19.86 55.5 16.5 58.86 16.5 63C16.5 67.14 19.86 70.5 24 70.5C28.14 70.5 31.5 67.14 31.5 63C31.5 58.86 28.14 55.5 24 55.5ZM24 69C20.685 69 18 66.315 18 63C18 59.685 20.685 57 24 57C27.315 57 30 59.685 30 63C30 66.315 27.315 69 24 69Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M42.6523 64.561H43.8711C43.8076 65.145 43.6405 65.6676 43.3696 66.1289C43.0988 66.5902 42.7158 66.9562 42.2207 67.2271C41.7256 67.4937 41.1077 67.627 40.3672 67.627C39.8255 67.627 39.3325 67.5254 38.8882 67.3223C38.4481 67.1191 38.0693 66.8314 37.752 66.459C37.4346 66.0824 37.1891 65.6317 37.0156 65.1069C36.8464 64.578 36.7617 63.9897 36.7617 63.3423V62.4219C36.7617 61.7744 36.8464 61.1883 37.0156 60.6636C37.1891 60.1346 37.4367 59.6818 37.7583 59.3052C38.0841 58.9285 38.4756 58.6387 38.9326 58.4355C39.3896 58.2324 39.9038 58.1309 40.4751 58.1309C41.1733 58.1309 41.7637 58.262 42.2461 58.5244C42.7285 58.7868 43.103 59.1507 43.3696 59.6162C43.6405 60.0775 43.8076 60.6128 43.8711 61.2222H42.6523C42.5931 60.7905 42.4831 60.4202 42.3223 60.1113C42.1615 59.7982 41.9329 59.557 41.6367 59.3877C41.3405 59.2184 40.9533 59.1338 40.4751 59.1338C40.0646 59.1338 39.7028 59.2121 39.3896 59.3687C39.0807 59.5252 38.8205 59.7474 38.6089 60.0352C38.4015 60.3229 38.245 60.6678 38.1392 61.0698C38.0334 61.4718 37.9805 61.9183 37.9805 62.4092V63.3423C37.9805 63.7951 38.027 64.2204 38.1201 64.6182C38.2174 65.016 38.3634 65.3651 38.5581 65.6655C38.7528 65.966 39.0003 66.203 39.3008 66.3765C39.6012 66.5457 39.9567 66.6304 40.3672 66.6304C40.8877 66.6304 41.3024 66.5479 41.6113 66.3828C41.9202 66.2178 42.153 65.9808 42.3096 65.6719C42.4704 65.363 42.5846 64.9927 42.6523 64.561ZM49.4126 66.3257V62.79C49.4126 62.5192 49.3576 62.2843 49.2476 62.0854C49.1418 61.8823 48.981 61.7257 48.7651 61.6157C48.5493 61.5057 48.2827 61.4507 47.9653 61.4507C47.6691 61.4507 47.4089 61.5015 47.1846 61.603C46.9645 61.7046 46.791 61.8379 46.6641 62.0029C46.5413 62.168 46.48 62.3457 46.48 62.5361H45.3057C45.3057 62.2907 45.3691 62.0474 45.4961 61.8062C45.623 61.5649 45.805 61.347 46.042 61.1523C46.2832 60.9535 46.571 60.7969 46.9053 60.6826C47.2438 60.5641 47.6204 60.5049 48.0352 60.5049C48.5345 60.5049 48.9746 60.5895 49.3555 60.7588C49.7406 60.9281 50.041 61.1841 50.2568 61.5269C50.4769 61.8654 50.5869 62.2907 50.5869 62.8027V66.002C50.5869 66.2305 50.606 66.4738 50.644 66.7319C50.6864 66.9901 50.7477 67.2122 50.8281 67.3984V67.5H49.603C49.5438 67.3646 49.4972 67.1847 49.4634 66.9604C49.4295 66.7319 49.4126 66.5203 49.4126 66.3257ZM49.6157 63.3359L49.6284 64.1611H48.4414C48.1071 64.1611 47.8088 64.1886 47.5464 64.2437C47.284 64.2944 47.064 64.3727 46.8862 64.4785C46.7085 64.5843 46.5731 64.7176 46.48 64.8784C46.3869 65.035 46.3403 65.2191 46.3403 65.4307C46.3403 65.6465 46.389 65.8433 46.4863 66.021C46.5837 66.1987 46.7297 66.3405 46.9243 66.4463C47.1232 66.5479 47.3665 66.5986 47.6543 66.5986C48.014 66.5986 48.3314 66.5225 48.6064 66.3701C48.8815 66.2178 49.0994 66.0316 49.2603 65.8115C49.4253 65.5915 49.5142 65.3778 49.5269 65.1704L50.0283 65.7354C49.9987 65.9131 49.9183 66.1099 49.7871 66.3257C49.6559 66.5415 49.4803 66.7489 49.2603 66.9478C49.0444 67.1424 48.7863 67.3053 48.4858 67.4365C48.1896 67.5635 47.8553 67.627 47.4829 67.627C47.0174 67.627 46.609 67.536 46.2578 67.354C45.9108 67.172 45.64 66.9287 45.4453 66.624C45.2549 66.3151 45.1597 65.9702 45.1597 65.5894C45.1597 65.2212 45.2316 64.8975 45.3755 64.6182C45.5194 64.3346 45.7267 64.0998 45.9976 63.9136C46.2684 63.7231 46.5942 63.5793 46.9751 63.4819C47.356 63.3846 47.7812 63.3359 48.251 63.3359H49.6157ZM53.6084 61.7109V67.5H52.4341V60.6318H53.5767L53.6084 61.7109ZM55.7539 60.5938L55.7476 61.6855C55.6502 61.6644 55.5571 61.6517 55.4683 61.6475C55.3836 61.639 55.2863 61.6348 55.1763 61.6348C54.9054 61.6348 54.6663 61.6771 54.459 61.7617C54.2516 61.8464 54.076 61.9648 53.9321 62.1172C53.7882 62.2695 53.674 62.4515 53.5894 62.6631C53.509 62.8704 53.4561 63.099 53.4307 63.3486L53.1006 63.5391C53.1006 63.1243 53.1408 62.735 53.2212 62.3711C53.3058 62.0072 53.4349 61.6855 53.6084 61.4062C53.7819 61.1227 54.002 60.9027 54.2686 60.7461C54.5394 60.5853 54.861 60.5049 55.2334 60.5049C55.318 60.5049 55.4154 60.5155 55.5254 60.5366C55.6354 60.5535 55.7116 60.5726 55.7539 60.5938Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M49.8262 86.0967H47.167V85.0234H49.8262C50.3411 85.0234 50.7581 84.9414 51.0771 84.7773C51.3962 84.6133 51.6286 84.3854 51.7744 84.0938C51.9248 83.8021 52 83.4694 52 83.0957C52 82.7539 51.9248 82.4326 51.7744 82.1318C51.6286 81.8311 51.3962 81.5895 51.0771 81.4072C50.7581 81.2204 50.3411 81.127 49.8262 81.127H47.4746V90H46.1553V80.0469H49.8262C50.5781 80.0469 51.2139 80.1768 51.7334 80.4365C52.2529 80.6963 52.6471 81.0563 52.916 81.5166C53.1849 81.9723 53.3193 82.4941 53.3193 83.082C53.3193 83.7201 53.1849 84.2646 52.916 84.7158C52.6471 85.167 52.2529 85.5111 51.7334 85.748C51.2139 85.9805 50.5781 86.0967 49.8262 86.0967ZM59.0752 88.7354V84.9277C59.0752 84.6361 59.016 84.3831 58.8975 84.1689C58.7835 83.9502 58.6104 83.7816 58.3779 83.6631C58.1455 83.5446 57.8584 83.4854 57.5166 83.4854C57.1976 83.4854 56.9173 83.54 56.6758 83.6494C56.4388 83.7588 56.252 83.9023 56.1152 84.0801C55.9831 84.2578 55.917 84.4492 55.917 84.6543H54.6523C54.6523 84.39 54.7207 84.1279 54.8574 83.8682C54.9941 83.6084 55.1901 83.3737 55.4453 83.1641C55.7051 82.9499 56.015 82.7812 56.375 82.6582C56.7396 82.5306 57.1452 82.4668 57.5918 82.4668C58.1296 82.4668 58.6035 82.5579 59.0137 82.7402C59.4284 82.9225 59.752 83.1982 59.9844 83.5674C60.2214 83.932 60.3398 84.39 60.3398 84.9414V88.3867C60.3398 88.6328 60.3604 88.8949 60.4014 89.1729C60.4469 89.4508 60.513 89.6901 60.5996 89.8906V90H59.2803C59.2165 89.8542 59.1663 89.6605 59.1299 89.4189C59.0934 89.1729 59.0752 88.945 59.0752 88.7354ZM59.2939 85.5156L59.3076 86.4043H58.0293C57.6693 86.4043 57.348 86.4339 57.0654 86.4932C56.7829 86.5479 56.5459 86.6322 56.3545 86.7461C56.1631 86.86 56.0173 87.0036 55.917 87.1768C55.8167 87.3454 55.7666 87.5436 55.7666 87.7715C55.7666 88.0039 55.819 88.2158 55.9238 88.4072C56.0286 88.5986 56.1859 88.7513 56.3955 88.8652C56.6097 88.9746 56.8717 89.0293 57.1816 89.0293C57.569 89.0293 57.9108 88.9473 58.207 88.7832C58.5033 88.6191 58.738 88.4186 58.9111 88.1816C59.0889 87.9447 59.1846 87.7145 59.1982 87.4912L59.7383 88.0996C59.7064 88.291 59.6198 88.5029 59.4785 88.7354C59.3372 88.9678 59.1481 89.1911 58.9111 89.4053C58.6787 89.6149 58.4007 89.7904 58.0771 89.9316C57.7581 90.0684 57.3981 90.1367 56.9971 90.1367C56.4958 90.1367 56.056 90.0387 55.6777 89.8428C55.304 89.6468 55.0124 89.3848 54.8027 89.0566C54.5977 88.724 54.4951 88.3525 54.4951 87.9424C54.4951 87.5459 54.5726 87.1973 54.7275 86.8965C54.8825 86.5911 55.1058 86.3382 55.3975 86.1377C55.6891 85.9326 56.04 85.7777 56.4502 85.6729C56.8604 85.568 57.3184 85.5156 57.8242 85.5156H59.2939ZM63.5938 83.7656V90H62.3291V82.6035H63.5596L63.5938 83.7656ZM65.9043 82.5625L65.8975 83.7383C65.7926 83.7155 65.6924 83.7018 65.5967 83.6973C65.5055 83.6882 65.4007 83.6836 65.2822 83.6836C64.9906 83.6836 64.7331 83.7292 64.5098 83.8203C64.2865 83.9115 64.0973 84.0391 63.9424 84.2031C63.7874 84.3672 63.6644 84.5632 63.5732 84.791C63.4867 85.0143 63.4297 85.2604 63.4023 85.5293L63.0469 85.7344C63.0469 85.2878 63.0902 84.8685 63.1768 84.4766C63.2679 84.0846 63.4069 83.7383 63.5938 83.4375C63.7806 83.1322 64.0176 82.8952 64.3047 82.7266C64.5964 82.5534 64.9427 82.4668 65.3438 82.4668C65.4349 82.4668 65.5397 82.4782 65.6582 82.501C65.7767 82.5192 65.8587 82.5397 65.9043 82.5625ZM68.3447 79.5V90H67.0732V79.5H68.3447ZM72.8633 82.6035L69.6367 86.0557L67.832 87.9287L67.7295 86.582L69.0215 85.0371L71.3184 82.6035H72.8633ZM71.708 90L69.0693 86.4727L69.7256 85.3447L73.1982 90H71.708ZM75.543 82.6035V90H74.2715V82.6035H75.543ZM74.1758 80.6416C74.1758 80.4365 74.2373 80.2633 74.3604 80.1221C74.488 79.9808 74.6748 79.9102 74.9209 79.9102C75.1624 79.9102 75.347 79.9808 75.4746 80.1221C75.6068 80.2633 75.6729 80.4365 75.6729 80.6416C75.6729 80.8376 75.6068 81.0062 75.4746 81.1475C75.347 81.2842 75.1624 81.3525 74.9209 81.3525C74.6748 81.3525 74.488 81.2842 74.3604 81.1475C74.2373 81.0062 74.1758 80.8376 74.1758 80.6416ZM78.8379 84.1826V90H77.5732V82.6035H78.7695L78.8379 84.1826ZM78.5371 86.0215L78.0107 86.001C78.0153 85.4951 78.0905 85.028 78.2363 84.5996C78.3822 84.1667 78.5872 83.7907 78.8516 83.4717C79.1159 83.1527 79.4303 82.9066 79.7949 82.7334C80.1641 82.5557 80.5719 82.4668 81.0186 82.4668C81.3831 82.4668 81.7113 82.5169 82.0029 82.6172C82.2946 82.7129 82.543 82.8678 82.748 83.082C82.9577 83.2962 83.1172 83.5742 83.2266 83.916C83.3359 84.2533 83.3906 84.6657 83.3906 85.1533V90H82.1191V85.1396C82.1191 84.7523 82.0622 84.4424 81.9482 84.21C81.8343 83.973 81.668 83.8021 81.4492 83.6973C81.2305 83.5879 80.9616 83.5332 80.6426 83.5332C80.3281 83.5332 80.041 83.5993 79.7812 83.7314C79.526 83.8636 79.305 84.0459 79.1182 84.2783C78.9359 84.5107 78.7923 84.7773 78.6875 85.0781C78.5872 85.3743 78.5371 85.6888 78.5371 86.0215ZM90.1035 82.6035H91.252V89.8428C91.252 90.4945 91.1198 91.0505 90.8555 91.5107C90.5911 91.971 90.222 92.3197 89.748 92.5566C89.2786 92.7982 88.7363 92.9189 88.1211 92.9189C87.8659 92.9189 87.5651 92.8779 87.2188 92.7959C86.877 92.7184 86.5397 92.584 86.207 92.3926C85.8789 92.2057 85.6032 91.9528 85.3799 91.6338L86.043 90.8818C86.3529 91.2555 86.6764 91.5153 87.0137 91.6611C87.3555 91.807 87.6927 91.8799 88.0254 91.8799C88.4264 91.8799 88.7728 91.8047 89.0645 91.6543C89.3561 91.5039 89.5817 91.2806 89.7412 90.9844C89.9053 90.6927 89.9873 90.3327 89.9873 89.9043V84.2305L90.1035 82.6035ZM85.0107 86.3838V86.2402C85.0107 85.6751 85.0768 85.1624 85.209 84.7021C85.3457 84.2373 85.5394 83.8385 85.79 83.5059C86.0452 83.1732 86.3529 82.918 86.7129 82.7402C87.0729 82.5579 87.4785 82.4668 87.9297 82.4668C88.3945 82.4668 88.8001 82.5488 89.1465 82.7129C89.4974 82.8724 89.7936 83.1071 90.0352 83.417C90.2812 83.7223 90.4749 84.0915 90.6162 84.5244C90.7575 84.9574 90.8555 85.4473 90.9102 85.9941V86.623C90.86 87.1654 90.762 87.653 90.6162 88.0859C90.4749 88.5189 90.2812 88.888 90.0352 89.1934C89.7936 89.4987 89.4974 89.7334 89.1465 89.8975C88.7956 90.057 88.3854 90.1367 87.916 90.1367C87.474 90.1367 87.0729 90.0433 86.7129 89.8564C86.3574 89.6696 86.0521 89.4076 85.7969 89.0703C85.5417 88.7331 85.3457 88.3366 85.209 87.8809C85.0768 87.4206 85.0107 86.9215 85.0107 86.3838ZM86.2754 86.2402V86.3838C86.2754 86.7529 86.3118 87.0993 86.3848 87.4229C86.4622 87.7464 86.5785 88.0312 86.7334 88.2773C86.8929 88.5234 87.0957 88.7171 87.3418 88.8584C87.5879 88.9951 87.8818 89.0635 88.2236 89.0635C88.6429 89.0635 88.9893 88.9746 89.2627 88.7969C89.5361 88.6191 89.7526 88.3844 89.9121 88.0928C90.0762 87.8011 90.2038 87.4844 90.2949 87.1426V85.4951C90.2448 85.2445 90.1673 85.0029 90.0625 84.7705C89.9622 84.5335 89.8301 84.3239 89.666 84.1416C89.5065 83.9548 89.3083 83.8066 89.0713 83.6973C88.8343 83.5879 88.5563 83.5332 88.2373 83.5332C87.891 83.5332 87.5924 83.6061 87.3418 83.752C87.0957 83.8932 86.8929 84.0892 86.7334 84.3398C86.5785 84.5859 86.4622 84.873 86.3848 85.2012C86.3118 85.5247 86.2754 85.8711 86.2754 86.2402ZM97.9102 84.0254V92.8438H96.6387V82.6035H97.8008L97.9102 84.0254ZM102.894 86.2402V86.3838C102.894 86.9215 102.83 87.4206 102.702 87.8809C102.575 88.3366 102.388 88.7331 102.142 89.0703C101.9 89.4076 101.602 89.6696 101.246 89.8564C100.891 90.0433 100.483 90.1367 100.022 90.1367C99.5531 90.1367 99.1383 90.0592 98.7783 89.9043C98.4183 89.7493 98.113 89.5238 97.8623 89.2275C97.6117 88.9313 97.4111 88.5758 97.2607 88.1611C97.1149 87.7464 97.0146 87.2793 96.96 86.7598V85.9941C97.0146 85.4473 97.1172 84.9574 97.2676 84.5244C97.418 84.0915 97.6162 83.7223 97.8623 83.417C98.113 83.1071 98.416 82.8724 98.7715 82.7129C99.127 82.5488 99.5371 82.4668 100.002 82.4668C100.467 82.4668 100.879 82.5579 101.239 82.7402C101.599 82.918 101.902 83.1732 102.148 83.5059C102.395 83.8385 102.579 84.2373 102.702 84.7021C102.83 85.1624 102.894 85.6751 102.894 86.2402ZM101.622 86.3838V86.2402C101.622 85.8711 101.583 85.5247 101.506 85.2012C101.428 84.873 101.308 84.5859 101.144 84.3398C100.984 84.0892 100.779 83.8932 100.528 83.752C100.278 83.6061 99.9792 83.5332 99.6328 83.5332C99.3138 83.5332 99.0358 83.5879 98.7988 83.6973C98.5664 83.8066 98.3682 83.9548 98.2041 84.1416C98.04 84.3239 97.9056 84.5335 97.8008 84.7705C97.7005 85.0029 97.6253 85.2445 97.5752 85.4951V87.2656C97.6663 87.5846 97.7939 87.8854 97.958 88.168C98.1221 88.446 98.3408 88.6715 98.6143 88.8447C98.8877 89.0133 99.2318 89.0977 99.6465 89.0977C99.9883 89.0977 100.282 89.027 100.528 88.8857C100.779 88.7399 100.984 88.5417 101.144 88.291C101.308 88.0404 101.428 87.7533 101.506 87.4297C101.583 87.1016 101.622 86.7529 101.622 86.3838ZM105.881 79.5V90H104.609V79.5H105.881ZM112.272 88.7354V84.9277C112.272 84.6361 112.213 84.3831 112.095 84.1689C111.981 83.9502 111.808 83.7816 111.575 83.6631C111.343 83.5446 111.056 83.4854 110.714 83.4854C110.395 83.4854 110.115 83.54 109.873 83.6494C109.636 83.7588 109.449 83.9023 109.312 84.0801C109.18 84.2578 109.114 84.4492 109.114 84.6543H107.85C107.85 84.39 107.918 84.1279 108.055 83.8682C108.191 83.6084 108.387 83.3737 108.643 83.1641C108.902 82.9499 109.212 82.7812 109.572 82.6582C109.937 82.5306 110.342 82.4668 110.789 82.4668C111.327 82.4668 111.801 82.5579 112.211 82.7402C112.626 82.9225 112.949 83.1982 113.182 83.5674C113.419 83.932 113.537 84.39 113.537 84.9414V88.3867C113.537 88.6328 113.558 88.8949 113.599 89.1729C113.644 89.4508 113.71 89.6901 113.797 89.8906V90H112.478C112.414 89.8542 112.364 89.6605 112.327 89.4189C112.291 89.1729 112.272 88.945 112.272 88.7354ZM112.491 85.5156L112.505 86.4043H111.227C110.867 86.4043 110.545 86.4339 110.263 86.4932C109.98 86.5479 109.743 86.6322 109.552 86.7461C109.36 86.86 109.215 87.0036 109.114 87.1768C109.014 87.3454 108.964 87.5436 108.964 87.7715C108.964 88.0039 109.016 88.2158 109.121 88.4072C109.226 88.5986 109.383 88.7513 109.593 88.8652C109.807 88.9746 110.069 89.0293 110.379 89.0293C110.766 89.0293 111.108 88.9473 111.404 88.7832C111.701 88.6191 111.935 88.4186 112.108 88.1816C112.286 87.9447 112.382 87.7145 112.396 87.4912L112.936 88.0996C112.904 88.291 112.817 88.5029 112.676 88.7354C112.535 88.9678 112.345 89.1911 112.108 89.4053C111.876 89.6149 111.598 89.7904 111.274 89.9316C110.955 90.0684 110.595 90.1367 110.194 90.1367C109.693 90.1367 109.253 90.0387 108.875 89.8428C108.501 89.6468 108.21 89.3848 108 89.0566C107.795 88.724 107.692 88.3525 107.692 87.9424C107.692 87.5459 107.77 87.1973 107.925 86.8965C108.08 86.5911 108.303 86.3382 108.595 86.1377C108.886 85.9326 109.237 85.7777 109.647 85.6729C110.058 85.568 110.516 85.5156 111.021 85.5156H112.491ZM118.486 89.0977C118.787 89.0977 119.065 89.0361 119.32 88.9131C119.576 88.79 119.785 88.6214 119.949 88.4072C120.113 88.1885 120.207 87.9401 120.229 87.6621H121.433C121.41 88.0996 121.262 88.5075 120.988 88.8857C120.719 89.2594 120.366 89.5625 119.929 89.7949C119.491 90.0228 119.01 90.1367 118.486 90.1367C117.93 90.1367 117.445 90.0387 117.03 89.8428C116.62 89.6468 116.278 89.3779 116.005 89.0361C115.736 88.6943 115.533 88.3024 115.396 87.8604C115.264 87.4137 115.198 86.9421 115.198 86.4453V86.1582C115.198 85.6615 115.264 85.1921 115.396 84.75C115.533 84.3034 115.736 83.9092 116.005 83.5674C116.278 83.2256 116.62 82.9567 117.03 82.7607C117.445 82.5648 117.93 82.4668 118.486 82.4668C119.065 82.4668 119.571 82.5853 120.004 82.8223C120.437 83.0547 120.776 83.3737 121.022 83.7793C121.273 84.1803 121.41 84.6361 121.433 85.1465H120.229C120.207 84.8411 120.12 84.5654 119.97 84.3193C119.824 84.0732 119.623 83.8773 119.368 83.7314C119.118 83.5811 118.824 83.5059 118.486 83.5059C118.099 83.5059 117.773 83.5833 117.509 83.7383C117.249 83.8887 117.042 84.0938 116.887 84.3535C116.736 84.6087 116.627 84.8936 116.559 85.208C116.495 85.5179 116.463 85.8346 116.463 86.1582V86.4453C116.463 86.7689 116.495 87.0879 116.559 87.4023C116.622 87.7168 116.729 88.0016 116.88 88.2568C117.035 88.512 117.242 88.7171 117.502 88.8721C117.766 89.0225 118.094 89.0977 118.486 89.0977ZM125.924 90.1367C125.409 90.1367 124.942 90.0501 124.522 89.877C124.108 89.6992 123.75 89.4508 123.449 89.1318C123.153 88.8128 122.925 88.4346 122.766 87.9971C122.606 87.5596 122.526 87.0811 122.526 86.5615V86.2744C122.526 85.6729 122.615 85.1374 122.793 84.668C122.971 84.194 123.212 83.793 123.518 83.4648C123.823 83.1367 124.169 82.8883 124.557 82.7197C124.944 82.5511 125.345 82.4668 125.76 82.4668C126.288 82.4668 126.744 82.5579 127.127 82.7402C127.514 82.9225 127.831 83.1777 128.077 83.5059C128.323 83.8294 128.506 84.2122 128.624 84.6543C128.743 85.0918 128.802 85.5703 128.802 86.0898V86.6572H123.278V85.625H127.537V85.5293C127.519 85.2012 127.451 84.8822 127.332 84.5723C127.218 84.2624 127.036 84.0072 126.785 83.8066C126.535 83.6061 126.193 83.5059 125.76 83.5059C125.473 83.5059 125.208 83.5674 124.967 83.6904C124.725 83.8089 124.518 83.9867 124.345 84.2236C124.172 84.4606 124.037 84.75 123.941 85.0918C123.846 85.4336 123.798 85.8278 123.798 86.2744V86.5615C123.798 86.9124 123.846 87.2428 123.941 87.5527C124.042 87.8581 124.185 88.127 124.372 88.3594C124.563 88.5918 124.794 88.7741 125.062 88.9062C125.336 89.0384 125.646 89.1045 125.992 89.1045C126.439 89.1045 126.817 89.0133 127.127 88.8311C127.437 88.6488 127.708 88.4049 127.94 88.0996L128.706 88.708C128.547 88.9495 128.344 89.1797 128.098 89.3984C127.852 89.6172 127.549 89.7949 127.188 89.9316C126.833 90.0684 126.411 90.1367 125.924 90.1367ZM133.026 87.1973H131.755C131.759 86.7598 131.798 86.402 131.871 86.124C131.949 85.8415 132.074 85.584 132.247 85.3516C132.42 85.1191 132.65 84.8548 132.938 84.5586C133.147 84.3444 133.339 84.1439 133.512 83.957C133.689 83.7656 133.833 83.5605 133.942 83.3418C134.052 83.1185 134.106 82.8519 134.106 82.542C134.106 82.2275 134.049 81.9564 133.936 81.7285C133.826 81.5007 133.662 81.3252 133.443 81.2021C133.229 81.0791 132.963 81.0176 132.644 81.0176C132.379 81.0176 132.129 81.0654 131.892 81.1611C131.655 81.2568 131.463 81.4049 131.317 81.6055C131.172 81.8014 131.096 82.0589 131.092 82.3779H129.827C129.836 81.863 129.964 81.4209 130.21 81.0518C130.461 80.6826 130.798 80.4001 131.222 80.2041C131.646 80.0081 132.119 79.9102 132.644 79.9102C133.222 79.9102 133.715 80.015 134.12 80.2246C134.53 80.4342 134.842 80.735 135.057 81.127C135.271 81.5143 135.378 81.9746 135.378 82.5078C135.378 82.918 135.294 83.2962 135.125 83.6426C134.961 83.9844 134.749 84.3057 134.489 84.6064C134.229 84.9072 133.954 85.1943 133.662 85.4678C133.411 85.7002 133.243 85.9622 133.156 86.2539C133.07 86.5456 133.026 86.86 133.026 87.1973ZM131.7 89.3643C131.7 89.1592 131.764 88.986 131.892 88.8447C132.019 88.7035 132.204 88.6328 132.445 88.6328C132.691 88.6328 132.878 88.7035 133.006 88.8447C133.133 88.986 133.197 89.1592 133.197 89.3643C133.197 89.5602 133.133 89.7288 133.006 89.8701C132.878 90.0114 132.691 90.082 132.445 90.082C132.204 90.082 132.019 90.0114 131.892 89.8701C131.764 89.7288 131.7 89.5602 131.7 89.3643Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M54 99.5C49.86 99.5 46.5 102.86 46.5 107C46.5 111.14 49.86 114.5 54 114.5C58.14 114.5 61.5 111.14 61.5 107C61.5 102.86 58.14 99.5 54 99.5ZM54 113C50.685 113 48 110.315 48 107C48 103.685 50.685 101 54 101C57.315 101 60 103.685 60 107C60 110.315 57.315 113 54 113Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M67.498 102.258L69.8975 106.898L72.3032 102.258H73.6934L70.5068 108.047V111.5H69.2817V108.047L66.0952 102.258H67.498ZM77.1338 111.627C76.6556 111.627 76.2218 111.547 75.8325 111.386C75.4474 111.221 75.1152 110.99 74.8359 110.694C74.5609 110.398 74.3493 110.046 74.2012 109.64C74.0531 109.234 73.979 108.79 73.979 108.307V108.041C73.979 107.482 74.0615 106.985 74.2266 106.549C74.3916 106.109 74.6159 105.736 74.8994 105.432C75.1829 105.127 75.5046 104.896 75.8643 104.74C76.224 104.583 76.5964 104.505 76.9814 104.505C77.4723 104.505 77.8955 104.59 78.251 104.759C78.6107 104.928 78.9048 105.165 79.1333 105.47C79.3618 105.77 79.5311 106.126 79.6411 106.536C79.7511 106.942 79.8062 107.387 79.8062 107.869V108.396H74.6772V107.438H78.6318V107.349C78.6149 107.044 78.5514 106.748 78.4414 106.46C78.3356 106.172 78.1663 105.935 77.9336 105.749C77.7008 105.563 77.3835 105.47 76.9814 105.47C76.7148 105.47 76.4694 105.527 76.2451 105.641C76.0208 105.751 75.8283 105.916 75.6675 106.136C75.5067 106.356 75.3818 106.625 75.293 106.942C75.2041 107.26 75.1597 107.626 75.1597 108.041V108.307C75.1597 108.633 75.2041 108.94 75.293 109.228C75.3861 109.511 75.5194 109.761 75.6929 109.977C75.8706 110.192 76.0843 110.362 76.334 110.484C76.5879 110.607 76.8757 110.668 77.1973 110.668C77.612 110.668 77.9632 110.584 78.251 110.415C78.5387 110.245 78.7905 110.019 79.0063 109.735L79.7173 110.3C79.5692 110.525 79.3809 110.738 79.1523 110.941C78.9238 111.145 78.6424 111.31 78.3081 111.437C77.978 111.563 77.5866 111.627 77.1338 111.627ZM85.1763 109.678C85.1763 109.509 85.1382 109.352 85.062 109.208C84.9901 109.06 84.8398 108.927 84.6113 108.809C84.387 108.686 84.0485 108.58 83.5957 108.491C83.2148 108.411 82.87 108.316 82.561 108.206C82.2563 108.096 81.9961 107.962 81.7803 107.806C81.5687 107.649 81.4058 107.465 81.2915 107.253C81.1772 107.042 81.1201 106.794 81.1201 106.511C81.1201 106.24 81.1794 105.984 81.2979 105.743C81.4206 105.501 81.592 105.288 81.812 105.102C82.0363 104.915 82.305 104.769 82.6182 104.664C82.9313 104.558 83.2804 104.505 83.6655 104.505C84.2157 104.505 84.6854 104.602 85.0747 104.797C85.464 104.992 85.7624 105.252 85.9697 105.578C86.1771 105.899 86.2808 106.257 86.2808 106.65H85.1064C85.1064 106.46 85.0493 106.276 84.9351 106.098C84.825 105.916 84.6621 105.766 84.4463 105.647C84.2347 105.529 83.9744 105.47 83.6655 105.47C83.3397 105.47 83.0752 105.521 82.8721 105.622C82.6732 105.719 82.5272 105.844 82.4341 105.997C82.3452 106.149 82.3008 106.31 82.3008 106.479C82.3008 106.606 82.3219 106.72 82.3643 106.822C82.4108 106.919 82.4912 107.01 82.6055 107.095C82.7197 107.175 82.8805 107.251 83.0879 107.323C83.2952 107.395 83.5597 107.467 83.8813 107.539C84.4442 107.666 84.9076 107.818 85.2715 107.996C85.6354 108.174 85.9062 108.392 86.084 108.65C86.2617 108.908 86.3506 109.221 86.3506 109.589C86.3506 109.89 86.2871 110.165 86.1602 110.415C86.0374 110.664 85.8576 110.88 85.6206 111.062C85.3879 111.24 85.1086 111.379 84.7827 111.481C84.4611 111.578 84.0993 111.627 83.6973 111.627C83.0921 111.627 82.5801 111.519 82.1611 111.303C81.7422 111.087 81.4248 110.808 81.209 110.465C80.9932 110.123 80.8853 109.761 80.8853 109.38H82.0659C82.0828 109.701 82.1759 109.958 82.3452 110.148C82.5145 110.334 82.7218 110.467 82.9673 110.548C83.2127 110.624 83.4561 110.662 83.6973 110.662C84.0189 110.662 84.2876 110.62 84.5034 110.535C84.7235 110.451 84.8906 110.334 85.0049 110.186C85.1191 110.038 85.1763 109.869 85.1763 109.678Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M54 122.5C49.86 122.5 46.5 125.86 46.5 130C46.5 134.14 49.86 137.5 54 137.5C58.14 137.5 61.5 134.14 61.5 130C61.5 125.86 58.14 122.5 54 122.5ZM54 136C50.685 136 48 133.315 48 130C48 126.685 50.685 124 54 124C57.315 124 60 126.685 60 130C60 133.315 57.315 136 54 136Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M74.1821 125.258V134.5H72.9507L68.2979 127.372V134.5H67.0728V125.258H68.2979L72.9697 132.405V125.258H74.1821ZM75.8643 131.142V130.996C75.8643 130.501 75.9362 130.042 76.0801 129.619C76.224 129.191 76.4313 128.821 76.7021 128.508C76.973 128.19 77.3009 127.945 77.686 127.771C78.0711 127.594 78.5028 127.505 78.981 127.505C79.4634 127.505 79.8971 127.594 80.2822 127.771C80.6715 127.945 81.0016 128.19 81.2725 128.508C81.5475 128.821 81.757 129.191 81.9009 129.619C82.0448 130.042 82.1167 130.501 82.1167 130.996V131.142C82.1167 131.637 82.0448 132.096 81.9009 132.52C81.757 132.943 81.5475 133.313 81.2725 133.63C81.0016 133.944 80.6737 134.189 80.2886 134.367C79.9077 134.54 79.4761 134.627 78.9937 134.627C78.5112 134.627 78.0775 134.54 77.6924 134.367C77.3073 134.189 76.9772 133.944 76.7021 133.63C76.4313 133.313 76.224 132.943 76.0801 132.52C75.9362 132.096 75.8643 131.637 75.8643 131.142ZM77.0386 130.996V131.142C77.0386 131.485 77.0788 131.809 77.1592 132.113C77.2396 132.414 77.3602 132.68 77.521 132.913C77.686 133.146 77.8913 133.33 78.1367 133.465C78.3822 133.597 78.6678 133.662 78.9937 133.662C79.3153 133.662 79.5967 133.597 79.8379 133.465C80.0833 133.33 80.2865 133.146 80.4473 132.913C80.6081 132.68 80.7287 132.414 80.8091 132.113C80.8937 131.809 80.936 131.485 80.936 131.142V130.996C80.936 130.658 80.8937 130.338 80.8091 130.038C80.7287 129.733 80.606 129.464 80.4409 129.231C80.2801 128.994 80.077 128.808 79.8315 128.673C79.5903 128.537 79.3068 128.47 78.981 128.47C78.6593 128.47 78.3758 128.537 78.1304 128.673C77.8892 128.808 77.686 128.994 77.521 129.231C77.3602 129.464 77.2396 129.733 77.1592 130.038C77.0788 130.338 77.0386 130.658 77.0386 130.996Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M39.7071 84.2929C40.0976 84.6834 40.0976 85.3166 39.7071 85.7071L33.3431 92.0711C32.9526 92.4616 32.3195 92.4616 31.9289 92.0711C31.5384 91.6805 31.5384 91.0474 31.9289 90.6569L37.5858 85L31.9289 79.3431C31.5384 78.9526 31.5384 78.3195 31.9289 77.9289C32.3195 77.5384 32.9526 77.5384 33.3431 77.9289L39.7071 84.2929ZM25 70V75H23V70H25ZM34 84H39V86H34V84ZM25 75C25 79.9706 29.0294 84 34 84V86C27.9249 86 23 81.0751 23 75H25Z",fill:"#4272F9"})),{getCurrentInnerBlocks:Yt}=JetFBActions,{__:Xt}=wp.i18n,{useSelect:Qt}=wp.data,{BlockControls:el,InnerBlocks:Cl,useBlockProps:tl,InspectorControls:ll}=wp.blockEditor,{Button:rl,ToolbarGroup:nl,TextControl:al,PanelBody:il,Tip:ol}=wp.components,{useState:sl,useEffect:cl,RawHTML:dl}=wp.element;function ml(e){return e.some((({name:e})=>e.includes("form-break-field")))}const ul=JSON.parse('{"apiVersion":3,"name":"jet-forms/conditional-block","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","conditonal"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Conditional Block","icon":"\\n\\n\\n\\n","attributes":{"name":{"type":"string","default":""},"last_page_name":{"type":"string","default":""},"func_type":{"type":"string","default":""},"func_settings":{"type":"object","default":{}},"conditions":{"type":"array","default":[]},"className":{"type":"string","default":""},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"providesContext":{"jet-forms/conditional-block--name":"name","jet-forms/conditional-block--last_page_name":"last_page_name"}}'),{InnerBlocks:pl}=wp.blockEditor?wp.blockEditor:wp.editor;function fl(){return(0,h.createElement)(pl.Content,null)}const{dispatch:Vl}=wp.data,{Tools:Hl}=JetFBActions,hl={attributes:ul.attributes,supports:ul.supports,save:fl,isEligible(e){const{func_type:C=!1,conditions:t=[]}=e;return!1===C&&t?.length},migrate(e,C){const t={};let l=null;const[r]=C||[],n=[],a=e.conditions.sort((e=>"show"===e.type?-1:1));for(const e of a){var i;e.type=null!==(i=e.type)&&void 0!==i?i:"show","set_value"!==e.type?["show","hide"].includes(e.type)&&(null===l&&(l=e.type),delete e.type,"hide"===l&&Object.keys(t).length&&(t[e.field+"_or"]={or_operator:!0}),t[e.field]=e):n.push(e)}return n.length&&"object"==typeof r&&function(e,C){if(!e.name.includes("jet-forms/")||!e.attributes.hasOwnProperty("value"))return;const{updateBlock:t}=Vl("core/block-editor"),l=[];for(const{field:e,operator:t,set_value:r,value:n}of C){const C={id:Hl.getRandomID(),conditions:[{field:e,operator:t,value:n}],to_set:null!=r?r:""};l.push(C)}setTimeout((()=>{t(e.clientId,{attributes:{value:{groups:l}}})}))}(r,n),l=null!=l?l:"show",{...e,func_type:l,conditions:Object.values(t)}}},{__:bl,sprintf:Ml}=wp.i18n,{createBlock:Ll,createBlocksFromInnerBlocksTemplate:gl}=wp.blocks,{name:Zl,icon:yl=""}=ul,El={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:yl}}),description:bl("Utilize the Conditional Visibility functionality allowing to make fields of the form invisible to the users until some conditions are met.","jet-form-builder"),edit:function(e){const C=tl(),{setAttributes:t,attributes:l,clientId:r,editProps:{uniqKey:n}}=e;cl((()=>{t({name:r})}),[r,t]);const a=Yt(),i=a.reduce(((e,{name:C})=>e+C),""),[o,s]=sl(!1),[c,d]=sl((()=>ml(a)));cl((()=>{d(ml(a))}),[i]);const m=Qt((e=>e("jet-forms/block-conditions").getFunctionDisplay(l.func_type||"show")),[l.func_type]),u=l?.conditions?.length?(0,h.createElement)("span",{className:"dashicon dashicons dashicons-randomize","data-count":l.conditions.reduce(((e,C)=>C?.or_operator?e:e+1),0)}):(0,h.createElement)("span",{className:"dashicon dashicons dashicons-randomize"});return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},$t):(0,h.createElement)(h.Fragment,null,(0,h.createElement)("div",{...C},(0,h.createElement)("div",{className:"jet-form-builder__conditional"},(0,h.createElement)(Cl,{key:n("conditional-fields")}))),o&&(0,h.createElement)(yt,{key:n("ConditionsModal"),setShowModal:s}),(0,h.createElement)(el,null,(0,h.createElement)(nl,{key:n("ToolbarGroup")},(0,h.createElement)(rl,{className:"jet-fb-button",key:n("randomize"),isTertiary:!0,isSmall:!0,icon:u,onClick:()=>s(!0)}))),(0,h.createElement)(ll,null,(0,h.createElement)(il,{title:Xt("Conditions","jet-form-builder"),initialOpen:!0},(0,h.createElement)("p",{className:"jet-fb flex ai-center gap-05em"},(0,h.createElement)("b",null,m),(0,h.createElement)(rl,{isTertiary:!0,isSmall:!0,icon:"edit",onClick:()=>s(!0)})),(0,h.createElement)(wt.Provider,{value:{showModal:o,setShowModal:s}},(0,h.createElement)(Kt,{attributes:l}))),c&&(0,h.createElement)(il,{title:Xt("Multistep","jet-form-builder")},(0,h.createElement)(al,{label:Xt("Last Page Name","jet-form-builder"),key:n("last_page_name"),value:l.last_page_name,help:Xt('The value of this field will be set as the name of the last page with the "Progress Bar" block.',"jet-form-builder"),onChange:e=>t({last_page_name:e})}))),(0,h.createElement)(ll,{group:"advanced"},(0,h.createElement)("div",{style:{marginBottom:"1.5em"}},(0,h.createElement)(ol,null,(0,h.createElement)(dl,null,Xt("Add the CSS class jet-form-builder--hidden to make this block hidden by default.","jet-form-builder")))),(0,h.createElement)(al,{label:Xt("Additional CSS class(es)","jet-form-builder"),help:Xt("Separate multiple classes with spaces.","jet-form-builder"),value:l.class_name,onChange:e=>t({class_name:e})})))},save:fl,useEditProps:["uniqKey"],jfbGetFields:()=>[],__experimentalLabel:(e,{context:C})=>{var t;if("list-view"!==C)return;const l=wp.data.select("jet-forms/block-conditions").getFunction(e?.func_type),r=l?.label,n=null!==(t=e?.conditions?.reduce(((e,C)=>C?.or_operator?e:e+1),0))&&void 0!==t?t:0;return Ml(bl("%1$s %2$d condition(s)","jet-form-builder"),r,n)},example:{attributes:{isPreview:!0}},transforms:{from:[{type:"block",blocks:["*"],isMultiBlock:!0,__experimentalConvert:e=>{const C=e.map((({name:e,attributes:C,innerBlocks:t})=>[e,{...C},t]));return Ll(Zl,{},gl(C))},priority:0}]},deprecated:[hl]},wl=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_75_1407)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"20.5",width:"22",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.3887 29.4028V30.3677H28.0283V29.4028H34.3887ZM42.9199 29.4028V30.3677H36.5596V29.4028H42.9199Z",fill:"white"}),(0,h.createElement)("path",{d:"M49.8442 33.8779C49.8442 33.679 49.9056 33.5119 50.0283 33.3765C50.1553 33.2368 50.3372 33.167 50.5742 33.167C50.8112 33.167 50.991 33.2368 51.1138 33.3765C51.2407 33.5119 51.3042 33.679 51.3042 33.8779C51.3042 34.0726 51.2407 34.2376 51.1138 34.373C50.991 34.5085 50.8112 34.5762 50.5742 34.5762C50.3372 34.5762 50.1553 34.5085 50.0283 34.373C49.9056 34.2376 49.8442 34.0726 49.8442 33.8779ZM49.8506 28.2729C49.8506 28.0741 49.9119 27.9069 50.0347 27.7715C50.1616 27.6318 50.3436 27.562 50.5806 27.562C50.8175 27.562 50.9974 27.6318 51.1201 27.7715C51.2471 27.9069 51.3105 28.0741 51.3105 28.2729C51.3105 28.4676 51.2471 28.6326 51.1201 28.7681C50.9974 28.9035 50.8175 28.9712 50.5806 28.9712C50.3436 28.9712 50.1616 28.9035 50.0347 28.7681C49.9119 28.6326 49.8506 28.4676 49.8506 28.2729ZM62.7617 29.4028V30.3677H56.4014V29.4028H62.7617ZM71.293 29.4028V30.3677H64.9326V29.4028H71.293ZM76.5044 33.8779C76.5044 33.679 76.5658 33.5119 76.6885 33.3765C76.8154 33.2368 76.9974 33.167 77.2344 33.167C77.4714 33.167 77.6512 33.2368 77.7739 33.3765C77.9009 33.5119 77.9644 33.679 77.9644 33.8779C77.9644 34.0726 77.9009 34.2376 77.7739 34.373C77.6512 34.5085 77.4714 34.5762 77.2344 34.5762C76.9974 34.5762 76.8154 34.5085 76.6885 34.373C76.5658 34.2376 76.5044 34.0726 76.5044 33.8779ZM76.5107 28.2729C76.5107 28.0741 76.5721 27.9069 76.6948 27.7715C76.8218 27.6318 77.0037 27.562 77.2407 27.562C77.4777 27.562 77.6576 27.6318 77.7803 27.7715C77.9072 27.9069 77.9707 28.0741 77.9707 28.2729C77.9707 28.4676 77.9072 28.6326 77.7803 28.7681C77.6576 28.9035 77.4777 28.9712 77.2407 28.9712C77.0037 28.9712 76.8218 28.9035 76.6948 28.7681C76.5721 28.6326 76.5107 28.4676 76.5107 28.2729ZM89.4219 29.4028V30.3677H83.0615V29.4028H89.4219ZM97.9531 29.4028V30.3677H91.5928V29.4028H97.9531Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270 24V38C270 39.1 269.1 40 268 40H254C252.89 40 252 39.1 252 38L252.01 24C252.01 22.9 252.89 22 254 22H255V20H257V22H265V20H267V22H268C269.1 22 270 22.9 270 24ZM254 26H268V24H254V26ZM268 38V28H254V38H268Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"15",y:"45",width:"268",height:"231",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M26.6948 57.7578H28.3071L30.6812 64.5435L33.0552 57.7578H34.6675L31.3286 67H30.0337L26.6948 57.7578ZM25.8252 57.7578H27.4312L27.7231 64.3721V67H25.8252V57.7578ZM33.9312 57.7578H35.5435V67H33.6392V64.3721L33.9312 57.7578ZM40.8057 65.4512V62.3916C40.8057 62.1715 40.7697 61.9832 40.6978 61.8267C40.6258 61.6659 40.5137 61.541 40.3613 61.4521C40.2132 61.3633 40.0207 61.3188 39.7837 61.3188C39.5806 61.3188 39.4049 61.3548 39.2568 61.4268C39.1087 61.4945 38.9945 61.5939 38.9141 61.7251C38.8337 61.8521 38.7935 62.0023 38.7935 62.1758H36.9653C36.9653 61.8838 37.033 61.6066 37.1685 61.3442C37.3039 61.0819 37.5007 60.8512 37.7588 60.6523C38.0169 60.4492 38.3237 60.2905 38.6792 60.1763C39.0389 60.062 39.4409 60.0049 39.8853 60.0049C40.4185 60.0049 40.8924 60.0938 41.3071 60.2715C41.7218 60.4492 42.0477 60.7158 42.2847 61.0713C42.5259 61.4268 42.6465 61.8711 42.6465 62.4043V65.3433C42.6465 65.7199 42.6698 66.0288 42.7163 66.27C42.7629 66.507 42.8306 66.7144 42.9194 66.8921V67H41.0723C40.9834 66.8138 40.9157 66.5811 40.8691 66.3018C40.8268 66.0182 40.8057 65.7347 40.8057 65.4512ZM41.0469 62.8169L41.0596 63.8516H40.0376C39.7964 63.8516 39.5869 63.8791 39.4092 63.9341C39.2314 63.9891 39.0854 64.0674 38.9712 64.1689C38.8569 64.2663 38.7723 64.3805 38.7173 64.5117C38.6665 64.6429 38.6411 64.7868 38.6411 64.9434C38.6411 65.0999 38.6771 65.2417 38.749 65.3687C38.821 65.4914 38.9246 65.5887 39.0601 65.6606C39.1955 65.7284 39.3542 65.7622 39.5361 65.7622C39.8112 65.7622 40.0503 65.7072 40.2534 65.5972C40.4565 65.4871 40.6131 65.3517 40.7231 65.1909C40.8374 65.0301 40.8966 64.8778 40.9009 64.7339L41.3833 65.5083C41.3156 65.6818 41.2225 65.8617 41.104 66.0479C40.9897 66.234 40.8438 66.4097 40.666 66.5747C40.4883 66.7355 40.2746 66.8688 40.0249 66.9746C39.7752 67.0762 39.479 67.127 39.1362 67.127C38.7004 67.127 38.3047 67.0402 37.9492 66.8667C37.598 66.689 37.3187 66.4456 37.1113 66.1367C36.9082 65.8236 36.8066 65.4681 36.8066 65.0703C36.8066 64.7106 36.8743 64.3911 37.0098 64.1118C37.1452 63.8325 37.3441 63.5977 37.6064 63.4072C37.873 63.2126 38.2052 63.0666 38.603 62.9692C39.0008 62.8677 39.4621 62.8169 39.9868 62.8169H41.0469ZM45.8838 61.6299V67H44.0557V60.1318H45.7759L45.8838 61.6299ZM47.9531 60.0874L47.9214 61.7822C47.8325 61.7695 47.7246 61.759 47.5977 61.7505C47.4749 61.7378 47.3628 61.7314 47.2612 61.7314C47.0031 61.7314 46.7788 61.7653 46.5884 61.833C46.4022 61.8965 46.2456 61.9917 46.1187 62.1187C45.9959 62.2456 45.9028 62.4001 45.8394 62.582C45.7801 62.764 45.7463 62.9714 45.7378 63.2041L45.3696 63.0898C45.3696 62.6455 45.4141 62.2371 45.5029 61.8647C45.5918 61.4881 45.7209 61.1602 45.8901 60.8809C46.0636 60.6016 46.2752 60.3857 46.5249 60.2334C46.7746 60.0811 47.0602 60.0049 47.3818 60.0049C47.4834 60.0049 47.5871 60.0133 47.6929 60.0303C47.7987 60.043 47.8854 60.062 47.9531 60.0874ZM51.5269 65.6987C51.7511 65.6987 51.95 65.6564 52.1235 65.5718C52.297 65.4829 52.4325 65.3602 52.5298 65.2036C52.6313 65.0428 52.6842 64.8545 52.6885 64.6387H54.4087C54.4045 65.1211 54.2754 65.5506 54.0215 65.9272C53.7676 66.2996 53.4269 66.5938 52.9995 66.8096C52.5721 67.0212 52.0939 67.127 51.5649 67.127C51.0317 67.127 50.5662 67.0381 50.1685 66.8604C49.7749 66.6826 49.4469 66.4372 49.1846 66.124C48.9222 65.8066 48.7254 65.4385 48.5942 65.0195C48.4631 64.5964 48.3975 64.1436 48.3975 63.6611V63.4771C48.3975 62.9904 48.4631 62.5376 48.5942 62.1187C48.7254 61.6955 48.9222 61.3273 49.1846 61.0142C49.4469 60.6968 49.7749 60.4492 50.1685 60.2715C50.562 60.0938 51.0233 60.0049 51.5522 60.0049C52.1151 60.0049 52.6081 60.1128 53.0312 60.3286C53.4587 60.5444 53.793 60.8534 54.0342 61.2554C54.2796 61.6532 54.4045 62.125 54.4087 62.6709H52.6885C52.6842 62.4424 52.6356 62.235 52.5425 62.0488C52.4536 61.8626 52.3224 61.7145 52.1489 61.6045C51.9797 61.4902 51.7702 61.4331 51.5205 61.4331C51.2539 61.4331 51.036 61.4902 50.8667 61.6045C50.6974 61.7145 50.5662 61.8669 50.4731 62.0615C50.38 62.252 50.3145 62.4699 50.2764 62.7153C50.2425 62.9565 50.2256 63.2104 50.2256 63.4771V63.6611C50.2256 63.9277 50.2425 64.1838 50.2764 64.4292C50.3102 64.6746 50.3737 64.8926 50.4668 65.083C50.5641 65.2734 50.6974 65.4237 50.8667 65.5337C51.036 65.6437 51.256 65.6987 51.5269 65.6987ZM57.2524 57.25V67H55.4243V57.25H57.2524ZM56.9922 63.3247H56.4907C56.495 62.8465 56.5584 62.4064 56.6812 62.0044C56.8039 61.5981 56.9795 61.2469 57.208 60.9507C57.4365 60.6502 57.7095 60.4175 58.0269 60.2524C58.3485 60.0874 58.7039 60.0049 59.0933 60.0049C59.4318 60.0049 59.7386 60.0535 60.0137 60.1509C60.293 60.244 60.5321 60.3963 60.731 60.6079C60.9341 60.8153 61.0907 61.0882 61.2007 61.4268C61.3107 61.7653 61.3657 62.1758 61.3657 62.6582V67H59.5249V62.6455C59.5249 62.3408 59.4805 62.1017 59.3916 61.9282C59.307 61.7505 59.1821 61.6257 59.0171 61.5537C58.8563 61.4775 58.6574 61.4395 58.4204 61.4395C58.158 61.4395 57.9338 61.4881 57.7476 61.5854C57.5656 61.6828 57.4196 61.8182 57.3096 61.9917C57.1995 62.161 57.1191 62.3599 57.0684 62.5884C57.0176 62.8169 56.9922 63.0623 56.9922 63.3247ZM72.2393 65.5718V67H65.917V65.7812L68.9067 62.5757C69.2072 62.2414 69.4442 61.9473 69.6177 61.6934C69.7912 61.4352 69.916 61.2046 69.9922 61.0015C70.0726 60.7941 70.1128 60.5973 70.1128 60.4111C70.1128 60.1318 70.0662 59.8927 69.9731 59.6938C69.88 59.4907 69.7425 59.3341 69.5605 59.2241C69.3828 59.1141 69.1628 59.0591 68.9004 59.0591C68.6211 59.0591 68.3799 59.1268 68.1768 59.2622C67.9779 59.3976 67.8255 59.5859 67.7197 59.8271C67.6182 60.0684 67.5674 60.3413 67.5674 60.646H65.7329C65.7329 60.0959 65.8641 59.5923 66.1265 59.1353C66.3888 58.674 66.7591 58.3079 67.2373 58.0371C67.7155 57.762 68.2826 57.6245 68.9385 57.6245C69.5859 57.6245 70.1318 57.7303 70.5762 57.9419C71.0247 58.1493 71.3633 58.4497 71.5918 58.8433C71.8245 59.2326 71.9409 59.6981 71.9409 60.2397C71.9409 60.5444 71.8923 60.8428 71.7949 61.1348C71.6976 61.4225 71.5579 61.7103 71.376 61.998C71.1982 62.2816 70.9824 62.5693 70.7285 62.8613C70.4746 63.1533 70.1932 63.4559 69.8843 63.769L68.2783 65.5718H72.2393ZM79.6025 61.5664V63.166C79.6025 63.86 79.5285 64.4588 79.3804 64.9624C79.2323 65.4618 79.0186 65.8722 78.7393 66.1938C78.4642 66.5112 78.1362 66.7461 77.7554 66.8984C77.3745 67.0508 76.9513 67.127 76.4858 67.127C76.1134 67.127 75.7664 67.0804 75.4448 66.9873C75.1232 66.89 74.8333 66.7397 74.5752 66.5366C74.3213 66.3335 74.1012 66.0775 73.915 65.7686C73.7331 65.4554 73.5934 65.083 73.4961 64.6514C73.3988 64.2197 73.3501 63.7246 73.3501 63.166V61.5664C73.3501 60.8724 73.4242 60.2778 73.5723 59.7827C73.7246 59.2834 73.9383 58.875 74.2134 58.5576C74.4927 58.2402 74.8228 58.0075 75.2036 57.8594C75.5845 57.707 76.0076 57.6309 76.4731 57.6309C76.8455 57.6309 77.1904 57.6795 77.5078 57.7769C77.8294 57.87 78.1193 58.016 78.3774 58.2148C78.6356 58.4137 78.8556 58.6698 79.0376 58.9829C79.2196 59.2918 79.3592 59.6621 79.4565 60.0938C79.5539 60.5212 79.6025 61.012 79.6025 61.5664ZM77.7681 63.4072V61.3188C77.7681 60.9845 77.749 60.6925 77.7109 60.4429C77.6771 60.1932 77.6242 59.9816 77.5522 59.8081C77.4803 59.6304 77.3914 59.4865 77.2856 59.3765C77.1799 59.2664 77.0592 59.186 76.9238 59.1353C76.7884 59.0845 76.6382 59.0591 76.4731 59.0591C76.2658 59.0591 76.0817 59.0993 75.9209 59.1797C75.7643 59.2601 75.631 59.3892 75.521 59.5669C75.411 59.7404 75.3263 59.9731 75.2671 60.2651C75.2121 60.5529 75.1846 60.9041 75.1846 61.3188V63.4072C75.1846 63.7415 75.2015 64.0356 75.2354 64.2896C75.2734 64.5435 75.3285 64.7614 75.4004 64.9434C75.4766 65.1211 75.5654 65.2671 75.667 65.3813C75.7728 65.4914 75.8934 65.5718 76.0288 65.6226C76.1685 65.6733 76.3208 65.6987 76.4858 65.6987C76.689 65.6987 76.8688 65.6585 77.0254 65.5781C77.1862 65.4935 77.3216 65.3623 77.4316 65.1846C77.5459 65.0026 77.6305 64.7656 77.6855 64.4736C77.7406 64.1816 77.7681 63.8262 77.7681 63.4072ZM87.1689 65.5718V67H80.8467V65.7812L83.8364 62.5757C84.1369 62.2414 84.3739 61.9473 84.5474 61.6934C84.7209 61.4352 84.8457 61.2046 84.9219 61.0015C85.0023 60.7941 85.0425 60.5973 85.0425 60.4111C85.0425 60.1318 84.9959 59.8927 84.9028 59.6938C84.8097 59.4907 84.6722 59.3341 84.4902 59.2241C84.3125 59.1141 84.0924 59.0591 83.8301 59.0591C83.5508 59.0591 83.3096 59.1268 83.1064 59.2622C82.9076 59.3976 82.7552 59.5859 82.6494 59.8271C82.5479 60.0684 82.4971 60.3413 82.4971 60.646H80.6626C80.6626 60.0959 80.7938 59.5923 81.0562 59.1353C81.3185 58.674 81.6888 58.3079 82.167 58.0371C82.6452 57.762 83.2122 57.6245 83.8682 57.6245C84.5156 57.6245 85.0615 57.7303 85.5059 57.9419C85.9544 58.1493 86.293 58.4497 86.5215 58.8433C86.7542 59.2326 86.8706 59.6981 86.8706 60.2397C86.8706 60.5444 86.8219 60.8428 86.7246 61.1348C86.6273 61.4225 86.4876 61.7103 86.3057 61.998C86.1279 62.2816 85.9121 62.5693 85.6582 62.8613C85.4043 63.1533 85.1229 63.4559 84.814 63.769L83.208 65.5718H87.1689ZM92.7676 57.7388V67H90.9395V59.8462L88.7432 60.5444V59.1035L92.5708 57.7388H92.7676Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1407)"},(0,h.createElement)("path",{d:"M99.7917 61.4167L102.5 64.1251L105.208 61.4167H99.7917Z",fill:"#64748B"})),(0,h.createElement)("path",{d:"M249.167 62.4999L249.93 63.2637L252.958 60.2412L252.958 66.8333L254.042 66.8333L254.042 60.2412L257.07 63.2637L257.833 62.4999L253.5 58.1666L249.167 62.4999Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270.833 62.5001L270.07 61.7363L267.042 64.7588L267.042 58.1667L265.958 58.1667L265.958 64.7588L262.93 61.7363L262.167 62.5001L266.5 66.8334L270.833 62.5001Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M37.3305 89.6641C37.3305 89.4482 37.2967 89.2578 37.2289 89.0928C37.1655 88.9235 37.0512 88.7712 36.8862 88.6357C36.7254 88.5003 36.5011 88.3713 36.2133 88.2485C35.9298 88.1258 35.5701 88.001 35.1342 87.874C34.6772 87.7386 34.2646 87.5884 33.8964 87.4233C33.5283 87.2541 33.213 87.0615 32.9506 86.8457C32.6883 86.6299 32.4873 86.3823 32.3476 86.103C32.208 85.8237 32.1381 85.5042 32.1381 85.1445C32.1381 84.7848 32.2122 84.4526 32.3603 84.1479C32.5084 83.8433 32.72 83.5788 32.9951 83.3545C33.2744 83.126 33.6066 82.9482 33.9916 82.8213C34.3767 82.6943 34.8063 82.6309 35.2802 82.6309C35.9742 82.6309 36.5624 82.7642 37.0449 83.0308C37.5315 83.2931 37.9018 83.638 38.1557 84.0654C38.4096 84.4886 38.5366 84.9414 38.5366 85.4238H37.3178C37.3178 85.0768 37.2438 84.77 37.0956 84.5034C36.9475 84.2326 36.7233 84.021 36.4228 83.8687C36.1223 83.7121 35.7415 83.6338 35.2802 83.6338C34.8443 83.6338 34.4846 83.6994 34.2011 83.8306C33.9176 83.9618 33.706 84.1395 33.5664 84.3638C33.4309 84.5881 33.3632 84.8441 33.3632 85.1318C33.3632 85.3265 33.4034 85.5042 33.4838 85.665C33.5685 85.8216 33.6975 85.9676 33.871 86.103C34.0488 86.2384 34.2731 86.3633 34.5439 86.4775C34.819 86.5918 35.1469 86.7018 35.5278 86.8076C36.0525 86.9557 36.5053 87.1208 36.8862 87.3027C37.267 87.4847 37.5802 87.6899 37.8256 87.9185C38.0753 88.1427 38.2594 88.3988 38.3779 88.6865C38.5006 88.9701 38.562 89.2917 38.562 89.6514C38.562 90.028 38.4858 90.3687 38.3334 90.6733C38.1811 90.978 37.9632 91.2383 37.6796 91.4541C37.3961 91.6699 37.0554 91.8371 36.6577 91.9556C36.2641 92.0698 35.824 92.127 35.3373 92.127C34.9099 92.127 34.4889 92.0677 34.0742 91.9492C33.6637 91.8307 33.2892 91.653 32.9506 91.416C32.6163 91.179 32.3476 90.887 32.1445 90.54C31.9456 90.1888 31.8461 89.7826 31.8461 89.3213H33.0649C33.0649 89.6387 33.1262 89.9116 33.249 90.1401C33.3717 90.3644 33.5388 90.5506 33.7504 90.6987C33.9663 90.8468 34.2096 90.9569 34.4804 91.0288C34.7555 91.0965 35.0411 91.1304 35.3373 91.1304C35.7648 91.1304 36.1266 91.0711 36.4228 90.9526C36.719 90.8341 36.9433 90.6649 37.0956 90.4448C37.2522 90.2248 37.3305 89.9645 37.3305 89.6641ZM44.1479 90.4131V85.1318H45.3286V92H44.205L44.1479 90.4131ZM44.3701 88.9658L44.8588 88.9531C44.8588 89.4102 44.8102 89.8333 44.7128 90.2227C44.6197 90.6077 44.4674 90.9421 44.2558 91.2256C44.0442 91.5091 43.767 91.7313 43.4243 91.8921C43.0815 92.0487 42.6647 92.127 42.1738 92.127C41.8395 92.127 41.5327 92.0783 41.2534 91.981C40.9783 91.8836 40.7413 91.7334 40.5424 91.5303C40.3435 91.3271 40.1891 91.0627 40.079 90.7368C39.9733 90.411 39.9204 90.0195 39.9204 89.5625V85.1318H41.0947V89.5752C41.0947 89.8841 41.1285 90.1401 41.1962 90.3433C41.2682 90.5422 41.3634 90.7008 41.4819 90.8193C41.6046 90.9336 41.74 91.014 41.8881 91.0605C42.0405 91.1071 42.197 91.1304 42.3579 91.1304C42.8572 91.1304 43.2529 91.0352 43.5449 90.8447C43.8369 90.6501 44.0463 90.3898 44.1733 90.064C44.3045 89.7339 44.3701 89.3678 44.3701 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M109.587 82.7578V92H108.381V82.7578H109.587ZM112.558 82.7578V83.7607H105.417V82.7578H112.558ZM117.344 90.4131V85.1318H118.525V92H117.401L117.344 90.4131ZM117.566 88.9658L118.055 88.9531C118.055 89.4102 118.006 89.8333 117.909 90.2227C117.816 90.6077 117.663 90.9421 117.452 91.2256C117.24 91.5091 116.963 91.7313 116.62 91.8921C116.278 92.0487 115.861 92.127 115.37 92.127C115.036 92.127 114.729 92.0783 114.449 91.981C114.174 91.8836 113.937 91.7334 113.738 91.5303C113.54 91.3271 113.385 91.0627 113.275 90.7368C113.169 90.411 113.116 90.0195 113.116 89.5625V85.1318H114.291V89.5752C114.291 89.8841 114.325 90.1401 114.392 90.3433C114.464 90.5422 114.559 90.7008 114.678 90.8193C114.801 90.9336 114.936 91.014 115.084 91.0605C115.237 91.1071 115.393 91.1304 115.554 91.1304C116.053 91.1304 116.449 91.0352 116.741 90.8447C117.033 90.6501 117.242 90.3898 117.369 90.064C117.501 89.7339 117.566 89.3678 117.566 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M182.77 82.7578V92H181.564V82.7578H182.77ZM185.74 82.7578V83.7607H178.599V82.7578H185.74ZM188.108 82.25V92H186.934V82.25H188.108ZM187.829 88.3057L187.34 88.2866C187.344 87.8169 187.414 87.3831 187.55 86.9854C187.685 86.5833 187.875 86.2342 188.121 85.938C188.366 85.6418 188.658 85.4132 188.997 85.2524C189.34 85.0874 189.718 85.0049 190.133 85.0049C190.472 85.0049 190.776 85.0514 191.047 85.1445C191.318 85.2334 191.549 85.3773 191.739 85.5762C191.934 85.7751 192.082 86.0332 192.183 86.3506C192.285 86.6637 192.336 87.0467 192.336 87.4995V92H191.155V87.4868C191.155 87.1271 191.102 86.8394 190.996 86.6235C190.89 86.4035 190.736 86.2448 190.533 86.1475C190.33 86.0459 190.08 85.9951 189.784 85.9951C189.492 85.9951 189.225 86.0565 188.984 86.1792C188.747 86.3019 188.542 86.4712 188.368 86.687C188.199 86.9028 188.066 87.1504 187.968 87.4297C187.875 87.7048 187.829 87.9967 187.829 88.3057Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M257.826 89.6641C257.826 89.4482 257.792 89.2578 257.724 89.0928C257.661 88.9235 257.546 88.7712 257.381 88.6357C257.22 88.5003 256.996 88.3713 256.708 88.2485C256.425 88.1258 256.065 88.001 255.629 87.874C255.172 87.7386 254.76 87.5884 254.392 87.4233C254.023 87.2541 253.708 87.0615 253.446 86.8457C253.183 86.6299 252.982 86.3823 252.843 86.103C252.703 85.8237 252.633 85.5042 252.633 85.1445C252.633 84.7848 252.707 84.4526 252.855 84.1479C253.004 83.8433 253.215 83.5788 253.49 83.3545C253.769 83.126 254.102 82.9482 254.487 82.8213C254.872 82.6943 255.301 82.6309 255.775 82.6309C256.469 82.6309 257.058 82.7642 257.54 83.0308C258.027 83.2931 258.397 83.638 258.651 84.0654C258.905 84.4886 259.032 84.9414 259.032 85.4238H257.813C257.813 85.0768 257.739 84.77 257.591 84.5034C257.443 84.2326 257.218 84.021 256.918 83.8687C256.617 83.7121 256.237 83.6338 255.775 83.6338C255.339 83.6338 254.98 83.6994 254.696 83.8306C254.413 83.9618 254.201 84.1395 254.061 84.3638C253.926 84.5881 253.858 84.8441 253.858 85.1318C253.858 85.3265 253.899 85.5042 253.979 85.665C254.064 85.8216 254.193 85.9676 254.366 86.103C254.544 86.2384 254.768 86.3633 255.039 86.4775C255.314 86.5918 255.642 86.7018 256.023 86.8076C256.548 86.9557 257 87.1208 257.381 87.3027C257.762 87.4847 258.075 87.6899 258.321 87.9185C258.57 88.1427 258.755 88.3988 258.873 88.6865C258.996 88.9701 259.057 89.2917 259.057 89.6514C259.057 90.028 258.981 90.3687 258.829 90.6733C258.676 90.978 258.458 91.2383 258.175 91.4541C257.891 91.6699 257.551 91.8371 257.153 91.9556C256.759 92.0698 256.319 92.127 255.832 92.127C255.405 92.127 254.984 92.0677 254.569 91.9492C254.159 91.8307 253.784 91.653 253.446 91.416C253.111 91.179 252.843 90.887 252.64 90.54C252.441 90.1888 252.341 89.7826 252.341 89.3213H253.56C253.56 89.6387 253.621 89.9116 253.744 90.1401C253.867 90.3644 254.034 90.5506 254.246 90.6987C254.461 90.8468 254.705 90.9569 254.976 91.0288C255.251 91.0965 255.536 91.1304 255.832 91.1304C256.26 91.1304 256.622 91.0711 256.918 90.9526C257.214 90.8341 257.438 90.6649 257.591 90.4448C257.747 90.2248 257.826 89.9645 257.826 89.6641ZM264.491 90.8257V87.29C264.491 87.0192 264.436 86.7843 264.326 86.5854C264.22 86.3823 264.059 86.2257 263.843 86.1157C263.627 86.0057 263.361 85.9507 263.043 85.9507C262.747 85.9507 262.487 86.0015 262.263 86.103C262.043 86.2046 261.869 86.3379 261.742 86.5029C261.619 86.668 261.558 86.8457 261.558 87.0361H260.384C260.384 86.7907 260.447 86.5474 260.574 86.3062C260.701 86.0649 260.883 85.847 261.12 85.6523C261.361 85.4535 261.649 85.2969 261.983 85.1826C262.322 85.0641 262.699 85.0049 263.113 85.0049C263.613 85.0049 264.053 85.0895 264.434 85.2588C264.819 85.4281 265.119 85.6841 265.335 86.0269C265.555 86.3654 265.665 86.7907 265.665 87.3027V90.502C265.665 90.7305 265.684 90.9738 265.722 91.2319C265.764 91.4901 265.826 91.7122 265.906 91.8984V92H264.681C264.622 91.8646 264.575 91.6847 264.541 91.4604C264.508 91.2319 264.491 91.0203 264.491 90.8257ZM264.694 87.8359L264.706 88.6611H263.519C263.185 88.6611 262.887 88.6886 262.624 88.7437C262.362 88.7944 262.142 88.8727 261.964 88.9785C261.787 89.0843 261.651 89.2176 261.558 89.3784C261.465 89.535 261.418 89.7191 261.418 89.9307C261.418 90.1465 261.467 90.3433 261.564 90.521C261.662 90.6987 261.808 90.8405 262.002 90.9463C262.201 91.0479 262.445 91.0986 262.732 91.0986C263.092 91.0986 263.409 91.0225 263.685 90.8701C263.96 90.7178 264.178 90.5316 264.338 90.3115C264.503 90.0915 264.592 89.8778 264.605 89.6704L265.106 90.2354C265.077 90.4131 264.996 90.6099 264.865 90.8257C264.734 91.0415 264.558 91.2489 264.338 91.4478C264.123 91.6424 263.864 91.8053 263.564 91.9365C263.268 92.0635 262.933 92.127 262.561 92.127C262.095 92.127 261.687 92.036 261.336 91.854C260.989 91.672 260.718 91.4287 260.523 91.124C260.333 90.8151 260.238 90.4702 260.238 90.0894C260.238 89.7212 260.31 89.3975 260.454 89.1182C260.597 88.8346 260.805 88.5998 261.076 88.4136C261.346 88.2231 261.672 88.0793 262.053 87.9819C262.434 87.8846 262.859 87.8359 263.329 87.8359H264.694Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M67.5966 82.7578H68.7836L71.8115 90.2925L74.833 82.7578H76.0263L72.2685 92H71.3417L67.5966 82.7578ZM67.2094 82.7578H68.2568L68.4282 88.3945V92H67.2094V82.7578ZM75.3598 82.7578H76.4072V92H75.1884V88.3945L75.3598 82.7578ZM78.0703 88.6421V88.4961C78.0703 88.001 78.1422 87.5418 78.2861 87.1187C78.43 86.6912 78.6373 86.321 78.9081 86.0078C79.179 85.6904 79.5069 85.445 79.892 85.2715C80.2771 85.0938 80.7088 85.0049 81.187 85.0049C81.6694 85.0049 82.1031 85.0938 82.4882 85.2715C82.8775 85.445 83.2076 85.6904 83.4785 86.0078C83.7535 86.321 83.963 86.6912 84.1069 87.1187C84.2508 87.5418 84.3227 88.001 84.3227 88.4961V88.6421C84.3227 89.1372 84.2508 89.5964 84.1069 90.0195C83.963 90.4427 83.7535 90.813 83.4785 91.1304C83.2076 91.4435 82.8797 91.689 82.4946 91.8667C82.1137 92.0402 81.6821 92.127 81.1997 92.127C80.7172 92.127 80.2835 92.0402 79.8984 91.8667C79.5133 91.689 79.1832 91.4435 78.9081 91.1304C78.6373 90.813 78.43 90.4427 78.2861 90.0195C78.1422 89.5964 78.0703 89.1372 78.0703 88.6421ZM79.2446 88.4961V88.6421C79.2446 88.9849 79.2848 89.3086 79.3652 89.6133C79.4456 89.9137 79.5662 90.1803 79.727 90.4131C79.892 90.6458 80.0973 90.8299 80.3427 90.9653C80.5882 91.0965 80.8738 91.1621 81.1997 91.1621C81.5213 91.1621 81.8027 91.0965 82.0439 90.9653C82.2893 90.8299 82.4925 90.6458 82.6533 90.4131C82.8141 90.1803 82.9347 89.9137 83.0151 89.6133C83.0997 89.3086 83.142 88.9849 83.142 88.6421V88.4961C83.142 88.1576 83.0997 87.8381 83.0151 87.5376C82.9347 87.2329 82.812 86.9642 82.6469 86.7314C82.4861 86.4945 82.283 86.3083 82.0375 86.1729C81.7963 86.0374 81.5128 85.9697 81.187 85.9697C80.8653 85.9697 80.5818 86.0374 80.3364 86.1729C80.0952 86.3083 79.892 86.4945 79.727 86.7314C79.5662 86.9642 79.4456 87.2329 79.3652 87.5376C79.2848 87.8381 79.2446 88.1576 79.2446 88.4961Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M143.389 89.207L145.223 82.7578H146.112L145.598 85.2651L143.624 92H142.741L143.389 89.207ZM141.491 82.7578L142.951 89.0801L143.389 92H142.513L140.272 82.7578H141.491ZM148.486 89.0737L149.914 82.7578H151.139L148.905 92H148.029L148.486 89.0737ZM146.245 82.7578L148.029 89.207L148.676 92H147.794L145.89 85.2651L145.369 82.7578H146.245ZM154.967 92.127C154.489 92.127 154.055 92.0465 153.666 91.8857C153.281 91.7207 152.948 91.4901 152.669 91.1938C152.394 90.8976 152.182 90.5464 152.034 90.1401C151.886 89.7339 151.812 89.2896 151.812 88.8071V88.5405C151.812 87.9819 151.895 87.4847 152.06 87.0488C152.225 86.6087 152.449 86.2363 152.733 85.9316C153.016 85.627 153.338 85.3963 153.697 85.2397C154.057 85.0832 154.43 85.0049 154.815 85.0049C155.306 85.0049 155.729 85.0895 156.084 85.2588C156.444 85.4281 156.738 85.665 156.966 85.9697C157.195 86.2702 157.364 86.6257 157.474 87.0361C157.584 87.4424 157.639 87.8867 157.639 88.3691V88.896H152.51V87.9375H156.465V87.8486C156.448 87.5439 156.385 87.2477 156.275 86.96C156.169 86.6722 156 86.4352 155.767 86.249C155.534 86.0628 155.217 85.9697 154.815 85.9697C154.548 85.9697 154.303 86.0269 154.078 86.1411C153.854 86.2511 153.661 86.4162 153.501 86.6362C153.34 86.8563 153.215 87.125 153.126 87.4424C153.037 87.7598 152.993 88.1258 152.993 88.5405V88.8071C152.993 89.133 153.037 89.4398 153.126 89.7275C153.219 90.0111 153.353 90.2607 153.526 90.4766C153.704 90.6924 153.918 90.8617 154.167 90.9844C154.421 91.1071 154.709 91.1685 155.03 91.1685C155.445 91.1685 155.796 91.0838 156.084 90.9146C156.372 90.7453 156.624 90.5189 156.84 90.2354L157.55 90.8003C157.402 91.0246 157.214 91.2383 156.986 91.4414C156.757 91.6445 156.476 91.8096 156.141 91.9365C155.811 92.0635 155.42 92.127 154.967 92.127Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M219.066 82.7578V92H217.841V82.7578H219.066ZM222.938 86.9155V87.9185H218.8V86.9155H222.938ZM223.567 82.7578V83.7607H218.8V82.7578H223.567ZM225.858 86.2109V92H224.684V85.1318H225.826L225.858 86.2109ZM228.004 85.0938L227.997 86.1855C227.9 86.1644 227.807 86.1517 227.718 86.1475C227.633 86.139 227.536 86.1348 227.426 86.1348C227.155 86.1348 226.916 86.1771 226.709 86.2617C226.501 86.3464 226.326 86.4648 226.182 86.6172C226.038 86.7695 225.924 86.9515 225.839 87.1631C225.759 87.3704 225.706 87.599 225.68 87.8486L225.35 88.0391C225.35 87.6243 225.391 87.235 225.471 86.8711C225.556 86.5072 225.685 86.1855 225.858 85.9062C226.032 85.6227 226.252 85.4027 226.518 85.2461C226.789 85.0853 227.111 85.0049 227.483 85.0049C227.568 85.0049 227.665 85.0155 227.775 85.0366C227.885 85.0535 227.961 85.0726 228.004 85.0938Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"212",y:"100",width:"21",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{opacity:"0.4",d:"M38.289 114.035V115H32.2397V114.156L35.2675 110.785C35.6399 110.37 35.9277 110.019 36.1308 109.731C36.3382 109.439 36.482 109.179 36.5624 108.951C36.6471 108.718 36.6894 108.481 36.6894 108.24C36.6894 107.935 36.6259 107.66 36.499 107.415C36.3762 107.165 36.1943 106.966 35.9531 106.818C35.7119 106.67 35.4199 106.596 35.0771 106.596C34.6666 106.596 34.3238 106.676 34.0488 106.837C33.7779 106.993 33.5748 107.214 33.4394 107.497C33.304 107.781 33.2363 108.106 33.2363 108.475H32.062C32.062 107.954 32.1762 107.478 32.4047 107.046C32.6332 106.615 32.9718 106.272 33.4204 106.018C33.8689 105.76 34.4212 105.631 35.0771 105.631C35.6611 105.631 36.1604 105.735 36.5751 105.942C36.9899 106.145 37.3072 106.433 37.5273 106.805C37.7516 107.173 37.8637 107.605 37.8637 108.1C37.8637 108.371 37.8172 108.646 37.7241 108.925C37.6352 109.2 37.5104 109.475 37.3496 109.75C37.193 110.026 37.0089 110.296 36.7973 110.563C36.59 110.83 36.3678 111.092 36.1308 111.35L33.6552 114.035H38.289ZM45.373 112.499C45.373 113.062 45.2418 113.54 44.9794 113.934C44.7213 114.323 44.3701 114.619 43.9257 114.822C43.4856 115.025 42.9884 115.127 42.434 115.127C41.8797 115.127 41.3803 115.025 40.936 114.822C40.4916 114.619 40.1404 114.323 39.8823 113.934C39.6241 113.54 39.4951 113.062 39.4951 112.499C39.4951 112.131 39.5649 111.794 39.7045 111.49C39.8484 111.181 40.0494 110.912 40.3076 110.684C40.5699 110.455 40.8789 110.279 41.2343 110.157C41.594 110.03 41.9897 109.966 42.4213 109.966C42.9884 109.966 43.4941 110.076 43.9384 110.296C44.3828 110.512 44.7319 110.811 44.9858 111.191C45.2439 111.572 45.373 112.008 45.373 112.499ZM44.1923 112.474C44.1923 112.131 44.1183 111.828 43.9702 111.566C43.822 111.299 43.6147 111.092 43.3481 110.944C43.0815 110.796 42.7726 110.722 42.4213 110.722C42.0616 110.722 41.7506 110.796 41.4882 110.944C41.2301 111.092 41.0291 111.299 40.8852 111.566C40.7413 111.828 40.6694 112.131 40.6694 112.474C40.6694 112.829 40.7392 113.134 40.8789 113.388C41.0227 113.637 41.2259 113.83 41.4882 113.965C41.7548 114.097 42.0701 114.162 42.434 114.162C42.798 114.162 43.1111 114.097 43.3735 113.965C43.6359 113.83 43.8369 113.637 43.9765 113.388C44.1204 113.134 44.1923 112.829 44.1923 112.474ZM45.1572 108.164C45.1572 108.612 45.0387 109.016 44.8017 109.376C44.5647 109.736 44.241 110.019 43.8305 110.227C43.42 110.434 42.9545 110.538 42.434 110.538C41.9051 110.538 41.4332 110.434 41.0185 110.227C40.608 110.019 40.2864 109.736 40.0537 109.376C39.8209 109.016 39.7045 108.612 39.7045 108.164C39.7045 107.626 39.8209 107.169 40.0537 106.792C40.2906 106.416 40.6144 106.128 41.0248 105.929C41.4353 105.73 41.9029 105.631 42.4277 105.631C42.9567 105.631 43.4264 105.73 43.8369 105.929C44.2473 106.128 44.569 106.416 44.8017 106.792C45.0387 107.169 45.1572 107.626 45.1572 108.164ZM43.9829 108.183C43.9829 107.874 43.9173 107.601 43.7861 107.364C43.6549 107.127 43.4729 106.941 43.2402 106.805C43.0074 106.666 42.7366 106.596 42.4277 106.596C42.1188 106.596 41.8479 106.661 41.6152 106.792C41.3867 106.919 41.2068 107.101 41.0756 107.338C40.9487 107.575 40.8852 107.857 40.8852 108.183C40.8852 108.5 40.9487 108.777 41.0756 109.014C41.2068 109.251 41.3888 109.435 41.6215 109.566C41.8543 109.698 42.1251 109.763 42.434 109.763C42.7429 109.763 43.0117 109.698 43.2402 109.566C43.4729 109.435 43.6549 109.251 43.7861 109.014C43.9173 108.777 43.9829 108.5 43.9829 108.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M115.427 114.035V115H109.378V114.156L112.405 110.785C112.778 110.37 113.066 110.019 113.269 109.731C113.476 109.439 113.62 109.179 113.7 108.951C113.785 108.718 113.827 108.481 113.827 108.24C113.827 107.935 113.764 107.66 113.637 107.415C113.514 107.165 113.332 106.966 113.091 106.818C112.85 106.67 112.558 106.596 112.215 106.596C111.805 106.596 111.462 106.676 111.187 106.837C110.916 106.993 110.713 107.214 110.577 107.497C110.442 107.781 110.374 108.106 110.374 108.475H109.2C109.2 107.954 109.314 107.478 109.543 107.046C109.771 106.615 110.11 106.272 110.558 106.018C111.007 105.76 111.559 105.631 112.215 105.631C112.799 105.631 113.298 105.735 113.713 105.942C114.128 106.145 114.445 106.433 114.665 106.805C114.89 107.173 115.002 107.605 115.002 108.1C115.002 108.371 114.955 108.646 114.862 108.925C114.773 109.2 114.648 109.475 114.487 109.75C114.331 110.026 114.147 110.296 113.935 110.563C113.728 110.83 113.506 111.092 113.269 111.35L110.793 114.035H115.427Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M189.098 111.89V112.854H182.421V112.163L186.559 105.758H187.518L186.489 107.611L183.754 111.89H189.098ZM187.81 105.758V115H186.635V105.758H187.81Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.841 105.745H260.942V106.742H260.841C260.219 106.742 259.698 106.843 259.279 107.046C258.86 107.245 258.528 107.514 258.283 107.853C258.037 108.187 257.859 108.563 257.749 108.982C257.644 109.401 257.591 109.827 257.591 110.258V111.617C257.591 112.027 257.639 112.391 257.737 112.708C257.834 113.022 257.967 113.286 258.137 113.502C258.306 113.718 258.496 113.881 258.708 113.991C258.924 114.101 259.148 114.156 259.381 114.156C259.652 114.156 259.893 114.105 260.104 114.003C260.316 113.898 260.494 113.752 260.638 113.565C260.786 113.375 260.898 113.151 260.974 112.893C261.05 112.634 261.088 112.351 261.088 112.042C261.088 111.767 261.054 111.502 260.987 111.249C260.919 110.99 260.815 110.762 260.676 110.563C260.536 110.36 260.36 110.201 260.149 110.087C259.942 109.968 259.694 109.909 259.406 109.909C259.08 109.909 258.776 109.99 258.492 110.15C258.213 110.307 257.982 110.514 257.8 110.772C257.623 111.026 257.521 111.304 257.496 111.604L256.873 111.598C256.933 111.124 257.043 110.72 257.204 110.385C257.369 110.047 257.572 109.772 257.813 109.56C258.058 109.344 258.331 109.188 258.632 109.09C258.936 108.989 259.258 108.938 259.597 108.938C260.058 108.938 260.456 109.025 260.79 109.198C261.124 109.372 261.399 109.604 261.615 109.896C261.831 110.184 261.99 110.51 262.091 110.874C262.197 111.234 262.25 111.604 262.25 111.985C262.25 112.421 262.189 112.829 262.066 113.21C261.943 113.591 261.759 113.925 261.514 114.213C261.272 114.501 260.974 114.725 260.619 114.886C260.263 115.047 259.851 115.127 259.381 115.127C258.881 115.127 258.446 115.025 258.073 114.822C257.701 114.615 257.392 114.34 257.146 113.997C256.901 113.654 256.717 113.273 256.594 112.854C256.471 112.436 256.41 112.01 256.41 111.579V111.026C256.41 110.375 256.476 109.736 256.607 109.109C256.738 108.483 256.964 107.916 257.286 107.408C257.612 106.9 258.063 106.496 258.638 106.196C259.214 105.895 259.948 105.745 260.841 105.745Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M76.4897 105.707V115H75.3154V107.173L72.9477 108.037V106.977L76.3056 105.707H76.4897Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M147.826 109.801H148.664C149.074 109.801 149.413 109.734 149.679 109.598C149.95 109.458 150.151 109.27 150.282 109.033C150.418 108.792 150.486 108.521 150.486 108.221C150.486 107.865 150.426 107.567 150.308 107.326C150.189 107.084 150.012 106.903 149.775 106.78C149.538 106.657 149.237 106.596 148.873 106.596C148.543 106.596 148.251 106.661 147.997 106.792C147.748 106.919 147.551 107.101 147.407 107.338C147.267 107.575 147.197 107.855 147.197 108.176H146.023C146.023 107.707 146.142 107.279 146.379 106.894C146.616 106.509 146.948 106.202 147.375 105.974C147.807 105.745 148.306 105.631 148.873 105.631C149.432 105.631 149.921 105.73 150.34 105.929C150.758 106.124 151.084 106.416 151.317 106.805C151.55 107.19 151.666 107.671 151.666 108.246C151.666 108.479 151.611 108.729 151.501 108.995C151.395 109.257 151.228 109.503 151 109.731C150.775 109.96 150.483 110.148 150.124 110.296C149.764 110.44 149.332 110.512 148.829 110.512H147.826V109.801ZM147.826 110.766V110.062H148.829C149.417 110.062 149.904 110.131 150.289 110.271C150.674 110.411 150.976 110.597 151.196 110.83C151.421 111.062 151.577 111.318 151.666 111.598C151.759 111.873 151.806 112.148 151.806 112.423C151.806 112.854 151.732 113.237 151.584 113.572C151.44 113.906 151.235 114.19 150.968 114.422C150.706 114.655 150.397 114.831 150.041 114.949C149.686 115.068 149.299 115.127 148.88 115.127C148.478 115.127 148.099 115.07 147.743 114.956C147.392 114.841 147.081 114.676 146.81 114.46C146.539 114.24 146.328 113.972 146.175 113.654C146.023 113.333 145.947 112.967 145.947 112.556H147.121C147.121 112.878 147.191 113.159 147.331 113.4C147.475 113.642 147.678 113.83 147.94 113.965C148.207 114.097 148.52 114.162 148.88 114.162C149.239 114.162 149.548 114.101 149.806 113.978C150.069 113.851 150.27 113.661 150.409 113.407C150.553 113.153 150.625 112.833 150.625 112.448C150.625 112.063 150.545 111.748 150.384 111.502C150.223 111.253 149.995 111.069 149.698 110.95C149.406 110.827 149.062 110.766 148.664 110.766H147.826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M221.104 110.792L219.644 110.442L220.171 105.758H225.363V107.237H221.675L221.447 109.287C221.569 109.215 221.756 109.139 222.005 109.059C222.255 108.974 222.534 108.932 222.843 108.932C223.292 108.932 223.689 109.001 224.036 109.141C224.383 109.281 224.678 109.484 224.919 109.75C225.164 110.017 225.35 110.343 225.477 110.728C225.604 111.113 225.668 111.549 225.668 112.036C225.668 112.446 225.604 112.838 225.477 113.21C225.35 113.578 225.158 113.908 224.9 114.2C224.642 114.488 224.318 114.714 223.929 114.879C223.539 115.044 223.078 115.127 222.545 115.127C222.147 115.127 221.762 115.068 221.389 114.949C221.021 114.831 220.689 114.655 220.393 114.422C220.101 114.19 219.866 113.908 219.688 113.578C219.515 113.244 219.424 112.863 219.415 112.436H221.231C221.256 112.698 221.324 112.924 221.434 113.115C221.548 113.301 221.698 113.445 221.885 113.546C222.071 113.648 222.289 113.699 222.538 113.699C222.771 113.699 222.97 113.654 223.135 113.565C223.3 113.477 223.433 113.354 223.535 113.197C223.637 113.036 223.711 112.85 223.757 112.639C223.808 112.423 223.833 112.19 223.833 111.94C223.833 111.691 223.804 111.464 223.744 111.261C223.685 111.058 223.594 110.882 223.472 110.734C223.349 110.586 223.192 110.472 223.002 110.392C222.816 110.311 222.598 110.271 222.348 110.271C222.009 110.271 221.747 110.324 221.561 110.43C221.379 110.535 221.227 110.656 221.104 110.792Z",fill:"white"}),(0,h.createElement)("path",{d:"M41.8627 128.758V129.418L38.0351 138H36.7973L40.6186 129.723H35.6166V128.758H41.8627Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M110.539 137.016H110.66C111.337 137.016 111.887 136.921 112.31 136.73C112.733 136.54 113.059 136.284 113.288 135.962C113.516 135.641 113.673 135.279 113.758 134.877C113.842 134.471 113.884 134.054 113.884 133.626V132.211C113.884 131.792 113.836 131.42 113.738 131.094C113.645 130.768 113.514 130.495 113.345 130.275C113.18 130.055 112.992 129.888 112.78 129.773C112.568 129.659 112.344 129.602 112.107 129.602C111.836 129.602 111.593 129.657 111.377 129.767C111.166 129.873 110.986 130.023 110.838 130.218C110.694 130.412 110.584 130.641 110.508 130.903C110.431 131.166 110.393 131.451 110.393 131.76C110.393 132.035 110.427 132.302 110.495 132.56C110.563 132.818 110.666 133.051 110.806 133.258C110.946 133.466 111.119 133.631 111.326 133.753C111.538 133.872 111.786 133.931 112.069 133.931C112.331 133.931 112.577 133.88 112.805 133.779C113.038 133.673 113.243 133.531 113.421 133.354C113.603 133.172 113.747 132.966 113.853 132.738C113.963 132.509 114.026 132.27 114.043 132.021H114.602C114.602 132.372 114.532 132.719 114.392 133.062C114.257 133.4 114.066 133.709 113.821 133.988C113.576 134.268 113.288 134.492 112.958 134.661C112.628 134.826 112.268 134.909 111.879 134.909C111.422 134.909 111.026 134.82 110.692 134.642C110.357 134.464 110.082 134.227 109.866 133.931C109.655 133.635 109.496 133.305 109.39 132.941C109.289 132.573 109.238 132.2 109.238 131.824C109.238 131.384 109.299 130.971 109.422 130.586C109.545 130.201 109.727 129.862 109.968 129.57C110.209 129.274 110.508 129.043 110.863 128.878C111.223 128.713 111.637 128.631 112.107 128.631C112.636 128.631 113.087 128.737 113.459 128.948C113.832 129.16 114.134 129.443 114.367 129.799C114.604 130.154 114.777 130.554 114.887 130.999C114.997 131.443 115.052 131.9 115.052 132.37V132.795C115.052 133.273 115.021 133.76 114.957 134.255C114.898 134.746 114.782 135.215 114.608 135.664C114.439 136.113 114.191 136.515 113.865 136.87C113.54 137.221 113.114 137.501 112.59 137.708C112.069 137.911 111.426 138.013 110.66 138.013H110.539V137.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M183.055 128.707V138H181.881V130.173L179.513 131.037V129.977L182.871 128.707H183.055ZM190.368 128.707V138H189.194V130.173L186.826 131.037V129.977L190.184 128.707H190.368Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M256.537 128.707V138H255.363V130.173L252.995 131.037V129.977L256.353 128.707H256.537ZM261.704 132.801H262.542C262.952 132.801 263.291 132.734 263.558 132.598C263.828 132.458 264.029 132.27 264.161 132.033C264.296 131.792 264.364 131.521 264.364 131.221C264.364 130.865 264.304 130.567 264.186 130.326C264.067 130.084 263.89 129.903 263.653 129.78C263.416 129.657 263.115 129.596 262.751 129.596C262.421 129.596 262.129 129.661 261.875 129.792C261.626 129.919 261.429 130.101 261.285 130.338C261.145 130.575 261.076 130.855 261.076 131.176H259.901C259.901 130.707 260.02 130.279 260.257 129.894C260.494 129.509 260.826 129.202 261.253 128.974C261.685 128.745 262.184 128.631 262.751 128.631C263.31 128.631 263.799 128.73 264.218 128.929C264.637 129.124 264.963 129.416 265.195 129.805C265.428 130.19 265.544 130.671 265.544 131.246C265.544 131.479 265.489 131.729 265.379 131.995C265.274 132.257 265.106 132.503 264.878 132.731C264.654 132.96 264.362 133.148 264.002 133.296C263.642 133.44 263.211 133.512 262.707 133.512H261.704V132.801ZM261.704 133.766V133.062H262.707C263.295 133.062 263.782 133.131 264.167 133.271C264.552 133.411 264.855 133.597 265.075 133.83C265.299 134.062 265.456 134.318 265.544 134.598C265.637 134.873 265.684 135.148 265.684 135.423C265.684 135.854 265.61 136.237 265.462 136.572C265.318 136.906 265.113 137.19 264.846 137.422C264.584 137.655 264.275 137.831 263.919 137.949C263.564 138.068 263.177 138.127 262.758 138.127C262.356 138.127 261.977 138.07 261.622 137.956C261.27 137.841 260.959 137.676 260.688 137.46C260.418 137.24 260.206 136.972 260.054 136.654C259.901 136.333 259.825 135.967 259.825 135.556H260.999C260.999 135.878 261.069 136.159 261.209 136.4C261.353 136.642 261.556 136.83 261.818 136.965C262.085 137.097 262.398 137.162 262.758 137.162C263.117 137.162 263.426 137.101 263.685 136.978C263.947 136.851 264.148 136.661 264.288 136.407C264.431 136.153 264.503 135.833 264.503 135.448C264.503 135.063 264.423 134.748 264.262 134.502C264.101 134.253 263.873 134.069 263.577 133.95C263.285 133.827 262.94 133.766 262.542 133.766H261.704Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M78.4575 135.499C78.4575 136.062 78.3263 136.54 78.0639 136.934C77.8058 137.323 77.4545 137.619 77.0102 137.822C76.5701 138.025 76.0729 138.127 75.5185 138.127C74.9641 138.127 74.4648 138.025 74.0205 137.822C73.5761 137.619 73.2249 137.323 72.9667 136.934C72.7086 136.54 72.5795 136.062 72.5795 135.499C72.5795 135.131 72.6494 134.794 72.789 134.49C72.9329 134.181 73.1339 133.912 73.392 133.684C73.6544 133.455 73.9633 133.279 74.3188 133.157C74.6785 133.03 75.0742 132.966 75.5058 132.966C76.0729 132.966 76.5786 133.076 77.0229 133.296C77.4672 133.512 77.8164 133.811 78.0703 134.191C78.3284 134.572 78.4575 135.008 78.4575 135.499ZM77.2768 135.474C77.2768 135.131 77.2027 134.828 77.0546 134.566C76.9065 134.299 76.6992 134.092 76.4326 133.944C76.166 133.796 75.857 133.722 75.5058 133.722C75.1461 133.722 74.8351 133.796 74.5727 133.944C74.3146 134.092 74.1136 134.299 73.9697 134.566C73.8258 134.828 73.7539 135.131 73.7539 135.474C73.7539 135.829 73.8237 136.134 73.9633 136.388C74.1072 136.637 74.3103 136.83 74.5727 136.965C74.8393 137.097 75.1546 137.162 75.5185 137.162C75.8824 137.162 76.1956 137.097 76.458 136.965C76.7203 136.83 76.9213 136.637 77.061 136.388C77.2049 136.134 77.2768 135.829 77.2768 135.474ZM78.2416 131.164C78.2416 131.612 78.1232 132.016 77.8862 132.376C77.6492 132.736 77.3255 133.019 76.915 133.227C76.5045 133.434 76.039 133.538 75.5185 133.538C74.9895 133.538 74.5177 133.434 74.103 133.227C73.6925 133.019 73.3709 132.736 73.1381 132.376C72.9054 132.016 72.789 131.612 72.789 131.164C72.789 130.626 72.9054 130.169 73.1381 129.792C73.3751 129.416 73.6988 129.128 74.1093 128.929C74.5198 128.73 74.9874 128.631 75.5122 128.631C76.0411 128.631 76.5109 128.73 76.9213 128.929C77.3318 129.128 77.6534 129.416 77.8862 129.792C78.1232 130.169 78.2416 130.626 78.2416 131.164ZM77.0673 131.183C77.0673 130.874 77.0017 130.601 76.8706 130.364C76.7394 130.127 76.5574 129.941 76.3247 129.805C76.0919 129.666 75.8211 129.596 75.5122 129.596C75.2032 129.596 74.9324 129.661 74.6997 129.792C74.4711 129.919 74.2913 130.101 74.1601 130.338C74.0331 130.575 73.9697 130.857 73.9697 131.183C73.9697 131.5 74.0331 131.777 74.1601 132.014C74.2913 132.251 74.4733 132.435 74.706 132.566C74.9387 132.698 75.2096 132.763 75.5185 132.763C75.8274 132.763 76.0961 132.698 76.3247 132.566C76.5574 132.435 76.7394 132.251 76.8706 132.014C77.0017 131.777 77.0673 131.5 77.0673 131.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M146.315 128.707V138H145.141V130.173L142.773 131.037V129.977L146.131 128.707H146.315ZM155.57 132.643V134.052C155.57 134.809 155.502 135.448 155.367 135.969C155.231 136.489 155.037 136.908 154.783 137.226C154.529 137.543 154.222 137.774 153.862 137.917C153.507 138.057 153.105 138.127 152.656 138.127C152.301 138.127 151.973 138.083 151.673 137.994C151.372 137.905 151.101 137.763 150.86 137.568C150.623 137.369 150.42 137.111 150.251 136.794C150.081 136.477 149.952 136.091 149.863 135.639C149.775 135.186 149.73 134.657 149.73 134.052V132.643C149.73 131.885 149.798 131.25 149.933 130.738C150.073 130.226 150.27 129.816 150.524 129.507C150.778 129.194 151.082 128.969 151.438 128.834C151.797 128.699 152.199 128.631 152.644 128.631C153.003 128.631 153.334 128.675 153.634 128.764C153.939 128.849 154.209 128.986 154.446 129.177C154.683 129.363 154.884 129.613 155.05 129.926C155.219 130.235 155.348 130.613 155.437 131.062C155.526 131.511 155.57 132.037 155.57 132.643ZM154.389 134.242V132.446C154.389 132.031 154.364 131.667 154.313 131.354C154.267 131.037 154.197 130.766 154.104 130.542C154.011 130.317 153.892 130.135 153.748 129.996C153.609 129.856 153.446 129.754 153.259 129.691C153.078 129.623 152.872 129.589 152.644 129.589C152.364 129.589 152.117 129.642 151.901 129.748C151.685 129.85 151.503 130.013 151.355 130.237C151.211 130.461 151.101 130.755 151.025 131.119C150.949 131.483 150.911 131.925 150.911 132.446V134.242C150.911 134.657 150.934 135.023 150.981 135.34C151.031 135.658 151.105 135.933 151.203 136.166C151.3 136.394 151.419 136.582 151.558 136.73C151.698 136.879 151.859 136.989 152.041 137.061C152.227 137.128 152.432 137.162 152.656 137.162C152.944 137.162 153.196 137.107 153.412 136.997C153.628 136.887 153.807 136.716 153.951 136.483C154.099 136.246 154.209 135.943 154.281 135.575C154.353 135.203 154.389 134.758 154.389 134.242Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M219.796 128.707V138H218.622V130.173L216.254 131.037V129.977L219.612 128.707H219.796ZM229.305 137.035V138H223.256V137.156L226.284 133.785C226.656 133.37 226.944 133.019 227.147 132.731C227.354 132.439 227.498 132.179 227.578 131.951C227.663 131.718 227.705 131.481 227.705 131.24C227.705 130.935 227.642 130.66 227.515 130.415C227.392 130.165 227.21 129.966 226.969 129.818C226.728 129.67 226.436 129.596 226.093 129.596C225.683 129.596 225.34 129.676 225.065 129.837C224.794 129.993 224.591 130.214 224.455 130.497C224.32 130.781 224.252 131.106 224.252 131.475H223.078C223.078 130.954 223.192 130.478 223.421 130.046C223.649 129.615 223.988 129.272 224.436 129.018C224.885 128.76 225.437 128.631 226.093 128.631C226.677 128.631 227.176 128.735 227.591 128.942C228.006 129.145 228.323 129.433 228.543 129.805C228.768 130.173 228.88 130.605 228.88 131.1C228.88 131.371 228.833 131.646 228.74 131.925C228.651 132.2 228.526 132.475 228.366 132.75C228.209 133.026 228.025 133.296 227.813 133.563C227.606 133.83 227.384 134.092 227.147 134.35L224.671 137.035H229.305Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1407"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1407"},(0,h.createElement)("rect",{width:"13",height:"13",fill:"white",transform:"translate(96 56)"})))),{ToolBarFields:vl,BlockLabel:_l,BlockName:kl,BlockDescription:jl,BlockAdvancedValue:xl,AdvancedFields:Fl,FieldWrapper:Bl,FieldSettingsWrapper:Al,AdvancedInspectorControl:Pl,ClientSideMacros:Sl,ValidationToggleGroup:Nl,ValidationBlockMessage:Il,AttributeHelp:Tl}=JetFBComponents,{useInsertMacro:Ol,useIsAdvancedValidation:Jl,useUniqueNameOnDuplicate:Rl}=JetFBHooks,{__:ql}=wp.i18n,{InspectorControls:Dl,useBlockProps:zl}=wp.blockEditor,{TextControl:Ul,ToggleControl:Gl,PanelBody:Wl,__experimentalInputControl:Kl,ExternalLink:$l}=wp.components;let{InputControl:Yl}=wp.components;void 0===Yl&&(Yl=Kl);const Xl=JSON.parse('{"apiVersion":3,"name":"jet-forms/date-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","date"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Date Field","icon":"\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":"string","default":"","jfb":{"macro":true,"dynamic":true}},"max":{"type":"string","default":""},"is_timestamp":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Ql}=wp.i18n,{createBlock:er}=wp.blocks,{name:Cr,icon:tr=""}=Xl,lr={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:tr}}),description:Ql("Insert the date manually with Date Field, utilizing a drop-down calendar to choose the date from there conveniently.","jet-form-builder"),edit:function(e){const C=zl(),[t,l]=Ol("min"),[r,n]=Ol("max"),{attributes:a,isSelected:i,setAttributes:o,editProps:{uniqKey:s,blockName:c,attrHelp:d}}=e,m=Jl();if(Rl(),a.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},wl);const u=(0,h.createElement)(h.Fragment,null,ql("Plain date should be in yyyy-mm-dd format.","jet-form-builder")," ",ql("Or you can use","jet-form-builder")," ",(0,h.createElement)($l,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},ql("macros","jet-form-builder"))," ",ql("and","jet-form-builder")," ",(0,h.createElement)($l,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},ql("filters","jet-form-builder")),".");return[(0,h.createElement)(vl,{key:s("JetForm-toolbar"),...e}),i&&(0,h.createElement)(Dl,{key:s("InspectorControls")},(0,h.createElement)(Wl,{title:ql("General","jet-form-builder")},(0,h.createElement)(_l,null),(0,h.createElement)(kl,null),(0,h.createElement)(jl,null)),(0,h.createElement)(Wl,{title:ql("Value","jet-form-builder")},(0,h.createElement)(xl,{help:u,style:{marginBottom:"1em"}}),(0,h.createElement)(Sl,null,(0,h.createElement)(Pl,{value:a.min,label:ql("Starting from date","jet-form-builder"),onChangePreset:e=>o({min:e}),onChangeMacros:l},(({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ul,{id:e,ref:t,className:"jet-fb m-unset",value:a.min,onChange:e=>o({min:e})}),(0,h.createElement)(Tl,null,u)))),(0,h.createElement)(Pl,{value:a.max,label:ql("Limit dates to","jet-form-builder"),onChangePreset:e=>o({max:e}),onChangeMacros:n},(({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ul,{id:e,ref:r,className:"jet-fb m-unset",value:a.max,onChange:e=>o({max:e})}),(0,h.createElement)(Tl,null,u)))))),(0,h.createElement)(Al,{...e},(0,h.createElement)(Gl,{key:"is_timestamp",label:ql("Is Timestamp","jet-form-builder"),checked:a.is_timestamp,help:d("is_timestamp"),onChange:e=>{o({is_timestamp:Boolean(e)})}})),(0,h.createElement)(Wl,{title:ql("Validation","jet-form-builder")},(0,h.createElement)(Nl,null),m&&(0,h.createElement)(h.Fragment,null,Boolean(a.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Il,{name:"date_min"})),Boolean(a.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Il,{name:"date_max"})),(0,h.createElement)(Il,{name:"empty"}))),(0,h.createElement)(Fl,null)),(0,h.createElement)("div",{...C,key:s("viewBlock")},(0,h.createElement)(Bl,{key:s("FieldWrapper"),...e},(0,h.createElement)(Ul,{onChange:()=>{},className:"jet-form-builder__field-preview",key:`place_holder_block_${c}`,placeholder:'Input type="date"'})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>er("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/time-field","jet-forms/datetime-field"],transform:e=>er(Cr,{...e}),priority:0}]}},rr=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_75_1425)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M31.5698 29.1426V30.5518C31.5698 31.3092 31.5021 31.9482 31.3667 32.4688C31.2313 32.9893 31.0366 33.4082 30.7827 33.7256C30.5288 34.043 30.222 34.2736 29.8623 34.4175C29.5068 34.5571 29.1048 34.627 28.6562 34.627C28.3008 34.627 27.9728 34.5825 27.6724 34.4937C27.3719 34.4048 27.1011 34.263 26.8599 34.0684C26.6229 33.8695 26.4198 33.6113 26.2505 33.2939C26.0812 32.9766 25.9521 32.5915 25.8633 32.1387C25.7744 31.6859 25.73 31.1569 25.73 30.5518V29.1426C25.73 28.3851 25.7977 27.7503 25.9331 27.2383C26.0728 26.7262 26.2695 26.3158 26.5234 26.0068C26.7773 25.6937 27.082 25.4694 27.4375 25.334C27.7972 25.1986 28.1992 25.1309 28.6436 25.1309C29.0033 25.1309 29.3333 25.1753 29.6338 25.2642C29.9385 25.3488 30.2093 25.4863 30.4463 25.6768C30.6833 25.863 30.8843 26.1126 31.0493 26.4258C31.2186 26.7347 31.3477 27.1134 31.4365 27.562C31.5254 28.0106 31.5698 28.5374 31.5698 29.1426ZM30.3892 30.7422V28.9458C30.3892 28.5311 30.3638 28.1672 30.313 27.854C30.2664 27.5366 30.1966 27.2658 30.1035 27.0415C30.0104 26.8172 29.8919 26.6353 29.748 26.4956C29.6084 26.356 29.4455 26.2544 29.2593 26.1909C29.0773 26.1232 28.8721 26.0894 28.6436 26.0894C28.3643 26.0894 28.1167 26.1423 27.9009 26.248C27.6851 26.3496 27.5031 26.5125 27.355 26.7368C27.2111 26.9611 27.1011 27.2552 27.0249 27.6191C26.9487 27.9831 26.9106 28.4253 26.9106 28.9458V30.7422C26.9106 31.1569 26.9339 31.5229 26.9805 31.8403C27.0312 32.1577 27.1053 32.4328 27.2026 32.6655C27.3 32.894 27.4185 33.0824 27.5581 33.2305C27.6978 33.3786 27.8586 33.4886 28.0405 33.5605C28.2267 33.6283 28.432 33.6621 28.6562 33.6621C28.944 33.6621 29.1958 33.6071 29.4116 33.4971C29.6274 33.387 29.8073 33.2157 29.9512 32.9829C30.0993 32.7459 30.2093 32.4434 30.2812 32.0752C30.3532 31.7028 30.3892 31.2585 30.3892 30.7422ZM34.7944 29.3013H35.6323C36.0428 29.3013 36.3813 29.2336 36.6479 29.0981C36.9188 28.9585 37.1198 28.7702 37.251 28.5332C37.3864 28.292 37.4541 28.0212 37.4541 27.7207C37.4541 27.3652 37.3949 27.0669 37.2764 26.8257C37.1579 26.5845 36.9801 26.4025 36.7432 26.2798C36.5062 26.1571 36.2057 26.0957 35.8418 26.0957C35.5117 26.0957 35.2197 26.1613 34.9658 26.2925C34.7161 26.4194 34.5194 26.6014 34.3755 26.8384C34.2358 27.0754 34.166 27.3547 34.166 27.6763H32.9917C32.9917 27.2065 33.1102 26.7791 33.3472 26.394C33.5841 26.009 33.9163 25.7021 34.3438 25.4736C34.7754 25.2451 35.2747 25.1309 35.8418 25.1309C36.4004 25.1309 36.8892 25.2303 37.3081 25.4292C37.7271 25.6239 38.0529 25.9159 38.2856 26.3052C38.5184 26.6903 38.6348 27.1706 38.6348 27.7461C38.6348 27.9788 38.5798 28.2285 38.4697 28.4951C38.3639 28.7575 38.1968 29.0029 37.9683 29.2314C37.744 29.46 37.452 29.6483 37.0923 29.7964C36.7326 29.9403 36.3009 30.0122 35.7974 30.0122H34.7944V29.3013ZM34.7944 30.2661V29.5615H35.7974C36.3856 29.5615 36.8722 29.6313 37.2573 29.771C37.6424 29.9106 37.945 30.0968 38.165 30.3296C38.3893 30.5623 38.5459 30.8184 38.6348 31.0977C38.7279 31.3727 38.7744 31.6478 38.7744 31.9229C38.7744 32.3545 38.7004 32.7375 38.5522 33.0718C38.4084 33.4061 38.2031 33.6896 37.9365 33.9224C37.6742 34.1551 37.3652 34.3307 37.0098 34.4492C36.6543 34.5677 36.2671 34.627 35.8481 34.627C35.4461 34.627 35.0674 34.5698 34.7119 34.4556C34.3607 34.3413 34.0496 34.1763 33.7788 33.9604C33.508 33.7404 33.2964 33.4717 33.144 33.1543C32.9917 32.8327 32.9155 32.4666 32.9155 32.0562H34.0898C34.0898 32.3778 34.1597 32.6592 34.2993 32.9004C34.4432 33.1416 34.6463 33.3299 34.9087 33.4653C35.1753 33.5965 35.4884 33.6621 35.8481 33.6621C36.2078 33.6621 36.5168 33.6007 36.7749 33.478C37.0373 33.3511 37.2383 33.1606 37.3779 32.9067C37.5218 32.6528 37.5938 32.3333 37.5938 31.9482C37.5938 31.5632 37.5133 31.2479 37.3525 31.0024C37.1917 30.7528 36.9632 30.5687 36.667 30.4502C36.375 30.3275 36.0301 30.2661 35.6323 30.2661H34.7944Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M46.9829 25.2578L43.1299 35.2935H42.1206L45.98 25.2578H46.9829Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"50",y:"20.5",width:"19",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M57.2241 33.167V24.75H58.4048V34.5H57.3257L57.2241 33.167ZM52.603 31.1421V31.0088C52.603 30.484 52.6665 30.008 52.7935 29.5806C52.9246 29.1489 53.1087 28.7786 53.3457 28.4697C53.5869 28.1608 53.8726 27.9238 54.2026 27.7588C54.5369 27.5895 54.9093 27.5049 55.3198 27.5049C55.7515 27.5049 56.1281 27.5811 56.4497 27.7334C56.7756 27.8815 57.0506 28.0994 57.2749 28.3872C57.5034 28.6707 57.6833 29.0135 57.8145 29.4155C57.9456 29.8175 58.0366 30.2725 58.0874 30.7803V31.3643C58.0409 31.8678 57.9499 32.3206 57.8145 32.7227C57.6833 33.1247 57.5034 33.4674 57.2749 33.751C57.0506 34.0345 56.7756 34.2524 56.4497 34.4048C56.1239 34.5529 55.743 34.627 55.3071 34.627C54.9051 34.627 54.5369 34.5402 54.2026 34.3667C53.8726 34.1932 53.5869 33.9499 53.3457 33.6367C53.1087 33.3236 52.9246 32.9554 52.7935 32.5322C52.6665 32.1048 52.603 31.6414 52.603 31.1421ZM53.7837 31.0088V31.1421C53.7837 31.4849 53.8175 31.8065 53.8853 32.1069C53.9572 32.4074 54.0672 32.6719 54.2153 32.9004C54.3634 33.1289 54.5518 33.3088 54.7803 33.4399C55.0088 33.5669 55.2817 33.6304 55.5991 33.6304C55.9884 33.6304 56.3079 33.5479 56.5576 33.3828C56.8115 33.2178 57.0146 32.9998 57.167 32.729C57.3193 32.4582 57.4378 32.1641 57.5225 31.8467V30.3169C57.4717 30.0841 57.3976 29.8599 57.3003 29.644C57.2072 29.424 57.0845 29.2293 56.9321 29.0601C56.784 28.8866 56.5999 28.749 56.3799 28.6475C56.1641 28.5459 55.908 28.4951 55.6118 28.4951C55.2902 28.4951 55.013 28.5628 54.7803 28.6982C54.5518 28.8294 54.3634 29.0114 54.2153 29.2441C54.0672 29.4727 53.9572 29.7393 53.8853 30.0439C53.8175 30.3444 53.7837 30.666 53.7837 31.0088ZM64.562 33.167V24.75H65.7427V34.5H64.6636L64.562 33.167ZM59.9409 31.1421V31.0088C59.9409 30.484 60.0044 30.008 60.1313 29.5806C60.2625 29.1489 60.4466 28.7786 60.6836 28.4697C60.9248 28.1608 61.2104 27.9238 61.5405 27.7588C61.8748 27.5895 62.2472 27.5049 62.6577 27.5049C63.0894 27.5049 63.466 27.5811 63.7876 27.7334C64.1134 27.8815 64.3885 28.0994 64.6128 28.3872C64.8413 28.6707 65.0212 29.0135 65.1523 29.4155C65.2835 29.8175 65.3745 30.2725 65.4253 30.7803V31.3643C65.3787 31.8678 65.2878 32.3206 65.1523 32.7227C65.0212 33.1247 64.8413 33.4674 64.6128 33.751C64.3885 34.0345 64.1134 34.2524 63.7876 34.4048C63.4618 34.5529 63.0809 34.627 62.645 34.627C62.243 34.627 61.8748 34.5402 61.5405 34.3667C61.2104 34.1932 60.9248 33.9499 60.6836 33.6367C60.4466 33.3236 60.2625 32.9554 60.1313 32.5322C60.0044 32.1048 59.9409 31.6414 59.9409 31.1421ZM61.1216 31.0088V31.1421C61.1216 31.4849 61.1554 31.8065 61.2231 32.1069C61.2951 32.4074 61.4051 32.6719 61.5532 32.9004C61.7013 33.1289 61.8896 33.3088 62.1182 33.4399C62.3467 33.5669 62.6196 33.6304 62.937 33.6304C63.3263 33.6304 63.6458 33.5479 63.8955 33.3828C64.1494 33.2178 64.3525 32.9998 64.5049 32.729C64.6572 32.4582 64.7757 32.1641 64.8604 31.8467V30.3169C64.8096 30.0841 64.7355 29.8599 64.6382 29.644C64.5451 29.424 64.4224 29.2293 64.27 29.0601C64.1219 28.8866 63.9378 28.749 63.7178 28.6475C63.502 28.5459 63.2459 28.4951 62.9497 28.4951C62.6281 28.4951 62.3509 28.5628 62.1182 28.6982C61.8896 28.8294 61.7013 29.0114 61.5532 29.2441C61.4051 29.4727 61.2951 29.7393 61.2231 30.0439C61.1554 30.3444 61.1216 30.666 61.1216 31.0088Z",fill:"white"}),(0,h.createElement)("path",{d:"M75.9829 25.2578L72.1299 35.2935H71.1206L74.98 25.2578H75.9829Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M81.8247 33.7891L83.7354 27.6318H84.9922L82.2373 35.5601C82.1738 35.7293 82.0892 35.9113 81.9834 36.106C81.8818 36.3049 81.7507 36.4932 81.5898 36.6709C81.429 36.8486 81.2344 36.9925 81.0059 37.1025C80.7816 37.2168 80.5129 37.2739 80.1997 37.2739C80.1066 37.2739 79.9881 37.2612 79.8442 37.2358C79.7004 37.2104 79.5988 37.1893 79.5396 37.1724L79.5332 36.2202C79.5671 36.2244 79.62 36.2287 79.6919 36.2329C79.7681 36.2414 79.821 36.2456 79.8506 36.2456C80.1172 36.2456 80.3436 36.2096 80.5298 36.1377C80.716 36.07 80.8726 35.9536 80.9995 35.7886C81.1307 35.6278 81.2428 35.4056 81.3359 35.1221L81.8247 33.7891ZM80.4219 27.6318L82.2056 32.9639L82.5103 34.2017L81.666 34.6333L79.1396 27.6318H80.4219ZM87.9819 33.7891L89.8926 27.6318H91.1494L88.3945 35.5601C88.3311 35.7293 88.2464 35.9113 88.1406 36.106C88.0391 36.3049 87.9079 36.4932 87.7471 36.6709C87.5863 36.8486 87.3916 36.9925 87.1631 37.1025C86.9388 37.2168 86.6701 37.2739 86.3569 37.2739C86.2638 37.2739 86.1453 37.2612 86.0015 37.2358C85.8576 37.2104 85.756 37.1893 85.6968 37.1724L85.6904 36.2202C85.7243 36.2244 85.7772 36.2287 85.8491 36.2329C85.9253 36.2414 85.9782 36.2456 86.0078 36.2456C86.2744 36.2456 86.5008 36.2096 86.687 36.1377C86.8732 36.07 87.0298 35.9536 87.1567 35.7886C87.2879 35.6278 87.4001 35.4056 87.4932 35.1221L87.9819 33.7891ZM86.5791 27.6318L88.3628 32.9639L88.6675 34.2017L87.8232 34.6333L85.2969 27.6318H86.5791ZM94.1392 33.7891L96.0498 27.6318H97.3066L94.5518 35.5601C94.4883 35.7293 94.4036 35.9113 94.2979 36.106C94.1963 36.3049 94.0651 36.4932 93.9043 36.6709C93.7435 36.8486 93.5488 36.9925 93.3203 37.1025C93.096 37.2168 92.8273 37.2739 92.5142 37.2739C92.4211 37.2739 92.3026 37.2612 92.1587 37.2358C92.0148 37.2104 91.9132 37.1893 91.854 37.1724L91.8477 36.2202C91.8815 36.2244 91.9344 36.2287 92.0063 36.2329C92.0825 36.2414 92.1354 36.2456 92.165 36.2456C92.4316 36.2456 92.658 36.2096 92.8442 36.1377C93.0304 36.07 93.187 35.9536 93.314 35.7886C93.4451 35.6278 93.5573 35.4056 93.6504 35.1221L94.1392 33.7891ZM92.7363 27.6318L94.52 32.9639L94.8247 34.2017L93.9805 34.6333L91.4541 27.6318H92.7363ZM100.296 33.7891L102.207 27.6318H103.464L100.709 35.5601C100.646 35.7293 100.561 35.9113 100.455 36.106C100.354 36.3049 100.222 36.4932 100.062 36.6709C99.9007 36.8486 99.7061 36.9925 99.4775 37.1025C99.2533 37.2168 98.9845 37.2739 98.6714 37.2739C98.5783 37.2739 98.4598 37.2612 98.3159 37.2358C98.172 37.2104 98.0705 37.1893 98.0112 37.1724L98.0049 36.2202C98.0387 36.2244 98.0916 36.2287 98.1636 36.2329C98.2397 36.2414 98.2926 36.2456 98.3223 36.2456C98.5889 36.2456 98.8153 36.2096 99.0015 36.1377C99.1877 36.07 99.3442 35.9536 99.4712 35.7886C99.6024 35.6278 99.7145 35.4056 99.8076 35.1221L100.296 33.7891ZM98.8936 27.6318L100.677 32.9639L100.982 34.2017L100.138 34.6333L97.6113 27.6318H98.8936Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270 24V38C270 39.1 269.1 40 268 40H254C252.89 40 252 39.1 252 38L252.01 24C252.01 22.9 252.89 22 254 22H255V20H257V22H265V20H267V22H268C269.1 22 270 22.9 270 24ZM254 26H268V24H254V26ZM268 38V28H254V38H268Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"15",y:"45",width:"268",height:"189",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M26.6948 60.7578H28.3071L30.6812 67.5435L33.0552 60.7578H34.6675L31.3286 70H30.0337L26.6948 60.7578ZM25.8252 60.7578H27.4312L27.7231 67.3721V70H25.8252V60.7578ZM33.9312 60.7578H35.5435V70H33.6392V67.3721L33.9312 60.7578ZM40.8057 68.4512V65.3916C40.8057 65.1715 40.7697 64.9832 40.6978 64.8267C40.6258 64.6659 40.5137 64.541 40.3613 64.4521C40.2132 64.3633 40.0207 64.3188 39.7837 64.3188C39.5806 64.3188 39.4049 64.3548 39.2568 64.4268C39.1087 64.4945 38.9945 64.5939 38.9141 64.7251C38.8337 64.8521 38.7935 65.0023 38.7935 65.1758H36.9653C36.9653 64.8838 37.033 64.6066 37.1685 64.3442C37.3039 64.0819 37.5007 63.8512 37.7588 63.6523C38.0169 63.4492 38.3237 63.2905 38.6792 63.1763C39.0389 63.062 39.4409 63.0049 39.8853 63.0049C40.4185 63.0049 40.8924 63.0938 41.3071 63.2715C41.7218 63.4492 42.0477 63.7158 42.2847 64.0713C42.5259 64.4268 42.6465 64.8711 42.6465 65.4043V68.3433C42.6465 68.7199 42.6698 69.0288 42.7163 69.27C42.7629 69.507 42.8306 69.7144 42.9194 69.8921V70H41.0723C40.9834 69.8138 40.9157 69.5811 40.8691 69.3018C40.8268 69.0182 40.8057 68.7347 40.8057 68.4512ZM41.0469 65.8169L41.0596 66.8516H40.0376C39.7964 66.8516 39.5869 66.8791 39.4092 66.9341C39.2314 66.9891 39.0854 67.0674 38.9712 67.1689C38.8569 67.2663 38.7723 67.3805 38.7173 67.5117C38.6665 67.6429 38.6411 67.7868 38.6411 67.9434C38.6411 68.0999 38.6771 68.2417 38.749 68.3687C38.821 68.4914 38.9246 68.5887 39.0601 68.6606C39.1955 68.7284 39.3542 68.7622 39.5361 68.7622C39.8112 68.7622 40.0503 68.7072 40.2534 68.5972C40.4565 68.4871 40.6131 68.3517 40.7231 68.1909C40.8374 68.0301 40.8966 67.8778 40.9009 67.7339L41.3833 68.5083C41.3156 68.6818 41.2225 68.8617 41.104 69.0479C40.9897 69.234 40.8438 69.4097 40.666 69.5747C40.4883 69.7355 40.2746 69.8688 40.0249 69.9746C39.7752 70.0762 39.479 70.127 39.1362 70.127C38.7004 70.127 38.3047 70.0402 37.9492 69.8667C37.598 69.689 37.3187 69.4456 37.1113 69.1367C36.9082 68.8236 36.8066 68.4681 36.8066 68.0703C36.8066 67.7106 36.8743 67.3911 37.0098 67.1118C37.1452 66.8325 37.3441 66.5977 37.6064 66.4072C37.873 66.2126 38.2052 66.0666 38.603 65.9692C39.0008 65.8677 39.4621 65.8169 39.9868 65.8169H41.0469ZM45.8838 64.6299V70H44.0557V63.1318H45.7759L45.8838 64.6299ZM47.9531 63.0874L47.9214 64.7822C47.8325 64.7695 47.7246 64.759 47.5977 64.7505C47.4749 64.7378 47.3628 64.7314 47.2612 64.7314C47.0031 64.7314 46.7788 64.7653 46.5884 64.833C46.4022 64.8965 46.2456 64.9917 46.1187 65.1187C45.9959 65.2456 45.9028 65.4001 45.8394 65.582C45.7801 65.764 45.7463 65.9714 45.7378 66.2041L45.3696 66.0898C45.3696 65.6455 45.4141 65.2371 45.5029 64.8647C45.5918 64.4881 45.7209 64.1602 45.8901 63.8809C46.0636 63.6016 46.2752 63.3857 46.5249 63.2334C46.7746 63.0811 47.0602 63.0049 47.3818 63.0049C47.4834 63.0049 47.5871 63.0133 47.6929 63.0303C47.7987 63.043 47.8854 63.062 47.9531 63.0874ZM51.5269 68.6987C51.7511 68.6987 51.95 68.6564 52.1235 68.5718C52.297 68.4829 52.4325 68.3602 52.5298 68.2036C52.6313 68.0428 52.6842 67.8545 52.6885 67.6387H54.4087C54.4045 68.1211 54.2754 68.5506 54.0215 68.9272C53.7676 69.2996 53.4269 69.5938 52.9995 69.8096C52.5721 70.0212 52.0939 70.127 51.5649 70.127C51.0317 70.127 50.5662 70.0381 50.1685 69.8604C49.7749 69.6826 49.4469 69.4372 49.1846 69.124C48.9222 68.8066 48.7254 68.4385 48.5942 68.0195C48.4631 67.5964 48.3975 67.1436 48.3975 66.6611V66.4771C48.3975 65.9904 48.4631 65.5376 48.5942 65.1187C48.7254 64.6955 48.9222 64.3273 49.1846 64.0142C49.4469 63.6968 49.7749 63.4492 50.1685 63.2715C50.562 63.0938 51.0233 63.0049 51.5522 63.0049C52.1151 63.0049 52.6081 63.1128 53.0312 63.3286C53.4587 63.5444 53.793 63.8534 54.0342 64.2554C54.2796 64.6532 54.4045 65.125 54.4087 65.6709H52.6885C52.6842 65.4424 52.6356 65.235 52.5425 65.0488C52.4536 64.8626 52.3224 64.7145 52.1489 64.6045C51.9797 64.4902 51.7702 64.4331 51.5205 64.4331C51.2539 64.4331 51.036 64.4902 50.8667 64.6045C50.6974 64.7145 50.5662 64.8669 50.4731 65.0615C50.38 65.252 50.3145 65.4699 50.2764 65.7153C50.2425 65.9565 50.2256 66.2104 50.2256 66.4771V66.6611C50.2256 66.9277 50.2425 67.1838 50.2764 67.4292C50.3102 67.6746 50.3737 67.8926 50.4668 68.083C50.5641 68.2734 50.6974 68.4237 50.8667 68.5337C51.036 68.6437 51.256 68.6987 51.5269 68.6987ZM57.2524 60.25V70H55.4243V60.25H57.2524ZM56.9922 66.3247H56.4907C56.495 65.8465 56.5584 65.4064 56.6812 65.0044C56.8039 64.5981 56.9795 64.2469 57.208 63.9507C57.4365 63.6502 57.7095 63.4175 58.0269 63.2524C58.3485 63.0874 58.7039 63.0049 59.0933 63.0049C59.4318 63.0049 59.7386 63.0535 60.0137 63.1509C60.293 63.244 60.5321 63.3963 60.731 63.6079C60.9341 63.8153 61.0907 64.0882 61.2007 64.4268C61.3107 64.7653 61.3657 65.1758 61.3657 65.6582V70H59.5249V65.6455C59.5249 65.3408 59.4805 65.1017 59.3916 64.9282C59.307 64.7505 59.1821 64.6257 59.0171 64.5537C58.8563 64.4775 58.6574 64.4395 58.4204 64.4395C58.158 64.4395 57.9338 64.4881 57.7476 64.5854C57.5656 64.6828 57.4196 64.8182 57.3096 64.9917C57.1995 65.161 57.1191 65.3599 57.0684 65.5884C57.0176 65.8169 56.9922 66.0623 56.9922 66.3247ZM72.2393 68.5718V70H65.917V68.7812L68.9067 65.5757C69.2072 65.2414 69.4442 64.9473 69.6177 64.6934C69.7912 64.4352 69.916 64.2046 69.9922 64.0015C70.0726 63.7941 70.1128 63.5973 70.1128 63.4111C70.1128 63.1318 70.0662 62.8927 69.9731 62.6938C69.88 62.4907 69.7425 62.3341 69.5605 62.2241C69.3828 62.1141 69.1628 62.0591 68.9004 62.0591C68.6211 62.0591 68.3799 62.1268 68.1768 62.2622C67.9779 62.3976 67.8255 62.5859 67.7197 62.8271C67.6182 63.0684 67.5674 63.3413 67.5674 63.646H65.7329C65.7329 63.0959 65.8641 62.5923 66.1265 62.1353C66.3888 61.674 66.7591 61.3079 67.2373 61.0371C67.7155 60.762 68.2826 60.6245 68.9385 60.6245C69.5859 60.6245 70.1318 60.7303 70.5762 60.9419C71.0247 61.1493 71.3633 61.4497 71.5918 61.8433C71.8245 62.2326 71.9409 62.6981 71.9409 63.2397C71.9409 63.5444 71.8923 63.8428 71.7949 64.1348C71.6976 64.4225 71.5579 64.7103 71.376 64.998C71.1982 65.2816 70.9824 65.5693 70.7285 65.8613C70.4746 66.1533 70.1932 66.4559 69.8843 66.769L68.2783 68.5718H72.2393ZM79.6025 64.5664V66.166C79.6025 66.86 79.5285 67.4588 79.3804 67.9624C79.2323 68.4618 79.0186 68.8722 78.7393 69.1938C78.4642 69.5112 78.1362 69.7461 77.7554 69.8984C77.3745 70.0508 76.9513 70.127 76.4858 70.127C76.1134 70.127 75.7664 70.0804 75.4448 69.9873C75.1232 69.89 74.8333 69.7397 74.5752 69.5366C74.3213 69.3335 74.1012 69.0775 73.915 68.7686C73.7331 68.4554 73.5934 68.083 73.4961 67.6514C73.3988 67.2197 73.3501 66.7246 73.3501 66.166V64.5664C73.3501 63.8724 73.4242 63.2778 73.5723 62.7827C73.7246 62.2834 73.9383 61.875 74.2134 61.5576C74.4927 61.2402 74.8228 61.0075 75.2036 60.8594C75.5845 60.707 76.0076 60.6309 76.4731 60.6309C76.8455 60.6309 77.1904 60.6795 77.5078 60.7769C77.8294 60.87 78.1193 61.016 78.3774 61.2148C78.6356 61.4137 78.8556 61.6698 79.0376 61.9829C79.2196 62.2918 79.3592 62.6621 79.4565 63.0938C79.5539 63.5212 79.6025 64.012 79.6025 64.5664ZM77.7681 66.4072V64.3188C77.7681 63.9845 77.749 63.6925 77.7109 63.4429C77.6771 63.1932 77.6242 62.9816 77.5522 62.8081C77.4803 62.6304 77.3914 62.4865 77.2856 62.3765C77.1799 62.2664 77.0592 62.186 76.9238 62.1353C76.7884 62.0845 76.6382 62.0591 76.4731 62.0591C76.2658 62.0591 76.0817 62.0993 75.9209 62.1797C75.7643 62.2601 75.631 62.3892 75.521 62.5669C75.411 62.7404 75.3263 62.9731 75.2671 63.2651C75.2121 63.5529 75.1846 63.9041 75.1846 64.3188V66.4072C75.1846 66.7415 75.2015 67.0356 75.2354 67.2896C75.2734 67.5435 75.3285 67.7614 75.4004 67.9434C75.4766 68.1211 75.5654 68.2671 75.667 68.3813C75.7728 68.4914 75.8934 68.5718 76.0288 68.6226C76.1685 68.6733 76.3208 68.6987 76.4858 68.6987C76.689 68.6987 76.8688 68.6585 77.0254 68.5781C77.1862 68.4935 77.3216 68.3623 77.4316 68.1846C77.5459 68.0026 77.6305 67.7656 77.6855 67.4736C77.7406 67.1816 77.7681 66.8262 77.7681 66.4072ZM87.1689 68.5718V70H80.8467V68.7812L83.8364 65.5757C84.1369 65.2414 84.3739 64.9473 84.5474 64.6934C84.7209 64.4352 84.8457 64.2046 84.9219 64.0015C85.0023 63.7941 85.0425 63.5973 85.0425 63.4111C85.0425 63.1318 84.9959 62.8927 84.9028 62.6938C84.8097 62.4907 84.6722 62.3341 84.4902 62.2241C84.3125 62.1141 84.0924 62.0591 83.8301 62.0591C83.5508 62.0591 83.3096 62.1268 83.1064 62.2622C82.9076 62.3976 82.7552 62.5859 82.6494 62.8271C82.5479 63.0684 82.4971 63.3413 82.4971 63.646H80.6626C80.6626 63.0959 80.7938 62.5923 81.0562 62.1353C81.3185 61.674 81.6888 61.3079 82.167 61.0371C82.6452 60.762 83.2122 60.6245 83.8682 60.6245C84.5156 60.6245 85.0615 60.7303 85.5059 60.9419C85.9544 61.1493 86.293 61.4497 86.5215 61.8433C86.7542 62.2326 86.8706 62.6981 86.8706 63.2397C86.8706 63.5444 86.8219 63.8428 86.7246 64.1348C86.6273 64.4225 86.4876 64.7103 86.3057 64.998C86.1279 65.2816 85.9121 65.5693 85.6582 65.8613C85.4043 66.1533 85.1229 66.4559 84.814 66.769L83.208 68.5718H87.1689ZM92.7676 60.7388V70H90.9395V62.8462L88.7432 63.5444V62.1035L92.5708 60.7388H92.7676Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1425)"},(0,h.createElement)("path",{d:"M99.7917 64.4167L102.5 67.1251L105.208 64.4167H99.7917Z",fill:"#64748B"})),(0,h.createElement)("path",{d:"M184.167 65.4999L184.93 66.2637L187.958 63.2412L187.958 69.8333L189.042 69.8333L189.042 63.2412L192.07 66.2637L192.833 65.4999L188.5 61.1666L184.167 65.4999Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M205.833 65.5001L205.07 64.7363L202.042 67.7588L202.042 61.1667L200.958 61.1667L200.958 67.7588L197.93 64.7363L197.167 65.5001L201.5 69.8334L205.833 65.5001Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M33.7192 89.6641C33.7192 89.4482 33.6853 89.2578 33.6176 89.0928C33.5541 88.9235 33.4399 88.7712 33.2748 88.6357C33.114 88.5003 32.8898 88.3713 32.602 88.2485C32.3185 88.1258 31.9588 88.001 31.5229 87.874C31.0659 87.7386 30.6533 87.5884 30.2851 87.4233C29.9169 87.2541 29.6017 87.0615 29.3393 86.8457C29.0769 86.6299 28.8759 86.3823 28.7363 86.103C28.5966 85.8237 28.5268 85.5042 28.5268 85.1445C28.5268 84.7848 28.6009 84.4526 28.749 84.1479C28.8971 83.8433 29.1087 83.5788 29.3837 83.3545C29.663 83.126 29.9952 82.9482 30.3803 82.8213C30.7654 82.6943 31.1949 82.6309 31.6689 82.6309C32.3629 82.6309 32.9511 82.7642 33.4335 83.0308C33.9202 83.2931 34.2905 83.638 34.5444 84.0654C34.7983 84.4886 34.9252 84.9414 34.9252 85.4238H33.7065C33.7065 85.0768 33.6324 84.77 33.4843 84.5034C33.3362 84.2326 33.1119 84.021 32.8115 83.8687C32.511 83.7121 32.1302 83.6338 31.6689 83.6338C31.233 83.6338 30.8733 83.6994 30.5898 83.8306C30.3063 83.9618 30.0947 84.1395 29.955 84.3638C29.8196 84.5881 29.7519 84.8441 29.7519 85.1318C29.7519 85.3265 29.7921 85.5042 29.8725 85.665C29.9571 85.8216 30.0862 85.9676 30.2597 86.103C30.4374 86.2384 30.6617 86.3633 30.9326 86.4775C31.2076 86.5918 31.5356 86.7018 31.9164 86.8076C32.4412 86.9557 32.894 87.1208 33.2748 87.3027C33.6557 87.4847 33.9689 87.6899 34.2143 87.9185C34.464 88.1427 34.6481 88.3988 34.7665 88.6865C34.8893 88.9701 34.9506 89.2917 34.9506 89.6514C34.9506 90.028 34.8745 90.3687 34.7221 90.6733C34.5698 90.978 34.3518 91.2383 34.0683 91.4541C33.7848 91.6699 33.4441 91.8371 33.0463 91.9556C32.6528 92.0698 32.2127 92.127 31.726 92.127C31.2986 92.127 30.8775 92.0677 30.4628 91.9492C30.0524 91.8307 29.6778 91.653 29.3393 91.416C29.005 91.179 28.7363 90.887 28.5331 90.54C28.3343 90.1888 28.2348 89.7826 28.2348 89.3213H29.4536C29.4536 89.6387 29.5149 89.9116 29.6376 90.1401C29.7604 90.3644 29.9275 90.5506 30.1391 90.6987C30.3549 90.8468 30.5983 90.9569 30.8691 91.0288C31.1442 91.0965 31.4298 91.1304 31.726 91.1304C32.1534 91.1304 32.5152 91.0711 32.8115 90.9526C33.1077 90.8341 33.332 90.6649 33.4843 90.4448C33.6409 90.2248 33.7192 89.9645 33.7192 89.6641ZM40.5366 90.4131V85.1318H41.7172V92H40.5937L40.5366 90.4131ZM40.7587 88.9658L41.2475 88.9531C41.2475 89.4102 41.1988 89.8333 41.1015 90.2227C41.0084 90.6077 40.8561 90.9421 40.6445 91.2256C40.4329 91.5091 40.1557 91.7313 39.8129 91.8921C39.4702 92.0487 39.0533 92.127 38.5624 92.127C38.2281 92.127 37.9213 92.0783 37.642 91.981C37.367 91.8836 37.13 91.7334 36.9311 91.5303C36.7322 91.3271 36.5777 91.0627 36.4677 90.7368C36.3619 90.411 36.309 90.0195 36.309 89.5625V85.1318H37.4833V89.5752C37.4833 89.8841 37.5172 90.1401 37.5849 90.3433C37.6568 90.5422 37.7521 90.7008 37.8706 90.8193C37.9933 90.9336 38.1287 91.014 38.2768 91.0605C38.4291 91.1071 38.5857 91.1304 38.7465 91.1304C39.2459 91.1304 39.6415 91.0352 39.9335 90.8447C40.2255 90.6501 40.435 90.3898 40.562 90.064C40.6931 89.7339 40.7587 89.3678 40.7587 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M86.7169 82.7578V92H85.5108V82.7578H86.7169ZM89.6876 82.7578V83.7607H82.5465V82.7578H89.6876ZM94.4737 90.4131V85.1318H95.6544V92H94.5308L94.4737 90.4131ZM94.6959 88.9658L95.1846 88.9531C95.1846 89.4102 95.136 89.8333 95.0386 90.2227C94.9455 90.6077 94.7932 90.9421 94.5816 91.2256C94.37 91.5091 94.0928 91.7313 93.7501 91.8921C93.4073 92.0487 92.9905 92.127 92.4996 92.127C92.1653 92.127 91.8585 92.0783 91.5792 91.981C91.3041 91.8836 91.0671 91.7334 90.8682 91.5303C90.6693 91.3271 90.5149 91.0627 90.4049 90.7368C90.2991 90.411 90.2462 90.0195 90.2462 89.5625V85.1318H91.4205V89.5752C91.4205 89.8841 91.4543 90.1401 91.522 90.3433C91.594 90.5422 91.6892 90.7008 91.8077 90.8193C91.9304 90.9336 92.0658 91.014 92.2139 91.0605C92.3663 91.1071 92.5229 91.1304 92.6837 91.1304C93.183 91.1304 93.5787 91.0352 93.8707 90.8447C94.1627 90.6501 94.3721 90.3898 94.4991 90.064C94.6303 89.7339 94.6959 89.3678 94.6959 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M140.637 82.7578V92H139.431V82.7578H140.637ZM143.608 82.7578V83.7607H136.467V82.7578H143.608ZM145.976 82.25V92H144.801V82.25H145.976ZM145.696 88.3057L145.208 88.2866C145.212 87.8169 145.282 87.3831 145.417 86.9854C145.553 86.5833 145.743 86.2342 145.988 85.938C146.234 85.6418 146.526 85.4132 146.864 85.2524C147.207 85.0874 147.586 85.0049 148.001 85.0049C148.339 85.0049 148.644 85.0514 148.915 85.1445C149.186 85.2334 149.416 85.3773 149.607 85.5762C149.801 85.7751 149.949 86.0332 150.051 86.3506C150.153 86.6637 150.203 87.0467 150.203 87.4995V92H149.023V87.4868C149.023 87.1271 148.97 86.8394 148.864 86.6235C148.758 86.4035 148.604 86.2448 148.401 86.1475C148.197 86.0459 147.948 85.9951 147.652 85.9951C147.36 85.9951 147.093 86.0565 146.852 86.1792C146.615 86.3019 146.41 86.4712 146.236 86.687C146.067 86.9028 145.933 87.1504 145.836 87.4297C145.743 87.7048 145.696 87.9967 145.696 88.3057Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M196.437 89.6641C196.437 89.4482 196.403 89.2578 196.335 89.0928C196.272 88.9235 196.158 88.7712 195.992 88.6357C195.832 88.5003 195.607 88.3713 195.32 88.2485C195.036 88.1258 194.676 88.001 194.241 87.874C193.784 87.7386 193.371 87.5884 193.003 87.4233C192.635 87.2541 192.319 87.0615 192.057 86.8457C191.795 86.6299 191.594 86.3823 191.454 86.103C191.314 85.8237 191.244 85.5042 191.244 85.1445C191.244 84.7848 191.319 84.4526 191.467 84.1479C191.615 83.8433 191.826 83.5788 192.101 83.3545C192.381 83.126 192.713 82.9482 193.098 82.8213C193.483 82.6943 193.913 82.6309 194.387 82.6309C195.081 82.6309 195.669 82.7642 196.151 83.0308C196.638 83.2931 197.008 83.638 197.262 84.0654C197.516 84.4886 197.643 84.9414 197.643 85.4238H196.424C196.424 85.0768 196.35 84.77 196.202 84.5034C196.054 84.2326 195.83 84.021 195.529 83.8687C195.229 83.7121 194.848 83.6338 194.387 83.6338C193.951 83.6338 193.591 83.6994 193.307 83.8306C193.024 83.9618 192.812 84.1395 192.673 84.3638C192.537 84.5881 192.47 84.8441 192.47 85.1318C192.47 85.3265 192.51 85.5042 192.59 85.665C192.675 85.8216 192.804 85.9676 192.977 86.103C193.155 86.2384 193.379 86.3633 193.65 86.4775C193.925 86.5918 194.253 86.7018 194.634 86.8076C195.159 86.9557 195.612 87.1208 195.992 87.3027C196.373 87.4847 196.687 87.6899 196.932 87.9185C197.182 88.1427 197.366 88.3988 197.484 88.6865C197.607 88.9701 197.668 89.2917 197.668 89.6514C197.668 90.028 197.592 90.3687 197.44 90.6733C197.287 90.978 197.069 91.2383 196.786 91.4541C196.502 91.6699 196.162 91.8371 195.764 91.9556C195.37 92.0698 194.93 92.127 194.444 92.127C194.016 92.127 193.595 92.0677 193.18 91.9492C192.77 91.8307 192.395 91.653 192.057 91.416C191.723 91.179 191.454 90.887 191.251 90.54C191.052 90.1888 190.952 89.7826 190.952 89.3213H192.171C192.171 89.6387 192.233 89.9116 192.355 90.1401C192.478 90.3644 192.645 90.5506 192.857 90.6987C193.073 90.8468 193.316 90.9569 193.587 91.0288C193.862 91.0965 194.147 91.1304 194.444 91.1304C194.871 91.1304 195.233 91.0711 195.529 90.9526C195.825 90.8341 196.05 90.6649 196.202 90.4448C196.359 90.2248 196.437 89.9645 196.437 89.6641ZM203.102 90.8257V87.29C203.102 87.0192 203.047 86.7843 202.937 86.5854C202.831 86.3823 202.67 86.2257 202.454 86.1157C202.239 86.0057 201.972 85.9507 201.655 85.9507C201.358 85.9507 201.098 86.0015 200.874 86.103C200.654 86.2046 200.48 86.3379 200.353 86.5029C200.231 86.668 200.169 86.8457 200.169 87.0361H198.995C198.995 86.7907 199.058 86.5474 199.185 86.3062C199.312 86.0649 199.494 85.847 199.731 85.6523C199.972 85.4535 200.26 85.2969 200.595 85.1826C200.933 85.0641 201.31 85.0049 201.724 85.0049C202.224 85.0049 202.664 85.0895 203.045 85.2588C203.43 85.4281 203.73 85.6841 203.946 86.0269C204.166 86.3654 204.276 86.7907 204.276 87.3027V90.502C204.276 90.7305 204.295 90.9738 204.333 91.2319C204.376 91.4901 204.437 91.7122 204.517 91.8984V92H203.292C203.233 91.8646 203.187 91.6847 203.153 91.4604C203.119 91.2319 203.102 91.0203 203.102 90.8257ZM203.305 87.8359L203.318 88.6611H202.131C201.796 88.6611 201.498 88.6886 201.236 88.7437C200.973 88.7944 200.753 88.8727 200.576 88.9785C200.398 89.0843 200.262 89.2176 200.169 89.3784C200.076 89.535 200.03 89.7191 200.03 89.9307C200.03 90.1465 200.078 90.3433 200.176 90.521C200.273 90.6987 200.419 90.8405 200.614 90.9463C200.812 91.0479 201.056 91.0986 201.344 91.0986C201.703 91.0986 202.021 91.0225 202.296 90.8701C202.571 90.7178 202.789 90.5316 202.95 90.3115C203.115 90.0915 203.203 89.8778 203.216 89.6704L203.718 90.2354C203.688 90.4131 203.608 90.6099 203.476 90.8257C203.345 91.0415 203.17 91.2489 202.95 91.4478C202.734 91.6424 202.476 91.8053 202.175 91.9365C201.879 92.0635 201.545 92.127 201.172 92.127C200.707 92.127 200.298 92.036 199.947 91.854C199.6 91.672 199.329 91.4287 199.135 91.124C198.944 90.8151 198.849 90.4702 198.849 90.0894C198.849 89.7212 198.921 89.3975 199.065 89.1182C199.209 88.8346 199.416 88.5998 199.687 88.4136C199.958 88.2231 200.284 88.0793 200.664 87.9819C201.045 87.8846 201.471 87.8359 201.94 87.8359H203.305Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M54.3552 82.7578H55.5422L58.57 90.2925L61.5915 82.7578H62.7849L59.027 92H58.1003L54.3552 82.7578ZM53.968 82.7578H55.0153L55.1867 88.3945V92H53.968V82.7578ZM62.1184 82.7578H63.1657V92H61.947V88.3945L62.1184 82.7578ZM64.8288 88.6421V88.4961C64.8288 88.001 64.9007 87.5418 65.0446 87.1187C65.1885 86.6912 65.3959 86.321 65.6667 86.0078C65.9375 85.6904 66.2655 85.445 66.6506 85.2715C67.0357 85.0938 67.4673 85.0049 67.9455 85.0049C68.4279 85.0049 68.8617 85.0938 69.2468 85.2715C69.6361 85.445 69.9662 85.6904 70.237 86.0078C70.5121 86.321 70.7215 86.6912 70.8654 87.1187C71.0093 87.5418 71.0812 88.001 71.0812 88.4961V88.6421C71.0812 89.1372 71.0093 89.5964 70.8654 90.0195C70.7215 90.4427 70.5121 90.813 70.237 91.1304C69.9662 91.4435 69.6382 91.689 69.2531 91.8667C68.8723 92.0402 68.4406 92.127 67.9582 92.127C67.4758 92.127 67.042 92.0402 66.6569 91.8667C66.2718 91.689 65.9418 91.4435 65.6667 91.1304C65.3959 90.813 65.1885 90.4427 65.0446 90.0195C64.9007 89.5964 64.8288 89.1372 64.8288 88.6421ZM66.0031 88.4961V88.6421C66.0031 88.9849 66.0433 89.3086 66.1237 89.6133C66.2041 89.9137 66.3247 90.1803 66.4855 90.4131C66.6506 90.6458 66.8558 90.8299 67.1013 90.9653C67.3467 91.0965 67.6324 91.1621 67.9582 91.1621C68.2798 91.1621 68.5612 91.0965 68.8024 90.9653C69.0479 90.8299 69.251 90.6458 69.4118 90.4131C69.5726 90.1803 69.6932 89.9137 69.7736 89.6133C69.8583 89.3086 69.9006 88.9849 69.9006 88.6421V88.4961C69.9006 88.1576 69.8583 87.8381 69.7736 87.5376C69.6932 87.2329 69.5705 86.9642 69.4055 86.7314C69.2447 86.4945 69.0415 86.3083 68.7961 86.1729C68.5549 86.0374 68.2713 85.9697 67.9455 85.9697C67.6239 85.9697 67.3404 86.0374 67.0949 86.1729C66.8537 86.3083 66.6506 86.4945 66.4855 86.7314C66.3247 86.9642 66.2041 87.2329 66.1237 87.5376C66.0433 87.8381 66.0031 88.1576 66.0031 88.4961Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M110.886 89.207L112.721 82.7578H113.609L113.095 85.2651L111.121 92H110.239L110.886 89.207ZM108.988 82.7578L110.448 89.0801L110.886 92H110.01L107.769 82.7578H108.988ZM115.983 89.0737L117.411 82.7578H118.637L116.402 92H115.526L115.983 89.0737ZM113.742 82.7578L115.526 89.207L116.174 92H115.291L113.387 85.2651L112.867 82.7578H113.742ZM122.464 92.127C121.986 92.127 121.552 92.0465 121.163 91.8857C120.778 91.7207 120.446 91.4901 120.166 91.1938C119.891 90.8976 119.68 90.5464 119.532 90.1401C119.383 89.7339 119.309 89.2896 119.309 88.8071V88.5405C119.309 87.9819 119.392 87.4847 119.557 87.0488C119.722 86.6087 119.946 86.2363 120.23 85.9316C120.513 85.627 120.835 85.3963 121.195 85.2397C121.554 85.0832 121.927 85.0049 122.312 85.0049C122.803 85.0049 123.226 85.0895 123.581 85.2588C123.941 85.4281 124.235 85.665 124.464 85.9697C124.692 86.2702 124.861 86.6257 124.972 87.0361C125.082 87.4424 125.137 87.8867 125.137 88.3691V88.896H120.008V87.9375H123.962V87.8486C123.945 87.5439 123.882 87.2477 123.772 86.96C123.666 86.6722 123.497 86.4352 123.264 86.249C123.031 86.0628 122.714 85.9697 122.312 85.9697C122.045 85.9697 121.8 86.0269 121.576 86.1411C121.351 86.2511 121.159 86.4162 120.998 86.6362C120.837 86.8563 120.712 87.125 120.623 87.4424C120.534 87.7598 120.49 88.1258 120.49 88.5405V88.8071C120.49 89.133 120.534 89.4398 120.623 89.7275C120.716 90.0111 120.85 90.2607 121.023 90.4766C121.201 90.6924 121.415 90.8617 121.664 90.9844C121.918 91.1071 122.206 91.1685 122.528 91.1685C122.942 91.1685 123.294 91.0838 123.581 90.9146C123.869 90.7453 124.121 90.5189 124.337 90.2354L125.048 90.8003C124.9 91.0246 124.711 91.2383 124.483 91.4414C124.254 91.6445 123.973 91.8096 123.638 91.9365C123.308 92.0635 122.917 92.127 122.464 92.127Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M167.305 82.7578V92H166.08V82.7578H167.305ZM171.177 86.9155V87.9185H167.038V86.9155H171.177ZM171.805 82.7578V83.7607H167.038V82.7578H171.805ZM174.097 86.2109V92H172.922V85.1318H174.065L174.097 86.2109ZM176.242 85.0938L176.236 86.1855C176.138 86.1644 176.045 86.1517 175.956 86.1475C175.872 86.139 175.775 86.1348 175.664 86.1348C175.394 86.1348 175.155 86.1771 174.947 86.2617C174.74 86.3464 174.564 86.4648 174.42 86.6172C174.276 86.7695 174.162 86.9515 174.078 87.1631C173.997 87.3704 173.944 87.599 173.919 87.8486L173.589 88.0391C173.589 87.6243 173.629 87.235 173.709 86.8711C173.794 86.5072 173.923 86.1855 174.097 85.9062C174.27 85.6227 174.49 85.4027 174.757 85.2461C175.028 85.0853 175.349 85.0049 175.722 85.0049C175.806 85.0049 175.904 85.0155 176.014 85.0366C176.124 85.0535 176.2 85.0726 176.242 85.0938Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"160.002",y:"100",width:"20.9999",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.6777 115.035V116H28.6284V115.156L31.6562 111.785C32.0286 111.37 32.3164 111.019 32.5195 110.731C32.7269 110.439 32.8707 110.179 32.9511 109.951C33.0358 109.718 33.0781 109.481 33.0781 109.24C33.0781 108.935 33.0146 108.66 32.8877 108.415C32.7649 108.165 32.583 107.966 32.3418 107.818C32.1006 107.67 31.8086 107.596 31.4658 107.596C31.0553 107.596 30.7125 107.676 30.4375 107.837C30.1666 107.993 29.9635 108.214 29.8281 108.497C29.6927 108.781 29.625 109.106 29.625 109.475H28.4507C28.4507 108.954 28.5649 108.478 28.7934 108.046C29.0219 107.615 29.3605 107.272 29.8091 107.018C30.2576 106.76 30.8099 106.631 31.4658 106.631C32.0498 106.631 32.5491 106.735 32.9638 106.942C33.3786 107.145 33.6959 107.433 33.916 107.805C34.1403 108.173 34.2524 108.605 34.2524 109.1C34.2524 109.371 34.2059 109.646 34.1128 109.925C34.0239 110.2 33.8991 110.475 33.7383 110.75C33.5817 111.026 33.3976 111.296 33.186 111.563C32.9786 111.83 32.7565 112.092 32.5195 112.35L30.0439 115.035H34.6777ZM41.7617 113.499C41.7617 114.062 41.6305 114.54 41.3681 114.934C41.11 115.323 40.7588 115.619 40.3144 115.822C39.8743 116.025 39.3771 116.127 38.8227 116.127C38.2684 116.127 37.769 116.025 37.3247 115.822C36.8803 115.619 36.5291 115.323 36.271 114.934C36.0128 114.54 35.8838 114.062 35.8838 113.499C35.8838 113.131 35.9536 112.794 36.0932 112.49C36.2371 112.181 36.4381 111.912 36.6963 111.684C36.9586 111.455 37.2675 111.279 37.623 111.157C37.9827 111.03 38.3784 110.966 38.81 110.966C39.3771 110.966 39.8828 111.076 40.3271 111.296C40.7715 111.512 41.1206 111.811 41.3745 112.191C41.6326 112.572 41.7617 113.008 41.7617 113.499ZM40.581 113.474C40.581 113.131 40.507 112.828 40.3589 112.566C40.2107 112.299 40.0034 112.092 39.7368 111.944C39.4702 111.796 39.1613 111.722 38.81 111.722C38.4503 111.722 38.1393 111.796 37.8769 111.944C37.6188 112.092 37.4178 112.299 37.2739 112.566C37.13 112.828 37.0581 113.131 37.0581 113.474C37.0581 113.829 37.1279 114.134 37.2675 114.388C37.4114 114.637 37.6146 114.83 37.8769 114.965C38.1435 115.097 38.4588 115.162 38.8227 115.162C39.1867 115.162 39.4998 115.097 39.7622 114.965C40.0245 114.83 40.2256 114.637 40.3652 114.388C40.5091 114.134 40.581 113.829 40.581 113.474ZM41.5459 109.164C41.5459 109.612 41.4274 110.016 41.1904 110.376C40.9534 110.736 40.6297 111.019 40.2192 111.227C39.8087 111.434 39.3432 111.538 38.8227 111.538C38.2938 111.538 37.8219 111.434 37.4072 111.227C36.9967 111.019 36.6751 110.736 36.4424 110.376C36.2096 110.016 36.0932 109.612 36.0932 109.164C36.0932 108.626 36.2096 108.169 36.4424 107.792C36.6793 107.416 37.0031 107.128 37.4135 106.929C37.824 106.73 38.2916 106.631 38.8164 106.631C39.3453 106.631 39.8151 106.73 40.2256 106.929C40.636 107.128 40.9577 107.416 41.1904 107.792C41.4274 108.169 41.5459 108.626 41.5459 109.164ZM40.3716 109.183C40.3716 108.874 40.306 108.601 40.1748 108.364C40.0436 108.127 39.8616 107.941 39.6289 107.805C39.3961 107.666 39.1253 107.596 38.8164 107.596C38.5075 107.596 38.2366 107.661 38.0039 107.792C37.7754 107.919 37.5955 108.101 37.4643 108.338C37.3374 108.575 37.2739 108.857 37.2739 109.183C37.2739 109.5 37.3374 109.777 37.4643 110.014C37.5955 110.251 37.7775 110.435 38.0102 110.566C38.243 110.698 38.5138 110.763 38.8227 110.763C39.1316 110.763 39.4004 110.698 39.6289 110.566C39.8616 110.435 40.0436 110.251 40.1748 110.014C40.306 109.777 40.3716 109.5 40.3716 109.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M92.5573 115.035V116H86.508V115.156L89.5359 111.785C89.9083 111.37 90.196 111.019 90.3991 110.731C90.6065 110.439 90.7504 110.179 90.8308 109.951C90.9154 109.718 90.9577 109.481 90.9577 109.24C90.9577 108.935 90.8943 108.66 90.7673 108.415C90.6446 108.165 90.4626 107.966 90.2214 107.818C89.9802 107.67 89.6882 107.596 89.3454 107.596C88.9349 107.596 88.5922 107.676 88.3171 107.837C88.0463 107.993 87.8432 108.214 87.7077 108.497C87.5723 108.781 87.5046 109.106 87.5046 109.475H86.3303C86.3303 108.954 86.4446 108.478 86.6731 108.046C86.9016 107.615 87.2401 107.272 87.6887 107.018C88.1373 106.76 88.6895 106.631 89.3454 106.631C89.9294 106.631 90.4288 106.735 90.8435 106.942C91.2582 107.145 91.5756 107.433 91.7956 107.805C92.0199 108.173 92.1321 108.605 92.1321 109.1C92.1321 109.371 92.0855 109.646 91.9924 109.925C91.9035 110.2 91.7787 110.475 91.6179 110.75C91.4613 111.026 91.2772 111.296 91.0656 111.563C90.8583 111.83 90.6361 112.092 90.3991 112.35L87.9236 115.035H92.5573Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M146.97 112.89V113.854H140.292V113.163L144.431 106.758H145.389L144.361 108.611L141.625 112.89H146.97ZM145.681 106.758V116H144.507V106.758H145.681Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M199.452 106.745H199.554V107.742H199.452C198.83 107.742 198.309 107.843 197.89 108.046C197.472 108.245 197.139 108.514 196.894 108.853C196.648 109.187 196.471 109.563 196.361 109.982C196.255 110.401 196.202 110.827 196.202 111.258V112.617C196.202 113.027 196.251 113.391 196.348 113.708C196.445 114.022 196.579 114.286 196.748 114.502C196.917 114.718 197.108 114.881 197.319 114.991C197.535 115.101 197.759 115.156 197.992 115.156C198.263 115.156 198.504 115.105 198.716 115.003C198.927 114.898 199.105 114.752 199.249 114.565C199.397 114.375 199.509 114.151 199.585 113.893C199.661 113.634 199.7 113.351 199.7 113.042C199.7 112.767 199.666 112.502 199.598 112.249C199.53 111.99 199.427 111.762 199.287 111.563C199.147 111.36 198.972 111.201 198.76 111.087C198.553 110.968 198.305 110.909 198.017 110.909C197.692 110.909 197.387 110.99 197.103 111.15C196.824 111.307 196.593 111.514 196.411 111.772C196.234 112.026 196.132 112.304 196.107 112.604L195.485 112.598C195.544 112.124 195.654 111.72 195.815 111.385C195.98 111.047 196.183 110.772 196.424 110.56C196.67 110.344 196.943 110.188 197.243 110.09C197.548 109.989 197.869 109.938 198.208 109.938C198.669 109.938 199.067 110.025 199.401 110.198C199.736 110.372 200.011 110.604 200.226 110.896C200.442 111.184 200.601 111.51 200.702 111.874C200.808 112.234 200.861 112.604 200.861 112.985C200.861 113.421 200.8 113.829 200.677 114.21C200.554 114.591 200.37 114.925 200.125 115.213C199.884 115.501 199.585 115.725 199.23 115.886C198.874 116.047 198.462 116.127 197.992 116.127C197.493 116.127 197.057 116.025 196.684 115.822C196.312 115.615 196.003 115.34 195.758 114.997C195.512 114.654 195.328 114.273 195.205 113.854C195.083 113.436 195.021 113.01 195.021 112.579V112.026C195.021 111.375 195.087 110.736 195.218 110.109C195.349 109.483 195.576 108.916 195.897 108.408C196.223 107.9 196.674 107.496 197.249 107.196C197.825 106.895 198.559 106.745 199.452 106.745Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M63.2484 106.707V116H62.0741V108.173L59.7064 109.037V107.977L63.0643 106.707H63.2484Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M115.324 110.801H116.162C116.573 110.801 116.911 110.734 117.178 110.598C117.449 110.458 117.65 110.27 117.781 110.033C117.916 109.792 117.984 109.521 117.984 109.221C117.984 108.865 117.925 108.567 117.806 108.326C117.688 108.084 117.51 107.903 117.273 107.78C117.036 107.657 116.735 107.596 116.372 107.596C116.041 107.596 115.749 107.661 115.496 107.792C115.246 107.919 115.049 108.101 114.905 108.338C114.766 108.575 114.696 108.855 114.696 109.176H113.521C113.521 108.707 113.64 108.279 113.877 107.894C114.114 107.509 114.446 107.202 114.874 106.974C115.305 106.745 115.804 106.631 116.372 106.631C116.93 106.631 117.419 106.73 117.838 106.929C118.257 107.124 118.583 107.416 118.815 107.805C119.048 108.19 119.165 108.671 119.165 109.246C119.165 109.479 119.11 109.729 118.999 109.995C118.894 110.257 118.727 110.503 118.498 110.731C118.274 110.96 117.982 111.148 117.622 111.296C117.262 111.44 116.831 111.512 116.327 111.512H115.324V110.801ZM115.324 111.766V111.062H116.327C116.915 111.062 117.402 111.131 117.787 111.271C118.172 111.411 118.475 111.597 118.695 111.83C118.919 112.062 119.076 112.318 119.165 112.598C119.258 112.873 119.304 113.148 119.304 113.423C119.304 113.854 119.23 114.237 119.082 114.572C118.938 114.906 118.733 115.19 118.466 115.422C118.204 115.655 117.895 115.831 117.54 115.949C117.184 116.068 116.797 116.127 116.378 116.127C115.976 116.127 115.597 116.07 115.242 115.956C114.89 115.841 114.579 115.676 114.309 115.46C114.038 115.24 113.826 114.972 113.674 114.654C113.521 114.333 113.445 113.967 113.445 113.556H114.62C114.62 113.878 114.689 114.159 114.829 114.4C114.973 114.642 115.176 114.83 115.438 114.965C115.705 115.097 116.018 115.162 116.378 115.162C116.738 115.162 117.047 115.101 117.305 114.978C117.567 114.851 117.768 114.661 117.908 114.407C118.052 114.153 118.124 113.833 118.124 113.448C118.124 113.063 118.043 112.748 117.882 112.502C117.721 112.253 117.493 112.069 117.197 111.95C116.905 111.827 116.56 111.766 116.162 111.766H115.324Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M169.344 111.792L167.884 111.442L168.411 106.758H173.603V108.237H169.915L169.687 110.287C169.81 110.215 169.996 110.139 170.246 110.059C170.495 109.974 170.775 109.932 171.083 109.932C171.532 109.932 171.93 110.001 172.277 110.141C172.624 110.281 172.918 110.484 173.159 110.75C173.405 111.017 173.591 111.343 173.718 111.728C173.845 112.113 173.908 112.549 173.908 113.036C173.908 113.446 173.845 113.838 173.718 114.21C173.591 114.578 173.398 114.908 173.14 115.2C172.882 115.488 172.558 115.714 172.169 115.879C171.78 116.044 171.318 116.127 170.785 116.127C170.387 116.127 170.002 116.068 169.63 115.949C169.262 115.831 168.929 115.655 168.633 115.422C168.341 115.19 168.106 114.908 167.929 114.578C167.755 114.244 167.664 113.863 167.656 113.436H169.471C169.497 113.698 169.564 113.924 169.674 114.115C169.789 114.301 169.939 114.445 170.125 114.546C170.311 114.648 170.529 114.699 170.779 114.699C171.012 114.699 171.21 114.654 171.375 114.565C171.54 114.477 171.674 114.354 171.775 114.197C171.877 114.036 171.951 113.85 171.998 113.639C172.048 113.423 172.074 113.19 172.074 112.94C172.074 112.691 172.044 112.464 171.985 112.261C171.926 112.058 171.835 111.882 171.712 111.734C171.589 111.586 171.433 111.472 171.242 111.392C171.056 111.311 170.838 111.271 170.588 111.271C170.25 111.271 169.987 111.324 169.801 111.43C169.619 111.535 169.467 111.656 169.344 111.792Z",fill:"white"}),(0,h.createElement)("path",{d:"M38.2515 131.758V132.418L34.4238 141H33.186L37.0073 132.723H32.0054V131.758H38.2515Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M87.6686 140.016H87.7892C88.4663 140.016 89.0164 139.921 89.4396 139.73C89.8628 139.54 90.1886 139.284 90.4171 138.962C90.6456 138.641 90.8022 138.279 90.8868 137.877C90.9715 137.471 91.0138 137.054 91.0138 136.626V135.211C91.0138 134.792 90.9651 134.42 90.8678 134.094C90.7747 133.768 90.6435 133.495 90.4742 133.275C90.3092 133.055 90.1209 132.888 89.9093 132.773C89.6977 132.659 89.4734 132.602 89.2365 132.602C88.9656 132.602 88.7223 132.657 88.5065 132.767C88.2949 132.873 88.115 133.023 87.9669 133.218C87.823 133.412 87.713 133.641 87.6368 133.903C87.5607 134.166 87.5226 134.451 87.5226 134.76C87.5226 135.035 87.5564 135.302 87.6241 135.56C87.6919 135.818 87.7955 136.051 87.9352 136.258C88.0748 136.466 88.2483 136.631 88.4557 136.753C88.6673 136.872 88.9148 136.931 89.1984 136.931C89.4607 136.931 89.7062 136.88 89.9347 136.779C90.1674 136.673 90.3727 136.531 90.5504 136.354C90.7324 136.172 90.8763 135.966 90.9821 135.738C91.0921 135.509 91.1556 135.27 91.1725 135.021H91.7311C91.7311 135.372 91.6613 135.719 91.5216 136.062C91.3862 136.4 91.1958 136.709 90.9503 136.988C90.7049 137.268 90.4171 137.492 90.087 137.661C89.757 137.826 89.3973 137.909 89.0079 137.909C88.5509 137.909 88.1552 137.82 87.8209 137.642C87.4866 137.464 87.2115 137.227 86.9957 136.931C86.7841 136.635 86.6254 136.305 86.5197 135.941C86.4181 135.573 86.3673 135.2 86.3673 134.824C86.3673 134.384 86.4287 133.971 86.5514 133.586C86.6741 133.201 86.8561 132.862 87.0973 132.57C87.3385 132.274 87.6368 132.043 87.9923 131.878C88.352 131.713 88.7667 131.631 89.2365 131.631C89.7654 131.631 90.2161 131.737 90.5885 131.948C90.9609 132.16 91.2635 132.443 91.4962 132.799C91.7332 133.154 91.9067 133.554 92.0167 133.999C92.1268 134.443 92.1818 134.9 92.1818 135.37V135.795C92.1818 136.273 92.15 136.76 92.0865 137.255C92.0273 137.746 91.9109 138.215 91.7374 138.664C91.5682 139.113 91.3206 139.515 90.9948 139.87C90.6689 140.221 90.2436 140.501 89.7189 140.708C89.1984 140.911 88.5551 141.013 87.7892 141.013H87.6686V140.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M140.923 131.707V141H139.749V133.173L137.381 134.037V132.977L140.739 131.707H140.923ZM148.236 131.707V141H147.061V133.173L144.694 134.037V132.977L148.052 131.707H148.236Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M195.148 131.707V141H193.974V133.173L191.606 134.037V132.977L194.964 131.707H195.148ZM200.315 135.801H201.153C201.564 135.801 201.902 135.734 202.169 135.598C202.44 135.458 202.641 135.27 202.772 135.033C202.907 134.792 202.975 134.521 202.975 134.221C202.975 133.865 202.916 133.567 202.797 133.326C202.679 133.084 202.501 132.903 202.264 132.78C202.027 132.657 201.727 132.596 201.363 132.596C201.033 132.596 200.741 132.661 200.487 132.792C200.237 132.919 200.04 133.101 199.896 133.338C199.757 133.575 199.687 133.855 199.687 134.176H198.513C198.513 133.707 198.631 133.279 198.868 132.894C199.105 132.509 199.437 132.202 199.865 131.974C200.296 131.745 200.796 131.631 201.363 131.631C201.921 131.631 202.41 131.73 202.829 131.929C203.248 132.124 203.574 132.416 203.807 132.805C204.039 133.19 204.156 133.671 204.156 134.246C204.156 134.479 204.101 134.729 203.991 134.995C203.885 135.257 203.718 135.503 203.489 135.731C203.265 135.96 202.973 136.148 202.613 136.296C202.254 136.44 201.822 136.512 201.318 136.512H200.315V135.801ZM200.315 136.766V136.062H201.318C201.907 136.062 202.393 136.131 202.778 136.271C203.163 136.411 203.466 136.597 203.686 136.83C203.91 137.062 204.067 137.318 204.156 137.598C204.249 137.873 204.295 138.148 204.295 138.423C204.295 138.854 204.221 139.237 204.073 139.572C203.929 139.906 203.724 140.19 203.458 140.422C203.195 140.655 202.886 140.831 202.531 140.949C202.175 141.068 201.788 141.127 201.369 141.127C200.967 141.127 200.588 141.07 200.233 140.956C199.882 140.841 199.571 140.676 199.3 140.46C199.029 140.24 198.817 139.972 198.665 139.654C198.513 139.333 198.437 138.967 198.437 138.556H199.611C199.611 138.878 199.681 139.159 199.82 139.4C199.964 139.642 200.167 139.83 200.43 139.965C200.696 140.097 201.009 140.162 201.369 140.162C201.729 140.162 202.038 140.101 202.296 139.978C202.558 139.851 202.759 139.661 202.899 139.407C203.043 139.153 203.115 138.833 203.115 138.448C203.115 138.063 203.034 137.748 202.874 137.502C202.713 137.253 202.484 137.069 202.188 136.95C201.896 136.827 201.551 136.766 201.153 136.766H200.315Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M65.2155 138.499C65.2155 139.062 65.0843 139.54 64.8219 139.934C64.5638 140.323 64.2125 140.619 63.7682 140.822C63.3281 141.025 62.8309 141.127 62.2765 141.127C61.7221 141.127 61.2228 141.025 60.7784 140.822C60.3341 140.619 59.9829 140.323 59.7247 139.934C59.4666 139.54 59.3375 139.062 59.3375 138.499C59.3375 138.131 59.4074 137.794 59.547 137.49C59.6909 137.181 59.8919 136.912 60.15 136.684C60.4124 136.455 60.7213 136.279 61.0768 136.157C61.4365 136.03 61.8322 135.966 62.2638 135.966C62.8309 135.966 63.3365 136.076 63.7809 136.296C64.2252 136.512 64.5743 136.811 64.8282 137.191C65.0864 137.572 65.2155 138.008 65.2155 138.499ZM64.0348 138.474C64.0348 138.131 63.9607 137.828 63.8126 137.566C63.6645 137.299 63.4572 137.092 63.1906 136.944C62.924 136.796 62.615 136.722 62.2638 136.722C61.9041 136.722 61.5931 136.796 61.3307 136.944C61.0726 137.092 60.8715 137.299 60.7277 137.566C60.5838 137.828 60.5118 138.131 60.5118 138.474C60.5118 138.829 60.5817 139.134 60.7213 139.388C60.8652 139.637 61.0683 139.83 61.3307 139.965C61.5973 140.097 61.9126 140.162 62.2765 140.162C62.6404 140.162 62.9536 140.097 63.2159 139.965C63.4783 139.83 63.6793 139.637 63.819 139.388C63.9629 139.134 64.0348 138.829 64.0348 138.474ZM64.9996 134.164C64.9996 134.612 64.8811 135.016 64.6442 135.376C64.4072 135.736 64.0835 136.019 63.673 136.227C63.2625 136.434 62.797 136.538 62.2765 136.538C61.7475 136.538 61.2757 136.434 60.861 136.227C60.4505 136.019 60.1289 135.736 59.8961 135.376C59.6634 135.016 59.547 134.612 59.547 134.164C59.547 133.626 59.6634 133.169 59.8961 132.792C60.1331 132.416 60.4568 132.128 60.8673 131.929C61.2778 131.73 61.7454 131.631 62.2701 131.631C62.7991 131.631 63.2688 131.73 63.6793 131.929C64.0898 132.128 64.4114 132.416 64.6442 132.792C64.8811 133.169 64.9996 133.626 64.9996 134.164ZM63.8253 134.183C63.8253 133.874 63.7597 133.601 63.6285 133.364C63.4974 133.127 63.3154 132.941 63.0826 132.805C62.8499 132.666 62.5791 132.596 62.2701 132.596C61.9612 132.596 61.6904 132.661 61.4576 132.792C61.2291 132.919 61.0493 133.101 60.9181 133.338C60.7911 133.575 60.7277 133.857 60.7277 134.183C60.7277 134.5 60.7911 134.777 60.9181 135.014C61.0493 135.251 61.2312 135.435 61.464 135.566C61.6967 135.698 61.9676 135.763 62.2765 135.763C62.5854 135.763 62.8541 135.698 63.0826 135.566C63.3154 135.435 63.4974 135.251 63.6285 135.014C63.7597 134.777 63.8253 134.5 63.8253 134.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M113.813 131.707V141H112.638V133.173L110.271 134.037V132.977L113.628 131.707H113.813ZM123.067 135.643V137.052C123.067 137.809 123 138.448 122.864 138.969C122.729 139.489 122.534 139.908 122.28 140.226C122.026 140.543 121.72 140.774 121.36 140.917C121.004 141.057 120.602 141.127 120.154 141.127C119.798 141.127 119.47 141.083 119.17 140.994C118.869 140.905 118.599 140.763 118.357 140.568C118.12 140.369 117.917 140.111 117.748 139.794C117.579 139.477 117.45 139.091 117.361 138.639C117.272 138.186 117.228 137.657 117.228 137.052V135.643C117.228 134.885 117.295 134.25 117.431 133.738C117.57 133.226 117.767 132.816 118.021 132.507C118.275 132.194 118.58 131.969 118.935 131.834C119.295 131.699 119.697 131.631 120.141 131.631C120.501 131.631 120.831 131.675 121.131 131.764C121.436 131.849 121.707 131.986 121.944 132.177C122.181 132.363 122.382 132.613 122.547 132.926C122.716 133.235 122.845 133.613 122.934 134.062C123.023 134.511 123.067 135.037 123.067 135.643ZM121.887 137.242V135.446C121.887 135.031 121.861 134.667 121.811 134.354C121.764 134.037 121.694 133.766 121.601 133.542C121.508 133.317 121.389 133.135 121.246 132.996C121.106 132.856 120.943 132.754 120.757 132.691C120.575 132.623 120.37 132.589 120.141 132.589C119.862 132.589 119.614 132.642 119.398 132.748C119.183 132.85 119.001 133.013 118.853 133.237C118.709 133.461 118.599 133.755 118.522 134.119C118.446 134.483 118.408 134.925 118.408 135.446V137.242C118.408 137.657 118.431 138.023 118.478 138.34C118.529 138.658 118.603 138.933 118.7 139.166C118.798 139.394 118.916 139.582 119.056 139.73C119.195 139.879 119.356 139.989 119.538 140.061C119.724 140.128 119.93 140.162 120.154 140.162C120.442 140.162 120.693 140.107 120.909 139.997C121.125 139.887 121.305 139.716 121.449 139.483C121.597 139.246 121.707 138.943 121.779 138.575C121.851 138.203 121.887 137.758 121.887 137.242Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M168.036 131.707V141H166.861V133.173L164.494 134.037V132.977L167.852 131.707H168.036ZM177.545 140.035V141H171.495V140.156L174.523 136.785C174.895 136.37 175.183 136.019 175.386 135.731C175.594 135.439 175.738 135.179 175.818 134.951C175.903 134.718 175.945 134.481 175.945 134.24C175.945 133.935 175.881 133.66 175.755 133.415C175.632 133.165 175.45 132.966 175.209 132.818C174.967 132.67 174.675 132.596 174.333 132.596C173.922 132.596 173.579 132.676 173.304 132.837C173.033 132.993 172.83 133.214 172.695 133.497C172.56 133.781 172.492 134.106 172.492 134.475H171.318C171.318 133.954 171.432 133.478 171.66 133.046C171.889 132.615 172.227 132.272 172.676 132.018C173.124 131.76 173.677 131.631 174.333 131.631C174.917 131.631 175.416 131.735 175.831 131.942C176.245 132.145 176.563 132.433 176.783 132.805C177.007 133.173 177.119 133.605 177.119 134.1C177.119 134.371 177.073 134.646 176.98 134.925C176.891 135.2 176.766 135.475 176.605 135.75C176.449 136.026 176.264 136.296 176.053 136.563C175.846 136.83 175.623 137.092 175.386 137.35L172.911 140.035H177.545Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"223",y:"55",width:"23.5",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M232.376 60.7388V70H230.548V62.8462L228.352 63.5444V62.1035L232.179 60.7388H232.376ZM239.841 60.7388V70H238.013V62.8462L235.816 63.5444V62.1035L239.644 60.7388H239.841Z",fill:"white"}),(0,h.createElement)("rect",{x:"249.5",y:"55",width:"23.5",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M260.742 68.5718V70H254.42V68.7812L257.41 65.5757C257.71 65.2414 257.947 64.9473 258.121 64.6934C258.294 64.4352 258.419 64.2046 258.495 64.0015C258.576 63.7941 258.616 63.5973 258.616 63.4111C258.616 63.1318 258.569 62.8927 258.476 62.6938C258.383 62.4907 258.245 62.3341 258.063 62.2241C257.886 62.1141 257.666 62.0591 257.403 62.0591C257.124 62.0591 256.883 62.1268 256.68 62.2622C256.481 62.3976 256.328 62.5859 256.223 62.8271C256.121 63.0684 256.07 63.3413 256.07 63.646H254.236C254.236 63.0959 254.367 62.5923 254.629 62.1353C254.892 61.674 255.262 61.3079 255.74 61.0371C256.218 60.762 256.785 60.6245 257.441 60.6245C258.089 60.6245 258.635 60.7303 259.079 60.9419C259.528 61.1493 259.866 61.4497 260.095 61.8433C260.327 62.2326 260.444 62.6981 260.444 63.2397C260.444 63.5444 260.395 63.8428 260.298 64.1348C260.201 64.4225 260.061 64.7103 259.879 64.998C259.701 65.2816 259.485 65.5693 259.231 65.8613C258.978 66.1533 258.696 66.4559 258.387 66.769L256.781 68.5718H260.742ZM268.163 60.7578V61.7417L264.589 70H262.659L266.233 62.186H261.631V60.7578H268.163Z",fill:"white"}),(0,h.createElement)("path",{d:"M232.065 86.707V96H230.891V88.1733L228.523 89.0366V87.9766L231.881 86.707H232.065ZM241.574 95.0352V96H235.524V95.1558L238.552 91.7852C238.925 91.3704 239.212 91.0192 239.416 90.7314C239.623 90.4395 239.767 90.1792 239.847 89.9507C239.932 89.7179 239.974 89.481 239.974 89.2397C239.974 88.9351 239.911 88.66 239.784 88.4146C239.661 88.1649 239.479 87.966 239.238 87.8179C238.997 87.6698 238.705 87.5957 238.362 87.5957C237.951 87.5957 237.609 87.6761 237.333 87.8369C237.063 87.9935 236.86 88.2135 236.724 88.4971C236.589 88.7806 236.521 89.1064 236.521 89.4746H235.347C235.347 88.9541 235.461 88.478 235.689 88.0464C235.918 87.6147 236.257 87.272 236.705 87.0181C237.154 86.7599 237.706 86.6309 238.362 86.6309C238.946 86.6309 239.445 86.7345 239.86 86.9419C240.275 87.145 240.592 87.4328 240.812 87.8052C241.036 88.1733 241.148 88.605 241.148 89.1001C241.148 89.3709 241.102 89.646 241.009 89.9253C240.92 90.2004 240.795 90.4754 240.634 90.7505C240.478 91.0256 240.294 91.2964 240.082 91.563C239.875 91.8296 239.653 92.092 239.416 92.3501L236.94 95.0352H241.574Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.761 95.0352V96H254.712V95.1558L257.74 91.7852C258.112 91.3704 258.4 91.0192 258.603 90.7314C258.81 90.4395 258.954 90.1792 259.035 89.9507C259.119 89.7179 259.162 89.481 259.162 89.2397C259.162 88.9351 259.098 88.66 258.971 88.4146C258.848 88.1649 258.667 87.966 258.425 87.8179C258.184 87.6698 257.892 87.5957 257.549 87.5957C257.139 87.5957 256.796 87.6761 256.521 87.8369C256.25 87.9935 256.047 88.2135 255.912 88.4971C255.776 88.7806 255.708 89.1064 255.708 89.4746H254.534C254.534 88.9541 254.648 88.478 254.877 88.0464C255.105 87.6147 255.444 87.272 255.893 87.0181C256.341 86.7599 256.893 86.6309 257.549 86.6309C258.133 86.6309 258.633 86.7345 259.047 86.9419C259.462 87.145 259.779 87.4328 260 87.8052C260.224 88.1733 260.336 88.605 260.336 89.1001C260.336 89.3709 260.289 89.646 260.196 89.9253C260.107 90.2004 259.983 90.4754 259.822 90.7505C259.665 91.0256 259.481 91.2964 259.27 91.563C259.062 91.8296 258.84 92.092 258.603 92.3501L256.127 95.0352H260.761ZM267.845 93.499C267.845 94.0618 267.714 94.54 267.452 94.9336C267.194 95.3229 266.842 95.6191 266.398 95.8223C265.958 96.0254 265.461 96.127 264.906 96.127C264.352 96.127 263.853 96.0254 263.408 95.8223C262.964 95.6191 262.613 95.3229 262.354 94.9336C262.096 94.54 261.967 94.0618 261.967 93.499C261.967 93.1309 262.037 92.7944 262.177 92.4897C262.321 92.1808 262.522 91.9121 262.78 91.6836C263.042 91.4551 263.351 91.2795 263.707 91.1567C264.066 91.0298 264.462 90.9663 264.894 90.9663C265.461 90.9663 265.966 91.0763 266.411 91.2964C266.855 91.5122 267.204 91.8105 267.458 92.1914C267.716 92.5723 267.845 93.0081 267.845 93.499ZM266.665 93.4736C266.665 93.1309 266.59 92.8283 266.442 92.5659C266.294 92.2993 266.087 92.092 265.82 91.9438C265.554 91.7957 265.245 91.7217 264.894 91.7217C264.534 91.7217 264.223 91.7957 263.96 91.9438C263.702 92.092 263.501 92.2993 263.357 92.5659C263.214 92.8283 263.142 93.1309 263.142 93.4736C263.142 93.8291 263.211 94.1338 263.351 94.3877C263.495 94.6374 263.698 94.8299 263.96 94.9653C264.227 95.0965 264.542 95.1621 264.906 95.1621C265.27 95.1621 265.583 95.0965 265.846 94.9653C266.108 94.8299 266.309 94.6374 266.449 94.3877C266.593 94.1338 266.665 93.8291 266.665 93.4736ZM267.629 89.1636C267.629 89.6121 267.511 90.0163 267.274 90.376C267.037 90.7357 266.713 91.0192 266.303 91.2266C265.892 91.4339 265.427 91.5376 264.906 91.5376C264.377 91.5376 263.905 91.4339 263.491 91.2266C263.08 91.0192 262.759 90.7357 262.526 90.376C262.293 90.0163 262.177 89.6121 262.177 89.1636C262.177 88.6261 262.293 88.1691 262.526 87.7925C262.763 87.4159 263.087 87.1281 263.497 86.9292C263.908 86.7303 264.375 86.6309 264.9 86.6309C265.429 86.6309 265.899 86.7303 266.309 86.9292C266.72 87.1281 267.041 87.4159 267.274 87.7925C267.511 88.1691 267.629 88.6261 267.629 89.1636ZM266.455 89.1826C266.455 88.8737 266.389 88.6007 266.258 88.3638C266.127 88.1268 265.945 87.9406 265.712 87.8052C265.48 87.6655 265.209 87.5957 264.9 87.5957C264.591 87.5957 264.32 87.6613 264.087 87.7925C263.859 87.9194 263.679 88.1014 263.548 88.3384C263.421 88.5754 263.357 88.8568 263.357 89.1826C263.357 89.5 263.421 89.7772 263.548 90.0142C263.679 90.2511 263.861 90.4352 264.094 90.5664C264.326 90.6976 264.597 90.7632 264.906 90.7632C265.215 90.7632 265.484 90.6976 265.712 90.5664C265.945 90.4352 266.127 90.2511 266.258 90.0142C266.389 89.7772 266.455 89.5 266.455 89.1826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M232.065 110.707V120H230.891V112.173L228.523 113.037V111.977L231.881 110.707H232.065ZM237.232 114.801H238.07C238.48 114.801 238.819 114.734 239.085 114.598C239.356 114.458 239.557 114.27 239.688 114.033C239.824 113.792 239.892 113.521 239.892 113.221C239.892 112.865 239.832 112.567 239.714 112.326C239.595 112.084 239.418 111.903 239.181 111.78C238.944 111.657 238.643 111.596 238.279 111.596C237.949 111.596 237.657 111.661 237.403 111.792C237.154 111.919 236.957 112.101 236.813 112.338C236.673 112.575 236.604 112.855 236.604 113.176H235.429C235.429 112.707 235.548 112.279 235.785 111.894C236.022 111.509 236.354 111.202 236.781 110.974C237.213 110.745 237.712 110.631 238.279 110.631C238.838 110.631 239.327 110.73 239.746 110.929C240.165 111.124 240.49 111.416 240.723 111.805C240.956 112.19 241.072 112.671 241.072 113.246C241.072 113.479 241.017 113.729 240.907 113.995C240.801 114.257 240.634 114.503 240.406 114.731C240.181 114.96 239.889 115.148 239.53 115.296C239.17 115.44 238.738 115.512 238.235 115.512H237.232V114.801ZM237.232 115.766V115.062H238.235C238.823 115.062 239.31 115.131 239.695 115.271C240.08 115.411 240.382 115.597 240.603 115.83C240.827 116.062 240.983 116.318 241.072 116.598C241.165 116.873 241.212 117.148 241.212 117.423C241.212 117.854 241.138 118.237 240.99 118.572C240.846 118.906 240.641 119.19 240.374 119.422C240.112 119.655 239.803 119.831 239.447 119.949C239.092 120.068 238.705 120.127 238.286 120.127C237.884 120.127 237.505 120.07 237.149 119.956C236.798 119.841 236.487 119.676 236.216 119.46C235.945 119.24 235.734 118.972 235.582 118.654C235.429 118.333 235.353 117.967 235.353 117.556H236.527C236.527 117.878 236.597 118.159 236.737 118.4C236.881 118.642 237.084 118.83 237.346 118.965C237.613 119.097 237.926 119.162 238.286 119.162C238.645 119.162 238.954 119.101 239.212 118.978C239.475 118.851 239.676 118.661 239.815 118.407C239.959 118.153 240.031 117.833 240.031 117.448C240.031 117.063 239.951 116.748 239.79 116.502C239.629 116.253 239.401 116.069 239.104 115.95C238.812 115.827 238.468 115.766 238.07 115.766H237.232Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.761 119.035V120H254.712V119.156L257.74 115.785C258.112 115.37 258.4 115.019 258.603 114.731C258.81 114.439 258.954 114.179 259.035 113.951C259.119 113.718 259.162 113.481 259.162 113.24C259.162 112.935 259.098 112.66 258.971 112.415C258.848 112.165 258.667 111.966 258.425 111.818C258.184 111.67 257.892 111.596 257.549 111.596C257.139 111.596 256.796 111.676 256.521 111.837C256.25 111.993 256.047 112.214 255.912 112.497C255.776 112.781 255.708 113.106 255.708 113.475H254.534C254.534 112.954 254.648 112.478 254.877 112.046C255.105 111.615 255.444 111.272 255.893 111.018C256.341 110.76 256.893 110.631 257.549 110.631C258.133 110.631 258.633 110.735 259.047 110.942C259.462 111.145 259.779 111.433 260 111.805C260.224 112.173 260.336 112.605 260.336 113.1C260.336 113.371 260.289 113.646 260.196 113.925C260.107 114.2 259.983 114.475 259.822 114.75C259.665 115.026 259.481 115.296 259.27 115.563C259.062 115.83 258.84 116.092 258.603 116.35L256.127 119.035H260.761ZM263.186 119.016H263.307C263.984 119.016 264.534 118.921 264.957 118.73C265.38 118.54 265.706 118.284 265.935 117.962C266.163 117.641 266.32 117.279 266.404 116.877C266.489 116.471 266.531 116.054 266.531 115.626V114.211C266.531 113.792 266.483 113.42 266.385 113.094C266.292 112.768 266.161 112.495 265.992 112.275C265.827 112.055 265.638 111.888 265.427 111.773C265.215 111.659 264.991 111.602 264.754 111.602C264.483 111.602 264.24 111.657 264.024 111.767C263.812 111.873 263.632 112.023 263.484 112.218C263.34 112.412 263.23 112.641 263.154 112.903C263.078 113.166 263.04 113.451 263.04 113.76C263.04 114.035 263.074 114.302 263.142 114.56C263.209 114.818 263.313 115.051 263.453 115.258C263.592 115.466 263.766 115.631 263.973 115.753C264.185 115.872 264.432 115.931 264.716 115.931C264.978 115.931 265.224 115.88 265.452 115.779C265.685 115.673 265.89 115.531 266.068 115.354C266.25 115.172 266.394 114.966 266.5 114.738C266.61 114.509 266.673 114.27 266.69 114.021H267.249C267.249 114.372 267.179 114.719 267.039 115.062C266.904 115.4 266.713 115.709 266.468 115.988C266.222 116.268 265.935 116.492 265.604 116.661C265.274 116.826 264.915 116.909 264.525 116.909C264.068 116.909 263.673 116.82 263.338 116.642C263.004 116.464 262.729 116.227 262.513 115.931C262.302 115.635 262.143 115.305 262.037 114.941C261.936 114.573 261.885 114.2 261.885 113.824C261.885 113.384 261.946 112.971 262.069 112.586C262.192 112.201 262.374 111.862 262.615 111.57C262.856 111.274 263.154 111.043 263.51 110.878C263.869 110.713 264.284 110.631 264.754 110.631C265.283 110.631 265.734 110.737 266.106 110.948C266.478 111.16 266.781 111.443 267.014 111.799C267.251 112.154 267.424 112.554 267.534 112.999C267.644 113.443 267.699 113.9 267.699 114.37V114.795C267.699 115.273 267.667 115.76 267.604 116.255C267.545 116.746 267.428 117.215 267.255 117.664C267.086 118.113 266.838 118.515 266.512 118.87C266.186 119.221 265.761 119.501 265.236 119.708C264.716 119.911 264.073 120.013 263.307 120.013H263.186V119.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M231.858 134.492V144.5H230.594V136.071L228.044 137.001V135.859L231.66 134.492H231.858ZM242.304 141.15V142.189H235.112V141.444L239.569 134.547H240.602L239.494 136.543L236.548 141.15H242.304ZM240.916 134.547V144.5H239.651V134.547H240.916Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M256.048 138.901H256.95C257.392 138.901 257.757 138.828 258.044 138.683C258.336 138.532 258.552 138.329 258.693 138.074C258.839 137.814 258.912 137.523 258.912 137.199C258.912 136.816 258.848 136.495 258.721 136.235C258.593 135.976 258.402 135.78 258.146 135.647C257.891 135.515 257.568 135.449 257.176 135.449C256.82 135.449 256.506 135.52 256.232 135.661C255.964 135.798 255.752 135.994 255.597 136.249C255.446 136.504 255.371 136.805 255.371 137.151H254.106C254.106 136.646 254.234 136.185 254.489 135.771C254.744 135.356 255.102 135.025 255.562 134.779C256.027 134.533 256.565 134.41 257.176 134.41C257.777 134.41 258.304 134.517 258.755 134.731C259.206 134.941 259.557 135.256 259.808 135.675C260.058 136.09 260.184 136.607 260.184 137.227C260.184 137.477 260.124 137.746 260.006 138.033C259.892 138.316 259.712 138.58 259.466 138.826C259.224 139.072 258.91 139.275 258.522 139.435C258.135 139.59 257.67 139.667 257.128 139.667H256.048V138.901ZM256.048 139.94V139.182H257.128C257.761 139.182 258.285 139.257 258.7 139.407C259.115 139.558 259.441 139.758 259.678 140.009C259.919 140.259 260.088 140.535 260.184 140.836C260.284 141.132 260.334 141.428 260.334 141.725C260.334 142.189 260.254 142.602 260.095 142.962C259.94 143.322 259.719 143.627 259.432 143.878C259.149 144.129 258.816 144.318 258.434 144.445C258.051 144.573 257.634 144.637 257.183 144.637C256.75 144.637 256.342 144.575 255.959 144.452C255.581 144.329 255.246 144.151 254.954 143.919C254.662 143.682 254.435 143.393 254.271 143.051C254.106 142.704 254.024 142.31 254.024 141.868H255.289C255.289 142.215 255.364 142.518 255.515 142.777C255.67 143.037 255.888 143.24 256.171 143.386C256.458 143.527 256.795 143.598 257.183 143.598C257.57 143.598 257.903 143.532 258.181 143.399C258.463 143.263 258.68 143.058 258.83 142.784C258.985 142.511 259.062 142.167 259.062 141.752C259.062 141.337 258.976 140.998 258.803 140.733C258.63 140.465 258.383 140.266 258.064 140.139C257.75 140.007 257.379 139.94 256.95 139.94H256.048ZM268.325 138.73V140.248C268.325 141.064 268.252 141.752 268.106 142.312C267.961 142.873 267.751 143.324 267.478 143.666C267.204 144.008 266.874 144.256 266.486 144.411C266.104 144.562 265.671 144.637 265.188 144.637C264.805 144.637 264.451 144.589 264.128 144.493C263.804 144.397 263.513 144.245 263.253 144.035C262.998 143.821 262.779 143.543 262.597 143.201C262.414 142.859 262.275 142.445 262.18 141.957C262.084 141.469 262.036 140.9 262.036 140.248V138.73C262.036 137.915 262.109 137.231 262.255 136.68C262.405 136.128 262.617 135.686 262.891 135.354C263.164 135.016 263.492 134.775 263.875 134.629C264.262 134.483 264.695 134.41 265.174 134.41C265.561 134.41 265.917 134.458 266.24 134.554C266.568 134.645 266.86 134.793 267.115 134.998C267.37 135.199 267.587 135.467 267.765 135.805C267.947 136.137 268.086 136.545 268.182 137.028C268.277 137.511 268.325 138.079 268.325 138.73ZM267.054 140.453V138.519C267.054 138.072 267.026 137.68 266.972 137.343C266.922 137.001 266.846 136.709 266.746 136.468C266.646 136.226 266.518 136.03 266.363 135.88C266.213 135.729 266.037 135.62 265.837 135.552C265.641 135.479 265.42 135.442 265.174 135.442C264.873 135.442 264.606 135.499 264.374 135.613C264.142 135.723 263.946 135.898 263.786 136.14C263.631 136.381 263.513 136.698 263.431 137.09C263.349 137.482 263.308 137.958 263.308 138.519V140.453C263.308 140.9 263.333 141.294 263.383 141.636C263.438 141.978 263.517 142.274 263.622 142.524C263.727 142.771 263.854 142.973 264.005 143.133C264.155 143.292 264.328 143.411 264.524 143.488C264.725 143.561 264.946 143.598 265.188 143.598C265.497 143.598 265.769 143.538 266.001 143.42C266.233 143.301 266.427 143.117 266.582 142.866C266.742 142.611 266.86 142.285 266.938 141.889C267.015 141.488 267.054 141.009 267.054 140.453Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1425"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1425"},(0,h.createElement)("rect",{width:"13",height:"13",fill:"white",transform:"translate(96 59)"})))),{ToolBarFields:nr,BlockName:ar,BlockLabel:ir,BlockDescription:or,BlockAdvancedValue:sr,AdvancedFields:cr,FieldWrapper:dr,FieldSettingsWrapper:mr,AdvancedInspectorControl:ur,ValidationToggleGroup:pr,ValidationBlockMessage:fr,ClientSideMacros:Vr,AttributeHelp:Hr}=JetFBComponents,{useInsertMacro:hr,useIsAdvancedValidation:br,useUniqueNameOnDuplicate:Mr}=JetFBHooks,{__:Lr}=wp.i18n,{InspectorControls:gr,useBlockProps:Zr}=wp.blockEditor,{TextControl:yr,ToggleControl:Er,PanelBody:wr,ExternalLink:vr}=wp.components,_r=JSON.parse('{"apiVersion":3,"name":"jet-forms/datetime-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","date"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Datetime Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"is_timestamp":{"type":"boolean","default":false},"min":{"type":"string","default":""},"max":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:kr}=wp.i18n,{createBlock:jr}=wp.blocks,{name:xr,icon:Fr=""}=_r,Br={className:xr.replace("/","-"),icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Fr}}),description:kr("Type in the date and time manually following the input mask or choose the values from the calendar and timer.","jet-form-builder"),edit:function(e){const C=Zr(),[t,l]=hr("min"),[r,n]=hr("max"),{attributes:a,setAttributes:i,isSelected:o,editProps:{uniqKey:s,attrHelp:c}}=e,d=br();if(Mr(),a.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},rr);const m=(0,h.createElement)(h.Fragment,null,Lr("Plain date should be in yyyy-MM-ddThh:mm format.","jet-form-builder")," ",Lr("Or you can use","jet-form-builder")," ",(0,h.createElement)(vr,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},Lr("macros","jet-form-builder"))," ",Lr("and","jet-form-builder")," ",(0,h.createElement)(vr,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},Lr("filters","jet-form-builder")),".");return[(0,h.createElement)(nr,{key:s("ToolBarFields"),...e}),o&&(0,h.createElement)(gr,{key:s("InspectorControls")},(0,h.createElement)(wr,{title:Lr("General","jet-form-builder")},(0,h.createElement)(ir,null),(0,h.createElement)(ar,null),(0,h.createElement)(or,null)),(0,h.createElement)(wr,{title:Lr("Value","jet-form-builder")},(0,h.createElement)(sr,{help:m,style:{marginBottom:"1em"}}),(0,h.createElement)(Vr,null,(0,h.createElement)(ur,{value:a.min,label:Lr("Starting from date","jet-form-builder"),onChangePreset:e=>i({min:e}),onChangeMacros:l},(({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(yr,{id:e,ref:t,className:"jet-fb m-unset",value:a.min,onChange:e=>i({min:e})}),(0,h.createElement)(Hr,null,m)))),(0,h.createElement)(ur,{value:a.max,label:Lr("Limit dates to","jet-form-builder"),onChangePreset:e=>i({max:e}),onChangeMacros:n},(({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(yr,{id:e,ref:r,className:"jet-fb m-unset",value:a.max,onChange:e=>i({max:e})}),(0,h.createElement)(Hr,null,m)))))),(0,h.createElement)(mr,{...e},(0,h.createElement)(Er,{key:s("is_timestamp"),label:Lr("Is Timestamp","jet-form-builder"),checked:a.is_timestamp,help:c("is_timestamp"),onChange:e=>{i({is_timestamp:Boolean(e)})}})),(0,h.createElement)(wr,{title:Lr("Validation","jet-form-builder")},(0,h.createElement)(pr,null),d&&(0,h.createElement)(h.Fragment,null,Boolean(a.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(fr,{name:"date_min"})),Boolean(a.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(fr,{name:"date_max"})),(0,h.createElement)(fr,{name:"empty"}))),(0,h.createElement)(cr,null)),(0,h.createElement)("div",{...C,key:s("viewBlock")},(0,h.createElement)(dr,{key:s("FieldWrapper"),...e},(0,h.createElement)(yr,{onChange:()=>{},className:"jet-form-builder__field-preview",key:s("place_holder_block"),placeholder:'Input type="datetime-local"'})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>jr("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/time-field","jet-forms/date-field"],transform:e=>jr(xr,{...e}),priority:0}]}},Ar=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M0 0H298V144H0V0Z",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M23.5107 33.5439V37.1875C23.3877 37.3698 23.1917 37.5749 22.9229 37.8027C22.654 38.026 22.2826 38.222 21.8086 38.3906C21.3392 38.5547 20.7331 38.6367 19.9902 38.6367C19.3841 38.6367 18.8258 38.5319 18.3154 38.3223C17.8096 38.1081 17.3698 37.7982 16.9961 37.3926C16.627 36.9824 16.3398 36.4857 16.1348 35.9023C15.9342 35.3145 15.834 34.6491 15.834 33.9062V33.1338C15.834 32.391 15.9206 31.7279 16.0938 31.1445C16.2715 30.5612 16.5312 30.0667 16.873 29.6611C17.2148 29.251 17.6341 28.9411 18.1309 28.7314C18.6276 28.5173 19.1973 28.4102 19.8398 28.4102C20.6009 28.4102 21.2367 28.5423 21.7471 28.8066C22.262 29.0664 22.6631 29.4264 22.9502 29.8867C23.2419 30.347 23.4287 30.8711 23.5107 31.459H22.1914C22.1322 31.099 22.0137 30.7708 21.8359 30.4746C21.6628 30.1784 21.4144 29.9414 21.0908 29.7637C20.7673 29.5814 20.3503 29.4902 19.8398 29.4902C19.3796 29.4902 18.9808 29.5745 18.6436 29.7432C18.3063 29.9118 18.0283 30.1533 17.8096 30.4678C17.5908 30.7822 17.4268 31.1628 17.3174 31.6094C17.2126 32.056 17.1602 32.5596 17.1602 33.1201V33.9062C17.1602 34.4805 17.2262 34.9932 17.3584 35.4443C17.4951 35.8955 17.6888 36.2806 17.9395 36.5996C18.1901 36.9141 18.4886 37.1533 18.835 37.3174C19.1859 37.4814 19.5732 37.5635 19.9971 37.5635C20.4665 37.5635 20.847 37.5247 21.1387 37.4473C21.4303 37.3652 21.6582 37.2695 21.8223 37.1602C21.9863 37.0462 22.1117 36.9391 22.1982 36.8389V34.6104H19.8945V33.5439H23.5107ZM28.5762 38.6367C28.0612 38.6367 27.5941 38.5501 27.1748 38.377C26.7601 38.1992 26.4023 37.9508 26.1016 37.6318C25.8053 37.3128 25.5775 36.9346 25.418 36.4971C25.2585 36.0596 25.1787 35.5811 25.1787 35.0615V34.7744C25.1787 34.1729 25.2676 33.6374 25.4453 33.168C25.623 32.694 25.8646 32.293 26.1699 31.9648C26.4753 31.6367 26.8216 31.3883 27.209 31.2197C27.5964 31.0511 27.9974 30.9668 28.4121 30.9668C28.9408 30.9668 29.3965 31.0579 29.7793 31.2402C30.1667 31.4225 30.4834 31.6777 30.7295 32.0059C30.9756 32.3294 31.1579 32.7122 31.2764 33.1543C31.3949 33.5918 31.4541 34.0703 31.4541 34.5898V35.1572H25.9307V34.125H30.1895V34.0293C30.1712 33.7012 30.1029 33.3822 29.9844 33.0723C29.8704 32.7624 29.6882 32.5072 29.4375 32.3066C29.1868 32.1061 28.8451 32.0059 28.4121 32.0059C28.125 32.0059 27.8607 32.0674 27.6191 32.1904C27.3776 32.3089 27.1702 32.4867 26.9971 32.7236C26.8239 32.9606 26.6895 33.25 26.5938 33.5918C26.498 33.9336 26.4502 34.3278 26.4502 34.7744V35.0615C26.4502 35.4124 26.498 35.7428 26.5938 36.0527C26.694 36.3581 26.8376 36.627 27.0244 36.8594C27.2158 37.0918 27.446 37.2741 27.7148 37.4062C27.9883 37.5384 28.2982 37.6045 28.6445 37.6045C29.0911 37.6045 29.4694 37.5133 29.7793 37.3311C30.0892 37.1488 30.3604 36.9049 30.5928 36.5996L31.3584 37.208C31.1989 37.4495 30.9961 37.6797 30.75 37.8984C30.5039 38.1172 30.2008 38.2949 29.8408 38.4316C29.4854 38.5684 29.0638 38.6367 28.5762 38.6367ZM34.1953 32.6826V38.5H32.9307V31.1035H34.127L34.1953 32.6826ZM33.8945 34.5215L33.3682 34.501C33.3727 33.9951 33.4479 33.528 33.5938 33.0996C33.7396 32.6667 33.9447 32.2907 34.209 31.9717C34.4733 31.6527 34.7878 31.4066 35.1523 31.2334C35.5215 31.0557 35.9294 30.9668 36.376 30.9668C36.7406 30.9668 37.0687 31.0169 37.3604 31.1172C37.652 31.2129 37.9004 31.3678 38.1055 31.582C38.3151 31.7962 38.4746 32.0742 38.584 32.416C38.6934 32.7533 38.748 33.1657 38.748 33.6533V38.5H37.4766V33.6396C37.4766 33.2523 37.4196 32.9424 37.3057 32.71C37.1917 32.473 37.0254 32.3021 36.8066 32.1973C36.5879 32.0879 36.319 32.0332 36 32.0332C35.6855 32.0332 35.3984 32.0993 35.1387 32.2314C34.8835 32.3636 34.6624 32.5459 34.4756 32.7783C34.2933 33.0107 34.1497 33.2773 34.0449 33.5781C33.9447 33.8743 33.8945 34.1888 33.8945 34.5215ZM43.7383 38.6367C43.2233 38.6367 42.7562 38.5501 42.3369 38.377C41.9222 38.1992 41.5645 37.9508 41.2637 37.6318C40.9674 37.3128 40.7396 36.9346 40.5801 36.4971C40.4206 36.0596 40.3408 35.5811 40.3408 35.0615V34.7744C40.3408 34.1729 40.4297 33.6374 40.6074 33.168C40.7852 32.694 41.0267 32.293 41.332 31.9648C41.6374 31.6367 41.9837 31.3883 42.3711 31.2197C42.7585 31.0511 43.1595 30.9668 43.5742 30.9668C44.1029 30.9668 44.5586 31.0579 44.9414 31.2402C45.3288 31.4225 45.6455 31.6777 45.8916 32.0059C46.1377 32.3294 46.32 32.7122 46.4385 33.1543C46.557 33.5918 46.6162 34.0703 46.6162 34.5898V35.1572H41.0928V34.125H45.3516V34.0293C45.3333 33.7012 45.265 33.3822 45.1465 33.0723C45.0326 32.7624 44.8503 32.5072 44.5996 32.3066C44.349 32.1061 44.0072 32.0059 43.5742 32.0059C43.2871 32.0059 43.0228 32.0674 42.7812 32.1904C42.5397 32.3089 42.3324 32.4867 42.1592 32.7236C41.986 32.9606 41.8516 33.25 41.7559 33.5918C41.6602 33.9336 41.6123 34.3278 41.6123 34.7744V35.0615C41.6123 35.4124 41.6602 35.7428 41.7559 36.0527C41.8561 36.3581 41.9997 36.627 42.1865 36.8594C42.3779 37.0918 42.6081 37.2741 42.877 37.4062C43.1504 37.5384 43.4603 37.6045 43.8066 37.6045C44.2533 37.6045 44.6315 37.5133 44.9414 37.3311C45.2513 37.1488 45.5225 36.9049 45.7549 36.5996L46.5205 37.208C46.361 37.4495 46.1582 37.6797 45.9121 37.8984C45.666 38.1172 45.363 38.2949 45.0029 38.4316C44.6475 38.5684 44.2259 38.6367 43.7383 38.6367ZM49.3574 32.2656V38.5H48.0928V31.1035H49.3232L49.3574 32.2656ZM51.668 31.0625L51.6611 32.2383C51.5563 32.2155 51.4561 32.2018 51.3604 32.1973C51.2692 32.1882 51.1644 32.1836 51.0459 32.1836C50.7542 32.1836 50.4967 32.2292 50.2734 32.3203C50.0501 32.4115 49.861 32.5391 49.7061 32.7031C49.5511 32.8672 49.4281 33.0632 49.3369 33.291C49.2503 33.5143 49.1934 33.7604 49.166 34.0293L48.8105 34.2344C48.8105 33.7878 48.8538 33.3685 48.9404 32.9766C49.0316 32.5846 49.1706 32.2383 49.3574 31.9375C49.5443 31.6322 49.7812 31.3952 50.0684 31.2266C50.36 31.0534 50.7064 30.9668 51.1074 30.9668C51.1986 30.9668 51.3034 30.9782 51.4219 31.001C51.5404 31.0192 51.6224 31.0397 51.668 31.0625ZM56.9248 37.2354V33.4277C56.9248 33.1361 56.8656 32.8831 56.7471 32.6689C56.6331 32.4502 56.46 32.2816 56.2275 32.1631C55.9951 32.0446 55.708 31.9854 55.3662 31.9854C55.0472 31.9854 54.7669 32.04 54.5254 32.1494C54.2884 32.2588 54.1016 32.4023 53.9648 32.5801C53.8327 32.7578 53.7666 32.9492 53.7666 33.1543H52.502C52.502 32.89 52.5703 32.6279 52.707 32.3682C52.8438 32.1084 53.0397 31.8737 53.2949 31.6641C53.5547 31.4499 53.8646 31.2812 54.2246 31.1582C54.5892 31.0306 54.9948 30.9668 55.4414 30.9668C55.9792 30.9668 56.4531 31.0579 56.8633 31.2402C57.278 31.4225 57.6016 31.6982 57.834 32.0674C58.071 32.432 58.1895 32.89 58.1895 33.4414V36.8867C58.1895 37.1328 58.21 37.3949 58.251 37.6729C58.2965 37.9508 58.3626 38.1901 58.4492 38.3906V38.5H57.1299C57.0661 38.3542 57.016 38.1605 56.9795 37.9189C56.943 37.6729 56.9248 37.445 56.9248 37.2354ZM57.1436 34.0156L57.1572 34.9043H55.8789C55.5189 34.9043 55.1976 34.9339 54.915 34.9932C54.6325 35.0479 54.3955 35.1322 54.2041 35.2461C54.0127 35.36 53.8669 35.5036 53.7666 35.6768C53.6663 35.8454 53.6162 36.0436 53.6162 36.2715C53.6162 36.5039 53.6686 36.7158 53.7734 36.9072C53.8783 37.0986 54.0355 37.2513 54.2451 37.3652C54.4593 37.4746 54.7214 37.5293 55.0312 37.5293C55.4186 37.5293 55.7604 37.4473 56.0566 37.2832C56.3529 37.1191 56.5876 36.9186 56.7607 36.6816C56.9385 36.4447 57.0342 36.2145 57.0479 35.9912L57.5879 36.5996C57.556 36.791 57.4694 37.0029 57.3281 37.2354C57.1868 37.4678 56.9977 37.6911 56.7607 37.9053C56.5283 38.1149 56.2503 38.2904 55.9268 38.4316C55.6077 38.5684 55.2477 38.6367 54.8467 38.6367C54.3454 38.6367 53.9056 38.5387 53.5273 38.3428C53.1536 38.1468 52.862 37.8848 52.6523 37.5566C52.4473 37.224 52.3447 36.8525 52.3447 36.4424C52.3447 36.0459 52.4222 35.6973 52.5771 35.3965C52.7321 35.0911 52.9554 34.8382 53.2471 34.6377C53.5387 34.4326 53.8896 34.2777 54.2998 34.1729C54.71 34.068 55.168 34.0156 55.6738 34.0156H57.1436ZM61.5527 28V38.5H60.2812V28H61.5527ZM68.4297 31.1035V38.5H67.1582V31.1035H68.4297ZM67.0625 29.1416C67.0625 28.9365 67.124 28.7633 67.2471 28.6221C67.3747 28.4808 67.5615 28.4102 67.8076 28.4102C68.0492 28.4102 68.2337 28.4808 68.3613 28.6221C68.4935 28.7633 68.5596 28.9365 68.5596 29.1416C68.5596 29.3376 68.4935 29.5062 68.3613 29.6475C68.2337 29.7842 68.0492 29.8525 67.8076 29.8525C67.5615 29.8525 67.3747 29.7842 67.2471 29.6475C67.124 29.5062 67.0625 29.3376 67.0625 29.1416ZM71.7246 32.6826V38.5H70.46V31.1035H71.6562L71.7246 32.6826ZM71.4238 34.5215L70.8975 34.501C70.902 33.9951 70.9772 33.528 71.123 33.0996C71.2689 32.6667 71.474 32.2907 71.7383 31.9717C72.0026 31.6527 72.3171 31.4066 72.6816 31.2334C73.0508 31.0557 73.4587 30.9668 73.9053 30.9668C74.2699 30.9668 74.598 31.0169 74.8896 31.1172C75.1813 31.2129 75.4297 31.3678 75.6348 31.582C75.8444 31.7962 76.0039 32.0742 76.1133 32.416C76.2227 32.7533 76.2773 33.1657 76.2773 33.6533V38.5H75.0059V33.6396C75.0059 33.2523 74.9489 32.9424 74.835 32.71C74.721 32.473 74.5547 32.3021 74.3359 32.1973C74.1172 32.0879 73.8483 32.0332 73.5293 32.0332C73.2148 32.0332 72.9277 32.0993 72.668 32.2314C72.4128 32.3636 72.1917 32.5459 72.0049 32.7783C71.8226 33.0107 71.679 33.2773 71.5742 33.5781C71.474 33.8743 71.4238 34.1888 71.4238 34.5215ZM80.085 38.5H78.8203V30.3242C78.8203 29.791 78.916 29.3421 79.1074 28.9775C79.3034 28.6084 79.5837 28.3304 79.9482 28.1436C80.3128 27.9521 80.7458 27.8564 81.2471 27.8564C81.3929 27.8564 81.5387 27.8656 81.6846 27.8838C81.835 27.902 81.9808 27.9294 82.1221 27.9658L82.0537 28.998C81.958 28.9753 81.8486 28.9593 81.7256 28.9502C81.6071 28.9411 81.4886 28.9365 81.3701 28.9365C81.1012 28.9365 80.8688 28.9912 80.6729 29.1006C80.4814 29.2054 80.3356 29.3604 80.2354 29.5654C80.1351 29.7705 80.085 30.0234 80.085 30.3242V38.5ZM81.6572 31.1035V32.0742H77.6514V31.1035H81.6572ZM82.7305 34.8838V34.7266C82.7305 34.1934 82.8079 33.6989 82.9629 33.2432C83.1178 32.7829 83.3411 32.3841 83.6328 32.0469C83.9245 31.7051 84.2777 31.4408 84.6924 31.2539C85.1071 31.0625 85.5719 30.9668 86.0869 30.9668C86.6064 30.9668 87.0736 31.0625 87.4883 31.2539C87.9076 31.4408 88.263 31.7051 88.5547 32.0469C88.8509 32.3841 89.0765 32.7829 89.2314 33.2432C89.3864 33.6989 89.4639 34.1934 89.4639 34.7266V34.8838C89.4639 35.417 89.3864 35.9115 89.2314 36.3672C89.0765 36.8229 88.8509 37.2217 88.5547 37.5635C88.263 37.9007 87.9098 38.165 87.4951 38.3564C87.085 38.5433 86.6201 38.6367 86.1006 38.6367C85.5811 38.6367 85.1139 38.5433 84.6992 38.3564C84.2845 38.165 83.929 37.9007 83.6328 37.5635C83.3411 37.2217 83.1178 36.8229 82.9629 36.3672C82.8079 35.9115 82.7305 35.417 82.7305 34.8838ZM83.9951 34.7266V34.8838C83.9951 35.2529 84.0384 35.6016 84.125 35.9297C84.2116 36.2533 84.3415 36.5404 84.5146 36.791C84.6924 37.0417 84.9134 37.2399 85.1777 37.3857C85.4421 37.527 85.7497 37.5977 86.1006 37.5977C86.4469 37.5977 86.75 37.527 87.0098 37.3857C87.2741 37.2399 87.4928 37.0417 87.666 36.791C87.8392 36.5404 87.9691 36.2533 88.0557 35.9297C88.1468 35.6016 88.1924 35.2529 88.1924 34.8838V34.7266C88.1924 34.362 88.1468 34.0179 88.0557 33.6943C87.9691 33.3662 87.8369 33.0768 87.6592 32.8262C87.486 32.571 87.2673 32.3704 87.0029 32.2246C86.7432 32.0788 86.4378 32.0059 86.0869 32.0059C85.7406 32.0059 85.4352 32.0788 85.1709 32.2246C84.9111 32.3704 84.6924 32.571 84.5146 32.8262C84.3415 33.0768 84.2116 33.3662 84.125 33.6943C84.0384 34.0179 83.9951 34.362 83.9951 34.7266ZM92.3145 32.2656V38.5H91.0498V31.1035H92.2803L92.3145 32.2656ZM94.625 31.0625L94.6182 32.2383C94.5133 32.2155 94.4131 32.2018 94.3174 32.1973C94.2262 32.1882 94.1214 32.1836 94.0029 32.1836C93.7113 32.1836 93.4538 32.2292 93.2305 32.3203C93.0072 32.4115 92.818 32.5391 92.6631 32.7031C92.5081 32.8672 92.3851 33.0632 92.2939 33.291C92.2074 33.5143 92.1504 33.7604 92.123 34.0293L91.7676 34.2344C91.7676 33.7878 91.8109 33.3685 91.8975 32.9766C91.9886 32.5846 92.1276 32.2383 92.3145 31.9375C92.5013 31.6322 92.7383 31.3952 93.0254 31.2266C93.3171 31.0534 93.6634 30.9668 94.0645 30.9668C94.1556 30.9668 94.2604 30.9782 94.3789 31.001C94.4974 31.0192 94.5794 31.0397 94.625 31.0625ZM97.0518 32.5732V38.5H95.7803V31.1035H96.9834L97.0518 32.5732ZM96.792 34.5215L96.2041 34.501C96.2087 33.9951 96.2747 33.528 96.4023 33.0996C96.5299 32.6667 96.7191 32.2907 96.9697 31.9717C97.2204 31.6527 97.5326 31.4066 97.9062 31.2334C98.2799 31.0557 98.7129 30.9668 99.2051 30.9668C99.5514 30.9668 99.8704 31.0169 100.162 31.1172C100.454 31.2129 100.707 31.3656 100.921 31.5752C101.135 31.7848 101.301 32.0537 101.42 32.3818C101.538 32.71 101.598 33.1064 101.598 33.5713V38.5H100.333V33.6328C100.333 33.2454 100.267 32.9355 100.135 32.7031C100.007 32.4707 99.8249 32.3021 99.5879 32.1973C99.3509 32.0879 99.0729 32.0332 98.7539 32.0332C98.3802 32.0332 98.068 32.0993 97.8174 32.2314C97.5667 32.3636 97.3662 32.5459 97.2158 32.7783C97.0654 33.0107 96.9561 33.2773 96.8877 33.5781C96.8239 33.8743 96.792 34.1888 96.792 34.5215ZM101.584 33.8242L100.736 34.084C100.741 33.6784 100.807 33.2887 100.935 32.915C101.067 32.5413 101.256 32.2087 101.502 31.917C101.753 31.6253 102.06 31.3952 102.425 31.2266C102.789 31.0534 103.206 30.9668 103.676 30.9668C104.072 30.9668 104.423 31.0192 104.729 31.124C105.038 31.2288 105.298 31.3906 105.508 31.6094C105.722 31.8236 105.884 32.0993 105.993 32.4365C106.103 32.7738 106.157 33.1748 106.157 33.6396V38.5H104.886V33.626C104.886 33.2113 104.82 32.89 104.688 32.6621C104.56 32.4297 104.378 32.2679 104.141 32.1768C103.908 32.0811 103.63 32.0332 103.307 32.0332C103.029 32.0332 102.783 32.0811 102.568 32.1768C102.354 32.2725 102.174 32.4046 102.028 32.5732C101.882 32.7373 101.771 32.9264 101.693 33.1406C101.62 33.3548 101.584 33.5827 101.584 33.8242ZM112.433 37.2354V33.4277C112.433 33.1361 112.373 32.8831 112.255 32.6689C112.141 32.4502 111.968 32.2816 111.735 32.1631C111.503 32.0446 111.216 31.9854 110.874 31.9854C110.555 31.9854 110.275 32.04 110.033 32.1494C109.796 32.2588 109.609 32.4023 109.473 32.5801C109.34 32.7578 109.274 32.9492 109.274 33.1543H108.01C108.01 32.89 108.078 32.6279 108.215 32.3682C108.352 32.1084 108.548 31.8737 108.803 31.6641C109.062 31.4499 109.372 31.2812 109.732 31.1582C110.097 31.0306 110.503 30.9668 110.949 30.9668C111.487 30.9668 111.961 31.0579 112.371 31.2402C112.786 31.4225 113.109 31.6982 113.342 32.0674C113.579 32.432 113.697 32.89 113.697 33.4414V36.8867C113.697 37.1328 113.718 37.3949 113.759 37.6729C113.804 37.9508 113.87 38.1901 113.957 38.3906V38.5H112.638C112.574 38.3542 112.524 38.1605 112.487 37.9189C112.451 37.6729 112.433 37.445 112.433 37.2354ZM112.651 34.0156L112.665 34.9043H111.387C111.027 34.9043 110.705 34.9339 110.423 34.9932C110.14 35.0479 109.903 35.1322 109.712 35.2461C109.521 35.36 109.375 35.5036 109.274 35.6768C109.174 35.8454 109.124 36.0436 109.124 36.2715C109.124 36.5039 109.176 36.7158 109.281 36.9072C109.386 37.0986 109.543 37.2513 109.753 37.3652C109.967 37.4746 110.229 37.5293 110.539 37.5293C110.926 37.5293 111.268 37.4473 111.564 37.2832C111.861 37.1191 112.095 36.9186 112.269 36.6816C112.446 36.4447 112.542 36.2145 112.556 35.9912L113.096 36.5996C113.064 36.791 112.977 37.0029 112.836 37.2354C112.695 37.4678 112.506 37.6911 112.269 37.9053C112.036 38.1149 111.758 38.2904 111.435 38.4316C111.116 38.5684 110.756 38.6367 110.354 38.6367C109.853 38.6367 109.413 38.5387 109.035 38.3428C108.661 38.1468 108.37 37.8848 108.16 37.5566C107.955 37.224 107.853 36.8525 107.853 36.4424C107.853 36.0459 107.93 35.6973 108.085 35.3965C108.24 35.0911 108.463 34.8382 108.755 34.6377C109.047 34.4326 109.397 34.2777 109.808 34.1729C110.218 34.068 110.676 34.0156 111.182 34.0156H112.651ZM118.783 31.1035V32.0742H114.784V31.1035H118.783ZM116.138 29.3057H117.402V36.668C117.402 36.9186 117.441 37.1077 117.519 37.2354C117.596 37.363 117.696 37.4473 117.819 37.4883C117.942 37.5293 118.075 37.5498 118.216 37.5498C118.321 37.5498 118.43 37.5407 118.544 37.5225C118.662 37.4997 118.751 37.4814 118.811 37.4678L118.817 38.5C118.717 38.5319 118.585 38.5615 118.421 38.5889C118.261 38.6208 118.068 38.6367 117.84 38.6367C117.53 38.6367 117.245 38.5752 116.985 38.4521C116.726 38.3291 116.518 38.124 116.363 37.8369C116.213 37.5452 116.138 37.1533 116.138 36.6611V29.3057ZM121.641 31.1035V38.5H120.369V31.1035H121.641ZM120.273 29.1416C120.273 28.9365 120.335 28.7633 120.458 28.6221C120.586 28.4808 120.772 28.4102 121.019 28.4102C121.26 28.4102 121.445 28.4808 121.572 28.6221C121.704 28.7633 121.771 28.9365 121.771 29.1416C121.771 29.3376 121.704 29.5062 121.572 29.6475C121.445 29.7842 121.26 29.8525 121.019 29.8525C120.772 29.8525 120.586 29.7842 120.458 29.6475C120.335 29.5062 120.273 29.3376 120.273 29.1416ZM123.336 34.8838V34.7266C123.336 34.1934 123.413 33.6989 123.568 33.2432C123.723 32.7829 123.947 32.3841 124.238 32.0469C124.53 31.7051 124.883 31.4408 125.298 31.2539C125.713 31.0625 126.177 30.9668 126.692 30.9668C127.212 30.9668 127.679 31.0625 128.094 31.2539C128.513 31.4408 128.868 31.7051 129.16 32.0469C129.456 32.3841 129.682 32.7829 129.837 33.2432C129.992 33.6989 130.069 34.1934 130.069 34.7266V34.8838C130.069 35.417 129.992 35.9115 129.837 36.3672C129.682 36.8229 129.456 37.2217 129.16 37.5635C128.868 37.9007 128.515 38.165 128.101 38.3564C127.69 38.5433 127.226 38.6367 126.706 38.6367C126.187 38.6367 125.719 38.5433 125.305 38.3564C124.89 38.165 124.535 37.9007 124.238 37.5635C123.947 37.2217 123.723 36.8229 123.568 36.3672C123.413 35.9115 123.336 35.417 123.336 34.8838ZM124.601 34.7266V34.8838C124.601 35.2529 124.644 35.6016 124.73 35.9297C124.817 36.2533 124.947 36.5404 125.12 36.791C125.298 37.0417 125.519 37.2399 125.783 37.3857C126.048 37.527 126.355 37.5977 126.706 37.5977C127.052 37.5977 127.355 37.527 127.615 37.3857C127.88 37.2399 128.098 37.0417 128.271 36.791C128.445 36.5404 128.575 36.2533 128.661 35.9297C128.752 35.6016 128.798 35.2529 128.798 34.8838V34.7266C128.798 34.362 128.752 34.0179 128.661 33.6943C128.575 33.3662 128.442 33.0768 128.265 32.8262C128.091 32.571 127.873 32.3704 127.608 32.2246C127.349 32.0788 127.043 32.0059 126.692 32.0059C126.346 32.0059 126.041 32.0788 125.776 32.2246C125.517 32.3704 125.298 32.571 125.12 32.8262C124.947 33.0768 124.817 33.3662 124.73 33.6943C124.644 34.0179 124.601 34.362 124.601 34.7266ZM132.92 32.6826V38.5H131.655V31.1035H132.852L132.92 32.6826ZM132.619 34.5215L132.093 34.501C132.097 33.9951 132.173 33.528 132.318 33.0996C132.464 32.6667 132.669 32.2907 132.934 31.9717C133.198 31.6527 133.512 31.4066 133.877 31.2334C134.246 31.0557 134.654 30.9668 135.101 30.9668C135.465 30.9668 135.793 31.0169 136.085 31.1172C136.377 31.2129 136.625 31.3678 136.83 31.582C137.04 31.7962 137.199 32.0742 137.309 32.416C137.418 32.7533 137.473 33.1657 137.473 33.6533V38.5H136.201V33.6396C136.201 33.2523 136.144 32.9424 136.03 32.71C135.916 32.473 135.75 32.3021 135.531 32.1973C135.312 32.0879 135.044 32.0332 134.725 32.0332C134.41 32.0332 134.123 32.0993 133.863 32.2314C133.608 32.3636 133.387 32.5459 133.2 32.7783C133.018 33.0107 132.874 33.2773 132.77 33.5781C132.669 33.8743 132.619 34.1888 132.619 34.5215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15.5",y:"47",width:"267",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("path",{d:"M27.3867 56.7578V66H26.1616V56.7578H27.3867ZM30.6113 60.5981V66H29.437V59.1318H30.5479L30.6113 60.5981ZM30.332 62.3057L29.8433 62.2866C29.8475 61.8169 29.9173 61.3831 30.0527 60.9854C30.1882 60.5833 30.3786 60.2342 30.624 59.938C30.8695 59.6418 31.1615 59.4132 31.5 59.2524C31.8428 59.0874 32.2215 59.0049 32.6362 59.0049C32.9748 59.0049 33.2795 59.0514 33.5503 59.1445C33.8211 59.2334 34.0518 59.3773 34.2422 59.5762C34.4368 59.7751 34.585 60.0332 34.6865 60.3506C34.7881 60.6637 34.8389 61.0467 34.8389 61.4995V66H33.6582V61.4868C33.6582 61.1271 33.6053 60.8394 33.4995 60.6235C33.3937 60.4035 33.2393 60.2448 33.0361 60.1475C32.833 60.0459 32.5833 59.9951 32.2871 59.9951C31.9951 59.9951 31.7285 60.0565 31.4873 60.1792C31.2503 60.3019 31.0451 60.4712 30.8716 60.687C30.7023 60.9028 30.569 61.1504 30.4717 61.4297C30.3786 61.7048 30.332 61.9967 30.332 62.3057ZM37.7969 60.4521V68.6406H36.6162V59.1318H37.6953L37.7969 60.4521ZM42.4243 62.5088V62.6421C42.4243 63.1414 42.3651 63.6048 42.2466 64.0322C42.1281 64.4554 41.9546 64.8236 41.7261 65.1367C41.5018 65.4499 41.2246 65.6932 40.8945 65.8667C40.5645 66.0402 40.1857 66.127 39.7583 66.127C39.3224 66.127 38.9373 66.055 38.603 65.9111C38.2687 65.7673 37.9852 65.5578 37.7524 65.2827C37.5197 65.0076 37.3335 64.6776 37.1938 64.2925C37.0584 63.9074 36.9653 63.4736 36.9146 62.9912V62.2803C36.9653 61.7725 37.0605 61.3175 37.2002 60.9155C37.3398 60.5135 37.5239 60.1707 37.7524 59.8872C37.9852 59.5994 38.2666 59.3815 38.5967 59.2334C38.9268 59.0811 39.3076 59.0049 39.7393 59.0049C40.1709 59.0049 40.5539 59.0895 40.8882 59.2588C41.2225 59.4238 41.5039 59.6608 41.7324 59.9697C41.9609 60.2786 42.1323 60.6489 42.2466 61.0806C42.3651 61.508 42.4243 61.984 42.4243 62.5088ZM41.2437 62.6421V62.5088C41.2437 62.166 41.2077 61.8444 41.1357 61.5439C41.0638 61.2393 40.9517 60.9727 40.7993 60.7441C40.6512 60.5114 40.4608 60.3294 40.228 60.1982C39.9953 60.0628 39.7181 59.9951 39.3965 59.9951C39.1003 59.9951 38.8421 60.0459 38.6221 60.1475C38.4062 60.249 38.2222 60.3866 38.0698 60.5601C37.9175 60.7293 37.7926 60.924 37.6953 61.144C37.6022 61.3599 37.5324 61.5841 37.4858 61.8169V63.4609C37.5705 63.7572 37.689 64.0365 37.8413 64.2988C37.9937 64.557 38.1968 64.7664 38.4507 64.9272C38.7046 65.0838 39.0241 65.1621 39.4092 65.1621C39.7266 65.1621 39.9995 65.0965 40.228 64.9653C40.4608 64.8299 40.6512 64.6458 40.7993 64.4131C40.9517 64.1803 41.0638 63.9137 41.1357 63.6133C41.2077 63.3086 41.2437 62.9849 41.2437 62.6421ZM48.1245 64.4131V59.1318H49.3052V66H48.1816L48.1245 64.4131ZM48.3467 62.9658L48.8354 62.9531C48.8354 63.4102 48.7868 63.8333 48.6895 64.2227C48.5964 64.6077 48.444 64.9421 48.2324 65.2256C48.0208 65.5091 47.7437 65.7313 47.4009 65.8921C47.0581 66.0487 46.6413 66.127 46.1504 66.127C45.8161 66.127 45.5093 66.0783 45.23 65.981C44.9549 65.8836 44.7179 65.7334 44.519 65.5303C44.3201 65.3271 44.1657 65.0627 44.0557 64.7368C43.9499 64.411 43.897 64.0195 43.897 63.5625V59.1318H45.0713V63.5752C45.0713 63.8841 45.1051 64.1401 45.1729 64.3433C45.2448 64.5422 45.34 64.7008 45.4585 64.8193C45.5812 64.9336 45.7166 65.014 45.8647 65.0605C46.0171 65.1071 46.1737 65.1304 46.3345 65.1304C46.8338 65.1304 47.2295 65.0352 47.5215 64.8447C47.8135 64.6501 48.0229 64.3898 48.1499 64.064C48.2811 63.7339 48.3467 63.3678 48.3467 62.9658ZM53.9707 59.1318V60.0332H50.2573V59.1318H53.9707ZM51.5142 57.4624H52.6885V64.2988C52.6885 64.5316 52.7244 64.7072 52.7964 64.8257C52.8683 64.9442 52.9614 65.0225 53.0757 65.0605C53.1899 65.0986 53.3127 65.1177 53.4438 65.1177C53.5412 65.1177 53.6427 65.1092 53.7485 65.0923C53.8586 65.0711 53.9411 65.0542 53.9961 65.0415L54.0024 66C53.9093 66.0296 53.7866 66.0571 53.6343 66.0825C53.4862 66.1121 53.3063 66.127 53.0947 66.127C52.807 66.127 52.5425 66.0698 52.3013 65.9556C52.0601 65.8413 51.8675 65.6509 51.7236 65.3843C51.584 65.1134 51.5142 64.7495 51.5142 64.2925V57.4624ZM60.1406 66H58.9663V58.5352C58.9663 58.0146 59.0679 57.5745 59.271 57.2148C59.4741 56.8551 59.764 56.5822 60.1406 56.396C60.5173 56.2098 60.9637 56.1167 61.48 56.1167C61.7847 56.1167 62.083 56.1548 62.375 56.231C62.667 56.3029 62.9674 56.3939 63.2764 56.5039L63.0796 57.4941C62.8849 57.418 62.6585 57.346 62.4004 57.2783C62.1465 57.2064 61.8672 57.1704 61.5625 57.1704C61.0589 57.1704 60.695 57.2847 60.4707 57.5132C60.2507 57.7375 60.1406 58.0781 60.1406 58.5352V66ZM61.5435 59.1318V60.0332H57.8809V59.1318H61.5435ZM63.854 59.1318V66H62.6797V59.1318H63.854ZM68.6338 66.127C68.1556 66.127 67.7218 66.0465 67.3325 65.8857C66.9474 65.7207 66.6152 65.4901 66.3359 65.1938C66.0609 64.8976 65.8493 64.5464 65.7012 64.1401C65.5531 63.7339 65.479 63.2896 65.479 62.8071V62.5405C65.479 61.9819 65.5615 61.4847 65.7266 61.0488C65.8916 60.6087 66.1159 60.2363 66.3994 59.9316C66.6829 59.627 67.0046 59.3963 67.3643 59.2397C67.724 59.0832 68.0964 59.0049 68.4814 59.0049C68.9723 59.0049 69.3955 59.0895 69.751 59.2588C70.1107 59.4281 70.4048 59.665 70.6333 59.9697C70.8618 60.2702 71.0311 60.6257 71.1411 61.0361C71.2511 61.4424 71.3062 61.8867 71.3062 62.3691V62.896H66.1772V61.9375H70.1318V61.8486C70.1149 61.5439 70.0514 61.2477 69.9414 60.96C69.8356 60.6722 69.6663 60.4352 69.4336 60.249C69.2008 60.0628 68.8835 59.9697 68.4814 59.9697C68.2148 59.9697 67.9694 60.0269 67.7451 60.1411C67.5208 60.2511 67.3283 60.4162 67.1675 60.6362C67.0067 60.8563 66.8818 61.125 66.793 61.4424C66.7041 61.7598 66.6597 62.1258 66.6597 62.5405V62.8071C66.6597 63.133 66.7041 63.4398 66.793 63.7275C66.8861 64.0111 67.0194 64.2607 67.1929 64.4766C67.3706 64.6924 67.5843 64.8617 67.834 64.9844C68.0879 65.1071 68.3757 65.1685 68.6973 65.1685C69.112 65.1685 69.4632 65.0838 69.751 64.9146C70.0387 64.7453 70.2905 64.5189 70.5063 64.2354L71.2173 64.8003C71.0692 65.0246 70.8809 65.2383 70.6523 65.4414C70.4238 65.6445 70.1424 65.8096 69.8081 65.9365C69.478 66.0635 69.0866 66.127 68.6338 66.127ZM73.9531 56.25V66H72.7725V56.25H73.9531ZM80.1675 64.667V56.25H81.3481V66H80.269L80.1675 64.667ZM75.5464 62.6421V62.5088C75.5464 61.984 75.6099 61.508 75.7368 61.0806C75.868 60.6489 76.0521 60.2786 76.2891 59.9697C76.5303 59.6608 76.8159 59.4238 77.146 59.2588C77.4803 59.0895 77.8527 59.0049 78.2632 59.0049C78.6948 59.0049 79.0715 59.0811 79.3931 59.2334C79.7189 59.3815 79.994 59.5994 80.2183 59.8872C80.4468 60.1707 80.6266 60.5135 80.7578 60.9155C80.889 61.3175 80.98 61.7725 81.0308 62.2803V62.8643C80.9842 63.3678 80.8932 63.8206 80.7578 64.2227C80.6266 64.6247 80.4468 64.9674 80.2183 65.251C79.994 65.5345 79.7189 65.7524 79.3931 65.9048C79.0672 66.0529 78.6864 66.127 78.2505 66.127C77.8485 66.127 77.4803 66.0402 77.146 65.8667C76.8159 65.6932 76.5303 65.4499 76.2891 65.1367C76.0521 64.8236 75.868 64.4554 75.7368 64.0322C75.6099 63.6048 75.5464 63.1414 75.5464 62.6421ZM76.7271 62.5088V62.6421C76.7271 62.9849 76.7609 63.3065 76.8286 63.6069C76.9006 63.9074 77.0106 64.1719 77.1587 64.4004C77.3068 64.6289 77.4951 64.8088 77.7236 64.9399C77.9521 65.0669 78.2251 65.1304 78.5425 65.1304C78.9318 65.1304 79.2513 65.0479 79.501 64.8828C79.7549 64.7178 79.958 64.4998 80.1104 64.229C80.2627 63.9582 80.3812 63.6641 80.4658 63.3467V61.8169C80.415 61.5841 80.341 61.3599 80.2437 61.144C80.1506 60.924 80.0278 60.7293 79.8755 60.5601C79.7274 60.3866 79.5433 60.249 79.3232 60.1475C79.1074 60.0459 78.8514 59.9951 78.5552 59.9951C78.2336 59.9951 77.9564 60.0628 77.7236 60.1982C77.4951 60.3294 77.3068 60.5114 77.1587 60.7441C77.0106 60.9727 76.9006 61.2393 76.8286 61.5439C76.7609 61.8444 76.7271 62.166 76.7271 62.5088Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15.5",y:"47",width:"267",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M57.6997 107V97.9H60.9367C61.6344 97.9 62.2237 98.004 62.7047 98.212C63.1857 98.42 63.5497 98.7407 63.7967 99.174C64.0481 99.6073 64.1737 100.162 64.1737 100.838C64.1737 101.523 64.0502 102.088 63.8032 102.534C63.5562 102.976 63.1944 103.306 62.7177 103.522C62.2411 103.735 61.6604 103.841 60.9757 103.841H59.3637V107H57.6997ZM59.3637 102.45H60.7807C61.3484 102.45 61.7731 102.322 62.0547 102.066C62.3407 101.811 62.4837 101.41 62.4837 100.864C62.4837 100.318 62.3386 99.9193 62.0482 99.668C61.7622 99.4167 61.3267 99.291 60.7417 99.291H59.3637V102.45ZM65.0953 107V100.5H66.6033L66.6423 101.189C66.807 101.007 67.0388 100.825 67.3378 100.643C67.6368 100.461 67.964 100.37 68.3193 100.37C68.4233 100.37 68.5186 100.379 68.6053 100.396L68.4883 101.982C68.393 101.956 68.2976 101.939 68.2023 101.93C68.1113 101.921 68.0203 101.917 67.9293 101.917C67.6563 101.917 67.4071 101.98 67.1818 102.105C66.9565 102.231 66.7983 102.385 66.7073 102.567V107H65.0953ZM72.4051 107.13C71.6207 107.13 70.9664 106.974 70.4421 106.662C69.9221 106.346 69.5321 105.93 69.2721 105.414C69.0121 104.894 68.8821 104.326 68.8821 103.711C68.8821 103.117 69.0034 102.569 69.2461 102.066C69.4931 101.564 69.8527 101.161 70.3251 100.857C70.7974 100.55 71.3737 100.396 72.0541 100.396C72.6781 100.396 73.1981 100.524 73.6141 100.779C74.0301 101.035 74.3421 101.377 74.5501 101.806C74.7581 102.231 74.8621 102.701 74.8621 103.217C74.8621 103.36 74.8534 103.505 74.8361 103.652C74.8187 103.795 74.7927 103.945 74.7581 104.101H70.5591C70.6197 104.504 70.7454 104.831 70.9361 105.082C71.1311 105.329 71.3672 105.511 71.6446 105.628C71.9262 105.745 72.2274 105.804 72.5481 105.804C72.9251 105.804 73.2761 105.756 73.6011 105.661C73.9261 105.561 74.2251 105.431 74.4981 105.271L74.5761 106.636C74.3291 106.766 74.0214 106.881 73.6531 106.98C73.2847 107.08 72.8687 107.13 72.4051 107.13ZM70.5981 103.009H73.2241C73.2241 102.814 73.1872 102.619 73.1136 102.424C73.0399 102.225 72.9164 102.058 72.7431 101.923C72.5741 101.789 72.3444 101.722 72.0541 101.722C71.6381 101.722 71.3109 101.843 71.0726 102.086C70.8342 102.329 70.6761 102.636 70.5981 103.009ZM77.68 107L75.184 100.5H76.77L78.369 104.998L79.968 100.5H81.554L79.058 107H77.68ZM82.3482 107V100.5H83.9602V107H82.3482ZM82.3482 99.512V97.9H83.9602V99.512H82.3482ZM88.4223 107.13C87.716 107.13 87.1136 106.976 86.6153 106.668C86.117 106.361 85.7356 105.951 85.4713 105.44C85.2113 104.929 85.0813 104.37 85.0813 103.763C85.0813 103.152 85.2113 102.589 85.4713 102.073C85.7356 101.557 86.117 101.146 86.6153 100.838C87.1136 100.526 87.716 100.37 88.4223 100.37C89.1286 100.37 89.731 100.526 90.2293 100.838C90.7276 101.146 91.1068 101.557 91.3668 102.073C91.6311 102.589 91.7633 103.152 91.7633 103.763C91.7633 104.37 91.6311 104.929 91.3668 105.44C91.1068 105.951 90.7276 106.361 90.2293 106.668C89.731 106.976 89.1286 107.13 88.4223 107.13ZM88.4223 105.804C88.964 105.804 89.38 105.615 89.6703 105.238C89.965 104.857 90.1123 104.365 90.1123 103.763C90.1123 103.152 89.965 102.656 89.6703 102.274C89.38 101.889 88.964 101.696 88.4223 101.696C87.885 101.696 87.469 101.889 87.1743 102.274C86.8796 102.656 86.7323 103.152 86.7323 103.763C86.7323 104.365 86.8796 104.857 87.1743 105.238C87.469 105.615 87.885 105.804 88.4223 105.804ZM95.5763 107.13C94.9003 107.13 94.3608 106.996 93.9578 106.727C93.5548 106.458 93.2645 106.09 93.0868 105.622C92.9092 105.15 92.8203 104.608 92.8203 103.997V100.5H94.4323V103.997C94.4323 104.599 94.532 105.048 94.7313 105.342C94.935 105.633 95.2643 105.778 95.7193 105.778C96.0833 105.778 96.3845 105.691 96.6228 105.518C96.8655 105.345 97.067 105.102 97.2273 104.79L96.9413 105.609V100.5H98.5533V107H97.0453L96.9673 105.869L97.3183 106.324C97.1623 106.523 96.9153 106.707 96.5773 106.876C96.2437 107.046 95.91 107.13 95.5763 107.13ZM101.904 107.13C101.475 107.13 101.087 107.089 100.741 107.007C100.398 106.924 100.054 106.805 99.7072 106.649L99.8502 105.271C100.184 105.466 100.511 105.624 100.832 105.745C101.157 105.862 101.497 105.921 101.852 105.921C102.173 105.921 102.418 105.869 102.587 105.765C102.756 105.661 102.84 105.496 102.84 105.271C102.84 105.102 102.795 104.963 102.704 104.855C102.617 104.747 102.485 104.649 102.307 104.562C102.13 104.476 101.909 104.383 101.644 104.283C101.246 104.136 100.905 103.975 100.624 103.802C100.346 103.629 100.134 103.421 99.9867 103.178C99.8437 102.931 99.7722 102.628 99.7722 102.268C99.7722 101.895 99.8697 101.566 100.065 101.28C100.26 100.994 100.537 100.771 100.897 100.61C101.256 100.45 101.683 100.37 102.177 100.37C102.589 100.37 102.957 100.415 103.282 100.506C103.612 100.597 103.915 100.721 104.192 100.877L104.049 102.255C103.759 102.051 103.466 101.884 103.172 101.754C102.877 101.62 102.554 101.553 102.203 101.553C101.926 101.553 101.711 101.609 101.56 101.722C101.408 101.835 101.332 101.995 101.332 102.203C101.332 102.454 101.438 102.643 101.651 102.768C101.863 102.894 102.203 103.048 102.671 103.23C102.975 103.347 103.237 103.468 103.458 103.594C103.683 103.72 103.869 103.858 104.017 104.01C104.164 104.162 104.272 104.335 104.342 104.53C104.415 104.721 104.452 104.942 104.452 105.193C104.452 105.605 104.353 105.956 104.153 106.246C103.958 106.532 103.67 106.751 103.289 106.902C102.912 107.054 102.45 107.13 101.904 107.13Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"16",y:"87.5",width:"129.5",height:"30",rx:"15",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"151.5",y:"86.5",width:"131.5",height:"32",rx:"16",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M204.997 107V97.9H206.635L210.522 103.776V97.9H212.186V107H210.821L206.661 100.76V107H204.997ZM216.897 107.13C216.112 107.13 215.458 106.974 214.934 106.662C214.414 106.346 214.024 105.93 213.764 105.414C213.504 104.894 213.374 104.326 213.374 103.711C213.374 103.117 213.495 102.569 213.738 102.066C213.985 101.564 214.344 101.161 214.817 100.857C215.289 100.55 215.865 100.396 216.546 100.396C217.17 100.396 217.69 100.524 218.106 100.779C218.522 101.035 218.834 101.377 219.042 101.806C219.25 102.231 219.354 102.701 219.354 103.217C219.354 103.36 219.345 103.505 219.328 103.652C219.31 103.795 219.284 103.945 219.25 104.101H215.051C215.111 104.504 215.237 104.831 215.428 105.082C215.623 105.329 215.859 105.511 216.136 105.628C216.418 105.745 216.719 105.804 217.04 105.804C217.417 105.804 217.768 105.756 218.093 105.661C218.418 105.561 218.717 105.431 218.99 105.271L219.068 106.636C218.821 106.766 218.513 106.881 218.145 106.98C217.776 107.08 217.36 107.13 216.897 107.13ZM215.09 103.009H217.716C217.716 102.814 217.679 102.619 217.605 102.424C217.532 102.225 217.408 102.058 217.235 101.923C217.066 101.789 216.836 101.722 216.546 101.722C216.13 101.722 215.803 101.843 215.564 102.086C215.326 102.329 215.168 102.636 215.09 103.009ZM219.779 107L221.937 103.75L219.779 100.5H221.703L222.886 102.385L223.978 100.5H225.902L223.744 103.75L225.902 107H223.978L222.795 105.115L221.703 107H219.779ZM228.908 107.13C228.501 107.13 228.169 107.048 227.914 106.883C227.658 106.714 227.469 106.499 227.348 106.239C227.227 105.979 227.166 105.709 227.166 105.427V101.826H226.243L226.386 100.5H227.166V99.07L228.778 98.901V100.5H230.208V101.826H228.778V104.764C228.778 105.093 228.798 105.332 228.837 105.479C228.876 105.622 228.964 105.713 229.103 105.752C229.242 105.787 229.463 105.804 229.766 105.804H230.208L230.065 107.13H228.908Z",fill:"white"})),{BlockClassName:Pr,BlockAddPrevButton:Sr,BlockPrevButtonLabel:Nr}=JetFBComponents,{__:Ir}=wp.i18n,{InspectorControls:Tr,useBlockProps:Or,RichText:Jr}=wp.blockEditor?wp.blockEditor:wp.editor,{TextareaControl:Rr,TextControl:qr,PanelBody:Dr,Button:zr,ToggleControl:Ur}=wp.components,Gr=JSON.parse('{"apiVersion":3,"name":"jet-forms/form-break-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","break","pagebreak","formbreak"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Form Page Break","icon":"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"add_next_button":{"type":"boolean","default":true},"page_break_disabled":{"type":"string","default":"","jfb":{"rich":true}},"label_progress":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:Wr}=wp.i18n,{createBlock:Kr}=wp.blocks,{name:$r,icon:Yr=""}=Gr,Xr={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Yr}}),description:Wr("With the help of Form Break Field, divide one big form into several parts and make those parts appear after filling in the previous part.","jet-form-builder"),edit:function(e){const C=Or(),{attributes:t,setAttributes:l,editProps:{uniqKey:r,attrHelp:n}}=e;return t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ar):[e.isSelected&&(0,h.createElement)(Tr,{key:r("InspectorControls")},(0,h.createElement)(Dr,{title:Ir("Buttons Settings","jet-form-builder")},(0,h.createElement)(Ur,{key:r("add_next_button"),label:Ir('Enable "Next" Button',"jet-form-builder"),checked:t.add_next_button,help:n("add_next_button"),onChange:e=>l({add_next_button:e})}),t.add_next_button&&(0,h.createElement)(qr,{label:Ir("Next Button label","jet-form-builder"),value:t.label,onChange:e=>l({label:e})}),(0,h.createElement)(Sr,null),(0,h.createElement)(Nr,null)),(0,h.createElement)(Dr,{title:Ir("Page Settings","jet-form-builder")},(0,h.createElement)(qr,{label:Ir("Label of progress","jet-form-builder"),value:t.label_progress,help:n("label_progress"),onChange:C=>{e.setAttributes({label_progress:C})}}),(0,h.createElement)(Rr,{key:"page_break_disabled",value:t.page_break_disabled,label:Ir("Validation message","jet-form-builder"),help:n("page_break_disabled"),onChange:e=>{l({page_break_disabled:e})}})),(0,h.createElement)(Dr,{title:Ir("Advanced","jet-form-builder")},(0,h.createElement)(Pr,null))),(0,h.createElement)("div",{...C,key:r("viewBlock")},(0,h.createElement)("div",{className:"jet-form-builder__next-page-wrap jet-form-builder__bottom-line"},t.add_next_button&&(0,h.createElement)(zr,{isSecondary:!0,key:"next_page_button",className:"jet-form-builder__next-page"},(0,h.createElement)(Jr,{placeholder:"Next...",allowedFormats:[],value:t.label,onChange:e=>l({label:e})})),t.add_prev&&(0,h.createElement)(zr,{isSecondary:!0,key:"prev_page_button",className:"jet-form-builder__prev-page"},(0,h.createElement)(Jr,{placeholder:"Prev...",allowedFormats:[],value:t.prev_label,onChange:e=>l({prev_label:e})})),!t.add_next_button&&!t.add_prev&&(0,h.createElement)("span",null,Ir("Form Break","jet-form-builder"))))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Kr("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["jet-forms/submit-field"],isMatch:e=>e.add_next_button,transform:e=>Kr("jet-forms/submit-field",{...e,action_type:"next"}),priority:0},{type:"block",blocks:["core/buttons"],isMatch:e=>e.add_next_button,transform:({label:e=""})=>Kr("core/buttons",{},[Kr("core/button",{text:e})]),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Kr($r,{...e}),priority:0},{type:"block",blocks:["jet-forms/submit-field"],isMatch:e=>"next"===e.action_type,transform:e=>Kr($r,{...e}),priority:0},{type:"block",blocks:["core/buttons"],transform:(e,C)=>Kr($r,{label:C[0]?.attributes?.text||"Next"}),priority:0}]}},Qr=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M47.0752 33.2305V34.748C47.0752 35.5638 47.0023 36.252 46.8564 36.8125C46.7106 37.373 46.501 37.8242 46.2275 38.166C45.9541 38.5078 45.6237 38.7562 45.2363 38.9111C44.8535 39.0615 44.4206 39.1367 43.9375 39.1367C43.5547 39.1367 43.2015 39.0889 42.8779 38.9932C42.5544 38.8975 42.2627 38.7448 42.0029 38.5352C41.7477 38.321 41.529 38.043 41.3467 37.7012C41.1644 37.3594 41.0254 36.9447 40.9297 36.457C40.834 35.9694 40.7861 35.3997 40.7861 34.748V33.2305C40.7861 32.4147 40.859 31.7311 41.0049 31.1797C41.1553 30.6283 41.3672 30.1862 41.6406 29.8535C41.9141 29.5163 42.2422 29.2747 42.625 29.1289C43.0124 28.9831 43.4453 28.9102 43.9238 28.9102C44.3112 28.9102 44.6667 28.958 44.9902 29.0537C45.3184 29.1449 45.61 29.293 45.8652 29.498C46.1204 29.6986 46.3369 29.9674 46.5146 30.3047C46.6969 30.6374 46.8359 31.0452 46.9316 31.5283C47.0273 32.0114 47.0752 32.5788 47.0752 33.2305ZM45.8037 34.9531V33.0186C45.8037 32.5719 45.7764 32.18 45.7217 31.8428C45.6715 31.501 45.5964 31.2093 45.4961 30.9678C45.3958 30.7262 45.2682 30.5303 45.1133 30.3799C44.9629 30.2295 44.7874 30.1201 44.5869 30.0518C44.391 29.9788 44.1699 29.9424 43.9238 29.9424C43.623 29.9424 43.3564 29.9993 43.124 30.1133C42.8916 30.2227 42.6956 30.3981 42.5361 30.6396C42.3812 30.8812 42.2627 31.1979 42.1807 31.5898C42.0986 31.9818 42.0576 32.458 42.0576 33.0186V34.9531C42.0576 35.3997 42.0827 35.7939 42.1328 36.1357C42.1875 36.4775 42.2673 36.7738 42.3721 37.0244C42.4769 37.2705 42.6045 37.4733 42.7549 37.6328C42.9053 37.7923 43.0785 37.9108 43.2744 37.9883C43.4749 38.0612 43.696 38.0977 43.9375 38.0977C44.2474 38.0977 44.5186 38.0384 44.751 37.9199C44.9834 37.8014 45.1771 37.6169 45.332 37.3662C45.4915 37.111 45.61 36.7852 45.6875 36.3887C45.765 35.9876 45.8037 35.5091 45.8037 34.9531ZM52.8584 28.9922V39H51.5938V30.5713L49.0439 31.501V30.3594L52.6602 28.9922H52.8584ZM56.7344 38.3301C56.7344 38.1159 56.8005 37.9359 56.9326 37.79C57.0693 37.6396 57.2653 37.5645 57.5205 37.5645C57.7757 37.5645 57.9694 37.6396 58.1016 37.79C58.2383 37.9359 58.3066 38.1159 58.3066 38.3301C58.3066 38.5397 58.2383 38.7174 58.1016 38.8633C57.9694 39.0091 57.7757 39.082 57.5205 39.082C57.2653 39.082 57.0693 39.0091 56.9326 38.8633C56.8005 38.7174 56.7344 38.5397 56.7344 38.3301ZM71.4248 34.0439V37.6875C71.3018 37.8698 71.1058 38.0749 70.8369 38.3027C70.568 38.526 70.1966 38.722 69.7227 38.8906C69.2533 39.0547 68.6471 39.1367 67.9043 39.1367C67.2982 39.1367 66.7399 39.0319 66.2295 38.8223C65.7236 38.6081 65.2839 38.2982 64.9102 37.8926C64.541 37.4824 64.2539 36.9857 64.0488 36.4023C63.8483 35.8145 63.748 35.1491 63.748 34.4062V33.6338C63.748 32.891 63.8346 32.2279 64.0078 31.6445C64.1855 31.0612 64.4453 30.5667 64.7871 30.1611C65.1289 29.751 65.5482 29.4411 66.0449 29.2314C66.5417 29.0173 67.1113 28.9102 67.7539 28.9102C68.515 28.9102 69.1507 29.0423 69.6611 29.3066C70.1761 29.5664 70.5771 29.9264 70.8643 30.3867C71.1559 30.847 71.3428 31.3711 71.4248 31.959H70.1055C70.0462 31.599 69.9277 31.2708 69.75 30.9746C69.5768 30.6784 69.3285 30.4414 69.0049 30.2637C68.6813 30.0814 68.2643 29.9902 67.7539 29.9902C67.2936 29.9902 66.8949 30.0745 66.5576 30.2432C66.2204 30.4118 65.9424 30.6533 65.7236 30.9678C65.5049 31.2822 65.3408 31.6628 65.2314 32.1094C65.1266 32.556 65.0742 33.0596 65.0742 33.6201V34.4062C65.0742 34.9805 65.1403 35.4932 65.2725 35.9443C65.4092 36.3955 65.6029 36.7806 65.8535 37.0996C66.1042 37.4141 66.4027 37.6533 66.749 37.8174C67.0999 37.9814 67.4873 38.0635 67.9111 38.0635C68.3805 38.0635 68.7611 38.0247 69.0527 37.9473C69.3444 37.8652 69.5723 37.7695 69.7363 37.6602C69.9004 37.5462 70.0257 37.4391 70.1123 37.3389V35.1104H67.8086V34.0439H71.4248ZM76.4902 39.1367C75.9753 39.1367 75.5081 39.0501 75.0889 38.877C74.6742 38.6992 74.3164 38.4508 74.0156 38.1318C73.7194 37.8128 73.4915 37.4346 73.332 36.9971C73.1725 36.5596 73.0928 36.0811 73.0928 35.5615V35.2744C73.0928 34.6729 73.1816 34.1374 73.3594 33.668C73.5371 33.194 73.7786 32.793 74.084 32.4648C74.3893 32.1367 74.7357 31.8883 75.123 31.7197C75.5104 31.5511 75.9115 31.4668 76.3262 31.4668C76.8548 31.4668 77.3105 31.5579 77.6934 31.7402C78.0807 31.9225 78.3975 32.1777 78.6436 32.5059C78.8896 32.8294 79.0719 33.2122 79.1904 33.6543C79.3089 34.0918 79.3682 34.5703 79.3682 35.0898V35.6572H73.8447V34.625H78.1035V34.5293C78.0853 34.2012 78.0169 33.8822 77.8984 33.5723C77.7845 33.2624 77.6022 33.0072 77.3516 32.8066C77.1009 32.6061 76.7591 32.5059 76.3262 32.5059C76.0391 32.5059 75.7747 32.5674 75.5332 32.6904C75.2917 32.8089 75.0843 32.9867 74.9111 33.2236C74.738 33.4606 74.6035 33.75 74.5078 34.0918C74.4121 34.4336 74.3643 34.8278 74.3643 35.2744V35.5615C74.3643 35.9124 74.4121 36.2428 74.5078 36.5527C74.6081 36.8581 74.7516 37.127 74.9385 37.3594C75.1299 37.5918 75.36 37.7741 75.6289 37.9062C75.9023 38.0384 76.2122 38.1045 76.5586 38.1045C77.0052 38.1045 77.3835 38.0133 77.6934 37.8311C78.0033 37.6488 78.2744 37.4049 78.5068 37.0996L79.2725 37.708C79.113 37.9495 78.9102 38.1797 78.6641 38.3984C78.418 38.6172 78.1149 38.7949 77.7549 38.9316C77.3994 39.0684 76.9779 39.1367 76.4902 39.1367ZM82.1094 33.1826V39H80.8447V31.6035H82.041L82.1094 33.1826ZM81.8086 35.0215L81.2822 35.001C81.2868 34.4951 81.362 34.028 81.5078 33.5996C81.6536 33.1667 81.8587 32.7907 82.123 32.4717C82.3874 32.1527 82.7018 31.9066 83.0664 31.7334C83.4355 31.5557 83.8434 31.4668 84.29 31.4668C84.6546 31.4668 84.9827 31.5169 85.2744 31.6172C85.5661 31.7129 85.8145 31.8678 86.0195 32.082C86.2292 32.2962 86.3887 32.5742 86.498 32.916C86.6074 33.2533 86.6621 33.6657 86.6621 34.1533V39H85.3906V34.1396C85.3906 33.7523 85.3337 33.4424 85.2197 33.21C85.1058 32.973 84.9395 32.8021 84.7207 32.6973C84.502 32.5879 84.2331 32.5332 83.9141 32.5332C83.5996 32.5332 83.3125 32.5993 83.0527 32.7314C82.7975 32.8636 82.5765 33.0459 82.3896 33.2783C82.2074 33.5107 82.0638 33.7773 81.959 34.0781C81.8587 34.3743 81.8086 34.6888 81.8086 35.0215ZM91.6523 39.1367C91.1374 39.1367 90.6702 39.0501 90.251 38.877C89.8363 38.6992 89.4785 38.4508 89.1777 38.1318C88.8815 37.8128 88.6536 37.4346 88.4941 36.9971C88.3346 36.5596 88.2549 36.0811 88.2549 35.5615V35.2744C88.2549 34.6729 88.3438 34.1374 88.5215 33.668C88.6992 33.194 88.9408 32.793 89.2461 32.4648C89.5514 32.1367 89.8978 31.8883 90.2852 31.7197C90.6725 31.5511 91.0736 31.4668 91.4883 31.4668C92.0169 31.4668 92.4727 31.5579 92.8555 31.7402C93.2428 31.9225 93.5596 32.1777 93.8057 32.5059C94.0518 32.8294 94.234 33.2122 94.3525 33.6543C94.471 34.0918 94.5303 34.5703 94.5303 35.0898V35.6572H89.0068V34.625H93.2656V34.5293C93.2474 34.2012 93.179 33.8822 93.0605 33.5723C92.9466 33.2624 92.7643 33.0072 92.5137 32.8066C92.263 32.6061 91.9212 32.5059 91.4883 32.5059C91.2012 32.5059 90.9368 32.5674 90.6953 32.6904C90.4538 32.8089 90.2464 32.9867 90.0732 33.2236C89.9001 33.4606 89.7656 33.75 89.6699 34.0918C89.5742 34.4336 89.5264 34.8278 89.5264 35.2744V35.5615C89.5264 35.9124 89.5742 36.2428 89.6699 36.5527C89.7702 36.8581 89.9137 37.127 90.1006 37.3594C90.292 37.5918 90.5221 37.7741 90.791 37.9062C91.0645 38.0384 91.3743 38.1045 91.7207 38.1045C92.1673 38.1045 92.5456 38.0133 92.8555 37.8311C93.1654 37.6488 93.4365 37.4049 93.6689 37.0996L94.4346 37.708C94.2751 37.9495 94.0723 38.1797 93.8262 38.3984C93.5801 38.6172 93.277 38.7949 92.917 38.9316C92.5615 39.0684 92.14 39.1367 91.6523 39.1367ZM97.2715 32.7656V39H96.0068V31.6035H97.2373L97.2715 32.7656ZM99.582 31.5625L99.5752 32.7383C99.4704 32.7155 99.3701 32.7018 99.2744 32.6973C99.1833 32.6882 99.0785 32.6836 98.96 32.6836C98.6683 32.6836 98.4108 32.7292 98.1875 32.8203C97.9642 32.9115 97.7751 33.0391 97.6201 33.2031C97.4652 33.3672 97.3421 33.5632 97.251 33.791C97.1644 34.0143 97.1074 34.2604 97.0801 34.5293L96.7246 34.7344C96.7246 34.2878 96.7679 33.8685 96.8545 33.4766C96.9456 33.0846 97.0846 32.7383 97.2715 32.4375C97.4583 32.1322 97.6953 31.8952 97.9824 31.7266C98.2741 31.5534 98.6204 31.4668 99.0215 31.4668C99.1126 31.4668 99.2174 31.4782 99.3359 31.501C99.4544 31.5192 99.5365 31.5397 99.582 31.5625ZM104.839 37.7354V33.9277C104.839 33.6361 104.78 33.3831 104.661 33.1689C104.547 32.9502 104.374 32.7816 104.142 32.6631C103.909 32.5446 103.622 32.4854 103.28 32.4854C102.961 32.4854 102.681 32.54 102.439 32.6494C102.202 32.7588 102.016 32.9023 101.879 33.0801C101.747 33.2578 101.681 33.4492 101.681 33.6543H100.416C100.416 33.39 100.484 33.1279 100.621 32.8682C100.758 32.6084 100.954 32.3737 101.209 32.1641C101.469 31.9499 101.779 31.7812 102.139 31.6582C102.503 31.5306 102.909 31.4668 103.355 31.4668C103.893 31.4668 104.367 31.5579 104.777 31.7402C105.192 31.9225 105.516 32.1982 105.748 32.5674C105.985 32.932 106.104 33.39 106.104 33.9414V37.3867C106.104 37.6328 106.124 37.8949 106.165 38.1729C106.211 38.4508 106.277 38.6901 106.363 38.8906V39H105.044C104.98 38.8542 104.93 38.6605 104.894 38.4189C104.857 38.1729 104.839 37.945 104.839 37.7354ZM105.058 34.5156L105.071 35.4043H103.793C103.433 35.4043 103.112 35.4339 102.829 35.4932C102.547 35.5479 102.31 35.6322 102.118 35.7461C101.927 35.86 101.781 36.0036 101.681 36.1768C101.58 36.3454 101.53 36.5436 101.53 36.7715C101.53 37.0039 101.583 37.2158 101.688 37.4072C101.792 37.5986 101.95 37.7513 102.159 37.8652C102.373 37.9746 102.635 38.0293 102.945 38.0293C103.333 38.0293 103.674 37.9473 103.971 37.7832C104.267 37.6191 104.502 37.4186 104.675 37.1816C104.853 36.9447 104.948 36.7145 104.962 36.4912L105.502 37.0996C105.47 37.291 105.383 37.5029 105.242 37.7354C105.101 37.9678 104.912 38.1911 104.675 38.4053C104.442 38.6149 104.164 38.7904 103.841 38.9316C103.522 39.0684 103.162 39.1367 102.761 39.1367C102.259 39.1367 101.82 39.0387 101.441 38.8428C101.068 38.6468 100.776 38.3848 100.566 38.0566C100.361 37.724 100.259 37.3525 100.259 36.9424C100.259 36.5459 100.336 36.1973 100.491 35.8965C100.646 35.5911 100.869 35.3382 101.161 35.1377C101.453 34.9326 101.804 34.7777 102.214 34.6729C102.624 34.568 103.082 34.5156 103.588 34.5156H105.058ZM109.467 28.5V39H108.195V28.5H109.467ZM116.344 31.6035V39H115.072V31.6035H116.344ZM114.977 29.6416C114.977 29.4365 115.038 29.2633 115.161 29.1221C115.289 28.9808 115.476 28.9102 115.722 28.9102C115.963 28.9102 116.148 28.9808 116.275 29.1221C116.408 29.2633 116.474 29.4365 116.474 29.6416C116.474 29.8376 116.408 30.0062 116.275 30.1475C116.148 30.2842 115.963 30.3525 115.722 30.3525C115.476 30.3525 115.289 30.2842 115.161 30.1475C115.038 30.0062 114.977 29.8376 114.977 29.6416ZM119.639 33.1826V39H118.374V31.6035H119.57L119.639 33.1826ZM119.338 35.0215L118.812 35.001C118.816 34.4951 118.891 34.028 119.037 33.5996C119.183 33.1667 119.388 32.7907 119.652 32.4717C119.917 32.1527 120.231 31.9066 120.596 31.7334C120.965 31.5557 121.373 31.4668 121.819 31.4668C122.184 31.4668 122.512 31.5169 122.804 31.6172C123.095 31.7129 123.344 31.8678 123.549 32.082C123.758 32.2962 123.918 32.5742 124.027 32.916C124.137 33.2533 124.191 33.6657 124.191 34.1533V39H122.92V34.1396C122.92 33.7523 122.863 33.4424 122.749 33.21C122.635 32.973 122.469 32.8021 122.25 32.6973C122.031 32.5879 121.762 32.5332 121.443 32.5332C121.129 32.5332 120.842 32.5993 120.582 32.7314C120.327 32.8636 120.106 33.0459 119.919 33.2783C119.737 33.5107 119.593 33.7773 119.488 34.0781C119.388 34.3743 119.338 34.6888 119.338 35.0215ZM127.999 39H126.734V30.8242C126.734 30.291 126.83 29.8421 127.021 29.4775C127.217 29.1084 127.498 28.8304 127.862 28.6436C128.227 28.4521 128.66 28.3564 129.161 28.3564C129.307 28.3564 129.453 28.3656 129.599 28.3838C129.749 28.402 129.895 28.4294 130.036 28.4658L129.968 29.498C129.872 29.4753 129.763 29.4593 129.64 29.4502C129.521 29.4411 129.403 29.4365 129.284 29.4365C129.015 29.4365 128.783 29.4912 128.587 29.6006C128.396 29.7054 128.25 29.8604 128.149 30.0654C128.049 30.2705 127.999 30.5234 127.999 30.8242V39ZM129.571 31.6035V32.5742H125.565V31.6035H129.571ZM130.645 35.3838V35.2266C130.645 34.6934 130.722 34.1989 130.877 33.7432C131.032 33.2829 131.255 32.8841 131.547 32.5469C131.839 32.2051 132.192 31.9408 132.606 31.7539C133.021 31.5625 133.486 31.4668 134.001 31.4668C134.521 31.4668 134.988 31.5625 135.402 31.7539C135.822 31.9408 136.177 32.2051 136.469 32.5469C136.765 32.8841 136.991 33.2829 137.146 33.7432C137.3 34.1989 137.378 34.6934 137.378 35.2266V35.3838C137.378 35.917 137.3 36.4115 137.146 36.8672C136.991 37.3229 136.765 37.7217 136.469 38.0635C136.177 38.4007 135.824 38.665 135.409 38.8564C134.999 39.0433 134.534 39.1367 134.015 39.1367C133.495 39.1367 133.028 39.0433 132.613 38.8564C132.199 38.665 131.843 38.4007 131.547 38.0635C131.255 37.7217 131.032 37.3229 130.877 36.8672C130.722 36.4115 130.645 35.917 130.645 35.3838ZM131.909 35.2266V35.3838C131.909 35.7529 131.952 36.1016 132.039 36.4297C132.126 36.7533 132.256 37.0404 132.429 37.291C132.606 37.5417 132.827 37.7399 133.092 37.8857C133.356 38.027 133.664 38.0977 134.015 38.0977C134.361 38.0977 134.664 38.027 134.924 37.8857C135.188 37.7399 135.407 37.5417 135.58 37.291C135.753 37.0404 135.883 36.7533 135.97 36.4297C136.061 36.1016 136.106 35.7529 136.106 35.3838V35.2266C136.106 34.862 136.061 34.5179 135.97 34.1943C135.883 33.8662 135.751 33.5768 135.573 33.3262C135.4 33.071 135.181 32.8704 134.917 32.7246C134.657 32.5788 134.352 32.5059 134.001 32.5059C133.655 32.5059 133.349 32.5788 133.085 32.7246C132.825 32.8704 132.606 33.071 132.429 33.3262C132.256 33.5768 132.126 33.8662 132.039 34.1943C131.952 34.5179 131.909 34.862 131.909 35.2266ZM140.229 32.7656V39H138.964V31.6035H140.194L140.229 32.7656ZM142.539 31.5625L142.532 32.7383C142.427 32.7155 142.327 32.7018 142.231 32.6973C142.14 32.6882 142.035 32.6836 141.917 32.6836C141.625 32.6836 141.368 32.7292 141.145 32.8203C140.921 32.9115 140.732 33.0391 140.577 33.2031C140.422 33.3672 140.299 33.5632 140.208 33.791C140.121 34.0143 140.064 34.2604 140.037 34.5293L139.682 34.7344C139.682 34.2878 139.725 33.8685 139.812 33.4766C139.903 33.0846 140.042 32.7383 140.229 32.4375C140.415 32.1322 140.652 31.8952 140.939 31.7266C141.231 31.5534 141.577 31.4668 141.979 31.4668C142.07 31.4668 142.174 31.4782 142.293 31.501C142.411 31.5192 142.493 31.5397 142.539 31.5625ZM144.966 33.0732V39H143.694V31.6035H144.897L144.966 33.0732ZM144.706 35.0215L144.118 35.001C144.123 34.4951 144.189 34.028 144.316 33.5996C144.444 33.1667 144.633 32.7907 144.884 32.4717C145.134 32.1527 145.447 31.9066 145.82 31.7334C146.194 31.5557 146.627 31.4668 147.119 31.4668C147.465 31.4668 147.785 31.5169 148.076 31.6172C148.368 31.7129 148.621 31.8656 148.835 32.0752C149.049 32.2848 149.215 32.5537 149.334 32.8818C149.452 33.21 149.512 33.6064 149.512 34.0713V39H148.247V34.1328C148.247 33.7454 148.181 33.4355 148.049 33.2031C147.921 32.9707 147.739 32.8021 147.502 32.6973C147.265 32.5879 146.987 32.5332 146.668 32.5332C146.294 32.5332 145.982 32.5993 145.731 32.7314C145.481 32.8636 145.28 33.0459 145.13 33.2783C144.979 33.5107 144.87 33.7773 144.802 34.0781C144.738 34.3743 144.706 34.6888 144.706 35.0215ZM149.498 34.3242L148.65 34.584C148.655 34.1784 148.721 33.7887 148.849 33.415C148.981 33.0413 149.17 32.7087 149.416 32.417C149.667 32.1253 149.974 31.8952 150.339 31.7266C150.703 31.5534 151.12 31.4668 151.59 31.4668C151.986 31.4668 152.337 31.5192 152.643 31.624C152.952 31.7288 153.212 31.8906 153.422 32.1094C153.636 32.3236 153.798 32.5993 153.907 32.9365C154.017 33.2738 154.071 33.6748 154.071 34.1396V39H152.8V34.126C152.8 33.7113 152.734 33.39 152.602 33.1621C152.474 32.9297 152.292 32.7679 152.055 32.6768C151.822 32.5811 151.544 32.5332 151.221 32.5332C150.943 32.5332 150.697 32.5811 150.482 32.6768C150.268 32.7725 150.088 32.9046 149.942 33.0732C149.797 33.2373 149.685 33.4264 149.607 33.6406C149.535 33.8548 149.498 34.0827 149.498 34.3242ZM160.347 37.7354V33.9277C160.347 33.6361 160.287 33.3831 160.169 33.1689C160.055 32.9502 159.882 32.7816 159.649 32.6631C159.417 32.5446 159.13 32.4854 158.788 32.4854C158.469 32.4854 158.189 32.54 157.947 32.6494C157.71 32.7588 157.523 32.9023 157.387 33.0801C157.255 33.2578 157.188 33.4492 157.188 33.6543H155.924C155.924 33.39 155.992 33.1279 156.129 32.8682C156.266 32.6084 156.462 32.3737 156.717 32.1641C156.977 31.9499 157.286 31.7812 157.646 31.6582C158.011 31.5306 158.417 31.4668 158.863 31.4668C159.401 31.4668 159.875 31.5579 160.285 31.7402C160.7 31.9225 161.023 32.1982 161.256 32.5674C161.493 32.932 161.611 33.39 161.611 33.9414V37.3867C161.611 37.6328 161.632 37.8949 161.673 38.1729C161.718 38.4508 161.785 38.6901 161.871 38.8906V39H160.552C160.488 38.8542 160.438 38.6605 160.401 38.4189C160.365 38.1729 160.347 37.945 160.347 37.7354ZM160.565 34.5156L160.579 35.4043H159.301C158.941 35.4043 158.619 35.4339 158.337 35.4932C158.054 35.5479 157.817 35.6322 157.626 35.7461C157.435 35.86 157.289 36.0036 157.188 36.1768C157.088 36.3454 157.038 36.5436 157.038 36.7715C157.038 37.0039 157.09 37.2158 157.195 37.4072C157.3 37.5986 157.457 37.7513 157.667 37.8652C157.881 37.9746 158.143 38.0293 158.453 38.0293C158.84 38.0293 159.182 37.9473 159.479 37.7832C159.775 37.6191 160.009 37.4186 160.183 37.1816C160.36 36.9447 160.456 36.7145 160.47 36.4912L161.01 37.0996C160.978 37.291 160.891 37.5029 160.75 37.7354C160.609 37.9678 160.42 38.1911 160.183 38.4053C159.95 38.6149 159.672 38.7904 159.349 38.9316C159.03 39.0684 158.67 39.1367 158.269 39.1367C157.767 39.1367 157.327 39.0387 156.949 38.8428C156.576 38.6468 156.284 38.3848 156.074 38.0566C155.869 37.724 155.767 37.3525 155.767 36.9424C155.767 36.5459 155.844 36.1973 155.999 35.8965C156.154 35.5911 156.377 35.3382 156.669 35.1377C156.961 34.9326 157.312 34.7777 157.722 34.6729C158.132 34.568 158.59 34.5156 159.096 34.5156H160.565ZM166.697 31.6035V32.5742H162.698V31.6035H166.697ZM164.052 29.8057H165.316V37.168C165.316 37.4186 165.355 37.6077 165.433 37.7354C165.51 37.863 165.61 37.9473 165.733 37.9883C165.856 38.0293 165.989 38.0498 166.13 38.0498C166.235 38.0498 166.344 38.0407 166.458 38.0225C166.576 37.9997 166.665 37.9814 166.725 37.9678L166.731 39C166.631 39.0319 166.499 39.0615 166.335 39.0889C166.175 39.1208 165.982 39.1367 165.754 39.1367C165.444 39.1367 165.159 39.0752 164.899 38.9521C164.64 38.8291 164.432 38.624 164.277 38.3369C164.127 38.0452 164.052 37.6533 164.052 37.1611V29.8057ZM169.555 31.6035V39H168.283V31.6035H169.555ZM168.188 29.6416C168.188 29.4365 168.249 29.2633 168.372 29.1221C168.5 28.9808 168.687 28.9102 168.933 28.9102C169.174 28.9102 169.359 28.9808 169.486 29.1221C169.618 29.2633 169.685 29.4365 169.685 29.6416C169.685 29.8376 169.618 30.0062 169.486 30.1475C169.359 30.2842 169.174 30.3525 168.933 30.3525C168.687 30.3525 168.5 30.2842 168.372 30.1475C168.249 30.0062 168.188 29.8376 168.188 29.6416ZM171.25 35.3838V35.2266C171.25 34.6934 171.327 34.1989 171.482 33.7432C171.637 33.2829 171.861 32.8841 172.152 32.5469C172.444 32.2051 172.797 31.9408 173.212 31.7539C173.627 31.5625 174.091 31.4668 174.606 31.4668C175.126 31.4668 175.593 31.5625 176.008 31.7539C176.427 31.9408 176.783 32.2051 177.074 32.5469C177.37 32.8841 177.596 33.2829 177.751 33.7432C177.906 34.1989 177.983 34.6934 177.983 35.2266V35.3838C177.983 35.917 177.906 36.4115 177.751 36.8672C177.596 37.3229 177.37 37.7217 177.074 38.0635C176.783 38.4007 176.429 38.665 176.015 38.8564C175.604 39.0433 175.14 39.1367 174.62 39.1367C174.101 39.1367 173.633 39.0433 173.219 38.8564C172.804 38.665 172.449 38.4007 172.152 38.0635C171.861 37.7217 171.637 37.3229 171.482 36.8672C171.327 36.4115 171.25 35.917 171.25 35.3838ZM172.515 35.2266V35.3838C172.515 35.7529 172.558 36.1016 172.645 36.4297C172.731 36.7533 172.861 37.0404 173.034 37.291C173.212 37.5417 173.433 37.7399 173.697 37.8857C173.962 38.027 174.269 38.0977 174.62 38.0977C174.966 38.0977 175.27 38.027 175.529 37.8857C175.794 37.7399 176.012 37.5417 176.186 37.291C176.359 37.0404 176.489 36.7533 176.575 36.4297C176.666 36.1016 176.712 35.7529 176.712 35.3838V35.2266C176.712 34.862 176.666 34.5179 176.575 34.1943C176.489 33.8662 176.356 33.5768 176.179 33.3262C176.006 33.071 175.787 32.8704 175.522 32.7246C175.263 32.5788 174.957 32.5059 174.606 32.5059C174.26 32.5059 173.955 32.5788 173.69 32.7246C173.431 32.8704 173.212 33.071 173.034 33.3262C172.861 33.5768 172.731 33.8662 172.645 34.1943C172.558 34.5179 172.515 34.862 172.515 35.2266ZM180.834 33.1826V39H179.569V31.6035H180.766L180.834 33.1826ZM180.533 35.0215L180.007 35.001C180.011 34.4951 180.087 34.028 180.232 33.5996C180.378 33.1667 180.583 32.7907 180.848 32.4717C181.112 32.1527 181.426 31.9066 181.791 31.7334C182.16 31.5557 182.568 31.4668 183.015 31.4668C183.379 31.4668 183.707 31.5169 183.999 31.6172C184.291 31.7129 184.539 31.8678 184.744 32.082C184.954 32.2962 185.113 32.5742 185.223 32.916C185.332 33.2533 185.387 33.6657 185.387 34.1533V39H184.115V34.1396C184.115 33.7523 184.058 33.4424 183.944 33.21C183.83 32.973 183.664 32.8021 183.445 32.6973C183.227 32.5879 182.958 32.5332 182.639 32.5332C182.324 32.5332 182.037 32.5993 181.777 32.7314C181.522 32.8636 181.301 33.0459 181.114 33.2783C180.932 33.5107 180.788 33.7773 180.684 34.0781C180.583 34.3743 180.533 34.6888 180.533 35.0215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15",y:"52",width:"268",height:"40",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M258 72H40",stroke:"#4272F9",strokeWidth:"3",strokeLinecap:"round"}),(0,h.createElement)("path",{d:"M47.0752 109.23V110.748C47.0752 111.564 47.0023 112.252 46.8564 112.812C46.7106 113.373 46.501 113.824 46.2275 114.166C45.9541 114.508 45.6237 114.756 45.2363 114.911C44.8535 115.062 44.4206 115.137 43.9375 115.137C43.5547 115.137 43.2015 115.089 42.8779 114.993C42.5544 114.897 42.2627 114.745 42.0029 114.535C41.7477 114.321 41.529 114.043 41.3467 113.701C41.1644 113.359 41.0254 112.945 40.9297 112.457C40.834 111.969 40.7861 111.4 40.7861 110.748V109.23C40.7861 108.415 40.859 107.731 41.0049 107.18C41.1553 106.628 41.3672 106.186 41.6406 105.854C41.9141 105.516 42.2422 105.275 42.625 105.129C43.0124 104.983 43.4453 104.91 43.9238 104.91C44.3112 104.91 44.6667 104.958 44.9902 105.054C45.3184 105.145 45.61 105.293 45.8652 105.498C46.1204 105.699 46.3369 105.967 46.5146 106.305C46.6969 106.637 46.8359 107.045 46.9316 107.528C47.0273 108.011 47.0752 108.579 47.0752 109.23ZM45.8037 110.953V109.019C45.8037 108.572 45.7764 108.18 45.7217 107.843C45.6715 107.501 45.5964 107.209 45.4961 106.968C45.3958 106.726 45.2682 106.53 45.1133 106.38C44.9629 106.229 44.7874 106.12 44.5869 106.052C44.391 105.979 44.1699 105.942 43.9238 105.942C43.623 105.942 43.3564 105.999 43.124 106.113C42.8916 106.223 42.6956 106.398 42.5361 106.64C42.3812 106.881 42.2627 107.198 42.1807 107.59C42.0986 107.982 42.0576 108.458 42.0576 109.019V110.953C42.0576 111.4 42.0827 111.794 42.1328 112.136C42.1875 112.478 42.2673 112.774 42.3721 113.024C42.4769 113.271 42.6045 113.473 42.7549 113.633C42.9053 113.792 43.0785 113.911 43.2744 113.988C43.4749 114.061 43.696 114.098 43.9375 114.098C44.2474 114.098 44.5186 114.038 44.751 113.92C44.9834 113.801 45.1771 113.617 45.332 113.366C45.4915 113.111 45.61 112.785 45.6875 112.389C45.765 111.988 45.8037 111.509 45.8037 110.953ZM55.2236 113.961V115H48.709V114.091L51.9697 110.461C52.3708 110.014 52.6807 109.636 52.8994 109.326C53.1227 109.012 53.2777 108.731 53.3643 108.485C53.4554 108.235 53.501 107.979 53.501 107.72C53.501 107.392 53.4326 107.095 53.2959 106.831C53.1637 106.562 52.9678 106.348 52.708 106.188C52.4482 106.029 52.1338 105.949 51.7646 105.949C51.3226 105.949 50.9535 106.036 50.6572 106.209C50.3656 106.378 50.1468 106.615 50.001 106.92C49.8551 107.225 49.7822 107.576 49.7822 107.973H48.5176C48.5176 107.412 48.6406 106.899 48.8867 106.435C49.1328 105.97 49.4974 105.601 49.9805 105.327C50.4635 105.049 51.0583 104.91 51.7646 104.91C52.3936 104.91 52.9313 105.022 53.3779 105.245C53.8245 105.464 54.1663 105.774 54.4033 106.175C54.6449 106.571 54.7656 107.036 54.7656 107.569C54.7656 107.861 54.7155 108.157 54.6152 108.458C54.5195 108.754 54.3851 109.05 54.2119 109.347C54.0433 109.643 53.8451 109.935 53.6172 110.222C53.3939 110.509 53.1546 110.791 52.8994 111.069L50.2334 113.961H55.2236ZM56.7344 114.33C56.7344 114.116 56.8005 113.936 56.9326 113.79C57.0693 113.64 57.2653 113.564 57.5205 113.564C57.7757 113.564 57.9694 113.64 58.1016 113.79C58.2383 113.936 58.3066 114.116 58.3066 114.33C58.3066 114.54 58.2383 114.717 58.1016 114.863C57.9694 115.009 57.7757 115.082 57.5205 115.082C57.2653 115.082 57.0693 115.009 56.9326 114.863C56.8005 114.717 56.7344 114.54 56.7344 114.33ZM67.7402 111.097H65.0811V110.023H67.7402C68.2552 110.023 68.6722 109.941 68.9912 109.777C69.3102 109.613 69.5426 109.385 69.6885 109.094C69.8389 108.802 69.9141 108.469 69.9141 108.096C69.9141 107.754 69.8389 107.433 69.6885 107.132C69.5426 106.831 69.3102 106.59 68.9912 106.407C68.6722 106.22 68.2552 106.127 67.7402 106.127H65.3887V115H64.0693V105.047H67.7402C68.4922 105.047 69.1279 105.177 69.6475 105.437C70.167 105.696 70.5612 106.056 70.8301 106.517C71.099 106.972 71.2334 107.494 71.2334 108.082C71.2334 108.72 71.099 109.265 70.8301 109.716C70.5612 110.167 70.167 110.511 69.6475 110.748C69.1279 110.98 68.4922 111.097 67.7402 111.097ZM75.6836 115.137C75.1686 115.137 74.7015 115.05 74.2822 114.877C73.8675 114.699 73.5098 114.451 73.209 114.132C72.9128 113.813 72.6849 113.435 72.5254 112.997C72.3659 112.56 72.2861 112.081 72.2861 111.562V111.274C72.2861 110.673 72.375 110.137 72.5527 109.668C72.7305 109.194 72.972 108.793 73.2773 108.465C73.5827 108.137 73.929 107.888 74.3164 107.72C74.7038 107.551 75.1048 107.467 75.5195 107.467C76.0482 107.467 76.5039 107.558 76.8867 107.74C77.2741 107.923 77.5908 108.178 77.8369 108.506C78.083 108.829 78.2653 109.212 78.3838 109.654C78.5023 110.092 78.5615 110.57 78.5615 111.09V111.657H73.0381V110.625H77.2969V110.529C77.2786 110.201 77.2103 109.882 77.0918 109.572C76.9779 109.262 76.7956 109.007 76.5449 108.807C76.2943 108.606 75.9525 108.506 75.5195 108.506C75.2324 108.506 74.9681 108.567 74.7266 108.69C74.485 108.809 74.2777 108.987 74.1045 109.224C73.9313 109.461 73.7969 109.75 73.7012 110.092C73.6055 110.434 73.5576 110.828 73.5576 111.274V111.562C73.5576 111.912 73.6055 112.243 73.7012 112.553C73.8014 112.858 73.945 113.127 74.1318 113.359C74.3232 113.592 74.5534 113.774 74.8223 113.906C75.0957 114.038 75.4056 114.104 75.752 114.104C76.1986 114.104 76.5768 114.013 76.8867 113.831C77.1966 113.649 77.4678 113.405 77.7002 113.1L78.4658 113.708C78.3063 113.95 78.1035 114.18 77.8574 114.398C77.6113 114.617 77.3083 114.795 76.9482 114.932C76.5928 115.068 76.1712 115.137 75.6836 115.137ZM81.3027 108.766V115H80.0381V107.604H81.2686L81.3027 108.766ZM83.6133 107.562L83.6064 108.738C83.5016 108.715 83.4014 108.702 83.3057 108.697C83.2145 108.688 83.1097 108.684 82.9912 108.684C82.6995 108.684 82.4421 108.729 82.2188 108.82C81.9954 108.911 81.8063 109.039 81.6514 109.203C81.4964 109.367 81.3734 109.563 81.2822 109.791C81.1956 110.014 81.1387 110.26 81.1113 110.529L80.7559 110.734C80.7559 110.288 80.7992 109.868 80.8857 109.477C80.9769 109.085 81.1159 108.738 81.3027 108.438C81.4896 108.132 81.7266 107.895 82.0137 107.727C82.3053 107.553 82.6517 107.467 83.0527 107.467C83.1439 107.467 83.2487 107.478 83.3672 107.501C83.4857 107.519 83.5677 107.54 83.6133 107.562ZM89.0889 113.038C89.0889 112.856 89.0479 112.687 88.9658 112.532C88.8883 112.373 88.7266 112.229 88.4805 112.102C88.2389 111.969 87.8743 111.855 87.3867 111.76C86.9766 111.673 86.6051 111.571 86.2725 111.452C85.9443 111.334 85.6641 111.19 85.4316 111.021C85.2038 110.853 85.0283 110.655 84.9053 110.427C84.7822 110.199 84.7207 109.932 84.7207 109.627C84.7207 109.335 84.7845 109.06 84.9121 108.8C85.0443 108.54 85.2288 108.31 85.4658 108.109C85.7074 107.909 85.9967 107.752 86.334 107.638C86.6712 107.524 87.0472 107.467 87.4619 107.467C88.0544 107.467 88.5602 107.572 88.9795 107.781C89.3988 107.991 89.7201 108.271 89.9434 108.622C90.1667 108.968 90.2783 109.354 90.2783 109.777H89.0137C89.0137 109.572 88.9521 109.374 88.8291 109.183C88.7106 108.987 88.5352 108.825 88.3027 108.697C88.0749 108.57 87.7946 108.506 87.4619 108.506C87.111 108.506 86.8262 108.561 86.6074 108.67C86.3932 108.775 86.236 108.909 86.1357 109.073C86.04 109.237 85.9922 109.41 85.9922 109.593C85.9922 109.729 86.015 109.853 86.0605 109.962C86.1107 110.067 86.1973 110.165 86.3203 110.256C86.4434 110.342 86.6165 110.424 86.8398 110.502C87.0632 110.579 87.348 110.657 87.6943 110.734C88.3005 110.871 88.7995 111.035 89.1914 111.227C89.5833 111.418 89.875 111.653 90.0664 111.931C90.2578 112.209 90.3535 112.546 90.3535 112.942C90.3535 113.266 90.2852 113.562 90.1484 113.831C90.0163 114.1 89.8226 114.332 89.5674 114.528C89.3167 114.72 89.016 114.87 88.665 114.979C88.3187 115.084 87.929 115.137 87.4961 115.137C86.8444 115.137 86.293 115.021 85.8418 114.788C85.3906 114.556 85.0488 114.255 84.8164 113.886C84.584 113.517 84.4678 113.127 84.4678 112.717H85.7393C85.7575 113.063 85.8577 113.339 86.04 113.544C86.2223 113.744 86.4456 113.888 86.71 113.975C86.9743 114.057 87.2363 114.098 87.4961 114.098C87.8424 114.098 88.1318 114.052 88.3643 113.961C88.6012 113.87 88.7812 113.744 88.9043 113.585C89.0273 113.425 89.0889 113.243 89.0889 113.038ZM91.6797 111.384V111.227C91.6797 110.693 91.7572 110.199 91.9121 109.743C92.0671 109.283 92.2904 108.884 92.582 108.547C92.8737 108.205 93.2269 107.941 93.6416 107.754C94.0563 107.562 94.5212 107.467 95.0361 107.467C95.5557 107.467 96.0228 107.562 96.4375 107.754C96.8568 107.941 97.2122 108.205 97.5039 108.547C97.8001 108.884 98.0257 109.283 98.1807 109.743C98.3356 110.199 98.4131 110.693 98.4131 111.227V111.384C98.4131 111.917 98.3356 112.411 98.1807 112.867C98.0257 113.323 97.8001 113.722 97.5039 114.063C97.2122 114.401 96.859 114.665 96.4443 114.856C96.0342 115.043 95.5693 115.137 95.0498 115.137C94.5303 115.137 94.0632 115.043 93.6484 114.856C93.2337 114.665 92.8783 114.401 92.582 114.063C92.2904 113.722 92.0671 113.323 91.9121 112.867C91.7572 112.411 91.6797 111.917 91.6797 111.384ZM92.9443 111.227V111.384C92.9443 111.753 92.9876 112.102 93.0742 112.43C93.1608 112.753 93.2907 113.04 93.4639 113.291C93.6416 113.542 93.8626 113.74 94.127 113.886C94.3913 114.027 94.6989 114.098 95.0498 114.098C95.3962 114.098 95.6992 114.027 95.959 113.886C96.2233 113.74 96.4421 113.542 96.6152 113.291C96.7884 113.04 96.9183 112.753 97.0049 112.43C97.096 112.102 97.1416 111.753 97.1416 111.384V111.227C97.1416 110.862 97.096 110.518 97.0049 110.194C96.9183 109.866 96.7861 109.577 96.6084 109.326C96.4352 109.071 96.2165 108.87 95.9521 108.725C95.6924 108.579 95.387 108.506 95.0361 108.506C94.6898 108.506 94.3844 108.579 94.1201 108.725C93.8604 108.87 93.6416 109.071 93.4639 109.326C93.2907 109.577 93.1608 109.866 93.0742 110.194C92.9876 110.518 92.9443 110.862 92.9443 111.227ZM101.264 109.183V115H99.999V107.604H101.195L101.264 109.183ZM100.963 111.021L100.437 111.001C100.441 110.495 100.516 110.028 100.662 109.6C100.808 109.167 101.013 108.791 101.277 108.472C101.542 108.153 101.856 107.907 102.221 107.733C102.59 107.556 102.998 107.467 103.444 107.467C103.809 107.467 104.137 107.517 104.429 107.617C104.72 107.713 104.969 107.868 105.174 108.082C105.383 108.296 105.543 108.574 105.652 108.916C105.762 109.253 105.816 109.666 105.816 110.153V115H104.545V110.14C104.545 109.752 104.488 109.442 104.374 109.21C104.26 108.973 104.094 108.802 103.875 108.697C103.656 108.588 103.387 108.533 103.068 108.533C102.754 108.533 102.467 108.599 102.207 108.731C101.952 108.864 101.731 109.046 101.544 109.278C101.362 109.511 101.218 109.777 101.113 110.078C101.013 110.374 100.963 110.689 100.963 111.021ZM112.099 113.735V109.928C112.099 109.636 112.039 109.383 111.921 109.169C111.807 108.95 111.634 108.782 111.401 108.663C111.169 108.545 110.882 108.485 110.54 108.485C110.221 108.485 109.941 108.54 109.699 108.649C109.462 108.759 109.275 108.902 109.139 109.08C109.007 109.258 108.94 109.449 108.94 109.654H107.676C107.676 109.39 107.744 109.128 107.881 108.868C108.018 108.608 108.214 108.374 108.469 108.164C108.729 107.95 109.038 107.781 109.398 107.658C109.763 107.531 110.169 107.467 110.615 107.467C111.153 107.467 111.627 107.558 112.037 107.74C112.452 107.923 112.775 108.198 113.008 108.567C113.245 108.932 113.363 109.39 113.363 109.941V113.387C113.363 113.633 113.384 113.895 113.425 114.173C113.47 114.451 113.536 114.69 113.623 114.891V115H112.304C112.24 114.854 112.19 114.66 112.153 114.419C112.117 114.173 112.099 113.945 112.099 113.735ZM112.317 110.516L112.331 111.404H111.053C110.693 111.404 110.371 111.434 110.089 111.493C109.806 111.548 109.569 111.632 109.378 111.746C109.187 111.86 109.041 112.004 108.94 112.177C108.84 112.345 108.79 112.544 108.79 112.771C108.79 113.004 108.842 113.216 108.947 113.407C109.052 113.599 109.209 113.751 109.419 113.865C109.633 113.975 109.895 114.029 110.205 114.029C110.592 114.029 110.934 113.947 111.23 113.783C111.527 113.619 111.761 113.419 111.935 113.182C112.112 112.945 112.208 112.715 112.222 112.491L112.762 113.1C112.73 113.291 112.643 113.503 112.502 113.735C112.361 113.968 112.172 114.191 111.935 114.405C111.702 114.615 111.424 114.79 111.101 114.932C110.782 115.068 110.422 115.137 110.021 115.137C109.519 115.137 109.079 115.039 108.701 114.843C108.327 114.647 108.036 114.385 107.826 114.057C107.621 113.724 107.519 113.353 107.519 112.942C107.519 112.546 107.596 112.197 107.751 111.896C107.906 111.591 108.129 111.338 108.421 111.138C108.713 110.933 109.063 110.778 109.474 110.673C109.884 110.568 110.342 110.516 110.848 110.516H112.317ZM116.727 104.5V115H115.455V104.5H116.727ZM123.604 107.604V115H122.332V107.604H123.604ZM122.236 105.642C122.236 105.437 122.298 105.263 122.421 105.122C122.549 104.981 122.735 104.91 122.981 104.91C123.223 104.91 123.408 104.981 123.535 105.122C123.667 105.263 123.733 105.437 123.733 105.642C123.733 105.838 123.667 106.006 123.535 106.147C123.408 106.284 123.223 106.353 122.981 106.353C122.735 106.353 122.549 106.284 122.421 106.147C122.298 106.006 122.236 105.838 122.236 105.642ZM126.898 109.183V115H125.634V107.604H126.83L126.898 109.183ZM126.598 111.021L126.071 111.001C126.076 110.495 126.151 110.028 126.297 109.6C126.443 109.167 126.648 108.791 126.912 108.472C127.176 108.153 127.491 107.907 127.855 107.733C128.225 107.556 128.632 107.467 129.079 107.467C129.444 107.467 129.772 107.517 130.063 107.617C130.355 107.713 130.604 107.868 130.809 108.082C131.018 108.296 131.178 108.574 131.287 108.916C131.396 109.253 131.451 109.666 131.451 110.153V115H130.18V110.14C130.18 109.752 130.123 109.442 130.009 109.21C129.895 108.973 129.729 108.802 129.51 108.697C129.291 108.588 129.022 108.533 128.703 108.533C128.389 108.533 128.102 108.599 127.842 108.731C127.587 108.864 127.366 109.046 127.179 109.278C126.996 109.511 126.853 109.777 126.748 110.078C126.648 110.374 126.598 110.689 126.598 111.021ZM135.259 115H133.994V106.824C133.994 106.291 134.09 105.842 134.281 105.478C134.477 105.108 134.757 104.83 135.122 104.644C135.487 104.452 135.92 104.356 136.421 104.356C136.567 104.356 136.713 104.366 136.858 104.384C137.009 104.402 137.155 104.429 137.296 104.466L137.228 105.498C137.132 105.475 137.022 105.459 136.899 105.45C136.781 105.441 136.662 105.437 136.544 105.437C136.275 105.437 136.043 105.491 135.847 105.601C135.655 105.705 135.509 105.86 135.409 106.065C135.309 106.271 135.259 106.523 135.259 106.824V115ZM136.831 107.604V108.574H132.825V107.604H136.831ZM137.904 111.384V111.227C137.904 110.693 137.982 110.199 138.137 109.743C138.292 109.283 138.515 108.884 138.807 108.547C139.098 108.205 139.451 107.941 139.866 107.754C140.281 107.562 140.746 107.467 141.261 107.467C141.78 107.467 142.247 107.562 142.662 107.754C143.081 107.941 143.437 108.205 143.729 108.547C144.025 108.884 144.25 109.283 144.405 109.743C144.56 110.199 144.638 110.693 144.638 111.227V111.384C144.638 111.917 144.56 112.411 144.405 112.867C144.25 113.323 144.025 113.722 143.729 114.063C143.437 114.401 143.084 114.665 142.669 114.856C142.259 115.043 141.794 115.137 141.274 115.137C140.755 115.137 140.288 115.043 139.873 114.856C139.458 114.665 139.103 114.401 138.807 114.063C138.515 113.722 138.292 113.323 138.137 112.867C137.982 112.411 137.904 111.917 137.904 111.384ZM139.169 111.227V111.384C139.169 111.753 139.212 112.102 139.299 112.43C139.385 112.753 139.515 113.04 139.688 113.291C139.866 113.542 140.087 113.74 140.352 113.886C140.616 114.027 140.924 114.098 141.274 114.098C141.621 114.098 141.924 114.027 142.184 113.886C142.448 113.74 142.667 113.542 142.84 113.291C143.013 113.04 143.143 112.753 143.229 112.43C143.321 112.102 143.366 111.753 143.366 111.384V111.227C143.366 110.862 143.321 110.518 143.229 110.194C143.143 109.866 143.011 109.577 142.833 109.326C142.66 109.071 142.441 108.87 142.177 108.725C141.917 108.579 141.612 108.506 141.261 108.506C140.914 108.506 140.609 108.579 140.345 108.725C140.085 108.87 139.866 109.071 139.688 109.326C139.515 109.577 139.385 109.866 139.299 110.194C139.212 110.518 139.169 110.862 139.169 111.227ZM147.488 108.766V115H146.224V107.604H147.454L147.488 108.766ZM149.799 107.562L149.792 108.738C149.687 108.715 149.587 108.702 149.491 108.697C149.4 108.688 149.295 108.684 149.177 108.684C148.885 108.684 148.628 108.729 148.404 108.82C148.181 108.911 147.992 109.039 147.837 109.203C147.682 109.367 147.559 109.563 147.468 109.791C147.381 110.014 147.324 110.26 147.297 110.529L146.941 110.734C146.941 110.288 146.985 109.868 147.071 109.477C147.162 109.085 147.301 108.738 147.488 108.438C147.675 108.132 147.912 107.895 148.199 107.727C148.491 107.553 148.837 107.467 149.238 107.467C149.329 107.467 149.434 107.478 149.553 107.501C149.671 107.519 149.753 107.54 149.799 107.562ZM152.226 109.073V115H150.954V107.604H152.157L152.226 109.073ZM151.966 111.021L151.378 111.001C151.382 110.495 151.449 110.028 151.576 109.6C151.704 109.167 151.893 108.791 152.144 108.472C152.394 108.153 152.706 107.907 153.08 107.733C153.454 107.556 153.887 107.467 154.379 107.467C154.725 107.467 155.044 107.517 155.336 107.617C155.628 107.713 155.881 107.866 156.095 108.075C156.309 108.285 156.475 108.554 156.594 108.882C156.712 109.21 156.771 109.606 156.771 110.071V115H155.507V110.133C155.507 109.745 155.441 109.436 155.309 109.203C155.181 108.971 154.999 108.802 154.762 108.697C154.525 108.588 154.247 108.533 153.928 108.533C153.554 108.533 153.242 108.599 152.991 108.731C152.741 108.864 152.54 109.046 152.39 109.278C152.239 109.511 152.13 109.777 152.062 110.078C151.998 110.374 151.966 110.689 151.966 111.021ZM156.758 110.324L155.91 110.584C155.915 110.178 155.981 109.789 156.108 109.415C156.241 109.041 156.43 108.709 156.676 108.417C156.926 108.125 157.234 107.895 157.599 107.727C157.963 107.553 158.38 107.467 158.85 107.467C159.246 107.467 159.597 107.519 159.902 107.624C160.212 107.729 160.472 107.891 160.682 108.109C160.896 108.324 161.058 108.599 161.167 108.937C161.276 109.274 161.331 109.675 161.331 110.14V115H160.06V110.126C160.06 109.711 159.993 109.39 159.861 109.162C159.734 108.93 159.551 108.768 159.314 108.677C159.082 108.581 158.804 108.533 158.48 108.533C158.202 108.533 157.956 108.581 157.742 108.677C157.528 108.772 157.348 108.905 157.202 109.073C157.056 109.237 156.945 109.426 156.867 109.641C156.794 109.855 156.758 110.083 156.758 110.324ZM167.606 113.735V109.928C167.606 109.636 167.547 109.383 167.429 109.169C167.315 108.95 167.142 108.782 166.909 108.663C166.677 108.545 166.39 108.485 166.048 108.485C165.729 108.485 165.449 108.54 165.207 108.649C164.97 108.759 164.783 108.902 164.646 109.08C164.514 109.258 164.448 109.449 164.448 109.654H163.184C163.184 109.39 163.252 109.128 163.389 108.868C163.525 108.608 163.721 108.374 163.977 108.164C164.236 107.95 164.546 107.781 164.906 107.658C165.271 107.531 165.676 107.467 166.123 107.467C166.661 107.467 167.135 107.558 167.545 107.74C167.96 107.923 168.283 108.198 168.516 108.567C168.753 108.932 168.871 109.39 168.871 109.941V113.387C168.871 113.633 168.892 113.895 168.933 114.173C168.978 114.451 169.044 114.69 169.131 114.891V115H167.812C167.748 114.854 167.698 114.66 167.661 114.419C167.625 114.173 167.606 113.945 167.606 113.735ZM167.825 110.516L167.839 111.404H166.561C166.201 111.404 165.879 111.434 165.597 111.493C165.314 111.548 165.077 111.632 164.886 111.746C164.694 111.86 164.549 112.004 164.448 112.177C164.348 112.345 164.298 112.544 164.298 112.771C164.298 113.004 164.35 113.216 164.455 113.407C164.56 113.599 164.717 113.751 164.927 113.865C165.141 113.975 165.403 114.029 165.713 114.029C166.1 114.029 166.442 113.947 166.738 113.783C167.035 113.619 167.269 113.419 167.442 113.182C167.62 112.945 167.716 112.715 167.729 112.491L168.27 113.1C168.238 113.291 168.151 113.503 168.01 113.735C167.868 113.968 167.679 114.191 167.442 114.405C167.21 114.615 166.932 114.79 166.608 114.932C166.289 115.068 165.929 115.137 165.528 115.137C165.027 115.137 164.587 115.039 164.209 114.843C163.835 114.647 163.544 114.385 163.334 114.057C163.129 113.724 163.026 113.353 163.026 112.942C163.026 112.546 163.104 112.197 163.259 111.896C163.414 111.591 163.637 111.338 163.929 111.138C164.22 110.933 164.571 110.778 164.981 110.673C165.392 110.568 165.85 110.516 166.355 110.516H167.825ZM173.957 107.604V108.574H169.958V107.604H173.957ZM171.312 105.806H172.576V113.168C172.576 113.419 172.615 113.608 172.692 113.735C172.77 113.863 172.87 113.947 172.993 113.988C173.116 114.029 173.248 114.05 173.39 114.05C173.494 114.05 173.604 114.041 173.718 114.022C173.836 114 173.925 113.981 173.984 113.968L173.991 115C173.891 115.032 173.759 115.062 173.595 115.089C173.435 115.121 173.242 115.137 173.014 115.137C172.704 115.137 172.419 115.075 172.159 114.952C171.899 114.829 171.692 114.624 171.537 114.337C171.387 114.045 171.312 113.653 171.312 113.161V105.806ZM176.814 107.604V115H175.543V107.604H176.814ZM175.447 105.642C175.447 105.437 175.509 105.263 175.632 105.122C175.759 104.981 175.946 104.91 176.192 104.91C176.434 104.91 176.618 104.981 176.746 105.122C176.878 105.263 176.944 105.437 176.944 105.642C176.944 105.838 176.878 106.006 176.746 106.147C176.618 106.284 176.434 106.353 176.192 106.353C175.946 106.353 175.759 106.284 175.632 106.147C175.509 106.006 175.447 105.838 175.447 105.642ZM178.51 111.384V111.227C178.51 110.693 178.587 110.199 178.742 109.743C178.897 109.283 179.12 108.884 179.412 108.547C179.704 108.205 180.057 107.941 180.472 107.754C180.886 107.562 181.351 107.467 181.866 107.467C182.386 107.467 182.853 107.562 183.268 107.754C183.687 107.941 184.042 108.205 184.334 108.547C184.63 108.884 184.856 109.283 185.011 109.743C185.166 110.199 185.243 110.693 185.243 111.227V111.384C185.243 111.917 185.166 112.411 185.011 112.867C184.856 113.323 184.63 113.722 184.334 114.063C184.042 114.401 183.689 114.665 183.274 114.856C182.864 115.043 182.399 115.137 181.88 115.137C181.36 115.137 180.893 115.043 180.479 114.856C180.064 114.665 179.708 114.401 179.412 114.063C179.12 113.722 178.897 113.323 178.742 112.867C178.587 112.411 178.51 111.917 178.51 111.384ZM179.774 111.227V111.384C179.774 111.753 179.818 112.102 179.904 112.43C179.991 112.753 180.121 113.04 180.294 113.291C180.472 113.542 180.693 113.74 180.957 113.886C181.221 114.027 181.529 114.098 181.88 114.098C182.226 114.098 182.529 114.027 182.789 113.886C183.053 113.74 183.272 113.542 183.445 113.291C183.618 113.04 183.748 112.753 183.835 112.43C183.926 112.102 183.972 111.753 183.972 111.384V111.227C183.972 110.862 183.926 110.518 183.835 110.194C183.748 109.866 183.616 109.577 183.438 109.326C183.265 109.071 183.047 108.87 182.782 108.725C182.522 108.579 182.217 108.506 181.866 108.506C181.52 108.506 181.215 108.579 180.95 108.725C180.69 108.87 180.472 109.071 180.294 109.326C180.121 109.577 179.991 109.866 179.904 110.194C179.818 110.518 179.774 110.862 179.774 111.227ZM188.094 109.183V115H186.829V107.604H188.025L188.094 109.183ZM187.793 111.021L187.267 111.001C187.271 110.495 187.346 110.028 187.492 109.6C187.638 109.167 187.843 108.791 188.107 108.472C188.372 108.153 188.686 107.907 189.051 107.733C189.42 107.556 189.828 107.467 190.274 107.467C190.639 107.467 190.967 107.517 191.259 107.617C191.55 107.713 191.799 107.868 192.004 108.082C192.214 108.296 192.373 108.574 192.482 108.916C192.592 109.253 192.646 109.666 192.646 110.153V115H191.375V110.14C191.375 109.752 191.318 109.442 191.204 109.21C191.09 108.973 190.924 108.802 190.705 108.697C190.486 108.588 190.217 108.533 189.898 108.533C189.584 108.533 189.297 108.599 189.037 108.731C188.782 108.864 188.561 109.046 188.374 109.278C188.192 109.511 188.048 109.777 187.943 110.078C187.843 110.374 187.793 110.689 187.793 111.021Z",fill:"#64748B"})),{AdvancedFields:en}=JetFBComponents,{__:Cn}=wp.i18n,{InspectorControls:tn,useBlockProps:ln}=wp.blockEditor?wp.blockEditor:wp.editor,rn=JSON.parse('{"apiVersion":3,"name":"jet-forms/group-break-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","conditonal"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Group Break Field","icon":"\\n\\n\\n\\n","attributes":{"visibility":{"type":"string","default":""},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:nn}=wp.i18n,{createBlock:an}=wp.blocks,{name:on,icon:sn=""}=rn,cn={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:sn}}),description:nn("Create a break between two fields with a horizontal line. Separate different form parts without dividing form on two pages.","jet-form-builder"),edit:function(e){const C=ln(),{isSelected:t,attributes:l,editProps:{uniqKey:r}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Qr):(0,h.createElement)(h.Fragment,null,t&&(0,h.createElement)(tn,{key:r("InspectorControls")},(0,h.createElement)(en,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{...C},(0,h.createElement)("div",{className:"jet-form-builder__group-break jet-form-builder__bottom-line"},(0,h.createElement)("span",null,Cn("GROUP BREAK","jet-form-builder")))))},useEditProps:["uniqKey"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>an("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["core/separator"],transform:()=>an("core/separator",{}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>an(on,{...e}),priority:0},{type:"block",blocks:["core/separator"],transform:()=>an(on,{}),priority:0}]}},dn=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_274_2880)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{width:"268",height:"143",transform:"translate(15 15)",fill:"white"}),(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V45H15V19Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M37.6562 29.3262V30.3994H32.2695V29.3262H37.6562ZM32.4746 25.0469V35H31.1553V25.0469H32.4746ZM38.8047 25.0469V35H37.4922V25.0469H38.8047ZM44.0273 35.1367C43.5124 35.1367 43.0452 35.0501 42.626 34.877C42.2113 34.6992 41.8535 34.4508 41.5527 34.1318C41.2565 33.8128 41.0286 33.4346 40.8691 32.9971C40.7096 32.5596 40.6299 32.0811 40.6299 31.5615V31.2744C40.6299 30.6729 40.7188 30.1374 40.8965 29.668C41.0742 29.194 41.3158 28.793 41.6211 28.4648C41.9264 28.1367 42.2728 27.8883 42.6602 27.7197C43.0475 27.5511 43.4486 27.4668 43.8633 27.4668C44.3919 27.4668 44.8477 27.5579 45.2305 27.7402C45.6178 27.9225 45.9346 28.1777 46.1807 28.5059C46.4268 28.8294 46.609 29.2122 46.7275 29.6543C46.846 30.0918 46.9053 30.5703 46.9053 31.0898V31.6572H41.3818V30.625H45.6406V30.5293C45.6224 30.2012 45.554 29.8822 45.4355 29.5723C45.3216 29.2624 45.1393 29.0072 44.8887 28.8066C44.638 28.6061 44.2962 28.5059 43.8633 28.5059C43.5762 28.5059 43.3118 28.5674 43.0703 28.6904C42.8288 28.8089 42.6214 28.9867 42.4482 29.2236C42.2751 29.4606 42.1406 29.75 42.0449 30.0918C41.9492 30.4336 41.9014 30.8278 41.9014 31.2744V31.5615C41.9014 31.9124 41.9492 32.2428 42.0449 32.5527C42.1452 32.8581 42.2887 33.127 42.4756 33.3594C42.667 33.5918 42.8971 33.7741 43.166 33.9062C43.4395 34.0384 43.7493 34.1045 44.0957 34.1045C44.5423 34.1045 44.9206 34.0133 45.2305 33.8311C45.5404 33.6488 45.8115 33.4049 46.0439 33.0996L46.8096 33.708C46.6501 33.9495 46.4473 34.1797 46.2012 34.3984C45.9551 34.6172 45.652 34.7949 45.292 34.9316C44.9365 35.0684 44.515 35.1367 44.0273 35.1367ZM52.7432 33.7354V29.9277C52.7432 29.6361 52.6839 29.3831 52.5654 29.1689C52.4515 28.9502 52.2783 28.7816 52.0459 28.6631C51.8135 28.5446 51.5264 28.4854 51.1846 28.4854C50.8656 28.4854 50.5853 28.54 50.3438 28.6494C50.1068 28.7588 49.9199 28.9023 49.7832 29.0801C49.651 29.2578 49.585 29.4492 49.585 29.6543H48.3203C48.3203 29.39 48.3887 29.1279 48.5254 28.8682C48.6621 28.6084 48.8581 28.3737 49.1133 28.1641C49.373 27.9499 49.6829 27.7812 50.043 27.6582C50.4076 27.5306 50.8132 27.4668 51.2598 27.4668C51.7975 27.4668 52.2715 27.5579 52.6816 27.7402C53.0964 27.9225 53.4199 28.1982 53.6523 28.5674C53.8893 28.932 54.0078 29.39 54.0078 29.9414V33.3867C54.0078 33.6328 54.0283 33.8949 54.0693 34.1729C54.1149 34.4508 54.181 34.6901 54.2676 34.8906V35H52.9482C52.8844 34.8542 52.8343 34.6605 52.7979 34.4189C52.7614 34.1729 52.7432 33.945 52.7432 33.7354ZM52.9619 30.5156L52.9756 31.4043H51.6973C51.3372 31.4043 51.016 31.4339 50.7334 31.4932C50.4508 31.5479 50.2139 31.6322 50.0225 31.7461C49.8311 31.86 49.6852 32.0036 49.585 32.1768C49.4847 32.3454 49.4346 32.5436 49.4346 32.7715C49.4346 33.0039 49.487 33.2158 49.5918 33.4072C49.6966 33.5986 49.8538 33.7513 50.0635 33.8652C50.2777 33.9746 50.5397 34.0293 50.8496 34.0293C51.237 34.0293 51.5788 33.9473 51.875 33.7832C52.1712 33.6191 52.4059 33.4186 52.5791 33.1816C52.7568 32.9447 52.8525 32.7145 52.8662 32.4912L53.4062 33.0996C53.3743 33.291 53.2878 33.5029 53.1465 33.7354C53.0052 33.9678 52.8161 34.1911 52.5791 34.4053C52.3467 34.6149 52.0687 34.7904 51.7451 34.9316C51.4261 35.0684 51.0661 35.1367 50.665 35.1367C50.1637 35.1367 49.724 35.0387 49.3457 34.8428C48.972 34.6468 48.6803 34.3848 48.4707 34.0566C48.2656 33.724 48.1631 33.3525 48.1631 32.9424C48.1631 32.5459 48.2406 32.1973 48.3955 31.8965C48.5505 31.5911 48.7738 31.3382 49.0654 31.1377C49.3571 30.9326 49.708 30.7777 50.1182 30.6729C50.5283 30.568 50.9863 30.5156 51.4922 30.5156H52.9619ZM60.6592 33.5645V24.5H61.9307V35H60.7686L60.6592 33.5645ZM55.6826 31.3838V31.2402C55.6826 30.6751 55.751 30.1624 55.8877 29.7021C56.029 29.2373 56.2272 28.8385 56.4824 28.5059C56.7422 28.1732 57.0498 27.918 57.4053 27.7402C57.7653 27.5579 58.1663 27.4668 58.6084 27.4668C59.0732 27.4668 59.4788 27.5488 59.8252 27.7129C60.1761 27.8724 60.4723 28.1071 60.7139 28.417C60.96 28.7223 61.1536 29.0915 61.2949 29.5244C61.4362 29.9574 61.5342 30.4473 61.5889 30.9941V31.623C61.5387 32.1654 61.4408 32.653 61.2949 33.0859C61.1536 33.5189 60.96 33.888 60.7139 34.1934C60.4723 34.4987 60.1761 34.7334 59.8252 34.8975C59.4743 35.057 59.0641 35.1367 58.5947 35.1367C58.1618 35.1367 57.7653 35.0433 57.4053 34.8564C57.0498 34.6696 56.7422 34.4076 56.4824 34.0703C56.2272 33.7331 56.029 33.3366 55.8877 32.8809C55.751 32.4206 55.6826 31.9215 55.6826 31.3838ZM56.9541 31.2402V31.3838C56.9541 31.7529 56.9906 32.0993 57.0635 32.4229C57.141 32.7464 57.2594 33.0312 57.4189 33.2773C57.5785 33.5234 57.7812 33.7171 58.0273 33.8584C58.2734 33.9951 58.5674 34.0635 58.9092 34.0635C59.3285 34.0635 59.6725 33.9746 59.9414 33.7969C60.2148 33.6191 60.4336 33.3844 60.5977 33.0928C60.7617 32.8011 60.8893 32.4844 60.9805 32.1426V30.4951C60.9258 30.2445 60.846 30.0029 60.7412 29.7705C60.641 29.5335 60.5088 29.3239 60.3447 29.1416C60.1852 28.9548 59.987 28.8066 59.75 28.6973C59.5176 28.5879 59.2419 28.5332 58.9229 28.5332C58.5765 28.5332 58.278 28.6061 58.0273 28.752C57.7812 28.8932 57.5785 29.0892 57.4189 29.3398C57.2594 29.5859 57.141 29.873 57.0635 30.2012C56.9906 30.5247 56.9541 30.8711 56.9541 31.2402ZM65.2734 27.6035V35H64.002V27.6035H65.2734ZM63.9062 25.6416C63.9062 25.4365 63.9678 25.2633 64.0908 25.1221C64.2184 24.9808 64.4053 24.9102 64.6514 24.9102C64.8929 24.9102 65.0775 24.9808 65.2051 25.1221C65.3372 25.2633 65.4033 25.4365 65.4033 25.6416C65.4033 25.8376 65.3372 26.0062 65.2051 26.1475C65.0775 26.2842 64.8929 26.3525 64.6514 26.3525C64.4053 26.3525 64.2184 26.2842 64.0908 26.1475C63.9678 26.0062 63.9062 25.8376 63.9062 25.6416ZM68.5684 29.1826V35H67.3037V27.6035H68.5L68.5684 29.1826ZM68.2676 31.0215L67.7412 31.001C67.7458 30.4951 67.821 30.028 67.9668 29.5996C68.1126 29.1667 68.3177 28.7907 68.582 28.4717C68.8464 28.1527 69.1608 27.9066 69.5254 27.7334C69.8945 27.5557 70.3024 27.4668 70.749 27.4668C71.1136 27.4668 71.4417 27.5169 71.7334 27.6172C72.0251 27.7129 72.2734 27.8678 72.4785 28.082C72.6882 28.2962 72.8477 28.5742 72.957 28.916C73.0664 29.2533 73.1211 29.6657 73.1211 30.1533V35H71.8496V30.1396C71.8496 29.7523 71.7926 29.4424 71.6787 29.21C71.5648 28.973 71.3984 28.8021 71.1797 28.6973C70.9609 28.5879 70.6921 28.5332 70.373 28.5332C70.0586 28.5332 69.7715 28.5993 69.5117 28.7314C69.2565 28.8636 69.0355 29.0459 68.8486 29.2783C68.6663 29.5107 68.5228 29.7773 68.418 30.0781C68.3177 30.3743 68.2676 30.6888 68.2676 31.0215ZM79.834 27.6035H80.9824V34.8428C80.9824 35.4945 80.8503 36.0505 80.5859 36.5107C80.3216 36.971 79.9525 37.3197 79.4785 37.5566C79.0091 37.7982 78.4668 37.9189 77.8516 37.9189C77.5964 37.9189 77.2956 37.8779 76.9492 37.7959C76.6074 37.7184 76.2702 37.584 75.9375 37.3926C75.6094 37.2057 75.3337 36.9528 75.1104 36.6338L75.7734 35.8818C76.0833 36.2555 76.4069 36.5153 76.7441 36.6611C77.0859 36.807 77.4232 36.8799 77.7559 36.8799C78.1569 36.8799 78.5033 36.8047 78.7949 36.6543C79.0866 36.5039 79.3122 36.2806 79.4717 35.9844C79.6357 35.6927 79.7178 35.3327 79.7178 34.9043V29.2305L79.834 27.6035ZM74.7412 31.3838V31.2402C74.7412 30.6751 74.8073 30.1624 74.9395 29.7021C75.0762 29.2373 75.2699 28.8385 75.5205 28.5059C75.7757 28.1732 76.0833 27.918 76.4434 27.7402C76.8034 27.5579 77.209 27.4668 77.6602 27.4668C78.125 27.4668 78.5306 27.5488 78.877 27.7129C79.2279 27.8724 79.5241 28.1071 79.7656 28.417C80.0117 28.7223 80.2054 29.0915 80.3467 29.5244C80.488 29.9574 80.5859 30.4473 80.6406 30.9941V31.623C80.5905 32.1654 80.4925 32.653 80.3467 33.0859C80.2054 33.5189 80.0117 33.888 79.7656 34.1934C79.5241 34.4987 79.2279 34.7334 78.877 34.8975C78.526 35.057 78.1159 35.1367 77.6465 35.1367C77.2044 35.1367 76.8034 35.0433 76.4434 34.8564C76.0879 34.6696 75.7826 34.4076 75.5273 34.0703C75.2721 33.7331 75.0762 33.3366 74.9395 32.8809C74.8073 32.4206 74.7412 31.9215 74.7412 31.3838ZM76.0059 31.2402V31.3838C76.0059 31.7529 76.0423 32.0993 76.1152 32.4229C76.1927 32.7464 76.3089 33.0312 76.4639 33.2773C76.6234 33.5234 76.8262 33.7171 77.0723 33.8584C77.3184 33.9951 77.6123 34.0635 77.9541 34.0635C78.3734 34.0635 78.7197 33.9746 78.9932 33.7969C79.2666 33.6191 79.4831 33.3844 79.6426 33.0928C79.8066 32.8011 79.9342 32.4844 80.0254 32.1426V30.4951C79.9753 30.2445 79.8978 30.0029 79.793 29.7705C79.6927 29.5335 79.5605 29.3239 79.3965 29.1416C79.237 28.9548 79.0387 28.8066 78.8018 28.6973C78.5648 28.5879 78.2868 28.5332 77.9678 28.5332C77.6214 28.5332 77.3229 28.6061 77.0723 28.752C76.8262 28.8932 76.6234 29.0892 76.4639 29.3398C76.3089 29.5859 76.1927 29.873 76.1152 30.2012C76.0423 30.5247 76.0059 30.8711 76.0059 31.2402Z",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"55",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"25.5",y:"64.5",width:"247",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"25.5",y:"64.5",width:"247",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("rect",{x:"25",y:"109",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"25.5",y:"118.5",width:"247",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"25.5",y:"118.5",width:"247",height:"29",rx:"3.5",stroke:"#E2E8F0"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_274_2880"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})))),{GeneralFields:mn,AdvancedFields:un,FieldWrapper:pn}=JetFBComponents,{InspectorControls:fn,useBlockProps:Vn}=wp.blockEditor?wp.blockEditor:wp.editor,Hn=JSON.parse('{"apiVersion":3,"name":"jet-forms/heading-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","field","heading"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Heading Field","icon":"\\n\\n","attributes":{"label":{"type":"string","default":"","jfb":{"rich":true}},"desc":{"type":"string","default":"","jfb":{"rich":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:hn}=wp.i18n,{createBlock:bn}=wp.blocks,{name:Mn,icon:Ln=""}=Hn,gn={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ln}}),description:hn("Build a heading for the form that can’t be changed by the users. Add the labels and descriptions to the different parts of the form.","jet-form-builder"),edit:function(e){const C=Vn(),{isSelected:t,attributes:l,editProps:{uniqKey:r}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},dn):[t&&(0,h.createElement)(fn,{key:r("InspectorControls")},(0,h.createElement)(mn,{key:r("GeneralFields"),...e}),(0,h.createElement)(un,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{...C,key:r("viewBlock")},(0,h.createElement)(pn,{key:r("FieldWrapper"),valueIfEmptyLabel:"Heading",...e}))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},__experimentalLabel:(e,{context:C})=>{if("list-view"===C)return e.label||Hn.title},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>bn("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["core/paragraph"],transform:({label:e=""})=>bn("core/paragraph",{content:e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>bn(Mn,{...e}),priority:0},{type:"block",blocks:["core/paragraph"],transform:({content:e=""})=>bn(Mn,{label:e}),priority:0}]}},{ToggleControl:Zn,withFilters:yn}=wp.components,{__:En}=wp.i18n,{useBlockAttributes:wn}=JetFBHooks;let vn=function(){const[e,C]=wn();return(0,h.createElement)(h.Fragment,null,"referer_url"!==e.field_value&&(0,h.createElement)(Zn,{label:En("Render in HTML","jet-form-builder"),checked:e.render,help:En("Enable this option if you use this field in Calculated Field, Conditional Block, Advanced Validation, Global Macros, or Dynamic Value.","jet-form-builder"),onChange:e=>C({render:Boolean(e)})}),(0,h.createElement)(Zn,{label:En("Return the raw value","jet-form-builder"),help:En("If this option is enabled, the value of the field will be JSON-encoded if the value is an array or object","jet-form-builder"),checked:e.return_raw,onChange:e=>C({return_raw:e})}))};vn=yn("jfb.hidden-field.header.controls")(vn);const _n=vn,{__:kn}=wp.i18n,{TextControl:jn,withFilters:xn}=wp.components;let Fn=function({attributes:e,setAttributes:C}){return(0,h.createElement)(h.Fragment,null,["post_meta","user_meta"].includes(e.field_value)&&(0,h.createElement)(jn,{key:"hidden_value_field",label:"Meta Field to Get Value From",value:e.hidden_value_field,onChange:e=>C({hidden_value_field:e})}),"query_var"===e.field_value&&(0,h.createElement)(jn,{key:"query_var_key",label:"Query Variable Key",value:e.query_var_key,onChange:e=>C({query_var_key:e})}),"current_date"===e.field_value&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(jn,{key:"date_format",label:"Format",value:e.date_format,onChange:e=>C({date_format:e})}),(0,h.createElement)("b",null,kn("Example:","jet-form-builder")),(0,h.createElement)("br",null),(0,h.createElement)("i",null,"Y-m-d\\TH:i - "),kn("datetime format","jet-form-builder"),(0,h.createElement)("br",null),(0,h.createElement)("i",null,"U - "),kn("timestamp format","jet-form-builder")),"manual_input"===e.field_value&&(0,h.createElement)(jn,{key:"hidden_value",label:"Value",value:e.hidden_value,onChange:e=>{C({hidden_value:e})}}))};Fn=xn("jfb.hidden-field.field-value.controls")(Fn);const Bn=Fn,{useBlockAttributes:An}=JetFBHooks,{SelectControl:Pn}=wp.components,Sn=function(){const[e,C]=An();return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(_n,{attributes:e,setAttributes:C}),(0,h.createElement)(Pn,{key:"field_value",label:"Field Value",labelPosition:"top",value:e.field_value,onChange:t=>{C({field_value:t}),(t=>{!t||e.name&&"hidden_field_name"!==e.name||C({name:t})})(t)},options:JetFormHiddenField.sources}),(0,h.createElement)(Bn,{attributes:e,setAttributes:C}))},Nn=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("g",{clipPath:"url(#clip0_75_1466)"},(0,h.createElement)("path",{d:"M22.6562 48.3262V49.3994H17.2695V48.3262H22.6562ZM17.4746 44.0469V54H16.1553V44.0469H17.4746ZM23.8047 44.0469V54H22.4922V44.0469H23.8047ZM27.332 46.6035V54H26.0605V46.6035H27.332ZM25.9648 44.6416C25.9648 44.4365 26.0264 44.2633 26.1494 44.1221C26.277 43.9808 26.4639 43.9102 26.71 43.9102C26.9515 43.9102 27.1361 43.9808 27.2637 44.1221C27.3958 44.2633 27.4619 44.4365 27.4619 44.6416C27.4619 44.8376 27.3958 45.0062 27.2637 45.1475C27.1361 45.2842 26.9515 45.3525 26.71 45.3525C26.4639 45.3525 26.277 45.2842 26.1494 45.1475C26.0264 45.0062 25.9648 44.8376 25.9648 44.6416ZM34.0244 52.5645V43.5H35.2959V54H34.1338L34.0244 52.5645ZM29.0479 50.3838V50.2402C29.0479 49.6751 29.1162 49.1624 29.2529 48.7021C29.3942 48.2373 29.5924 47.8385 29.8477 47.5059C30.1074 47.1732 30.415 46.918 30.7705 46.7402C31.1305 46.5579 31.5316 46.4668 31.9736 46.4668C32.4385 46.4668 32.8441 46.5488 33.1904 46.7129C33.5413 46.8724 33.8376 47.1071 34.0791 47.417C34.3252 47.7223 34.5189 48.0915 34.6602 48.5244C34.8014 48.9574 34.8994 49.4473 34.9541 49.9941V50.623C34.904 51.1654 34.806 51.653 34.6602 52.0859C34.5189 52.5189 34.3252 52.888 34.0791 53.1934C33.8376 53.4987 33.5413 53.7334 33.1904 53.8975C32.8395 54.057 32.4294 54.1367 31.96 54.1367C31.527 54.1367 31.1305 54.0433 30.7705 53.8564C30.415 53.6696 30.1074 53.4076 29.8477 53.0703C29.5924 52.7331 29.3942 52.3366 29.2529 51.8809C29.1162 51.4206 29.0479 50.9215 29.0479 50.3838ZM30.3193 50.2402V50.3838C30.3193 50.7529 30.3558 51.0993 30.4287 51.4229C30.5062 51.7464 30.6247 52.0312 30.7842 52.2773C30.9437 52.5234 31.1465 52.7171 31.3926 52.8584C31.6387 52.9951 31.9326 53.0635 32.2744 53.0635C32.6937 53.0635 33.0378 52.9746 33.3066 52.7969C33.5801 52.6191 33.7988 52.3844 33.9629 52.0928C34.127 51.8011 34.2546 51.4844 34.3457 51.1426V49.4951C34.291 49.2445 34.2113 49.0029 34.1064 48.7705C34.0062 48.5335 33.874 48.3239 33.71 48.1416C33.5505 47.9548 33.3522 47.8066 33.1152 47.6973C32.8828 47.5879 32.6071 47.5332 32.2881 47.5332C31.9417 47.5332 31.6432 47.6061 31.3926 47.752C31.1465 47.8932 30.9437 48.0892 30.7842 48.3398C30.6247 48.5859 30.5062 48.873 30.4287 49.2012C30.3558 49.5247 30.3193 49.8711 30.3193 50.2402ZM41.9268 52.5645V43.5H43.1982V54H42.0361L41.9268 52.5645ZM36.9502 50.3838V50.2402C36.9502 49.6751 37.0186 49.1624 37.1553 48.7021C37.2965 48.2373 37.4948 47.8385 37.75 47.5059C38.0098 47.1732 38.3174 46.918 38.6729 46.7402C39.0329 46.5579 39.4339 46.4668 39.876 46.4668C40.3408 46.4668 40.7464 46.5488 41.0928 46.7129C41.4437 46.8724 41.7399 47.1071 41.9814 47.417C42.2275 47.7223 42.4212 48.0915 42.5625 48.5244C42.7038 48.9574 42.8018 49.4473 42.8564 49.9941V50.623C42.8063 51.1654 42.7083 51.653 42.5625 52.0859C42.4212 52.5189 42.2275 52.888 41.9814 53.1934C41.7399 53.4987 41.4437 53.7334 41.0928 53.8975C40.7419 54.057 40.3317 54.1367 39.8623 54.1367C39.4294 54.1367 39.0329 54.0433 38.6729 53.8564C38.3174 53.6696 38.0098 53.4076 37.75 53.0703C37.4948 52.7331 37.2965 52.3366 37.1553 51.8809C37.0186 51.4206 36.9502 50.9215 36.9502 50.3838ZM38.2217 50.2402V50.3838C38.2217 50.7529 38.2581 51.0993 38.3311 51.4229C38.4085 51.7464 38.527 52.0312 38.6865 52.2773C38.846 52.5234 39.0488 52.7171 39.2949 52.8584C39.541 52.9951 39.835 53.0635 40.1768 53.0635C40.596 53.0635 40.9401 52.9746 41.209 52.7969C41.4824 52.6191 41.7012 52.3844 41.8652 52.0928C42.0293 51.8011 42.1569 51.4844 42.248 51.1426V49.4951C42.1934 49.2445 42.1136 49.0029 42.0088 48.7705C41.9085 48.5335 41.7764 48.3239 41.6123 48.1416C41.4528 47.9548 41.2546 47.8066 41.0176 47.6973C40.7852 47.5879 40.5094 47.5332 40.1904 47.5332C39.8441 47.5332 39.5456 47.6061 39.2949 47.752C39.0488 47.8932 38.846 48.0892 38.6865 48.3398C38.527 48.5859 38.4085 48.873 38.3311 49.2012C38.2581 49.5247 38.2217 49.8711 38.2217 50.2402ZM48.2363 54.1367C47.7214 54.1367 47.2542 54.0501 46.835 53.877C46.4202 53.6992 46.0625 53.4508 45.7617 53.1318C45.4655 52.8128 45.2376 52.4346 45.0781 51.9971C44.9186 51.5596 44.8389 51.0811 44.8389 50.5615V50.2744C44.8389 49.6729 44.9277 49.1374 45.1055 48.668C45.2832 48.194 45.5247 47.793 45.8301 47.4648C46.1354 47.1367 46.4818 46.8883 46.8691 46.7197C47.2565 46.5511 47.6576 46.4668 48.0723 46.4668C48.6009 46.4668 49.0566 46.5579 49.4395 46.7402C49.8268 46.9225 50.1436 47.1777 50.3896 47.5059C50.6357 47.8294 50.818 48.2122 50.9365 48.6543C51.055 49.0918 51.1143 49.5703 51.1143 50.0898V50.6572H45.5908V49.625H49.8496V49.5293C49.8314 49.2012 49.763 48.8822 49.6445 48.5723C49.5306 48.2624 49.3483 48.0072 49.0977 47.8066C48.847 47.6061 48.5052 47.5059 48.0723 47.5059C47.7852 47.5059 47.5208 47.5674 47.2793 47.6904C47.0378 47.8089 46.8304 47.9867 46.6572 48.2236C46.484 48.4606 46.3496 48.75 46.2539 49.0918C46.1582 49.4336 46.1104 49.8278 46.1104 50.2744V50.5615C46.1104 50.9124 46.1582 51.2428 46.2539 51.5527C46.3542 51.8581 46.4977 52.127 46.6846 52.3594C46.876 52.5918 47.1061 52.7741 47.375 52.9062C47.6484 53.0384 47.9583 53.1045 48.3047 53.1045C48.7513 53.1045 49.1296 53.0133 49.4395 52.8311C49.7493 52.6488 50.0205 52.4049 50.2529 52.0996L51.0186 52.708C50.859 52.9495 50.6562 53.1797 50.4102 53.3984C50.1641 53.6172 49.861 53.7949 49.501 53.9316C49.1455 54.0684 48.724 54.1367 48.2363 54.1367ZM53.8555 48.1826V54H52.5908V46.6035H53.7871L53.8555 48.1826ZM53.5547 50.0215L53.0283 50.001C53.0329 49.4951 53.1081 49.028 53.2539 48.5996C53.3997 48.1667 53.6048 47.7907 53.8691 47.4717C54.1335 47.1527 54.4479 46.9066 54.8125 46.7334C55.1816 46.5557 55.5895 46.4668 56.0361 46.4668C56.4007 46.4668 56.7288 46.5169 57.0205 46.6172C57.3122 46.7129 57.5605 46.8678 57.7656 47.082C57.9753 47.2962 58.1348 47.5742 58.2441 47.916C58.3535 48.2533 58.4082 48.6657 58.4082 49.1533V54H57.1367V49.1396C57.1367 48.7523 57.0798 48.4424 56.9658 48.21C56.8519 47.973 56.6855 47.8021 56.4668 47.6973C56.248 47.5879 55.9792 47.5332 55.6602 47.5332C55.3457 47.5332 55.0586 47.5993 54.7988 47.7314C54.5436 47.8636 54.3226 48.0459 54.1357 48.2783C53.9535 48.5107 53.8099 48.7773 53.7051 49.0781C53.6048 49.3743 53.5547 49.6888 53.5547 50.0215ZM65.4902 54H64.2256V45.9609C64.2256 45.4004 64.335 44.9264 64.5537 44.5391C64.7725 44.1517 65.0846 43.8577 65.4902 43.6572C65.8958 43.4567 66.3766 43.3564 66.9326 43.3564C67.2607 43.3564 67.582 43.3975 67.8965 43.4795C68.2109 43.557 68.5345 43.6549 68.8672 43.7734L68.6553 44.8398C68.4456 44.7578 68.2018 44.6803 67.9238 44.6074C67.6504 44.5299 67.3496 44.4912 67.0215 44.4912C66.4792 44.4912 66.0872 44.6143 65.8457 44.8604C65.6087 45.1019 65.4902 45.4688 65.4902 45.9609V54ZM67.001 46.6035V47.5742H63.0566V46.6035H67.001ZM69.4893 46.6035V54H68.2246V46.6035H69.4893ZM74.6367 54.1367C74.1217 54.1367 73.6546 54.0501 73.2354 53.877C72.8206 53.6992 72.4629 53.4508 72.1621 53.1318C71.8659 52.8128 71.638 52.4346 71.4785 51.9971C71.319 51.5596 71.2393 51.0811 71.2393 50.5615V50.2744C71.2393 49.6729 71.3281 49.1374 71.5059 48.668C71.6836 48.194 71.9251 47.793 72.2305 47.4648C72.5358 47.1367 72.8822 46.8883 73.2695 46.7197C73.6569 46.5511 74.0579 46.4668 74.4727 46.4668C75.0013 46.4668 75.457 46.5579 75.8398 46.7402C76.2272 46.9225 76.5439 47.1777 76.79 47.5059C77.0361 47.8294 77.2184 48.2122 77.3369 48.6543C77.4554 49.0918 77.5146 49.5703 77.5146 50.0898V50.6572H71.9912V49.625H76.25V49.5293C76.2318 49.2012 76.1634 48.8822 76.0449 48.5723C75.931 48.2624 75.7487 48.0072 75.498 47.8066C75.2474 47.6061 74.9056 47.5059 74.4727 47.5059C74.1855 47.5059 73.9212 47.5674 73.6797 47.6904C73.4382 47.8089 73.2308 47.9867 73.0576 48.2236C72.8844 48.4606 72.75 48.75 72.6543 49.0918C72.5586 49.4336 72.5107 49.8278 72.5107 50.2744V50.5615C72.5107 50.9124 72.5586 51.2428 72.6543 51.5527C72.7546 51.8581 72.8981 52.127 73.085 52.3594C73.2764 52.5918 73.5065 52.7741 73.7754 52.9062C74.0488 53.0384 74.3587 53.1045 74.7051 53.1045C75.1517 53.1045 75.5299 53.0133 75.8398 52.8311C76.1497 52.6488 76.4209 52.4049 76.6533 52.0996L77.4189 52.708C77.2594 52.9495 77.0566 53.1797 76.8105 53.3984C76.5645 53.6172 76.2614 53.7949 75.9014 53.9316C75.5459 54.0684 75.1243 54.1367 74.6367 54.1367ZM80.3652 43.5V54H79.0938V43.5H80.3652ZM87.0576 52.5645V43.5H88.3291V54H87.167L87.0576 52.5645ZM82.0811 50.3838V50.2402C82.0811 49.6751 82.1494 49.1624 82.2861 48.7021C82.4274 48.2373 82.6257 47.8385 82.8809 47.5059C83.1406 47.1732 83.4482 46.918 83.8037 46.7402C84.1637 46.5579 84.5648 46.4668 85.0068 46.4668C85.4717 46.4668 85.8773 46.5488 86.2236 46.7129C86.5745 46.8724 86.8708 47.1071 87.1123 47.417C87.3584 47.7223 87.5521 48.0915 87.6934 48.5244C87.8346 48.9574 87.9326 49.4473 87.9873 49.9941V50.623C87.9372 51.1654 87.8392 51.653 87.6934 52.0859C87.5521 52.5189 87.3584 52.888 87.1123 53.1934C86.8708 53.4987 86.5745 53.7334 86.2236 53.8975C85.8727 54.057 85.4626 54.1367 84.9932 54.1367C84.5602 54.1367 84.1637 54.0433 83.8037 53.8564C83.4482 53.6696 83.1406 53.4076 82.8809 53.0703C82.6257 52.7331 82.4274 52.3366 82.2861 51.8809C82.1494 51.4206 82.0811 50.9215 82.0811 50.3838ZM83.3525 50.2402V50.3838C83.3525 50.7529 83.389 51.0993 83.4619 51.4229C83.5394 51.7464 83.6579 52.0312 83.8174 52.2773C83.9769 52.5234 84.1797 52.7171 84.4258 52.8584C84.6719 52.9951 84.9658 53.0635 85.3076 53.0635C85.7269 53.0635 86.071 52.9746 86.3398 52.7969C86.6133 52.6191 86.832 52.3844 86.9961 52.0928C87.1602 51.8011 87.2878 51.4844 87.3789 51.1426V49.4951C87.3242 49.2445 87.2445 49.0029 87.1396 48.7705C87.0394 48.5335 86.9072 48.3239 86.7432 48.1416C86.5837 47.9548 86.3854 47.8066 86.1484 47.6973C85.916 47.5879 85.6403 47.5332 85.3213 47.5332C84.9749 47.5332 84.6764 47.6061 84.4258 47.752C84.1797 47.8932 83.9769 48.0892 83.8174 48.3398C83.6579 48.5859 83.5394 48.873 83.4619 49.2012C83.389 49.5247 83.3525 49.8711 83.3525 50.2402ZM94.6045 52.0381C94.6045 51.8558 94.5635 51.6872 94.4814 51.5322C94.404 51.3727 94.2422 51.2292 93.9961 51.1016C93.7546 50.9694 93.39 50.8555 92.9023 50.7598C92.4922 50.6732 92.1208 50.5706 91.7881 50.4521C91.46 50.3337 91.1797 50.1901 90.9473 50.0215C90.7194 49.8529 90.5439 49.6546 90.4209 49.4268C90.2979 49.1989 90.2363 48.9323 90.2363 48.627C90.2363 48.3353 90.3001 48.0596 90.4277 47.7998C90.5599 47.54 90.7445 47.3099 90.9814 47.1094C91.223 46.9089 91.5124 46.7516 91.8496 46.6377C92.1868 46.5238 92.5628 46.4668 92.9775 46.4668C93.57 46.4668 94.0758 46.5716 94.4951 46.7812C94.9144 46.9909 95.2357 47.2712 95.459 47.6221C95.6823 47.9684 95.7939 48.3535 95.7939 48.7773H94.5293C94.5293 48.5723 94.4678 48.374 94.3447 48.1826C94.2262 47.9867 94.0508 47.8249 93.8184 47.6973C93.5905 47.5697 93.3102 47.5059 92.9775 47.5059C92.6266 47.5059 92.3418 47.5605 92.123 47.6699C91.9089 47.7747 91.7516 47.9092 91.6514 48.0732C91.5557 48.2373 91.5078 48.4105 91.5078 48.5928C91.5078 48.7295 91.5306 48.8525 91.5762 48.9619C91.6263 49.0667 91.7129 49.1647 91.8359 49.2559C91.959 49.3424 92.1322 49.4245 92.3555 49.502C92.5788 49.5794 92.8636 49.6569 93.21 49.7344C93.8161 49.8711 94.3151 50.0352 94.707 50.2266C95.099 50.418 95.3906 50.6527 95.582 50.9307C95.7734 51.2087 95.8691 51.5459 95.8691 51.9424C95.8691 52.266 95.8008 52.5622 95.6641 52.8311C95.5319 53.0999 95.3382 53.3324 95.083 53.5283C94.8324 53.7197 94.5316 53.8701 94.1807 53.9795C93.8343 54.0843 93.4447 54.1367 93.0117 54.1367C92.36 54.1367 91.8086 54.0205 91.3574 53.7881C90.9062 53.5557 90.5645 53.2549 90.332 52.8857C90.0996 52.5166 89.9834 52.127 89.9834 51.7168H91.2549C91.2731 52.0632 91.3734 52.3389 91.5557 52.5439C91.738 52.7445 91.9613 52.888 92.2256 52.9746C92.4899 53.0566 92.752 53.0977 93.0117 53.0977C93.3581 53.0977 93.6475 53.0521 93.8799 52.9609C94.1169 52.8698 94.2969 52.7445 94.4199 52.585C94.543 52.4255 94.6045 52.2432 94.6045 52.0381Z",fill:"#64748B"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1466)"},(0,h.createElement)("path",{d:"M24.0001 67.25C26.0701 67.25 27.7501 68.93 27.7501 71C27.7501 71.4875 27.6526 71.945 27.4801 72.3725L29.6701 74.5625C30.8026 73.6175 31.6951 72.395 32.2426 71C30.9451 67.7075 27.7426 65.375 23.9926 65.375C22.9426 65.375 21.9376 65.5625 21.0076 65.9L22.6276 67.52C23.0551 67.3475 23.5126 67.25 24.0001 67.25ZM16.5001 65.2025L18.2101 66.9125L18.5551 67.2575C17.3101 68.225 16.3351 69.515 15.7501 71C17.0476 74.2925 20.2501 76.625 24.0001 76.625C25.1626 76.625 26.2726 76.4 27.2851 75.995L27.6001 76.31L29.7976 78.5L30.7501 77.5475L17.4526 64.25L16.5001 65.2025ZM20.6476 69.35L21.8101 70.5125C21.7726 70.67 21.7501 70.835 21.7501 71C21.7501 72.245 22.7551 73.25 24.0001 73.25C24.1651 73.25 24.3301 73.2275 24.4876 73.19L25.6501 74.3525C25.1476 74.6 24.5926 74.75 24.0001 74.75C21.9301 74.75 20.2501 73.07 20.2501 71C20.2501 70.4075 20.4001 69.8525 20.6476 69.35ZM23.8801 68.765L26.2426 71.1275L26.2576 71.0075C26.2576 69.7625 25.2526 68.7575 24.0076 68.7575L23.8801 68.765Z",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M40.0693 65.75V75.5H38.895V65.75H40.0693ZM39.79 71.8057L39.3013 71.7866C39.3055 71.3169 39.3753 70.8831 39.5107 70.4854C39.6462 70.0833 39.8366 69.7342 40.082 69.438C40.3275 69.1418 40.6195 68.9132 40.958 68.7524C41.3008 68.5874 41.6795 68.5049 42.0942 68.5049C42.4328 68.5049 42.7375 68.5514 43.0083 68.6445C43.2791 68.7334 43.5098 68.8773 43.7002 69.0762C43.8949 69.2751 44.043 69.5332 44.1445 69.8506C44.2461 70.1637 44.2969 70.5467 44.2969 70.9995V75.5H43.1162V70.9868C43.1162 70.6271 43.0633 70.3394 42.9575 70.1235C42.8517 69.9035 42.6973 69.7448 42.4941 69.6475C42.291 69.5459 42.0413 69.4951 41.7451 69.4951C41.4531 69.4951 41.1865 69.5565 40.9453 69.6792C40.7083 69.8019 40.5031 69.9712 40.3296 70.187C40.1603 70.4028 40.027 70.6504 39.9297 70.9297C39.8366 71.2048 39.79 71.4967 39.79 71.8057ZM47.3311 68.6318V75.5H46.1504V68.6318H47.3311ZM46.0615 66.8101C46.0615 66.6196 46.1187 66.4588 46.2329 66.3276C46.3514 66.1965 46.5249 66.1309 46.7534 66.1309C46.9777 66.1309 47.1491 66.1965 47.2676 66.3276C47.3903 66.4588 47.4517 66.6196 47.4517 66.8101C47.4517 66.992 47.3903 67.1486 47.2676 67.2798C47.1491 67.4067 46.9777 67.4702 46.7534 67.4702C46.5249 67.4702 46.3514 67.4067 46.2329 67.2798C46.1187 67.1486 46.0615 66.992 46.0615 66.8101ZM53.5454 74.167V65.75H54.7261V75.5H53.647L53.5454 74.167ZM48.9243 72.1421V72.0088C48.9243 71.484 48.9878 71.008 49.1147 70.5806C49.2459 70.1489 49.43 69.7786 49.667 69.4697C49.9082 69.1608 50.1938 68.9238 50.5239 68.7588C50.8582 68.5895 51.2306 68.5049 51.6411 68.5049C52.0728 68.5049 52.4494 68.5811 52.771 68.7334C53.0968 68.8815 53.3719 69.0994 53.5962 69.3872C53.8247 69.6707 54.0046 70.0135 54.1357 70.4155C54.2669 70.8175 54.3579 71.2725 54.4087 71.7803V72.3643C54.3621 72.8678 54.2712 73.3206 54.1357 73.7227C54.0046 74.1247 53.8247 74.4674 53.5962 74.751C53.3719 75.0345 53.0968 75.2524 52.771 75.4048C52.4451 75.5529 52.0643 75.627 51.6284 75.627C51.2264 75.627 50.8582 75.5402 50.5239 75.3667C50.1938 75.1932 49.9082 74.9499 49.667 74.6367C49.43 74.3236 49.2459 73.9554 49.1147 73.5322C48.9878 73.1048 48.9243 72.6414 48.9243 72.1421ZM50.105 72.0088V72.1421C50.105 72.4849 50.1388 72.8065 50.2065 73.1069C50.2785 73.4074 50.3885 73.6719 50.5366 73.9004C50.6847 74.1289 50.873 74.3088 51.1016 74.4399C51.3301 74.5669 51.603 74.6304 51.9204 74.6304C52.3097 74.6304 52.6292 74.5479 52.8789 74.3828C53.1328 74.2178 53.3359 73.9998 53.4883 73.729C53.6406 73.4582 53.7591 73.1641 53.8438 72.8467V71.3169C53.793 71.0841 53.7189 70.8599 53.6216 70.644C53.5285 70.424 53.4058 70.2293 53.2534 70.0601C53.1053 69.8866 52.9212 69.749 52.7012 69.6475C52.4854 69.5459 52.2293 69.4951 51.9331 69.4951C51.6115 69.4951 51.3343 69.5628 51.1016 69.6982C50.873 69.8294 50.6847 70.0114 50.5366 70.2441C50.3885 70.4727 50.2785 70.7393 50.2065 71.0439C50.1388 71.3444 50.105 71.666 50.105 72.0088ZM60.8833 74.167V65.75H62.064V75.5H60.9849L60.8833 74.167ZM56.2622 72.1421V72.0088C56.2622 71.484 56.3257 71.008 56.4526 70.5806C56.5838 70.1489 56.7679 69.7786 57.0049 69.4697C57.2461 69.1608 57.5317 68.9238 57.8618 68.7588C58.1961 68.5895 58.5685 68.5049 58.979 68.5049C59.4106 68.5049 59.7873 68.5811 60.1089 68.7334C60.4347 68.8815 60.7098 69.0994 60.9341 69.3872C61.1626 69.6707 61.3424 70.0135 61.4736 70.4155C61.6048 70.8175 61.6958 71.2725 61.7466 71.7803V72.3643C61.7 72.8678 61.609 73.3206 61.4736 73.7227C61.3424 74.1247 61.1626 74.4674 60.9341 74.751C60.7098 75.0345 60.4347 75.2524 60.1089 75.4048C59.783 75.5529 59.4022 75.627 58.9663 75.627C58.5643 75.627 58.1961 75.5402 57.8618 75.3667C57.5317 75.1932 57.2461 74.9499 57.0049 74.6367C56.7679 74.3236 56.5838 73.9554 56.4526 73.5322C56.3257 73.1048 56.2622 72.6414 56.2622 72.1421ZM57.4429 72.0088V72.1421C57.4429 72.4849 57.4767 72.8065 57.5444 73.1069C57.6164 73.4074 57.7264 73.6719 57.8745 73.9004C58.0226 74.1289 58.2109 74.3088 58.4395 74.4399C58.668 74.5669 58.9409 74.6304 59.2583 74.6304C59.6476 74.6304 59.9671 74.5479 60.2168 74.3828C60.4707 74.2178 60.6738 73.9998 60.8262 73.729C60.9785 73.4582 61.097 73.1641 61.1816 72.8467V71.3169C61.1309 71.0841 61.0568 70.8599 60.9595 70.644C60.8664 70.424 60.7437 70.2293 60.5913 70.0601C60.4432 69.8866 60.2591 69.749 60.0391 69.6475C59.8232 69.5459 59.5672 69.4951 59.271 69.4951C58.9494 69.4951 58.6722 69.5628 58.4395 69.6982C58.2109 69.8294 58.0226 70.0114 57.8745 70.2441C57.7264 70.4727 57.6164 70.7393 57.5444 71.0439C57.4767 71.3444 57.4429 71.666 57.4429 72.0088ZM66.7422 75.627C66.264 75.627 65.8302 75.5465 65.4409 75.3857C65.0558 75.2207 64.7236 74.9901 64.4443 74.6938C64.1693 74.3976 63.9577 74.0464 63.8096 73.6401C63.6615 73.2339 63.5874 72.7896 63.5874 72.3071V72.0405C63.5874 71.4819 63.6699 70.9847 63.835 70.5488C64 70.1087 64.2243 69.7363 64.5078 69.4316C64.7913 69.127 65.113 68.8963 65.4727 68.7397C65.8324 68.5832 66.2048 68.5049 66.5898 68.5049C67.0807 68.5049 67.5039 68.5895 67.8594 68.7588C68.2191 68.9281 68.5132 69.165 68.7417 69.4697C68.9702 69.7702 69.1395 70.1257 69.2495 70.5361C69.3595 70.9424 69.4146 71.3867 69.4146 71.8691V72.396H64.2856V71.4375H68.2402V71.3486C68.2233 71.0439 68.1598 70.7477 68.0498 70.46C67.944 70.1722 67.7747 69.9352 67.542 69.749C67.3092 69.5628 66.9919 69.4697 66.5898 69.4697C66.3232 69.4697 66.0778 69.5269 65.8535 69.6411C65.6292 69.7511 65.4367 69.9162 65.2759 70.1362C65.1151 70.3563 64.9902 70.625 64.9014 70.9424C64.8125 71.2598 64.7681 71.6258 64.7681 72.0405V72.3071C64.7681 72.633 64.8125 72.9398 64.9014 73.2275C64.9945 73.5111 65.1278 73.7607 65.3013 73.9766C65.479 74.1924 65.6927 74.3617 65.9424 74.4844C66.1963 74.6071 66.484 74.6685 66.8057 74.6685C67.2204 74.6685 67.5716 74.5838 67.8594 74.4146C68.1471 74.2453 68.3989 74.0189 68.6147 73.7354L69.3257 74.3003C69.1776 74.5246 68.9893 74.7383 68.7607 74.9414C68.5322 75.1445 68.2508 75.3096 67.9165 75.4365C67.5864 75.5635 67.195 75.627 66.7422 75.627ZM71.96 70.0981V75.5H70.7856V68.6318H71.8965L71.96 70.0981ZM71.6807 71.8057L71.1919 71.7866C71.1961 71.3169 71.266 70.8831 71.4014 70.4854C71.5368 70.0833 71.7272 69.7342 71.9727 69.438C72.2181 69.1418 72.5101 68.9132 72.8486 68.7524C73.1914 68.5874 73.5701 68.5049 73.9849 68.5049C74.3234 68.5049 74.6281 68.5514 74.8989 68.6445C75.1698 68.7334 75.4004 68.8773 75.5908 69.0762C75.7855 69.2751 75.9336 69.5332 76.0352 69.8506C76.1367 70.1637 76.1875 70.5467 76.1875 70.9995V75.5H75.0068V70.9868C75.0068 70.6271 74.9539 70.3394 74.8481 70.1235C74.7424 69.9035 74.5879 69.7448 74.3848 69.6475C74.1816 69.5459 73.932 69.4951 73.6357 69.4951C73.3438 69.4951 73.0771 69.5565 72.8359 69.6792C72.599 69.8019 72.3937 69.9712 72.2202 70.187C72.0509 70.4028 71.9176 70.6504 71.8203 70.9297C71.7272 71.2048 71.6807 71.4967 71.6807 71.8057ZM82.9224 75.5V76.4648H77.1016V75.5H82.9224ZM86.7119 68.6318V69.5332H82.9985V68.6318H86.7119ZM84.2554 66.9624H85.4297V73.7988C85.4297 74.0316 85.4657 74.2072 85.5376 74.3257C85.6095 74.4442 85.7026 74.5225 85.8169 74.5605C85.9312 74.5986 86.0539 74.6177 86.1851 74.6177C86.2824 74.6177 86.384 74.6092 86.4897 74.5923C86.5998 74.5711 86.6823 74.5542 86.7373 74.5415L86.7437 75.5C86.6506 75.5296 86.5278 75.5571 86.3755 75.5825C86.2274 75.6121 86.0475 75.627 85.8359 75.627C85.5482 75.627 85.2837 75.5698 85.0425 75.4556C84.8013 75.3413 84.6087 75.1509 84.4648 74.8843C84.3252 74.6134 84.2554 74.2495 84.2554 73.7925V66.9624ZM92.1392 74.3257V70.79C92.1392 70.5192 92.0841 70.2843 91.9741 70.0854C91.8683 69.8823 91.7075 69.7257 91.4917 69.6157C91.2759 69.5057 91.0093 69.4507 90.6919 69.4507C90.3957 69.4507 90.1354 69.5015 89.9111 69.603C89.6911 69.7046 89.5176 69.8379 89.3906 70.0029C89.2679 70.168 89.2065 70.3457 89.2065 70.5361H88.0322C88.0322 70.2907 88.0957 70.0474 88.2227 69.8062C88.3496 69.5649 88.5316 69.347 88.7686 69.1523C89.0098 68.9535 89.2975 68.7969 89.6318 68.6826C89.9704 68.5641 90.347 68.5049 90.7617 68.5049C91.2611 68.5049 91.7012 68.5895 92.082 68.7588C92.4671 68.9281 92.7676 69.1841 92.9834 69.5269C93.2035 69.8654 93.3135 70.2907 93.3135 70.8027V74.002C93.3135 74.2305 93.3325 74.4738 93.3706 74.7319C93.4129 74.9901 93.4743 75.2122 93.5547 75.3984V75.5H92.3296C92.2703 75.3646 92.2238 75.1847 92.1899 74.9604C92.1561 74.7319 92.1392 74.5203 92.1392 74.3257ZM92.3423 71.3359L92.355 72.1611H91.168C90.8337 72.1611 90.5353 72.1886 90.2729 72.2437C90.0106 72.2944 89.7905 72.3727 89.6128 72.4785C89.4351 72.5843 89.2996 72.7176 89.2065 72.8784C89.1134 73.035 89.0669 73.2191 89.0669 73.4307C89.0669 73.6465 89.1156 73.8433 89.2129 74.021C89.3102 74.1987 89.4562 74.3405 89.6509 74.4463C89.8498 74.5479 90.0931 74.5986 90.3809 74.5986C90.7406 74.5986 91.0579 74.5225 91.333 74.3701C91.6081 74.2178 91.826 74.0316 91.9868 73.8115C92.1519 73.5915 92.2407 73.3778 92.2534 73.1704L92.7549 73.7354C92.7253 73.9131 92.6449 74.1099 92.5137 74.3257C92.3825 74.5415 92.2069 74.7489 91.9868 74.9478C91.771 75.1424 91.5129 75.3053 91.2124 75.4365C90.9162 75.5635 90.5819 75.627 90.2095 75.627C89.744 75.627 89.3356 75.536 88.9844 75.354C88.6374 75.172 88.3665 74.9287 88.1719 74.624C87.9814 74.3151 87.8862 73.9702 87.8862 73.5894C87.8862 73.2212 87.9582 72.8975 88.1021 72.6182C88.2459 72.3346 88.4533 72.0998 88.7241 71.9136C88.995 71.7231 89.3208 71.5793 89.7017 71.4819C90.0825 71.3846 90.5078 71.3359 90.9775 71.3359H92.3423ZM95.9541 68.6318L97.4585 71.1328L98.9819 68.6318H100.359L98.1123 72.0215L100.429 75.5H99.0708L97.4839 72.9229L95.897 75.5H94.5322L96.8428 72.0215L94.6021 68.6318H95.9541ZM106.561 75.5V76.4648H100.74V75.5H106.561ZM108.649 69.9521V78.1406H107.469V68.6318H108.548L108.649 69.9521ZM113.277 72.0088V72.1421C113.277 72.6414 113.218 73.1048 113.099 73.5322C112.981 73.9554 112.807 74.3236 112.579 74.6367C112.354 74.9499 112.077 75.1932 111.747 75.3667C111.417 75.5402 111.038 75.627 110.611 75.627C110.175 75.627 109.79 75.555 109.456 75.4111C109.121 75.2673 108.838 75.0578 108.605 74.7827C108.372 74.5076 108.186 74.1776 108.046 73.7925C107.911 73.4074 107.818 72.9736 107.767 72.4912V71.7803C107.818 71.2725 107.913 70.8175 108.053 70.4155C108.192 70.0135 108.376 69.6707 108.605 69.3872C108.838 69.0994 109.119 68.8815 109.449 68.7334C109.779 68.5811 110.16 68.5049 110.592 68.5049C111.023 68.5049 111.406 68.5895 111.741 68.7588C112.075 68.9238 112.356 69.1608 112.585 69.4697C112.813 69.7786 112.985 70.1489 113.099 70.5806C113.218 71.008 113.277 71.484 113.277 72.0088ZM112.096 72.1421V72.0088C112.096 71.666 112.06 71.3444 111.988 71.0439C111.916 70.7393 111.804 70.4727 111.652 70.2441C111.504 70.0114 111.313 69.8294 111.081 69.6982C110.848 69.5628 110.571 69.4951 110.249 69.4951C109.953 69.4951 109.695 69.5459 109.475 69.6475C109.259 69.749 109.075 69.8866 108.922 70.0601C108.77 70.2293 108.645 70.424 108.548 70.644C108.455 70.8599 108.385 71.0841 108.338 71.3169V72.9609C108.423 73.2572 108.542 73.5365 108.694 73.7988C108.846 74.057 109.049 74.2664 109.303 74.4272C109.557 74.5838 109.877 74.6621 110.262 74.6621C110.579 74.6621 110.852 74.5965 111.081 74.4653C111.313 74.3299 111.504 74.1458 111.652 73.9131C111.804 73.6803 111.916 73.4137 111.988 73.1133C112.06 72.8086 112.096 72.4849 112.096 72.1421ZM117.625 75.627C117.147 75.627 116.713 75.5465 116.324 75.3857C115.939 75.2207 115.606 74.9901 115.327 74.6938C115.052 74.3976 114.84 74.0464 114.692 73.6401C114.544 73.2339 114.47 72.7896 114.47 72.3071V72.0405C114.47 71.4819 114.553 70.9847 114.718 70.5488C114.883 70.1087 115.107 69.7363 115.391 69.4316C115.674 69.127 115.996 68.8963 116.355 68.7397C116.715 68.5832 117.088 68.5049 117.473 68.5049C117.964 68.5049 118.387 68.5895 118.742 68.7588C119.102 68.9281 119.396 69.165 119.625 69.4697C119.853 69.7702 120.022 70.1257 120.132 70.5361C120.242 70.9424 120.297 71.3867 120.297 71.8691V72.396H115.168V71.4375H119.123V71.3486C119.106 71.0439 119.043 70.7477 118.933 70.46C118.827 70.1722 118.658 69.9352 118.425 69.749C118.192 69.5628 117.875 69.4697 117.473 69.4697C117.206 69.4697 116.961 69.5269 116.736 69.6411C116.512 69.7511 116.319 69.9162 116.159 70.1362C115.998 70.3563 115.873 70.625 115.784 70.9424C115.695 71.2598 115.651 71.6258 115.651 72.0405V72.3071C115.651 72.633 115.695 72.9398 115.784 73.2275C115.877 73.5111 116.011 73.7607 116.184 73.9766C116.362 74.1924 116.576 74.3617 116.825 74.4844C117.079 74.6071 117.367 74.6685 117.688 74.6685C118.103 74.6685 118.454 74.5838 118.742 74.4146C119.03 74.2453 119.282 74.0189 119.498 73.7354L120.208 74.3003C120.06 74.5246 119.872 74.7383 119.644 74.9414C119.415 75.1445 119.134 75.3096 118.799 75.4365C118.469 75.5635 118.078 75.627 117.625 75.627ZM122.843 69.7109V75.5H121.668V68.6318H122.811L122.843 69.7109ZM124.988 68.5938L124.982 69.6855C124.885 69.6644 124.792 69.6517 124.703 69.6475C124.618 69.639 124.521 69.6348 124.411 69.6348C124.14 69.6348 123.901 69.6771 123.693 69.7617C123.486 69.8464 123.31 69.9648 123.167 70.1172C123.023 70.2695 122.908 70.4515 122.824 70.6631C122.743 70.8704 122.69 71.099 122.665 71.3486L122.335 71.5391C122.335 71.1243 122.375 70.735 122.456 70.3711C122.54 70.0072 122.669 69.6855 122.843 69.4062C123.016 69.1227 123.236 68.9027 123.503 68.7461C123.774 68.5853 124.095 68.5049 124.468 68.5049C124.552 68.5049 124.65 68.5155 124.76 68.5366C124.87 68.5535 124.946 68.5726 124.988 68.5938ZM128.695 74.6621C128.975 74.6621 129.233 74.605 129.47 74.4907C129.707 74.3765 129.901 74.2199 130.054 74.021C130.206 73.8179 130.293 73.5872 130.314 73.3291H131.431C131.41 73.7354 131.272 74.1141 131.019 74.4653C130.769 74.8123 130.441 75.0938 130.035 75.3096C129.628 75.5212 129.182 75.627 128.695 75.627C128.179 75.627 127.728 75.536 127.343 75.354C126.962 75.172 126.645 74.9224 126.391 74.605C126.141 74.2876 125.953 73.9237 125.826 73.5132C125.703 73.0985 125.642 72.6605 125.642 72.1992V71.9326C125.642 71.4714 125.703 71.0355 125.826 70.625C125.953 70.2103 126.141 69.8442 126.391 69.5269C126.645 69.2095 126.962 68.9598 127.343 68.7778C127.728 68.5959 128.179 68.5049 128.695 68.5049C129.233 68.5049 129.702 68.6149 130.104 68.835C130.507 69.0508 130.822 69.347 131.05 69.7236C131.283 70.096 131.41 70.5192 131.431 70.9932H130.314C130.293 70.7096 130.212 70.4536 130.073 70.2251C129.937 69.9966 129.751 69.8146 129.514 69.6792C129.281 69.5396 129.008 69.4697 128.695 69.4697C128.336 69.4697 128.033 69.5417 127.788 69.6855C127.546 69.8252 127.354 70.0156 127.21 70.2568C127.07 70.4938 126.969 70.7583 126.905 71.0503C126.846 71.3381 126.816 71.6322 126.816 71.9326V72.1992C126.816 72.4997 126.846 72.7959 126.905 73.0879C126.965 73.3799 127.064 73.6444 127.204 73.8813C127.347 74.1183 127.54 74.3088 127.781 74.4526C128.027 74.5923 128.331 74.6621 128.695 74.6621ZM135.602 75.627C135.123 75.627 134.69 75.5465 134.3 75.3857C133.915 75.2207 133.583 74.9901 133.304 74.6938C133.029 74.3976 132.817 74.0464 132.669 73.6401C132.521 73.2339 132.447 72.7896 132.447 72.3071V72.0405C132.447 71.4819 132.529 70.9847 132.694 70.5488C132.859 70.1087 133.084 69.7363 133.367 69.4316C133.651 69.127 133.972 68.8963 134.332 68.7397C134.692 68.5832 135.064 68.5049 135.449 68.5049C135.94 68.5049 136.363 68.5895 136.719 68.7588C137.078 68.9281 137.373 69.165 137.601 69.4697C137.83 69.7702 137.999 70.1257 138.109 70.5361C138.219 70.9424 138.274 71.3867 138.274 71.8691V72.396H133.145V71.4375H137.1V71.3486C137.083 71.0439 137.019 70.7477 136.909 70.46C136.803 70.1722 136.634 69.9352 136.401 69.749C136.169 69.5628 135.851 69.4697 135.449 69.4697C135.183 69.4697 134.937 69.5269 134.713 69.6411C134.489 69.7511 134.296 69.9162 134.135 70.1362C133.974 70.3563 133.85 70.625 133.761 70.9424C133.672 71.2598 133.627 71.6258 133.627 72.0405V72.3071C133.627 72.633 133.672 72.9398 133.761 73.2275C133.854 73.5111 133.987 73.7607 134.161 73.9766C134.338 74.1924 134.552 74.3617 134.802 74.4844C135.056 74.6071 135.343 74.6685 135.665 74.6685C136.08 74.6685 136.431 74.5838 136.719 74.4146C137.007 74.2453 137.258 74.0189 137.474 73.7354L138.185 74.3003C138.037 74.5246 137.849 74.7383 137.62 74.9414C137.392 75.1445 137.11 75.3096 136.776 75.4365C136.446 75.5635 136.054 75.627 135.602 75.627ZM140.819 70.0981V75.5H139.645V68.6318H140.756L140.819 70.0981ZM140.54 71.8057L140.051 71.7866C140.056 71.3169 140.125 70.8831 140.261 70.4854C140.396 70.0833 140.587 69.7342 140.832 69.438C141.077 69.1418 141.369 68.9132 141.708 68.7524C142.051 68.5874 142.43 68.5049 142.844 68.5049C143.183 68.5049 143.487 68.5514 143.758 68.6445C144.029 68.7334 144.26 68.8773 144.45 69.0762C144.645 69.2751 144.793 69.5332 144.895 69.8506C144.996 70.1637 145.047 70.5467 145.047 70.9995V75.5H143.866V70.9868C143.866 70.6271 143.813 70.3394 143.708 70.1235C143.602 69.9035 143.447 69.7448 143.244 69.6475C143.041 69.5459 142.791 69.4951 142.495 69.4951C142.203 69.4951 141.937 69.5565 141.695 69.6792C141.458 69.8019 141.253 69.9712 141.08 70.187C140.91 70.4028 140.777 70.6504 140.68 70.9297C140.587 71.2048 140.54 71.4967 140.54 71.8057ZM149.706 68.6318V69.5332H145.993V68.6318H149.706ZM147.25 66.9624H148.424V73.7988C148.424 74.0316 148.46 74.2072 148.532 74.3257C148.604 74.4442 148.697 74.5225 148.811 74.5605C148.925 74.5986 149.048 74.6177 149.179 74.6177C149.277 74.6177 149.378 74.6092 149.484 74.5923C149.594 74.5711 149.676 74.5542 149.731 74.5415L149.738 75.5C149.645 75.5296 149.522 75.5571 149.37 75.5825C149.222 75.6121 149.042 75.627 148.83 75.627C148.542 75.627 148.278 75.5698 148.037 75.4556C147.795 75.3413 147.603 75.1509 147.459 74.8843C147.319 74.6134 147.25 74.2495 147.25 73.7925V66.9624Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M255.253 71.1011L254.314 70.8599L254.777 66.2578H259.519V67.3433H255.774L255.495 69.8569C255.664 69.7596 255.878 69.6686 256.136 69.584C256.398 69.4993 256.699 69.457 257.037 69.457C257.465 69.457 257.847 69.5311 258.186 69.6792C258.525 69.8231 258.812 70.0304 259.049 70.3013C259.291 70.5721 259.475 70.8979 259.602 71.2788C259.729 71.6597 259.792 72.085 259.792 72.5547C259.792 72.999 259.731 73.4074 259.608 73.7798C259.489 74.1522 259.31 74.478 259.068 74.7573C258.827 75.0324 258.522 75.2461 258.154 75.3984C257.79 75.5508 257.361 75.627 256.866 75.627C256.493 75.627 256.14 75.5762 255.806 75.4746C255.476 75.3688 255.179 75.2101 254.917 74.9985C254.659 74.7827 254.447 74.5161 254.282 74.1987C254.121 73.8771 254.02 73.5005 253.978 73.0688H255.095C255.146 73.4159 255.247 73.7078 255.399 73.9448C255.552 74.1818 255.751 74.3617 255.996 74.4844C256.246 74.6029 256.536 74.6621 256.866 74.6621C257.145 74.6621 257.393 74.6134 257.608 74.5161C257.824 74.4188 258.006 74.2791 258.154 74.0972C258.302 73.9152 258.415 73.6951 258.491 73.437C258.571 73.1789 258.611 72.889 258.611 72.5674C258.611 72.2754 258.571 72.0046 258.491 71.7549C258.41 71.5052 258.29 71.2873 258.129 71.1011C257.972 70.9149 257.78 70.771 257.551 70.6694C257.323 70.5636 257.06 70.5107 256.764 70.5107C256.371 70.5107 256.072 70.5636 255.869 70.6694C255.67 70.7752 255.465 70.9191 255.253 71.1011ZM260.979 68.5239V68.0352C260.979 67.6839 261.055 67.3644 261.208 67.0767C261.36 66.7889 261.578 66.5583 261.861 66.3848C262.145 66.2113 262.481 66.1245 262.871 66.1245C263.268 66.1245 263.607 66.2113 263.886 66.3848C264.17 66.5583 264.388 66.7889 264.54 67.0767C264.692 67.3644 264.769 67.6839 264.769 68.0352V68.5239C264.769 68.8667 264.692 69.182 264.54 69.4697C264.392 69.7575 264.176 69.9881 263.893 70.1616C263.613 70.3351 263.277 70.4219 262.883 70.4219C262.49 70.4219 262.149 70.3351 261.861 70.1616C261.578 69.9881 261.36 69.7575 261.208 69.4697C261.055 69.182 260.979 68.8667 260.979 68.5239ZM261.861 68.0352V68.5239C261.861 68.7186 261.897 68.9027 261.969 69.0762C262.045 69.2497 262.16 69.3914 262.312 69.5015C262.464 69.6073 262.655 69.6602 262.883 69.6602C263.112 69.6602 263.3 69.6073 263.448 69.5015C263.596 69.3914 263.706 69.2497 263.778 69.0762C263.85 68.9027 263.886 68.7186 263.886 68.5239V68.0352C263.886 67.8363 263.848 67.6501 263.772 67.4766C263.7 67.2988 263.588 67.1571 263.436 67.0513C263.287 66.9412 263.099 66.8862 262.871 66.8862C262.646 66.8862 262.458 66.9412 262.306 67.0513C262.158 67.1571 262.045 67.2988 261.969 67.4766C261.897 67.6501 261.861 67.8363 261.861 68.0352ZM265.479 73.729V73.2339C265.479 72.8869 265.556 72.5695 265.708 72.2817C265.86 71.994 266.078 71.7633 266.362 71.5898C266.645 71.4163 266.982 71.3296 267.371 71.3296C267.769 71.3296 268.107 71.4163 268.387 71.5898C268.67 71.7633 268.888 71.994 269.041 72.2817C269.193 72.5695 269.269 72.8869 269.269 73.2339V73.729C269.269 74.076 269.193 74.3934 269.041 74.6812C268.892 74.9689 268.677 75.1995 268.393 75.373C268.114 75.5465 267.777 75.6333 267.384 75.6333C266.99 75.6333 266.652 75.5465 266.368 75.373C266.085 75.1995 265.865 74.9689 265.708 74.6812C265.556 74.3934 265.479 74.076 265.479 73.729ZM266.362 73.2339V73.729C266.362 73.9237 266.398 74.1099 266.47 74.2876C266.546 74.4611 266.66 74.6029 266.812 74.7129C266.965 74.8187 267.155 74.8716 267.384 74.8716C267.612 74.8716 267.801 74.8187 267.949 74.7129C268.101 74.6029 268.213 74.4611 268.285 74.2876C268.357 74.1141 268.393 73.9279 268.393 73.729V73.2339C268.393 73.035 268.355 72.8488 268.279 72.6753C268.207 72.5018 268.095 72.3621 267.942 72.2563C267.794 72.1463 267.604 72.0913 267.371 72.0913C267.147 72.0913 266.958 72.1463 266.806 72.2563C266.658 72.3621 266.546 72.5018 266.47 72.6753C266.398 72.8488 266.362 73.035 266.362 73.2339ZM267.663 67.5718L263.15 74.7954L262.49 74.3765L267.003 67.1528L267.663 67.5718Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip2_75_1466)"},(0,h.createElement)("path",{d:"M24.0001 90.25C26.0701 90.25 27.7501 91.93 27.7501 94C27.7501 94.4875 27.6526 94.945 27.4801 95.3725L29.6701 97.5625C30.8026 96.6175 31.6951 95.395 32.2426 94C30.9451 90.7075 27.7426 88.375 23.9926 88.375C22.9426 88.375 21.9376 88.5625 21.0076 88.9L22.6276 90.52C23.0551 90.3475 23.5126 90.25 24.0001 90.25ZM16.5001 88.2025L18.2101 89.9125L18.5551 90.2575C17.3101 91.225 16.3351 92.515 15.7501 94C17.0476 97.2925 20.2501 99.625 24.0001 99.625C25.1626 99.625 26.2726 99.4 27.2851 98.995L27.6001 99.31L29.7976 101.5L30.7501 100.547L17.4526 87.25L16.5001 88.2025ZM20.6476 92.35L21.8101 93.5125C21.7726 93.67 21.7501 93.835 21.7501 94C21.7501 95.245 22.7551 96.25 24.0001 96.25C24.1651 96.25 24.3301 96.2275 24.4876 96.19L25.6501 97.3525C25.1476 97.6 24.5926 97.75 24.0001 97.75C21.9301 97.75 20.2501 96.07 20.2501 94C20.2501 93.4075 20.4001 92.8525 20.6476 92.35ZM23.8801 91.765L26.2426 94.1275L26.2576 94.0075C26.2576 92.7625 25.2526 91.7575 24.0076 91.7575L23.8801 91.765Z",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M40.0693 88.75V98.5H38.895V88.75H40.0693ZM39.79 94.8057L39.3013 94.7866C39.3055 94.3169 39.3753 93.8831 39.5107 93.4854C39.6462 93.0833 39.8366 92.7342 40.082 92.438C40.3275 92.1418 40.6195 91.9132 40.958 91.7524C41.3008 91.5874 41.6795 91.5049 42.0942 91.5049C42.4328 91.5049 42.7375 91.5514 43.0083 91.6445C43.2791 91.7334 43.5098 91.8773 43.7002 92.0762C43.8949 92.2751 44.043 92.5332 44.1445 92.8506C44.2461 93.1637 44.2969 93.5467 44.2969 93.9995V98.5H43.1162V93.9868C43.1162 93.6271 43.0633 93.3394 42.9575 93.1235C42.8517 92.9035 42.6973 92.7448 42.4941 92.6475C42.291 92.5459 42.0413 92.4951 41.7451 92.4951C41.4531 92.4951 41.1865 92.5565 40.9453 92.6792C40.7083 92.8019 40.5031 92.9712 40.3296 93.187C40.1603 93.4028 40.027 93.6504 39.9297 93.9297C39.8366 94.2048 39.79 94.4967 39.79 94.8057ZM47.3311 91.6318V98.5H46.1504V91.6318H47.3311ZM46.0615 89.8101C46.0615 89.6196 46.1187 89.4588 46.2329 89.3276C46.3514 89.1965 46.5249 89.1309 46.7534 89.1309C46.9777 89.1309 47.1491 89.1965 47.2676 89.3276C47.3903 89.4588 47.4517 89.6196 47.4517 89.8101C47.4517 89.992 47.3903 90.1486 47.2676 90.2798C47.1491 90.4067 46.9777 90.4702 46.7534 90.4702C46.5249 90.4702 46.3514 90.4067 46.2329 90.2798C46.1187 90.1486 46.0615 89.992 46.0615 89.8101ZM53.5454 97.167V88.75H54.7261V98.5H53.647L53.5454 97.167ZM48.9243 95.1421V95.0088C48.9243 94.484 48.9878 94.008 49.1147 93.5806C49.2459 93.1489 49.43 92.7786 49.667 92.4697C49.9082 92.1608 50.1938 91.9238 50.5239 91.7588C50.8582 91.5895 51.2306 91.5049 51.6411 91.5049C52.0728 91.5049 52.4494 91.5811 52.771 91.7334C53.0968 91.8815 53.3719 92.0994 53.5962 92.3872C53.8247 92.6707 54.0046 93.0135 54.1357 93.4155C54.2669 93.8175 54.3579 94.2725 54.4087 94.7803V95.3643C54.3621 95.8678 54.2712 96.3206 54.1357 96.7227C54.0046 97.1247 53.8247 97.4674 53.5962 97.751C53.3719 98.0345 53.0968 98.2524 52.771 98.4048C52.4451 98.5529 52.0643 98.627 51.6284 98.627C51.2264 98.627 50.8582 98.5402 50.5239 98.3667C50.1938 98.1932 49.9082 97.9499 49.667 97.6367C49.43 97.3236 49.2459 96.9554 49.1147 96.5322C48.9878 96.1048 48.9243 95.6414 48.9243 95.1421ZM50.105 95.0088V95.1421C50.105 95.4849 50.1388 95.8065 50.2065 96.1069C50.2785 96.4074 50.3885 96.6719 50.5366 96.9004C50.6847 97.1289 50.873 97.3088 51.1016 97.4399C51.3301 97.5669 51.603 97.6304 51.9204 97.6304C52.3097 97.6304 52.6292 97.5479 52.8789 97.3828C53.1328 97.2178 53.3359 96.9998 53.4883 96.729C53.6406 96.4582 53.7591 96.1641 53.8438 95.8467V94.3169C53.793 94.0841 53.7189 93.8599 53.6216 93.644C53.5285 93.424 53.4058 93.2293 53.2534 93.0601C53.1053 92.8866 52.9212 92.749 52.7012 92.6475C52.4854 92.5459 52.2293 92.4951 51.9331 92.4951C51.6115 92.4951 51.3343 92.5628 51.1016 92.6982C50.873 92.8294 50.6847 93.0114 50.5366 93.2441C50.3885 93.4727 50.2785 93.7393 50.2065 94.0439C50.1388 94.3444 50.105 94.666 50.105 95.0088ZM60.8833 97.167V88.75H62.064V98.5H60.9849L60.8833 97.167ZM56.2622 95.1421V95.0088C56.2622 94.484 56.3257 94.008 56.4526 93.5806C56.5838 93.1489 56.7679 92.7786 57.0049 92.4697C57.2461 92.1608 57.5317 91.9238 57.8618 91.7588C58.1961 91.5895 58.5685 91.5049 58.979 91.5049C59.4106 91.5049 59.7873 91.5811 60.1089 91.7334C60.4347 91.8815 60.7098 92.0994 60.9341 92.3872C61.1626 92.6707 61.3424 93.0135 61.4736 93.4155C61.6048 93.8175 61.6958 94.2725 61.7466 94.7803V95.3643C61.7 95.8678 61.609 96.3206 61.4736 96.7227C61.3424 97.1247 61.1626 97.4674 60.9341 97.751C60.7098 98.0345 60.4347 98.2524 60.1089 98.4048C59.783 98.5529 59.4022 98.627 58.9663 98.627C58.5643 98.627 58.1961 98.5402 57.8618 98.3667C57.5317 98.1932 57.2461 97.9499 57.0049 97.6367C56.7679 97.3236 56.5838 96.9554 56.4526 96.5322C56.3257 96.1048 56.2622 95.6414 56.2622 95.1421ZM57.4429 95.0088V95.1421C57.4429 95.4849 57.4767 95.8065 57.5444 96.1069C57.6164 96.4074 57.7264 96.6719 57.8745 96.9004C58.0226 97.1289 58.2109 97.3088 58.4395 97.4399C58.668 97.5669 58.9409 97.6304 59.2583 97.6304C59.6476 97.6304 59.9671 97.5479 60.2168 97.3828C60.4707 97.2178 60.6738 96.9998 60.8262 96.729C60.9785 96.4582 61.097 96.1641 61.1816 95.8467V94.3169C61.1309 94.0841 61.0568 93.8599 60.9595 93.644C60.8664 93.424 60.7437 93.2293 60.5913 93.0601C60.4432 92.8866 60.2591 92.749 60.0391 92.6475C59.8232 92.5459 59.5672 92.4951 59.271 92.4951C58.9494 92.4951 58.6722 92.5628 58.4395 92.6982C58.2109 92.8294 58.0226 93.0114 57.8745 93.2441C57.7264 93.4727 57.6164 93.7393 57.5444 94.0439C57.4767 94.3444 57.4429 94.666 57.4429 95.0088ZM66.7422 98.627C66.264 98.627 65.8302 98.5465 65.4409 98.3857C65.0558 98.2207 64.7236 97.9901 64.4443 97.6938C64.1693 97.3976 63.9577 97.0464 63.8096 96.6401C63.6615 96.2339 63.5874 95.7896 63.5874 95.3071V95.0405C63.5874 94.4819 63.6699 93.9847 63.835 93.5488C64 93.1087 64.2243 92.7363 64.5078 92.4316C64.7913 92.127 65.113 91.8963 65.4727 91.7397C65.8324 91.5832 66.2048 91.5049 66.5898 91.5049C67.0807 91.5049 67.5039 91.5895 67.8594 91.7588C68.2191 91.9281 68.5132 92.165 68.7417 92.4697C68.9702 92.7702 69.1395 93.1257 69.2495 93.5361C69.3595 93.9424 69.4146 94.3867 69.4146 94.8691V95.396H64.2856V94.4375H68.2402V94.3486C68.2233 94.0439 68.1598 93.7477 68.0498 93.46C67.944 93.1722 67.7747 92.9352 67.542 92.749C67.3092 92.5628 66.9919 92.4697 66.5898 92.4697C66.3232 92.4697 66.0778 92.5269 65.8535 92.6411C65.6292 92.7511 65.4367 92.9162 65.2759 93.1362C65.1151 93.3563 64.9902 93.625 64.9014 93.9424C64.8125 94.2598 64.7681 94.6258 64.7681 95.0405V95.3071C64.7681 95.633 64.8125 95.9398 64.9014 96.2275C64.9945 96.5111 65.1278 96.7607 65.3013 96.9766C65.479 97.1924 65.6927 97.3617 65.9424 97.4844C66.1963 97.6071 66.484 97.6685 66.8057 97.6685C67.2204 97.6685 67.5716 97.5838 67.8594 97.4146C68.1471 97.2453 68.3989 97.0189 68.6147 96.7354L69.3257 97.3003C69.1776 97.5246 68.9893 97.7383 68.7607 97.9414C68.5322 98.1445 68.2508 98.3096 67.9165 98.4365C67.5864 98.5635 67.195 98.627 66.7422 98.627ZM71.96 93.0981V98.5H70.7856V91.6318H71.8965L71.96 93.0981ZM71.6807 94.8057L71.1919 94.7866C71.1961 94.3169 71.266 93.8831 71.4014 93.4854C71.5368 93.0833 71.7272 92.7342 71.9727 92.438C72.2181 92.1418 72.5101 91.9132 72.8486 91.7524C73.1914 91.5874 73.5701 91.5049 73.9849 91.5049C74.3234 91.5049 74.6281 91.5514 74.8989 91.6445C75.1698 91.7334 75.4004 91.8773 75.5908 92.0762C75.7855 92.2751 75.9336 92.5332 76.0352 92.8506C76.1367 93.1637 76.1875 93.5467 76.1875 93.9995V98.5H75.0068V93.9868C75.0068 93.6271 74.9539 93.3394 74.8481 93.1235C74.7424 92.9035 74.5879 92.7448 74.3848 92.6475C74.1816 92.5459 73.932 92.4951 73.6357 92.4951C73.3438 92.4951 73.0771 92.5565 72.8359 92.6792C72.599 92.8019 72.3937 92.9712 72.2202 93.187C72.0509 93.4028 71.9176 93.6504 71.8203 93.9297C71.7272 94.2048 71.6807 94.4967 71.6807 94.8057ZM82.9224 98.5V99.4648H77.1016V98.5H82.9224ZM88.1655 97.167V88.75H89.3462V98.5H88.2671L88.1655 97.167ZM83.5444 95.1421V95.0088C83.5444 94.484 83.6079 94.008 83.7349 93.5806C83.866 93.1489 84.0501 92.7786 84.2871 92.4697C84.5283 92.1608 84.814 91.9238 85.144 91.7588C85.4784 91.5895 85.8507 91.5049 86.2612 91.5049C86.6929 91.5049 87.0695 91.5811 87.3911 91.7334C87.717 91.8815 87.992 92.0994 88.2163 92.3872C88.4448 92.6707 88.6247 93.0135 88.7559 93.4155C88.887 93.8175 88.978 94.2725 89.0288 94.7803V95.3643C88.9823 95.8678 88.8913 96.3206 88.7559 96.7227C88.6247 97.1247 88.4448 97.4674 88.2163 97.751C87.992 98.0345 87.717 98.2524 87.3911 98.4048C87.0653 98.5529 86.6844 98.627 86.2485 98.627C85.8465 98.627 85.4784 98.5402 85.144 98.3667C84.814 98.1932 84.5283 97.9499 84.2871 97.6367C84.0501 97.3236 83.866 96.9554 83.7349 96.5322C83.6079 96.1048 83.5444 95.6414 83.5444 95.1421ZM84.7251 95.0088V95.1421C84.7251 95.4849 84.759 95.8065 84.8267 96.1069C84.8986 96.4074 85.0086 96.6719 85.1567 96.9004C85.3049 97.1289 85.4932 97.3088 85.7217 97.4399C85.9502 97.5669 86.2231 97.6304 86.5405 97.6304C86.9299 97.6304 87.2493 97.5479 87.499 97.3828C87.7529 97.2178 87.9561 96.9998 88.1084 96.729C88.2607 96.4582 88.3792 96.1641 88.4639 95.8467V94.3169C88.4131 94.0841 88.339 93.8599 88.2417 93.644C88.1486 93.424 88.0259 93.2293 87.8735 93.0601C87.7254 92.8866 87.5413 92.749 87.3213 92.6475C87.1055 92.5459 86.8494 92.4951 86.5532 92.4951C86.2316 92.4951 85.9544 92.5628 85.7217 92.6982C85.4932 92.8294 85.3049 93.0114 85.1567 93.2441C85.0086 93.4727 84.8986 93.7393 84.8267 94.0439C84.759 94.3444 84.7251 94.666 84.7251 95.0088ZM94.0244 98.627C93.5462 98.627 93.1125 98.5465 92.7231 98.3857C92.3381 98.2207 92.0059 97.9901 91.7266 97.6938C91.4515 97.3976 91.2399 97.0464 91.0918 96.6401C90.9437 96.2339 90.8696 95.7896 90.8696 95.3071V95.0405C90.8696 94.4819 90.9521 93.9847 91.1172 93.5488C91.2822 93.1087 91.5065 92.7363 91.79 92.4316C92.0736 92.127 92.3952 91.8963 92.7549 91.7397C93.1146 91.5832 93.487 91.5049 93.8721 91.5049C94.363 91.5049 94.7861 91.5895 95.1416 91.7588C95.5013 91.9281 95.7954 92.165 96.0239 92.4697C96.2524 92.7702 96.4217 93.1257 96.5317 93.5361C96.6418 93.9424 96.6968 94.3867 96.6968 94.8691V95.396H91.5679V94.4375H95.5225V94.3486C95.5055 94.0439 95.4421 93.7477 95.332 93.46C95.2262 93.1722 95.057 92.9352 94.8242 92.749C94.5915 92.5628 94.2741 92.4697 93.8721 92.4697C93.6055 92.4697 93.36 92.5269 93.1357 92.6411C92.9115 92.7511 92.7189 92.9162 92.5581 93.1362C92.3973 93.3563 92.2725 93.625 92.1836 93.9424C92.0947 94.2598 92.0503 94.6258 92.0503 95.0405V95.3071C92.0503 95.633 92.0947 95.9398 92.1836 96.2275C92.2767 96.5111 92.41 96.7607 92.5835 96.9766C92.7612 97.1924 92.9749 97.3617 93.2246 97.4844C93.4785 97.6071 93.7663 97.6685 94.0879 97.6685C94.5026 97.6685 94.8538 97.5838 95.1416 97.4146C95.4294 97.2453 95.6812 97.0189 95.897 96.7354L96.6079 97.3003C96.4598 97.5246 96.2715 97.7383 96.043 97.9414C95.8145 98.1445 95.533 98.3096 95.1987 98.4365C94.8687 98.5635 94.4772 98.627 94.0244 98.627ZM99.3438 88.75V98.5H98.1631V88.75H99.3438ZM102.505 91.6318V98.5H101.324V91.6318H102.505ZM101.235 89.8101C101.235 89.6196 101.292 89.4588 101.407 89.3276C101.525 89.1965 101.699 89.1309 101.927 89.1309C102.152 89.1309 102.323 89.1965 102.441 89.3276C102.564 89.4588 102.625 89.6196 102.625 89.8101C102.625 89.992 102.564 90.1486 102.441 90.2798C102.323 90.4067 102.152 90.4702 101.927 90.4702C101.699 90.4702 101.525 90.4067 101.407 90.2798C101.292 90.1486 101.235 89.992 101.235 89.8101ZM106.479 97.4399L108.357 91.6318H109.557L107.088 98.5H106.301L106.479 97.4399ZM104.911 91.6318L106.847 97.4717L106.98 98.5H106.193L103.705 91.6318H104.911ZM113.448 98.627C112.97 98.627 112.536 98.5465 112.147 98.3857C111.762 98.2207 111.43 97.9901 111.15 97.6938C110.875 97.3976 110.664 97.0464 110.516 96.6401C110.368 96.2339 110.293 95.7896 110.293 95.3071V95.0405C110.293 94.4819 110.376 93.9847 110.541 93.5488C110.706 93.1087 110.93 92.7363 111.214 92.4316C111.497 92.127 111.819 91.8963 112.179 91.7397C112.538 91.5832 112.911 91.5049 113.296 91.5049C113.787 91.5049 114.21 91.5895 114.565 91.7588C114.925 91.9281 115.219 92.165 115.448 92.4697C115.676 92.7702 115.846 93.1257 115.956 93.5361C116.066 93.9424 116.121 94.3867 116.121 94.8691V95.396H110.992V94.4375H114.946V94.3486C114.929 94.0439 114.866 93.7477 114.756 93.46C114.65 93.1722 114.481 92.9352 114.248 92.749C114.015 92.5628 113.698 92.4697 113.296 92.4697C113.029 92.4697 112.784 92.5269 112.56 92.6411C112.335 92.7511 112.143 92.9162 111.982 93.1362C111.821 93.3563 111.696 93.625 111.607 93.9424C111.519 94.2598 111.474 94.6258 111.474 95.0405V95.3071C111.474 95.633 111.519 95.9398 111.607 96.2275C111.701 96.5111 111.834 96.7607 112.007 96.9766C112.185 97.1924 112.399 97.3617 112.648 97.4844C112.902 97.6071 113.19 97.6685 113.512 97.6685C113.926 97.6685 114.278 97.5838 114.565 97.4146C114.853 97.2453 115.105 97.0189 115.321 96.7354L116.032 97.3003C115.884 97.5246 115.695 97.7383 115.467 97.9414C115.238 98.1445 114.957 98.3096 114.623 98.4365C114.292 98.5635 113.901 98.627 113.448 98.627ZM118.666 92.7109V98.5H117.492V91.6318H118.634L118.666 92.7109ZM120.812 91.5938L120.805 92.6855C120.708 92.6644 120.615 92.6517 120.526 92.6475C120.441 92.639 120.344 92.6348 120.234 92.6348C119.963 92.6348 119.724 92.6771 119.517 92.7617C119.309 92.8464 119.134 92.9648 118.99 93.1172C118.846 93.2695 118.732 93.4515 118.647 93.6631C118.567 93.8704 118.514 94.099 118.488 94.3486L118.158 94.5391C118.158 94.1243 118.198 93.735 118.279 93.3711C118.363 93.0072 118.493 92.6855 118.666 92.4062C118.84 92.1227 119.06 91.9027 119.326 91.7461C119.597 91.5853 119.919 91.5049 120.291 91.5049C120.376 91.5049 120.473 91.5155 120.583 91.5366C120.693 91.5535 120.769 91.5726 120.812 91.5938ZM123.941 97.7891L125.852 91.6318H127.108L124.354 99.5601C124.29 99.7293 124.205 99.9113 124.1 100.106C123.998 100.305 123.867 100.493 123.706 100.671C123.545 100.849 123.351 100.993 123.122 101.103C122.898 101.217 122.629 101.274 122.316 101.274C122.223 101.274 122.104 101.261 121.96 101.236C121.817 101.21 121.715 101.189 121.656 101.172L121.649 100.22C121.683 100.224 121.736 100.229 121.808 100.233C121.884 100.241 121.937 100.246 121.967 100.246C122.233 100.246 122.46 100.21 122.646 100.138C122.832 100.07 122.989 99.9536 123.116 99.7886C123.247 99.6278 123.359 99.4056 123.452 99.1221L123.941 97.7891ZM122.538 91.6318L124.322 96.9639L124.626 98.2017L123.782 98.6333L121.256 91.6318H122.538Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M257.278 87.7598V89.6958H256.326V87.7598H257.278ZM257.164 98.1255V99.8203H256.218V98.1255H257.164ZM258.434 96.1196C258.434 95.8657 258.376 95.6372 258.262 95.4341C258.148 95.231 257.96 95.0448 257.697 94.8755C257.435 94.7062 257.084 94.5496 256.644 94.4058C256.11 94.2407 255.649 94.0397 255.26 93.8027C254.875 93.5658 254.576 93.2716 254.365 92.9204C254.157 92.5692 254.054 92.1439 254.054 91.6445C254.054 91.124 254.166 90.6755 254.39 90.2988C254.614 89.9222 254.932 89.6323 255.342 89.4292C255.753 89.2261 256.235 89.1245 256.79 89.1245C257.221 89.1245 257.606 89.1901 257.945 89.3213C258.283 89.4482 258.569 89.6387 258.802 89.8926C259.039 90.1465 259.219 90.4575 259.341 90.8257C259.468 91.1938 259.532 91.6191 259.532 92.1016H258.364C258.364 91.818 258.33 91.5578 258.262 91.3208C258.194 91.0838 258.093 90.8786 257.958 90.7051C257.822 90.5273 257.657 90.3919 257.462 90.2988C257.268 90.2015 257.043 90.1528 256.79 90.1528C256.434 90.1528 256.14 90.2142 255.907 90.3369C255.679 90.4596 255.509 90.6331 255.399 90.8574C255.289 91.0775 255.234 91.3335 255.234 91.6255C255.234 91.8963 255.289 92.1333 255.399 92.3364C255.509 92.5396 255.696 92.7236 255.958 92.8887C256.225 93.0495 256.591 93.2082 257.056 93.3647C257.602 93.5382 258.065 93.7435 258.446 93.9805C258.827 94.2132 259.117 94.501 259.316 94.8438C259.515 95.1823 259.614 95.6034 259.614 96.1069C259.614 96.6528 259.492 97.1141 259.246 97.4907C259.001 97.8631 258.656 98.1466 258.211 98.3413C257.767 98.536 257.247 98.6333 256.65 98.6333C256.29 98.6333 255.935 98.5846 255.583 98.4873C255.232 98.39 254.915 98.2313 254.631 98.0112C254.348 97.7869 254.121 97.4928 253.952 97.1289C253.783 96.7607 253.698 96.3101 253.698 95.7769H254.879C254.879 96.1366 254.93 96.4349 255.031 96.6719C255.137 96.9046 255.277 97.0908 255.45 97.2305C255.624 97.3659 255.814 97.4632 256.021 97.5225C256.233 97.5775 256.443 97.605 256.65 97.605C257.031 97.605 257.352 97.5457 257.615 97.4272C257.881 97.3045 258.084 97.131 258.224 96.9067C258.364 96.6825 258.434 96.4201 258.434 96.1196ZM267.136 97.5352V98.5H261.087V97.6558L264.115 94.2852C264.487 93.8704 264.775 93.5192 264.978 93.2314C265.185 92.9395 265.329 92.6792 265.41 92.4507C265.494 92.2179 265.537 91.981 265.537 91.7397C265.537 91.4351 265.473 91.16 265.346 90.9146C265.223 90.6649 265.042 90.466 264.8 90.3179C264.559 90.1698 264.267 90.0957 263.924 90.0957C263.514 90.0957 263.171 90.1761 262.896 90.3369C262.625 90.4935 262.422 90.7135 262.287 90.9971C262.151 91.2806 262.083 91.6064 262.083 91.9746H260.909C260.909 91.4541 261.023 90.978 261.252 90.5464C261.48 90.1147 261.819 89.772 262.268 89.5181C262.716 89.2599 263.268 89.1309 263.924 89.1309C264.508 89.1309 265.008 89.2345 265.422 89.4419C265.837 89.645 266.154 89.9328 266.375 90.3052C266.599 90.6733 266.711 91.105 266.711 91.6001C266.711 91.8709 266.664 92.146 266.571 92.4253C266.482 92.7004 266.358 92.9754 266.197 93.2505C266.04 93.5256 265.856 93.7964 265.645 94.063C265.437 94.3296 265.215 94.592 264.978 94.8501L262.502 97.5352H267.136ZM269.878 94.1011L268.939 93.8599L269.402 89.2578H274.144V90.3433H270.399L270.12 92.8569C270.289 92.7596 270.503 92.6686 270.761 92.584C271.023 92.4993 271.324 92.457 271.662 92.457C272.09 92.457 272.472 92.5311 272.811 92.6792C273.15 92.8231 273.437 93.0304 273.674 93.3013C273.916 93.5721 274.1 93.8979 274.227 94.2788C274.354 94.6597 274.417 95.085 274.417 95.5547C274.417 95.999 274.356 96.4074 274.233 96.7798C274.114 97.1522 273.935 97.478 273.693 97.7573C273.452 98.0324 273.147 98.2461 272.779 98.3984C272.415 98.5508 271.986 98.627 271.491 98.627C271.118 98.627 270.765 98.5762 270.431 98.4746C270.101 98.3688 269.804 98.2101 269.542 97.9985C269.284 97.7827 269.072 97.5161 268.907 97.1987C268.746 96.8771 268.645 96.5005 268.603 96.0688H269.72C269.771 96.4159 269.872 96.7078 270.024 96.9448C270.177 97.1818 270.376 97.3617 270.621 97.4844C270.871 97.6029 271.161 97.6621 271.491 97.6621C271.77 97.6621 272.018 97.6134 272.233 97.5161C272.449 97.4188 272.631 97.2791 272.779 97.0972C272.927 96.9152 273.04 96.6951 273.116 96.437C273.196 96.1789 273.236 95.889 273.236 95.5674C273.236 95.2754 273.196 95.0046 273.116 94.7549C273.035 94.5052 272.915 94.2873 272.754 94.1011C272.597 93.9149 272.405 93.771 272.176 93.6694C271.948 93.5636 271.685 93.5107 271.389 93.5107C270.996 93.5107 270.697 93.5636 270.494 93.6694C270.295 93.7752 270.09 93.9191 269.878 94.1011Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1466"},(0,h.createElement)("rect",{x:"15",y:"41",width:"268",height:"62",rx:"4",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1466"},(0,h.createElement)("rect",{width:"18",height:"18",fill:"white",transform:"translate(15 62)"})),(0,h.createElement)("clipPath",{id:"clip2_75_1466"},(0,h.createElement)("rect",{width:"18",height:"18",fill:"white",transform:"translate(15 85)"})))),{__:In}=wp.i18n,{AdvancedFields:Tn,FieldSettingsWrapper:On,BlockLabel:Jn,BlockDescription:Rn,BlockAdvancedValue:qn,BlockName:Dn}=JetFBComponents,{useBlockAttributes:zn,useUniqueNameOnDuplicate:Un}=JetFBHooks,{InspectorControls:Gn,useBlockProps:Wn,RichText:Kn}=wp.blockEditor,{CardHeader:$n,CardBody:Yn,PanelBody:Xn}=wp.components,{useEffect:Qn}=wp.element,ea=x(L.Card)({name:"StyledCard",class:"s1ip8zmx",propsAsIs:!0});t(6987);const Ca=JSON.parse('{"apiVersion":3,"name":"jet-forms/hidden-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","hidden"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Hidden Field","icon":"\\n\\n","attributes":{"return_raw":{"type":"boolean","default":false},"value":{"type":"object","default":{}},"render":{"type":"boolean","default":true},"field_value":{"type":"string","default":"post_id"},"hidden_value_field":{"type":"string","default":""},"query_var_key":{"type":"string","default":""},"date_format":{"type":"string","default":""},"hidden_value":{"type":"string","default":""},"name":{"type":"string","default":"hidden_field_name"},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false},"random":{"type":"object","default":{"length":10,"upper":true,"lower":true,"numbers":true,"symbols":true}}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:ta}=wp.i18n,{RangeControl:la,CheckboxControl:ra}=wp.components,{ToggleControl:na}=wp.components,{__:aa}=wp.i18n,{addFilter:ia}=wp.hooks;ia("jfb.hidden-field.field-value.controls","jet-form-builder/random-string-controls",(function(e){return C=>{var t;const{attributes:l,setAttributes:r}=C;if("random_string"!==l.field_value)return(0,h.createElement)(e,{...C});const n=Object.values({...l.random,length:void 0}).filter(Boolean).length,a=e=>{const[C]=Object.keys(e);l.random[C]&&1===n||r({random:{...l.random,...e}})};return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(la,{label:ta("String length","jet-form-builder"),value:null!==(t=l.random?.length)&&void 0!==t?t:10,onChange:e=>r({random:{...l.random,length:e}}),allowReset:!0,resetFallbackValue:10,min:1,max:50}),(0,h.createElement)(ra,{label:ta("Uppercase","jet-form-builder"),checked:l.random.upper,onChange:e=>a({upper:e})}),(0,h.createElement)(ra,{label:ta("Lowercase","jet-form-builder"),checked:l.random.lower,onChange:e=>a({lower:e})}),(0,h.createElement)(ra,{label:ta("Numbers","jet-form-builder"),checked:l.random.numbers,onChange:e=>a({numbers:e})}),(0,h.createElement)(ra,{label:ta("Symbols","jet-form-builder"),checked:l.random.symbols,onChange:e=>a({symbols:e})}))}})),ia("jfb.hidden-field.header.controls","jet-form-builder/disable-raw-value-control",(function(e){return C=>{const{attributes:t,setAttributes:l}=C;return"random_string"!==t.field_value?(0,h.createElement)(e,{...C}):(0,h.createElement)(na,{label:aa("Render in HTML","jet-form-builder"),checked:t.render,help:aa("Enable this option if you use this field in Calculated Field, Conditional Block, Advanced Validation, Global Macros, or Dynamic Value.","jet-form-builder"),onChange:e=>l({render:Boolean(e)})})}}));const{__:oa}=wp.i18n,{createBlock:sa}=wp.blocks,{name:ca,icon:da=""}=Ca,ma={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:da}}),description:oa("Insert Hidden field invisible on the frontend with the assigned value to use it in calculations or for other purposes.","jet-form-builder"),edit:function(e){const{attributes:C,setAttributes:t,isSelected:l,editProps:{uniqKey:r}}=e,n=Wn();Un();const[,a]=zn();if(Qn((()=>{"referer_url"===C.field_value&&t({render:!0})}),[C.field_value]),C.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Nn);const{label:i="Please set `Field Value`"}=JetFormHiddenField.sources.find((e=>e.value===C.field_value))||{label:"--",value:""},o=[i];switch(C.field_value){case"post_meta":case"user_meta":o.push(C.hidden_value_field);break;case"query_var":o.push(C.query_var_key);break;case"current_date":o.push(C.date_format);break;case"manual_input":o.push(C.hidden_value)}const s=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return[l&&(0,h.createElement)(Gn,{key:r("InspectorControls")},(0,h.createElement)(Xn,{title:In("General","jet-form-builder")},(0,h.createElement)(Jn,null),(0,h.createElement)(Dn,null),(0,h.createElement)(Rn,null)),(0,h.createElement)(Xn,{title:In("Value","jet-form-builder")},(0,h.createElement)(qn,null)),(0,h.createElement)(On,{...e},(0,h.createElement)(Sn,null)),(0,h.createElement)(Tn,null)),(0,h.createElement)("div",{...n,key:r("viewBlock")},(0,h.createElement)(ea,{elevation:2,className:s?"buddypress-active":""},(0,h.createElement)($n,null,(0,h.createElement)(Kn,{placeholder:"hidden_field_name...",allowedFormats:[],value:C.name,onChange:e=>a({name:e})})),(0,h.createElement)(Yn,null,l&&(0,h.createElement)(Sn,null),!l&&o.join(": "))))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>sa("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>((e.default?.length||Object.keys(e.value)?.length)&&(e.field_value=""),sa(ca,{...e})),priority:0}]}},{Tools:ua}=JetFBActions,pa=ua.withPlaceholder([{value:"all",label:"Any registered user"},{value:"upload_files",label:"Any user, who allowed to upload files"},{value:"edit_posts",label:"Any user, who allowed to edit posts"},{value:"any_user",label:"Any user ( incl. Guest )"}]),fa=ua.withPlaceholder([{value:"id",label:"Attachment ID"},{value:"url",label:"Attachment URL"},{value:"both",label:"Array with attachment ID and URL"},{value:"ids",label:"Array of attachment IDs"}]),Va=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"15.5",y:"47.5",width:"156",height:"29",rx:"3.5",fill:"#E2E8F0"}),(0,h.createElement)("path",{d:"M62.6523 63.561H63.8711C63.8076 64.145 63.6405 64.6676 63.3696 65.1289C63.0988 65.5902 62.7158 65.9562 62.2207 66.2271C61.7256 66.4937 61.1077 66.627 60.3672 66.627C59.8255 66.627 59.3325 66.5254 58.8882 66.3223C58.4481 66.1191 58.0693 65.8314 57.752 65.459C57.4346 65.0824 57.1891 64.6317 57.0156 64.1069C56.8464 63.578 56.7617 62.9897 56.7617 62.3423V61.4219C56.7617 60.7744 56.8464 60.1883 57.0156 59.6636C57.1891 59.1346 57.4367 58.6818 57.7583 58.3052C58.0841 57.9285 58.4756 57.6387 58.9326 57.4355C59.3896 57.2324 59.9038 57.1309 60.4751 57.1309C61.1733 57.1309 61.7637 57.262 62.2461 57.5244C62.7285 57.7868 63.103 58.1507 63.3696 58.6162C63.6405 59.0775 63.8076 59.6128 63.8711 60.2222H62.6523C62.5931 59.7905 62.4831 59.4202 62.3223 59.1113C62.1615 58.7982 61.9329 58.557 61.6367 58.3877C61.3405 58.2184 60.9533 58.1338 60.4751 58.1338C60.0646 58.1338 59.7028 58.2121 59.3896 58.3687C59.0807 58.5252 58.8205 58.7474 58.6089 59.0352C58.4015 59.3229 58.245 59.6678 58.1392 60.0698C58.0334 60.4718 57.9805 60.9183 57.9805 61.4092V62.3423C57.9805 62.7951 58.027 63.2204 58.1201 63.6182C58.2174 64.016 58.3634 64.3651 58.5581 64.6655C58.7528 64.966 59.0003 65.203 59.3008 65.3765C59.6012 65.5457 59.9567 65.6304 60.3672 65.6304C60.8877 65.6304 61.3024 65.5479 61.6113 65.3828C61.9202 65.2178 62.153 64.9808 62.3096 64.6719C62.4704 64.363 62.5846 63.9927 62.6523 63.561ZM66.5371 56.75V66.5H65.3628V56.75H66.5371ZM66.2578 62.8057L65.769 62.7866C65.7733 62.3169 65.8431 61.8831 65.9785 61.4854C66.1139 61.0833 66.3044 60.7342 66.5498 60.438C66.7952 60.1418 67.0872 59.9132 67.4258 59.7524C67.7686 59.5874 68.1473 59.5049 68.562 59.5049C68.9006 59.5049 69.2052 59.5514 69.4761 59.6445C69.7469 59.7334 69.9775 59.8773 70.168 60.0762C70.3626 60.2751 70.5107 60.5332 70.6123 60.8506C70.7139 61.1637 70.7646 61.5467 70.7646 61.9995V66.5H69.584V61.9868C69.584 61.6271 69.5311 61.3394 69.4253 61.1235C69.3195 60.9035 69.165 60.7448 68.9619 60.6475C68.7588 60.5459 68.5091 60.4951 68.2129 60.4951C67.9209 60.4951 67.6543 60.5565 67.4131 60.6792C67.1761 60.8019 66.9709 60.9712 66.7974 61.187C66.6281 61.4028 66.4948 61.6504 66.3975 61.9297C66.3044 62.2048 66.2578 62.4967 66.2578 62.8057ZM72.2119 63.1421V62.9961C72.2119 62.501 72.2839 62.0418 72.4277 61.6187C72.5716 61.1912 72.779 60.821 73.0498 60.5078C73.3206 60.1904 73.6486 59.945 74.0337 59.7715C74.4188 59.5938 74.8504 59.5049 75.3286 59.5049C75.811 59.5049 76.2448 59.5938 76.6299 59.7715C77.0192 59.945 77.3493 60.1904 77.6201 60.5078C77.8952 60.821 78.1047 61.1912 78.2485 61.6187C78.3924 62.0418 78.4644 62.501 78.4644 62.9961V63.1421C78.4644 63.6372 78.3924 64.0964 78.2485 64.5195C78.1047 64.9427 77.8952 65.313 77.6201 65.6304C77.3493 65.9435 77.0213 66.189 76.6362 66.3667C76.2554 66.5402 75.8237 66.627 75.3413 66.627C74.8589 66.627 74.4251 66.5402 74.04 66.3667C73.6549 66.189 73.3249 65.9435 73.0498 65.6304C72.779 65.313 72.5716 64.9427 72.4277 64.5195C72.2839 64.0964 72.2119 63.6372 72.2119 63.1421ZM73.3862 62.9961V63.1421C73.3862 63.4849 73.4264 63.8086 73.5068 64.1133C73.5872 64.4137 73.7078 64.6803 73.8687 64.9131C74.0337 65.1458 74.2389 65.3299 74.4844 65.4653C74.7298 65.5965 75.0155 65.6621 75.3413 65.6621C75.6629 65.6621 75.9443 65.5965 76.1855 65.4653C76.431 65.3299 76.6341 65.1458 76.7949 64.9131C76.9557 64.6803 77.0763 64.4137 77.1567 64.1133C77.2414 63.8086 77.2837 63.4849 77.2837 63.1421V62.9961C77.2837 62.6576 77.2414 62.3381 77.1567 62.0376C77.0763 61.7329 76.9536 61.4642 76.7886 61.2314C76.6278 60.9945 76.4246 60.8083 76.1792 60.6729C75.938 60.5374 75.6545 60.4697 75.3286 60.4697C75.007 60.4697 74.7235 60.5374 74.478 60.6729C74.2368 60.8083 74.0337 60.9945 73.8687 61.2314C73.7078 61.4642 73.5872 61.7329 73.5068 62.0376C73.4264 62.3381 73.3862 62.6576 73.3862 62.9961ZM79.626 63.1421V62.9961C79.626 62.501 79.6979 62.0418 79.8418 61.6187C79.9857 61.1912 80.193 60.821 80.4639 60.5078C80.7347 60.1904 81.0627 59.945 81.4478 59.7715C81.8328 59.5938 82.2645 59.5049 82.7427 59.5049C83.2251 59.5049 83.6589 59.5938 84.0439 59.7715C84.4333 59.945 84.7633 60.1904 85.0342 60.5078C85.3092 60.821 85.5187 61.1912 85.6626 61.6187C85.8065 62.0418 85.8784 62.501 85.8784 62.9961V63.1421C85.8784 63.6372 85.8065 64.0964 85.6626 64.5195C85.5187 64.9427 85.3092 65.313 85.0342 65.6304C84.7633 65.9435 84.4354 66.189 84.0503 66.3667C83.6694 66.5402 83.2378 66.627 82.7554 66.627C82.2729 66.627 81.8392 66.5402 81.4541 66.3667C81.069 66.189 80.7389 65.9435 80.4639 65.6304C80.193 65.313 79.9857 64.9427 79.8418 64.5195C79.6979 64.0964 79.626 63.6372 79.626 63.1421ZM80.8003 62.9961V63.1421C80.8003 63.4849 80.8405 63.8086 80.9209 64.1133C81.0013 64.4137 81.1219 64.6803 81.2827 64.9131C81.4478 65.1458 81.653 65.3299 81.8984 65.4653C82.1439 65.5965 82.4295 65.6621 82.7554 65.6621C83.077 65.6621 83.3584 65.5965 83.5996 65.4653C83.8451 65.3299 84.0482 65.1458 84.209 64.9131C84.3698 64.6803 84.4904 64.4137 84.5708 64.1133C84.6554 63.8086 84.6978 63.4849 84.6978 63.1421V62.9961C84.6978 62.6576 84.6554 62.3381 84.5708 62.0376C84.4904 61.7329 84.3677 61.4642 84.2026 61.2314C84.0418 60.9945 83.8387 60.8083 83.5933 60.6729C83.3521 60.5374 83.0685 60.4697 82.7427 60.4697C82.4211 60.4697 82.1375 60.5374 81.8921 60.6729C81.6509 60.8083 81.4478 60.9945 81.2827 61.2314C81.1219 61.4642 81.0013 61.7329 80.9209 62.0376C80.8405 62.3381 80.8003 62.6576 80.8003 62.9961ZM91.3501 64.6782C91.3501 64.509 91.312 64.3524 91.2358 64.2085C91.1639 64.0604 91.0137 63.9271 90.7852 63.8086C90.5609 63.6859 90.2223 63.5801 89.7695 63.4912C89.3887 63.4108 89.0438 63.3156 88.7349 63.2056C88.4302 63.0955 88.1699 62.9622 87.9541 62.8057C87.7425 62.6491 87.5796 62.465 87.4653 62.2534C87.3511 62.0418 87.2939 61.7943 87.2939 61.5107C87.2939 61.2399 87.3532 60.9839 87.4717 60.7427C87.5944 60.5015 87.7658 60.2878 87.9858 60.1016C88.2101 59.9154 88.4788 59.7694 88.792 59.6636C89.1051 59.5578 89.4543 59.5049 89.8394 59.5049C90.3895 59.5049 90.8592 59.6022 91.2485 59.7969C91.6379 59.9915 91.9362 60.2518 92.1436 60.5776C92.3509 60.8993 92.4546 61.2568 92.4546 61.6504H91.2803C91.2803 61.46 91.2231 61.2759 91.1089 61.0981C90.9989 60.9162 90.8359 60.766 90.6201 60.6475C90.4085 60.529 90.1483 60.4697 89.8394 60.4697C89.5135 60.4697 89.249 60.5205 89.0459 60.6221C88.847 60.7194 88.701 60.8442 88.6079 60.9966C88.519 61.1489 88.4746 61.3097 88.4746 61.479C88.4746 61.606 88.4958 61.7202 88.5381 61.8218C88.5846 61.9191 88.665 62.0101 88.7793 62.0947C88.8936 62.1751 89.0544 62.2513 89.2617 62.3232C89.4691 62.3952 89.7336 62.4671 90.0552 62.5391C90.618 62.666 91.0814 62.8184 91.4453 62.9961C91.8092 63.1738 92.0801 63.3918 92.2578 63.6499C92.4355 63.908 92.5244 64.2212 92.5244 64.5894C92.5244 64.8898 92.4609 65.1649 92.334 65.4146C92.2113 65.6642 92.0314 65.88 91.7944 66.062C91.5617 66.2397 91.2824 66.3794 90.9565 66.481C90.6349 66.5783 90.2731 66.627 89.8711 66.627C89.266 66.627 88.7539 66.519 88.335 66.3032C87.916 66.0874 87.5986 65.8081 87.3828 65.4653C87.167 65.1226 87.0591 64.7607 87.0591 64.3799H88.2397C88.2567 64.7015 88.3498 64.9575 88.519 65.1479C88.6883 65.3341 88.8957 65.4674 89.1411 65.5479C89.3866 65.624 89.6299 65.6621 89.8711 65.6621C90.1927 65.6621 90.4614 65.6198 90.6772 65.5352C90.8973 65.4505 91.0645 65.3341 91.1787 65.186C91.293 65.0379 91.3501 64.8687 91.3501 64.6782ZM96.917 66.627C96.4388 66.627 96.005 66.5465 95.6157 66.3857C95.2306 66.2207 94.8984 65.9901 94.6191 65.6938C94.3441 65.3976 94.1325 65.0464 93.9844 64.6401C93.8363 64.2339 93.7622 63.7896 93.7622 63.3071V63.0405C93.7622 62.4819 93.8447 61.9847 94.0098 61.5488C94.1748 61.1087 94.3991 60.7363 94.6826 60.4316C94.9661 60.127 95.2878 59.8963 95.6475 59.7397C96.0072 59.5832 96.3796 59.5049 96.7646 59.5049C97.2555 59.5049 97.6787 59.5895 98.0342 59.7588C98.3939 59.9281 98.688 60.165 98.9165 60.4697C99.145 60.7702 99.3143 61.1257 99.4243 61.5361C99.5343 61.9424 99.5894 62.3867 99.5894 62.8691V63.396H94.4604V62.4375H98.415V62.3486C98.3981 62.0439 98.3346 61.7477 98.2246 61.46C98.1188 61.1722 97.9495 60.9352 97.7168 60.749C97.484 60.5628 97.1667 60.4697 96.7646 60.4697C96.498 60.4697 96.2526 60.5269 96.0283 60.6411C95.804 60.7511 95.6115 60.9162 95.4507 61.1362C95.2899 61.3563 95.165 61.625 95.0762 61.9424C94.9873 62.2598 94.9429 62.6258 94.9429 63.0405V63.3071C94.9429 63.633 94.9873 63.9398 95.0762 64.2275C95.1693 64.5111 95.3026 64.7607 95.4761 64.9766C95.6538 65.1924 95.8675 65.3617 96.1172 65.4844C96.3711 65.6071 96.6589 65.6685 96.9805 65.6685C97.3952 65.6685 97.7464 65.5838 98.0342 65.4146C98.3219 65.2453 98.5737 65.0189 98.7896 64.7354L99.5005 65.3003C99.3524 65.5246 99.1641 65.7383 98.9355 65.9414C98.707 66.1445 98.4256 66.3096 98.0913 66.4365C97.7612 66.5635 97.3698 66.627 96.917 66.627ZM105.588 57.2578V66.5H104.363V57.2578H105.588ZM109.46 61.4155V62.4185H105.321V61.4155H109.46ZM110.088 57.2578V58.2607H105.321V57.2578H110.088ZM112.646 59.6318V66.5H111.466V59.6318H112.646ZM111.377 57.8101C111.377 57.6196 111.434 57.4588 111.548 57.3276C111.667 57.1965 111.84 57.1309 112.069 57.1309C112.293 57.1309 112.465 57.1965 112.583 57.3276C112.706 57.4588 112.767 57.6196 112.767 57.8101C112.767 57.992 112.706 58.1486 112.583 58.2798C112.465 58.4067 112.293 58.4702 112.069 58.4702C111.84 58.4702 111.667 58.4067 111.548 58.2798C111.434 58.1486 111.377 57.992 111.377 57.8101ZM115.808 56.75V66.5H114.627V56.75H115.808ZM120.543 66.627C120.065 66.627 119.631 66.5465 119.242 66.3857C118.857 66.2207 118.524 65.9901 118.245 65.6938C117.97 65.3976 117.758 65.0464 117.61 64.6401C117.462 64.2339 117.388 63.7896 117.388 63.3071V63.0405C117.388 62.4819 117.471 61.9847 117.636 61.5488C117.801 61.1087 118.025 60.7363 118.309 60.4316C118.592 60.127 118.914 59.8963 119.273 59.7397C119.633 59.5832 120.006 59.5049 120.391 59.5049C120.882 59.5049 121.305 59.5895 121.66 59.7588C122.02 59.9281 122.314 60.165 122.542 60.4697C122.771 60.7702 122.94 61.1257 123.05 61.5361C123.16 61.9424 123.215 62.3867 123.215 62.8691V63.396H118.086V62.4375H122.041V62.3486C122.024 62.0439 121.961 61.7477 121.851 61.46C121.745 61.1722 121.576 60.9352 121.343 60.749C121.11 60.5628 120.793 60.4697 120.391 60.4697C120.124 60.4697 119.879 60.5269 119.654 60.6411C119.43 60.7511 119.237 60.9162 119.077 61.1362C118.916 61.3563 118.791 61.625 118.702 61.9424C118.613 62.2598 118.569 62.6258 118.569 63.0405V63.3071C118.569 63.633 118.613 63.9398 118.702 64.2275C118.795 64.5111 118.929 64.7607 119.102 64.9766C119.28 65.1924 119.493 65.3617 119.743 65.4844C119.997 65.6071 120.285 65.6685 120.606 65.6685C121.021 65.6685 121.372 65.5838 121.66 65.4146C121.948 65.2453 122.2 65.0189 122.416 64.7354L123.126 65.3003C122.978 65.5246 122.79 65.7383 122.562 65.9414C122.333 66.1445 122.052 66.3096 121.717 66.4365C121.387 66.5635 120.996 66.627 120.543 66.627ZM128.585 64.6782C128.585 64.509 128.547 64.3524 128.471 64.2085C128.399 64.0604 128.249 63.9271 128.021 63.8086C127.796 63.6859 127.458 63.5801 127.005 63.4912C126.624 63.4108 126.279 63.3156 125.97 63.2056C125.666 63.0955 125.405 62.9622 125.189 62.8057C124.978 62.6491 124.815 62.465 124.701 62.2534C124.586 62.0418 124.529 61.7943 124.529 61.5107C124.529 61.2399 124.589 60.9839 124.707 60.7427C124.83 60.5015 125.001 60.2878 125.221 60.1016C125.445 59.9154 125.714 59.7694 126.027 59.6636C126.34 59.5578 126.69 59.5049 127.075 59.5049C127.625 59.5049 128.095 59.6022 128.484 59.7969C128.873 59.9915 129.172 60.2518 129.379 60.5776C129.586 60.8993 129.69 61.2568 129.69 61.6504H128.516C128.516 61.46 128.458 61.2759 128.344 61.0981C128.234 60.9162 128.071 60.766 127.855 60.6475C127.644 60.529 127.384 60.4697 127.075 60.4697C126.749 60.4697 126.484 60.5205 126.281 60.6221C126.082 60.7194 125.936 60.8442 125.843 60.9966C125.754 61.1489 125.71 61.3097 125.71 61.479C125.71 61.606 125.731 61.7202 125.773 61.8218C125.82 61.9191 125.9 62.0101 126.015 62.0947C126.129 62.1751 126.29 62.2513 126.497 62.3232C126.704 62.3952 126.969 62.4671 127.291 62.5391C127.853 62.666 128.317 62.8184 128.681 62.9961C129.045 63.1738 129.315 63.3918 129.493 63.6499C129.671 63.908 129.76 64.2212 129.76 64.5894C129.76 64.8898 129.696 65.1649 129.569 65.4146C129.447 65.6642 129.267 65.88 129.03 66.062C128.797 66.2397 128.518 66.3794 128.192 66.481C127.87 66.5783 127.508 66.627 127.106 66.627C126.501 66.627 125.989 66.519 125.57 66.3032C125.151 66.0874 124.834 65.8081 124.618 65.4653C124.402 65.1226 124.294 64.7607 124.294 64.3799H125.475C125.492 64.7015 125.585 64.9575 125.754 65.1479C125.924 65.3341 126.131 65.4674 126.376 65.5479C126.622 65.624 126.865 65.6621 127.106 65.6621C127.428 65.6621 127.697 65.6198 127.913 65.5352C128.133 65.4505 128.3 65.3341 128.414 65.186C128.528 65.0379 128.585 64.8687 128.585 64.6782Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"15.5",y:"47.5",width:"156",height:"29",rx:"3.5",stroke:"#0F172A"}),(0,h.createElement)("path",{d:"M188.182 57.2578V66.5H186.951L182.298 59.3716V66.5H181.073V57.2578H182.298L186.97 64.4053V57.2578H188.182ZM189.864 63.1421V62.9961C189.864 62.501 189.936 62.0418 190.08 61.6187C190.224 61.1912 190.431 60.821 190.702 60.5078C190.973 60.1904 191.301 59.945 191.686 59.7715C192.071 59.5938 192.503 59.5049 192.981 59.5049C193.463 59.5049 193.897 59.5938 194.282 59.7715C194.672 59.945 195.002 60.1904 195.272 60.5078C195.548 60.821 195.757 61.1912 195.901 61.6187C196.045 62.0418 196.117 62.501 196.117 62.9961V63.1421C196.117 63.6372 196.045 64.0964 195.901 64.5195C195.757 64.9427 195.548 65.313 195.272 65.6304C195.002 65.9435 194.674 66.189 194.289 66.3667C193.908 66.5402 193.476 66.627 192.994 66.627C192.511 66.627 192.077 66.5402 191.692 66.3667C191.307 66.189 190.977 65.9435 190.702 65.6304C190.431 65.313 190.224 64.9427 190.08 64.5195C189.936 64.0964 189.864 63.6372 189.864 63.1421ZM191.039 62.9961V63.1421C191.039 63.4849 191.079 63.8086 191.159 64.1133C191.24 64.4137 191.36 64.6803 191.521 64.9131C191.686 65.1458 191.891 65.3299 192.137 65.4653C192.382 65.5965 192.668 65.6621 192.994 65.6621C193.315 65.6621 193.597 65.5965 193.838 65.4653C194.083 65.3299 194.286 65.1458 194.447 64.9131C194.608 64.6803 194.729 64.4137 194.809 64.1133C194.894 63.8086 194.936 63.4849 194.936 63.1421V62.9961C194.936 62.6576 194.894 62.3381 194.809 62.0376C194.729 61.7329 194.606 61.4642 194.441 61.2314C194.28 60.9945 194.077 60.8083 193.832 60.6729C193.59 60.5374 193.307 60.4697 192.981 60.4697C192.659 60.4697 192.376 60.5374 192.13 60.6729C191.889 60.8083 191.686 60.9945 191.521 61.2314C191.36 61.4642 191.24 61.7329 191.159 62.0376C191.079 62.3381 191.039 62.6576 191.039 62.9961ZM202.382 66.5H201.208V59.0352C201.208 58.5146 201.309 58.0745 201.512 57.7148C201.715 57.3551 202.005 57.0822 202.382 56.896C202.758 56.7098 203.205 56.6167 203.721 56.6167C204.026 56.6167 204.324 56.6548 204.616 56.731C204.908 56.8029 205.209 56.8939 205.518 57.0039L205.321 57.9941C205.126 57.918 204.9 57.846 204.642 57.7783C204.388 57.7064 204.108 57.6704 203.804 57.6704C203.3 57.6704 202.936 57.7847 202.712 58.0132C202.492 58.2375 202.382 58.5781 202.382 59.0352V66.5ZM203.785 59.6318V60.5332H200.122V59.6318H203.785ZM206.095 59.6318V66.5H204.921V59.6318H206.095ZM209.301 56.75V66.5H208.12V56.75H209.301ZM214.036 66.627C213.558 66.627 213.124 66.5465 212.735 66.3857C212.35 66.2207 212.018 65.9901 211.738 65.6938C211.463 65.3976 211.252 65.0464 211.104 64.6401C210.955 64.2339 210.881 63.7896 210.881 63.3071V63.0405C210.881 62.4819 210.964 61.9847 211.129 61.5488C211.294 61.1087 211.518 60.7363 211.802 60.4316C212.085 60.127 212.407 59.8963 212.767 59.7397C213.126 59.5832 213.499 59.5049 213.884 59.5049C214.375 59.5049 214.798 59.5895 215.153 59.7588C215.513 59.9281 215.807 60.165 216.036 60.4697C216.264 60.7702 216.433 61.1257 216.543 61.5361C216.653 61.9424 216.708 62.3867 216.708 62.8691V63.396H211.58V62.4375H215.534V62.3486C215.517 62.0439 215.454 61.7477 215.344 61.46C215.238 61.1722 215.069 60.9352 214.836 60.749C214.603 60.5628 214.286 60.4697 213.884 60.4697C213.617 60.4697 213.372 60.5269 213.147 60.6411C212.923 60.7511 212.731 60.9162 212.57 61.1362C212.409 61.3563 212.284 61.625 212.195 61.9424C212.106 62.2598 212.062 62.6258 212.062 63.0405V63.3071C212.062 63.633 212.106 63.9398 212.195 64.2275C212.288 64.5111 212.422 64.7607 212.595 64.9766C212.773 65.1924 212.987 65.3617 213.236 65.4844C213.49 65.6071 213.778 65.6685 214.1 65.6685C214.514 65.6685 214.866 65.5838 215.153 65.4146C215.441 65.2453 215.693 65.0189 215.909 64.7354L216.62 65.3003C216.472 65.5246 216.283 65.7383 216.055 65.9414C215.826 66.1445 215.545 66.3096 215.21 66.4365C214.88 66.5635 214.489 66.627 214.036 66.627ZM224.053 65.6621C224.332 65.6621 224.59 65.605 224.827 65.4907C225.064 65.3765 225.259 65.2199 225.411 65.021C225.563 64.8179 225.65 64.5872 225.671 64.3291H226.789C226.767 64.7354 226.63 65.1141 226.376 65.4653C226.126 65.8123 225.798 66.0938 225.392 66.3096C224.986 66.5212 224.539 66.627 224.053 66.627C223.536 66.627 223.086 66.536 222.701 66.354C222.32 66.172 222.002 65.9224 221.749 65.605C221.499 65.2876 221.311 64.9237 221.184 64.5132C221.061 64.0985 221 63.6605 221 63.1992V62.9326C221 62.4714 221.061 62.0355 221.184 61.625C221.311 61.2103 221.499 60.8442 221.749 60.5269C222.002 60.2095 222.32 59.9598 222.701 59.7778C223.086 59.5959 223.536 59.5049 224.053 59.5049C224.59 59.5049 225.06 59.6149 225.462 59.835C225.864 60.0508 226.179 60.347 226.408 60.7236C226.64 61.096 226.767 61.5192 226.789 61.9932H225.671C225.65 61.7096 225.57 61.4536 225.43 61.2251C225.295 60.9966 225.109 60.8146 224.872 60.6792C224.639 60.5396 224.366 60.4697 224.053 60.4697C223.693 60.4697 223.39 60.5417 223.145 60.6855C222.904 60.8252 222.711 61.0156 222.567 61.2568C222.428 61.4938 222.326 61.7583 222.263 62.0503C222.203 62.3381 222.174 62.6322 222.174 62.9326V63.1992C222.174 63.4997 222.203 63.7959 222.263 64.0879C222.322 64.3799 222.421 64.6444 222.561 64.8813C222.705 65.1183 222.897 65.3088 223.139 65.4526C223.384 65.5923 223.689 65.6621 224.053 65.6621ZM229.283 56.75V66.5H228.109V56.75H229.283ZM229.004 62.8057L228.515 62.7866C228.519 62.3169 228.589 61.8831 228.725 61.4854C228.86 61.0833 229.05 60.7342 229.296 60.438C229.541 60.1418 229.833 59.9132 230.172 59.7524C230.515 59.5874 230.893 59.5049 231.308 59.5049C231.647 59.5049 231.951 59.5514 232.222 59.6445C232.493 59.7334 232.724 59.8773 232.914 60.0762C233.109 60.2751 233.257 60.5332 233.358 60.8506C233.46 61.1637 233.511 61.5467 233.511 61.9995V66.5H232.33V61.9868C232.33 61.6271 232.277 61.3394 232.171 61.1235C232.066 60.9035 231.911 60.7448 231.708 60.6475C231.505 60.5459 231.255 60.4951 230.959 60.4951C230.667 60.4951 230.4 60.5565 230.159 60.6792C229.922 60.8019 229.717 60.9712 229.543 61.187C229.374 61.4028 229.241 61.6504 229.144 61.9297C229.05 62.2048 229.004 62.4967 229.004 62.8057ZM234.958 63.1421V62.9961C234.958 62.501 235.03 62.0418 235.174 61.6187C235.318 61.1912 235.525 60.821 235.796 60.5078C236.067 60.1904 236.395 59.945 236.78 59.7715C237.165 59.5938 237.597 59.5049 238.075 59.5049C238.557 59.5049 238.991 59.5938 239.376 59.7715C239.765 59.945 240.095 60.1904 240.366 60.5078C240.641 60.821 240.851 61.1912 240.995 61.6187C241.139 62.0418 241.21 62.501 241.21 62.9961V63.1421C241.21 63.6372 241.139 64.0964 240.995 64.5195C240.851 64.9427 240.641 65.313 240.366 65.6304C240.095 65.9435 239.767 66.189 239.382 66.3667C239.001 66.5402 238.57 66.627 238.087 66.627C237.605 66.627 237.171 66.5402 236.786 66.3667C236.401 66.189 236.071 65.9435 235.796 65.6304C235.525 65.313 235.318 64.9427 235.174 64.5195C235.03 64.0964 234.958 63.6372 234.958 63.1421ZM236.132 62.9961V63.1421C236.132 63.4849 236.173 63.8086 236.253 64.1133C236.333 64.4137 236.454 64.6803 236.615 64.9131C236.78 65.1458 236.985 65.3299 237.23 65.4653C237.476 65.5965 237.762 65.6621 238.087 65.6621C238.409 65.6621 238.69 65.5965 238.932 65.4653C239.177 65.3299 239.38 65.1458 239.541 64.9131C239.702 64.6803 239.822 64.4137 239.903 64.1133C239.987 63.8086 240.03 63.4849 240.03 63.1421V62.9961C240.03 62.6576 239.987 62.3381 239.903 62.0376C239.822 61.7329 239.7 61.4642 239.535 61.2314C239.374 60.9945 239.171 60.8083 238.925 60.6729C238.684 60.5374 238.401 60.4697 238.075 60.4697C237.753 60.4697 237.47 60.5374 237.224 60.6729C236.983 60.8083 236.78 60.9945 236.615 61.2314C236.454 61.4642 236.333 61.7329 236.253 62.0376C236.173 62.3381 236.132 62.6576 236.132 62.9961ZM246.682 64.6782C246.682 64.509 246.644 64.3524 246.568 64.2085C246.496 64.0604 246.346 63.9271 246.117 63.8086C245.893 63.6859 245.554 63.5801 245.102 63.4912C244.721 63.4108 244.376 63.3156 244.067 63.2056C243.762 63.0955 243.502 62.9622 243.286 62.8057C243.075 62.6491 242.912 62.465 242.797 62.2534C242.683 62.0418 242.626 61.7943 242.626 61.5107C242.626 61.2399 242.685 60.9839 242.804 60.7427C242.926 60.5015 243.098 60.2878 243.318 60.1016C243.542 59.9154 243.811 59.7694 244.124 59.6636C244.437 59.5578 244.786 59.5049 245.171 59.5049C245.722 59.5049 246.191 59.6022 246.581 59.7969C246.97 59.9915 247.268 60.2518 247.476 60.5776C247.683 60.8993 247.787 61.2568 247.787 61.6504H246.612C246.612 61.46 246.555 61.2759 246.441 61.0981C246.331 60.9162 246.168 60.766 245.952 60.6475C245.741 60.529 245.48 60.4697 245.171 60.4697C244.846 60.4697 244.581 60.5205 244.378 60.6221C244.179 60.7194 244.033 60.8442 243.94 60.9966C243.851 61.1489 243.807 61.3097 243.807 61.479C243.807 61.606 243.828 61.7202 243.87 61.8218C243.917 61.9191 243.997 62.0101 244.111 62.0947C244.226 62.1751 244.386 62.2513 244.594 62.3232C244.801 62.3952 245.066 62.4671 245.387 62.5391C245.95 62.666 246.413 62.8184 246.777 62.9961C247.141 63.1738 247.412 63.3918 247.59 63.6499C247.768 63.908 247.856 64.2212 247.856 64.5894C247.856 64.8898 247.793 65.1649 247.666 65.4146C247.543 65.6642 247.363 65.88 247.126 66.062C246.894 66.2397 246.614 66.3794 246.289 66.481C245.967 66.5783 245.605 66.627 245.203 66.627C244.598 66.627 244.086 66.519 243.667 66.3032C243.248 66.0874 242.931 65.8081 242.715 65.4653C242.499 65.1226 242.391 64.7607 242.391 64.3799H243.572C243.589 64.7015 243.682 64.9575 243.851 65.1479C244.02 65.3341 244.228 65.4674 244.473 65.5479C244.719 65.624 244.962 65.6621 245.203 65.6621C245.525 65.6621 245.793 65.6198 246.009 65.5352C246.229 65.4505 246.396 65.3341 246.511 65.186C246.625 65.0379 246.682 64.8687 246.682 64.6782ZM252.249 66.627C251.771 66.627 251.337 66.5465 250.948 66.3857C250.563 66.2207 250.23 65.9901 249.951 65.6938C249.676 65.3976 249.465 65.0464 249.316 64.6401C249.168 64.2339 249.094 63.7896 249.094 63.3071V63.0405C249.094 62.4819 249.177 61.9847 249.342 61.5488C249.507 61.1087 249.731 60.7363 250.015 60.4316C250.298 60.127 250.62 59.8963 250.979 59.7397C251.339 59.5832 251.712 59.5049 252.097 59.5049C252.588 59.5049 253.011 59.5895 253.366 59.7588C253.726 59.9281 254.02 60.165 254.249 60.4697C254.477 60.7702 254.646 61.1257 254.756 61.5361C254.866 61.9424 254.921 62.3867 254.921 62.8691V63.396H249.792V62.4375H253.747V62.3486C253.73 62.0439 253.667 61.7477 253.557 61.46C253.451 61.1722 253.282 60.9352 253.049 60.749C252.816 60.5628 252.499 60.4697 252.097 60.4697C251.83 60.4697 251.585 60.5269 251.36 60.6411C251.136 60.7511 250.944 60.9162 250.783 61.1362C250.622 61.3563 250.497 61.625 250.408 61.9424C250.319 62.2598 250.275 62.6258 250.275 63.0405V63.3071C250.275 63.633 250.319 63.9398 250.408 64.2275C250.501 64.5111 250.635 64.7607 250.808 64.9766C250.986 65.1924 251.2 65.3617 251.449 65.4844C251.703 65.6071 251.991 65.6685 252.312 65.6685C252.727 65.6685 253.078 65.5838 253.366 65.4146C253.654 65.2453 253.906 65.0189 254.122 64.7354L254.833 65.3003C254.684 65.5246 254.496 65.7383 254.268 65.9414C254.039 66.1445 253.758 66.3096 253.423 66.4365C253.093 66.5635 252.702 66.627 252.249 66.627ZM257.467 61.0981V66.5H256.292V59.6318H257.403L257.467 61.0981ZM257.188 62.8057L256.699 62.7866C256.703 62.3169 256.773 61.8831 256.908 61.4854C257.044 61.0833 257.234 60.7342 257.479 60.438C257.725 60.1418 258.017 59.9132 258.355 59.7524C258.698 59.5874 259.077 59.5049 259.492 59.5049C259.83 59.5049 260.135 59.5514 260.406 59.6445C260.677 59.7334 260.907 59.8773 261.098 60.0762C261.292 60.2751 261.44 60.5332 261.542 60.8506C261.644 61.1637 261.694 61.5467 261.694 61.9995V66.5H260.514V61.9868C260.514 61.6271 260.461 61.3394 260.355 61.1235C260.249 60.9035 260.095 60.7448 259.892 60.6475C259.688 60.5459 259.439 60.4951 259.143 60.4951C258.851 60.4951 258.584 60.5565 258.343 60.6792C258.106 60.8019 257.901 60.9712 257.727 61.187C257.558 61.4028 257.424 61.6504 257.327 61.9297C257.234 62.2048 257.188 62.4967 257.188 62.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M16.46 84.7578H17.647L20.6748 92.2925L23.6963 84.7578H24.8896L21.1318 94H20.2051L16.46 84.7578ZM16.0728 84.7578H17.1201L17.2915 90.3945V94H16.0728V84.7578ZM24.2231 84.7578H25.2705V94H24.0518V90.3945L24.2231 84.7578ZM31.2944 92.8257V89.29C31.2944 89.0192 31.2394 88.7843 31.1294 88.5854C31.0236 88.3823 30.8628 88.2257 30.647 88.1157C30.4312 88.0057 30.1646 87.9507 29.8472 87.9507C29.5509 87.9507 29.2907 88.0015 29.0664 88.103C28.8464 88.2046 28.6729 88.3379 28.5459 88.5029C28.4232 88.668 28.3618 88.8457 28.3618 89.0361H27.1875C27.1875 88.7907 27.251 88.5474 27.3779 88.3062C27.5049 88.0649 27.6868 87.847 27.9238 87.6523C28.165 87.4535 28.4528 87.2969 28.7871 87.1826C29.1257 87.0641 29.5023 87.0049 29.917 87.0049C30.4163 87.0049 30.8564 87.0895 31.2373 87.2588C31.6224 87.4281 31.9229 87.6841 32.1387 88.0269C32.3587 88.3654 32.4688 88.7907 32.4688 89.3027V92.502C32.4688 92.7305 32.4878 92.9738 32.5259 93.2319C32.5682 93.4901 32.6296 93.7122 32.71 93.8984V94H31.4849C31.4256 93.8646 31.3791 93.6847 31.3452 93.4604C31.3114 93.2319 31.2944 93.0203 31.2944 92.8257ZM31.4976 89.8359L31.5103 90.6611H30.3232C29.9889 90.6611 29.6906 90.6886 29.4282 90.7437C29.1659 90.7944 28.9458 90.8727 28.7681 90.9785C28.5903 91.0843 28.4549 91.2176 28.3618 91.3784C28.2687 91.535 28.2222 91.7191 28.2222 91.9307C28.2222 92.1465 28.2708 92.3433 28.3682 92.521C28.4655 92.6987 28.6115 92.8405 28.8062 92.9463C29.005 93.0479 29.2484 93.0986 29.5361 93.0986C29.8958 93.0986 30.2132 93.0225 30.4883 92.8701C30.7633 92.7178 30.9813 92.5316 31.1421 92.3115C31.3071 92.0915 31.396 91.8778 31.4087 91.6704L31.9102 92.2354C31.8805 92.4131 31.8001 92.6099 31.6689 92.8257C31.5378 93.0415 31.3621 93.2489 31.1421 93.4478C30.9263 93.6424 30.6681 93.8053 30.3677 93.9365C30.0715 94.0635 29.7371 94.127 29.3647 94.127C28.8993 94.127 28.4909 94.036 28.1396 93.854C27.7926 93.672 27.5218 93.4287 27.3271 93.124C27.1367 92.8151 27.0415 92.4702 27.0415 92.0894C27.0415 91.7212 27.1134 91.3975 27.2573 91.1182C27.4012 90.8346 27.6086 90.5998 27.8794 90.4136C28.1502 90.2231 28.4761 90.0793 28.8569 89.9819C29.2378 89.8846 29.6631 89.8359 30.1328 89.8359H31.4976ZM35.1094 87.1318L36.6138 89.6328L38.1372 87.1318H39.5146L37.2676 90.5215L39.5845 94H38.2261L36.6392 91.4229L35.0522 94H33.6875L35.998 90.5215L33.7573 87.1318H35.1094ZM42.041 87.1318V94H40.8604V87.1318H42.041ZM40.7715 85.3101C40.7715 85.1196 40.8286 84.9588 40.9429 84.8276C41.0614 84.6965 41.2349 84.6309 41.4634 84.6309C41.6877 84.6309 41.859 84.6965 41.9775 84.8276C42.1003 84.9588 42.1616 85.1196 42.1616 85.3101C42.1616 85.492 42.1003 85.6486 41.9775 85.7798C41.859 85.9067 41.6877 85.9702 41.4634 85.9702C41.2349 85.9702 41.0614 85.9067 40.9429 85.7798C40.8286 85.6486 40.7715 85.492 40.7715 85.3101ZM45.0942 88.4966V94H43.9136V87.1318H45.0308L45.0942 88.4966ZM44.853 90.3057L44.3071 90.2866C44.3114 89.8169 44.3727 89.3831 44.4912 88.9854C44.6097 88.5833 44.7853 88.2342 45.0181 87.938C45.2508 87.6418 45.5407 87.4132 45.8877 87.2524C46.2347 87.0874 46.6367 87.0049 47.0938 87.0049C47.4154 87.0049 47.7116 87.0514 47.9824 87.1445C48.2533 87.2334 48.4881 87.3752 48.687 87.5698C48.8859 87.7645 49.0404 88.0142 49.1504 88.3188C49.2604 88.6235 49.3154 88.9917 49.3154 89.4233V94H48.1411V89.4805C48.1411 89.1208 48.0798 88.833 47.957 88.6172C47.8385 88.4014 47.6693 88.2448 47.4492 88.1475C47.2292 88.0459 46.971 87.9951 46.6748 87.9951C46.3278 87.9951 46.0379 88.0565 45.8052 88.1792C45.5724 88.3019 45.3862 88.4712 45.2466 88.687C45.1069 88.9028 45.0054 89.1504 44.9419 89.4297C44.8826 89.7048 44.853 89.9967 44.853 90.3057ZM49.3027 89.6582L48.5156 89.8994C48.5199 89.5228 48.5812 89.161 48.6997 88.814C48.8224 88.467 48.998 88.158 49.2266 87.8872C49.4593 87.6164 49.745 87.4027 50.0835 87.2461C50.422 87.0853 50.8092 87.0049 51.2451 87.0049C51.6133 87.0049 51.9391 87.0535 52.2227 87.1509C52.5104 87.2482 52.7516 87.3984 52.9463 87.6016C53.1452 87.8005 53.2954 88.0565 53.397 88.3696C53.4985 88.6828 53.5493 89.0552 53.5493 89.4868V94H52.3687V89.4741C52.3687 89.089 52.3073 88.7907 52.1846 88.5791C52.0661 88.3633 51.8968 88.2131 51.6768 88.1284C51.4609 88.0396 51.2028 87.9951 50.9023 87.9951C50.6442 87.9951 50.4157 88.0396 50.2168 88.1284C50.0179 88.2173 49.8507 88.34 49.7153 88.4966C49.5799 88.6489 49.4762 88.8245 49.4043 89.0234C49.3366 89.2223 49.3027 89.4339 49.3027 89.6582ZM59.5288 92.4131V87.1318H60.7095V94H59.5859L59.5288 92.4131ZM59.751 90.9658L60.2397 90.9531C60.2397 91.4102 60.1911 91.8333 60.0938 92.2227C60.0007 92.6077 59.8483 92.9421 59.6367 93.2256C59.4251 93.5091 59.1479 93.7313 58.8052 93.8921C58.4624 94.0487 58.0456 94.127 57.5547 94.127C57.2204 94.127 56.9136 94.0783 56.6343 93.981C56.3592 93.8836 56.1222 93.7334 55.9233 93.5303C55.7244 93.3271 55.57 93.0627 55.46 92.7368C55.3542 92.411 55.3013 92.0195 55.3013 91.5625V87.1318H56.4756V91.5752C56.4756 91.8841 56.5094 92.1401 56.5771 92.3433C56.6491 92.5422 56.7443 92.7008 56.8628 92.8193C56.9855 92.9336 57.1209 93.014 57.269 93.0605C57.4214 93.1071 57.578 93.1304 57.7388 93.1304C58.2381 93.1304 58.6338 93.0352 58.9258 92.8447C59.2178 92.6501 59.4272 92.3898 59.5542 92.064C59.6854 91.7339 59.751 91.3678 59.751 90.9658ZM63.6675 88.4966V94H62.4868V87.1318H63.604L63.6675 88.4966ZM63.4263 90.3057L62.8804 90.2866C62.8846 89.8169 62.946 89.3831 63.0645 88.9854C63.1829 88.5833 63.3586 88.2342 63.5913 87.938C63.8241 87.6418 64.1139 87.4132 64.4609 87.2524C64.8079 87.0874 65.21 87.0049 65.667 87.0049C65.9886 87.0049 66.2848 87.0514 66.5557 87.1445C66.8265 87.2334 67.0614 87.3752 67.2603 87.5698C67.4591 87.7645 67.6136 88.0142 67.7236 88.3188C67.8337 88.6235 67.8887 88.9917 67.8887 89.4233V94H66.7144V89.4805C66.7144 89.1208 66.653 88.833 66.5303 88.6172C66.4118 88.4014 66.2425 88.2448 66.0225 88.1475C65.8024 88.0459 65.5443 87.9951 65.248 87.9951C64.901 87.9951 64.6112 88.0565 64.3784 88.1792C64.1457 88.3019 63.9595 88.4712 63.8198 88.687C63.6802 88.9028 63.5786 89.1504 63.5151 89.4297C63.4559 89.7048 63.4263 89.9967 63.4263 90.3057ZM67.876 89.6582L67.0889 89.8994C67.0931 89.5228 67.1545 89.161 67.2729 88.814C67.3957 88.467 67.5713 88.158 67.7998 87.8872C68.0326 87.6164 68.3182 87.4027 68.6567 87.2461C68.9953 87.0853 69.3825 87.0049 69.8184 87.0049C70.1865 87.0049 70.5124 87.0535 70.7959 87.1509C71.0837 87.2482 71.3249 87.3984 71.5195 87.6016C71.7184 87.8005 71.8687 88.0565 71.9702 88.3696C72.0718 88.6828 72.1226 89.0552 72.1226 89.4868V94H70.9419V89.4741C70.9419 89.089 70.8805 88.7907 70.7578 88.5791C70.6393 88.3633 70.4701 88.2131 70.25 88.1284C70.0342 88.0396 69.776 87.9951 69.4756 87.9951C69.2174 87.9951 68.9889 88.0396 68.79 88.1284C68.5911 88.2173 68.424 88.34 68.2886 88.4966C68.1532 88.6489 68.0495 88.8245 67.9775 89.0234C67.9098 89.2223 67.876 89.4339 67.876 89.6582ZM78.6924 94H77.5181V86.5352C77.5181 86.0146 77.6196 85.5745 77.8228 85.2148C78.0259 84.8551 78.3158 84.5822 78.6924 84.396C79.069 84.2098 79.5155 84.1167 80.0317 84.1167C80.3364 84.1167 80.6348 84.1548 80.9268 84.231C81.2188 84.3029 81.5192 84.3939 81.8281 84.5039L81.6313 85.4941C81.4367 85.418 81.2103 85.346 80.9521 85.2783C80.6982 85.2064 80.4189 85.1704 80.1143 85.1704C79.6107 85.1704 79.2467 85.2847 79.0225 85.5132C78.8024 85.7375 78.6924 86.0781 78.6924 86.5352V94ZM80.0952 87.1318V88.0332H76.4326V87.1318H80.0952ZM82.4058 87.1318V94H81.2314V87.1318H82.4058ZM85.6113 84.25V94H84.4307V84.25H85.6113ZM90.3467 94.127C89.8685 94.127 89.4347 94.0465 89.0454 93.8857C88.6603 93.7207 88.3281 93.4901 88.0488 93.1938C87.7738 92.8976 87.5622 92.5464 87.4141 92.1401C87.266 91.7339 87.1919 91.2896 87.1919 90.8071V90.5405C87.1919 89.9819 87.2744 89.4847 87.4395 89.0488C87.6045 88.6087 87.8288 88.2363 88.1123 87.9316C88.3958 87.627 88.7174 87.3963 89.0771 87.2397C89.4368 87.0832 89.8092 87.0049 90.1943 87.0049C90.6852 87.0049 91.1084 87.0895 91.4639 87.2588C91.8236 87.4281 92.1177 87.665 92.3462 87.9697C92.5747 88.2702 92.744 88.6257 92.854 89.0361C92.964 89.4424 93.019 89.8867 93.019 90.3691V90.896H87.8901V89.9375H91.8447V89.8486C91.8278 89.5439 91.7643 89.2477 91.6543 88.96C91.5485 88.6722 91.3792 88.4352 91.1465 88.249C90.9137 88.0628 90.5964 87.9697 90.1943 87.9697C89.9277 87.9697 89.6823 88.0269 89.458 88.1411C89.2337 88.2511 89.0412 88.4162 88.8804 88.6362C88.7196 88.8563 88.5947 89.125 88.5059 89.4424C88.417 89.7598 88.3726 90.1258 88.3726 90.5405V90.8071C88.3726 91.133 88.417 91.4398 88.5059 91.7275C88.599 92.0111 88.7323 92.2607 88.9058 92.4766C89.0835 92.6924 89.2972 92.8617 89.5469 92.9844C89.8008 93.1071 90.0885 93.1685 90.4102 93.1685C90.8249 93.1685 91.1761 93.0838 91.4639 92.9146C91.7516 92.7453 92.0034 92.5189 92.2192 92.2354L92.9302 92.8003C92.7821 93.0246 92.5938 93.2383 92.3652 93.4414C92.1367 93.6445 91.8553 93.8096 91.521 93.9365C91.1909 94.0635 90.7995 94.127 90.3467 94.127ZM101.614 92.1782C101.614 92.009 101.576 91.8524 101.5 91.7085C101.428 91.5604 101.277 91.4271 101.049 91.3086C100.825 91.1859 100.486 91.0801 100.033 90.9912C99.6523 90.9108 99.3075 90.8156 98.9985 90.7056C98.6938 90.5955 98.4336 90.4622 98.2178 90.3057C98.0062 90.1491 97.8433 89.965 97.729 89.7534C97.6147 89.5418 97.5576 89.2943 97.5576 89.0107C97.5576 88.7399 97.6169 88.4839 97.7354 88.2427C97.8581 88.0015 98.0295 87.7878 98.2495 87.6016C98.4738 87.4154 98.7425 87.2694 99.0557 87.1636C99.3688 87.0578 99.7179 87.0049 100.103 87.0049C100.653 87.0049 101.123 87.1022 101.512 87.2969C101.902 87.4915 102.2 87.7518 102.407 88.0776C102.615 88.3993 102.718 88.7568 102.718 89.1504H101.544C101.544 88.96 101.487 88.7759 101.373 88.5981C101.263 88.4162 101.1 88.266 100.884 88.1475C100.672 88.029 100.412 87.9697 100.103 87.9697C99.7772 87.9697 99.5127 88.0205 99.3096 88.1221C99.1107 88.2194 98.9647 88.3442 98.8716 88.4966C98.7827 88.6489 98.7383 88.8097 98.7383 88.979C98.7383 89.106 98.7594 89.2202 98.8018 89.3218C98.8483 89.4191 98.9287 89.5101 99.043 89.5947C99.1572 89.6751 99.318 89.7513 99.5254 89.8232C99.7327 89.8952 99.9972 89.9671 100.319 90.0391C100.882 90.166 101.345 90.3184 101.709 90.4961C102.073 90.6738 102.344 90.8918 102.521 91.1499C102.699 91.408 102.788 91.7212 102.788 92.0894C102.788 92.3898 102.725 92.6649 102.598 92.9146C102.475 93.1642 102.295 93.38 102.058 93.562C101.825 93.7397 101.546 93.8794 101.22 93.981C100.899 94.0783 100.537 94.127 100.135 94.127C99.5296 94.127 99.0176 94.019 98.5986 93.8032C98.1797 93.5874 97.8623 93.3081 97.6465 92.9653C97.4307 92.6226 97.3228 92.2607 97.3228 91.8799H98.5034C98.5203 92.2015 98.6134 92.4575 98.7827 92.6479C98.952 92.8341 99.1593 92.9674 99.4048 93.0479C99.6502 93.124 99.8936 93.1621 100.135 93.1621C100.456 93.1621 100.725 93.1198 100.941 93.0352C101.161 92.9505 101.328 92.8341 101.442 92.686C101.557 92.5379 101.614 92.3687 101.614 92.1782ZM105.606 87.1318V94H104.426V87.1318H105.606ZM104.337 85.3101C104.337 85.1196 104.394 84.9588 104.508 84.8276C104.627 84.6965 104.8 84.6309 105.029 84.6309C105.253 84.6309 105.424 84.6965 105.543 84.8276C105.666 84.9588 105.727 85.1196 105.727 85.3101C105.727 85.492 105.666 85.6486 105.543 85.7798C105.424 85.9067 105.253 85.9702 105.029 85.9702C104.8 85.9702 104.627 85.9067 104.508 85.7798C104.394 85.6486 104.337 85.492 104.337 85.3101ZM112.608 93.0352V94H107.612V93.0352H112.608ZM112.424 87.9634L107.879 94H107.162V93.1367L111.675 87.1318H112.424V87.9634ZM111.903 87.1318V88.103H107.212V87.1318H111.903ZM116.689 94.127C116.211 94.127 115.778 94.0465 115.388 93.8857C115.003 93.7207 114.671 93.4901 114.392 93.1938C114.117 92.8976 113.905 92.5464 113.757 92.1401C113.609 91.7339 113.535 91.2896 113.535 90.8071V90.5405C113.535 89.9819 113.617 89.4847 113.782 89.0488C113.947 88.6087 114.172 88.2363 114.455 87.9316C114.739 87.627 115.06 87.3963 115.42 87.2397C115.78 87.0832 116.152 87.0049 116.537 87.0049C117.028 87.0049 117.451 87.0895 117.807 87.2588C118.166 87.4281 118.46 87.665 118.689 87.9697C118.917 88.2702 119.087 88.6257 119.197 89.0361C119.307 89.4424 119.362 89.8867 119.362 90.3691V90.896H114.233V89.9375H118.188V89.8486C118.171 89.5439 118.107 89.2477 117.997 88.96C117.891 88.6722 117.722 88.4352 117.489 88.249C117.257 88.0628 116.939 87.9697 116.537 87.9697C116.271 87.9697 116.025 88.0269 115.801 88.1411C115.576 88.2511 115.384 88.4162 115.223 88.6362C115.062 88.8563 114.938 89.125 114.849 89.4424C114.76 89.7598 114.715 90.1258 114.715 90.5405V90.8071C114.715 91.133 114.76 91.4398 114.849 91.7275C114.942 92.0111 115.075 92.2607 115.249 92.4766C115.426 92.6924 115.64 92.8617 115.89 92.9844C116.144 93.1071 116.431 93.1685 116.753 93.1685C117.168 93.1685 117.519 93.0838 117.807 92.9146C118.094 92.7453 118.346 92.5189 118.562 92.2354L119.273 92.8003C119.125 93.0246 118.937 93.2383 118.708 93.4414C118.479 93.6445 118.198 93.8096 117.864 93.9365C117.534 94.0635 117.142 94.127 116.689 94.127ZM120.682 93.3779C120.682 93.179 120.743 93.0119 120.866 92.8765C120.993 92.7368 121.175 92.667 121.412 92.667C121.649 92.667 121.829 92.7368 121.952 92.8765C122.079 93.0119 122.142 93.179 122.142 93.3779C122.142 93.5726 122.079 93.7376 121.952 93.873C121.829 94.0085 121.649 94.0762 121.412 94.0762C121.175 94.0762 120.993 94.0085 120.866 93.873C120.743 93.7376 120.682 93.5726 120.682 93.3779ZM120.688 87.7729C120.688 87.5741 120.75 87.4069 120.873 87.2715C121 87.1318 121.181 87.062 121.418 87.062C121.655 87.062 121.835 87.1318 121.958 87.2715C122.085 87.4069 122.148 87.5741 122.148 87.7729C122.148 87.9676 122.085 88.1326 121.958 88.2681C121.835 88.4035 121.655 88.4712 121.418 88.4712C121.181 88.4712 121 88.4035 120.873 88.2681C120.75 88.1326 120.688 87.9676 120.688 87.7729ZM130.838 84.707V94H129.664V86.1733L127.296 87.0366V85.9766L130.654 84.707H130.838ZM140.093 88.6426V90.0518C140.093 90.8092 140.026 91.4482 139.89 91.9688C139.755 92.4893 139.56 92.9082 139.306 93.2256C139.052 93.543 138.745 93.7736 138.386 93.9175C138.03 94.0571 137.628 94.127 137.18 94.127C136.824 94.127 136.496 94.0825 136.196 93.9937C135.895 93.9048 135.625 93.763 135.383 93.5684C135.146 93.3695 134.943 93.1113 134.774 92.7939C134.605 92.4766 134.476 92.0915 134.387 91.6387C134.298 91.1859 134.253 90.6569 134.253 90.0518V88.6426C134.253 87.8851 134.321 87.2503 134.457 86.7383C134.596 86.2262 134.793 85.8158 135.047 85.5068C135.301 85.1937 135.605 84.9694 135.961 84.834C136.321 84.6986 136.723 84.6309 137.167 84.6309C137.527 84.6309 137.857 84.6753 138.157 84.7642C138.462 84.8488 138.733 84.9863 138.97 85.1768C139.207 85.363 139.408 85.6126 139.573 85.9258C139.742 86.2347 139.871 86.6134 139.96 87.062C140.049 87.5106 140.093 88.0374 140.093 88.6426ZM138.913 90.2422V88.4458C138.913 88.0311 138.887 87.6672 138.836 87.354C138.79 87.0366 138.72 86.7658 138.627 86.5415C138.534 86.3172 138.415 86.1353 138.271 85.9956C138.132 85.856 137.969 85.7544 137.783 85.6909C137.601 85.6232 137.396 85.5894 137.167 85.5894C136.888 85.5894 136.64 85.6423 136.424 85.748C136.208 85.8496 136.027 86.0125 135.878 86.2368C135.735 86.4611 135.625 86.7552 135.548 87.1191C135.472 87.4831 135.434 87.9253 135.434 88.4458V90.2422C135.434 90.6569 135.457 91.0229 135.504 91.3403C135.555 91.6577 135.629 91.9328 135.726 92.1655C135.823 92.394 135.942 92.5824 136.082 92.7305C136.221 92.8786 136.382 92.9886 136.564 93.0605C136.75 93.1283 136.955 93.1621 137.18 93.1621C137.467 93.1621 137.719 93.1071 137.935 92.9971C138.151 92.887 138.331 92.7157 138.475 92.4829C138.623 92.2459 138.733 91.9434 138.805 91.5752C138.877 91.2028 138.913 90.7585 138.913 90.2422ZM145.521 84.7578H146.708L149.735 92.2925L152.757 84.7578H153.95L150.192 94H149.266L145.521 84.7578ZM145.133 84.7578H146.181L146.352 90.3945V94H145.133V84.7578ZM153.284 84.7578H154.331V94H153.112V90.3945L153.284 84.7578ZM159.777 89.6772H157.435L157.422 88.6934H159.549C159.9 88.6934 160.207 88.6341 160.469 88.5156C160.732 88.3971 160.935 88.2279 161.079 88.0078C161.227 87.7835 161.301 87.5169 161.301 87.208C161.301 86.8695 161.235 86.5944 161.104 86.3828C160.977 86.167 160.78 86.0104 160.514 85.9131C160.251 85.8115 159.917 85.7607 159.511 85.7607H157.708V94H156.483V84.7578H159.511C159.985 84.7578 160.408 84.8065 160.78 84.9038C161.153 84.9969 161.468 85.145 161.726 85.3481C161.988 85.547 162.187 85.8009 162.323 86.1099C162.458 86.4188 162.526 86.7891 162.526 87.2207C162.526 87.6016 162.429 87.9465 162.234 88.2554C162.039 88.5601 161.768 88.8097 161.421 89.0044C161.079 89.1991 160.677 89.3239 160.215 89.3789L159.777 89.6772ZM159.72 94H156.953L157.645 93.0034H159.72C160.11 93.0034 160.44 92.9357 160.71 92.8003C160.986 92.6649 161.195 92.4744 161.339 92.229C161.483 91.9793 161.555 91.6852 161.555 91.3467C161.555 91.0039 161.493 90.7077 161.371 90.458C161.248 90.2083 161.055 90.0158 160.793 89.8804C160.531 89.745 160.192 89.6772 159.777 89.6772H158.032L158.044 88.6934H160.431L160.691 89.0488C161.136 89.0869 161.512 89.2139 161.821 89.4297C162.13 89.6413 162.365 89.9121 162.526 90.2422C162.691 90.5723 162.773 90.9362 162.773 91.334C162.773 91.9095 162.646 92.3962 162.393 92.7939C162.143 93.1875 161.79 93.488 161.333 93.6953C160.875 93.8984 160.338 94 159.72 94Z",fill:"#64748B"})),{ToolBarFields:Ha,GeneralFields:ha,AdvancedFields:ba,FieldWrapper:Ma,FieldSettingsWrapper:La,ValidationBlockMessage:ga,ValidationToggleGroup:Za,AdvancedInspectorControl:ya,AttributeHelp:Ea}=JetFBComponents,{useIsAdvancedValidation:wa,useUniqueNameOnDuplicate:va}=JetFBHooks,{__:_a}=wp.i18n,{useBlockProps:ka,InspectorControls:ja}=wp.blockEditor,{SelectControl:xa,ToggleControl:Fa,FormTokenField:Ba,TextControl:Aa,__experimentalNumberControl:Pa,__experimentalInputControl:Sa,PanelBody:Na}=wp.components;let{NumberControl:Ia,InputControl:Ta}=wp.components;void 0===Ia&&(Ia=Pa),void 0===Ta&&(Ta=Sa);const Oa=window.jetFormMediaFieldData,Ja=JSON.parse('{"apiVersion":3,"name":"jet-forms/media-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","media","image","file"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Media Field","icon":"\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{"messages":{"max_size":"Maximum file size: %max_size%"}}},"allowed_user_cap":{"type":"string","default":""},"insert_attachment":{"type":"boolean","default":false},"value_format":{"type":"string","default":""},"delete_uploaded_attachment":{"type":"boolean","default":false},"max_files":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max_size":{"type":["number","string"],"default":"","jfb":{"rich":true}},"allowed_mimes":{"type":"array","default":[]},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Ra}=wp.i18n,{createBlock:qa}=wp.blocks,{name:Da,icon:za=""}=Ja,Ua={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:za}}),description:Ra("Gives users the opportunity to upload media files to your website, e.g., users photos or images of the product for sale.","jet-form-builder"),edit:function(e){var C;const t=ka(),l=wa();va();const{attributes:r,setAttributes:n,isSelected:a,editProps:{uniqKey:i,attrHelp:o}}=e,s=!r.allowed_user_cap,c=["id","ids","both"],d=r.insert_attachment&&c.includes(r.value_format);return r.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Va):[(0,h.createElement)(Ha,{key:i("ToolBarFields"),...e}),a&&(0,h.createElement)(ja,{key:i("InspectorControls")},(0,h.createElement)(ha,null),(0,h.createElement)(La,{...e},(0,h.createElement)("div",{className:["jet-form-builder__user-access-control",s?"jet-form-builder__user-access-control--error":""].filter(Boolean).join(" ")},(0,h.createElement)(xa,{key:"allowed_user_cap",label:_a("User access","jet-form-builder"),labelPosition:"top",value:r.allowed_user_cap,onChange:e=>{n({allowed_user_cap:e})},options:pa,required:!0,help:s?_a("Please select who is allowed to upload files.","jet-form-builder"):void 0})),"any_user"!==r.allowed_user_cap&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Fa,{key:"insert_attachment",label:_a("Insert attachment","jet-form-builder"),checked:r.insert_attachment,help:o("insert_attachment"),onChange:e=>{const C=Boolean(e);n({insert_attachment:C,delete_uploaded_attachment:!!C&&r.delete_uploaded_attachment})}}),r.insert_attachment&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(xa,{key:"value_format",label:_a("Field value","jet-form-builder"),labelPosition:"top",value:r.value_format,onChange:e=>{n({value_format:e,delete_uploaded_attachment:!!c.includes(e)&&r.delete_uploaded_attachment})},options:fa,help:_a("If you're using this field for an ACF Gallery, always select **Array of attachment IDs**. For JetEngine, match the format used in the corresponding JetEngine meta field.","jet-form-builder")}),d&&(0,h.createElement)(Fa,{key:"delete_uploaded_attachment",label:_a("Delete removed attachments","jet-form-builder"),checked:r.delete_uploaded_attachment,help:_a("Permanently deletes old attachments from the Media Library after the form is submitted. Enable only if these files are not used anywhere else.","jet-form-builder"),onChange:e=>{n({delete_uploaded_attachment:Boolean(e)})}}))),(0,h.createElement)(ya,{value:r.max_files,label:_a("Maximum allowed files to upload","jet-form-builder"),onChangePreset:e=>n({max_files:e})},(({instanceId:e})=>(0,h.createElement)(Aa,{id:e,className:"jet-fb m-unset",value:r.max_files,onChange:e=>n({max_files:e})}))),(0,h.createElement)(Ea,{name:"max_files"},_a("If not set allow to upload 1 file.","jet-form-builder")),(0,h.createElement)(ya,{value:r.max_size,label:_a("Maximum size in Mb","jet-form-builder"),onChangePreset:e=>n({max_size:e})},(({instanceId:e})=>(0,h.createElement)(Aa,{id:e,className:"jet-fb m-unset",value:r.max_size,onChange:e=>n({max_size:e})}))),(0,h.createElement)(Ea,{name:"max_size"}),(0,h.createElement)(Aa,{label:_a("Maximum file size message","jet-form-builder"),value:null!==(C=r?.validation?.messages?.max_size)&&void 0!==C?C:"Maximum file size: %max_size%",onChange:e=>{n({validation:{messages:{max_size:e}}})},help:_a("Use the %max_size% macro to display the maximum allowed file size","jet-form-builder")}),(0,h.createElement)(Ba,{key:"allowed_mimes",value:r.allowed_mimes,label:_a("Allow MIME types","jet-form-builder"),suggestions:Oa.mime_types,onChange:e=>n({allowed_mimes:e}),tokenizeOnSpace:!0})),(0,h.createElement)(Na,{title:_a("Validation","jet-form-builder")},(0,h.createElement)(Za,null),l&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ga,{name:"max_files"}),(0,h.createElement)(ga,{name:"file_max_size"}),Boolean(r.allowed_mimes.length)&&(0,h.createElement)(ga,{name:"file_ext"}))),(0,h.createElement)(ba,{key:i("AdvancedFields"),...e})),(0,h.createElement)("div",{...t,key:i("viewBlock")},(0,h.createElement)(Ma,{key:i("FieldWrapper"),...e},(0,h.createElement)(Ta,{key:i("place_holder_block_new"),type:"file",className:"jet-form-builder__field-preview",disabled:!0})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>qa("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>qa(Da,{...e}),priority:0}]}},Ga=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M23.8115 49.5469V59.5H22.4854L17.4746 51.8232V59.5H16.1553V49.5469H17.4746L22.5059 57.2441V49.5469H23.8115ZM30.4834 57.791V52.1035H31.7549V59.5H30.5449L30.4834 57.791ZM30.7227 56.2324L31.249 56.2188C31.249 56.7109 31.1966 57.1667 31.0918 57.5859C30.9915 58.0007 30.8275 58.3607 30.5996 58.666C30.3717 58.9714 30.0732 59.2106 29.7041 59.3838C29.335 59.5524 28.8861 59.6367 28.3574 59.6367C27.9974 59.6367 27.667 59.5843 27.3662 59.4795C27.07 59.3747 26.8148 59.2129 26.6006 58.9941C26.3864 58.7754 26.2201 58.4906 26.1016 58.1396C25.9876 57.7887 25.9307 57.3672 25.9307 56.875V52.1035H27.1953V56.8887C27.1953 57.2214 27.2318 57.4971 27.3047 57.7158C27.3822 57.93 27.4847 58.1009 27.6123 58.2285C27.7445 58.3516 27.8903 58.4382 28.0498 58.4883C28.2139 58.5384 28.3825 58.5635 28.5557 58.5635C29.0934 58.5635 29.5195 58.4609 29.834 58.2559C30.1484 58.0462 30.374 57.766 30.5107 57.415C30.652 57.0596 30.7227 56.6654 30.7227 56.2324ZM34.9404 53.5732V59.5H33.6689V52.1035H34.8721L34.9404 53.5732ZM34.6807 55.5215L34.0928 55.501C34.0973 54.9951 34.1634 54.528 34.291 54.0996C34.4186 53.6667 34.6077 53.2907 34.8584 52.9717C35.109 52.6527 35.4212 52.4066 35.7949 52.2334C36.1686 52.0557 36.6016 51.9668 37.0938 51.9668C37.4401 51.9668 37.7591 52.0169 38.0508 52.1172C38.3424 52.2129 38.5954 52.3656 38.8096 52.5752C39.0238 52.7848 39.1901 53.0537 39.3086 53.3818C39.4271 53.71 39.4863 54.1064 39.4863 54.5713V59.5H38.2217V54.6328C38.2217 54.2454 38.1556 53.9355 38.0234 53.7031C37.8958 53.4707 37.7135 53.3021 37.4766 53.1973C37.2396 53.0879 36.9616 53.0332 36.6426 53.0332C36.2689 53.0332 35.9567 53.0993 35.7061 53.2314C35.4554 53.3636 35.2549 53.5459 35.1045 53.7783C34.9541 54.0107 34.8447 54.2773 34.7764 54.5781C34.7126 54.8743 34.6807 55.1888 34.6807 55.5215ZM39.4727 54.8242L38.625 55.084C38.6296 54.6784 38.6956 54.2887 38.8232 53.915C38.9554 53.5413 39.1445 53.2087 39.3906 52.917C39.6413 52.6253 39.9489 52.3952 40.3135 52.2266C40.6781 52.0534 41.0951 51.9668 41.5645 51.9668C41.9609 51.9668 42.3118 52.0192 42.6172 52.124C42.9271 52.2288 43.1868 52.3906 43.3965 52.6094C43.6107 52.8236 43.7725 53.0993 43.8818 53.4365C43.9912 53.7738 44.0459 54.1748 44.0459 54.6396V59.5H42.7744V54.626C42.7744 54.2113 42.7083 53.89 42.5762 53.6621C42.4486 53.4297 42.2663 53.2679 42.0293 53.1768C41.7969 53.0811 41.5189 53.0332 41.1953 53.0332C40.9173 53.0332 40.6712 53.0811 40.457 53.1768C40.2428 53.2725 40.0628 53.4046 39.917 53.5732C39.7712 53.7373 39.6595 53.9264 39.582 54.1406C39.5091 54.3548 39.4727 54.5827 39.4727 54.8242ZM45.9531 49H47.2246V58.0645L47.1152 59.5H45.9531V49ZM52.2217 55.7402V55.8838C52.2217 56.4215 52.1579 56.9206 52.0303 57.3809C51.9027 57.8366 51.7158 58.2331 51.4697 58.5703C51.2236 58.9076 50.9229 59.1696 50.5674 59.3564C50.2119 59.5433 49.804 59.6367 49.3438 59.6367C48.8743 59.6367 48.4619 59.557 48.1064 59.3975C47.7555 59.2334 47.4593 58.9987 47.2178 58.6934C46.9762 58.388 46.7826 58.0189 46.6367 57.5859C46.4954 57.153 46.3975 56.6654 46.3428 56.123V55.4941C46.3975 54.9473 46.4954 54.4574 46.6367 54.0244C46.7826 53.5915 46.9762 53.2223 47.2178 52.917C47.4593 52.6071 47.7555 52.3724 48.1064 52.2129C48.4574 52.0488 48.8652 51.9668 49.3301 51.9668C49.7949 51.9668 50.2074 52.0579 50.5674 52.2402C50.9274 52.418 51.2282 52.6732 51.4697 53.0059C51.7158 53.3385 51.9027 53.7373 52.0303 54.2021C52.1579 54.6624 52.2217 55.1751 52.2217 55.7402ZM50.9502 55.8838V55.7402C50.9502 55.3711 50.916 55.0247 50.8477 54.7012C50.7793 54.373 50.6699 54.0859 50.5195 53.8398C50.3691 53.5892 50.1709 53.3932 49.9248 53.252C49.6787 53.1061 49.3757 53.0332 49.0156 53.0332C48.6966 53.0332 48.4186 53.0879 48.1816 53.1973C47.9492 53.3066 47.751 53.4548 47.5869 53.6416C47.4229 53.8239 47.2884 54.0335 47.1836 54.2705C47.0833 54.5029 47.0081 54.7445 46.958 54.9951V56.6426C47.0309 56.9616 47.1494 57.2692 47.3135 57.5654C47.4821 57.8571 47.7054 58.0964 47.9834 58.2832C48.266 58.4701 48.6146 58.5635 49.0293 58.5635C49.3711 58.5635 49.6628 58.4951 49.9043 58.3584C50.1504 58.2171 50.3486 58.0234 50.499 57.7773C50.654 57.5312 50.7679 57.2464 50.8408 56.9229C50.9137 56.5993 50.9502 56.2529 50.9502 55.8838ZM56.8906 59.6367C56.3757 59.6367 55.9085 59.5501 55.4893 59.377C55.0745 59.1992 54.7168 58.9508 54.416 58.6318C54.1198 58.3128 53.8919 57.9346 53.7324 57.4971C53.5729 57.0596 53.4932 56.5811 53.4932 56.0615V55.7744C53.4932 55.1729 53.582 54.6374 53.7598 54.168C53.9375 53.694 54.179 53.293 54.4844 52.9648C54.7897 52.6367 55.1361 52.3883 55.5234 52.2197C55.9108 52.0511 56.3118 51.9668 56.7266 51.9668C57.2552 51.9668 57.7109 52.0579 58.0938 52.2402C58.4811 52.4225 58.7979 52.6777 59.0439 53.0059C59.29 53.3294 59.4723 53.7122 59.5908 54.1543C59.7093 54.5918 59.7686 55.0703 59.7686 55.5898V56.1572H54.2451V55.125H58.5039V55.0293C58.4857 54.7012 58.4173 54.3822 58.2988 54.0723C58.1849 53.7624 58.0026 53.5072 57.752 53.3066C57.5013 53.1061 57.1595 53.0059 56.7266 53.0059C56.4395 53.0059 56.1751 53.0674 55.9336 53.1904C55.6921 53.3089 55.4847 53.4867 55.3115 53.7236C55.1383 53.9606 55.0039 54.25 54.9082 54.5918C54.8125 54.9336 54.7646 55.3278 54.7646 55.7744V56.0615C54.7646 56.4124 54.8125 56.7428 54.9082 57.0527C55.0085 57.3581 55.152 57.627 55.3389 57.8594C55.5303 58.0918 55.7604 58.2741 56.0293 58.4062C56.3027 58.5384 56.6126 58.6045 56.959 58.6045C57.4056 58.6045 57.7839 58.5133 58.0938 58.3311C58.4036 58.1488 58.6748 57.9049 58.9072 57.5996L59.6729 58.208C59.5133 58.4495 59.3105 58.6797 59.0645 58.8984C58.8184 59.1172 58.5153 59.2949 58.1553 59.4316C57.7998 59.5684 57.3783 59.6367 56.8906 59.6367ZM62.5098 53.2656V59.5H61.2451V52.1035H62.4756L62.5098 53.2656ZM64.8203 52.0625L64.8135 53.2383C64.7087 53.2155 64.6084 53.2018 64.5127 53.1973C64.4215 53.1882 64.3167 53.1836 64.1982 53.1836C63.9066 53.1836 63.6491 53.2292 63.4258 53.3203C63.2025 53.4115 63.0133 53.5391 62.8584 53.7031C62.7035 53.8672 62.5804 54.0632 62.4893 54.291C62.4027 54.5143 62.3457 54.7604 62.3184 55.0293L61.9629 55.2344C61.9629 54.7878 62.0062 54.3685 62.0928 53.9766C62.1839 53.5846 62.3229 53.2383 62.5098 52.9375C62.6966 52.6322 62.9336 52.3952 63.2207 52.2266C63.5124 52.0534 63.8587 51.9668 64.2598 51.9668C64.3509 51.9668 64.4557 51.9782 64.5742 52.001C64.6927 52.0192 64.7747 52.0397 64.8203 52.0625ZM69.127 55.8838V55.7266C69.127 55.1934 69.2044 54.6989 69.3594 54.2432C69.5143 53.7829 69.7376 53.3841 70.0293 53.0469C70.321 52.7051 70.6742 52.4408 71.0889 52.2539C71.5036 52.0625 71.9684 51.9668 72.4834 51.9668C73.0029 51.9668 73.4701 52.0625 73.8848 52.2539C74.304 52.4408 74.6595 52.7051 74.9512 53.0469C75.2474 53.3841 75.473 53.7829 75.6279 54.2432C75.7829 54.6989 75.8604 55.1934 75.8604 55.7266V55.8838C75.8604 56.417 75.7829 56.9115 75.6279 57.3672C75.473 57.8229 75.2474 58.2217 74.9512 58.5635C74.6595 58.9007 74.3063 59.165 73.8916 59.3564C73.4814 59.5433 73.0166 59.6367 72.4971 59.6367C71.9775 59.6367 71.5104 59.5433 71.0957 59.3564C70.681 59.165 70.3255 58.9007 70.0293 58.5635C69.7376 58.2217 69.5143 57.8229 69.3594 57.3672C69.2044 56.9115 69.127 56.417 69.127 55.8838ZM70.3916 55.7266V55.8838C70.3916 56.2529 70.4349 56.6016 70.5215 56.9297C70.6081 57.2533 70.738 57.5404 70.9111 57.791C71.0889 58.0417 71.3099 58.2399 71.5742 58.3857C71.8385 58.527 72.1462 58.5977 72.4971 58.5977C72.8434 58.5977 73.1465 58.527 73.4062 58.3857C73.6706 58.2399 73.8893 58.0417 74.0625 57.791C74.2357 57.5404 74.3656 57.2533 74.4521 56.9297C74.5433 56.6016 74.5889 56.2529 74.5889 55.8838V55.7266C74.5889 55.362 74.5433 55.0179 74.4521 54.6943C74.3656 54.3662 74.2334 54.0768 74.0557 53.8262C73.8825 53.571 73.6637 53.3704 73.3994 53.2246C73.1396 53.0788 72.8343 53.0059 72.4834 53.0059C72.137 53.0059 71.8317 53.0788 71.5674 53.2246C71.3076 53.3704 71.0889 53.571 70.9111 53.8262C70.738 54.0768 70.6081 54.3662 70.5215 54.6943C70.4349 55.0179 70.3916 55.362 70.3916 55.7266ZM79.333 59.5H78.0684V51.3242C78.0684 50.791 78.1641 50.3421 78.3555 49.9775C78.5514 49.6084 78.8317 49.3304 79.1963 49.1436C79.5609 48.9521 79.9938 48.8564 80.4951 48.8564C80.641 48.8564 80.7868 48.8656 80.9326 48.8838C81.083 48.902 81.2288 48.9294 81.3701 48.9658L81.3018 49.998C81.2061 49.9753 81.0967 49.9593 80.9736 49.9502C80.8551 49.9411 80.7367 49.9365 80.6182 49.9365C80.3493 49.9365 80.1169 49.9912 79.9209 50.1006C79.7295 50.2054 79.5837 50.3604 79.4834 50.5654C79.3831 50.7705 79.333 51.0234 79.333 51.3242V59.5ZM80.9053 52.1035V53.0742H76.8994V52.1035H80.9053ZM90.5781 52.1035H91.7266V59.3428C91.7266 59.9945 91.5944 60.5505 91.3301 61.0107C91.0658 61.471 90.6966 61.8197 90.2227 62.0566C89.7533 62.2982 89.2109 62.4189 88.5957 62.4189C88.3405 62.4189 88.0397 62.3779 87.6934 62.2959C87.3516 62.2184 87.0143 62.084 86.6816 61.8926C86.3535 61.7057 86.0778 61.4528 85.8545 61.1338L86.5176 60.3818C86.8275 60.7555 87.151 61.0153 87.4883 61.1611C87.8301 61.307 88.1673 61.3799 88.5 61.3799C88.901 61.3799 89.2474 61.3047 89.5391 61.1543C89.8307 61.0039 90.0563 60.7806 90.2158 60.4844C90.3799 60.1927 90.4619 59.8327 90.4619 59.4043V53.7305L90.5781 52.1035ZM85.4854 55.8838V55.7402C85.4854 55.1751 85.5514 54.6624 85.6836 54.2021C85.8203 53.7373 86.014 53.3385 86.2646 53.0059C86.5199 52.6732 86.8275 52.418 87.1875 52.2402C87.5475 52.0579 87.9531 51.9668 88.4043 51.9668C88.8691 51.9668 89.2747 52.0488 89.6211 52.2129C89.972 52.3724 90.2682 52.6071 90.5098 52.917C90.7559 53.2223 90.9495 53.5915 91.0908 54.0244C91.2321 54.4574 91.3301 54.9473 91.3848 55.4941V56.123C91.3346 56.6654 91.2367 57.153 91.0908 57.5859C90.9495 58.0189 90.7559 58.388 90.5098 58.6934C90.2682 58.9987 89.972 59.2334 89.6211 59.3975C89.2702 59.557 88.86 59.6367 88.3906 59.6367C87.9486 59.6367 87.5475 59.5433 87.1875 59.3564C86.832 59.1696 86.5267 58.9076 86.2715 58.5703C86.0163 58.2331 85.8203 57.8366 85.6836 57.3809C85.5514 56.9206 85.4854 56.4215 85.4854 55.8838ZM86.75 55.7402V55.8838C86.75 56.2529 86.7865 56.5993 86.8594 56.9229C86.9368 57.2464 87.0531 57.5312 87.208 57.7773C87.3675 58.0234 87.5703 58.2171 87.8164 58.3584C88.0625 58.4951 88.3564 58.5635 88.6982 58.5635C89.1175 58.5635 89.4639 58.4746 89.7373 58.2969C90.0107 58.1191 90.2272 57.8844 90.3867 57.5928C90.5508 57.3011 90.6784 56.9844 90.7695 56.6426V54.9951C90.7194 54.7445 90.6419 54.5029 90.5371 54.2705C90.4368 54.0335 90.3047 53.8239 90.1406 53.6416C89.9811 53.4548 89.7829 53.3066 89.5459 53.1973C89.3089 53.0879 89.0309 53.0332 88.7119 53.0332C88.3656 53.0332 88.0671 53.1061 87.8164 53.252C87.5703 53.3932 87.3675 53.5892 87.208 53.8398C87.0531 54.0859 86.9368 54.373 86.8594 54.7012C86.7865 55.0247 86.75 55.3711 86.75 55.7402ZM98.1729 57.791V52.1035H99.4443V59.5H98.2344L98.1729 57.791ZM98.4121 56.2324L98.9385 56.2188C98.9385 56.7109 98.8861 57.1667 98.7812 57.5859C98.681 58.0007 98.5169 58.3607 98.2891 58.666C98.0612 58.9714 97.7627 59.2106 97.3936 59.3838C97.0244 59.5524 96.5755 59.6367 96.0469 59.6367C95.6868 59.6367 95.3564 59.5843 95.0557 59.4795C94.7594 59.3747 94.5042 59.2129 94.29 58.9941C94.0758 58.7754 93.9095 58.4906 93.791 58.1396C93.6771 57.7887 93.6201 57.3672 93.6201 56.875V52.1035H94.8848V56.8887C94.8848 57.2214 94.9212 57.4971 94.9941 57.7158C95.0716 57.93 95.1742 58.1009 95.3018 58.2285C95.4339 58.3516 95.5798 58.4382 95.7393 58.4883C95.9033 58.5384 96.0719 58.5635 96.2451 58.5635C96.7829 58.5635 97.209 58.4609 97.5234 58.2559C97.8379 58.0462 98.0635 57.766 98.2002 57.415C98.3415 57.0596 98.4121 56.6654 98.4121 56.2324ZM104.441 59.6367C103.926 59.6367 103.459 59.5501 103.04 59.377C102.625 59.1992 102.268 58.9508 101.967 58.6318C101.671 58.3128 101.443 57.9346 101.283 57.4971C101.124 57.0596 101.044 56.5811 101.044 56.0615V55.7744C101.044 55.1729 101.133 54.6374 101.311 54.168C101.488 53.694 101.73 53.293 102.035 52.9648C102.34 52.6367 102.687 52.3883 103.074 52.2197C103.462 52.0511 103.863 51.9668 104.277 51.9668C104.806 51.9668 105.262 52.0579 105.645 52.2402C106.032 52.4225 106.349 52.6777 106.595 53.0059C106.841 53.3294 107.023 53.7122 107.142 54.1543C107.26 54.5918 107.319 55.0703 107.319 55.5898V56.1572H101.796V55.125H106.055V55.0293C106.036 54.7012 105.968 54.3822 105.85 54.0723C105.736 53.7624 105.553 53.5072 105.303 53.3066C105.052 53.1061 104.71 53.0059 104.277 53.0059C103.99 53.0059 103.726 53.0674 103.484 53.1904C103.243 53.3089 103.035 53.4867 102.862 53.7236C102.689 53.9606 102.555 54.25 102.459 54.5918C102.363 54.9336 102.315 55.3278 102.315 55.7744V56.0615C102.315 56.4124 102.363 56.7428 102.459 57.0527C102.559 57.3581 102.703 57.627 102.89 57.8594C103.081 58.0918 103.311 58.2741 103.58 58.4062C103.854 58.5384 104.163 58.6045 104.51 58.6045C104.956 58.6045 105.335 58.5133 105.645 58.3311C105.954 58.1488 106.226 57.9049 106.458 57.5996L107.224 58.208C107.064 58.4495 106.861 58.6797 106.615 58.8984C106.369 59.1172 106.066 59.2949 105.706 59.4316C105.351 59.5684 104.929 59.6367 104.441 59.6367ZM113.103 57.5381C113.103 57.3558 113.062 57.1872 112.979 57.0322C112.902 56.8727 112.74 56.7292 112.494 56.6016C112.253 56.4694 111.888 56.3555 111.4 56.2598C110.99 56.1732 110.619 56.0706 110.286 55.9521C109.958 55.8337 109.678 55.6901 109.445 55.5215C109.217 55.3529 109.042 55.1546 108.919 54.9268C108.796 54.6989 108.734 54.4323 108.734 54.127C108.734 53.8353 108.798 53.5596 108.926 53.2998C109.058 53.04 109.243 52.8099 109.479 52.6094C109.721 52.4089 110.01 52.2516 110.348 52.1377C110.685 52.0238 111.061 51.9668 111.476 51.9668C112.068 51.9668 112.574 52.0716 112.993 52.2812C113.412 52.4909 113.734 52.7712 113.957 53.1221C114.18 53.4684 114.292 53.8535 114.292 54.2773H113.027C113.027 54.0723 112.966 53.874 112.843 53.6826C112.724 53.4867 112.549 53.3249 112.316 53.1973C112.089 53.0697 111.808 53.0059 111.476 53.0059C111.125 53.0059 110.84 53.0605 110.621 53.1699C110.407 53.2747 110.25 53.4092 110.149 53.5732C110.054 53.7373 110.006 53.9105 110.006 54.0928C110.006 54.2295 110.029 54.3525 110.074 54.4619C110.124 54.5667 110.211 54.6647 110.334 54.7559C110.457 54.8424 110.63 54.9245 110.854 55.002C111.077 55.0794 111.362 55.1569 111.708 55.2344C112.314 55.3711 112.813 55.5352 113.205 55.7266C113.597 55.918 113.889 56.1527 114.08 56.4307C114.271 56.7087 114.367 57.0459 114.367 57.4424C114.367 57.766 114.299 58.0622 114.162 58.3311C114.03 58.5999 113.836 58.8324 113.581 59.0283C113.33 59.2197 113.03 59.3701 112.679 59.4795C112.332 59.5843 111.943 59.6367 111.51 59.6367C110.858 59.6367 110.307 59.5205 109.855 59.2881C109.404 59.0557 109.062 58.7549 108.83 58.3857C108.598 58.0166 108.481 57.627 108.481 57.2168H109.753C109.771 57.5632 109.871 57.8389 110.054 58.0439C110.236 58.2445 110.459 58.388 110.724 58.4746C110.988 58.5566 111.25 58.5977 111.51 58.5977C111.856 58.5977 112.146 58.5521 112.378 58.4609C112.615 58.3698 112.795 58.2445 112.918 58.085C113.041 57.9255 113.103 57.7432 113.103 57.5381ZM119.125 52.1035V53.0742H115.126V52.1035H119.125ZM116.479 50.3057H117.744V57.668C117.744 57.9186 117.783 58.1077 117.86 58.2354C117.938 58.363 118.038 58.4473 118.161 58.4883C118.284 58.5293 118.416 58.5498 118.558 58.5498C118.662 58.5498 118.772 58.5407 118.886 58.5225C119.004 58.4997 119.093 58.4814 119.152 58.4678L119.159 59.5C119.059 59.5319 118.927 59.5615 118.763 59.5889C118.603 59.6208 118.41 59.6367 118.182 59.6367C117.872 59.6367 117.587 59.5752 117.327 59.4521C117.067 59.3291 116.86 59.124 116.705 58.8369C116.555 58.5452 116.479 58.1533 116.479 57.6611V50.3057ZM124.915 57.5381C124.915 57.3558 124.874 57.1872 124.792 57.0322C124.715 56.8727 124.553 56.7292 124.307 56.6016C124.065 56.4694 123.701 56.3555 123.213 56.2598C122.803 56.1732 122.431 56.0706 122.099 55.9521C121.771 55.8337 121.49 55.6901 121.258 55.5215C121.03 55.3529 120.854 55.1546 120.731 54.9268C120.608 54.6989 120.547 54.4323 120.547 54.127C120.547 53.8353 120.611 53.5596 120.738 53.2998C120.87 53.04 121.055 52.8099 121.292 52.6094C121.534 52.4089 121.823 52.2516 122.16 52.1377C122.497 52.0238 122.873 51.9668 123.288 51.9668C123.881 51.9668 124.386 52.0716 124.806 52.2812C125.225 52.4909 125.546 52.7712 125.77 53.1221C125.993 53.4684 126.104 53.8535 126.104 54.2773H124.84C124.84 54.0723 124.778 53.874 124.655 53.6826C124.537 53.4867 124.361 53.3249 124.129 53.1973C123.901 53.0697 123.621 53.0059 123.288 53.0059C122.937 53.0059 122.652 53.0605 122.434 53.1699C122.219 53.2747 122.062 53.4092 121.962 53.5732C121.866 53.7373 121.818 53.9105 121.818 54.0928C121.818 54.2295 121.841 54.3525 121.887 54.4619C121.937 54.5667 122.023 54.6647 122.146 54.7559C122.27 54.8424 122.443 54.9245 122.666 55.002C122.889 55.0794 123.174 55.1569 123.521 55.2344C124.127 55.3711 124.626 55.5352 125.018 55.7266C125.41 55.918 125.701 56.1527 125.893 56.4307C126.084 56.7087 126.18 57.0459 126.18 57.4424C126.18 57.766 126.111 58.0622 125.975 58.3311C125.842 58.5999 125.649 58.8324 125.394 59.0283C125.143 59.2197 124.842 59.3701 124.491 59.4795C124.145 59.5843 123.755 59.6367 123.322 59.6367C122.671 59.6367 122.119 59.5205 121.668 59.2881C121.217 59.0557 120.875 58.7549 120.643 58.3857C120.41 58.0166 120.294 57.627 120.294 57.2168H121.565C121.584 57.5632 121.684 57.8389 121.866 58.0439C122.049 58.2445 122.272 58.388 122.536 58.4746C122.8 58.5566 123.062 58.5977 123.322 58.5977C123.669 58.5977 123.958 58.5521 124.19 58.4609C124.427 58.3698 124.607 58.2445 124.73 58.085C124.854 57.9255 124.915 57.7432 124.915 57.5381Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"68.5",width:"265",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M27.4819 81.8013H28.3198C28.7303 81.8013 29.0688 81.7336 29.3354 81.5981C29.6063 81.4585 29.8073 81.2702 29.9385 81.0332C30.0739 80.792 30.1416 80.5212 30.1416 80.2207C30.1416 79.8652 30.0824 79.5669 29.9639 79.3257C29.8454 79.0845 29.6676 78.9025 29.4307 78.7798C29.1937 78.6571 28.8932 78.5957 28.5293 78.5957C28.1992 78.5957 27.9072 78.6613 27.6533 78.7925C27.4036 78.9194 27.2069 79.1014 27.063 79.3384C26.9233 79.5754 26.8535 79.8547 26.8535 80.1763H25.6792C25.6792 79.7065 25.7977 79.2791 26.0347 78.894C26.2716 78.509 26.6038 78.2021 27.0312 77.9736C27.4629 77.7451 27.9622 77.6309 28.5293 77.6309C29.0879 77.6309 29.5767 77.7303 29.9956 77.9292C30.4146 78.1239 30.7404 78.4159 30.9731 78.8052C31.2059 79.1903 31.3223 79.6706 31.3223 80.2461C31.3223 80.4788 31.2673 80.7285 31.1572 80.9951C31.0514 81.2575 30.8843 81.5029 30.6558 81.7314C30.4315 81.96 30.1395 82.1483 29.7798 82.2964C29.4201 82.4403 28.9884 82.5122 28.4849 82.5122H27.4819V81.8013ZM27.4819 82.7661V82.0615H28.4849C29.0731 82.0615 29.5597 82.1313 29.9448 82.271C30.3299 82.4106 30.6325 82.5968 30.8525 82.8296C31.0768 83.0623 31.2334 83.3184 31.3223 83.5977C31.4154 83.8727 31.4619 84.1478 31.4619 84.4229C31.4619 84.8545 31.3879 85.2375 31.2397 85.5718C31.0959 85.9061 30.8906 86.1896 30.624 86.4224C30.3617 86.6551 30.0527 86.8307 29.6973 86.9492C29.3418 87.0677 28.9546 87.127 28.5356 87.127C28.1336 87.127 27.7549 87.0698 27.3994 86.9556C27.0482 86.8413 26.7371 86.6763 26.4663 86.4604C26.1955 86.2404 25.9839 85.9717 25.8315 85.6543C25.6792 85.3327 25.603 84.9666 25.603 84.5562H26.7773C26.7773 84.8778 26.8472 85.1592 26.9868 85.4004C27.1307 85.6416 27.3338 85.8299 27.5962 85.9653C27.8628 86.0965 28.1759 86.1621 28.5356 86.1621C28.8953 86.1621 29.2043 86.1007 29.4624 85.978C29.7248 85.8511 29.9258 85.6606 30.0654 85.4067C30.2093 85.1528 30.2812 84.8333 30.2812 84.4482C30.2812 84.0632 30.2008 83.7479 30.04 83.5024C29.8792 83.2528 29.6507 83.0687 29.3545 82.9502C29.0625 82.8275 28.7176 82.7661 28.3198 82.7661H27.4819Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M261.761 85.7886L264.773 91.2693L267.784 85.7886H261.761Z",fill:"#CBD5E1"}),(0,h.createElement)("path",{d:"M267.784 79.2117L264.773 73.7309L261.761 79.2117L267.784 79.2117Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"16",y:"68.5",width:"265",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),{ToolBarFields:Wa,BlockLabel:Ka,BlockDescription:$a,BlockAdvancedValue:Ya,BlockName:Xa,AdvancedFields:Qa,FieldWrapper:ei,FieldSettingsWrapper:Ci,ValidationToggleGroup:ti,ValidationBlockMessage:li,AdvancedInspectorControl:ri,AttributeHelp:ni}=JetFBComponents,{useIsAdvancedValidation:ai,useUniqueNameOnDuplicate:ii}=JetFBHooks,{__:oi}=wp.i18n,{InspectorControls:si,useBlockProps:ci}=wp.blockEditor,{PanelBody:di,TextControl:mi,__experimentalInputControl:ui,__experimentalNumberControl:pi}=wp.components;let{InputControl:fi,NumberControl:Vi}=wp.components;void 0===fi&&(fi=ui),void 0===Vi&&(Vi=pi);const Hi=JSON.parse('{"apiVersion":3,"name":"jet-forms/number-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","media","image","file"],"textdomain":"jet-form-builder","title":"Number Field","icon":"\\n\\n\\n\\n\\n","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max":{"type":["number","string"],"default":"","jfb":{"rich":true}},"step":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:hi}=wp.i18n,{createBlock:bi}=wp.blocks,{name:Mi,icon:Li=""}=Hi,gi={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Li}}),description:hi("Make a bar in the form that will be filled with numbers or set a range with the Min/Max Value options for the user to choose from.","jet-form-builder"),edit:function(e){const C=ci(),t=ai();ii();const{attributes:l,setAttributes:r,isSelected:n,editProps:{uniqKey:a}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ga):[(0,h.createElement)(Wa,{key:a("ToolBarFields"),...e}),n&&(0,h.createElement)(si,{key:a("InspectorControls")},(0,h.createElement)(di,{title:oi("General","jet-form-builder")},(0,h.createElement)(Ka,null),(0,h.createElement)(Xa,null),(0,h.createElement)($a,null)),(0,h.createElement)(di,{title:oi("Value","jet-form-builder")},(0,h.createElement)(Ya,null)),(0,h.createElement)(Ci,{...e},(0,h.createElement)(ri,{value:l.min,label:oi("Min Value","jet-form-builder"),onChangePreset:e=>r({min:e})},(({instanceId:e})=>(0,h.createElement)(mi,{id:e,className:"jet-fb m-unset",value:l.min,onChange:e=>r({min:e})}))),(0,h.createElement)(ni,{name:"min"}),(0,h.createElement)(ri,{value:l.max,label:oi("Max Value","jet-form-builder"),onChangePreset:e=>r({max:e})},(({instanceId:e})=>(0,h.createElement)(mi,{id:e,className:"jet-fb m-unset",value:l.max,onChange:e=>r({max:e})}))),(0,h.createElement)(ni,{name:"max"}),(0,h.createElement)(ri,{value:l.step,label:oi("Step","jet-form-builder"),onChangePreset:e=>r({step:e})},(({instanceId:e})=>(0,h.createElement)(mi,{id:e,className:"jet-fb m-unset",value:l.step,onChange:e=>r({step:e})}))),(0,h.createElement)(ni,{name:"step"})),(0,h.createElement)(di,{title:oi("Validation","jet-form-builder")},(0,h.createElement)(ti,null),t&&(0,h.createElement)(h.Fragment,null,null!==l.min&&(0,h.createElement)(li,{name:"number_min"}),null!==l.max&&(0,h.createElement)(li,{name:"number_max"}),(0,h.createElement)(li,{name:"empty"}))),(0,h.createElement)(Qa,null)),(0,h.createElement)("div",{...C,key:a("viewBlock")},(0,h.createElement)(ei,{key:a("FieldWrapper"),...e},(0,h.createElement)(Vi,{placeholder:l.placeholder,className:"jet-form-builder__field-preview",key:a("place_holder_block"),min:l.min||0,max:l.max||1e3,step:l.step||1})))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>bi("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/range-field"],transform:e=>bi(Mi,{...e}),priority:0}]}},Zi=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M19.8262 57.0967H17.167V56.0234H19.8262C20.3411 56.0234 20.7581 55.9414 21.0771 55.7773C21.3962 55.6133 21.6286 55.3854 21.7744 55.0938C21.9248 54.8021 22 54.4694 22 54.0957C22 53.7539 21.9248 53.4326 21.7744 53.1318C21.6286 52.8311 21.3962 52.5895 21.0771 52.4072C20.7581 52.2204 20.3411 52.127 19.8262 52.127H17.4746V61H16.1553V51.0469H19.8262C20.5781 51.0469 21.2139 51.1768 21.7334 51.4365C22.2529 51.6963 22.6471 52.0563 22.916 52.5166C23.1849 52.9723 23.3193 53.4941 23.3193 54.082C23.3193 54.7201 23.1849 55.2646 22.916 55.7158C22.6471 56.167 22.2529 56.5111 21.7334 56.748C21.2139 56.9805 20.5781 57.0967 19.8262 57.0967ZM26.0605 54.7656V61H24.7959V53.6035H26.0264L26.0605 54.7656ZM28.3711 53.5625L28.3643 54.7383C28.2594 54.7155 28.1592 54.7018 28.0635 54.6973C27.9723 54.6882 27.8675 54.6836 27.749 54.6836C27.4574 54.6836 27.1999 54.7292 26.9766 54.8203C26.7533 54.9115 26.5641 55.0391 26.4092 55.2031C26.2542 55.3672 26.1312 55.5632 26.04 55.791C25.9535 56.0143 25.8965 56.2604 25.8691 56.5293L25.5137 56.7344C25.5137 56.2878 25.557 55.8685 25.6436 55.4766C25.7347 55.0846 25.8737 54.7383 26.0605 54.4375C26.2474 54.1322 26.4844 53.8952 26.7715 53.7266C27.0632 53.5534 27.4095 53.4668 27.8105 53.4668C27.9017 53.4668 28.0065 53.4782 28.125 53.501C28.2435 53.5192 28.3255 53.5397 28.3711 53.5625ZM30.9141 53.6035V61H29.6426V53.6035H30.9141ZM29.5469 51.6416C29.5469 51.4365 29.6084 51.2633 29.7314 51.1221C29.859 50.9808 30.0459 50.9102 30.292 50.9102C30.5335 50.9102 30.7181 50.9808 30.8457 51.1221C30.9779 51.2633 31.0439 51.4365 31.0439 51.6416C31.0439 51.8376 30.9779 52.0062 30.8457 52.1475C30.7181 52.2842 30.5335 52.3525 30.292 52.3525C30.0459 52.3525 29.859 52.2842 29.7314 52.1475C29.6084 52.0062 29.5469 51.8376 29.5469 51.6416ZM35.9043 60.0977C36.2051 60.0977 36.4831 60.0361 36.7383 59.9131C36.9935 59.79 37.2031 59.6214 37.3672 59.4072C37.5312 59.1885 37.6247 58.9401 37.6475 58.6621H38.8506C38.8278 59.0996 38.6797 59.5075 38.4062 59.8857C38.1374 60.2594 37.7842 60.5625 37.3467 60.7949C36.9092 61.0228 36.4284 61.1367 35.9043 61.1367C35.3483 61.1367 34.863 61.0387 34.4482 60.8428C34.0381 60.6468 33.6963 60.3779 33.4229 60.0361C33.154 59.6943 32.9512 59.3024 32.8145 58.8604C32.6823 58.4137 32.6162 57.9421 32.6162 57.4453V57.1582C32.6162 56.6615 32.6823 56.1921 32.8145 55.75C32.9512 55.3034 33.154 54.9092 33.4229 54.5674C33.6963 54.2256 34.0381 53.9567 34.4482 53.7607C34.863 53.5648 35.3483 53.4668 35.9043 53.4668C36.4831 53.4668 36.9889 53.5853 37.4219 53.8223C37.8548 54.0547 38.1943 54.3737 38.4404 54.7793C38.6911 55.1803 38.8278 55.6361 38.8506 56.1465H37.6475C37.6247 55.8411 37.5381 55.5654 37.3877 55.3193C37.2419 55.0732 37.0413 54.8773 36.7861 54.7314C36.5355 54.5811 36.2415 54.5059 35.9043 54.5059C35.5169 54.5059 35.1911 54.5833 34.9268 54.7383C34.667 54.8887 34.4596 55.0938 34.3047 55.3535C34.1543 55.6087 34.0449 55.8936 33.9766 56.208C33.9128 56.5179 33.8809 56.8346 33.8809 57.1582V57.4453C33.8809 57.7689 33.9128 58.0879 33.9766 58.4023C34.0404 58.7168 34.1475 59.0016 34.2979 59.2568C34.4528 59.512 34.6602 59.7171 34.9199 59.8721C35.1842 60.0225 35.5124 60.0977 35.9043 60.0977ZM43.3418 61.1367C42.8268 61.1367 42.3597 61.0501 41.9404 60.877C41.5257 60.6992 41.168 60.4508 40.8672 60.1318C40.571 59.8128 40.3431 59.4346 40.1836 58.9971C40.0241 58.5596 39.9443 58.0811 39.9443 57.5615V57.2744C39.9443 56.6729 40.0332 56.1374 40.2109 55.668C40.3887 55.194 40.6302 54.793 40.9355 54.4648C41.2409 54.1367 41.5872 53.8883 41.9746 53.7197C42.362 53.5511 42.763 53.4668 43.1777 53.4668C43.7064 53.4668 44.1621 53.5579 44.5449 53.7402C44.9323 53.9225 45.249 54.1777 45.4951 54.5059C45.7412 54.8294 45.9235 55.2122 46.042 55.6543C46.1605 56.0918 46.2197 56.5703 46.2197 57.0898V57.6572H40.6963V56.625H44.9551V56.5293C44.9368 56.2012 44.8685 55.8822 44.75 55.5723C44.6361 55.2624 44.4538 55.0072 44.2031 54.8066C43.9525 54.6061 43.6107 54.5059 43.1777 54.5059C42.8906 54.5059 42.6263 54.5674 42.3848 54.6904C42.1432 54.8089 41.9359 54.9867 41.7627 55.2236C41.5895 55.4606 41.4551 55.75 41.3594 56.0918C41.2637 56.4336 41.2158 56.8278 41.2158 57.2744V57.5615C41.2158 57.9124 41.2637 58.2428 41.3594 58.5527C41.4596 58.8581 41.6032 59.127 41.79 59.3594C41.9814 59.5918 42.2116 59.7741 42.4805 59.9062C42.7539 60.0384 43.0638 60.1045 43.4102 60.1045C43.8568 60.1045 44.235 60.0133 44.5449 59.8311C44.8548 59.6488 45.126 59.4049 45.3584 59.0996L46.124 59.708C45.9645 59.9495 45.7617 60.1797 45.5156 60.3984C45.2695 60.6172 44.9665 60.7949 44.6064 60.9316C44.251 61.0684 43.8294 61.1367 43.3418 61.1367ZM52.4336 55.0254V63.8438H51.1621V53.6035H52.3242L52.4336 55.0254ZM57.417 57.2402V57.3838C57.417 57.9215 57.3532 58.4206 57.2256 58.8809C57.098 59.3366 56.9111 59.7331 56.665 60.0703C56.4235 60.4076 56.125 60.6696 55.7695 60.8564C55.4141 61.0433 55.0062 61.1367 54.5459 61.1367C54.0765 61.1367 53.6618 61.0592 53.3018 60.9043C52.9417 60.7493 52.6364 60.5238 52.3857 60.2275C52.1351 59.9313 51.9346 59.5758 51.7842 59.1611C51.6383 58.7464 51.5381 58.2793 51.4834 57.7598V56.9941C51.5381 56.4473 51.6406 55.9574 51.791 55.5244C51.9414 55.0915 52.1396 54.7223 52.3857 54.417C52.6364 54.1071 52.9395 53.8724 53.2949 53.7129C53.6504 53.5488 54.0605 53.4668 54.5254 53.4668C54.9902 53.4668 55.4027 53.5579 55.7627 53.7402C56.1227 53.918 56.4258 54.1732 56.6719 54.5059C56.918 54.8385 57.1025 55.2373 57.2256 55.7021C57.3532 56.1624 57.417 56.6751 57.417 57.2402ZM56.1455 57.3838V57.2402C56.1455 56.8711 56.1068 56.5247 56.0293 56.2012C55.9518 55.873 55.8311 55.5859 55.667 55.3398C55.5075 55.0892 55.3024 54.8932 55.0518 54.752C54.8011 54.6061 54.5026 54.5332 54.1562 54.5332C53.8372 54.5332 53.5592 54.5879 53.3223 54.6973C53.0898 54.8066 52.8916 54.9548 52.7275 55.1416C52.5635 55.3239 52.429 55.5335 52.3242 55.7705C52.224 56.0029 52.1488 56.2445 52.0986 56.4951V58.2656C52.1898 58.5846 52.3174 58.8854 52.4814 59.168C52.6455 59.446 52.8643 59.6715 53.1377 59.8447C53.4111 60.0133 53.7552 60.0977 54.1699 60.0977C54.5117 60.0977 54.8057 60.027 55.0518 59.8857C55.3024 59.7399 55.5075 59.5417 55.667 59.291C55.8311 59.0404 55.9518 58.7533 56.0293 58.4297C56.1068 58.1016 56.1455 57.7529 56.1455 57.3838ZM62.0996 61.1367C61.5846 61.1367 61.1175 61.0501 60.6982 60.877C60.2835 60.6992 59.9258 60.4508 59.625 60.1318C59.3288 59.8128 59.1009 59.4346 58.9414 58.9971C58.7819 58.5596 58.7021 58.0811 58.7021 57.5615V57.2744C58.7021 56.6729 58.791 56.1374 58.9688 55.668C59.1465 55.194 59.388 54.793 59.6934 54.4648C59.9987 54.1367 60.3451 53.8883 60.7324 53.7197C61.1198 53.5511 61.5208 53.4668 61.9355 53.4668C62.4642 53.4668 62.9199 53.5579 63.3027 53.7402C63.6901 53.9225 64.0068 54.1777 64.2529 54.5059C64.499 54.8294 64.6813 55.2122 64.7998 55.6543C64.9183 56.0918 64.9775 56.5703 64.9775 57.0898V57.6572H59.4541V56.625H63.7129V56.5293C63.6947 56.2012 63.6263 55.8822 63.5078 55.5723C63.3939 55.2624 63.2116 55.0072 62.9609 54.8066C62.7103 54.6061 62.3685 54.5059 61.9355 54.5059C61.6484 54.5059 61.3841 54.5674 61.1426 54.6904C60.901 54.8089 60.6937 54.9867 60.5205 55.2236C60.3473 55.4606 60.2129 55.75 60.1172 56.0918C60.0215 56.4336 59.9736 56.8278 59.9736 57.2744V57.5615C59.9736 57.9124 60.0215 58.2428 60.1172 58.5527C60.2174 58.8581 60.361 59.127 60.5479 59.3594C60.7393 59.5918 60.9694 59.7741 61.2383 59.9062C61.5117 60.0384 61.8216 60.1045 62.168 60.1045C62.6146 60.1045 62.9928 60.0133 63.3027 59.8311C63.6126 59.6488 63.8838 59.4049 64.1162 59.0996L64.8818 59.708C64.7223 59.9495 64.5195 60.1797 64.2734 60.3984C64.0273 60.6172 63.7243 60.7949 63.3643 60.9316C63.0088 61.0684 62.5872 61.1367 62.0996 61.1367ZM67.7188 54.7656V61H66.4541V53.6035H67.6846L67.7188 54.7656ZM70.0293 53.5625L70.0225 54.7383C69.9176 54.7155 69.8174 54.7018 69.7217 54.6973C69.6305 54.6882 69.5257 54.6836 69.4072 54.6836C69.1156 54.6836 68.8581 54.7292 68.6348 54.8203C68.4115 54.9115 68.2223 55.0391 68.0674 55.2031C67.9124 55.3672 67.7894 55.5632 67.6982 55.791C67.6117 56.0143 67.5547 56.2604 67.5273 56.5293L67.1719 56.7344C67.1719 56.2878 67.2152 55.8685 67.3018 55.4766C67.3929 55.0846 67.5319 54.7383 67.7188 54.4375C67.9056 54.1322 68.1426 53.8952 68.4297 53.7266C68.7214 53.5534 69.0677 53.4668 69.4688 53.4668C69.5599 53.4668 69.6647 53.4782 69.7832 53.501C69.9017 53.5192 69.9837 53.5397 70.0293 53.5625ZM75.9355 55.1826V61H74.6709V53.6035H75.8672L75.9355 55.1826ZM75.6348 57.0215L75.1084 57.001C75.113 56.4951 75.1882 56.028 75.334 55.5996C75.4798 55.1667 75.6849 54.7907 75.9492 54.4717C76.2135 54.1527 76.528 53.9066 76.8926 53.7334C77.2617 53.5557 77.6696 53.4668 78.1162 53.4668C78.4808 53.4668 78.8089 53.5169 79.1006 53.6172C79.3923 53.7129 79.6406 53.8678 79.8457 54.082C80.0553 54.2962 80.2148 54.5742 80.3242 54.916C80.4336 55.2533 80.4883 55.6657 80.4883 56.1533V61H79.2168V56.1396C79.2168 55.7523 79.1598 55.4424 79.0459 55.21C78.932 54.973 78.7656 54.8021 78.5469 54.6973C78.3281 54.5879 78.0592 54.5332 77.7402 54.5332C77.4258 54.5332 77.1387 54.5993 76.8789 54.7314C76.6237 54.8636 76.4027 55.0459 76.2158 55.2783C76.0335 55.5107 75.89 55.7773 75.7852 56.0781C75.6849 56.3743 75.6348 56.6888 75.6348 57.0215ZM83.7832 53.6035V61H82.5117V53.6035H83.7832ZM82.416 51.6416C82.416 51.4365 82.4775 51.2633 82.6006 51.1221C82.7282 50.9808 82.915 50.9102 83.1611 50.9102C83.4027 50.9102 83.5872 50.9808 83.7148 51.1221C83.847 51.2633 83.9131 51.4365 83.9131 51.6416C83.9131 51.8376 83.847 52.0062 83.7148 52.1475C83.5872 52.2842 83.4027 52.3525 83.1611 52.3525C82.915 52.3525 82.7282 52.2842 82.6006 52.1475C82.4775 52.0062 82.416 51.8376 82.416 51.6416ZM90.6055 53.6035H91.7539V60.8428C91.7539 61.4945 91.6217 62.0505 91.3574 62.5107C91.0931 62.971 90.724 63.3197 90.25 63.5566C89.7806 63.7982 89.2383 63.9189 88.623 63.9189C88.3678 63.9189 88.0671 63.8779 87.7207 63.7959C87.3789 63.7184 87.0417 63.584 86.709 63.3926C86.3809 63.2057 86.1051 62.9528 85.8818 62.6338L86.5449 61.8818C86.8548 62.2555 87.1784 62.5153 87.5156 62.6611C87.8574 62.807 88.1947 62.8799 88.5273 62.8799C88.9284 62.8799 89.2747 62.8047 89.5664 62.6543C89.8581 62.5039 90.0837 62.2806 90.2432 61.9844C90.4072 61.6927 90.4893 61.3327 90.4893 60.9043V55.2305L90.6055 53.6035ZM85.5127 57.3838V57.2402C85.5127 56.6751 85.5788 56.1624 85.7109 55.7021C85.8477 55.2373 86.0413 54.8385 86.292 54.5059C86.5472 54.1732 86.8548 53.918 87.2148 53.7402C87.5749 53.5579 87.9805 53.4668 88.4316 53.4668C88.8965 53.4668 89.3021 53.5488 89.6484 53.7129C89.9993 53.8724 90.2956 54.1071 90.5371 54.417C90.7832 54.7223 90.9769 55.0915 91.1182 55.5244C91.2594 55.9574 91.3574 56.4473 91.4121 56.9941V57.623C91.362 58.1654 91.264 58.653 91.1182 59.0859C90.9769 59.5189 90.7832 59.888 90.5371 60.1934C90.2956 60.4987 89.9993 60.7334 89.6484 60.8975C89.2975 61.057 88.8874 61.1367 88.418 61.1367C87.9759 61.1367 87.5749 61.0433 87.2148 60.8564C86.8594 60.6696 86.554 60.4076 86.2988 60.0703C86.0436 59.7331 85.8477 59.3366 85.7109 58.8809C85.5788 58.4206 85.5127 57.9215 85.5127 57.3838ZM86.7773 57.2402V57.3838C86.7773 57.7529 86.8138 58.0993 86.8867 58.4229C86.9642 58.7464 87.0804 59.0312 87.2354 59.2773C87.3949 59.5234 87.5977 59.7171 87.8438 59.8584C88.0898 59.9951 88.3838 60.0635 88.7256 60.0635C89.1449 60.0635 89.4912 59.9746 89.7646 59.7969C90.0381 59.6191 90.2546 59.3844 90.4141 59.0928C90.5781 58.8011 90.7057 58.4844 90.7969 58.1426V56.4951C90.7467 56.2445 90.6693 56.0029 90.5645 55.7705C90.4642 55.5335 90.332 55.3239 90.168 55.1416C90.0085 54.9548 89.8102 54.8066 89.5732 54.6973C89.3363 54.5879 89.0583 54.5332 88.7393 54.5332C88.3929 54.5332 88.0944 54.6061 87.8438 54.752C87.5977 54.8932 87.3949 55.0892 87.2354 55.3398C87.0804 55.5859 86.9642 55.873 86.8867 56.2012C86.8138 56.5247 86.7773 56.8711 86.7773 57.2402ZM94.9395 50.5V61H93.6748V50.5H94.9395ZM94.6387 57.0215L94.1123 57.001C94.1169 56.4951 94.1921 56.028 94.3379 55.5996C94.4837 55.1667 94.6888 54.7907 94.9531 54.4717C95.2174 54.1527 95.5319 53.9066 95.8965 53.7334C96.2656 53.5557 96.6735 53.4668 97.1201 53.4668C97.4847 53.4668 97.8128 53.5169 98.1045 53.6172C98.3962 53.7129 98.6445 53.8678 98.8496 54.082C99.0592 54.2962 99.2188 54.5742 99.3281 54.916C99.4375 55.2533 99.4922 55.6657 99.4922 56.1533V61H98.2207V56.1396C98.2207 55.7523 98.1637 55.4424 98.0498 55.21C97.9359 54.973 97.7695 54.8021 97.5508 54.6973C97.332 54.5879 97.0632 54.5332 96.7441 54.5332C96.4297 54.5332 96.1426 54.5993 95.8828 54.7314C95.6276 54.8636 95.4066 55.0459 95.2197 55.2783C95.0374 55.5107 94.8939 55.7773 94.7891 56.0781C94.6888 56.3743 94.6387 56.6888 94.6387 57.0215ZM104.482 53.6035V54.5742H100.483V53.6035H104.482ZM101.837 51.8057H103.102V59.168C103.102 59.4186 103.14 59.6077 103.218 59.7354C103.295 59.863 103.396 59.9473 103.519 59.9883C103.642 60.0293 103.774 60.0498 103.915 60.0498C104.02 60.0498 104.129 60.0407 104.243 60.0225C104.362 59.9997 104.451 59.9814 104.51 59.9678L104.517 61C104.416 61.0319 104.284 61.0615 104.12 61.0889C103.961 61.1208 103.767 61.1367 103.539 61.1367C103.229 61.1367 102.944 61.0752 102.685 60.9521C102.425 60.8291 102.217 60.624 102.062 60.3369C101.912 60.0452 101.837 59.6533 101.837 59.1611V51.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M19.8574 78.4336V80.5186H18.832V78.4336H19.8574ZM19.7344 89.5967V91.4219H18.7158V89.5967H19.7344ZM21.1016 87.4365C21.1016 87.1631 21.04 86.917 20.917 86.6982C20.7939 86.4795 20.5911 86.279 20.3086 86.0967C20.026 85.9144 19.6478 85.7458 19.1738 85.5908C18.5996 85.4131 18.1029 85.1966 17.6836 84.9414C17.2689 84.6862 16.9476 84.3695 16.7197 83.9912C16.4964 83.613 16.3848 83.1549 16.3848 82.6172C16.3848 82.0566 16.5055 81.5736 16.7471 81.168C16.9886 80.7624 17.3304 80.4502 17.7725 80.2314C18.2145 80.0127 18.734 79.9033 19.3311 79.9033C19.7959 79.9033 20.2106 79.974 20.5752 80.1152C20.9398 80.252 21.2474 80.457 21.498 80.7305C21.7533 81.0039 21.9469 81.3389 22.0791 81.7354C22.2158 82.1318 22.2842 82.5898 22.2842 83.1094H21.0264C21.0264 82.804 20.9899 82.5238 20.917 82.2686C20.8441 82.0133 20.7347 81.7923 20.5889 81.6055C20.443 81.4141 20.2653 81.2682 20.0557 81.168C19.846 81.0632 19.6045 81.0107 19.3311 81.0107C18.9482 81.0107 18.6315 81.0768 18.3809 81.209C18.1348 81.3411 17.9525 81.528 17.834 81.7695C17.7155 82.0065 17.6562 82.2822 17.6562 82.5967C17.6562 82.8883 17.7155 83.1436 17.834 83.3623C17.9525 83.5811 18.153 83.7793 18.4355 83.957C18.7227 84.1302 19.1169 84.3011 19.6182 84.4697C20.2061 84.6566 20.7051 84.8776 21.1152 85.1328C21.5254 85.3835 21.8376 85.6934 22.0518 86.0625C22.266 86.4271 22.373 86.8805 22.373 87.4229C22.373 88.0107 22.2409 88.5075 21.9766 88.9131C21.7122 89.3141 21.3408 89.6195 20.8623 89.8291C20.3838 90.0387 19.8232 90.1436 19.1807 90.1436C18.7933 90.1436 18.4105 90.0911 18.0322 89.9863C17.654 89.8815 17.3122 89.7106 17.0068 89.4736C16.7015 89.2321 16.4577 88.9154 16.2754 88.5234C16.0931 88.127 16.002 87.6416 16.002 87.0674H17.2734C17.2734 87.4548 17.3281 87.776 17.4375 88.0312C17.5514 88.2819 17.7018 88.4824 17.8887 88.6328C18.0755 88.7786 18.2806 88.8835 18.5039 88.9473C18.7318 89.0065 18.9574 89.0361 19.1807 89.0361C19.5908 89.0361 19.9372 88.9723 20.2197 88.8447C20.5068 88.7126 20.7256 88.5257 20.876 88.2842C21.0264 88.0426 21.1016 87.7601 21.1016 87.4365ZM30.2002 84.2305V85.748C30.2002 86.5638 30.1273 87.252 29.9814 87.8125C29.8356 88.373 29.626 88.8242 29.3525 89.166C29.0791 89.5078 28.7487 89.7562 28.3613 89.9111C27.9785 90.0615 27.5456 90.1367 27.0625 90.1367C26.6797 90.1367 26.3265 90.0889 26.0029 89.9932C25.6794 89.8975 25.3877 89.7448 25.1279 89.5352C24.8727 89.321 24.654 89.043 24.4717 88.7012C24.2894 88.3594 24.1504 87.9447 24.0547 87.457C23.959 86.9694 23.9111 86.3997 23.9111 85.748V84.2305C23.9111 83.4147 23.984 82.7311 24.1299 82.1797C24.2803 81.6283 24.4922 81.1862 24.7656 80.8535C25.0391 80.5163 25.3672 80.2747 25.75 80.1289C26.1374 79.9831 26.5703 79.9102 27.0488 79.9102C27.4362 79.9102 27.7917 79.958 28.1152 80.0537C28.4434 80.1449 28.735 80.293 28.9902 80.498C29.2454 80.6986 29.4619 80.9674 29.6396 81.3047C29.8219 81.6374 29.9609 82.0452 30.0566 82.5283C30.1523 83.0114 30.2002 83.5788 30.2002 84.2305ZM28.9287 85.9531V84.0186C28.9287 83.5719 28.9014 83.18 28.8467 82.8428C28.7965 82.501 28.7214 82.2093 28.6211 81.9678C28.5208 81.7262 28.3932 81.5303 28.2383 81.3799C28.0879 81.2295 27.9124 81.1201 27.7119 81.0518C27.516 80.9788 27.2949 80.9424 27.0488 80.9424C26.748 80.9424 26.4814 80.9993 26.249 81.1133C26.0166 81.2227 25.8206 81.3981 25.6611 81.6396C25.5062 81.8812 25.3877 82.1979 25.3057 82.5898C25.2236 82.9818 25.1826 83.458 25.1826 84.0186V85.9531C25.1826 86.3997 25.2077 86.7939 25.2578 87.1357C25.3125 87.4775 25.3923 87.7738 25.4971 88.0244C25.6019 88.2705 25.7295 88.4733 25.8799 88.6328C26.0303 88.7923 26.2035 88.9108 26.3994 88.9883C26.5999 89.0612 26.821 89.0977 27.0625 89.0977C27.3724 89.0977 27.6436 89.0384 27.876 88.9199C28.1084 88.8014 28.3021 88.6169 28.457 88.3662C28.6165 88.111 28.735 87.7852 28.8125 87.3887C28.89 86.9876 28.9287 86.5091 28.9287 85.9531Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"41",y:"83.5",width:"200",height:"2",rx:"1",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"41",y:"83.5",width:"122",height:"2",rx:"1",fill:"#4272F9"}),(0,h.createElement)("g",{filter:"url(#filter0_d_76_1271)"},(0,h.createElement)("circle",{cx:"163",cy:"84.5",r:"11",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M256.107 78.4336V80.5186H255.082V78.4336H256.107ZM255.984 89.5967V91.4219H254.966V89.5967H255.984ZM257.352 87.4365C257.352 87.1631 257.29 86.917 257.167 86.6982C257.044 86.4795 256.841 86.279 256.559 86.0967C256.276 85.9144 255.898 85.7458 255.424 85.5908C254.85 85.4131 254.353 85.1966 253.934 84.9414C253.519 84.6862 253.198 84.3695 252.97 83.9912C252.746 83.613 252.635 83.1549 252.635 82.6172C252.635 82.0566 252.756 81.5736 252.997 81.168C253.239 80.7624 253.58 80.4502 254.022 80.2314C254.465 80.0127 254.984 79.9033 255.581 79.9033C256.046 79.9033 256.461 79.974 256.825 80.1152C257.19 80.252 257.497 80.457 257.748 80.7305C258.003 81.0039 258.197 81.3389 258.329 81.7354C258.466 82.1318 258.534 82.5898 258.534 83.1094H257.276C257.276 82.804 257.24 82.5238 257.167 82.2686C257.094 82.0133 256.985 81.7923 256.839 81.6055C256.693 81.4141 256.515 81.2682 256.306 81.168C256.096 81.0632 255.854 81.0107 255.581 81.0107C255.198 81.0107 254.882 81.0768 254.631 81.209C254.385 81.3411 254.202 81.528 254.084 81.7695C253.965 82.0065 253.906 82.2822 253.906 82.5967C253.906 82.8883 253.965 83.1436 254.084 83.3623C254.202 83.5811 254.403 83.7793 254.686 83.957C254.973 84.1302 255.367 84.3011 255.868 84.4697C256.456 84.6566 256.955 84.8776 257.365 85.1328C257.775 85.3835 258.088 85.6934 258.302 86.0625C258.516 86.4271 258.623 86.8805 258.623 87.4229C258.623 88.0107 258.491 88.5075 258.227 88.9131C257.962 89.3141 257.591 89.6195 257.112 89.8291C256.634 90.0387 256.073 90.1436 255.431 90.1436C255.043 90.1436 254.66 90.0911 254.282 89.9863C253.904 89.8815 253.562 89.7106 253.257 89.4736C252.951 89.2321 252.708 88.9154 252.525 88.5234C252.343 88.127 252.252 87.6416 252.252 87.0674H253.523C253.523 87.4548 253.578 87.776 253.688 88.0312C253.801 88.2819 253.952 88.4824 254.139 88.6328C254.326 88.7786 254.531 88.8835 254.754 88.9473C254.982 89.0065 255.207 89.0361 255.431 89.0361C255.841 89.0361 256.187 88.9723 256.47 88.8447C256.757 88.7126 256.976 88.5257 257.126 88.2842C257.276 88.0426 257.352 87.7601 257.352 87.4365ZM266.724 88.9609V90H260.209V89.0908L263.47 85.4609C263.871 85.0143 264.181 84.6361 264.399 84.3262C264.623 84.0117 264.778 83.7314 264.864 83.4854C264.955 83.2347 265.001 82.9795 265.001 82.7197C265.001 82.3916 264.933 82.0954 264.796 81.8311C264.664 81.5622 264.468 81.348 264.208 81.1885C263.948 81.029 263.634 80.9492 263.265 80.9492C262.823 80.9492 262.453 81.0358 262.157 81.209C261.866 81.3776 261.647 81.6146 261.501 81.9199C261.355 82.2253 261.282 82.5762 261.282 82.9727H260.018C260.018 82.4121 260.141 81.8994 260.387 81.4346C260.633 80.9697 260.997 80.6006 261.48 80.3271C261.964 80.0492 262.558 79.9102 263.265 79.9102C263.894 79.9102 264.431 80.0218 264.878 80.2451C265.325 80.4639 265.666 80.7738 265.903 81.1748C266.145 81.5713 266.266 82.0361 266.266 82.5693C266.266 82.861 266.215 83.1572 266.115 83.458C266.02 83.7542 265.885 84.0505 265.712 84.3467C265.543 84.6429 265.345 84.9346 265.117 85.2217C264.894 85.5088 264.655 85.7913 264.399 86.0693L261.733 88.9609H266.724ZM272.233 79.9922V90H270.969V81.5713L268.419 82.501V81.3594L272.035 79.9922H272.233ZM282.2 84.2305V85.748C282.2 86.5638 282.127 87.252 281.981 87.8125C281.836 88.373 281.626 88.8242 281.353 89.166C281.079 89.5078 280.749 89.7562 280.361 89.9111C279.979 90.0615 279.546 90.1367 279.062 90.1367C278.68 90.1367 278.326 90.0889 278.003 89.9932C277.679 89.8975 277.388 89.7448 277.128 89.5352C276.873 89.321 276.654 89.043 276.472 88.7012C276.289 88.3594 276.15 87.9447 276.055 87.457C275.959 86.9694 275.911 86.3997 275.911 85.748V84.2305C275.911 83.4147 275.984 82.7311 276.13 82.1797C276.28 81.6283 276.492 81.1862 276.766 80.8535C277.039 80.5163 277.367 80.2747 277.75 80.1289C278.137 79.9831 278.57 79.9102 279.049 79.9102C279.436 79.9102 279.792 79.958 280.115 80.0537C280.443 80.1449 280.735 80.293 280.99 80.498C281.245 80.6986 281.462 80.9674 281.64 81.3047C281.822 81.6374 281.961 82.0452 282.057 82.5283C282.152 83.0114 282.2 83.5788 282.2 84.2305ZM280.929 85.9531V84.0186C280.929 83.5719 280.901 83.18 280.847 82.8428C280.797 82.501 280.721 82.2093 280.621 81.9678C280.521 81.7262 280.393 81.5303 280.238 81.3799C280.088 81.2295 279.912 81.1201 279.712 81.0518C279.516 80.9788 279.295 80.9424 279.049 80.9424C278.748 80.9424 278.481 80.9993 278.249 81.1133C278.017 81.2227 277.821 81.3981 277.661 81.6396C277.506 81.8812 277.388 82.1979 277.306 82.5898C277.224 82.9818 277.183 83.458 277.183 84.0186V85.9531C277.183 86.3997 277.208 86.7939 277.258 87.1357C277.312 87.4775 277.392 87.7738 277.497 88.0244C277.602 88.2705 277.729 88.4733 277.88 88.6328C278.03 88.7923 278.203 88.9108 278.399 88.9883C278.6 89.0612 278.821 89.0977 279.062 89.0977C279.372 89.0977 279.644 89.0384 279.876 88.9199C280.108 88.8014 280.302 88.6169 280.457 88.3662C280.617 88.111 280.735 87.7852 280.812 87.3887C280.89 86.9876 280.929 86.5091 280.929 85.9531Z",fill:"#0F172A"}),(0,h.createElement)("defs",null,(0,h.createElement)("filter",{id:"filter0_d_76_1271",x:"140",y:"65.5",width:"46",height:"46",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB"},(0,h.createElement)("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),(0,h.createElement)("feColorMatrix",{in:"SourceAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",result:"hardAlpha"}),(0,h.createElement)("feOffset",{dy:"4"}),(0,h.createElement)("feGaussianBlur",{stdDeviation:"6"}),(0,h.createElement)("feColorMatrix",{type:"matrix",values:"0 0 0 0 0.258824 0 0 0 0 0.447059 0 0 0 0 0.976471 0 0 0 0.5 0"}),(0,h.createElement)("feBlend",{mode:"normal",in2:"BackgroundImageFix",result:"effect1_dropShadow_76_1271"}),(0,h.createElement)("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_dropShadow_76_1271",result:"shape"})))),{BlockLabel:yi,BlockDescription:Ei,BlockAdvancedValue:wi,BlockName:vi,AdvancedFields:_i,FieldWrapper:ki,ValidationToggleGroup:ji,ValidationBlockMessage:xi,AdvancedInspectorControl:Fi,AttributeHelp:Bi}=JetFBComponents,{useIsAdvancedValidation:Ai,useUniqueNameOnDuplicate:Pi}=JetFBHooks,{__:Si}=wp.i18n,{InspectorControls:Ni,useBlockProps:Ii}=wp.blockEditor,{TextControl:Ti,PanelBody:Oi,__experimentalNumberControl:Ji,__experimentalInputControl:Ri}=wp.components,{useState:qi}=wp.element;let{NumberControl:Di,InputControl:zi}=wp.components;void 0===Di&&(Di=Ji),void 0===zi&&(zi=Ri);const Ui=JSON.parse('{"apiVersion":3,"name":"jet-forms/range-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","range"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Range Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max":{"type":["number","string"],"default":"","jfb":{"rich":true}},"step":{"type":["number","string"],"default":"","jfb":{"rich":true}},"prefix":{"type":"string","default":"","jfb":{"rich":true}},"suffix":{"type":"string","default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Gi}=wp.i18n,{createBlock:Wi}=wp.blocks,{name:Ki,icon:$i=""}=Ui,Yi={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:$i}}),description:Gi("Insert a range with a slider in the form for the users to move it. So the visitors can set the desired price range for products they want to buy.","jet-form-builder"),edit:function(e){const C=Ii(),t=Ai();Pi();const[l,r]=qi(50),{attributes:n,setAttributes:a,editProps:{uniqKey:i,attrHelp:o}}=e;return n.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Zi):[e.isSelected&&(0,h.createElement)(Ni,{key:i("InspectorControls")},(0,h.createElement)(Oi,{title:Si("General","jet-form-builder")},(0,h.createElement)(yi,null),(0,h.createElement)(vi,null),(0,h.createElement)(Ei,null)),(0,h.createElement)(Oi,{title:Si("Value","jet-form-builder")},(0,h.createElement)(wi,null)),(0,h.createElement)(Oi,{title:Si("Field","jet-form-builder"),key:i("PanelBody")},(0,h.createElement)(Fi,{value:n.min,label:Si("Min Value","jet-form-builder"),onChangePreset:e=>a({min:e})},(({instanceId:e})=>(0,h.createElement)(Ti,{id:e,className:"jet-fb m-unset",value:n.min,onChange:e=>a({min:e})}))),(0,h.createElement)(Bi,{name:"min"}),(0,h.createElement)(Fi,{value:n.max,label:Si("Max Value","jet-form-builder"),onChangePreset:e=>a({max:e})},(({instanceId:e})=>(0,h.createElement)(Ti,{id:e,className:"jet-fb m-unset",value:n.max,onChange:e=>a({max:e})}))),(0,h.createElement)(Bi,{name:"max"}),(0,h.createElement)(Fi,{value:n.step,label:Si("Step","jet-form-builder"),onChangePreset:e=>a({step:e})},(({instanceId:e})=>(0,h.createElement)(Ti,{id:e,className:"jet-fb m-unset",value:n.step,onChange:e=>a({step:e})}))),(0,h.createElement)(Bi,{name:"step"}),(0,h.createElement)(Ti,{key:"prefix",label:Si("Value prefix","jet-form-builder"),value:n.prefix,help:o("prefix_suffix"),onChange:e=>{a({prefix:e})}}),(0,h.createElement)(Ti,{key:"suffix",label:Si("Value suffix","jet-form-builder"),value:n.suffix,help:o("prefix_suffix"),onChange:e=>{a({suffix:e})}})),(0,h.createElement)(Oi,{title:Si("Validation","jet-form-builder")},(0,h.createElement)(ji,null),t&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(xi,{name:"empty"}),(0,h.createElement)(xi,{name:"number_max"}),(0,h.createElement)(xi,{name:"number_min"}))),(0,h.createElement)(_i,{key:i("AdvancedFields"),...e})),(0,h.createElement)("div",{...C,key:i("viewBlock")},(0,h.createElement)(ki,{key:i("FieldWrapper"),wrapClasses:["range-wrap"],...e},(0,h.createElement)("div",{className:"range-flex-wrap jet-form-builder__field-preview"},(0,h.createElement)(zi,{key:i("placeholder_block"),type:"range",min:n.min||0,max:n.max||100,step:n.step||1,onChange:r}),(0,h.createElement)("div",{className:"jet-form-builder__field-value"},(0,h.createElement)("span",{className:"jet-form-builder__field-value-prefix"},n.prefix),(0,h.createElement)("span",null,l),(0,h.createElement)("span",{className:"jet-form-builder__field-value-suffix"},n.suffix)))))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Wi("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/number-field"],transform:e=>Wi(Ki,{...e}),priority:0}]}},Xi=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"70",y:"44",width:"158",height:"56",rx:"28",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M99.8051 79.28C99.2384 79.28 98.6551 79.2233 98.0551 79.11C97.4551 79.0033 96.8984 78.8733 96.3851 78.72C95.8717 78.56 95.4651 78.4067 95.1651 78.26L95.4651 75.54C95.9317 75.7667 96.4184 75.9767 96.9251 76.17C97.4317 76.3633 97.9517 76.52 98.4851 76.64C99.0184 76.76 99.5584 76.82 100.105 76.82C100.785 76.82 101.332 76.6867 101.745 76.42C102.158 76.1533 102.365 75.7467 102.365 75.2C102.365 74.78 102.248 74.4433 102.015 74.19C101.782 73.93 101.425 73.7 100.945 73.5C100.465 73.2933 99.8517 73.06 99.1051 72.8C98.3584 72.54 97.6884 72.2467 97.0951 71.92C96.5017 71.5867 96.0317 71.1667 95.6851 70.66C95.3384 70.1533 95.1651 69.5067 95.1651 68.72C95.1651 67.9467 95.3551 67.26 95.7351 66.66C96.1151 66.0533 96.6817 65.58 97.4351 65.24C98.1951 64.8933 99.1384 64.72 100.265 64.72C101.118 64.72 101.932 64.8167 102.705 65.01C103.478 65.1967 104.138 65.4 104.685 65.62L104.425 68.24C103.638 67.8867 102.898 67.62 102.205 67.44C101.518 67.2533 100.818 67.16 100.105 67.16C99.3584 67.16 98.7817 67.2833 98.3751 67.53C97.9684 67.7767 97.7651 68.1467 97.7651 68.64C97.7651 69.0333 97.8784 69.35 98.1051 69.59C98.3317 69.83 98.6551 70.0367 99.0751 70.21C99.4951 70.3767 99.9984 70.5533 100.585 70.74C101.598 71.06 102.448 71.4133 103.135 71.8C103.828 72.18 104.348 72.6433 104.695 73.19C105.048 73.73 105.225 74.4 105.225 75.2C105.225 75.6 105.162 76.0367 105.035 76.51C104.908 76.9767 104.658 77.42 104.285 77.84C103.912 78.26 103.365 78.6067 102.645 78.88C101.932 79.1467 100.985 79.28 99.8051 79.28ZM110.989 79.2C109.949 79.2 109.119 78.9933 108.499 78.58C107.879 78.1667 107.433 77.6 107.159 76.88C106.886 76.1533 106.749 75.32 106.749 74.38V69H109.229V74.38C109.229 75.3067 109.383 75.9967 109.689 76.45C110.003 76.8967 110.509 77.12 111.209 77.12C111.769 77.12 112.233 76.9867 112.599 76.72C112.973 76.4533 113.283 76.08 113.529 75.6L113.089 76.86V69H115.569V79H113.249L113.129 77.26L113.669 77.96C113.429 78.2667 113.049 78.55 112.529 78.81C112.016 79.07 111.503 79.2 110.989 79.2ZM123.085 79.2C122.325 79.2 121.668 79.0767 121.115 78.83C120.561 78.5833 120.045 78.2467 119.565 77.82L120.305 77.3L120.185 79H117.865V64H120.345V70.66L119.745 70.28C120.185 69.8267 120.675 69.4733 121.215 69.22C121.761 68.9667 122.385 68.84 123.085 68.84C124.065 68.84 124.888 69.0767 125.555 69.55C126.221 70.0233 126.725 70.6533 127.065 71.44C127.411 72.2267 127.585 73.0867 127.585 74.02C127.585 74.9533 127.411 75.8133 127.065 76.6C126.725 77.3867 126.221 78.0167 125.555 78.49C124.888 78.9633 124.065 79.2 123.085 79.2ZM122.725 77.16C123.218 77.16 123.638 77.0267 123.985 76.76C124.331 76.4933 124.595 76.1267 124.775 75.66C124.955 75.1867 125.045 74.64 125.045 74.02C125.045 73.4 124.955 72.8567 124.775 72.39C124.595 71.9167 124.331 71.5467 123.985 71.28C123.638 71.0133 123.218 70.88 122.725 70.88C122.145 70.88 121.671 71.0133 121.305 71.28C120.938 71.5467 120.665 71.9167 120.485 72.39C120.311 72.8567 120.225 73.4 120.225 74.02C120.225 74.64 120.311 75.1867 120.485 75.66C120.665 76.1267 120.938 76.4933 121.305 76.76C121.671 77.0267 122.145 77.16 122.725 77.16ZM129.31 79V69H131.43L131.59 70.46L131.23 70.02C131.61 69.72 132.064 69.45 132.59 69.21C133.124 68.9633 133.744 68.84 134.45 68.84C134.984 68.84 135.454 68.92 135.86 69.08C136.274 69.2333 136.627 69.4567 136.92 69.75C137.214 70.0367 137.45 70.38 137.63 70.78L137.03 70.64C137.35 70.0667 137.817 69.6233 138.43 69.31C139.05 68.9967 139.75 68.84 140.53 68.84C141.45 68.84 142.2 69.03 142.78 69.41C143.36 69.79 143.787 70.3267 144.06 71.02C144.334 71.7067 144.47 72.5133 144.47 73.44V79H141.99V73.62C141.99 72.6867 141.844 71.9967 141.55 71.55C141.264 71.1033 140.784 70.88 140.11 70.88C139.777 70.88 139.484 70.94 139.23 71.06C138.984 71.1733 138.777 71.3433 138.61 71.57C138.45 71.79 138.33 72.06 138.25 72.38C138.17 72.6933 138.13 73.0467 138.13 73.44V79H135.65V73.62C135.65 73 135.584 72.4867 135.45 72.08C135.324 71.6733 135.117 71.3733 134.83 71.18C134.55 70.98 134.184 70.88 133.73 70.88C133.15 70.88 132.674 71.0167 132.3 71.29C131.934 71.5567 131.61 71.92 131.33 72.38L131.79 71.04V79H129.31ZM146.693 79V69H149.173V79H146.693ZM146.693 67.48V65H149.173V67.48H146.693ZM154.758 79.2C154.131 79.2 153.621 79.0733 153.228 78.82C152.835 78.56 152.545 78.23 152.358 77.83C152.171 77.43 152.078 77.0133 152.078 76.58V71.04H150.658L150.878 69H152.078V66.8L154.558 66.54V69H156.758V71.04H154.558V75.56C154.558 76.0667 154.588 76.4333 154.648 76.66C154.708 76.88 154.845 77.02 155.058 77.08C155.271 77.1333 155.611 77.16 156.078 77.16H156.758L156.538 79.2H154.758ZM163.465 79V71.04H162.045L162.265 69H163.465V66.88C163.465 66 163.725 65.3 164.245 64.78C164.772 64.26 165.525 64 166.505 64C166.825 64 167.118 64.0167 167.385 64.05C167.658 64.0833 167.905 64.1267 168.125 64.18L167.905 66.18C167.805 66.1467 167.695 66.1233 167.575 66.11C167.455 66.09 167.305 66.08 167.125 66.08C166.765 66.08 166.478 66.1767 166.265 66.37C166.052 66.5633 165.945 66.88 165.945 67.32V69H168.145V71.04H165.945V79H163.465ZM174.104 79.2C173.018 79.2 172.091 78.9633 171.324 78.49C170.558 78.0167 169.971 77.3867 169.564 76.6C169.164 75.8133 168.964 74.9533 168.964 74.02C168.964 73.08 169.164 72.2133 169.564 71.42C169.971 70.6267 170.558 69.9933 171.324 69.52C172.091 69.04 173.018 68.8 174.104 68.8C175.191 68.8 176.118 69.04 176.884 69.52C177.651 69.9933 178.234 70.6267 178.634 71.42C179.041 72.2133 179.244 73.08 179.244 74.02C179.244 74.9533 179.041 75.8133 178.634 76.6C178.234 77.3867 177.651 78.0167 176.884 78.49C176.118 78.9633 175.191 79.2 174.104 79.2ZM174.104 77.16C174.938 77.16 175.578 76.87 176.024 76.29C176.478 75.7033 176.704 74.9467 176.704 74.02C176.704 73.08 176.478 72.3167 176.024 71.73C175.578 71.1367 174.938 70.84 174.104 70.84C173.278 70.84 172.638 71.1367 172.184 71.73C171.731 72.3167 171.504 73.08 171.504 74.02C171.504 74.9467 171.731 75.7033 172.184 76.29C172.638 76.87 173.278 77.16 174.104 77.16ZM180.971 79V69H183.291L183.351 70.06C183.604 69.78 183.961 69.5 184.421 69.22C184.881 68.94 185.384 68.8 185.931 68.8C186.091 68.8 186.237 68.8133 186.371 68.84L186.191 71.28C186.044 71.24 185.897 71.2133 185.751 71.2C185.611 71.1867 185.471 71.18 185.331 71.18C184.911 71.18 184.527 71.2767 184.181 71.47C183.834 71.6633 183.591 71.9 183.451 72.18V79H180.971ZM187.572 79V69H189.692L189.852 70.46L189.492 70.02C189.872 69.72 190.325 69.45 190.852 69.21C191.385 68.9633 192.005 68.84 192.712 68.84C193.245 68.84 193.715 68.92 194.122 69.08C194.535 69.2333 194.889 69.4567 195.182 69.75C195.475 70.0367 195.712 70.38 195.892 70.78L195.292 70.64C195.612 70.0667 196.079 69.6233 196.692 69.31C197.312 68.9967 198.012 68.84 198.792 68.84C199.712 68.84 200.462 69.03 201.042 69.41C201.622 69.79 202.049 70.3267 202.322 71.02C202.595 71.7067 202.732 72.5133 202.732 73.44V79H200.252V73.62C200.252 72.6867 200.105 71.9967 199.812 71.55C199.525 71.1033 199.045 70.88 198.372 70.88C198.039 70.88 197.745 70.94 197.492 71.06C197.245 71.1733 197.039 71.3433 196.872 71.57C196.712 71.79 196.592 72.06 196.512 72.38C196.432 72.6933 196.392 73.0467 196.392 73.44V79H193.912V73.62C193.912 73 193.845 72.4867 193.712 72.08C193.585 71.6733 193.379 71.3733 193.092 71.18C192.812 70.98 192.445 70.88 191.992 70.88C191.412 70.88 190.935 71.0167 190.562 71.29C190.195 71.5567 189.872 71.92 189.592 72.38L190.052 71.04V79H187.572Z",fill:"white"})),{GeneralFields:Qi,AdvancedFields:eo,ActionButtonPlaceholder:Co}=JetFBComponents,{InspectorControls:to}=wp.blockEditor,{useState:lo,useEffect:ro}=wp.element,{withFilters:no}=wp.components,ao=["jet-form-builder__action-button"],io=["jet-form-builder__action-button-wrapper"],oo=no("jet.fb.block.action-button.edit")(Co),so=e=>{var C;const{attributes:t,setAttributes:l}=e,r=()=>{if(!t.action_type)return ao;const e=JetFormActionButton.actions.find((e=>t.action_type===e.value));return e?(t.label||l({label:e.preset_label}),[...ao,e.button_class]):ao},n=()=>{if(!t.action_type)return[...io];const e=JetFormActionButton.actions.find((e=>t.action_type===e.value));return e?[...io,e.wrapper_class]:[...io]},[a,i]=lo(r),[o,s]=lo(n);return ro((()=>{i(r()),s(n())}),[t.action_type]),(0,h.createElement)(oo,{attributes:t,setAttributes:l,setActionAttributes:e=>{var C;const r=JSON.parse(JSON.stringify(t.buttons)),n=null!==(C=r[t.action_type])&&void 0!==C?C:{};r[t.action_type]={...n,...e},l({buttons:r})},actionAttributes:null!==(C=t.buttons[t.action_type])&&void 0!==C?C:{},buttonClasses:a,wrapperClasses:o})},co=JSON.parse('{"apiVersion":3,"name":"jet-forms/submit-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","field","submit","break","next","prev","action","button"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Action Button","icon":"\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"label":{"type":"string","default":"Submit","jfb":{"rich":true}},"action_type":{"type":"string","default":"submit"},"buttons":{"type":"object","default":{}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""}}}'),{__:mo}=wp.i18n,uo={name:"submit",isDefault:!0,title:mo("Action Button","jet-form-builder"),isActive:["action_type"],description:mo("Add the button by clicking which users can submit the form","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M24.8828 29.3223H23.0029C22.9619 29.7415 22.8639 30.0924 22.709 30.375C22.5586 30.6576 22.3376 30.8717 22.0459 31.0176C21.7588 31.1634 21.3851 31.2363 20.9248 31.2363C20.5465 31.2363 20.2207 31.1634 19.9473 31.0176C19.6738 30.8717 19.4505 30.6598 19.2773 30.3818C19.1042 30.1038 18.9766 29.7643 18.8945 29.3633C18.8125 28.9622 18.7715 28.5088 18.7715 28.0029V27.2305C18.7715 26.7018 18.8171 26.237 18.9082 25.8359C18.9993 25.4303 19.1361 25.0931 19.3184 24.8242C19.5007 24.5508 19.7285 24.3457 20.002 24.209C20.2799 24.0723 20.6012 24.0039 20.9658 24.0039C21.4352 24.0039 21.8112 24.0814 22.0938 24.2363C22.3809 24.3867 22.5951 24.6077 22.7363 24.8994C22.8822 25.1911 22.9733 25.5465 23.0098 25.9658H24.8896C24.8258 25.2913 24.639 24.6943 24.3291 24.1748C24.0192 23.6553 23.584 23.2474 23.0234 22.9512C22.4629 22.6504 21.777 22.5 20.9658 22.5C20.3415 22.5 19.7764 22.6117 19.2705 22.835C18.7692 23.0583 18.3385 23.3773 17.9785 23.792C17.623 24.2021 17.3496 24.6989 17.1582 25.2822C16.9668 25.8656 16.8711 26.5195 16.8711 27.2441V28.0029C16.8711 28.7275 16.9645 29.3815 17.1514 29.9648C17.3382 30.5436 17.6071 31.0404 17.958 31.4551C18.3135 31.8652 18.7396 32.182 19.2363 32.4053C19.7376 32.624 20.3005 32.7334 20.9248 32.7334C21.736 32.7334 22.4264 32.5876 22.9961 32.2959C23.5658 32.0042 24.0101 31.6032 24.3291 31.0928C24.6481 30.5778 24.8327 29.9876 24.8828 29.3223Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5371 22.6436L16.2764 32.5967H14.2803L13.5324 30.3818H9.81555L9.07129 32.5967H7.08203L10.8008 22.6436H12.5371ZM10.314 28.8984H13.0316L11.6695 24.8646L10.314 28.8984Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M30.4062 24.127V32.5967H28.5332V24.127H25.4775V22.6436H33.4961V24.127H30.4062Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M36.75 32.5967V22.6436H34.8701V32.5967H36.75Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M46.8398 27.3672V27.8799C46.8398 28.6318 46.7396 29.3086 46.5391 29.9102C46.3385 30.5072 46.0537 31.0153 45.6846 31.4346C45.3154 31.8538 44.8757 32.1751 44.3652 32.3984C43.8548 32.6217 43.2874 32.7334 42.6631 32.7334C42.0479 32.7334 41.4827 32.6217 40.9678 32.3984C40.4574 32.1751 40.0153 31.8538 39.6416 31.4346C39.2679 31.0153 38.9785 30.5072 38.7734 29.9102C38.5684 29.3086 38.4658 28.6318 38.4658 27.8799V27.3672C38.4658 26.6107 38.5684 25.9339 38.7734 25.3369C38.9785 24.7399 39.2656 24.2318 39.6348 23.8125C40.0039 23.3887 40.4437 23.0651 40.9541 22.8418C41.4691 22.6185 42.0342 22.5068 42.6494 22.5068C43.2738 22.5068 43.8411 22.6185 44.3516 22.8418C44.862 23.0651 45.3018 23.3887 45.6709 23.8125C46.0446 24.2318 46.3317 24.7399 46.5322 25.3369C46.7373 25.9339 46.8398 26.6107 46.8398 27.3672ZM44.9395 27.8799V27.3535C44.9395 26.8112 44.8893 26.335 44.7891 25.9248C44.6888 25.5101 44.5407 25.1615 44.3447 24.8789C44.1488 24.5964 43.9072 24.3844 43.6201 24.2432C43.333 24.0973 43.0094 24.0244 42.6494 24.0244C42.2848 24.0244 41.9613 24.0973 41.6787 24.2432C41.4007 24.3844 41.1637 24.5964 40.9678 24.8789C40.7718 25.1615 40.6214 25.5101 40.5166 25.9248C40.4163 26.335 40.3662 26.8112 40.3662 27.3535V27.8799C40.3662 28.4176 40.4163 28.8939 40.5166 29.3086C40.6214 29.7233 40.7718 30.0742 40.9678 30.3613C41.1683 30.6439 41.4098 30.8581 41.6924 31.0039C41.9749 31.1497 42.2985 31.2227 42.6631 31.2227C43.0277 31.2227 43.3512 31.1497 43.6338 31.0039C43.9163 30.8581 44.1533 30.6439 44.3447 30.3613C44.5407 30.0742 44.6888 29.7233 44.7891 29.3086C44.8893 28.8939 44.9395 28.4176 44.9395 27.8799Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M56.4307 32.5967V22.6436H54.5576V29.5547L50.3125 22.6436H48.4326V32.5967H50.3125V25.6924L54.5439 32.5967H56.4307Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M56.8581 44H60C62.2091 44 64 42.2091 64 40V15C64 12.7909 62.2091 11 60 11H4C1.79086 11 0 12.7909 0 15V40C0 42.2091 1.79086 44 4 44H40.778L42.9403 53.0096C43.0578 53.5382 43.3396 53.9897 43.7233 54.3254C44.0972 54.6525 44.5724 54.8763 45.1109 54.9302C45.6268 54.9818 46.1288 54.8712 46.5658 54.6285C47.0573 54.3554 47.415 53.9381 47.6217 53.4573L48.5248 51.4717L51.0479 54.0031L51.0743 54.0278C51.3798 54.3129 51.7296 54.5489 52.1209 54.7228L52.1642 54.742L52.2083 54.7592C52.6273 54.9221 53.0636 55 53.5023 55C53.941 55 54.3773 54.9221 54.7963 54.7592L54.8404 54.742L54.8837 54.7228C55.275 54.5489 55.6249 54.3129 55.9303 54.0278L55.9679 53.9927L56.0036 53.9557C56.6466 53.2906 57 52.4405 57 51.5023C57 50.5641 56.6466 49.714 56.0036 49.0489L55.9907 49.0355L53.4717 46.5248L55.4573 45.6217C55.9381 45.415 56.3554 45.0573 56.6285 44.5658C56.7279 44.3869 56.8051 44.1972 56.8581 44ZM60 13H4C2.89543 13 2 13.8954 2 15V40C2 41.1046 2.89543 42 4 42H40.298L40.0716 41.0566C39.9751 40.6621 39.9762 40.2536 40.0747 39.8594L40.1023 39.7489L40.1423 39.6422C40.2437 39.3718 40.3918 39.1023 40.5984 38.8544L40.6564 38.7847L40.7206 38.7206C41.029 38.4122 41.4173 38.1852 41.8594 38.0747C42.2536 37.9762 42.6621 37.9751 43.0566 38.0716L55.0096 40.9403C55.5382 41.0578 55.9897 41.3396 56.3254 41.7233C56.4015 41.8102 56.4719 41.9026 56.536 42H60C61.1046 42 62 41.1046 62 40V15C62 13.8954 61.1046 13 60 13ZM50.0127 45.9009L54.6555 43.7892C54.7554 43.7492 54.8303 43.6843 54.8802 43.5945C54.9301 43.5046 54.9501 43.4098 54.9401 43.3099C54.9301 43.2101 54.8902 43.1202 54.8203 43.0403C54.7504 42.9604 54.6655 42.9105 54.5657 42.8906L42.5841 40.015C42.5042 39.995 42.4243 39.995 42.3445 40.015C42.2646 40.0349 42.1947 40.0749 42.1348 40.1348C42.0849 40.1947 42.0449 40.2646 42.015 40.3445C41.995 40.4243 41.995 40.5042 42.015 40.5841L44.8906 52.5657C44.9105 52.6655 44.9604 52.7504 45.0403 52.8203C45.1202 52.8902 45.2101 52.9301 45.3099 52.9401C45.4098 52.9501 45.5046 52.9301 45.5945 52.8802C45.6843 52.8303 45.7492 52.7554 45.7892 52.6555L47.9009 48.0127L52.4389 52.5657C52.5887 52.7055 52.7535 52.8153 52.9332 52.8952C53.1129 52.9651 53.3026 53 53.5023 53C53.702 53 53.8917 52.9651 54.0714 52.8952C54.2512 52.8153 54.4159 52.7055 54.5657 52.5657C54.8552 52.2661 55 51.9117 55 51.5023C55 51.0929 54.8552 50.7385 54.5657 50.4389L50.0127 45.9009Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"submit"}},{registerBlockVariation:po}=wp.blocks;po("jet-forms/submit-field",uo);const{__:fo}=wp.i18n,Vo={name:"update",title:fo("Update Field","jet-form-builder"),isActive:["action_type"],description:fo("Update dependent fields without submitting the form","jet-form-builder"),icon:"update-alt",scope:["block","inserter","transform"],attributes:{action_type:"update"}};var Ho;const{registerBlockVariation:ho,getBlockVariations:bo}=wp.blocks;(null!==(Ho=bo?.("jet-forms/submit-field"))&&void 0!==Ho?Ho:[]).some((e=>"update"===e?.name||"update"===e?.attributes?.action_type))||ho("jet-forms/submit-field",Vo);const{__:Mo}=wp.i18n,Lo={name:"next",title:Mo("Next Page","jet-form-builder"),isActive:["action_type"],description:Mo("Go to Next Page button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M48.615 39.6867C48.1972 40.1045 47.5236 40.1045 47.1058 39.6867C46.688 39.2774 46.688 38.5953 47.0973 38.186L53.279 32.0043L47.1058 25.8225C46.688 25.4047 46.688 24.7311 47.1058 24.3133C47.5236 23.8955 48.1972 23.8955 48.615 24.3133L55.7005 31.3989C56.0331 31.7314 56.0331 32.2686 55.7005 32.6011L48.615 39.6867Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M39 54C41.2091 54 43 52.2091 43 50H58C60.2091 50 62 48.2091 62 46V18C62 15.7909 60.2091 14 58 14H43C43 11.7909 41.2091 10 39 10H6C3.79086 10 2 11.7909 2 14V50C2 52.2091 3.79086 54 6 54H39ZM39 12H6C4.89543 12 4 12.8954 4 14V50C4 51.1046 4.89543 52 6 52H39C40.1046 52 41 51.1046 41 50V14C41 12.8954 40.1046 12 39 12ZM43 48V16H58C59.1046 16 60 16.8954 60 18V46C60 47.1046 59.1046 48 58 48H43Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"next"}},{registerBlockVariation:go}=wp.blocks;go("jet-forms/submit-field",Lo);const{__:Zo}=wp.i18n,yo={name:"prev",title:Zo("Prev Page","jet-form-builder"),isActive:["action_type"],description:Zo("Go to Prev Page button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M15.385 39.6867C15.8028 40.1045 16.4764 40.1045 16.8942 39.6867C17.312 39.2774 17.312 38.5953 16.9027 38.186L10.721 32.0043L16.8942 25.8225C17.312 25.4047 17.312 24.7311 16.8942 24.3133C16.4764 23.8955 15.8028 23.8955 15.385 24.3133L8.29947 31.3989C7.96694 31.7314 7.96694 32.2686 8.29947 32.6011L15.385 39.6867Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M25 54C22.7909 54 21 52.2091 21 50H6C3.79086 50 2 48.2091 2 46V18C2 15.7909 3.79086 14 6 14H21C21 11.7909 22.7909 10 25 10H58C60.2091 10 62 11.7909 62 14V50C62 52.2091 60.2091 54 58 54H25ZM25 12H58C59.1046 12 60 12.8954 60 14V50C60 51.1046 59.1046 52 58 52H25C23.8954 52 23 51.1046 23 50V14C23 12.8954 23.8954 12 25 12ZM21 48V16H6C4.89543 16 4 16.8954 4 18V46C4 47.1046 4.89543 48 6 48H21Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"prev"}},{registerBlockVariation:Eo}=wp.blocks;Eo("jet-forms/submit-field",yo);const{__:wo}=wp.i18n,vo={name:"switch-state",title:wo("Change Render State","jet-form-builder"),isActive:(e,C)=>e.action_type===C.action_type,description:wo("Change Render State button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M28 39V46C28 48.2091 26.2091 50 24 50H4C1.79086 50 0 48.2091 0 46V18C0 15.7909 1.79086 14 4 14H24C26.2091 14 28 15.7909 28 18V25H36V18C36 15.7909 37.7909 14 40 14H60C62.2091 14 64 15.7909 64 18V46C64 48.2091 62.2091 50 60 50H40C37.7909 50 36 48.2091 36 46V39H28ZM4 16H24C25.1046 16 26 16.8954 26 18V37H15.4142L20.0711 32.3431C20.4616 31.9526 20.4616 31.3195 20.0711 30.9289C19.6805 30.5384 19.0474 30.5384 18.6569 30.9289L12.2929 37.2929C11.9024 37.6834 11.9024 38.3166 12.2929 38.7071L18.6569 45.0711C19.0474 45.4616 19.6805 45.4616 20.0711 45.0711C20.4616 44.6805 20.4616 44.0474 20.0711 43.6569L15.4142 39H26V46C26 47.1046 25.1046 48 24 48H4C2.89543 48 2 47.1046 2 46V18C2 16.8954 2.89543 16 4 16ZM28 37H36V27H28V37ZM38 46C38 47.1046 38.8954 48 40 48H60C61.1046 48 62 47.1046 62 46V18C62 16.8954 61.1046 16 60 16H40C38.8954 16 38 16.8954 38 18V25H48.5858L43.9289 20.3431C43.5384 19.9526 43.5384 19.3195 43.9289 18.9289C44.3195 18.5384 44.9526 18.5384 45.3431 18.9289L51.7071 25.2929C52.0976 25.6834 52.0976 26.3166 51.7071 26.7071L45.3431 33.0711C44.9526 33.4616 44.3195 33.4616 43.9289 33.0711C43.5384 32.6805 43.5384 32.0474 43.9289 31.6569L48.5858 27H38V46Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"switch-state"}},{__:_o}=wp.i18n,{useSelect:ko}=wp.data,{FormTokenField:jo,PanelBody:xo}=wp.components,{InspectorControls:Fo}=wp.blockEditor,{useUniqKey:Bo}=JetFBHooks,{ActionButtonPlaceholder:Ao}=JetFBComponents,{column:Po}=JetFBActions,So=function(e){const{actionAttributes:C,setActionAttributes:t}=e,l=Bo(),r=ko((e=>Po(e("jet-forms/block-conditions").getSwitchableRenderStates(),"value")),[]);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ao,{...e}),(0,h.createElement)(Fo,null,(0,h.createElement)(xo,{title:_o("Change Render State","jet-form-builder")},(0,h.createElement)(jo,{key:l("switch_on"),label:_o("Switch state","jet-form-builder"),value:C.switch_on,suggestions:r,onChange:e=>t({switch_on:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0}))))},{registerBlockVariation:No}=wp.blocks,{addFilter:Io}=wp.hooks;No("jet-forms/submit-field",vo),Io("jet.fb.block.action-button.edit","jet-form-builder/switch-state-variation",(e=>C=>"switch-state"!==C.attributes?.action_type?(0,h.createElement)(e,{...C}):(0,h.createElement)(So,{...C})));const{createBlock:To}=wp.blocks,{name:Oo,icon:Jo=""}=co;co.attributes.isPreview={type:"boolean",default:!1};const Ro={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Jo}}),edit:function(e){const{attributes:C,setAttributes:t}=e;return C.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Xi):(0,h.createElement)(h.Fragment,null,(0,h.createElement)(to,null,(0,h.createElement)(Qi,{...e}),(0,h.createElement)(eo,{...e})),(0,h.createElement)(so,{attributes:C,setAttributes:t}))},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>To("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>To(Oo,{...e}),priority:0},{type:"block",blocks:["core/buttons"],transform:(e,C)=>To(Oo,{label:C[0]?.attributes?.text||""}),priority:0}]}},qo=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M19.8398 23.9287L16.5449 33H15.1982L18.9922 23.0469H19.8604L19.8398 23.9287ZM22.6016 33L19.2998 23.9287L19.2793 23.0469H20.1475L23.9551 33H22.6016ZM22.4307 29.3154V30.3955H16.8389V29.3154H22.4307ZM29.7588 31.5645V22.5H31.0303V33H29.8682L29.7588 31.5645ZM24.7822 29.3838V29.2402C24.7822 28.6751 24.8506 28.1624 24.9873 27.7021C25.1286 27.2373 25.3268 26.8385 25.582 26.5059C25.8418 26.1732 26.1494 25.918 26.5049 25.7402C26.8649 25.5579 27.266 25.4668 27.708 25.4668C28.1729 25.4668 28.5785 25.5488 28.9248 25.7129C29.2757 25.8724 29.5719 26.1071 29.8135 26.417C30.0596 26.7223 30.2533 27.0915 30.3945 27.5244C30.5358 27.9574 30.6338 28.4473 30.6885 28.9941V29.623C30.6383 30.1654 30.5404 30.653 30.3945 31.0859C30.2533 31.5189 30.0596 31.888 29.8135 32.1934C29.5719 32.4987 29.2757 32.7334 28.9248 32.8975C28.5739 33.057 28.1637 33.1367 27.6943 33.1367C27.2614 33.1367 26.8649 33.0433 26.5049 32.8564C26.1494 32.6696 25.8418 32.4076 25.582 32.0703C25.3268 31.7331 25.1286 31.3366 24.9873 30.8809C24.8506 30.4206 24.7822 29.9215 24.7822 29.3838ZM26.0537 29.2402V29.3838C26.0537 29.7529 26.0902 30.0993 26.1631 30.4229C26.2406 30.7464 26.359 31.0312 26.5186 31.2773C26.6781 31.5234 26.8809 31.7171 27.127 31.8584C27.373 31.9951 27.667 32.0635 28.0088 32.0635C28.4281 32.0635 28.7721 31.9746 29.041 31.7969C29.3145 31.6191 29.5332 31.3844 29.6973 31.0928C29.8613 30.8011 29.9889 30.4844 30.0801 30.1426V28.4951C30.0254 28.2445 29.9456 28.0029 29.8408 27.7705C29.7406 27.5335 29.6084 27.3239 29.4443 27.1416C29.2848 26.9548 29.0866 26.8066 28.8496 26.6973C28.6172 26.5879 28.3415 26.5332 28.0225 26.5332C27.6761 26.5332 27.3776 26.6061 27.127 26.752C26.8809 26.8932 26.6781 27.0892 26.5186 27.3398C26.359 27.5859 26.2406 27.873 26.1631 28.2012C26.0902 28.5247 26.0537 28.8711 26.0537 29.2402ZM37.6611 31.5645V22.5H38.9326V33H37.7705L37.6611 31.5645ZM32.6846 29.3838V29.2402C32.6846 28.6751 32.7529 28.1624 32.8896 27.7021C33.0309 27.2373 33.2292 26.8385 33.4844 26.5059C33.7441 26.1732 34.0518 25.918 34.4072 25.7402C34.7673 25.5579 35.1683 25.4668 35.6104 25.4668C36.0752 25.4668 36.4808 25.5488 36.8271 25.7129C37.1781 25.8724 37.4743 26.1071 37.7158 26.417C37.9619 26.7223 38.1556 27.0915 38.2969 27.5244C38.4382 27.9574 38.5361 28.4473 38.5908 28.9941V29.623C38.5407 30.1654 38.4427 30.653 38.2969 31.0859C38.1556 31.5189 37.9619 31.888 37.7158 32.1934C37.4743 32.4987 37.1781 32.7334 36.8271 32.8975C36.4762 33.057 36.0661 33.1367 35.5967 33.1367C35.1637 33.1367 34.7673 33.0433 34.4072 32.8564C34.0518 32.6696 33.7441 32.4076 33.4844 32.0703C33.2292 31.7331 33.0309 31.3366 32.8896 30.8809C32.7529 30.4206 32.6846 29.9215 32.6846 29.3838ZM33.9561 29.2402V29.3838C33.9561 29.7529 33.9925 30.0993 34.0654 30.4229C34.1429 30.7464 34.2614 31.0312 34.4209 31.2773C34.5804 31.5234 34.7832 31.7171 35.0293 31.8584C35.2754 31.9951 35.5693 32.0635 35.9111 32.0635C36.3304 32.0635 36.6745 31.9746 36.9434 31.7969C37.2168 31.6191 37.4355 31.3844 37.5996 31.0928C37.7637 30.8011 37.8913 30.4844 37.9824 30.1426V28.4951C37.9277 28.2445 37.848 28.0029 37.7432 27.7705C37.6429 27.5335 37.5107 27.3239 37.3467 27.1416C37.1872 26.9548 36.9889 26.8066 36.752 26.6973C36.5195 26.5879 36.2438 26.5332 35.9248 26.5332C35.5785 26.5332 35.2799 26.6061 35.0293 26.752C34.7832 26.8932 34.5804 27.0892 34.4209 27.3398C34.2614 27.5859 34.1429 27.873 34.0654 28.2012C33.9925 28.5247 33.9561 28.8711 33.9561 29.2402ZM42.2754 25.6035V33H41.0039V25.6035H42.2754ZM40.9082 23.6416C40.9082 23.4365 40.9697 23.2633 41.0928 23.1221C41.2204 22.9808 41.4072 22.9102 41.6533 22.9102C41.8949 22.9102 42.0794 22.9808 42.207 23.1221C42.3392 23.2633 42.4053 23.4365 42.4053 23.6416C42.4053 23.8376 42.3392 24.0062 42.207 24.1475C42.0794 24.2842 41.8949 24.3525 41.6533 24.3525C41.4072 24.3525 41.2204 24.2842 41.0928 24.1475C40.9697 24.0062 40.9082 23.8376 40.9082 23.6416ZM47.4023 25.6035V26.5742H43.4033V25.6035H47.4023ZM44.7568 23.8057H46.0215V31.168C46.0215 31.4186 46.0602 31.6077 46.1377 31.7354C46.2152 31.863 46.3154 31.9473 46.4385 31.9883C46.5615 32.0293 46.6937 32.0498 46.835 32.0498C46.9398 32.0498 47.0492 32.0407 47.1631 32.0225C47.2816 31.9997 47.3704 31.9814 47.4297 31.9678L47.4365 33C47.3363 33.0319 47.2041 33.0615 47.04 33.0889C46.8805 33.1208 46.6868 33.1367 46.459 33.1367C46.1491 33.1367 45.8643 33.0752 45.6045 32.9521C45.3447 32.8291 45.1374 32.624 44.9824 32.3369C44.832 32.0452 44.7568 31.6533 44.7568 31.1611V23.8057ZM50.2598 25.6035V33H48.9883V25.6035H50.2598ZM48.8926 23.6416C48.8926 23.4365 48.9541 23.2633 49.0771 23.1221C49.2048 22.9808 49.3916 22.9102 49.6377 22.9102C49.8792 22.9102 50.0638 22.9808 50.1914 23.1221C50.3236 23.2633 50.3896 23.4365 50.3896 23.6416C50.3896 23.8376 50.3236 24.0062 50.1914 24.1475C50.0638 24.2842 49.8792 24.3525 49.6377 24.3525C49.3916 24.3525 49.2048 24.2842 49.0771 24.1475C48.9541 24.0062 48.8926 23.8376 48.8926 23.6416ZM51.9551 29.3838V29.2266C51.9551 28.6934 52.0326 28.1989 52.1875 27.7432C52.3424 27.2829 52.5658 26.8841 52.8574 26.5469C53.1491 26.2051 53.5023 25.9408 53.917 25.7539C54.3317 25.5625 54.7965 25.4668 55.3115 25.4668C55.8311 25.4668 56.2982 25.5625 56.7129 25.7539C57.1322 25.9408 57.4876 26.2051 57.7793 26.5469C58.0755 26.8841 58.3011 27.2829 58.4561 27.7432C58.611 28.1989 58.6885 28.6934 58.6885 29.2266V29.3838C58.6885 29.917 58.611 30.4115 58.4561 30.8672C58.3011 31.3229 58.0755 31.7217 57.7793 32.0635C57.4876 32.4007 57.1344 32.665 56.7197 32.8564C56.3096 33.0433 55.8447 33.1367 55.3252 33.1367C54.8057 33.1367 54.3385 33.0433 53.9238 32.8564C53.5091 32.665 53.1536 32.4007 52.8574 32.0635C52.5658 31.7217 52.3424 31.3229 52.1875 30.8672C52.0326 30.4115 51.9551 29.917 51.9551 29.3838ZM53.2197 29.2266V29.3838C53.2197 29.7529 53.263 30.1016 53.3496 30.4297C53.4362 30.7533 53.5661 31.0404 53.7393 31.291C53.917 31.5417 54.138 31.7399 54.4023 31.8857C54.6667 32.027 54.9743 32.0977 55.3252 32.0977C55.6715 32.0977 55.9746 32.027 56.2344 31.8857C56.4987 31.7399 56.7174 31.5417 56.8906 31.291C57.0638 31.0404 57.1937 30.7533 57.2803 30.4297C57.3714 30.1016 57.417 29.7529 57.417 29.3838V29.2266C57.417 28.862 57.3714 28.5179 57.2803 28.1943C57.1937 27.8662 57.0615 27.5768 56.8838 27.3262C56.7106 27.071 56.4919 26.8704 56.2275 26.7246C55.9678 26.5788 55.6624 26.5059 55.3115 26.5059C54.9652 26.5059 54.6598 26.5788 54.3955 26.7246C54.1357 26.8704 53.917 27.071 53.7393 27.3262C53.5661 27.5768 53.4362 27.8662 53.3496 28.1943C53.263 28.5179 53.2197 28.862 53.2197 29.2266ZM61.5391 27.1826V33H60.2744V25.6035H61.4707L61.5391 27.1826ZM61.2383 29.0215L60.7119 29.001C60.7165 28.4951 60.7917 28.028 60.9375 27.5996C61.0833 27.1667 61.2884 26.7907 61.5527 26.4717C61.8171 26.1527 62.1315 25.9066 62.4961 25.7334C62.8652 25.5557 63.2731 25.4668 63.7197 25.4668C64.0843 25.4668 64.4124 25.5169 64.7041 25.6172C64.9958 25.7129 65.2441 25.8678 65.4492 26.082C65.6589 26.2962 65.8184 26.5742 65.9277 26.916C66.0371 27.2533 66.0918 27.6657 66.0918 28.1533V33H64.8203V28.1396C64.8203 27.7523 64.7633 27.4424 64.6494 27.21C64.5355 26.973 64.3691 26.8021 64.1504 26.6973C63.9316 26.5879 63.6628 26.5332 63.3438 26.5332C63.0293 26.5332 62.7422 26.5993 62.4824 26.7314C62.2272 26.8636 62.0062 27.0459 61.8193 27.2783C61.637 27.5107 61.4935 27.7773 61.3887 28.0781C61.2884 28.3743 61.2383 28.6888 61.2383 29.0215ZM72.374 31.7354V27.9277C72.374 27.6361 72.3148 27.3831 72.1963 27.1689C72.0824 26.9502 71.9092 26.7816 71.6768 26.6631C71.4443 26.5446 71.1572 26.4854 70.8154 26.4854C70.4964 26.4854 70.2161 26.54 69.9746 26.6494C69.7376 26.7588 69.5508 26.9023 69.4141 27.0801C69.2819 27.2578 69.2158 27.4492 69.2158 27.6543H67.9512C67.9512 27.39 68.0195 27.1279 68.1562 26.8682C68.293 26.6084 68.4889 26.3737 68.7441 26.1641C69.0039 25.9499 69.3138 25.7812 69.6738 25.6582C70.0384 25.5306 70.444 25.4668 70.8906 25.4668C71.4284 25.4668 71.9023 25.5579 72.3125 25.7402C72.7272 25.9225 73.0508 26.1982 73.2832 26.5674C73.5202 26.932 73.6387 27.39 73.6387 27.9414V31.3867C73.6387 31.6328 73.6592 31.8949 73.7002 32.1729C73.7458 32.4508 73.8118 32.6901 73.8984 32.8906V33H72.5791C72.5153 32.8542 72.4652 32.6605 72.4287 32.4189C72.3923 32.1729 72.374 31.945 72.374 31.7354ZM72.5928 28.5156L72.6064 29.4043H71.3281C70.9681 29.4043 70.6468 29.4339 70.3643 29.4932C70.0817 29.5479 69.8447 29.6322 69.6533 29.7461C69.4619 29.86 69.3161 30.0036 69.2158 30.1768C69.1156 30.3454 69.0654 30.5436 69.0654 30.7715C69.0654 31.0039 69.1178 31.2158 69.2227 31.4072C69.3275 31.5986 69.4847 31.7513 69.6943 31.8652C69.9085 31.9746 70.1706 32.0293 70.4805 32.0293C70.8678 32.0293 71.2096 31.9473 71.5059 31.7832C71.8021 31.6191 72.0368 31.4186 72.21 31.1816C72.3877 30.9447 72.4834 30.7145 72.4971 30.4912L73.0371 31.0996C73.0052 31.291 72.9186 31.5029 72.7773 31.7354C72.6361 31.9678 72.4469 32.1911 72.21 32.4053C71.9775 32.6149 71.6995 32.7904 71.376 32.9316C71.057 33.0684 70.6969 33.1367 70.2959 33.1367C69.7946 33.1367 69.3548 33.0387 68.9766 32.8428C68.6029 32.6468 68.3112 32.3848 68.1016 32.0566C67.8965 31.724 67.7939 31.3525 67.7939 30.9424C67.7939 30.5459 67.8714 30.1973 68.0264 29.8965C68.1813 29.5911 68.4046 29.3382 68.6963 29.1377C68.988 28.9326 69.3389 28.7777 69.749 28.6729C70.1592 28.568 70.6172 28.5156 71.123 28.5156H72.5928ZM77.002 22.5V33H75.7305V22.5H77.002ZM83.8789 25.6035V33H82.6074V25.6035H83.8789ZM82.5117 23.6416C82.5117 23.4365 82.5732 23.2633 82.6963 23.1221C82.8239 22.9808 83.0107 22.9102 83.2568 22.9102C83.4984 22.9102 83.6829 22.9808 83.8105 23.1221C83.9427 23.2633 84.0088 23.4365 84.0088 23.6416C84.0088 23.8376 83.9427 24.0062 83.8105 24.1475C83.6829 24.2842 83.4984 24.3525 83.2568 24.3525C83.0107 24.3525 82.8239 24.2842 82.6963 24.1475C82.5732 24.0062 82.5117 23.8376 82.5117 23.6416ZM87.1738 27.1826V33H85.9092V25.6035H87.1055L87.1738 27.1826ZM86.873 29.0215L86.3467 29.001C86.3512 28.4951 86.4264 28.028 86.5723 27.5996C86.7181 27.1667 86.9232 26.7907 87.1875 26.4717C87.4518 26.1527 87.7663 25.9066 88.1309 25.7334C88.5 25.5557 88.9079 25.4668 89.3545 25.4668C89.7191 25.4668 90.0472 25.5169 90.3389 25.6172C90.6305 25.7129 90.8789 25.8678 91.084 26.082C91.2936 26.2962 91.4531 26.5742 91.5625 26.916C91.6719 27.2533 91.7266 27.6657 91.7266 28.1533V33H90.4551V28.1396C90.4551 27.7523 90.3981 27.4424 90.2842 27.21C90.1702 26.973 90.0039 26.8021 89.7852 26.6973C89.5664 26.5879 89.2975 26.5332 88.9785 26.5332C88.6641 26.5332 88.377 26.5993 88.1172 26.7314C87.862 26.8636 87.641 27.0459 87.4541 27.2783C87.2718 27.5107 87.1283 27.7773 87.0234 28.0781C86.9232 28.3743 86.873 28.6888 86.873 29.0215ZM95.5342 33H94.2695V24.8242C94.2695 24.291 94.3652 23.8421 94.5566 23.4775C94.7526 23.1084 95.0329 22.8304 95.3975 22.6436C95.762 22.4521 96.195 22.3564 96.6963 22.3564C96.8421 22.3564 96.988 22.3656 97.1338 22.3838C97.2842 22.402 97.43 22.4294 97.5713 22.4658L97.5029 23.498C97.4072 23.4753 97.2979 23.4593 97.1748 23.4502C97.0563 23.4411 96.9378 23.4365 96.8193 23.4365C96.5505 23.4365 96.318 23.4912 96.1221 23.6006C95.9307 23.7054 95.7848 23.8604 95.6846 24.0654C95.5843 24.2705 95.5342 24.5234 95.5342 24.8242V33ZM97.1064 25.6035V26.5742H93.1006V25.6035H97.1064ZM98.1797 29.3838V29.2266C98.1797 28.6934 98.2572 28.1989 98.4121 27.7432C98.5671 27.2829 98.7904 26.8841 99.082 26.5469C99.3737 26.2051 99.7269 25.9408 100.142 25.7539C100.556 25.5625 101.021 25.4668 101.536 25.4668C102.056 25.4668 102.523 25.5625 102.938 25.7539C103.357 25.9408 103.712 26.2051 104.004 26.5469C104.3 26.8841 104.526 27.2829 104.681 27.7432C104.836 28.1989 104.913 28.6934 104.913 29.2266V29.3838C104.913 29.917 104.836 30.4115 104.681 30.8672C104.526 31.3229 104.3 31.7217 104.004 32.0635C103.712 32.4007 103.359 32.665 102.944 32.8564C102.534 33.0433 102.069 33.1367 101.55 33.1367C101.03 33.1367 100.563 33.0433 100.148 32.8564C99.7337 32.665 99.3783 32.4007 99.082 32.0635C98.7904 31.7217 98.5671 31.3229 98.4121 30.8672C98.2572 30.4115 98.1797 29.917 98.1797 29.3838ZM99.4443 29.2266V29.3838C99.4443 29.7529 99.4876 30.1016 99.5742 30.4297C99.6608 30.7533 99.7907 31.0404 99.9639 31.291C100.142 31.5417 100.363 31.7399 100.627 31.8857C100.891 32.027 101.199 32.0977 101.55 32.0977C101.896 32.0977 102.199 32.027 102.459 31.8857C102.723 31.7399 102.942 31.5417 103.115 31.291C103.288 31.0404 103.418 30.7533 103.505 30.4297C103.596 30.1016 103.642 29.7529 103.642 29.3838V29.2266C103.642 28.862 103.596 28.5179 103.505 28.1943C103.418 27.8662 103.286 27.5768 103.108 27.3262C102.935 27.071 102.716 26.8704 102.452 26.7246C102.192 26.5788 101.887 26.5059 101.536 26.5059C101.19 26.5059 100.884 26.5788 100.62 26.7246C100.36 26.8704 100.142 27.071 99.9639 27.3262C99.7907 27.5768 99.6608 27.8662 99.5742 28.1943C99.4876 28.5179 99.4443 28.862 99.4443 29.2266ZM107.764 26.7656V33H106.499V25.6035H107.729L107.764 26.7656ZM110.074 25.5625L110.067 26.7383C109.963 26.7155 109.862 26.7018 109.767 26.6973C109.675 26.6882 109.571 26.6836 109.452 26.6836C109.16 26.6836 108.903 26.7292 108.68 26.8203C108.456 26.9115 108.267 27.0391 108.112 27.2031C107.957 27.3672 107.834 27.5632 107.743 27.791C107.657 28.0143 107.6 28.2604 107.572 28.5293L107.217 28.7344C107.217 28.2878 107.26 27.8685 107.347 27.4766C107.438 27.0846 107.577 26.7383 107.764 26.4375C107.951 26.1322 108.188 25.8952 108.475 25.7266C108.766 25.5534 109.113 25.4668 109.514 25.4668C109.605 25.4668 109.71 25.4782 109.828 25.501C109.947 25.5192 110.029 25.5397 110.074 25.5625ZM112.501 27.0732V33H111.229V25.6035H112.433L112.501 27.0732ZM112.241 29.0215L111.653 29.001C111.658 28.4951 111.724 28.028 111.852 27.5996C111.979 27.1667 112.168 26.7907 112.419 26.4717C112.67 26.1527 112.982 25.9066 113.355 25.7334C113.729 25.5557 114.162 25.4668 114.654 25.4668C115.001 25.4668 115.32 25.5169 115.611 25.6172C115.903 25.7129 116.156 25.8656 116.37 26.0752C116.584 26.2848 116.751 26.5537 116.869 26.8818C116.988 27.21 117.047 27.6064 117.047 28.0713V33H115.782V28.1328C115.782 27.7454 115.716 27.4355 115.584 27.2031C115.456 26.9707 115.274 26.8021 115.037 26.6973C114.8 26.5879 114.522 26.5332 114.203 26.5332C113.829 26.5332 113.517 26.5993 113.267 26.7314C113.016 26.8636 112.815 27.0459 112.665 27.2783C112.515 27.5107 112.405 27.7773 112.337 28.0781C112.273 28.3743 112.241 28.6888 112.241 29.0215ZM117.033 28.3242L116.186 28.584C116.19 28.1784 116.256 27.7887 116.384 27.415C116.516 27.0413 116.705 26.7087 116.951 26.417C117.202 26.1253 117.509 25.8952 117.874 25.7266C118.239 25.5534 118.656 25.4668 119.125 25.4668C119.521 25.4668 119.872 25.5192 120.178 25.624C120.488 25.7288 120.747 25.8906 120.957 26.1094C121.171 26.3236 121.333 26.5993 121.442 26.9365C121.552 27.2738 121.606 27.6748 121.606 28.1396V33H120.335V28.126C120.335 27.7113 120.269 27.39 120.137 27.1621C120.009 26.9297 119.827 26.7679 119.59 26.6768C119.357 26.5811 119.079 26.5332 118.756 26.5332C118.478 26.5332 118.232 26.5811 118.018 26.6768C117.803 26.7725 117.623 26.9046 117.478 27.0732C117.332 27.2373 117.22 27.4264 117.143 27.6406C117.07 27.8548 117.033 28.0827 117.033 28.3242ZM127.882 31.7354V27.9277C127.882 27.6361 127.823 27.3831 127.704 27.1689C127.59 26.9502 127.417 26.7816 127.185 26.6631C126.952 26.5446 126.665 26.4854 126.323 26.4854C126.004 26.4854 125.724 26.54 125.482 26.6494C125.245 26.7588 125.059 26.9023 124.922 27.0801C124.79 27.2578 124.724 27.4492 124.724 27.6543H123.459C123.459 27.39 123.527 27.1279 123.664 26.8682C123.801 26.6084 123.997 26.3737 124.252 26.1641C124.512 25.9499 124.822 25.7812 125.182 25.6582C125.546 25.5306 125.952 25.4668 126.398 25.4668C126.936 25.4668 127.41 25.5579 127.82 25.7402C128.235 25.9225 128.559 26.1982 128.791 26.5674C129.028 26.932 129.146 27.39 129.146 27.9414V31.3867C129.146 31.6328 129.167 31.8949 129.208 32.1729C129.254 32.4508 129.32 32.6901 129.406 32.8906V33H128.087C128.023 32.8542 127.973 32.6605 127.937 32.4189C127.9 32.1729 127.882 31.945 127.882 31.7354ZM128.101 28.5156L128.114 29.4043H126.836C126.476 29.4043 126.155 29.4339 125.872 29.4932C125.59 29.5479 125.353 29.6322 125.161 29.7461C124.97 29.86 124.824 30.0036 124.724 30.1768C124.623 30.3454 124.573 30.5436 124.573 30.7715C124.573 31.0039 124.626 31.2158 124.73 31.4072C124.835 31.5986 124.993 31.7513 125.202 31.8652C125.416 31.9746 125.678 32.0293 125.988 32.0293C126.376 32.0293 126.717 31.9473 127.014 31.7832C127.31 31.6191 127.545 31.4186 127.718 31.1816C127.896 30.9447 127.991 30.7145 128.005 30.4912L128.545 31.0996C128.513 31.291 128.426 31.5029 128.285 31.7354C128.144 31.9678 127.955 32.1911 127.718 32.4053C127.485 32.6149 127.207 32.7904 126.884 32.9316C126.565 33.0684 126.205 33.1367 125.804 33.1367C125.302 33.1367 124.863 33.0387 124.484 32.8428C124.111 32.6468 123.819 32.3848 123.609 32.0566C123.404 31.724 123.302 31.3525 123.302 30.9424C123.302 30.5459 123.379 30.1973 123.534 29.8965C123.689 29.5911 123.912 29.3382 124.204 29.1377C124.496 28.9326 124.847 28.7777 125.257 28.6729C125.667 28.568 126.125 28.5156 126.631 28.5156H128.101ZM134.232 25.6035V26.5742H130.233V25.6035H134.232ZM131.587 23.8057H132.852V31.168C132.852 31.4186 132.89 31.6077 132.968 31.7354C133.045 31.863 133.146 31.9473 133.269 31.9883C133.392 32.0293 133.524 32.0498 133.665 32.0498C133.77 32.0498 133.879 32.0407 133.993 32.0225C134.112 31.9997 134.201 31.9814 134.26 31.9678L134.267 33C134.166 33.0319 134.034 33.0615 133.87 33.0889C133.711 33.1208 133.517 33.1367 133.289 33.1367C132.979 33.1367 132.694 33.0752 132.435 32.9521C132.175 32.8291 131.967 32.624 131.812 32.3369C131.662 32.0452 131.587 31.6533 131.587 31.1611V23.8057ZM137.09 25.6035V33H135.818V25.6035H137.09ZM135.723 23.6416C135.723 23.4365 135.784 23.2633 135.907 23.1221C136.035 22.9808 136.222 22.9102 136.468 22.9102C136.709 22.9102 136.894 22.9808 137.021 23.1221C137.154 23.2633 137.22 23.4365 137.22 23.6416C137.22 23.8376 137.154 24.0062 137.021 24.1475C136.894 24.2842 136.709 24.3525 136.468 24.3525C136.222 24.3525 136.035 24.2842 135.907 24.1475C135.784 24.0062 135.723 23.8376 135.723 23.6416ZM138.785 29.3838V29.2266C138.785 28.6934 138.863 28.1989 139.018 27.7432C139.173 27.2829 139.396 26.8841 139.688 26.5469C139.979 26.2051 140.332 25.9408 140.747 25.7539C141.162 25.5625 141.627 25.4668 142.142 25.4668C142.661 25.4668 143.128 25.5625 143.543 25.7539C143.962 25.9408 144.318 26.2051 144.609 26.5469C144.906 26.8841 145.131 27.2829 145.286 27.7432C145.441 28.1989 145.519 28.6934 145.519 29.2266V29.3838C145.519 29.917 145.441 30.4115 145.286 30.8672C145.131 31.3229 144.906 31.7217 144.609 32.0635C144.318 32.4007 143.965 32.665 143.55 32.8564C143.14 33.0433 142.675 33.1367 142.155 33.1367C141.636 33.1367 141.169 33.0433 140.754 32.8564C140.339 32.665 139.984 32.4007 139.688 32.0635C139.396 31.7217 139.173 31.3229 139.018 30.8672C138.863 30.4115 138.785 29.917 138.785 29.3838ZM140.05 29.2266V29.3838C140.05 29.7529 140.093 30.1016 140.18 30.4297C140.266 30.7533 140.396 31.0404 140.569 31.291C140.747 31.5417 140.968 31.7399 141.232 31.8857C141.497 32.027 141.804 32.0977 142.155 32.0977C142.502 32.0977 142.805 32.027 143.064 31.8857C143.329 31.7399 143.548 31.5417 143.721 31.291C143.894 31.0404 144.024 30.7533 144.11 30.4297C144.201 30.1016 144.247 29.7529 144.247 29.3838V29.2266C144.247 28.862 144.201 28.5179 144.11 28.1943C144.024 27.8662 143.892 27.5768 143.714 27.3262C143.541 27.071 143.322 26.8704 143.058 26.7246C142.798 26.5788 142.493 26.5059 142.142 26.5059C141.795 26.5059 141.49 26.5788 141.226 26.7246C140.966 26.8704 140.747 27.071 140.569 27.3262C140.396 27.5768 140.266 27.8662 140.18 28.1943C140.093 28.5179 140.05 28.862 140.05 29.2266ZM148.369 27.1826V33H147.104V25.6035H148.301L148.369 27.1826ZM148.068 29.0215L147.542 29.001C147.547 28.4951 147.622 28.028 147.768 27.5996C147.913 27.1667 148.118 26.7907 148.383 26.4717C148.647 26.1527 148.962 25.9066 149.326 25.7334C149.695 25.5557 150.103 25.4668 150.55 25.4668C150.914 25.4668 151.243 25.5169 151.534 25.6172C151.826 25.7129 152.074 25.8678 152.279 26.082C152.489 26.2962 152.648 26.5742 152.758 26.916C152.867 27.2533 152.922 27.6657 152.922 28.1533V33H151.65V28.1396C151.65 27.7523 151.593 27.4424 151.479 27.21C151.366 26.973 151.199 26.8021 150.98 26.6973C150.762 26.5879 150.493 26.5332 150.174 26.5332C149.859 26.5332 149.572 26.5993 149.312 26.7314C149.057 26.8636 148.836 27.0459 148.649 27.2783C148.467 27.5107 148.324 27.7773 148.219 28.0781C148.118 28.3743 148.068 28.6888 148.068 29.0215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"42",width:"266",height:"81",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M29.4814 59.3755H27.0122V58.3789H29.4814C29.9596 58.3789 30.3468 58.3027 30.6431 58.1504C30.9393 57.998 31.1551 57.7865 31.2905 57.5156C31.4302 57.2448 31.5 56.9359 31.5 56.5889C31.5 56.2715 31.4302 55.9731 31.2905 55.6938C31.1551 55.4146 30.9393 55.1903 30.6431 55.021C30.3468 54.8475 29.9596 54.7607 29.4814 54.7607H27.2979V63H26.0728V53.7578H29.4814C30.1797 53.7578 30.77 53.8784 31.2524 54.1196C31.7349 54.3608 32.1009 54.6951 32.3506 55.1226C32.6003 55.5457 32.7251 56.0303 32.7251 56.5762C32.7251 57.1686 32.6003 57.6743 32.3506 58.0933C32.1009 58.5122 31.7349 58.8317 31.2524 59.0518C30.77 59.2676 30.1797 59.3755 29.4814 59.3755ZM35.3721 56.1318V63H34.1914V56.1318H35.3721ZM34.1025 54.3101C34.1025 54.1196 34.1597 53.9588 34.2739 53.8276C34.3924 53.6965 34.5659 53.6309 34.7944 53.6309C35.0187 53.6309 35.1901 53.6965 35.3086 53.8276C35.4313 53.9588 35.4927 54.1196 35.4927 54.3101C35.4927 54.492 35.4313 54.6486 35.3086 54.7798C35.1901 54.9067 35.0187 54.9702 34.7944 54.9702C34.5659 54.9702 34.3924 54.9067 34.2739 54.7798C34.1597 54.6486 34.1025 54.492 34.1025 54.3101ZM40.0059 62.1621C40.2852 62.1621 40.5433 62.105 40.7803 61.9907C41.0173 61.8765 41.2119 61.7199 41.3643 61.521C41.5166 61.3179 41.6034 61.0872 41.6245 60.8291H42.7417C42.7205 61.2354 42.583 61.6141 42.3291 61.9653C42.0794 62.3123 41.7515 62.5938 41.3452 62.8096C40.939 63.0212 40.4925 63.127 40.0059 63.127C39.4896 63.127 39.0389 63.036 38.6538 62.854C38.2729 62.672 37.9556 62.4224 37.7017 62.105C37.452 61.7876 37.2637 61.4237 37.1367 61.0132C37.014 60.5985 36.9526 60.1605 36.9526 59.6992V59.4326C36.9526 58.9714 37.014 58.5355 37.1367 58.125C37.2637 57.7103 37.452 57.3442 37.7017 57.0269C37.9556 56.7095 38.2729 56.4598 38.6538 56.2778C39.0389 56.0959 39.4896 56.0049 40.0059 56.0049C40.5433 56.0049 41.013 56.1149 41.415 56.335C41.8171 56.5508 42.1323 56.847 42.3608 57.2236C42.5936 57.596 42.7205 58.0192 42.7417 58.4932H41.6245C41.6034 58.2096 41.5229 57.9536 41.3833 57.7251C41.2479 57.4966 41.0617 57.3146 40.8247 57.1792C40.592 57.0396 40.319 56.9697 40.0059 56.9697C39.6462 56.9697 39.3436 57.0417 39.0981 57.1855C38.8569 57.3252 38.6644 57.5156 38.5205 57.7568C38.3809 57.9938 38.2793 58.2583 38.2158 58.5503C38.1566 58.8381 38.127 59.1322 38.127 59.4326V59.6992C38.127 59.9997 38.1566 60.2959 38.2158 60.5879C38.2751 60.8799 38.3745 61.1444 38.5142 61.3813C38.658 61.6183 38.8506 61.8088 39.0918 61.9526C39.3372 62.0923 39.6419 62.1621 40.0059 62.1621ZM45.2427 53.25V63H44.062V53.25H45.2427ZM49.4385 56.1318L46.4424 59.3374L44.7666 61.0767L44.6714 59.8262L45.8711 58.3916L48.0039 56.1318H49.4385ZM48.3657 63L45.9155 59.7246L46.5249 58.6772L49.7495 63H48.3657ZM55.0435 57.4966V63H53.8628V56.1318H54.98L55.0435 57.4966ZM54.8022 59.3057L54.2563 59.2866C54.2606 58.8169 54.3219 58.3831 54.4404 57.9854C54.5589 57.5833 54.7345 57.2342 54.9673 56.938C55.2 56.6418 55.4899 56.4132 55.8369 56.2524C56.1839 56.0874 56.5859 56.0049 57.043 56.0049C57.3646 56.0049 57.6608 56.0514 57.9316 56.1445C58.2025 56.2334 58.4373 56.3752 58.6362 56.5698C58.8351 56.7645 58.9896 57.0142 59.0996 57.3188C59.2096 57.6235 59.2646 57.9917 59.2646 58.4233V63H58.0903V58.4805C58.0903 58.1208 58.029 57.833 57.9062 57.6172C57.7878 57.4014 57.6185 57.2448 57.3984 57.1475C57.1784 57.0459 56.9202 56.9951 56.624 56.9951C56.277 56.9951 55.9871 57.0565 55.7544 57.1792C55.5216 57.3019 55.3354 57.4712 55.1958 57.687C55.0562 57.9028 54.9546 58.1504 54.8911 58.4297C54.8319 58.7048 54.8022 58.9967 54.8022 59.3057ZM59.252 58.6582L58.4648 58.8994C58.4691 58.5228 58.5304 58.161 58.6489 57.814C58.7716 57.467 58.9473 57.158 59.1758 56.8872C59.4085 56.6164 59.6942 56.4027 60.0327 56.2461C60.3713 56.0853 60.7585 56.0049 61.1943 56.0049C61.5625 56.0049 61.8883 56.0535 62.1719 56.1509C62.4596 56.2482 62.7008 56.3984 62.8955 56.6016C63.0944 56.8005 63.2446 57.0565 63.3462 57.3696C63.4478 57.6828 63.4985 58.0552 63.4985 58.4868V63H62.3179V58.4741C62.3179 58.089 62.2565 57.7907 62.1338 57.5791C62.0153 57.3633 61.846 57.2131 61.626 57.1284C61.4102 57.0396 61.152 56.9951 60.8516 56.9951C60.5934 56.9951 60.3649 57.0396 60.166 57.1284C59.9671 57.2173 59.8 57.34 59.6646 57.4966C59.5291 57.6489 59.4255 57.8245 59.3535 58.0234C59.2858 58.2223 59.252 58.4339 59.252 58.6582ZM68.126 63.127C67.6478 63.127 67.214 63.0465 66.8247 62.8857C66.4396 62.7207 66.1074 62.4901 65.8281 62.1938C65.5531 61.8976 65.3415 61.5464 65.1934 61.1401C65.0452 60.7339 64.9712 60.2896 64.9712 59.8071V59.5405C64.9712 58.9819 65.0537 58.4847 65.2188 58.0488C65.3838 57.6087 65.6081 57.2363 65.8916 56.9316C66.1751 56.627 66.4967 56.3963 66.8564 56.2397C67.2161 56.0832 67.5885 56.0049 67.9736 56.0049C68.4645 56.0049 68.8877 56.0895 69.2432 56.2588C69.6029 56.4281 69.897 56.665 70.1255 56.9697C70.354 57.2702 70.5233 57.6257 70.6333 58.0361C70.7433 58.4424 70.7983 58.8867 70.7983 59.3691V59.896H65.6694V58.9375H69.624V58.8486C69.6071 58.5439 69.5436 58.2477 69.4336 57.96C69.3278 57.6722 69.1585 57.4352 68.9258 57.249C68.693 57.0628 68.3757 56.9697 67.9736 56.9697C67.707 56.9697 67.4616 57.0269 67.2373 57.1411C67.013 57.2511 66.8205 57.4162 66.6597 57.6362C66.4989 57.8563 66.374 58.125 66.2852 58.4424C66.1963 58.7598 66.1519 59.1258 66.1519 59.5405V59.8071C66.1519 60.133 66.1963 60.4398 66.2852 60.7275C66.3783 61.0111 66.5116 61.2607 66.6851 61.4766C66.8628 61.6924 67.0765 61.8617 67.3262 61.9844C67.5801 62.1071 67.8678 62.1685 68.1895 62.1685C68.6042 62.1685 68.9554 62.0838 69.2432 61.9146C69.5309 61.7453 69.7827 61.5189 69.9985 61.2354L70.7095 61.8003C70.5614 62.0246 70.373 62.2383 70.1445 62.4414C69.916 62.6445 69.6346 62.8096 69.3003 62.9365C68.9702 63.0635 68.5788 63.127 68.126 63.127ZM79.5962 61.4131V56.1318H80.7769V63H79.6533L79.5962 61.4131ZM79.8184 59.9658L80.3071 59.9531C80.3071 60.4102 80.2585 60.8333 80.1611 61.2227C80.068 61.6077 79.9157 61.9421 79.7041 62.2256C79.4925 62.5091 79.2153 62.7313 78.8726 62.8921C78.5298 63.0487 78.113 63.127 77.6221 63.127C77.2878 63.127 76.981 63.0783 76.7017 62.981C76.4266 62.8836 76.1896 62.7334 75.9907 62.5303C75.7918 62.3271 75.6374 62.0627 75.5273 61.7368C75.4215 61.411 75.3687 61.0195 75.3687 60.5625V56.1318H76.543V60.5752C76.543 60.8841 76.5768 61.1401 76.6445 61.3433C76.7165 61.5422 76.8117 61.7008 76.9302 61.8193C77.0529 61.9336 77.1883 62.014 77.3364 62.0605C77.4888 62.1071 77.6453 62.1304 77.8062 62.1304C78.3055 62.1304 78.7012 62.0352 78.9932 61.8447C79.2852 61.6501 79.4946 61.3898 79.6216 61.064C79.7528 60.7339 79.8184 60.3678 79.8184 59.9658ZM83.7412 57.4521V65.6406H82.5605V56.1318H83.6396L83.7412 57.4521ZM88.3687 59.5088V59.6421C88.3687 60.1414 88.3094 60.6048 88.1909 61.0322C88.0724 61.4554 87.8989 61.8236 87.6704 62.1367C87.4461 62.4499 87.1689 62.6932 86.8389 62.8667C86.5088 63.0402 86.13 63.127 85.7026 63.127C85.2668 63.127 84.8817 63.055 84.5474 62.9111C84.2131 62.7673 83.9295 62.5578 83.6968 62.2827C83.464 62.0076 83.2778 61.6776 83.1382 61.2925C83.0028 60.9074 82.9097 60.4736 82.8589 59.9912V59.2803C82.9097 58.7725 83.0049 58.3175 83.1445 57.9155C83.2842 57.5135 83.4683 57.1707 83.6968 56.8872C83.9295 56.5994 84.2109 56.3815 84.541 56.2334C84.8711 56.0811 85.252 56.0049 85.6836 56.0049C86.1152 56.0049 86.4982 56.0895 86.8325 56.2588C87.1668 56.4238 87.4482 56.6608 87.6768 56.9697C87.9053 57.2786 88.0767 57.6489 88.1909 58.0806C88.3094 58.508 88.3687 58.984 88.3687 59.5088ZM87.188 59.6421V59.5088C87.188 59.166 87.152 58.8444 87.0801 58.5439C87.0081 58.2393 86.896 57.9727 86.7437 57.7441C86.5955 57.5114 86.4051 57.3294 86.1724 57.1982C85.9396 57.0628 85.6624 56.9951 85.3408 56.9951C85.0446 56.9951 84.7865 57.0459 84.5664 57.1475C84.3506 57.249 84.1665 57.3866 84.0142 57.5601C83.8618 57.7293 83.737 57.924 83.6396 58.144C83.5465 58.3599 83.4767 58.5841 83.4302 58.8169V60.4609C83.5148 60.7572 83.6333 61.0365 83.7856 61.2988C83.938 61.557 84.1411 61.7664 84.395 61.9272C84.6489 62.0838 84.9684 62.1621 85.3535 62.1621C85.6709 62.1621 85.9438 62.0965 86.1724 61.9653C86.4051 61.8299 86.5955 61.6458 86.7437 61.4131C86.896 61.1803 87.0081 60.9137 87.0801 60.6133C87.152 60.3086 87.188 59.9849 87.188 59.6421ZM97.1411 61.8257V58.29C97.1411 58.0192 97.0861 57.7843 96.9761 57.5854C96.8703 57.3823 96.7095 57.2257 96.4937 57.1157C96.2778 57.0057 96.0112 56.9507 95.6938 56.9507C95.3976 56.9507 95.1374 57.0015 94.9131 57.103C94.693 57.2046 94.5195 57.3379 94.3926 57.5029C94.2699 57.668 94.2085 57.8457 94.2085 58.0361H93.0342C93.0342 57.7907 93.0977 57.5474 93.2246 57.3062C93.3516 57.0649 93.5335 56.847 93.7705 56.6523C94.0117 56.4535 94.2995 56.2969 94.6338 56.1826C94.9723 56.0641 95.349 56.0049 95.7637 56.0049C96.263 56.0049 96.7031 56.0895 97.084 56.2588C97.4691 56.4281 97.7695 56.6841 97.9854 57.0269C98.2054 57.3654 98.3154 57.7907 98.3154 58.3027V61.502C98.3154 61.7305 98.3345 61.9738 98.3726 62.2319C98.4149 62.4901 98.4762 62.7122 98.5566 62.8984V63H97.3315C97.2723 62.8646 97.2257 62.6847 97.1919 62.4604C97.158 62.2319 97.1411 62.0203 97.1411 61.8257ZM97.3442 58.8359L97.3569 59.6611H96.1699C95.8356 59.6611 95.5373 59.6886 95.2749 59.7437C95.0125 59.7944 94.7925 59.8727 94.6147 59.9785C94.437 60.0843 94.3016 60.2176 94.2085 60.3784C94.1154 60.535 94.0688 60.7191 94.0688 60.9307C94.0688 61.1465 94.1175 61.3433 94.2148 61.521C94.3122 61.6987 94.4582 61.8405 94.6528 61.9463C94.8517 62.0479 95.0951 62.0986 95.3828 62.0986C95.7425 62.0986 96.0599 62.0225 96.335 61.8701C96.61 61.7178 96.828 61.5316 96.9888 61.3115C97.1538 61.0915 97.2427 60.8778 97.2554 60.6704L97.7568 61.2354C97.7272 61.4131 97.6468 61.6099 97.5156 61.8257C97.3844 62.0415 97.2088 62.2489 96.9888 62.4478C96.7729 62.6424 96.5148 62.8053 96.2144 62.9365C95.9181 63.0635 95.5838 63.127 95.2114 63.127C94.7459 63.127 94.3376 63.036 93.9863 62.854C93.6393 62.672 93.3685 62.4287 93.1738 62.124C92.9834 61.8151 92.8882 61.4702 92.8882 61.0894C92.8882 60.7212 92.9601 60.3975 93.104 60.1182C93.2479 59.8346 93.4552 59.5998 93.7261 59.4136C93.9969 59.2231 94.3228 59.0793 94.7036 58.9819C95.0845 58.8846 95.5098 58.8359 95.9795 58.8359H97.3442ZM103.038 56.1318V57.0332H99.3247V56.1318H103.038ZM100.582 54.4624H101.756V61.2988C101.756 61.5316 101.792 61.7072 101.864 61.8257C101.936 61.9442 102.029 62.0225 102.143 62.0605C102.257 62.0986 102.38 62.1177 102.511 62.1177C102.609 62.1177 102.71 62.1092 102.816 62.0923C102.926 62.0711 103.008 62.0542 103.063 62.0415L103.07 63C102.977 63.0296 102.854 63.0571 102.702 63.0825C102.554 63.1121 102.374 63.127 102.162 63.127C101.874 63.127 101.61 63.0698 101.369 62.9556C101.127 62.8413 100.935 62.6509 100.791 62.3843C100.651 62.1134 100.582 61.7495 100.582 61.2925V54.4624ZM110.516 56.1318V57.0332H106.802V56.1318H110.516ZM108.059 54.4624H109.233V61.2988C109.233 61.5316 109.269 61.7072 109.341 61.8257C109.413 61.9442 109.506 62.0225 109.621 62.0605C109.735 62.0986 109.858 62.1177 109.989 62.1177C110.086 62.1177 110.188 62.1092 110.293 62.0923C110.403 62.0711 110.486 62.0542 110.541 62.0415L110.547 63C110.454 63.0296 110.332 63.0571 110.179 63.0825C110.031 63.1121 109.851 63.127 109.64 63.127C109.352 63.127 109.087 63.0698 108.846 62.9556C108.605 62.8413 108.412 62.6509 108.269 62.3843C108.129 62.1134 108.059 61.7495 108.059 61.2925V54.4624ZM113.067 53.25V63H111.893V53.25H113.067ZM112.788 59.3057L112.299 59.2866C112.304 58.8169 112.373 58.3831 112.509 57.9854C112.644 57.5833 112.835 57.2342 113.08 56.938C113.326 56.6418 113.618 56.4132 113.956 56.2524C114.299 56.0874 114.678 56.0049 115.092 56.0049C115.431 56.0049 115.736 56.0514 116.006 56.1445C116.277 56.2334 116.508 56.3773 116.698 56.5762C116.893 56.7751 117.041 57.0332 117.143 57.3506C117.244 57.6637 117.295 58.0467 117.295 58.4995V63H116.114V58.4868C116.114 58.1271 116.061 57.8394 115.956 57.6235C115.85 57.4035 115.695 57.2448 115.492 57.1475C115.289 57.0459 115.039 56.9951 114.743 56.9951C114.451 56.9951 114.185 57.0565 113.943 57.1792C113.706 57.3019 113.501 57.4712 113.328 57.687C113.158 57.9028 113.025 58.1504 112.928 58.4297C112.835 58.7048 112.788 58.9967 112.788 59.3057ZM121.903 63.127C121.425 63.127 120.991 63.0465 120.602 62.8857C120.217 62.7207 119.885 62.4901 119.605 62.1938C119.33 61.8976 119.119 61.5464 118.971 61.1401C118.823 60.7339 118.749 60.2896 118.749 59.8071V59.5405C118.749 58.9819 118.831 58.4847 118.996 58.0488C119.161 57.6087 119.385 57.2363 119.669 56.9316C119.952 56.627 120.274 56.3963 120.634 56.2397C120.993 56.0832 121.366 56.0049 121.751 56.0049C122.242 56.0049 122.665 56.0895 123.021 56.2588C123.38 56.4281 123.674 56.665 123.903 56.9697C124.131 57.2702 124.301 57.6257 124.411 58.0361C124.521 58.4424 124.576 58.8867 124.576 59.3691V59.896H119.447V58.9375H123.401V58.8486C123.384 58.5439 123.321 58.2477 123.211 57.96C123.105 57.6722 122.936 57.4352 122.703 57.249C122.47 57.0628 122.153 56.9697 121.751 56.9697C121.484 56.9697 121.239 57.0269 121.015 57.1411C120.79 57.2511 120.598 57.4162 120.437 57.6362C120.276 57.8563 120.151 58.125 120.062 58.4424C119.974 58.7598 119.929 59.1258 119.929 59.5405V59.8071C119.929 60.133 119.974 60.4398 120.062 60.7275C120.156 61.0111 120.289 61.2607 120.462 61.4766C120.64 61.6924 120.854 61.8617 121.104 61.9844C121.357 62.1071 121.645 62.1685 121.967 62.1685C122.382 62.1685 122.733 62.0838 123.021 61.9146C123.308 61.7453 123.56 61.5189 123.776 61.2354L124.487 61.8003C124.339 62.0246 124.15 62.2383 123.922 62.4414C123.693 62.6445 123.412 62.8096 123.078 62.9365C122.748 63.0635 122.356 63.127 121.903 63.127ZM133.221 61.8257V58.29C133.221 58.0192 133.166 57.7843 133.056 57.5854C132.95 57.3823 132.79 57.2257 132.574 57.1157C132.358 57.0057 132.091 56.9507 131.774 56.9507C131.478 56.9507 131.217 57.0015 130.993 57.103C130.773 57.2046 130.6 57.3379 130.473 57.5029C130.35 57.668 130.289 57.8457 130.289 58.0361H129.114C129.114 57.7907 129.178 57.5474 129.305 57.3062C129.432 57.0649 129.614 56.847 129.851 56.6523C130.092 56.4535 130.38 56.2969 130.714 56.1826C131.052 56.0641 131.429 56.0049 131.844 56.0049C132.343 56.0049 132.783 56.0895 133.164 56.2588C133.549 56.4281 133.85 56.6841 134.065 57.0269C134.285 57.3654 134.396 57.7907 134.396 58.3027V61.502C134.396 61.7305 134.415 61.9738 134.453 62.2319C134.495 62.4901 134.556 62.7122 134.637 62.8984V63H133.412C133.352 62.8646 133.306 62.6847 133.272 62.4604C133.238 62.2319 133.221 62.0203 133.221 61.8257ZM133.424 58.8359L133.437 59.6611H132.25C131.916 59.6611 131.617 59.6886 131.355 59.7437C131.093 59.7944 130.873 59.8727 130.695 59.9785C130.517 60.0843 130.382 60.2176 130.289 60.3784C130.195 60.535 130.149 60.7191 130.149 60.9307C130.149 61.1465 130.198 61.3433 130.295 61.521C130.392 61.6987 130.538 61.8405 130.733 61.9463C130.932 62.0479 131.175 62.0986 131.463 62.0986C131.823 62.0986 132.14 62.0225 132.415 61.8701C132.69 61.7178 132.908 61.5316 133.069 61.3115C133.234 61.0915 133.323 60.8778 133.335 60.6704L133.837 61.2354C133.807 61.4131 133.727 61.6099 133.596 61.8257C133.465 62.0415 133.289 62.2489 133.069 62.4478C132.853 62.6424 132.595 62.8053 132.294 62.9365C131.998 63.0635 131.664 63.127 131.292 63.127C130.826 63.127 130.418 63.036 130.066 62.854C129.719 62.672 129.449 62.4287 129.254 62.124C129.063 61.8151 128.968 61.4702 128.968 61.0894C128.968 60.7212 129.04 60.3975 129.184 60.1182C129.328 59.8346 129.535 59.5998 129.806 59.4136C130.077 59.2231 130.403 59.0793 130.784 58.9819C131.165 58.8846 131.59 58.8359 132.06 58.8359H133.424ZM137.519 56.1318V63H136.338V56.1318H137.519ZM136.249 54.3101C136.249 54.1196 136.306 53.9588 136.42 53.8276C136.539 53.6965 136.712 53.6309 136.941 53.6309C137.165 53.6309 137.337 53.6965 137.455 53.8276C137.578 53.9588 137.639 54.1196 137.639 54.3101C137.639 54.492 137.578 54.6486 137.455 54.7798C137.337 54.9067 137.165 54.9702 136.941 54.9702C136.712 54.9702 136.539 54.9067 136.42 54.7798C136.306 54.6486 136.249 54.492 136.249 54.3101ZM140.578 57.2109V63H139.404V56.1318H140.546L140.578 57.2109ZM142.724 56.0938L142.717 57.1855C142.62 57.1644 142.527 57.1517 142.438 57.1475C142.353 57.139 142.256 57.1348 142.146 57.1348C141.875 57.1348 141.636 57.1771 141.429 57.2617C141.221 57.3464 141.046 57.4648 140.902 57.6172C140.758 57.7695 140.644 57.9515 140.559 58.1631C140.479 58.3704 140.426 58.599 140.4 58.8486L140.07 59.0391C140.07 58.6243 140.111 58.235 140.191 57.8711C140.276 57.5072 140.405 57.1855 140.578 56.9062C140.752 56.6227 140.972 56.4027 141.238 56.2461C141.509 56.0853 141.831 56.0049 142.203 56.0049C142.288 56.0049 142.385 56.0155 142.495 56.0366C142.605 56.0535 142.681 56.0726 142.724 56.0938ZM144.983 57.4521V65.6406H143.803V56.1318H144.882L144.983 57.4521ZM149.611 59.5088V59.6421C149.611 60.1414 149.552 60.6048 149.433 61.0322C149.315 61.4554 149.141 61.8236 148.913 62.1367C148.688 62.4499 148.411 62.6932 148.081 62.8667C147.751 63.0402 147.372 63.127 146.945 63.127C146.509 63.127 146.124 63.055 145.79 62.9111C145.455 62.7673 145.172 62.5578 144.939 62.2827C144.706 62.0076 144.52 61.6776 144.38 61.2925C144.245 60.9074 144.152 60.4736 144.101 59.9912V59.2803C144.152 58.7725 144.247 58.3175 144.387 57.9155C144.526 57.5135 144.71 57.1707 144.939 56.8872C145.172 56.5994 145.453 56.3815 145.783 56.2334C146.113 56.0811 146.494 56.0049 146.926 56.0049C147.357 56.0049 147.74 56.0895 148.075 56.2588C148.409 56.4238 148.69 56.6608 148.919 56.9697C149.147 57.2786 149.319 57.6489 149.433 58.0806C149.552 58.508 149.611 58.984 149.611 59.5088ZM148.43 59.6421V59.5088C148.43 59.166 148.394 58.8444 148.322 58.5439C148.25 58.2393 148.138 57.9727 147.986 57.7441C147.838 57.5114 147.647 57.3294 147.415 57.1982C147.182 57.0628 146.905 56.9951 146.583 56.9951C146.287 56.9951 146.029 57.0459 145.809 57.1475C145.593 57.249 145.409 57.3866 145.256 57.5601C145.104 57.7293 144.979 57.924 144.882 58.144C144.789 58.3599 144.719 58.5841 144.672 58.8169V60.4609C144.757 60.7572 144.875 61.0365 145.028 61.2988C145.18 61.557 145.383 61.7664 145.637 61.9272C145.891 62.0838 146.211 62.1621 146.596 62.1621C146.913 62.1621 147.186 62.0965 147.415 61.9653C147.647 61.8299 147.838 61.6458 147.986 61.4131C148.138 61.1803 148.25 60.9137 148.322 60.6133C148.394 60.3086 148.43 59.9849 148.43 59.6421ZM150.798 59.6421V59.4961C150.798 59.001 150.87 58.5418 151.014 58.1187C151.158 57.6912 151.365 57.321 151.636 57.0078C151.907 56.6904 152.235 56.445 152.62 56.2715C153.005 56.0938 153.436 56.0049 153.915 56.0049C154.397 56.0049 154.831 56.0938 155.216 56.2715C155.605 56.445 155.935 56.6904 156.206 57.0078C156.481 57.321 156.691 57.6912 156.834 58.1187C156.978 58.5418 157.05 59.001 157.05 59.4961V59.6421C157.05 60.1372 156.978 60.5964 156.834 61.0195C156.691 61.4427 156.481 61.813 156.206 62.1304C155.935 62.4435 155.607 62.689 155.222 62.8667C154.841 63.0402 154.41 63.127 153.927 63.127C153.445 63.127 153.011 63.0402 152.626 62.8667C152.241 62.689 151.911 62.4435 151.636 62.1304C151.365 61.813 151.158 61.4427 151.014 61.0195C150.87 60.5964 150.798 60.1372 150.798 59.6421ZM151.972 59.4961V59.6421C151.972 59.9849 152.012 60.3086 152.093 60.6133C152.173 60.9137 152.294 61.1803 152.455 61.4131C152.62 61.6458 152.825 61.8299 153.07 61.9653C153.316 62.0965 153.601 62.1621 153.927 62.1621C154.249 62.1621 154.53 62.0965 154.771 61.9653C155.017 61.8299 155.22 61.6458 155.381 61.4131C155.542 61.1803 155.662 60.9137 155.743 60.6133C155.827 60.3086 155.87 59.9849 155.87 59.6421V59.4961C155.87 59.1576 155.827 58.8381 155.743 58.5376C155.662 58.2329 155.54 57.9642 155.375 57.7314C155.214 57.4945 155.011 57.3083 154.765 57.1729C154.524 57.0374 154.24 56.9697 153.915 56.9697C153.593 56.9697 153.309 57.0374 153.064 57.1729C152.823 57.3083 152.62 57.4945 152.455 57.7314C152.294 57.9642 152.173 58.2329 152.093 58.5376C152.012 58.8381 151.972 59.1576 151.972 59.4961ZM159.697 57.2109V63H158.523V56.1318H159.666L159.697 57.2109ZM161.843 56.0938L161.836 57.1855C161.739 57.1644 161.646 57.1517 161.557 57.1475C161.472 57.139 161.375 57.1348 161.265 57.1348C160.994 57.1348 160.755 57.1771 160.548 57.2617C160.34 57.3464 160.165 57.4648 160.021 57.6172C159.877 57.7695 159.763 57.9515 159.678 58.1631C159.598 58.3704 159.545 58.599 159.52 58.8486L159.189 59.0391C159.189 58.6243 159.23 58.235 159.31 57.8711C159.395 57.5072 159.524 57.1855 159.697 56.9062C159.871 56.6227 160.091 56.4027 160.357 56.2461C160.628 56.0853 160.95 56.0049 161.322 56.0049C161.407 56.0049 161.504 56.0155 161.614 56.0366C161.724 56.0535 161.8 56.0726 161.843 56.0938ZM166.121 56.1318V57.0332H162.408V56.1318H166.121ZM163.665 54.4624H164.839V61.2988C164.839 61.5316 164.875 61.7072 164.947 61.8257C165.019 61.9442 165.112 62.0225 165.226 62.0605C165.34 62.0986 165.463 62.1177 165.594 62.1177C165.692 62.1177 165.793 62.1092 165.899 62.0923C166.009 62.0711 166.091 62.0542 166.146 62.0415L166.153 63C166.06 63.0296 165.937 63.0571 165.785 63.0825C165.637 63.1121 165.457 63.127 165.245 63.127C164.957 63.127 164.693 63.0698 164.452 62.9556C164.21 62.8413 164.018 62.6509 163.874 62.3843C163.734 62.1134 163.665 61.7495 163.665 61.2925V54.4624ZM168.667 53.7578V64.7139H167.721V53.7578H168.667Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M279 113.496L272.495 120",stroke:"#64748B",strokeLinecap:"round"}),(0,h.createElement)("path",{d:"M279 116.748L275.747 120",stroke:"#64748B",strokeLinecap:"round"}),(0,h.createElement)("rect",{x:"16",y:"42",width:"266",height:"81",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),{ToolBarFields:Do,AdvancedFields:zo,FieldWrapper:Uo,FieldSettingsWrapper:Go,ValidationToggleGroup:Wo,ValidationBlockMessage:Ko,BlockLabel:$o,BlockDescription:Yo,BlockName:Xo,BlockAdvancedValue:Qo,EditAdvancedRulesButton:es,AdvancedInspectorControl:Cs,AttributeHelp:ts}=JetFBComponents,{useIsAdvancedValidation:ls,useUniqueNameOnDuplicate:rs}=JetFBHooks,{__:ns}=wp.i18n,{InspectorControls:as,useBlockProps:is}=wp.blockEditor,{TextareaControl:os,TextControl:ss,PanelBody:cs,__experimentalNumberControl:ds}=wp.components;let{NumberControl:ms}=wp.components;void 0===ms&&(ms=ds);const us=JSON.parse('{"apiVersion":3,"name":"jet-forms/textarea-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","textarea"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Textarea Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"minlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"maxlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:ps}=wp.i18n,{createBlock:fs}=wp.blocks,{name:Vs,icon:Hs=""}=us,hs={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Hs}}),description:ps("Give the user enough space to type in a bigger piece of text. Add a text area where the data can be placed in several lines.","jet-form-builder"),edit:function(e){const{attributes:C,setAttributes:t,isSelected:l,editProps:{uniqKey:r}}=e,n=is(),a=ls();return rs(),C.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},qo):[(0,h.createElement)(Do,{key:r("ToolBarFields"),...e}),l&&(0,h.createElement)(as,{key:r("InspectorControls")},(0,h.createElement)(cs,{title:ns("General","jet-form-builder")},(0,h.createElement)($o,null),(0,h.createElement)(Xo,null),(0,h.createElement)(Yo,null)),(0,h.createElement)(cs,{title:ns("Value","jet-form-builder")},(0,h.createElement)(Qo,null)),(0,h.createElement)(Go,{...e},(0,h.createElement)(Cs,{value:C.minlength,label:ns("Min length (symbols)","jet-form-builder"),onChangePreset:e=>t({minlength:e})},(({instanceId:e})=>(0,h.createElement)(ss,{id:e,className:"jet-fb m-unset",value:C.minlength,onChange:e=>t({minlength:e})}))),(0,h.createElement)(ts,{name:"minlength"}),(0,h.createElement)(Cs,{value:C.maxlength,label:ns("Max length (symbols)","jet-form-builder"),onChangePreset:e=>t({maxlength:e})},(({instanceId:e})=>(0,h.createElement)(ss,{id:e,className:"jet-fb m-unset",value:C.maxlength,onChange:e=>t({maxlength:e})}))),(0,h.createElement)(ts,{name:"maxlength"})),(0,h.createElement)(cs,{title:ns("Validation","jet-form-builder")},(0,h.createElement)(Wo,null),a&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(es,null),Boolean(C.minlength)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ko,{name:"char_min"})),Boolean(C.maxlength)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ko,{name:"char_max"})),(0,h.createElement)(Ko,{name:"empty"}))),(0,h.createElement)(zo,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{key:r("viewBlock"),...n},(0,h.createElement)(Uo,{key:r("FieldWrapper"),...e},(0,h.createElement)(os,{className:"jet-form-builder__field-preview",key:r("place_holder_block"),placeholder:C.placeholder,onChange:()=>{}})))]},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>fs("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/wysiwyg-field"],transform:e=>fs(Vs,{...e}),priority:0}]}},bs=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"20.5",width:"22",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.3887 29.4028V30.3677H28.0283V29.4028H34.3887ZM42.9199 29.4028V30.3677H36.5596V29.4028H42.9199Z",fill:"white"}),(0,h.createElement)("path",{d:"M49.8442 33.8779C49.8442 33.679 49.9056 33.5119 50.0283 33.3765C50.1553 33.2368 50.3372 33.167 50.5742 33.167C50.8112 33.167 50.991 33.2368 51.1138 33.3765C51.2407 33.5119 51.3042 33.679 51.3042 33.8779C51.3042 34.0726 51.2407 34.2376 51.1138 34.373C50.991 34.5085 50.8112 34.5762 50.5742 34.5762C50.3372 34.5762 50.1553 34.5085 50.0283 34.373C49.9056 34.2376 49.8442 34.0726 49.8442 33.8779ZM49.8506 28.2729C49.8506 28.0741 49.9119 27.9069 50.0347 27.7715C50.1616 27.6318 50.3436 27.562 50.5806 27.562C50.8175 27.562 50.9974 27.6318 51.1201 27.7715C51.2471 27.9069 51.3105 28.0741 51.3105 28.2729C51.3105 28.4676 51.2471 28.6326 51.1201 28.7681C50.9974 28.9035 50.8175 28.9712 50.5806 28.9712C50.3436 28.9712 50.1616 28.9035 50.0347 28.7681C49.9119 28.6326 49.8506 28.4676 49.8506 28.2729ZM62.7617 29.4028V30.3677H56.4014V29.4028H62.7617ZM71.293 29.4028V30.3677H64.9326V29.4028H71.293ZM76.5044 33.8779C76.5044 33.679 76.5658 33.5119 76.6885 33.3765C76.8154 33.2368 76.9974 33.167 77.2344 33.167C77.4714 33.167 77.6512 33.2368 77.7739 33.3765C77.9009 33.5119 77.9644 33.679 77.9644 33.8779C77.9644 34.0726 77.9009 34.2376 77.7739 34.373C77.6512 34.5085 77.4714 34.5762 77.2344 34.5762C76.9974 34.5762 76.8154 34.5085 76.6885 34.373C76.5658 34.2376 76.5044 34.0726 76.5044 33.8779ZM76.5107 28.2729C76.5107 28.0741 76.5721 27.9069 76.6948 27.7715C76.8218 27.6318 77.0037 27.562 77.2407 27.562C77.4777 27.562 77.6576 27.6318 77.7803 27.7715C77.9072 27.9069 77.9707 28.0741 77.9707 28.2729C77.9707 28.4676 77.9072 28.6326 77.7803 28.7681C77.6576 28.9035 77.4777 28.9712 77.2407 28.9712C77.0037 28.9712 76.8218 28.9035 76.6948 28.7681C76.5721 28.6326 76.5107 28.4676 76.5107 28.2729ZM89.4219 29.4028V30.3677H83.0615V29.4028H89.4219ZM97.9531 29.4028V30.3677H91.5928V29.4028H97.9531Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M260.991 21C256.023 21 252 25.032 252 30C252 34.968 256.023 39 260.991 39C265.968 39 270 34.968 270 30C270 25.032 265.968 21 260.991 21ZM261 37.2C257.022 37.2 253.8 33.978 253.8 30C253.8 26.022 257.022 22.8 261 22.8C264.978 22.8 268.2 26.022 268.2 30C268.2 33.978 264.978 37.2 261 37.2ZM260.802 25.5H260.748C260.388 25.5 260.1 25.788 260.1 26.148V30.396C260.1 30.711 260.262 31.008 260.541 31.17L264.276 33.411C264.582 33.591 264.978 33.501 265.158 33.195C265.347 32.889 265.248 32.484 264.933 32.304L261.45 30.234V26.148C261.45 25.788 261.162 25.5 260.802 25.5V25.5Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("path",{d:"M15 49C15 46.7909 16.7909 45 19 45H279C281.209 45 283 46.7909 283 49V144H15V49Z",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"64.9048",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"104.905",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M42.3906 64.5664V66.166C42.3906 66.86 42.3166 67.4588 42.1685 67.9624C42.0203 68.4618 41.8066 68.8722 41.5273 69.1938C41.2523 69.5112 40.9243 69.7461 40.5435 69.8984C40.1626 70.0508 39.7394 70.127 39.2739 70.127C38.9015 70.127 38.5545 70.0804 38.2329 69.9873C37.9113 69.89 37.6214 69.7397 37.3633 69.5366C37.1094 69.3335 36.8893 69.0775 36.7031 68.7686C36.5212 68.4554 36.3815 68.083 36.2842 67.6514C36.1868 67.2197 36.1382 66.7246 36.1382 66.166V64.5664C36.1382 63.8724 36.2122 63.2778 36.3604 62.7827C36.5127 62.2834 36.7264 61.875 37.0015 61.5576C37.2808 61.2402 37.6108 61.0075 37.9917 60.8594C38.3726 60.707 38.7957 60.6309 39.2612 60.6309C39.6336 60.6309 39.9785 60.6795 40.2959 60.7769C40.6175 60.87 40.9074 61.016 41.1655 61.2148C41.4237 61.4137 41.6437 61.6698 41.8257 61.9829C42.0076 62.2918 42.1473 62.6621 42.2446 63.0938C42.342 63.5212 42.3906 64.012 42.3906 64.5664ZM40.5562 66.4072V64.3188C40.5562 63.9845 40.5371 63.6925 40.499 63.4429C40.4652 63.1932 40.4123 62.9816 40.3403 62.8081C40.2684 62.6304 40.1795 62.4865 40.0737 62.3765C39.9679 62.2664 39.8473 62.186 39.7119 62.1353C39.5765 62.0845 39.4263 62.0591 39.2612 62.0591C39.0539 62.0591 38.8698 62.0993 38.709 62.1797C38.5524 62.2601 38.4191 62.3892 38.3091 62.5669C38.1991 62.7404 38.1144 62.9731 38.0552 63.2651C38.0002 63.5529 37.9727 63.9041 37.9727 64.3188V66.4072C37.9727 66.7415 37.9896 67.0356 38.0234 67.2896C38.0615 67.5435 38.1165 67.7614 38.1885 67.9434C38.2646 68.1211 38.3535 68.2671 38.4551 68.3813C38.5609 68.4914 38.6815 68.5718 38.8169 68.6226C38.9565 68.6733 39.1089 68.6987 39.2739 68.6987C39.4771 68.6987 39.6569 68.6585 39.8135 68.5781C39.9743 68.4935 40.1097 68.3623 40.2197 68.1846C40.334 68.0026 40.4186 67.7656 40.4736 67.4736C40.5286 67.1816 40.5562 66.8262 40.5562 66.4072ZM49.957 68.5718V70H43.6348V68.7812L46.6245 65.5757C46.925 65.2414 47.1619 64.9473 47.3354 64.6934C47.509 64.4352 47.6338 64.2046 47.71 64.0015C47.7904 63.7941 47.8306 63.5973 47.8306 63.4111C47.8306 63.1318 47.784 62.8927 47.6909 62.6938C47.5978 62.4907 47.4603 62.3341 47.2783 62.2241C47.1006 62.1141 46.8805 62.0591 46.6182 62.0591C46.3389 62.0591 46.0977 62.1268 45.8945 62.2622C45.6956 62.3976 45.5433 62.5859 45.4375 62.8271C45.3359 63.0684 45.2852 63.3413 45.2852 63.646H43.4507C43.4507 63.0959 43.5819 62.5923 43.8442 62.1353C44.1066 61.674 44.4769 61.3079 44.9551 61.0371C45.4333 60.762 46.0003 60.6245 46.6562 60.6245C47.3037 60.6245 47.8496 60.7303 48.2939 60.9419C48.7425 61.1493 49.0811 61.4497 49.3096 61.8433C49.5423 62.2326 49.6587 62.6981 49.6587 63.2397C49.6587 63.5444 49.61 63.8428 49.5127 64.1348C49.4154 64.4225 49.2757 64.7103 49.0938 64.998C48.916 65.2816 48.7002 65.5693 48.4463 65.8613C48.1924 66.1533 47.911 66.4559 47.6021 66.769L45.9961 68.5718H49.957Z",fill:"white"}),(0,h.createElement)("path",{d:"M82.4922 68.5718V70H76.1699V68.7812L79.1597 65.5757C79.4601 65.2414 79.6971 64.9473 79.8706 64.6934C80.0441 64.4352 80.1689 64.2046 80.2451 64.0015C80.3255 63.7941 80.3657 63.5973 80.3657 63.4111C80.3657 63.1318 80.3192 62.8927 80.2261 62.6938C80.133 62.4907 79.9954 62.3341 79.8135 62.2241C79.6357 62.1141 79.4157 62.0591 79.1533 62.0591C78.874 62.0591 78.6328 62.1268 78.4297 62.2622C78.2308 62.3976 78.0785 62.5859 77.9727 62.8271C77.8711 63.0684 77.8203 63.3413 77.8203 63.646H75.9858C75.9858 63.0959 76.117 62.5923 76.3794 62.1353C76.6418 61.674 77.012 61.3079 77.4902 61.0371C77.9684 60.762 78.5355 60.6245 79.1914 60.6245C79.8389 60.6245 80.3848 60.7303 80.8291 60.9419C81.2777 61.1493 81.6162 61.4497 81.8447 61.8433C82.0775 62.2326 82.1938 62.6981 82.1938 63.2397C82.1938 63.5444 82.1452 63.8428 82.0479 64.1348C81.9505 64.4225 81.8109 64.7103 81.6289 64.998C81.4512 65.2816 81.2354 65.5693 80.9814 65.8613C80.7275 66.1533 80.4461 66.4559 80.1372 66.769L78.5312 68.5718H82.4922ZM89.9126 60.7578V61.7417L86.3389 70H84.4092L87.9829 62.186H83.3809V60.7578H89.9126Z",fill:"white"}),(0,h.createElement)("path",{d:"M117.541 66.7056H115.186V65.2202H117.541C117.905 65.2202 118.201 65.161 118.43 65.0425C118.658 64.9198 118.825 64.7505 118.931 64.5347C119.037 64.3188 119.09 64.0755 119.09 63.8047C119.09 63.5296 119.037 63.2736 118.931 63.0366C118.825 62.7996 118.658 62.6092 118.43 62.4653C118.201 62.3215 117.905 62.2495 117.541 62.2495H115.846V70H113.942V60.7578H117.541C118.265 60.7578 118.885 60.889 119.401 61.1514C119.921 61.4095 120.319 61.7671 120.594 62.2241C120.869 62.6812 121.007 63.2038 121.007 63.792C121.007 64.3887 120.869 64.9049 120.594 65.3408C120.319 65.7767 119.921 66.1131 119.401 66.3501C118.885 66.5871 118.265 66.7056 117.541 66.7056ZM123.19 60.7578H124.803L127.177 67.5435L129.551 60.7578H131.163L127.824 70H126.529L123.19 60.7578ZM122.321 60.7578H123.927L124.219 67.3721V70H122.321V60.7578ZM130.427 60.7578H132.039V70H130.135V67.3721L130.427 60.7578Z",fill:"white"}),(0,h.createElement)("path",{d:"M42.2573 87.6426V89.0518C42.2573 89.8092 42.1896 90.4482 42.0542 90.9688C41.9188 91.4893 41.7241 91.9082 41.4702 92.2256C41.2163 92.543 40.9095 92.7736 40.5498 92.9175C40.1943 93.0571 39.7923 93.127 39.3438 93.127C38.9883 93.127 38.6603 93.0825 38.3599 92.9937C38.0594 92.9048 37.7886 92.763 37.5474 92.5684C37.3104 92.3695 37.1073 92.1113 36.938 91.7939C36.7687 91.4766 36.6396 91.0915 36.5508 90.6387C36.4619 90.1859 36.4175 89.6569 36.4175 89.0518V87.6426C36.4175 86.8851 36.4852 86.2503 36.6206 85.7383C36.7603 85.2262 36.957 84.8158 37.2109 84.5068C37.4648 84.1937 37.7695 83.9694 38.125 83.834C38.4847 83.6986 38.8867 83.6309 39.3311 83.6309C39.6908 83.6309 40.0208 83.6753 40.3213 83.7642C40.626 83.8488 40.8968 83.9863 41.1338 84.1768C41.3708 84.363 41.5718 84.6126 41.7368 84.9258C41.9061 85.2347 42.0352 85.6134 42.124 86.062C42.2129 86.5106 42.2573 87.0374 42.2573 87.6426ZM41.0767 89.2422V87.4458C41.0767 87.0311 41.0513 86.6672 41.0005 86.354C40.9539 86.0366 40.8841 85.7658 40.791 85.5415C40.6979 85.3172 40.5794 85.1353 40.4355 84.9956C40.2959 84.856 40.133 84.7544 39.9468 84.6909C39.7648 84.6232 39.5596 84.5894 39.3311 84.5894C39.0518 84.5894 38.8042 84.6423 38.5884 84.748C38.3726 84.8496 38.1906 85.0125 38.0425 85.2368C37.8986 85.4611 37.7886 85.7552 37.7124 86.1191C37.6362 86.4831 37.5981 86.9253 37.5981 87.4458V89.2422C37.5981 89.6569 37.6214 90.0229 37.668 90.3403C37.7188 90.6577 37.7928 90.9328 37.8901 91.1655C37.9875 91.394 38.106 91.5824 38.2456 91.7305C38.3853 91.8786 38.5461 91.9886 38.728 92.0605C38.9142 92.1283 39.1195 92.1621 39.3438 92.1621C39.6315 92.1621 39.8833 92.1071 40.0991 91.9971C40.3149 91.887 40.4948 91.7157 40.6387 91.4829C40.7868 91.2459 40.8968 90.9434 40.9688 90.5752C41.0407 90.2028 41.0767 89.7585 41.0767 89.2422ZM45.4819 87.8013H46.3198C46.7303 87.8013 47.0688 87.7336 47.3354 87.5981C47.6063 87.4585 47.8073 87.2702 47.9385 87.0332C48.0739 86.792 48.1416 86.5212 48.1416 86.2207C48.1416 85.8652 48.0824 85.5669 47.9639 85.3257C47.8454 85.0845 47.6676 84.9025 47.4307 84.7798C47.1937 84.6571 46.8932 84.5957 46.5293 84.5957C46.1992 84.5957 45.9072 84.6613 45.6533 84.7925C45.4036 84.9194 45.2069 85.1014 45.063 85.3384C44.9233 85.5754 44.8535 85.8547 44.8535 86.1763H43.6792C43.6792 85.7065 43.7977 85.2791 44.0347 84.894C44.2716 84.509 44.6038 84.2021 45.0312 83.9736C45.4629 83.7451 45.9622 83.6309 46.5293 83.6309C47.0879 83.6309 47.5767 83.7303 47.9956 83.9292C48.4146 84.1239 48.7404 84.4159 48.9731 84.8052C49.2059 85.1903 49.3223 85.6706 49.3223 86.2461C49.3223 86.4788 49.2673 86.7285 49.1572 86.9951C49.0514 87.2575 48.8843 87.5029 48.6558 87.7314C48.4315 87.96 48.1395 88.1483 47.7798 88.2964C47.4201 88.4403 46.9884 88.5122 46.4849 88.5122H45.4819V87.8013ZM45.4819 88.7661V88.0615H46.4849C47.0731 88.0615 47.5597 88.1313 47.9448 88.271C48.3299 88.4106 48.6325 88.5968 48.8525 88.8296C49.0768 89.0623 49.2334 89.3184 49.3223 89.5977C49.4154 89.8727 49.4619 90.1478 49.4619 90.4229C49.4619 90.8545 49.3879 91.2375 49.2397 91.5718C49.0959 91.9061 48.8906 92.1896 48.624 92.4224C48.3617 92.6551 48.0527 92.8307 47.6973 92.9492C47.3418 93.0677 46.9546 93.127 46.5356 93.127C46.1336 93.127 45.7549 93.0698 45.3994 92.9556C45.0482 92.8413 44.7371 92.6763 44.4663 92.4604C44.1955 92.2404 43.9839 91.9717 43.8315 91.6543C43.6792 91.3327 43.603 90.9666 43.603 90.5562H44.7773C44.7773 90.8778 44.8472 91.1592 44.9868 91.4004C45.1307 91.6416 45.3338 91.8299 45.5962 91.9653C45.8628 92.0965 46.1759 92.1621 46.5356 92.1621C46.8953 92.1621 47.2043 92.1007 47.4624 91.978C47.7248 91.8511 47.9258 91.6606 48.0654 91.4067C48.2093 91.1528 48.2812 90.8333 48.2812 90.4482C48.2812 90.0632 48.2008 89.7479 48.04 89.5024C47.8792 89.2528 47.6507 89.0687 47.3545 88.9502C47.0625 88.8275 46.7176 88.7661 46.3198 88.7661H45.4819Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M82.5112 92.0352V93H76.4619V92.1558L79.4897 88.7852C79.8621 88.3704 80.1499 88.0192 80.353 87.7314C80.5604 87.4395 80.7043 87.1792 80.7847 86.9507C80.8693 86.7179 80.9116 86.481 80.9116 86.2397C80.9116 85.9351 80.8481 85.66 80.7212 85.4146C80.5985 85.1649 80.4165 84.966 80.1753 84.8179C79.9341 84.6698 79.6421 84.5957 79.2993 84.5957C78.8888 84.5957 78.5461 84.6761 78.271 84.8369C78.0002 84.9935 77.797 85.2135 77.6616 85.4971C77.5262 85.7806 77.4585 86.1064 77.4585 86.4746H76.2842C76.2842 85.9541 76.3984 85.478 76.627 85.0464C76.8555 84.6147 77.194 84.272 77.6426 84.0181C78.0911 83.7599 78.6434 83.6309 79.2993 83.6309C79.8833 83.6309 80.3826 83.7345 80.7974 83.9419C81.2121 84.145 81.5295 84.4328 81.7495 84.8052C81.9738 85.1733 82.0859 85.605 82.0859 86.1001C82.0859 86.3709 82.0394 86.646 81.9463 86.9253C81.8574 87.2004 81.7326 87.4754 81.5718 87.7505C81.4152 88.0256 81.2311 88.2964 81.0195 88.563C80.8122 88.8296 80.59 89.092 80.353 89.3501L77.8774 92.0352H82.5112ZM89.5952 90.499C89.5952 91.0618 89.464 91.54 89.2017 91.9336C88.9435 92.3229 88.5923 92.6191 88.1479 92.8223C87.7078 93.0254 87.2106 93.127 86.6562 93.127C86.1019 93.127 85.6025 93.0254 85.1582 92.8223C84.7139 92.6191 84.3626 92.3229 84.1045 91.9336C83.8464 91.54 83.7173 91.0618 83.7173 90.499C83.7173 90.1309 83.7871 89.7944 83.9268 89.4897C84.0706 89.1808 84.2716 88.9121 84.5298 88.6836C84.7922 88.4551 85.1011 88.2795 85.4565 88.1567C85.8162 88.0298 86.2119 87.9663 86.6436 87.9663C87.2106 87.9663 87.7163 88.0763 88.1606 88.2964C88.605 88.5122 88.9541 88.8105 89.208 89.1914C89.4661 89.5723 89.5952 90.0081 89.5952 90.499ZM88.4146 90.4736C88.4146 90.1309 88.3405 89.8283 88.1924 89.5659C88.0443 89.2993 87.8369 89.092 87.5703 88.9438C87.3037 88.7957 86.9948 88.7217 86.6436 88.7217C86.2839 88.7217 85.9728 88.7957 85.7104 88.9438C85.4523 89.092 85.2513 89.2993 85.1074 89.5659C84.9635 89.8283 84.8916 90.1309 84.8916 90.4736C84.8916 90.8291 84.9614 91.1338 85.1011 91.3877C85.245 91.6374 85.4481 91.8299 85.7104 91.9653C85.9771 92.0965 86.2923 92.1621 86.6562 92.1621C87.0202 92.1621 87.3333 92.0965 87.5957 91.9653C87.8581 91.8299 88.0591 91.6374 88.1987 91.3877C88.3426 91.1338 88.4146 90.8291 88.4146 90.4736ZM89.3794 86.1636C89.3794 86.6121 89.2609 87.0163 89.0239 87.376C88.7869 87.7357 88.4632 88.0192 88.0527 88.2266C87.6423 88.4339 87.1768 88.5376 86.6562 88.5376C86.1273 88.5376 85.6554 88.4339 85.2407 88.2266C84.8302 88.0192 84.5086 87.7357 84.2759 87.376C84.0431 87.0163 83.9268 86.6121 83.9268 86.1636C83.9268 85.6261 84.0431 85.1691 84.2759 84.7925C84.5129 84.4159 84.8366 84.1281 85.2471 83.9292C85.6576 83.7303 86.1252 83.6309 86.6499 83.6309C87.1789 83.6309 87.6486 83.7303 88.0591 83.9292C88.4696 84.1281 88.7912 84.4159 89.0239 84.7925C89.2609 85.1691 89.3794 85.6261 89.3794 86.1636ZM88.2051 86.1826C88.2051 85.8737 88.1395 85.6007 88.0083 85.3638C87.8771 85.1268 87.6951 84.9406 87.4624 84.8052C87.2297 84.6655 86.9588 84.5957 86.6499 84.5957C86.341 84.5957 86.0701 84.6613 85.8374 84.7925C85.6089 84.9194 85.429 85.1014 85.2979 85.3384C85.1709 85.5754 85.1074 85.8568 85.1074 86.1826C85.1074 86.5 85.1709 86.7772 85.2979 87.0142C85.429 87.2511 85.611 87.4352 85.8438 87.5664C86.0765 87.6976 86.3473 87.7632 86.6562 87.7632C86.9652 87.7632 87.2339 87.6976 87.4624 87.5664C87.6951 87.4352 87.8771 87.2511 88.0083 87.0142C88.1395 86.7772 88.2051 86.5 88.2051 86.1826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M117.579 84.5767L114.52 93H113.269L116.792 83.7578H117.598L117.579 84.5767ZM120.144 93L117.078 84.5767L117.059 83.7578H117.865L121.4 93H120.144ZM119.985 89.5786V90.5815H114.792V89.5786H119.985ZM123.025 83.7578H124.212L127.24 91.2925L130.262 83.7578H131.455L127.697 93H126.771L123.025 83.7578ZM122.638 83.7578H123.686L123.857 89.3945V93H122.638V83.7578ZM130.789 83.7578H131.836V93H130.617V89.3945L130.789 83.7578Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M42.2573 107.643V109.052C42.2573 109.809 42.1896 110.448 42.0542 110.969C41.9188 111.489 41.7241 111.908 41.4702 112.226C41.2163 112.543 40.9095 112.774 40.5498 112.917C40.1943 113.057 39.7923 113.127 39.3438 113.127C38.9883 113.127 38.6603 113.083 38.3599 112.994C38.0594 112.905 37.7886 112.763 37.5474 112.568C37.3104 112.369 37.1073 112.111 36.938 111.794C36.7687 111.477 36.6396 111.091 36.5508 110.639C36.4619 110.186 36.4175 109.657 36.4175 109.052V107.643C36.4175 106.885 36.4852 106.25 36.6206 105.738C36.7603 105.226 36.957 104.816 37.2109 104.507C37.4648 104.194 37.7695 103.969 38.125 103.834C38.4847 103.699 38.8867 103.631 39.3311 103.631C39.6908 103.631 40.0208 103.675 40.3213 103.764C40.626 103.849 40.8968 103.986 41.1338 104.177C41.3708 104.363 41.5718 104.613 41.7368 104.926C41.9061 105.235 42.0352 105.613 42.124 106.062C42.2129 106.511 42.2573 107.037 42.2573 107.643ZM41.0767 109.242V107.446C41.0767 107.031 41.0513 106.667 41.0005 106.354C40.9539 106.037 40.8841 105.766 40.791 105.542C40.6979 105.317 40.5794 105.135 40.4355 104.996C40.2959 104.856 40.133 104.754 39.9468 104.691C39.7648 104.623 39.5596 104.589 39.3311 104.589C39.0518 104.589 38.8042 104.642 38.5884 104.748C38.3726 104.85 38.1906 105.013 38.0425 105.237C37.8986 105.461 37.7886 105.755 37.7124 106.119C37.6362 106.483 37.5981 106.925 37.5981 107.446V109.242C37.5981 109.657 37.6214 110.023 37.668 110.34C37.7188 110.658 37.7928 110.933 37.8901 111.166C37.9875 111.394 38.106 111.582 38.2456 111.73C38.3853 111.879 38.5461 111.989 38.728 112.061C38.9142 112.128 39.1195 112.162 39.3438 112.162C39.6315 112.162 39.8833 112.107 40.0991 111.997C40.3149 111.887 40.4948 111.716 40.6387 111.483C40.7868 111.246 40.8968 110.943 40.9688 110.575C41.0407 110.203 41.0767 109.758 41.0767 109.242ZM50.0142 109.89V110.854H43.3364V110.163L47.4751 103.758H48.4336L47.4053 105.611L44.6694 109.89H50.0142ZM48.7256 103.758V113H47.5513V103.758H48.7256Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M82.5112 112.035V113H76.4619V112.156L79.4897 108.785C79.8621 108.37 80.1499 108.019 80.353 107.731C80.5604 107.439 80.7043 107.179 80.7847 106.951C80.8693 106.718 80.9116 106.481 80.9116 106.24C80.9116 105.935 80.8481 105.66 80.7212 105.415C80.5985 105.165 80.4165 104.966 80.1753 104.818C79.9341 104.67 79.6421 104.596 79.2993 104.596C78.8888 104.596 78.5461 104.676 78.271 104.837C78.0002 104.993 77.797 105.214 77.6616 105.497C77.5262 105.781 77.4585 106.106 77.4585 106.475H76.2842C76.2842 105.954 76.3984 105.478 76.627 105.046C76.8555 104.615 77.194 104.272 77.6426 104.018C78.0911 103.76 78.6434 103.631 79.2993 103.631C79.8833 103.631 80.3826 103.735 80.7974 103.942C81.2121 104.145 81.5295 104.433 81.7495 104.805C81.9738 105.173 82.0859 105.605 82.0859 106.1C82.0859 106.371 82.0394 106.646 81.9463 106.925C81.8574 107.2 81.7326 107.475 81.5718 107.75C81.4152 108.026 81.2311 108.296 81.0195 108.563C80.8122 108.83 80.59 109.092 80.353 109.35L77.8774 112.035H82.5112ZM84.936 112.016H85.0566C85.7337 112.016 86.2839 111.921 86.707 111.73C87.1302 111.54 87.4561 111.284 87.6846 110.962C87.9131 110.641 88.0697 110.279 88.1543 109.877C88.2389 109.471 88.2812 109.054 88.2812 108.626V107.211C88.2812 106.792 88.2326 106.42 88.1353 106.094C88.0422 105.768 87.911 105.495 87.7417 105.275C87.5767 105.055 87.3883 104.888 87.1768 104.773C86.9652 104.659 86.7409 104.602 86.5039 104.602C86.2331 104.602 85.9897 104.657 85.7739 104.767C85.5623 104.873 85.3825 105.023 85.2344 105.218C85.0905 105.412 84.9805 105.641 84.9043 105.903C84.8281 106.166 84.79 106.451 84.79 106.76C84.79 107.035 84.8239 107.302 84.8916 107.56C84.9593 107.818 85.063 108.051 85.2026 108.258C85.3423 108.466 85.5158 108.631 85.7231 108.753C85.9347 108.872 86.1823 108.931 86.4658 108.931C86.7282 108.931 86.9736 108.88 87.2021 108.779C87.4349 108.673 87.6401 108.531 87.8179 108.354C87.9998 108.172 88.1437 107.966 88.2495 107.738C88.3595 107.509 88.423 107.27 88.4399 107.021H88.9985C88.9985 107.372 88.9287 107.719 88.7891 108.062C88.6536 108.4 88.4632 108.709 88.2178 108.988C87.9723 109.268 87.6846 109.492 87.3545 109.661C87.0244 109.826 86.6647 109.909 86.2754 109.909C85.8184 109.909 85.4227 109.82 85.0884 109.642C84.7541 109.464 84.479 109.227 84.2632 108.931C84.0516 108.635 83.8929 108.305 83.7871 107.941C83.6855 107.573 83.6348 107.2 83.6348 106.824C83.6348 106.384 83.6961 105.971 83.8188 105.586C83.9416 105.201 84.1235 104.862 84.3647 104.57C84.606 104.274 84.9043 104.043 85.2598 103.878C85.6195 103.713 86.0342 103.631 86.5039 103.631C87.0329 103.631 87.4836 103.737 87.856 103.948C88.2284 104.16 88.5309 104.443 88.7637 104.799C89.0007 105.154 89.1742 105.554 89.2842 105.999C89.3942 106.443 89.4492 106.9 89.4492 107.37V107.795C89.4492 108.273 89.4175 108.76 89.354 109.255C89.2948 109.746 89.1784 110.215 89.0049 110.664C88.8356 111.113 88.5881 111.515 88.2622 111.87C87.9364 112.221 87.5111 112.501 86.9863 112.708C86.4658 112.911 85.8226 113.013 85.0566 113.013H84.936V112.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M42.2573 127.643V129.052C42.2573 129.809 42.1896 130.448 42.0542 130.969C41.9188 131.489 41.7241 131.908 41.4702 132.226C41.2163 132.543 40.9095 132.774 40.5498 132.917C40.1943 133.057 39.7923 133.127 39.3438 133.127C38.9883 133.127 38.6603 133.083 38.3599 132.994C38.0594 132.905 37.7886 132.763 37.5474 132.568C37.3104 132.369 37.1073 132.111 36.938 131.794C36.7687 131.477 36.6396 131.091 36.5508 130.639C36.4619 130.186 36.4175 129.657 36.4175 129.052V127.643C36.4175 126.885 36.4852 126.25 36.6206 125.738C36.7603 125.226 36.957 124.816 37.2109 124.507C37.4648 124.194 37.7695 123.969 38.125 123.834C38.4847 123.699 38.8867 123.631 39.3311 123.631C39.6908 123.631 40.0208 123.675 40.3213 123.764C40.626 123.849 40.8968 123.986 41.1338 124.177C41.3708 124.363 41.5718 124.613 41.7368 124.926C41.9061 125.235 42.0352 125.613 42.124 126.062C42.2129 126.511 42.2573 127.037 42.2573 127.643ZM41.0767 129.242V127.446C41.0767 127.031 41.0513 126.667 41.0005 126.354C40.9539 126.037 40.8841 125.766 40.791 125.542C40.6979 125.317 40.5794 125.135 40.4355 124.996C40.2959 124.856 40.133 124.754 39.9468 124.691C39.7648 124.623 39.5596 124.589 39.3311 124.589C39.0518 124.589 38.8042 124.642 38.5884 124.748C38.3726 124.85 38.1906 125.013 38.0425 125.237C37.8986 125.461 37.7886 125.755 37.7124 126.119C37.6362 126.483 37.5981 126.925 37.5981 127.446V129.242C37.5981 129.657 37.6214 130.023 37.668 130.34C37.7188 130.658 37.7928 130.933 37.8901 131.166C37.9875 131.394 38.106 131.582 38.2456 131.73C38.3853 131.879 38.5461 131.989 38.728 132.061C38.9142 132.128 39.1195 132.162 39.3438 132.162C39.6315 132.162 39.8833 132.107 40.0991 131.997C40.3149 131.887 40.4948 131.716 40.6387 131.483C40.7868 131.246 40.8968 130.943 40.9688 130.575C41.0407 130.203 41.0767 129.758 41.0767 129.242ZM45.2534 128.601L44.314 128.36L44.7773 123.758H49.519V124.843H45.7739L45.4946 127.357C45.6639 127.26 45.8776 127.169 46.1357 127.084C46.3981 126.999 46.6986 126.957 47.0371 126.957C47.4645 126.957 47.8475 127.031 48.186 127.179C48.5246 127.323 48.8123 127.53 49.0493 127.801C49.2905 128.072 49.4746 128.398 49.6016 128.779C49.7285 129.16 49.792 129.585 49.792 130.055C49.792 130.499 49.7306 130.907 49.6079 131.28C49.4894 131.652 49.3096 131.978 49.0684 132.257C48.8271 132.532 48.5225 132.746 48.1543 132.898C47.7904 133.051 47.3608 133.127 46.8657 133.127C46.4933 133.127 46.14 133.076 45.8057 132.975C45.4756 132.869 45.1794 132.71 44.917 132.499C44.6589 132.283 44.4473 132.016 44.2822 131.699C44.1214 131.377 44.0199 131 43.9775 130.569H45.0947C45.1455 130.916 45.2471 131.208 45.3994 131.445C45.5518 131.682 45.7507 131.862 45.9961 131.984C46.2458 132.103 46.5356 132.162 46.8657 132.162C47.145 132.162 47.3926 132.113 47.6084 132.016C47.8242 131.919 48.0062 131.779 48.1543 131.597C48.3024 131.415 48.4146 131.195 48.4907 130.937C48.5711 130.679 48.6113 130.389 48.6113 130.067C48.6113 129.775 48.5711 129.505 48.4907 129.255C48.4103 129.005 48.2897 128.787 48.1289 128.601C47.9723 128.415 47.7798 128.271 47.5513 128.169C47.3228 128.064 47.0604 128.011 46.7642 128.011C46.3706 128.011 46.0723 128.064 45.8691 128.169C45.6702 128.275 45.465 128.419 45.2534 128.601Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M78.1694 127.801H79.0073C79.4178 127.801 79.7563 127.734 80.0229 127.598C80.2938 127.458 80.4948 127.27 80.626 127.033C80.7614 126.792 80.8291 126.521 80.8291 126.221C80.8291 125.865 80.7699 125.567 80.6514 125.326C80.5329 125.084 80.3551 124.903 80.1182 124.78C79.8812 124.657 79.5807 124.596 79.2168 124.596C78.8867 124.596 78.5947 124.661 78.3408 124.792C78.0911 124.919 77.8944 125.101 77.7505 125.338C77.6108 125.575 77.541 125.855 77.541 126.176H76.3667C76.3667 125.707 76.4852 125.279 76.7222 124.894C76.9591 124.509 77.2913 124.202 77.7188 123.974C78.1504 123.745 78.6497 123.631 79.2168 123.631C79.7754 123.631 80.2642 123.73 80.6831 123.929C81.1021 124.124 81.4279 124.416 81.6606 124.805C81.8934 125.19 82.0098 125.671 82.0098 126.246C82.0098 126.479 81.9548 126.729 81.8447 126.995C81.7389 127.257 81.5718 127.503 81.3433 127.731C81.119 127.96 80.827 128.148 80.4673 128.296C80.1076 128.44 79.6759 128.512 79.1724 128.512H78.1694V127.801ZM78.1694 128.766V128.062H79.1724C79.7606 128.062 80.2472 128.131 80.6323 128.271C81.0174 128.411 81.32 128.597 81.54 128.83C81.7643 129.062 81.9209 129.318 82.0098 129.598C82.1029 129.873 82.1494 130.148 82.1494 130.423C82.1494 130.854 82.0754 131.237 81.9272 131.572C81.7834 131.906 81.5781 132.19 81.3115 132.422C81.0492 132.655 80.7402 132.831 80.3848 132.949C80.0293 133.068 79.6421 133.127 79.2231 133.127C78.8211 133.127 78.4424 133.07 78.0869 132.956C77.7357 132.841 77.4246 132.676 77.1538 132.46C76.883 132.24 76.6714 131.972 76.519 131.654C76.3667 131.333 76.2905 130.967 76.2905 130.556H77.4648C77.4648 130.878 77.5347 131.159 77.6743 131.4C77.8182 131.642 78.0213 131.83 78.2837 131.965C78.5503 132.097 78.8634 132.162 79.2231 132.162C79.5828 132.162 79.8918 132.101 80.1499 131.978C80.4123 131.851 80.6133 131.661 80.7529 131.407C80.8968 131.153 80.9688 130.833 80.9688 130.448C80.9688 130.063 80.8883 129.748 80.7275 129.502C80.5667 129.253 80.3382 129.069 80.042 128.95C79.75 128.827 79.4051 128.766 79.0073 128.766H78.1694ZM89.5698 127.643V129.052C89.5698 129.809 89.5021 130.448 89.3667 130.969C89.2313 131.489 89.0366 131.908 88.7827 132.226C88.5288 132.543 88.222 132.774 87.8623 132.917C87.5068 133.057 87.1048 133.127 86.6562 133.127C86.3008 133.127 85.9728 133.083 85.6724 132.994C85.3719 132.905 85.1011 132.763 84.8599 132.568C84.6229 132.369 84.4198 132.111 84.2505 131.794C84.0812 131.477 83.9521 131.091 83.8633 130.639C83.7744 130.186 83.73 129.657 83.73 129.052V127.643C83.73 126.885 83.7977 126.25 83.9331 125.738C84.0728 125.226 84.2695 124.816 84.5234 124.507C84.7773 124.194 85.082 123.969 85.4375 123.834C85.7972 123.699 86.1992 123.631 86.6436 123.631C87.0033 123.631 87.3333 123.675 87.6338 123.764C87.9385 123.849 88.2093 123.986 88.4463 124.177C88.6833 124.363 88.8843 124.613 89.0493 124.926C89.2186 125.235 89.3477 125.613 89.4365 126.062C89.5254 126.511 89.5698 127.037 89.5698 127.643ZM88.3892 129.242V127.446C88.3892 127.031 88.3638 126.667 88.313 126.354C88.2664 126.037 88.1966 125.766 88.1035 125.542C88.0104 125.317 87.8919 125.135 87.748 124.996C87.6084 124.856 87.4455 124.754 87.2593 124.691C87.0773 124.623 86.8721 124.589 86.6436 124.589C86.3643 124.589 86.1167 124.642 85.9009 124.748C85.6851 124.85 85.5031 125.013 85.355 125.237C85.2111 125.461 85.1011 125.755 85.0249 126.119C84.9487 126.483 84.9106 126.925 84.9106 127.446V129.242C84.9106 129.657 84.9339 130.023 84.9805 130.34C85.0312 130.658 85.1053 130.933 85.2026 131.166C85.3 131.394 85.4185 131.582 85.5581 131.73C85.6978 131.879 85.8586 131.989 86.0405 132.061C86.2267 132.128 86.432 132.162 86.6562 132.162C86.944 132.162 87.1958 132.107 87.4116 131.997C87.6274 131.887 87.8073 131.716 87.9512 131.483C88.0993 131.246 88.2093 130.943 88.2812 130.575C88.3532 130.203 88.3892 129.758 88.3892 129.242Z",fill:"#0F172A"})),{ToolBarFields:Ms,BlockName:Ls,BlockLabel:gs,BlockDescription:Zs,BlockAdvancedValue:ys,AdvancedFields:Es,FieldWrapper:ws,AdvancedInspectorControl:vs,ClientSideMacros:_s,ValidationToggleGroup:ks,ValidationBlockMessage:js,AttributeHelp:xs}=JetFBComponents,{useInsertMacro:Fs,useIsAdvancedValidation:Bs,useUniqueNameOnDuplicate:As}=JetFBHooks,{__:Ps}=wp.i18n,{InspectorControls:Ss,useBlockProps:Ns}=wp.blockEditor,{TextControl:Is,PanelBody:Ts,__experimentalInputControl:Os,ExternalLink:Js}=wp.components;let{InputControl:Rs}=wp.components;void 0===Rs&&(Rs=Os);const qs=JSON.parse('{"apiVersion":3,"name":"jet-forms/time-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","time"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Time Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"min":{"type":"string","default":""},"max":{"type":"string","default":""},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Ds}=wp.i18n,{createBlock:zs}=wp.blocks,{name:Us,icon:Gs=""}=qs,Ws={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Gs}}),description:Ds("Allow the user to enter the desirable time. Let them type the time manually or choose from the convenient drop-down timer.","jet-form-builder"),edit:function(e){const{isSelected:C,attributes:t,setAttributes:l,editProps:{uniqKey:r}}=e,n=Ns(),[a,i]=Fs("min"),[o,s]=Fs("max"),c=Bs();if(As(),t.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},bs);const d=(0,h.createElement)(h.Fragment,null,Ps("Plain date should be in hh:mm format.","jet-form-builder")," ",Ps("Or you can use","jet-form-builder")," ",(0,h.createElement)(Js,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},Ps("macros","jet-form-builder"))," ",Ps("and","jet-form-builder")," ",(0,h.createElement)(Js,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},Ps("filters","jet-form-builder")),".");return[(0,h.createElement)(Ms,{key:r("ToolBarFields"),...e}),C&&(0,h.createElement)(Ss,{key:r("InspectorControls")},(0,h.createElement)(Ts,{title:Ps("General","jet-form-builder")},(0,h.createElement)(gs,null),(0,h.createElement)(Ls,null),(0,h.createElement)(Zs,null)),(0,h.createElement)(Ts,{title:Ps("Value","jet-form-builder")},(0,h.createElement)(ys,{help:d,style:{marginBottom:"1em"}}),(0,h.createElement)(_s,null,(0,h.createElement)(vs,{value:t.min,label:Ps("Starting from time","jet-form-builder"),onChangePreset:e=>l({min:e}),onChangeMacros:i},(({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Is,{id:e,ref:a,className:"jet-fb m-unset",value:t.min,onChange:e=>l({min:e})}),(0,h.createElement)(xs,null,d)))),(0,h.createElement)(vs,{value:t.max,label:Ps("Limit time to","jet-form-builder"),onChangePreset:e=>l({max:e}),onChangeMacros:s},(({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Is,{id:e,ref:o,className:"jet-fb m-unset",value:t.max,onChange:e=>l({max:e})}),(0,h.createElement)(xs,null,d)))))),(0,h.createElement)(Ts,{title:Ps("Validation","jet-form-builder")},(0,h.createElement)(ks,null),c&&(0,h.createElement)(h.Fragment,null,Boolean(t.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(js,{name:"date_min"})),Boolean(t.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(js,{name:"date_max"})),(0,h.createElement)(js,{name:"empty"}))),(0,h.createElement)(Es,null)),(0,h.createElement)("div",{...n,key:r("viewBlock")},(0,h.createElement)(ws,{key:r("FieldWrapper"),...e},(0,h.createElement)(Is,{onChange:()=>{},className:"jet-form-builder__field-preview",key:r("place_holder_block"),placeholder:'Input type="time"'})))]},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>zs("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/datetime-field","jet-forms/date-field"],transform:e=>zs(Us,{...e}),priority:0}]}},Ks=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,h.createElement)("g",{clipPath:"url(#clip0_75_1400)"},(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V144H15V19Z",fill:"white"}),(0,h.createElement)("path",{d:"M15 8H283.061V85H15V8Z",fill:"url(#paint0_linear_75_1400)"}),(0,h.createElement)("path",{d:"M15 8H283.061V85H15V8Z",fill:"url(#paint1_linear_75_1400)"}),(0,h.createElement)("g",{filter:"url(#filter0_d_75_1400)"},(0,h.createElement)("path",{d:"M219 14.2974C219 15.8887 218.421 17.4148 217.389 18.54C216.358 19.6652 214.959 20.2974 213.5 20.2974C212.041 20.2974 210.642 19.6652 209.611 18.54C208.579 17.4148 208 15.8887 208 14.2974L219 14.2974Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M219.5 14.2974V13.7974L219 13.7974L208 13.7974L207.5 13.7974L207.5 14.2974C207.5 16.0079 208.122 17.6562 209.242 18.8779C210.364 20.101 211.894 20.7974 213.5 20.7974C215.106 20.7974 216.636 20.101 217.758 18.8779C218.878 17.6562 219.5 16.0079 219.5 14.2974Z",stroke:"white"})),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1400)"},(0,h.createElement)("path",{d:"M35.0654 97.4038L33.9281 96.2664C33.7385 96.0769 33.4323 96.0769 33.2428 96.2664L31.7264 97.7829L30.7883 96.8545L30.103 97.5398L30.7932 98.23L26.4578 102.565V104.874H28.7664L33.1018 100.539L33.792 101.229L34.4773 100.544L33.5441 99.6103L35.0606 98.0939C35.255 97.8995 35.255 97.5933 35.0654 97.4038ZM28.363 103.902L27.4298 102.969L31.3473 99.0514L32.2804 99.9846L28.363 103.902Z",fill:"#64748B"})),(0,h.createElement)("circle",{cx:"47.8098",cy:"100.5",r:"7.5",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"272.69",y:"97.584",width:"5.8324",height:"213",rx:"2.9162",transform:"rotate(90 272.69 97.584)",fill:"url(#paint2_linear_75_1400)"}),(0,h.createElement)("circle",{cx:"182",cy:"100.742",r:"5.5",transform:"rotate(90 182 100.742)",fill:"white",stroke:"#64748B"}),(0,h.createElement)("rect",{x:"25.5",y:"114.333",width:"120",height:"19.4134",rx:"2.4162",fill:"white",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M67.4553 127.694L68.8372 120.585H69.5403L68.1536 127.694H67.4553ZM69.4426 127.694L70.8293 120.585H71.5276L70.1409 127.694H69.4426ZM72.1233 123.295H67.0452V122.616H72.1233V123.295ZM71.7571 125.692H66.6741V125.019H71.7571V125.692ZM77.6506 125.302V126.044H72.5139V125.512L75.6975 120.585H76.4348L75.6438 122.011L73.5393 125.302H77.6506ZM76.6594 120.585V127.694H75.7561V120.585H76.6594ZM83.1292 126.952V127.694H78.4758V127.045L80.8049 124.452C81.0914 124.133 81.3127 123.863 81.469 123.642C81.6285 123.417 81.7392 123.217 81.801 123.041C81.8661 122.862 81.8987 122.68 81.8987 122.494C81.8987 122.26 81.8499 122.048 81.7522 121.859C81.6578 121.667 81.5178 121.514 81.3323 121.4C81.1467 121.286 80.9221 121.229 80.6584 121.229C80.3427 121.229 80.079 121.291 79.8674 121.415C79.6591 121.535 79.5028 121.705 79.3987 121.923C79.2945 122.141 79.2424 122.392 79.2424 122.675H78.3391C78.3391 122.274 78.427 121.908 78.6028 121.576C78.7786 121.244 79.039 120.98 79.384 120.785C79.7291 120.587 80.1539 120.487 80.6584 120.487C81.1077 120.487 81.4918 120.567 81.8108 120.727C82.1298 120.883 82.3739 121.104 82.5432 121.391C82.7157 121.674 82.802 122.006 82.802 122.387C82.802 122.595 82.7662 122.807 82.6946 123.021C82.6262 123.233 82.5302 123.445 82.4065 123.656C82.2861 123.868 82.1444 124.076 81.9817 124.281C81.8222 124.486 81.6513 124.688 81.469 124.887L79.5647 126.952H83.1292ZM88.6907 120.585V121.093L85.7463 127.694H84.7942L87.7336 121.327H83.886V120.585H88.6907ZM94.3792 126.952V127.694H89.7258V127.045L92.0549 124.452C92.3414 124.133 92.5627 123.863 92.719 123.642C92.8785 123.417 92.9892 123.217 93.051 123.041C93.1161 122.862 93.1487 122.68 93.1487 122.494C93.1487 122.26 93.0999 122.048 93.0022 121.859C92.9078 121.667 92.7678 121.514 92.5823 121.4C92.3967 121.286 92.1721 121.229 91.9084 121.229C91.5927 121.229 91.329 121.291 91.1174 121.415C90.9091 121.535 90.7528 121.705 90.6487 121.923C90.5445 122.141 90.4924 122.392 90.4924 122.675H89.5891C89.5891 122.274 89.677 121.908 89.8528 121.576C90.0286 121.244 90.289 120.98 90.634 120.785C90.9791 120.587 91.4039 120.487 91.9084 120.487C92.3577 120.487 92.7418 120.567 93.0608 120.727C93.3798 120.883 93.6239 121.104 93.7932 121.391C93.9657 121.674 94.052 122.006 94.052 122.387C94.052 122.595 94.0162 122.807 93.9446 123.021C93.8762 123.233 93.7802 123.445 93.6565 123.656C93.5361 123.868 93.3944 124.076 93.2317 124.281C93.0722 124.486 92.9013 124.688 92.719 124.887L90.8147 126.952H94.3792ZM96.5227 120.585V127.694H95.5803V120.585H96.5227ZM99.5012 123.783V124.555H96.3176V123.783H99.5012ZM99.9846 120.585V121.356H96.3176V120.585H99.9846ZM101.772 126.938H101.865C102.385 126.938 102.809 126.864 103.134 126.718C103.46 126.571 103.71 126.374 103.886 126.127C104.062 125.88 104.182 125.601 104.247 125.292C104.312 124.979 104.345 124.659 104.345 124.33V123.241C104.345 122.919 104.308 122.632 104.233 122.382C104.161 122.131 104.06 121.921 103.93 121.752C103.803 121.583 103.658 121.454 103.495 121.366C103.333 121.278 103.16 121.234 102.978 121.234C102.769 121.234 102.582 121.277 102.416 121.361C102.253 121.443 102.115 121.558 102.001 121.708C101.891 121.858 101.806 122.034 101.747 122.235C101.689 122.437 101.659 122.657 101.659 122.895C101.659 123.106 101.685 123.311 101.738 123.51C101.79 123.708 101.869 123.887 101.977 124.047C102.084 124.206 102.218 124.333 102.377 124.428C102.54 124.519 102.73 124.564 102.948 124.564C103.15 124.564 103.339 124.525 103.515 124.447C103.694 124.366 103.852 124.257 103.989 124.12C104.128 123.98 104.239 123.822 104.321 123.646C104.405 123.471 104.454 123.287 104.467 123.095H104.897C104.897 123.365 104.843 123.632 104.736 123.896C104.631 124.156 104.485 124.394 104.296 124.608C104.107 124.823 103.886 124.996 103.632 125.126C103.378 125.253 103.101 125.316 102.802 125.316C102.45 125.316 102.146 125.248 101.889 125.111C101.632 124.975 101.42 124.792 101.254 124.564C101.091 124.337 100.969 124.083 100.888 123.803C100.81 123.52 100.771 123.233 100.771 122.943C100.771 122.605 100.818 122.287 100.912 121.991C101.007 121.695 101.147 121.435 101.332 121.21C101.518 120.982 101.747 120.805 102.021 120.678C102.297 120.551 102.616 120.487 102.978 120.487C103.385 120.487 103.731 120.569 104.018 120.731C104.304 120.894 104.537 121.112 104.716 121.386C104.898 121.659 105.032 121.967 105.116 122.309C105.201 122.65 105.243 123.002 105.243 123.363V123.69C105.243 124.058 105.219 124.433 105.17 124.813C105.125 125.191 105.035 125.552 104.902 125.897C104.771 126.243 104.581 126.552 104.33 126.825C104.08 127.095 103.753 127.31 103.349 127.47C102.948 127.626 102.454 127.704 101.865 127.704H101.772V126.938Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"152",y:"113.833",width:"120.835",height:"20.4134",rx:"2.9162",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M260.898 122.448L262.695 120.654L264.493 122.448L265.045 121.896L262.695 119.546L260.346 121.896L260.898 122.448Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M264.493 126.043L262.696 127.836L260.898 126.043L260.346 126.595L262.696 128.944L265.045 126.595L264.493 126.043Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M209.882 123.288V124.055H206.034V123.288H209.882ZM206.181 120.232V127.341H205.238V120.232H206.181ZM210.702 120.232V127.341H209.765V120.232H210.702ZM216.894 126.574V127.341H213.129V126.574H216.894ZM213.319 120.232V127.341H212.377V120.232H213.319ZM216.396 123.288V124.055H213.129V123.288H216.396ZM216.845 120.232V121.003H213.129V120.232H216.845ZM218.671 120.232L220.38 122.956L222.089 120.232H223.188L220.941 123.752L223.241 127.341H222.133L220.38 124.563L218.627 127.341H217.519L219.818 123.752L217.572 120.232H218.671Z",fill:"#64748B"})),(0,h.createElement)("defs",null,(0,h.createElement)("filter",{id:"filter0_d_75_1400",x:"204.28",y:"12.3766",width:"16.683",height:"11.683",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB"},(0,h.createElement)("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),(0,h.createElement)("feColorMatrix",{in:"SourceAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",result:"hardAlpha"}),(0,h.createElement)("feOffset",{dx:"-0.878599",dy:"0.920745"}),(0,h.createElement)("feGaussianBlur",{stdDeviation:"0.920745"}),(0,h.createElement)("feComposite",{in2:"hardAlpha",operator:"out"}),(0,h.createElement)("feColorMatrix",{type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"}),(0,h.createElement)("feBlend",{mode:"normal",in2:"BackgroundImageFix",result:"effect1_dropShadow_75_1400"}),(0,h.createElement)("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_dropShadow_75_1400",result:"shape"})),(0,h.createElement)("linearGradient",{id:"paint0_linear_75_1400",x1:"15",y1:"85",x2:"15",y2:"8",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",null),(0,h.createElement)("stop",{offset:"1",stopColor:"#C4C4C4",stopOpacity:"0"})),(0,h.createElement)("linearGradient",{id:"paint1_linear_75_1400",x1:"15",y1:"8",x2:"283.061",y2:"8.00001",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",{stopColor:"#4F46E5",stopOpacity:"0"}),(0,h.createElement)("stop",{offset:"1",stopColor:"#4272F9"})),(0,h.createElement)("linearGradient",{id:"paint2_linear_75_1400",x1:"275.82",y1:"310.274",x2:"275.896",y2:"97.274",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",{offset:"0.0521219",stopColor:"#FF0000"}),(0,h.createElement)("stop",{offset:"0.164776",stopColor:"#FF8A00"}),(0,h.createElement)("stop",{offset:"0.27743",stopColor:"#FFE600"}),(0,h.createElement)("stop",{offset:"0.393479",stopColor:"#14FF00"}),(0,h.createElement)("stop",{offset:"0.493654",stopColor:"#00A3FF"}),(0,h.createElement)("stop",{offset:"0.611759",stopColor:"#0500FF"}),(0,h.createElement)("stop",{offset:"0.722596",stopColor:"#AD00FF"}),(0,h.createElement)("stop",{offset:"0.83525",stopColor:"#FF00C7"}),(0,h.createElement)("stop",{offset:"0.946088",stopColor:"#FF0000"})),(0,h.createElement)("clipPath",{id:"clip0_75_1400"},(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V144H15V19Z",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1400"},(0,h.createElement)("rect",{width:"11.6648",height:"11.6648",fill:"white",transform:"translate(25 94.6675)"})))),{AdvancedFields:$s,GeneralFields:Ys,ToolBarFields:Xs,FieldWrapper:Qs,FieldSettingsWrapper:ec}=JetFBComponents,{useUniqKey:Cc,useUniqueNameOnDuplicate:tc}=JetFBHooks,{__experimentalInputControl:lc}=wp.components,{InspectorControls:rc,useBlockProps:nc}=wp.blockEditor;let{InputControl:ac}=wp.components;void 0===ac&&(ac=lc);const ic=JSON.parse('{"apiVersion":3,"name":"jet-forms/color-picker-field","category":"jet-form-builder-fields","title":"Color Picker Field","icon":"\\n\\n","keywords":["jetformbuilder","field","colorpicker","picker","input"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:oc}=wp.i18n,{createBlock:sc}=wp.blocks,{name:cc,icon:dc}=ic,mc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:dc}}),description:oc("Give your users an opportunity to design your website and pick a certain color in the form with the help of the Color Picker Field.","jet-form-builder"),edit:function(e){const C=nc(),t=Cc();tc();const{isSelected:l,attributes:r}=e;return r.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ks):[(0,h.createElement)(Xs,{key:t("ToolBarFields"),...e}),l&&(0,h.createElement)(rc,{key:t("InspectorControls")},(0,h.createElement)(Ys,null),(0,h.createElement)(ec,null),(0,h.createElement)($s,null)),(0,h.createElement)("div",{...C,key:t("viewBlock")},(0,h.createElement)(Qs,{key:t("FieldWrapper"),...e},(0,h.createElement)(ac,{className:"jet-form-builder__field-wrap jet-form-builder__field-preview",type:"color",key:"color_picker_place_holder_block",onChange:()=>{}})))]},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>sc("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>sc(cc,{...e}),priority:0}]}},uc=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M87.1279 46.3447H84.6055L84.5918 45.2852H86.8818C87.2601 45.2852 87.5905 45.2214 87.873 45.0938C88.1556 44.9661 88.3743 44.7839 88.5293 44.5469C88.6888 44.3053 88.7686 44.0182 88.7686 43.6855C88.7686 43.321 88.6979 43.0247 88.5566 42.7969C88.4199 42.5645 88.208 42.3958 87.9209 42.291C87.6383 42.1816 87.2783 42.127 86.8408 42.127H84.8994V51H83.5801V41.0469H86.8408C87.3512 41.0469 87.807 41.0993 88.208 41.2041C88.609 41.3044 88.9486 41.4639 89.2266 41.6826C89.5091 41.8968 89.7233 42.1702 89.8691 42.5029C90.015 42.8356 90.0879 43.2344 90.0879 43.6992C90.0879 44.1094 89.9831 44.4808 89.7734 44.8135C89.5638 45.1416 89.2721 45.4105 88.8984 45.6201C88.5293 45.8298 88.0964 45.9642 87.5996 46.0234L87.1279 46.3447ZM87.0664 51H84.0859L84.8311 49.9268H87.0664C87.4857 49.9268 87.8411 49.8538 88.1328 49.708C88.429 49.5622 88.6546 49.3571 88.8096 49.0928C88.9645 48.8239 89.042 48.5072 89.042 48.1426C89.042 47.7734 88.9759 47.4544 88.8438 47.1855C88.7116 46.9167 88.5042 46.7093 88.2217 46.5635C87.9391 46.4176 87.5745 46.3447 87.1279 46.3447H85.248L85.2617 45.2852H87.832L88.1123 45.668C88.5908 45.709 88.9964 45.8457 89.3291 46.0781C89.6618 46.306 89.9147 46.5977 90.0879 46.9531C90.2656 47.3086 90.3545 47.7005 90.3545 48.1289C90.3545 48.7487 90.2178 49.2728 89.9443 49.7012C89.6755 50.125 89.2949 50.4486 88.8027 50.6719C88.3105 50.8906 87.7318 51 87.0664 51ZM91.7764 47.3838V47.2266C91.7764 46.6934 91.8538 46.1989 92.0088 45.7432C92.1637 45.2829 92.387 44.8841 92.6787 44.5469C92.9704 44.2051 93.3236 43.9408 93.7383 43.7539C94.153 43.5625 94.6178 43.4668 95.1328 43.4668C95.6523 43.4668 96.1195 43.5625 96.5342 43.7539C96.9535 43.9408 97.3089 44.2051 97.6006 44.5469C97.8968 44.8841 98.1224 45.2829 98.2773 45.7432C98.4323 46.1989 98.5098 46.6934 98.5098 47.2266V47.3838C98.5098 47.917 98.4323 48.4115 98.2773 48.8672C98.1224 49.3229 97.8968 49.7217 97.6006 50.0635C97.3089 50.4007 96.9557 50.665 96.541 50.8564C96.1309 51.0433 95.666 51.1367 95.1465 51.1367C94.627 51.1367 94.1598 51.0433 93.7451 50.8564C93.3304 50.665 92.9749 50.4007 92.6787 50.0635C92.387 49.7217 92.1637 49.3229 92.0088 48.8672C91.8538 48.4115 91.7764 47.917 91.7764 47.3838ZM93.041 47.2266V47.3838C93.041 47.7529 93.0843 48.1016 93.1709 48.4297C93.2575 48.7533 93.3874 49.0404 93.5605 49.291C93.7383 49.5417 93.9593 49.7399 94.2236 49.8857C94.488 50.027 94.7956 50.0977 95.1465 50.0977C95.4928 50.0977 95.7959 50.027 96.0557 49.8857C96.32 49.7399 96.5387 49.5417 96.7119 49.291C96.8851 49.0404 97.015 48.7533 97.1016 48.4297C97.1927 48.1016 97.2383 47.7529 97.2383 47.3838V47.2266C97.2383 46.862 97.1927 46.5179 97.1016 46.1943C97.015 45.8662 96.8828 45.5768 96.7051 45.3262C96.5319 45.071 96.3132 44.8704 96.0488 44.7246C95.7891 44.5788 95.4837 44.5059 95.1328 44.5059C94.7865 44.5059 94.4811 44.5788 94.2168 44.7246C93.957 44.8704 93.7383 45.071 93.5605 45.3262C93.3874 45.5768 93.2575 45.8662 93.1709 46.1943C93.0843 46.5179 93.041 46.862 93.041 47.2266ZM99.7607 47.3838V47.2266C99.7607 46.6934 99.8382 46.1989 99.9932 45.7432C100.148 45.2829 100.371 44.8841 100.663 44.5469C100.955 44.2051 101.308 43.9408 101.723 43.7539C102.137 43.5625 102.602 43.4668 103.117 43.4668C103.637 43.4668 104.104 43.5625 104.519 43.7539C104.938 43.9408 105.293 44.2051 105.585 44.5469C105.881 44.8841 106.107 45.2829 106.262 45.7432C106.417 46.1989 106.494 46.6934 106.494 47.2266V47.3838C106.494 47.917 106.417 48.4115 106.262 48.8672C106.107 49.3229 105.881 49.7217 105.585 50.0635C105.293 50.4007 104.94 50.665 104.525 50.8564C104.115 51.0433 103.65 51.1367 103.131 51.1367C102.611 51.1367 102.144 51.0433 101.729 50.8564C101.315 50.665 100.959 50.4007 100.663 50.0635C100.371 49.7217 100.148 49.3229 99.9932 48.8672C99.8382 48.4115 99.7607 47.917 99.7607 47.3838ZM101.025 47.2266V47.3838C101.025 47.7529 101.069 48.1016 101.155 48.4297C101.242 48.7533 101.372 49.0404 101.545 49.291C101.723 49.5417 101.944 49.7399 102.208 49.8857C102.472 50.027 102.78 50.0977 103.131 50.0977C103.477 50.0977 103.78 50.027 104.04 49.8857C104.304 49.7399 104.523 49.5417 104.696 49.291C104.869 49.0404 104.999 48.7533 105.086 48.4297C105.177 48.1016 105.223 47.7529 105.223 47.3838V47.2266C105.223 46.862 105.177 46.5179 105.086 46.1943C104.999 45.8662 104.867 45.5768 104.689 45.3262C104.516 45.071 104.298 44.8704 104.033 44.7246C103.773 44.5788 103.468 44.5059 103.117 44.5059C102.771 44.5059 102.465 44.5788 102.201 44.7246C101.941 44.8704 101.723 45.071 101.545 45.3262C101.372 45.5768 101.242 45.8662 101.155 46.1943C101.069 46.5179 101.025 46.862 101.025 47.2266ZM109.352 40.5V51H108.08V40.5H109.352ZM113.87 43.6035L110.644 47.0557L108.839 48.9287L108.736 47.582L110.028 46.0371L112.325 43.6035H113.87ZM112.715 51L110.076 47.4727L110.732 46.3447L114.205 51H112.715ZM123.01 49.7354V45.9277C123.01 45.6361 122.951 45.3831 122.832 45.1689C122.718 44.9502 122.545 44.7816 122.312 44.6631C122.08 44.5446 121.793 44.4854 121.451 44.4854C121.132 44.4854 120.852 44.54 120.61 44.6494C120.373 44.7588 120.187 44.9023 120.05 45.0801C119.918 45.2578 119.852 45.4492 119.852 45.6543H118.587C118.587 45.39 118.655 45.1279 118.792 44.8682C118.929 44.6084 119.125 44.3737 119.38 44.1641C119.64 43.9499 119.95 43.7812 120.31 43.6582C120.674 43.5306 121.08 43.4668 121.526 43.4668C122.064 43.4668 122.538 43.5579 122.948 43.7402C123.363 43.9225 123.687 44.1982 123.919 44.5674C124.156 44.932 124.274 45.39 124.274 45.9414V49.3867C124.274 49.6328 124.295 49.8949 124.336 50.1729C124.382 50.4508 124.448 50.6901 124.534 50.8906V51H123.215C123.151 50.8542 123.101 50.6605 123.064 50.4189C123.028 50.1729 123.01 49.945 123.01 49.7354ZM123.229 46.5156L123.242 47.4043H121.964C121.604 47.4043 121.283 47.4339 121 47.4932C120.717 47.5479 120.48 47.6322 120.289 47.7461C120.098 47.86 119.952 48.0036 119.852 48.1768C119.751 48.3454 119.701 48.5436 119.701 48.7715C119.701 49.0039 119.754 49.2158 119.858 49.4072C119.963 49.5986 120.12 49.7513 120.33 49.8652C120.544 49.9746 120.806 50.0293 121.116 50.0293C121.504 50.0293 121.845 49.9473 122.142 49.7832C122.438 49.6191 122.673 49.4186 122.846 49.1816C123.023 48.9447 123.119 48.7145 123.133 48.4912L123.673 49.0996C123.641 49.291 123.554 49.5029 123.413 49.7354C123.272 49.9678 123.083 50.1911 122.846 50.4053C122.613 50.6149 122.335 50.7904 122.012 50.9316C121.693 51.0684 121.333 51.1367 120.932 51.1367C120.43 51.1367 119.991 51.0387 119.612 50.8428C119.239 50.6468 118.947 50.3848 118.737 50.0566C118.532 49.724 118.43 49.3525 118.43 48.9424C118.43 48.5459 118.507 48.1973 118.662 47.8965C118.817 47.5911 119.04 47.3382 119.332 47.1377C119.624 46.9326 119.975 46.7777 120.385 46.6729C120.795 46.568 121.253 46.5156 121.759 46.5156H123.229ZM127.528 45.1826V51H126.264V43.6035H127.46L127.528 45.1826ZM127.228 47.0215L126.701 47.001C126.706 46.4951 126.781 46.028 126.927 45.5996C127.073 45.1667 127.278 44.7907 127.542 44.4717C127.806 44.1527 128.121 43.9066 128.485 43.7334C128.854 43.5557 129.262 43.4668 129.709 43.4668C130.074 43.4668 130.402 43.5169 130.693 43.6172C130.985 43.7129 131.233 43.8678 131.438 44.082C131.648 44.2962 131.808 44.5742 131.917 44.916C132.026 45.2533 132.081 45.6657 132.081 46.1533V51H130.81V46.1396C130.81 45.7523 130.753 45.4424 130.639 45.21C130.525 44.973 130.358 44.8021 130.14 44.6973C129.921 44.5879 129.652 44.5332 129.333 44.5332C129.019 44.5332 128.731 44.5993 128.472 44.7314C128.216 44.8636 127.995 45.0459 127.809 45.2783C127.626 45.5107 127.483 45.7773 127.378 46.0781C127.278 46.3743 127.228 46.6888 127.228 47.0215ZM141.836 49.7354V45.9277C141.836 45.6361 141.777 45.3831 141.658 45.1689C141.544 44.9502 141.371 44.7816 141.139 44.6631C140.906 44.5446 140.619 44.4854 140.277 44.4854C139.958 44.4854 139.678 44.54 139.437 44.6494C139.2 44.7588 139.013 44.9023 138.876 45.0801C138.744 45.2578 138.678 45.4492 138.678 45.6543H137.413C137.413 45.39 137.481 45.1279 137.618 44.8682C137.755 44.6084 137.951 44.3737 138.206 44.1641C138.466 43.9499 138.776 43.7812 139.136 43.6582C139.5 43.5306 139.906 43.4668 140.353 43.4668C140.89 43.4668 141.364 43.5579 141.774 43.7402C142.189 43.9225 142.513 44.1982 142.745 44.5674C142.982 44.932 143.101 45.39 143.101 45.9414V49.3867C143.101 49.6328 143.121 49.8949 143.162 50.1729C143.208 50.4508 143.274 50.6901 143.36 50.8906V51H142.041C141.977 50.8542 141.927 50.6605 141.891 50.4189C141.854 50.1729 141.836 49.945 141.836 49.7354ZM142.055 46.5156L142.068 47.4043H140.79C140.43 47.4043 140.109 47.4339 139.826 47.4932C139.544 47.5479 139.307 47.6322 139.115 47.7461C138.924 47.86 138.778 48.0036 138.678 48.1768C138.577 48.3454 138.527 48.5436 138.527 48.7715C138.527 49.0039 138.58 49.2158 138.685 49.4072C138.789 49.5986 138.947 49.7513 139.156 49.8652C139.37 49.9746 139.632 50.0293 139.942 50.0293C140.33 50.0293 140.672 49.9473 140.968 49.7832C141.264 49.6191 141.499 49.4186 141.672 49.1816C141.85 48.9447 141.945 48.7145 141.959 48.4912L142.499 49.0996C142.467 49.291 142.381 49.5029 142.239 49.7354C142.098 49.9678 141.909 50.1911 141.672 50.4053C141.439 50.6149 141.161 50.7904 140.838 50.9316C140.519 51.0684 140.159 51.1367 139.758 51.1367C139.257 51.1367 138.817 51.0387 138.438 50.8428C138.065 50.6468 137.773 50.3848 137.563 50.0566C137.358 49.724 137.256 49.3525 137.256 48.9424C137.256 48.5459 137.333 48.1973 137.488 47.8965C137.643 47.5911 137.867 47.3382 138.158 47.1377C138.45 46.9326 138.801 46.7777 139.211 46.6729C139.621 46.568 140.079 46.5156 140.585 46.5156H142.055ZM146.354 45.0254V53.8438H145.083V43.6035H146.245L146.354 45.0254ZM151.338 47.2402V47.3838C151.338 47.9215 151.274 48.4206 151.146 48.8809C151.019 49.3366 150.832 49.7331 150.586 50.0703C150.344 50.4076 150.046 50.6696 149.69 50.8564C149.335 51.0433 148.927 51.1367 148.467 51.1367C147.997 51.1367 147.583 51.0592 147.223 50.9043C146.863 50.7493 146.557 50.5238 146.307 50.2275C146.056 49.9313 145.855 49.5758 145.705 49.1611C145.559 48.7464 145.459 48.2793 145.404 47.7598V46.9941C145.459 46.4473 145.562 45.9574 145.712 45.5244C145.862 45.0915 146.061 44.7223 146.307 44.417C146.557 44.1071 146.86 43.8724 147.216 43.7129C147.571 43.5488 147.981 43.4668 148.446 43.4668C148.911 43.4668 149.324 43.5579 149.684 43.7402C150.044 43.918 150.347 44.1732 150.593 44.5059C150.839 44.8385 151.023 45.2373 151.146 45.7021C151.274 46.1624 151.338 46.6751 151.338 47.2402ZM150.066 47.3838V47.2402C150.066 46.8711 150.028 46.5247 149.95 46.2012C149.873 45.873 149.752 45.5859 149.588 45.3398C149.428 45.0892 149.223 44.8932 148.973 44.752C148.722 44.6061 148.424 44.5332 148.077 44.5332C147.758 44.5332 147.48 44.5879 147.243 44.6973C147.011 44.8066 146.812 44.9548 146.648 45.1416C146.484 45.3239 146.35 45.5335 146.245 45.7705C146.145 46.0029 146.07 46.2445 146.02 46.4951V48.2656C146.111 48.5846 146.238 48.8854 146.402 49.168C146.566 49.446 146.785 49.6715 147.059 49.8447C147.332 50.0133 147.676 50.0977 148.091 50.0977C148.433 50.0977 148.727 50.027 148.973 49.8857C149.223 49.7399 149.428 49.5417 149.588 49.291C149.752 49.0404 149.873 48.7533 149.95 48.4297C150.028 48.1016 150.066 47.7529 150.066 47.3838ZM154.216 45.0254V53.8438H152.944V43.6035H154.106L154.216 45.0254ZM159.199 47.2402V47.3838C159.199 47.9215 159.135 48.4206 159.008 48.8809C158.88 49.3366 158.693 49.7331 158.447 50.0703C158.206 50.4076 157.907 50.6696 157.552 50.8564C157.196 51.0433 156.788 51.1367 156.328 51.1367C155.859 51.1367 155.444 51.0592 155.084 50.9043C154.724 50.7493 154.419 50.5238 154.168 50.2275C153.917 49.9313 153.717 49.5758 153.566 49.1611C153.421 48.7464 153.32 48.2793 153.266 47.7598V46.9941C153.32 46.4473 153.423 45.9574 153.573 45.5244C153.724 45.0915 153.922 44.7223 154.168 44.417C154.419 44.1071 154.722 43.8724 155.077 43.7129C155.433 43.5488 155.843 43.4668 156.308 43.4668C156.772 43.4668 157.185 43.5579 157.545 43.7402C157.905 43.918 158.208 44.1732 158.454 44.5059C158.7 44.8385 158.885 45.2373 159.008 45.7021C159.135 46.1624 159.199 46.6751 159.199 47.2402ZM157.928 47.3838V47.2402C157.928 46.8711 157.889 46.5247 157.812 46.2012C157.734 45.873 157.613 45.5859 157.449 45.3398C157.29 45.0892 157.085 44.8932 156.834 44.752C156.583 44.6061 156.285 44.5332 155.938 44.5332C155.619 44.5332 155.341 44.5879 155.104 44.6973C154.872 44.8066 154.674 44.9548 154.51 45.1416C154.346 45.3239 154.211 45.5335 154.106 45.7705C154.006 46.0029 153.931 46.2445 153.881 46.4951V48.2656C153.972 48.5846 154.1 48.8854 154.264 49.168C154.428 49.446 154.646 49.6715 154.92 49.8447C155.193 50.0133 155.537 50.0977 155.952 50.0977C156.294 50.0977 156.588 50.027 156.834 49.8857C157.085 49.7399 157.29 49.5417 157.449 49.291C157.613 49.0404 157.734 48.7533 157.812 48.4297C157.889 48.1016 157.928 47.7529 157.928 47.3838ZM160.478 47.3838V47.2266C160.478 46.6934 160.555 46.1989 160.71 45.7432C160.865 45.2829 161.088 44.8841 161.38 44.5469C161.672 44.2051 162.025 43.9408 162.439 43.7539C162.854 43.5625 163.319 43.4668 163.834 43.4668C164.354 43.4668 164.821 43.5625 165.235 43.7539C165.655 43.9408 166.01 44.2051 166.302 44.5469C166.598 44.8841 166.824 45.2829 166.979 45.7432C167.133 46.1989 167.211 46.6934 167.211 47.2266V47.3838C167.211 47.917 167.133 48.4115 166.979 48.8672C166.824 49.3229 166.598 49.7217 166.302 50.0635C166.01 50.4007 165.657 50.665 165.242 50.8564C164.832 51.0433 164.367 51.1367 163.848 51.1367C163.328 51.1367 162.861 51.0433 162.446 50.8564C162.032 50.665 161.676 50.4007 161.38 50.0635C161.088 49.7217 160.865 49.3229 160.71 48.8672C160.555 48.4115 160.478 47.917 160.478 47.3838ZM161.742 47.2266V47.3838C161.742 47.7529 161.785 48.1016 161.872 48.4297C161.959 48.7533 162.089 49.0404 162.262 49.291C162.439 49.5417 162.66 49.7399 162.925 49.8857C163.189 50.027 163.497 50.0977 163.848 50.0977C164.194 50.0977 164.497 50.027 164.757 49.8857C165.021 49.7399 165.24 49.5417 165.413 49.291C165.586 49.0404 165.716 48.7533 165.803 48.4297C165.894 48.1016 165.939 47.7529 165.939 47.3838V47.2266C165.939 46.862 165.894 46.5179 165.803 46.1943C165.716 45.8662 165.584 45.5768 165.406 45.3262C165.233 45.071 165.014 44.8704 164.75 44.7246C164.49 44.5788 164.185 44.5059 163.834 44.5059C163.488 44.5059 163.182 44.5788 162.918 44.7246C162.658 44.8704 162.439 45.071 162.262 45.3262C162.089 45.5768 161.959 45.8662 161.872 46.1943C161.785 46.5179 161.742 46.862 161.742 47.2266ZM170.171 43.6035V51H168.899V43.6035H170.171ZM168.804 41.6416C168.804 41.4365 168.865 41.2633 168.988 41.1221C169.116 40.9808 169.303 40.9102 169.549 40.9102C169.79 40.9102 169.975 40.9808 170.103 41.1221C170.235 41.2633 170.301 41.4365 170.301 41.6416C170.301 41.8376 170.235 42.0062 170.103 42.1475C169.975 42.2842 169.79 42.3525 169.549 42.3525C169.303 42.3525 169.116 42.2842 168.988 42.1475C168.865 42.0062 168.804 41.8376 168.804 41.6416ZM173.466 45.1826V51H172.201V43.6035H173.397L173.466 45.1826ZM173.165 47.0215L172.639 47.001C172.643 46.4951 172.718 46.028 172.864 45.5996C173.01 45.1667 173.215 44.7907 173.479 44.4717C173.744 44.1527 174.058 43.9066 174.423 43.7334C174.792 43.5557 175.2 43.4668 175.646 43.4668C176.011 43.4668 176.339 43.5169 176.631 43.6172C176.923 43.7129 177.171 43.8678 177.376 44.082C177.586 44.2962 177.745 44.5742 177.854 44.916C177.964 45.2533 178.019 45.6657 178.019 46.1533V51H176.747V46.1396C176.747 45.7523 176.69 45.4424 176.576 45.21C176.462 44.973 176.296 44.8021 176.077 44.6973C175.858 44.5879 175.59 44.5332 175.271 44.5332C174.956 44.5332 174.669 44.5993 174.409 44.7314C174.154 44.8636 173.933 45.0459 173.746 45.2783C173.564 45.5107 173.42 45.7773 173.315 46.0781C173.215 46.3743 173.165 46.6888 173.165 47.0215ZM183.036 43.6035V44.5742H179.037V43.6035H183.036ZM180.391 41.8057H181.655V49.168C181.655 49.4186 181.694 49.6077 181.771 49.7354C181.849 49.863 181.949 49.9473 182.072 49.9883C182.195 50.0293 182.327 50.0498 182.469 50.0498C182.574 50.0498 182.683 50.0407 182.797 50.0225C182.915 49.9997 183.004 49.9814 183.063 49.9678L183.07 51C182.97 51.0319 182.838 51.0615 182.674 51.0889C182.514 51.1208 182.321 51.1367 182.093 51.1367C181.783 51.1367 181.498 51.0752 181.238 50.9521C180.979 50.8291 180.771 50.624 180.616 50.3369C180.466 50.0452 180.391 49.6533 180.391 49.1611V41.8057ZM185.777 45.0732V51H184.506V43.6035H185.709L185.777 45.0732ZM185.518 47.0215L184.93 47.001C184.934 46.4951 185 46.028 185.128 45.5996C185.256 45.1667 185.445 44.7907 185.695 44.4717C185.946 44.1527 186.258 43.9066 186.632 43.7334C187.006 43.5557 187.438 43.4668 187.931 43.4668C188.277 43.4668 188.596 43.5169 188.888 43.6172C189.179 43.7129 189.432 43.8656 189.646 44.0752C189.861 44.2848 190.027 44.5537 190.146 44.8818C190.264 45.21 190.323 45.6064 190.323 46.0713V51H189.059V46.1328C189.059 45.7454 188.993 45.4355 188.86 45.2031C188.733 44.9707 188.55 44.8021 188.313 44.6973C188.076 44.5879 187.799 44.5332 187.479 44.5332C187.106 44.5332 186.794 44.5993 186.543 44.7314C186.292 44.8636 186.092 45.0459 185.941 45.2783C185.791 45.5107 185.682 45.7773 185.613 46.0781C185.549 46.3743 185.518 46.6888 185.518 47.0215ZM190.31 46.3242L189.462 46.584C189.466 46.1784 189.533 45.7887 189.66 45.415C189.792 45.0413 189.981 44.7087 190.228 44.417C190.478 44.1253 190.786 43.8952 191.15 43.7266C191.515 43.5534 191.932 43.4668 192.401 43.4668C192.798 43.4668 193.149 43.5192 193.454 43.624C193.764 43.7288 194.024 43.8906 194.233 44.1094C194.448 44.3236 194.609 44.5993 194.719 44.9365C194.828 45.2738 194.883 45.6748 194.883 46.1396V51H193.611V46.126C193.611 45.7113 193.545 45.39 193.413 45.1621C193.285 44.9297 193.103 44.7679 192.866 44.6768C192.634 44.5811 192.356 44.5332 192.032 44.5332C191.754 44.5332 191.508 44.5811 191.294 44.6768C191.08 44.7725 190.9 44.9046 190.754 45.0732C190.608 45.2373 190.496 45.4264 190.419 45.6406C190.346 45.8548 190.31 46.0827 190.31 46.3242ZM199.866 51.1367C199.351 51.1367 198.884 51.0501 198.465 50.877C198.05 50.6992 197.692 50.4508 197.392 50.1318C197.095 49.8128 196.868 49.4346 196.708 48.9971C196.549 48.5596 196.469 48.0811 196.469 47.5615V47.2744C196.469 46.6729 196.558 46.1374 196.735 45.668C196.913 45.194 197.155 44.793 197.46 44.4648C197.765 44.1367 198.112 43.8883 198.499 43.7197C198.886 43.5511 199.287 43.4668 199.702 43.4668C200.231 43.4668 200.687 43.5579 201.069 43.7402C201.457 43.9225 201.773 44.1777 202.02 44.5059C202.266 44.8294 202.448 45.2122 202.566 45.6543C202.685 46.0918 202.744 46.5703 202.744 47.0898V47.6572H197.221V46.625H201.479V46.5293C201.461 46.2012 201.393 45.8822 201.274 45.5723C201.16 45.2624 200.978 45.0072 200.728 44.8066C200.477 44.6061 200.135 44.5059 199.702 44.5059C199.415 44.5059 199.151 44.5674 198.909 44.6904C198.668 44.8089 198.46 44.9867 198.287 45.2236C198.114 45.4606 197.979 45.75 197.884 46.0918C197.788 46.4336 197.74 46.8278 197.74 47.2744V47.5615C197.74 47.9124 197.788 48.2428 197.884 48.5527C197.984 48.8581 198.128 49.127 198.314 49.3594C198.506 49.5918 198.736 49.7741 199.005 49.9062C199.278 50.0384 199.588 50.1045 199.935 50.1045C200.381 50.1045 200.759 50.0133 201.069 49.8311C201.379 49.6488 201.65 49.4049 201.883 49.0996L202.648 49.708C202.489 49.9495 202.286 50.1797 202.04 50.3984C201.794 50.6172 201.491 50.7949 201.131 50.9316C200.775 51.0684 200.354 51.1367 199.866 51.1367ZM205.485 45.1826V51H204.221V43.6035H205.417L205.485 45.1826ZM205.185 47.0215L204.658 47.001C204.663 46.4951 204.738 46.028 204.884 45.5996C205.03 45.1667 205.235 44.7907 205.499 44.4717C205.763 44.1527 206.078 43.9066 206.442 43.7334C206.812 43.5557 207.219 43.4668 207.666 43.4668C208.031 43.4668 208.359 43.5169 208.65 43.6172C208.942 43.7129 209.19 43.8678 209.396 44.082C209.605 44.2962 209.765 44.5742 209.874 44.916C209.983 45.2533 210.038 45.6657 210.038 46.1533V51H208.767V46.1396C208.767 45.7523 208.71 45.4424 208.596 45.21C208.482 44.973 208.315 44.8021 208.097 44.6973C207.878 44.5879 207.609 44.5332 207.29 44.5332C206.976 44.5332 206.688 44.5993 206.429 44.7314C206.174 44.8636 205.952 45.0459 205.766 45.2783C205.583 45.5107 205.44 45.7773 205.335 46.0781C205.235 46.3743 205.185 46.6888 205.185 47.0215ZM215.056 43.6035V44.5742H211.057V43.6035H215.056ZM212.41 41.8057H213.675V49.168C213.675 49.4186 213.714 49.6077 213.791 49.7354C213.868 49.863 213.969 49.9473 214.092 49.9883C214.215 50.0293 214.347 50.0498 214.488 50.0498C214.593 50.0498 214.702 50.0407 214.816 50.0225C214.935 49.9997 215.024 49.9814 215.083 49.9678L215.09 51C214.99 51.0319 214.857 51.0615 214.693 51.0889C214.534 51.1208 214.34 51.1367 214.112 51.1367C213.802 51.1367 213.518 51.0752 213.258 50.9521C212.998 50.8291 212.791 50.624 212.636 50.3369C212.485 50.0452 212.41 49.6533 212.41 49.1611V41.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M63.2007 70.707V80H62.0264V72.1733L59.6587 73.0366V71.9766L63.0166 70.707H63.2007Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"51.7295",y:"64.5",width:"21",height:"21",rx:"10.5",stroke:"#4272F9"}),(0,h.createElement)("rect",{x:"77.7295",y:"74.5",width:"55.7706",height:"1",stroke:"#4272F9"}),(0,h.createElement)("rect",{x:"138",y:"64",width:"22",height:"22",rx:"11",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M152.168 79.0352V80H146.118V79.1558L149.146 75.7852C149.519 75.3704 149.806 75.0192 150.01 74.7314C150.217 74.4395 150.361 74.1792 150.441 73.9507C150.526 73.7179 150.568 73.481 150.568 73.2397C150.568 72.9351 150.505 72.66 150.378 72.4146C150.255 72.1649 150.073 71.966 149.832 71.8179C149.591 71.6698 149.299 71.5957 148.956 71.5957C148.545 71.5957 148.203 71.6761 147.927 71.8369C147.657 71.9935 147.454 72.2135 147.318 72.4971C147.183 72.7806 147.115 73.1064 147.115 73.4746H145.941C145.941 72.9541 146.055 72.478 146.283 72.0464C146.512 71.6147 146.851 71.272 147.299 71.0181C147.748 70.7599 148.3 70.6309 148.956 70.6309C149.54 70.6309 150.039 70.7345 150.454 70.9419C150.869 71.145 151.186 71.4328 151.406 71.8052C151.63 72.1733 151.742 72.605 151.742 73.1001C151.742 73.3709 151.696 73.646 151.603 73.9253C151.514 74.2004 151.389 74.4754 151.228 74.7505C151.072 75.0256 150.888 75.2964 150.676 75.563C150.469 75.8296 150.247 76.092 150.01 76.3501L147.534 79.0352H152.168Z",fill:"white"}),(0,h.createElement)("rect",{x:"164",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"198.936",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"172.734",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"207.67",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"181.468",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"216.404",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"190.202",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("path",{d:"M234.596 74.8013H235.434C235.845 74.8013 236.183 74.7336 236.45 74.5981C236.721 74.4585 236.922 74.2702 237.053 74.0332C237.188 73.792 237.256 73.5212 237.256 73.2207C237.256 72.8652 237.197 72.5669 237.078 72.3257C236.96 72.0845 236.782 71.9025 236.545 71.7798C236.308 71.6571 236.008 71.5957 235.644 71.5957C235.314 71.5957 235.022 71.6613 234.768 71.7925C234.518 71.9194 234.321 72.1014 234.177 72.3384C234.038 72.5754 233.968 72.8547 233.968 73.1763H232.794C232.794 72.7065 232.912 72.2791 233.149 71.894C233.386 71.509 233.718 71.2021 234.146 70.9736C234.577 70.7451 235.077 70.6309 235.644 70.6309C236.202 70.6309 236.691 70.7303 237.11 70.9292C237.529 71.1239 237.855 71.4159 238.088 71.8052C238.32 72.1903 238.437 72.6706 238.437 73.2461C238.437 73.4788 238.382 73.7285 238.272 73.9951C238.166 74.2575 237.999 74.5029 237.77 74.7314C237.546 74.96 237.254 75.1483 236.894 75.2964C236.535 75.4403 236.103 75.5122 235.599 75.5122H234.596V74.8013ZM234.596 75.7661V75.0615H235.599C236.188 75.0615 236.674 75.1313 237.059 75.271C237.444 75.4106 237.747 75.5968 237.967 75.8296C238.191 76.0623 238.348 76.3184 238.437 76.5977C238.53 76.8727 238.576 77.1478 238.576 77.4229C238.576 77.8545 238.502 78.2375 238.354 78.5718C238.21 78.9061 238.005 79.1896 237.739 79.4224C237.476 79.6551 237.167 79.8307 236.812 79.9492C236.456 80.0677 236.069 80.127 235.65 80.127C235.248 80.127 234.869 80.0698 234.514 79.9556C234.163 79.8413 233.852 79.6763 233.581 79.4604C233.31 79.2404 233.098 78.9717 232.946 78.6543C232.794 78.3327 232.718 77.9666 232.718 77.5562H233.892C233.892 77.8778 233.962 78.1592 234.101 78.4004C234.245 78.6416 234.448 78.8299 234.711 78.9653C234.977 79.0965 235.29 79.1621 235.65 79.1621C236.01 79.1621 236.319 79.1007 236.577 78.978C236.839 78.8511 237.04 78.6606 237.18 78.4067C237.324 78.1528 237.396 77.8333 237.396 77.4482C237.396 77.0632 237.315 76.7479 237.155 76.5024C236.994 76.2528 236.765 76.0687 236.469 75.9502C236.177 75.8275 235.832 75.7661 235.434 75.7661H234.596Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"225.271",y:"64.5",width:"21",height:"21",rx:"10.5",stroke:"#64748B"}),(0,h.createElement)("path",{d:"M47.2939 97.8979V101.281C47.1797 101.451 46.9977 101.641 46.748 101.853C46.4984 102.06 46.1535 102.242 45.7134 102.398C45.2775 102.551 44.7147 102.627 44.0249 102.627C43.4621 102.627 42.9437 102.53 42.4697 102.335C42 102.136 41.5916 101.848 41.2446 101.472C40.9019 101.091 40.6353 100.63 40.4448 100.088C40.2586 99.542 40.1655 98.9242 40.1655 98.2344V97.5171C40.1655 96.8273 40.2459 96.2116 40.4067 95.6699C40.5718 95.1283 40.813 94.6691 41.1304 94.2925C41.4478 93.9116 41.8371 93.6239 42.2983 93.4292C42.7596 93.2303 43.2886 93.1309 43.8853 93.1309C44.592 93.1309 45.1823 93.2536 45.6562 93.499C46.1344 93.7402 46.5068 94.0745 46.7734 94.502C47.0443 94.9294 47.2178 95.416 47.2939 95.9619H46.0688C46.0138 95.6276 45.9038 95.3229 45.7388 95.0479C45.578 94.7728 45.3473 94.5527 45.0469 94.3877C44.7464 94.2184 44.3592 94.1338 43.8853 94.1338C43.4578 94.1338 43.0876 94.2121 42.7744 94.3687C42.4613 94.5252 42.2031 94.7495 42 95.0415C41.7969 95.3335 41.6445 95.6868 41.543 96.1016C41.4456 96.5163 41.397 96.9839 41.397 97.5044V98.2344C41.397 98.7676 41.4583 99.2437 41.5811 99.6626C41.708 100.082 41.8879 100.439 42.1206 100.735C42.3534 101.027 42.6305 101.25 42.9521 101.402C43.278 101.554 43.6377 101.63 44.0312 101.63C44.4671 101.63 44.8205 101.594 45.0913 101.522C45.3621 101.446 45.5737 101.357 45.7261 101.256C45.8784 101.15 45.9948 101.051 46.0752 100.958V98.8882H43.936V97.8979H47.2939ZM51.9976 102.627C51.5194 102.627 51.0856 102.547 50.6963 102.386C50.3112 102.221 49.979 101.99 49.6997 101.694C49.4246 101.398 49.2131 101.046 49.0649 100.64C48.9168 100.234 48.8428 99.7896 48.8428 99.3071V99.0405C48.8428 98.4819 48.9253 97.9847 49.0903 97.5488C49.2554 97.1087 49.4797 96.7363 49.7632 96.4316C50.0467 96.127 50.3683 95.8963 50.728 95.7397C51.0877 95.5832 51.4601 95.5049 51.8452 95.5049C52.3361 95.5049 52.7593 95.5895 53.1147 95.7588C53.4744 95.9281 53.7686 96.165 53.9971 96.4697C54.2256 96.7702 54.3949 97.1257 54.5049 97.5361C54.6149 97.9424 54.6699 98.3867 54.6699 98.8691V99.396H49.541V98.4375H53.4956V98.3486C53.4787 98.0439 53.4152 97.7477 53.3052 97.46C53.1994 97.1722 53.0301 96.9352 52.7974 96.749C52.5646 96.5628 52.2472 96.4697 51.8452 96.4697C51.5786 96.4697 51.3332 96.5269 51.1089 96.6411C50.8846 96.7511 50.6921 96.9162 50.5312 97.1362C50.3704 97.3563 50.2456 97.625 50.1567 97.9424C50.0679 98.2598 50.0234 98.6258 50.0234 99.0405V99.3071C50.0234 99.633 50.0679 99.9398 50.1567 100.228C50.2498 100.511 50.3831 100.761 50.5566 100.977C50.7344 101.192 50.9481 101.362 51.1978 101.484C51.4517 101.607 51.7394 101.668 52.061 101.668C52.4757 101.668 52.827 101.584 53.1147 101.415C53.4025 101.245 53.6543 101.019 53.8701 100.735L54.5811 101.3C54.4329 101.525 54.2446 101.738 54.0161 101.941C53.7876 102.145 53.5062 102.31 53.1719 102.437C52.8418 102.563 52.4504 102.627 51.9976 102.627ZM57.2153 97.0981V102.5H56.041V95.6318H57.1519L57.2153 97.0981ZM56.936 98.8057L56.4473 98.7866C56.4515 98.3169 56.5213 97.8831 56.6567 97.4854C56.7922 97.0833 56.9826 96.7342 57.228 96.438C57.4735 96.1418 57.7655 95.9132 58.104 95.7524C58.4468 95.5874 58.8255 95.5049 59.2402 95.5049C59.5788 95.5049 59.8835 95.5514 60.1543 95.6445C60.4251 95.7334 60.6558 95.8773 60.8462 96.0762C61.0409 96.2751 61.189 96.5332 61.2905 96.8506C61.3921 97.1637 61.4429 97.5467 61.4429 97.9995V102.5H60.2622V97.9868C60.2622 97.6271 60.2093 97.3394 60.1035 97.1235C59.9977 96.9035 59.8433 96.7448 59.6401 96.6475C59.437 96.5459 59.1873 96.4951 58.8911 96.4951C58.5991 96.4951 58.3325 96.5565 58.0913 96.6792C57.8543 96.8019 57.6491 96.9712 57.4756 97.187C57.3063 97.4028 57.173 97.6504 57.0757 97.9297C56.9826 98.2048 56.936 98.4967 56.936 98.8057ZM66.0767 102.627C65.5985 102.627 65.1647 102.547 64.7754 102.386C64.3903 102.221 64.0581 101.99 63.7788 101.694C63.5037 101.398 63.2922 101.046 63.144 100.64C62.9959 100.234 62.9219 99.7896 62.9219 99.3071V99.0405C62.9219 98.4819 63.0044 97.9847 63.1694 97.5488C63.3345 97.1087 63.5588 96.7363 63.8423 96.4316C64.1258 96.127 64.4474 95.8963 64.8071 95.7397C65.1668 95.5832 65.5392 95.5049 65.9243 95.5049C66.4152 95.5049 66.8384 95.5895 67.1938 95.7588C67.5535 95.9281 67.8477 96.165 68.0762 96.4697C68.3047 96.7702 68.474 97.1257 68.584 97.5361C68.694 97.9424 68.749 98.3867 68.749 98.8691V99.396H63.6201V98.4375H67.5747V98.3486C67.5578 98.0439 67.4943 97.7477 67.3843 97.46C67.2785 97.1722 67.1092 96.9352 66.8765 96.749C66.6437 96.5628 66.3263 96.4697 65.9243 96.4697C65.6577 96.4697 65.4123 96.5269 65.188 96.6411C64.9637 96.7511 64.7712 96.9162 64.6104 97.1362C64.4495 97.3563 64.3247 97.625 64.2358 97.9424C64.147 98.2598 64.1025 98.6258 64.1025 99.0405V99.3071C64.1025 99.633 64.147 99.9398 64.2358 100.228C64.3289 100.511 64.4622 100.761 64.6357 100.977C64.8135 101.192 65.0272 101.362 65.2769 101.484C65.5308 101.607 65.8185 101.668 66.1401 101.668C66.5549 101.668 66.9061 101.584 67.1938 101.415C67.4816 101.245 67.7334 101.019 67.9492 100.735L68.6602 101.3C68.512 101.525 68.3237 101.738 68.0952 101.941C67.8667 102.145 67.5853 102.31 67.251 102.437C66.9209 102.563 66.5295 102.627 66.0767 102.627ZM71.2944 96.7109V102.5H70.1201V95.6318H71.2627L71.2944 96.7109ZM73.4399 95.5938L73.4336 96.6855C73.3363 96.6644 73.2432 96.6517 73.1543 96.6475C73.0697 96.639 72.9723 96.6348 72.8623 96.6348C72.5915 96.6348 72.3524 96.6771 72.145 96.7617C71.9377 96.8464 71.762 96.9648 71.6182 97.1172C71.4743 97.2695 71.36 97.4515 71.2754 97.6631C71.195 97.8704 71.1421 98.099 71.1167 98.3486L70.7866 98.5391C70.7866 98.1243 70.8268 97.735 70.9072 97.3711C70.9919 97.0072 71.1209 96.6855 71.2944 96.4062C71.4679 96.1227 71.688 95.9027 71.9546 95.7461C72.2254 95.5853 72.547 95.5049 72.9194 95.5049C73.0041 95.5049 73.1014 95.5155 73.2114 95.5366C73.3215 95.5535 73.3976 95.5726 73.4399 95.5938ZM78.3213 101.326V97.79C78.3213 97.5192 78.2663 97.2843 78.1562 97.0854C78.0505 96.8823 77.8896 96.7257 77.6738 96.6157C77.458 96.5057 77.1914 96.4507 76.874 96.4507C76.5778 96.4507 76.3175 96.5015 76.0933 96.603C75.8732 96.7046 75.6997 96.8379 75.5728 97.0029C75.45 97.168 75.3887 97.3457 75.3887 97.5361H74.2144C74.2144 97.2907 74.2778 97.0474 74.4048 96.8062C74.5317 96.5649 74.7137 96.347 74.9507 96.1523C75.1919 95.9535 75.4797 95.7969 75.814 95.6826C76.1525 95.5641 76.5291 95.5049 76.9438 95.5049C77.4432 95.5049 77.8833 95.5895 78.2642 95.7588C78.6493 95.9281 78.9497 96.1841 79.1655 96.5269C79.3856 96.8654 79.4956 97.2907 79.4956 97.8027V101.002C79.4956 101.23 79.5146 101.474 79.5527 101.732C79.5951 101.99 79.6564 102.212 79.7368 102.398V102.5H78.5117C78.4525 102.365 78.4059 102.185 78.3721 101.96C78.3382 101.732 78.3213 101.52 78.3213 101.326ZM78.5244 98.3359L78.5371 99.1611H77.3501C77.0158 99.1611 76.7174 99.1886 76.4551 99.2437C76.1927 99.2944 75.9727 99.3727 75.7949 99.4785C75.6172 99.5843 75.4818 99.7176 75.3887 99.8784C75.2956 100.035 75.249 100.219 75.249 100.431C75.249 100.646 75.2977 100.843 75.395 101.021C75.4924 101.199 75.6383 101.34 75.833 101.446C76.0319 101.548 76.2752 101.599 76.563 101.599C76.9227 101.599 77.2401 101.522 77.5151 101.37C77.7902 101.218 78.0081 101.032 78.1689 100.812C78.334 100.591 78.4229 100.378 78.4355 100.17L78.937 100.735C78.9074 100.913 78.827 101.11 78.6958 101.326C78.5646 101.542 78.389 101.749 78.1689 101.948C77.9531 102.142 77.695 102.305 77.3945 102.437C77.0983 102.563 76.764 102.627 76.3916 102.627C75.9261 102.627 75.5177 102.536 75.1665 102.354C74.8195 102.172 74.5487 101.929 74.354 101.624C74.1636 101.315 74.0684 100.97 74.0684 100.589C74.0684 100.221 74.1403 99.8975 74.2842 99.6182C74.4281 99.3346 74.6354 99.0998 74.9062 98.9136C75.1771 98.7231 75.5029 98.5793 75.8838 98.4819C76.2646 98.3846 76.6899 98.3359 77.1597 98.3359H78.5244ZM82.6187 92.75V102.5H81.438V92.75H82.6187Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M139.955 97.8979V101.281C139.84 101.451 139.658 101.641 139.409 101.853C139.159 102.06 138.814 102.242 138.374 102.398C137.938 102.551 137.375 102.627 136.686 102.627C136.123 102.627 135.604 102.53 135.13 102.335C134.661 102.136 134.252 101.848 133.905 101.472C133.562 101.091 133.296 100.63 133.105 100.088C132.919 99.542 132.826 98.9242 132.826 98.2344V97.5171C132.826 96.8273 132.907 96.2116 133.067 95.6699C133.232 95.1283 133.474 94.6691 133.791 94.2925C134.108 93.9116 134.498 93.6239 134.959 93.4292C135.42 93.2303 135.949 93.1309 136.546 93.1309C137.253 93.1309 137.843 93.2536 138.317 93.499C138.795 93.7402 139.167 94.0745 139.434 94.502C139.705 94.9294 139.878 95.416 139.955 95.9619H138.729C138.674 95.6276 138.564 95.3229 138.399 95.0479C138.239 94.7728 138.008 94.5527 137.708 94.3877C137.407 94.2184 137.02 94.1338 136.546 94.1338C136.118 94.1338 135.748 94.2121 135.435 94.3687C135.122 94.5252 134.864 94.7495 134.661 95.0415C134.458 95.3335 134.305 95.6868 134.204 96.1016C134.106 96.5163 134.058 96.9839 134.058 97.5044V98.2344C134.058 98.7676 134.119 99.2437 134.242 99.6626C134.369 100.082 134.549 100.439 134.781 100.735C135.014 101.027 135.291 101.25 135.613 101.402C135.939 101.554 136.298 101.63 136.692 101.63C137.128 101.63 137.481 101.594 137.752 101.522C138.023 101.446 138.234 101.357 138.387 101.256C138.539 101.15 138.655 101.051 138.736 100.958V98.8882H136.597V97.8979H139.955ZM146.01 100.913V95.6318H147.191V102.5H146.067L146.01 100.913ZM146.232 99.4658L146.721 99.4531C146.721 99.9102 146.673 100.333 146.575 100.723C146.482 101.108 146.33 101.442 146.118 101.726C145.907 102.009 145.629 102.231 145.287 102.392C144.944 102.549 144.527 102.627 144.036 102.627C143.702 102.627 143.395 102.578 143.116 102.481C142.841 102.384 142.604 102.233 142.405 102.03C142.206 101.827 142.051 101.563 141.941 101.237C141.836 100.911 141.783 100.52 141.783 100.062V95.6318H142.957V100.075C142.957 100.384 142.991 100.64 143.059 100.843C143.131 101.042 143.226 101.201 143.344 101.319C143.467 101.434 143.602 101.514 143.75 101.561C143.903 101.607 144.059 101.63 144.22 101.63C144.72 101.63 145.115 101.535 145.407 101.345C145.699 101.15 145.909 100.89 146.036 100.564C146.167 100.234 146.232 99.8678 146.232 99.4658ZM151.831 102.627C151.353 102.627 150.919 102.547 150.53 102.386C150.145 102.221 149.812 101.99 149.533 101.694C149.258 101.398 149.047 101.046 148.898 100.64C148.75 100.234 148.676 99.7896 148.676 99.3071V99.0405C148.676 98.4819 148.759 97.9847 148.924 97.5488C149.089 97.1087 149.313 96.7363 149.597 96.4316C149.88 96.127 150.202 95.8963 150.562 95.7397C150.921 95.5832 151.294 95.5049 151.679 95.5049C152.17 95.5049 152.593 95.5895 152.948 95.7588C153.308 95.9281 153.602 96.165 153.831 96.4697C154.059 96.7702 154.228 97.1257 154.338 97.5361C154.448 97.9424 154.503 98.3867 154.503 98.8691V99.396H149.375V98.4375H153.329V98.3486C153.312 98.0439 153.249 97.7477 153.139 97.46C153.033 97.1722 152.864 96.9352 152.631 96.749C152.398 96.5628 152.081 96.4697 151.679 96.4697C151.412 96.4697 151.167 96.5269 150.942 96.6411C150.718 96.7511 150.526 96.9162 150.365 97.1362C150.204 97.3563 150.079 97.625 149.99 97.9424C149.901 98.2598 149.857 98.6258 149.857 99.0405V99.3071C149.857 99.633 149.901 99.9398 149.99 100.228C150.083 100.511 150.217 100.761 150.39 100.977C150.568 101.192 150.782 101.362 151.031 101.484C151.285 101.607 151.573 101.668 151.895 101.668C152.309 101.668 152.66 101.584 152.948 101.415C153.236 101.245 153.488 101.019 153.704 100.735L154.415 101.3C154.266 101.525 154.078 101.738 153.85 101.941C153.621 102.145 153.34 102.31 153.005 102.437C152.675 102.563 152.284 102.627 151.831 102.627ZM159.874 100.678C159.874 100.509 159.835 100.352 159.759 100.208C159.687 100.06 159.537 99.9271 159.309 99.8086C159.084 99.6859 158.746 99.5801 158.293 99.4912C157.912 99.4108 157.567 99.3156 157.258 99.2056C156.954 99.0955 156.693 98.9622 156.478 98.8057C156.266 98.6491 156.103 98.465 155.989 98.2534C155.875 98.0418 155.817 97.7943 155.817 97.5107C155.817 97.2399 155.877 96.9839 155.995 96.7427C156.118 96.5015 156.289 96.2878 156.509 96.1016C156.734 95.9154 157.002 95.7694 157.315 95.6636C157.629 95.5578 157.978 95.5049 158.363 95.5049C158.913 95.5049 159.383 95.6022 159.772 95.7969C160.161 95.9915 160.46 96.2518 160.667 96.5776C160.874 96.8993 160.978 97.2568 160.978 97.6504H159.804C159.804 97.46 159.747 97.2759 159.632 97.0981C159.522 96.9162 159.359 96.766 159.144 96.6475C158.932 96.529 158.672 96.4697 158.363 96.4697C158.037 96.4697 157.772 96.5205 157.569 96.6221C157.37 96.7194 157.224 96.8442 157.131 96.9966C157.042 97.1489 156.998 97.3097 156.998 97.479C156.998 97.606 157.019 97.7202 157.062 97.8218C157.108 97.9191 157.188 98.0101 157.303 98.0947C157.417 98.1751 157.578 98.2513 157.785 98.3232C157.993 98.3952 158.257 98.4671 158.579 98.5391C159.141 98.666 159.605 98.8184 159.969 98.9961C160.333 99.1738 160.604 99.3918 160.781 99.6499C160.959 99.908 161.048 100.221 161.048 100.589C161.048 100.89 160.984 101.165 160.857 101.415C160.735 101.664 160.555 101.88 160.318 102.062C160.085 102.24 159.806 102.379 159.48 102.481C159.158 102.578 158.797 102.627 158.395 102.627C157.789 102.627 157.277 102.519 156.858 102.303C156.439 102.087 156.122 101.808 155.906 101.465C155.69 101.123 155.583 100.761 155.583 100.38H156.763C156.78 100.701 156.873 100.958 157.042 101.148C157.212 101.334 157.419 101.467 157.665 101.548C157.91 101.624 158.153 101.662 158.395 101.662C158.716 101.662 158.985 101.62 159.201 101.535C159.421 101.451 159.588 101.334 159.702 101.186C159.816 101.038 159.874 100.869 159.874 100.678ZM165.466 95.6318V96.5332H161.752V95.6318H165.466ZM163.009 93.9624H164.184V100.799C164.184 101.032 164.22 101.207 164.292 101.326C164.363 101.444 164.457 101.522 164.571 101.561C164.685 101.599 164.808 101.618 164.939 101.618C165.036 101.618 165.138 101.609 165.244 101.592C165.354 101.571 165.436 101.554 165.491 101.542L165.498 102.5C165.404 102.53 165.282 102.557 165.129 102.583C164.981 102.612 164.801 102.627 164.59 102.627C164.302 102.627 164.038 102.57 163.796 102.456C163.555 102.341 163.363 102.151 163.219 101.884C163.079 101.613 163.009 101.25 163.009 100.792V93.9624Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M226.556 93.7578V103H225.331V93.7578H226.556ZM229.781 97.5981V103H228.606V96.1318H229.717L229.781 97.5981ZM229.501 99.3057L229.013 99.2866C229.017 98.8169 229.087 98.3831 229.222 97.9854C229.358 97.5833 229.548 97.2342 229.793 96.938C230.039 96.6418 230.331 96.4132 230.669 96.2524C231.012 96.0874 231.391 96.0049 231.806 96.0049C232.144 96.0049 232.449 96.0514 232.72 96.1445C232.991 96.2334 233.221 96.3773 233.412 96.5762C233.606 96.7751 233.754 97.0332 233.856 97.3506C233.958 97.6637 234.008 98.0467 234.008 98.4995V103H232.828V98.4868C232.828 98.1271 232.775 97.8394 232.669 97.6235C232.563 97.4035 232.409 97.2448 232.206 97.1475C232.002 97.0459 231.753 96.9951 231.457 96.9951C231.165 96.9951 230.898 97.0565 230.657 97.1792C230.42 97.3019 230.215 97.4712 230.041 97.687C229.872 97.9028 229.738 98.1504 229.641 98.4297C229.548 98.7048 229.501 98.9967 229.501 99.3057ZM237.544 103H236.37V95.4082C236.37 94.9131 236.458 94.4963 236.636 94.1577C236.818 93.8149 237.078 93.5568 237.417 93.3833C237.756 93.2056 238.158 93.1167 238.623 93.1167C238.758 93.1167 238.894 93.1252 239.029 93.1421C239.169 93.159 239.304 93.1844 239.436 93.2183L239.372 94.1768C239.283 94.1556 239.182 94.1408 239.067 94.1323C238.957 94.1239 238.847 94.1196 238.737 94.1196C238.488 94.1196 238.272 94.1704 238.09 94.272C237.912 94.3693 237.777 94.5132 237.684 94.7036C237.59 94.894 237.544 95.1289 237.544 95.4082V103ZM239.004 96.1318V97.0332H235.284V96.1318H239.004ZM240 99.6421V99.4961C240 99.001 240.072 98.5418 240.216 98.1187C240.36 97.6912 240.568 97.321 240.838 97.0078C241.109 96.6904 241.437 96.445 241.822 96.2715C242.207 96.0938 242.639 96.0049 243.117 96.0049C243.6 96.0049 244.033 96.0938 244.418 96.2715C244.808 96.445 245.138 96.6904 245.409 97.0078C245.684 97.321 245.893 97.6912 246.037 98.1187C246.181 98.5418 246.253 99.001 246.253 99.4961V99.6421C246.253 100.137 246.181 100.596 246.037 101.02C245.893 101.443 245.684 101.813 245.409 102.13C245.138 102.444 244.81 102.689 244.425 102.867C244.044 103.04 243.612 103.127 243.13 103.127C242.647 103.127 242.214 103.04 241.829 102.867C241.444 102.689 241.113 102.444 240.838 102.13C240.568 101.813 240.36 101.443 240.216 101.02C240.072 100.596 240 100.137 240 99.6421ZM241.175 99.4961V99.6421C241.175 99.9849 241.215 100.309 241.295 100.613C241.376 100.914 241.496 101.18 241.657 101.413C241.822 101.646 242.028 101.83 242.273 101.965C242.518 102.097 242.804 102.162 243.13 102.162C243.451 102.162 243.733 102.097 243.974 101.965C244.22 101.83 244.423 101.646 244.583 101.413C244.744 101.18 244.865 100.914 244.945 100.613C245.03 100.309 245.072 99.9849 245.072 99.6421V99.4961C245.072 99.1576 245.03 98.8381 244.945 98.5376C244.865 98.2329 244.742 97.9642 244.577 97.7314C244.416 97.4945 244.213 97.3083 243.968 97.1729C243.727 97.0374 243.443 96.9697 243.117 96.9697C242.796 96.9697 242.512 97.0374 242.267 97.1729C242.025 97.3083 241.822 97.4945 241.657 97.7314C241.496 97.9642 241.376 98.2329 241.295 98.5376C241.215 98.8381 241.175 99.1576 241.175 99.4961Z",fill:"#0F172A"})),{FieldSettingsWrapper:pc}=JetFBComponents,{__:fc}=wp.i18n,{SelectControl:Vc}=wp.components,{InspectorControls:Hc,useBlockProps:hc}=wp.blockEditor?wp.blockEditor:wp.editor,{RawHTML:bc}=wp.element,{useState:Mc,useEffect:Lc}=wp.element,gc=JSON.parse('{"apiVersion":3,"name":"jet-forms/progress-bar","category":"jet-form-builder-elements","keywords":["jetformbuilder","progress","steps","bar","break","form"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Progress Bar","icon":"\\n\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"progress_type":{"type":"string","default":"default"},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:Zc}=wp.i18n,{name:yc,icon:Ec=""}=gc,wc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ec}}),description:Zc("Use the Progress Bar block to add the navigation and show users on what page they are now and how many pages are left to finish the form.","jet-form-builder"),edit:function(e){const C=hc(),{attributes:t,setAttributes:l,editProps:{uniqKey:r}}=e,[n,a]=Mc(""),i=e=>{const C=JetFormProgressBar.progress_types.find((C=>e===C.value));return C?C.html:""};return Lc((()=>{a(i(t.progress_type))}),[t.progress_type]),t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},uc):[(0,h.createElement)(Hc,{key:r("InspectorControls")},(0,h.createElement)(pc,{key:r("FieldSettingsWrapper"),...e},1{l({progress_type:e}),a(i(e))},options:JetFormProgressBar.progress_types}))),(0,h.createElement)("div",{key:r("viewBlock"),...C},(0,h.createElement)(bc,null,n))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}}},vc=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_76_1348)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,h.createElement)("rect",{x:"82",y:"29",width:"113",height:"86",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M103.46 54.4844C103.46 54.252 103.424 54.0469 103.351 53.8691C103.282 53.6868 103.159 53.5228 102.981 53.377C102.808 53.2311 102.567 53.0921 102.257 52.96C101.951 52.8278 101.564 52.6934 101.095 52.5566C100.603 52.4108 100.158 52.249 99.7617 52.0713C99.3652 51.889 99.0257 51.6816 98.7432 51.4492C98.4606 51.2168 98.2441 50.9502 98.0938 50.6494C97.9434 50.3486 97.8682 50.0046 97.8682 49.6172C97.8682 49.2298 97.9479 48.8721 98.1074 48.5439C98.2669 48.2158 98.4948 47.931 98.791 47.6895C99.0918 47.4434 99.4495 47.252 99.8643 47.1152C100.279 46.9785 100.742 46.9102 101.252 46.9102C101.999 46.9102 102.633 47.0537 103.152 47.3408C103.676 47.6234 104.075 47.9948 104.349 48.4551C104.622 48.9108 104.759 49.3984 104.759 49.918H103.446C103.446 49.5443 103.367 49.2139 103.207 48.9268C103.048 48.6351 102.806 48.4072 102.482 48.2432C102.159 48.0745 101.749 47.9902 101.252 47.9902C100.783 47.9902 100.395 48.0609 100.09 48.2021C99.7845 48.3434 99.5566 48.5348 99.4062 48.7764C99.2604 49.0179 99.1875 49.2936 99.1875 49.6035C99.1875 49.8132 99.2308 50.0046 99.3174 50.1777C99.4085 50.3464 99.5475 50.5036 99.7344 50.6494C99.9258 50.7952 100.167 50.9297 100.459 51.0527C100.755 51.1758 101.108 51.2943 101.519 51.4082C102.084 51.5677 102.571 51.7454 102.981 51.9414C103.392 52.1374 103.729 52.3584 103.993 52.6045C104.262 52.846 104.46 53.1217 104.588 53.4316C104.72 53.737 104.786 54.0833 104.786 54.4707C104.786 54.8763 104.704 55.2432 104.54 55.5713C104.376 55.8994 104.141 56.1797 103.836 56.4121C103.531 56.6445 103.164 56.8245 102.735 56.9521C102.312 57.0752 101.838 57.1367 101.313 57.1367C100.853 57.1367 100.4 57.0729 99.9531 56.9453C99.5111 56.8177 99.1077 56.6263 98.7432 56.3711C98.3831 56.1159 98.0938 55.8014 97.875 55.4277C97.6608 55.0495 97.5537 54.612 97.5537 54.1152H98.8662C98.8662 54.457 98.9323 54.751 99.0645 54.9971C99.1966 55.2386 99.3766 55.4391 99.6045 55.5986C99.8369 55.7581 100.099 55.8766 100.391 55.9541C100.687 56.027 100.994 56.0635 101.313 56.0635C101.774 56.0635 102.163 55.9997 102.482 55.8721C102.801 55.7445 103.043 55.5622 103.207 55.3252C103.376 55.0882 103.46 54.8079 103.46 54.4844ZM109.373 49.6035V50.5742H105.374V49.6035H109.373ZM106.728 47.8057H107.992V55.168C107.992 55.4186 108.031 55.6077 108.108 55.7354C108.186 55.863 108.286 55.9473 108.409 55.9883C108.532 56.0293 108.664 56.0498 108.806 56.0498C108.91 56.0498 109.02 56.0407 109.134 56.0225C109.252 55.9997 109.341 55.9814 109.4 55.9678L109.407 57C109.307 57.0319 109.175 57.0615 109.011 57.0889C108.851 57.1208 108.658 57.1367 108.43 57.1367C108.12 57.1367 107.835 57.0752 107.575 56.9521C107.315 56.8291 107.108 56.624 106.953 56.3369C106.803 56.0452 106.728 55.6533 106.728 55.1611V47.8057ZM113.926 57.1367C113.411 57.1367 112.944 57.0501 112.524 56.877C112.11 56.6992 111.752 56.4508 111.451 56.1318C111.155 55.8128 110.927 55.4346 110.768 54.9971C110.608 54.5596 110.528 54.0811 110.528 53.5615V53.2744C110.528 52.6729 110.617 52.1374 110.795 51.668C110.973 51.194 111.214 50.793 111.52 50.4648C111.825 50.1367 112.171 49.8883 112.559 49.7197C112.946 49.5511 113.347 49.4668 113.762 49.4668C114.29 49.4668 114.746 49.5579 115.129 49.7402C115.516 49.9225 115.833 50.1777 116.079 50.5059C116.325 50.8294 116.507 51.2122 116.626 51.6543C116.744 52.0918 116.804 52.5703 116.804 53.0898V53.6572H111.28V52.625H115.539V52.5293C115.521 52.2012 115.452 51.8822 115.334 51.5723C115.22 51.2624 115.038 51.0072 114.787 50.8066C114.536 50.6061 114.195 50.5059 113.762 50.5059C113.475 50.5059 113.21 50.5674 112.969 50.6904C112.727 50.8089 112.52 50.9867 112.347 51.2236C112.174 51.4606 112.039 51.75 111.943 52.0918C111.848 52.4336 111.8 52.8278 111.8 53.2744V53.5615C111.8 53.9124 111.848 54.2428 111.943 54.5527C112.044 54.8581 112.187 55.127 112.374 55.3594C112.565 55.5918 112.796 55.7741 113.064 55.9062C113.338 56.0384 113.648 56.1045 113.994 56.1045C114.441 56.1045 114.819 56.0133 115.129 55.8311C115.439 55.6488 115.71 55.4049 115.942 55.0996L116.708 55.708C116.549 55.9495 116.346 56.1797 116.1 56.3984C115.854 56.6172 115.55 56.7949 115.19 56.9316C114.835 57.0684 114.413 57.1367 113.926 57.1367ZM119.545 51.0254V59.8438H118.273V49.6035H119.436L119.545 51.0254ZM124.528 53.2402V53.3838C124.528 53.9215 124.465 54.4206 124.337 54.8809C124.209 55.3366 124.022 55.7331 123.776 56.0703C123.535 56.4076 123.236 56.6696 122.881 56.8564C122.525 57.0433 122.118 57.1367 121.657 57.1367C121.188 57.1367 120.773 57.0592 120.413 56.9043C120.053 56.7493 119.748 56.5238 119.497 56.2275C119.246 55.9313 119.046 55.5758 118.896 55.1611C118.75 54.7464 118.649 54.2793 118.595 53.7598V52.9941C118.649 52.4473 118.752 51.9574 118.902 51.5244C119.053 51.0915 119.251 50.7223 119.497 50.417C119.748 50.1071 120.051 49.8724 120.406 49.7129C120.762 49.5488 121.172 49.4668 121.637 49.4668C122.102 49.4668 122.514 49.5579 122.874 49.7402C123.234 49.918 123.537 50.1732 123.783 50.5059C124.029 50.8385 124.214 51.2373 124.337 51.7021C124.465 52.1624 124.528 52.6751 124.528 53.2402ZM123.257 53.3838V53.2402C123.257 52.8711 123.218 52.5247 123.141 52.2012C123.063 51.873 122.942 51.5859 122.778 51.3398C122.619 51.0892 122.414 50.8932 122.163 50.752C121.912 50.6061 121.614 50.5332 121.268 50.5332C120.949 50.5332 120.671 50.5879 120.434 50.6973C120.201 50.8066 120.003 50.9548 119.839 51.1416C119.675 51.3239 119.54 51.5335 119.436 51.7705C119.335 52.0029 119.26 52.2445 119.21 52.4951V54.2656C119.301 54.5846 119.429 54.8854 119.593 55.168C119.757 55.446 119.976 55.6715 120.249 55.8447C120.522 56.0133 120.867 56.0977 121.281 56.0977C121.623 56.0977 121.917 56.027 122.163 55.8857C122.414 55.7399 122.619 55.5417 122.778 55.291C122.942 55.0404 123.063 54.7533 123.141 54.4297C123.218 54.1016 123.257 53.7529 123.257 53.3838ZM130.161 46.9922V57H128.896V48.5713L126.347 49.501V48.3594L129.963 46.9922H130.161Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"97.5",y:"70.5",width:"82",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"97.5",y:"70.5",width:"82",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("rect",{x:"205",y:"29",width:"113",height:"86",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M226.46 54.4844C226.46 54.252 226.424 54.0469 226.351 53.8691C226.282 53.6868 226.159 53.5228 225.981 53.377C225.808 53.2311 225.567 53.0921 225.257 52.96C224.951 52.8278 224.564 52.6934 224.095 52.5566C223.603 52.4108 223.158 52.249 222.762 52.0713C222.365 51.889 222.026 51.6816 221.743 51.4492C221.461 51.2168 221.244 50.9502 221.094 50.6494C220.943 50.3486 220.868 50.0046 220.868 49.6172C220.868 49.2298 220.948 48.8721 221.107 48.5439C221.267 48.2158 221.495 47.931 221.791 47.6895C222.092 47.4434 222.45 47.252 222.864 47.1152C223.279 46.9785 223.742 46.9102 224.252 46.9102C224.999 46.9102 225.633 47.0537 226.152 47.3408C226.676 47.6234 227.075 47.9948 227.349 48.4551C227.622 48.9108 227.759 49.3984 227.759 49.918H226.446C226.446 49.5443 226.367 49.2139 226.207 48.9268C226.048 48.6351 225.806 48.4072 225.482 48.2432C225.159 48.0745 224.749 47.9902 224.252 47.9902C223.783 47.9902 223.395 48.0609 223.09 48.2021C222.785 48.3434 222.557 48.5348 222.406 48.7764C222.26 49.0179 222.188 49.2936 222.188 49.6035C222.188 49.8132 222.231 50.0046 222.317 50.1777C222.409 50.3464 222.548 50.5036 222.734 50.6494C222.926 50.7952 223.167 50.9297 223.459 51.0527C223.755 51.1758 224.108 51.2943 224.519 51.4082C225.084 51.5677 225.571 51.7454 225.981 51.9414C226.392 52.1374 226.729 52.3584 226.993 52.6045C227.262 52.846 227.46 53.1217 227.588 53.4316C227.72 53.737 227.786 54.0833 227.786 54.4707C227.786 54.8763 227.704 55.2432 227.54 55.5713C227.376 55.8994 227.141 56.1797 226.836 56.4121C226.531 56.6445 226.164 56.8245 225.735 56.9521C225.312 57.0752 224.838 57.1367 224.313 57.1367C223.853 57.1367 223.4 57.0729 222.953 56.9453C222.511 56.8177 222.108 56.6263 221.743 56.3711C221.383 56.1159 221.094 55.8014 220.875 55.4277C220.661 55.0495 220.554 54.612 220.554 54.1152H221.866C221.866 54.457 221.932 54.751 222.064 54.9971C222.197 55.2386 222.377 55.4391 222.604 55.5986C222.837 55.7581 223.099 55.8766 223.391 55.9541C223.687 56.027 223.994 56.0635 224.313 56.0635C224.774 56.0635 225.163 55.9997 225.482 55.8721C225.801 55.7445 226.043 55.5622 226.207 55.3252C226.376 55.0882 226.46 54.8079 226.46 54.4844ZM232.373 49.6035V50.5742H228.374V49.6035H232.373ZM229.728 47.8057H230.992V55.168C230.992 55.4186 231.031 55.6077 231.108 55.7354C231.186 55.863 231.286 55.9473 231.409 55.9883C231.532 56.0293 231.664 56.0498 231.806 56.0498C231.91 56.0498 232.02 56.0407 232.134 56.0225C232.252 55.9997 232.341 55.9814 232.4 55.9678L232.407 57C232.307 57.0319 232.175 57.0615 232.011 57.0889C231.851 57.1208 231.658 57.1367 231.43 57.1367C231.12 57.1367 230.835 57.0752 230.575 56.9521C230.315 56.8291 230.108 56.624 229.953 56.3369C229.803 56.0452 229.728 55.6533 229.728 55.1611V47.8057ZM236.926 57.1367C236.411 57.1367 235.944 57.0501 235.524 56.877C235.11 56.6992 234.752 56.4508 234.451 56.1318C234.155 55.8128 233.927 55.4346 233.768 54.9971C233.608 54.5596 233.528 54.0811 233.528 53.5615V53.2744C233.528 52.6729 233.617 52.1374 233.795 51.668C233.973 51.194 234.214 50.793 234.52 50.4648C234.825 50.1367 235.171 49.8883 235.559 49.7197C235.946 49.5511 236.347 49.4668 236.762 49.4668C237.29 49.4668 237.746 49.5579 238.129 49.7402C238.516 49.9225 238.833 50.1777 239.079 50.5059C239.325 50.8294 239.507 51.2122 239.626 51.6543C239.744 52.0918 239.804 52.5703 239.804 53.0898V53.6572H234.28V52.625H238.539V52.5293C238.521 52.2012 238.452 51.8822 238.334 51.5723C238.22 51.2624 238.038 51.0072 237.787 50.8066C237.536 50.6061 237.195 50.5059 236.762 50.5059C236.475 50.5059 236.21 50.5674 235.969 50.6904C235.727 50.8089 235.52 50.9867 235.347 51.2236C235.174 51.4606 235.039 51.75 234.943 52.0918C234.848 52.4336 234.8 52.8278 234.8 53.2744V53.5615C234.8 53.9124 234.848 54.2428 234.943 54.5527C235.044 54.8581 235.187 55.127 235.374 55.3594C235.565 55.5918 235.796 55.7741 236.064 55.9062C236.338 56.0384 236.648 56.1045 236.994 56.1045C237.441 56.1045 237.819 56.0133 238.129 55.8311C238.439 55.6488 238.71 55.4049 238.942 55.0996L239.708 55.708C239.549 55.9495 239.346 56.1797 239.1 56.3984C238.854 56.6172 238.55 56.7949 238.19 56.9316C237.835 57.0684 237.413 57.1367 236.926 57.1367ZM242.545 51.0254V59.8438H241.273V49.6035H242.436L242.545 51.0254ZM247.528 53.2402V53.3838C247.528 53.9215 247.465 54.4206 247.337 54.8809C247.209 55.3366 247.022 55.7331 246.776 56.0703C246.535 56.4076 246.236 56.6696 245.881 56.8564C245.525 57.0433 245.118 57.1367 244.657 57.1367C244.188 57.1367 243.773 57.0592 243.413 56.9043C243.053 56.7493 242.748 56.5238 242.497 56.2275C242.246 55.9313 242.046 55.5758 241.896 55.1611C241.75 54.7464 241.649 54.2793 241.595 53.7598V52.9941C241.649 52.4473 241.752 51.9574 241.902 51.5244C242.053 51.0915 242.251 50.7223 242.497 50.417C242.748 50.1071 243.051 49.8724 243.406 49.7129C243.762 49.5488 244.172 49.4668 244.637 49.4668C245.102 49.4668 245.514 49.5579 245.874 49.7402C246.234 49.918 246.537 50.1732 246.783 50.5059C247.029 50.8385 247.214 51.2373 247.337 51.7021C247.465 52.1624 247.528 52.6751 247.528 53.2402ZM246.257 53.3838V53.2402C246.257 52.8711 246.218 52.5247 246.141 52.2012C246.063 51.873 245.942 51.5859 245.778 51.3398C245.619 51.0892 245.414 50.8932 245.163 50.752C244.912 50.6061 244.614 50.5332 244.268 50.5332C243.949 50.5332 243.671 50.5879 243.434 50.6973C243.201 50.8066 243.003 50.9548 242.839 51.1416C242.675 51.3239 242.54 51.5335 242.436 51.7705C242.335 52.0029 242.26 52.2445 242.21 52.4951V54.2656C242.301 54.5846 242.429 54.8854 242.593 55.168C242.757 55.446 242.976 55.6715 243.249 55.8447C243.522 56.0133 243.867 56.0977 244.281 56.0977C244.623 56.0977 244.917 56.027 245.163 55.8857C245.414 55.7399 245.619 55.5417 245.778 55.291C245.942 55.0404 246.063 54.7533 246.141 54.4297C246.218 54.1016 246.257 53.7529 246.257 53.3838ZM255.526 55.9609V57H249.012V56.0908L252.272 52.4609C252.674 52.0143 252.983 51.6361 253.202 51.3262C253.425 51.0117 253.58 50.7314 253.667 50.4854C253.758 50.2347 253.804 49.9795 253.804 49.7197C253.804 49.3916 253.735 49.0954 253.599 48.8311C253.466 48.5622 253.271 48.348 253.011 48.1885C252.751 48.029 252.437 47.9492 252.067 47.9492C251.625 47.9492 251.256 48.0358 250.96 48.209C250.668 48.3776 250.45 48.6146 250.304 48.9199C250.158 49.2253 250.085 49.5762 250.085 49.9727H248.82C248.82 49.4121 248.943 48.8994 249.189 48.4346C249.436 47.9697 249.8 47.6006 250.283 47.3271C250.766 47.0492 251.361 46.9102 252.067 46.9102C252.696 46.9102 253.234 47.0218 253.681 47.2451C254.127 47.4639 254.469 47.7738 254.706 48.1748C254.948 48.5713 255.068 49.0361 255.068 49.5693C255.068 49.861 255.018 50.1572 254.918 50.458C254.822 50.7542 254.688 51.0505 254.515 51.3467C254.346 51.6429 254.148 51.9346 253.92 52.2217C253.697 52.5088 253.457 52.7913 253.202 53.0693L250.536 55.9609H255.526Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"220.5",y:"70.5",width:"82",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"220.5",y:"70.5",width:"82",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M15 57C15 54.7909 16.7909 53 19 53H82V91H19C16.7909 91 15 89.2091 15 87V57Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M30.9985 74.1641C30.9985 73.9482 30.9647 73.7578 30.897 73.5928C30.8335 73.4235 30.7192 73.2712 30.5542 73.1357C30.3934 73.0003 30.1691 72.8713 29.8813 72.7485C29.5978 72.6258 29.2381 72.501 28.8022 72.374C28.3452 72.2386 27.9326 72.0884 27.5645 71.9233C27.1963 71.7541 26.881 71.5615 26.6187 71.3457C26.3563 71.1299 26.1553 70.8823 26.0156 70.603C25.876 70.3237 25.8062 70.0042 25.8062 69.6445C25.8062 69.2848 25.8802 68.9526 26.0283 68.6479C26.1764 68.3433 26.388 68.0788 26.6631 67.8545C26.9424 67.626 27.2746 67.4482 27.6597 67.3213C28.0448 67.1943 28.4743 67.1309 28.9482 67.1309C29.6423 67.1309 30.2305 67.2642 30.7129 67.5308C31.1995 67.7931 31.5698 68.138 31.8237 68.5654C32.0776 68.9886 32.2046 69.4414 32.2046 69.9238H30.9858C30.9858 69.5768 30.9118 69.27 30.7637 69.0034C30.6156 68.7326 30.3913 68.521 30.0908 68.3687C29.7904 68.2121 29.4095 68.1338 28.9482 68.1338C28.5124 68.1338 28.1527 68.1994 27.8691 68.3306C27.5856 68.4618 27.374 68.6395 27.2344 68.8638C27.099 69.0881 27.0312 69.3441 27.0312 69.6318C27.0312 69.8265 27.0715 70.0042 27.1519 70.165C27.2365 70.3216 27.3656 70.4676 27.5391 70.603C27.7168 70.7384 27.9411 70.8633 28.2119 70.9775C28.487 71.0918 28.8149 71.2018 29.1958 71.3076C29.7205 71.4557 30.1733 71.6208 30.5542 71.8027C30.9351 71.9847 31.2482 72.1899 31.4937 72.4185C31.7433 72.6427 31.9274 72.8988 32.0459 73.1865C32.1686 73.4701 32.23 73.7917 32.23 74.1514C32.23 74.528 32.1538 74.8687 32.0015 75.1733C31.8491 75.478 31.6312 75.7383 31.3477 75.9541C31.0641 76.1699 30.7235 76.3371 30.3257 76.4556C29.9321 76.5698 29.492 76.627 29.0054 76.627C28.578 76.627 28.1569 76.5677 27.7422 76.4492C27.3317 76.3307 26.9572 76.153 26.6187 75.916C26.2843 75.679 26.0156 75.387 25.8125 75.04C25.6136 74.6888 25.5142 74.2826 25.5142 73.8213H26.7329C26.7329 74.1387 26.7943 74.4116 26.917 74.6401C27.0397 74.8644 27.2069 75.0506 27.4185 75.1987C27.6343 75.3468 27.8776 75.4569 28.1484 75.5288C28.4235 75.5965 28.7091 75.6304 29.0054 75.6304C29.4328 75.6304 29.7946 75.5711 30.0908 75.4526C30.387 75.3341 30.6113 75.1649 30.7637 74.9448C30.9202 74.7248 30.9985 74.4645 30.9985 74.1641ZM36.4893 69.6318V70.5332H32.7759V69.6318H36.4893ZM34.0327 67.9624H35.207V74.7988C35.207 75.0316 35.243 75.2072 35.3149 75.3257C35.3869 75.4442 35.48 75.5225 35.5942 75.5605C35.7085 75.5986 35.8312 75.6177 35.9624 75.6177C36.0597 75.6177 36.1613 75.6092 36.2671 75.5923C36.3771 75.5711 36.4596 75.5542 36.5146 75.5415L36.521 76.5C36.4279 76.5296 36.3052 76.5571 36.1528 76.5825C36.0047 76.6121 35.8249 76.627 35.6133 76.627C35.3255 76.627 35.061 76.5698 34.8198 76.4556C34.5786 76.3413 34.3861 76.1509 34.2422 75.8843C34.1025 75.6134 34.0327 75.2495 34.0327 74.7925V67.9624ZM41.9165 75.3257V71.79C41.9165 71.5192 41.8615 71.2843 41.7515 71.0854C41.6457 70.8823 41.4849 70.7257 41.269 70.6157C41.0532 70.5057 40.7866 70.4507 40.4692 70.4507C40.173 70.4507 39.9128 70.5015 39.6885 70.603C39.4684 70.7046 39.2949 70.8379 39.168 71.0029C39.0452 71.168 38.9839 71.3457 38.9839 71.5361H37.8096C37.8096 71.2907 37.873 71.0474 38 70.8062C38.127 70.5649 38.3089 70.347 38.5459 70.1523C38.7871 69.9535 39.0749 69.7969 39.4092 69.6826C39.7477 69.5641 40.1243 69.5049 40.5391 69.5049C41.0384 69.5049 41.4785 69.5895 41.8594 69.7588C42.2445 69.9281 42.5449 70.1841 42.7607 70.5269C42.9808 70.8654 43.0908 71.2907 43.0908 71.8027V75.002C43.0908 75.2305 43.1099 75.4738 43.1479 75.7319C43.1903 75.9901 43.2516 76.2122 43.332 76.3984V76.5H42.1069C42.0477 76.3646 42.0011 76.1847 41.9673 75.9604C41.9334 75.7319 41.9165 75.5203 41.9165 75.3257ZM42.1196 72.3359L42.1323 73.1611H40.9453C40.611 73.1611 40.3127 73.1886 40.0503 73.2437C39.7879 73.2944 39.5679 73.3727 39.3901 73.4785C39.2124 73.5843 39.077 73.7176 38.9839 73.8784C38.8908 74.035 38.8442 74.2191 38.8442 74.4307C38.8442 74.6465 38.8929 74.8433 38.9902 75.021C39.0876 75.1987 39.2336 75.3405 39.4282 75.4463C39.6271 75.5479 39.8704 75.5986 40.1582 75.5986C40.5179 75.5986 40.8353 75.5225 41.1104 75.3701C41.3854 75.2178 41.6034 75.0316 41.7642 74.8115C41.9292 74.5915 42.0181 74.3778 42.0308 74.1704L42.5322 74.7354C42.5026 74.9131 42.4222 75.1099 42.291 75.3257C42.1598 75.5415 41.9842 75.7489 41.7642 75.9478C41.5483 76.1424 41.2902 76.3053 40.9897 76.4365C40.6935 76.5635 40.3592 76.627 39.9868 76.627C39.5213 76.627 39.113 76.536 38.7617 76.354C38.4147 76.172 38.1439 75.9287 37.9492 75.624C37.7588 75.3151 37.6636 74.9702 37.6636 74.5894C37.6636 74.2212 37.7355 73.8975 37.8794 73.6182C38.0233 73.3346 38.2306 73.0998 38.5015 72.9136C38.7723 72.7231 39.0981 72.5793 39.479 72.4819C39.8599 72.3846 40.2852 72.3359 40.7549 72.3359H42.1196ZM46.1123 70.7109V76.5H44.938V69.6318H46.0806L46.1123 70.7109ZM48.2578 69.5938L48.2515 70.6855C48.1541 70.6644 48.061 70.6517 47.9722 70.6475C47.8875 70.639 47.7902 70.6348 47.6802 70.6348C47.4093 70.6348 47.1702 70.6771 46.9629 70.7617C46.7555 70.8464 46.5799 70.9648 46.436 71.1172C46.2922 71.2695 46.1779 71.4515 46.0933 71.6631C46.0129 71.8704 45.96 72.099 45.9346 72.3486L45.6045 72.5391C45.6045 72.1243 45.6447 71.735 45.7251 71.3711C45.8097 71.0072 45.9388 70.6855 46.1123 70.4062C46.2858 70.1227 46.5059 69.9027 46.7725 69.7461C47.0433 69.5853 47.3649 69.5049 47.7373 69.5049C47.8219 69.5049 47.9193 69.5155 48.0293 69.5366C48.1393 69.5535 48.2155 69.5726 48.2578 69.5938ZM52.5361 69.6318V70.5332H48.8228V69.6318H52.5361ZM50.0796 67.9624H51.2539V74.7988C51.2539 75.0316 51.2899 75.2072 51.3618 75.3257C51.4338 75.4442 51.5269 75.5225 51.6411 75.5605C51.7554 75.5986 51.8781 75.6177 52.0093 75.6177C52.1066 75.6177 52.2082 75.6092 52.314 75.5923C52.424 75.5711 52.5065 75.5542 52.5615 75.5415L52.5679 76.5C52.4748 76.5296 52.3521 76.5571 52.1997 76.5825C52.0516 76.6121 51.8717 76.627 51.6602 76.627C51.3724 76.627 51.1079 76.5698 50.8667 76.4556C50.6255 76.3413 50.4329 76.1509 50.2891 75.8843C50.1494 75.6134 50.0796 75.2495 50.0796 74.7925V67.9624Z",fill:"white"}),(0,h.createElement)("path",{d:"M61.1813 76.5188V67.4813L65.7 72.0001L61.1813 76.5188Z",fill:"white"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_76_1348"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})))),{__:_c}=wp.i18n,{PanelBody:kc}=wp.components,{BlockClassName:jc}=JetFBComponents,{useUniqKey:xc}=JetFBHooks,{InspectorControls:Fc,useBlockProps:Bc}=wp.blockEditor,Ac=JSON.parse('{"apiVersion":3,"name":"jet-forms/form-break-start","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","break","pagebreak","formbreak","start"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Form Page Start","icon":"\\n\\n\\n","attributes":{"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{name:Pc,icon:Sc=""}=Ac,{__:Nc}=wp.i18n,Ic={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Sc}}),description:Nc("Add the Form Page Start block after the two first form fields to start the new page not from the form beginning but from the block.","jet-form-builder"),edit:function(e){const C=Bc({className:"jet-form-builder__bottom-line"}),t=xc();return e.attributes.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},vc):[(0,h.createElement)(Fc,{key:t("InspectorControls")},(0,h.createElement)(kc,{title:_c("Advanced","jet-form-builder")},(0,h.createElement)(jc,null))),(0,h.createElement)("div",{key:t("viewBlock"),...C},(0,h.createElement)("span",null,_c("Form Break Start","jet-form-builder")))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}}},{__:Tc}=wp.i18n,Oc="jet-forms/media-field",Jc="jet-forms/form-break-field",Rc="jet-forms/date-field",qc="jet-forms/datetime-field",Dc="jet-forms/radio-field",zc="jet-forms/checkbox-field",Uc="jet-forms/select-field",Gc="jet-forms/text-field",Wc=[{attribute:"is_timestamp",to:[Rc,qc],message:Tc("Check this if you want to send value of this field as timestamp instead of plain datetime","jet-form-builder")},{attribute:"default",to:[Rc],message:Tc("Plain date should be in yyyy-mm-dd format","jet-form-builder")},{attribute:"default",to:[qc],message:Tc("Plain datetime should be in yyyy-MM-ddThh:mm format","jet-form-builder")},{attribute:"page_break_disabled",to:[Jc],message:Tc('Text to show if next page button is disabled. For example - "Fill required fields" etc.',"jet-form-builder")},{attribute:"insert_attachment",to:[Oc],message:Tc("If checked new attachment will be inserted for uploaded file.Note: work only for logged-in users!","jet-form-builder")},{attribute:"allowed_mimes",to:[Oc],message:Tc("If no MIME type selected will allow all types. Hold down the Ctrl (windows) / Command (Mac) button to select multiple options.","jet-form-builder")},{attribute:"value_from_meta",to:[Dc,zc,Uc],message:Tc("By default post/term ID is used as value. Here you can set meta field name to use its value as form field value","jet-form-builder")},{attribute:"calculated_value_from_key",to:[Dc,zc,Uc],message:Tc("Here you can set meta field name to use its value as calculated value for current form field","jet-form-builder")},{attribute:"generator_field",to:[Dc,zc,Uc],message:Tc("For Numbers range generator set field with max range value","jet-form-builder"),conditions:{generator_function:"num_range"}},{attribute:"switch_on_change",to:[Uc],message:Tc("Check this to switch page to next on current value change","jet-form-builder")},{attribute:"prefix_suffix",to:["jet-forms/range-field"],message:Tc("For space before or after text use:  ","jet-form-builder")},{attribute:"calc_hidden",to:["jet-forms/repeater-field"],message:Tc("Check this to hide calculated field","jet-form-builder")},{attribute:"input_mask_default",to:[Gc],message:Tc("Examples: (999) 999-9999 - static mask, 9-a{1,3}9{1,3} - mask with dynamic syntax Default masking definitions: 9 - numeric, a - alphabetical, * - alphanumeric","jet-form-builder")},{attribute:"input_mask_datetime_link",to:[Gc],message:"https://robinherbots.github.io/Inputmask/#/documentation/datetime"},{attribute:"default",to:["jet-forms/time-field"],message:Tc("Plain time should be in hh:mm:ss format","jet-form-builder")},{attribute:"label_progress",to:[Jc],message:Tc("To set/change a last progress name add a Form Break Field at the very end of the form.","jet-form-builder")}],{applyFilters:Kc}=wp.hooks,$c=Kc("jet.fb.register.editProps",[{name:"uniqKey",callable:e=>C=>`${e.name}/${C}`},{name:"blockName",callable:e=>e.name},{name:"attrHelp",callable:e=>{const C={};return Wc.forEach((t=>{t.to.includes(e.name)&&t.message&&(C[t.attribute]=t)})),(e,t={})=>{if(!(e in C))return"";const l=C[e];if(!("conditions"in l))return l.message;for(const e in l.conditions)if(!(e in t)||l.conditions[e]!==t[e])return;return l.message}}}]),{registerBlockType:Yc}=wp.blocks,{applyFilters:Xc}=wp.hooks,Qc=Xc("jet.fb.register.fields",[e,C,r,l,n,a,i,o,s,c,d,m,u,p,f,V,H]),ed=e=>{if(!e)return;const{metadata:C,settings:t,name:l}=e;t.edit=function(e){const{edit:C}=e.settings,t={};if("useEditProps"in e.settings){const{useEditProps:C}=e.settings;C.forEach((C=>{const l=$c.find((e=>C===e.name));l&&(t[C]=l.callable(e))})),delete e.settings.useEditProps}return e=>(0,h.createElement)(C,{...e,editProps:{...t}})}(e),t.hasOwnProperty("jfbResolveBlock")||(t.jfbResolveBlock=function(){const e={clientId:this.clientId,name:this.name};return this.attributes?.name?{...e,fields:[{name:this.attributes.name,label:this.attributes.label||this.attributes.name,value:this.attributes.name}]}:e}),!t.hasOwnProperty("__experimentalLabel")&&C.attributes.hasOwnProperty("name")&&(t.__experimentalLabel=(e,{context:t})=>{switch(t){case"list-view":return e.name||C.title;case"accessibility":return e.name?.length?`${C.title} (${e.name})`:C.title;default:return C.title}}),Yc(l,{...C,...t})};function Cd(e,C){let{metadata:{title:t}}=e,{metadata:{title:l}}=C;t=t||e.settings?.title,l=l||C.settings?.title;try{return t.localeCompare(l)}catch(e){return 0}}!function(){const e=[];(0,wC.applyFilters)("jet.fb.register.plugins",[Ae,Re,yC,Ye,CC]).forEach((C=>{const{base:{name:t,condition:l=!0}}=C;if(!l)return!1;const r=(0,wC.applyFilters)(`jet.fb.register.plugin.${t}.before`,[]);r&&e.push(...r),e.push(C);const n=(0,wC.applyFilters)(`jet.fb.register.plugin.${t}.after`,[]);n&&e.push(...n)})),e.forEach(vC)}(),function(e=Qc){e.sort(Cd),e.forEach(Xc("jet.fb.register.fields.handler",ed))}()})()})(); \ No newline at end of file diff --git a/assets/build/editor/package.asset.php b/assets/build/editor/package.asset.php index 282deb735..84bed3937 100644 --- a/assets/build/editor/package.asset.php +++ b/assets/build/editor/package.asset.php @@ -1 +1 @@ - array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '84dd167a2e5aa9a15f3b'); + array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => 'ddb9526e3d4ea2dccb93'); diff --git a/assets/build/editor/package.js b/assets/build/editor/package.js index 763c34c1f..5473186e6 100644 --- a/assets/build/editor/package.js +++ b/assets/build/editor/package.js @@ -1 +1 @@ -(()=>{var e={4180(){const e=()=>{const{select:e}=wp.data;return e("core/editor").getEditedPostAttribute("meta")},t=(t,n)=>{const{dispatch:r}=wp.data,{editPost:l}=r("core/editor");l({meta:{...e(),[t]:JSON.stringify(n)}})},n=e=>{const t=[];for(const[n,{active:r=!1}]of Object.entries(e))r&&t.push(+n);return t};wp.domReady(()=>(async()=>{await(async()=>new Promise(e=>{const t=setInterval(()=>{wp.data.select("core/editor").getCurrentPostType()&&(clearInterval(t),e())},100)}))();let r={},l=[];try{[r={},l=[]]=(()=>{const t=e();let n={},r=[];try{n=JSON.parse(t._jf_gateways)}catch(e){return[]}if(1===n.last_migrate)throw"migrated";try{r=JSON.parse(t._jf_actions)}catch(e){return[n]}return[n,r]})()}catch(e){return}r.last_migrate=1,t("_jf_gateways",r);const o=[];try{o.push(...((e,t)=>{var r,l,o,a;const i=n(null!==(r=e.notifications_success)&&void 0!==r?r:{}),s=n(null!==(l=e.notifications_failed)&&void 0!==l?l:{}),c=n(null!==(o=e.notifications_before)&&void 0!==o?o:{}),u=null!==(a=e.use_success_redirect)&&void 0!==a&&a;let d=!1;if(!(i.length||s.length||c.length||u))throw"nothing_to_migrate";return t.map(e=>{var t;return e.events=null!==(t=e.events)&&void 0!==t?t:[],i.includes(e.id)&&e.events.push("GATEWAY.SUCCESS"),s.includes(e.id)&&e.events.push("GATEWAY.FAILED"),c.includes(e.id)&&e.events.push("DEFAULT.PROCESS"),u&&!d&&"redirect_to_page"===e.type&&(e.events.push("GATEWAY.SUCCESS"),d=!0),e})})(r,l))}catch(e){return}t("_jf_actions",o)})())},115(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(6758),l=n.n(r),o=n(935),a=n.n(o)()(l());a.push([e.id,".syma2t4{height:40px;min-height:40px;line-height:1.5;}\n",""]);const i=a},4239(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(6758),l=n.n(r),o=n(935),a=n.n(o)()(l());a.push([e.id,".sfqmk5y svg{height:24px;width:24px;}\n",""]);const i=a},935(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n}).join("")},t.i=function(e,n,r,l,o){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(r)for(var i=0;i0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=o),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),l&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=l):u[4]="".concat(l)),t.push(u))}},t}},6758(e){"use strict";e.exports=function(e){return e[1]}},4023(e,t,n){var r=n(115);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(611).A)("55433ea3",r,!1,{})},483(e,t,n){var r=n(4239);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(611).A)("62ebcc8a",r,!1,{})},611(e,t,n){"use strict";function r(e,t){for(var n=[],r={},l=0;lf});var l="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!l)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},a=l&&(document.head||document.getElementsByTagName("head")[0]),i=null,s=0,c=!1,u=function(){},d=null,m="data-vue-ssr-id",p="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(e,t,n,l){c=n,d=l||{};var a=r(e,t);return h(a),function(t){for(var n=[],l=0;ln.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(l=0;l{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";const e=window.React,{createContext:t}=wp.element,r=t({name:"",data:{},index:0}),l=window.jfb.components,o=window.wp.element,{createContext:a}=wp.element,i=a({actionClick:null,onRequestClose:()=>{}}),{createSlotFill:s}=wp.components,c=s("JFBActionModalFooter"),u=window.wp.components,d=window.wp.i18n,{Slot:m}=c;let{ToggleGroupControl:p,__experimentalToggleGroupControl:f}=wp.components;p=p||f;const h=function({onRequestClose:t,children:n,title:r="",classNames:l=[],className:a="",onUpdateClick:s,onCancelClick:c,updateBtnLabel:f="Update",updateBtnProps:h={},cancelBtnProps:b={},cancelBtnLabel:g="Cancel",fixedHeight:y="",...v}){const w=["jet-form-edit-modal",...l,a],[_,E]=(0,o.useState)(null),C=()=>{s&&s(),E(!0)},k=()=>{c&&c(),E(!1)};let S={};return y&&(S={height:y},w.push("jet-modal-fixed-height")),(0,e.createElement)(u.Modal,{onRequestClose:t,className:w.join(" "),title:r,style:S,...v},!n&&(0,e.createElement)("div",{className:"jet-form-edit-modal__content"},(0,d.__)("Action callback is not found.","jet-form-builder")),n&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"jet-form-edit-modal__wrapper"},(0,e.createElement)(i.Provider,{value:{actionClick:_,onRequestClose:t}},(0,e.createElement)("div",{className:"jet-form-edit-modal__content"},"function"==typeof n&&n({actionClick:_,onRequestClose:t}),"function"!=typeof n&&n))),(0,e.createElement)(m,{fillProps:{updateClick:C,cancelClick:k}},t=>Boolean(t?.length)?t:(0,e.createElement)(p,{className:"jet-form-edit-modal__actions jfb-toggle-group-control",hideLabelFromVision:!0},(0,e.createElement)(u.Button,{isPrimary:!0,onClick:C,...h},f),(0,e.createElement)(u.Button,{isSecondary:!0,style:{margin:"0 0 0 10px"},onClick:k,...b},g)))))},{RawHTML:b,useContext:g}=wp.element;function y(e,t){return e?.length?e.map(e=>"object"==typeof e?e[t]:e):[]}const v=(0,window.wp.hooks.applyFilters)("jet.fb.tools.convertSymbols",{checkCyrRegex:/[а-яёїєґі]/i,cyrRegex:/[а-яёїєґі]/gi,charsMap:{а:"a",б:"b",в:"v",г:"g",д:"d",е:"e",ё:"io",ж:"zh",з:"z",и:"i",й:"i",к:"k",л:"l",м:"m",н:"n",о:"o",п:"p",р:"r",с:"s",т:"t",у:"u",ф:"f",х:"kh",ц:"ts",ч:"ch",ш:"sh",щ:"shch",ы:"y",э:"e",ю:"iu",я:"ia",ї:"i",є:"ie",ґ:"g",і:"i"}});function w(e){return v.checkCyrRegex.test(e)&&(e=e.replace(v.cyrRegex,function(e){return void 0===v.charsMap[e]?"":v.charsMap[e]})),e}function _(e){let t=e.toLowerCase();t=t.normalize("NFD").replace(/[\u0300-\u036f]/g,""),t=w(t);const n=t.match(/\b(\w+)\b/g);t="";for(const[e,r]of Object.entries(n)){t+=(0===+e?"":"_")+r;const l=+e+1===n.length;if(t.length>60)return t+(l?"":"__")}return t}function E(...e){const t=[],n=e=>{e.forEach(e=>{if(e&&(Array.isArray(e)&&n(e),"string"==typeof e&&t.push(e.trim()),"object"==typeof e))for(const n in e)e[n]&&t.push((n+"").trim())})};return n(e),t.join(" ")}function C(e){return null==e||("object"!=typeof e||Array.isArray(e)?"number"==typeof e?0===e:!e?.length:!Object.keys(e)?.length)}const k=class{static withPlaceholder(e,t="--",n=""){return[{label:t,value:n},...e]}static getRandomID(){return Math.floor(8999*Math.random())+1e3}},{select:S}=wp.data,j=function(e){const t=(n,r=null)=>{(n=n||S("core/block-editor").getBlocks()).forEach(n=>{if(e(n,r),n.innerBlocks.length){const e="jet-forms/repeater-field"===n.name?n:r;return void t(n.innerBlocks,e)}if("core/block"!==n.name)return;let l=S("core/block-editor")?.__unstableGetClientIdsTree?.(n.clientId);if(!l?.length)return;const o=l.map(({clientId:e})=>e);l=S("core/block-editor").getBlocksByClientId(o),t(l)})};t()},{applyFilters:x}=wp.hooks,{select:N}=wp.data,F=function(e=[],t=!1,n=!1,r="default"){let l=[];const o=["submit","form-break","heading","group-break","conditional",...e];return j(e=>{if(e.name.includes("jet-forms/")&&!o.find(t=>e.name.includes(t))){const t=N("core/blocks").getBlockType(e.name);let{fields:n=[]}=t.jfbResolveBlock.call(e,r);t.hasOwnProperty("jfbGetFields")&&(n=t.jfbGetFields.call(e,r)),l.push(...n.filter(e=>!l.some(({value:t})=>t===e.value)))}}),l=t?[{value:"",label:t},...l]:l,n?l:x("jet.fb.getFormFieldsBlocks",l,r)},T=function(e=[],t="default"){const n=[],r=F(e,!1,!1,t);return r&&r.forEach(e=>n.push(e.name)),n},{__:B}=wp.i18n,{applyFilters:I}=wp.hooks,{select:A}=wp.data,O=function(e=!1,t=!1,n="default"){const r=["submit","form-break","heading","group-break","conditional"];let l=[];const o=wp.data.select("core/block-editor").getSelectedBlock();return j(e=>{if(e.name.includes("jet-forms/")&&o?.clientId!==e.clientId&&!r.find(t=>e.name.includes(t))){const t=A("core/blocks").getBlockType(e.name);let{fields:r=[]}=t.jfbResolveBlock.call(e,n);t.hasOwnProperty("jfbGetFields")&&(r=t.jfbGetFields.call(e,n)),l.push(...r.filter(e=>!l.some(({value:t})=>t===e.value)))}}),l=e?[{value:"",label:e},...l]:l,t?l:I("jet.fb.getFormFieldsBlocks",l,n)},R=function(e){const t=wp.data.select("core/block-editor").getBlock(e);return t?t.innerBlocks:[]},{addFilter:M}=wp.hooks,P=function(e=!1,t=""){const n=window.JetFormEditorData.gateways;if(!e)return n;if(!n[e])return!1;const r=n[e];return e=>r[e]?r[e]:t},L=function(e,t=""){const n=P("labels");return r=>n(e)?n(e)[r]:t},G=function(e,t="cred"){return window.JetFBGatewaysList&&window.JetFBGatewaysList[e]&&window.JetFBGatewaysList[e][t]},D=function(t,n,r="cred"){if(!G(t,r))return null;const l=window.JetFBGatewaysList[t][r];return(0,e.createElement)(l,{...n})},{useState:q,useEffect:V}=wp.element,{useDispatch:J}=wp.data,$=function(e,t={}){const[n,r]=q(!1),l=J(wp.notices.store);return V(()=>{n&&l.createWarningNotice(e,{type:"snackbar",...t})},[n]),r},{useSelect:U}=wp.data,H=function(e){const t=U(e=>e("core/editor").getEditedPostAttribute("meta")||{});return JSON.parse(t[e]||"{}")},W=function(e){const{actionClick:t,onRequestClose:n}=(0,o.useContext)(i);(0,o.useEffect)(()=>{t&&e(),null!==t&&n()},[t])},{applyFilters:z}=wp.hooks,Y=(e,t)=>{t.forEach(t=>{e(t),t.innerBlocks.length&&Y(e,t.innerBlocks)})},K=window.jfb.actions,X=function(e){const t=e("jet-forms/gateways"),n=t.getCurrentRequestId(),r=t.getGatewaySpecific(),l=t.getScenario(),o=t.getGatewayId(),{id:a="PAY_NOW"}=l,{use_global:i=!1}=r,s=(0,K.globalTab)({slug:o}),c=P("additional")(o),u=e("jet-forms/actions").getLoading(n),d=P("labels"),m=L(o),p=function(e){return d(`${o}.${e}`)};return{gatewayGeneral:t.getGateway(),gatewayRequest:t.getCurrentRequest(),scenarioSource:c[a]||{},currentScenario:l[a]||{},CURRENT_SCENARIO:a,gatewayScenario:l,additionalSourceGateway:c,gatewaySpecific:r,gatewayRequestId:n,loadingGateway:u,getSpecificOrGlobal:(e,t="")=>i?s[e]||t:r[e]||t,globalGatewayLabel:d,specificGatewayLabel:m,customGatewayLabel:p,scenarioLabel:function(e){return p(`scenario.${a}.${e}`)}}},{useSelect:Z}=wp.data,Q=function(){const e=Z(e=>e("jet-forms/events").getAlwaysTypes()),t=[];for(const{value:n}of e)t.push(n);return[...new Set(t)]},{useSelect:ee}=wp.data,te=function(){var e;const t=H("_jf_gateways"),{scenario:n={}}=null!==(e=t[t?.gateway])&&void 0!==e?e:{};return ee(e=>{const r=e("jet-forms/events").getGatewayTypes(),l=[];for(const e of r){const r=!e.gateway||e.gateway===t.gateway,o=!e.scenario||e.scenario===n?.id;r&&o&&l.push(e.value)}return[...new Set(l)]},[t.gateway,n?.id])},{useSelect:ne}=wp.data,re=function({index:e}){const t=H("_jf_actions"),n=ne(e=>e("jet-forms/actions").getActionsMap(),[]);t.splice(e,1);const r=[];for(const e of t){const t=n?.[e.type]?.provideEvents;if("function"!=typeof t)continue;const{[e.type]:l={}}=e.settings;r.push(...t(l))}return[...new Set(r)]},{useSelect:le}=wp.data,{useSelect:oe}=wp.data,ae=function(e){const t=[...Q(),...te(),...re(e),...le(e=>e("jet-forms/events").getDynamicTypes().map(({value:e})=>e))];return oe(n=>n("jet-forms/events").filterList(e.type,t))},{useSelect:ie}=wp.data,{useSelect:se}=wp.data,ce=function(){const[e,t]=se(e=>[e("jet-forms/block-conditions").getOperators(),e("jet-forms/block-conditions").getFunctions()],[]);return{operators:e,functions:t}},{useBlockEditContext:ue}=wp.blockEditor,de=function(){const{clientId:e}=ue();return t=>t+"-"+e},me=window.wp.blockEditor,pe=window.wp.data,fe=function(e=null){const t=(0,me.useBlockEditContext)();let{clientId:n}=t;e&&(n=e);const r=(0,pe.useSelect)(e=>e("core/block-editor").getBlockAttributes(n),[n]),{updateBlock:l}=(0,pe.useDispatch)("core/block-editor");return[r,e=>{e="object"==typeof e?e:e(r),e=(0,pe.select)("jet-forms/fields").getSanitizedAttributes(e,t),l(n,{attributes:e})}]},he=function(e){const t=(0,me.useBlockProps)()["data-type"];return(0,pe.useSelect)(n=>!!n("core/blocks").getBlockType(t).attributes[e],[e,t])},{applyFilters:be}=wp.hooks,ge=function(t){return function(n){return(0,e.createElement)(t,{key:"wrapped-preset-editor",...n,parseValue:()=>{let e={};if("object"==typeof n.value)e={...n.value};else if(n.value&&"string"==typeof n.value)try{if(e=JSON.parse(n.value),"number"==typeof e)throw new Error}catch(t){e={}}return e.jet_preset=!0,e},isVisible:(e,t,n)=>(t.position&&n===t.position||!t.position||"query_var"!==e.from)&&((e,t)=>!t.condition&&!t.custom_condition||(t.custom_condition?"query_var"===t.custom_condition?"post"===e.from&&"query_var"===e.post_from||"user"===e.from&&"query_var"===e.user_from||"term"===e.from&&"query_var"===e.term_from||"query_var"===e.from:be("jet.fb.preset.editor.custom.condition",!1,t.custom_condition,e):!t.condition||e[t.condition.field]===t.condition.value))(e,t),isMapFieldVisible:(e,t,n)=>!((t.condition||t.parent_condition)&&(t.parent_condition&&!t.condition?e[t.parent_condition.field]!==t.parent_condition.value:t.parent_condition&&t.condition?!e.fields_map||!e.fields_map[n]||e.fields_map[n][t.condition.field]!==t.condition.value||e[t.parent_condition.field]!==t.parent_condition.value:!t.parent_condition&&t.condition&&(!e.fields_map||!e.fields_map[n]||e.fields_map[n][t.condition.field]!==t.condition.value))),isCurrentFieldVisible:(e,t,n)=>!((t.condition||t.parent_condition)&&(t.position&&n!==t.position||(t.parent_condition&&!t.condition?e[t.parent_condition.field]!==t.parent_condition.value:t.parent_condition&&t.condition?e["current_field_"+t.condition.field]!==t.condition.value||e[t.parent_condition.field]!==t.parent_condition.value:!t.parent_condition&&t.condition&&e["current_field_"+t.condition.field]!==t.condition.value))),excludeOptions:e=>{const t=[...e];return t.forEach((e,r)=>{n.excludeSources&&n.excludeSources.includes(e.value)&&t.splice(r,1)}),t}})}},ye=function({data:t,value:n,index:r,onChangeValue:o,isVisible:a,excludeOptions:i=e=>e,position:s}){switch(t.type){case"text":return a(n,t,s)&&(0,e.createElement)("div",{key:"field_"+t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledTextControl,{key:t.name+r,label:t.label,value:n[t.name],onChange:e=>{o(e,t.name)}}));case"select":return a(n,t,s)&&(0,e.createElement)("div",{key:"field_"+t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledSelectControl,{key:t.name+r,options:i(t.options),label:t.label,value:n[t.name],onChange:e=>{o(e,t.name)}}))}return null};function ve(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var we=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_e=ve(function(e){return we.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),Ee=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)})});const r=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&r.push(t[e]);return r.push(...n),r.join(" ")},Ce=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{n[t]=e[t]}),n},ke=(e,t)=>{},Se=function(t){let n="";return r=>{const l=(l,o)=>{const{as:a=t,class:i=n}=l;var s;const c=function(e,t){const n=Ce(t,["as","class"]);if(!e){const e="function"==typeof _e?{default:_e}:_e;Object.keys(n).forEach(t=>{e.default(t)||delete n[t]})}return n}(void 0===r.propsAsIs?!("string"==typeof a&&-1===a.indexOf("-")&&(s=a[0],s.toUpperCase()!==s)):r.propsAsIs,l);c.ref=o,c.className=r.atomic?Ee(r.class,c.className||i):Ee(c.className||i,r.class);const{vars:u}=r;if(u){const e={};for(const t in u){const n=u[t],o=n[0],a=n[1]||"",i="function"==typeof o?o(l):o;ke(0,r.name),e[`--${t}`]=`${i}${a}`}const t=c.style||{},n=Object.keys(t);n.length>0&&n.forEach(n=>{e[n]=t[n]}),c.style=e}return t.__wyw_meta&&t!==a?(c.as=a,(0,e.createElement)(t,c)):(0,e.createElement)(a,c)},o=e.forwardRef?(0,e.forwardRef)(l):e=>{const t=Ce(e,["innerRef"]);return l(t,e.innerRef)};return o.displayName=r.name,o.__wyw_meta={className:r.class||n,extends:t},o}};const je=Se("select")({name:"StyledSelect",class:"syma2t4",propsAsIs:!1}),xe=function({id:t,label:n,onChange:r,options:l=[],value:o}){return!C(l)&&(0,e.createElement)(je,{id:t,className:"components-select-control__input",onChange:e=>{r(e.target.value)},value:o},(0,e.createElement)("option",{key:`${n}-placeholder`,value:""},"--"),l.map((t,n)=>!C(t.values)&&(0,e.createElement)("optgroup",{key:`${t.label}-${n}`,label:t.label},t.values.map((t,r)=>(0,e.createElement)("option",{key:`${t.value}-${r}-${n}`,value:t.value,disabled:t.disabled},t.label)))))};n(4023);const Ne=function({data:t,value:n,index:r,currentState:o,onChangeValue:a,isCurrentFieldVisible:i}){switch(t.type){case"text":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledTextControl,{key:"control_"+t.name+r,placeholder:t.label,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}));case"select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledSelectControl,{key:"control_"+t.name+r,options:t.options,label:t.label,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}));case"custom_select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(u.CustomSelectControl,{className:"jet-custom-select-control",label:t.label,options:t.options,onChange:({selectedItem:e})=>{n=e.key,a(n,"current_field_"+t.name)},value:t.options.find(e=>e.key===n)}));case"grouped_select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r},(0,e.createElement)(l.Label,null,t.label),(0,e.createElement)(xe,{options:t.options,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}))}return null},{createContext:Fe}=wp.element,Te=Fe({});let Be=function({value:t,onChange:n,parseValue:r,excludeOptions:a,isCurrentFieldVisible:i,isVisible:s}){var c,m;const p="dynamic",f=r(t),h=(0,o.useContext)(Te),b=(e,t)=>{n(()=>JSON.stringify({...f,[t]:e}))};return(0,e.createElement)(l.StyledFlexControl,{direction:"column",gap:4},window.JetFormEditorData.presetConfig.global_fields.map((t,n)=>(0,e.createElement)(ye,{key:`current_field_${t.name}_${n}`,value:f,index:n,data:t,excludeOptions:a,onChangeValue:b,isVisible:s,position:p})),window.JetFormEditorData.presetConfig.map_fields.map((t,n)=>(0,e.createElement)(Ne,{key:`current_field_${t.name}_${n}`,currentState:f,value:f["current_field_"+t.name],index:n,data:t,onChangeValue:b,isCurrentFieldVisible:i,position:p})),h?.show&&(0,e.createElement)(u.ToggleControl,{label:(0,d.__)("Restrict access","jet-form-builder"),help:null===(c=f.restricted)||void 0===c||c?(0,d.__)("Will set default value from preset only for users who allowed to edit this value","jet-form-builder"):(0,d.__)("Always set default value from preset. Make sure it can't be accidentally changed from form Actions","jet-form-builder"),checked:null===(m=f.restricted)||void 0===m||m,onChange:e=>{b(e?void 0:e,"restricted")}}))};Be=ge(Be);const Ie=Be,{SelectControl:Ae,TextControl:Oe}=wp.components;class Re extends wp.element.Component{constructor(e){super(e),this.fieldTypes=this.props.fieldTypes,this.taxonomiesList=this.props.taxonomiesList,this.className=this.props.className,this.metaProp=this.props.metaProp?this.props.metaProp:"post_meta",this.termsProp=this.props.termsProp?this.props.termsProp:"post_terms",this.index=this.props.index,this.init(),this.bindFunctions(),this.state={type:this.getFieldType(this.props.fieldValue)}}bindFunctions(){this.onChangeType=this.onChangeType.bind(this),this.onChangeValue=this.onChangeValue.bind(this)}init(){if(this.id=`inspector-select-control-${this.index}`,this.preparedTaxes=[],this.taxPrefix="jet_tax__",this.taxonomiesList)for(let e=0;e{const t=wp.data.select(qe).getBlockType(`jet-forms/${e}`);return{title:t.title,icon:t.icon.src}}))}},Je=class{constructor(){this.items=[]}push(e){this.items.push(new Ve(e))}},{messages:$e}=window.jetFormValidation,{useState:Ue}=wp.element,He=$e.sort((e,t)=>e.supported.length-t.supported.length);function We(){const e=new Je;for(const t of He)e.push(t);return e.items}const ze=function(e,t){1>=e.label.length||e.name&&"field_name"!==e.name||t({name:_(e.label)})},{BaseControl:Ye}=wp.components,{RichText:Ke}=wp.blockEditor;let{__experimentalUseFocusOutside:Xe,useFocusOutside:Ze}=wp.compose;Ze=Ze||Xe;const{__:Qe}=wp.i18n;function et(t){return(0,e.createElement)("small",{style:{whiteSpace:"nowrap",padding:"0.2em 0.8em 0 0",color:"#8e8a8a"}},t)}const{Button:tt,Popover:nt,PanelBody:rt}=wp.components,{useState:lt}=wp.element,{__:ot}=wp.i18n,{TextControl:at}=wp.components,it=function({label:t,help:n}){const[r,l]=fe();return he("placeholder")?(0,e.createElement)(at,{label:null!=t?t:ot("Placeholder","jet-form-builder"),value:r.placeholder,help:null!=n?n:"",onChange:e=>l({placeholder:e})}):null},{__:st}=wp.i18n,{ToggleControl:ct}=wp.components,ut=function({label:t,help:n}){const[r,l]=fe();return he("add_prev")?(0,e.createElement)(ct,{label:null!=t?t:st("Add Prev Page Button","jet-form-builder"),help:null!=n?n:st('It is recommended to use the "Action Button" block with the "Go to Prev Page" type',"jet-form-builder"),checked:r.add_prev,onChange:e=>l({add_prev:e})}):null},dt=function({children:t,className:n="",style:r={},...l}){return(0,e.createElement)("p",{className:"jet-fb-base-control__help"+(n?` ${n}`:""),style:{fontSize:"12px",fontStyle:"normal",color:"rgb(117, 117, 117)",marginTop:"0px",...r},...l},t)},{useBlockEditContext:mt}=wp.blockEditor,{useSelect:pt}=wp.data,{__:ft}=wp.i18n,ht=function({name:t=!1,children:n=null}){const{name:r}=mt(),l=pt(e=>{var n;if(!1===t)return!1;const l=e("core/blocks").getBlockType(r);return null!==(n=l.attributes[t]?.jfb)&&void 0!==n&&n},[r,t]);return l?(0,e.createElement)(dt,{className:"jet-fb mb-24"},n&&(0,e.createElement)(e.Fragment,null,n," "),l?.shortcode&&!l.rich&&!n&&ft("You can use shortcodes here.","jet-form-builder"),l?.shortcode&&!l.rich&&n&&ft("You can also use shortcodes here.","jet-form-builder")):Boolean(n)&&(0,e.createElement)(dt,{className:"jet-fb mb-24"},n)},{__:bt}=wp.i18n,{TextControl:gt}=wp.components,yt=function({label:t,help:n}){const[r,l]=fe();return r.add_prev?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(gt,{label:null!=t?t:bt("Prev Page Button Label","jet-form-builder"),value:r.prev_label,className:"jet-fb m-unset",onChange:e=>l({prev_label:e})}),(0,e.createElement)(ht,{name:"prev_label"},null!=n?n:"")):null},{__:vt}=wp.i18n,{SelectControl:wt}=wp.components,_t=function({label:t,help:n}){const[r,l]=fe();return he("visibility")?(0,e.createElement)(wt,{options:[{value:"all",label:vt("For all","jet-form-builder")},{value:"logged_id",label:vt("Only for logged in users","jet-form-builder")},{value:"not_logged_in",label:vt("Only for NOT-logged in users","jet-form-builder")}],label:null!=t?t:vt("Field Visibility","jet-form-builder"),help:null!=n?n:"",value:r.visibility,onChange:e=>l({visibility:e})}):null},{__:Et}=wp.i18n,{TextControl:Ct}=wp.components,kt=function({label:t,help:n}){const[r,l]=fe();return(0,e.createElement)(Ct,{label:null!=t?t:Et("CSS Class Name","jet-form-builder"),value:r.class_name,help:null!=n?n:"",onChange:e=>l({class_name:e})})},{InspectorAdvancedControls:St}=wp.blockEditor,{__:jt}=wp.i18n,{TextControl:xt}=wp.components;let{__experimentalUseFocusOutside:Nt,useFocusOutside:Ft}=wp.compose;Ft=Ft||Nt;const Tt=function({label:t,help:n}){const[r,l]=fe(),o=Ft(function(){ze(r,l)});return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(xt,{label:null!=t?t:jt("Field Label","jet-form-builder"),className:"jet-fb m-unset",value:r.label,onChange:e=>l({label:e}),...o}),(0,e.createElement)(ht,{name:"label"},null!=n?n:""))},Bt={};for(const{id:e,name:t}of window.jetFormActionTypes)Bt[e]=t;const{__:It}=wp.i18n,{TextControl:At,Icon:Ot,Flex:Rt,Tooltip:Mt}=wp.components,{useInstanceId:Pt}=wp.compose,Lt=function t({label:n,help:r}){const[l,o]=fe(),{message:a}=function(){const{clientId:e}=(0,me.useBlockEditContext)(),t=(0,K.useRequestFields)({returnOnEmptyCurrentAction:!1}),{inFormFields:n,hasParent:r,fieldNames:l}=(0,pe.useSelect)(t=>{var n;const r=t("jet-forms/fields").getBlockById(e);return{hasParent:!!r?.parentBlock,fieldNames:null!==(n=r?.fields?.map?.(({value:e})=>e))&&void 0!==n?n:[],inFormFields:t("jet-forms/fields").isUniqueName(e)}},[e]);if(!n)return{error:"not_unique_in_fields",message:(0,d.__)("The form field name must be unique. Please change it","jet-form-builder")};if(r)return{};const o=t.find(({value:e})=>l.includes(e));return o?{error:"not_unique_in_actions",message:o?.from?(0,d.sprintf)((0,d.__)("The %s action already uses this field name. Please change it","jet-form-builder"),Bt[o.from]):(0,d.__)("The form field name must be unique. Please change it","jet-form-builder")}:{}}(),i=Pt(t,"AdvancedInspectorControl");return he("name")?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Rt,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,e.createElement)("label",{htmlFor:i,className:"jet-fb label"},null!=n?n:It("Form field name","jet-form-builder")),!!a&&(0,e.createElement)(Mt,{text:a,delay:200,placement:"top"},(0,e.createElement)(Ot,{icon:"warning",style:{color:"orange",cursor:"help"}}))),(0,e.createElement)(At,{id:i,value:l.name,help:null!=r?r:It("Should contain only lowercase Latin letters, numbers, “-”, or “_”. No spaces allowed.","jet-form-builder"),onChange:e=>o({name:e})})):null},{__:Gt}=wp.i18n,{TextControl:Dt}=wp.components,qt=function({label:t,help:n}){const[r,l]=fe();return he("desc")?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Dt,{label:null!=t?t:Gt("Field Description","jet-form-builder"),value:r.desc,className:"jet-fb m-unset",onChange:e=>l({desc:e})}),(0,e.createElement)(ht,{name:"desc"},null!=n?n:"")):null},Vt=function({value:t,onChange:n,title:r}){const[a,i]=(0,o.useState)(!1),[s,c]=(0,o.useState)(t);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(u.Button,{icon:"database",variant:"tertiary",isSmall:!0,className:"jet-fb-is-thick",onClick:()=>i(!0)}),a&&(0,e.createElement)(u.Modal,{size:"medium",title:null!=r?r:(0,d.__)("Edit Preset","jet-form-builder"),onRequestClose:()=>i(!1),className:l.ModalFooterStyle},(0,e.createElement)(Ie,{key:"dynamic_key_preset",value:s,onChange:c}),(0,e.createElement)(l.StickyModalActions,null,(0,e.createElement)(u.Button,{isPrimary:!0,onClick:()=>{n(s),i(!1)}},(0,d.__)("Update","jet-form-builder")),(0,e.createElement)(u.Button,{isSecondary:!0,onClick:()=>{i(!1)}},(0,d.__)("Cancel","jet-form-builder")))))},{createContext:Jt}=wp.element,$t=Jt(!1),{useState:Ut,useRef:Ht}=wp.element,{Button:Wt,Popover:zt}=wp.components,Yt=function({children:t,...n}){const[r,l]=Ut(!1),o=Ht();return(0,e.createElement)($t.Provider,{value:{showPopover:r,setShowPopover:l}},(0,e.createElement)(Wt,{ref:o,icon:"admin-tools",variant:"tertiary",isSmall:!0,className:"jet-fb-is-thick",onClick:()=>l(e=>!e),...n}),r&&(0,e.createElement)(zt,{anchor:o.current,position:"top-start",noArrow:!1,variant:"toolbar",onFocusOutside:e=>{e.relatedTarget!==o.current&&l(!1)},onClose:()=>l(!1)},t))},{createContext:Kt}=wp.element,Xt=Kt([]),{createContext:Zt}=wp.element,Qt=Zt({name:""});function en(){}en.prototype={fullName(){},fullHelp(){}};const tn=en,{useState:nn}=wp.element,{Button:rn}=wp.components,ln=function({current:t,children:n}){const[r,l]=nn(!1);if(!(t instanceof tn))return(0,e.createElement)("li",null,(0,e.createElement)(Qt.Provider,{value:t},n));const o=t.fullHelp.bind(t);return(0,e.createElement)("li",null,(0,e.createElement)(Qt.Provider,{value:t},(0,e.createElement)("div",{style:{display:"flex",alignItems:"center",gap:"0.6em"}},(0,e.createElement)(rn,{isSmall:!0,variant:"tertiary",icon:r?"arrow-down":"arrow-right",className:"jet-fb-is-thick",onClick:()=>l(e=>!e)}),n),r&&(0,e.createElement)(o,null)))},{Children:on,cloneElement:an}=wp.element,{PanelBody:sn}=wp.components,cn=function({title:t,items:n,children:r,initialOpen:l}){const o=n.map((t,n)=>(0,e.createElement)(ln,{key:n,current:t}));return(0,e.createElement)(sn,{title:t,initialOpen:l},(0,e.createElement)("ul",{style:{padding:"0 0.5em"}},on.map(o,e=>an(e,{},r))))},{useContext:un}=wp.element,{__:dn}=wp.i18n,mn=function({children:t,fields:n,...r}){var l,o;const a=un(Xt),i=[...null!==(l=a.beforeFields)&&void 0!==l?l:[],...n,...null!==(o=a.afterFields)&&void 0!==o?o:[]];return i.length||a?.extra?.length||a?.filters?.length?(0,e.createElement)(Yt,{...r},Boolean(i.length)&&(0,e.createElement)(cn,{title:dn("Fields:","jet-form-builder"),items:i,initialOpen:!0},t),Boolean(a?.extra?.length)&&(0,e.createElement)(cn,{title:dn("Extra macros:","jet-form-builder"),items:a.extra},t),Boolean(a?.filters?.length)&&(0,e.createElement)(cn,{title:dn("Filters:","jet-form-builder"),items:a.filters},t)):null},{useContext:pn}=wp.element,{Button:fn}=wp.components,hn=function({onClick:t}){const n=pn(Qt),r=n.fullName?n.fullName():`%${n.value}%`,l="function"==typeof n.label?n.label():n.label||r,o=Boolean(n.is_repeater)?`${l} (repeater)`:l,a=Boolean(n.is_repeater_child)?"- ":"";return n.supports_option_label?(0,e.createElement)("div",{className:"jet-fb-macro-field-item",style:{whiteSpace:"nowrap"}},(0,e.createElement)("div",{className:"jet-fb-macro-field-item__label"},o),(0,e.createElement)("div",{className:"jet-fb-macro-field-item__formats"},"- ",(0,e.createElement)(fn,{isLink:!0,onClick:()=>t(r,n)},"Format: value")," ",(0,e.createElement)("br",null),"- ",(0,e.createElement)(fn,{isLink:!0,onClick:()=>t(r,n,"option-label")},"Format: label value"))):(0,e.createElement)(e.Fragment,null,a,(0,e.createElement)(fn,{style:{whiteSpace:"nowrap"},isLink:!0,onClick:()=>t(r,n)},o))},bn=window.jfb.blocksToActions,gn=["jet-forms/checkbox-field","jet-forms/radio-field","jet-forms/select-field"];function yn(e){return gn.includes(e?.name)}function vn(e={}){return e.name||e.field_name||e.fieldName||""}const wn=function({onClick:t=()=>{},withCurrent:n=!1,...r}){const l=(0,bn.useFields)({excludeCurrent:!n}),o=(0,pe.useSelect)(e=>{const t=e("core/block-editor");return function(e=[]){const t={},n=(e,r=null)=>{(e||[]).forEach(e=>{const l=vn(e?.attributes),o="jet-forms/repeater-field"===e?.name;l&&(t[l]={is_repeater:o,is_repeater_child:Boolean(r)&&!o,repeater_name:r?vn(r.attributes):"",supports_option_label:yn(e)});const a=o?e:r;e?.innerBlocks?.length&&n(e.innerBlocks,a)})};return n(e),t}(t?.getBlocks?.()||[])},[]),a=(l||[]).map(e=>{const t=o?.[e?.value];return t?{...e,...t}:e});return(0,e.createElement)(mn,{withCurrent:n,fields:a,...r},(0,e.createElement)(hn,{onClick:t}))},{Flex:_n}=wp.components,En=function({label:t,children:n,...r}){return(0,e.createElement)(_n,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,e.createElement)("label",{className:"jet-fb label",...r},t),n)},{FlexItem:Cn}=wp.components,{useInstanceId:kn}=wp.compose,Sn=function({children:t,value:n,label:r,onChangePreset:l=!1,onChangeMacros:o=!1}){const a=kn(Cn,"jfb-AdvancedInspectorControl");return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(En,{label:r,htmlFor:a},!1!==l&&(0,e.createElement)(Vt,{value:n,onChange:l}),!1!==o&&(0,e.createElement)(wn,{onClick:o})),"function"==typeof t?t({instanceId:a}):t)};function jn(){tn.call(this)}jn.prototype=Object.create(tn.prototype),jn.prototype.isServerSide=!1,jn.prototype.isClientSide=!1,jn.prototype.name="",jn.prototype.namespace="CT",jn.prototype.help=null,jn.prototype.fullHelp=function(){return this.help},jn.prototype.fullName=function(){return`%${this.namespace}::${this.name}%`};const xn=jn,{useSelect:Nn}=wp.data,{__:Fn}=wp.i18n,Tn=new xn;Tn.fullName=()=>"%this%",Tn.fullHelp=()=>Fn("Returns current field value","jet-form-builder");const Bn=function({children:t,withThis:n=!1}){const r=Nn(e=>e("jet-forms/macros").getClientMacros(),[]),l=Nn(e=>e("jet-forms/macros").getClientFilters(),[]),o=n?{extra:r,afterFields:[Tn],filters:l}:{extra:r,filters:l};return(0,e.createElement)(Xt.Provider,{value:o},t)};function In(e,t,n){const r=n.selectionStart,l=n.selectionEnd;(e=null!=e?e:"").length||(t=`'${t}'`);let o=e.slice(0,r);const a=e.slice(l);return o+=t,setTimeout(()=>{n.focus(),n.selectionStart=o.length,n.selectionEnd=o.length}),o+a}const{useRef:An}=wp.element,On=function(e){var t;const[n,r]=fe(),l=null!==(t=n[e])&&void 0!==t?t:"",o=An();return[o,t=>{r({[e]:In(l,t,o.current)})}]},{__:Rn}=wp.i18n,{TextControl:Mn}=wp.components,Pn=function({label:t,help:n,hasMacro:r=!0}){const[l,o]=fe(),[a,i]=On("default");return he("default")?(0,e.createElement)(Te.Provider,{value:{show:!0}},(0,e.createElement)(Bn,null,(0,e.createElement)(Sn,{value:l.default,label:null!=t?t:Rn("Default Value","jet-form-builder"),onChangePreset:e=>o({default:e}),onChangeMacros:!!r&&i},({instanceId:t})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Mn,{ref:a,id:t,value:l.default,className:"jet-fb m-unset",onChange:e=>o({default:e})}),(0,e.createElement)(ht,{name:"default"},null!=n?n:""))))):null},{PanelBody:Ln}=wp.components,{__:Gn}=wp.i18n,{BlockControls:Dn}=wp.blockEditor,{useCopyToClipboard:qn}=wp.compose,{TextControl:Vn,ToolbarGroup:Jn,ToolbarItem:$n,ToolbarButton:Un}=wp.components,Hn=function({children:t=null}){const n=de(),[r,l]=fe(),o=$(`Copied "${r.name}" to clipboard.`),a=qn(r.name,()=>o(!0));return(0,e.createElement)(Dn,{key:n("ToolBarFields-BlockControls")},(0,e.createElement)(Jn,{key:n("ToolBarFields-ToolbarGroup"),className:"jet-fb-block-toolbar"},(0,e.createElement)(Un,{isSmall:!0,icon:"admin-page",showTooltip:!0,shortcut:"Copy name",ref:a}),(0,e.createElement)($n,{as:Vn,value:r.name,onChange:e=>l({name:e})}),t))},{__:Wn}=wp.i18n,{ToolbarButton:zn}=wp.components,{BlockControls:Yn}=wp.blockEditor,{SVG:Kn,Path:Xn}=wp.primitives,Zn=function(){const[t,n]=fe();return he("required")?(0,e.createElement)(Yn,{group:"block"},(0,e.createElement)(zn,{icon:(0,e.createElement)(Kn,{xmlns:"http://www.w3.org/2000/svg",width:"24px",height:"24px",viewBox:"0 0 24 24",fill:"none"},(0,e.createElement)(Xn,{d:"M12 4L12 20",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Xn,{d:"M17.3137 6.00024L6.00001 17.314",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Xn,{d:"M20 12L4 12",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Xn,{d:"M17.3137 17.3137L6.00001 6.00001",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),title:t.required?Wn("Click to make this field optional","jet-form-builder"):Wn("Click to make this field required","jet-form-builder"),onClick:()=>n({required:!t.required}),isActive:t.required})):null},{__:Qn}=wp.i18n,{PanelBody:er}=wp.components,{applyFilters:tr}=wp.hooks,{useBlockProps:nr}=wp.blockEditor,{applyFilters:rr}=wp.hooks,lr=()=>rr("jet.fb.register.fields.controls",{}),or=window.wp.compose,ar=(0,or.compose)((0,pe.withSelect)(X))(function({initialLabel:t="Valid",label:n="InValid",apiArgs:r={},gatewayRequestId:l,loadingGateway:o,onLoading:a=()=>{},onSuccess:i=()=>{},onFail:s=()=>{},isHidden:c=!1}){return(0,e.createElement)(K.FetchApiButton,{id:l,loadingState:o,initialLabel:t,label:n,apiArgs:r,onFail:s,onLoading:a,onSuccess:i,isHidden:c})}),ir="CLEAR_GATEWAY",sr="CLEAR_SCENARIO",cr="SET_CURRENT_GATEWAY_SCENARIO",ur="SET_CURRENT_GATEWAY",dr="SET_CURRENT_GATEWAY_SPECIFIC",mr="SET_CURRENT_GATEWAY_INNER",pr="SET_CURRENT_REQUEST",fr="SET_CURRENT_SCENARIO",hr="REGISTER_EVENT_TYPE",br="HARD_SET_CURRENT_GATEWAY",gr="HARD_SET_CURRENT_GATEWAY_SPECIFIC",yr={getCurrentRequestId:e=>e.currentRequest.id,getCurrentRequest:e=>e.currentRequest,getScenario:e=>e.currentScenario,getScenarioId:e=>e.currentScenario?.id,getGatewayId:e=>e.currentGateway?.gateway,getGateway:e=>e.currentGateway,getEventTypes:e=>e.eventTypes},vr={...yr,getGatewaySpecific:e=>e.currentGateway[yr.getGatewayId(e)]||{}},wr={[ir]:e=>({...e,currentGateway:{}}),[sr]:e=>({...e,currentScenario:{}}),[cr]:(e,t)=>({...e,currentScenario:{...e.currentScenario,...t.item||{}}}),[ur]:(e,t)=>({...e,currentGateway:{...e.currentGateway,...t.item}}),[dr]:(e,t)=>({...e,currentGateway:{...e.currentGateway,[e.currentGateway.gateway]:{...vr.getGatewaySpecific(e),...t.item}}}),[mr]:(e,t)=>{const{key:n,value:r}=t.item;return{...e,currentGateway:{...e.currentGateway,[n]:{...e.currentGateway[n]||{},...r}}}},[pr]:(e,t)=>{const n=[vr.getGatewayId(e),t.item?.id].filter(e=>e);return t.item.id=n.join("/"),{...e,currentRequest:t.item}},[fr]:(e,t)=>({...e,currentScenario:{...e.currentScenario,[e.currentScenario?.id]:{...e.currentScenario[e.currentScenario?.id]||{},...t.item||{}}}}),[br]:(e,t)=>(t.item&&(e.currentGateway[t.item]=t.value),{...e}),[gr]:(e,t)=>(t.item&&e.currentGateway?.gateway&&(e.currentGateway[e.currentGateway?.gateway]={},e.currentGateway[e.currentGateway?.gateway][t.item]=t.value),{...e}),[hr]:(e,t)=>{var n,r;const l={...t.item,gateway:null!==(n=t.item?.gateway)&&void 0!==n?n:e.currentGateway?.gateway,scenario:null!==(r=t.item?.scenario)&&void 0!==r?r:e.currentScenario?.id};return e.eventTypes.push(l),e}};Object.defineProperty(Er,"name",{value:"default",configurable:!0});const _r={currentRequest:{id:-1},currentGateway:{},currentScenario:{},eventTypes:[]};function Er(e=_r,t){const n=wr[t?.type];return n?n(e,t):e}const Cr={clearGateway:()=>({type:ir}),clearScenario:()=>({type:sr}),setRequest:e=>({type:pr,item:e}),setGateway:e=>({type:ur,item:e}),setGatewayInner:e=>({type:mr,item:e}),setGatewaySpecific:e=>({type:dr,item:e}),setScenario:e=>({type:cr,item:e}),setCurrentScenario:e=>({type:fr,item:e}),registerEventType:e=>({type:hr,item:e}),hardSetGateway:(e,t="")=>({type:br,item:e,value:t}),hardSetGatewaySpecific:(e,t="")=>({type:gr,item:e,value:t})},{createReduxStore:kr}=wp.data,Sr=kr("jet-forms/gateways",{reducer:Er,actions:Cr,selectors:vr}),jr="REGISTER",xr="UNREGISTER",Nr="LOCK_ACTIONS",Fr="CLEAR_DYNAMIC_EVENTS",Tr={getTypeIndex:(e,t)=>e.types.findIndex(e=>e.value===t),getTypes:e=>e.types,getGatewayTypes:e=>e.types.filter(e=>"gateway"in e),getAlwaysTypes:e=>e.types.filter(e=>"always"in e),getDynamicTypes:e=>e.types.filter(({isDynamic:e})=>e),getType(e,t){const n=Tr.getTypeIndex(e,t);return e.types[n]},getUnsupported(e,t){var n;const r=null!==(n=e.lockedActions[t])&&void 0!==n&&n;return!1===r?[]:r.unsupported},getSupported(e,t){var n;const r=null!==(n=e.lockedActions[t])&&void 0!==n&&n;return!1===r?[]:r.supported},isValid(e,t,n){const r=Tr.getUnsupported(e,t);if(r.length&&r.includes(n))return!1;const l=Tr.getSupported(e,t);return!l.length||l.includes(n)},filterList:(e,t,n)=>n.filter(n=>Tr.isValid(e,t,n)),getHelpMap(e){const t={};for(const{value:n,help:r}of e.types)t[n]=r;return t},getEventValuesByGateway(e){const t={};for(const n of e.types){if(!n.gateway)continue;const e=n.gateway;t[e]||(t[e]=[]),t[e].push(n.value)}return t}},Br={...Tr},Ir={[jr](e,t){const{types:n}=e;for(const r of t.items){r.title=r.label;const t=Br.getTypeIndex(e,r.value);-1===t?n.push({...r}):n[t]={...r}}return{...e,types:n}},[Nr](e){for(const{id:n,self:r}of window.jetFormActionTypes){var t;const l=null!==(t=window[r])&&void 0!==t&&t;if(!1===l)continue;const{__unsupported_events:o,__supported_events:a}=l,i={unsupported:e.types.filter(({self:e})=>o.includes(e)).map(({value:e})=>e),supported:e.types.filter(({self:e})=>a.includes(e)).map(({value:e})=>e)};(i.supported.length||i.unsupported.length)&&(e.lockedActions[n]=i)}return e},[xr](e,t){const{types:n}=t;return e.types=e.types.filter(({value:e})=>!n.includes(e)),e},[Fr]:e=>(e.types=e.types.filter(({isDynamic:e=!1})=>!e),e)};Object.defineProperty(Or,"name",{value:"default",configurable:!0});const Ar={types:[],labels:{},lockedActions:{}};function Or(e=Ar,t){const n=Ir[t?.type];return n?n(e,t):e}const Rr={register:e=>({type:jr,items:e}),lockActions:()=>({type:Nr}),unRegister:e=>({type:xr,types:e}),clearDynamicEvents:()=>({type:Fr})},{createReduxStore:Mr}=wp.data,Pr=Mr("jet-forms/events",{reducer:Or,actions:Rr,selectors:Br}),Lr="REGISTER",Gr="ADD_RENDER_STATE",Dr="ADD_RENDER_STATES",qr="DELETE_RENDER_STATES",{doAction:Vr}=wp.hooks,Jr={...{[Lr](e,t){const{operators:n,functions:r,render_states:l}=t.items;return e.operators=[...n],e.functions=[...r],e.renderStates=[...l],Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e},[Gr]:(e,t)=>(e.renderStates.push(t.item),Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e),[Dr](e,t){for(const n of t.items)e.renderStates.push(n);return Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e},[qr](e,t){const n=Array.isArray(t.items)?[...t.items]:[t.items];return e.renderStates=e.renderStates.filter(({value:e})=>!n.includes(e)),Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e}}},{__:$r}=wp.i18n,Ur=function(e,t="code"){var n;if(!function(e){let t;try{t=JSON.parse(e)}catch(e){return!1}return!!t?.jet_preset}(e=null!=e?e:""))return e;const r=JSON.parse(e),l=$r("Preset from","jet-form-builder"),o=null!==(n=r?.from)&&void 0!==n?n:"(empty)";let a;switch(t){case"code":a=`${o}`;break;case"b":a=`${o}`}return[l,a].join(" ")};Object.defineProperty(Kr,"name",{value:"default",configurable:!0});const{select:Hr}=wp.data,{__:Wr}=wp.i18n,zr=function(e){const t=Hr("jet-forms/block-conditions").getOperator(e?.operator);return t?[`${e?.field||"(no field)"}`,t.label].join(" "):""},Yr={functions:[],operators:[],conditionReaders:{default(e){const t=Hr("jet-forms/block-conditions").getOperator(e?.operator);if(!t)return"";const n=e?.field||"(no field)",r=Ur(e.value,"b")||"(no value)";return[`${n}`,t.label,`${r}`].join(" ")},empty:zr,not_empty:zr,render_state(e){var t;const n=(null!==(t=e?.render_state)&&void 0!==t?t:[]).map(e=>`${e}`);return[1===n.length?Wr("Is render state","jet-form-builder"):Wr("One of the render states","jet-form-builder"),n.join(", ")].join(": ")}},renderStates:[]};function Kr(e=Yr,t){const n=Jr[t?.type];return n?n(e,t):e}const Xr={register:e=>({type:Lr,items:e}),addRenderState:e=>({type:Gr,item:e}),addRenderStates:e=>({type:Dr,items:e}),deleteRenderStates:e=>({type:qr,items:e})},Zr={getFunctions:e=>e.functions,getOperators:e=>e.operators,getRenderStates:e=>e.renderStates,getSwitchableRenderStates:e=>e.renderStates.filter(({is_custom:e=!1,can_be_switched:t=!1})=>e||t),getCustomRenderStates:e=>e.renderStates.filter(({is_custom:e=!1})=>e),getOperator(e,t){const n=e.operators.findIndex(({value:e})=>e===t);return-1!==n&&e.operators[n]},readCondition(e,t){var n;const{operator:r=""}=t;if(!r)return"";const l=null!==(n=e.conditionReaders[r])&&void 0!==n&&n;return"function"==typeof l?l(t):e.conditionReaders.default(t)},getFunction:(e,t)=>e.functions.find(({value:e})=>e===t),getFunctionDisplay:(e,t)=>Zr.getFunction(e,t)?.display},Qr={...Zr},{createReduxStore:el}=wp.data,tl=el("jet-forms/block-conditions",{reducer:Kr,actions:Xr,selectors:Qr}),nl="REGISTER_MACRO",rl={[nl](e,t){const{items:n,isClient:r}=t,l=Array.isArray(n)?n:[n];for(const e of l)if(!(e instanceof xn))throw new Error("^^^ Invalid macro item ^^^");return r?e.clientMacros.push(...l):e.serverMacros.push(...l),e}},{__:ll}=wp.i18n;function ol(){xn.call(this),this.name="CurrentDate",this.isClientSide=!0,this.fullHelp=()=>(0,e.createElement)(e.Fragment,null,ll("Returns the current timestamp. Replacing","jet-form-builder")," ",(0,e.createElement)("code",null,"Date.now()"))}ol.prototype=Object.create(xn.prototype);const al=ol,{__:il}=wp.i18n;function sl(){xn.call(this),this.name="Min_In_Sec",this.isClientSide=!0,this.help=il("Number of milliseconds in one minute","jet-form-builder")}sl.prototype=Object.create(xn.prototype);const cl=sl,{__:ul}=wp.i18n;function dl(){xn.call(this),this.name="Month_In_Sec",this.isClientSide=!0,this.help=ul("Number of milliseconds in one month","jet-form-builder")}dl.prototype=Object.create(xn.prototype);const ml=dl,{__:pl}=wp.i18n;function fl(){xn.call(this),this.name="Day_In_Sec",this.isClientSide=!0,this.help=pl("Number of milliseconds in one day","jet-form-builder")}fl.prototype=Object.create(xn.prototype);const hl=fl,{__:bl}=wp.i18n;function gl(){xn.call(this),this.name="Year_In_Sec",this.isClientSide=!0,this.help=bl("Number of milliseconds in one year","jet-form-builder")}gl.prototype=Object.create(xn.prototype);const yl=gl,{__:vl}=wp.i18n;function wl(){tn.call(this)}wl.prototype=Object.create(tn.prototype),wl.prototype.docArgument=!1,wl.prototype.help=null,wl.prototype.isServerSide=!1,wl.prototype.isClientSide=!1,wl.prototype.getArgumentsList=function(){if(!this.docArgument||!this.docArgument.length)return null;const e=Array.isArray(this.docArgument)?this.docArgument:[this.docArgument],t=[];for(const n of e)switch(n){case"string":case String:t.push(vl("String","jet-form-builder"));break;case"number":case Number:t.push(vl("Number","jet-form-builder"));break;case"array":case Array:t.push(vl("Array","jet-form-builder"));break;case"any":t.push(vl("Anything","jet-form-builder"))}return t.join(" | ")},wl.prototype.fullHelp=function(){if(!this.docArgument&&!this.help)return null;const t=this.help,n=this.getArgumentsList();return(0,e.createElement)(e.Fragment,null,n&&(0,e.createElement)("div",{style:{marginBottom:"0.5em"}},vl("Arguments:","jet-form-builder")+" ",(0,e.createElement)("code",null,n)),"function"!=typeof t?t:(0,e.createElement)(t,null))};const _l=wl,{__:El}=wp.i18n;function Cl(){_l.call(this),this.label=()=>El("addDay","jet-form-builder"),this.fullName=()=>"|addDay",this.docArgument=Number,this.isClientSide=!0,this.help=El("Adds the passed number of days via an argument to a macro that returns a date or a timestamp.","jet-form-builder")}Cl.prototype=Object.create(_l.prototype);const kl=Cl,{__:Sl}=wp.i18n;function jl(){_l.call(this),this.label=()=>Sl("addMonth","jet-form-builder"),this.fullName=()=>"|addMonth",this.docArgument=Number,this.isClientSide=!0,this.help=Sl("Adds the passed number of months via an argument to a macro that returns a date or a timestamp.","jet-form-builder")}jl.prototype=Object.create(_l.prototype);const xl=jl,{__:Nl}=wp.i18n;function Fl(){_l.call(this),this.label=()=>Nl("addYear","jet-form-builder"),this.fullName=()=>"|addYear",this.docArgument=Number,this.isClientSide=!0,this.help=Nl("Adds the passed number of years through an argument to a macro that returns a date or a timestamp.","jet-form-builder")}Fl.prototype=Object.create(_l.prototype);const Tl=Fl,{__:Bl}=wp.i18n;function Il(){_l.call(this),this.label=()=>Bl("ifEmpty","jet-form-builder"),this.fullName=()=>"|ifEmpty",this.docArgument="any",this.isClientSide=!0,this.help=Bl("If the macro returns an empty value, then the filter returns the value passed in the argument","jet-form-builder")}Il.prototype=Object.create(_l.prototype);const Al=Il,{__:Ol}=wp.i18n;function Rl(){_l.call(this),this.label=()=>Ol("length","jet-form-builder"),this.fullName=()=>"|length",this.isClientSide=!0,this.help=Ol("Returns the length of a string or array","jet-form-builder")}Rl.prototype=Object.create(_l.prototype);const Ml=Rl,{__:Pl}=wp.i18n;function Ll(){_l.call(this),this.label=()=>Pl("toDate","jet-form-builder"),this.fullName=()=>"|toDate",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Pl("Formats the timestamp according to the Date Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Pl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"2022-02-24"),(0,e.createElement)("hr",null),Pl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Pl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Pl(").","jet-form-builder"),(0,e.createElement)("hr",null),Pl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toDate(false)"))}Ll.prototype=Object.create(_l.prototype);const Gl=Ll,{__:Dl}=wp.i18n;function ql(){_l.call(this),this.label=()=>Dl("toDateTime","jet-form-builder"),this.fullName=()=>"|toDateTime",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Dl("Formats the timestamp according to the Datetime Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Dl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"2022-02-24T04:25"),(0,e.createElement)("hr",null),Dl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Dl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Dl(").","jet-form-builder"),(0,e.createElement)("hr",null),Dl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toDateTime(false)"))}ql.prototype=Object.create(_l.prototype);const Vl=ql,{__:Jl}=wp.i18n;function $l(){_l.call(this),this.label=()=>Jl("toTime","jet-form-builder"),this.fullName=()=>"|toTime",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Jl("Formats the timestamp according to the Time Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Jl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"04:25"),(0,e.createElement)("hr",null),Jl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Jl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Jl(").","jet-form-builder"),(0,e.createElement)("hr",null),Jl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toTime(false)"))}$l.prototype=Object.create(_l.prototype);const Ul=$l,{__:Hl}=wp.i18n;function Wl(){_l.call(this),this.label=()=>Hl("subDay","jet-form-builder"),this.fullName=()=>"|subDay",this.docArgument=Number,this.isClientSide=!0,this.help=Hl("Subtracts the number of days by argument from a macro that returns a date or timestamp.","jet-form-builder")}Wl.prototype=Object.create(_l.prototype);const zl=Wl,{__:Yl}=wp.i18n;function Kl(){_l.call(this),this.label=()=>Yl("subMonth","jet-form-builder"),this.fullName=()=>"|subMonth",this.docArgument=Number,this.isClientSide=!0,this.help=Yl("Subtracts the number of months by argument from a macro that returns a date or timestamp.","jet-form-builder")}Kl.prototype=Object.create(_l.prototype);const Xl=Kl,{__:Zl}=wp.i18n;function Ql(){_l.call(this),this.label=()=>Zl("subYear","jet-form-builder"),this.fullName=()=>"|subYear",this.docArgument=Number,this.isClientSide=!0,this.help=Zl("Subtracts the number of years by argument from a macro that returns a date or timestamp.","jet-form-builder")}Ql.prototype=Object.create(_l.prototype);const eo=Ql,{__:to}=wp.i18n;function no(){_l.call(this),this.label=()=>to("toDayInMs","jet-form-builder"),this.fullName=()=>"|toDayInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,to("Converts a number of days into milliseconds.","jet-form-builder"))}no.prototype=Object.create(_l.prototype);const ro=no,{__:lo}=wp.i18n;function oo(){_l.call(this),this.label=()=>lo("toHourInMs","jet-form-builder"),this.fullName=()=>"|toHourInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,lo("Converts a number of hours into milliseconds.","jet-form-builder"))}oo.prototype=Object.create(_l.prototype);const ao=oo,{__:io}=wp.i18n;function so(){_l.call(this),this.label=()=>io("toMinuteInMs","jet-form-builder"),this.fullName=()=>"|toMinuteInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,io("Converts a number of minutes into milliseconds.","jet-form-builder"))}so.prototype=Object.create(_l.prototype);const co=so,{__:uo}=wp.i18n;function mo(){_l.call(this),this.label=()=>uo("toMonthInMs","jet-form-builder"),this.fullName=()=>"|toMonthInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,uo("Converts a number of months into milliseconds.","jet-form-builder"))}mo.prototype=Object.create(_l.prototype);const po=mo,{__:fo}=wp.i18n;function ho(){_l.call(this),this.label=()=>fo("toWeekInMs","jet-form-builder"),this.fullName=()=>"|toWeekInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,fo("Converts a number of weeks into milliseconds.","jet-form-builder"))}ho.prototype=Object.create(_l.prototype);const bo=ho,{__:go}=wp.i18n;function yo(){_l.call(this),this.label=()=>go("toYearInMs","jet-form-builder"),this.fullName=()=>"|toYearInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,go("Converts a number of years into milliseconds.","jet-form-builder"))}yo.prototype=Object.create(_l.prototype);const vo=yo,{__:wo}=wp.i18n;function _o(){_l.call(this),this.label=()=>wo("Timestamp","jet-form-builder"),this.fullName=()=>"|T",this.isClientSide=!0,this.help=wo("Returns the time stamp. Usually used in conjunction with Date & Datetime and Time Field.","jet-form-builder",'Example\nFor Date Field\n%date_field|T%\nResult if date_field is filled with value "2022-10-22"')}_o.prototype=Object.create(_l.prototype);const Eo=_o;Object.defineProperty(ko,"name",{value:"default",configurable:!0});const Co={macros:[new al,new cl,new hl,new ml,new yl],filters:[new Al,new Eo,new Ml,new kl,new xl,new Tl,new zl,new Xl,new eo,new Gl,new Vl,new Ul,new co,new ao,new ro,new bo,new po,new vo]};function ko(e=Co,t){const n=rl[t?.type];return n?n(e,t):e}const So={registerMacro:(e,t=!0)=>({type:nl,items:e,isClient:t})},jo={getClientMacros:e=>e.macros.filter(function(e){return e.isClientSide}),getServerMacros:e=>e.macros.filter(function(e){return e.isServerSide}),getClientFilters:e=>e.filters.filter(function(e){return e.isClientSide}),getServerFilters:e=>e.filters.filter(function(e){return e.isServerSide})},{createReduxStore:xo}=wp.data,No=xo("jet-forms/macros",{reducer:ko,actions:So,selectors:jo}),Fo="REGISTER",To={[Fo](e,t){const{messages:n,ssr_callbacks:r,formats:l,rule_types:o}=t.items;return e.messages=JSON.parse(JSON.stringify(n)),e.ssrCallbacks=JSON.parse(JSON.stringify(r)),e.formats=JSON.parse(JSON.stringify(l)),e.ruleTypes=JSON.parse(JSON.stringify(o)),e}},Bo={...To};Object.defineProperty(Ro,"name",{value:"default",configurable:!0});const{select:Io}=wp.data,{__:Ao}=wp.i18n,Oo={messages:[],ssrCallbacks:[],formats:[],ruleTypes:[],ruleReaders:{default(e){const t=Io("jet-forms/validation").getRule(e.type);if(!t)return"";let n=e?.field||e?.value||"";return n=Ur(n,"b")||"(no value)",[t.label,`${n}`].join(" ")},ssr:e=>[Ao("Function:","jet-form-builder"),e?.value].join(" ")}};function Ro(e=Oo,t){const n=Bo[t?.type];return n?n(e,t):e}const Mo={register:e=>({type:Fo,items:e})},Po={...{getRule(e,t){const n=e.ruleTypes.findIndex(({value:e})=>e===t);return-1!==n&&e.ruleTypes[n]},readRule(e,t){var n;const{type:r=""}=t;if(!r)return"";const l=null!==(n=e.ruleReaders[r])&&void 0!==n&&n;return"function"==typeof l?l(t):e.ruleReaders.default(t)}}},{createReduxStore:Lo}=wp.data,Go=Lo("jet-forms/validation",{reducer:Ro,actions:Mo,selectors:Po}),Do="SET_BLOCKS",qo="SET_BLOCKS_FIRST",Vo="TOGGLE_EXECUTE",Jo={...{[Do](e,t){const n=[];for(const r in t.blockMap)t.blockMap.hasOwnProperty(r)&&!e.blockMap.hasOwnProperty(r)&&n.push(r);return{...e,blocks:t.blocks,blockMap:t.blockMap,recentlyAdded:n}},[qo]:(e,t)=>({...e,blocks:t.blocks,blockMap:t.blockMap}),[Vo]:e=>({...e,executed:!0})}};Object.defineProperty(Uo,"name",{value:"default",configurable:!0});const $o={blocks:[],blockMap:{},executed:!1,recentlyAdded:[],sanitizers:{name:[e=>e.replace(/[^\w\-]/gi,""),e=>"children"===e?"_"+e:e]}};function Uo(e=$o,t){const n=Jo[t?.type];return n?n(e,t):e}const{select:Ho}=wp.data,Wo=function(){const e=[],t={};return j((n,r)=>{var l;if(!n?.name?.includes("jet-forms/"))return;const o=Ho("core/blocks").getBlockType(n.name),a=o.jfbResolveBlock.call(n);if(o.hasOwnProperty("jfbGetFields")&&(a.fields=o.jfbGetFields.call(n)),!r?.name)return e.push(a),void(t[a.clientId]=a);const i=null!==(l=t[r?.clientId])&&void 0!==l&&l;i&&(Object.defineProperty(a,"parentBlock",{get:()=>i}),i.innerBlocks=i?.innerBlocks||[],i.innerBlocks.push(a),t[a.clientId]=a)}),{blocks:e,blockMap:t}},{select:zo,dispatch:Yo}=wp.data,Ko={setBlocks(e=null){null===e&&(e=Wo());const t=zo(ra).isExecuted();return t||Yo(ra).toggleExecute(),{type:t?Do:qo,blocks:e.blocks,blockMap:e.blockMap}},toggleExecute:()=>({type:Vo})},Xo={getBlocks:e=>e.blocks,getBlockMap:e=>e.blockMap,getFields(e,{withInner:t=!0,currentId:n=!1}){const r=[],l=e=>{for(const o of e)o.fields?.length&&o.clientId!==n&&r.push(...o.fields),t&&o.innerBlocks?.length&&l(o.innerBlocks)};return l(e.blocks),r},isExecuted:e=>e.executed,isRecentlyAdded:(e,t)=>-1!==e.recentlyAdded.indexOf(t),getUniqueNames(e,t){var n,r;const l=null!==(n=e.blockMap[t])&&void 0!==n&&n;if(!l)return{hasChanged:!1};let o=!1;const a=null!==(r=l?.fields?.map?.(({value:e})=>e))&&void 0!==r?r:[],i=l.hasOwnProperty("parentBlock")?l.parentBlock.innerBlocks:e.blocks,s=e=>{for(const t of e){const n=a.indexOf(t.value);-1!==n&&("field_name"!==t.value?(a[n]=`${a[n]}_copy`,o=!0,s(e)):o=!0)}};for(const e of i){var c;t!==e.clientId&&s(null!==(c=e?.fields)&&void 0!==c?c:[])}return{hasChanged:o,names:a.join("|")}},getSanitizedAttributes(e,t,{name:n}={}){for(const o in t){var r,l;if(!t.hasOwnProperty(o))continue;const a=null!==(r=null!==(l=e.sanitizers?.[n]?.[o])&&void 0!==l?l:e.sanitizers?.[o])&&void 0!==r&&r;if(a?.length)for(const e of a)"function"==typeof e&&(t[o]=e(t[o]))}return t},isUniqueName(e,t){const{hasChanged:n}=Xo.getUniqueNames(e,t);return!n},getBlock:(e,t)=>e.blocks.find(({name:e,clientId:n})=>[e,n].includes(t)),getBlockByName(e,t){if(!t)return!1;const n=e=>{for(const r of e){if(r.fields.some(({value:e})=>e===t))return r;r.innerBlocks?.length&&n(r.innerBlocks)}};return n(e.blocks),!1},getBlockNameByName(e,t){var n;const r=Xo.getBlockByName(e,t);return null!==(n=r?.name)&&void 0!==n?n:""},getBlockById(e,t){var n;return null!==(n=e.blockMap[t])&&void 0!==n&&n}},Zo={...Xo},{createReduxStore:Qo,dispatch:ea,select:ta,subscribe:na}=wp.data,ra="jet-forms/fields";let la,oa;na(()=>{const{debounce:e}=window._,{setBlocks:t}=ea(ra);e(()=>{const e=ta("core/block-editor").getGlobalBlockCount();if(la!==e)return la=e,void t();const n=Wo(),r=JSON.stringify(n.blocks);r!==oa&&(oa=r,t(n))},100)()});const aa=Qo(ra,{reducer:Uo,actions:Ko,selectors:Zo});n(4180);const{register:ia,dispatch:sa}=wp.data,{addAction:ca}=wp.hooks;[Sr,Pr,tl,No,Go,aa].forEach(ia),sa("jet-forms/events").register(window.jetFormEvents.types),sa("jet-forms/events").lockActions(),sa("jet-forms/validation").register(window.jetFormValidation),ca("jet.fb.change.blockConditions.renderState","jet-form-builder/events",function(e){sa("jet-forms/events").clearDynamicEvents();const t=e.map(({value:e})=>({value:e="ON."+e,label:e,isDynamic:!0}));sa("jet-forms/events").register(t)}),sa("jet-forms/block-conditions").register(window.jetFormBlockConditions);const{createContext:ua}=wp.element,da=ua(!1),{createContext:ma}=wp.element,pa=ma({currentItem:{},changeCurrentItem:()=>{},currentIndex:-1}),fa=(0,o.createContext)({isSupported:e=>!1,render:({children:e})=>e}),ha=(0,o.createContext)({isSupported:e=>!1,render:({currentItem:e,index:t})=>null}),ba=(0,o.createContext)({edit:e=>!0,move:e=>!0,clone:e=>!0,delete:e=>!0}),{createContext:ga}=wp.element,ya=ga({}),{ToggleControl:va}=wp.components,{__:wa}=wp.i18n,{useState:_a}=wp.element,{useContext:Ea}=wp.element,Ca=function(e){if(void 0===e)return null;const t=Ea(da),n=function({oldIndex:t,newIndex:n}){e(e=>{const r=JSON.parse(JSON.stringify(e));return[r[n],r[t]]=[r[t],r[n]],r})};return{changeCurrentItem:function(t,n){e(e=>{const r=JSON.parse(JSON.stringify(e));return r[n]={...e[n],...t},r})},toggleVisible:function(t){e(e=>{const n=JSON.parse(JSON.stringify(e));return n[t].__visible=!n[t].__visible,n})},moveDown:function(e){n({oldIndex:e,newIndex:e+1})},moveUp:function(e){n({oldIndex:e,newIndex:e-1})},cloneItem:function(t){e(e=>{const n=JSON.parse(JSON.stringify(e)),[r,l]=[n.slice(0,t+1),n.slice(t+1)];return[...r,n[t],...l]})},addNewItem:function(t){e(e=>[...e,{__visible:!0,...t}])},removeOption:function(n){t&&!(e=>confirm((0,d.sprintf)((0,d.__)("Are you sure you want to remove item %d?","jet-form-builder"),e+1)))(n)||e(e=>{const t=JSON.parse(JSON.stringify(e));return t.splice(n,1),t})}}},{createContext:ka}=wp.element,Sa=ka(!1),{Button:ja}=wp.components,{useContext:xa}=wp.element,Na=function(t){var n;const{item:r,onSetState:l,functions:o,children:a}=t,{addNewItem:i}=null!==(n=null!=o?o:Ca(l))&&void 0!==n?n:xa(Sa);return(0,e.createElement)(ja,{icon:"plus-alt2",isSecondary:!0,onClick:()=>i(r)},a)};let{Card:Fa,Button:Ta,CardHeader:Ba,CardBody:Ia,ToggleGroupControl:Aa,__experimentalToggleGroupControl:Oa}=wp.components;const{useContext:Ra}=wp.element,{__:Ma}=wp.i18n;Aa=Aa||Oa;const Pa=function(t){var n;const{items:r,onSetState:l,functions:o,children:a}=t,{cloneItem:i,moveUp:s,moveDown:c,toggleVisible:u,changeCurrentItem:d,removeOption:m}=null!==(n=null!=o?o:Ca(l))&&void 0!==n?n:Ra(Sa),{isSupported:p,render:f}=Ra(ha),{edit:h,move:b,clone:g,delete:y}=Ra(ba),v=({currentItem:t,index:n})=>p(t)?(0,e.createElement)(f,{currentItem:t,index:n}):(0,e.createElement)("span",{className:"repeater-item-title"},`#${n+1}`);return(0,e.createElement)("div",{className:"jet-form-builder__repeater-component",key:"jet-form-builder-repeater"},r.map((t,n)=>(0,e.createElement)(Fa,{size:"small",elevation:2,className:"jet-form-builder__repeater-component-item",key:`jet-form-builder__repeater-component-item-${n}`},(0,e.createElement)(Ba,{className:"repeater__item__header"},(0,e.createElement)("div",{className:"repeater-item__left-heading"},(0,e.createElement)(Aa,{className:"repeater-action-buttons jet-fb-toggle-group-control",hideLabelFromVision:!0},(!h||h(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,icon:t.__visible?"no-alt":"edit",onClick:()=>u(n),className:"repeater-action-button jet-fb-is-thick"}),(!b||b(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,isSecondary:!0,disabled:!Boolean(n),icon:"arrow-up-alt2",onClick:()=>s(n),className:"repeater-action-button jet-fb-is-thick"}),(!b||b(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,isSecondary:!0,disabled:!(nc(n),className:"repeater-action-button jet-fb-is-thick"})),(0,e.createElement)(v,{currentItem:t,index:n})),(0,e.createElement)(Aa,{className:"jet-fb-toggle-group-control",hideLabelFromVision:!0},(!g||g(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,isSecondary:!0,onClick:()=>i(n),className:"jet-fb-is-thick",icon:"admin-page"}),(!y||y(t))&&(0,e.createElement)(Yt,{icon:"trash",isDestructive:!0},(0,e.createElement)($t.Consumer,null,({setShowPopover:t})=>(0,e.createElement)("div",{style:{padding:"0.5em",width:"max-content"}},(0,e.createElement)("span",null,Ma("Delete this item?","jet-form-builder"))," ",(0,e.createElement)(Ta,{isLink:!0,isDestructive:!0,onClick:()=>m(n)},Ma("Yes","jet-form-builder"))," / ",(0,e.createElement)(Ta,{isLink:!0,onClick:()=>t(!1)},Ma("No","jet-form-builder"))))))),t.__visible&&(0,e.createElement)(Ia,{className:"repeater-item__content",key:`jet-form-builder__card-body-${n}`},(()=>{const r={currentItem:t,changeCurrentItem:e=>d(e,n),currentIndex:n};return(0,e.createElement)(pa.Provider,{value:r},!a&&"Set up your Repeater Template, please.","function"==typeof a?a(r):a)})()))))},{__experimentalToggleGroupControl:La,__experimentalToggleGroupControlOption:Ga}=wp.components,{__:Da}=wp.i18n;let{formats:qa}=window.jetFormValidation;const Va=window.jfb.data,{messages:Ja}=window.jetFormValidation,$a=function(e){return Ja.find(({id:t})=>e===t)},{TextControl:Ua}=wp.components,Ha=Se((0,o.forwardRef)(function({icon:e,size:t=24,...n},r){return(0,o.cloneElement)(e,{width:t,height:t,...n,ref:r})}))({name:"StyledIcon",class:"sfqmk5y",propsAsIs:!0});n(483);const{createContext:Wa}=wp.element,za=Wa({FieldSelect:null,property:""}),Ya=function({state:t,children:n}){const r=Ca(t);return(0,e.createElement)(Sa.Provider,{value:r},n)},Ka=window.wp.apiFetch;var Xa=n.n(Ka);const{rest_add_state:Za,rest_delete_state:Qa}=window.jetFormBlockConditions,{Fill:ei}=c,ti=({setShowModal:t,changeCurrentItem:n,currentItem:r})=>{var l;const[a,i]=(0,o.useState)(!1),[s,c]=(0,o.useState)({}),[m,p]=(0,o.useState)("");let f=[...null!==(l=r.render_state)&&void 0!==l?l:[]];const{addRenderState:b,deleteRenderStates:g}=(0,pe.useDispatch)("jet-forms/block-conditions"),y=(0,pe.useSelect)(e=>e("jet-forms/block-conditions").getCustomRenderStates(),[a,s]);return(0,e.createElement)(h,{title:(0,d.__)("Register custom render state","jet-form-builder"),onRequestClose:()=>t(!1),classNames:["width-45"]},(0,e.createElement)("div",{className:"jet-fb with-button"},(0,e.createElement)(u.TextControl,{value:m,onChange:e=>p(e),placeholder:(0,d.__)("Set your custom state name","jet-form-builder")}),(0,e.createElement)(u.Button,{variant:"secondary",onClick:()=>{i(!0),Za.data={value:m},Xa()(Za).then(e=>{var r;r=e.state,b(r),f.push(r.value),n({render_state:f}),i(!1),t(!1)}).catch(e=>{console.error(e),i(!1)})},disabled:a,isBusy:a,style:{padding:"7px 12px",height:"unset"}},(0,d.__)("Add","jet-form-builder"))),Boolean(y?.length)&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",{className:"jet-fb flex mb-05-em"},(0,d.__)("Manage your custom states:","jet-form-builder")),(0,e.createElement)("div",{className:"jet-fb-buttons-flex"},y.map(t=>{var r;return(0,e.createElement)(u.Button,{key:t.value,icon:"no-alt",iconPosition:"right",onClick:()=>{return e=t.value,Qa.data={list:[e]},c(t=>({...t,[e]:!0})),void Xa()(Qa).then(()=>{(e=>{g(e),f=f.filter(t=>t!==e),n({render_state:f})})(e)}).catch(console.error).finally(()=>{c(t=>({...t,[e]:!1}))});var e},isBusy:null!==(r=s[t.value])&&void 0!==r&&r},t.label)}))),(0,e.createElement)(ei,null,(0,e.createElement)("span",null)))},{Button:ni,BaseControl:ri,FormTokenField:li}=wp.components,{__:oi}=wp.i18n,{useState:ai}=wp.element,{useSelect:ii}=wp.data,si=({currentItem:t,changeCurrentItem:n})=>{const[r,l]=ai(!1),o=ii(e=>y(e("jet-forms/block-conditions").getRenderStates(),"value"),[r]);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ri,{label:oi("Render State","jet-form-builder"),className:"control-flex"},(0,e.createElement)("div",null,(0,e.createElement)("label",{className:"jet-fb label mb-05-em"},oi("Add render state","jet-form-builder")),(0,e.createElement)("div",{className:"jet-fb with-button clear-label"},(0,e.createElement)(li,{value:t.render_state,suggestions:o,onChange:e=>n({render_state:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0}),(0,e.createElement)(ni,{label:oi("New render state","jet-form-builder"),variant:"secondary",icon:"plus-alt2",onClick:()=>l(!0)})))),r&&(0,e.createElement)(ti,{setShowModal:l,changeCurrentItem:n,currentItem:t}))},ci=function({children:t,value:n,label:r,onChangePreset:l=!1,onChangeMacros:o=!1,macroWithCurrent:a=!1}){const i=(0,or.useInstanceId)(u.FlexItem,"jfb-AdvancedModalControl");return(0,e.createElement)("div",{className:"components-base-control"},(0,e.createElement)(u.Flex,{align:"flex-start",className:"components-base-control__field"},(0,e.createElement)(u.FlexItem,{isBlock:!0},(0,e.createElement)(u.Flex,{align:"center",justify:"flex-start"},(0,e.createElement)("label",{htmlFor:i,className:"jet-fb label"},r),!1!==l&&(0,e.createElement)(Vt,{value:n,onChange:l}),!1!==o&&(0,e.createElement)(wn,{onClick:o,withCurrent:a}))),(0,e.createElement)(u.FlexItem,{isBlock:!0,style:{flex:3,marginLeft:"unset"}},"function"==typeof t?t({instanceId:i}):t)))},{TextareaControl:ui,withFilters:di}=wp.components,{__:mi}=wp.i18n,pi=di("jet.fb.block.conditions.options")(t=>{const{currentItem:n,changeCurrentItem:r}=t,l=de();return["empty","not_empty"].includes(n.operator)?null:"render_state"===n.operator?(0,e.createElement)(si,{key:l("RenderStateOptions"),changeCurrentItem:r,currentItem:n}):(0,e.createElement)(Bn,null,(0,e.createElement)(ci,{value:n.value,label:mi("Value to compare","jet-form-builder"),onChangePreset:e=>r({value:e}),onChangeMacros:e=>{var t;return r({value:(null!==(t=n.value)&&void 0!==t?t:"")+e})}},({instanceId:t})=>(0,e.createElement)(ui,{id:t,value:n.value,onChange:e=>r({value:e})})))}),{SelectControl:fi,withFilters:hi}=wp.components,{__:bi}=wp.i18n,gi=hi("jet.fb.block.conditions.options")(t=>{const{currentItem:n,changeCurrentItem:r}=t,l=(0,bn.useFields)({placeholder:"--"});return"render_state"===n.operator?null:(0,e.createElement)(fi,{label:bi("Field","jet-form-builder"),labelPosition:"side",value:n.field,options:l,onChange:e=>{r({field:e})}})}),{useContext:yi}=wp.element,{SelectControl:vi}=wp.components,{__:wi}=wp.i18n,_i=function(){const{currentItem:t,changeCurrentItem:n}=yi(pa),r=de(),{operators:l}=ce();return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(gi,{currentItem:t,changeCurrentItem:n}),(0,e.createElement)(vi,{key:r("SelectControl-operator"),label:wi("Operator","jet-form-builder"),labelPosition:"side",value:t.operator,options:l,onChange:e=>n({operator:e})}),(0,e.createElement)(pi,{currentItem:t,changeCurrentItem:n}))},{select:Ei}=wp.data,Ci=function(e){return Ei("jet-forms/block-conditions").readCondition(e)},{__:ki}=wp.i18n,Si=function({children:t}){return(0,e.createElement)(ha.Provider,{value:{isSupported:()=>!0,render:({currentItem:t})=>(0,e.createElement)("span",{className:"repeater-item-title",dangerouslySetInnerHTML:{__html:t?.or_operator?ki("OR","jet-form-builder"):Ci(t)}})}},(0,e.createElement)(ba.Provider,{value:{edit:e=>!e.or_operator}},t))},{__:ji}=wp.i18n,{useState:xi,useContext:Ni,Fragment:Fi,useEffect:Ti,useRef:Bi}=wp.element,{SelectControl:Ii,TextareaControl:Ai,FlexItem:Oi,Flex:Ri,ToggleControl:Mi}=wp.components,Pi=[{key:"commas",render:()=>(0,e.createElement)("li",null,ji("If this field supports multiple values, you can separate them with commas. If a string value is expected, wrap it in single quotes like '%value_field%'.","jet-form-builder"))}],Li=[{value:"on_change",label:ji("On change conditions result","jet-form-builder"),help:ji("The value will be applied if condition check-ups return a result different from the first check-up's cached value","jet-form-builder")},{value:"once",label:ji("Once","jet-form-builder"),help:ji("The value will be applied only the first time the condition is matched","jet-form-builder")},{value:"always",label:ji("Always","jet-form-builder"),help:ji("The value will be applied every time the condition is matched","jet-form-builder")}],Gi=e=>Li.find(t=>t.value===(null!=e?e:"on_change")).help,Di=function(){var t,n,r,l;const{current:o,update:a}=Ni(ya),[i,s]=xi(()=>o),c=Bi(null),[u,d]=xi(()=>Gi(i.frequency));Ti(()=>{d(Gi(i.frequency))},[i.frequency]);const m=e=>{s(t=>({...t,...e}))};return W(()=>a(i)),(0,e.createElement)(Fi,null,(0,e.createElement)(Ri,{align:"flex-start"},(0,e.createElement)(Oi,{isBlock:!0},(0,e.createElement)(Ri,{align:"center",justify:"flex-start"},(0,e.createElement)("span",{className:"jet-fb label"},ji("Value to set","jet-form-builder")),(0,e.createElement)(Vt,{value:i.to_set,onChange:e=>m({to_set:e})}),(0,e.createElement)(Bn,{withThis:!0},(0,e.createElement)(wn,{onClick:e=>(e=>{const t=c.current;if(t){const n=t.selectionStart,r=t.selectionEnd,l=i.to_set||"",o=l.slice(0,n)+e+l.slice(r);m({to_set:`${o}`}),setTimeout(()=>{t.focus(),t.selectionStart=t.selectionEnd=n+e.length},0)}})(e)}))),(0,e.createElement)(dt,null,(0,e.createElement)("ul",null,Pi.map(t=>(0,e.createElement)(Fi,{key:t.key},t.render()))))),(0,e.createElement)(Oi,{isBlock:!0,style:{flex:3,marginLeft:"unset"}},(0,e.createElement)(Ai,{className:"jet-control-clear",hideLabelFromVision:!0,value:null!==(t=i.to_set)&&void 0!==t?t:"",onChange:e=>m({to_set:e}),ref:c}))),(0,e.createElement)(Ii,{options:Li,value:null!==(n=i.frequency)&&void 0!==n?n:"on_change",label:ji("Apply type","jet-form-builder"),labelPosition:"side",onChange:e=>m({frequency:e}),help:u}),(0,e.createElement)(Ya,{state:e=>{var t;m({conditions:"function"==typeof e?e(null!==(t=i.conditions)&&void 0!==t?t:[]):e})}},(0,e.createElement)(Si,null,(0,e.createElement)(Pa,{items:null!==(r=i.conditions)&&void 0!==r?r:[]},(0,e.createElement)(_i,null))),(0,e.createElement)("div",{className:"jet-fb flex jc-space-between ai-center"},(0,e.createElement)(Na,null,ji("Add New Condition","jet-form-builder")),(0,e.createElement)(Mi,{className:"jet-fb m-unset clear-control",label:ji("Set value only if field is empty","jet-form-builder"),checked:null!==(l=i.set_on_empty)&&void 0!==l&&l,onChange:e=>m({set_on_empty:e})}))))},{__:qi}=wp.i18n,{Children:Vi,cloneElement:Ji}=wp.element,$i=function({conditions:t,showWarning:n=!1}){let r=[],l="";return Boolean(t?.length)&&(l=Ci(t[0]),r=t.filter((e,t)=>0!==t).map((t,n)=>(0,e.createElement)("span",{key:n,"data-title":qi("And","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:Ci(t)}}))),l?(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":qi("If","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:l}}),Vi.map(r,Ji)):n&&(0,e.createElement)("span",{"data-title":qi("The condition is not fully configured.","jet-form-builder")})},Ui=function({isHover:t=!1,children:n}){return(0,e.createElement)("div",{className:["jet-fb",t?"show":"hide","p-absolute","wh-100","flex-center","gap-05em"].join(" "),style:{backgroundColor:"#ffffffcc",transition:"0.3s"}},n)},Hi=function({children:t}){return(0,e.createElement)("div",{className:["jet-fb","flex","flex-dir-column","container","gap-1em"].join(" ")},t)},{__:Wi}=wp.i18n,{useState:zi}=wp.element,{Button:Yi}=wp.components,Ki=function({current:t,update:n,isOpenModal:r,setOpenModal:l}){const[o,a]=zi(!1),[i,s]=zi(!1),c=1>=Object.keys(t)?.length;return(0,e.createElement)(ya.Provider,{value:{update:e=>{n(n=>{const r=JSON.parse(JSON.stringify(n.groups));for(const n in r)r.hasOwnProperty(n)&&t.id===r[n].id&&(r[n]={...r[n],...e});return{groups:r}})},current:t}},(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>s(!0),onFocus:()=>s(!0),onMouseOut:()=>s(!1),onBlur:()=>s(!1)},(0,e.createElement)(Ui,{isHover:i},(0,e.createElement)(Yi,{isSmall:!0,isSecondary:!0,icon:o?"no-alt":"edit",onClick:()=>a(e=>!e)},Wi("Edit","jet-form-builder")),(0,e.createElement)(Yi,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{n(e=>({groups:JSON.parse(JSON.stringify(e.groups)).filter(({id:e})=>e!==t.id)}))}},Wi("Delete","jet-form-builder"))),(0,e.createElement)(Hi,null,c?(0,e.createElement)("div",{"data-title":Wi("This value item is empty","jet-form-builder")}):(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Wi("Set","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:Ur(t.to_set)}}),(0,e.createElement)($i,{conditions:t?.conditions})))),(o||r===t.id)&&(0,e.createElement)(h,{classNames:["width-60"],onRequestClose:()=>{a(!1),l(!1)},title:Wi("Edit Dynamic Value","jet-form-builder")},(0,e.createElement)(Di,null)))},Xi=function({children:t,...n}){return(0,e.createElement)("div",{className:"jet-fb flex flex-dir-column gap-default",style:{marginBottom:"1em"},...n},t)},{__:Zi}=wp.i18n,{useState:Qi}=wp.element,{Button:es}=wp.components,ts=function(){var t,n;const[r,l]=fe(),o=de(),a=null!==(t=r.value)&&void 0!==t?t:{},i=null!==(n=a.groups)&&void 0!==n?n:[],[s,c]=Qi(!1);if(!he("value"))return null;const u=i.filter((e,t)=>0!==t),d=e=>{l({...r,value:{...a,..."function"==typeof e?e(a):e}})};return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(dt,null,Zi("Or use a condition-dependent value","jet-form-builder")+" ",(0,e.createElement)(es,{isLink:!0,onClick:()=>{},label:Zi("Former Set Value functionality, moved from the Conditional Block","jet-form-builder"),showTooltip:!0},"(?)")),Boolean(i.length)?(0,e.createElement)(Xi,null,(0,e.createElement)(Ki,{key:o(i[0].id),current:i[0],update:d,isOpenModal:s,setOpenModal:c}),Boolean(u.length)&&u.map(t=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",null,Zi("OR","jet-form-builder")),(0,e.createElement)(Ki,{key:o(t.id),current:t,update:d,isOpenModal:s,setOpenModal:c})))):null,(0,e.createElement)(es,{icon:"plus-alt2",isSecondary:!0,onClick:()=>{const e=k.getRandomID();d({groups:[...i,{id:e,conditions:[{__visible:!0}]}]}),c(e)}},Zi("Add Dynamic Value","jet-form-builder")))},{Button:ns}=wp.components,{useContext:rs}=wp.element,{SelectControl:ls}=wp.components,{useContext:os,useMemo:as}=wp.element,{__:is}=wp.i18n,ss=function(){const{currentItem:t,changeCurrentItem:n}=os(pa),r=as(()=>O(is("Custom value","jet-form-builder")),[]);return(0,e.createElement)(ls,{labelPosition:"side",options:r,label:is("Choose field","jet-form-builder"),value:t.field,onChange:e=>n({field:e})})},{SelectControl:cs,TextareaControl:us,TextControl:ds,withFilters:ms}=wp.components,{useContext:ps,useState:fs,useEffect:hs}=wp.element,{__:bs}=wp.i18n,{addFilter:gs}=wp.hooks,{rule_types:ys,ssr_callbacks:vs}=window.jetFormValidation,ws=vs.map(({value:e})=>e);function _s(e){var t;const n=ys.findIndex(({value:t})=>t===e),r=bs("Enter value","jet-form-builder");return-1===n?r:null!==(t=ys[n]?.control_label)&&void 0!==t?t:r}gs("jet.fb.advanced.rule.controls","jet-form-builder",t=>n=>{const{currentItem:r,changeCurrentItem:l}=n,[o,a]=fs(!1),[i]=(0,K.useActions)(),s=i.some(e=>"save_record"===e.type&&(void 0===e.is_execute||!0===e.is_execute))?"success":"error";if("ssr"!==r.type)return(0,e.createElement)(t,{...n});const c=r.value||"custom_jfb_field_validation";return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(cs,{labelPosition:"side",options:k.withPlaceholder(vs,bs("Custom function","jet-form-builder")),label:bs("Choose callback","jet-form-builder"),value:r.value,onChange:e=>l({value:e})}),"is_field_value_unique"===r.value&&(0,e.createElement)(u.Notice,{status:s,isDismissible:!1},bs("This callback requires the Save Form Record action to work correctly.","jet-form-builder")),"is_user_password_valid"===r.value&&(0,e.createElement)(u.Notice,{status:"success",isDismissible:!1},bs("Works only for logged users.","jet-form-builder")),!ws.includes(r.value)&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ds,{label:bs("Function name","jet-form-builder"),value:r.value,onChange:e=>l({value:e})}),(0,e.createElement)(dt,null,bs("Example of registering a function below.","jet-form-builder")+" ",(0,e.createElement)("a",{href:"javascript:void(0)",onClick:()=>a(e=>!e)},bs(o?"Hide":"Show","jet-form-builder"))),o&&(0,e.createElement)("pre",null,`/**\n * To get all the values of the fields in the form, you can use the expression:\n * jet_fb_request_handler()->get_request() or $context->get_request()\n *\n * If the field is located in the middle of the repeater, then only\n * jet_fb_request_handler()->get_request(), but $context->get_request() \n * will return the values of all fields of the current repeater element\n *\n * @param $value mixed\n * @param $context \\Jet_Form_Builder\\Request\\Parser_Context\n *\n * @return bool\n */\nfunction ${c}( $value, $context ): bool {\n\t// your logic\n\treturn true;\n}`)))});const Es=ms("jet.fb.advanced.rule.controls")(function({currentItem:t,changeCurrentItem:n}){const[r,l]=fs(()=>_s(t.type));switch(hs(()=>{l(_s(t.type))},[t.type]),t.type){case"equal":case"contain":case"contain_not":case"regexp":case"regexp_not":return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ss,null),!Boolean(t.field)&&(0,e.createElement)(ci,{value:t.value,label:r,onChangePreset:e=>n({value:e}),onChangeMacros:e=>{var r;return n({value:(null!==(r=t.value)&&void 0!==r?r:"")+e})}},({instanceId:r})=>(0,e.createElement)(us,{id:r,value:t.value,onChange:e=>n({value:e})})));default:return null}}),Cs=function(){const{currentItem:t,changeCurrentItem:n}=ps(pa);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(cs,{labelPosition:"side",options:k.withPlaceholder(ys),label:bs("Rule type","jet-form-builder"),value:t.type,onChange:e=>n({type:e})}),(0,e.createElement)(Es,{currentItem:t,changeCurrentItem:n}),(0,e.createElement)(us,{label:bs("Error message","jet-form-builder"),value:t.message,onChange:e=>n({message:e})}))},{select:ks}=wp.data,Ss=function(e){return ks("jet-forms/validation").readRule(e)},{useState:js}=wp.element,{__:xs}=wp.i18n,Ns=function(){const[t,n]=fe(),[r,l]=js(()=>{var e;return null!==(e=t.validation?.rules)&&void 0!==e?e:[]});return W(()=>{n(e=>({...e,validation:{...t.validation,rules:r}}))}),(0,e.createElement)(Ya,{state:l},(0,e.createElement)(ha.Provider,{value:{isSupported:()=>!0,render:({currentItem:t})=>(0,e.createElement)("span",{className:"repeater-item-title",dangerouslySetInnerHTML:{__html:Ss(t)}})}},(0,e.createElement)(Pa,{items:r},(0,e.createElement)(Cs,null))),(0,e.createElement)(Na,null,xs("Add Rule","jet-form-builder")))},{createContext:Fs}=wp.element,Ts=Fs({showModal:!1,setShowModal:()=>{}}),{useContext:Bs,useState:Is}=wp.element,{__:As}=wp.i18n,{Button:Os}=wp.components,Rs=function(){const{setShowModal:t}=Bs(Ts),[n,r]=fe(),[l,o]=Is(!1);return(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>o(!0),onFocus:()=>o(!0),onMouseOut:()=>o(!1),onBlur:()=>o(!1)},(0,e.createElement)(Ui,{isHover:l},(0,e.createElement)(Os,{isSmall:!0,isSecondary:!0,icon:"plus-alt2",onClick:()=>{r({validation:{...n.validation,rules:[{__visible:!0}]}}),t(e=>!e)}},As("Add new","jet-form-builder"))),(0,e.createElement)(Hi,null,(0,e.createElement)("span",{"data-title":As("You have no rules for this field.","jet-form-builder")}),(0,e.createElement)("span",{"data-title":As("Please click here to add new.","jet-form-builder")})))},{__:Ms}=wp.i18n,Ps=function({rule:t}){return t.type?(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Ms("Rule:","jet-form-builder"),dangerouslySetInnerHTML:{__html:Ss(t)}}),Boolean(t.message)&&(0,e.createElement)("span",{"data-title":Ms("Message:","jet-form-builder"),dangerouslySetInnerHTML:{__html:t.message}})):(0,e.createElement)("span",{"data-title":Ms("The rule is not fully configured.","jet-form-builder")})},{useContext:Ls,useState:Gs}=wp.element,{__:Ds}=wp.i18n,{Button:qs}=wp.components,Vs=function({rule:t,index:n=0}){const{setShowModal:r}=Ls(Ts),[l,o]=fe(),[a,i]=Gs(!1);return(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>i(!0),onFocus:()=>i(!0),onMouseOut:()=>i(!1),onBlur:()=>i(!1)},(0,e.createElement)(Ui,{isHover:a},(0,e.createElement)(qs,{isSmall:!0,isSecondary:!0,icon:"edit",onClick:()=>{o({validation:{...l.validation,rules:l.validation.rules.map((e,t)=>(e.__visible=n===t,e))}}),r(e=>!e)}},Ds("Edit","jet-form-builder")),(0,e.createElement)(qs,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{o({validation:{...l.validation,rules:l.validation.rules.filter((e,t)=>t!==n)}})}},Ds("Delete","jet-form-builder"))),(0,e.createElement)(Hi,null,(0,e.createElement)(Ps,{rule:t})))},{__:Js}=wp.i18n,{Children:$s,cloneElement:Us}=wp.element;const Hs=function(){const[t]=fe();return t?.validation?.rules?.length?(0,e.createElement)(Xi,null,$s.map(function(t){const n=t.filter((e,t)=>0!==t);return[(0,e.createElement)(Vs,{rule:t[0],key:"first_item"}),...n.map((t,n)=>((t,n)=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",null,Js("AND","jet-form-builder")),(0,e.createElement)(Vs,{rule:t,index:n})))(t,n+1))]}(t.validation.rules),Us)):(0,e.createElement)(Rs,null)},{useState:Ws}=wp.element,{__:zs}=wp.i18n,{useBlockProps:Ys}=wp.blockEditor,{TextControl:Ks,SelectControl:Xs,ToggleControl:Zs,BaseControl:Qs,__experimentalNumberControl:ec}=wp.components;let{NumberControl:tc}=wp.components;void 0===tc&&(tc=ec);const{FormToggle:nc,BaseControl:rc,Flex:lc}=wp.components,{useInstanceId:oc}=wp.compose,{useBlockProps:ac}=wp.blockEditor,{useEffect:ic}=wp.element,{useSelect:sc}=wp.data,{useBlockProps:cc}=wp.blockEditor,{useSelect:uc}=wp.data,{CustomSelectControl:dc,Icon:mc}=wp.components,{useBlockEditContext:pc}=wp.blockEditor,{Children:fc,cloneElement:hc,useContext:bc}=wp.element,{useSelect:gc}=wp.data,{useBlockEditContext:yc}=wp.blockEditor;let{__experimentalToggleGroupControl:vc,__experimentalToggleGroupControlOptionIcon:wc,__experimentalToolbarContext:_c,ToggleGroupControl:Ec,ToggleGroupControlOptionIcon:Cc,ToolbarItem:kc,ToolbarGroup:Sc,ToolbarContext:jc}=wp.components;function xc({value:t}){const{name:n}=yc(),r=bc(jc),[,l]=fe(),{variations:o,components:a}=gc(t=>{const{getBlockVariations:l}=t("core/blocks"),o=l(n,"block");return{variations:o,components:o.map(t=>{var n;return(null!==(n=r?.currentId)&&void 0!==n?n:r?.baseId)?(0,e.createElement)(kc,{key:t.name,as:Cc,value:t.name,label:t.title,icon:t.icon}):(0,e.createElement)(Cc,{key:t.name,value:t.name,label:t.title,icon:t.icon})})}},[]);return o.length?(0,e.createElement)("div",{className:"jfb-variations-toolbar-toggle"},(0,e.createElement)(Ec,{hideLabelFromVision:!0,onChange:e=>l({...o.find(({name:t})=>t===e).attributes}),value:t,isBlock:!0},fc.map(a,hc))):null}Ec=Ec||vc,Cc=Cc||wc,jc=jc||_c;const{useSelect:Nc}=wp.data,{useBlockEditContext:Fc}=wp.blockEditor,{get:Tc}=window._,{useBlockProps:Bc,RichText:Ic}=wp.blockEditor,{Button:Ac}=wp.components,{createContext:Oc}=wp.element,Rc=Oc({}),{useContext:Mc}=wp.element,{useState:Pc}=wp.element,{get:Lc}=window._,{useSelect:Gc,useDispatch:Dc}=wp.data;var qc,Vc,Jc;window.JetFBComponents={...null!==(qc=window?.JetFBComponents)&&void 0!==qc?qc:{},BaseLabel:En,ActionFieldsMap:function({fields:t=[],label:n="[Empty label]",children:a=null,plainHelp:i="",customHelp:s=!1}){return(0,e.createElement)(l.RowControl,{align:"flex-start"},(0,e.createElement)(l.Label,null,n),(0,e.createElement)(l.RowControlEnd,null,s&&"function"==typeof s&&s(),Boolean(i.length)&&(0,e.createElement)("span",{className:"description-controls"},i),t.map(([t,n],l)=>(0,e.createElement)(o.Fragment,{key:`field_in_map_${t+l}`},(0,e.createElement)(r.Provider,{value:{name:t,data:n,index:l}},"function"==typeof a?a({fieldId:t,fieldData:n,index:l}):a)))))},ActionModal:h,ActionModalContext:i,SafeDeleteContext:da,RepeaterItemContext:pa,RepeaterBodyContext:fa,RepeaterHeadContext:ha,RepeaterButtonsContext:ba,ActionFieldsMapContext:r,CurrentPropertyMapContext:za,BlockValueItemContext:ya,DynamicPropertySelect:function({dynamic:t=[],parseValue:n=null,children:a=null,properties:i=null}){const{source:s,settings:c,setMapField:u}=(0,o.useContext)(K.CurrentActionEditContext);i=null!=i?i:s.properties;const{name:d,index:m}=(0,o.useContext)(r),{fields_map:p={}}=c;function f(e){var r;for(const t of i)if(e===t.value)return e;return n?n(e):null!==(r=t[0])&&void 0!==r?r:""}const[h,b]=(0,o.useState)(()=>{var e;return f(null!==(e=p[d])&&void 0!==e?e:"")}),g=(0,e.createElement)(l.StyledSelectControl,{key:d+m,value:h,options:i,help:(()=>{var e;const t=i.find(({value:e})=>e===h);return null!==(e=t?.help)&&void 0!==e?e:""})(),onChange:e=>{const n=f(e);b(n),u({nameField:d,value:t.includes(e)?"":e})}});return(0,e.createElement)(za.Provider,{value:{FieldSelect:g,property:h}},a&&a,!a&&g)},SafeDeleteToggle:function(t){const[n,r]=_a(!0);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(va,{label:wa("Safe deleting","jet-form-builder"),checked:n,onChange:r}),(0,e.createElement)(da.Provider,{value:n},t.children))},RepeaterAddNew:Na,RepeaterAddOrOperator:function(t){var n;const{onSetState:r,functions:l,children:o}=t,{addNewItem:a}=null!==(n=null!=l?l:Ca(r))&&void 0!==n?n:rs(Sa);return(0,e.createElement)(ns,{isSecondary:!0,icon:"randomize",onClick:()=>a({__visible:!1,or_operator:!0})},o)},Repeater:Pa,WrapperRequiredControl:function({children:t,labelKey:n="label",requiredKey:l="required",helpKey:o="help",field:a=[]}){let{name:i,data:s}=g(r);return a.length&&([i,s]=a),(0,e.createElement)("div",{className:"jet-user-meta__row",key:"user_meta_"+i},(0,e.createElement)("div",{className:"jet-field-map__row-label"},(0,e.createElement)("span",{className:"fields-map__label"},s.hasOwnProperty(n)&&s[n]&&s[n],!s.hasOwnProperty(n)&&s),s.hasOwnProperty(l)&&s[l]&&(0,e.createElement)("span",{className:"fields-map__required"}," *"),s[o]&&(0,e.createElement)("p",{className:"components-base-control__help",style:{color:"rgb(117, 117, 117)",margin:"1em 0 0 0"}},(0,e.createElement)(b,null,s[o]))),t)},DynamicPreset:Ie,JetFieldsMapControl:Me,FieldWithPreset:function({children:t=null,ModalEditor:n,triggerClasses:r=[],baseControlProps:l={}}){const[o,a]=De(!1),i=()=>{a(e=>!e)},s=["jet-form-dynamic-preset__trigger",...r].join(" ");return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ge,{className:"jet-form-dynamic-preset",...l},t,(0,e.createElement)("div",{className:s,onClick:i},(0,e.createElement)(Le,{viewBox:"0 0 54 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)(Pe,{d:"M42.6396 26.4347C37.8682 27.3436 32.5666 28.0252 27.1894 28.0252C21.8121 28.0252 16.4348 27.3436 11.7391 26.4347C6.96774 25.4502 3.18093 23.8597 0.37868 21.9663L0.37868 28.0252C0.37868 29.5399 1.59046 31.1304 3.78682 32.4179C5.98317 33.7054 9.46704 34.9172 13.6325 35.5988C17.798 36.2805 22.115 36.8106 27.1894 36.8106C32.2637 36.8106 36.6564 36.5077 40.7462 35.5988C44.8359 34.69 48.3198 33.7054 50.5162 32.4179C52.7125 31.1304 54 29.5399 54 28.0252L54 21.9663C51.122 23.8597 47.3352 25.4502 42.6396 26.4347ZM42.6396 53.5484C37.8682 54.5329 32.5666 55.1388 27.1894 55.1388C21.8121 55.1388 16.4348 54.5329 11.7391 53.5484C7.04348 52.5638 3.18093 51.0491 0.378682 49.1556L0.378682 55.1388C0.378683 56.7293 1.59046 58.3197 3.78682 59.5315C6.36186 60.819 9.46705 62.1066 13.6325 62.7125C17.7223 63.697 22.115 64 27.1894 64C32.2637 64 36.6564 63.697 40.7462 62.7125C44.8359 61.8036 48.3198 60.819 50.5162 59.5315C52.7125 57.9411 54 56.7293 54 54.8359L54 48.8527C51.122 51.0491 47.3352 52.2608 42.6396 53.5484ZM42.6396 39.9915C37.8682 40.9004 32.5666 41.582 27.1894 41.582C21.8121 41.582 16.4348 40.9004 11.7391 39.9915C6.96774 39.007 3.18093 37.4922 0.378681 35.5988L0.378681 41.582C0.378681 43.1725 1.59046 44.6872 3.78682 45.9747C6.36185 47.2622 9.46705 48.474 13.6325 49.1556C17.7223 50.0645 22.115 50.3674 27.1894 50.3674C32.2637 50.3674 36.6564 50.0645 40.7462 49.1556C44.8359 48.1711 48.3198 47.2622 50.5162 45.9747C52.7125 44.3843 54 43.1725 54 41.582L54 35.5988C51.122 37.4922 47.3352 39.007 42.6396 39.9915ZM40.4432 2.12337C36.3535 1.13879 31.885 0.835848 26.8864 0.835849C21.8878 0.835849 17.4194 1.13879 13.2539 2.12337C9.08836 3.10794 5.68022 4.01678 3.48387 5.3043C1.28751 6.59181 -3.4782e-06 8.10654 -3.33916e-06 9.697L-2.95513e-06 14.0897C-2.81609e-06 15.6802 1.28752 17.2706 3.48387 18.5582C6.05891 19.7699 9.1641 21.0575 13.2539 21.6633C17.3436 22.2692 21.8121 22.9509 26.8864 22.9509C31.9607 22.9509 36.3535 22.9509 40.4432 22.345C44.533 21.7391 48.0169 20.4516 50.2132 19.164C52.7125 17.5736 54 15.9831 54 14.3927L54 9.99995C54 8.40948 52.7125 6.81902 50.5162 5.60724C48.3198 4.39546 44.533 2.72926 40.4432 2.12337Z",fill:"#7E8993"})))),o&&(0,e.createElement)(h,{onRequestClose:i,classNames:["width-60"],title:"Edit Preset"},t=>(0,e.createElement)(n,{...t})))},GlobalField:ye,AvailableMapField:function({fieldsMap:t,field:n,index:r,value:a,onChangeValue:i,isMapFieldVisible:s}){let c=null;t||(t={}),c=t[n],c&&"object"==typeof c||(c={});const d=({field:t,name:n,index:r,fIndex:o,children:a})=>(0,e.createElement)(u.Card,{key:t+n+r+o,size:"extraSmall",style:{marginBottom:"10px"}},(0,e.createElement)(u.CardHeader,null,(0,e.createElement)("span",{className:"jet-label-overflow"},t)),(0,e.createElement)(l.StyledCardBodyControl,{key:t+n+r+o,className:"jet-form-preset__fields-map-item"},a));return(0,e.createElement)(o.Fragment,{key:`map_field_preset_${n+r}`},window.JetFormEditorData.presetConfig.map_fields.map((o,m)=>{const p={field:n,name:o.name,index:r,fIndex:m},f="control_"+n+o.name+r+m;switch(o.type){case"text":return s(a,o,n)&&function({field:t,name:n,index:r,fIndex:o},a){return(0,e.createElement)(u.Card,{key:t+n+r+o,size:"extraSmall",style:{marginBottom:"10px"}},(0,e.createElement)(u.CardHeader,null,(0,e.createElement)("span",{className:"jet-label-overflow"},t)),(0,e.createElement)(l.StyledCardBodyControl,{key:t+n+r+o,className:"jet-form-preset__fields-map-item"},a))}(p,(0,e.createElement)(l.StyledTextControl,{key:f+"TextControl",placeholder:o.label,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));case"select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(l.StyledSelectControl,{options:o.options,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));case"custom_select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(u.CustomSelectControl,{options:o.options,onChange:({selectedItem:e})=>{c[o.name]=e.key,i({...t,[n]:c},"fields_map")},value:o.options.find(e=>e.key===c[o.name])}));case"grouped_select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(xe,{options:o.options,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));default:return null}}))},MapField:Ne,FieldWrapper:function(t){const{attributes:n,children:r,wrapClasses:l=[],valueIfEmptyLabel:o="",setAttributes:a,childrenPosition:i="between"}=t,s=de(),c=H("_jf_args"),u=Ze(function(){ze(n,a)});function d(){return(0,e.createElement)(Ye.VisualLabel,null,et(Qe("input label:","jet-form-builder")),(0,e.createElement)("div",{className:"jet-form-builder__label"},(0,e.createElement)(Ke,{key:s("rich-label"),placeholder:"Label...",allowedFormats:[],value:n.label?n.label:o,onChange:e=>a({label:e}),isSelected:!1,...u}),n.required&&(0,e.createElement)("span",{className:"jet-form-builder__required"},c.required_mark?c.required_mark:"*")))}function m(){return(0,e.createElement)("div",{className:"jet-form-builder__desc--wrapper"},et(Qe("input description:","jet-form-builder")),(0,e.createElement)(Ye,{key:"custom_help_description",className:"jet-form-builder__desc"},(0,e.createElement)("div",{className:"components-base-control__help"},(0,e.createElement)(Ke,{key:s("rich-description"),tagName:"small",placeholder:"Description...",allowedFormats:[],value:n.desc,onChange:e=>a({desc:e}),style:{marginTop:"0px"}}))))}return"row"===c.fields_layout&&l.push("jet-form-builder-row__flex"),n?.crocoblock_styles?._uniqueClassName&&l.push(n.crocoblock_styles._uniqueClassName),(0,e.createElement)(Ye,{key:s("placeHolder_block"),className:E("jet-form-builder__field-wrap","jet-form-builder-row",l)},"row"!==c.fields_layout&&(0,e.createElement)(e.Fragment,null,"top"===i&&r,d(),"between"===i&&r,m(),"bottom"===i&&r),"row"===c.fields_layout&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"jet-form-builder-row__flex--label"},d(),m()),(0,e.createElement)("div",{className:"jet-form-builder-row__flex--content"},r)))},MacrosInserter:function({children:t,fields:n,onFieldClick:r,customMacros:l,zIndex:o=1e6,...a}){const[i,s]=lt(()=>!1);return(0,e.createElement)("div",{className:"jet-form-editor__macros-inserter"},(0,e.createElement)(tt,{isTertiary:!0,isSmall:!0,icon:i?"no-alt":"admin-tools",label:"Insert macros",className:"jet-form-editor__macros-trigger",onClick:()=>{s(e=>!e)}}),i&&(0,e.createElement)(nt,{style:{zIndex:o},position:"bottom left",...a},n.length&&(0,e.createElement)(rt,{title:"Form Fields"},n.map(t=>(0,e.createElement)("div",{key:"field_"+t.name},(0,e.createElement)(tt,{isLink:!0,onClick:()=>{r(t.name)}},"%"+t.name+"%")))),l&&(0,e.createElement)(rt,{title:"Custom Macros"},l.map(t=>(0,e.createElement)("div",{key:"macros_"+t},(0,e.createElement)(tt,{isLink:!0,onClick:()=>{r(t)}},"%"+t+"%"))))))},RepeaterWithState:function({children:t,ItemHeading:n,repeaterClasses:r=[],repeaterItemClasses:l=[],newItem:a,addNewButtonLabel:i="Add New",items:s=[],isSaveAction:c,onSaveItems:m,onUnMount:p,onAddNewItem:f,onRemoveItem:h,help:b={helpSource:{},helpVisible:()=>!1,helpKey:""},additionalControls:g=null}){const y=["jet-form-builder__repeater-component",...r].join(" "),v=["jet-form-builder__repeater-component-item",...l].join(" "),[w,_]=(0,o.useState)([]);(0,o.useEffect)(()=>{_(s&&s.length>0?s.map(e=>(e.__visible=!1,e)):[{...a,__visible:!0}])},[]);const[E,C]=(0,o.useState)(!0),k=(e,t)=>{_(n=>{const r=JSON.parse(JSON.stringify(n));return r[t]={...n[t],...e},r})},S=({oldIndex:e,newIndex:t})=>{_(n=>{const r=JSON.parse(JSON.stringify(n));return[r[t],r[e]]=[r[e],r[t]],r})},j=e=>!(e{if(!0===c){for(const e in w)for(const t in w[e])t.startsWith("__")&&delete w[e][t];m(w),p()}else!1===c&&p()},[c]);const x=e=>`jet-form-builder-repeater__item_${e}`,{helpSource:N,helpVisible:F,helpKey:T}=b,B=F(w)&&N&&N[T];return(0,e.createElement)("div",{className:y,key:"jet-form-builder-repeater"},B&&(0,e.createElement)("p",null,N[T].label),0(0,e.createElement)(u.Card,{elevation:2,className:v,key:x(l)},(0,e.createElement)(u.CardHeader,{className:"repeater__item__header"},(0,e.createElement)("div",{className:"repeater-item__left-heading"},(0,e.createElement)(u.ButtonGroup,{className:"repeater-action-buttons"},(0,e.createElement)(u.Button,{isSmall:!0,icon:r.__visible?"no-alt":"edit",onClick:()=>(e=>{_(t=>{const n=JSON.parse(JSON.stringify(t));return n[e].__visible=!n[e].__visible,n})})(l),className:"repeater-action-button"}),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,disabled:!Boolean(l),icon:"arrow-up-alt2",onClick:()=>(e=>{S({oldIndex:e,newIndex:e-1})})(l),className:"repeater-action-button"}),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,disabled:j(l),icon:"arrow-down-alt2",onClick:()=>(e=>{S({oldIndex:e,newIndex:e+1})})(l),className:"repeater-action-button"})),(0,e.createElement)("span",{className:"repeater-item-title"},n&&(0,e.createElement)(n,{currentItem:r,index:l,changeCurrentItem:e=>k(e,l)}),!n&&`#${l+1}`)),(0,e.createElement)(u.ButtonGroup,null,(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,onClick:()=>(e=>{_(t=>{const n=JSON.parse(JSON.stringify(t)),[r,l]=[n.slice(0,e+1),n.slice(e+1)];return[...r,n[e],...l]})})(l)},(0,d.__)("Clone","jet-form-builder")),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,isDestructive:!0,onClick:()=>(e=>{E&&!(e=>confirm((0,d.sprintf)((0,d.__)("Are you sure you want to remove item %d?","jet-form-builder"),e+1)))(e)||h&&!h(e,w)||_(t=>{const n=JSON.parse(JSON.stringify(t));return n.splice(e,1),n})})(l)},(0,d.__)("Delete","jet-form-builder")))),r.__visible&&(0,e.createElement)(u.CardBody,{className:"repeater-item__content"},t&&(0,e.createElement)(o.Fragment,{key:`repeater-component__item_${l}`},"function"==typeof t&&t({currentItem:r,changeCurrentItem:e=>k(e,l),currentIndex:l}),"function"!=typeof t&&t),!t&&"Set up your Repeater Template, please."))),1{return e=a,f&&f(e,w),void _(t=>[...t,{...e,__visible:!0}]);var e}},i))},AdvancedFields:function(){return(0,e.createElement)(St,null,(0,e.createElement)(it,null),(0,e.createElement)(ut,null),(0,e.createElement)(yt,null),(0,e.createElement)(_t,null),(0,e.createElement)(kt,null))},GeneralFields:function({hasMacro:t=!0}){return(0,e.createElement)(Ln,{title:Gn("General","jet-form-builder"),key:"jet-form-general-fields"},(0,e.createElement)(Tt,null),(0,e.createElement)(Lt,null),(0,e.createElement)(qt,null),(0,e.createElement)(Pn,{hasMacro:t}))},ToolBarFields:function({children:t=null}){return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Hn,null,t),(0,e.createElement)(Zn,null))},FieldControl:function(t){const{setAttributes:n,attributes:r}=t,l=function({type:e,attributes:t,attrsSettings:n={}}){const r=Ys()["data-type"],l=lr();return l[e]?l[e].attrs.filter(({attrName:e,label:l,...o})=>{const a=e in t,i=(e=>{if(!e.condition)return!0;if(r&&e.condition.blockName){if("string"==typeof e.condition.blockName&&r!==e.condition.blockName)return!1;if("object"==typeof e.condition.blockName&&e.condition.blockName.length&&!e.condition.blockName.includes(r))return!1}return!(!function(){if("object"!=typeof e.condition.attr)return!0;const{operator:n="and",items:r={}}=e.condition.attr;if("or"===n.toLowerCase())for(const e in r)if(r[e]===t[e])return!0;return"and"!==n.toLowerCase()||function(){for(const e in r)if(r[e]!==t[e])return!1;return!0}()}()||"string"==typeof e.condition.attr&&e.condition.attr&&!t[e.condition.attr]||"string"==typeof e.condition&&!t[e.condition])})(o),s=e in n&&"show"in n[e]&&!1===n[e].show;return a&&i&&!s}):[]}(t),o=(e,t)=>{n({[t]:e})};return l.map(({help:t="",attrName:n,label:l,...a})=>{switch(a.type){case"text":return(0,e.createElement)(Ks,{key:`${a.type}-${n}-TextControl`,label:l,help:t,value:r[n],onChange:e=>o(e,n)});case"select":return(0,e.createElement)(Xs,{key:`${a.type}-${n}-SelectControl`,label:l,help:t,value:r[n],options:a.options,onChange:e=>{o(e,n)}});case"toggle":return(0,e.createElement)(Zs,{key:`${a.type}-${n}-ToggleControl`,label:l,help:t,checked:r[n],onChange:e=>{o(e,n)}});case"number":return(0,e.createElement)(Qs,{key:`${a.type}-${n}-BaseControl`,label:l},(0,e.createElement)(tc,{key:`${a.type}-${n}-NumberControl`,value:r[n],onChange:e=>{o(Number(e),n)}}),(0,e.createElement)("p",{className:"components-base-control__help",style:{color:"rgb(117, 117, 117)"}},t));default:return null}})},HorizontalLine:function(t){return(0,e.createElement)("hr",{style:{...t}})},FieldSettingsWrapper:function(t){const{title:n,children:r}=t,l=nr()["data-type"].replace("/","-"),o=tr(`jet.fb.render.settings.${l}`,null);return(r||o)&&(0,e.createElement)(er,{title:n||Qn("Field","jet-form-builder")},r,o)},GroupedSelectControl:xe,BaseHelp:dt,GatewayFetchButton:ar,ValidationToggleGroup:function({excludeBrowser:t=!1}){var n;const[r,l]=fe(),o=de();return qa=qa.filter(({value:e})=>"browser"!==e||!t),(0,e.createElement)(La,{onChange:e=>l(t=>({...t,validation:{...r.validation,type:e}})),value:null!==(n=r.validation?.type)&&void 0!==n?n:"inherit",label:Da("Validation type","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},(0,e.createElement)(Ga,{label:Da("Inherit","jet-form-builder"),value:"inherit","aria-label":Da("Inherit from form's args","jet-form-builder"),showTooltip:!0}),qa.map(t=>(0,e.createElement)(Ga,{key:o(t.value+"_key"),label:t.label,value:t.value,"aria-label":t.title,showTooltip:!0})))},ValidationBlockMessage:function({name:t}){var n,r,l;const o=de(),[a,i]=fe(),[s]=(0,Va.useMetaState)("_jf_validation","{}",[]),c=!a.validation?.type,u=c?null!==(n=s?.messages)&&void 0!==n?n:{}:null!==(r=a.validation?.messages)&&void 0!==r?r:{},d=$a(t);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ua,{disabled:c,key:o("massage_"+t),label:d?.label,help:d?.help,value:null!==(l=u[t])&&void 0!==l?l:d?.initial,onChange:e=>i(n=>({...n,validation:{...a.validation,messages:{...u,[t]:e}}}))}))},ValidationMetaMessage:function({message:t,update:n,value:r=null,help:o=null}){const a=$a(t.id);return(0,e.createElement)(l.StyledFlexControl,{direction:"column"},(0,e.createElement)(u.Flex,null,(0,e.createElement)(l.Label,{htmlFor:t.id},a.label),(0,e.createElement)(u.Flex,{style:{width:"auto"}},t.blocks.map(t=>(0,e.createElement)(u.Tooltip,{key:"message_block_item"+t.title,text:t.title,delay:200,placement:"top"},(0,e.createElement)(Ha,{icon:t.icon}))))),(0,e.createElement)(l.StyledTextControl,{className:l.ClearBaseControlStyle,id:t.id,help:null!=o?o:a?.help,value:null!=r?r:a?.initial,onChange:e=>n(n=>({...n,[t.id]:e}))}))},DynamicValues:ts,EditAdvancedRulesButton:function(){const[t,n]=Ws(!1);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ts.Provider,{value:{showModal:t,setShowModal:n}},(0,e.createElement)("div",{className:"jet-fb mb-24"},(0,e.createElement)(Hs,null))),t&&(0,e.createElement)(h,{title:zs("Edit Advanced Rules","jet-form-builder"),classNames:["width-60"],onRequestClose:()=>n(!1)},(0,e.createElement)(Ns,null)))},RepeaterStateContext:Sa,RepeaterState:Ya,BlockLabel:Tt,BlockName:Lt,BlockDescription:qt,BlockDefaultValue:Pn,BlockPlaceholder:it,BlockAddPrevButton:ut,BlockPrevButtonLabel:yt,BlockVisibility:_t,BlockClassName:kt,BlockAdvancedValue:function({help:t,label:n,hasMacro:r=!0,...l}){return(0,e.createElement)("div",{...l},(0,e.createElement)(Pn,{help:t,label:n,hasMacro:r}),(0,e.createElement)("hr",null),(0,e.createElement)(ts,null))},MacrosFields:wn,MacrosButtonTemplate:Yt,MacrosFieldsTemplate:mn,ShowPopoverContext:$t,PopoverItem:Qt,PresetButton:Vt,ConditionItem:_i,AdvancedInspectorControl:Sn,AdvancedModalControl:ci,ClientSideMacros:Bn,ToggleControl:function t({checked:n=!1,disabled:r=!1,onChange:l=()=>{},children:o=null,help:a=null,flexLabelProps:i={},outsideLabel:s=null,__nextHasNoMarginBottom:c=!1,...u}){const d=a,m=`inspector-jfb-toggle-control-${oc(t)}`;return(0,e.createElement)(rc,{id:m},(0,e.createElement)(lc,{direction:"column"},(0,e.createElement)(lc,{gap:3,align:"flex-start",justify:"flex-start",...i},(0,e.createElement)(nc,{id:m,checked:n,onChange:e=>l(e.target.checked),disabled:r,...u}),(0,e.createElement)("label",{htmlFor:m},o),s),"string"==typeof d?(0,e.createElement)(dt,null,d):d&&(0,e.createElement)(d,null)))},DetailsContainer:Hi,HoverContainer:Ui,ContainersList:Xi,HumanReadableConditions:$i,ConditionsRepeaterContextProvider:Si,ServerSideMacros:function({children:t}){const n=(0,K.useRequestFields)();return(0,e.createElement)(Xt.Provider,{value:{afterFields:n}},t)},SelectVariations:function({value:t}){const{name:n}=pc(),[,r]=fe(),{variations:l,rawVariations:o}=uc(t=>{const{getBlockVariations:r}=t("core/blocks"),l=r(n,"block"),o=[],a={};for(const t of l)o.push({key:t.name,name:(0,e.createElement)("span",{className:"jet-fb flex gap-1em ai-center"},(0,e.createElement)(mc,{icon:t.icon}),t.title)}),a[t.name]=t;return{variations:o,rawVariations:a}},[n]);return l.length?(0,e.createElement)(dc,{__nextUnconstrainedWidth:!0,hideLabelFromVision:!0,options:l,size:"__unstable-large",onChange:({selectedItem:e})=>r({...o[e.key].attributes}),value:l.find(({key:e})=>e===t)}):null},ToggleGroupVariations:function(t){const n=bc(jc);return n?.currentId?(0,e.createElement)(Sc,{className:"jet-fb toggle-toolbar-group"},(0,e.createElement)(xc,{...t})):(0,e.createElement)(xc,{...t})},AttributeHelp:ht,ActionButtonPlaceholder:function(t){const n=Bc();return(0,e.createElement)("div",{...n},(0,e.createElement)("div",{className:t.wrapperClasses.join(" ")},(0,e.createElement)(Ac,{isPrimary:!0,className:t.buttonClasses.join(" ")},(0,e.createElement)(Ic,{placeholder:"Input Submit label...",allowedFormats:[],value:t.attributes.label,onChange:e=>t.setAttributes({label:e})}))))},ActionModalFooterSlotFill:c,ScopedAttributesProvider:function({children:t}){const[n,r]=fe(),[l,o]=Pc(()=>n);return(0,e.createElement)(Rc.Provider,{value:{realAttributes:n,setRealAttributes:r,attributes:l,setAttributes:o}},t)}},window.JetFBActions={...null!==(Vc=window?.JetFBActions)&&void 0!==Vc?Vc:{},withPreset:ge,getInnerBlocks:R,getAvailableFieldsString:function(e){const t=T([e]),n=[];return t.forEach(function(e){n.push("%FIELD::"+e+"%")}),B("Available fields: ","jet-form-builder")+n.join(", ")},getAvailableFields:T,getFormFieldsBlocks:F,getFieldsWithoutCurrent:O,gatewayAttr:P,gatewayLabel:L,registerGateway:function(e,t,n="cred"){window.JetFBGatewaysList=window.JetFBGatewaysList||{},window.JetFBGatewaysList[e]=window.JetFBGatewaysList[e]||{},window.JetFBGatewaysList[e][n]=t},Tools:k,event:e=>{const t=new Event(e);return()=>document.dispatchEvent(t)},listen:(e,t)=>{document.addEventListener(e,t)},renderGateway:D,renderGatewayWithPlaceholder:function(e,t,n="cred",r=null){return G(e,n)?(t.Placeholder=r,D(e,t,n)):r},maybeCyrToLatin:w,getConvertedName:_,getBlockControls:function(e="all"){if(!e)return!1;const t=lr();return"all"===e?t:!!(t[e]&&t[e].attrs&&Array.isArray(t[e].attrs)&&0{e.includes(n.name)&&t.push(n)}),t},convertObjectToOptionsList:function(e=[],{usePlaceholder:t=!0,label:n="--",value:r=""}={}){const l={label:n,value:r};if(!e)return t?[l]:[];const o=Object.entries(e).map(e=>({value:e.value,label:e.label}));return t?[l,...o]:o},appendField:function(e,t=[]){M("jet.fb.register.fields","jet-form-builder",n=>n.map(n=>t.length&&!t.includes(n.name)?n:e(n)))},insertMacro:In,column:y,getCurrentInnerBlocks:function(){const{"data-block":e}=ac();return R(e)},humanReadableCondition:Ci,assetUrl:function(e=""){return JetFormEditorData.assetsUrl+e},set:function(e,t,n){const r=JSON.parse(JSON.stringify(e));let l,o=r;for(let e=0;e{function t(){e.call(this)}return t.prototype=Object.create(e.prototype),t}},window.JetFBHooks={...null!==(Jc=window?.JetFBHooks)&&void 0!==Jc?Jc:{},useSelectPostMeta:H,useSuccessNotice:$,useEvents:ae,useRequestEvents:function(){const e=ie(e=>e("jet-forms/actions").getCurrentAction());return ae(e)},useBlockConditions:ce,useUniqKey:de,useBlockAttributes:fe,useIsAdvancedValidation:function(){const{type:e}=H("_jf_validation"),[t]=fe();return t.validation?.type?"advanced"===t.validation?.type:"advanced"===e},useGroupedValidationMessages:function(){const[e]=Ue(We);return e},withSelectFormFields:(e=[],t=!1,n=!1)=>r=>{let l=[];const o=["submit","form-break","heading","group-break","conditional",...e];return Y(e=>{e.name.includes("jet-forms/")&&e.attributes.name&&!o.find(t=>e.name.includes(t))&&l.push({blockName:e.name,name:e.attributes.name,label:e.attributes.label||e.attributes.name,value:e.attributes.name})},r("core/block-editor").getBlocks()),l=t?[{value:"",label:t},...l]:l,{formFields:n?l:z("jet.fb.getFormFieldsBlocks",l)}},withSelectGateways:X,withDispatchGateways:function(e){const t=e("jet-forms/gateways");return{setGatewayRequest:t.setRequest,setGatewayScenario:t.setScenario,setScenario:t.setCurrentScenario,setGateway:t.setGateway,setGatewayInner:t.setGatewayInner,setGatewaySpecific:t.setGatewaySpecific,clearGateway:t.clearGateway,clearScenario:t.clearScenario}},useOnUpdateModal:W,useInsertMacro:On,useIsHasAttribute:he,useUniqueNameOnDuplicate:function(e=null){const t=cc(),[,n]=fe(),r=t["data-block"],l=sc(e=>{if(!e(ra).isRecentlyAdded(r))return!1;const{hasChanged:t,names:n}=e(ra).getUniqueNames(r);return!!t&&n},[r]);ic(()=>{l&&("function"!=typeof e?n({name:l.split("|")[0]}):e(l))},[l])},useSupport:function(e){const{name:t}=Fc();return Nc(n=>{const r=n("core/blocks").getBlockType(t);return Tc(r,["supports",e],!1)},[t,e])},useScopedAttributesContext:function(){return Mc(Rc)},useOpenEditorPanel:function(e){const{enableComplementaryArea:t}=Dc("core/interface"),{toggleEditorPanelOpened:n}=Dc("core/edit-post"),r=Gc(t=>t("core/edit-post").isEditorPanelOpened(e),[e]);return()=>{t("core/edit-post","edit-post/document"),!r&&n(e)}}}})()})(); \ No newline at end of file +(()=>{var e={115:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(6758),l=n.n(r),o=n(935),a=n.n(o)()(l());a.push([e.id,".syma2t4{height:40px;min-height:40px;line-height:1.5;}\n",""]);const i=a},483:(e,t,n)=>{var r=n(4239);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(611).A)("62ebcc8a",r,!1,{})},611:(e,t,n)=>{"use strict";function r(e,t){for(var n=[],r={},l=0;lf});var l="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!l)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},a=l&&(document.head||document.getElementsByTagName("head")[0]),i=null,s=0,c=!1,u=function(){},d=null,m="data-vue-ssr-id",p="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(e,t,n,l){c=n,d=l||{};var a=r(e,t);return h(a),function(t){for(var n=[],l=0;ln.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(l=0;l{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,r,l,o){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(r)for(var i=0;i0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=o),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),l&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=l):u[4]="".concat(l)),t.push(u))}},t}},4023:(e,t,n)=>{var r=n(115);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(611).A)("55433ea3",r,!1,{})},4180:()=>{const e=()=>{const{select:e}=wp.data;return e("core/editor").getEditedPostAttribute("meta")},t=(t,n)=>{const{dispatch:r}=wp.data,{editPost:l}=r("core/editor");l({meta:{...e(),[t]:JSON.stringify(n)}})},n=e=>{const t=[];for(const[n,{active:r=!1}]of Object.entries(e))r&&t.push(+n);return t};wp.domReady((()=>(async()=>{await(async()=>new Promise((e=>{const t=setInterval((()=>{wp.data.select("core/editor").getCurrentPostType()&&(clearInterval(t),e())}),100)})))();let r={},l=[];try{[r={},l=[]]=(()=>{const t=e();let n={},r=[];try{n=JSON.parse(t._jf_gateways)}catch(e){return[]}if(1===n.last_migrate)throw"migrated";try{r=JSON.parse(t._jf_actions)}catch(e){return[n]}return[n,r]})()}catch(e){return}r.last_migrate=1,t("_jf_gateways",r);const o=[];try{o.push(...((e,t)=>{var r,l,o,a;const i=n(null!==(r=e.notifications_success)&&void 0!==r?r:{}),s=n(null!==(l=e.notifications_failed)&&void 0!==l?l:{}),c=n(null!==(o=e.notifications_before)&&void 0!==o?o:{}),u=null!==(a=e.use_success_redirect)&&void 0!==a&&a;let d=!1;if(!(i.length||s.length||c.length||u))throw"nothing_to_migrate";return t.map((e=>{var t;return e.events=null!==(t=e.events)&&void 0!==t?t:[],i.includes(e.id)&&e.events.push("GATEWAY.SUCCESS"),s.includes(e.id)&&e.events.push("GATEWAY.FAILED"),c.includes(e.id)&&e.events.push("DEFAULT.PROCESS"),u&&!d&&"redirect_to_page"===e.type&&(e.events.push("GATEWAY.SUCCESS"),d=!0),e}))})(r,l))}catch(e){return}t("_jf_actions",o)})()))},4239:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(6758),l=n.n(r),o=n(935),a=n.n(o)()(l());a.push([e.id,".sfqmk5y svg{height:24px;width:24px;}\n",""]);const i=a},6758:e=>{"use strict";e.exports=function(e){return e[1]}}},t={};function n(r){var l=t[r];if(void 0!==l)return l.exports;var o=t[r]={id:r,exports:{}};return e[r](o,o.exports,n),o.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";const e=window.React,{createContext:t}=wp.element,r=t({name:"",data:{},index:0}),l=window.jfb.components,o=window.wp.element,{createContext:a}=wp.element,i=a({actionClick:null,onRequestClose:()=>{}}),{createSlotFill:s}=wp.components,c=s("JFBActionModalFooter"),u=window.wp.components,d=window.wp.i18n,{Slot:m}=c;let{ToggleGroupControl:p,__experimentalToggleGroupControl:f}=wp.components;p=p||f;const h=function({onRequestClose:t,children:n,title:r="",classNames:l=[],className:a="",onUpdateClick:s,onCancelClick:c,updateBtnLabel:f="Update",updateBtnProps:h={},cancelBtnProps:b={},cancelBtnLabel:g="Cancel",fixedHeight:y="",...v}){const w=["jet-form-edit-modal",...l,a],[_,E]=(0,o.useState)(null),C=()=>{s&&s(),E(!0)},k=()=>{c&&c(),E(!1)};let S={};return y&&(S={height:y},w.push("jet-modal-fixed-height")),(0,e.createElement)(u.Modal,{onRequestClose:t,className:w.join(" "),title:r,style:S,...v},!n&&(0,e.createElement)("div",{className:"jet-form-edit-modal__content"},(0,d.__)("Action callback is not found.","jet-form-builder")),n&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"jet-form-edit-modal__wrapper"},(0,e.createElement)(i.Provider,{value:{actionClick:_,onRequestClose:t}},(0,e.createElement)("div",{className:"jet-form-edit-modal__content"},"function"==typeof n&&n({actionClick:_,onRequestClose:t}),"function"!=typeof n&&n))),(0,e.createElement)(m,{fillProps:{updateClick:C,cancelClick:k}},(t=>Boolean(t?.length)?t:(0,e.createElement)(p,{className:"jet-form-edit-modal__actions jfb-toggle-group-control",hideLabelFromVision:!0},(0,e.createElement)(u.Button,{isPrimary:!0,onClick:C,...h},f),(0,e.createElement)(u.Button,{isSecondary:!0,style:{margin:"0 0 0 10px"},onClick:k,...b},g))))))},{RawHTML:b,useContext:g}=wp.element;function y(e,t){return e?.length?e.map((e=>"object"==typeof e?e[t]:e)):[]}const v=(0,window.wp.hooks.applyFilters)("jet.fb.tools.convertSymbols",{checkCyrRegex:/[а-яёїєґі]/i,cyrRegex:/[а-яёїєґі]/gi,charsMap:{а:"a",б:"b",в:"v",г:"g",д:"d",е:"e",ё:"io",ж:"zh",з:"z",и:"i",й:"i",к:"k",л:"l",м:"m",н:"n",о:"o",п:"p",р:"r",с:"s",т:"t",у:"u",ф:"f",х:"kh",ц:"ts",ч:"ch",ш:"sh",щ:"shch",ы:"y",э:"e",ю:"iu",я:"ia",ї:"i",є:"ie",ґ:"g",і:"i"}});function w(e){return v.checkCyrRegex.test(e)&&(e=e.replace(v.cyrRegex,(function(e){return void 0===v.charsMap[e]?"":v.charsMap[e]}))),e}function _(e){let t=e.toLowerCase();t=t.normalize("NFD").replace(/[\u0300-\u036f]/g,""),t=w(t);const n=t.match(/\b(\w+)\b/g);t="";for(const[e,r]of Object.entries(n)){t+=(0===+e?"":"_")+r;const l=+e+1===n.length;if(t.length>60)return t+(l?"":"__")}return t}function E(...e){const t=[],n=e=>{e.forEach((e=>{if(e&&(Array.isArray(e)&&n(e),"string"==typeof e&&t.push(e.trim()),"object"==typeof e))for(const n in e)e[n]&&t.push((n+"").trim())}))};return n(e),t.join(" ")}function C(e){return null==e||("object"!=typeof e||Array.isArray(e)?"number"==typeof e?0===e:!e?.length:!Object.keys(e)?.length)}const k=class{static withPlaceholder(e,t="--",n=""){return[{label:t,value:n},...e]}static getRandomID(){return Math.floor(8999*Math.random())+1e3}},{select:S}=wp.data,j=function(e){const t=(n,r=null)=>{(n=n||S("core/block-editor").getBlocks()).forEach((n=>{if(e(n,r),n.innerBlocks.length){const e="jet-forms/repeater-field"===n.name?n:r;return void t(n.innerBlocks,e)}if("core/block"!==n.name)return;let l=S("core/block-editor")?.__unstableGetClientIdsTree?.(n.clientId);if(!l?.length)return;const o=l.map((({clientId:e})=>e));l=S("core/block-editor").getBlocksByClientId(o),t(l)}))};t()},{applyFilters:x}=wp.hooks,{select:N}=wp.data,F=function(e=[],t=!1,n=!1,r="default"){let l=[];const o=["submit","form-break","heading","group-break","conditional",...e];return j((e=>{if(e.name.includes("jet-forms/")&&!o.find((t=>e.name.includes(t)))){const t=N("core/blocks").getBlockType(e.name);let{fields:n=[]}=t.jfbResolveBlock.call(e,r);t.hasOwnProperty("jfbGetFields")&&(n=t.jfbGetFields.call(e,r)),l.push(...n.filter((e=>!l.some((({value:t})=>t===e.value)))))}})),l=t?[{value:"",label:t},...l]:l,n?l:x("jet.fb.getFormFieldsBlocks",l,r)},T=function(e=[],t="default"){const n=[],r=F(e,!1,!1,t);return r&&r.forEach((e=>n.push(e.name))),n},{__:B}=wp.i18n,{applyFilters:I}=wp.hooks,{select:A}=wp.data,O=function(e=!1,t=!1,n="default"){const r=["submit","form-break","heading","group-break","conditional"];let l=[];const o=wp.data.select("core/block-editor").getSelectedBlock();return j((e=>{if(e.name.includes("jet-forms/")&&o?.clientId!==e.clientId&&!r.find((t=>e.name.includes(t)))){const t=A("core/blocks").getBlockType(e.name);let{fields:r=[]}=t.jfbResolveBlock.call(e,n);t.hasOwnProperty("jfbGetFields")&&(r=t.jfbGetFields.call(e,n)),l.push(...r.filter((e=>!l.some((({value:t})=>t===e.value)))))}})),l=e?[{value:"",label:e},...l]:l,t?l:I("jet.fb.getFormFieldsBlocks",l,n)},R=function(e){const t=wp.data.select("core/block-editor").getBlock(e);return t?t.innerBlocks:[]},{addFilter:M}=wp.hooks,P=function(e=!1,t=""){const n=window.JetFormEditorData.gateways;if(!e)return n;if(!n[e])return!1;const r=n[e];return e=>r[e]?r[e]:t},L=function(e,t=""){const n=P("labels");return r=>n(e)?n(e)[r]:t},G=function(e,t="cred"){return window.JetFBGatewaysList&&window.JetFBGatewaysList[e]&&window.JetFBGatewaysList[e][t]},D=function(t,n,r="cred"){if(!G(t,r))return null;const l=window.JetFBGatewaysList[t][r];return(0,e.createElement)(l,{...n})},{useState:q,useEffect:V}=wp.element,{useDispatch:J}=wp.data,$=function(e,t={}){const[n,r]=q(!1),l=J(wp.notices.store);return V((()=>{n&&l.createWarningNotice(e,{type:"snackbar",...t})}),[n]),r},{useSelect:U}=wp.data,H=function(e){const t=U((e=>e("core/editor").getEditedPostAttribute("meta")||{}));return JSON.parse(t[e]||"{}")},W=function(e){const{actionClick:t,onRequestClose:n}=(0,o.useContext)(i);(0,o.useEffect)((()=>{t&&e(),null!==t&&n()}),[t])},{applyFilters:z}=wp.hooks,Y=(e,t)=>{t.forEach((t=>{e(t),t.innerBlocks.length&&Y(e,t.innerBlocks)}))},K=window.jfb.actions,X=function(e){const t=e("jet-forms/gateways"),n=t.getCurrentRequestId(),r=t.getGatewaySpecific(),l=t.getScenario(),o=t.getGatewayId(),{id:a="PAY_NOW"}=l,{use_global:i=!1}=r,s=(0,K.globalTab)({slug:o}),c=P("additional")(o),u=e("jet-forms/actions").getLoading(n),d=P("labels"),m=L(o),p=function(e){return d(`${o}.${e}`)};return{gatewayGeneral:t.getGateway(),gatewayRequest:t.getCurrentRequest(),scenarioSource:c[a]||{},currentScenario:l[a]||{},CURRENT_SCENARIO:a,gatewayScenario:l,additionalSourceGateway:c,gatewaySpecific:r,gatewayRequestId:n,loadingGateway:u,getSpecificOrGlobal:(e,t="")=>i?s[e]||t:r[e]||t,globalGatewayLabel:d,specificGatewayLabel:m,customGatewayLabel:p,scenarioLabel:function(e){return p(`scenario.${a}.${e}`)}}},{useSelect:Z}=wp.data,Q=function(){const e=Z((e=>e("jet-forms/events").getAlwaysTypes())),t=[];for(const{value:n}of e)t.push(n);return[...new Set(t)]},{useSelect:ee}=wp.data,te=function(){var e;const t=H("_jf_gateways"),{scenario:n={}}=null!==(e=t[t?.gateway])&&void 0!==e?e:{};return ee((e=>{const r=e("jet-forms/events").getGatewayTypes(),l=[];for(const e of r){const r=!e.gateway||e.gateway===t.gateway,o=!e.scenario||e.scenario===n?.id;r&&o&&l.push(e.value)}return[...new Set(l)]}),[t.gateway,n?.id])},{useSelect:ne}=wp.data,re=function({index:e}){const t=H("_jf_actions"),n=ne((e=>e("jet-forms/actions").getActionsMap()),[]);t.splice(e,1);const r=[];for(const e of t){const t=n?.[e.type]?.provideEvents;if("function"!=typeof t)continue;const{[e.type]:l={}}=e.settings;r.push(...t(l))}return[...new Set(r)]},{useSelect:le}=wp.data,{useSelect:oe}=wp.data,ae=function(e){const t=[...Q(),...te(),...re(e),...le((e=>e("jet-forms/events").getDynamicTypes().map((({value:e})=>e))))];return oe((n=>n("jet-forms/events").filterList(e.type,t)))},{useSelect:ie}=wp.data,{useSelect:se}=wp.data,ce=function(){const[e,t]=se((e=>[e("jet-forms/block-conditions").getOperators(),e("jet-forms/block-conditions").getFunctions()]),[]);return{operators:e,functions:t}},{useBlockEditContext:ue}=wp.blockEditor,de=function(){const{clientId:e}=ue();return t=>t+"-"+e},me=window.wp.blockEditor,pe=window.wp.data,fe=function(e=null){const t=(0,me.useBlockEditContext)();let{clientId:n}=t;e&&(n=e);const r=(0,pe.useSelect)((e=>e("core/block-editor").getBlockAttributes(n)),[n]),{updateBlock:l}=(0,pe.useDispatch)("core/block-editor");return[r,e=>{e="object"==typeof e?e:e(r),e=(0,pe.select)("jet-forms/fields").getSanitizedAttributes(e,t),l(n,{attributes:e})}]},he=function(e){const t=(0,me.useBlockProps)()["data-type"];return(0,pe.useSelect)((n=>!!n("core/blocks").getBlockType(t).attributes[e]),[e,t])},{applyFilters:be}=wp.hooks,ge=function(t){return function(n){return(0,e.createElement)(t,{key:"wrapped-preset-editor",...n,parseValue:()=>{let e={};if("object"==typeof n.value)e={...n.value};else if(n.value&&"string"==typeof n.value)try{if(e=JSON.parse(n.value),"number"==typeof e)throw new Error}catch(t){e={}}return e.jet_preset=!0,e},isVisible:(e,t,n)=>(t.position&&n===t.position||!t.position||"query_var"!==e.from)&&((e,t)=>!t.condition&&!t.custom_condition||(t.custom_condition?"query_var"===t.custom_condition?"post"===e.from&&"query_var"===e.post_from||"user"===e.from&&"query_var"===e.user_from||"term"===e.from&&"query_var"===e.term_from||"query_var"===e.from:be("jet.fb.preset.editor.custom.condition",!1,t.custom_condition,e):!t.condition||e[t.condition.field]===t.condition.value))(e,t),isMapFieldVisible:(e,t,n)=>!((t.condition||t.parent_condition)&&(t.parent_condition&&!t.condition?e[t.parent_condition.field]!==t.parent_condition.value:t.parent_condition&&t.condition?!e.fields_map||!e.fields_map[n]||e.fields_map[n][t.condition.field]!==t.condition.value||e[t.parent_condition.field]!==t.parent_condition.value:!t.parent_condition&&t.condition&&(!e.fields_map||!e.fields_map[n]||e.fields_map[n][t.condition.field]!==t.condition.value))),isCurrentFieldVisible:(e,t,n)=>!((t.condition||t.parent_condition)&&(t.position&&n!==t.position||(t.parent_condition&&!t.condition?e[t.parent_condition.field]!==t.parent_condition.value:t.parent_condition&&t.condition?e["current_field_"+t.condition.field]!==t.condition.value||e[t.parent_condition.field]!==t.parent_condition.value:!t.parent_condition&&t.condition&&e["current_field_"+t.condition.field]!==t.condition.value))),excludeOptions:e=>{const t=[...e];return t.forEach(((e,r)=>{n.excludeSources&&n.excludeSources.includes(e.value)&&t.splice(r,1)})),t}})}},ye=function({data:t,value:n,index:r,onChangeValue:o,isVisible:a,excludeOptions:i=e=>e,position:s}){switch(t.type){case"text":return a(n,t,s)&&(0,e.createElement)("div",{key:"field_"+t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledTextControl,{key:t.name+r,label:t.label,value:n[t.name],onChange:e=>{o(e,t.name)}}));case"select":return a(n,t,s)&&(0,e.createElement)("div",{key:"field_"+t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledSelectControl,{key:t.name+r,options:i(t.options),label:t.label,value:n[t.name],onChange:e=>{o(e,t.name)}}))}return null};function ve(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var we=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_e=ve((function(e){return we.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),Ee=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)}))}));const r=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&r.push(t[e]);return r.push(...n),r.join(" ")},Ce=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach((t=>{n[t]=e[t]})),n},ke=function(t){let n="";return r=>{const l=(l,o)=>{const{as:a=t,class:i=n}=l;var s;const c=function(e,t){const n=Ce(t,["as","class"]);if(!e){const e="function"==typeof _e?{default:_e}:_e;Object.keys(n).forEach((t=>{e.default(t)||delete n[t]}))}return n}(void 0===r.propsAsIs?!("string"==typeof a&&-1===a.indexOf("-")&&(s=a[0],s.toUpperCase()!==s)):r.propsAsIs,l);c.ref=o,c.className=r.atomic?Ee(r.class,c.className||i):Ee(c.className||i,r.class);const{vars:u}=r;if(u){const e={};for(const t in u){const n=u[t],o=n[0],a=n[1]||"",i="function"==typeof o?o(l):o;r.name,e[`--${t}`]=`${i}${a}`}const t=c.style||{},n=Object.keys(t);n.length>0&&n.forEach((n=>{e[n]=t[n]})),c.style=e}return t.__wyw_meta&&t!==a?(c.as=a,(0,e.createElement)(t,c)):(0,e.createElement)(a,c)},o=e.forwardRef?(0,e.forwardRef)(l):e=>{const t=Ce(e,["innerRef"]);return l(t,e.innerRef)};return o.displayName=r.name,o.__wyw_meta={className:r.class||n,extends:t},o}};const Se=ke("select")({name:"StyledSelect",class:"syma2t4",propsAsIs:!1}),je=function({id:t,label:n,onChange:r,options:l=[],value:o}){return!C(l)&&(0,e.createElement)(Se,{id:t,className:"components-select-control__input",onChange:e=>{r(e.target.value)},value:o},(0,e.createElement)("option",{key:`${n}-placeholder`,value:""},"--"),l.map(((t,n)=>!C(t.values)&&(0,e.createElement)("optgroup",{key:`${t.label}-${n}`,label:t.label},t.values.map(((t,r)=>(0,e.createElement)("option",{key:`${t.value}-${r}-${n}`,value:t.value,disabled:t.disabled},t.label)))))))};n(4023);const xe=function({data:t,value:n,index:r,currentState:o,onChangeValue:a,isCurrentFieldVisible:i}){switch(t.type){case"text":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledTextControl,{key:"control_"+t.name+r,placeholder:t.label,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}));case"select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledSelectControl,{key:"control_"+t.name+r,options:t.options,label:t.label,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}));case"custom_select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(u.CustomSelectControl,{className:"jet-custom-select-control",label:t.label,options:t.options,onChange:({selectedItem:e})=>{n=e.key,a(n,"current_field_"+t.name)},value:t.options.find((e=>e.key===n))}));case"grouped_select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r},(0,e.createElement)(l.Label,null,t.label),(0,e.createElement)(je,{options:t.options,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}))}return null},{createContext:Ne}=wp.element,Fe=Ne({});let Te=function({value:t,onChange:n,parseValue:r,excludeOptions:a,isCurrentFieldVisible:i,isVisible:s}){var c,m;const p="dynamic",f=r(t),h=(0,o.useContext)(Fe),b=(e,t)=>{n((()=>JSON.stringify({...f,[t]:e})))};return(0,e.createElement)(l.StyledFlexControl,{direction:"column",gap:4},window.JetFormEditorData.presetConfig.global_fields.map(((t,n)=>(0,e.createElement)(ye,{key:`current_field_${t.name}_${n}`,value:f,index:n,data:t,excludeOptions:a,onChangeValue:b,isVisible:s,position:p}))),window.JetFormEditorData.presetConfig.map_fields.map(((t,n)=>(0,e.createElement)(xe,{key:`current_field_${t.name}_${n}`,currentState:f,value:f["current_field_"+t.name],index:n,data:t,onChangeValue:b,isCurrentFieldVisible:i,position:p}))),h?.show&&(0,e.createElement)(u.ToggleControl,{label:(0,d.__)("Restrict access","jet-form-builder"),help:null===(c=f.restricted)||void 0===c||c?(0,d.__)("Will set default value from preset only for users who allowed to edit this value","jet-form-builder"):(0,d.__)("Always set default value from preset. Make sure it can't be accidentally changed from form Actions","jet-form-builder"),checked:null===(m=f.restricted)||void 0===m||m,onChange:e=>{b(e?void 0:e,"restricted")}}))};Te=ge(Te);const Be=Te,{SelectControl:Ie,TextControl:Ae}=wp.components;class Oe extends wp.element.Component{constructor(e){super(e),this.fieldTypes=this.props.fieldTypes,this.taxonomiesList=this.props.taxonomiesList,this.className=this.props.className,this.metaProp=this.props.metaProp?this.props.metaProp:"post_meta",this.termsProp=this.props.termsProp?this.props.termsProp:"post_terms",this.index=this.props.index,this.init(),this.bindFunctions(),this.state={type:this.getFieldType(this.props.fieldValue)}}bindFunctions(){this.onChangeType=this.onChangeType.bind(this),this.onChangeValue=this.onChangeValue.bind(this)}init(){if(this.id=`inspector-select-control-${this.index}`,this.preparedTaxes=[],this.taxPrefix="jet_tax__",this.taxonomiesList)for(let e=0;e{const t=wp.data.select(De).getBlockType(`jet-forms/${e}`);return{title:t.title,icon:t.icon.src}})))}},Ve=class{constructor(){this.items=[]}push(e){this.items.push(new qe(e))}},{messages:Je}=window.jetFormValidation,{useState:$e}=wp.element,Ue=Je.sort(((e,t)=>e.supported.length-t.supported.length));function He(){const e=new Ve;for(const t of Ue)e.push(t);return e.items}const We=function(e,t){1>=e.label.length||e.name&&"field_name"!==e.name||t({name:_(e.label)})},{BaseControl:ze}=wp.components,{RichText:Ye}=wp.blockEditor;let{__experimentalUseFocusOutside:Ke,useFocusOutside:Xe}=wp.compose;Xe=Xe||Ke;const{__:Ze}=wp.i18n;function Qe(t){return(0,e.createElement)("small",{style:{whiteSpace:"nowrap",padding:"0.2em 0.8em 0 0",color:"#8e8a8a"}},t)}const{Button:et,Popover:tt,PanelBody:nt}=wp.components,{useState:rt}=wp.element,{__:lt}=wp.i18n,{TextControl:ot}=wp.components,at=function({label:t,help:n}){const[r,l]=fe();return he("placeholder")?(0,e.createElement)(ot,{label:null!=t?t:lt("Placeholder","jet-form-builder"),value:r.placeholder,help:null!=n?n:"",onChange:e=>l({placeholder:e})}):null},{__:it}=wp.i18n,{ToggleControl:st}=wp.components,ct=function({label:t,help:n}){const[r,l]=fe();return he("add_prev")?(0,e.createElement)(st,{label:null!=t?t:it("Add Prev Page Button","jet-form-builder"),help:null!=n?n:it('It is recommended to use the "Action Button" block with the "Go to Prev Page" type',"jet-form-builder"),checked:r.add_prev,onChange:e=>l({add_prev:e})}):null},ut=function({children:t,className:n="",style:r={},...l}){return(0,e.createElement)("p",{className:"jet-fb-base-control__help"+(n?` ${n}`:""),style:{fontSize:"12px",fontStyle:"normal",color:"rgb(117, 117, 117)",marginTop:"0px",...r},...l},t)},{useBlockEditContext:dt}=wp.blockEditor,{useSelect:mt}=wp.data,{__:pt}=wp.i18n,ft=function({name:t=!1,children:n=null}){const{name:r}=dt(),l=mt((e=>{var n;if(!1===t)return!1;const l=e("core/blocks").getBlockType(r);return null!==(n=l.attributes[t]?.jfb)&&void 0!==n&&n}),[r,t]);return l?(0,e.createElement)(ut,{className:"jet-fb mb-24"},n&&(0,e.createElement)(e.Fragment,null,n," "),l?.shortcode&&!l.rich&&!n&&pt("You can use shortcodes here.","jet-form-builder"),l?.shortcode&&!l.rich&&n&&pt("You can also use shortcodes here.","jet-form-builder")):Boolean(n)&&(0,e.createElement)(ut,{className:"jet-fb mb-24"},n)},{__:ht}=wp.i18n,{TextControl:bt}=wp.components,gt=function({label:t,help:n}){const[r,l]=fe();return r.add_prev?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(bt,{label:null!=t?t:ht("Prev Page Button Label","jet-form-builder"),value:r.prev_label,className:"jet-fb m-unset",onChange:e=>l({prev_label:e})}),(0,e.createElement)(ft,{name:"prev_label"},null!=n?n:"")):null},{__:yt}=wp.i18n,{SelectControl:vt}=wp.components,wt=function({label:t,help:n}){const[r,l]=fe();return he("visibility")?(0,e.createElement)(vt,{options:[{value:"all",label:yt("For all","jet-form-builder")},{value:"logged_id",label:yt("Only for logged in users","jet-form-builder")},{value:"not_logged_in",label:yt("Only for NOT-logged in users","jet-form-builder")}],label:null!=t?t:yt("Field Visibility","jet-form-builder"),help:null!=n?n:"",value:r.visibility,onChange:e=>l({visibility:e})}):null},{__:_t}=wp.i18n,{TextControl:Et}=wp.components,Ct=function({label:t,help:n}){const[r,l]=fe();return(0,e.createElement)(Et,{label:null!=t?t:_t("CSS Class Name","jet-form-builder"),value:r.class_name,help:null!=n?n:"",onChange:e=>l({class_name:e})})},{InspectorAdvancedControls:kt}=wp.blockEditor,{__:St}=wp.i18n,{TextControl:jt}=wp.components;let{__experimentalUseFocusOutside:xt,useFocusOutside:Nt}=wp.compose;Nt=Nt||xt;const Ft=function({label:t,help:n}){const[r,l]=fe(),o=Nt((function(){We(r,l)}));return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(jt,{label:null!=t?t:St("Field Label","jet-form-builder"),className:"jet-fb m-unset",value:r.label,onChange:e=>l({label:e}),...o}),(0,e.createElement)(ft,{name:"label"},null!=n?n:""))},Tt={};for(const{id:e,name:t}of window.jetFormActionTypes)Tt[e]=t;const{__:Bt}=wp.i18n,{TextControl:It,Icon:At,Flex:Ot,Tooltip:Rt}=wp.components,{useInstanceId:Mt}=wp.compose,Pt=function t({label:n,help:r}){const[l,o]=fe(),{message:a}=function(){const{clientId:e}=(0,me.useBlockEditContext)(),t=(0,K.useRequestFields)({returnOnEmptyCurrentAction:!1}),{inFormFields:n,hasParent:r,fieldNames:l}=(0,pe.useSelect)((t=>{var n;const r=t("jet-forms/fields").getBlockById(e);return{hasParent:!!r?.parentBlock,fieldNames:null!==(n=r?.fields?.map?.((({value:e})=>e)))&&void 0!==n?n:[],inFormFields:t("jet-forms/fields").isUniqueName(e)}}),[e]);if(!n)return{error:"not_unique_in_fields",message:(0,d.__)("The form field name must be unique. Please change it","jet-form-builder")};if(r)return{};const o=t.find((({value:e})=>l.includes(e)));return o?{error:"not_unique_in_actions",message:o?.from?(0,d.sprintf)((0,d.__)("The %s action already uses this field name. Please change it","jet-form-builder"),Tt[o.from]):(0,d.__)("The form field name must be unique. Please change it","jet-form-builder")}:{}}(),i=Mt(t,"AdvancedInspectorControl");return he("name")?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ot,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,e.createElement)("label",{htmlFor:i,className:"jet-fb label"},null!=n?n:Bt("Form field name","jet-form-builder")),!!a&&(0,e.createElement)(Rt,{text:a,delay:200,placement:"top"},(0,e.createElement)(At,{icon:"warning",style:{color:"orange",cursor:"help"}}))),(0,e.createElement)(It,{id:i,value:l.name,help:null!=r?r:Bt("Should contain only lowercase Latin letters, numbers, “-”, or “_”. No spaces allowed.","jet-form-builder"),onChange:e=>o({name:e})})):null},{__:Lt}=wp.i18n,{TextControl:Gt}=wp.components,Dt=function({label:t,help:n}){const[r,l]=fe();return he("desc")?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Gt,{label:null!=t?t:Lt("Field Description","jet-form-builder"),value:r.desc,className:"jet-fb m-unset",onChange:e=>l({desc:e})}),(0,e.createElement)(ft,{name:"desc"},null!=n?n:"")):null},qt=function({value:t,onChange:n,title:r}){const[a,i]=(0,o.useState)(!1),[s,c]=(0,o.useState)(t);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(u.Button,{icon:"database",variant:"tertiary",isSmall:!0,className:"jet-fb-is-thick",onClick:()=>i(!0)}),a&&(0,e.createElement)(u.Modal,{size:"medium",title:null!=r?r:(0,d.__)("Edit Preset","jet-form-builder"),onRequestClose:()=>i(!1),className:l.ModalFooterStyle},(0,e.createElement)(Be,{key:"dynamic_key_preset",value:s,onChange:c}),(0,e.createElement)(l.StickyModalActions,null,(0,e.createElement)(u.Button,{isPrimary:!0,onClick:()=>{n(s),i(!1)}},(0,d.__)("Update","jet-form-builder")),(0,e.createElement)(u.Button,{isSecondary:!0,onClick:()=>{i(!1)}},(0,d.__)("Cancel","jet-form-builder")))))},{createContext:Vt}=wp.element,Jt=Vt(!1),{useState:$t,useRef:Ut}=wp.element,{Button:Ht,Popover:Wt}=wp.components,zt=function({children:t,...n}){const[r,l]=$t(!1),o=Ut();return(0,e.createElement)(Jt.Provider,{value:{showPopover:r,setShowPopover:l}},(0,e.createElement)(Ht,{ref:o,icon:"admin-tools",variant:"tertiary",isSmall:!0,className:"jet-fb-is-thick",onClick:()=>l((e=>!e)),...n}),r&&(0,e.createElement)(Wt,{anchor:o.current,position:"top-start",noArrow:!1,variant:"toolbar",onFocusOutside:e=>{e.relatedTarget!==o.current&&l(!1)},onClose:()=>l(!1)},t))},{createContext:Yt}=wp.element,Kt=Yt([]),{createContext:Xt}=wp.element,Zt=Xt({name:""});function Qt(){}Qt.prototype={fullName(){},fullHelp(){}};const en=Qt,{useState:tn}=wp.element,{Button:nn}=wp.components,rn=function({current:t,children:n}){const[r,l]=tn(!1);if(!(t instanceof en))return(0,e.createElement)("li",null,(0,e.createElement)(Zt.Provider,{value:t},n));const o=t.fullHelp.bind(t);return(0,e.createElement)("li",null,(0,e.createElement)(Zt.Provider,{value:t},(0,e.createElement)("div",{style:{display:"flex",alignItems:"center",gap:"0.6em"}},(0,e.createElement)(nn,{isSmall:!0,variant:"tertiary",icon:r?"arrow-down":"arrow-right",className:"jet-fb-is-thick",onClick:()=>l((e=>!e))}),n),r&&(0,e.createElement)(o,null)))},{Children:ln,cloneElement:on}=wp.element,{PanelBody:an}=wp.components,sn=function({title:t,items:n,children:r,initialOpen:l}){const o=n.map(((t,n)=>(0,e.createElement)(rn,{key:n,current:t})));return(0,e.createElement)(an,{title:t,initialOpen:l},(0,e.createElement)("ul",{style:{padding:"0 0.5em"}},ln.map(o,(e=>on(e,{},r)))))},{useContext:cn}=wp.element,{__:un}=wp.i18n,dn=function({children:t,fields:n,...r}){var l,o;const a=cn(Kt),i=[...null!==(l=a.beforeFields)&&void 0!==l?l:[],...n,...null!==(o=a.afterFields)&&void 0!==o?o:[]];return i.length||a?.extra?.length||a?.filters?.length?(0,e.createElement)(zt,{...r},Boolean(i.length)&&(0,e.createElement)(sn,{title:un("Fields:","jet-form-builder"),items:i,initialOpen:!0},t),Boolean(a?.extra?.length)&&(0,e.createElement)(sn,{title:un("Extra macros:","jet-form-builder"),items:a.extra},t),Boolean(a?.filters?.length)&&(0,e.createElement)(sn,{title:un("Filters:","jet-form-builder"),items:a.filters},t)):null},{useContext:mn}=wp.element,{Button:pn}=wp.components,fn=function({onClick:t}){const n=mn(Zt),r=n.fullName?n.fullName():`%${n.value}%`,l="function"==typeof n.label?n.label():n.label||r,o=Boolean(n.is_repeater)?`${l} (repeater)`:l,a=Boolean(n.is_repeater_child)?"- ":"";return n.supports_option_label?(0,e.createElement)("div",{className:"jet-fb-macro-field-item",style:{whiteSpace:"nowrap"}},(0,e.createElement)("div",{className:"jet-fb-macro-field-item__label"},o),(0,e.createElement)("div",{className:"jet-fb-macro-field-item__formats"},"- ",(0,e.createElement)(pn,{isLink:!0,onClick:()=>t(r,n)},"Format: value")," ",(0,e.createElement)("br",null),"- ",(0,e.createElement)(pn,{isLink:!0,onClick:()=>t(r,n,"option-label")},"Format: label value"))):(0,e.createElement)(e.Fragment,null,a,(0,e.createElement)(pn,{style:{whiteSpace:"nowrap"},isLink:!0,onClick:()=>t(r,n)},o))},hn=window.jfb.blocksToActions,bn=["jet-forms/checkbox-field","jet-forms/radio-field","jet-forms/select-field"];function gn(e){return bn.includes(e?.name)}function yn(e={}){return e.name||e.field_name||e.fieldName||""}const vn=function({onClick:t=()=>{},withCurrent:n=!1,...r}){const l=(0,hn.useFields)({excludeCurrent:!n}),o=(0,pe.useSelect)((e=>{const t=e("core/block-editor");return function(e=[]){const t={},n=(e,r=null)=>{(e||[]).forEach((e=>{const l=yn(e?.attributes),o="jet-forms/repeater-field"===e?.name;l&&(t[l]={is_repeater:o,is_repeater_child:Boolean(r)&&!o,repeater_name:r?yn(r.attributes):"",supports_option_label:gn(e)});const a=o?e:r;e?.innerBlocks?.length&&n(e.innerBlocks,a)}))};return n(e),t}(t?.getBlocks?.()||[])}),[]),a=(l||[]).map((e=>{const t=o?.[e?.value];return t?{...e,...t}:e}));return(0,e.createElement)(dn,{withCurrent:n,fields:a,...r},(0,e.createElement)(fn,{onClick:t}))},{Flex:wn}=wp.components,_n=function({label:t,children:n,...r}){return(0,e.createElement)(wn,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,e.createElement)("label",{className:"jet-fb label",...r},t),n)},{FlexItem:En}=wp.components,{useInstanceId:Cn}=wp.compose,kn=function({children:t,value:n,label:r,onChangePreset:l=!1,onChangeMacros:o=!1}){const a=Cn(En,"jfb-AdvancedInspectorControl");return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(_n,{label:r,htmlFor:a},!1!==l&&(0,e.createElement)(qt,{value:n,onChange:l}),!1!==o&&(0,e.createElement)(vn,{onClick:o})),"function"==typeof t?t({instanceId:a}):t)};function Sn(){en.call(this)}Sn.prototype=Object.create(en.prototype),Sn.prototype.isServerSide=!1,Sn.prototype.isClientSide=!1,Sn.prototype.name="",Sn.prototype.namespace="CT",Sn.prototype.help=null,Sn.prototype.fullHelp=function(){return this.help},Sn.prototype.fullName=function(){return`%${this.namespace}::${this.name}%`};const jn=Sn,{useSelect:xn}=wp.data,{__:Nn}=wp.i18n,Fn=new jn;Fn.fullName=()=>"%this%",Fn.fullHelp=()=>Nn("Returns current field value","jet-form-builder");const Tn=function({children:t,withThis:n=!1}){const r=xn((e=>e("jet-forms/macros").getClientMacros()),[]),l=xn((e=>e("jet-forms/macros").getClientFilters()),[]),o=n?{extra:r,afterFields:[Fn],filters:l}:{extra:r,filters:l};return(0,e.createElement)(Kt.Provider,{value:o},t)};function Bn(e,t,n){const r=n.selectionStart,l=n.selectionEnd;(e=null!=e?e:"").length||(t=`'${t}'`);let o=e.slice(0,r);const a=e.slice(l);return o+=t,setTimeout((()=>{n.focus(),n.selectionStart=o.length,n.selectionEnd=o.length})),o+a}const{useRef:In}=wp.element,An=function(e){var t;const[n,r]=fe(),l=null!==(t=n[e])&&void 0!==t?t:"",o=In();return[o,t=>{r({[e]:Bn(l,t,o.current)})}]},{__:On}=wp.i18n,{TextControl:Rn}=wp.components,Mn=function({label:t,help:n,hasMacro:r=!0}){const[l,o]=fe(),[a,i]=An("default");return he("default")?(0,e.createElement)(Fe.Provider,{value:{show:!0}},(0,e.createElement)(Tn,null,(0,e.createElement)(kn,{value:l.default,label:null!=t?t:On("Default Value","jet-form-builder"),onChangePreset:e=>o({default:e}),onChangeMacros:!!r&&i},(({instanceId:t})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Rn,{ref:a,id:t,value:l.default,className:"jet-fb m-unset",onChange:e=>o({default:e})}),(0,e.createElement)(ft,{name:"default"},null!=n?n:"")))))):null},{PanelBody:Pn}=wp.components,{__:Ln}=wp.i18n,{BlockControls:Gn}=wp.blockEditor,{useCopyToClipboard:Dn}=wp.compose,{TextControl:qn,ToolbarGroup:Vn,ToolbarItem:Jn,ToolbarButton:$n}=wp.components,Un=function({children:t=null}){const n=de(),[r,l]=fe(),o=$(`Copied "${r.name}" to clipboard.`),a=Dn(r.name,(()=>o(!0)));return(0,e.createElement)(Gn,{key:n("ToolBarFields-BlockControls")},(0,e.createElement)(Vn,{key:n("ToolBarFields-ToolbarGroup"),className:"jet-fb-block-toolbar"},(0,e.createElement)($n,{isSmall:!0,icon:"admin-page",showTooltip:!0,shortcut:"Copy name",ref:a}),(0,e.createElement)(Jn,{as:qn,value:r.name,onChange:e=>l({name:e})}),t))},{__:Hn}=wp.i18n,{ToolbarButton:Wn}=wp.components,{BlockControls:zn}=wp.blockEditor,{SVG:Yn,Path:Kn}=wp.primitives,Xn=function(){const[t,n]=fe();return he("required")?(0,e.createElement)(zn,{group:"block"},(0,e.createElement)(Wn,{icon:(0,e.createElement)(Yn,{xmlns:"http://www.w3.org/2000/svg",width:"24px",height:"24px",viewBox:"0 0 24 24",fill:"none"},(0,e.createElement)(Kn,{d:"M12 4L12 20",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Kn,{d:"M17.3137 6.00024L6.00001 17.314",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Kn,{d:"M20 12L4 12",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Kn,{d:"M17.3137 17.3137L6.00001 6.00001",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),title:t.required?Hn("Click to make this field optional","jet-form-builder"):Hn("Click to make this field required","jet-form-builder"),onClick:()=>n({required:!t.required}),isActive:t.required})):null},{__:Zn}=wp.i18n,{PanelBody:Qn}=wp.components,{applyFilters:er}=wp.hooks,{useBlockProps:tr}=wp.blockEditor,{applyFilters:nr}=wp.hooks,rr=()=>nr("jet.fb.register.fields.controls",{}),lr=window.wp.compose,or=(0,lr.compose)((0,pe.withSelect)(X))((function({initialLabel:t="Valid",label:n="InValid",apiArgs:r={},gatewayRequestId:l,loadingGateway:o,onLoading:a=()=>{},onSuccess:i=()=>{},onFail:s=()=>{},isHidden:c=!1}){return(0,e.createElement)(K.FetchApiButton,{id:l,loadingState:o,initialLabel:t,label:n,apiArgs:r,onFail:s,onLoading:a,onSuccess:i,isHidden:c})})),ar="CLEAR_GATEWAY",ir="CLEAR_SCENARIO",sr="SET_CURRENT_GATEWAY_SCENARIO",cr="SET_CURRENT_GATEWAY",ur="SET_CURRENT_GATEWAY_SPECIFIC",dr="SET_CURRENT_GATEWAY_INNER",mr="SET_CURRENT_REQUEST",pr="SET_CURRENT_SCENARIO",fr="REGISTER_EVENT_TYPE",hr="HARD_SET_CURRENT_GATEWAY",br="HARD_SET_CURRENT_GATEWAY_SPECIFIC",gr={getCurrentRequestId:e=>e.currentRequest.id,getCurrentRequest:e=>e.currentRequest,getScenario:e=>e.currentScenario,getScenarioId:e=>e.currentScenario?.id,getGatewayId:e=>e.currentGateway?.gateway,getGateway:e=>e.currentGateway,getEventTypes:e=>e.eventTypes},yr={...gr,getGatewaySpecific:e=>e.currentGateway[gr.getGatewayId(e)]||{}},vr={[ar]:e=>({...e,currentGateway:{}}),[ir]:e=>({...e,currentScenario:{}}),[sr]:(e,t)=>({...e,currentScenario:{...e.currentScenario,...t.item||{}}}),[cr]:(e,t)=>({...e,currentGateway:{...e.currentGateway,...t.item}}),[ur]:(e,t)=>({...e,currentGateway:{...e.currentGateway,[e.currentGateway.gateway]:{...yr.getGatewaySpecific(e),...t.item}}}),[dr]:(e,t)=>{const{key:n,value:r}=t.item;return{...e,currentGateway:{...e.currentGateway,[n]:{...e.currentGateway[n]||{},...r}}}},[mr]:(e,t)=>{const n=[yr.getGatewayId(e),t.item?.id].filter((e=>e));return t.item.id=n.join("/"),{...e,currentRequest:t.item}},[pr]:(e,t)=>({...e,currentScenario:{...e.currentScenario,[e.currentScenario?.id]:{...e.currentScenario[e.currentScenario?.id]||{},...t.item||{}}}}),[hr]:(e,t)=>(t.item&&(e.currentGateway[t.item]=t.value),{...e}),[br]:(e,t)=>(t.item&&e.currentGateway?.gateway&&(e.currentGateway[e.currentGateway?.gateway]={},e.currentGateway[e.currentGateway?.gateway][t.item]=t.value),{...e}),[fr]:(e,t)=>{var n,r;const l={...t.item,gateway:null!==(n=t.item?.gateway)&&void 0!==n?n:e.currentGateway?.gateway,scenario:null!==(r=t.item?.scenario)&&void 0!==r?r:e.currentScenario?.id};return e.eventTypes.push(l),e}},wr={currentRequest:{id:-1},currentGateway:{},currentScenario:{},eventTypes:[]},_r={clearGateway:()=>({type:ar}),clearScenario:()=>({type:ir}),setRequest:e=>({type:mr,item:e}),setGateway:e=>({type:cr,item:e}),setGatewayInner:e=>({type:dr,item:e}),setGatewaySpecific:e=>({type:ur,item:e}),setScenario:e=>({type:sr,item:e}),setCurrentScenario:e=>({type:pr,item:e}),registerEventType:e=>({type:fr,item:e}),hardSetGateway:(e,t="")=>({type:hr,item:e,value:t}),hardSetGatewaySpecific:(e,t="")=>({type:br,item:e,value:t})},{createReduxStore:Er}=wp.data,Cr=Er("jet-forms/gateways",{reducer:function(e=wr,t){const n=vr[t?.type];return n?n(e,t):e},actions:_r,selectors:yr}),kr="REGISTER",Sr="UNREGISTER",jr="LOCK_ACTIONS",xr="CLEAR_DYNAMIC_EVENTS",Nr={getTypeIndex:(e,t)=>e.types.findIndex((e=>e.value===t)),getTypes:e=>e.types,getGatewayTypes:e=>e.types.filter((e=>"gateway"in e)),getAlwaysTypes:e=>e.types.filter((e=>"always"in e)),getDynamicTypes:e=>e.types.filter((({isDynamic:e})=>e)),getType(e,t){const n=Nr.getTypeIndex(e,t);return e.types[n]},getUnsupported(e,t){var n;const r=null!==(n=e.lockedActions[t])&&void 0!==n&&n;return!1===r?[]:r.unsupported},getSupported(e,t){var n;const r=null!==(n=e.lockedActions[t])&&void 0!==n&&n;return!1===r?[]:r.supported},isValid(e,t,n){const r=Nr.getUnsupported(e,t);if(r.length&&r.includes(n))return!1;const l=Nr.getSupported(e,t);return!l.length||l.includes(n)},filterList:(e,t,n)=>n.filter((n=>Nr.isValid(e,t,n))),getHelpMap(e){const t={};for(const{value:n,help:r}of e.types)t[n]=r;return t},getEventValuesByGateway(e){const t={};for(const n of e.types){if(!n.gateway)continue;const e=n.gateway;t[e]||(t[e]=[]),t[e].push(n.value)}return t}},Fr={...Nr},Tr={[kr](e,t){const{types:n}=e;for(const r of t.items){r.title=r.label;const t=Fr.getTypeIndex(e,r.value);-1===t?n.push({...r}):n[t]={...r}}return{...e,types:n}},[jr](e){for(const{id:n,self:r}of window.jetFormActionTypes){var t;const l=null!==(t=window[r])&&void 0!==t&&t;if(!1===l)continue;const{__unsupported_events:o,__supported_events:a}=l,i={unsupported:e.types.filter((({self:e})=>o.includes(e))).map((({value:e})=>e)),supported:e.types.filter((({self:e})=>a.includes(e))).map((({value:e})=>e))};(i.supported.length||i.unsupported.length)&&(e.lockedActions[n]=i)}return e},[Sr](e,t){const{types:n}=t;return e.types=e.types.filter((({value:e})=>!n.includes(e))),e},[xr]:e=>(e.types=e.types.filter((({isDynamic:e=!1})=>!e)),e)},Br={types:[],labels:{},lockedActions:{}},Ir={register:e=>({type:kr,items:e}),lockActions:()=>({type:jr}),unRegister:e=>({type:Sr,types:e}),clearDynamicEvents:()=>({type:xr})},{createReduxStore:Ar}=wp.data,Or=Ar("jet-forms/events",{reducer:function(e=Br,t){const n=Tr[t?.type];return n?n(e,t):e},actions:Ir,selectors:Fr}),Rr="REGISTER",Mr="ADD_RENDER_STATE",Pr="ADD_RENDER_STATES",Lr="DELETE_RENDER_STATES",{doAction:Gr}=wp.hooks,Dr={...{[Rr](e,t){const{operators:n,functions:r,render_states:l}=t.items;return e.operators=[...n],e.functions=[...r],e.renderStates=[...l],Gr("jet.fb.change.blockConditions.renderState",e.renderStates),e},[Mr]:(e,t)=>(e.renderStates.push(t.item),Gr("jet.fb.change.blockConditions.renderState",e.renderStates),e),[Pr](e,t){for(const n of t.items)e.renderStates.push(n);return Gr("jet.fb.change.blockConditions.renderState",e.renderStates),e},[Lr](e,t){const n=Array.isArray(t.items)?[...t.items]:[t.items];return e.renderStates=e.renderStates.filter((({value:e})=>!n.includes(e))),Gr("jet.fb.change.blockConditions.renderState",e.renderStates),e}}},{__:qr}=wp.i18n,Vr=function(e,t="code"){var n;if(!function(e){let t;try{t=JSON.parse(e)}catch(e){return!1}return!!t?.jet_preset}(e=null!=e?e:""))return e;const r=JSON.parse(e),l=qr("Preset from","jet-form-builder"),o=null!==(n=r?.from)&&void 0!==n?n:"(empty)";let a;switch(t){case"code":a=`${o}`;break;case"b":a=`${o}`}return[l,a].join(" ")},{select:Jr}=wp.data,{__:$r}=wp.i18n,Ur=function(e){const t=Jr("jet-forms/block-conditions").getOperator(e?.operator);return t?[`${e?.field||"(no field)"}`,t.label].join(" "):""},Hr={functions:[],operators:[],conditionReaders:{default(e){const t=Jr("jet-forms/block-conditions").getOperator(e?.operator);if(!t)return"";const n=e?.field||"(no field)",r=Vr(e.value,"b")||"(no value)";return[`${n}`,t.label,`${r}`].join(" ")},empty:Ur,not_empty:Ur,render_state(e){var t;const n=(null!==(t=e?.render_state)&&void 0!==t?t:[]).map((e=>`${e}`));return[1===n.length?$r("Is render state","jet-form-builder"):$r("One of the render states","jet-form-builder"),n.join(", ")].join(": ")}},renderStates:[]},Wr={register:e=>({type:Rr,items:e}),addRenderState:e=>({type:Mr,item:e}),addRenderStates:e=>({type:Pr,items:e}),deleteRenderStates:e=>({type:Lr,items:e})},zr={getFunctions:e=>e.functions,getOperators:e=>e.operators,getRenderStates:e=>e.renderStates,getSwitchableRenderStates:e=>e.renderStates.filter((({is_custom:e=!1,can_be_switched:t=!1})=>e||t)),getCustomRenderStates:e=>e.renderStates.filter((({is_custom:e=!1})=>e)),getOperator(e,t){const n=e.operators.findIndex((({value:e})=>e===t));return-1!==n&&e.operators[n]},readCondition(e,t){var n;const{operator:r=""}=t;if(!r)return"";const l=null!==(n=e.conditionReaders[r])&&void 0!==n&&n;return"function"==typeof l?l(t):e.conditionReaders.default(t)},getFunction:(e,t)=>e.functions.find((({value:e})=>e===t)),getFunctionDisplay:(e,t)=>zr.getFunction(e,t)?.display},Yr={...zr},{createReduxStore:Kr}=wp.data,Xr=Kr("jet-forms/block-conditions",{reducer:function(e=Hr,t){const n=Dr[t?.type];return n?n(e,t):e},actions:Wr,selectors:Yr}),Zr="REGISTER_MACRO",Qr={[Zr](e,t){const{items:n,isClient:r}=t,l=Array.isArray(n)?n:[n];for(const e of l)if(!(e instanceof jn))throw new Error("^^^ Invalid macro item ^^^");return r?e.clientMacros.push(...l):e.serverMacros.push(...l),e}},{__:el}=wp.i18n;function tl(){jn.call(this),this.name="CurrentDate",this.isClientSide=!0,this.fullHelp=()=>(0,e.createElement)(e.Fragment,null,el("Returns the current timestamp. Replacing","jet-form-builder")," ",(0,e.createElement)("code",null,"Date.now()"))}tl.prototype=Object.create(jn.prototype);const nl=tl,{__:rl}=wp.i18n;function ll(){jn.call(this),this.name="Min_In_Sec",this.isClientSide=!0,this.help=rl("Number of milliseconds in one minute","jet-form-builder")}ll.prototype=Object.create(jn.prototype);const ol=ll,{__:al}=wp.i18n;function il(){jn.call(this),this.name="Month_In_Sec",this.isClientSide=!0,this.help=al("Number of milliseconds in one month","jet-form-builder")}il.prototype=Object.create(jn.prototype);const sl=il,{__:cl}=wp.i18n;function ul(){jn.call(this),this.name="Day_In_Sec",this.isClientSide=!0,this.help=cl("Number of milliseconds in one day","jet-form-builder")}ul.prototype=Object.create(jn.prototype);const dl=ul,{__:ml}=wp.i18n;function pl(){jn.call(this),this.name="Year_In_Sec",this.isClientSide=!0,this.help=ml("Number of milliseconds in one year","jet-form-builder")}pl.prototype=Object.create(jn.prototype);const fl=pl,{__:hl}=wp.i18n;function bl(){en.call(this)}bl.prototype=Object.create(en.prototype),bl.prototype.docArgument=!1,bl.prototype.help=null,bl.prototype.isServerSide=!1,bl.prototype.isClientSide=!1,bl.prototype.getArgumentsList=function(){if(!this.docArgument||!this.docArgument.length)return null;const e=Array.isArray(this.docArgument)?this.docArgument:[this.docArgument],t=[];for(const n of e)switch(n){case"string":case String:t.push(hl("String","jet-form-builder"));break;case"number":case Number:t.push(hl("Number","jet-form-builder"));break;case"array":case Array:t.push(hl("Array","jet-form-builder"));break;case"any":t.push(hl("Anything","jet-form-builder"))}return t.join(" | ")},bl.prototype.fullHelp=function(){if(!this.docArgument&&!this.help)return null;const t=this.help,n=this.getArgumentsList();return(0,e.createElement)(e.Fragment,null,n&&(0,e.createElement)("div",{style:{marginBottom:"0.5em"}},hl("Arguments:","jet-form-builder")+" ",(0,e.createElement)("code",null,n)),"function"!=typeof t?t:(0,e.createElement)(t,null))};const gl=bl,{__:yl}=wp.i18n;function vl(){gl.call(this),this.label=()=>yl("addDay","jet-form-builder"),this.fullName=()=>"|addDay",this.docArgument=Number,this.isClientSide=!0,this.help=yl("Adds the passed number of days via an argument to a macro that returns a date or a timestamp.","jet-form-builder")}vl.prototype=Object.create(gl.prototype);const wl=vl,{__:_l}=wp.i18n;function El(){gl.call(this),this.label=()=>_l("addMonth","jet-form-builder"),this.fullName=()=>"|addMonth",this.docArgument=Number,this.isClientSide=!0,this.help=_l("Adds the passed number of months via an argument to a macro that returns a date or a timestamp.","jet-form-builder")}El.prototype=Object.create(gl.prototype);const Cl=El,{__:kl}=wp.i18n;function Sl(){gl.call(this),this.label=()=>kl("addYear","jet-form-builder"),this.fullName=()=>"|addYear",this.docArgument=Number,this.isClientSide=!0,this.help=kl("Adds the passed number of years through an argument to a macro that returns a date or a timestamp.","jet-form-builder")}Sl.prototype=Object.create(gl.prototype);const jl=Sl,{__:xl}=wp.i18n;function Nl(){gl.call(this),this.label=()=>xl("ifEmpty","jet-form-builder"),this.fullName=()=>"|ifEmpty",this.docArgument="any",this.isClientSide=!0,this.help=xl("If the macro returns an empty value, then the filter returns the value passed in the argument","jet-form-builder")}Nl.prototype=Object.create(gl.prototype);const Fl=Nl,{__:Tl}=wp.i18n;function Bl(){gl.call(this),this.label=()=>Tl("length","jet-form-builder"),this.fullName=()=>"|length",this.isClientSide=!0,this.help=Tl("Returns the length of a string or array","jet-form-builder")}Bl.prototype=Object.create(gl.prototype);const Il=Bl,{__:Al}=wp.i18n;function Ol(){gl.call(this),this.label=()=>Al("toDate","jet-form-builder"),this.fullName=()=>"|toDate",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Al("Formats the timestamp according to the Date Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Al("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"2022-02-24"),(0,e.createElement)("hr",null),Al("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Al(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Al(").","jet-form-builder"),(0,e.createElement)("hr",null),Al("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toDate(false)"))}Ol.prototype=Object.create(gl.prototype);const Rl=Ol,{__:Ml}=wp.i18n;function Pl(){gl.call(this),this.label=()=>Ml("toDateTime","jet-form-builder"),this.fullName=()=>"|toDateTime",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Ml("Formats the timestamp according to the Datetime Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Ml("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"2022-02-24T04:25"),(0,e.createElement)("hr",null),Ml("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Ml(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Ml(").","jet-form-builder"),(0,e.createElement)("hr",null),Ml("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toDateTime(false)"))}Pl.prototype=Object.create(gl.prototype);const Ll=Pl,{__:Gl}=wp.i18n;function Dl(){gl.call(this),this.label=()=>Gl("toTime","jet-form-builder"),this.fullName=()=>"|toTime",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Gl("Formats the timestamp according to the Time Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Gl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"04:25"),(0,e.createElement)("hr",null),Gl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Gl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Gl(").","jet-form-builder"),(0,e.createElement)("hr",null),Gl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toTime(false)"))}Dl.prototype=Object.create(gl.prototype);const ql=Dl,{__:Vl}=wp.i18n;function Jl(){gl.call(this),this.label=()=>Vl("subDay","jet-form-builder"),this.fullName=()=>"|subDay",this.docArgument=Number,this.isClientSide=!0,this.help=Vl("Subtracts the number of days by argument from a macro that returns a date or timestamp.","jet-form-builder")}Jl.prototype=Object.create(gl.prototype);const $l=Jl,{__:Ul}=wp.i18n;function Hl(){gl.call(this),this.label=()=>Ul("subMonth","jet-form-builder"),this.fullName=()=>"|subMonth",this.docArgument=Number,this.isClientSide=!0,this.help=Ul("Subtracts the number of months by argument from a macro that returns a date or timestamp.","jet-form-builder")}Hl.prototype=Object.create(gl.prototype);const Wl=Hl,{__:zl}=wp.i18n;function Yl(){gl.call(this),this.label=()=>zl("subYear","jet-form-builder"),this.fullName=()=>"|subYear",this.docArgument=Number,this.isClientSide=!0,this.help=zl("Subtracts the number of years by argument from a macro that returns a date or timestamp.","jet-form-builder")}Yl.prototype=Object.create(gl.prototype);const Kl=Yl,{__:Xl}=wp.i18n;function Zl(){gl.call(this),this.label=()=>Xl("toDayInMs","jet-form-builder"),this.fullName=()=>"|toDayInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Xl("Converts a number of days into milliseconds.","jet-form-builder"))}Zl.prototype=Object.create(gl.prototype);const Ql=Zl,{__:eo}=wp.i18n;function to(){gl.call(this),this.label=()=>eo("toHourInMs","jet-form-builder"),this.fullName=()=>"|toHourInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,eo("Converts a number of hours into milliseconds.","jet-form-builder"))}to.prototype=Object.create(gl.prototype);const no=to,{__:ro}=wp.i18n;function lo(){gl.call(this),this.label=()=>ro("toMinuteInMs","jet-form-builder"),this.fullName=()=>"|toMinuteInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,ro("Converts a number of minutes into milliseconds.","jet-form-builder"))}lo.prototype=Object.create(gl.prototype);const oo=lo,{__:ao}=wp.i18n;function io(){gl.call(this),this.label=()=>ao("toMonthInMs","jet-form-builder"),this.fullName=()=>"|toMonthInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,ao("Converts a number of months into milliseconds.","jet-form-builder"))}io.prototype=Object.create(gl.prototype);const so=io,{__:co}=wp.i18n;function uo(){gl.call(this),this.label=()=>co("toWeekInMs","jet-form-builder"),this.fullName=()=>"|toWeekInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,co("Converts a number of weeks into milliseconds.","jet-form-builder"))}uo.prototype=Object.create(gl.prototype);const mo=uo,{__:po}=wp.i18n;function fo(){gl.call(this),this.label=()=>po("toYearInMs","jet-form-builder"),this.fullName=()=>"|toYearInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,po("Converts a number of years into milliseconds.","jet-form-builder"))}fo.prototype=Object.create(gl.prototype);const ho=fo,{__:bo}=wp.i18n;function go(){gl.call(this),this.label=()=>bo("Timestamp","jet-form-builder"),this.fullName=()=>"|T",this.isClientSide=!0,this.help=bo("Returns the time stamp. Usually used in conjunction with Date & Datetime and Time Field.","jet-form-builder",'Example\nFor Date Field\n%date_field|T%\nResult if date_field is filled with value "2022-10-22"')}go.prototype=Object.create(gl.prototype);const yo=go,vo={macros:[new nl,new ol,new dl,new sl,new fl],filters:[new Fl,new yo,new Il,new wl,new Cl,new jl,new $l,new Wl,new Kl,new Rl,new Ll,new ql,new oo,new no,new Ql,new mo,new so,new ho]},wo={registerMacro:(e,t=!0)=>({type:Zr,items:e,isClient:t})},_o={getClientMacros:e=>e.macros.filter((function(e){return e.isClientSide})),getServerMacros:e=>e.macros.filter((function(e){return e.isServerSide})),getClientFilters:e=>e.filters.filter((function(e){return e.isClientSide})),getServerFilters:e=>e.filters.filter((function(e){return e.isServerSide}))},{createReduxStore:Eo}=wp.data,Co=Eo("jet-forms/macros",{reducer:function(e=vo,t){const n=Qr[t?.type];return n?n(e,t):e},actions:wo,selectors:_o}),ko="REGISTER",So={[ko](e,t){const{messages:n,ssr_callbacks:r,formats:l,rule_types:o}=t.items;return e.messages=JSON.parse(JSON.stringify(n)),e.ssrCallbacks=JSON.parse(JSON.stringify(r)),e.formats=JSON.parse(JSON.stringify(l)),e.ruleTypes=JSON.parse(JSON.stringify(o)),e}},jo={...So},{select:xo}=wp.data,{__:No}=wp.i18n,Fo={messages:[],ssrCallbacks:[],formats:[],ruleTypes:[],ruleReaders:{default(e){const t=xo("jet-forms/validation").getRule(e.type);if(!t)return"";let n=e?.field||e?.value||"";return n=Vr(n,"b")||"(no value)",[t.label,`${n}`].join(" ")},ssr:e=>[No("Function:","jet-form-builder"),e?.value].join(" ")}},To={register:e=>({type:ko,items:e})},Bo={...{getRule(e,t){const n=e.ruleTypes.findIndex((({value:e})=>e===t));return-1!==n&&e.ruleTypes[n]},readRule(e,t){var n;const{type:r=""}=t;if(!r)return"";const l=null!==(n=e.ruleReaders[r])&&void 0!==n&&n;return"function"==typeof l?l(t):e.ruleReaders.default(t)}}},{createReduxStore:Io}=wp.data,Ao=Io("jet-forms/validation",{reducer:function(e=Fo,t){const n=jo[t?.type];return n?n(e,t):e},actions:To,selectors:Bo}),Oo="SET_BLOCKS",Ro="SET_BLOCKS_FIRST",Mo="TOGGLE_EXECUTE",Po={...{[Oo](e,t){const n=[];for(const r in t.blockMap)t.blockMap.hasOwnProperty(r)&&!e.blockMap.hasOwnProperty(r)&&n.push(r);return{...e,blocks:t.blocks,blockMap:t.blockMap,recentlyAdded:n}},[Ro]:(e,t)=>({...e,blocks:t.blocks,blockMap:t.blockMap}),[Mo]:e=>({...e,executed:!0})}},Lo={blocks:[],blockMap:{},executed:!1,recentlyAdded:[],sanitizers:{name:[e=>e.replace(/[^\w\-]/gi,""),e=>"children"===e?"_"+e:e]}},{select:Go}=wp.data,Do=function(){const e=[],t={};return j(((n,r)=>{var l;if(!n?.name?.includes("jet-forms/"))return;const o=Go("core/blocks").getBlockType(n.name),a=o.jfbResolveBlock.call(n);if(o.hasOwnProperty("jfbGetFields")&&(a.fields=o.jfbGetFields.call(n)),!r?.name)return e.push(a),void(t[a.clientId]=a);const i=null!==(l=t[r?.clientId])&&void 0!==l&&l;i&&(Object.defineProperty(a,"parentBlock",{get:()=>i}),i.innerBlocks=i?.innerBlocks||[],i.innerBlocks.push(a),t[a.clientId]=a)})),{blocks:e,blockMap:t}},{select:qo,dispatch:Vo}=wp.data,Jo={setBlocks(e=null){null===e&&(e=Do());const t=qo(Ko).isExecuted();return t||Vo(Ko).toggleExecute(),{type:t?Oo:Ro,blocks:e.blocks,blockMap:e.blockMap}},toggleExecute:()=>({type:Mo})},$o={getBlocks:e=>e.blocks,getBlockMap:e=>e.blockMap,getFields(e,{withInner:t=!0,currentId:n=!1}){const r=[],l=e=>{for(const o of e)o.fields?.length&&o.clientId!==n&&r.push(...o.fields),t&&o.innerBlocks?.length&&l(o.innerBlocks)};return l(e.blocks),r},isExecuted:e=>e.executed,isRecentlyAdded:(e,t)=>-1!==e.recentlyAdded.indexOf(t),getUniqueNames(e,t){var n,r;const l=null!==(n=e.blockMap[t])&&void 0!==n&&n;if(!l)return{hasChanged:!1};let o=!1;const a=null!==(r=l?.fields?.map?.((({value:e})=>e)))&&void 0!==r?r:[],i=l.hasOwnProperty("parentBlock")?l.parentBlock.innerBlocks:e.blocks,s=e=>{for(const t of e){const n=a.indexOf(t.value);-1!==n&&("field_name"!==t.value?(a[n]=`${a[n]}_copy`,o=!0,s(e)):o=!0)}};for(const e of i){var c;t!==e.clientId&&s(null!==(c=e?.fields)&&void 0!==c?c:[])}return{hasChanged:o,names:a.join("|")}},getSanitizedAttributes(e,t,{name:n}={}){for(const o in t){var r,l;if(!t.hasOwnProperty(o))continue;const a=null!==(r=null!==(l=e.sanitizers?.[n]?.[o])&&void 0!==l?l:e.sanitizers?.[o])&&void 0!==r&&r;if(a?.length)for(const e of a)"function"==typeof e&&(t[o]=e(t[o]))}return t},isUniqueName(e,t){const{hasChanged:n}=$o.getUniqueNames(e,t);return!n},getBlock:(e,t)=>e.blocks.find((({name:e,clientId:n})=>[e,n].includes(t))),getBlockByName(e,t){if(!t)return!1;const n=e=>{for(const r of e){if(r.fields.some((({value:e})=>e===t)))return r;r.innerBlocks?.length&&n(r.innerBlocks)}};return n(e.blocks),!1},getBlockNameByName(e,t){var n;const r=$o.getBlockByName(e,t);return null!==(n=r?.name)&&void 0!==n?n:""},getBlockById(e,t){var n;return null!==(n=e.blockMap[t])&&void 0!==n&&n}},Uo={...$o},{createReduxStore:Ho,dispatch:Wo,select:zo,subscribe:Yo}=wp.data,Ko="jet-forms/fields";let Xo,Zo;Yo((()=>{const{debounce:e}=window._,{setBlocks:t}=Wo(Ko);e((()=>{const e=zo("core/block-editor").getGlobalBlockCount();if(Xo!==e)return Xo=e,void t();const n=Do(),r=JSON.stringify(n.blocks);r!==Zo&&(Zo=r,t(n))}),100)()}));const Qo=Ho(Ko,{reducer:function(e=Lo,t){const n=Po[t?.type];return n?n(e,t):e},actions:Jo,selectors:Uo});n(4180);const{register:ea,dispatch:ta}=wp.data,{addAction:na}=wp.hooks;[Cr,Or,Xr,Co,Ao,Qo].forEach(ea),ta("jet-forms/events").register(window.jetFormEvents.types),ta("jet-forms/events").lockActions(),ta("jet-forms/validation").register(window.jetFormValidation),na("jet.fb.change.blockConditions.renderState","jet-form-builder/events",(function(e){ta("jet-forms/events").clearDynamicEvents();const t=e.map((({value:e})=>({value:e="ON."+e,label:e,isDynamic:!0})));ta("jet-forms/events").register(t)})),ta("jet-forms/block-conditions").register(window.jetFormBlockConditions);const{createContext:ra}=wp.element,la=ra(!1),{createContext:oa}=wp.element,aa=oa({currentItem:{},changeCurrentItem:()=>{},currentIndex:-1}),ia=(0,o.createContext)({isSupported:e=>!1,render:({children:e})=>e}),sa=(0,o.createContext)({isSupported:e=>!1,render:({currentItem:e,index:t})=>null}),ca=(0,o.createContext)({edit:e=>!0,move:e=>!0,clone:e=>!0,delete:e=>!0}),{createContext:ua}=wp.element,da=ua({}),{ToggleControl:ma}=wp.components,{__:pa}=wp.i18n,{useState:fa}=wp.element,{useContext:ha}=wp.element,ba=function(e){if(void 0===e)return null;const t=ha(la),n=function({oldIndex:t,newIndex:n}){e((e=>{const r=JSON.parse(JSON.stringify(e));return[r[n],r[t]]=[r[t],r[n]],r}))};return{changeCurrentItem:function(t,n){e((e=>{const r=JSON.parse(JSON.stringify(e));return r[n]={...e[n],...t},r}))},toggleVisible:function(t){e((e=>{const n=JSON.parse(JSON.stringify(e));return n[t].__visible=!n[t].__visible,n}))},moveDown:function(e){n({oldIndex:e,newIndex:e+1})},moveUp:function(e){n({oldIndex:e,newIndex:e-1})},cloneItem:function(t){e((e=>{const n=JSON.parse(JSON.stringify(e)),[r,l]=[n.slice(0,t+1),n.slice(t+1)];return[...r,n[t],...l]}))},addNewItem:function(t){e((e=>[...e,{__visible:!0,...t}]))},removeOption:function(n){t&&!(e=>confirm((0,d.sprintf)((0,d.__)("Are you sure you want to remove item %d?","jet-form-builder"),e+1)))(n)||e((e=>{const t=JSON.parse(JSON.stringify(e));return t.splice(n,1),t}))}}},{createContext:ga}=wp.element,ya=ga(!1),{Button:va}=wp.components,{useContext:wa}=wp.element,_a=function(t){var n;const{item:r,onSetState:l,functions:o,children:a}=t,{addNewItem:i}=null!==(n=null!=o?o:ba(l))&&void 0!==n?n:wa(ya);return(0,e.createElement)(va,{icon:"plus-alt2",isSecondary:!0,onClick:()=>i(r)},a)};let{Card:Ea,Button:Ca,CardHeader:ka,CardBody:Sa,ToggleGroupControl:ja,__experimentalToggleGroupControl:xa}=wp.components;const{useContext:Na}=wp.element,{__:Fa}=wp.i18n;ja=ja||xa;const Ta=function(t){var n;const{items:r,onSetState:l,functions:o,children:a}=t,{cloneItem:i,moveUp:s,moveDown:c,toggleVisible:u,changeCurrentItem:d,removeOption:m}=null!==(n=null!=o?o:ba(l))&&void 0!==n?n:Na(ya),{isSupported:p,render:f}=Na(sa),{edit:h,move:b,clone:g,delete:y}=Na(ca),v=({currentItem:t,index:n})=>p(t)?(0,e.createElement)(f,{currentItem:t,index:n}):(0,e.createElement)("span",{className:"repeater-item-title"},`#${n+1}`);return(0,e.createElement)("div",{className:"jet-form-builder__repeater-component",key:"jet-form-builder-repeater"},r.map(((t,n)=>(0,e.createElement)(Ea,{size:"small",elevation:2,className:"jet-form-builder__repeater-component-item",key:`jet-form-builder__repeater-component-item-${n}`},(0,e.createElement)(ka,{className:"repeater__item__header"},(0,e.createElement)("div",{className:"repeater-item__left-heading"},(0,e.createElement)(ja,{className:"repeater-action-buttons jet-fb-toggle-group-control",hideLabelFromVision:!0},(!h||h(t))&&(0,e.createElement)(Ca,{variant:"tertiary",isSmall:!0,icon:t.__visible?"no-alt":"edit",onClick:()=>u(n),className:"repeater-action-button jet-fb-is-thick"}),(!b||b(t))&&(0,e.createElement)(Ca,{variant:"tertiary",isSmall:!0,isSecondary:!0,disabled:!Boolean(n),icon:"arrow-up-alt2",onClick:()=>s(n),className:"repeater-action-button jet-fb-is-thick"}),(!b||b(t))&&(0,e.createElement)(Ca,{variant:"tertiary",isSmall:!0,isSecondary:!0,disabled:!(nc(n),className:"repeater-action-button jet-fb-is-thick"})),(0,e.createElement)(v,{currentItem:t,index:n})),(0,e.createElement)(ja,{className:"jet-fb-toggle-group-control",hideLabelFromVision:!0},(!g||g(t))&&(0,e.createElement)(Ca,{variant:"tertiary",isSmall:!0,isSecondary:!0,onClick:()=>i(n),className:"jet-fb-is-thick",icon:"admin-page"}),(!y||y(t))&&(0,e.createElement)(zt,{icon:"trash",isDestructive:!0},(0,e.createElement)(Jt.Consumer,null,(({setShowPopover:t})=>(0,e.createElement)("div",{style:{padding:"0.5em",width:"max-content"}},(0,e.createElement)("span",null,Fa("Delete this item?","jet-form-builder"))," ",(0,e.createElement)(Ca,{isLink:!0,isDestructive:!0,onClick:()=>m(n)},Fa("Yes","jet-form-builder"))," / ",(0,e.createElement)(Ca,{isLink:!0,onClick:()=>t(!1)},Fa("No","jet-form-builder")))))))),t.__visible&&(0,e.createElement)(Sa,{className:"repeater-item__content",key:`jet-form-builder__card-body-${n}`},(()=>{const r={currentItem:t,changeCurrentItem:e=>d(e,n),currentIndex:n};return(0,e.createElement)(aa.Provider,{value:r},!a&&"Set up your Repeater Template, please.","function"==typeof a?a(r):a)})())))))},{__experimentalToggleGroupControl:Ba,__experimentalToggleGroupControlOption:Ia}=wp.components,{__:Aa}=wp.i18n;let{formats:Oa}=window.jetFormValidation;const Ra=window.jfb.data,{messages:Ma}=window.jetFormValidation,Pa=function(e){return Ma.find((({id:t})=>e===t))},{TextControl:La}=wp.components,Ga=ke((0,o.forwardRef)((function({icon:e,size:t=24,...n},r){return(0,o.cloneElement)(e,{width:t,height:t,...n,ref:r})})))({name:"StyledIcon",class:"sfqmk5y",propsAsIs:!0});n(483);const{createContext:Da}=wp.element,qa=Da({FieldSelect:null,property:""}),Va=function({state:t,children:n}){const r=ba(t);return(0,e.createElement)(ya.Provider,{value:r},n)},Ja=window.wp.apiFetch;var $a=n.n(Ja);const{rest_add_state:Ua,rest_delete_state:Ha}=window.jetFormBlockConditions,{Fill:Wa}=c,za=({setShowModal:t,changeCurrentItem:n,currentItem:r})=>{var l;const[a,i]=(0,o.useState)(!1),[s,c]=(0,o.useState)({}),[m,p]=(0,o.useState)("");let f=[...null!==(l=r.render_state)&&void 0!==l?l:[]];const{addRenderState:b,deleteRenderStates:g}=(0,pe.useDispatch)("jet-forms/block-conditions"),y=(0,pe.useSelect)((e=>e("jet-forms/block-conditions").getCustomRenderStates()),[a,s]);return(0,e.createElement)(h,{title:(0,d.__)("Register custom render state","jet-form-builder"),onRequestClose:()=>t(!1),classNames:["width-45"]},(0,e.createElement)("div",{className:"jet-fb with-button"},(0,e.createElement)(u.TextControl,{value:m,onChange:e=>p(e),placeholder:(0,d.__)("Set your custom state name","jet-form-builder")}),(0,e.createElement)(u.Button,{variant:"secondary",onClick:()=>{i(!0),Ua.data={value:m},$a()(Ua).then((e=>{var r;r=e.state,b(r),f.push(r.value),n({render_state:f}),i(!1),t(!1)})).catch((e=>{console.error(e),i(!1)}))},disabled:a,isBusy:a,style:{padding:"7px 12px",height:"unset"}},(0,d.__)("Add","jet-form-builder"))),Boolean(y?.length)&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",{className:"jet-fb flex mb-05-em"},(0,d.__)("Manage your custom states:","jet-form-builder")),(0,e.createElement)("div",{className:"jet-fb-buttons-flex"},y.map((t=>{var r;return(0,e.createElement)(u.Button,{key:t.value,icon:"no-alt",iconPosition:"right",onClick:()=>{return e=t.value,Ha.data={list:[e]},c((t=>({...t,[e]:!0}))),void $a()(Ha).then((()=>{(e=>{g(e),f=f.filter((t=>t!==e)),n({render_state:f})})(e)})).catch(console.error).finally((()=>{c((t=>({...t,[e]:!1})))}));var e},isBusy:null!==(r=s[t.value])&&void 0!==r&&r},t.label)})))),(0,e.createElement)(Wa,null,(0,e.createElement)("span",null)))},{Button:Ya,BaseControl:Ka,FormTokenField:Xa}=wp.components,{__:Za}=wp.i18n,{useState:Qa}=wp.element,{useSelect:ei}=wp.data,ti=({currentItem:t,changeCurrentItem:n})=>{const[r,l]=Qa(!1),o=ei((e=>y(e("jet-forms/block-conditions").getRenderStates(),"value")),[r]);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ka,{label:Za("Render State","jet-form-builder"),className:"control-flex"},(0,e.createElement)("div",null,(0,e.createElement)("label",{className:"jet-fb label mb-05-em"},Za("Add render state","jet-form-builder")),(0,e.createElement)("div",{className:"jet-fb with-button clear-label"},(0,e.createElement)(Xa,{value:t.render_state,suggestions:o,onChange:e=>n({render_state:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0}),(0,e.createElement)(Ya,{label:Za("New render state","jet-form-builder"),variant:"secondary",icon:"plus-alt2",onClick:()=>l(!0)})))),r&&(0,e.createElement)(za,{setShowModal:l,changeCurrentItem:n,currentItem:t}))},ni=function({children:t,value:n,label:r,onChangePreset:l=!1,onChangeMacros:o=!1,macroWithCurrent:a=!1}){const i=(0,lr.useInstanceId)(u.FlexItem,"jfb-AdvancedModalControl");return(0,e.createElement)("div",{className:"components-base-control"},(0,e.createElement)(u.Flex,{align:"flex-start",className:"components-base-control__field"},(0,e.createElement)(u.FlexItem,{isBlock:!0},(0,e.createElement)(u.Flex,{align:"center",justify:"flex-start"},(0,e.createElement)("label",{htmlFor:i,className:"jet-fb label"},r),!1!==l&&(0,e.createElement)(qt,{value:n,onChange:l}),!1!==o&&(0,e.createElement)(vn,{onClick:o,withCurrent:a}))),(0,e.createElement)(u.FlexItem,{isBlock:!0,style:{flex:3,marginLeft:"unset"}},"function"==typeof t?t({instanceId:i}):t)))},{TextareaControl:ri,withFilters:li}=wp.components,{__:oi}=wp.i18n,ai=li("jet.fb.block.conditions.options")((t=>{const{currentItem:n,changeCurrentItem:r}=t,l=de();return["empty","not_empty"].includes(n.operator)?null:"render_state"===n.operator?(0,e.createElement)(ti,{key:l("RenderStateOptions"),changeCurrentItem:r,currentItem:n}):(0,e.createElement)(Tn,null,(0,e.createElement)(ni,{value:n.value,label:oi("Value to compare","jet-form-builder"),onChangePreset:e=>r({value:e}),onChangeMacros:e=>{var t;return r({value:(null!==(t=n.value)&&void 0!==t?t:"")+e})}},(({instanceId:t})=>(0,e.createElement)(ri,{id:t,value:n.value,onChange:e=>r({value:e})}))))})),{SelectControl:ii,withFilters:si}=wp.components,{__:ci}=wp.i18n,ui=si("jet.fb.block.conditions.options")((t=>{const{currentItem:n,changeCurrentItem:r}=t,l=(0,hn.useFields)({placeholder:"--"});return"render_state"===n.operator?null:(0,e.createElement)(ii,{label:ci("Field","jet-form-builder"),labelPosition:"side",value:n.field,options:l,onChange:e=>{r({field:e})}})})),{useContext:di}=wp.element,{SelectControl:mi}=wp.components,{__:pi}=wp.i18n,fi=function(){const{currentItem:t,changeCurrentItem:n}=di(aa),r=de(),{operators:l}=ce();return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ui,{currentItem:t,changeCurrentItem:n}),(0,e.createElement)(mi,{key:r("SelectControl-operator"),label:pi("Operator","jet-form-builder"),labelPosition:"side",value:t.operator,options:l,onChange:e=>n({operator:e})}),(0,e.createElement)(ai,{currentItem:t,changeCurrentItem:n}))},{select:hi}=wp.data,bi=function(e){return hi("jet-forms/block-conditions").readCondition(e)},{__:gi}=wp.i18n,yi=function({children:t}){return(0,e.createElement)(sa.Provider,{value:{isSupported:()=>!0,render:({currentItem:t})=>(0,e.createElement)("span",{className:"repeater-item-title",dangerouslySetInnerHTML:{__html:t?.or_operator?gi("OR","jet-form-builder"):bi(t)}})}},(0,e.createElement)(ca.Provider,{value:{edit:e=>!e.or_operator}},t))},{__:vi}=wp.i18n,{useState:wi,useContext:_i,Fragment:Ei,useEffect:Ci,useRef:ki}=wp.element,{SelectControl:Si,TextareaControl:ji,FlexItem:xi,Flex:Ni,ToggleControl:Fi}=wp.components,Ti=[{key:"commas",render:()=>(0,e.createElement)("li",null,vi("If this field supports multiple values, you can separate them with commas. If a string value is expected, wrap it in single quotes like '%value_field%'.","jet-form-builder"))}],Bi=[{value:"on_change",label:vi("On change conditions result","jet-form-builder"),help:vi("The value will be applied if condition check-ups return a result different from the first check-up's cached value","jet-form-builder")},{value:"once",label:vi("Once","jet-form-builder"),help:vi("The value will be applied only the first time the condition is matched","jet-form-builder")},{value:"always",label:vi("Always","jet-form-builder"),help:vi("The value will be applied every time the condition is matched","jet-form-builder")}],Ii=e=>Bi.find((t=>t.value===(null!=e?e:"on_change"))).help,Ai=function(){var t,n,r,l;const{current:o,update:a}=_i(da),[i,s]=wi((()=>o)),c=ki(null),[u,d]=wi((()=>Ii(i.frequency)));Ci((()=>{d(Ii(i.frequency))}),[i.frequency]);const m=e=>{s((t=>({...t,...e})))};return W((()=>a(i))),(0,e.createElement)(Ei,null,(0,e.createElement)(Ni,{align:"flex-start"},(0,e.createElement)(xi,{isBlock:!0},(0,e.createElement)(Ni,{align:"center",justify:"flex-start"},(0,e.createElement)("span",{className:"jet-fb label"},vi("Value to set","jet-form-builder")),(0,e.createElement)(qt,{value:i.to_set,onChange:e=>m({to_set:e})}),(0,e.createElement)(Tn,{withThis:!0},(0,e.createElement)(vn,{onClick:e=>(e=>{const t=c.current;if(t){const n=t.selectionStart,r=t.selectionEnd,l=i.to_set||"",o=l.slice(0,n)+e+l.slice(r);m({to_set:`${o}`}),setTimeout((()=>{t.focus(),t.selectionStart=t.selectionEnd=n+e.length}),0)}})(e)}))),(0,e.createElement)(ut,null,(0,e.createElement)("ul",null,Ti.map((t=>(0,e.createElement)(Ei,{key:t.key},t.render())))))),(0,e.createElement)(xi,{isBlock:!0,style:{flex:3,marginLeft:"unset"}},(0,e.createElement)(ji,{className:"jet-control-clear",hideLabelFromVision:!0,value:null!==(t=i.to_set)&&void 0!==t?t:"",onChange:e=>m({to_set:e}),ref:c}))),(0,e.createElement)(Si,{options:Bi,value:null!==(n=i.frequency)&&void 0!==n?n:"on_change",label:vi("Apply type","jet-form-builder"),labelPosition:"side",onChange:e=>m({frequency:e}),help:u}),(0,e.createElement)(Va,{state:e=>{var t;m({conditions:"function"==typeof e?e(null!==(t=i.conditions)&&void 0!==t?t:[]):e})}},(0,e.createElement)(yi,null,(0,e.createElement)(Ta,{items:null!==(r=i.conditions)&&void 0!==r?r:[]},(0,e.createElement)(fi,null))),(0,e.createElement)("div",{className:"jet-fb flex jc-space-between ai-center"},(0,e.createElement)(_a,null,vi("Add New Condition","jet-form-builder")),(0,e.createElement)(Fi,{className:"jet-fb m-unset clear-control",label:vi("Set value only if field is empty","jet-form-builder"),checked:null!==(l=i.set_on_empty)&&void 0!==l&&l,onChange:e=>m({set_on_empty:e})}))))},{__:Oi}=wp.i18n,{Children:Ri,cloneElement:Mi}=wp.element,Pi=function({conditions:t,showWarning:n=!1}){let r=[],l="";return Boolean(t?.length)&&(l=bi(t[0]),r=t.filter(((e,t)=>0!==t)).map(((t,n)=>(0,e.createElement)("span",{key:n,"data-title":Oi("And","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:bi(t)}})))),l?(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Oi("If","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:l}}),Ri.map(r,Mi)):n&&(0,e.createElement)("span",{"data-title":Oi("The condition is not fully configured.","jet-form-builder")})},Li=function({isHover:t=!1,children:n}){return(0,e.createElement)("div",{className:["jet-fb",t?"show":"hide","p-absolute","wh-100","flex-center","gap-05em"].join(" "),style:{backgroundColor:"#ffffffcc",transition:"0.3s"}},n)},Gi=function({children:t}){return(0,e.createElement)("div",{className:["jet-fb","flex","flex-dir-column","container","gap-1em"].join(" ")},t)},{__:Di}=wp.i18n,{useState:qi}=wp.element,{Button:Vi}=wp.components,Ji=function({current:t,update:n,isOpenModal:r,setOpenModal:l}){const[o,a]=qi(!1),[i,s]=qi(!1),c=1>=Object.keys(t)?.length;return(0,e.createElement)(da.Provider,{value:{update:e=>{n((n=>{const r=JSON.parse(JSON.stringify(n.groups));for(const n in r)r.hasOwnProperty(n)&&t.id===r[n].id&&(r[n]={...r[n],...e});return{groups:r}}))},current:t}},(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>s(!0),onFocus:()=>s(!0),onMouseOut:()=>s(!1),onBlur:()=>s(!1)},(0,e.createElement)(Li,{isHover:i},(0,e.createElement)(Vi,{isSmall:!0,isSecondary:!0,icon:o?"no-alt":"edit",onClick:()=>a((e=>!e))},Di("Edit","jet-form-builder")),(0,e.createElement)(Vi,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{n((e=>({groups:JSON.parse(JSON.stringify(e.groups)).filter((({id:e})=>e!==t.id))})))}},Di("Delete","jet-form-builder"))),(0,e.createElement)(Gi,null,c?(0,e.createElement)("div",{"data-title":Di("This value item is empty","jet-form-builder")}):(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Di("Set","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:Vr(t.to_set)}}),(0,e.createElement)(Pi,{conditions:t?.conditions})))),(o||r===t.id)&&(0,e.createElement)(h,{classNames:["width-60"],onRequestClose:()=>{a(!1),l(!1)},title:Di("Edit Dynamic Value","jet-form-builder")},(0,e.createElement)(Ai,null)))},$i=function({children:t,...n}){return(0,e.createElement)("div",{className:"jet-fb flex flex-dir-column gap-default",style:{marginBottom:"1em"},...n},t)},{__:Ui}=wp.i18n,{useState:Hi}=wp.element,{Button:Wi}=wp.components,zi=function(){var t,n;const[r,l]=fe(),o=de(),a=null!==(t=r.value)&&void 0!==t?t:{},i=null!==(n=a.groups)&&void 0!==n?n:[],[s,c]=Hi(!1);if(!he("value"))return null;const u=i.filter(((e,t)=>0!==t)),d=e=>{l({...r,value:{...a,..."function"==typeof e?e(a):e}})};return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ut,null,Ui("Or use a condition-dependent value","jet-form-builder")+" ",(0,e.createElement)(Wi,{isLink:!0,onClick:()=>{},label:Ui("Former Set Value functionality, moved from the Conditional Block","jet-form-builder"),showTooltip:!0},"(?)")),Boolean(i.length)?(0,e.createElement)($i,null,(0,e.createElement)(Ji,{key:o(i[0].id),current:i[0],update:d,isOpenModal:s,setOpenModal:c}),Boolean(u.length)&&u.map((t=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",null,Ui("OR","jet-form-builder")),(0,e.createElement)(Ji,{key:o(t.id),current:t,update:d,isOpenModal:s,setOpenModal:c}))))):null,(0,e.createElement)(Wi,{icon:"plus-alt2",isSecondary:!0,onClick:()=>{const e=k.getRandomID();d({groups:[...i,{id:e,conditions:[{__visible:!0}]}]}),c(e)}},Ui("Add Dynamic Value","jet-form-builder")))},{Button:Yi}=wp.components,{useContext:Ki}=wp.element,{SelectControl:Xi}=wp.components,{useContext:Zi,useMemo:Qi}=wp.element,{__:es}=wp.i18n,ts=function(){const{currentItem:t,changeCurrentItem:n}=Zi(aa),r=Qi((()=>O(es("Custom value","jet-form-builder"))),[]);return(0,e.createElement)(Xi,{labelPosition:"side",options:r,label:es("Choose field","jet-form-builder"),value:t.field,onChange:e=>n({field:e})})},{SelectControl:ns,TextareaControl:rs,TextControl:ls,withFilters:os}=wp.components,{useContext:as,useState:is,useEffect:ss}=wp.element,{__:cs}=wp.i18n,{addFilter:us}=wp.hooks,{rule_types:ds,ssr_callbacks:ms}=window.jetFormValidation,ps=ms.map((({value:e})=>e));function fs(e){var t;const n=ds.findIndex((({value:t})=>t===e)),r=cs("Enter value","jet-form-builder");return-1===n?r:null!==(t=ds[n]?.control_label)&&void 0!==t?t:r}us("jet.fb.advanced.rule.controls","jet-form-builder",(t=>n=>{const{currentItem:r,changeCurrentItem:l}=n,[o,a]=is(!1),[i]=(0,K.useActions)(),s=i.some((e=>"save_record"===e.type&&(void 0===e.is_execute||!0===e.is_execute)))?"success":"error";if("ssr"!==r.type)return(0,e.createElement)(t,{...n});const c=r.value||"custom_jfb_field_validation";return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ns,{labelPosition:"side",options:k.withPlaceholder(ms,cs("Custom function","jet-form-builder")),label:cs("Choose callback","jet-form-builder"),value:r.value,onChange:e=>l({value:e})}),"is_field_value_unique"===r.value&&(0,e.createElement)(u.Notice,{status:s,isDismissible:!1},cs("This callback requires the Save Form Record action to work correctly.","jet-form-builder")),"is_user_password_valid"===r.value&&(0,e.createElement)(u.Notice,{status:"success",isDismissible:!1},cs("Works only for logged users.","jet-form-builder")),!ps.includes(r.value)&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ls,{label:cs("Function name","jet-form-builder"),value:r.value,onChange:e=>l({value:e})}),(0,e.createElement)(ut,null,cs("Example of registering a function below.","jet-form-builder")+" ",(0,e.createElement)("a",{href:"javascript:void(0)",onClick:()=>a((e=>!e))},cs(o?"Hide":"Show","jet-form-builder"))),o&&(0,e.createElement)("pre",null,`/**\n * To get all the values of the fields in the form, you can use the expression:\n * jet_fb_request_handler()->get_request() or $context->get_request()\n *\n * If the field is located in the middle of the repeater, then only\n * jet_fb_request_handler()->get_request(), but $context->get_request() \n * will return the values of all fields of the current repeater element\n *\n * @param $value mixed\n * @param $context \\Jet_Form_Builder\\Request\\Parser_Context\n *\n * @return bool\n */\nfunction ${c}( $value, $context ): bool {\n\t// your logic\n\treturn true;\n}`)))}));const hs=os("jet.fb.advanced.rule.controls")((function({currentItem:t,changeCurrentItem:n}){const[r,l]=is((()=>fs(t.type)));switch(ss((()=>{l(fs(t.type))}),[t.type]),t.type){case"equal":case"contain":case"contain_not":case"regexp":case"regexp_not":return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ts,null),!Boolean(t.field)&&(0,e.createElement)(ni,{value:t.value,label:r,onChangePreset:e=>n({value:e}),onChangeMacros:e=>{var r;return n({value:(null!==(r=t.value)&&void 0!==r?r:"")+e})}},(({instanceId:r})=>(0,e.createElement)(rs,{id:r,value:t.value,onChange:e=>n({value:e})}))));default:return null}})),bs=function(){const{currentItem:t,changeCurrentItem:n}=as(aa);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ns,{labelPosition:"side",options:k.withPlaceholder(ds),label:cs("Rule type","jet-form-builder"),value:t.type,onChange:e=>n({type:e})}),(0,e.createElement)(hs,{currentItem:t,changeCurrentItem:n}),(0,e.createElement)(rs,{label:cs("Error message","jet-form-builder"),value:t.message,onChange:e=>n({message:e})}))},{select:gs}=wp.data,ys=function(e){return gs("jet-forms/validation").readRule(e)},{useState:vs}=wp.element,{__:ws}=wp.i18n,_s=function(){const[t,n]=fe(),[r,l]=vs((()=>{var e;return null!==(e=t.validation?.rules)&&void 0!==e?e:[]}));return W((()=>{n((e=>({...e,validation:{...t.validation,rules:r}})))})),(0,e.createElement)(Va,{state:l},(0,e.createElement)(sa.Provider,{value:{isSupported:()=>!0,render:({currentItem:t})=>(0,e.createElement)("span",{className:"repeater-item-title",dangerouslySetInnerHTML:{__html:ys(t)}})}},(0,e.createElement)(Ta,{items:r},(0,e.createElement)(bs,null))),(0,e.createElement)(_a,null,ws("Add Rule","jet-form-builder")))},{createContext:Es}=wp.element,Cs=Es({showModal:!1,setShowModal:()=>{}}),{useContext:ks,useState:Ss}=wp.element,{__:js}=wp.i18n,{Button:xs}=wp.components,Ns=function(){const{setShowModal:t}=ks(Cs),[n,r]=fe(),[l,o]=Ss(!1);return(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>o(!0),onFocus:()=>o(!0),onMouseOut:()=>o(!1),onBlur:()=>o(!1)},(0,e.createElement)(Li,{isHover:l},(0,e.createElement)(xs,{isSmall:!0,isSecondary:!0,icon:"plus-alt2",onClick:()=>{r({validation:{...n.validation,rules:[{__visible:!0}]}}),t((e=>!e))}},js("Add new","jet-form-builder"))),(0,e.createElement)(Gi,null,(0,e.createElement)("span",{"data-title":js("You have no rules for this field.","jet-form-builder")}),(0,e.createElement)("span",{"data-title":js("Please click here to add new.","jet-form-builder")})))},{__:Fs}=wp.i18n,Ts=function({rule:t}){return t.type?(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Fs("Rule:","jet-form-builder"),dangerouslySetInnerHTML:{__html:ys(t)}}),Boolean(t.message)&&(0,e.createElement)("span",{"data-title":Fs("Message:","jet-form-builder"),dangerouslySetInnerHTML:{__html:t.message}})):(0,e.createElement)("span",{"data-title":Fs("The rule is not fully configured.","jet-form-builder")})},{useContext:Bs,useState:Is}=wp.element,{__:As}=wp.i18n,{Button:Os}=wp.components,Rs=function({rule:t,index:n=0}){const{setShowModal:r}=Bs(Cs),[l,o]=fe(),[a,i]=Is(!1);return(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>i(!0),onFocus:()=>i(!0),onMouseOut:()=>i(!1),onBlur:()=>i(!1)},(0,e.createElement)(Li,{isHover:a},(0,e.createElement)(Os,{isSmall:!0,isSecondary:!0,icon:"edit",onClick:()=>{o({validation:{...l.validation,rules:l.validation.rules.map(((e,t)=>(e.__visible=n===t,e)))}}),r((e=>!e))}},As("Edit","jet-form-builder")),(0,e.createElement)(Os,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{o({validation:{...l.validation,rules:l.validation.rules.filter(((e,t)=>t!==n))}})}},As("Delete","jet-form-builder"))),(0,e.createElement)(Gi,null,(0,e.createElement)(Ts,{rule:t})))},{__:Ms}=wp.i18n,{Children:Ps,cloneElement:Ls}=wp.element;const Gs=function(){const[t]=fe();return t?.validation?.rules?.length?(0,e.createElement)($i,null,Ps.map(function(t){const n=t.filter(((e,t)=>0!==t));return[(0,e.createElement)(Rs,{rule:t[0],key:"first_item"}),...n.map(((t,n)=>((t,n)=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",null,Ms("AND","jet-form-builder")),(0,e.createElement)(Rs,{rule:t,index:n})))(t,n+1)))]}(t.validation.rules),Ls)):(0,e.createElement)(Ns,null)},{useState:Ds}=wp.element,{__:qs}=wp.i18n,{useBlockProps:Vs}=wp.blockEditor,{TextControl:Js,SelectControl:$s,ToggleControl:Us,BaseControl:Hs,__experimentalNumberControl:Ws}=wp.components;let{NumberControl:zs}=wp.components;void 0===zs&&(zs=Ws);const{FormToggle:Ys,BaseControl:Ks,Flex:Xs}=wp.components,{useInstanceId:Zs}=wp.compose,{useBlockProps:Qs}=wp.blockEditor,{useEffect:ec}=wp.element,{useSelect:tc}=wp.data,{useBlockProps:nc}=wp.blockEditor,{useSelect:rc}=wp.data,{CustomSelectControl:lc,Icon:oc}=wp.components,{useBlockEditContext:ac}=wp.blockEditor,{Children:ic,cloneElement:sc,useContext:cc}=wp.element,{useSelect:uc}=wp.data,{useBlockEditContext:dc}=wp.blockEditor;let{__experimentalToggleGroupControl:mc,__experimentalToggleGroupControlOptionIcon:pc,__experimentalToolbarContext:fc,ToggleGroupControl:hc,ToggleGroupControlOptionIcon:bc,ToolbarItem:gc,ToolbarGroup:yc,ToolbarContext:vc}=wp.components;function wc({value:t}){const{name:n}=dc(),r=cc(vc),[,l]=fe(),{variations:o,components:a}=uc((t=>{const{getBlockVariations:l}=t("core/blocks"),o=l(n,"block");return{variations:o,components:o.map((t=>{var n;return(null!==(n=r?.currentId)&&void 0!==n?n:r?.baseId)?(0,e.createElement)(gc,{key:t.name,as:bc,value:t.name,label:t.title,icon:t.icon}):(0,e.createElement)(bc,{key:t.name,value:t.name,label:t.title,icon:t.icon})}))}}),[]);return o.length?(0,e.createElement)("div",{className:"jfb-variations-toolbar-toggle"},(0,e.createElement)(hc,{hideLabelFromVision:!0,onChange:e=>l({...o.find((({name:t})=>t===e)).attributes}),value:t,isBlock:!0},ic.map(a,sc))):null}hc=hc||mc,bc=bc||pc,vc=vc||fc;const{useSelect:_c}=wp.data,{useBlockEditContext:Ec}=wp.blockEditor,{get:Cc}=window._,{useBlockProps:kc,RichText:Sc}=wp.blockEditor,{Button:jc}=wp.components,{createContext:xc}=wp.element,Nc=xc({}),{useContext:Fc}=wp.element,{useState:Tc}=wp.element,{get:Bc}=window._,{useSelect:Ic,useDispatch:Ac}=wp.data;var Oc,Rc,Mc;window.JetFBComponents={...null!==(Oc=window?.JetFBComponents)&&void 0!==Oc?Oc:{},BaseLabel:_n,ActionFieldsMap:function({fields:t=[],label:n="[Empty label]",children:a=null,plainHelp:i="",customHelp:s=!1}){return(0,e.createElement)(l.RowControl,{align:"flex-start"},(0,e.createElement)(l.Label,null,n),(0,e.createElement)(l.RowControlEnd,null,s&&"function"==typeof s&&s(),Boolean(i.length)&&(0,e.createElement)("span",{className:"description-controls"},i),t.map((([t,n],l)=>(0,e.createElement)(o.Fragment,{key:`field_in_map_${t+l}`},(0,e.createElement)(r.Provider,{value:{name:t,data:n,index:l}},"function"==typeof a?a({fieldId:t,fieldData:n,index:l}):a))))))},ActionModal:h,ActionModalContext:i,SafeDeleteContext:la,RepeaterItemContext:aa,RepeaterBodyContext:ia,RepeaterHeadContext:sa,RepeaterButtonsContext:ca,ActionFieldsMapContext:r,CurrentPropertyMapContext:qa,BlockValueItemContext:da,DynamicPropertySelect:function({dynamic:t=[],parseValue:n=null,children:a=null,properties:i=null}){const{source:s,settings:c,setMapField:u}=(0,o.useContext)(K.CurrentActionEditContext);i=null!=i?i:s.properties;const{name:d,index:m}=(0,o.useContext)(r),{fields_map:p={}}=c;function f(e){var r;for(const t of i)if(e===t.value)return e;return n?n(e):null!==(r=t[0])&&void 0!==r?r:""}const[h,b]=(0,o.useState)((()=>{var e;return f(null!==(e=p[d])&&void 0!==e?e:"")})),g=(0,e.createElement)(l.StyledSelectControl,{key:d+m,value:h,options:i,help:(()=>{var e;const t=i.find((({value:e})=>e===h));return null!==(e=t?.help)&&void 0!==e?e:""})(),onChange:e=>{const n=f(e);b(n),u({nameField:d,value:t.includes(e)?"":e})}});return(0,e.createElement)(qa.Provider,{value:{FieldSelect:g,property:h}},a&&a,!a&&g)},SafeDeleteToggle:function(t){const[n,r]=fa(!0);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ma,{label:pa("Safe deleting","jet-form-builder"),checked:n,onChange:r}),(0,e.createElement)(la.Provider,{value:n},t.children))},RepeaterAddNew:_a,RepeaterAddOrOperator:function(t){var n;const{onSetState:r,functions:l,children:o}=t,{addNewItem:a}=null!==(n=null!=l?l:ba(r))&&void 0!==n?n:Ki(ya);return(0,e.createElement)(Yi,{isSecondary:!0,icon:"randomize",onClick:()=>a({__visible:!1,or_operator:!0})},o)},Repeater:Ta,WrapperRequiredControl:function({children:t,labelKey:n="label",requiredKey:l="required",helpKey:o="help",field:a=[]}){let{name:i,data:s}=g(r);return a.length&&([i,s]=a),(0,e.createElement)("div",{className:"jet-user-meta__row",key:"user_meta_"+i},(0,e.createElement)("div",{className:"jet-field-map__row-label"},(0,e.createElement)("span",{className:"fields-map__label"},s.hasOwnProperty(n)&&s[n]&&s[n],!s.hasOwnProperty(n)&&s),s.hasOwnProperty(l)&&s[l]&&(0,e.createElement)("span",{className:"fields-map__required"}," *"),s[o]&&(0,e.createElement)("p",{className:"components-base-control__help",style:{color:"rgb(117, 117, 117)",margin:"1em 0 0 0"}},(0,e.createElement)(b,null,s[o]))),t)},DynamicPreset:Be,JetFieldsMapControl:Re,FieldWithPreset:function({children:t=null,ModalEditor:n,triggerClasses:r=[],baseControlProps:l={}}){const[o,a]=Ge(!1),i=()=>{a((e=>!e))},s=["jet-form-dynamic-preset__trigger",...r].join(" ");return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Le,{className:"jet-form-dynamic-preset",...l},t,(0,e.createElement)("div",{className:s,onClick:i},(0,e.createElement)(Pe,{viewBox:"0 0 54 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)(Me,{d:"M42.6396 26.4347C37.8682 27.3436 32.5666 28.0252 27.1894 28.0252C21.8121 28.0252 16.4348 27.3436 11.7391 26.4347C6.96774 25.4502 3.18093 23.8597 0.37868 21.9663L0.37868 28.0252C0.37868 29.5399 1.59046 31.1304 3.78682 32.4179C5.98317 33.7054 9.46704 34.9172 13.6325 35.5988C17.798 36.2805 22.115 36.8106 27.1894 36.8106C32.2637 36.8106 36.6564 36.5077 40.7462 35.5988C44.8359 34.69 48.3198 33.7054 50.5162 32.4179C52.7125 31.1304 54 29.5399 54 28.0252L54 21.9663C51.122 23.8597 47.3352 25.4502 42.6396 26.4347ZM42.6396 53.5484C37.8682 54.5329 32.5666 55.1388 27.1894 55.1388C21.8121 55.1388 16.4348 54.5329 11.7391 53.5484C7.04348 52.5638 3.18093 51.0491 0.378682 49.1556L0.378682 55.1388C0.378683 56.7293 1.59046 58.3197 3.78682 59.5315C6.36186 60.819 9.46705 62.1066 13.6325 62.7125C17.7223 63.697 22.115 64 27.1894 64C32.2637 64 36.6564 63.697 40.7462 62.7125C44.8359 61.8036 48.3198 60.819 50.5162 59.5315C52.7125 57.9411 54 56.7293 54 54.8359L54 48.8527C51.122 51.0491 47.3352 52.2608 42.6396 53.5484ZM42.6396 39.9915C37.8682 40.9004 32.5666 41.582 27.1894 41.582C21.8121 41.582 16.4348 40.9004 11.7391 39.9915C6.96774 39.007 3.18093 37.4922 0.378681 35.5988L0.378681 41.582C0.378681 43.1725 1.59046 44.6872 3.78682 45.9747C6.36185 47.2622 9.46705 48.474 13.6325 49.1556C17.7223 50.0645 22.115 50.3674 27.1894 50.3674C32.2637 50.3674 36.6564 50.0645 40.7462 49.1556C44.8359 48.1711 48.3198 47.2622 50.5162 45.9747C52.7125 44.3843 54 43.1725 54 41.582L54 35.5988C51.122 37.4922 47.3352 39.007 42.6396 39.9915ZM40.4432 2.12337C36.3535 1.13879 31.885 0.835848 26.8864 0.835849C21.8878 0.835849 17.4194 1.13879 13.2539 2.12337C9.08836 3.10794 5.68022 4.01678 3.48387 5.3043C1.28751 6.59181 -3.4782e-06 8.10654 -3.33916e-06 9.697L-2.95513e-06 14.0897C-2.81609e-06 15.6802 1.28752 17.2706 3.48387 18.5582C6.05891 19.7699 9.1641 21.0575 13.2539 21.6633C17.3436 22.2692 21.8121 22.9509 26.8864 22.9509C31.9607 22.9509 36.3535 22.9509 40.4432 22.345C44.533 21.7391 48.0169 20.4516 50.2132 19.164C52.7125 17.5736 54 15.9831 54 14.3927L54 9.99995C54 8.40948 52.7125 6.81902 50.5162 5.60724C48.3198 4.39546 44.533 2.72926 40.4432 2.12337Z",fill:"#7E8993"})))),o&&(0,e.createElement)(h,{onRequestClose:i,classNames:["width-60"],title:"Edit Preset"},(t=>(0,e.createElement)(n,{...t}))))},GlobalField:ye,AvailableMapField:function({fieldsMap:t,field:n,index:r,value:a,onChangeValue:i,isMapFieldVisible:s}){let c=null;t||(t={}),c=t[n],c&&"object"==typeof c||(c={});const d=({field:t,name:n,index:r,fIndex:o,children:a})=>(0,e.createElement)(u.Card,{key:t+n+r+o,size:"extraSmall",style:{marginBottom:"10px"}},(0,e.createElement)(u.CardHeader,null,(0,e.createElement)("span",{className:"jet-label-overflow"},t)),(0,e.createElement)(l.StyledCardBodyControl,{key:t+n+r+o,className:"jet-form-preset__fields-map-item"},a));return(0,e.createElement)(o.Fragment,{key:`map_field_preset_${n+r}`},window.JetFormEditorData.presetConfig.map_fields.map(((o,m)=>{const p={field:n,name:o.name,index:r,fIndex:m},f="control_"+n+o.name+r+m;switch(o.type){case"text":return s(a,o,n)&&function({field:t,name:n,index:r,fIndex:o},a){return(0,e.createElement)(u.Card,{key:t+n+r+o,size:"extraSmall",style:{marginBottom:"10px"}},(0,e.createElement)(u.CardHeader,null,(0,e.createElement)("span",{className:"jet-label-overflow"},t)),(0,e.createElement)(l.StyledCardBodyControl,{key:t+n+r+o,className:"jet-form-preset__fields-map-item"},a))}(p,(0,e.createElement)(l.StyledTextControl,{key:f+"TextControl",placeholder:o.label,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));case"select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(l.StyledSelectControl,{options:o.options,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));case"custom_select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(u.CustomSelectControl,{options:o.options,onChange:({selectedItem:e})=>{c[o.name]=e.key,i({...t,[n]:c},"fields_map")},value:o.options.find((e=>e.key===c[o.name]))}));case"grouped_select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(je,{options:o.options,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));default:return null}})))},MapField:xe,FieldWrapper:function(t){const{attributes:n,children:r,wrapClasses:l=[],valueIfEmptyLabel:o="",setAttributes:a,childrenPosition:i="between"}=t,s=de(),c=H("_jf_args"),u=Xe((function(){We(n,a)}));function d(){return(0,e.createElement)(ze.VisualLabel,null,Qe(Ze("input label:","jet-form-builder")),(0,e.createElement)("div",{className:"jet-form-builder__label"},(0,e.createElement)(Ye,{key:s("rich-label"),placeholder:"Label...",allowedFormats:[],value:n.label?n.label:o,onChange:e=>a({label:e}),isSelected:!1,...u}),n.required&&(0,e.createElement)("span",{className:"jet-form-builder__required"},c.required_mark?c.required_mark:"*")))}function m(){return(0,e.createElement)("div",{className:"jet-form-builder__desc--wrapper"},Qe(Ze("input description:","jet-form-builder")),(0,e.createElement)(ze,{key:"custom_help_description",className:"jet-form-builder__desc"},(0,e.createElement)("div",{className:"components-base-control__help"},(0,e.createElement)(Ye,{key:s("rich-description"),tagName:"small",placeholder:"Description...",allowedFormats:[],value:n.desc,onChange:e=>a({desc:e}),style:{marginTop:"0px"}}))))}return"row"===c.fields_layout&&l.push("jet-form-builder-row__flex"),n?.crocoblock_styles?._uniqueClassName&&l.push(n.crocoblock_styles._uniqueClassName),(0,e.createElement)(ze,{key:s("placeHolder_block"),className:E("jet-form-builder__field-wrap","jet-form-builder-row",l)},"row"!==c.fields_layout&&(0,e.createElement)(e.Fragment,null,"top"===i&&r,d(),"between"===i&&r,m(),"bottom"===i&&r),"row"===c.fields_layout&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"jet-form-builder-row__flex--label"},d(),m()),(0,e.createElement)("div",{className:"jet-form-builder-row__flex--content"},r)))},MacrosInserter:function({children:t,fields:n,onFieldClick:r,customMacros:l,zIndex:o=1e6,...a}){const[i,s]=rt((()=>!1));return(0,e.createElement)("div",{className:"jet-form-editor__macros-inserter"},(0,e.createElement)(et,{isTertiary:!0,isSmall:!0,icon:i?"no-alt":"admin-tools",label:"Insert macros",className:"jet-form-editor__macros-trigger",onClick:()=>{s((e=>!e))}}),i&&(0,e.createElement)(tt,{style:{zIndex:o},position:"bottom left",...a},n.length&&(0,e.createElement)(nt,{title:"Form Fields"},n.map((t=>(0,e.createElement)("div",{key:"field_"+t.name},(0,e.createElement)(et,{isLink:!0,onClick:()=>{r(t.name)}},"%"+t.name+"%"))))),l&&(0,e.createElement)(nt,{title:"Custom Macros"},l.map((t=>(0,e.createElement)("div",{key:"macros_"+t},(0,e.createElement)(et,{isLink:!0,onClick:()=>{r(t)}},"%"+t+"%")))))))},RepeaterWithState:function({children:t,ItemHeading:n,repeaterClasses:r=[],repeaterItemClasses:l=[],newItem:a,addNewButtonLabel:i="Add New",items:s=[],isSaveAction:c,onSaveItems:m,onUnMount:p,onAddNewItem:f,onRemoveItem:h,help:b={helpSource:{},helpVisible:()=>!1,helpKey:""},additionalControls:g=null}){const y=["jet-form-builder__repeater-component",...r].join(" "),v=["jet-form-builder__repeater-component-item",...l].join(" "),[w,_]=(0,o.useState)([]);(0,o.useEffect)((()=>{_(s&&s.length>0?s.map((e=>(e.__visible=!1,e))):[{...a,__visible:!0}])}),[]);const[E,C]=(0,o.useState)(!0),k=(e,t)=>{_((n=>{const r=JSON.parse(JSON.stringify(n));return r[t]={...n[t],...e},r}))},S=({oldIndex:e,newIndex:t})=>{_((n=>{const r=JSON.parse(JSON.stringify(n));return[r[t],r[e]]=[r[e],r[t]],r}))},j=e=>!(e{if(!0===c){for(const e in w)for(const t in w[e])t.startsWith("__")&&delete w[e][t];m(w),p()}else!1===c&&p()}),[c]);const x=e=>`jet-form-builder-repeater__item_${e}`,{helpSource:N,helpVisible:F,helpKey:T}=b,B=F(w)&&N&&N[T];return(0,e.createElement)("div",{className:y,key:"jet-form-builder-repeater"},B&&(0,e.createElement)("p",null,N[T].label),0(0,e.createElement)(u.Card,{elevation:2,className:v,key:x(l)},(0,e.createElement)(u.CardHeader,{className:"repeater__item__header"},(0,e.createElement)("div",{className:"repeater-item__left-heading"},(0,e.createElement)(u.ButtonGroup,{className:"repeater-action-buttons"},(0,e.createElement)(u.Button,{isSmall:!0,icon:r.__visible?"no-alt":"edit",onClick:()=>(e=>{_((t=>{const n=JSON.parse(JSON.stringify(t));return n[e].__visible=!n[e].__visible,n}))})(l),className:"repeater-action-button"}),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,disabled:!Boolean(l),icon:"arrow-up-alt2",onClick:()=>(e=>{S({oldIndex:e,newIndex:e-1})})(l),className:"repeater-action-button"}),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,disabled:j(l),icon:"arrow-down-alt2",onClick:()=>(e=>{S({oldIndex:e,newIndex:e+1})})(l),className:"repeater-action-button"})),(0,e.createElement)("span",{className:"repeater-item-title"},n&&(0,e.createElement)(n,{currentItem:r,index:l,changeCurrentItem:e=>k(e,l)}),!n&&`#${l+1}`)),(0,e.createElement)(u.ButtonGroup,null,(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,onClick:()=>(e=>{_((t=>{const n=JSON.parse(JSON.stringify(t)),[r,l]=[n.slice(0,e+1),n.slice(e+1)];return[...r,n[e],...l]}))})(l)},(0,d.__)("Clone","jet-form-builder")),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,isDestructive:!0,onClick:()=>(e=>{E&&!(e=>confirm((0,d.sprintf)((0,d.__)("Are you sure you want to remove item %d?","jet-form-builder"),e+1)))(e)||h&&!h(e,w)||_((t=>{const n=JSON.parse(JSON.stringify(t));return n.splice(e,1),n}))})(l)},(0,d.__)("Delete","jet-form-builder")))),r.__visible&&(0,e.createElement)(u.CardBody,{className:"repeater-item__content"},t&&(0,e.createElement)(o.Fragment,{key:`repeater-component__item_${l}`},"function"==typeof t&&t({currentItem:r,changeCurrentItem:e=>k(e,l),currentIndex:l}),"function"!=typeof t&&t),!t&&"Set up your Repeater Template, please.")))),1{return e=a,f&&f(e,w),void _((t=>[...t,{...e,__visible:!0}]));var e}},i))},AdvancedFields:function(){return(0,e.createElement)(kt,null,(0,e.createElement)(at,null),(0,e.createElement)(ct,null),(0,e.createElement)(gt,null),(0,e.createElement)(wt,null),(0,e.createElement)(Ct,null))},GeneralFields:function({hasMacro:t=!0}){return(0,e.createElement)(Pn,{title:Ln("General","jet-form-builder"),key:"jet-form-general-fields"},(0,e.createElement)(Ft,null),(0,e.createElement)(Pt,null),(0,e.createElement)(Dt,null),(0,e.createElement)(Mn,{hasMacro:t}))},ToolBarFields:function({children:t=null}){return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Un,null,t),(0,e.createElement)(Xn,null))},FieldControl:function(t){const{setAttributes:n,attributes:r}=t,l=function({type:e,attributes:t,attrsSettings:n={}}){const r=Vs()["data-type"],l=rr();return l[e]?l[e].attrs.filter((({attrName:e,label:l,...o})=>{const a=e in t,i=(e=>{if(!e.condition)return!0;if(r&&e.condition.blockName){if("string"==typeof e.condition.blockName&&r!==e.condition.blockName)return!1;if("object"==typeof e.condition.blockName&&e.condition.blockName.length&&!e.condition.blockName.includes(r))return!1}return!(!function(){if("object"!=typeof e.condition.attr)return!0;const{operator:n="and",items:r={}}=e.condition.attr;if("or"===n.toLowerCase())for(const e in r)if(r[e]===t[e])return!0;return"and"!==n.toLowerCase()||function(){for(const e in r)if(r[e]!==t[e])return!1;return!0}()}()||"string"==typeof e.condition.attr&&e.condition.attr&&!t[e.condition.attr]||"string"==typeof e.condition&&!t[e.condition])})(o),s=e in n&&"show"in n[e]&&!1===n[e].show;return a&&i&&!s})):[]}(t),o=(e,t)=>{n({[t]:e})};return l.map((({help:t="",attrName:n,label:l,...a})=>{switch(a.type){case"text":return(0,e.createElement)(Js,{key:`${a.type}-${n}-TextControl`,label:l,help:t,value:r[n],onChange:e=>o(e,n)});case"select":return(0,e.createElement)($s,{key:`${a.type}-${n}-SelectControl`,label:l,help:t,value:r[n],options:a.options,onChange:e=>{o(e,n)}});case"toggle":return(0,e.createElement)(Us,{key:`${a.type}-${n}-ToggleControl`,label:l,help:t,checked:r[n],onChange:e=>{o(e,n)}});case"number":return(0,e.createElement)(Hs,{key:`${a.type}-${n}-BaseControl`,label:l},(0,e.createElement)(zs,{key:`${a.type}-${n}-NumberControl`,value:r[n],onChange:e=>{o(Number(e),n)}}),(0,e.createElement)("p",{className:"components-base-control__help",style:{color:"rgb(117, 117, 117)"}},t));default:return null}}))},HorizontalLine:function(t){return(0,e.createElement)("hr",{style:{...t}})},FieldSettingsWrapper:function(t){const{title:n,children:r}=t,l=tr()["data-type"].replace("/","-"),o=er(`jet.fb.render.settings.${l}`,null);return(r||o)&&(0,e.createElement)(Qn,{title:n||Zn("Field","jet-form-builder")},r,o)},GroupedSelectControl:je,BaseHelp:ut,GatewayFetchButton:or,ValidationToggleGroup:function({excludeBrowser:t=!1}){var n;const[r,l]=fe(),o=de();return Oa=Oa.filter((({value:e})=>"browser"!==e||!t)),(0,e.createElement)(Ba,{onChange:e=>l((t=>({...t,validation:{...r.validation,type:e}}))),value:null!==(n=r.validation?.type)&&void 0!==n?n:"inherit",label:Aa("Validation type","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},(0,e.createElement)(Ia,{label:Aa("Inherit","jet-form-builder"),value:"inherit","aria-label":Aa("Inherit from form's args","jet-form-builder"),showTooltip:!0}),Oa.map((t=>(0,e.createElement)(Ia,{key:o(t.value+"_key"),label:t.label,value:t.value,"aria-label":t.title,showTooltip:!0}))))},ValidationBlockMessage:function({name:t}){var n,r,l;const o=de(),[a,i]=fe(),[s]=(0,Ra.useMetaState)("_jf_validation","{}",[]),c=!a.validation?.type,u=c?null!==(n=s?.messages)&&void 0!==n?n:{}:null!==(r=a.validation?.messages)&&void 0!==r?r:{},d=Pa(t);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(La,{disabled:c,key:o("massage_"+t),label:d?.label,help:d?.help,value:null!==(l=u[t])&&void 0!==l?l:d?.initial,onChange:e=>i((n=>({...n,validation:{...a.validation,messages:{...u,[t]:e}}})))}))},ValidationMetaMessage:function({message:t,update:n,value:r=null,help:o=null}){const a=Pa(t.id);return(0,e.createElement)(l.StyledFlexControl,{direction:"column"},(0,e.createElement)(u.Flex,null,(0,e.createElement)(l.Label,{htmlFor:t.id},a.label),(0,e.createElement)(u.Flex,{style:{width:"auto"}},t.blocks.map((t=>(0,e.createElement)(u.Tooltip,{key:"message_block_item"+t.title,text:t.title,delay:200,placement:"top"},(0,e.createElement)(Ga,{icon:t.icon})))))),(0,e.createElement)(l.StyledTextControl,{className:l.ClearBaseControlStyle,id:t.id,help:null!=o?o:a?.help,value:null!=r?r:a?.initial,onChange:e=>n((n=>({...n,[t.id]:e})))}))},DynamicValues:zi,EditAdvancedRulesButton:function(){const[t,n]=Ds(!1);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Cs.Provider,{value:{showModal:t,setShowModal:n}},(0,e.createElement)("div",{className:"jet-fb mb-24"},(0,e.createElement)(Gs,null))),t&&(0,e.createElement)(h,{title:qs("Edit Advanced Rules","jet-form-builder"),classNames:["width-60"],onRequestClose:()=>n(!1)},(0,e.createElement)(_s,null)))},RepeaterStateContext:ya,RepeaterState:Va,BlockLabel:Ft,BlockName:Pt,BlockDescription:Dt,BlockDefaultValue:Mn,BlockPlaceholder:at,BlockAddPrevButton:ct,BlockPrevButtonLabel:gt,BlockVisibility:wt,BlockClassName:Ct,BlockAdvancedValue:function({help:t,label:n,hasMacro:r=!0,...l}){return(0,e.createElement)("div",{...l},(0,e.createElement)(Mn,{help:t,label:n,hasMacro:r}),(0,e.createElement)("hr",null),(0,e.createElement)(zi,null))},MacrosFields:vn,MacrosButtonTemplate:zt,MacrosFieldsTemplate:dn,ShowPopoverContext:Jt,PopoverItem:Zt,PresetButton:qt,ConditionItem:fi,AdvancedInspectorControl:kn,AdvancedModalControl:ni,ClientSideMacros:Tn,ToggleControl:function t({checked:n=!1,disabled:r=!1,onChange:l=()=>{},children:o=null,help:a=null,flexLabelProps:i={},outsideLabel:s=null,__nextHasNoMarginBottom:c=!1,...u}){const d=a,m=`inspector-jfb-toggle-control-${Zs(t)}`;return(0,e.createElement)(Ks,{id:m},(0,e.createElement)(Xs,{direction:"column"},(0,e.createElement)(Xs,{gap:3,align:"flex-start",justify:"flex-start",...i},(0,e.createElement)(Ys,{id:m,checked:n,onChange:e=>l(e.target.checked),disabled:r,...u}),(0,e.createElement)("label",{htmlFor:m},o),s),"string"==typeof d?(0,e.createElement)(ut,null,d):d&&(0,e.createElement)(d,null)))},DetailsContainer:Gi,HoverContainer:Li,ContainersList:$i,HumanReadableConditions:Pi,ConditionsRepeaterContextProvider:yi,ServerSideMacros:function({children:t}){const n=(0,K.useRequestFields)();return(0,e.createElement)(Kt.Provider,{value:{afterFields:n}},t)},SelectVariations:function({value:t}){const{name:n}=ac(),[,r]=fe(),{variations:l,rawVariations:o}=rc((t=>{const{getBlockVariations:r}=t("core/blocks"),l=r(n,"block"),o=[],a={};for(const t of l)o.push({key:t.name,name:(0,e.createElement)("span",{className:"jet-fb flex gap-1em ai-center"},(0,e.createElement)(oc,{icon:t.icon}),t.title)}),a[t.name]=t;return{variations:o,rawVariations:a}}),[n]);return l.length?(0,e.createElement)(lc,{__nextUnconstrainedWidth:!0,hideLabelFromVision:!0,options:l,size:"__unstable-large",onChange:({selectedItem:e})=>r({...o[e.key].attributes}),value:l.find((({key:e})=>e===t))}):null},ToggleGroupVariations:function(t){const n=cc(vc);return n?.currentId?(0,e.createElement)(yc,{className:"jet-fb toggle-toolbar-group"},(0,e.createElement)(wc,{...t})):(0,e.createElement)(wc,{...t})},AttributeHelp:ft,ActionButtonPlaceholder:function(t){const n=kc();return(0,e.createElement)("div",{...n},(0,e.createElement)("div",{className:t.wrapperClasses.join(" ")},(0,e.createElement)(jc,{isPrimary:!0,className:t.buttonClasses.join(" ")},(0,e.createElement)(Sc,{placeholder:"Input Submit label...",allowedFormats:[],value:t.attributes.label,onChange:e=>t.setAttributes({label:e})}))))},ActionModalFooterSlotFill:c,ScopedAttributesProvider:function({children:t}){const[n,r]=fe(),[l,o]=Tc((()=>n));return(0,e.createElement)(Nc.Provider,{value:{realAttributes:n,setRealAttributes:r,attributes:l,setAttributes:o}},t)}},window.JetFBActions={...null!==(Rc=window?.JetFBActions)&&void 0!==Rc?Rc:{},withPreset:ge,getInnerBlocks:R,getAvailableFieldsString:function(e){const t=T([e]),n=[];return t.forEach((function(e){n.push("%FIELD::"+e+"%")})),B("Available fields: ","jet-form-builder")+n.join(", ")},getAvailableFields:T,getFormFieldsBlocks:F,getFieldsWithoutCurrent:O,gatewayAttr:P,gatewayLabel:L,registerGateway:function(e,t,n="cred"){window.JetFBGatewaysList=window.JetFBGatewaysList||{},window.JetFBGatewaysList[e]=window.JetFBGatewaysList[e]||{},window.JetFBGatewaysList[e][n]=t},Tools:k,event:e=>{const t=new Event(e);return()=>document.dispatchEvent(t)},listen:(e,t)=>{document.addEventListener(e,t)},renderGateway:D,renderGatewayWithPlaceholder:function(e,t,n="cred",r=null){return G(e,n)?(t.Placeholder=r,D(e,t,n)):r},maybeCyrToLatin:w,getConvertedName:_,getBlockControls:function(e="all"){if(!e)return!1;const t=rr();return"all"===e?t:!!(t[e]&&t[e].attrs&&Array.isArray(t[e].attrs)&&0{e.includes(n.name)&&t.push(n)})),t},convertObjectToOptionsList:function(e=[],{usePlaceholder:t=!0,label:n="--",value:r=""}={}){const l={label:n,value:r};if(!e)return t?[l]:[];const o=Object.entries(e).map((e=>({value:e.value,label:e.label})));return t?[l,...o]:o},appendField:function(e,t=[]){M("jet.fb.register.fields","jet-form-builder",(n=>n.map((n=>t.length&&!t.includes(n.name)?n:e(n)))))},insertMacro:Bn,column:y,getCurrentInnerBlocks:function(){const{"data-block":e}=Qs();return R(e)},humanReadableCondition:bi,assetUrl:function(e=""){return JetFormEditorData.assetsUrl+e},set:function(e,t,n){const r=JSON.parse(JSON.stringify(e));let l,o=r;for(let e=0;e{function t(){e.call(this)}return t.prototype=Object.create(e.prototype),t}},window.JetFBHooks={...null!==(Mc=window?.JetFBHooks)&&void 0!==Mc?Mc:{},useSelectPostMeta:H,useSuccessNotice:$,useEvents:ae,useRequestEvents:function(){const e=ie((e=>e("jet-forms/actions").getCurrentAction()));return ae(e)},useBlockConditions:ce,useUniqKey:de,useBlockAttributes:fe,useIsAdvancedValidation:function(){const{type:e}=H("_jf_validation"),[t]=fe();return t.validation?.type?"advanced"===t.validation?.type:"advanced"===e},useGroupedValidationMessages:function(){const[e]=$e(He);return e},withSelectFormFields:(e=[],t=!1,n=!1)=>r=>{let l=[];const o=["submit","form-break","heading","group-break","conditional",...e];return Y((e=>{e.name.includes("jet-forms/")&&e.attributes.name&&!o.find((t=>e.name.includes(t)))&&l.push({blockName:e.name,name:e.attributes.name,label:e.attributes.label||e.attributes.name,value:e.attributes.name})}),r("core/block-editor").getBlocks()),l=t?[{value:"",label:t},...l]:l,{formFields:n?l:z("jet.fb.getFormFieldsBlocks",l)}},withSelectGateways:X,withDispatchGateways:function(e){const t=e("jet-forms/gateways");return{setGatewayRequest:t.setRequest,setGatewayScenario:t.setScenario,setScenario:t.setCurrentScenario,setGateway:t.setGateway,setGatewayInner:t.setGatewayInner,setGatewaySpecific:t.setGatewaySpecific,clearGateway:t.clearGateway,clearScenario:t.clearScenario}},useOnUpdateModal:W,useInsertMacro:An,useIsHasAttribute:he,useUniqueNameOnDuplicate:function(e=null){const t=nc(),[,n]=fe(),r=t["data-block"],l=tc((e=>{if(!e(Ko).isRecentlyAdded(r))return!1;const{hasChanged:t,names:n}=e(Ko).getUniqueNames(r);return!!t&&n}),[r]);ec((()=>{l&&("function"!=typeof e?n({name:l.split("|")[0]}):e(l))}),[l])},useSupport:function(e){const{name:t}=Ec();return _c((n=>{const r=n("core/blocks").getBlockType(t);return Cc(r,["supports",e],!1)}),[t,e])},useScopedAttributesContext:function(){return Fc(Nc)},useOpenEditorPanel:function(e){const{enableComplementaryArea:t}=Ac("core/interface"),{toggleEditorPanelOpened:n}=Ac("core/edit-post"),r=Ic((t=>t("core/edit-post").isEditorPanelOpened(e)),[e]);return()=>{t("core/edit-post","edit-post/document"),!r&&n(e)}}}})()})(); \ No newline at end of file diff --git a/assets/build/frontend/advanced.reporting.asset.php b/assets/build/frontend/advanced.reporting.asset.php index afa49f7be..583b9dd92 100644 --- a/assets/build/frontend/advanced.reporting.asset.php +++ b/assets/build/frontend/advanced.reporting.asset.php @@ -1 +1 @@ - array('wp-api-fetch'), 'version' => '430375a73ffd28e91658'); + array('wp-api-fetch'), 'version' => 'cd9019dc6f52cd8ab6d0'); diff --git a/assets/build/frontend/advanced.reporting.js b/assets/build/frontend/advanced.reporting.js index e38fed18c..e4b4d729d 100644 --- a/assets/build/frontend/advanced.reporting.js +++ b/assets/build/frontend/advanced.reporting.js @@ -1 +1 @@ -(()=>{"use strict";var t={n:e=>{var i=e&&e.__esModule?()=>e.default:()=>e;return t.d(i,{a:i}),i},d:(e,i)=>{for(var r in i)t.o(i,r)&&!t.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:i[r]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e)};const{Restriction:e,CalculatedFormula:i}=window.JetFormBuilderAbstract;function r(){e.call(this),this.message="",this.formula=null,this.watchedAttrs=[]}r.prototype=Object.create(e.prototype),r.prototype.message="",r.prototype.formula=null,r.prototype.watchedAttrs=[],r.prototype.isServerSide=function(){return!1},r.prototype.getMessage=function(){return this.message},r.prototype.getRawMessage=function(){return"Error"},r.prototype.getMessageBySlug=function(t){return function(t,e){var i,r,s,n;const{reporting:o}=t,a=null!==(i=o.messages[e])&&void 0!==i?i:"";if(a)return a;const u=null!==(r=window?.JetFormsValidation)&&void 0!==r&&r;if(!1===u)return"";const c=o.input.getSubmit(),{messages:l}=null!==(s=u[c.getFormId()])&&void 0!==s?s:{};return null!==(n=l[e])&&void 0!==n?n:""}(this,t)},r.prototype.onReady=function(){this.formula=new i(this.reporting.input),this.formula.observe(this.getRawMessage()),this.formula.setResult=()=>{this.message=this.formula.calculateString()},this.formula.setResult(),this.watchedAttrs.length&&(this.reporting.watchAttrs=[...new Set([...this.reporting.watchAttrs,...this.watchedAttrs])])};const s=r;function n(){s.call(this),this.watchedAttrs.push("max"),this.isSupported=function(t,e){const{max:i=!1}=e.input.attrs;return!1!==i&&["number","range"].includes(t.type)},this.validate=function(){const t=this.getValue(),{max:e}=this.reporting.input.attrs;return!t||+t<=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("number_max")}}n.prototype=Object.create(s.prototype);const o=n;function a(){s.call(this),this.watchedAttrs.push("min"),this.isSupported=function(t,e){const{min:i=!1}=e.input.attrs;return!1!==i&&["number","range"].includes(t.type)},this.validate=function(){const t=this.getValue(),{min:e}=this.reporting.input.attrs;return!t||+t>=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("number_min")}}a.prototype=Object.create(s.prototype);const u=a;function c(){s.call(this),this.isSupported=function(t){return"url"===t.type},this.validate=function(){const t=this.getValue();return!t||/((mailto\:|(news|(ht|f)tp(s?))\:\/\/)\S+)/.test(t)},this.getRawMessage=function(){return this.getMessageBySlug("url")}}c.prototype=Object.create(s.prototype);const l=c;function h(){s.call(this),this.isSupported=function(t){return"email"===t.type},this.validate=function(){const t=this.getValue();return!t||/^[\w-\.\+]+@([\w-]+\.)+[\w-]{1,6}$/.test(t)},this.getRawMessage=function(){return this.getMessageBySlug("email")}}h.prototype=Object.create(s.prototype);const p=h;function d(){s.call(this),this.watchedAttrs.push("minLength"),this.isSupported=function(t,e){const{minLength:i=!1}=e.input.attrs;return!1!==i},this.validate=function(){const t=this.getValue()?.length,{minLength:e}=this.reporting.input.attrs;return!t||t>=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("char_min")}}d.prototype=Object.create(s.prototype);const g=d;function f(){s.call(this),this.watchedAttrs.push("maxLength"),this.isSupported=function(t,e){const{maxLength:i=!1}=e.input.attrs;return!1!==i},this.validate=function(){const t=this.getValue()?.length,{maxLength:e}=this.reporting.input.attrs;return!t||t<=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("char_max")}}f.prototype=Object.create(s.prototype);const m=f,{isEmpty:y}=JetFormBuilderFunctions;function v(){s.call(this),this.type="required"}v.prototype=Object.create(s.prototype),v.prototype.isSupported=function(t,e){return e.input.isRequired},v.prototype.validate=function(){const t=this.getValue();return!y(t)},v.prototype.getRawMessage=function(){return this.getMessageBySlug("empty")};const S=v;function b(){s.call(this),this.isSupported=function(t){return t.classList.contains("jet-form-builder__masked-field")&&jQuery.fn.inputmask},this.validate=function(){const t=this.getValue(),e=this.reporting.getNode();return!t||e.inputmask.isComplete()},this.getRawMessage=function(){return this.getMessageBySlug("inputmask")}}b.prototype=Object.create(s.prototype);const w=b;function j(){s.call(this),this.isSupported=function(t,e){var i;const r=t.closest(".jet-form-builder-row"),s=JSON.parse(null!==(i=r.dataset?.validationRules)&&void 0!==i?i:"[]");return!!Boolean(s.length)&&(e.restrictions=[...e.restrictions,...X(s,e)],!1)}}j.prototype=Object.create(s.prototype);const _=j;function R(){s.call(this),this.attrs={}}R.prototype=Object.create(s.prototype),R.prototype.attrs={},R.prototype.setAttrs=function(t){this.attrs=t},R.prototype.getSlug=function(){throw new Error("you need to return slug of rule")},R.prototype.getRawMessage=function(){var t;return null!==(t=this.attrs?.message)&&void 0!==t?t:""};const P=R;function A(){P.call(this),this.getSlug=function(){return"contain"}}A.prototype=Object.create(P.prototype),A.prototype.setAttrs=function(t){P.prototype.setAttrs.call(this,t),Z.call(this)},A.prototype.validate=function(){const t=this.getValue();return!t||t.includes(this.attrs.value)};const O=A;function B(){O.call(this),this.getSlug=function(){return"contain_not"},this.validate=function(){return!this.getValue()||!O.prototype.validate.call(this)}}B.prototype=Object.create(O.prototype);const V=B;function x(){P.call(this),this.getSlug=function(){return"regexp"}}x.prototype=Object.create(P.prototype),x.prototype.setAttrs=function(t){P.prototype.setAttrs.call(this,t),Z.call(this)},x.prototype.validate=function(){const t=this.getValue();return!t||new RegExp(this.attrs.value,"g").test(t)};const M=x;function F(){M.call(this),this.getSlug=function(){return"regexp_not"},this.validate=function(){return!this.getValue()||!M.prototype.validate.call(this)}}F.prototype=Object.create(M.prototype);const E=F,k=window.wp.apiFetch;var L=t.n(k);function N(){P.call(this),this.getSlug=function(){return"ssr"},this.isServerSide=function(){return!0},this.validatePromise=async function(t=null){if(!this.getValue())return Promise.resolve();const e=this.getFormData(),{rootNode:i}=this.reporting.input.getRoot();switch(i.getAttribute("ssr_validation_method")||"rest"){case"admin_ajax":return this.validateViaAdminAjax(e,t);case"self":return this.validateViaSelfRequest(e,t);default:return this.validateViaRest(e,t)}},this.validateViaRest=async function(t,e){try{const i=await L()({path:"/jet-form-builder/v1/validate-field",method:"POST",body:t,signal:e});return i?.result?Promise.resolve():Promise.reject()}catch(t){throw t}},this.validateViaAdminAjax=async function(t,e){try{const i=await fetch(window.JetFormBuilderSettings.adminajaxurl,{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:new URLSearchParams({action:"jet_fb_ssr_validation_ajax",data:JSON.stringify(Object.fromEntries(t))}),signal:e}).then(t=>t.json());return i?.result?Promise.resolve():Promise.reject()}catch(t){throw t}},this.validateViaSelfRequest=async function(t,e){try{const i=new URL(window.location.href);i.searchParams.set("jet_fb_ssr_self_validation","1");for(const[e,r]of t.entries())i.searchParams.append(e,r);const r=await fetch(i.toString(),{method:"GET",signal:e}).then(t=>t.json());return r?.result?Promise.resolve():Promise.reject()}catch(t){throw t}},this.getFormData=function(){const{input:t}=this.reporting,{rootNode:e}=t.getRoot(),i=new FormData(e);i.delete("_wpnonce"),i.set("_jfb_validation_rule_index",this.attrs.index);for(const e of t.path)i.append("_jfb_validation_path[]",e);return this.attrs._sig&&i.set("_jfb_validation_sig",this.attrs._sig),i}}N.prototype=Object.create(P.prototype);const J=N;function T(){P.call(this),this.getSlug=function(){return"equal"},this.validate=function(){const t=this.getValue();return!t||t===this.attrs.value}}T.prototype=Object.create(P.prototype),T.prototype.setAttrs=function(t){P.prototype.setAttrs.call(this,t),Z.call(this)};const C=T,{getTimestamp:q}=JetFormBuilderFunctions;function I(){s.call(this),this.watchedAttrs.push("min"),this.isSupported=function(t,e){const{min:i=!1}=e.input.attrs;return!1!==i&&["time","date","datetime-local"].includes(t.type)},this.validate=function(){const t=this.getValue();if(!t)return!0;const{min:e}=this.reporting.input.attrs,{time:i}=q(t),{time:r}=q(e.value.current);return i>=r},this.getRawMessage=function(){return this.getMessageBySlug("date_min")}}I.prototype=Object.create(s.prototype);const D=I,{getTimestamp:H}=JetFormBuilderFunctions;function U(){s.call(this),this.watchedAttrs.push("max"),this.isSupported=function(t,e){const{max:i=!1}=e.input.attrs;return!1!==i&&["time","date","datetime-local"].includes(t.type)},this.validate=function(){const t=this.getValue();if(!t)return!0;const{max:e}=this.reporting.input.attrs,{time:i}=H(t),{time:r}=H(e.value.current);return i<=r},this.getRawMessage=function(){return this.getMessageBySlug("date_max")}}U.prototype=Object.create(s.prototype);const G=U,{applyFilters:Q}=JetPlugins.hooks,{isEmpty:$}=JetFormBuilderFunctions,z=()=>Q("jet.fb.advanced.rules",[O,V,M,E,J,C]);let K=[],W=[];function X(t,e){const i=[];K.length||(K=z());for(const[r,s]of Object.entries(t))for(const t of K){const n=new t;if(s.type===n.getSlug()){delete s.type,n.setReporting(e),n.setAttrs({...s,index:r}),n.onReady(),i.push(n);break}}return i}function Y(t){return t.closest(".jet-form-builder-row")}function Z(){if(!this.attrs?.field)return;const{root:t}=this.reporting.input,e=t.getInput(this.attrs.field);e.watch(()=>{this.attrs.value=e.value.current,this.reporting.valuePrev=null,this.reporting.validateOnChange()}),$(e.value.current)||(this.attrs.value=e.value.current)}function tt(t){for(const e of t.children)if(e.classList.contains("error-message"))return e;const e=t.querySelector(".jet-form-builder-col__end");return!!e&&tt(e)}const{ReportingInterface:et}=JetFormBuilderAbstract,{allRejected:it}=JetFormBuilderFunctions;function rt(){et.call(this),this.type="inherit",this.messages={},this.skipServerSide=!0,this.watchAttrs=[],this.queue=[]}rt.prototype=Object.create(et.prototype),rt.prototype.skipServerSide=!0,rt.prototype.hasServerSide=!1,rt.prototype.isProcess=null,rt.prototype.queue=[],rt.prototype.setRestrictions=function(){!function(t){W.length||(W=Q("jet.fb.restrictions",[D,G,o,u,l,p,w,g,m,S,_]));for(const e of W){const i=new e;i.isSupported(t.getNode(),t)&&(i.setReporting(t),i.onReady(),t.restrictions.push(i))}}(this)},rt.prototype.isSupported=function(t,e){this.type=function(t){var e;const i=Y(t),{validationType:r=""}=null!==(e=i?.dataset)&&void 0!==e?e:{};return r}(t);const i="inherit"===this.type?function(t){var e,i;const r=null!==(e=window?.JetFormsValidation)&&void 0!==e&&e;if(!1===r)return"";const s=t.getSubmit().getFormId(),{type:n=""}=null!==(i=r[s])&&void 0!==i?i:{};return n}(e):this.type;return!!i?.length},rt.prototype.getErrorsRaw=async function(t,e=null){this.hasServerSide&&this.input.loading.start();let i=await it(t);return this.valuePrev=this.input.getValue(),this.hasServerSide&&this.input.loading.end(),e?.aborted&&(i=[]),i},rt.prototype.reportRaw=function(t){let e="";for(const i of t)if(e=i.getMessage(),e?.length)break;e?this.insertError(e):this.clearReport()},rt.prototype.setInput=function(t){this.messages=function(t){var e;const i=Y(t),{validationMessages:r="{}"}=null!==(e=i?.dataset)&&void 0!==e?e:{};return JSON.parse(r)}(t.nodes[0]),et.prototype.setInput.call(this,t)},rt.prototype.observeAttrs=function(){for(const t of this.watchAttrs)this.input.attrs.hasOwnProperty(t)&&this.input.attrs[t].value.watch(()=>{this.valuePrev=null,this.validateOnBlur()})},rt.prototype.clearReport=function(){(()=>{const t=Y(this.getNode());if(!t)return;t.classList.remove("field-has-error");const e=tt(t);e&&e.remove()})(),this.makeValid()},rt.prototype.insertError=function(t){(()=>{const e=Y(this.getNode()),i=this.createError(e,t);if(e.classList.add("field-has-error"),i.isConnected)return;const r=e.querySelector(".jet-form-builder-col__end");r?r.appendChild(i):e.appendChild(i)})(),this.makeInvalid()},rt.prototype.createError=function(t,e){const i=tt(t);if(i)return i.innerHTML=e,i;const r=this.getNode(),s=document.createElement("div");return s.classList.add("error-message"),s.innerHTML=e,s.id=r.id+"__error",s},rt.prototype.makeInvalid=function(){var t;const e=tt(Y(this.getNode()));this.getNode().setAttribute("aria-invalid","true"),this.getNode().setAttribute("aria-describedby",null!==(t=e?.id)&&void 0!==t&&t)},rt.prototype.makeValid=function(){this.getNode().removeAttribute("aria-invalid"),this.getNode().removeAttribute("aria-describedby")},rt.prototype.validateOnChange=function(t=!1){const e=this.input.getValue();if((!e||""===e)&&null===this.valuePrev&&this.input.getContext().silence)return;this.switchButtonsState(!0);const i=()=>{this.input.getContext().setSilence(!1),this.validate().then(()=>{}).catch(()=>{}).finally(()=>{this.isProcess=null;const t=[...this.queue];this.queue=[],t.length?(this.valuePrev=null,t.forEach(t=>t()),this.switchButtonsState()):this.switchButtonsState()})};t&&this.isProcess&&(this.queue=[i]),this.isProcess||(this.isProcess=!0,i())},rt.prototype.validateOnBlur=function(t=null){if(this.isProcess)return;const e=this.input.getValue();(e&&""!==e||null!==this.valuePrev||!this.input.getContext().silence)&&(this.isProcess=!0,this.skipServerSide=!1,this.switchButtonsState(!0),this.canSubmitForm(!1),this.canTriggerEnterSubmit(!1),this.input.getContext().setSilence(!1),this.validate(t).then(()=>{}).catch(()=>{}).finally(()=>{this.skipServerSide=!0,this.hasServerSide=!1,this.isProcess=null,this.input.nodes[0].readOnly=!1,t?.aborted||(this.switchButtonsState(),this.canSubmitForm(),this.validityState.current&&this.canTriggerEnterSubmit())}))},rt.prototype.switchButtonsState=function(t=!1){const e=this.input.nodes[0].closest(".jet-form-builder-page");if(e&&!this.input.getContext().silence){const i=e.querySelectorAll(".jet-form-builder__next-page, .jet-form-builder__prev-page, .jet-form-builder__action-button");for(const e of i)(e.classList.contains("jet-form-builder__submit")||this.isNodeBelongThis(e))&&(e.classList.contains("jet-form-builder__prev-page")?e.disabled=t:e.disabled=!0===t||!this.validityState.current)}},rt.prototype.canTriggerEnterSubmit=function(t=!0){const e=this.input.root.form;e&&(e.canTriggerEnterSubmit=t)},rt.prototype.canSubmitForm=function(t=!0){const e=this.input.root.form;e&&(e.canSubmitForm=t)},rt.prototype.isNodeBelongThis=function(t){const e=t.closest(".jet-form-builder-page");return!!e&&!e.classList.contains("jet-form-builder-page--hidden")},rt.prototype.validateOnChangeState=function(){if(this.isProcess)return Promise.resolve();const t=this.input.getValue();return t&&""!==t||null!==this.valuePrev||!this.input.getContext().silence?(this.switchButtonsState(!0),this.canTriggerEnterSubmit(!1),this.input.maskValidation&&this.input.changeStateMaskValidation(),this.isProcess=!0,this.skipServerSide=!1,new Promise((t,e)=>{this.validate().then(t).catch(e).finally(()=>{this.skipServerSide=!0,this.hasServerSide=!1,this.isProcess=null,this.input.nodes[0].readOnly=!1,this.switchButtonsState(),this.canTriggerEnterSubmit()})})):Promise.resolve()},rt.prototype.canProcessRestriction=function(t){return!this.skipServerSide||!t.isServerSide()},rt.prototype.beforeProcessRestriction=function(t){this.hasServerSide=!!t.isServerSide()||this.hasServerSide};const st=rt;var nt;const{addFilter:ot,addAction:at}=JetPlugins.hooks;at("jet.fb.observe.after","jet-form-builder/observe-dynamic-attrs",function(t){t.getInputs().forEach(t=>{t.reporting instanceof st&&t.reporting.observeAttrs()})},11),ot("jet.fb.reporting","jet-form-builder/advanced-reporting",function(t){return[st,...t]}),window.JetFormBuilderAbstract={...null!==(nt=window.JetFormBuilderAbstract)&&void 0!==nt?nt:{},AdvancedRestriction:s,NotEmptyRestriction:S}})(); \ No newline at end of file +(()=>{"use strict";var t={n:e=>{var i=e&&e.__esModule?()=>e.default:()=>e;return t.d(i,{a:i}),i},d:(e,i)=>{for(var r in i)t.o(i,r)&&!t.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:i[r]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e)};const{Restriction:e,CalculatedFormula:i}=window.JetFormBuilderAbstract;function r(){e.call(this),this.message="",this.formula=null,this.watchedAttrs=[]}r.prototype=Object.create(e.prototype),r.prototype.message="",r.prototype.formula=null,r.prototype.watchedAttrs=[],r.prototype.isServerSide=function(){return!1},r.prototype.getMessage=function(){return this.message},r.prototype.getRawMessage=function(){return"Error"},r.prototype.getMessageBySlug=function(t){return function(t,e){var i,r,s,n;const{reporting:o}=t,a=null!==(i=o.messages[e])&&void 0!==i?i:"";if(a)return a;const u=null!==(r=window?.JetFormsValidation)&&void 0!==r&&r;if(!1===u)return"";const c=o.input.getSubmit(),{messages:l}=null!==(s=u[c.getFormId()])&&void 0!==s?s:{};return null!==(n=l[e])&&void 0!==n?n:""}(this,t)},r.prototype.onReady=function(){this.formula=new i(this.reporting.input),this.formula.observe(this.getRawMessage()),this.formula.setResult=()=>{this.message=this.formula.calculateString()},this.formula.setResult(),this.watchedAttrs.length&&(this.reporting.watchAttrs=[...new Set([...this.reporting.watchAttrs,...this.watchedAttrs])])};const s=r;function n(){s.call(this),this.watchedAttrs.push("max"),this.isSupported=function(t,e){const{max:i=!1}=e.input.attrs;return!1!==i&&["number","range"].includes(t.type)},this.validate=function(){const t=this.getValue(),{max:e}=this.reporting.input.attrs;return!t||+t<=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("number_max")}}n.prototype=Object.create(s.prototype);const o=n;function a(){s.call(this),this.watchedAttrs.push("min"),this.isSupported=function(t,e){const{min:i=!1}=e.input.attrs;return!1!==i&&["number","range"].includes(t.type)},this.validate=function(){const t=this.getValue(),{min:e}=this.reporting.input.attrs;return!t||+t>=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("number_min")}}a.prototype=Object.create(s.prototype);const u=a;function c(){s.call(this),this.isSupported=function(t){return"url"===t.type},this.validate=function(){const t=this.getValue();return!t||/((mailto\:|(news|(ht|f)tp(s?))\:\/\/)\S+)/.test(t)},this.getRawMessage=function(){return this.getMessageBySlug("url")}}c.prototype=Object.create(s.prototype);const l=c;function h(){s.call(this),this.isSupported=function(t){return"email"===t.type},this.validate=function(){const t=this.getValue();return!t||/^[\w-\.\+]+@([\w-]+\.)+[\w-]{1,6}$/.test(t)},this.getRawMessage=function(){return this.getMessageBySlug("email")}}h.prototype=Object.create(s.prototype);const p=h;function d(){s.call(this),this.watchedAttrs.push("minLength"),this.isSupported=function(t,e){const{minLength:i=!1}=e.input.attrs;return!1!==i},this.validate=function(){const t=this.getValue()?.length,{minLength:e}=this.reporting.input.attrs;return!t||t>=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("char_min")}}d.prototype=Object.create(s.prototype);const g=d;function f(){s.call(this),this.watchedAttrs.push("maxLength"),this.isSupported=function(t,e){const{maxLength:i=!1}=e.input.attrs;return!1!==i},this.validate=function(){const t=this.getValue()?.length,{maxLength:e}=this.reporting.input.attrs;return!t||t<=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("char_max")}}f.prototype=Object.create(s.prototype);const m=f,{isEmpty:y}=JetFormBuilderFunctions;function v(){s.call(this),this.type="required"}v.prototype=Object.create(s.prototype),v.prototype.isSupported=function(t,e){return e.input.isRequired},v.prototype.validate=function(){const t=this.getValue();return!y(t)},v.prototype.getRawMessage=function(){return this.getMessageBySlug("empty")};const S=v;function b(){s.call(this),this.isSupported=function(t){return t.classList.contains("jet-form-builder__masked-field")&&jQuery.fn.inputmask},this.validate=function(){const t=this.getValue(),e=this.reporting.getNode();return!t||e.inputmask.isComplete()},this.getRawMessage=function(){return this.getMessageBySlug("inputmask")}}b.prototype=Object.create(s.prototype);const w=b;function j(){s.call(this),this.isSupported=function(t,e){var i;const r=t.closest(".jet-form-builder-row"),s=JSON.parse(null!==(i=r.dataset?.validationRules)&&void 0!==i?i:"[]");return!!Boolean(s.length)&&(e.restrictions=[...e.restrictions,...X(s,e)],!1)}}j.prototype=Object.create(s.prototype);const _=j;function R(){s.call(this),this.attrs={}}R.prototype=Object.create(s.prototype),R.prototype.attrs={},R.prototype.setAttrs=function(t){this.attrs=t},R.prototype.getSlug=function(){throw new Error("you need to return slug of rule")},R.prototype.getRawMessage=function(){var t;return null!==(t=this.attrs?.message)&&void 0!==t?t:""};const P=R;function A(){P.call(this),this.getSlug=function(){return"contain"}}A.prototype=Object.create(P.prototype),A.prototype.setAttrs=function(t){P.prototype.setAttrs.call(this,t),Z.call(this)},A.prototype.validate=function(){const t=this.getValue();return!t||t.includes(this.attrs.value)};const O=A;function B(){O.call(this),this.getSlug=function(){return"contain_not"},this.validate=function(){return!this.getValue()||!O.prototype.validate.call(this)}}B.prototype=Object.create(O.prototype);const V=B;function x(){P.call(this),this.getSlug=function(){return"regexp"}}x.prototype=Object.create(P.prototype),x.prototype.setAttrs=function(t){P.prototype.setAttrs.call(this,t),Z.call(this)},x.prototype.validate=function(){const t=this.getValue();return!t||new RegExp(this.attrs.value,"g").test(t)};const M=x;function F(){M.call(this),this.getSlug=function(){return"regexp_not"},this.validate=function(){return!this.getValue()||!M.prototype.validate.call(this)}}F.prototype=Object.create(M.prototype);const E=F,k=window.wp.apiFetch;var L=t.n(k);function N(){P.call(this),this.getSlug=function(){return"ssr"},this.isServerSide=function(){return!0},this.validatePromise=async function(t=null){if(!this.getValue())return Promise.resolve();const e=this.getFormData(),{rootNode:i}=this.reporting.input.getRoot();switch(i.getAttribute("ssr_validation_method")||"rest"){case"admin_ajax":return this.validateViaAdminAjax(e,t);case"self":return this.validateViaSelfRequest(e,t);default:return this.validateViaRest(e,t)}},this.validateViaRest=async function(t,e){try{const i=await L()({path:"/jet-form-builder/v1/validate-field",method:"POST",body:t,signal:e});return i?.result?Promise.resolve():Promise.reject()}catch(t){throw t}},this.validateViaAdminAjax=async function(t,e){try{const i=await fetch(window.JetFormBuilderSettings.adminajaxurl,{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:new URLSearchParams({action:"jet_fb_ssr_validation_ajax",data:JSON.stringify(Object.fromEntries(t))}),signal:e}).then((t=>t.json()));return i?.result?Promise.resolve():Promise.reject()}catch(t){throw t}},this.validateViaSelfRequest=async function(t,e){try{const i=new URL(window.location.href);i.searchParams.set("jet_fb_ssr_self_validation","1");for(const[e,r]of t.entries())i.searchParams.append(e,r);const r=await fetch(i.toString(),{method:"GET",signal:e}).then((t=>t.json()));return r?.result?Promise.resolve():Promise.reject()}catch(t){throw t}},this.getFormData=function(){const{input:t}=this.reporting,{rootNode:e}=t.getRoot(),i=new FormData(e);i.delete("_wpnonce"),i.set("_jfb_validation_rule_index",this.attrs.index);for(const e of t.path)i.append("_jfb_validation_path[]",e);return this.attrs._sig&&i.set("_jfb_validation_sig",this.attrs._sig),i}}N.prototype=Object.create(P.prototype);const J=N;function T(){P.call(this),this.getSlug=function(){return"equal"},this.validate=function(){const t=this.getValue();return!t||t===this.attrs.value}}T.prototype=Object.create(P.prototype),T.prototype.setAttrs=function(t){P.prototype.setAttrs.call(this,t),Z.call(this)};const C=T,{getTimestamp:q}=JetFormBuilderFunctions;function I(){s.call(this),this.watchedAttrs.push("min"),this.isSupported=function(t,e){const{min:i=!1}=e.input.attrs;return!1!==i&&["time","date","datetime-local"].includes(t.type)},this.validate=function(){const t=this.getValue();if(!t)return!0;const{min:e}=this.reporting.input.attrs,{time:i}=q(t),{time:r}=q(e.value.current);return i>=r},this.getRawMessage=function(){return this.getMessageBySlug("date_min")}}I.prototype=Object.create(s.prototype);const D=I,{getTimestamp:H}=JetFormBuilderFunctions;function U(){s.call(this),this.watchedAttrs.push("max"),this.isSupported=function(t,e){const{max:i=!1}=e.input.attrs;return!1!==i&&["time","date","datetime-local"].includes(t.type)},this.validate=function(){const t=this.getValue();if(!t)return!0;const{max:e}=this.reporting.input.attrs,{time:i}=H(t),{time:r}=H(e.value.current);return i<=r},this.getRawMessage=function(){return this.getMessageBySlug("date_max")}}U.prototype=Object.create(s.prototype);const G=U,{applyFilters:Q}=JetPlugins.hooks,{isEmpty:$}=JetFormBuilderFunctions,z=()=>Q("jet.fb.advanced.rules",[O,V,M,E,J,C]);let K=[],W=[];function X(t,e){const i=[];K.length||(K=z());for(const[r,s]of Object.entries(t))for(const t of K){const n=new t;if(s.type===n.getSlug()){delete s.type,n.setReporting(e),n.setAttrs({...s,index:r}),n.onReady(),i.push(n);break}}return i}function Y(t){return t.closest(".jet-form-builder-row")}function Z(){if(!this.attrs?.field)return;const{root:t}=this.reporting.input,e=t.getInput(this.attrs.field);e.watch((()=>{this.attrs.value=e.value.current,this.reporting.valuePrev=null,this.reporting.validateOnChange()})),$(e.value.current)||(this.attrs.value=e.value.current)}function tt(t){for(const e of t.children)if(e.classList.contains("error-message"))return e;const e=t.querySelector(".jet-form-builder-col__end");return!!e&&tt(e)}const{ReportingInterface:et}=JetFormBuilderAbstract,{allRejected:it}=JetFormBuilderFunctions;function rt(){et.call(this),this.type="inherit",this.messages={},this.skipServerSide=!0,this.watchAttrs=[],this.queue=[]}rt.prototype=Object.create(et.prototype),rt.prototype.skipServerSide=!0,rt.prototype.hasServerSide=!1,rt.prototype.isProcess=null,rt.prototype.queue=[],rt.prototype.setRestrictions=function(){!function(t){W.length||(W=Q("jet.fb.restrictions",[D,G,o,u,l,p,w,g,m,S,_]));for(const e of W){const i=new e;i.isSupported(t.getNode(),t)&&(i.setReporting(t),i.onReady(),t.restrictions.push(i))}}(this)},rt.prototype.isSupported=function(t,e){this.type=function(t){var e;const i=Y(t),{validationType:r=""}=null!==(e=i?.dataset)&&void 0!==e?e:{};return r}(t);const i="inherit"===this.type?function(t){var e,i;const r=null!==(e=window?.JetFormsValidation)&&void 0!==e&&e;if(!1===r)return"";const s=t.getSubmit().getFormId(),{type:n=""}=null!==(i=r[s])&&void 0!==i?i:{};return n}(e):this.type;return!!i?.length},rt.prototype.getErrorsRaw=async function(t,e=null){this.hasServerSide&&this.input.loading.start();let i=await it(t);return this.valuePrev=this.input.getValue(),this.hasServerSide&&this.input.loading.end(),e?.aborted&&(i=[]),i},rt.prototype.reportRaw=function(t){let e="";for(const i of t)if(e=i.getMessage(),e?.length)break;e?this.insertError(e):this.clearReport()},rt.prototype.setInput=function(t){this.messages=function(t){var e;const i=Y(t),{validationMessages:r="{}"}=null!==(e=i?.dataset)&&void 0!==e?e:{};return JSON.parse(r)}(t.nodes[0]),et.prototype.setInput.call(this,t)},rt.prototype.observeAttrs=function(){for(const t of this.watchAttrs)this.input.attrs.hasOwnProperty(t)&&this.input.attrs[t].value.watch((()=>{this.valuePrev=null,this.validateOnBlur()}))},rt.prototype.clearReport=function(){(()=>{const t=Y(this.getNode());if(!t)return;t.classList.remove("field-has-error");const e=tt(t);e&&e.remove()})(),this.makeValid()},rt.prototype.insertError=function(t){(()=>{const e=Y(this.getNode()),i=this.createError(e,t);if(e.classList.add("field-has-error"),i.isConnected)return;const r=e.querySelector(".jet-form-builder-col__end");r?r.appendChild(i):e.appendChild(i)})(),this.makeInvalid()},rt.prototype.createError=function(t,e){const i=tt(t);if(i)return i.innerHTML=e,i;const r=this.getNode(),s=document.createElement("div");return s.classList.add("error-message"),s.innerHTML=e,s.id=r.id+"__error",s},rt.prototype.makeInvalid=function(){var t;const e=tt(Y(this.getNode()));this.getNode().setAttribute("aria-invalid","true"),this.getNode().setAttribute("aria-describedby",null!==(t=e?.id)&&void 0!==t&&t)},rt.prototype.makeValid=function(){this.getNode().removeAttribute("aria-invalid"),this.getNode().removeAttribute("aria-describedby")},rt.prototype.validateOnChange=function(t=!1){const e=this.input.getValue();if((!e||""===e)&&null===this.valuePrev&&this.input.getContext().silence)return;this.switchButtonsState(!0);const i=()=>{this.input.getContext().setSilence(!1),this.validate().then((()=>{})).catch((()=>{})).finally((()=>{this.isProcess=null;const t=[...this.queue];this.queue=[],t.length?(this.valuePrev=null,t.forEach((t=>t())),this.switchButtonsState()):this.switchButtonsState()}))};t&&this.isProcess&&(this.queue=[i]),this.isProcess||(this.isProcess=!0,i())},rt.prototype.validateOnBlur=function(t=null){if(this.isProcess)return;const e=this.input.getValue();(e&&""!==e||null!==this.valuePrev||!this.input.getContext().silence)&&(this.isProcess=!0,this.skipServerSide=!1,this.switchButtonsState(!0),this.canSubmitForm(!1),this.canTriggerEnterSubmit(!1),this.input.getContext().setSilence(!1),this.validate(t).then((()=>{})).catch((()=>{})).finally((()=>{this.skipServerSide=!0,this.hasServerSide=!1,this.isProcess=null,this.input.nodes[0].readOnly=!1,t?.aborted||(this.switchButtonsState(),this.canSubmitForm(),this.validityState.current&&this.canTriggerEnterSubmit())})))},rt.prototype.switchButtonsState=function(t=!1){const e=this.input.nodes[0].closest(".jet-form-builder-page");if(e&&!this.input.getContext().silence){const i=e.querySelectorAll(".jet-form-builder__next-page, .jet-form-builder__prev-page, .jet-form-builder__action-button");for(const e of i)(e.classList.contains("jet-form-builder__submit")||this.isNodeBelongThis(e))&&(e.classList.contains("jet-form-builder__prev-page")?e.disabled=t:e.disabled=!0===t||!this.validityState.current)}},rt.prototype.canTriggerEnterSubmit=function(t=!0){const e=this.input.root.form;e&&(e.canTriggerEnterSubmit=t)},rt.prototype.canSubmitForm=function(t=!0){const e=this.input.root.form;e&&(e.canSubmitForm=t)},rt.prototype.isNodeBelongThis=function(t){const e=t.closest(".jet-form-builder-page");return!!e&&!e.classList.contains("jet-form-builder-page--hidden")},rt.prototype.validateOnChangeState=function(){if(this.isProcess)return Promise.resolve();const t=this.input.getValue();return t&&""!==t||null!==this.valuePrev||!this.input.getContext().silence?(this.switchButtonsState(!0),this.canTriggerEnterSubmit(!1),this.input.maskValidation&&this.input.changeStateMaskValidation(),this.isProcess=!0,this.skipServerSide=!1,new Promise(((t,e)=>{this.validate().then(t).catch(e).finally((()=>{this.skipServerSide=!0,this.hasServerSide=!1,this.isProcess=null,this.input.nodes[0].readOnly=!1,this.switchButtonsState(),this.canTriggerEnterSubmit()}))}))):Promise.resolve()},rt.prototype.canProcessRestriction=function(t){return!this.skipServerSide||!t.isServerSide()},rt.prototype.beforeProcessRestriction=function(t){this.hasServerSide=!!t.isServerSide()||this.hasServerSide};const st=rt;var nt;const{addFilter:ot,addAction:at}=JetPlugins.hooks;at("jet.fb.observe.after","jet-form-builder/observe-dynamic-attrs",(function(t){t.getInputs().forEach((t=>{t.reporting instanceof st&&t.reporting.observeAttrs()}))}),11),ot("jet.fb.reporting","jet-form-builder/advanced-reporting",(function(t){return[st,...t]})),window.JetFormBuilderAbstract={...null!==(nt=window.JetFormBuilderAbstract)&&void 0!==nt?nt:{},AdvancedRestriction:s,NotEmptyRestriction:S}})(); \ No newline at end of file diff --git a/assets/build/frontend/calculated.field.asset.php b/assets/build/frontend/calculated.field.asset.php index 102631206..9bf2dc471 100644 --- a/assets/build/frontend/calculated.field.asset.php +++ b/assets/build/frontend/calculated.field.asset.php @@ -1 +1 @@ - array(), 'version' => '4ae6e0b6359e9b88a786'); + array(), 'version' => '6b5a998095272f8f2c36'); diff --git a/assets/build/frontend/calculated.field.js b/assets/build/frontend/calculated.field.js index e9c657b90..967eb31a5 100644 --- a/assets/build/frontend/calculated.field.js +++ b/assets/build/frontend/calculated.field.js @@ -1 +1 @@ -(()=>{"use strict";var __webpack_modules__={7889(__unused_webpack_module,__webpack_exports__,__webpack_require__){function getCalculatedWrapper(e){return e.closest(".jet-form-builder__calculated-field")}function isCalculated(e){var t;return!(null===(t=getCalculatedWrapper(e)?.dataset?.formula?.length)||void 0===t||!t)}function convertMillisToDateString(millisInput,format="YYYY-MM-DD"){const millis=eval(millisInput);if(!millis||isNaN(millis)||null===millis||0===millis)return 0;const date=new Date(millis),monthsFull=["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort=monthsFull.map(e=>e.slice(0,3)),daysFull=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort=daysFull.map(e=>e.slice(0,3)),hours12=date.getHours()%12||12,ampm=date.getHours()>=12?"PM":"AM",map={YYYY:date.getFullYear(),MM:String(date.getMonth()+1).padStart(2,"0"),M:date.getMonth()+1,MMM:monthsShort[date.getMonth()],MMMM:monthsFull[date.getMonth()],DD:String(date.getDate()).padStart(2,"0"),D:date.getDate(),HH:String(date.getHours()).padStart(2,"0"),H:date.getHours(),hh:String(hours12).padStart(2,"0"),h:hours12,mm:String(date.getMinutes()).padStart(2,"0"),m:date.getMinutes(),ss:String(date.getSeconds()).padStart(2,"0"),s:date.getSeconds(),dddd:daysFull[date.getDay()],ddd:daysShort[date.getDay()],A:ampm},sortedKeys=Object.keys(map).sort((e,t)=>t.length-e.length);let formatted=format;const placeholders={};sortedKeys.forEach((e,t)=>{const a=`\0${t}\0`;placeholders[a]=String(map[e]);const i=e.length<=2&&/^[a-zA-Z]+$/.test(e)?new RegExp(`\\b${e}\\b`,"g"):new RegExp(e,"g");formatted=formatted.replace(i,a)});for(const[e,t]of Object.entries(placeholders))formatted=formatted.split(e).join(t);return formatted}__webpack_require__.d(__webpack_exports__,{eN:()=>convertMillisToDateString,u3:()=>getCalculatedWrapper,vf:()=>isCalculated})}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var a=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e](a,a.exports,__webpack_require__),a.exports}__webpack_require__.d=(e,t)=>{for(var a in t)__webpack_require__.o(t,a)&&!__webpack_require__.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var __webpack_exports__={},functions=__webpack_require__(7889),_window$JetFormBuilde;const{InputData,CalculatedFormula}=window.JetFormBuilderAbstract,{applyFilters}=JetPlugins.hooks,{applyFilters:deprecatedApplyFilters=!1}=null!==(_window$JetFormBuilde=window?.JetFormBuilderMain?.filters)&&void 0!==_window$JetFormBuilde?_window$JetFormBuilde:{};function CalculatedData(){InputData.call(this),this.formula="",this.precision=0,this.sepDecimal="",this.sepThousands="",this.visibleValNode=null,this.valueTypeProp="number",this.isSupported=function(e){return(0,functions.vf)(e)},this.setValue=function(){const e=new CalculatedFormula(this,{forceFunction:!0});e.observe(this.formula),e.setResult=()=>{if("date"===this.valueTypeProp){const t=e.calculate();this.value.current=(0,functions.eN)(t,this.dateFormat)}else this.value.current=e.calculate()},e.relatedCallback=e=>{const t=applyFilters("jet.fb.calculated.callback",!1,e,this);if(!1!==t)return t;const a="number"===this.valueTypeProp?e.calcValue:e.value.current;if(!1===deprecatedApplyFilters)return a;const i=deprecatedApplyFilters("forms/calculated-field-value",e.value.current,jQuery(e.nodes[0]));return i===e.value.current?a:i},e.emptyValue=()=>"number"===this.valueTypeProp?0:"",e.setResult(),this.value.current=this.value.applySanitizers(this.value.current),this.beforeSubmit(t=>{this.value.silence(),this.value.current=null,this.value.silence(),e.setResult(),t()},this)},this.setNode=function(e){InputData.prototype.setNode.call(this,e),InputData.prototype.reQueryValue=()=>{};const{formula:t,precision:a,sepDecimal:i,valueType:r,sepThousands:l,dateFormat:s}=(0,functions.u3)(e).dataset;this.formula=t,this.precision=+a,this.sepDecimal=null!=i?i:"",this.sepThousands=null!=l?l:"",this.visibleValNode=e.nextElementSibling,this.valueTypeProp=r,this.dateFormat=s,this.inputType="calculated"},this.addListeners=function(){},this.report=()=>{},this.reQueryValue=()=>{},this.revertValue=()=>{}}CalculatedData.prototype=Object.create(InputData.prototype);const input=CalculatedData,{BaseSignal}=window.JetFormBuilderAbstract;function SignalCalculated(){BaseSignal.call(this),this.isSupported=function(e){return(0,functions.vf)(e)},this.baseSignal=function(){const[e]=this.input.nodes,t="number"===this.input.valueTypeProp;this.input.calcValue=t?this.withPrecision():this.input.value.current,this.input.value.silence(),this.input.value.current=t?this.convertValue():this.input.value.current,this.input.value.silence(),this.input.visibleValNode.textContent=this.input.value.current,e.value=this.input.calcValue},this.runSignal=function(){this.baseSignal();const[e]=this.input.nodes;this.triggerJQuery(e)}}SignalCalculated.prototype=Object.create(BaseSignal.prototype),SignalCalculated.prototype.convertValue=function(){const e=this.input.value.current;if(Number.isNaN(Number(e)))return 0;const t=this.withPrecision().toString().split(".");return this.input.sepThousands&&(t[0]=t[0].replace(/\B(?=(\d{3})+(?!\d))/g,this.input.sepThousands)),t.join(this.input.sepDecimal)},SignalCalculated.prototype.withPrecision=function(){return Number(this.input.value.current).toFixed(this.input.precision)};const signal=SignalCalculated,{addFilter}=JetPlugins.hooks;addFilter("jet.fb.inputs","jet-form-builder/calculated-field",function(e){return[input,...e]}),addFilter("jet.fb.signals","jet-form-builder/calculated-field",function(e){return[signal,...e]})})(); \ No newline at end of file +(()=>{"use strict";var __webpack_modules__={7889:(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{function getCalculatedWrapper(e){return e.closest(".jet-form-builder__calculated-field")}function isCalculated(e){var t;return!(null===(t=getCalculatedWrapper(e)?.dataset?.formula?.length)||void 0===t||!t)}function convertMillisToDateString(millisInput,format="YYYY-MM-DD"){const millis=eval(millisInput);if(!millis||isNaN(millis)||null===millis||0===millis)return 0;const date=new Date(millis),monthsFull=["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort=monthsFull.map((e=>e.slice(0,3))),daysFull=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort=daysFull.map((e=>e.slice(0,3))),hours12=date.getHours()%12||12,ampm=date.getHours()>=12?"PM":"AM",map={YYYY:date.getFullYear(),MM:String(date.getMonth()+1).padStart(2,"0"),M:date.getMonth()+1,MMM:monthsShort[date.getMonth()],MMMM:monthsFull[date.getMonth()],DD:String(date.getDate()).padStart(2,"0"),D:date.getDate(),HH:String(date.getHours()).padStart(2,"0"),H:date.getHours(),hh:String(hours12).padStart(2,"0"),h:hours12,mm:String(date.getMinutes()).padStart(2,"0"),m:date.getMinutes(),ss:String(date.getSeconds()).padStart(2,"0"),s:date.getSeconds(),dddd:daysFull[date.getDay()],ddd:daysShort[date.getDay()],A:ampm},sortedKeys=Object.keys(map).sort(((e,t)=>t.length-e.length));let formatted=format;const placeholders={};sortedKeys.forEach(((e,t)=>{const a=`\0${t}\0`;placeholders[a]=String(map[e]);const i=e.length<=2&&/^[a-zA-Z]+$/.test(e)?new RegExp(`\\b${e}\\b`,"g"):new RegExp(e,"g");formatted=formatted.replace(i,a)}));for(const[e,t]of Object.entries(placeholders))formatted=formatted.split(e).join(t);return formatted}__webpack_require__.d(__webpack_exports__,{eN:()=>convertMillisToDateString,u3:()=>getCalculatedWrapper,vf:()=>isCalculated})}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var a=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e](a,a.exports,__webpack_require__),a.exports}__webpack_require__.d=(e,t)=>{for(var a in t)__webpack_require__.o(t,a)&&!__webpack_require__.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var __webpack_exports__={},functions=__webpack_require__(7889),_window$JetFormBuilde;const{InputData,CalculatedFormula}=window.JetFormBuilderAbstract,{applyFilters}=JetPlugins.hooks,{applyFilters:deprecatedApplyFilters=!1}=null!==(_window$JetFormBuilde=window?.JetFormBuilderMain?.filters)&&void 0!==_window$JetFormBuilde?_window$JetFormBuilde:{};function CalculatedData(){InputData.call(this),this.formula="",this.precision=0,this.sepDecimal="",this.sepThousands="",this.visibleValNode=null,this.valueTypeProp="number",this.isSupported=function(e){return(0,functions.vf)(e)},this.setValue=function(){const e=new CalculatedFormula(this,{forceFunction:!0});e.observe(this.formula),e.setResult=()=>{if("date"===this.valueTypeProp){const t=e.calculate();this.value.current=(0,functions.eN)(t,this.dateFormat)}else this.value.current=e.calculate()},e.relatedCallback=e=>{const t=applyFilters("jet.fb.calculated.callback",!1,e,this);if(!1!==t)return t;const a="number"===this.valueTypeProp?e.calcValue:e.value.current;if(!1===deprecatedApplyFilters)return a;const i=deprecatedApplyFilters("forms/calculated-field-value",e.value.current,jQuery(e.nodes[0]));return i===e.value.current?a:i},e.emptyValue=()=>"number"===this.valueTypeProp?0:"",e.setResult(),this.value.current=this.value.applySanitizers(this.value.current),this.beforeSubmit((t=>{this.value.silence(),this.value.current=null,this.value.silence(),e.setResult(),t()}),this)},this.setNode=function(e){InputData.prototype.setNode.call(this,e),InputData.prototype.reQueryValue=()=>{};const{formula:t,precision:a,sepDecimal:i,valueType:r,sepThousands:l,dateFormat:s}=(0,functions.u3)(e).dataset;this.formula=t,this.precision=+a,this.sepDecimal=null!=i?i:"",this.sepThousands=null!=l?l:"",this.visibleValNode=e.nextElementSibling,this.valueTypeProp=r,this.dateFormat=s,this.inputType="calculated"},this.addListeners=function(){},this.report=()=>{},this.reQueryValue=()=>{},this.revertValue=()=>{}}CalculatedData.prototype=Object.create(InputData.prototype);const input=CalculatedData,{BaseSignal}=window.JetFormBuilderAbstract;function SignalCalculated(){BaseSignal.call(this),this.isSupported=function(e){return(0,functions.vf)(e)},this.baseSignal=function(){const[e]=this.input.nodes,t="number"===this.input.valueTypeProp;this.input.calcValue=t?this.withPrecision():this.input.value.current,this.input.value.silence(),this.input.value.current=t?this.convertValue():this.input.value.current,this.input.value.silence(),this.input.visibleValNode.textContent=this.input.value.current,e.value=this.input.calcValue},this.runSignal=function(){this.baseSignal();const[e]=this.input.nodes;this.triggerJQuery(e)}}SignalCalculated.prototype=Object.create(BaseSignal.prototype),SignalCalculated.prototype.convertValue=function(){const e=this.input.value.current;if(Number.isNaN(Number(e)))return 0;const t=this.withPrecision().toString().split(".");return this.input.sepThousands&&(t[0]=t[0].replace(/\B(?=(\d{3})+(?!\d))/g,this.input.sepThousands)),t.join(this.input.sepDecimal)},SignalCalculated.prototype.withPrecision=function(){return Number(this.input.value.current).toFixed(this.input.precision)};const signal=SignalCalculated,{addFilter}=JetPlugins.hooks;addFilter("jet.fb.inputs","jet-form-builder/calculated-field",(function(e){return[input,...e]})),addFilter("jet.fb.signals","jet-form-builder/calculated-field",(function(e){return[signal,...e]}))})(); \ No newline at end of file diff --git a/assets/build/frontend/conditional.block.asset.php b/assets/build/frontend/conditional.block.asset.php index 7c8a4644a..7197640b0 100644 --- a/assets/build/frontend/conditional.block.asset.php +++ b/assets/build/frontend/conditional.block.asset.php @@ -1 +1 @@ - array(), 'version' => '8baca1b6cf0d3cc96cad'); + array(), 'version' => '391b1d4b9d68e362bd3f'); diff --git a/assets/build/frontend/conditional.block.js b/assets/build/frontend/conditional.block.js index 147a82e4e..a63b4efa3 100644 --- a/assets/build/frontend/conditional.block.js +++ b/assets/build/frontend/conditional.block.js @@ -1 +1 @@ -(()=>{"use strict";function t(){}t.prototype.isSupported=function(t){return!1},t.prototype.observe=function(){},t.prototype.setOptions=function(t){},t.prototype.isPassed=function(){throw new Error("You must provide ConditionItem::isPassed function")},t.prototype.setList=function(t){this.list=t};const e=t,{CalculatedFormula:i}=JetFormBuilderAbstract;function n(){e.call(this),this.isSupported=function(t){return!!t?.field?.length},this.observe=function(){var t;const e=this.getInput();this.list._fields=null!==(t=this.list._fields)&&void 0!==t?t:[],e&&!this.list._fields.includes(this.field)&&(this.list._fields.push(this.field),e.watch(()=>this.list.onChangeRelated()))},this.getInput=function(){return this.list.root.getInput(this.field)},this.isInputInDOM=function(t){return!!t?.nodes&&(Array.isArray(t.nodes)?t.nodes:Object.values(t.nodes)).some(t=>t&&document.contains(t))},this.isPassed=function(){const t=this.getInput();return!!t&&!!this.isInputInDOM(t)&&t.checker.check(this,t)},this.setOptions=function(t){this.field=t.field,this.operator=t.operator,this.render_state=t.render_state,this.use_preset=t.use_preset;let e=t?.value;if(Array.isArray(e)||(e=e.split(",").map(t=>t.trim())),this.use_preset)this.value=e;else{this.value={};for(const[t,n]of Object.entries(e)){const e=new i(this.list.root);e.observe(n),e.setResult=()=>{this.value[t]=""+e.calculate(),this.list.onChangeRelated()},e.setResult()}this.value=Object.values(this.value)}}}n.prototype=Object.create(e.prototype),n.prototype.field=null,n.prototype.value=null,n.prototype.operator=null,n.prototype.use_preset=null;const o=n;function s(){e.call(this),this.isSupported=function(t){var e;return null!==(e=t.or_operator)&&void 0!==e&&e}}s.prototype=Object.create(e.prototype);const r=s;function l(t,e){this.root=e,this.setConditions(t)}l.prototype={root:null,conditions:[],invalid:[],groups:[],onChangeRelated(){this.getResult()&&this.onMatchConditions()},onMatchConditions(){},observe(){for(const t of this.getConditions())t.observe()},setConditions(t){"string"==typeof t&&(t=JSON.parse(t)),this.conditions=t.map(t=>function(t,e){P.length||(P=J());for(const i of P){const n=new i;if(n.isSupported(t))return n.setList(e),n.setOptions(t),n}}(t,this)).filter(t=>t);const e={};let i=0;for(const t of this.getConditions()){var n;t instanceof r?i++:(e[i]=null!==(n=e[i])&&void 0!==n?n:[],e[i].push(t))}this.groups=Object.values(e)},getResult(){if(this.invalid=[],!this.groups.length)return!0;for(const t of this.groups)if(this.isValidGroup(t))return!0;return!1},isValidGroup(t){for(const e of t)if(!e.isPassed())return this.invalid.push(e),!1;return!0},getConditions(){return this.conditions}};const c=l;function a(t,e){c.call(this,t,e)}a.prototype=Object.create(c.prototype),a.prototype.block=null;const u=a,{doAction:h}=JetPlugins.hooks,{ReactiveVar:d}=JetFormBuilderAbstract,{validateInputsAll:p}=JetFormBuilderFunctions,f=new WeakSet;function m(t,e){this.node=t,t.jfbConditional=this,this.root=e,this.isObserved=!1,this.list=null,this.function=null,this.settings=null,this.page=null,this.multistep=null,this.comment=null,this.inputs=[],this.isRight=new d(null),this.isRight.make(),this.setConditions(),this.setInputs(),this.setFunction(),window?.JetFormBuilderSettings?.devmode||(delete this.node.dataset.jfbConditional,delete this.node.dataset.jfbFunc),h("jet.fb.conditional.init",this)}m.prototype={setConditions(){const{jfbConditional:t}=this.node.dataset;this.list=new u(t,this.root),this.list.block=this,this.list.onChangeRelated=()=>{this.isRight.current=this.list.getResult()}},setInputs(){this.inputs=Array.from(this.node.querySelectorAll("[data-jfb-sync]")).map(t=>t.jfbSync).filter(t=>t)},insertComment(){this.settings?.dom&&(this.comment=document.createComment(""),this.node.parentElement.insertBefore(this.comment,this.node.nextSibling))},observe(){this.isObserved||(this.isObserved=!0,this.insertComment(),this.isRight.watch(()=>this.runFunction()),this.isRight.watch(()=>this.validateInputs()),this.list.observe())},runFunction(){const t=this.isRight.current;switch(this.function){case"show":this.showBlock(t);break;case"hide":this.showBlock(!t);break;case"disable":this.disableBlock(t);break;default:h("jet.fb.conditional.block.runFunction",this.function,t,this)}},validateInputs(){setTimeout(()=>{p(this.inputs,!0).then(()=>{}).catch(()=>{})})},showBlock(t){if(this.node.classList.remove("jet-form-builder--hidden"),this.settings?.dom){this.showBlockDom(t),t&&requestAnimationFrame(()=>this.reinitChildren());const e=new CustomEvent("jet-form-builder/conditional-block/block-toggle-hidden-dom",{detail:{block:this.node,result:t}});return void document.dispatchEvent(e)}this.node.style.display=t?"block":"none",t&&requestAnimationFrame(()=>this.reinitChildren())},notifyInputs(){this.inputs.forEach(t=>{t.value?.notify?.()})},clearChoiceInputs(){this.inputs.forEach(t=>{var e;(Array.isArray(t.nodes)?t.nodes:Object.values(null!==(e=t.nodes)&&void 0!==e?e:{})).some(t=>!!t&&("SELECT"===t.tagName||"checkbox"===t.type||"radio"===t.type))&&(t.onClear?.(),t.value?.notify?.())})},showBlockDom(t){const e=this.root.dataInputs;if(!t)return this.clearChoiceInputs(),this.node.remove(),this.notifyInputs(),void this.reCalculateFields(e);this.comment.parentElement.insertBefore(this.node,this.comment),this.notifyInputs(),this.reCalculateFields(e)},disableBlock(t){this.node.disabled=t},setFunction(){let t;this.function=this.node.dataset.jfbFunc;try{t=JSON.parse(this.function)}catch(t){return}const[[e,i]]=Object.entries(t);this.function=e,this.settings=i},reinitChildren(){const t=this.root;this.node.querySelectorAll("[data-jfb-conditional][data-jfb-func]").forEach(e=>{if(!e.jfbConditional&&!f.has(e))try{const i=new m(e,t);i.observe(),i.isRight.current=i.list.getResult(),f.add(e)}catch(t){console&&console.warn&&console.warn("reinitChildren: init failed",t,e)}})},reCalculateFields(t){const e=this.getAffectedFields(t),i=new Map;e.forEach(e=>{if(t[e]&&t[e].formula){const n=t[e].nodes?.[0];let o=!1;if(n){const t=n;if(!i.has(t)){const e=this.isFieldVisible(n),o=document.contains(n);i.set(t,e||o)}o=i.get(t)}if(o)try{t[e].reCalculateFormula()}catch(t){console.warn(`Error recalculating formula for field ${e}:`,t)}}})},isFieldVisible(t){if(!t)return!1;if(!document.contains(t))return!1;const e=window.getComputedStyle(t);if("none"===e.display||"hidden"===e.visibility)return!1;let i=t.parentElement;for(;i&&i!==document.body;){const t=window.getComputedStyle(i);if("none"===t.display||"hidden"===t.visibility)return!1;i=i.parentElement}return!0},getAffectedFields(t){const e=[],i=Array.from(this.node.querySelectorAll("[data-jfb-sync]")),n=new Set;return i.forEach(t=>{var e,i;const o=null!==(e=null!==(i=t.jfbSync?.name)&&void 0!==i?i:t.getAttribute("name"))&&void 0!==e?e:t.querySelector("[name]")?.getAttribute("name");o&&n.add(o)}),Object.keys(t).forEach(o=>{const s=t[o];if(!s||!s.formula)return;const r=s.nodes?.[0];let l=!1;r&&i.includes(r)&&(l=!0),!l&&s.formula&&n.forEach(t=>{s.formula.includes(`%${t}%`)&&(l=!0)}),l&&e.push(o)}),e}};const b=m,{isEmpty:y}=JetFormBuilderFunctions;function g(){this.operators=this.getOperators()}g.prototype={isSupported:()=>!0,operators:{},getOperators:()=>({equal:(t,e)=>t===e[0],empty:t=>y(t),greater:(t,e)=>+t>+e[0],greater_or_eq:(t,e)=>+t>=+e[0],less:(t,e)=>+t<+e[0],less_or_eq:(t,e)=>+t<=+e[0],between:(t,e)=>!(!e?.length||null===t)&&e[0]<=+t&&+t<=e[1],one_of:(t,e)=>!!e?.length&&0<=e.indexOf(t),contain:(t,e)=>!!t&&0<=t.indexOf(e[0])}),check(t,e){const i=e.value.current,n=t.value;return this.checkRaw(t.operator,i,n)},checkRaw(t,e,i){if(this.operators.hasOwnProperty(t))return this.operators[t](e,i);if(0!==t.indexOf("not_"))return!1;const n=t.slice(4);return!!this.operators.hasOwnProperty(n)&&!this.operators[n](e,i)}};const v=g;function C(){v.call(this),this.operators.one_of=(t,e)=>!(!e?.length||!t?.length)&&t.some(t=>-1!==e.indexOf(t)),this.operators.contain=(t,e)=>!!t?.length&&t.some(t=>-1!==t.indexOf(e[0])),this.isSupported=function(t){return t.isArray()}}C.prototype=Object.create(v.prototype);const w=C,{getTimestamp:k}=JetFormBuilderFunctions,{Min_In_Sec:j,Milli_In_Sec:O}=JetFormBuilderConst,F=(new Date).getTimezoneOffset();function _(){v.call(this),this.isSupported=function(t){const[e]=t.nodes;return["date","time","datetime-local"].includes(e.type)},this.check=function(t,e){const{time:i}=k(e.value.current),n=t.value.map(e=>{const{time:i,type:n}=k(e);return"number"===n&&t.use_preset?i*O+F*j:i});return this.checkRaw(t.operator,i,n)}}_.prototype=Object.create(v.prototype);const S=_;function I(){e.call(this),this.isSupported=function(t){return"render_state"===t?.operator},this.getInput=function(){return this.list.root.getInput("_jfb_current_render_states")},this.observe=function(){this.getInput().watch(()=>this.list.onChangeRelated())},this.setOptions=function(t){var e;this.render_state=null!==(e=t.render_state)&&void 0!==e?e:[]},this.isPassed=function(){const{value:t}=this.getInput();return!!t.current?.length&&this.render_state.some(e=>t.current.includes(e))}}I.prototype=Object.create(e.prototype),I.prototype.render_state=[];const A=I;function R(){v.call(this),this.isSupported=function(t){return"calculated"===t.inputType},this.check=function(t,e){const i=e.calcValue,n=t.value;return this.checkRaw(t.operator,i,n)}}R.prototype=Object.create(v.prototype);const B=R,{applyFilters:E}=JetPlugins.hooks,J=()=>E("jet.fb.conditional.types",[A,r,o]);let P=[],q=[];function x(t,e){if(t.hasOwnProperty("jfbConditional"))return t.jfbConditional;const i=new b(t,e);return i.observe(),i.list.onChangeRelated(),i}function M(t){q.length||(q=E("jet.fb.conditional.checkers",[w,S,B,v]));for(const e of q){const i=new e;if(i.isSupported(t))return i}return null}var L;const{addAction:N}=JetPlugins.hooks;N("jet.fb.observe.after","jet-form-builder/conditional-block",function(t){for(const e of t.rootNode.querySelectorAll("[data-jfb-conditional]"))x(e,t)},20),N("jet.fb.input.makeReactive","jet-form-builder/conditional-block",function(t){t.checker=M(t)}),N("jet.fb.conditional.block.runFunction","jet-form-builder/conditional-block",function(t,e,i){"setCssClass"===t&&i.settings?.className&&i.node.classList.toggle(i.settings.className,e)}),window.JetFormBuilderAbstract={...null!==(L=window.JetFormBuilderAbstract)&&void 0!==L?L:{},ConditionItem:e,ConditionalBlock:b,createConditionalBlock:x,createChecker:M,ConditionsList:c}})(); \ No newline at end of file +(()=>{"use strict";function t(){}t.prototype.isSupported=function(t){return!1},t.prototype.observe=function(){},t.prototype.setOptions=function(t){},t.prototype.isPassed=function(){throw new Error("You must provide ConditionItem::isPassed function")},t.prototype.setList=function(t){this.list=t};const e=t,{CalculatedFormula:i}=JetFormBuilderAbstract;function n(){e.call(this),this.isSupported=function(t){return!!t?.field?.length},this.observe=function(){var t;const e=this.getInput();this.list._fields=null!==(t=this.list._fields)&&void 0!==t?t:[],e&&!this.list._fields.includes(this.field)&&(this.list._fields.push(this.field),e.watch((()=>this.list.onChangeRelated())))},this.getInput=function(){return this.list.root.getInput(this.field)},this.isInputInDOM=function(t){return!!t?.nodes&&(Array.isArray(t.nodes)?t.nodes:Object.values(t.nodes)).some((t=>t&&document.contains(t)))},this.isPassed=function(){const t=this.getInput();return!!t&&!!this.isInputInDOM(t)&&t.checker.check(this,t)},this.setOptions=function(t){this.field=t.field,this.operator=t.operator,this.render_state=t.render_state,this.use_preset=t.use_preset;let e=t?.value;if(Array.isArray(e)||(e=e.split(",").map((t=>t.trim()))),this.use_preset)this.value=e;else{this.value={};for(const[t,n]of Object.entries(e)){const e=new i(this.list.root);e.observe(n),e.setResult=()=>{this.value[t]=""+e.calculate(),this.list.onChangeRelated()},e.setResult()}this.value=Object.values(this.value)}}}n.prototype=Object.create(e.prototype),n.prototype.field=null,n.prototype.value=null,n.prototype.operator=null,n.prototype.use_preset=null;const o=n;function s(){e.call(this),this.isSupported=function(t){var e;return null!==(e=t.or_operator)&&void 0!==e&&e}}s.prototype=Object.create(e.prototype);const r=s;function l(t,e){this.root=e,this.setConditions(t)}l.prototype={root:null,conditions:[],invalid:[],groups:[],onChangeRelated(){this.getResult()&&this.onMatchConditions()},onMatchConditions(){},observe(){for(const t of this.getConditions())t.observe()},setConditions(t){"string"==typeof t&&(t=JSON.parse(t)),this.conditions=t.map((t=>function(t,e){P.length||(P=J());for(const i of P){const n=new i;if(n.isSupported(t))return n.setList(e),n.setOptions(t),n}}(t,this))).filter((t=>t));const e={};let i=0;for(const t of this.getConditions()){var n;t instanceof r?i++:(e[i]=null!==(n=e[i])&&void 0!==n?n:[],e[i].push(t))}this.groups=Object.values(e)},getResult(){if(this.invalid=[],!this.groups.length)return!0;for(const t of this.groups)if(this.isValidGroup(t))return!0;return!1},isValidGroup(t){for(const e of t)if(!e.isPassed())return this.invalid.push(e),!1;return!0},getConditions(){return this.conditions}};const c=l;function a(t,e){c.call(this,t,e)}a.prototype=Object.create(c.prototype),a.prototype.block=null;const u=a,{doAction:h}=JetPlugins.hooks,{ReactiveVar:d}=JetFormBuilderAbstract,{validateInputsAll:p}=JetFormBuilderFunctions,f=new WeakSet;function m(t,e){this.node=t,t.jfbConditional=this,this.root=e,this.isObserved=!1,this.list=null,this.function=null,this.settings=null,this.page=null,this.multistep=null,this.comment=null,this.inputs=[],this.isRight=new d(null),this.isRight.make(),this.setConditions(),this.setInputs(),this.setFunction(),window?.JetFormBuilderSettings?.devmode||(delete this.node.dataset.jfbConditional,delete this.node.dataset.jfbFunc),h("jet.fb.conditional.init",this)}m.prototype={setConditions(){const{jfbConditional:t}=this.node.dataset;this.list=new u(t,this.root),this.list.block=this,this.list.onChangeRelated=()=>{this.isRight.current=this.list.getResult()}},setInputs(){this.inputs=Array.from(this.node.querySelectorAll("[data-jfb-sync]")).map((t=>t.jfbSync)).filter((t=>t))},insertComment(){this.settings?.dom&&(this.comment=document.createComment(""),this.node.parentElement.insertBefore(this.comment,this.node.nextSibling))},observe(){this.isObserved||(this.isObserved=!0,this.insertComment(),this.isRight.watch((()=>this.runFunction())),this.isRight.watch((()=>this.validateInputs())),this.list.observe())},runFunction(){const t=this.isRight.current;switch(this.function){case"show":this.showBlock(t);break;case"hide":this.showBlock(!t);break;case"disable":this.disableBlock(t);break;default:h("jet.fb.conditional.block.runFunction",this.function,t,this)}},validateInputs(){setTimeout((()=>{p(this.inputs,!0).then((()=>{})).catch((()=>{}))}))},showBlock(t){if(this.node.classList.remove("jet-form-builder--hidden"),this.settings?.dom){this.showBlockDom(t),t&&requestAnimationFrame((()=>this.reinitChildren()));const e=new CustomEvent("jet-form-builder/conditional-block/block-toggle-hidden-dom",{detail:{block:this.node,result:t}});document.dispatchEvent(e)}else this.node.style.display=t?"block":"none",t&&requestAnimationFrame((()=>this.reinitChildren()))},notifyInputs(){this.inputs.forEach((t=>{t.value?.notify?.()}))},clearChoiceInputs(){this.inputs.forEach((t=>{var e;(Array.isArray(t.nodes)?t.nodes:Object.values(null!==(e=t.nodes)&&void 0!==e?e:{})).some((t=>!!t&&("SELECT"===t.tagName||"checkbox"===t.type||"radio"===t.type)))&&(t.onClear?.(),t.value?.notify?.())}))},showBlockDom(t){const e=this.root.dataInputs;if(!t)return this.clearChoiceInputs(),this.node.remove(),this.notifyInputs(),void this.reCalculateFields(e);this.comment.parentElement.insertBefore(this.node,this.comment),this.notifyInputs(),this.reCalculateFields(e)},disableBlock(t){this.node.disabled=t},setFunction(){let t;this.function=this.node.dataset.jfbFunc;try{t=JSON.parse(this.function)}catch(t){return}const[[e,i]]=Object.entries(t);this.function=e,this.settings=i},reinitChildren(){const t=this.root;this.node.querySelectorAll("[data-jfb-conditional][data-jfb-func]").forEach((e=>{if(!e.jfbConditional&&!f.has(e))try{const i=new m(e,t);i.observe(),i.isRight.current=i.list.getResult(),f.add(e)}catch(t){console&&console.warn&&console.warn("reinitChildren: init failed",t,e)}}))},reCalculateFields(t){const e=this.getAffectedFields(t),i=new Map;e.forEach((e=>{if(t[e]&&t[e].formula){const n=t[e].nodes?.[0];let o=!1;if(n){const t=n;if(!i.has(t)){const e=this.isFieldVisible(n),o=document.contains(n);i.set(t,e||o)}o=i.get(t)}if(o)try{t[e].reCalculateFormula()}catch(t){console.warn(`Error recalculating formula for field ${e}:`,t)}}}))},isFieldVisible(t){if(!t)return!1;if(!document.contains(t))return!1;const e=window.getComputedStyle(t);if("none"===e.display||"hidden"===e.visibility)return!1;let i=t.parentElement;for(;i&&i!==document.body;){const t=window.getComputedStyle(i);if("none"===t.display||"hidden"===t.visibility)return!1;i=i.parentElement}return!0},getAffectedFields(t){const e=[],i=Array.from(this.node.querySelectorAll("[data-jfb-sync]")),n=new Set;return i.forEach((t=>{var e,i;const o=null!==(e=null!==(i=t.jfbSync?.name)&&void 0!==i?i:t.getAttribute("name"))&&void 0!==e?e:t.querySelector("[name]")?.getAttribute("name");o&&n.add(o)})),Object.keys(t).forEach((o=>{const s=t[o];if(!s||!s.formula)return;const r=s.nodes?.[0];let l=!1;r&&i.includes(r)&&(l=!0),!l&&s.formula&&n.forEach((t=>{s.formula.includes(`%${t}%`)&&(l=!0)})),l&&e.push(o)})),e}};const b=m,{isEmpty:y}=JetFormBuilderFunctions;function g(){this.operators=this.getOperators()}g.prototype={isSupported:()=>!0,operators:{},getOperators:()=>({equal:(t,e)=>t===e[0],empty:t=>y(t),greater:(t,e)=>+t>+e[0],greater_or_eq:(t,e)=>+t>=+e[0],less:(t,e)=>+t<+e[0],less_or_eq:(t,e)=>+t<=+e[0],between:(t,e)=>!(!e?.length||null===t)&&e[0]<=+t&&+t<=e[1],one_of:(t,e)=>!!e?.length&&0<=e.indexOf(t),contain:(t,e)=>!!t&&0<=t.indexOf(e[0])}),check(t,e){const i=e.value.current,n=t.value;return this.checkRaw(t.operator,i,n)},checkRaw(t,e,i){if(this.operators.hasOwnProperty(t))return this.operators[t](e,i);if(0!==t.indexOf("not_"))return!1;const n=t.slice(4);return!!this.operators.hasOwnProperty(n)&&!this.operators[n](e,i)}};const v=g;function C(){v.call(this),this.operators.one_of=(t,e)=>!(!e?.length||!t?.length)&&t.some((t=>-1!==e.indexOf(t))),this.operators.contain=(t,e)=>!!t?.length&&t.some((t=>-1!==t.indexOf(e[0]))),this.isSupported=function(t){return t.isArray()}}C.prototype=Object.create(v.prototype);const w=C,{getTimestamp:k}=JetFormBuilderFunctions,{Min_In_Sec:j,Milli_In_Sec:O}=JetFormBuilderConst,F=(new Date).getTimezoneOffset();function _(){v.call(this),this.isSupported=function(t){const[e]=t.nodes;return["date","time","datetime-local"].includes(e.type)},this.check=function(t,e){const{time:i}=k(e.value.current),n=t.value.map((e=>{const{time:i,type:n}=k(e);return"number"===n&&t.use_preset?i*O+F*j:i}));return this.checkRaw(t.operator,i,n)}}_.prototype=Object.create(v.prototype);const S=_;function I(){e.call(this),this.isSupported=function(t){return"render_state"===t?.operator},this.getInput=function(){return this.list.root.getInput("_jfb_current_render_states")},this.observe=function(){this.getInput().watch((()=>this.list.onChangeRelated()))},this.setOptions=function(t){var e;this.render_state=null!==(e=t.render_state)&&void 0!==e?e:[]},this.isPassed=function(){const{value:t}=this.getInput();return!!t.current?.length&&this.render_state.some((e=>t.current.includes(e)))}}I.prototype=Object.create(e.prototype),I.prototype.render_state=[];const A=I;function R(){v.call(this),this.isSupported=function(t){return"calculated"===t.inputType},this.check=function(t,e){const i=e.calcValue,n=t.value;return this.checkRaw(t.operator,i,n)}}R.prototype=Object.create(v.prototype);const B=R,{applyFilters:E}=JetPlugins.hooks,J=()=>E("jet.fb.conditional.types",[A,r,o]);let P=[],q=[];function x(t,e){if(t.hasOwnProperty("jfbConditional"))return t.jfbConditional;const i=new b(t,e);return i.observe(),i.list.onChangeRelated(),i}function M(t){q.length||(q=E("jet.fb.conditional.checkers",[w,S,B,v]));for(const e of q){const i=new e;if(i.isSupported(t))return i}return null}var L;const{addAction:N}=JetPlugins.hooks;N("jet.fb.observe.after","jet-form-builder/conditional-block",(function(t){for(const e of t.rootNode.querySelectorAll("[data-jfb-conditional]"))x(e,t)}),20),N("jet.fb.input.makeReactive","jet-form-builder/conditional-block",(function(t){t.checker=M(t)})),N("jet.fb.conditional.block.runFunction","jet-form-builder/conditional-block",(function(t,e,i){"setCssClass"===t&&i.settings?.className&&i.node.classList.toggle(i.settings.className,e)})),window.JetFormBuilderAbstract={...null!==(L=window.JetFormBuilderAbstract)&&void 0!==L?L:{},ConditionItem:e,ConditionalBlock:b,createConditionalBlock:x,createChecker:M,ConditionsList:c}})(); \ No newline at end of file diff --git a/assets/build/frontend/dynamic.value.asset.php b/assets/build/frontend/dynamic.value.asset.php index 635dbf4c2..ae3dc31b2 100644 --- a/assets/build/frontend/dynamic.value.asset.php +++ b/assets/build/frontend/dynamic.value.asset.php @@ -1 +1 @@ - array(), 'version' => 'e70977c003454a43d622'); + array(), 'version' => 'e9a42e0a5a188eaeecfc'); diff --git a/assets/build/frontend/dynamic.value.js b/assets/build/frontend/dynamic.value.js index 7d974997d..edbe31613 100644 --- a/assets/build/frontend/dynamic.value.js +++ b/assets/build/frontend/dynamic.value.js @@ -1 +1 @@ -(()=>{"use strict";const{CalculatedFormula:t,ConditionsList:e}=JetFormBuilderAbstract;function s(){}s.prototype={to_set:"",prevResult:null,prevValue:null,input:null,frequency:"",set_on_empty:!1,formulas:[],isSupported:t=>!0,observe({to_set:t,conditions:s=[],set_on_empty:o=!1,frequency:r="on_change"},n){this.input=n,this.frequency=r,this.set_on_empty=o,this.prevResult=null,this.prevValue=null,this.to_set=t,this.formulas=[],this.observeSetValue(s,n);const a=new e(s,n.root);if(a.conditions?.length)return a.onChangeRelated=()=>this.applyValue(a),a.observe(),void a.onChangeRelated();for(const t of this.formulas){const e=t.setResult.bind(t);t.setResult=()=>{e(),this.applyValue(!1,!0)},t.setResult()}},observeSetValue(e,s){const o=new t(s);o.observe(this.to_set),o.setResult=()=>{this.to_set=""+o.calculate()},o.setResult(),this.formulas.push(o)},applyValue(t,e=null){let s=!1;switch(s=t?t.getResult():e,this.frequency){case"always":this.setValue(s);break;case"on_change":if(this.prevResult===s)break;this.prevResult=s,this.setValue(s);break;case"once":if(!s)break;this.setValue(),t&&(t.onChangeRelated=()=>{}),this.formulas.forEach(t=>t.clearWatchers())}},setValue(t=!0){t&&(this.set_on_empty?this.input.value.setIfEmpty(this.to_set):this.input.value.current=this.to_set)}};const o=s,{CalculatedFormula:r}=JetFormBuilderAbstract;function n(...t){o.call(this,...t)}n.prototype=Object.create(o.prototype),n.prototype.isSupported=function(t){return t.isArray()},n.prototype.observeSetValue=function(t,e){let s=[];Array.isArray(this.to_set)||(s=this.to_set.split(",").map(t=>t.trim())),this.to_set={};for(const[t,o]of Object.entries(s)){const s=new r(e);s.observe(o),s.setResult=()=>{this.to_set[t]=""+s.calculate(),this.to_set=Object.values(this.to_set).filter(Boolean)},s.setResult(),this.formulas.push(s)}};const a=n,{CalculatedFormula:u}=JetFormBuilderAbstract;function l(t=""){this.attrName=t}l.prototype={attrName:"",isSupported(t){return t.attrs.hasOwnProperty(this.attrName)},runObserve(t){const e=t.attrs[this.attrName],s=new u(t);s.observe(e.initial),this.observe(e,s)},observe(t,e){e.setResult=()=>{t.value.current=e.calculate()},e.setResult()}};const i=l,{CalculatedFormula:c}=JetFormBuilderAbstract;function p(){this.isSupported=function(t){const[e]=t.nodes;return e.dataset.hasOwnProperty("value")},this.runObserve=function(t){const[e]=t.nodes,s=new c(t);s.observe(e.dataset.value),s.setResult=()=>{t.value.current=s.calculate()},s.setResult()}}p.prototype=Object.create(i.prototype);const h=p,{applyFilters:f}=JetPlugins.hooks;let d=[];const y=t=>{d.length||(d=f("jet.fb.dynamic.value.types",[a,o]));for(const e of d){const s=new e;if(s.isSupported(t))return s}};function v(t,e){const s=JSON.parse(t);for(const t of s)y(e).observe(t,e)}function b(t){const[e]=t.nodes,s=e.closest(".jet-form-builder-row");s&&s.dataset.hasOwnProperty("value")?v(s.dataset.value,t):e.dataset.hasOwnProperty("dynamicValue")&&v(e.dataset.dynamicValue,t);for(const e of function*(t){for(const e of m)e.isSupported(t)&&(yield e)}(t))e.runObserve(t)}const m=[new i("min"),new i("max"),new h],{addAction:_}=JetPlugins.hooks;_("jet.fb.observe.after","jet-form-builder/dynamic-value",function(t){for(const e of t.getInputs())b(e)})})(); \ No newline at end of file +(()=>{"use strict";const{CalculatedFormula:t,ConditionsList:e}=JetFormBuilderAbstract;function s(){}s.prototype={to_set:"",prevResult:null,prevValue:null,input:null,frequency:"",set_on_empty:!1,formulas:[],isSupported:t=>!0,observe({to_set:t,conditions:s=[],set_on_empty:o=!1,frequency:r="on_change"},n){this.input=n,this.frequency=r,this.set_on_empty=o,this.prevResult=null,this.prevValue=null,this.to_set=t,this.formulas=[],this.observeSetValue(s,n);const a=new e(s,n.root);if(a.conditions?.length)return a.onChangeRelated=()=>this.applyValue(a),a.observe(),void a.onChangeRelated();for(const t of this.formulas){const e=t.setResult.bind(t);t.setResult=()=>{e(),this.applyValue(!1,!0)},t.setResult()}},observeSetValue(e,s){const o=new t(s);o.observe(this.to_set),o.setResult=()=>{this.to_set=""+o.calculate()},o.setResult(),this.formulas.push(o)},applyValue(t,e=null){let s=!1;switch(s=t?t.getResult():e,this.frequency){case"always":this.setValue(s);break;case"on_change":if(this.prevResult===s)break;this.prevResult=s,this.setValue(s);break;case"once":if(!s)break;this.setValue(),t&&(t.onChangeRelated=()=>{}),this.formulas.forEach((t=>t.clearWatchers()))}},setValue(t=!0){t&&(this.set_on_empty?this.input.value.setIfEmpty(this.to_set):this.input.value.current=this.to_set)}};const o=s,{CalculatedFormula:r}=JetFormBuilderAbstract;function n(...t){o.call(this,...t)}n.prototype=Object.create(o.prototype),n.prototype.isSupported=function(t){return t.isArray()},n.prototype.observeSetValue=function(t,e){let s=[];Array.isArray(this.to_set)||(s=this.to_set.split(",").map((t=>t.trim()))),this.to_set={};for(const[t,o]of Object.entries(s)){const s=new r(e);s.observe(o),s.setResult=()=>{this.to_set[t]=""+s.calculate(),this.to_set=Object.values(this.to_set).filter(Boolean)},s.setResult(),this.formulas.push(s)}};const a=n,{CalculatedFormula:u}=JetFormBuilderAbstract;function l(t=""){this.attrName=t}l.prototype={attrName:"",isSupported(t){return t.attrs.hasOwnProperty(this.attrName)},runObserve(t){const e=t.attrs[this.attrName],s=new u(t);s.observe(e.initial),this.observe(e,s)},observe(t,e){e.setResult=()=>{t.value.current=e.calculate()},e.setResult()}};const i=l,{CalculatedFormula:c}=JetFormBuilderAbstract;function p(){this.isSupported=function(t){const[e]=t.nodes;return e.dataset.hasOwnProperty("value")},this.runObserve=function(t){const[e]=t.nodes,s=new c(t);s.observe(e.dataset.value),s.setResult=()=>{t.value.current=s.calculate()},s.setResult()}}p.prototype=Object.create(i.prototype);const h=p,{applyFilters:f}=JetPlugins.hooks;let d=[];const y=t=>{d.length||(d=f("jet.fb.dynamic.value.types",[a,o]));for(const e of d){const s=new e;if(s.isSupported(t))return s}};function v(t,e){const s=JSON.parse(t);for(const t of s)y(e).observe(t,e)}function b(t){const[e]=t.nodes,s=e.closest(".jet-form-builder-row");s&&s.dataset.hasOwnProperty("value")?v(s.dataset.value,t):e.dataset.hasOwnProperty("dynamicValue")&&v(e.dataset.dynamicValue,t);for(const e of function*(t){for(const e of m)e.isSupported(t)&&(yield e)}(t))e.runObserve(t)}const m=[new i("min"),new i("max"),new h],{addAction:_}=JetPlugins.hooks;_("jet.fb.observe.after","jet-form-builder/dynamic-value",(function(t){for(const e of t.getInputs())b(e)}))})(); \ No newline at end of file diff --git a/assets/build/frontend/main.asset.php b/assets/build/frontend/main.asset.php index 9c03d3ed0..dcf348a98 100644 --- a/assets/build/frontend/main.asset.php +++ b/assets/build/frontend/main.asset.php @@ -1 +1 @@ - array('wp-i18n'), 'version' => 'a2ef9c7a767257924f0f'); + array('wp-i18n'), 'version' => '208976ab24e5c2b11fab'); diff --git a/assets/build/frontend/main.js b/assets/build/frontend/main.js index d7aedd2f2..2cc7c1318 100644 --- a/assets/build/frontend/main.js +++ b/assets/build/frontend/main.js @@ -1 +1 @@ -(()=>{"use strict";function t(){this.attrName="",this.initial=null,this.isFromData=!1,this.value=null}t.prototype={attrName:"",input:null,initial:null,value:null,observe(){this.value=new _(this.initial),this.value.make(),this.addWatcherAttr()},nodeSignal(){const[t]=this.input.nodes;t[this.attrName]=this.value.current},addWatcherAttr(){this.value.watch(()=>this.nodeSignal())},isSupported(t){var e;const[n]=t.nodes,r=null!==(e=-1!==n[this.attrName])&&void 0!==e?e:-1;return!(!n.dataset.hasOwnProperty(this.attrName)&&!r)&&(this.initial=this.getInitial(t),Boolean(this.initial))},getInitial(t){const[e]=t.nodes;return e.dataset[this.attrName]||e[this.attrName]||!1},setInput(t){this.input=t}};const e=t;function n(){e.call(this),this.attrName="max_files",this.isSupported=function(t){const[e]=t.nodes;return"file"===e.type},this.setInput=function(t){e.prototype.setInput.call(this,t);const{max_files:n=1}=JSON.parse(t.previewsContainer.dataset.args);this.initial=+n},this.addWatcherAttr=()=>{}}n.prototype=Object.create(e.prototype);const r=n;function o(){r.call(this),this.attrName="max_size",this.setInput=function(t){r.prototype.setInput.call(this,t);const{max_size:e=1}=JSON.parse(t.previewsContainer.dataset.args);this.initial=+e}}o.prototype=Object.create(r.prototype);const i=o;function s(){e.call(this),this.attrName="remaining",this.isSupported=function(t){return t.attrs.hasOwnProperty("maxLength")},this.setInput=function(t){var n;e.prototype.setInput.call(this,t);const{maxLength:r}=t.attrs,o=null!==(n=t.value.current?.length)&&void 0!==n?n:0;this.initial=r.value.current-o},this.addWatcherAttr=()=>{},this.observe=function(){e.prototype.observe.call(this),this.input.value.watch(()=>this.updateAttr()),this.input.attrs.maxLength.value.watch(()=>this.updateAttr())},this.updateAttr=function(){var t;const{maxLength:e}=this.input.attrs,n=null!==(t=this.input.value.current?.length)&&void 0!==t?t:0;this.value.current=e.value.current-n}}s.prototype=Object.create(e.prototype);const u=s;function a(){r.call(this),this.attrName="file_ext",this.isSupported=function(t){const[e]=t.nodes;return"file"===e.type&&Boolean(e.accept)},this.setInput=function(t){r.prototype.setInput.call(this,t);const[e]=t.nodes;this.initial=e.accept.split(",")},this.addWatcherAttr=function(){const[t]=this.input.nodes;this.value.watch(()=>{t.accept=this.value.current.join(",")})}}a.prototype=Object.create(r.prototype);const c=a,l=navigator.userAgent,h={safari:/^((?!chrome|android).)*safari/i.test(l)||/constructor/i.test(window.HTMLElement)||"[object SafariRemoteNotification]"===(!window.safari||"undefined"!=typeof safari&&window.safari.pushNotification).toString()},{applyFilters:p}=JetPlugins.hooks;async function f(t){const e=await Promise.allSettled(t.map(t=>new Promise(t)));return window?.JetFormBuilderSettings?.devmode&&(console.group("allRejected"),console.info(...e),console.groupEnd()),e.filter(t=>"rejected"===t.status).map(({reason:t,value:e})=>t?.length?t[0]:null!=t?t:e)}let d=[];function m(t){const n=new e;return n.attrName=t,n}function g(t){d.length||(d=p("jet.fb.input.html.attrs",["min","max","minLength","maxLength",r,i,u,c]));for(const e of d){let n;n="string"==typeof e?m(e):new e,n.isSupported(t)&&(t.attrs[n.attrName]=n,n.setInput(t),n.observe())}}function y(t){return"boolean"==typeof t?!t:null==t||("object"!=typeof t||Array.isArray(t)?"number"==typeof t?0===t:!t?.length:!Object.keys(t)?.length)}function b(t){return t?.isConnected&&null!==t?.offsetParent}function v(t){var e;const n=t.getBoundingClientRect(),r=S(t);return n?.top+(null!==(e=r?.scrollY)&&void 0!==e?e:0)}const w=t=>t.scrollHeight>t.clientHeight&&t;function S(t){let e=t.closest(".jet-popup__container-inner");return e?w(e):(e=t.closest(".elementor-popup-modal .dialog-message"),e?w(e):window)}function j(t){for(const e of t)if(!e.reporting.validityState.current){!e.reporting.hasAutoScroll()&&e.onFocus();break}}function N(t=null){this.current=t,this.signals=[],this.sanitizers=[],this.isDebug=!1,this.isSilence=!1,this.isMaked=!1}N.prototype={watchOnce(t){if("function"!=typeof t)return;const e=this.watch(()=>{e(),t()})},watch(t){if("function"!=typeof t)return!1;if(this.signals.some(({signal:e})=>e===t))return!0;this.signals.push({signal:t,trace:(new Error).stack});const e=this.signals.length-1;return()=>this.signals.splice(e,1)},sanitize(t){if("function"!=typeof t)return!1;if(-1!==this.sanitizers.indexOf(t))return!0;this.sanitizers.push(t);const e=this.sanitizers.length-1;return()=>this.sanitizers.splice(e,1)},make(){if(this.isMaked)return;this.isMaked=!0;let t=this.current,e=null;const n=this;Object.defineProperty(this,"current",{get:()=>t,set(r){t!==r&&(e=t,n.isDebug&&(console.group("ReactiveVar has changed"),console.log("current:",t),console.log("newVal:",r),console.groupEnd()),t=n.applySanitizers(r),n.isSilence||n.notify(e))}})},notify(t=null){this.signals.forEach(({signal:e})=>e.call(this,t))},applySanitizers(t){for(const e of this.sanitizers)t=e.call(this,t);return t},setIfEmpty(t){y(this.current)&&(this.current=t)},debug(){this.isDebug=!this.isDebug},silence(){this.isSilence=!this.isSilence}};const _=N;function I(){_.call(this,!1),this.start=function(){this.current=!0},this.end=function(){this.current=!1},this.toggle=function(){this.current=!this.current}}I.prototype=Object.create(_.prototype);const F=I;function O(){this.handlers=[]}O.prototype={addFilter(t){this.handlers.push(t);const e=this.handlers.length-1;return()=>this.handlers.splice(e,1)},applyFilters(...t){let e=t[0];const n=t.slice(1);for(const t of this.handlers)e=t(e,...n);return e}};const k=O,{strict_mode:C=!1}=window?.JetFormBuilderSettings,R=Boolean(C);function E(){this.input=null,this.lock=new _,this.lock.make(),this.triggerjQuery=!R}E.prototype={input:null,lock:null,isSupported:(t,e)=>!1,setInput(t){this.input=t},run(t){if(!this.lock.current)return this.runSignal(t),void this.unlockTrigger();this.lock.signals.length||this.lock.watchOnce(()=>this.runSignal(t))},triggerJQuery(t){this.triggerjQuery&&jQuery(t).trigger("change")},runSignal(t){},lockTrigger(){this.triggerjQuery=!1},unlockTrigger(){R||(this.triggerjQuery=!0)}};const P=E;function T(t){return"hidden"===t.type}function M(t){return"range"===t.type}function x(){P.call(this)}x.prototype=Object.create(P.prototype),x.prototype.isSupported=function(t,e){return T(t)&&e.isArray()},x.prototype.runSignal=function(){const{current:t}=this.input.value;if(!t?.length){for(const t of this.input.nodes)t.remove();return void this.input.nodes.splice(0,this.input.nodes.length)}const e=[];for(const n of t){if(this.input.nodes.some((t,r)=>t.value===n&&(e.push(r),!0)))continue;const t=document.createElement("input");t.type="hidden",t.value=n,t.name=this.input.rawName,this.input.nodes.push(t),e.push(this.input.nodes.length-1),this.input.comment.parentElement.insertBefore(t,this.input.comment.nextElementSibling)}this.input.nodes=this.input.nodes.filter((t,n)=>!!e.includes(n)||(t.remove(),!1))};const B=x;function D(){P.call(this),this.isSupported=function(t){return M(t)},this.runSignal=function(){const[t]=this.input.nodes;t.value=this.input.value.current,this.input.numberNode.textContent=t.value,this.triggerJQuery(t)}}D.prototype=Object.create(P.prototype);const A=D;function V(){B.call(this),this.isSupported=function(t){return"_jfb_current_render_states[]"===t.name},this.runSignal=function(t){B.prototype.runSignal.call(this,t);const e=new URL(window.location),n=this.input.getSubmit().getFormId(),r=this.input.value.current||[],o=`jfb[${n}][state]`,i=[];for(const t of r)this.input.isCustom(t)&&i.push(t);if(!i.length){if(!e.searchParams.has(o))return;return e.searchParams.delete(o),void window.history.pushState({},"",e.toString())}const s=i.join(",");e.searchParams.get(o)!==s&&(e.searchParams.set(o,s),window.history.pushState({},"",e.toString()))}}V.prototype=Object.create(B.prototype);const L=V,{applyFilters:J}=JetPlugins.hooks;let H=[];function Q(t){Error.call(this,t),Error.captureStackTrace?Error.captureStackTrace(this,Q):this.stack=(new Error).stack}Q.prototype=Object.create(Error.prototype);const q=Q;function Y(){this.input=null,this.isRequired=!1,this.errors=null,this.restrictions=[],this.valuePrev=null,this.validityState=null,this.promisesCount=0}Y.prototype={restrictions:[],valuePrev:null,validityState:null,promisesCount:0,validateOnChange(){},validateOnBlur(){},async validate(t=null){const e=await this.getErrors(t);if(this.validityState.current=!Boolean(e.length),!e.length)return this.clearReport(),!0;throw!this.input.root.getContext().silence&&this.report(e),new q(e[0].name)},async getErrorsRaw(t){throw new Error("getError must return a Promise")},async getErrors(t=null){if(this.input.loading.current||this.input?.callable?.lock?.current||!this.input.isVisible())return[];const e=this.getPromises(t);var n;return this.hasChangedValue()||this.promisesCount!==e.length||this.input.stopValidation||"hr-select-level"===this.input.inputType?(this.promisesCount=e.length,this.errors=[],e.length?(this.errors=await this.getErrorsRaw(e,t),this.errors):this.errors):null!==(n=this.errors)&&void 0!==n?n:[]},report(t){this.input.getContext().reportedFirst?this.reportRaw(t):(this.input.getContext().reportFirst(),this.reportFirst(t))},reportRaw(t){throw new Error("report is empty")},reportFirst(t){this.report(t)},clearReport(){throw new Error("clearReport is empty")},getPromises(t=null){const e=[];for(const n of this.restrictions)this.canProcessRestriction(n)&&(this.beforeProcessRestriction(n),e.push((e,r)=>{n.validatePromise(t).then(()=>e(n)).catch(t=>r([n,t]))}));return e},canProcessRestriction:t=>!0,beforeProcessRestriction(t){},isSupported(t,e){throw new Error("isSupported is empty")},setInput(t){this.validityState=new _,this.validityState.make(),this.input=t,this.setRestrictions(),this.filterRestrictions()},setRestrictions(){},getNode(){return this.input.nodes[0]},hasChangedValue(){return this.valuePrev!==this.input.getValue()},checkValidity(){const t=this.input.getContext().silence;return null===this.validityState.current?this.validateOnChangeState():this.validityState.current?Promise.resolve():(t||!t&&this.report(this.errors||[]),Promise.reject())},hasAutoScroll:()=>!1,filterRestrictions(){const t={};for(let[e,n]of Object.entries(this.restrictions))e=n.getType()?n.getType():e,t[e]=n;this.restrictions=Object.values(t)}};const $=Y;function W(){$.call(this),this.isSupported=function(){return!0},this.reportRaw=function(){},this.reportFirst=function(){this.getNode().reportValidity()},this.setRestrictions=function(){const[t]=this.input.nodes;!function(t,e){ot.length||(ot=rt());for(const n of ot){const r=new n;r.isSupported(e,t)&&t.restrictions.push(r)}t.restrictions.forEach(e=>e.setReporting(t))}(this,t)},this.clearReport=function(){},this.validateOnChange=function(){this.validate().then(()=>{}).catch(()=>{})},this.getErrorsRaw=async function(t){const e=await f(t);return this.valuePrev=this.input.getValue(),e},this.validateOnChangeState=function(){return this.validate()},this.hasAutoScroll=function(){return this.input.hasAutoScroll()},this.getNode=function(){return this.input.getReportingNode()}}W.prototype=Object.create($.prototype);const z=W;function K(){this.reporting=null,this.type=""}K.prototype={isSupported:(t,e)=>!0,getType(){return this.type},setReporting(t){this.reporting=t},getValue(){return this.reporting.input.value.current},validate(){throw new Error("validate is wrong")},async validatePromise(){let t;try{t=await this.validate()}catch(t){var e;return Promise.reject(null!==(e=t?.message)&&void 0!==e?e:t)}return t?Promise.resolve():Promise.reject("validate is wrong")},onReady(){}};const U=K;function G(){U.call(this),this.isSupported=function(t){return!!t.checkValidity},this.validate=function(){const{nodes:t}=this.reporting.input;for(const e of t)if(e.checkValidity())return!0;return!1}}G.prototype=Object.create(U.prototype);const X=G;function Z(){U.call(this),this.type="required"}Z.prototype=Object.create(U.prototype),Z.prototype.isSupported=function(t,e){return e.input.isRequired},Z.prototype.validate=function(){const{current:t}=this.reporting.input.value;return!y(t)};const tt=Z,{applyFilters:et}=JetPlugins.hooks;let nt=[];const rt=()=>et("jet.fb.restrictions.default",[X,tt]);let ot=[];function it(t,e=!1){const n=[];t?.[0]?.getContext()?.reset({silence:e});for(const e of t){if(!(e instanceof ct))throw new Error("Input is not instance of InputData");n.push((t,n)=>{e.reporting.validateOnChangeState().then(t).catch(n)})}return n}function st(t,e=!1){return f(it(t,e))}const{doAction:ut}=JetPlugins.hooks;function at(){this.rawName="",this.name="",this.comment=!1,this.nodes=[],this.attrs={},this.enterKey=null,this.inputType=null,this.offsetOnFocus=75,this.path=[],this.value=this.getReactive(),this.value.watch(this.onChange.bind(this)),this.isRequired=!1,this.calcValue=null,this.reporting=null,this.checker=null,this.root=null,this.loading=new F(!1),this.loading.make(),this.isResetCalcValue=!0,this.validateTimer=!1,this.stopValidation=!1,this.abortController=null}at.prototype.attrs={},at.prototype.isSupported=function(t){return!1},at.prototype.addListeners=function(){const[t]=this.nodes;t.addEventListener("input",t=>{this.value.current=t.target.value}),t.addEventListener("blur",()=>{}),t.addEventListener("input",()=>{this.reporting&&"function"==typeof this.reporting.switchButtonsState&&this.reporting.switchButtonsState(!0),this.debouncedReport()}),!R&&jQuery(t).on("change",t=>{this.value.current!=t.target.value&&(this.callable.lockTrigger(),this.value.current=t.target.value,this.callable.unlockTrigger())}),"input"===this.inputType&&(this.enterKey=new k,t.addEventListener("keydown",this.handleEnterKey.bind(this)))},at.prototype.makeReactive=function(){this.onObserve(),this.addListeners(),this.setValue(),this.initNotifyValue(),this.value.make(),ut("jet.fb.input.makeReactive",this)},at.prototype.onChange=function(t){this.isResetCalcValue&&(this.calcValue=this.value.current),this?.callable?.run(t),this.report()},at.prototype.report=function(){this.reporting.validateOnChange()},at.prototype.reportOnBlur=function(t=null){this.reporting.validateOnBlur(t)},at.prototype.debouncedReport=function(){this.validateTimer&&(this.stopValidation=!0,clearTimeout(this.validateTimer),this.abortController&&this.abortController.abort()),this.abortController=new AbortController;let t=this.abortController.signal;this.validateTimer=setTimeout(()=>{this.reportOnBlur(t)},450)},at.prototype.watch=function(t){return this.value.watch(t)},at.prototype.watchValidity=function(t){return this.reporting.validityState.watch(t)},at.prototype.sanitize=function(t){return this.value.sanitize(t)},at.prototype.merge=function(t){this.nodes=[...t.getNode()]},at.prototype.setValue=function(){let t;t=this.isArray()?Array.from(this.nodes).map(({value:t})=>t):this.nodes[0]?.value,this.calcValue=t,this.value.current=t},at.prototype.setNode=function(t){var e;this.nodes=[t],this.rawName=null!==(e=t.name)&&void 0!==e?e:"",this.name=_t(this.rawName),this.inputType=t.nodeName.toLowerCase()},at.prototype.onObserve=function(){const[t]=this.nodes;t.jfbSync=this,this.isRequired=this.checkIsRequired(),this.callable=function(t,e){H.length||(H=J("jet.fb.signals",[A,L,B]));for(const n of H){const r=new n;if(r.isSupported(t,e))return r}return null}(t,this),this.callable.setInput(this),this.reporting=function(t){nt.length||(nt=et("jet.fb.reporting",[z]));for(const e of nt){const n=new e;if(n.isSupported(t.nodes[0],t))return n.setInput(t),n}throw new Error("Something went wrong")}(this),this.loading.watch(()=>this.onChangeLoading()),this.path=[...this.getParentPath(),this.name],this.getSubmit().submitter.hasOwnProperty("status")&&!this.hasParent()&&this.getSubmit().submitter.watchReset(()=>this.onClear())},at.prototype.onChangeLoading=function(){this.getSubmit().lockState.current=this.loading.current;const[t]=this.nodes;t.closest(".jet-form-builder-row").classList.toggle("is-loading",this.loading.current)},at.prototype.setRoot=function(t){this.root=t},at.prototype.onRemove=function(){},at.prototype.getName=function(){return this.name},at.prototype.getValue=function(){return this.value.current},at.prototype.getNode=function(){return this.nodes},at.prototype.isArray=function(){return this.rawName.includes("[]")},at.prototype.beforeSubmit=function(t,e=!1){this.getSubmit().submitter.promise(t,e)},at.prototype.getSubmit=function(){return this.getRoot().form},at.prototype.getRoot=function(){return this.root?.parent?this.root.parent.getRoot():this.root},at.prototype.isVisible=function(){return b(this.getWrapperNode())},at.prototype.onClear=function(){this.silenceSet(null)},at.prototype.getReactive=function(){return new _},at.prototype.checkIsRequired=function(){var t;const[e]=this.nodes;return null!==(t=e.required)&&void 0!==t?t:!!e.dataset.required?.length},at.prototype.silenceSet=function(t){const e=this.report.bind(this);this.report=()=>{},this.value.current=t,this.report=e},at.prototype.silenceNotify=function(){const t=this.report.bind(this);this.report=()=>{},this.value.notify(),this.report=t},at.prototype.hasParent=function(){return!!this.root?.parent},at.prototype.getWrapperNode=function(){return this.nodes[0].closest(".jet-form-builder-row")},at.prototype.handleEnterKey=function(t){"Enter"!==t.key||!this.enterKey||t.shiftKey||t.isComposing||(t.preventDefault(),this.onEnterKey())},at.prototype.onEnterKey=function(){this.enterKey.applyFilters(!0)&&!0===this.getSubmit().canTriggerEnterSubmit&&this.getSubmit().submit()},at.prototype.initNotifyValue=function(){this.silenceNotify()},at.prototype.onFocus=function(){this.scrollTo(),this.focusRaw()},at.prototype.focusRaw=function(){const[t]=this.nodes;["date","time","datetime-local"].includes(t.type)||t?.focus({preventScroll:!0})},at.prototype.scrollTo=function(){const t=this.getWrapperNode();window.scrollTo({top:v(t)-this.offsetOnFocus,behavior:"smooth"})},at.prototype.getContext=function(){return this.root.getContext()},at.prototype.populateInner=function(){return!1},at.prototype.hasAutoScroll=function(){return!0},at.prototype.getReportingNode=function(){return this.nodes[0]},at.prototype.getParentPath=function(){if(!this.root?.parent)return[];const t=this.root.parent.value.current;if("object"!=typeof t)return[];for(const[e,n]of Object.entries(t))if(n===this.root)return[...this.root.parent.getParentPath(),this.root.parent.name,e];return[]},at.prototype.reQueryValue=function(){this.setValue(),this.initNotifyValue()},at.prototype.revertValue=function(t){this.value.current=t},at.prototype.reCalculateFormula=function(){this.setValue(),this.initNotifyValue()};const ct=at;function lt(){ct.call(this),this.isSupported=function(t){return function(t){return["select-one","range"].includes(t.type)}(t)},this.addListeners=function(){const[t]=this.nodes;t.addEventListener("change",t=>{this.value.current=t.target.value}),!R&&jQuery(t).on("change",t=>{this.value.current!=t.target.value&&(this.callable.lockTrigger(),this.value.current=t.target.value,this.callable.unlockTrigger())}),this.enterKey=new k,t.addEventListener("keydown",this.handleEnterKey.bind(this))},this.onClear=function(){this.silenceSet("")}}lt.prototype=Object.create(ct.prototype);const ht=lt;function pt(){ct.call(this),this.numberNode=null,this.isSupported=function(t){return M(t)},this.setNode=function(t){ct.prototype.setNode.call(this,t),this.numberNode=t.parentElement.querySelector(".jet-form-builder__field-value-number")}}pt.prototype=Object.create(ct.prototype);const ft=pt;function dt(){ct.call(this),this.comment=null,this.isSupported=function(t){return T(t)},this.addListeners=function(){},this.onObserve=function(){ct.prototype.onObserve.call(this),this.isArray()&&this.setComment()},this.setComment=function(){this.comment=document.createComment(this.name);const[t]=this.nodes;t.parentElement.insertBefore(this.comment,t)},this.isVisible=function(){return!1},this.merge=function(t){this.nodes.push(...t.getNode())}}dt.prototype=Object.create(ct.prototype);const mt=dt;function gt(t){_.call(this,t)}gt.prototype=Object.create(_.prototype),gt.prototype.add=function(t){var e;this.current=[...new Set([...null!==(e=this.current)&&void 0!==e?e:[],t])]},gt.prototype.remove=function(t){this.current=this.current.filter(e=>e!==t)},gt.prototype.toggle=function(t,e=null){null===e?this.current.includes(t)?this.remove(t):this.add(t):e?this.add(t):this.remove(t)};const yt=gt,{builtInStates:bt}=window.JetFormBuilderSettings;function vt(){mt.call(this),this.isSupported=function(t){return"hidden"===t?.type&&"_jfb_current_render_states[]"===t.name},this.add=function(t){this.value.add(t)},this.remove=function(t){this.value.remove(t)},this.toggle=function(t,e=null){this.value.toggle(t,e)},this.isCustom=function(t){return!bt.includes(t)}}vt.prototype=Object.create(mt.prototype),vt.prototype.getReactive=function(){return new yt};const wt=vt,{applyFilters:St,doAction:jt}=JetPlugins.hooks;let Nt=[];function _t(t){const e=[/^([\w\-]+)\[\]$/,/^[\w\-]+\[\d+\]\[([\w\-]+)\]\[?\]?$/];for(const n of e)if(n.test(t))return t.match(n)[1];return t}function It(t){const e=[];for(const n of t){const t=n.populateInner();t?.length&&e.push(...t),e.push(n)}return e}function Ft(t){this.form=t,this.lastResponse={},this.promises=[]}Ft.prototype.submit=function(){throw new Error("You need to replace this callback")},Ft.prototype.getPromises=function(){return this.promises.map(({callable:t})=>new Promise(t))},Ft.prototype.promise=function(t,e=!1){const n=e?e.path.join("."):"";this.promises=this.promises.filter(({idPath:t})=>!t||t!==n),this.promises.push({callable:t,idPath:e?e.path.join("."):""})};const Ot=Ft;function kt(t){return"success"===t||t?.includes("dsuccess|")}function Ct(t){Ot.call(this,t),this.status=new _,this.status.make(),this.submit=function(){const t=jQuery(this.form.observable.rootNode),{applyFilters:e}=JetPlugins.hooks;Promise.all(e("jet.fb.submit.ajax.promises",this.getPromises(),t)).then(t=>this.runSubmit(t)).catch(()=>this.form.toggle())},this.runSubmit=function(t){const{rootNode:e}=this.form.observable,n=new FormData(e);n.append("_jet_engine_booking_form_id",this.form.getFormId()),this.status.silence(),this.status.current=null,this.status.silence(),jQuery.ajax({url:JetFormBuilderSettings.ajaxurl,type:"POST",dataType:"json",data:n,cache:!1,contentType:!1,processData:!1}).done(n=>{this.onSuccess(n);const r=jQuery(e);t.forEach(t=>{"function"==typeof t&&t.call(r,n)})}).fail(this.onFail.bind(this))},this.onSuccess=function(t){this.form.toggle();const{rootNode:e}=this.form.observable;this.lastResponse=t;const n=jQuery(e),r=t?._jfb_csrf_token;r&&this.refreshCsrfToken(r),"success"===t.status?jQuery(document).trigger("jet-form-builder/ajax/on-success",[t,n]):jQuery(document).trigger("jet-form-builder/ajax/processing-error",[t,n]),this.status.current=t.status,t.redirect?t.open_in_new_tab?window.open(t.redirect,"_blank"):window.location=t.redirect:t.reload&&window.location.reload(),this.insertMessage(t.message)},this.onFail=function(t,e,n){this.form.toggle(),this.status.current=!1;const{rootNode:r}=this.form.observable,o=jQuery(r);jQuery(document).trigger("jet-form-builder/ajax/on-fail",[t,e,n,o]),console.error(t.responseText,n)},this.insertMessage=function(t){const{rootNode:e}=this.form.observable,n=document.createElement("div");n.classList.add("jet-form-builder-messages-wrap"),n.innerHTML=t,e.appendChild(n)},this.refreshCsrfToken=function(t){const e=this.form.getFormId(),n=document.querySelectorAll("form.jet-form-builder[data-form-id]");for(const r of n){if(+r.dataset.formId!==e)continue;const n=r.querySelectorAll('input[name="_jfb_csrf_token"]');for(const e of n)e.value=t}}}Ct.prototype=Object.create(Ot.prototype),Ct.prototype.status=null,Ct.prototype.watchReset=function(t){const{rootNode:e}=this.form.observable;e.dataset?.clear&&this.watchSuccess(t)},Ct.prototype.watchSuccess=function(t){const e=this.status;e.watch(()=>{kt(e.current)&&t()})},Ct.prototype.watchFail=function(t){const e=this.status;e.watch(()=>{kt(e.current)||t()})};const Rt=Ct;function Et(t){Ot.call(this,t),this.failPromises=[],this.submit=function(){const{rootNode:t}=this.form.observable,{applyFilters:e}=JetPlugins.hooks;Promise.all(e("jet.fb.submit.reload.promises",this.getPromises(),{target:t})).then(()=>t.submit()).catch(()=>{this.failPromises.forEach(t=>t()),this.form.toggle()})},this.onFailSubmit=function(t){"function"==typeof t&&this.failPromises.push(t)}}Et.prototype=Object.create(Ot.prototype);const Pt=Et,Tt=function(t){this.observable=t,this.lockState=new F(!1),this.lockState.make(),this.autoFocus=window.JetFormBuilderSettings?.auto_focus,this.canSubmitForm=!0,this.canTriggerEnterSubmit=!0,this.onSubmit=function(t){t.preventDefault(),this.submit()},this.submit=function(){!0===this.canSubmitForm&&(this.canSubmitForm=!1,this.canTriggerEnterSubmit=!1,this.observable.inputsAreValid().then(()=>{this.clearErrors(),this.toggle(),this.submitter.submit()}).catch(()=>{this.autoFocus&&j(It(this.observable.getInputs()))}).finally(()=>{this.canTriggerEnterSubmit=!0,this.canSubmitForm=!0}))},this.clearErrors=function(){const t=this.observable.rootNode.querySelectorAll(".jet-form-builder-messages-wrap");for(const e of t)e.remove()},this.toggle=function(){this.lockState.toggle(),this.toggleLoading()},this.handleButtons=function(){const t=this.observable.rootNode.querySelectorAll(".jet-form-builder__submit");this.lockState.watch(()=>{for(const e of t)e.disabled=this.lockState.current;!1===this.lockState.current&&(this.canSubmitForm=!0)})},this.toggleLoading=function(){this.observable.rootNode.classList.toggle("is-loading")},this.createSubmitter=function(){const{classList:t}=this.observable.rootNode;return t.contains("submit-type-ajax")?new Rt(this):new Pt(this)},this.getFormId=function(){const{rootNode:t}=this.observable;return+t.dataset.formId},this.onEndSubmit=function(t){this.submitter.hasOwnProperty("status")?this.submitter.status.watch(t):this.submitter.onFailSubmit(t)},this.observable.rootNode.addEventListener("submit",t=>this.onSubmit(t)),this.submitter=this.createSubmitter(),this.handleButtons()},Mt=function(t,e){const{replaceAttrs:n=[]}=window.JetFormBuilderSettings,r=[];for(let t=0;tNodeFilter.FILTER_ACCEPT){const n=document.createNodeIterator(t,NodeFilter.SHOW_COMMENT,{acceptNode:e});let r;for(;r=n.nextNode();)r.nodeValue=r.nodeValue.trim(),yield r},Bt=function*(t){yield*xt(t,t=>!t.jfbObserved&&t.textContent.includes("JFB_FIELD::"))},Dt=function(t,e,n={}){if(null===e||!e?.length)return t;let r=Boolean(n?.rawRepeaterValue);for(const o of e){const e=r&&!1===o?.isCoreFilter;t=o.applyWithProps(e?n.rawRepeaterValue:t),r=!1}return t};function At(){this.props=[]}At.prototype.getSlug=function(){throw new Error("getSlug is empty")},At.prototype.setProps=function(t){this.props.push(...t)},At.prototype.applyWithProps=function(t){return this.apply(t,...this.props)},At.prototype.apply=function(t,...e){return t};const Vt=At;function Lt(){Vt.call(this),this.getSlug=function(){return"length"},this.apply=function(t){var e;return null!==(e=t?.length)&&void 0!==e?e:0}}Lt.prototype=Object.create(Vt.prototype);const Jt=Lt;function Ht(){Vt.call(this),this.getSlug=function(){return"ifEmpty"},this.apply=function(t,e){return y(t)||Number.isNaN(t)?e:t}}Ht.prototype=Object.create(Vt.prototype);const Qt=Ht;function qt(t,e){return(t=""+t).length>=e?t:new Array(e-t.length).fill(0)+t}function Yt(t,e=!0){const n=e?t.getUTCMonth():t.getMonth(),r=e?t.getUTCDate():t.getDate();return[e?t.getUTCFullYear():t.getFullYear(),qt(n+1,2),qt(r,2)].join("-")}function $t(t,e=!0){const n=e?t.getUTCHours():t.getHours(),r=e?t.getUTCMinutes():t.getMinutes();return[qt(n,2),qt(r,2)].join(":")}function Wt(t,e=!1){return Yt(t,e)+"T"+$t(t,e)}function zt(t){if(!Number.isNaN(+t))return{time:+t,type:"number"};if((t=t.toString()).split("-").length>1)return{time:new Date(t).getTime(),type:"date"};const e=t.split(":"),n=[Date.prototype.setHours,Date.prototype.setMinutes,Date.prototype.setSeconds],r=new Date;for(const t in e)e.hasOwnProperty(t)&&n.hasOwnProperty(t)&&n[t].call(r,e[t]);return{time:r.getTime(),type:"time"}}function Kt(){Vt.call(this),this.getSlug=function(){return"toDate"},this.apply=function(t,e=!0){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"");e="false"!==t.toLowerCase()}else e=Boolean(e);return Yt(new Date(t),e)}}Kt.prototype=Object.create(Vt.prototype);const Ut=Kt;function Gt(){Vt.call(this),this.getSlug=function(){return"toTime"},this.apply=function(t,e=!0){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"");e="false"!==t.toLowerCase()}else e=Boolean(e);return $t(new Date(t),e)}}Gt.prototype=Object.create(Vt.prototype);const Xt=Gt;function Zt(){Vt.call(this),this.getSlug=function(){return"toDateTime"},this.apply=function(t,e=!1){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"").toLowerCase();e=""!==t&&"false"!==t}else e=Boolean(e);return Wt(new Date(t),e)}}Zt.prototype=Object.create(Vt.prototype);const te=Zt;function ee(){Vt.call(this),this.getSlug=function(){return"addYear"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setFullYear(r.getFullYear()+e))}}ee.prototype=Object.create(Vt.prototype);const ne=ee;function re(){Vt.call(this),this.getSlug=function(){return"addMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(r.getMonth()+e))}}re.prototype=Object.create(Vt.prototype);const oe=re;function ie(){Vt.call(this),this.getSlug=function(){return"addDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(r.getDate()+e))}}ie.prototype=Object.create(Vt.prototype);const se=ie;function ue(){Vt.call(this),this.getSlug=function(){return"addHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setHours(r.getHours()+e))}}ue.prototype=Object.create(Vt.prototype);const ae=ue;function ce(){Vt.call(this),this.getSlug=function(){return"addMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMinutes(r.getMinutes()+e))}}ce.prototype=Object.create(Vt.prototype);const le=ce;function he(){Vt.call(this),this.getSlug=function(){return"T"},this.apply=function(t){if(!t)return 0;const{time:e}=zt(t);return e}}he.prototype=Object.create(Vt.prototype);const pe=he;function fe(){Vt.call(this),this.getSlug=function(){return"setHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?t:(e=e?+e.trim():0,r.setHours(e))}}fe.prototype=Object.create(Vt.prototype);const de=fe;function me(){Vt.call(this),this.getSlug=function(){return"setMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?t:(e=e?+e.trim():0,r.setMinutes(e))}}me.prototype=Object.create(Vt.prototype);const ge=me;function ye(){Vt.call(this),this.getSlug=function(){return"setDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(e))}}ye.prototype=Object.create(Vt.prototype);const be=ye;function ve(){Vt.call(this),this.getSlug=function(){return"setYear"},this.apply=function(t,e){if(!(e=!!e&&+e.trim()))return t;const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:r.setFullYear(e)}}ve.prototype=Object.create(Vt.prototype);const we=ve;function Se(){Vt.call(this),this.getSlug=function(){return"setMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(e))}}Se.prototype=Object.create(Vt.prototype);const je=Se;function Ne(){Vt.call(this),this.getSlug=function(){return"subHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setHours(r.getHours()-e))}}Ne.prototype=Object.create(Vt.prototype);const _e=Ne;function Ie(){Vt.call(this),this.getSlug=function(){return"subDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(r.getDate()-e))}}Ie.prototype=Object.create(Vt.prototype);const Fe=Ie;function Oe(){Vt.call(this),this.getSlug=function(){return"subMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMinutes(r.getMinutes()-e))}}Oe.prototype=Object.create(Vt.prototype);const ke=Oe;function Ce(){Vt.call(this),this.getSlug=function(){return"subMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(r.getMonth()-e))}}Ce.prototype=Object.create(Vt.prototype);const Re=Ce;function Ee(){Vt.call(this),this.getSlug=function(){return"subYear"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setFullYear(r.getFullYear()-e))}}Ee.prototype=Object.create(Vt.prototype);const Pe=Ee;function Te(){Vt.call(this),this.getSlug=function(){return"toDayInMs"},this.apply=function(t){return 864e5*t}}Te.prototype=Object.create(Vt.prototype);const Me=Te;function xe(){Vt.call(this),this.getSlug=function(){return"toMonthInMs"},this.apply=function(t){return 2592e6*t}}xe.prototype=Object.create(Vt.prototype);const Be=xe;function De(){Vt.call(this),this.getSlug=function(){return"toYearInMs"},this.apply=function(t){return 31536e6*t}}De.prototype=Object.create(Vt.prototype);const Ae=De;function Ve(){Vt.call(this),this.getSlug=function(){return"toHourInMs"},this.apply=function(t){return 36e5*t}}Ve.prototype=Object.create(Vt.prototype);const Le=Ve;function Je(){Vt.call(this),this.getSlug=function(){return"toMinuteInMs"},this.apply=function(t){return 6e4*t}}Je.prototype=Object.create(Vt.prototype);const He=Je;function Qe(){Vt.call(this),this.getSlug=function(){return"toWeekInMs"},this.apply=function(t){return 6048e5*t}}Qe.prototype=Object.create(Vt.prototype);const qe=Qe,{applyFilters:Ye}=JetPlugins.hooks;let $e=[];const We=[we,je,be,de,ge,Pe,Re,Fe,_e,ke,ne,oe,se,ae,le,Jt,Qt,Ut,Xt,te,pe,Me,Be,Ae,Le,He,qe];let ze=[];function Ke(t,e=""){let n;$e.length||($e=Ye("jet.fb.filters",[...We]));for(let e of $e){const r=e;if(e=new r,t===e.getSlug()){e.isCoreFilter=We.includes(r),n=e;break}}n&&(e=e.split(",").map(t=>t.trim()),n.setProps(e),ze.push(n))}const Ue=function(t){if(null===t||!t?.length)return null;for(const e of t){const t=e.match(/^(\w+)\(([^()]+)\)/);null!==t?Ke(t[1],t[2]):Ke(e)}const e=[...ze];return ze=[],e};function Ge(){}Ge.prototype={getId(){throw new Error("You need to rewrite this method")},getResult(){throw new Error("You need to rewrite this method")}};const Xe=Ge;function Ze(){Xe.call(this),this.getId=()=>"CurrentDate",this.getResult=()=>(new Date).getTime()}Ze.prototype=Object.create(Xe.prototype);const tn=Ze,en={Milli_In_Sec:1e3,Sec_In_Min:60,Min_In_Hour:60,Hour_In_Day:24,Day_In_Month:30,Year_In_Day:365,Kb_In_Bytes:1024};en.Min_In_Sec=en.Sec_In_Min*en.Milli_In_Sec,en.Hour_In_Sec=en.Min_In_Hour*en.Min_In_Sec,en.Day_In_Sec=en.Hour_In_Day*en.Hour_In_Sec,en.Month_In_Sec=en.Day_In_Month*en.Day_In_Sec,en.Year_In_Sec=en.Year_In_Day*en.Day_In_Sec,en.Mb_In_Bytes=1024*en.Kb_In_Bytes,en.Gb_In_Bytes=1024*en.Mb_In_Bytes,en.Tb_In_Bytes=1024*en.Gb_In_Bytes;const nn=en;function rn(){Xe.call(this),this.getId=()=>"Min_In_Sec",this.getResult=()=>nn.Min_In_Sec}rn.prototype=Object.create(Xe.prototype);const on=rn;function sn(){Xe.call(this),this.getId=()=>"Month_In_Sec",this.getResult=()=>nn.Month_In_Sec}sn.prototype=Object.create(Xe.prototype);const un=sn;function an(){Xe.call(this),this.getId=()=>"Hour_In_Sec",this.getResult=()=>nn.Hour_In_Sec}an.prototype=Object.create(Xe.prototype);const cn=an;function ln(){Xe.call(this),this.getId=()=>"Day_In_Sec",this.getResult=()=>nn.Day_In_Sec}ln.prototype=Object.create(Xe.prototype);const hn=ln;function pn(){Xe.call(this),this.getId=()=>"Year_In_Sec",this.getResult=()=>nn.Year_In_Sec}pn.prototype=Object.create(Xe.prototype);const fn=pn,{applyFilters:dn}=JetPlugins.hooks;let mn=[];const gn=window.wp.i18n,{applyFilters:yn,addFilter:bn}=JetPlugins.hooks;function vn(t){if(!t)return"";if("SELECT"===t.tagName)return Array.from(t.selectedOptions||[]).map(t=>String(t.label||t.textContent||t.value||"").trim()).filter(Boolean).join(", ");if(("checkbox"===t.type||"radio"===t.type)&&!t.checked)return"";if("checkbox"===t.type||"radio"===t.type){const e=t.closest("label");if(!e)return"";const n=e.querySelector("span");return String(n?.textContent||e.textContent||t.value||"").trim()}return""}function wn(t,e={}){var n;this.parts=[],this.related=[],this.relatedAttrs=[],this.regexp=/%([\w\-].*?\S?)%/g,this.watchers=[];const{forceFunction:r=!1}=e;this.forceFunction=r,t instanceof ct&&(this.input=t),this.root=null!==(n=this.input?.root)&&void 0!==n?n:t}bn("jet.fb.custom.formula.macro","jet-form-builder",function(t,e){if(!e.includes("CT::"))return t;const n=function(t){mn.length||(mn=dn("jet.fb.static.functions",[tn,on,un,cn,hn,fn]));for(const e of mn){const n=new e;if(n.getId()===t)return n}return!1}(e=e.replace("CT::",""));return!1===n?t:n.getResult()}),wn.prototype={formula:null,parts:[],related:[],relatedAttrs:[],input:null,root:null,regexp:null,forceFunction:!1,setResult:()=>{throw new Error("CalculatedFormula.setResult is not set!")},relatedCallback:t=>t.value.current,relatedLabelCallback:t=>function(t){const e=Array.from(t.nodes||[]).map(vn).filter(Boolean);return e.length?e.join(", "):t.value.current}(t),observe(t){this.formula=t,Array.isArray(t)?t.forEach(t=>{this.observeItem(t)}):this.observeItem(t)},observeItem(t){let e,n=0;for(t+="";null!==(e=this.regexp.exec(t));){const r=this.observeMacro(e[1]);0!==e.index&&this.parts.push(t.slice(n,e.index)),n=e.index+e[0].length,!1===r?this.onMissingPart(e[0]):this.parts.push(r)}n!==t.length&&(this.parts.push(t.slice(n)),1===this.parts.length&&(this.parts=[]))},onMissingPart(t){this.parts.push(t)},isFieldNodeExists(t){if(void 0===this.root.dataInputs[t])return!1;let e=this.root.rootNode[t]||this.root.rootNode[t+"[]"]||this.root.rootNode.querySelectorAll('[data-field-name="'+t+'"]');if(e&&0===e.length&&(e=void 0),void 0===e){const n=t.replace(/([\\^$*+?.()|{}\[\]])/g,"\\$1"),r=`[name$="[${n}]"],[name$="[${n}][]"],[name*="[${n}]["]`,o=this.root.rootNode.querySelectorAll(r);o&&o.length&&(e=o)}return e=yn("jet.fb.formula.node.exists",e,t,this),e},observeMacro(t){null===this.formula&&(this.formula=t);const[e,...n]=t.split("|"),r=e.match(/[\w\-:]+/g);if(!r)return!1;let[o,...i]=r;if(e.includes("::")){const[t,...n]=e.split("::");this.root.getInput(t)&&(o=t,i=n)}if(void 0===this.isFieldNodeExists(o)){const t=new RegExp(`%${o}%`,"g");let e,n=0,r=this.formula;for(;null!==(e=t.exec(this.formula));){const t=this.formula[e.index-1],r=this.formula[e.index+e[0].length];if("*"===t||"/"===t||"*"===r||"/"===r){n="/"===t||"*"===t&&"*"===r?1:0;break}n=0;break}return r=r.replace(e[0],n),this.formula=r,n}const s="this"!==o?this.root.getInput(o):this.input;if(!s&&!o.includes("::"))return!1;const u=Ue(n);if(o.includes("::")){const t=yn("jet.fb.custom.formula.macro",!1,o,i,this);return!1!==t&&("function"==typeof t?()=>Dt(t(),u):Dt(t,u))}if(this.related.includes(s.name)||(this.related.push(s.name),this.watchers.push(s.watch(()=>this.setResult()))),!i?.length)return()=>Dt(this.relatedCallback(s),u);const[a]=i;if("label"===a)return()=>Dt(this.relatedLabelCallback(s),u);if(!s.attrs.hasOwnProperty(a))return!1;const c=s.attrs[a];return this.relatedAttrs.includes(s.name+a)||(this.relatedAttrs.push(s.name+a),this.watchers.push(c.value.watch(()=>this.setResult()))),()=>Dt(c.value.current,u)},calculateString(){var t;if(!this.parts.length)return this.formula;const{applyFilters:e=!1}=null!==(t=window?.JetFormBuilderMain?.filters)&&void 0!==t?t:{};return this.parts.map(t=>{if("function"!=typeof t)return this.input?.nodes&&!1!==e&&"string"==typeof t?(t=yn("jet.fb.onCalculate.part",t,this),e("forms/calculated-formula-before-value",t,jQuery(this.input.nodes[0]))):t;const n=t();return null===n||""===n||Number.isNaN(n)?this.emptyValue():n}).join("")},emptyValue:()=>"",calculate(){if(!this.parts.length&&!this.forceFunction)return this.formula;const t=function(t){if("string"!=typeof t)return t;let e="",n=!1,r="code",o=0;for(let i=0;i"function"==typeof t&&t()),this.watchers=[],this.relatedAttrs=[],this.related=[]},showError(t){console.group((0,gn.__)("JetFormBuilder: You have invalid calculated formula","jet-form-builder")),this.showErrorDetails(t),console.groupEnd()},showErrorDetails(t){if(console.error((0,gn.sprintf)((0,gn.__)("Initial: %s","jet-form-builder"),this.formula)),console.error((0,gn.sprintf)((0,gn.__)("Computed: %s","jet-form-builder"),t)),!this.input&&!this.root?.parent)return;if(this.input)return void console.error((0,gn.sprintf)((0,gn.__)("Field: %s","jet-form-builder"),this.input.path.join(".")));const e=this.root.parent.findIndex(this.root);console.error((0,gn.sprintf)((0,gn.__)("Scope: %s","jet-form-builder"),[...this.root.parent.path,-1===e?"":e].filter(Boolean).join(".")))}};const Sn=wn,{applyFilters:jn}=JetPlugins.hooks;function Nn(t){if(!t)return"";if("SELECT"===t.tagName)return Array.from(t.selectedOptions||[]).map(t=>String(t.label||t.textContent||t.value||"").trim()).filter(Boolean).join(", ");if(("checkbox"===t.type||"radio"===t.type)&&!t.checked)return"";if("checkbox"===t.type||"radio"===t.type){const e=t.closest("label");if(!e)return"";const n=e.querySelector("span");return String(n?.textContent||e.textContent||t.value||"").trim()}return""}function _n(t,{withPrefix:e=!0,macroHost:n=!1,macroFormat:r="",...o}={}){Sn.call(this,t,o),e&&(this.regexp=/JFB_FIELD::(.+)/gi),this.macroHost=n||!1,this.macroFormat=r||"",this.relatedCallback=function(t){const e=jQuery(t.nodes[0]),n=!!this.macroHost&&jQuery(this.macroHost);let r=jn("jet.fb.macro.field.value",!1,e,n,this.macroFormat);return r=wp?.hooks?.applyFilters?wp.hooks.applyFilters("jet.fb.macro.field.value",r,e,n,this.macroFormat):r,!1!==r?r:"option-label"===this.macroFormat&&function(t){return Array.from(t.nodes||[]).map(Nn).filter(Boolean).join(", ")}(t)||t.value.current}.bind(this),this.onMissingPart=function(){}}_n.prototype=Object.create(Sn.prototype),_n.prototype.observeMacro=function(t){null===this.formula&&(this.formula=t);const[e,...n]=t.split("|"),r=e.match(/[\w\-:]+/g);if(!r)return!1;const[o,...i]=r;if(void 0===this.isFieldNodeExists(o))return!1;const s="this"!==o?this.root.getInput(o):this.input;if(!s&&!o.includes("::"))return!1;const u=Ue(n);if(o.includes("::"))return Sn.prototype.observeMacro.call(this,t);if(this.related.includes(s.name)||(this.related.push(s.name),this.watchers.push(s.watch(()=>this.setResult()))),!i?.length)return()=>{if("repeater"===s.inputType&&u?.length){const t=this.relatedCallback(s);return s.reQueryValue?.(),Dt(t,u,{rawRepeaterValue:s.value.current})}return Dt(this.relatedCallback(s),u)};const[a]=i;if(!s.attrs.hasOwnProperty(a))return!1;const c=s.attrs[a];return this.relatedAttrs.includes(s.name+a)||(this.relatedAttrs.push(s.name+a),this.watchers.push(c.value.watch(()=>this.setResult()))),()=>Dt(c.value.current,u)},_n.prototype.calculateString=function(){return this.parts.length?this.parts.map(t=>{if("function"!=typeof t)return t;const e=t();return null===e||""===e?"":e}).join(""):this.formula};const In=_n,{__:Fn,sprintf:On}=wp.i18n,kn=function(t,e){if(t.jfbObserved)return;const n=new In(e);if(n.observe(t.textContent),!n.parts?.length)return console.group(Fn("JetFormBuilder: You have invalid html macro","jet-form-builder")),console.error(On(Fn("Content: %s","jet-form-builder"),t.textContent)),console.groupEnd(),void n.clearWatchers();const r=document.createElement("span"),o=t.parentNode.insertBefore(r,t);n.setResult=()=>{o.innerHTML=n.calculateString()},n.setResult(),t.jfbObserved=!0},Cn=function(t,e,n){var r;const o=null!==(r=t[e])&&void 0!==r?r:"";if("string"!=typeof o)return null;const i=new In(n);i.observe(o),i.setResult=()=>{t[e]=i.calculateString()},i.setResult()},Rn=function(t,e){t.__jfbMacroTemplate||(t.__jfbMacroTemplate=t.innerHTML);const n=new In(e,{withPrefix:!1,macroHost:t,macroFormat:t.dataset.jfbMacroFormat||""});if(n.observe(`%${t.dataset.jfbMacro}%`),!n.parts?.length)return console.group((0,gn.__)("JetFormBuilder: You have invalid html macro","jet-form-builder")),console.error((0,gn.sprintf)((0,gn.__)("Content: %s","jet-form-builder"),t.dataset.jfbMacro)),console.groupEnd(),void n.clearWatchers();t.dataset.jfbObserved=1,n.setResult=()=>{let e=String(n.calculateString());const r=t.querySelector?.("textarea");r&&(e=e.replace(/\r\n|\r|\n/g,"
")),t.innerHTML=e},n.setResult()};function En(t){this.root=t,this.reportedFirst=!1,this.silence=!0}En.prototype={reset(t={}){var e;this.reportedFirst=!1,this.setSilence(null===(e=t?.silence)||void 0===e||e)},reportFirst(){this.reportedFirst=!0},setSilence(t){this.silence=!!t}};const Pn=En,{doAction:Tn}=JetPlugins.hooks;function Mn(t=null){this.parent=t,this.dataInputs={},this.form=null,this.multistep=null,this.rootNode=null,this.isObserved=!1,this.context=this.parent?null:new Pn(this)}Mn.prototype={parent:null,dataInputs:{},form:null,multistep:null,rootNode:null,isObserved:!1,value:null,observe(t=null){this.isObserved||(null!==t&&(this.rootNode=t),this.isObserved=!0,Tn("jet.fb.observe.before",this),this.initSubmitHandler(),this.initFields(),this.makeReactiveProxy(),this.initMacros(),this.initActionButtons(),this.initValue(),Tn("jet.fb.observe.after",this))},initFields(){for(const t of this.rootNode.querySelectorAll("[data-jfb-sync]"))this.pushInput(t)},initMacros(){for(const t of Bt(this.rootNode))kn(t,this);const t=Mt(this.rootNode,"JFB_FIELD::"),{replaceAttrs:e=[]}=window.JetFormBuilderSettings;for(const n of t)for(const t of e)Cn(n,t,this);const n=this.rootNode.querySelectorAll("[data-jfb-macro]:not([data-jfb-observed])");for(const t of n)Rn(t,this)},initSubmitHandler(){this.parent||(this.form=new Tt(this))},initActionButtons(){if(!this.parent)for(const t of this.rootNode.querySelectorAll(".jet-form-builder__button-switch-state")){let e;try{e=JSON.parse(t.dataset.switchOn)}catch(t){continue}t.addEventListener("click",()=>{this.getState().value.current=e})}},async inputsAreValid(){const t=await st(It(this.getInputs()));return Boolean(t.length)?Promise.reject(t):Promise.resolve()},watch(t,e){const n=this.getInput(t);if(n)return n.watch(e);throw new Error(`dataInputs in Observable don't have ${t} field`)},observeInput(t,e=!1){const n=this.pushInput(t,e);n.makeReactive(),Tn("jet.fb.observe.input.manual",n)},makeReactiveProxy(){for(const t of this.getInputs())t.makeReactive()},pushInput(t,e=!1){var n;if(!this.parent&&t.parentElement.closest(".jet-form-builder-repeater"))return;const r=function(t,e){Nt.length||(Nt=St("jet.fb.inputs",[wt,ft,ht,mt]));for(const n of Nt){const r=new n;if(r.isSupported(t))return r.setRoot(e),r.setNode(t),g(r),jt("jet.fb.input.created",r),r}throw new Error("Something went wrong")}(t,this),o=null!==(n=this.dataInputs[r.getName()])&&void 0!==n&&n;return!1===o||e?(this.dataInputs[r.getName()]=r,r):(o.merge(r),o)},getInputs(){return Object.values(this.dataInputs)},getState(){return this.getInput("_jfb_current_render_states")},getInput(t){var e;if(this.dataInputs.hasOwnProperty(t))return this.dataInputs[t];const n=null!==(e=this.parent?.root)&&void 0!==e?e:null;return n&&n.dataInputs.hasOwnProperty(t)?n.dataInputs[t]:null},getSubmit(){return this.form?this.form:this.parent.root.form},getContext(){var t;return null!==(t=this.context)&&void 0!==t?t:this.parent.root.context},remove(){for(const t of this.getInputs())t.onRemove()},reQueryValues(){for(const t of this.getInputs())t.reQueryValue()},initValue(){this.value=new _({}),this.value.watch(()=>{const t=Object.entries(this.value.current);for(const[e,n]of t)this.getInput(e).revertValue(n)});for(const t of this.getInputs())t.watch(()=>{this.value.current[t.getName()]=t.getValue()});this.value.make()}};const xn=Mn;var Bn;window.JetFormBuilder=null!==(Bn=window.JetFormBuilder)&&void 0!==Bn?Bn:{};const Dn=function(t){const e=t[0].querySelector("form.jet-form-builder");if(!e)return;const n=new xn;window.JetFormBuilder[e.dataset.formId]=n,jQuery(document).trigger("jet-form-builder/init",[t,n]),n.observe(e),jQuery(document).trigger("jet-form-builder/after-init",[t,n])};var An,Vn,Ln,Jn,Hn;window.JetFormBuilderAbstract={...null!==(An=window.JetFormBuilderAbstract)&&void 0!==An?An:{},Filter:Vt,CalculatedFormula:Sn,BaseInternalMacro:Xe},window.JetFormBuilderFunctions={...null!==(Vn=window.JetFormBuilderFunctions)&&void 0!==Vn?Vn:{},getFilters:Ue,applyFilters:Dt,toDate:Yt,toDateTime:Wt,toTime:$t,getTimestamp:zt},window.JetFormBuilderConst={...null!==(Ln=window.JetFormBuilderConst)&&void 0!==Ln?Ln:{},...nn},window.JetFormBuilderAbstract={...null!==(Jn=window.JetFormBuilderAbstract)&&void 0!==Jn?Jn:{},InputData:ct,BaseSignal:P,ReactiveVar:_,ReactiveHook:k,LoadingReactiveVar:F,Observable:xn,ReportingInterface:$,Restriction:U,RestrictionError:q,BaseHtmlAttr:e,ReactiveSet:yt,RequiredRestriction:tt},window.JetFormBuilderFunctions={...null!==(Hn=window.JetFormBuilderFunctions)&&void 0!==Hn?Hn:{},allRejected:f,getLanguage:function(){const t=window?.navigator?.languages?.length?window.navigator.languages[0]:window?.navigator?.language;return null!=t?t:"en-US"},toHTML:function(t){const e=document.createElement("template");return e.innerHTML=t.trim(),e.content},validateInputs:function(t,e=!1){return Promise.all(it(t,e).map(t=>new Promise(t)))},validateInputsAll:st,getParsedName:_t,isEmpty:y,getValidateCallbacks:it,getOffsetTop:v,focusOnInvalidInput:j,populateInputs:It,isVisible:b,queryByAttrValue:Mt,iterateComments:xt,observeMacroAttr:Cn,observeComment:kn,iterateJfbComments:Bt,getScrollParent:S,isUA:function(t){return h?.[t]}},document.addEventListener("DOMContentLoaded",function(){for(const[t,e]of Object.entries(h))e&&document.body.classList.add(`jet--ua-${t}`)}),jQuery(()=>JetPlugins.init()),JetPlugins.bulkBlocksInit([{block:"jet-forms.form-block",callback:Dn,condition:()=>"loading"!==document.readyState}]),jQuery(window).on("elementor/frontend/init",function(){if(!window.elementorFrontend)return;const t={"jet-engine-booking-form.default":Dn,"jet-form-builder-form.default":Dn};jQuery.each(t,function(t,e){window.elementorFrontend.hooks.addAction("frontend/element_ready/"+t,e)})}),addEventListener("load",()=>{const t=Object.values(window.JetFormBuilder);for(const e of t)e instanceof xn&&e.reQueryValues()})})(); \ No newline at end of file +(()=>{"use strict";function t(){this.attrName="",this.initial=null,this.isFromData=!1,this.value=null}t.prototype={attrName:"",input:null,initial:null,value:null,observe(){this.value=new _(this.initial),this.value.make(),this.addWatcherAttr()},nodeSignal(){const[t]=this.input.nodes;t[this.attrName]=this.value.current},addWatcherAttr(){this.value.watch((()=>this.nodeSignal()))},isSupported(t){var e;const[n]=t.nodes,r=null!==(e=-1!==n[this.attrName])&&void 0!==e?e:-1;return!(!n.dataset.hasOwnProperty(this.attrName)&&!r)&&(this.initial=this.getInitial(t),Boolean(this.initial))},getInitial(t){const[e]=t.nodes;return e.dataset[this.attrName]||e[this.attrName]||!1},setInput(t){this.input=t}};const e=t;function n(){e.call(this),this.attrName="max_files",this.isSupported=function(t){const[e]=t.nodes;return"file"===e.type},this.setInput=function(t){e.prototype.setInput.call(this,t);const{max_files:n=1}=JSON.parse(t.previewsContainer.dataset.args);this.initial=+n},this.addWatcherAttr=()=>{}}n.prototype=Object.create(e.prototype);const r=n;function o(){r.call(this),this.attrName="max_size",this.setInput=function(t){r.prototype.setInput.call(this,t);const{max_size:e=1}=JSON.parse(t.previewsContainer.dataset.args);this.initial=+e}}o.prototype=Object.create(r.prototype);const i=o;function s(){e.call(this),this.attrName="remaining",this.isSupported=function(t){return t.attrs.hasOwnProperty("maxLength")},this.setInput=function(t){var n;e.prototype.setInput.call(this,t);const{maxLength:r}=t.attrs,o=null!==(n=t.value.current?.length)&&void 0!==n?n:0;this.initial=r.value.current-o},this.addWatcherAttr=()=>{},this.observe=function(){e.prototype.observe.call(this),this.input.value.watch((()=>this.updateAttr())),this.input.attrs.maxLength.value.watch((()=>this.updateAttr()))},this.updateAttr=function(){var t;const{maxLength:e}=this.input.attrs,n=null!==(t=this.input.value.current?.length)&&void 0!==t?t:0;this.value.current=e.value.current-n}}s.prototype=Object.create(e.prototype);const u=s;function a(){r.call(this),this.attrName="file_ext",this.isSupported=function(t){const[e]=t.nodes;return"file"===e.type&&Boolean(e.accept)},this.setInput=function(t){r.prototype.setInput.call(this,t);const[e]=t.nodes;this.initial=e.accept.split(",")},this.addWatcherAttr=function(){const[t]=this.input.nodes;this.value.watch((()=>{t.accept=this.value.current.join(",")}))}}a.prototype=Object.create(r.prototype);const c=a,l=navigator.userAgent,h={safari:/^((?!chrome|android).)*safari/i.test(l)||/constructor/i.test(window.HTMLElement)||"[object SafariRemoteNotification]"===(!window.safari||"undefined"!=typeof safari&&window.safari.pushNotification).toString()},{applyFilters:p}=JetPlugins.hooks;async function f(t){const e=await Promise.allSettled(t.map((t=>new Promise(t))));return window?.JetFormBuilderSettings?.devmode&&(console.group("allRejected"),console.info(...e),console.groupEnd()),e.filter((t=>"rejected"===t.status)).map((({reason:t,value:e})=>t?.length?t[0]:null!=t?t:e))}let d=[];function m(t){const n=new e;return n.attrName=t,n}function g(t){d.length||(d=p("jet.fb.input.html.attrs",["min","max","minLength","maxLength",r,i,u,c]));for(const e of d){let n;n="string"==typeof e?m(e):new e,n.isSupported(t)&&(t.attrs[n.attrName]=n,n.setInput(t),n.observe())}}function y(t){return"boolean"==typeof t?!t:null==t||("object"!=typeof t||Array.isArray(t)?"number"==typeof t?0===t:!t?.length:!Object.keys(t)?.length)}function b(t){return t?.isConnected&&null!==t?.offsetParent}function v(t){var e;const n=t.getBoundingClientRect(),r=S(t);return n?.top+(null!==(e=r?.scrollY)&&void 0!==e?e:0)}const w=t=>t.scrollHeight>t.clientHeight&&t;function S(t){let e=t.closest(".jet-popup__container-inner");return e?w(e):(e=t.closest(".elementor-popup-modal .dialog-message"),e?w(e):window)}function j(t){for(const e of t)if(!e.reporting.validityState.current){!e.reporting.hasAutoScroll()&&e.onFocus();break}}function N(t=null){this.current=t,this.signals=[],this.sanitizers=[],this.isDebug=!1,this.isSilence=!1,this.isMaked=!1}N.prototype={watchOnce(t){if("function"!=typeof t)return;const e=this.watch((()=>{e(),t()}))},watch(t){if("function"!=typeof t)return!1;if(this.signals.some((({signal:e})=>e===t)))return!0;this.signals.push({signal:t,trace:(new Error).stack});const e=this.signals.length-1;return()=>this.signals.splice(e,1)},sanitize(t){if("function"!=typeof t)return!1;if(-1!==this.sanitizers.indexOf(t))return!0;this.sanitizers.push(t);const e=this.sanitizers.length-1;return()=>this.sanitizers.splice(e,1)},make(){if(this.isMaked)return;this.isMaked=!0;let t=this.current,e=null;const n=this;Object.defineProperty(this,"current",{get:()=>t,set(r){t!==r&&(e=t,n.isDebug&&(console.group("ReactiveVar has changed"),console.log("current:",t),console.log("newVal:",r),console.groupEnd()),t=n.applySanitizers(r),n.isSilence||n.notify(e))}})},notify(t=null){this.signals.forEach((({signal:e})=>e.call(this,t)))},applySanitizers(t){for(const e of this.sanitizers)t=e.call(this,t);return t},setIfEmpty(t){y(this.current)&&(this.current=t)},debug(){this.isDebug=!this.isDebug},silence(){this.isSilence=!this.isSilence}};const _=N;function I(){_.call(this,!1),this.start=function(){this.current=!0},this.end=function(){this.current=!1},this.toggle=function(){this.current=!this.current}}I.prototype=Object.create(_.prototype);const F=I;function O(){this.handlers=[]}O.prototype={addFilter(t){this.handlers.push(t);const e=this.handlers.length-1;return()=>this.handlers.splice(e,1)},applyFilters(...t){let e=t[0];const n=t.slice(1);for(const t of this.handlers)e=t(e,...n);return e}};const k=O,{strict_mode:C=!1}=window?.JetFormBuilderSettings,R=Boolean(C);function E(){this.input=null,this.lock=new _,this.lock.make(),this.triggerjQuery=!R}E.prototype={input:null,lock:null,isSupported:(t,e)=>!1,setInput(t){this.input=t},run(t){if(!this.lock.current)return this.runSignal(t),void this.unlockTrigger();this.lock.signals.length||this.lock.watchOnce((()=>this.runSignal(t)))},triggerJQuery(t){this.triggerjQuery&&jQuery(t).trigger("change")},runSignal(t){},lockTrigger(){this.triggerjQuery=!1},unlockTrigger(){R||(this.triggerjQuery=!0)}};const P=E;function T(t){return"hidden"===t.type}function M(t){return"range"===t.type}function x(){P.call(this)}x.prototype=Object.create(P.prototype),x.prototype.isSupported=function(t,e){return T(t)&&e.isArray()},x.prototype.runSignal=function(){const{current:t}=this.input.value;if(!t?.length){for(const t of this.input.nodes)t.remove();return void this.input.nodes.splice(0,this.input.nodes.length)}const e=[];for(const n of t){if(this.input.nodes.some(((t,r)=>t.value===n&&(e.push(r),!0))))continue;const t=document.createElement("input");t.type="hidden",t.value=n,t.name=this.input.rawName,this.input.nodes.push(t),e.push(this.input.nodes.length-1),this.input.comment.parentElement.insertBefore(t,this.input.comment.nextElementSibling)}this.input.nodes=this.input.nodes.filter(((t,n)=>!!e.includes(n)||(t.remove(),!1)))};const B=x;function D(){P.call(this),this.isSupported=function(t){return M(t)},this.runSignal=function(){const[t]=this.input.nodes;t.value=this.input.value.current,this.input.numberNode.textContent=t.value,this.triggerJQuery(t)}}D.prototype=Object.create(P.prototype);const A=D;function V(){B.call(this),this.isSupported=function(t){return"_jfb_current_render_states[]"===t.name},this.runSignal=function(t){B.prototype.runSignal.call(this,t);const e=new URL(window.location),n=this.input.getSubmit().getFormId(),r=this.input.value.current||[],o=`jfb[${n}][state]`,i=[];for(const t of r)this.input.isCustom(t)&&i.push(t);if(!i.length){if(!e.searchParams.has(o))return;return e.searchParams.delete(o),void window.history.pushState({},"",e.toString())}const s=i.join(",");e.searchParams.get(o)!==s&&(e.searchParams.set(o,s),window.history.pushState({},"",e.toString()))}}V.prototype=Object.create(B.prototype);const L=V,{applyFilters:J}=JetPlugins.hooks;let H=[];function Q(t){Error.call(this,t),Error.captureStackTrace?Error.captureStackTrace(this,Q):this.stack=(new Error).stack}Q.prototype=Object.create(Error.prototype);const q=Q;function Y(){this.input=null,this.isRequired=!1,this.errors=null,this.restrictions=[],this.valuePrev=null,this.validityState=null,this.promisesCount=0}Y.prototype={restrictions:[],valuePrev:null,validityState:null,promisesCount:0,validateOnChange(){},validateOnBlur(){},async validate(t=null){const e=await this.getErrors(t);if(this.validityState.current=!Boolean(e.length),!e.length)return this.clearReport(),!0;throw!this.input.root.getContext().silence&&this.report(e),new q(e[0].name)},async getErrorsRaw(t){throw new Error("getError must return a Promise")},async getErrors(t=null){if(this.input.loading.current||this.input?.callable?.lock?.current||!this.input.isVisible())return[];const e=this.getPromises(t);var n;return this.hasChangedValue()||this.promisesCount!==e.length||this.input.stopValidation||"hr-select-level"===this.input.inputType?(this.promisesCount=e.length,this.errors=[],e.length?(this.errors=await this.getErrorsRaw(e,t),this.errors):this.errors):null!==(n=this.errors)&&void 0!==n?n:[]},report(t){this.input.getContext().reportedFirst?this.reportRaw(t):(this.input.getContext().reportFirst(),this.reportFirst(t))},reportRaw(t){throw new Error("report is empty")},reportFirst(t){this.report(t)},clearReport(){throw new Error("clearReport is empty")},getPromises(t=null){const e=[];for(const n of this.restrictions)this.canProcessRestriction(n)&&(this.beforeProcessRestriction(n),e.push(((e,r)=>{n.validatePromise(t).then((()=>e(n))).catch((t=>r([n,t])))})));return e},canProcessRestriction:t=>!0,beforeProcessRestriction(t){},isSupported(t,e){throw new Error("isSupported is empty")},setInput(t){this.validityState=new _,this.validityState.make(),this.input=t,this.setRestrictions(),this.filterRestrictions()},setRestrictions(){},getNode(){return this.input.nodes[0]},hasChangedValue(){return this.valuePrev!==this.input.getValue()},checkValidity(){const t=this.input.getContext().silence;return null===this.validityState.current?this.validateOnChangeState():this.validityState.current?Promise.resolve():(t||!t&&this.report(this.errors||[]),Promise.reject())},hasAutoScroll:()=>!1,filterRestrictions(){const t={};for(let[e,n]of Object.entries(this.restrictions))e=n.getType()?n.getType():e,t[e]=n;this.restrictions=Object.values(t)}};const $=Y;function W(){$.call(this),this.isSupported=function(){return!0},this.reportRaw=function(){},this.reportFirst=function(){this.getNode().reportValidity()},this.setRestrictions=function(){const[t]=this.input.nodes;!function(t,e){ot.length||(ot=rt());for(const n of ot){const r=new n;r.isSupported(e,t)&&t.restrictions.push(r)}t.restrictions.forEach((e=>e.setReporting(t)))}(this,t)},this.clearReport=function(){},this.validateOnChange=function(){this.validate().then((()=>{})).catch((()=>{}))},this.getErrorsRaw=async function(t){const e=await f(t);return this.valuePrev=this.input.getValue(),e},this.validateOnChangeState=function(){return this.validate()},this.hasAutoScroll=function(){return this.input.hasAutoScroll()},this.getNode=function(){return this.input.getReportingNode()}}W.prototype=Object.create($.prototype);const z=W;function K(){this.reporting=null,this.type=""}K.prototype={isSupported:(t,e)=>!0,getType(){return this.type},setReporting(t){this.reporting=t},getValue(){return this.reporting.input.value.current},validate(){throw new Error("validate is wrong")},async validatePromise(){let t;try{t=await this.validate()}catch(t){var e;return Promise.reject(null!==(e=t?.message)&&void 0!==e?e:t)}return t?Promise.resolve():Promise.reject("validate is wrong")},onReady(){}};const U=K;function G(){U.call(this),this.isSupported=function(t){return!!t.checkValidity},this.validate=function(){const{nodes:t}=this.reporting.input;for(const e of t)if(e.checkValidity())return!0;return!1}}G.prototype=Object.create(U.prototype);const X=G;function Z(){U.call(this),this.type="required"}Z.prototype=Object.create(U.prototype),Z.prototype.isSupported=function(t,e){return e.input.isRequired},Z.prototype.validate=function(){const{current:t}=this.reporting.input.value;return!y(t)};const tt=Z,{applyFilters:et}=JetPlugins.hooks;let nt=[];const rt=()=>et("jet.fb.restrictions.default",[X,tt]);let ot=[];function it(t,e=!1){const n=[];t?.[0]?.getContext()?.reset({silence:e});for(const e of t){if(!(e instanceof ct))throw new Error("Input is not instance of InputData");n.push(((t,n)=>{e.reporting.validateOnChangeState().then(t).catch(n)}))}return n}function st(t,e=!1){return f(it(t,e))}const{doAction:ut}=JetPlugins.hooks;function at(){this.rawName="",this.name="",this.comment=!1,this.nodes=[],this.attrs={},this.enterKey=null,this.inputType=null,this.offsetOnFocus=75,this.path=[],this.value=this.getReactive(),this.value.watch(this.onChange.bind(this)),this.isRequired=!1,this.calcValue=null,this.reporting=null,this.checker=null,this.root=null,this.loading=new F(!1),this.loading.make(),this.isResetCalcValue=!0,this.validateTimer=!1,this.stopValidation=!1,this.abortController=null}at.prototype.attrs={},at.prototype.isSupported=function(t){return!1},at.prototype.addListeners=function(){const[t]=this.nodes;t.addEventListener("input",(t=>{this.value.current=t.target.value})),t.addEventListener("blur",(()=>{})),t.addEventListener("input",(()=>{this.reporting&&"function"==typeof this.reporting.switchButtonsState&&this.reporting.switchButtonsState(!0),this.debouncedReport()})),!R&&jQuery(t).on("change",(t=>{this.value.current!=t.target.value&&(this.callable.lockTrigger(),this.value.current=t.target.value,this.callable.unlockTrigger())})),"input"===this.inputType&&(this.enterKey=new k,t.addEventListener("keydown",this.handleEnterKey.bind(this)))},at.prototype.makeReactive=function(){this.onObserve(),this.addListeners(),this.setValue(),this.initNotifyValue(),this.value.make(),ut("jet.fb.input.makeReactive",this)},at.prototype.onChange=function(t){this.isResetCalcValue&&(this.calcValue=this.value.current),this?.callable?.run(t),this.report()},at.prototype.report=function(){this.reporting.validateOnChange()},at.prototype.reportOnBlur=function(t=null){this.reporting.validateOnBlur(t)},at.prototype.debouncedReport=function(){this.validateTimer&&(this.stopValidation=!0,clearTimeout(this.validateTimer),this.abortController&&this.abortController.abort()),this.abortController=new AbortController;let t=this.abortController.signal;this.validateTimer=setTimeout((()=>{this.reportOnBlur(t)}),450)},at.prototype.watch=function(t){return this.value.watch(t)},at.prototype.watchValidity=function(t){return this.reporting.validityState.watch(t)},at.prototype.sanitize=function(t){return this.value.sanitize(t)},at.prototype.merge=function(t){this.nodes=[...t.getNode()]},at.prototype.setValue=function(){let t;t=this.isArray()?Array.from(this.nodes).map((({value:t})=>t)):this.nodes[0]?.value,this.calcValue=t,this.value.current=t},at.prototype.setNode=function(t){var e;this.nodes=[t],this.rawName=null!==(e=t.name)&&void 0!==e?e:"",this.name=_t(this.rawName),this.inputType=t.nodeName.toLowerCase()},at.prototype.onObserve=function(){const[t]=this.nodes;t.jfbSync=this,this.isRequired=this.checkIsRequired(),this.callable=function(t,e){H.length||(H=J("jet.fb.signals",[A,L,B]));for(const n of H){const r=new n;if(r.isSupported(t,e))return r}return null}(t,this),this.callable.setInput(this),this.reporting=function(t){nt.length||(nt=et("jet.fb.reporting",[z]));for(const e of nt){const n=new e;if(n.isSupported(t.nodes[0],t))return n.setInput(t),n}throw new Error("Something went wrong")}(this),this.loading.watch((()=>this.onChangeLoading())),this.path=[...this.getParentPath(),this.name],this.getSubmit().submitter.hasOwnProperty("status")&&!this.hasParent()&&this.getSubmit().submitter.watchReset((()=>this.onClear()))},at.prototype.onChangeLoading=function(){this.getSubmit().lockState.current=this.loading.current;const[t]=this.nodes;t.closest(".jet-form-builder-row").classList.toggle("is-loading",this.loading.current)},at.prototype.setRoot=function(t){this.root=t},at.prototype.onRemove=function(){},at.prototype.getName=function(){return this.name},at.prototype.getValue=function(){return this.value.current},at.prototype.getNode=function(){return this.nodes},at.prototype.isArray=function(){return this.rawName.includes("[]")},at.prototype.beforeSubmit=function(t,e=!1){this.getSubmit().submitter.promise(t,e)},at.prototype.getSubmit=function(){return this.getRoot().form},at.prototype.getRoot=function(){return this.root?.parent?this.root.parent.getRoot():this.root},at.prototype.isVisible=function(){return b(this.getWrapperNode())},at.prototype.onClear=function(){this.silenceSet(null)},at.prototype.getReactive=function(){return new _},at.prototype.checkIsRequired=function(){var t;const[e]=this.nodes;return null!==(t=e.required)&&void 0!==t?t:!!e.dataset.required?.length},at.prototype.silenceSet=function(t){const e=this.report.bind(this);this.report=()=>{},this.value.current=t,this.report=e},at.prototype.silenceNotify=function(){const t=this.report.bind(this);this.report=()=>{},this.value.notify(),this.report=t},at.prototype.hasParent=function(){return!!this.root?.parent},at.prototype.getWrapperNode=function(){return this.nodes[0].closest(".jet-form-builder-row")},at.prototype.handleEnterKey=function(t){"Enter"!==t.key||!this.enterKey||t.shiftKey||t.isComposing||(t.preventDefault(),this.onEnterKey())},at.prototype.onEnterKey=function(){this.enterKey.applyFilters(!0)&&!0===this.getSubmit().canTriggerEnterSubmit&&this.getSubmit().submit()},at.prototype.initNotifyValue=function(){this.silenceNotify()},at.prototype.onFocus=function(){this.scrollTo(),this.focusRaw()},at.prototype.focusRaw=function(){const[t]=this.nodes;["date","time","datetime-local"].includes(t.type)||t?.focus({preventScroll:!0})},at.prototype.scrollTo=function(){const t=this.getWrapperNode();window.scrollTo({top:v(t)-this.offsetOnFocus,behavior:"smooth"})},at.prototype.getContext=function(){return this.root.getContext()},at.prototype.populateInner=function(){return!1},at.prototype.hasAutoScroll=function(){return!0},at.prototype.getReportingNode=function(){return this.nodes[0]},at.prototype.getParentPath=function(){if(!this.root?.parent)return[];const t=this.root.parent.value.current;if("object"!=typeof t)return[];for(const[e,n]of Object.entries(t))if(n===this.root)return[...this.root.parent.getParentPath(),this.root.parent.name,e];return[]},at.prototype.reQueryValue=function(){this.setValue(),this.initNotifyValue()},at.prototype.revertValue=function(t){this.value.current=t},at.prototype.reCalculateFormula=function(){this.setValue(),this.initNotifyValue()};const ct=at;function lt(){ct.call(this),this.isSupported=function(t){return function(t){return["select-one","range"].includes(t.type)}(t)},this.addListeners=function(){const[t]=this.nodes;t.addEventListener("change",(t=>{this.value.current=t.target.value})),!R&&jQuery(t).on("change",(t=>{this.value.current!=t.target.value&&(this.callable.lockTrigger(),this.value.current=t.target.value,this.callable.unlockTrigger())})),this.enterKey=new k,t.addEventListener("keydown",this.handleEnterKey.bind(this))},this.onClear=function(){this.silenceSet("")}}lt.prototype=Object.create(ct.prototype);const ht=lt;function pt(){ct.call(this),this.numberNode=null,this.isSupported=function(t){return M(t)},this.setNode=function(t){ct.prototype.setNode.call(this,t),this.numberNode=t.parentElement.querySelector(".jet-form-builder__field-value-number")}}pt.prototype=Object.create(ct.prototype);const ft=pt;function dt(){ct.call(this),this.comment=null,this.isSupported=function(t){return T(t)},this.addListeners=function(){},this.onObserve=function(){ct.prototype.onObserve.call(this),this.isArray()&&this.setComment()},this.setComment=function(){this.comment=document.createComment(this.name);const[t]=this.nodes;t.parentElement.insertBefore(this.comment,t)},this.isVisible=function(){return!1},this.merge=function(t){this.nodes.push(...t.getNode())}}dt.prototype=Object.create(ct.prototype);const mt=dt;function gt(t){_.call(this,t)}gt.prototype=Object.create(_.prototype),gt.prototype.add=function(t){var e;this.current=[...new Set([...null!==(e=this.current)&&void 0!==e?e:[],t])]},gt.prototype.remove=function(t){this.current=this.current.filter((e=>e!==t))},gt.prototype.toggle=function(t,e=null){null===e?this.current.includes(t)?this.remove(t):this.add(t):e?this.add(t):this.remove(t)};const yt=gt,{builtInStates:bt}=window.JetFormBuilderSettings;function vt(){mt.call(this),this.isSupported=function(t){return"hidden"===t?.type&&"_jfb_current_render_states[]"===t.name},this.add=function(t){this.value.add(t)},this.remove=function(t){this.value.remove(t)},this.toggle=function(t,e=null){this.value.toggle(t,e)},this.isCustom=function(t){return!bt.includes(t)}}vt.prototype=Object.create(mt.prototype),vt.prototype.getReactive=function(){return new yt};const wt=vt,{applyFilters:St,doAction:jt}=JetPlugins.hooks;let Nt=[];function _t(t){const e=[/^([\w\-]+)\[\]$/,/^[\w\-]+\[\d+\]\[([\w\-]+)\]\[?\]?$/];for(const n of e)if(n.test(t))return t.match(n)[1];return t}function It(t){const e=[];for(const n of t){const t=n.populateInner();t?.length&&e.push(...t),e.push(n)}return e}function Ft(t){this.form=t,this.lastResponse={},this.promises=[]}Ft.prototype.submit=function(){throw new Error("You need to replace this callback")},Ft.prototype.getPromises=function(){return this.promises.map((({callable:t})=>new Promise(t)))},Ft.prototype.promise=function(t,e=!1){const n=e?e.path.join("."):"";this.promises=this.promises.filter((({idPath:t})=>!t||t!==n)),this.promises.push({callable:t,idPath:e?e.path.join("."):""})};const Ot=Ft;function kt(t){return"success"===t||t?.includes("dsuccess|")}function Ct(t){Ot.call(this,t),this.status=new _,this.status.make(),this.submit=function(){const t=jQuery(this.form.observable.rootNode),{applyFilters:e}=JetPlugins.hooks;Promise.all(e("jet.fb.submit.ajax.promises",this.getPromises(),t)).then((t=>this.runSubmit(t))).catch((()=>this.form.toggle()))},this.runSubmit=function(t){const{rootNode:e}=this.form.observable,n=new FormData(e);n.append("_jet_engine_booking_form_id",this.form.getFormId()),this.status.silence(),this.status.current=null,this.status.silence(),jQuery.ajax({url:JetFormBuilderSettings.ajaxurl,type:"POST",dataType:"json",data:n,cache:!1,contentType:!1,processData:!1}).done((n=>{this.onSuccess(n);const r=jQuery(e);t.forEach((t=>{"function"==typeof t&&t.call(r,n)}))})).fail(this.onFail.bind(this))},this.onSuccess=function(t){this.form.toggle();const{rootNode:e}=this.form.observable;this.lastResponse=t;const n=jQuery(e),r=t?._jfb_csrf_token;r&&this.refreshCsrfToken(r),"success"===t.status?jQuery(document).trigger("jet-form-builder/ajax/on-success",[t,n]):jQuery(document).trigger("jet-form-builder/ajax/processing-error",[t,n]),this.status.current=t.status,t.redirect?t.open_in_new_tab?window.open(t.redirect,"_blank"):window.location=t.redirect:t.reload&&window.location.reload(),this.insertMessage(t.message)},this.onFail=function(t,e,n){this.form.toggle(),this.status.current=!1;const{rootNode:r}=this.form.observable,o=jQuery(r);jQuery(document).trigger("jet-form-builder/ajax/on-fail",[t,e,n,o]),console.error(t.responseText,n)},this.insertMessage=function(t){const{rootNode:e}=this.form.observable,n=document.createElement("div");n.classList.add("jet-form-builder-messages-wrap"),n.innerHTML=t,e.appendChild(n)},this.refreshCsrfToken=function(t){const e=this.form.getFormId(),n=document.querySelectorAll("form.jet-form-builder[data-form-id]");for(const r of n){if(+r.dataset.formId!==e)continue;const n=r.querySelectorAll('input[name="_jfb_csrf_token"]');for(const e of n)e.value=t}}}Ct.prototype=Object.create(Ot.prototype),Ct.prototype.status=null,Ct.prototype.watchReset=function(t){const{rootNode:e}=this.form.observable;e.dataset?.clear&&this.watchSuccess(t)},Ct.prototype.watchSuccess=function(t){const e=this.status;e.watch((()=>{kt(e.current)&&t()}))},Ct.prototype.watchFail=function(t){const e=this.status;e.watch((()=>{kt(e.current)||t()}))};const Rt=Ct;function Et(t){Ot.call(this,t),this.failPromises=[],this.submit=function(){const{rootNode:t}=this.form.observable,{applyFilters:e}=JetPlugins.hooks;Promise.all(e("jet.fb.submit.reload.promises",this.getPromises(),{target:t})).then((()=>t.submit())).catch((()=>{this.failPromises.forEach((t=>t())),this.form.toggle()}))},this.onFailSubmit=function(t){"function"==typeof t&&this.failPromises.push(t)}}Et.prototype=Object.create(Ot.prototype);const Pt=Et,Tt=function(t){this.observable=t,this.lockState=new F(!1),this.lockState.make(),this.autoFocus=window.JetFormBuilderSettings?.auto_focus,this.canSubmitForm=!0,this.canTriggerEnterSubmit=!0,this.onSubmit=function(t){t.preventDefault(),this.submit()},this.submit=function(){!0===this.canSubmitForm&&(this.canSubmitForm=!1,this.canTriggerEnterSubmit=!1,this.observable.inputsAreValid().then((()=>{this.clearErrors(),this.toggle(),this.submitter.submit()})).catch((()=>{this.autoFocus&&j(It(this.observable.getInputs()))})).finally((()=>{this.canTriggerEnterSubmit=!0,this.canSubmitForm=!0})))},this.clearErrors=function(){const t=this.observable.rootNode.querySelectorAll(".jet-form-builder-messages-wrap");for(const e of t)e.remove()},this.toggle=function(){this.lockState.toggle(),this.toggleLoading()},this.handleButtons=function(){const t=this.observable.rootNode.querySelectorAll(".jet-form-builder__submit");this.lockState.watch((()=>{for(const e of t)e.disabled=this.lockState.current;!1===this.lockState.current&&(this.canSubmitForm=!0)}))},this.toggleLoading=function(){this.observable.rootNode.classList.toggle("is-loading")},this.createSubmitter=function(){const{classList:t}=this.observable.rootNode;return t.contains("submit-type-ajax")?new Rt(this):new Pt(this)},this.getFormId=function(){const{rootNode:t}=this.observable;return+t.dataset.formId},this.onEndSubmit=function(t){this.submitter.hasOwnProperty("status")?this.submitter.status.watch(t):this.submitter.onFailSubmit(t)},this.observable.rootNode.addEventListener("submit",(t=>this.onSubmit(t))),this.submitter=this.createSubmitter(),this.handleButtons()},Mt=function(t,e){const{replaceAttrs:n=[]}=window.JetFormBuilderSettings,r=[];for(let t=0;tNodeFilter.FILTER_ACCEPT){const n=document.createNodeIterator(t,NodeFilter.SHOW_COMMENT,{acceptNode:e});let r;for(;r=n.nextNode();)r.nodeValue=r.nodeValue.trim(),yield r},Bt=function*(t){yield*xt(t,(t=>!t.jfbObserved&&t.textContent.includes("JFB_FIELD::")))},Dt=function(t,e,n={}){if(null===e||!e?.length)return t;let r=Boolean(n?.rawRepeaterValue);for(const o of e){const e=r&&!1===o?.isCoreFilter;t=o.applyWithProps(e?n.rawRepeaterValue:t),r=!1}return t};function At(){this.props=[]}At.prototype.getSlug=function(){throw new Error("getSlug is empty")},At.prototype.setProps=function(t){this.props.push(...t)},At.prototype.applyWithProps=function(t){return this.apply(t,...this.props)},At.prototype.apply=function(t,...e){return t};const Vt=At;function Lt(){Vt.call(this),this.getSlug=function(){return"length"},this.apply=function(t){var e;return null!==(e=t?.length)&&void 0!==e?e:0}}Lt.prototype=Object.create(Vt.prototype);const Jt=Lt;function Ht(){Vt.call(this),this.getSlug=function(){return"ifEmpty"},this.apply=function(t,e){return y(t)||Number.isNaN(t)?e:t}}Ht.prototype=Object.create(Vt.prototype);const Qt=Ht;function qt(t,e){return(t=""+t).length>=e?t:new Array(e-t.length).fill(0)+t}function Yt(t,e=!0){const n=e?t.getUTCMonth():t.getMonth(),r=e?t.getUTCDate():t.getDate();return[e?t.getUTCFullYear():t.getFullYear(),qt(n+1,2),qt(r,2)].join("-")}function $t(t,e=!0){const n=e?t.getUTCHours():t.getHours(),r=e?t.getUTCMinutes():t.getMinutes();return[qt(n,2),qt(r,2)].join(":")}function Wt(t,e=!1){return Yt(t,e)+"T"+$t(t,e)}function zt(t){if(!Number.isNaN(+t))return{time:+t,type:"number"};if((t=t.toString()).split("-").length>1)return{time:new Date(t).getTime(),type:"date"};const e=t.split(":"),n=[Date.prototype.setHours,Date.prototype.setMinutes,Date.prototype.setSeconds],r=new Date;for(const t in e)e.hasOwnProperty(t)&&n.hasOwnProperty(t)&&n[t].call(r,e[t]);return{time:r.getTime(),type:"time"}}function Kt(){Vt.call(this),this.getSlug=function(){return"toDate"},this.apply=function(t,e=!0){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"");e="false"!==t.toLowerCase()}else e=Boolean(e);return Yt(new Date(t),e)}}Kt.prototype=Object.create(Vt.prototype);const Ut=Kt;function Gt(){Vt.call(this),this.getSlug=function(){return"toTime"},this.apply=function(t,e=!0){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"");e="false"!==t.toLowerCase()}else e=Boolean(e);return $t(new Date(t),e)}}Gt.prototype=Object.create(Vt.prototype);const Xt=Gt;function Zt(){Vt.call(this),this.getSlug=function(){return"toDateTime"},this.apply=function(t,e=!1){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"").toLowerCase();e=""!==t&&"false"!==t}else e=Boolean(e);return Wt(new Date(t),e)}}Zt.prototype=Object.create(Vt.prototype);const te=Zt;function ee(){Vt.call(this),this.getSlug=function(){return"addYear"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setFullYear(r.getFullYear()+e))}}ee.prototype=Object.create(Vt.prototype);const ne=ee;function re(){Vt.call(this),this.getSlug=function(){return"addMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(r.getMonth()+e))}}re.prototype=Object.create(Vt.prototype);const oe=re;function ie(){Vt.call(this),this.getSlug=function(){return"addDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(r.getDate()+e))}}ie.prototype=Object.create(Vt.prototype);const se=ie;function ue(){Vt.call(this),this.getSlug=function(){return"addHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setHours(r.getHours()+e))}}ue.prototype=Object.create(Vt.prototype);const ae=ue;function ce(){Vt.call(this),this.getSlug=function(){return"addMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMinutes(r.getMinutes()+e))}}ce.prototype=Object.create(Vt.prototype);const le=ce;function he(){Vt.call(this),this.getSlug=function(){return"T"},this.apply=function(t){if(!t)return 0;const{time:e}=zt(t);return e}}he.prototype=Object.create(Vt.prototype);const pe=he;function fe(){Vt.call(this),this.getSlug=function(){return"setHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?t:(e=e?+e.trim():0,r.setHours(e))}}fe.prototype=Object.create(Vt.prototype);const de=fe;function me(){Vt.call(this),this.getSlug=function(){return"setMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?t:(e=e?+e.trim():0,r.setMinutes(e))}}me.prototype=Object.create(Vt.prototype);const ge=me;function ye(){Vt.call(this),this.getSlug=function(){return"setDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(e))}}ye.prototype=Object.create(Vt.prototype);const be=ye;function ve(){Vt.call(this),this.getSlug=function(){return"setYear"},this.apply=function(t,e){if(!(e=!!e&&+e.trim()))return t;const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:r.setFullYear(e)}}ve.prototype=Object.create(Vt.prototype);const we=ve;function Se(){Vt.call(this),this.getSlug=function(){return"setMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(e))}}Se.prototype=Object.create(Vt.prototype);const je=Se;function Ne(){Vt.call(this),this.getSlug=function(){return"subHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setHours(r.getHours()-e))}}Ne.prototype=Object.create(Vt.prototype);const _e=Ne;function Ie(){Vt.call(this),this.getSlug=function(){return"subDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(r.getDate()-e))}}Ie.prototype=Object.create(Vt.prototype);const Fe=Ie;function Oe(){Vt.call(this),this.getSlug=function(){return"subMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMinutes(r.getMinutes()-e))}}Oe.prototype=Object.create(Vt.prototype);const ke=Oe;function Ce(){Vt.call(this),this.getSlug=function(){return"subMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(r.getMonth()-e))}}Ce.prototype=Object.create(Vt.prototype);const Re=Ce;function Ee(){Vt.call(this),this.getSlug=function(){return"subYear"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setFullYear(r.getFullYear()-e))}}Ee.prototype=Object.create(Vt.prototype);const Pe=Ee;function Te(){Vt.call(this),this.getSlug=function(){return"toDayInMs"},this.apply=function(t){return 864e5*t}}Te.prototype=Object.create(Vt.prototype);const Me=Te;function xe(){Vt.call(this),this.getSlug=function(){return"toMonthInMs"},this.apply=function(t){return 2592e6*t}}xe.prototype=Object.create(Vt.prototype);const Be=xe;function De(){Vt.call(this),this.getSlug=function(){return"toYearInMs"},this.apply=function(t){return 31536e6*t}}De.prototype=Object.create(Vt.prototype);const Ae=De;function Ve(){Vt.call(this),this.getSlug=function(){return"toHourInMs"},this.apply=function(t){return 36e5*t}}Ve.prototype=Object.create(Vt.prototype);const Le=Ve;function Je(){Vt.call(this),this.getSlug=function(){return"toMinuteInMs"},this.apply=function(t){return 6e4*t}}Je.prototype=Object.create(Vt.prototype);const He=Je;function Qe(){Vt.call(this),this.getSlug=function(){return"toWeekInMs"},this.apply=function(t){return 6048e5*t}}Qe.prototype=Object.create(Vt.prototype);const qe=Qe,{applyFilters:Ye}=JetPlugins.hooks;let $e=[];const We=[we,je,be,de,ge,Pe,Re,Fe,_e,ke,ne,oe,se,ae,le,Jt,Qt,Ut,Xt,te,pe,Me,Be,Ae,Le,He,qe];let ze=[];function Ke(t,e=""){let n;$e.length||($e=Ye("jet.fb.filters",[...We]));for(let e of $e){const r=e;if(e=new r,t===e.getSlug()){e.isCoreFilter=We.includes(r),n=e;break}}n&&(e=e.split(",").map((t=>t.trim())),n.setProps(e),ze.push(n))}const Ue=function(t){if(null===t||!t?.length)return null;for(const e of t){const t=e.match(/^(\w+)\(([^()]+)\)/);null!==t?Ke(t[1],t[2]):Ke(e)}const e=[...ze];return ze=[],e};function Ge(){}Ge.prototype={getId(){throw new Error("You need to rewrite this method")},getResult(){throw new Error("You need to rewrite this method")}};const Xe=Ge;function Ze(){Xe.call(this),this.getId=()=>"CurrentDate",this.getResult=()=>(new Date).getTime()}Ze.prototype=Object.create(Xe.prototype);const tn=Ze,en={Milli_In_Sec:1e3,Sec_In_Min:60,Min_In_Hour:60,Hour_In_Day:24,Day_In_Month:30,Year_In_Day:365,Kb_In_Bytes:1024};en.Min_In_Sec=en.Sec_In_Min*en.Milli_In_Sec,en.Hour_In_Sec=en.Min_In_Hour*en.Min_In_Sec,en.Day_In_Sec=en.Hour_In_Day*en.Hour_In_Sec,en.Month_In_Sec=en.Day_In_Month*en.Day_In_Sec,en.Year_In_Sec=en.Year_In_Day*en.Day_In_Sec,en.Mb_In_Bytes=1024*en.Kb_In_Bytes,en.Gb_In_Bytes=1024*en.Mb_In_Bytes,en.Tb_In_Bytes=1024*en.Gb_In_Bytes;const nn=en;function rn(){Xe.call(this),this.getId=()=>"Min_In_Sec",this.getResult=()=>nn.Min_In_Sec}rn.prototype=Object.create(Xe.prototype);const on=rn;function sn(){Xe.call(this),this.getId=()=>"Month_In_Sec",this.getResult=()=>nn.Month_In_Sec}sn.prototype=Object.create(Xe.prototype);const un=sn;function an(){Xe.call(this),this.getId=()=>"Hour_In_Sec",this.getResult=()=>nn.Hour_In_Sec}an.prototype=Object.create(Xe.prototype);const cn=an;function ln(){Xe.call(this),this.getId=()=>"Day_In_Sec",this.getResult=()=>nn.Day_In_Sec}ln.prototype=Object.create(Xe.prototype);const hn=ln;function pn(){Xe.call(this),this.getId=()=>"Year_In_Sec",this.getResult=()=>nn.Year_In_Sec}pn.prototype=Object.create(Xe.prototype);const fn=pn,{applyFilters:dn}=JetPlugins.hooks;let mn=[];const gn=window.wp.i18n,{applyFilters:yn,addFilter:bn}=JetPlugins.hooks;function vn(t){if(!t)return"";if("SELECT"===t.tagName)return Array.from(t.selectedOptions||[]).map((t=>String(t.label||t.textContent||t.value||"").trim())).filter(Boolean).join(", ");if(("checkbox"===t.type||"radio"===t.type)&&!t.checked)return"";if("checkbox"===t.type||"radio"===t.type){const e=t.closest("label");if(!e)return"";const n=e.querySelector("span");return String(n?.textContent||e.textContent||t.value||"").trim()}return""}function wn(t,e={}){var n;this.parts=[],this.related=[],this.relatedAttrs=[],this.regexp=/%([\w\-].*?\S?)%/g,this.watchers=[];const{forceFunction:r=!1}=e;this.forceFunction=r,t instanceof ct&&(this.input=t),this.root=null!==(n=this.input?.root)&&void 0!==n?n:t}bn("jet.fb.custom.formula.macro","jet-form-builder",(function(t,e){if(!e.includes("CT::"))return t;const n=function(t){mn.length||(mn=dn("jet.fb.static.functions",[tn,on,un,cn,hn,fn]));for(const e of mn){const n=new e;if(n.getId()===t)return n}return!1}(e=e.replace("CT::",""));return!1===n?t:n.getResult()})),wn.prototype={formula:null,parts:[],related:[],relatedAttrs:[],input:null,root:null,regexp:null,forceFunction:!1,setResult:()=>{throw new Error("CalculatedFormula.setResult is not set!")},relatedCallback:t=>t.value.current,relatedLabelCallback:t=>function(t){const e=Array.from(t.nodes||[]).map(vn).filter(Boolean);return e.length?e.join(", "):t.value.current}(t),observe(t){this.formula=t,Array.isArray(t)?t.forEach((t=>{this.observeItem(t)})):this.observeItem(t)},observeItem(t){let e,n=0;for(t+="";null!==(e=this.regexp.exec(t));){const r=this.observeMacro(e[1]);0!==e.index&&this.parts.push(t.slice(n,e.index)),n=e.index+e[0].length,!1===r?this.onMissingPart(e[0]):this.parts.push(r)}n!==t.length&&(this.parts.push(t.slice(n)),1===this.parts.length&&(this.parts=[]))},onMissingPart(t){this.parts.push(t)},isFieldNodeExists(t){if(void 0===this.root.dataInputs[t])return!1;let e=this.root.rootNode[t]||this.root.rootNode[t+"[]"]||this.root.rootNode.querySelectorAll('[data-field-name="'+t+'"]');if(e&&0===e.length&&(e=void 0),void 0===e){const n=t.replace(/([\\^$*+?.()|{}\[\]])/g,"\\$1"),r=`[name$="[${n}]"],[name$="[${n}][]"],[name*="[${n}]["]`,o=this.root.rootNode.querySelectorAll(r);o&&o.length&&(e=o)}return e=yn("jet.fb.formula.node.exists",e,t,this),e},observeMacro(t){null===this.formula&&(this.formula=t);const[e,...n]=t.split("|"),r=e.match(/[\w\-:]+/g);if(!r)return!1;let[o,...i]=r;if(e.includes("::")){const[t,...n]=e.split("::");this.root.getInput(t)&&(o=t,i=n)}if(void 0===this.isFieldNodeExists(o)){const t=new RegExp(`%${o}%`,"g");let e,n=0,r=this.formula;for(;null!==(e=t.exec(this.formula));){const t=this.formula[e.index-1],r=this.formula[e.index+e[0].length];if("*"===t||"/"===t||"*"===r||"/"===r){n="/"===t||"*"===t&&"*"===r?1:0;break}n=0;break}return r=r.replace(e[0],n),this.formula=r,n}const s="this"!==o?this.root.getInput(o):this.input;if(!s&&!o.includes("::"))return!1;const u=Ue(n);if(o.includes("::")){const t=yn("jet.fb.custom.formula.macro",!1,o,i,this);return!1!==t&&("function"==typeof t?()=>Dt(t(),u):Dt(t,u))}if(this.related.includes(s.name)||(this.related.push(s.name),this.watchers.push(s.watch((()=>this.setResult())))),!i?.length)return()=>Dt(this.relatedCallback(s),u);const[a]=i;if("label"===a)return()=>Dt(this.relatedLabelCallback(s),u);if(!s.attrs.hasOwnProperty(a))return!1;const c=s.attrs[a];return this.relatedAttrs.includes(s.name+a)||(this.relatedAttrs.push(s.name+a),this.watchers.push(c.value.watch((()=>this.setResult())))),()=>Dt(c.value.current,u)},calculateString(){var t;if(!this.parts.length)return this.formula;const{applyFilters:e=!1}=null!==(t=window?.JetFormBuilderMain?.filters)&&void 0!==t?t:{};return this.parts.map((t=>{if("function"!=typeof t)return this.input?.nodes&&!1!==e&&"string"==typeof t?(t=yn("jet.fb.onCalculate.part",t,this),e("forms/calculated-formula-before-value",t,jQuery(this.input.nodes[0]))):t;const n=t();return null===n||""===n||Number.isNaN(n)?this.emptyValue():n})).join("")},emptyValue:()=>"",calculate(){if(!this.parts.length&&!this.forceFunction)return this.formula;const t=function(t){if("string"!=typeof t)return t;let e="",n=!1,r="code",o=0;for(let i=0;i"function"==typeof t&&t())),this.watchers=[],this.relatedAttrs=[],this.related=[]},showError(t){console.group((0,gn.__)("JetFormBuilder: You have invalid calculated formula","jet-form-builder")),this.showErrorDetails(t),console.groupEnd()},showErrorDetails(t){if(console.error((0,gn.sprintf)((0,gn.__)("Initial: %s","jet-form-builder"),this.formula)),console.error((0,gn.sprintf)((0,gn.__)("Computed: %s","jet-form-builder"),t)),!this.input&&!this.root?.parent)return;if(this.input)return void console.error((0,gn.sprintf)((0,gn.__)("Field: %s","jet-form-builder"),this.input.path.join(".")));const e=this.root.parent.findIndex(this.root);console.error((0,gn.sprintf)((0,gn.__)("Scope: %s","jet-form-builder"),[...this.root.parent.path,-1===e?"":e].filter(Boolean).join(".")))}};const Sn=wn,{applyFilters:jn}=JetPlugins.hooks;function Nn(t){if(!t)return"";if("SELECT"===t.tagName)return Array.from(t.selectedOptions||[]).map((t=>String(t.label||t.textContent||t.value||"").trim())).filter(Boolean).join(", ");if(("checkbox"===t.type||"radio"===t.type)&&!t.checked)return"";if("checkbox"===t.type||"radio"===t.type){const e=t.closest("label");if(!e)return"";const n=e.querySelector("span");return String(n?.textContent||e.textContent||t.value||"").trim()}return""}function _n(t,{withPrefix:e=!0,macroHost:n=!1,macroFormat:r="",...o}={}){Sn.call(this,t,o),e&&(this.regexp=/JFB_FIELD::(.+)/gi),this.macroHost=n||!1,this.macroFormat=r||"",this.relatedCallback=function(t){const e=jQuery(t.nodes[0]),n=!!this.macroHost&&jQuery(this.macroHost);let r=jn("jet.fb.macro.field.value",!1,e,n,this.macroFormat);return r=wp?.hooks?.applyFilters?wp.hooks.applyFilters("jet.fb.macro.field.value",r,e,n,this.macroFormat):r,!1!==r?r:"option-label"===this.macroFormat&&function(t){return Array.from(t.nodes||[]).map(Nn).filter(Boolean).join(", ")}(t)||t.value.current}.bind(this),this.onMissingPart=function(){}}_n.prototype=Object.create(Sn.prototype),_n.prototype.observeMacro=function(t){null===this.formula&&(this.formula=t);const[e,...n]=t.split("|"),r=e.match(/[\w\-:]+/g);if(!r)return!1;const[o,...i]=r;if(void 0===this.isFieldNodeExists(o))return!1;const s="this"!==o?this.root.getInput(o):this.input;if(!s&&!o.includes("::"))return!1;const u=Ue(n);if(o.includes("::"))return Sn.prototype.observeMacro.call(this,t);if(this.related.includes(s.name)||(this.related.push(s.name),this.watchers.push(s.watch((()=>this.setResult())))),!i?.length)return()=>{if("repeater"===s.inputType&&u?.length){const t=this.relatedCallback(s);return s.reQueryValue?.(),Dt(t,u,{rawRepeaterValue:s.value.current})}return Dt(this.relatedCallback(s),u)};const[a]=i;if(!s.attrs.hasOwnProperty(a))return!1;const c=s.attrs[a];return this.relatedAttrs.includes(s.name+a)||(this.relatedAttrs.push(s.name+a),this.watchers.push(c.value.watch((()=>this.setResult())))),()=>Dt(c.value.current,u)},_n.prototype.calculateString=function(){return this.parts.length?this.parts.map((t=>{if("function"!=typeof t)return t;const e=t();return null===e||""===e?"":e})).join(""):this.formula};const In=_n,{__:Fn,sprintf:On}=wp.i18n,kn=function(t,e){if(t.jfbObserved)return;const n=new In(e);if(n.observe(t.textContent),!n.parts?.length)return console.group(Fn("JetFormBuilder: You have invalid html macro","jet-form-builder")),console.error(On(Fn("Content: %s","jet-form-builder"),t.textContent)),console.groupEnd(),void n.clearWatchers();const r=document.createElement("span"),o=t.parentNode.insertBefore(r,t);n.setResult=()=>{o.innerHTML=n.calculateString()},n.setResult(),t.jfbObserved=!0},Cn=function(t,e,n){var r;const o=null!==(r=t[e])&&void 0!==r?r:"";if("string"!=typeof o)return null;const i=new In(n);i.observe(o),i.setResult=()=>{t[e]=i.calculateString()},i.setResult()},Rn=function(t,e){t.__jfbMacroTemplate||(t.__jfbMacroTemplate=t.innerHTML);const n=new In(e,{withPrefix:!1,macroHost:t,macroFormat:t.dataset.jfbMacroFormat||""});if(n.observe(`%${t.dataset.jfbMacro}%`),!n.parts?.length)return console.group((0,gn.__)("JetFormBuilder: You have invalid html macro","jet-form-builder")),console.error((0,gn.sprintf)((0,gn.__)("Content: %s","jet-form-builder"),t.dataset.jfbMacro)),console.groupEnd(),void n.clearWatchers();t.dataset.jfbObserved=1,n.setResult=()=>{let e=String(n.calculateString());const r=t.querySelector?.("textarea");r&&(e=e.replace(/\r\n|\r|\n/g,"
")),t.innerHTML=e},n.setResult()};function En(t){this.root=t,this.reportedFirst=!1,this.silence=!0}En.prototype={reset(t={}){var e;this.reportedFirst=!1,this.setSilence(null===(e=t?.silence)||void 0===e||e)},reportFirst(){this.reportedFirst=!0},setSilence(t){this.silence=!!t}};const Pn=En,{doAction:Tn}=JetPlugins.hooks;function Mn(t=null){this.parent=t,this.dataInputs={},this.form=null,this.multistep=null,this.rootNode=null,this.isObserved=!1,this.context=this.parent?null:new Pn(this)}Mn.prototype={parent:null,dataInputs:{},form:null,multistep:null,rootNode:null,isObserved:!1,value:null,observe(t=null){this.isObserved||(null!==t&&(this.rootNode=t),this.isObserved=!0,Tn("jet.fb.observe.before",this),this.initSubmitHandler(),this.initFields(),this.makeReactiveProxy(),this.initMacros(),this.initActionButtons(),this.initValue(),Tn("jet.fb.observe.after",this))},initFields(){for(const t of this.rootNode.querySelectorAll("[data-jfb-sync]"))this.pushInput(t)},initMacros(){for(const t of Bt(this.rootNode))kn(t,this);const t=Mt(this.rootNode,"JFB_FIELD::"),{replaceAttrs:e=[]}=window.JetFormBuilderSettings;for(const n of t)for(const t of e)Cn(n,t,this);const n=this.rootNode.querySelectorAll("[data-jfb-macro]:not([data-jfb-observed])");for(const t of n)Rn(t,this)},initSubmitHandler(){this.parent||(this.form=new Tt(this))},initActionButtons(){if(!this.parent)for(const t of this.rootNode.querySelectorAll(".jet-form-builder__button-switch-state")){let e;try{e=JSON.parse(t.dataset.switchOn)}catch(t){continue}t.addEventListener("click",(()=>{this.getState().value.current=e}))}},async inputsAreValid(){const t=await st(It(this.getInputs()));return Boolean(t.length)?Promise.reject(t):Promise.resolve()},watch(t,e){const n=this.getInput(t);if(n)return n.watch(e);throw new Error(`dataInputs in Observable don't have ${t} field`)},observeInput(t,e=!1){const n=this.pushInput(t,e);n.makeReactive(),Tn("jet.fb.observe.input.manual",n)},makeReactiveProxy(){for(const t of this.getInputs())t.makeReactive()},pushInput(t,e=!1){var n;if(!this.parent&&t.parentElement.closest(".jet-form-builder-repeater"))return;const r=function(t,e){Nt.length||(Nt=St("jet.fb.inputs",[wt,ft,ht,mt]));for(const n of Nt){const r=new n;if(r.isSupported(t))return r.setRoot(e),r.setNode(t),g(r),jt("jet.fb.input.created",r),r}throw new Error("Something went wrong")}(t,this),o=null!==(n=this.dataInputs[r.getName()])&&void 0!==n&&n;return!1===o||e?(this.dataInputs[r.getName()]=r,r):(o.merge(r),o)},getInputs(){return Object.values(this.dataInputs)},getState(){return this.getInput("_jfb_current_render_states")},getInput(t){var e;if(this.dataInputs.hasOwnProperty(t))return this.dataInputs[t];const n=null!==(e=this.parent?.root)&&void 0!==e?e:null;return n&&n.dataInputs.hasOwnProperty(t)?n.dataInputs[t]:null},getSubmit(){return this.form?this.form:this.parent.root.form},getContext(){var t;return null!==(t=this.context)&&void 0!==t?t:this.parent.root.context},remove(){for(const t of this.getInputs())t.onRemove()},reQueryValues(){for(const t of this.getInputs())t.reQueryValue()},initValue(){this.value=new _({}),this.value.watch((()=>{const t=Object.entries(this.value.current);for(const[e,n]of t)this.getInput(e).revertValue(n)}));for(const t of this.getInputs())t.watch((()=>{this.value.current[t.getName()]=t.getValue()}));this.value.make()}};const xn=Mn;var Bn;window.JetFormBuilder=null!==(Bn=window.JetFormBuilder)&&void 0!==Bn?Bn:{};const Dn=function(t){const e=t[0].querySelector("form.jet-form-builder");if(!e)return;const n=new xn;window.JetFormBuilder[e.dataset.formId]=n,jQuery(document).trigger("jet-form-builder/init",[t,n]),n.observe(e),jQuery(document).trigger("jet-form-builder/after-init",[t,n])};var An,Vn,Ln,Jn,Hn;window.JetFormBuilderAbstract={...null!==(An=window.JetFormBuilderAbstract)&&void 0!==An?An:{},Filter:Vt,CalculatedFormula:Sn,BaseInternalMacro:Xe},window.JetFormBuilderFunctions={...null!==(Vn=window.JetFormBuilderFunctions)&&void 0!==Vn?Vn:{},getFilters:Ue,applyFilters:Dt,toDate:Yt,toDateTime:Wt,toTime:$t,getTimestamp:zt},window.JetFormBuilderConst={...null!==(Ln=window.JetFormBuilderConst)&&void 0!==Ln?Ln:{},...nn},window.JetFormBuilderAbstract={...null!==(Jn=window.JetFormBuilderAbstract)&&void 0!==Jn?Jn:{},InputData:ct,BaseSignal:P,ReactiveVar:_,ReactiveHook:k,LoadingReactiveVar:F,Observable:xn,ReportingInterface:$,Restriction:U,RestrictionError:q,BaseHtmlAttr:e,ReactiveSet:yt,RequiredRestriction:tt},window.JetFormBuilderFunctions={...null!==(Hn=window.JetFormBuilderFunctions)&&void 0!==Hn?Hn:{},allRejected:f,getLanguage:function(){const t=window?.navigator?.languages?.length?window.navigator.languages[0]:window?.navigator?.language;return null!=t?t:"en-US"},toHTML:function(t){const e=document.createElement("template");return e.innerHTML=t.trim(),e.content},validateInputs:function(t,e=!1){return Promise.all(it(t,e).map((t=>new Promise(t))))},validateInputsAll:st,getParsedName:_t,isEmpty:y,getValidateCallbacks:it,getOffsetTop:v,focusOnInvalidInput:j,populateInputs:It,isVisible:b,queryByAttrValue:Mt,iterateComments:xt,observeMacroAttr:Cn,observeComment:kn,iterateJfbComments:Bt,getScrollParent:S,isUA:function(t){return h?.[t]}},document.addEventListener("DOMContentLoaded",(function(){for(const[t,e]of Object.entries(h))e&&document.body.classList.add(`jet--ua-${t}`)})),jQuery((()=>JetPlugins.init())),JetPlugins.bulkBlocksInit([{block:"jet-forms.form-block",callback:Dn,condition:()=>"loading"!==document.readyState}]),jQuery(window).on("elementor/frontend/init",(function(){if(!window.elementorFrontend)return;const t={"jet-engine-booking-form.default":Dn,"jet-form-builder-form.default":Dn};jQuery.each(t,(function(t,e){window.elementorFrontend.hooks.addAction("frontend/element_ready/"+t,e)}))})),addEventListener("load",(()=>{const t=Object.values(window.JetFormBuilder);for(const e of t)e instanceof xn&&e.reQueryValues()}))})(); \ No newline at end of file diff --git a/assets/build/frontend/media.field.asset.php b/assets/build/frontend/media.field.asset.php index 35968b0d2..f36a65a32 100644 --- a/assets/build/frontend/media.field.asset.php +++ b/assets/build/frontend/media.field.asset.php @@ -1 +1 @@ - array(), 'version' => '28178af33faa443b8680'); + array(), 'version' => '30c843e4babb74fe5b01'); diff --git a/assets/build/frontend/media.field.js b/assets/build/frontend/media.field.js index 1df2f1579..5d758e53d 100644 --- a/assets/build/frontend/media.field.js +++ b/assets/build/frontend/media.field.js @@ -1 +1 @@ -(()=>{"use strict";function t(t){const e=new DataTransfer;for(const n of t)e.items.add(n);return e.files}function e(t){return!!t.classList.contains("jet-form-builder-file-upload__input")&&"file"===t.type}const{InputData:n}=window.JetFormBuilderAbstract;function i(){n.call(this),this.isMultiple=!1,this.prevFiles=null,this.template=null,this.previewsContainer=null,this.wrapper=null,this.isSupported=function(t){return e(t)},this.addListeners=function(){const[e]=this.nodes;e.addEventListener("change",e=>{var n;this.value.current=t(this.isMultiple?[...null!==(n=this.prevFiles)&&void 0!==n?n:[],...e.target.files]:[...e.target.files])})},this.setNode=function(t){n.prototype.setNode.call(this,t),this.isMultiple=t.multiple,this.wrapper=t.closest(".jet-form-builder-file-upload"),this.previewsContainer=this.wrapper.querySelector(".jet-form-builder-file-upload__files"),this.template=this.wrapper.closest(".field-type-media-field").querySelector(".jet-form-builder__preview-template")},this.setValue=function(){this.callable.loadFiles()},this.initNotifyValue=()=>{},this.reQueryValue=()=>{}}i.prototype=Object.create(n.prototype),i.prototype.wrapper=null,i.prototype.previewsContainer=null,i.prototype.template=null;const r=i,{BaseSignal:l}=window.JetFormBuilderAbstract;function o(){l.call(this),this.lock.current=!0,this.isSupported=function(t){return e(t)},this.runSignal=function(){const[e]=this.input.nodes,n=[],{current:i}=this.input.value,r=a(null!=i?i:[]);for(const t of r)n.push(this.getPreview(t));!function(t,e){const n=t.querySelectorAll(".jet-form-builder-file-upload__file");for(const t of n)e.some(e=>e.isEqualNode(t))||t.remove();for(const n in e){if(!e.hasOwnProperty(n))continue;const i=e[n];i.isConnected||t.appendChild(i)}}(this.input.previewsContainer,n),e.files=t(r),this.input.prevFiles=r,this.sortable()}}o.prototype=Object.create(l.prototype),o.prototype.loadFiles=function(){const e=this.input.previewsContainer.querySelectorAll(".jet-form-builder-file-upload__file"),n=[];for(const t of e){this.addRemoveHandler(t);const e=t.dataset.file,i=t.querySelector(".jet-form-builder-file-upload__file-remove"),{fileName:r}=i.dataset;n.push([e,r])}n.length?Promise.allSettled(n.map(([t,e])=>new Promise((n,i)=>{fetch(t).then(t=>t.blob()).then(t=>n(function(t,e){return new File([t],e,t)}(t,e))).catch(i)}))).then(e=>{const n=a(e.map(({value:t})=>t));this.lock.current=!1,this.input.silenceSet(t(n))}).catch(()=>{this.lock.current=!1}):this.lock.current=!1},o.prototype.sortable=function(){jQuery(this.input.previewsContainer).unbind(),jQuery(this.input.previewsContainer).sortable({items:".jet-form-builder-file-upload__file",forcePlaceholderSize:!0}).bind("sortupdate",()=>this.onSortCallback())},o.prototype.onSortCallback=function(){const t=new DataTransfer,[e]=this.input.nodes,n=this.input.previewsContainer.querySelectorAll(".jet-form-builder-file-upload__file-remove");for(const i of n){const{fileName:n}=i.dataset;for(const i of e.files)i.name===n&&t.items.add(i)}this.input.value.current=t.files},o.prototype.addRemoveHandler=function(t){t.querySelector(".jet-form-builder-file-upload__file-remove").addEventListener("click",this.removeFile.bind(this))},o.prototype.getPreview=function(t){const e=this.input.previewsContainer.querySelector(`[data-file-name="${t.name}"]`);if(!e){const e=this.createPreview(t);return this.addRemoveHandler(e),e}return e.closest(".jet-form-builder-file-upload__file")},o.prototype.createPreview=function(t){const e=URL.createObjectURL(t);let{innerHTML:n}=this.input.template;n=n.replace("%file_url%",e),n=n.replace("%file_name%",t.name);const i=document.createElement("template");i.innerHTML=n;const r=i.content.firstChild;if(/^image\//.test(t.type)){const n=document.createElement("img");n.src=e,n.alt=t.name,r.prepend(n)}return r},o.prototype.removeFile=function({target:t}){const e=".jet-form-builder-file-upload__file-remove",{value:n}=this.input;t.matches(e)||(t=t.closest(e));const{fileName:i}=t.dataset,r=new DataTransfer;for(const t of n.current)i!==t.name&&r.items.add(t);n.current=r.files},o.prototype.getFileNode=function(t){const e=`data-file-name="${t}"`;return this.input.previewsContainer.querySelector(`.jet-form-builder-file-upload__file-remove[${e}]`).closest(".jet-form-builder-file-upload__file")};const s=o;function a(t){const e=new Set,n=[];for(const i of function(t){return t?Array.isArray(t)?t:"function"==typeof t[Symbol.iterator]?Array.from(t):"object"==typeof t?Object.values(t):[]:[]}(t))i?.name&&(e.has(i.name)||(e.add(i.name),n.push(i)));return n}function u(t){return String(null!=t?t:"").replaceAll("&","&").replaceAll("<","<").replaceAll(">",">").replaceAll('"',""").replaceAll("'","'")}function c(t){const e=t.closest(".field-type-media-field");if(!e)return"";const n=e.querySelectorAll(".jet-form-builder-file-upload__file");if(!n.length)return"";const i=[];return n.forEach(t=>{var e,n;const r=String(null!==(e=t.dataset?.file)&&void 0!==e?e:"").trim(),l=t.querySelector(".jet-form-builder-file-upload__file-remove"),o=String(null!==(n=l?.dataset?.fileName)&&void 0!==n?n:"").trim();t.querySelector("img")&&r?i.push(function(t,e=""){const n=e||"Image";return`\n\t\t
  • \n\t\t\t
    \n\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t\t${u(n)}\n\t\t\t\t
    \n\t\t\t
    \n\t\t
  • \n\t`}(r,o)):(o||r)&&i.push(function(t,e=""){const n=e||t||"File";return t?`\n\t\t\t
  • \n\t\t\t\t\n\t\t\t\t\t📄 ${u(n)}\n\t\t\t\t\n\t\t\t
  • \n\t\t`:`\n\t\t
  • \n\t\t\t📄 ${u(n)}\n\t\t
  • \n\t`}(r,o))}),function(t){return t.length?`\n\t\t
    \n\t\t\t
      \n\t\t\t\t${t.join("")}\n\t\t\t
    \n\t\t
    \n\t`:""}(i)}function f(t){t.dispatchEvent(new Event("input",{bubbles:!0})),t.dispatchEvent(new Event("change",{bubbles:!0}))}function d(t,e){const n=e?.[0]||e;return function(t){return!!t&&!!t.closest(".field-type-media-field")}(n)?(function(t){if(!t||t.__jfbMediaRemoveBound)return;const e=t.closest(".field-type-media-field");e&&(t.__jfbMediaRemoveBound=!0,e.addEventListener("click",e=>{e.target.closest(".jet-form-builder-file-upload__file-remove")&&setTimeout(()=>{f(t)},0)}))}(n),function(t){if(!t)return;const e=function(t){const e=t.closest(".field-type-media-field");return e?e.querySelector(".jet-form-builder-file-upload__files")||e.querySelector(".jet-form-builder-file-upload")||e:null}(t);if(!e)return;t.__jfbMediaMacrosObserver&&(t.__jfbMediaMacrosObserver.disconnect(),t.__jfbMediaMacrosObserver=null);const n=c(t),i=new MutationObserver(()=>{c(t)!==n&&(i.disconnect(),t.__jfbMediaMacrosObserver=null,f(t))});t.__jfbMediaMacrosObserver=i,i.observe(e,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["data-file","src"]}),setTimeout(()=>{t.__jfbMediaMacrosObserver===i&&(i.disconnect(),t.__jfbMediaMacrosObserver=null,c(t)!==n&&f(t))},300)}(n),c(n)):t}const{addFilter:p}=JetPlugins.hooks;p("jet.fb.inputs","jet-form-builder/media-field",function(t){return[r,...t]}),p("jet.fb.signals","jet-form-builder/media-field",function(t){return[s,...t]}),p("jet.fb.macro.field.value","jet-form-builder/media-field",d),p("jet.fb.macro.inside.repeater.field.value","jet-form-builder/media-field",d)})(); \ No newline at end of file +(()=>{"use strict";function t(t){const e=new DataTransfer;for(const n of t)e.items.add(n);return e.files}function e(t){return!!t.classList.contains("jet-form-builder-file-upload__input")&&"file"===t.type}const{InputData:n}=window.JetFormBuilderAbstract;function i(){n.call(this),this.isMultiple=!1,this.prevFiles=null,this.template=null,this.previewsContainer=null,this.wrapper=null,this.isSupported=function(t){return e(t)},this.addListeners=function(){const[e]=this.nodes;e.addEventListener("change",(e=>{var n;this.value.current=t(this.isMultiple?[...null!==(n=this.prevFiles)&&void 0!==n?n:[],...e.target.files]:[...e.target.files])}))},this.setNode=function(t){n.prototype.setNode.call(this,t),this.isMultiple=t.multiple,this.wrapper=t.closest(".jet-form-builder-file-upload"),this.previewsContainer=this.wrapper.querySelector(".jet-form-builder-file-upload__files"),this.template=this.wrapper.closest(".field-type-media-field").querySelector(".jet-form-builder__preview-template")},this.setValue=function(){this.callable.loadFiles()},this.initNotifyValue=()=>{},this.reQueryValue=()=>{}}i.prototype=Object.create(n.prototype),i.prototype.wrapper=null,i.prototype.previewsContainer=null,i.prototype.template=null;const r=i,{BaseSignal:l}=window.JetFormBuilderAbstract;function o(){l.call(this),this.lock.current=!0,this.isSupported=function(t){return e(t)},this.runSignal=function(){const[e]=this.input.nodes,n=[],{current:i}=this.input.value,r=a(null!=i?i:[]);for(const t of r)n.push(this.getPreview(t));!function(t,e){const n=t.querySelectorAll(".jet-form-builder-file-upload__file");for(const t of n)e.some((e=>e.isEqualNode(t)))||t.remove();for(const n in e){if(!e.hasOwnProperty(n))continue;const i=e[n];i.isConnected||t.appendChild(i)}}(this.input.previewsContainer,n),e.files=t(r),this.input.prevFiles=r,this.sortable()}}o.prototype=Object.create(l.prototype),o.prototype.loadFiles=function(){const e=this.input.previewsContainer.querySelectorAll(".jet-form-builder-file-upload__file"),n=[];for(const t of e){this.addRemoveHandler(t);const e=t.dataset.file,i=t.querySelector(".jet-form-builder-file-upload__file-remove"),{fileName:r}=i.dataset;n.push([e,r])}n.length?Promise.allSettled(n.map((([t,e])=>new Promise(((n,i)=>{fetch(t).then((t=>t.blob())).then((t=>n(function(t,e){return new File([t],e,t)}(t,e)))).catch(i)}))))).then((e=>{const n=a(e.map((({value:t})=>t)));this.lock.current=!1,this.input.silenceSet(t(n))})).catch((()=>{this.lock.current=!1})):this.lock.current=!1},o.prototype.sortable=function(){jQuery(this.input.previewsContainer).unbind(),jQuery(this.input.previewsContainer).sortable({items:".jet-form-builder-file-upload__file",forcePlaceholderSize:!0}).bind("sortupdate",(()=>this.onSortCallback()))},o.prototype.onSortCallback=function(){const t=new DataTransfer,[e]=this.input.nodes,n=this.input.previewsContainer.querySelectorAll(".jet-form-builder-file-upload__file-remove");for(const i of n){const{fileName:n}=i.dataset;for(const i of e.files)i.name===n&&t.items.add(i)}this.input.value.current=t.files},o.prototype.addRemoveHandler=function(t){t.querySelector(".jet-form-builder-file-upload__file-remove").addEventListener("click",this.removeFile.bind(this))},o.prototype.getPreview=function(t){const e=this.input.previewsContainer.querySelector(`[data-file-name="${t.name}"]`);if(!e){const e=this.createPreview(t);return this.addRemoveHandler(e),e}return e.closest(".jet-form-builder-file-upload__file")},o.prototype.createPreview=function(t){const e=URL.createObjectURL(t);let{innerHTML:n}=this.input.template;n=n.replace("%file_url%",e),n=n.replace("%file_name%",t.name);const i=document.createElement("template");i.innerHTML=n;const r=i.content.firstChild;if(/^image\//.test(t.type)){const n=document.createElement("img");n.src=e,n.alt=t.name,r.prepend(n)}return r},o.prototype.removeFile=function({target:t}){const e=".jet-form-builder-file-upload__file-remove",{value:n}=this.input;t.matches(e)||(t=t.closest(e));const{fileName:i}=t.dataset,r=new DataTransfer;for(const t of n.current)i!==t.name&&r.items.add(t);n.current=r.files},o.prototype.getFileNode=function(t){const e=`data-file-name="${t}"`;return this.input.previewsContainer.querySelector(`.jet-form-builder-file-upload__file-remove[${e}]`).closest(".jet-form-builder-file-upload__file")};const s=o;function a(t){const e=new Set,n=[];for(const i of function(t){return t?Array.isArray(t)?t:"function"==typeof t[Symbol.iterator]?Array.from(t):"object"==typeof t?Object.values(t):[]:[]}(t))i?.name&&(e.has(i.name)||(e.add(i.name),n.push(i)));return n}function u(t){return String(null!=t?t:"").replaceAll("&","&").replaceAll("<","<").replaceAll(">",">").replaceAll('"',""").replaceAll("'","'")}function c(t){const e=t.closest(".field-type-media-field");if(!e)return"";const n=e.querySelectorAll(".jet-form-builder-file-upload__file");if(!n.length)return"";const i=[];return n.forEach((t=>{var e,n;const r=String(null!==(e=t.dataset?.file)&&void 0!==e?e:"").trim(),l=t.querySelector(".jet-form-builder-file-upload__file-remove"),o=String(null!==(n=l?.dataset?.fileName)&&void 0!==n?n:"").trim();t.querySelector("img")&&r?i.push(function(t,e=""){const n=e||"Image";return`\n\t\t
  • \n\t\t\t
    \n\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t\t${u(n)}\n\t\t\t\t
    \n\t\t\t
    \n\t\t
  • \n\t`}(r,o)):(o||r)&&i.push(function(t,e=""){const n=e||t||"File";return t?`\n\t\t\t
  • \n\t\t\t\t\n\t\t\t\t\t📄 ${u(n)}\n\t\t\t\t\n\t\t\t
  • \n\t\t`:`\n\t\t
  • \n\t\t\t📄 ${u(n)}\n\t\t
  • \n\t`}(r,o))})),function(t){return t.length?`\n\t\t
    \n\t\t\t
      \n\t\t\t\t${t.join("")}\n\t\t\t
    \n\t\t
    \n\t`:""}(i)}function f(t){t.dispatchEvent(new Event("input",{bubbles:!0})),t.dispatchEvent(new Event("change",{bubbles:!0}))}function d(t,e){const n=e?.[0]||e;return function(t){return!!t&&!!t.closest(".field-type-media-field")}(n)?(function(t){if(!t||t.__jfbMediaRemoveBound)return;const e=t.closest(".field-type-media-field");e&&(t.__jfbMediaRemoveBound=!0,e.addEventListener("click",(e=>{e.target.closest(".jet-form-builder-file-upload__file-remove")&&setTimeout((()=>{f(t)}),0)})))}(n),function(t){if(!t)return;const e=function(t){const e=t.closest(".field-type-media-field");return e?e.querySelector(".jet-form-builder-file-upload__files")||e.querySelector(".jet-form-builder-file-upload")||e:null}(t);if(!e)return;t.__jfbMediaMacrosObserver&&(t.__jfbMediaMacrosObserver.disconnect(),t.__jfbMediaMacrosObserver=null);const n=c(t),i=new MutationObserver((()=>{c(t)!==n&&(i.disconnect(),t.__jfbMediaMacrosObserver=null,f(t))}));t.__jfbMediaMacrosObserver=i,i.observe(e,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["data-file","src"]}),setTimeout((()=>{t.__jfbMediaMacrosObserver===i&&(i.disconnect(),t.__jfbMediaMacrosObserver=null,c(t)!==n&&f(t))}),300)}(n),c(n)):t}const{addFilter:p}=JetPlugins.hooks;p("jet.fb.inputs","jet-form-builder/media-field",(function(t){return[r,...t]})),p("jet.fb.signals","jet-form-builder/media-field",(function(t){return[s,...t]})),p("jet.fb.macro.field.value","jet-form-builder/media-field",d),p("jet.fb.macro.inside.repeater.field.value","jet-form-builder/media-field",d)})(); \ No newline at end of file diff --git a/assets/build/frontend/media.field.restrictions.asset.php b/assets/build/frontend/media.field.restrictions.asset.php index b652f2850..0e33301e4 100644 --- a/assets/build/frontend/media.field.restrictions.asset.php +++ b/assets/build/frontend/media.field.restrictions.asset.php @@ -1 +1 @@ - array('wp-i18n'), 'version' => '2fa8b05f10aab57b1eae'); + array('wp-i18n'), 'version' => 'edbabb0dd8297d42715a'); diff --git a/assets/build/frontend/media.field.restrictions.js b/assets/build/frontend/media.field.restrictions.js index 5b26954a1..8601bd0eb 100644 --- a/assets/build/frontend/media.field.restrictions.js +++ b/assets/build/frontend/media.field.restrictions.js @@ -1 +1 @@ -(()=>{"use strict";const{AdvancedRestriction:t}=JetFormBuilderAbstract;function e(){t.call(this),this.watchedAttrs.push("max_files"),this.isSupported=function(t){return"file"===t?.type},this.validate=function(){var t;const{max_files:e}=this.reporting.input.attrs;let{current:i}=this.reporting.input.value;return i=null!==(t=i?.length)&&void 0!==t?t:0,!i||i<=e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("max_files")}}e.prototype=Object.create(t.prototype);const i=e,{AdvancedRestriction:r}=JetFormBuilderAbstract;function n(){r.call(this)}n.prototype=Object.create(r.prototype),n.prototype.file=null,n.prototype.setFile=function(t){this.file=t};const o=n;function s(){o.call(this),this.watchedAttrs.push("max_size"),this.validate=function(){const{max_size:t}=this.reporting.input.attrs;return this.file.size(i,r)=>{e.setFile(t),e.validatePromise().then(i).catch(()=>r(e))});r.push((i,r)=>{Promise.allSettled(e.map(t=>new Promise(t))).then(e=>{const n=e.filter(({status:t})=>"rejected"===t).map(({reason:t,value:e})=>null!=t?t:e);n.length?r({file:t,rejected:n}):i()})})}if(!r?.length)return Promise.resolve();const n=await f(r);for(const t of i){const i=e.getFileNode(t.name).querySelector(".jet-form-builder-file-upload__file-invalid-marker"),[r={}]=n.filter(({file:e})=>e===t);i.style.display=r?.rejected?.length?"block":"none",i.title=r?.rejected?.length?r?.rejected[0].getMessage():""}return Boolean(n.length)?Promise.reject("validate is wrong"):Promise.resolve()};const g=h,m=window.wp.i18n,{Filter:y}=JetFormBuilderAbstract,{Kb_In_Bytes:b,Mb_In_Bytes:_,Gb_In_Bytes:j,Tb_In_Bytes:v}=JetFormBuilderConst,{getLanguage:B}=JetFormBuilderFunctions,F={[(0,m._x)("TB","unit symbol","jet-form-builder")]:v,[(0,m._x)("GB","unit symbol","jet-form-builder")]:j,[(0,m._x)("MB","unit symbol","jet-form-builder")]:_,[(0,m._x)("KB","unit symbol","jet-form-builder")]:b,[(0,m._x)("B","unit symbol","jet-form-builder")]:1},x=B();function w(){y.call(this),this.getSlug=function(){return"sizeFormat"},this.apply=function(t){if(t=+t,Number.isNaN(t)||0===t)return"0 B";for(const[e,i]of Object.entries(F))if(!(t{"use strict";const{AdvancedRestriction:t}=JetFormBuilderAbstract;function e(){t.call(this),this.watchedAttrs.push("max_files"),this.isSupported=function(t){return"file"===t?.type},this.validate=function(){var t;const{max_files:e}=this.reporting.input.attrs;let{current:i}=this.reporting.input.value;return i=null!==(t=i?.length)&&void 0!==t?t:0,!i||i<=e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("max_files")}}e.prototype=Object.create(t.prototype);const i=e,{AdvancedRestriction:r}=JetFormBuilderAbstract;function n(){r.call(this)}n.prototype=Object.create(r.prototype),n.prototype.file=null,n.prototype.setFile=function(t){this.file=t};const o=n;function s(){o.call(this),this.watchedAttrs.push("max_size"),this.validate=function(){const{max_size:t}=this.reporting.input.attrs;return this.file.size(i,r)=>{e.setFile(t),e.validatePromise().then(i).catch((()=>r(e)))}));r.push(((i,r)=>{Promise.allSettled(e.map((t=>new Promise(t)))).then((e=>{const n=e.filter((({status:t})=>"rejected"===t)).map((({reason:t,value:e})=>null!=t?t:e));n.length?r({file:t,rejected:n}):i()}))}))}if(!r?.length)return Promise.resolve();const n=await f(r);for(const t of i){const i=e.getFileNode(t.name).querySelector(".jet-form-builder-file-upload__file-invalid-marker"),[r={}]=n.filter((({file:e})=>e===t));i.style.display=r?.rejected?.length?"block":"none",i.title=r?.rejected?.length?r?.rejected[0].getMessage():""}return Boolean(n.length)?Promise.reject("validate is wrong"):Promise.resolve()};const g=h,m=window.wp.i18n,{Filter:y}=JetFormBuilderAbstract,{Kb_In_Bytes:b,Mb_In_Bytes:_,Gb_In_Bytes:j,Tb_In_Bytes:v}=JetFormBuilderConst,{getLanguage:B}=JetFormBuilderFunctions,F={[(0,m._x)("TB","unit symbol","jet-form-builder")]:v,[(0,m._x)("GB","unit symbol","jet-form-builder")]:j,[(0,m._x)("MB","unit symbol","jet-form-builder")]:_,[(0,m._x)("KB","unit symbol","jet-form-builder")]:b,[(0,m._x)("B","unit symbol","jet-form-builder")]:1},x=B();function w(){y.call(this),this.getSlug=function(){return"sizeFormat"},this.apply=function(t){if(t=+t,Number.isNaN(t)||0===t)return"0 B";for(const[e,i]of Object.entries(F))if(!(t array(), 'version' => '8f1b0776132576e4f360'); + array(), 'version' => 'e83af9d8f1cb783352c9'); diff --git a/assets/build/frontend/multi.step.js b/assets/build/frontend/multi.step.js index bbb7bc009..97068e7e9 100644 --- a/assets/build/frontend/multi.step.js +++ b/assets/build/frontend/multi.step.js @@ -1 +1 @@ -(()=>{"use strict";const{ConditionItem:t}=JetFormBuilderAbstract;function e(){t.call(this),this.isSupported=function(t){return!!t?.page_state?.length},this.setOptions=function({page_state:t}){this.pageState=t},this.isPassed=function(){const t=this.list?.block?.page?.canSwitch?.current;return"active"===this.pageState&&!t}}e.prototype=Object.create(t.prototype);const i=e,{ReactiveVar:s,createConditionalBlock:n}=JetFormBuilderAbstract,{validateInputs:o,getOffsetTop:r,focusOnInvalidInput:a,populateInputs:c}=JetFormBuilderFunctions,{addAction:h,doAction:u}=JetPlugins.hooks;function d(t,e){this.node=t,this.index=+t.dataset.page,this.offset=+t.dataset.pageOffset,this.state=e,this.inputs=[],this.inputBindings=new Map,this.canSwitch=new s(null),this.isShow=new s(1===this.index),this.autoFocus=window.JetFormBuilderSettings?.auto_focus,this.initialObserveState=!1}d.prototype.observe=function(){this.isLast()||this.observeInputs(),this.canSwitch.make(),this.isShow.make(),this.isShow.watch(()=>{this.isShow.current?this.onShow():this.onHide()}),this.addButtonsListeners(),this.isFirst()&&(this.initialObserveState=!0,this.updateStateAsync().then(()=>{}).catch(()=>{})),this.updateOffsetByProgress(),h("jet.fb.observe.input.manual","jet-form-builder/page-state",t=>this.observeInput(t.nodes[0])),u("jet.fb.multistep.page.init",this)},d.prototype.observeInputs=function(){for(const t of this.node.querySelectorAll("[data-jfb-sync]")){const e=this.observeInput(t);e&&u("jet.fb.multistep.page.observed.input",e,this)}},d.prototype.observeInput=function(t){if(!this.isNodeBelongThis(t)||!t.hasOwnProperty("jfbSync")||t.jfbSync.hasParent())return!1;const e=t.jfbSync;return this.registerInput(e)},d.prototype.observeConditionalBlocks=function(){if(!this.isLast())for(const t of this.node.querySelectorAll("[data-jfb-conditional]")){if(!this.isNodeBelongThis(t))continue;const e=n(t,this.state.getRoot());for(const t of e.list.getConditions())if(t instanceof i){e.page=this,this.canSwitch.watch(()=>e.list.onChangeRelated()),e.list.onChangeRelated();break}}},d.prototype.onShow=function(){this.node.classList.remove("jet-form-builder-page--hidden"),this.initialObserveState||(this.initialObserveState=!0,this.updateStateAsync().then(()=>{}).catch(()=>{}))},d.prototype.onHide=function(){this.node.classList.add("jet-form-builder-page--hidden")},d.prototype.updateState=function(){for(const t of this.getInputs())if(!t.reporting.validityState.current&&null!==t.reporting.validityState.current)return void(this.canSwitch.current=!1);this.canSwitch.current=!0},d.prototype.updateStateAsync=async function(t=!0){try{await o(this.getInputs(),t),this.canSwitch.current=!0}catch(t){this.canSwitch.current=!1}},d.prototype.addButtonsListeners=function(){const t=this.node.querySelectorAll(".jet-form-builder__next-page, .jet-form-builder__prev-page");for(const e of t){if(!this.isNodeBelongThis(e))continue;const t=e.classList.contains("jet-form-builder__prev-page");e.addEventListener("click",()=>this.changePage(t))}},d.prototype.changePage=async function(t){t?this.state.index.current=this.index-1:this.isLast()||this.getLockState().current||(await this.updateStateAsync(!1),this.canSwitch.current?this.state.index.current=this.index+1:this.autoFocus&&a(this.getInputs()))},d.prototype.isNodeBelongThis=function(t){const e=t.closest(".jet-form-builder-page");return!!e&&e.isEqualNode(this.node)},d.prototype.getInputs=function(){return c(this.inputs)},d.prototype.getLockState=function(){var t;const e=this.state.getRoot();return(null!==(t=e?.parent?.root?.form)&&void 0!==t?t:e.form).lockState},d.prototype.isLast=function(){return this.state.isLastPage(this)},d.prototype.isFirst=function(){return this.state.isFirstPage(this)},d.prototype.handleInputEnter=function(t){t?.enterKey?.addFilter(()=>{const e=t.root.form;return e?!0===e.canTriggerEnterSubmit&&this.changePage().then(()=>{}).catch(()=>{}):this.changePage().then(()=>{}).catch(()=>{}),!1})},d.prototype.registerInput=function(t,{includeInValidation:e=!0}={}){if(!t||this.inputBindings.has(t))return t;this.handleInputEnter(t);const i={clearLoadingWatch:t.loading.watch(()=>{t.loading.current?this.canSwitch.current=!1:this.updateState()}),clearValidityWatch:null};return t.reporting.restrictions.length&&(this.inputs.push(t),i.clearValidityWatch=t.watchValidity(()=>this.updateState()),e||(this.inputs=this.inputs.filter(e=>e!==t))),this.inputBindings.set(t,i),t},d.prototype.unregisterInput=function(t){if(!this.inputBindings.has(t))return;const e=this.inputBindings.get(t);e?.clearLoadingWatch?.(),e?.clearValidityWatch?.(),this.inputBindings.delete(t),this.inputs=this.inputs.filter(e=>e!==t)},d.prototype.getTrackedInputs=function(){return Array.from(this.inputBindings.keys())},d.prototype.getOffsetTop=function(){return r(this.node)-this.offset},d.prototype.updateOffsetByProgress=function(){this.state?.progress?.node&&(this.offset+=+this.state.progress.node.clientHeight)};const p=d,l=function(t,e){this.node=t,this.state=e,this.state.index.watch(()=>this.updateItems()),this.updateItems=function(){const{current:t}=this.state.index;for(const e of this.node.children){const i=+e.dataset.page;inew p(t,this)),this.elements.forEach(t=>t.observe()),this.elements.forEach(t=>t.observeConditionalBlocks());const{submitter:e}=this.getRoot().getSubmit();e.hasOwnProperty("status")&&e.watchReset(()=>{this.index.current=1})},this.onChangeIndex=function(){for(const t of this.getPages())t.isShow.current=t.index===this.index.current;window?.jQuery(document)?.trigger("jet-form-builder/switch-page")},this.getCurrentPage=function(){for(const t of this.getPages())if(t.isShow.current)return t;return!1},this.getPages=function(){return this.elements},this.getScopeNode=function(){var t;return null!==(t=this.block?.node)&&void 0!==t?t:this.root.rootNode},this.getRoot=function(){var t;return null!==(t=this.block?.root)&&void 0!==t?t:this.root},this.isLastPage=function(t){return this.elements.at(-1)===t},this.isFirstPage=function(t){return this.elements[0]===t},this.onReady=function(){m("jet.fb.multistep.init",this)}};function y(t){const e=new b;e.setScope(t);const i=[];for(const t of e.getScopeNode().childNodes)t?.classList?.contains("jet-form-builder-page")&&i.push(t);return i.length?(e.setProgress(),e.setPages(i),e):e}const{addAction:S,addFilter:w}=JetPlugins.hooks,{getScrollParent:v}=JetFormBuilderFunctions;S("jet.fb.observe.after","jet-form-builder/multi-step",function(t){const e=y(t);e.getPages()?.length&&(t.multistep=e,e.onReady())},15),S("jet.fb.conditional.init","jet-form-builder/multi-step",function(t){const e=y(t);e.getPages()?.length&&(t.multistep=e,e.onReady())}),w("jet.fb.conditional.types","jet-form-builder/multi-step",function(t){return[i,...t]}),S("jet.fb.multistep.init","jet-form-builder/multi-step/autoscroll",function(t){window?.JetFormBuilderSettings?.scroll_on_next&&t.index.watch(()=>{const e=t.getCurrentPage(),i=v(e.node),s=e.getOffsetTop();i?.scrollTo?.({top:s,behavior:"smooth"})})})})(); \ No newline at end of file +(()=>{"use strict";const{ConditionItem:t}=JetFormBuilderAbstract;function e(){t.call(this),this.isSupported=function(t){return!!t?.page_state?.length},this.setOptions=function({page_state:t}){this.pageState=t},this.isPassed=function(){const t=this.list?.block?.page?.canSwitch?.current;return"active"===this.pageState&&!t}}e.prototype=Object.create(t.prototype);const i=e,{ReactiveVar:s,createConditionalBlock:n}=JetFormBuilderAbstract,{validateInputs:o,getOffsetTop:r,focusOnInvalidInput:a,populateInputs:c}=JetFormBuilderFunctions,{addAction:h,doAction:u}=JetPlugins.hooks;function d(t,e){this.node=t,this.index=+t.dataset.page,this.offset=+t.dataset.pageOffset,this.state=e,this.inputs=[],this.inputBindings=new Map,this.canSwitch=new s(null),this.isShow=new s(1===this.index),this.autoFocus=window.JetFormBuilderSettings?.auto_focus,this.initialObserveState=!1}d.prototype.observe=function(){this.isLast()||this.observeInputs(),this.canSwitch.make(),this.isShow.make(),this.isShow.watch((()=>{this.isShow.current?this.onShow():this.onHide()})),this.addButtonsListeners(),this.isFirst()&&(this.initialObserveState=!0,this.updateStateAsync().then((()=>{})).catch((()=>{}))),this.updateOffsetByProgress(),h("jet.fb.observe.input.manual","jet-form-builder/page-state",(t=>this.observeInput(t.nodes[0]))),u("jet.fb.multistep.page.init",this)},d.prototype.observeInputs=function(){for(const t of this.node.querySelectorAll("[data-jfb-sync]")){const e=this.observeInput(t);e&&u("jet.fb.multistep.page.observed.input",e,this)}},d.prototype.observeInput=function(t){if(!this.isNodeBelongThis(t)||!t.hasOwnProperty("jfbSync")||t.jfbSync.hasParent())return!1;const e=t.jfbSync;return this.registerInput(e)},d.prototype.observeConditionalBlocks=function(){if(!this.isLast())for(const t of this.node.querySelectorAll("[data-jfb-conditional]")){if(!this.isNodeBelongThis(t))continue;const e=n(t,this.state.getRoot());for(const t of e.list.getConditions())if(t instanceof i){e.page=this,this.canSwitch.watch((()=>e.list.onChangeRelated())),e.list.onChangeRelated();break}}},d.prototype.onShow=function(){this.node.classList.remove("jet-form-builder-page--hidden"),this.initialObserveState||(this.initialObserveState=!0,this.updateStateAsync().then((()=>{})).catch((()=>{})))},d.prototype.onHide=function(){this.node.classList.add("jet-form-builder-page--hidden")},d.prototype.updateState=function(){for(const t of this.getInputs())if(!t.reporting.validityState.current&&null!==t.reporting.validityState.current)return void(this.canSwitch.current=!1);this.canSwitch.current=!0},d.prototype.updateStateAsync=async function(t=!0){try{await o(this.getInputs(),t),this.canSwitch.current=!0}catch(t){this.canSwitch.current=!1}},d.prototype.addButtonsListeners=function(){const t=this.node.querySelectorAll(".jet-form-builder__next-page, .jet-form-builder__prev-page");for(const e of t){if(!this.isNodeBelongThis(e))continue;const t=e.classList.contains("jet-form-builder__prev-page");e.addEventListener("click",(()=>this.changePage(t)))}},d.prototype.changePage=async function(t){t?this.state.index.current=this.index-1:this.isLast()||this.getLockState().current||(await this.updateStateAsync(!1),this.canSwitch.current?this.state.index.current=this.index+1:this.autoFocus&&a(this.getInputs()))},d.prototype.isNodeBelongThis=function(t){const e=t.closest(".jet-form-builder-page");return!!e&&e.isEqualNode(this.node)},d.prototype.getInputs=function(){return c(this.inputs)},d.prototype.getLockState=function(){var t;const e=this.state.getRoot();return(null!==(t=e?.parent?.root?.form)&&void 0!==t?t:e.form).lockState},d.prototype.isLast=function(){return this.state.isLastPage(this)},d.prototype.isFirst=function(){return this.state.isFirstPage(this)},d.prototype.handleInputEnter=function(t){t?.enterKey?.addFilter((()=>{const e=t.root.form;return e?!0===e.canTriggerEnterSubmit&&this.changePage().then((()=>{})).catch((()=>{})):this.changePage().then((()=>{})).catch((()=>{})),!1}))},d.prototype.registerInput=function(t,{includeInValidation:e=!0}={}){if(!t||this.inputBindings.has(t))return t;this.handleInputEnter(t);const i={clearLoadingWatch:t.loading.watch((()=>{t.loading.current?this.canSwitch.current=!1:this.updateState()})),clearValidityWatch:null};return t.reporting.restrictions.length&&(this.inputs.push(t),i.clearValidityWatch=t.watchValidity((()=>this.updateState())),e||(this.inputs=this.inputs.filter((e=>e!==t)))),this.inputBindings.set(t,i),t},d.prototype.unregisterInput=function(t){if(!this.inputBindings.has(t))return;const e=this.inputBindings.get(t);e?.clearLoadingWatch?.(),e?.clearValidityWatch?.(),this.inputBindings.delete(t),this.inputs=this.inputs.filter((e=>e!==t))},d.prototype.getTrackedInputs=function(){return Array.from(this.inputBindings.keys())},d.prototype.getOffsetTop=function(){return r(this.node)-this.offset},d.prototype.updateOffsetByProgress=function(){this.state?.progress?.node&&(this.offset+=+this.state.progress.node.clientHeight)};const p=d,l=function(t,e){this.node=t,this.state=e,this.state.index.watch((()=>this.updateItems())),this.updateItems=function(){const{current:t}=this.state.index;for(const e of this.node.children){const i=+e.dataset.page;inew p(t,this))),this.elements.forEach((t=>t.observe())),this.elements.forEach((t=>t.observeConditionalBlocks()));const{submitter:e}=this.getRoot().getSubmit();e.hasOwnProperty("status")&&e.watchReset((()=>{this.index.current=1}))},this.onChangeIndex=function(){for(const t of this.getPages())t.isShow.current=t.index===this.index.current;window?.jQuery(document)?.trigger("jet-form-builder/switch-page")},this.getCurrentPage=function(){for(const t of this.getPages())if(t.isShow.current)return t;return!1},this.getPages=function(){return this.elements},this.getScopeNode=function(){var t;return null!==(t=this.block?.node)&&void 0!==t?t:this.root.rootNode},this.getRoot=function(){var t;return null!==(t=this.block?.root)&&void 0!==t?t:this.root},this.isLastPage=function(t){return this.elements.at(-1)===t},this.isFirstPage=function(t){return this.elements[0]===t},this.onReady=function(){m("jet.fb.multistep.init",this)}};function y(t){const e=new b;e.setScope(t);const i=[];for(const t of e.getScopeNode().childNodes)t?.classList?.contains("jet-form-builder-page")&&i.push(t);return i.length?(e.setProgress(),e.setPages(i),e):e}const{addAction:S,addFilter:w}=JetPlugins.hooks,{getScrollParent:v}=JetFormBuilderFunctions;S("jet.fb.observe.after","jet-form-builder/multi-step",(function(t){const e=y(t);e.getPages()?.length&&(t.multistep=e,e.onReady())}),15),S("jet.fb.conditional.init","jet-form-builder/multi-step",(function(t){const e=y(t);e.getPages()?.length&&(t.multistep=e,e.onReady())})),w("jet.fb.conditional.types","jet-form-builder/multi-step",(function(t){return[i,...t]})),S("jet.fb.multistep.init","jet-form-builder/multi-step/autoscroll",(function(t){window?.JetFormBuilderSettings?.scroll_on_next&&t.index.watch((()=>{const e=t.getCurrentPage(),i=v(e.node),s=e.getOffsetTop();i?.scrollTo?.({top:s,behavior:"smooth"})}))}))})(); \ No newline at end of file diff --git a/compatibility/bricks/assets/build/frontend.asset.php b/compatibility/bricks/assets/build/frontend.asset.php index a6b9ee611..315a54622 100644 --- a/compatibility/bricks/assets/build/frontend.asset.php +++ b/compatibility/bricks/assets/build/frontend.asset.php @@ -1 +1 @@ - array(), 'version' => 'cf7d02a4042a42f5c32e'); + array(), 'version' => '223249f02ffb577062b5'); diff --git a/compatibility/bricks/assets/build/frontend.js b/compatibility/bricks/assets/build/frontend.js index 2b2422163..a558b8ae3 100644 --- a/compatibility/bricks/assets/build/frontend.js +++ b/compatibility/bricks/assets/build/frontend.js @@ -1 +1 @@ -!function(){"use strict";document.addEventListener("bricks/ajax/popup/loaded",function(t){const o=t.detail?.popupElement;o&&function(t){if("undefined"==typeof jQuery||void 0===window.JetPlugins)return;if(1!=t.dataset.popupAjax)return;const o=t.querySelectorAll?t.querySelectorAll('[data-block-name="jet-forms/form-block"], .wp-block-jet-forms-form-block, form.jet-form-builder'):[];0!==o.length&&o.forEach(function(t){if("true"===t.dataset.jfbInitialized)return;const o=t.querySelector("form.jet-form-builder")||("FORM"===t.tagName&&t.classList.contains("jet-form-builder")?t:null);if(o&&o.closest(".brx-popup[data-popup-ajax]")&&o.action&&o.action.includes("bricks/v1/load_popup_content")){const t=window.location.origin+window.location.pathname,e=window.location.search;o.action=t+e}jQuery(()=>JetPlugins.init()),t.dataset.jfbInitialized="true"})}(o)})}(); \ No newline at end of file +!function(){"use strict";document.addEventListener("bricks/ajax/popup/loaded",(function(t){const o=t.detail?.popupElement;o&&function(t){if("undefined"==typeof jQuery||void 0===window.JetPlugins)return;if(1!=t.dataset.popupAjax)return;const o=t.querySelectorAll?t.querySelectorAll('[data-block-name="jet-forms/form-block"], .wp-block-jet-forms-form-block, form.jet-form-builder'):[];0!==o.length&&o.forEach((function(t){if("true"===t.dataset.jfbInitialized)return;const o=t.querySelector("form.jet-form-builder")||("FORM"===t.tagName&&t.classList.contains("jet-form-builder")?t:null);if(o&&o.closest(".brx-popup[data-popup-ajax]")&&o.action&&o.action.includes("bricks/v1/load_popup_content")){const t=window.location.origin+window.location.pathname,e=window.location.search;o.action=t+e}jQuery((()=>JetPlugins.init())),t.dataset.jfbInitialized="true"}))}(o)}))}(); \ No newline at end of file diff --git a/compatibility/jet-appointment/assets/build/frontend.asset.php b/compatibility/jet-appointment/assets/build/frontend.asset.php index 077cdb4b6..46e16b55c 100644 --- a/compatibility/jet-appointment/assets/build/frontend.asset.php +++ b/compatibility/jet-appointment/assets/build/frontend.asset.php @@ -1 +1 @@ - array(), 'version' => '0c021d3fb5d78e7cd81c'); + array(), 'version' => 'bad44884ebe52d8c8260'); diff --git a/compatibility/jet-appointment/assets/build/frontend.js b/compatibility/jet-appointment/assets/build/frontend.js index b33f3c0a9..a7c30f893 100644 --- a/compatibility/jet-appointment/assets/build/frontend.js +++ b/compatibility/jet-appointment/assets/build/frontend.js @@ -1 +1 @@ -(()=>{const{InputData:t}=JetFormBuilderAbstract,{ListingAddTemplateWatcher:e,ListingTemplateClick:i}=JetFormBuilderFunctions,{addAction:n,addFilter:r}=JetPlugins.hooks;function s(){t.call(this),this.isSupported=function(t){return"appointment"===t.dataset.field},this.addListeners=function(){const[t]=this.nodes;jQuery(t).on("change",()=>{this.value.current=t.value}),this.reporting.makeInvalid=()=>{},this.reporting.makeValid=()=>{}},this.onObserve=function(){t.prototype.onObserve.call(this),this.callable=null,this.value.sanitize(t=>["{}","[]"].includes(t)?"":t)}}function o(){t.call(this),this.providerArgs={},this.isSupported=function(t){return t.classList.contains("appointment-provider")},this.setNode=function(e){t.prototype.setNode.call(this,e),this.name=e.dataset?.field||e.name,this.providerArgs=JSON.parse(e.dataset.args)},this.checkIsRequired=function(){if(this.providerArgs?.args_str)return this.providerArgs?.args_str?.includes("required");{const[t]=this.nodes;return t.hasAttribute("required")}},this.addListeners=function(){const[t]=this.nodes;t.addEventListener("change",({target:t})=>{this.value.current=t.value}),"SELECT"===t.nodeName&&t.addEventListener("blur",()=>this.reportOnBlur()),this.addListingTemplateListener(),this.addServiceListener()},this.addServiceListener=function(){if(!this.providerArgs?.service?.field)return;const t=this.root.getInput(this.providerArgs.service.field);t&&t.watch(()=>{this.silenceSet(null)})},this.addListingTemplateListener=function(){const[t]=this.nodes;"DIV"===t.nodeName&&(t.addEventListener("click",i),e(this))},this.onObserve=function(){t.prototype.onObserve.call(this),this.callable=null},this.reQueryValue=function(){}}s.prototype=Object.create(t.prototype),o.prototype=Object.create(t.prototype),n("jet.fb.observe.before","jet-form-builder/appointment-compatibility",function(t){const{rootNode:e}=t;for(const t of e.querySelectorAll(".jet-apb-calendar-wrapper")){const e=t.querySelector("input[data-field]");"appointment"===e.dataset.field&&(e.dataset.jfbSync=1)}for(const t of e.querySelectorAll(".field-type-appointment-provider .appointment-provider"))t.dataset.jfbSync=1}),r("jet.fb.inputs","jet-form-builder/appointment-field",function(t){return[s,o,...t]}),n("jet.fb.input.makeReactive","jet-form-builder/appointment-compatibility",function(t){for(const e of t.root.getInputs()){if(e instanceof s){const[i]=e.nodes,n=i.closest(".appointment-calendar"),r=JSON.parse(n.dataset.args);r?.service?.field===t.name&&(t.callable.triggerJQuery=()=>{})}if(e instanceof o){const[i]=e.nodes,n=JSON.parse(i.dataset.args);n?.service?.field===t.name&&(t.callable.triggerJQuery=()=>{})}}}),n("jet.fb.multistep.page.init","jet-form-builder/appointment-compatibility/switch-page-on-change",function(t){const e=t.node.querySelectorAll('.appointment-provider[data-args*="data-switch"], .appointment-provider[data-switch="1"]');if(e?.length)for(const i of e)i.jfbSync.watch(()=>{i.jfbSync.value.current&&t.changePage(!1).then(()=>{}).catch(()=>{})})})})(); \ No newline at end of file +(()=>{const{InputData:t}=JetFormBuilderAbstract,{ListingAddTemplateWatcher:e,ListingTemplateClick:i}=JetFormBuilderFunctions,{addAction:n,addFilter:r}=JetPlugins.hooks;function s(){t.call(this),this.isSupported=function(t){return"appointment"===t.dataset.field},this.addListeners=function(){const[t]=this.nodes;jQuery(t).on("change",(()=>{this.value.current=t.value})),this.reporting.makeInvalid=()=>{},this.reporting.makeValid=()=>{}},this.onObserve=function(){t.prototype.onObserve.call(this),this.callable=null,this.value.sanitize((t=>["{}","[]"].includes(t)?"":t))}}function o(){t.call(this),this.providerArgs={},this.isSupported=function(t){return t.classList.contains("appointment-provider")},this.setNode=function(e){t.prototype.setNode.call(this,e),this.name=e.dataset?.field||e.name,this.providerArgs=JSON.parse(e.dataset.args)},this.checkIsRequired=function(){if(this.providerArgs?.args_str)return this.providerArgs?.args_str?.includes("required");{const[t]=this.nodes;return t.hasAttribute("required")}},this.addListeners=function(){const[t]=this.nodes;t.addEventListener("change",(({target:t})=>{this.value.current=t.value})),"SELECT"===t.nodeName&&t.addEventListener("blur",(()=>this.reportOnBlur())),this.addListingTemplateListener(),this.addServiceListener()},this.addServiceListener=function(){if(!this.providerArgs?.service?.field)return;const t=this.root.getInput(this.providerArgs.service.field);t&&t.watch((()=>{this.silenceSet(null)}))},this.addListingTemplateListener=function(){const[t]=this.nodes;"DIV"===t.nodeName&&(t.addEventListener("click",i),e(this))},this.onObserve=function(){t.prototype.onObserve.call(this),this.callable=null},this.reQueryValue=function(){}}s.prototype=Object.create(t.prototype),o.prototype=Object.create(t.prototype),n("jet.fb.observe.before","jet-form-builder/appointment-compatibility",(function(t){const{rootNode:e}=t;for(const t of e.querySelectorAll(".jet-apb-calendar-wrapper")){const e=t.querySelector("input[data-field]");"appointment"===e.dataset.field&&(e.dataset.jfbSync=1)}for(const t of e.querySelectorAll(".field-type-appointment-provider .appointment-provider"))t.dataset.jfbSync=1})),r("jet.fb.inputs","jet-form-builder/appointment-field",(function(t){return[s,o,...t]})),n("jet.fb.input.makeReactive","jet-form-builder/appointment-compatibility",(function(t){for(const e of t.root.getInputs()){if(e instanceof s){const[i]=e.nodes,n=i.closest(".appointment-calendar"),r=JSON.parse(n.dataset.args);r?.service?.field===t.name&&(t.callable.triggerJQuery=()=>{})}if(e instanceof o){const[i]=e.nodes,n=JSON.parse(i.dataset.args);n?.service?.field===t.name&&(t.callable.triggerJQuery=()=>{})}}})),n("jet.fb.multistep.page.init","jet-form-builder/appointment-compatibility/switch-page-on-change",(function(t){const e=t.node.querySelectorAll('.appointment-provider[data-args*="data-switch"], .appointment-provider[data-switch="1"]');if(e?.length)for(const i of e)i.jfbSync.watch((()=>{i.jfbSync.value.current&&t.changePage(!1).then((()=>{})).catch((()=>{}))}))}))})(); \ No newline at end of file diff --git a/compatibility/jet-booking/assets/build/frontend.asset.php b/compatibility/jet-booking/assets/build/frontend.asset.php index b4032db35..cfeade756 100644 --- a/compatibility/jet-booking/assets/build/frontend.asset.php +++ b/compatibility/jet-booking/assets/build/frontend.asset.php @@ -1 +1 @@ - array(), 'version' => '575a25df8a77e253481c'); + array(), 'version' => '812ce05eafd67481989c'); diff --git a/compatibility/jet-booking/assets/build/frontend.js b/compatibility/jet-booking/assets/build/frontend.js index 04d3e39fc..08cdb2b4b 100644 --- a/compatibility/jet-booking/assets/build/frontend.js +++ b/compatibility/jet-booking/assets/build/frontend.js @@ -1 +1 @@ -(()=>{"use strict";const t="YYYY-MM-DD";function e(){return window?.JetABAFInput?.field_format??t}function n(){return window?.JetABAFInput?.layout??"single"}function i(t){return window?.JetABAFData?.[t]}const{InputData:r}=JetFormBuilderAbstract,{isEmpty:o}=JetFormBuilderFunctions;function a(){r.call(this),this.sanitize(function(n){return o(n)||!Array.isArray(n)&&"string"!=typeof n?[]:Array.isArray(n)?n:(n=n.split(" - ")).length?n.map(n=>moment(n,e()).format(t)):[]}),this.isSupported=function(t){return"checkin-checkout"===t.dataset.field},this.addListeners=function(){this.reporting.makeInvalid=()=>{},this.reporting.makeValid=()=>{};const[t]=this.nodes;jQuery(t).on("change.JetFormBuilderMain",()=>{this.value.current=this.value.isMaked?t.value:this.value.applySanitizers(t.value)});const e=t.parentElement.querySelectorAll(".jet-abaf-field__input");for(const t of e)t.addEventListener("blur",()=>this.reportOnBlur())},this.setValue=function(){this.value.current=this.value.applySanitizers(this.nodes[0].value)},this.checkIsRequired=function(){const[t]=this.nodes;return!!t.required||!!t.parentElement.querySelector(".jet-abaf-field__input[required]")},this.setNode=function(t){if(r.prototype.setNode.call(this,t),this.inputType="checkin-checkout","single"===n())return;const e=t.closest(".jet-abaf-separate-fields");this.nodes.push(...e.querySelectorAll('.jet-abaf-field__input[type="text"]'),e)}}a.prototype=Object.create(r.prototype),a.prototype.parseValueForCalculated=function(){if(!this.getValue()?.length)return 0;if(window?.JetBooking?.calcBookedDates){const n=this.getValue().map(n=>moment(n,t).format(e()));return JetBooking.calcBookedDates(n.join(" - "))}if(i("one_day_bookings"))return 1;const n=this.value.current.map(t=>moment(t));let r=n[1].diff(n[0],"days");return r=Number(r),i("per_nights")||r++,r};const u=a,{BaseSignal:s}=JetFormBuilderAbstract;function c(){s.call(this),this.isSupported=function(t,e){return e instanceof u},this.runSignal=function(t){"single"===n()?this.runSignalForSingle():this.runSignalForSeparate(t)},this.runSignalForSingle=function(){const[n]=this.input.nodes,{current:i}=this.input.value;i.length?n.value=i.map(n=>moment(n,t).format(e())).join(" - "):n.value=""},this.runSignalForSeparate=function(n){const[,i,r]=this.input.nodes,{current:o}=this.input.value;if(o?.toString?.()!==n?.toString?.()){if(!o.length)return i.value="",r.value="",void this.updateCalendar();i.value=moment(o[0],t).format(e()),r.value=moment(o[1]??o[0],t).format(e()),this.updateCalendar()}},this.updateCalendar=function(){const{current:t}=this.input.value,[,,,n]=this.input.nodes;if(!t.length)return void jQuery(n).data("dateRangePicker").clear();const i=e();jQuery(n).data("dateRangePicker").setDateRange(moment(t[0]).format(i),moment(t[1]??t[0]).format(i),!0)}}c.prototype=Object.create(s.prototype);const l=c,{addAction:d,addFilter:f}=JetPlugins.hooks;d("jet.fb.observe.before","jet-form-builder/booking-compatibility",function(t){const{rootNode:e}=t;for(const t of e.querySelectorAll(".field-type-check-in-out")){const e=t.querySelector('input[data-field="checkin-checkout"]');e&&(e.dataset.jfbSync=1)}}),f("jet.fb.inputs","jet-form-builder/booking-compatibility",function(t){return[u,...t]}),f("jet.fb.signals","jet-form-builder/booking-compatibility",function(t){return[l,...t]}),f("jet.fb.formula.node.exists","jet-form-builder/booking-compatibility",function(t,e,n){const i=e.match(/ADVANCED_PRICE::([\w\-]+)/);return i&&i?.length&&(t=n.root.rootNode[i[1]]),t}),f("jet.fb.onCalculate.part","jet-form-builder/booking-compatibility",function(t,e){if("string"!=typeof t)return t;if(!e?.input)return t;const n=t.match(/(ADVANCED_PRICE|BOOKING_TIME)::([\w\-]+)/);if(!n?.length)return t;const[,i,r]=n;if("ADVANCED_PRICE"===i){const t=e.input.root.getInput(r);if(!t)return 0;e.cachedFields=e.cachedFields||[],e.cachedFields.includes(t.name)||(e.cachedFields.push(t.name),t.watch(()=>e.setResult()))}else{const t=document.getElementById(r);if(!t)return 0;t.addEventListener("change",()=>{e.setResult()})}return t}),f("jet.fb.calculated.callback","jet-form-builder/booking-field-parser",function(t,e,n){return!1!==t||"checkin-checkout"!==e.inputType?t:e.parseValueForCalculated()})})(); \ No newline at end of file +(()=>{"use strict";const t="YYYY-MM-DD";function e(){return window?.JetABAFInput?.field_format??t}function n(){return window?.JetABAFInput?.layout??"single"}function i(t){return window?.JetABAFData?.[t]}const{InputData:r}=JetFormBuilderAbstract,{isEmpty:o}=JetFormBuilderFunctions;function a(){r.call(this),this.sanitize((function(n){return o(n)||!Array.isArray(n)&&"string"!=typeof n?[]:Array.isArray(n)?n:(n=n.split(" - ")).length?n.map((n=>moment(n,e()).format(t))):[]})),this.isSupported=function(t){return"checkin-checkout"===t.dataset.field},this.addListeners=function(){this.reporting.makeInvalid=()=>{},this.reporting.makeValid=()=>{};const[t]=this.nodes;jQuery(t).on("change.JetFormBuilderMain",(()=>{this.value.current=this.value.isMaked?t.value:this.value.applySanitizers(t.value)}));const e=t.parentElement.querySelectorAll(".jet-abaf-field__input");for(const t of e)t.addEventListener("blur",(()=>this.reportOnBlur()))},this.setValue=function(){this.value.current=this.value.applySanitizers(this.nodes[0].value)},this.checkIsRequired=function(){const[t]=this.nodes;return!!t.required||!!t.parentElement.querySelector(".jet-abaf-field__input[required]")},this.setNode=function(t){if(r.prototype.setNode.call(this,t),this.inputType="checkin-checkout","single"===n())return;const e=t.closest(".jet-abaf-separate-fields");this.nodes.push(...e.querySelectorAll('.jet-abaf-field__input[type="text"]'),e)}}a.prototype=Object.create(r.prototype),a.prototype.parseValueForCalculated=function(){if(!this.getValue()?.length)return 0;if(window?.JetBooking?.calcBookedDates){const n=this.getValue().map((n=>moment(n,t).format(e())));return JetBooking.calcBookedDates(n.join(" - "))}if(i("one_day_bookings"))return 1;const n=this.value.current.map((t=>moment(t)));let r=n[1].diff(n[0],"days");return r=Number(r),i("per_nights")||r++,r};const u=a,{BaseSignal:s}=JetFormBuilderAbstract;function c(){s.call(this),this.isSupported=function(t,e){return e instanceof u},this.runSignal=function(t){"single"===n()?this.runSignalForSingle():this.runSignalForSeparate(t)},this.runSignalForSingle=function(){const[n]=this.input.nodes,{current:i}=this.input.value;i.length?n.value=i.map((n=>moment(n,t).format(e()))).join(" - "):n.value=""},this.runSignalForSeparate=function(n){const[,i,r]=this.input.nodes,{current:o}=this.input.value;if(o?.toString?.()!==n?.toString?.()){if(!o.length)return i.value="",r.value="",void this.updateCalendar();i.value=moment(o[0],t).format(e()),r.value=moment(o[1]??o[0],t).format(e()),this.updateCalendar()}},this.updateCalendar=function(){const{current:t}=this.input.value,[,,,n]=this.input.nodes;if(!t.length)return void jQuery(n).data("dateRangePicker").clear();const i=e();jQuery(n).data("dateRangePicker").setDateRange(moment(t[0]).format(i),moment(t[1]??t[0]).format(i),!0)}}c.prototype=Object.create(s.prototype);const l=c,{addAction:d,addFilter:f}=JetPlugins.hooks;d("jet.fb.observe.before","jet-form-builder/booking-compatibility",(function(t){const{rootNode:e}=t;for(const t of e.querySelectorAll(".field-type-check-in-out")){const e=t.querySelector('input[data-field="checkin-checkout"]');e&&(e.dataset.jfbSync=1)}})),f("jet.fb.inputs","jet-form-builder/booking-compatibility",(function(t){return[u,...t]})),f("jet.fb.signals","jet-form-builder/booking-compatibility",(function(t){return[l,...t]})),f("jet.fb.formula.node.exists","jet-form-builder/booking-compatibility",(function(t,e,n){const i=e.match(/ADVANCED_PRICE::([\w\-]+)/);return i&&i?.length&&(t=n.root.rootNode[i[1]]),t})),f("jet.fb.onCalculate.part","jet-form-builder/booking-compatibility",(function(t,e){if("string"!=typeof t)return t;if(!e?.input)return t;const n=t.match(/(ADVANCED_PRICE|BOOKING_TIME)::([\w\-]+)/);if(!n?.length)return t;const[,i,r]=n;if("ADVANCED_PRICE"===i){const t=e.input.root.getInput(r);if(!t)return 0;e.cachedFields=e.cachedFields||[],e.cachedFields.includes(t.name)||(e.cachedFields.push(t.name),t.watch((()=>e.setResult())))}else{const t=document.getElementById(r);if(!t)return 0;t.addEventListener("change",(()=>{e.setResult()}))}return t})),f("jet.fb.calculated.callback","jet-form-builder/booking-field-parser",(function(t,e,n){return!1!==t||"checkin-checkout"!==e.inputType?t:e.parseValueForCalculated()}))})(); \ No newline at end of file diff --git a/compatibility/jet-engine/assets/build/editor.asset.php b/compatibility/jet-engine/assets/build/editor.asset.php index c9ad76c46..ed578bef4 100644 --- a/compatibility/jet-engine/assets/build/editor.asset.php +++ b/compatibility/jet-engine/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-i18n', 'wp-primitives'), 'version' => '17a2d733c555be980390'); + array('react', 'wp-components', 'wp-i18n', 'wp-primitives'), 'version' => 'f9d9660c456c1b206d2a'); diff --git a/compatibility/jet-engine/assets/build/editor.js b/compatibility/jet-engine/assets/build/editor.js index 42c4f7e0d..c655a66a2 100644 --- a/compatibility/jet-engine/assets/build/editor.js +++ b/compatibility/jet-engine/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={651(e,t,n){n.d(t,{A:()=>s});var r=n(168),o=n.n(r),a=n(433),i=n.n(a)()(o());i.push([e.id,".s1gbvyom{padding:1em;}\n",""]);const s=i},433(e){e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n}).join("")},t.i=function(e,n,r,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(r)for(var s=0;s0?" ".concat(p[5]):""," {").concat(p[1],"}")),p[5]=a),n&&(p[2]?(p[1]="@media ".concat(p[2]," {").concat(p[1],"}"),p[2]=n):p[2]=n),o&&(p[4]?(p[1]="@supports (".concat(p[4],") {").concat(p[1],"}"),p[4]=o):p[4]="".concat(o)),t.push(p))}},t}},168(e){e.exports=function(e){return e[1]}},35(e,t,n){n.r(t),n.d(t,{default:()=>y});var r=n(673),o=n.n(r),a=n(598),i=n.n(a),s=n(262),l=n.n(s),c=n(657),p=n.n(c),d=n(357),u=n.n(d),f=n(626),m=n.n(f),h=n(651),g={};g.styleTagTransform=m(),g.setAttributes=p(),g.insert=l().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),o()(h.A,g);const y=h.A&&h.A.locals?h.A.locals:void 0},673(e){var t=[];function n(e){for(var n=-1,r=0;r0?" ".concat(n.layer):""," {")),r+=n.css,o&&(r+="}"),n.media&&(r+="}"),n.supports&&(r+="}");var a=n.sourceMap;a&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(r,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},626(e){e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var a=t[r]={id:r,exports:{}};return e[r](a,a.exports,n),a.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nc=void 0;const r=window.React,o=window.jfb.blocksToActions,a=window.jfb.actions,i=window.jfb.components,s=window.wp.components,l=window.wp.i18n;function c(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var p=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,d=c(function(e){return p.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),u=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)})});const r=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&r.push(t[e]);return r.push(...n),r.join(" ")},f=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{n[t]=e[t]}),n},m=(e,t)=>{};const h=function(e){let t="";return n=>{const o=(o,a)=>{const{as:i=e,class:s=t}=o;var l;const c=function(e,t){const n=f(t,["as","class"]);if(!e){const e="function"==typeof d?{default:d}:d;Object.keys(n).forEach(t=>{e.default(t)||delete n[t]})}return n}(void 0===n.propsAsIs?!("string"==typeof i&&-1===i.indexOf("-")&&(l=i[0],l.toUpperCase()!==l)):n.propsAsIs,o);c.ref=a,c.className=n.atomic?u(n.class,c.className||s):u(c.className||s,n.class);const{vars:p}=n;if(p){const e={};for(const t in p){const r=p[t],a=r[0],i=r[1]||"",s="function"==typeof a?a(o):a;m(0,n.name),e[`--${t}`]=`${s}${i}`}const t=c.style||{},r=Object.keys(t);r.length>0&&r.forEach(n=>{e[n]=t[n]}),c.style=e}return e.__wyw_meta&&e!==i?(c.as=i,(0,r.createElement)(e,c)):(0,r.createElement)(i,c)},a=r.forwardRef?(0,r.forwardRef)(o):e=>{const t=f(e,["innerRef"]);return o(t,e.innerRef)};return a.displayName=n.name,a.__wyw_meta={className:n.class||t,extends:e},a}}(s.Flex)({name:"StyledFlex",class:"s1gbvyom",propsAsIs:!0}),g=function({label:e,value:t,onChange:n}){return(0,r.createElement)(s.Card,{elevation:2},(0,r.createElement)(h,{direction:"column",gap:3},(0,r.createElement)(i.RowControl,{controlSize:1},({id:o})=>(0,r.createElement)(r.Fragment,null,(0,r.createElement)(i.Label,{htmlFor:o},e),(0,r.createElement)(i.StyledTextControl,{id:o,value:t,onChange:n})))))};n(35);const y=window.wp.primitives,v=(0,r.createElement)(y.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,r.createElement)(y.Path,{fillRule:"evenodd",d:"M10.289 4.836A1 1 0 0111.275 4h1.306a1 1 0 01.987.836l.244 1.466c.787.26 1.503.679 2.108 1.218l1.393-.522a1 1 0 011.216.437l.653 1.13a1 1 0 01-.23 1.273l-1.148.944a6.025 6.025 0 010 2.435l1.149.946a1 1 0 01.23 1.272l-.653 1.13a1 1 0 01-1.216.437l-1.394-.522c-.605.54-1.32.958-2.108 1.218l-.244 1.466a1 1 0 01-.987.836h-1.306a1 1 0 01-.986-.836l-.244-1.466a5.995 5.995 0 01-2.108-1.218l-1.394.522a1 1 0 01-1.217-.436l-.653-1.131a1 1 0 01.23-1.272l1.149-.946a6.026 6.026 0 010-2.435l-1.148-.944a1 1 0 01-.23-1.272l.653-1.131a1 1 0 011.217-.437l1.393.522a5.994 5.994 0 012.108-1.218l.244-1.466zM14.929 12a3 3 0 11-6 0 3 3 0 016 0z",clipRule:"evenodd"})),b={type:"update_options",label:(0,l.__)("Update Options","jet-form-builder"),edit:function(e){const{settings:t,onChangeSettingObj:n,getMapField:c,setMapField:p}=e,d=(0,o.useFields)({withInner:!1});return(0,r.createElement)(s.Flex,{direction:"column"},(0,r.createElement)(s.Notice,{status:"warning",isDismissible:!1},(0,l.__)("This action can update a JetEngine Options Page only for users with the manage_options capability. If you need a public or lower-privilege flow, replace it with Call Hook and save the option in custom code with your own capability and request validation checks.","jet-form-builder")),(0,r.createElement)(a.ValidatedSelectControl,{value:t.options_page,label:(0,l.__)("Options page","jet-form-builder"),onChange:e=>n({options_page:e}),options:window.jetFormUpdateOptionsData.optionsPages,isErrorSupported:({property:e})=>"options_page"===e,required:!0}),(0,r.createElement)(i.WideLine,null),(0,r.createElement)(i.RowControl,{align:"flex-start"},(0,r.createElement)(i.Label,null,(0,l.__)("Options map","jet-form-builder")),(0,r.createElement)(i.RowControlEnd,{gap:4},d.map(e=>(0,r.createElement)(g,{key:e.value,label:e.label,value:c({source:"meta_fields_map",name:e.value}),onChange:t=>p({source:"meta_fields_map",nameField:e.value,value:t})})))))},category:"content",icon:v,validators:[({settings:e})=>!e?.options_page&&{property:"options_page"}]};(0,a.registerAction)(b)})(); \ No newline at end of file +(()=>{"use strict";var e={35:(e,t,n)=>{n.r(t),n.d(t,{default:()=>y});var r=n(673),a=n.n(r),o=n(598),i=n.n(o),s=n(262),l=n.n(s),c=n(657),p=n.n(c),d=n(357),u=n.n(d),f=n(626),m=n.n(f),h=n(651),g={};g.styleTagTransform=m(),g.setAttributes=p(),g.insert=l().bind(null,"head"),g.domAPI=i(),g.insertStyleElement=u(),a()(h.A,g);const y=h.A&&h.A.locals?h.A.locals:void 0},168:e=>{e.exports=function(e){return e[1]}},262:e=>{var t={};e.exports=function(e,n){var r=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!r)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");r.appendChild(n)}},357:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},433:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,r,a,o){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(r)for(var s=0;s0?" ".concat(p[5]):""," {").concat(p[1],"}")),p[5]=o),n&&(p[2]?(p[1]="@media ".concat(p[2]," {").concat(p[1],"}"),p[2]=n):p[2]=n),a&&(p[4]?(p[1]="@supports (".concat(p[4],") {").concat(p[1],"}"),p[4]=a):p[4]="".concat(a)),t.push(p))}},t}},598:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var r="";n.supports&&(r+="@supports (".concat(n.supports,") {")),n.media&&(r+="@media ".concat(n.media," {"));var a=void 0!==n.layer;a&&(r+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),r+=n.css,a&&(r+="}"),n.media&&(r+="}"),n.supports&&(r+="}");var o=n.sourceMap;o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),t.styleTagTransform(r,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},626:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},651:(e,t,n)=>{n.d(t,{A:()=>s});var r=n(168),a=n.n(r),o=n(433),i=n.n(o)()(a());i.push([e.id,".s1gbvyom{padding:1em;}\n",""]);const s=i},657:(e,t,n)=>{e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},673:e=>{var t=[];function n(e){for(var n=-1,r=0;r{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nc=void 0;const r=window.React,a=window.jfb.blocksToActions,o=window.jfb.actions,i=window.jfb.components,s=window.wp.components,l=window.wp.i18n;function c(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var p=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,d=c((function(e){return p.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),u=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)}))}));const r=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&r.push(t[e]);return r.push(...n),r.join(" ")},f=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach((t=>{n[t]=e[t]})),n};const m=function(e){let t="";return n=>{const a=(a,o)=>{const{as:i=e,class:s=t}=a;var l;const c=function(e,t){const n=f(t,["as","class"]);if(!e){const e="function"==typeof d?{default:d}:d;Object.keys(n).forEach((t=>{e.default(t)||delete n[t]}))}return n}(void 0===n.propsAsIs?!("string"==typeof i&&-1===i.indexOf("-")&&(l=i[0],l.toUpperCase()!==l)):n.propsAsIs,a);c.ref=o,c.className=n.atomic?u(n.class,c.className||s):u(c.className||s,n.class);const{vars:p}=n;if(p){const e={};for(const t in p){const r=p[t],o=r[0],i=r[1]||"",s="function"==typeof o?o(a):o;n.name,e[`--${t}`]=`${s}${i}`}const t=c.style||{},r=Object.keys(t);r.length>0&&r.forEach((n=>{e[n]=t[n]})),c.style=e}return e.__wyw_meta&&e!==i?(c.as=i,(0,r.createElement)(e,c)):(0,r.createElement)(i,c)},o=r.forwardRef?(0,r.forwardRef)(a):e=>{const t=f(e,["innerRef"]);return a(t,e.innerRef)};return o.displayName=n.name,o.__wyw_meta={className:n.class||t,extends:e},o}}(s.Flex)({name:"StyledFlex",class:"s1gbvyom",propsAsIs:!0}),h=function({label:e,value:t,onChange:n}){return(0,r.createElement)(s.Card,{elevation:2},(0,r.createElement)(m,{direction:"column",gap:3},(0,r.createElement)(i.RowControl,{controlSize:1},(({id:a})=>(0,r.createElement)(r.Fragment,null,(0,r.createElement)(i.Label,{htmlFor:a},e),(0,r.createElement)(i.StyledTextControl,{id:a,value:t,onChange:n}))))))};n(35);const g=window.wp.primitives,y=(0,r.createElement)(g.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,r.createElement)(g.Path,{fillRule:"evenodd",d:"M10.289 4.836A1 1 0 0111.275 4h1.306a1 1 0 01.987.836l.244 1.466c.787.26 1.503.679 2.108 1.218l1.393-.522a1 1 0 011.216.437l.653 1.13a1 1 0 01-.23 1.273l-1.148.944a6.025 6.025 0 010 2.435l1.149.946a1 1 0 01.23 1.272l-.653 1.13a1 1 0 01-1.216.437l-1.394-.522c-.605.54-1.32.958-2.108 1.218l-.244 1.466a1 1 0 01-.987.836h-1.306a1 1 0 01-.986-.836l-.244-1.466a5.995 5.995 0 01-2.108-1.218l-1.394.522a1 1 0 01-1.217-.436l-.653-1.131a1 1 0 01.23-1.272l1.149-.946a6.026 6.026 0 010-2.435l-1.148-.944a1 1 0 01-.23-1.272l.653-1.131a1 1 0 011.217-.437l1.393.522a5.994 5.994 0 012.108-1.218l.244-1.466zM14.929 12a3 3 0 11-6 0 3 3 0 016 0z",clipRule:"evenodd"})),v={type:"update_options",label:(0,l.__)("Update Options","jet-form-builder"),edit:function(e){const{settings:t,onChangeSettingObj:n,getMapField:c,setMapField:p}=e,d=(0,a.useFields)({withInner:!1});return(0,r.createElement)(s.Flex,{direction:"column"},(0,r.createElement)(s.Notice,{status:"warning",isDismissible:!1},(0,l.__)("This action can update a JetEngine Options Page only for users with the manage_options capability. If you need a public or lower-privilege flow, replace it with Call Hook and save the option in custom code with your own capability and request validation checks.","jet-form-builder")),(0,r.createElement)(o.ValidatedSelectControl,{value:t.options_page,label:(0,l.__)("Options page","jet-form-builder"),onChange:e=>n({options_page:e}),options:window.jetFormUpdateOptionsData.optionsPages,isErrorSupported:({property:e})=>"options_page"===e,required:!0}),(0,r.createElement)(i.WideLine,null),(0,r.createElement)(i.RowControl,{align:"flex-start"},(0,r.createElement)(i.Label,null,(0,l.__)("Options map","jet-form-builder")),(0,r.createElement)(i.RowControlEnd,{gap:4},d.map((e=>(0,r.createElement)(h,{key:e.value,label:e.label,value:c({source:"meta_fields_map",name:e.value}),onChange:t=>p({source:"meta_fields_map",nameField:e.value,value:t})}))))))},category:"content",icon:y,validators:[({settings:e})=>!e?.options_page&&{property:"options_page"}]};(0,o.registerAction)(v)})(); \ No newline at end of file diff --git a/compatibility/jet-engine/assets/build/frontend/listing.options.asset.php b/compatibility/jet-engine/assets/build/frontend/listing.options.asset.php index 880ac5238..329f8b828 100644 --- a/compatibility/jet-engine/assets/build/frontend/listing.options.asset.php +++ b/compatibility/jet-engine/assets/build/frontend/listing.options.asset.php @@ -1 +1 @@ - array(), 'version' => '66ee1abd4186fff5643b'); + array(), 'version' => '3bb89f2cb631d8a1e090'); diff --git a/compatibility/jet-engine/assets/build/frontend/listing.options.js b/compatibility/jet-engine/assets/build/frontend/listing.options.js index 6ebdcbc30..319210b3b 100644 --- a/compatibility/jet-engine/assets/build/frontend/listing.options.js +++ b/compatibility/jet-engine/assets/build/frontend/listing.options.js @@ -1 +1 @@ -(()=>{var e;const{addAction:t}=JetPlugins.hooks,{isEmpty:i}=JetFormBuilderFunctions;function o({pointerId:e,target:t}){-1!==e&&(t.classList.contains("jet-form-builder__field-template")||(t=t.closest(".jet-form-builder__field-template")),t.nextElementSibling.click())}function l(e){e.watch(()=>{const[t]=e.nodes,i=t.closest(".jet-form-builder-row");for(const e of i.querySelectorAll("input.checkradio-field"))e.closest(".jet-form-builder__field-wrap").querySelector(".jet-form-builder__field-template").classList.toggle("jet-form-builder__field-template--checked",e.checked)})}t("jet.fb.input.makeReactive","jet-form-builder/listing-options",function(e){if(!function(e){for(const t of e.nodes)if(["radio","checkbox"].includes(t?.type)&&t.classList.contains("checkradio-field"))return!0;return!1}(e))return;let t=null;for(const i of e.nodes)t=i.closest(".jet-form-builder__field-wrap").querySelector(".jet-form-builder__field-template"),t&&t.addEventListener("click",o);t&&(l(e),i(e.getValue())||e.value.notify())}),window.JetFormBuilderFunctions={...null!==(e=window.JetFormBuilderFunctions)&&void 0!==e?e:{},ListingAddTemplateWatcher:l,ListingTemplateClick:o}})(); \ No newline at end of file +(()=>{var e;const{addAction:t}=JetPlugins.hooks,{isEmpty:i}=JetFormBuilderFunctions;function o({pointerId:e,target:t}){-1!==e&&(t.classList.contains("jet-form-builder__field-template")||(t=t.closest(".jet-form-builder__field-template")),t.nextElementSibling.click())}function l(e){e.watch((()=>{const[t]=e.nodes,i=t.closest(".jet-form-builder-row");for(const e of i.querySelectorAll("input.checkradio-field"))e.closest(".jet-form-builder__field-wrap").querySelector(".jet-form-builder__field-template").classList.toggle("jet-form-builder__field-template--checked",e.checked)}))}t("jet.fb.input.makeReactive","jet-form-builder/listing-options",(function(e){if(!function(e){for(const t of e.nodes)if(["radio","checkbox"].includes(t?.type)&&t.classList.contains("checkradio-field"))return!0;return!1}(e))return;let t=null;for(const i of e.nodes)t=i.closest(".jet-form-builder__field-wrap").querySelector(".jet-form-builder__field-template"),t&&t.addEventListener("click",o);t&&(l(e),i(e.getValue())||e.value.notify())})),window.JetFormBuilderFunctions={...null!==(e=window.JetFormBuilderFunctions)&&void 0!==e?e:{},ListingAddTemplateWatcher:l,ListingTemplateClick:o}})(); \ No newline at end of file diff --git a/compatibility/jet-engine/blocks/check-mark/assets/build/editor.asset.php b/compatibility/jet-engine/blocks/check-mark/assets/build/editor.asset.php index 9f0a1116d..15fade396 100644 --- a/compatibility/jet-engine/blocks/check-mark/assets/build/editor.asset.php +++ b/compatibility/jet-engine/blocks/check-mark/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '7b46c108dd367ad50f9f'); + array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '7910fa836caca4a27439'); diff --git a/compatibility/jet-engine/blocks/check-mark/assets/build/editor.js b/compatibility/jet-engine/blocks/check-mark/assets/build/editor.js index ffbcac2d7..68bd96885 100644 --- a/compatibility/jet-engine/blocks/check-mark/assets/build/editor.js +++ b/compatibility/jet-engine/blocks/check-mark/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var A={703(A,e,t){t.r(e)},674(A,e,t){t.r(e)}},e={};function t(r){var n=e[r];if(void 0!==n)return n.exports;var B=e[r]={exports:{}};return A[r](B,B.exports,t),B.exports}t.r=A=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(A,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(A,"__esModule",{value:!0})};const r=window.React,n=(0,r.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,r.createElement)("g",{clipPath:"url(#clip0_75_1467)"},(0,r.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,r.createElement)("rect",{width:"298",height:"144",fill:"url(#pattern0)"}),(0,r.createElement)("path",{d:"M223 57C217.195 57 212.5 61.695 212.5 67.5C212.5 75.375 223 87 223 87C223 87 233.5 75.375 233.5 67.5C233.5 61.695 228.805 57 223 57Z",fill:"white"}),(0,r.createElement)("path",{d:"M223 57C217.195 57 212.5 61.695 212.5 67.5C212.5 75.375 223 87 223 87C223 87 233.5 75.375 233.5 67.5C233.5 61.695 228.805 57 223 57ZM223 71.25C220.93 71.25 219.25 69.57 219.25 67.5C219.25 65.43 220.93 63.75 223 63.75C225.07 63.75 226.75 65.43 226.75 67.5C226.75 69.57 225.07 71.25 223 71.25Z",fill:"#4272F9"})),(0,r.createElement)("defs",null,(0,r.createElement)("pattern",{id:"pattern0",patternContentUnits:"objectBoundingBox",width:"1",height:"1"},(0,r.createElement)("use",{xlinkHref:"#image0_75_1467",transform:"matrix(0.00158228 0 0 0.00327444 0 -1.46776)"})),(0,r.createElement)("clipPath",{id:"clip0_75_1467"},(0,r.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,r.createElement)("image",{id:"image0_75_1467",width:"632",height:"840",xlinkHref:"data:image/png;base64,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WpMIaE1Pyi4RYhYIbkh26qiD9tfLL700ZMC7+eZb9KUvfUk/vuZHvUEtM8nCBLU//PFPOvzwI3TQQQfphut/0bsHraOfXftzLVhwrk45+WRdcfmlvZMseidnhCP6+/Mv6uSTT9GUKVP08IMPKhI1s1ozkyzyGaI1s2bN2nuXXnmVLvrm13Xht7+rw08/1w6jtiXSqg8H7ELOj99+o76z+Hy9b9v/sEO0cTPJwszriHXrqIP2s7N9r77+Rm3x/p20siulzpRrd7iYUxPU5eedqT8/8UedvmCh9j7sq3YI10yyMIsdcyCAAAIIIIAAAhMh4LzyVrN77OGH6s0lS3THQ49p1va72PBj8k1jJKB//PFRnX78sWptbR0y4JllS8w3dg8/9KBmzthK6XTa7hEbCIa1cOEi3X7HHVq0aJFOOflEO7RrZtG+8uo/dfAhh9pv8u6/715tteUWm7YxC4b03Yu+p+uuu95O3vjG1xfbHTCyy6TkE/CqqqJ2+ZVHn3pOJx51uD6w/Q76ya13qitcY2fCmj11652kLjjpWN115x36yEd3twGv28ksk2KWUbn6W+frsYce1GFHHKljzjnf9t7F07IzcHvWLNexh3xBdfV1uvLaG1S99TY24L3WZr7TI+BNxAvNMxFAAAEEEEBActb1pNyvn3OGbrzheu259z4658Jvas57t7XLj7z07F90929u02OPPKyenp4hA94vfnGdampq9NWjjtIxxxyjObO3Vk+sR48++pjOPmeB7Rm8/rqfa8ftt7e9aSaomS3ETj31dN19zz069NBDdeopJ2nu3Hm2p+ze++7T9dffYHeX+NUvr9fOO++cWQevd6HjvAJeNGIDXlt7h75yxJF6+qmntPCCC/WFI45S/aQpatu4Xg/eebtuuuE6rV61SjvtvIsNeB0K2dm3Zpi2+YW/6rsXLFJPT7eOPv4EffrAL6qqtk4rmt/WT39wuf78xBP64qGH6rxLrtSqmGsD3hvtSXWy0DF/vxBAAAEEEEBgggScFV1J942XX9KFC87U0rff0py5czV16haKRCJq72hXbXW1li9frqamJtvbNtQkC/Nt3cyZM1QVrVIylVR3d49Wr16tN998U2eccbq+9c1vKp2KZ3ayML17gZBe+/e/ddJJp2jjxo3aYoupamhotL1/a9assVuXHX3013TiCcdnFkB2zTUB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5bPc5c7TJL2U3I2ZFjxOhm/2TKw455xzRB26Rx99FPvss4/heVbbzffnK+oQ8xQuC2R4kdYFlgZGoQaMlm576623cOaZZwqr0S233KJKnURwd+yxx4r6lBdccAHOPvvsrGb+/e9/46yzzgKBHF8gGfoh5cUXX8Tdd9+Njz/+WBQur62txV577SW8BzNmzCio3Wq7x+g+CioAr3nCJEyfPS/bBYPXe7o6BQlyNBzC+ElT8O3TzsPMOVtlHvI2eybIPcWM2UyJMYK83u5u/PmJB/HeG69i3nY74ezLrhV9lgvgyTq0pbpnxfPVXwtfgNUausVPuYRWbLo9yQNJwFzNIt2zZlQJKec6hwC82mAmmN9vCwyrbKHHIicnqgXkZF/52inBXW7sXe48inUjl1Op7LtUgPfb3/5W3Hh5szz44IPFdNva2sTvLEHy61//WrhtjUo13nwtLjyju2i1H4saMArwrr76atx+++1CFSeeeCJuu+22YWohwDvooIPApK2rrroK55133hCA981vflO8PP7mN7/JArylS5eK/njthAkThGWQlj5a8ggW77zzTlGuK59U4z1G13lRo0nZeXcsPOsi+GoGyf8T8QSW/neRqEDRsWkDmGl78gWXgRphksWS/36MT95/G6tXLBMuWQoJkDs3t6Ovpwtzt90R51z2M0GhUi6AN+ie3Sg400oRgjuCPMbxETCWS6QFrxwZqWbPWeok0t9VNSU/1daoCvBC6T7U2xow3p7haaLkA1JqIE0vwFObUDjSJzJv1ZIqRgu4MwPg8U37iSeewJ577iloUkhwTB68iy66SKTq04K3//6DBJx6D3A13nwtN63e3bPajWUNGAF4dK8SnP33v/8VKiFP5nPPPYepUzM8YlKKAXgEjddee63o86GHHsKkSZPw+9//XgBEJgc888wzglF/SwB4kiYlGY9k+Mb4n6gj68HTD9+PV194BrXBelx07S/RPGEi3v2/V/HHB+9GKNSHabO2Qk1tMOvWpuWvdelnZQd4dBPXNU0SBLjd7WtK/srIJKBSY/m0JjJoFRvZai5a8+Tnkjamt2OdoCypVskCPGm9U07UAQcm2TM3DCMAj+1LKXmjV1nVar0zA+CRBuWMM84QVrx58+YJqpTFixeLN/G9995b3HBrFG+VenVWjQCPc7eseHp30Go3VjVgBOCRI5NE6Jmq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Uwv7x44+cJklwNSpbvjmDCbAAi+DN5eXxgSYABNgAt1HIKrgizclEoSKLgitmgYFEvzZ2ZzSJB43fr0VARZ4/EAwASbABJgAE+gCAu0RfOw/1wUbkuFDsMDL8A3m5TEBJsAEmEDPJGAIPhZzPXN/0n1WLPDSfQd5/kyACTABJsAEmAATCCPAAo8fCSbABJgAE2ACTIAJZBgBFngZtqG8HCbABJgAE2ACTIAJsMDjZ4AJMAEmwASYABNgAhlGgAVehm0oL4cJMAEmwASYABNgAizw+BlgAkyACTABJsAEmECGEWCBl2EbysthAkyACTABJsAEmAALPH4GmAATYAJMgAkwASaQYQRY4GXYhvJymAATYAJMgAkwASbAAo+fASbABJgAE2ACTIAJZBgBFngZtqG8HCbABJgAE2ACTIAJsMDjZ4AJMAEmwASYABNgAhlGgAVehm0oL4cJMAEmwASYABNgAizw+BlgAkyACTABJsAEmECGEWCBl2EbysthAkyACTABJsAEmAALPH4GmAATYAJMgAkwASaQYQRY4GXYhvJymAATYAJMgAkwASbAAo+fASbABJgAE2ACTIAJZBgBFngZtqG8HCbABJgAE2ACTIAJsMDjZ4AJMAEmwASYABNgAhlGgAVehm0oL4cJMAEmwASYABNgAizw+BlgAkyACTABJsAEmECGEWCBl2EbysthAkyACTABJsAEmAALPH4GmAATYAJMgAkwASaQYQT+P5nIxjoBG7CxAAAAAElFTkSuQmCC"}))),B=window.wp.components,l=window.wp.i18n,o=window.wp.blockEditor;function C(A){var e=Object.create(null);return function(t){return void 0===e[t]&&(e[t]=A(t)),e[t]}}var c=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,a=C(function(A){return c.test(A)||111===A.charCodeAt(0)&&110===A.charCodeAt(1)&&A.charCodeAt(2)<91}),g=function(){const A=Array.prototype.slice.call(arguments).filter(Boolean),e={},t=[];A.forEach(A=>{(A?A.split(" "):[]).forEach(A=>{if(A.startsWith("atm_")){const[,t]=A.split("_");e[t]=A}else t.push(A)})});const r=[];for(const A in e)Object.prototype.hasOwnProperty.call(e,A)&&r.push(e[A]);return r.push(...t),r.join(" ")},E=(A,e)=>{const t={};return Object.keys(A).filter((A=>e=>-1===A.indexOf(e))(e)).forEach(e=>{t[e]=A[e]}),t},w=(A,e)=>{},d=function(A){let e="";return t=>{const n=(n,B)=>{const{as:l=A,class:o=e}=n;var C;const c=function(A,e){const t=E(e,["as","class"]);if(!A){const A="function"==typeof a?{default:a}:a;Object.keys(t).forEach(e=>{A.default(e)||delete t[e]})}return t}(void 0===t.propsAsIs?!("string"==typeof l&&-1===l.indexOf("-")&&(C=l[0],C.toUpperCase()!==C)):t.propsAsIs,n);c.ref=B,c.className=t.atomic?g(t.class,c.className||o):g(c.className||o,t.class);const{vars:d}=t;if(d){const A={};for(const e in d){const r=d[e],B=r[0],l=r[1]||"",o="function"==typeof B?B(n):B;w(0,t.name),A[`--${e}`]=`${o}${l}`}const e=c.style||{},r=Object.keys(e);r.length>0&&r.forEach(t=>{A[t]=e[t]}),c.style=A}return A.__wyw_meta&&A!==l?(c.as=l,(0,r.createElement)(A,c)):(0,r.createElement)(l,c)},B=r.forwardRef?(0,r.forwardRef)(n):A=>{const e=E(A,["innerRef"]);return n(e,A.innerRef)};return B.displayName=t.name,B.__wyw_meta={className:t.class||e,extends:A},B}};const s=d("p")({name:"Help",class:"hacvl5b",propsAsIs:!1});t(703);const i=function({open:A,hasValue:e=!1}){return(0,r.createElement)(B.Button,{isSecondary:!0,isSmall:!0,icon:"edit",onClick:A,className:e?"jet-fb has-value":"",label:e?(0,l.__)("Edit icon","jet-form-builder"):(0,l.__)("Choose icon","jet-form-builder")},e?(0,l.__)("Edit","jet-form-builder"):(0,l.__)("Choose","jet-form-builder"))},Q=d("label")({name:"Label",class:"l1qx79ow",propsAsIs:!1});t(674);const v=window.wp.element,b=window.wp.primitives,u=(0,r.createElement)(b.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,r.createElement)(b.Path,{d:"M16.7 7.1l-6.3 8.5-3.3-2.5-.9 1.2 4.5 3.4L17.9 8z"})),f=JSON.parse('{"apiVersion":3,"name":"jet-forms/check-mark","category":"layout","title":"Check mark","icon":"\\n \\n \\n \\n \\n \\n \\n \\n","keywords":["jetformbuilder","check","mark","toggle","radio","select"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"attributes":{"controlType":{"type":"string","default":""},"defaultImageControl":{"type":"object","default":{}},"checkedImageControl":{"type":"object","default":{}},"style":{"type":"object","default":{".jet-form-builder-check-mark-img":{"width":24}}}},"render":"file:./block-render.php","viewStyle":"jet-fb-compat-jet-engine-check-mark"}'),{__:I}=wp.i18n,{createBlock:m}=wp.blocks,{name:P,icon:p=""}=f;f.attributes.isPreview={type:"boolean",default:!1};const H={...f,icon:(0,r.createElement)("span",{dangerouslySetInnerHTML:{__html:p}}),description:I("A block for custom Listing Item templates. Set custom icons for the block's default and checked modes.","jet-form-builder"),edit:function(A){const{setAttributes:e,attributes:t,toggleSelection:C}=A,{".jet-form-builder-check-mark-img":{width:c}}=t.style,a=(0,o.useBlockProps)(),[g,E]=(0,v.useState)(!1),w=!("image"!==t.controlType||!t?.checkedImageControl?.url||!t?.defaultImageControl?.url)&&(g?t?.checkedImageControl?.url:t?.defaultImageControl?.url);return t.isPreview?(0,r.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},n):(0,r.createElement)(r.Fragment,null,(0,r.createElement)(o.BlockControls,null,(0,r.createElement)(B.ToolbarButton,{icon:u,title:g?(0,l.__)("Show unchecked state","jet-form-builder"):(0,l.__)("Show checked state","jet-form-builder"),onClick:()=>E(A=>!A),isActive:g})),(0,r.createElement)("div",{...a},w?(0,r.createElement)(B.ResizableBox,{enable:{bottom:!1,bottomLeft:!1,bottomRight:!1,left:!1,right:!0,top:!1,topLeft:!1,topRight:!1},size:{width:c},minWidth:"10",onResizeStop:(A,r,n,B)=>{e({style:{...t.style,".jet-form-builder-check-mark-img":{width:c+B.width}}}),C(!0)},onResizeStart:()=>{C(!1)}},(0,r.createElement)("img",{src:w,className:"jet-form-builder-check-mark-img",alt:(0,l.__)("Check mark control","jet-form-builder")})):(0,r.createElement)("input",{type:"checkbox",checked:g,onChange:()=>E(A=>!A),className:"jet-form-builder-check-mark-input"})),(0,r.createElement)(o.InspectorControls,null,(0,r.createElement)("div",{style:{padding:"20px"}},(0,r.createElement)(B.__experimentalToggleGroupControl,{onChange:A=>e({controlType:A}),value:t.controlType,label:(0,l.__)("Control type","jet-form-builder"),isBlock:!0},(0,r.createElement)(B.__experimentalToggleGroupControlOption,{label:(0,l.__)("HTML input","jet-form-builder"),value:""}),(0,r.createElement)(B.__experimentalToggleGroupControlOption,{label:(0,l.__)("Image","jet-form-builder"),value:"image"})))),"image"===t.controlType&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(o.InspectorControls,null,(0,r.createElement)(o.MediaUploadCheck,null,(0,r.createElement)(B.PanelBody,{title:(0,l.__)("Control Default","jet-form-builder")},(0,r.createElement)(B.Flex,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,r.createElement)(Q,null,(0,l.__)("Default icon","jet-form-builder")),(0,r.createElement)(o.MediaUpload,{onSelect:A=>{var r;return e({defaultImageControl:{...null!==(r=t.defaultImageControl)&&void 0!==r?r:{},url:A.url,id:A.id}})},allowedTypes:["image/*"],value:t.defaultImageControl?.id,render:({open:A})=>(0,r.createElement)(i,{open:A,hasValue:!!t.defaultImageControl?.url})}),!!t.defaultImageControl?.url&&(0,r.createElement)(B.Button,{isDestructive:!0,isSmall:!0,icon:"no-alt",onClick:()=>e({defaultImageControl:{}}),label:(0,l.__)("Remove default icon","jet-form-builder")})),!!t.defaultImageControl?.url&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)("img",{src:t.defaultImageControl?.url,style:{maxWidth:"150px",maxHeight:"150px",margin:"1em 0"}})),(0,r.createElement)(s,null,(0,l.__)("Choose icon for default state of choice","jet-form-builder"))),(0,r.createElement)(B.PanelBody,{title:(0,l.__)("Control Checked","jet-form-builder")},(0,r.createElement)(B.Flex,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,r.createElement)(Q,null,(0,l.__)("Checked icon","jet-form-builder")),(0,r.createElement)(o.MediaUpload,{onSelect:A=>{var r;return e({checkedImageControl:{...null!==(r=t.checkedImageControl)&&void 0!==r?r:{},url:A.url,id:A.id}})},allowedTypes:["image/*"],value:t.checkedImageControl?.id,render:({open:A})=>(0,r.createElement)(i,{open:A,hasValue:!!t.checkedImageControl?.url})}),!!t.checkedImageControl?.url&&(0,r.createElement)(B.Button,{isDestructive:!0,isSmall:!0,icon:"no-alt",onClick:()=>e({checkedImageControl:{}}),label:(0,l.__)("Remove checked icon","jet-form-builder")})),!!t.checkedImageControl?.url&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)("img",{src:t.checkedImageControl?.url,style:{maxWidth:"150px",maxHeight:"150px",margin:"1em 0"}})),(0,r.createElement)(s,null,(0,l.__)("Choose icon for checked state of choice","jet-form-builder")))))))},example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:A=>m("jet-forms/text-field",{...A}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:A=>m(P,{...A}),priority:0}]}};(0,window.wp.blocks.registerBlockType)(P,H)})(); \ No newline at end of file +(()=>{"use strict";var A={674:(A,e,t)=>{t.r(e)},703:(A,e,t)=>{t.r(e)}},e={};function t(r){var n=e[r];if(void 0!==n)return n.exports;var B=e[r]={exports:{}};return A[r](B,B.exports,t),B.exports}t.r=A=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(A,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(A,"__esModule",{value:!0})};const r=window.React,n=(0,r.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,r.createElement)("g",{clipPath:"url(#clip0_75_1467)"},(0,r.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,r.createElement)("rect",{width:"298",height:"144",fill:"url(#pattern0)"}),(0,r.createElement)("path",{d:"M223 57C217.195 57 212.5 61.695 212.5 67.5C212.5 75.375 223 87 223 87C223 87 233.5 75.375 233.5 67.5C233.5 61.695 228.805 57 223 57Z",fill:"white"}),(0,r.createElement)("path",{d:"M223 57C217.195 57 212.5 61.695 212.5 67.5C212.5 75.375 223 87 223 87C223 87 233.5 75.375 233.5 67.5C233.5 61.695 228.805 57 223 57ZM223 71.25C220.93 71.25 219.25 69.57 219.25 67.5C219.25 65.43 220.93 63.75 223 63.75C225.07 63.75 226.75 65.43 226.75 67.5C226.75 69.57 225.07 71.25 223 71.25Z",fill:"#4272F9"})),(0,r.createElement)("defs",null,(0,r.createElement)("pattern",{id:"pattern0",patternContentUnits:"objectBoundingBox",width:"1",height:"1"},(0,r.createElement)("use",{xlinkHref:"#image0_75_1467",transform:"matrix(0.00158228 0 0 0.00327444 0 -1.46776)"})),(0,r.createElement)("clipPath",{id:"clip0_75_1467"},(0,r.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,r.createElement)("image",{id:"image0_75_1467",width:"632",height:"840",xlinkHref:"data:image/png;base64,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WpMIaE1Pyi4RYhYIbkh26qiD9tfLL700ZMC7+eZb9KUvfUk/vuZHvUEtM8nCBLU//PFPOvzwI3TQQQfphut/0bsHraOfXftzLVhwrk45+WRdcfmlvZMseidnhCP6+/Mv6uSTT9GUKVP08IMPKhI1s1ozkyzyGaI1s2bN2nuXXnmVLvrm13Xht7+rw08/1w6jtiXSqg8H7ELOj99+o76z+Hy9b9v/sEO0cTPJwszriHXrqIP2s7N9r77+Rm3x/p20siulzpRrd7iYUxPU5eedqT8/8UedvmCh9j7sq3YI10yyMIsdcyCAAAIIIIAAAhMh4LzyVrN77OGH6s0lS3THQ49p1va72PBj8k1jJKB//PFRnX78sWptbR0y4JllS8w3dg8/9KBmzthK6XTa7hEbCIa1cOEi3X7HHVq0aJFOOflEO7RrZtG+8uo/dfAhh9pv8u6/715tteUWm7YxC4b03Yu+p+uuu95O3vjG1xfbHTCyy6TkE/CqqqJ2+ZVHn3pOJx51uD6w/Q76ya13qitcY2fCmj11652kLjjpWN115x36yEd3twGv28ksk2KWUbn6W+frsYce1GFHHKljzjnf9t7F07IzcHvWLNexh3xBdfV1uvLaG1S99TY24L3WZr7TI+BNxAvNMxFAAAEEEEBActb1pNyvn3OGbrzheu259z4658Jvas57t7XLj7z07F90929u02OPPKyenp4hA94vfnGdampq9NWjjtIxxxyjObO3Vk+sR48++pjOPmeB7Rm8/rqfa8ftt7e9aSaomS3ETj31dN19zz069NBDdeopJ2nu3Hm2p+ze++7T9dffYHeX+NUvr9fOO++cWQevd6HjvAJeNGIDXlt7h75yxJF6+qmntPCCC/WFI45S/aQpatu4Xg/eebtuuuE6rV61SjvtvIsNeB0K2dm3Zpi2+YW/6rsXLFJPT7eOPv4EffrAL6qqtk4rmt/WT39wuf78xBP64qGH6rxLrtSqmGsD3hvtSXWy0DF/vxBAAAEEEEBgggScFV1J942XX9KFC87U0rff0py5czV16haKRCJq72hXbXW1li9frqamJtvbNtQkC/Nt3cyZM1QVrVIylVR3d49Wr16tN998U2eccbq+9c1vKp2KZ3ayML17gZBe+/e/ddJJp2jjxo3aYoupamhotL1/a9assVuXHX3013TiCcdnFkB2zTUB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5bPc5c7TJL2U3I2ZFjxOhm/2TKw455xzRB26Rx99FPvss4/heVbbzffnK+oQ8xQuC2R4kdYFlgZGoQaMlm576623cOaZZwqr0S233KJKnURwd+yxx4r6lBdccAHOPvvsrGb+/e9/46yzzgKBHF8gGfoh5cUXX8Tdd9+Njz/+WBQur62txV577SW8BzNmzCio3Wq7x+g+CioAr3nCJEyfPS/bBYPXe7o6BQlyNBzC+ElT8O3TzsPMOVtlHvI2eybIPcWM2UyJMYK83u5u/PmJB/HeG69i3nY74ezLrhV9lgvgyTq0pbpnxfPVXwtfgNUausVPuYRWbLo9yQNJwFzNIt2zZlQJKec6hwC82mAmmN9vCwyrbKHHIicnqgXkZF/52inBXW7sXe48inUjl1Op7LtUgPfb3/5W3Hh5szz44IPFdNva2sTvLEHy61//WrhtjUo13nwtLjyju2i1H4saMArwrr76atx+++1CFSeeeCJuu+22YWohwDvooIPApK2rrroK55133hCA981vflO8PP7mN7/JArylS5eK/njthAkThGWQlj5a8ggW77zzTlGuK59U4z1G13lRo0nZeXcsPOsi+GoGyf8T8QSW/neRqEDRsWkDmGl78gWXgRphksWS/36MT95/G6tXLBMuWQoJkDs3t6Ovpwtzt90R51z2M0GhUi6AN+ie3Sg400oRgjuCPMbxETCWS6QFrxwZqWbPWeok0t9VNSU/1daoCvBC6T7U2xow3p7haaLkA1JqIE0vwFObUDjSJzJv1ZIqRgu4MwPg8U37iSeewJ577iloUkhwTB68iy66SKTq04K3//6DBJx6D3A13nwtN63e3bPajWUNGAF4dK8SnP33v/8VKiFP5nPPPYepUzM8YlKKAXgEjddee63o86GHHsKkSZPw+9//XgBEJgc888wzglF/SwB4kiYlGY9k+Mb4n6gj68HTD9+PV194BrXBelx07S/RPGEi3v2/V/HHB+9GKNSHabO2Qk1tMOvWpuWvdelnZQd4dBPXNU0SBLjd7WtK/srIJKBSY/m0JjJoFRvZai5a8+Tnkjamt2OdoCypVskCPGm9U07UAQcm2TM3DCMAj+1LKXmjV1nVar0zA+CRBuWMM84QVrx58+YJqpTFixeLN/G9995b3HBrFG+VenVWjQCPc7eseHp30Go3VjVgBOCRI5NE6JmqER6wbBpfBEmjVCrAe/jhh7F+/XphuTvttNPECyXjf+kxIPE6Ad4ee+yxBQG8y5FglYoBfkZJUvyP55/Gn3//W7jcHlx47S0YP3Ey7rn5Kiz99CNh1TvkqBMxflKLKCEVj8XxhwfuxHtvvKIJ8OiedDg9WLtqJe4oIsnC66+DN1AvSoqZUV1hkOS4/GBmNAAnmXRCEmYSP1ezCIDn8frg9niHzNNn86PJNj77t0JgKh+YK4asWK+yqhncmQHw6Da566678Mgjj2QDob1eL3beeWdRwuxLX/qSXlUNaVetAM8CeUVtp3XRGNKAEYB37rnn4rHHHsNXvvIV8aJHwHfooYfiwQcfHJIIkWvBO/7447P0Sm+++SZOPvnkYS5aNZUyRu+mm24S1rw///nPmDlz5pYD8C64HKlUYpAHz2ZDKg387s5f4MO3Xxd0KBdec4sAcr+8+ofobN+Ik868CLvu8/8yzBGsMmB34r5bfiaIkYe7aFlvNo6zL78Oc+ZtI9y5tMKtbl2BO6671HAWbW3DRFHHtdTyZHKDZTJB96bVumvtFvu1HA2uz8E5ljcmsVgdKq9TBXh00c51DDXBVxPAq3ZwZwbAk5vEN+mPPvpIBFLTZULXCIFesVLVAK9UyhQWQDCeWFysKq3rLA2YqgG9AI+8mIcddhj4/+uuu04APIZusNoNE7FY/UaKEuDRfUtrnxRa41pbW4WF7oEHHhiSZKFcGF2/P/jBD9DV1YULL7wQV1xxRcF1V/M9puDEVWLw5m+/C772rePhD9RmLk2n0dPdhY/+8wbe/OcLgipl5z2/LGLw+nt7cds1F4sEjF33PQBfP+57qG9sFFbPzz96H4/eeyv6e3sEwDubMXgA1q9ZhTuuuxysJnXYsd/BHv/vIMGd5/PVYOXypbj9Z8YAHisZ1DZOEtbGHhPcs5wj+2O/vZ3rRWmscol00bJ/s8BpOeY6aGUsY9k2kyZue3fx8+kY4kMseOF0CFs5Brl/5FiF+O2MWPFKBWilXm+S7gp2U2qSRbnmWO0332JdtQsnfiBU9szKrdDrNl6jt1z6tvq1NKBXA3oBHi13tOCR2oTuUr7wMfmBYO3KK6/E+eefrwrw+EdZGi2DVTIMWYUA3htvvCH6Y9/MsiU9E4FkIZH3mDdf/Uu22Wi4Z9PSRvdbGrTE/UhUoqBu6OGSQp2RuFi6a1mhYuHZP8JW22wn2j7527vxr789J5oz+7aheZwAdQRyTEzp7tycAXiXXisybMmrd98vrsVnH70natg2jZ+I3fc7EIccdTzalhHgXWLIguetqYO3hu7ZXoR7MyVISxX2x37LmUVLt3dt40RRT7Wc45Sqi0H3bByMv6t2sbUtfS/dle5Aj6sHdMtSoukwZjvmD5t7oUoV4VBP3rXmgj8ta2Chz0fFjQLAbvscgGQyVVWkpaOBhPSBtgDWu4yb4STA4yH8fdt2SHgGi4NX+5fQmp+lAWpAD8Bj6MYpp5wiXLIHHnigyJwlcGBGLeNyGRv35JNPinrVFKUFjzF7++23X1bZa9euFbQnBBnKLFrZYMmSJYJG5YMPPhDJXqRNyU3iUNu5sQDw7r7xSqz8YgmcbvcQUCzWm07D66/BjK3mY+8DDsFW8xeIQHuClO6uLvz5iYew7LNFiEUi4m9evx+Tps5AoC6ID//9OqbNnisAHt2+rGu7dmUb/vz4g1izcoVw8+6w61749qlno+2Lpbj35qvEkN/+n3N1ER0TJJGmxUwLGN29dPuWM+bMX9cMt9ePeDQs6uZWq/gC9SAFTaS/B8ygrXYRAI+TJHBanFyEFFJizhPt09Bgaxwy/0IAjw3VypFpZdTmKki2VwNyowXciS/kSadi2RfLq6rs0Asv/BXnnHMuqr2M0PWrgxCcAwZECfB42SOrd0TaafHrGVCh1XSENaAH4DFrllVsmFTx1a9+NRtPxxCO1157TVjzmH0vOTKLyaKlGtatWycsdy+//DK23nprQY2y44476tLQaAd4Lo8PK79YKuLi1ISWOlruaJ1jpiqBD2vL2m0OYQEkF97GDWuxYfVqYekLNjRi4uSpgj+vv68XXq8Pk6fPRCIWFlZUZuQmEkmsXdUm3LkEgpMmTxWWu9WtywXAZIZuTSCAeIFatFn3bDKJns2lZ88q117O5AfJs0dd9XWsz1pHdR22CjfK6sFkd7WyrKtcklZ5Vz1LHwLwtC5QAiy1CamBvC0V4D33/Av46XU3V03hcD4QjvrWN7By1VqMhkLgRl21dfEQvjF18ZAj/PC6nQTXlCWWBkaDBvQAPFKY0FpXSGh1I80JpRiAR7B4ySWX4PHHH8f48ePx85//HIcccshwS1aeSYxagAcIFyEtYLSkFZR0CqlkcoDQOJlxd4tkCofog/+XffCzdCo1pE/+O5mIIp1KC9cskzBozRP3K9FV5pdsmal0WhhQWPc0n8hSX9FQL8glZ6aUqyyXdHlyrrTc0YJXrSItmSS07tlsnntWL5bSqxcl5lIFePmIiNWqUmi5W/VOSrZTTm40W/FYRmjhKWcKK960qS24+JLLsO++X0EgMBjPYVQ3xbSnW/b111/BzTfdIMAdrXcPP3B39s2/mD4rcY1RgGePpXDitI+GTO35lXPQ6R4Ijq7EpK0xLA2UoAEtgEei4WOOOQasYEELnZLonG5WWttIr0SLG5MtmpubiwJ4d9xxRxZEMpljp512GpKcQdcwy5blk9EM8LimDDDTeDMkaBuoUjFMDzZy5WV+RD9sOwAAs23F3zLeMjEm28r2/AORHYvbZucx0MdA3KSa7svhnpXjyAQIAsy+zg0lnPLBS7nmADN+na6qjruTMyb1DClooqEesP6sGZIP3LFvvRa8QlzEAuBplSTjYHrLjhVbmkwN4PFvozker6u7G2ecfaEAedUgBHf33nkL6lVqVlbD/JRzMArwGFmwsCWTaCHl6bb56M+h/6m2dVrzsTQgNaAF8JjwcNxxxwluzOuvv17wZCqFoO7UU08VYOH+++8Xrlxa8L72ta8Jl67eShYXX3yxiMlTE/Lu0QWsjOXLbTfaAd5oPJG0OhLgERT0bF5bliUEm6cI8MvsXJlkUspA/romuL01otJGf9fGUroq/7U2G+oaJwnrLAFuIUuq3skUA+70eESHWfD0ALzcSesZSO9CzWhXrfF5tOS9+NLLePTxP2JFa6tIvKikOBx2zJwxAycedzQOPuiAqrfcSd0YBngAcuPwnmjbFjGPq5LqtsayNFC0BrQAHrNn//WvfyEQCIjkh1mzZg0ZiyUMf/GLX4i6s9ttt52oO7tmzZqsu5aVb5htK+XTTz/FvffeC96jTjjhhCxoY7wda9CqCWlWyJ1XKB7PAnhFH4GiLyyne1ZOSgIykieTRLkU8fhqQbcvXdWkX9FrrSplzFKulckV8VgYrOhhlhRyz/b0tA8bxqjH1PbBkhfTDrcLKSRFgoXXE8hWryi0iGoDeMq5VivYM+tQbAn9mAHwHmvbHkmP8YzcLUG/1hqrTwNaAK/6Zqw+IwvgVX6nJFedWdYltRW4PH6wbJkZICdbK7e7HfFoqPIKMzCiMk6QlSuYVKNHcr2eWtckBkqeMWHHaJGIfO1tby7+U1pWsUi4k5jn2E5rHuLzagZ4FtjTtYVV3cgMgPfIqh2RdllZFlW90dbkshoYywCv1G22Xtrza7AS7tnM6DbUj5siYgVLrWoRbJ4skkq6N63K8jGWekbKdX2gfjwYg2iUn08L4BnhDpZry/0eqPURifRnVTEE4DV5J6I+hxoln9LKBfD0LEDOqRClSj6FlOsQWP2arwGjIK8+3oevT12ancjDq3cELKoU8zfG6rEsGnjqmF0ZWV1V3JlGF5rl2rTb8fo//2z08mHtLWCnrUJJRGxm8H++UWnBoyWvvwTLG7kBg+OmmFptQ1tLxbWQrmTyHEpiYy3gphefFEqOYB8Eal5vzZCJfdQcQQAAIABJREFUq30fcvvJC/DqPA0YZ5+kSxOVAni5k1GOq4dA2bpB6NrOqmx0vcHSZY5YEidMWzQI8NbuZJhPryoVYU1qi9DA339wLHpWLqsq7kyjipdcm7NnzcDDD9xp9HLNh1lJHY7Ri2VsXH9PO+KR8ro7JQ9cKYkW0uJoZkZuObY2wys4MZsJTW7B8EDsoRau0GID4Xxz8Yvy3xKkmQrwnHBgon2q0JWRBRhRLvstBA7zjVtIGbnjF5M0YmQNVtvKacCQFS8nk9biwavcPlkjla6B1n8+h/fuvLpquDONrkjJtXnFJRfgsEMONNqFrmdPUZ2O4YskR12otwOxEpMfCqmJ3H51zZNLztRlxQpWruBcOedqlZq6JrgUFjTGN/Yr+AX1JjzobacEfWUBeDbYMNk+XVXfRlyn+TZMD4WKnjZq6FdtTPalBVSr9XBZ88po4NYVdQh79MfRKTNpH16/k6VGSwOjRgPJeBT/vHihsOKNJHemUYXlcm3OmzcPTzz+KELdxvnSrPu1Ue1D1J5lrViSG5PkuFySTbKIhoSLtlipCY4Dq4UwE5cZudUsMnklFulHqGfzEOOUXmOUEYBHXXTnlGpTWvEMu2jfbX0hS5bdm+7CfEfhcjR6AZhy0/RMSraXbbVcwFqfsz8L4FXzV0f/3IxY8SyAp1+vVsvq00C0twv/uvJ0AfJGo8yZHsDjT72KhoYG8QDv6VwnKj5oiQXstDSU/3OS75KE12gSgNERpUWLJL+M9ytWZAZtOSpuFDunfNdJ8mjG34X6u7PNjIA2o22JbfijZsXTCyrlRG1KgNeX7sbWjh0K6sioJc/ohCyAZ/YRHRv96QJ5iTQWTvkwu2DLgjc29n5LWwUteate/xuW/vkR9KxeIRIvqlkcdmDmZA+OPziIg/asQ824L6F2qx/C7mrIBNJvXouoIrMvdy3lAncyXkyU/EpjwFqURiIWNYWot1r2RCYClDPJwu0LwF+bqU1PzjruK8uKFQP0fLWN8PgCwiJGy1g1i5xruLcTPV0bdHkE1YxPWiBPzXBmpJ98bW2L1r2SjkUjQsddkc3YyjG/IEo1Ati0FqW2sWYBPNlPuW4e1Xwox+Lc9CRcBGIhHDltsB6tBfDG4kmw1lQtGti+3oWTZviz0+n5/Bokej9FKt4Nu7sJvunfh2/cvuLzvu52MAlAKeW6N2eC4/MnC7JEGK1d5XRnVnKPWA2CiRbldHkqueDk2khS3N2+2vBSCRQJGEM97YiVOSnE8ORyLjDqljbKX6c2P9mHWqJGPgNbvqSOIQCvN9KJWY55Bb+EekCbni+uHkUUcsNquWgtgFfq0a6u6/VY8L414V+osQ3WnrUAXnXtoTWbsaeB6TVOnDzLD78jEyebTkbQt/xXiG56RfzbPfEY1M06VfxOi09X+2ph/dHzjNCjLZbOItCQYnc4UNc0OTNe3xfo/vhc2J11aNz1ccQ63kIqGYJ33AHi82oP8tezfraRIETGiem9zkg7mfmajMfQ37NJ6Jj1dcljZ1T8dY1wewMlUa0YHbPY9uTqI2efXjCrB9co58JKFrlVPIwAPPYlXbr8Pfd7NQTg0ZLnt9WgwdaUnYPaF9GsL6eWCbJYgGeBu2KPc3Ve91BbAGtc2hUpjp7wf/DZBnmDLIBXnftpzWrsaWB2wIGjp/rR5LGLxfW2/R7RNQ+J3x21O6Nu3g/hcDcKUBCL9iPcU1pwvdPtA2PCCPAo5CmjVY7xaA6XG6HVjyO86mGk0xn3dmDOD9C37Fbxu7Phy6iff6mgv+CDOx4LIVTifEZyR0nCSzJeAuj+nAB9s+ZFlyrdldFwL+iurB8/rQSAl6lBy7lyztUu2Ti8zvUgwDVTZKkyJcgrBuDlm9MwgOeGG+Ps5H4ZlFxAN9IAT4/1zqw5mrmZVl/GNaDHcid6TQMLJ30wZAAL4BnXt3WFpYFSNLDPOA+OmOwVXUQ63kf/8tuRjq0TLtvA7PPhbthNfMYHGmPzipXguKmw2Ww0GQK24S9/He99B6noRtictUgnFJmljgCQ7IMzMA+1c34Ah39GdgosmVVKdmixayn1Ouk+TcQi6OvaWGp3qtdLrj0ZN7clATxfoAEefy1KTS5RU2y5AJ7L7YMvEITts41vpftDXWJsWvDi6RhmOOaMWoBnZc6W5fs9Yp2+utyLN70ezfFdsRSOm/bRkHbPrJyHXvdgjJBmJ1YDSwOWBkrWwMwaJ46a6sN4rx2pZBj9y2/Lumwdnglo2CVj2Ss2ZiwbF9XzCbo/+SEc3hbUzDwTSCfgbtwTyVAbOj88Q4C7pt2eRO/i6xDd/Dq8Ew+Dq+kwRFbdhXjPJ7DZnHAEZsM36Sh4mvcTc2ICRri/03RLTclKLdCBjDmkdam3c31ZhpJ0IT2bmRUdL8mCl62G0bUR8Vgm/r+ahZQupHYxowavcp0S3PFvuRa8fEUctBhJaMH2Berh9mSee8MAnvgjbGgZIDyWE1J2rMc6puZbzt3EYl20hSx4dXXN1XxWrLkVoQE9VrxTJn6KOIabz616tEUo3LrE0kCJGnDZbQLk7dzgEj2FVj2M0KpHxe+u2m0Q3O4W8Tt50Aj0jIinJghfTRCRDX9F3xe3DVzKGMA0vBMOQdrmRnT9s/BNPhY1008RVr54z8dwBQcpwPqW3YLIxpeywzoDWyG44EbYHJkQD1rDIqEe8f9qFz5rmTGsLKdl5pzpBg82TxkSh1aKBU8CPFobR4N+ZWm1YmMO8+2FEuApQZ4ypi4XfxVKcq1tmAB/oEFcwjhXxpiqAjw2iKTD8Nl8aLFPExcUA/ByJ62HYkUtXVgPMGQbC9yZ+bWujr7uWVGLjoG4nkIz+u7Ej5DCYLC1sq1V0aI69tKaxZanAaXLNrrhBfS13o90sh++Sd9EzczvC4UYrWsqszD7W+9DeO1Tg0qlq3Yg5o5/DO5wD1w1M5BOJUVhe1qe+LDm75Tuz36CZO/nSA24cAnu/FOPh6/l6CEbRR6/cF9H1caLySzacrloszF+sTD6uzYJ3ZQG8DJEx31dG4TFdDQIa+fy7HRtXGnadM0EeLF4BONathJhC0r6mWEALxrJBD1G0iFsUzNYCcBoHF6ub1la3fRY/5QaVLPWGc1UMTqmaTtodVSyBq5fE6RJWVO+M/FDsl3lbWfF42mq0GpgaaAsGti10Y2jp/rAkLlE72fo/vQSpFMxuCcei7pZp4gxQ92bENMZcC+D3rs/uRjxnkVwBbdHMrQKgdlnIbLh74h1/geu+t0Q3OYaAer6ujaBZbaSyYQAe7klqJKhVoTW/AHRTf8Uc7G76uFp/n/wTT4advegR4gWnEQsLIAef0i3Ug0iiYPLxSvnrQmCP0oiZQI8CnVC3kbqQm/8Yk39ODBGjKW/WI92NEg5AF4+N2wxFjyH24takWgzNI5U1YJHkOeCC+PsE5CvTEYh0KSGTMsN8IoBccVcMxoO41iaox73rC0BHDl5KEWKmg4skDeWToa1ltGkAZ/Dhgu3DiDosiOy6Q30Lb1WTD8w61wRG0fRk+RACwUTLCjt//4mkIqgaY9nYLNnEjsoBHjOmtkisSNf+S5akFjD1W53Zq+jG7e/9ddI9C3N/s1mc8Hb8k14GveCs3aQI5YusEhf14gT9coEC0Eo3b6mLEciC8gULlW6hGkJFYkuCqGbmH9KxuPDeA9lM2b80irY27lBgMPRIGYDPKMMIVrMIPKlJ9ftPSyLViq7M7wRcxzzSwJ4aqm/hXzIHFuPG5ft8qFfPYfFAnZ6tDTybX6+IoiYdn4FgrEYjpj2qeaE/9C2AFGPW7Od1cDSgKUB8zXQ7LHjjDk1AuR1r38J8eWZODzvhIMRmH2B+J1xbwRO+UQCmljPEvR8ch7s3ulo3PnebHNalAg6aFGKhfsFwNMSku4yOF0aJnqX3Iho+2uZ1HyF2FzNcNbtAk/zXvA27S5i0no61gmr4EiJdFeXs0wZ4+8Yh0dSYyXnINfMv1N/rKZBK6mUQvFqWYDXsR7JhLm0I+XaB7MAXj5gp4cZRA0f8W8y6YhgmaCZ8r8rgoh7gLwAj406whuwXc2uQ3SmhSTVFJyPZVnZNl/ChdbC+XkhwGaBuXId+fL3q8d6x1l8Z+IHBZyzg/N8tm0eegayi8o/e2sESwOWBnI1ML3GgdNnB+CyA+G1f0R/6/2iCbNf67a+SvxeiICYGYIefx361zyHcNtdcDZ+BfVbX5K1/hFk2J0uAUSMggcJPOScU7FOpKLrEet8B9GOt5AMrcgup2bOJfCN/wpCvR1iviMhMvmBY/dsXqOr5q/RedodLtQ1TdKVwEGSaa8/KABfoT2ULuXeLQzgqfHb6d2PQrhLnlt5FpXPzWwtWlmuLHfAWCSCmf652T9XEuDpXXxuOwvUFau56rpOL8A7asLr8NsCBScvz/fjG7YX7WzuQULk6lq1NRtLA2NbA/PrXKL6BWXzB6chHc5UQ/A0fxm1czMExKSkCHVvHhLn5vL6UTPAktDx0Q+R6v8E3qmnIzD1W6ZxlNEaQs63XNejAJ69yxFa9zck2p/Nxg+W03KmdQoIdAl4y1nBQiZw6B1D0qkUiq8bBHjrBHAcDVKKBU8tpi7fmgslmSop4GhtJrDLhsOl0+jatAoPtAaw3j1oSbW9ufhP+SPTB2bhhBMT7C26QV5uvJ0ed6qWpS6fQtRi+yyANxq+MoXneMPKINKD4TH5G6sQHA97SRmotcy/E+BZ4G70nw9rBaNbAydM92PHAQqVeO+n6F1ykyAmtvvnom7e5XD6JgpuMFY7IAjgg4xxRsxk7Fl2N2Ibn4XNMwUNO94Ju8MjCH7NptxwOBywuzxwubwi65MxZ/1r/4pw621wNh6A+q1/JDahXMkNWjucBVNlWLscm3GKdL/qobORfHxaJNa1DRNFtRHJqae1zmr4vFiAp8dqpwevSE+lbCvd5krdkAfxpk8i6LINQjrbKx89lhfgebw+cX1/uhtzHdsZBnh6UKpsUyrAE2+AA+43PQqrhkNjzSG/BvRa75yxBI6f9nFBVUrr3UurZqHDHbAAnnXwLA1UgQaOnOLFbk0esIxtJLwerZ/cgOb4Ytg9E1A399JsUkOCL2g2iMD80Pp/ILT852L2gfk3wtuwY1ktWFJNzPpkskGs+1P0fHqR+LOn5STUzjhJ/B4N9eqK9zNL7ZJ8l25oujrLJRKM6cl4ZRyjN1CfLWeWb04yIYCVTHLrsJZrHaX2axTg5eIZLc5fPfOTuEZashOhNnR9dJYg+q7f/lewOfzoTaTx5MoQPu9JiC4LAjxxiL0+9Kd7MNexrW6AJw58NJR3zoUAmBGgZ4TtWY8CrTbVoYH7W2ux0Z2pMaklR094Az5b4WoVSvesZb3T0qj1uaWBymmA2bW05s2rcwpy1q7FNyLV+booP+afeiL8U07ITiYRWo2uj88Hkv3wTDkFtdOOFda9vs71gq6j3MLMUVoS+1c/i/DKu8Vw/inHwz/tu+L3coMt5fpYWYEgT49lrRS9SIqUaKhHuMELiQRB3BMmnuRzv7LsF2WsArxC1G6lGJ/ktawJzNrArLccWvmg0KXDOwn+6WfA07QHUmng5s960RFLFQZ44XQ/xvkmYbx90rB9VfqD1Ta9WICnBQ6VY+VDxaUosZQvg3WtORrQy33H0RZOHFp/Vm0GBHh/WbkVeulmsWLvzNkkqxdLAyZqgDx5uzVlMtz7W+9FeO2fxO+exr1Ru/VPEF73F4TWPYt0ZCWc9fuhfpvLxed6LEtmTTND+DtOxAhGN72G3qU3iK5drIKx/e0DIC+O3o51Zg2p2o9MfGCmcDepUcoIbh1Ot3CN09JGNzjHTBNBIA3G5wlw4XSJTM5cejQ9SiAPHvew2kWvBU/LQFUsNlEmk2bLxv33CsS63oOjZg6S/cuECn0zzkVNy2H4+/oo/r4+og7wYukwvDY/Jtoni4uUXHjiS6fDFaon7k5rU41yxcj+rIoWWpqt7s/1umeNADwr9q6699yanaWBAyd6cODEDJ9d+1uHZatSkGw4FWsXf7d5pqJhxztE3F0+jrtyapI0LbSeMYOVD9ee//5YgB1XcCcEF2QAH4WEyJH+nrIQ+cpM4kq5hSWg0KNXxoExvo4W1XwUNbQ8Ol3ebCLLSMUw6lmPbFMtAI+6pds8EW1H13snwWb3oGn3pxFe9wxY2cVRuwsatrsOK/oTuHtp/3CAR3fsVo5thqw9H8BTgj0jyjLatpDJU60vC+AZ1XB1tdcL8GyJNE6a8qHm5P+wdAYiHrdlvdPUlNXA0sDIauAnC+pQ68qQ5/YtvwOR9c+L3x2BbeGZcCj8E/YX/9ab1VmO1WSsWhOEJa/7v5ci3pW5BzEGKjD7PFEFQ4rRMmx65iurSNBSWIksVAko6UKntZDglskuAshGIyLj2e2rAfVCK58AwDabZlkvZitLKyCTaVgdpFqlWgCet6Ye3hrSBD2DcNs9cDXuh+DWlyMV70LHO8cBdi+a93hGqPGqj3uGAjy6ZGc75g2z2CmVbrRkmVkbpgR5WgGLxZpBzZqr1U9pGri/LYCNrsFUb9XeksDCydruWV77u5VzLXBX2pZYV1saqJgGrt2+Dh57BuQlw6uQSvTDVbt1dnxyrNE6VIm4u3yLlhQlAuT0LUb3f69AOpHhw2M8lGfcAfBPPUlk9hL0mCUyU5X9mVkXtdD8JLn0sBhDgryBcm0SAHVvWo3apkmC9Ji/a5VzI1ghaKHQDcw4v3QygZQgrKZtNI1UIpMwMJJSLQBPzqNnwD1bu9Vl8Iz7slBNxwfnIBVehsisGzBl4k54cEUIQ2hSQulebOVYUFCPIwXw5KQkp4xFbjySx738Y1+/OgjkybNg3dnedBcCtqDmRJ5o2xZRW8wCeJqashpYGqgeDSwIOvG1iV5M9GVe9Gg9IrCLhvtGtHKEUkMMdPcFGiCQCAHXonORjKwTQE+4zvZ4NvN3EwvUu9xe1NSPF+C2e1OGP7ASIhNM1KyGuWTI2RgxnVmyWi7gVDIJu8OORCyKeCwiQCOzmpn4QdBZCaBfP57l8bStkuWMwautnwB/bQNSsQ50vHtC1j3LhCRKz/IH0b/+WSS2+hmmjluAB5b3DwV4+bJlhxzqKqgEUEoCRyW+DNYY5mngntZadDjtAuwFYiEcOW2xoc4fWzobCY/DAniGtGY1tjRQHRr4yfSIcPeZzXFn5urqmiaDVRworGUbXvu0+L1xl4dh94wzNVuUrlB/bVPFAZ7kw2MZOZaTU4rbS3Lo5qzb3GilCvLssX+6aJmoQSulAG38sdlUSaeV49PyJ2rgOhyIhfoQi5hfWUS6xc0E60bOIDHPuJY5Qj/dn/wIrJtsc9WjadfHha5yibk3RVP43896MwDP7ckEttIqMt+xo/i9mt2cWi5aI4qz2o4eDSxOLtKsWJG7GgvgjZ79tWZqaUBNA/Y4cOn07qpWTqB+ApxuD+I9n4Dus3QqiuCCm+AK7gAmHvR2msNVJ2lLRAbtptUV00kmg3i8SBrJzXolPyAtanSv0qomKVz0kk9LgCerghDEsD9BpyIAHmP+WF84LSx2dptdlKPLJwR7rMvKufLFQMQOGhTqma5p9sFxGYeYSsYFOfNISCqdQuOEGWLozvcWIhndBFfD7gjO/6lwbUf6u0QJv4TNheX9SfxlbRgbIylkS5Xxwog7jAWOXUyfPzfMTEJDJcCrZiBquiK38A470+3oSw99e9RSiQXwtDRkfW5pYHRowBNN46KZxr7/lVoZAQirCxCQdL5/snDV2pwBNO32RzGFeCSEUC9Lr5XG1+evbRS1XisN8LiGYPNkUc1D8tcReNHyJhMlZFazv64Rbm8AehNMcgEex6prnizi+PQIgSGBmChjp2LxSyYSsNttiEXDgjdQj0iLnbItuf0ELU0FhdZMp5tZx25BRRNe+5TIlnXVbYvgthnC776uTSJr+8a2IFI5uHcIwPN4fJhin2nq9HO5ccwAekpOGFMna3VW9RpYm1qJJPQH3UqAx4VZHHhVv73WBC0NaGqgIZbCmTN6NdtVuoEMgGc2I7MaKe7GPVC39dVDphKPRtDfXVziBXn4+MAfCYAnwSWBHMGX5L7jXKKhPmFFosis21Bvh4ib1BI1gFc/bqoAawRvBMW0ptGFy3BHu5NgxyfcsqHuTcNAM0GRw+UR19DyOAgU0+jaqB23SODKvaTQ+ictiLQK9laAs49zZqwl95lrkZKIdKD7w1ORToURXHAjXMEd8XFnHA+35S8qMQTg2WHDTN98rf0w9Lka+aEZIM/QJKzGY0oDnybfR50tk3mlJSQ5JgeeBfC0NGV9bmlgdGng8pbqctv6Ao3w+ANCiZv//Q3hpqXQTetrOQruht2yCiZoYawY3bd0OyaTCV2ExTIhgcCjp8LWJFkeTXlKCLoI+JTPdJkZqxavp3bCmKhCd6y0birjybqYSFKi1ZMgiS500rvocRvLdXJtpG+RbnHpQtb6lhDzELQyB5gJIhly6BToZqUVMBNfmFKs1y4AawbYsebxYHZhMroZoY1vIN71DlJ9i4B0FOt8/+//t3ce4FFV6f//3js9mVQSQk1ARIpUUextV3Gt2HvXta77Wxsgq+6uCjbUta1trSCiroKioK6K/te2uipIB2mhJiSkZ+q99/+8586dTCbTkswkmeE9z5MnZe495XNuMt+85y0YPX4aGnwaHlhdD58afUZtBJ7dlg0ZJvjg7bQ1j8VdvEeBX+8ogfXKStglvVZyrEYCz6O5Mb9yIlvw4sHi15lAGhLoSUIvr3hg0OG9fvVd8DdthOqt1v/BFOYnO/LHPgOTvU8b0iT4mutjHyGSHxwJge4QeDRhI5qUvo6WAkZEF+cUCn+8eOXNqB+jNm0bIJoGIfCS0ELT2lB3JKz9fk+LwPb7gqMYFkjDp9CwXCaSkDk0t19Hp+2tXw939bfw1v4AuNa36qbaNhZlI2+F3dEb72514btqb8xhWgk8urIl4KIOI03jOzpHcV+owGOrXadQ8s0hBHaqW+FHyy9kPIFHr3MlC36EmEAGE1CB6QN6hkUv3H/MXbEIzZtfgKq0JPI15wyHteAQWHJHQ7bkwOQoFZtD1h2yHPm9zeJzuM+e8PUrHthtAs8QMLGOXy32LOEPR8ezdF28ZkToeqjyh98jrF4K5dcjq2aymiTBkZ0vfNno+DZSC49GFUEdig8m2SysamJvvC401+lVVUIbHakSG/JRpNZc/hpAwSCWHEimHEiBz7IlF5IpWyTFluSW41eqiuKr+QHu6u+geVsCcjxSNmocB8CSPxED+x6MLFuu6H9pjQ9zYxzNGnNrI/AMkUfO7EZEbUcYs7jrCDW+JxEC7T2ipT7J/WBuxWi24iUCmK9hAmlKQPIDd5R2v9Aj/zQ62gv1oar+/lw9CAAyVF9NK8Lm3DFwDroKZuewVj8Xx7cUFer3BqpImES/dPzXWFcFfxdXf6B1ZecVCaHTVLs74lNiRNz6PM0i0CJeM6Jwu7KuMJX8MpttoqwaHY8alTnizZVep+NWr6cJrgZ9D0OttvR97fJb4G9YlUhXEa+pMw1Ac/YE5BRNxKA+rYNed7gU/FTjw/+r1I//47WoAq9Ja8Bw09h490d93RB4bLnrMEK+MQqBdcpyOCS90HWsRsezRqMUQB/uPAqSI/598frl15kAE+jZBCxe4PZBiQs9soyJN3mRkiOxtZFFJ9yfKvxOSgJMR5Dhecp8dUvhrfkv3LsWQ1Nb/k7J1hKYcifAXnQ4bIXxM1okKqISW1ECV0kSRAAEgLqqbULshLdgvdQEq3i0JEbeLqx33dEoEphENB3l0tded7OIvCV3ORKA1Ehohwp2o+6uMd+6FVPga1gZrKEM2QZJtgKaP5Ccm1ipAZ/C1tHUsjkHjgHnQ847CLZs3ZprtLX1fqxp8GFNvR/VnhgOdxHASbd9vV2DGbi0dF2rl5u1Rgwz6c7p7W2dSYtipEDh9Cftpb53XF+hbocXif33QkQMkUdJvBdWHsEWvL3jMeFVMgFBICH/PEmCLJthMpn1hMWBOqsxEQpxR47yKlTVcJ6nz/TG3TYVCvl1WYXjfcAXL6Rzf8MaeGu+g2fPd1CaNwdfka2FMDkGweToD3OWngONmq/2J2iaH7kj/ia+7+rku2TBI0teNJ80ev+nyhckiKjyRbymW8BoHcnxt4s3XrTXae8paTU1SodCAREUgUtH7mSoovQw1KiSCB3JGo2Eev1qipTW91225CN70DWwFet1k6M2TRFl+FRvFczZ+wQva/RrWFOvCzr68IpnqmNNuv3n2uDdslfFmQO/Bf0DQ2Wg+sq6Uu/qxnnuupp4+owX7XjWYtJ/4XxKy3/D9L0h8NyaCwsqD2aBlz5bzTNlAp0ikJC4E4JLFpYZsjyZTJagH1WMd2Y9sFOIO0WPkFQV/WtRR9Ww0kTugax5ZBWyOXLFmKHN2/Ar3Lu/gtq4FP7GNTHX7xx6G+zFxwmB6WqoFj57XdHIwkX+ZtGsh+SvJnICaprwwSM/NqonG6kubYuA6pokwpSjz2LNEphU1Q86MIdMVls9mXK0RnMnn0KzxR7cM83fhLrVd8LfsDp4myVnJPJGPxr8XvehpA+yENOPo49R5VXx9hYXNjUlz/ewlcAzZhXvFyOR6NjO1GRjgdcVv6bpOUa0ahbxBB6tltOlpOee86yZQEcJxHsvE2+5shzwx6LcaVb89PMybN68CV5v5ECurKwsDBw4ACOGD4fdbtPFnUIfPmHpER/i6DIxywuJPUqPIXzBQpL7UrLkpk3PiyNcs3NfgcBT/RVUt24Vs/Y6DLnD7g6i8bqbhFUt1S0o4ED1cLdFTN4cKVGw4CSiVSXB3OdpEtzNNkeXBI0YufWSwadh3YPwVH8pRD41k603ckbeC7OjTHwfLcI4dOwHduYh2ySj2CaJ6hOpaBEqYe+tAAAgAElEQVQFHg1U7FXx+yjJJJMh8GiMWMewfFSbiu1O7z53a7vg1tomdTTEnbG6UCteqB8eC7z03n+ePRPoCIG+PgVXlEVPuCsEnoUc7vXkuH+6+Vb885//hKJQktu2FhcTHeXl5mLChAk45ZSTceYZZ6BXYYEQdiIgQvGKryP5p8Wbv8iFZnPAaqMoy7aVHLw1P6Bh3QPQlCbRlWRywNHvTNiKj4PJ3ldUavAkkFw43jzivW4ERkSrVmEEHlAFD6oRS8ffkdZjjJPMcm7hcxcWx5xCEeBCrfqH8yGbc8VRquqvg+ZvhKa49byFWpj1TLbAZCuByd4f5ux9AdkK17Z5ItkwNTpGdw66Dtaio4LDNtZXwe+OnnyYLpy5gwJlUt+iCjwxtAJMH9jaUTWSuKNLw4Mp4lnwjKVFE3ks8FK/+ek2wjZ1E7QI/xXHEni0RkPkscBLtx3n+TKB5BDI82q4cVDkMmfhAu+mm/4Pzz73HIYMGYJDDj641QR8fj/27KnG5s1bsGXLFvHaEUccgUdmPYxR+4/UkxaLqFey5iWWyinaCkmYUFky4/2VRJ8hUhrWzoCn+j/BW+0lJ8A55GZ0lRXPyHUXbbxg7riQahbEmY7AaV0kpulecTxusQYichOzeLbniTBqBNM9nqolaFg/qyUIoj0dhV8rWeDoOxnZg67WX6HE1VFSqITf2lXijsaNLfACMws1cyci8BIVd4mIPA626MxTmFn3rlGWIVvSHZWNFk/ctRJ4O8YA5ENt5UjazHoyeDVMID4Bm1fDrRFEXrjA+8Mf/ojnnn8ekyYdj0cfeQRDh+rHo/r7uAaXy4V169Zj0eKPMG/ePFRUVAhr3uzXXkWvwvxg8lyqj5rMRtbE7PwScYwsmupHU/krcO34F+z9z4Oz7Ap4mhtEZYlUN8N3LlrJNMNPL5HkzamYq36MTAETutUueKQqvqMjYgssuWMgWQohW3vBbO8L2dEXJscAyLIeNav6G+Cr+0VExvoaN0D17BKWU0vuWOSNvCfYt1HxIto6ntiUi2ZZgmqO6YKXCgyJCbx8r4obAse1idSBDRd4JNLiib5IQi6RsVJChTvtcQT2aJVo0toes4QKvPAAC2MRfEzb47aTJ8QEuoWAyQdMLWt9KhVN4J1zzjmY/dorkOjcICQdiEipQo75sglvzHsT06f/GQ0NDfjLX/6Cm268XhS+J0se1ZwlfWE48JMo0lOx0A8DLnoh0bg0hghEEFG9JtF/qyNi4bAvwUKWPbseKNC48SkornI4Sq+FNWcI3M318DTViXtbxjPUaeCz4ewfmIMeDayvUdMoaEQPDDBSx4i1iiCEwNwD3Rh5/qgGrUjKHJg/9RWMpFX8IjGw3gcNGHrkraeZCb2PTmhEpsAoYwZkduCeQCRzYG/0NcvC6kkCUxdptWja+KzwY5QkC2RHP2SXXpGUZ0/Uwq2vEtbaZzfnoA4yFBJxLZXGkjJOZzpJyIJHA4Ra8SIJuNBJxHvduDbR6zqzQL43MwhEOp5NRNzR6kMF3pvbR0MzS2zFy4zHglfBBNpNQFKAO0Jcj2IJvLmvzw5a5EJrpZKYIL8yTZJx5ZVX44MPP8RBBx2I9xcsAGVaEaWwvC69mkFArOmfDaGkCzwj1Qql5KDADHJ1Mq43mXW1QLpIL8caSMNhMgsBo3r3wLP7M6iqD7bCw2HO1h38qVGEKzn6h4rE0KoYLYl9W0SWHgnsh0b1U4XAk4VQC5138D4JIjCEXiefP8XnCQab0Fpo0pTfjgQXlfwS0k7UWG0RtzRGUNwZ4lYIPBLPJKJ1QRw6ZguzgLij4BbVr4tiyYSsvKKgKPY3rgP5LAqxKlthzhkJS+4owYdINvg1VLoUUPRqpVvFLreCareKBr8KekaKTBJG5ppxbF9NHC17YIZZllDv1/BlpQf/jVMmrN0PZgpuSFjghVrxogm0aPPjY9YU7Nxe1uVqZSmckl6mxWjRImfD0YQKPHqNy5btZQ8PL5cJhBMIKW0WX+B5hFVOBE5oAcuWbNLLXplteOtf72DatDvgdrvx5RdLsO+QwbrA83mEqCFxQDnWhGCRZaiqBsWvwGQ2wSS+1/PokVChMQzrG6VuCVrNjKTKIquHCRqJIEqg6ymH6tkN1VcLyZwFs2MgTBQMIP6xbQ5a4YSoEelb9Dx8ihhTg9li1kWmkerF79PnQlY4EnhmEnh6fkCaCwkjVdEtfnaH7hNI1js9kpjm7wuMI8GRkw+T2SqEpuAmyyJwhcaVTTJkiRIJG1Y4JZA0WuSt0ect6+JYH5Neh2AmDI/GnCmwhUSxyQSHsyC4y/6mTdD8DYFgCBlUGk6TsgTrZpiwrVlBvU9DrU9FlUcXeBXu1ESyducvX8ICjyYZKeQ83tEr3ccCrzu3uPXYM7fniX+iEkkf0FNmXatVo0FrfaySqLgz1mCIPPo8f9v+0JzZbMXrKRvM82AC3USA/g4mKvDoKM6wTpHlyih1tWLlapx/wYXYuHEjPvxgIX5z7NF6oIXPq1vAKMeeyYyKyt1YtHgx3nvvfezZswe9ehXikEMOxeTTTsXw4cOCUbh0RCmZdGE478238Omnn2HsuLG46MIL8NVXX2Px4o+wcdNGWK02DB8+HCefeByOPnQIVPcOKK4tMNkHwNb7eCG6qnZXYsqUaYLuzbf8SVjUPvnkU3z88UfweLwoLS0VQSKnnnIyiot7iTQmdJ8hBMX8TWYsX7ES772/EP/73//Q2NggRGqfPn0wfvx4HH3UkZg48SBd4FG+O6rWQGlcKJjCbBU+ix9//DG++GIJ1q5dh6amJuTk5GC//YbiqKOOwsSDDkJJSW9KTBcIotPF3YYNGzF/wXv45ptvxBE4icNevXph9OhROOLwI3DMMUeJNCUkiI3Ew4prG5avWI2/P/UKnNnZmDblRqxeX4kPP/wQK1euhMfrw9jxB+Do4ydhwpG/Qa0iYadLwTaXgl8bkpd/rpse5zbDtkvgRbLiGT3GEnos8Lp/u2duy2vjG5AuIm+7uhlq4I9GqPUums9dJNqhVjz6+p3KUZCsWSzyuv/R5BkwgW4l8OcBDa3SpBhBFuSDpx/R6hY8ERmrKsKCRCXIRD1Tiw3btu/EqadNxqpVqzD39Tk4+6wzA7nwyLJEFTIseO/9D0Rk7ubNm4WooubxeFBVVSWEy9VXX42b//RHMlXpB4iB49E7pv8ZCxd+IAQRibnq6mohkOje5uZmIRTJCnbVVVdh+q0XA55NkCQrbMXHCivXqpUrcfY558Lr9WLMmDGgFC/V1VXiHhJ4NTU1QoDtu+++ePqpJzFkn0EBgUcWN5OY/yuvvoaXX34Fu3btQnFxEXJycuHz+cQc6urqUFtbiz/+8Y9i/mTjEzkAJcBstqKyag/uuusufP755+jXrx/sdjtMJlnMp6GhUaxh1KhR+ONNN+HQQw8WVjqy3tGan3r6Kfz66wb07t1brJ/Yu90eNDY2YufOnbj6qqtw1913ITtbjzT2N64XNX4Xfb4a0/48U/R1+OGHi2vr6+uFaKTxKnbtEiLvhltux9ADDxPirrzJj9X1e7nAK/EruKo0cj4hFnjd+jcq6uAzt+aJyNFIracU5o5HbpXyM3KklrxBZL1rj7ij/sMF3oJtI6BYTZCdxfGG59eZABPIYALZZgm3DfQE8+AlJvDMwjpFAm93dQ1OPOlkLF++HC+88AIuu+QivaqFpgpx99U33+Kuu+5GeXk59t9/f9x2260oKipC+ZYteOutt4VVj44rH33sUVxw3rmiEobus2bC1Kl34MWXXhKCaMSIEThh0iRMOHAC8nLzsHXrVsxfsACffPKJsKbd+7c7cd7kcSLprslRKgTp6jVrcPLJp4hrS0pKcMghh+DYY48RVjPq89PPPsO8eW8KEXTBBRfgqScfN5wDxZFsY1MTpk+/E//78Ufss88+uPjiizBoUJlIAr1p02a89957eOedd4S17O9//zvOPfesQECKHigxddp0zH3jDeTl5eGWm2/GmDGj4XQ6hbD8/ocfhHWyd3ExbvrjTRg3Vi+N6lcUzLhvJj76+GMUFfXC76++GoMHDxLHxlvLt+Lfn36Gl19+GQ6HA9OnT8ctt9wCX93PUDxVMFkLsfDfy3HDTdOwe/duDBs2DBMPPhgTDz8Kg4YORX1NDV5+7hkMHzESV/zh/yAX9sF2suA1K1i/t1vwYll8WOD1rL+AM8vzQDWG47XTS75AgVTUbWXp4s2PXo+W/y6Re41rwgUe/ZyseCzw2kORr2UCmUeABF5plgkX9FGEYIsp8BQKIIA4cjUE3p7aOvzuxJOxbNky/OMfT+PqK68QUREk8CSTGZdcejm+//57HH/88Zgx417k5eQEfflIKD32+ONCAP72t7/Fm/PmIi83R/idkQ/clKl34LG//11cf//9M3Hzn/5PiMHAGSpqa+vw+2uuExaygw8+CAve/Dsczr6QrUXC6rhm7Tocd9zxIpULCbS5c1/HhPHjhJVNBPPKJrz62hzcc889wpL35ZdfYN99BrdE80omfPX118Jad/jhh8FmterC1Uz+hxbU1dXi5j/djJdfeQVnnXWWsHjKsh4tu23bdpzwuxOF9ezpp58WR9G6j15LhK7L7RZzyc7O0qN3A1HHK1auQvmWchx22CHIy80NVssg656qSfjLX/+KWbNm4ZBDDsb77zwLp6UJmuoVaU4++PcvuPjii4Wl85TTJmPG4/+AtbA3PORzSD6MzfWwObLQLJlREfC9Ix+8Ha692Acvy6vhT1ESRerm5siZm43j2Uc35cJtIbqBPxAaML1/a7+qzPvT0fUremBzLlRr9Hp30WaU5XHj7LLVcEhO9JJ6d/3EY4wY6Yi2IxMMF3kfbtsPHmc+H9N2BCbfwwQyhIAh8AZlm3FkIZIj8IQE07Bjxy4cdfQxwvpGR6BlpQOEZc0QOXQEWlffgEknnCiEzqOPzMLRR5NvmR6UQP5zZMEbOHAgvljyOXKcWYFgDxJoVEPXiv98/S1OO+00cfy65JO3MO6AwyBbckRww5p163HSSScLC96UKbdjxr33BJIwU+QpCVULmt0eXHzJpfjww0V45eWXcdGF5+vRtDQH4Q9IgQ1SMJCCfq7711nE8fX7Cz/AWWefI/zx3lswH337lIgn4/sf/ofTzzhTVP34+uuvRbUPiu4NjUYO5tWlur5ivEBamUCKGBKTBi/qkxIs0z0kmI855hj07dMHb819BmNG9IZsJctlfyxYsADXX3+9sBK+/u77GHH4sULINfo12E0SCq2U+Aao82modCvY7VFR69Vfz7SWsA9ePH+tcIH3aHkutOz4CWVNXmDqIBZ6nX2wHtycA8UaJwGPCpj8Khzw4YzSVZi9c3zb2scKcEa/L5EnFaCf3BJ239n5deb+nepW+NG5rPA0fiQr3ru1E1ngdWZz+F4mkOYEQgVeWbYJD916o0h0HNEHLxEL3lVXBtLcaXjvvYU497zzceqpp+CZf/xDBDIEcp7o1CiSVNXw+2uvx+LFi3HTTX/A9DumBQUgCbw35s3DgQdOwDv/elsEQVCOPRI+FGFKFSHKt+3AkUceJaJ457/9Eo7+zYmQZLuIbl27/lecdtpkcQQ7+7XXMPm0U4QoI9FEqUiEJc5iw80334qnnn5a+MI9MushKCTwAvV0jVQloTn5qKQa/dzv8+K7777Db487HqNHj8Zbb85DaelAsbTy8q047vhJwk/voYcewuWXXRqoeEXWTbpCF1RGLjwKmBCZ/kQULaVKMXLn6ZHDNE+jrV35HY445lQUFOTjlX/+HYceMUkkL6b733p3PqbccjP8fj8WfvE1tMK+KG9WsMejwiJLcJIZD0CToqHGq4u7ZkWDSP+XYa2twFMBWQFUS8tKIyWHDOcQLvBm7cxt1xtnvHqBGcY9qcuJ5Wd3SZ+f4471+tZxUMm6GtZkr4bLSld2+/FtpbYTHk2v/deZFp4uhb7/tHIU6jnYojNY+V4mkNYEwgXezFv+gBdfeC6ywAsGWUTzwXsel116ieBBR6APz3pM+IlRIAEFUowYPrwNq+o91Xj77X9h0aJFuOSSS/DsM//Qi9hLkrDgvfPuuzjyiCPw8ssvBgM+RDJhkarFhpr6Jhx66KFCSL059zn8dtKZQiBRHdi1v27AGWecKQIhFr7/Hg4YPy4g8Lx6CpeAH+EDDz0sjokvOP98vPrqKyLYo8UXUE/qvHt3FdatWyd894y6srU1NSKy9uFZszB27Fi89dabGFRWqh9RU+TuzbcKP0EKrjj55JNEoEf/fv2Fb11xcTFKeveGxWIWYxlRtLrA01PKkBVu9Zp1IqhDWP40BU0Nu7Fmza/4230PoV/fvnht9mwcdthh8KoadrpU/Gfx+7h76m0wm81474uvUW/NxeYmRaRBcSsabCb9vc6raELYuTJU3Iln8Pafa4O6ta9fwRVhQRQkHsLr0Ub6bQ4XeI9U9233L73sB6aVsjWvveAe2JwDNYL1LhFxFzrWgvKRaLC2/JckXlOAyf2WYH/TAe2dVtKu36PtRpPW0On+Igk8q83OefE6TZY7YALpSyCawKNjx3lzo0XRmoNBGeVbd+C0yZOxevVqzJkzG+eec7Zer0GScNfdf8EDDzwoImfHBoIIopH68cefcMEF5+PBBx5oJfDenT8fxxx9NF544Tk9mtfnEWJHCDyrDY3NXhE8UVOzB2/MeQ7HnXCWXhvV04x1v27EmWeeJaJHP/xwIUYM208XiX6f8OWjSGCyjD319LMiWOHss8/G63NeC9abIJFFwSOvv/4GVq5aJaxuZpGfzzAIaGhqasaSJUuEwKOAi8GDBwtLIwmLyspK3P/Ag5g/f74IiqBoWLvdBptN/yDNdtZZZ4p1Z9ntQcvl5i3lePXV10RwBx1dWywWOiQOWv2I4eKP/i24zp49G2MnHopNTX44TBK+/Wgh/jL1dlhtVsxf8jVqTdnY3OTHdpcq8t7pefQARdOgkGZM30c37sxbCTyzF5jSweNSEniztuVCIt+6ff3oUEFd9suLu2GRLqjSKvD8zv1avUTi7v0tI+CFCT4qoUJJKsn5NZBMnH5XLukf3bo3e/v4YPSt3ePHKaXfIV/qhd5yv4hzJBFWoW4P5DHS/3ujX50CqRj9ZD0tQGfar8oq2CR7Z7podURLHZHgI4FHv/BvVIxpl8W5UxPhm5kAE+gxBKIJvDPPPgd/f2kuepuag2lS2ubBs2Hpsl9wwYUXiRQoC99/H8cf/xvhs0b+L3/92z2YMXMmDjroIEyefJqIJo3VRo8ahSOOOFxXIAELXmyBZ0djsyco8ObNeR6/PeFMIZTI340EHlnwhMD7YCFGjhjWckRLPnxC4FnxxJNP47bbbg8IvNl6IIcErF23Htdccw1IfJIv3UUXXohBgwbBbKEjPj3VCvn3PfXUUxg3bhzefPNNEczR0jQoioovv/wSq1etwoYNG7Bz1y4R9EG8Nm3ahKysLPz+97/Hww89KBIg766swrXXXot/f/qp8Cu8/PLLUVZaArtVP1akKNvaeg9mzXoE/fv3xzP/fBkDx00UQRSxBB6lQ6Fj2gx0tYv6SLU5orV7NdwSI5givKdQy51xLEv+eh0SeFGSKfeYvwQ9eCId5U1LknwaLh64NOLq5pWPgc9qgmENpD9bA+TQX2BgpfITcqX8iPe7tCbsZxrdaXLrlOVwSPF9OuMNFG7Fo+ubtHosrDyCBV48ePw6E8hAArEE3qxX5mJbvYIDsupbVbKg6g5CHJmtmPvGm7hj+nQRaUrJfIftt68enCBJePiRR0Wt2jPOOAMvvfiCiBaN2QJ54MTf5UCQRSyBRzVp6xtdIQLvBfz2hDNaCbzTTz9DHHW+t2ABDp44IWAFbH1Ee++Mmbjnnntx3nnnYQ5Z8HRnOMyYMVNE8e6333647957RIoVym8nzp8D7T//+Q8mTZqEUaP2FylXxBEtRQEHKncY14UmiqZKHiT0Hp71CP75z3+KIJJ5b8zFhAMPwiuvvII777xTCMq//fXPOP3EAwC1WbdqQoK14CCsWbNGBFnk5uXh8edfwr4HHMwCL8KDFTHIIs+r4cYYIu/VLU64PM3waoAPEvwUukx63hl4A9ZrIneoGcEcweiaQC+UJZtbdAKdEXihvZo8Ci4s+yUmajouLZb7gsSbW2uGTXLEvL5eq0Gh1BsOKUtYATvS1ijLkC3ldOTWVvdEEnh0gQ12vFqxH4u8ThPmDphAehGIK/CaFUywNbaK/gzWooWEy664SvjPTZw4EQvefQcWqzko8D5b8gVIYJGP3KuvvIy+fXpD8dN7Gb1JimQoIl+c7tOmJwkW4lCmPHImkSYlpsDLykF9fWPbI1qydAWiaE899TRhZXv22Wdw2SUXiyANEWRBR7Rmq6i0cf31N4po3Xvu+Rum33FHsKzZGWedLSJWKSr1zj/fIe612p3BI1r6/rPPPsfJp5wq/AzffustlJUN1Ct+iEZj6DzoyJi+F9owUDt2x64KkUOQAkQefPBB4fd4ww03YOHChTjxd8fjyVm3QnNtFqXYZFsx7L0niV5XrFiBI488EgWFhXj6pdcSFnjVHlUcy+4tLWoUbR+fgivL2iY1JiGheZsi8pGsnbewsMDr2KP3wJa8VoExHeul9V12jwfnlJHfRfIaiUMFigjcKJQSTzK8WvkZzpBkx52ZUSSRR0Ec83cdLI6wk/Ecd2Z+fC8TYAJdRyCmwHtxDvb4gWafhok5Xl2yBOqkkiibM2cu7rr7bpFzjXLJXXfN1SKylAQaBTrU1NbhN789XgQJ3H777bjisktE7dRgXdiAkKNUKeL4NlCui8aIJ/AoVYnVloU9NTUBgVeDN+Y8g98cfRhkez8xBpXnOuGE32HHjh3COvfqyy8KgSUMJiTwTGZs2lyOK6+6Wgi5999bgOOP+61e/1XVcNrk0/HTTz/hhhtI4E0XvnW0Loud6rrqpckeeexxTJs2TSQVpmPgskCQhahT6/XBYrXo1s9AVG4AolhfRWWViMCliNfHHntMpHu5+uorRTm2k343CU89cjvgq4A5ZxhM9v7iVhJoL702B9ddeZmocvHSvH+xwIvy6xIzTUp4apQZG8zRqyIkQdzRHGnMcOsd/ZweEDoO5rJnkXfy1XIntpujlKzo7N9KFcj3N+LU0vWd7Sl4P9WWHWkan3B/sY6BE+4k7MJwoUfic2Hl4SzwOgqU72MCaUggmsCjFB9/ffgx9B+i+zf3t/pF0Xuq7rD+1w0i39q7784XgQTkYzdn9qsoyM8TNWiNFB9kIbtj+p2Y9+abKCsrw9Qpt2PS8ccJ3zJqJKRWrV6Ne++dgd/85lhcfumlsAZ8zWId0VJghD0rV/SxZ0+1qGlLx7Ak8I46eDDM2UMhW3JFqbLjJ00SAo985+67716cdcYZMAfeK2pqazFjxv2YPWcOBgwYgMWLPkTv4qJgouVbb7tdJDGm+q/33nMvjjxS9w+kNCnk5/e/H74HXUPHtEOGDMHHH30kKl1Qo+CM2bPnIL8gX/juifQpgehaMuI1NTfjxZdewYwZMzB06FDMmzcPpf3z8djjz+DhWY+LSNt777kbZ5x5XvCpopx1v65fj/vvnIqF770nKoK89q8FLPDaK/BCffFIWD22JReKNXIvybR40PHwTUPaJk1mgRf/L2eyjmljjuQHzu3/Tdxj2fizpf8VTAnn2kuFwKM5hou8eTvGiH9ikvlMJ8KCr2ECTKB7CLQReLf+AS8+/xwGDRqMCQcd1GpSHlezqB9LZcdINJFQO/bYYzHr4YcwcsTwVsefZOEzW6zYvGUrrrn2OmEJoyjSIw4/HPuPGiUsgdTPf//7X/zyyy/iGJcSHR944IHC3yyWwLPYskSyYbIWUvTskUcdIwTe3Dkv4siDKIOFCdb8cSKyd/LkySLIgipVUD1YEqNDhuwjfAZ//PFHfP75EvH1X//6V0y/Y6o4XhVJjmUTvvrqa5x3/gWi5i0J1EsvvRS9ehWKmrCUMoVSpKxfv17Uh6U8ePPffReDBpeBfOzI95DyCVLflOiZjlSp5Bgd01KQBc3t22+/hdVqxZ/+70bc+n9UAUTB2vXbcPrZl4mADLLQUcAFHcU2eXwo37wJP//4I9auXYO62lqUlpXh2VdfZ4HXXoFnXC81NSFHVVFni5xEN9lvhL0kGdcPaJsSwxB4NK/OWPGCIoicWRXAomrIh4arB3U+DUf3/HlqGbVLBF7IIiWviotLl3V42W7NhaGm/RO6PxnlyqIN1EbkcURtQnvCFzGBTCAQLvAennYL3pjzmhA5lJ4jtNHPSNTl5+eLtCAnnXQSTjnlJOTn5ooyXOTbpijkma5XgKCABNlkEcegr776Kj5fsgSrVq0SR7bUKIKUAgwOP+ww/OEPN2LIkMHBvB36Ee20iD54VNHBbHUIPzuywl140SXCkkj1YI+YUAzVuweyowy/ljcHBd7FF10ERVWEoFu7di0URUGWw4F+/fvjhBMmiSPYLIdd95+j90eTSZymvfvuArw+dy6WLl0qxC0dp5IoI+sZiUUqwUZ+eyP3H4mXXnxRWPAoCJiu+/iTT8RxKwlJEoT0MyPtCd1PVr/zzpmMS847AbLkEcfG5qzBWPLld3j++efxww8/YNeuXWKulNcuv6AAo8eMwdkXXIz77pouhN+MR59ggddRgdflv8AqMH1AncjTY7W1OO8bQRZG1G40kRfrGLddAiiQ8Nmuahir+XDsPp1PtJtqlveX50FLoP5sKuZh8fhwftmKdnddr9UmlGNvh7pF+O6lshlC781to6FZJLbipRI2980EeggBEngDs0woyzajv8OEivWrsGPrZuE/FqkVOe3o378fhg3dDyazLHzL6OiWBB69Twl/M2hCHFEpMCrpRV+TRYzqs5LA2l21WwiWvn36Yv9RIzF82FeRnPUAACAASURBVDBQFivDN44EIt1Tvm071q1dJyxfQ/YZHIyAtWfniSheSoUCScZPPy0F1XWdMGECsm0++OqXk2MTNlQW4/TT9TQpL7/8EkaP2h/bd+zA119/IyxrJC7HjxsnLHrG3Mm3Tgg8WRbilPz06Dj1l1+W48effkJ9fYOIcB0+fLiIrs3LdeKHH/4nrJMHHzwxWIdXZyeKy2Ljxk1izNq6WiHyCgoKxf109JuNTVD99dAUF+wlJ4q7RCmxJhd+WLYcS7//Dg31DXBk2VE6eAiGDB+JguLeWL98mbhu5ISJ8MlmeFWIUmRwN2P5D9/CYrVi9CFHYodLxZZmP7ZTNQsvB1l0+68d+eGFCjl60GMJvNBULdGEX7vEXSIEFMCkAlPLek5i5he3OFFhSZEfXiJMAr+ZTq8HZ7QjOIMiWKPl1zOG3aVugw+6k3MqmyHy5nXQiif7VORoLpxWui44zYgl4VK5CO6bCTCBhAmQKOhrN6FflowSmwnOCFV9QjuzqhoGOfTKCuI4kwQeVX6g8l4k9Cidh0ZpQkggmYPizoiW1Ut/UT1UPcuu6IfKdJE4pEoZgVJdMkWfSi0nZzQOWQfJxy8rrxcoVYunuSGkpJcEi9UuBJW3djk0XyXW73DgzHMuFwJv0YcfYMSIYcEce4aSEmMbaxBzaBF4JO4k2RyI9KUINGGb1CNwLTZxn9/nDuIRscEUKCKiaPV0Gi1lx+h+6JG7ImoY8Oz+DKq3Coq3Bo6Sk2HKGigSEH9e4RUlxbLMEmwiYEWftl/T4NeLfOgpXSXAp7b83CIDJkkCfabrqboF+e3tcCnY5VZR76Oatwk/Gml/YcK1aLtypaECzxjXEG719VVtphIq6iIJvIc258EfxX8wWeuSfcC0bhZ7M7fl6U99D2lOT2JCr0lrxHDTmJizrtJ2waW19c1MxVIb62uxoPJAUR2kvS4I0aqHzN6VeEBJKtbEfTIBJhCZABl9Cq0yCm0y8i1ysJRVNF4kHI7LdemijISRpos84/uW+yjdSUsaFBI6QuSRaAvkkdPLb+kCj8Sdnkg59B49YXJACQpLIYm8nMK+QmQ11VXpYinQH1kLyTdPUzzw1nyH9VsVnHnetWhudmHx4kUYNnRIsB6s6FeMTXVYA2sQQpWOaHUfPCOXXevasHoONLIiUnM11gSWHOgPOhexNpEPj9asz5EELx0vi/u2vQHFvQOqvwm24t/A1usI8fOn1jWCrKpZZhkOE2ClSOOgwNPFnGykWxFRtbpQplRtuujTr6dGr9V5NVR7VVF3lkqV7U0tbQSecfQaXhLt5fIcuK1ZUGhHHdlt8u+RWOzqo0vJD9zRRSXXQo+kk26lTMZvAlXM6Be/Hi79VzhAHhx1xFqtGhR52xWNBF5HSpidXfJVzGTMLPK6Yvd4DCbQfgJkJSJRQda8QC36qJ2QRLD6NFzYtzEoZHRrXGTxIMp6Bax2hvUuaJIS0o0sgXS/LhKpkbjShaD4LiDwaAi9XFdur/56RG9tpUjJ0vLGpyHLWSiOb/3N27Bm7boQgbcYI4bvJ2rUkkg0mi5MW8Y3hJmw1gWsifoadOudMXdHTqE4fnY17BEuVaIFBKsqPqt6vrxAH2S5y8otFJe5K/8Nd8WH0JRmmGx9kTvib+Lnb2xpxpp6v7Da2QLizkwCL2APNMqLhdoxiIhuldPE/AiHkYaXXiNR1+TXxOe9S96F1aJt/69Fau4It+CFizpj1Cd25kKytWQGj2ptMaR9aqYbs9dUiz1D4D25KRcNtg5ml+4CLkObt+CQffbEHIkSGcfKjbdeWQl7nKTKyVgKCTxqCyvGw2ezJGbFS0DIztk6FhqdHXBjAkwg7QmEpxHrqgWRUMop7CP88RprKtoMS8EXznw9x+iKZV/hzHOuCFjwFotkxO6mWnEvHScHj4kDAlUcK5vNMJntIoBDMptgNpFVMEcISToe9rqbhJXPYnXAlpUjLHh0VBytkcgjMUiWRWqe3Z+iYf0s8bUlbzzy9r9ffL14pxtLKjxdhXGvGKdHWvCKfSou7VMR9MOLthNP7MqFZNUFXnuP0rpjdylq946BybVCGQKvR1rvwiH7gTP7/7+oFSni5cZbqyxHVhLKlcXbe0PgaVYN8ysPTujZoqNZi0mvletTWnxS6PvQKN03aw6NNzy/zgSYQBoQMPm6xwfbYnMgO69YWOKaIrgskVWNjk8plcqqlctxuqhF68LiD9/D6LETkkaWIoZpLBJ8zfXVEfsli53VRidruvHBU/ExGjY8pr9nm3PQa+Lb4utltT68vrlrXHCSBiANOuqRAo/+mbDVVOL3pbFTlxgCLx3EXfizUOBVcX0nU7OEBqKkhcALQLi8zy9RI2Jj5cZboyxFtqQn90xlMwQejfFR5Vg0W20xRV6W14XzB28OTilc4IWLvI4GcKRyzdw3E2AC7SfQHVY8myMHjpwCeJrr4WrUTxtCm9lqA11jttiwq6ISU6fcBperGbMevAtlQw4IBHW0HFaKgA/yuZM0Ec0KfyN8tT/CnDsKqr8RmrsCnuov4Wtcj+yyq8Rxszl7X5iz9ZrkJPQa9uxsM4/cov7BYApv1Zdo3PIiVE9l8Lq8kTNhyT8AO10KHlvbtmpW+3eD7wgn0DMFHp2mh5RDk73AjX12tZr76+VO7HHqzprpKPDEvKP46kU6ko4UPGIEnDxXPQQ+W3o93LJXw0WlS9tMOlZuvFXKz8hJUrmyWLQMixt9TsQXL9R6R/1GEnjhIo++/2DrUDSaHJDId5QbE2AC6UdAAaYn+VQmHgSHMx+2rNxg9K3hFyf83SK0nTt3QvVUoHehGZrmh+LaIfLkUagCVbsARf/6a+D3VEH17Ibq2QnNuzvmNEy2PiiY8Iq4ho5666q3t7remd9bVLvwN65F/doHRJ9Gs+TsD8fAi2DNP0D8aMrS5J5qxeO3N72eFgIv0oZo3mZxPJuu4i50TeH/BUbzOQznYFz3VOOQtH1mIwUmUF3YQrkYhVLvVutKVTWLcHiRatW+RbnxsvV/KELbmSX/D/nmtjV141nxIm0YH9+m7WPME9+LCXS1FS8rtwhWe4vveSLoSdD56n7RQxXMeXrwA32WKdWJOyDy6oX489b8F4prMzR/nagsQU2SLYHUJ3oQiPhZyBFrbWV58OeUviW3qJ/4vvr7c6GRVRCA2TkMOUNvh8kxIHjta5uasaIucr7BRNbF18Qm0GMFXui0g9Y8etbC0rxlgsATa6W8SX7A6m7EaM2Howa39uMyeEQSf+ks8GhdVo8P50VIkmyFDSWyXmCa2jZ1Y5dEQUUSeMYcPqiYgCarFVavD+eVrgj63YX/miVqxQu9b9620ZAiiEj+I8YEmEDPJlDoVXFdJ11uEl2hs6BEHL9SwIPP6xJ560SiZfrs94voW5mqUJgtIi+e1e4U1j5P5ceQbX0h2/tCkrMgmamQQGurn35Uq/9Mj6Bt/bq/aQMaNzwhLHPUCsa/AJNjoJgHjUs+eUbuPtfO99G06R/iSDd/zJMwZ+uGCJei4ftqHz7c0fOLByS6Jz31urQQeOHwDMGXMeIuZIGhR9Ot1q0AsqsZTqi4rLTFX+HJrbmQCtpakHrqAxdrXpFyyIX65KWyXFnovGIJPDqyNZoRVBFpTdEEHl0bq3/2z0vHJ5fnzAR0Al1hzcvt1U/kk6ur2h6wqsWmTxY/Oi4NbRvWrcdjTzyO1auWo3zrDkydOhWXX3Y5zJaWUkihQi/0Xk1xo/q/p4sfWfInIG/kjLAJaPBWfYX69TNF2hRr/oHIHXmfSFOypNLDkbJd+MuSlgKvC/l061CRxB4dTYc32ZkZAo/WFUnkGTnydqjlUODvsj2JJsQMkRdJ4MUSdsbEYwm8RVv3RUMG7WeXbRYPxAR6CoFAuc1UTSe/d6noOvRYNOZYkoycghIhCslCV1tbK2rIbty4sdVtI0YMx/ff/wSHXa8cJapHyTIsFpu4N7RVf382NH8jJJMd+eOeg692KTx7voa/YZ1+tBty1pK7/8Ow5o3GJ7vc+HQXp0FJ1XMRqV8WeF1JO0ljGcLPEHuZJPCiiTyqWVsklcCL7vsDYQgzEnjRUqIkusUxrXi7xkCi1ALcmAATSFsCqUijYuTAo+TEdbu3JcSG7jHRUa0tSwi1U089BYsWLY5479y5c3HeeeeJ416qo0uNLHkk9ihallK0UKv+bjI0NcbfYskC2UzHwHkoGP+8uIeDKRLarqRexAIvqTi5s2QRiGTJ26PtjpkIOVljd1U/fFTbVaR5HCbQfQScXg1/HKQHGnS2WR1OZOUUwutqRHND7MTxxlgk8Cz2bOG3RwEQQ/cb2sZ6Z1x70kknYuHCD8TRKlW78Hma4feQn58ebGFYD6u+PbF15Q7JLIInLHnjYO89KZhCxeh3u0vB45wKpbPb3+77WeC1Gxnf0FUEotV17arxUz1OLIFHY39cORq1JmePqi+caibcPxPIRAJmLzBlUOfTgZC4I5FH4o5EXiKt/QJvIRS/XwROkMDT6Kg20IIC75vfiZ8IMZczEvYS/XujUZY9v0rlwYBFO1z4sYYjZRPZq2RfwwIv2US5v6QRkPwaLh7QNlde0gboAR3FE3k0RcPnb/b2cQBVRufGBJhA2hFIRtlKKlFGgq1hzy4ofm9CDIJHtPZskXg43hHtueeeo0fn+smC52oVyBEu8PJGzYIld5SYB0XyLqtVsLTOh9X1XecrnRCEvfQiFnh76cany7KzPB6cVbYqXabboXkmIvLCO36r8hBolthijwRyrtqM00rXYfau8R2aG9/EBJhAEgl0IgCDfOHyigeKQIm63VsTn5Qkw2pziHQplDolkSALEo9edzP8Pnero9j83gNFapWan66A4t4JW8kJyBlysxCCdy73Qmsdi5H4HPnKlBBggZcSrNxpMgns7Ue18Vi+tXUUVKsMWcrCiPztmJATOQv93PIxUKxhiSTjdc6vMwEmkHQCHUmnQj50lAPP7/OgsaYi4TnRcanZbBXVL/R0KRo2rPs1YpoUk1kWARU0Bvne0efQXHhUA5cCLRp/fQzuyo9hsvdBwQGvCCvf1F8SOzJOeOJ8YacJsMDrNELuoCsIZLrIC2fYEatepH0IzdtnvM7WvK54YnkMJhCbQHtFni0rBw4n1aBtgKuxpn14JRnZeUXieJcsgNBUPSGxcQhAP9JU+H1eEUFL4o6CLCjYIrRZ7dnIyu0Ff/0K1K64DeQgXHTYInHJtGV1UFtf3r458tVJJ8ACL+lIucNUEdjbRF6qRN+/KiayJS9VDyn3ywTaQaA9Is8oUdZcXyWOT9vbcihBsmwSIo4sbpJsEtY5IfigCYFHqVBE1KziF99Hai2RtKcAmh/Z+90NR9FheG+bC19XJeYX2N65Z9r1JX4PqlUL/GY5pUF0LPAy7cnJ8PXs7SIvWaKP695m+C8KLy9tCCQq8owKFvXVO/QkxO1oDme+OKKlqFh3Uz0kkxkmEwk8E0k7aKqqizqVSp4pMStkGPOo+fkaKK5yaPmHo3jkXdjQ6Mdzvza1Y1Z756WyT8O0sshpc57cnIVGyRzXvzpRcizwEiXF1/UIAizw4m9DIse7bq0Z79X+Nn5nfAUTYAIpJxBP5JG1La+ovxBeVKKsPc1Ijkz3NOzZCb/fJ45nhW+dJEGWZF3UaST0lDb1Z8PHoiNaOqpt3PQc3DvnQ7IUoNdBb4hSZHcvT06+v/asL92ujbfXtJ6ZO/KSsiwWeEnByJ10FYHJJZ8jVyroquHSfpxYYi+RSNy0B8ALYAJpQiDWGz8FNlCAA0WrNtVFDqKKtszs/GJYrA64m+rER2cbBWo483tDcW1Dzc9Xi+6KDl0ESDLuWVGPRj874sVinIjAe2yTEy5bggFxhDtKQgUWeJ192vn+LiVg8qm4cOCyLh0zEwaLJvT4qDYTdpfXkCkEor3527PzQB/tFWlGUAQdv9LRbrKakS6l6tvTAM2L7OH3wlF4EF7Z1IxVdZzUOBrnWMezxj0PbM6Fao2RAksD8v0+3FDW1g/zxXJ7K98+FnjJeuK5ny4jwMe0HUcdLvR8Vh/erTiq4x3ynUyACSSNgM0L3Bqh4oVhhWuq3S2SECfaDH+55vpqeN3J84/LLx4ojnervtUDLfLGPA2LcwieWNuIbS69rBm3tgTiWe/u35wLLZa4o5Q3XhVTBjUkhJcFXkKY+KKeROCskv8gS3L2pCml1VzCRd6b1YemNJIrreDwZJlANxOIJAIMQUX+d+Qnl0ijY1Q6Tu3IsW68/lsqWpwoInALD3wDsrUA961sQL0vcvRtvD73htdjCbz7t+RBs8SnEE8khvbAAi8+T76ihxGYXLIEuVJ+D5tV+k3HEHqUK49z46Xf/vGMM5dA6Ju4bDKDLHHUKAq2qa4q7sJlkwW5vfqK6xprK+D3euLek/gFEvQjWhVV35wkbis69ANAMnMuvBCIVEnIqfpw06D4FteZ5XlAglVAWOAl/qTylWlIIMvrw1mlK9Jw5j1zyiT0Ptg1Dk02R8+cIM+KCexlBMKPailJscWWJSgkctxqXO9zN6Gpvjqp9CRZRl7RAGj+BlR/f44u8A77SHyesrTzQRxJnWw3dNYeAUbTm7k1D0gwnqK9fbMFrxseAB6ykwQU4JL+P3eyE749nMDsneOjRmMxLSbABLqWQPibeU5hn2Alino6qo2SiNgoJ0ZHuRRYoScyTl4zLIqKewdqfrpSRM9SFC1VsaBqFtyARIXYzG15CbnH2LwKbh3U/lJwLPD4aUxLAmeVfIUsKTst595TJ+3WXHi74rCeOj2eFxPY6wiEC4W84gEih52q+FBfvbMND5PZgpxC/WjW1VgLT3Py89KZrTY480vgq1+OuhW3A5IFRYcuFGXNpixL/nhpuekaML1/bLE7c3teyz/U5FYZyYqnAtMHdFw0s8BLy6eHJ316yRLksB9e0h+EeVtGwWdLwNM36SNzh0yACYQTsHo13DaoRTQZOejoOq+nGc1h/niGlU9VyHrXvoTIidKno2I6AvZWfYn6dfcDsh1FhywQlsKpLPCCGC1eFVeVbYQJZuSF5W4NFXck4iP54B3orMWk3BjpUhLYMBZ4CUDiS3oegUv7LBUldrglnwAHXCSfKffIBDpKINyK53AWwJaVI7qjEmN1VdvE10YyZPq6velU2jM3qyMHWTkFcO1YgKbNz0Iy56DXxLfh8mv4ywq24CXK0uHVcHNAvEeqXJHoMW+s8VjgJbobfF2PImDyabhw4NIeNadMmUyz1oh3Ko7MlOXwOphA2hOIdlRLC2us3Q2/14Xcov6QZRMUnxcNNbuSv2ZZhslkhsWWDXtWDpq2vArXdkqP0guFB76OOq+KGasSy8+W/MmlUY9hx66RxJ3Jq2JqgrnuWOCl0d7zVBMncHbJ13BIemQZt+QSeH3rOKiWzh0PJHdG3BsT2HsJRLLm5BUPFHVjqY6sp7kRDqdev5SOZumINlnNEI7h/TVueALuikWQ7f1ReMCLqPKoeGg1C7xY3MP38bnNOai2ym1uSYb1jjplC16yfgu4ny4nwBUtUoucj2pTy5d7ZwIJE4jkbC/LyC/qLwqRkv8bib1kJjW2Z+cLSx1VrBBN80JxbYffvR2qayfc1f+F0rgCpqwhKBj3NLa7FDy+tv2RngkzSOMLbV4Nt4b4UtJS/rEpB7W2tuJO8gN3lHY8sCIUEwu8NH5o9vaps8BL7RPQqNVhfsUxqR2Ee2cCTCAhApGsOqH+eBTFWrt7a0J9RbooK6dQVL7QIMFkagnpVFzbULvsemhq5BqzlvwDkTfyPqxv8OOFDckrh9bhhfS0GyNE1D68KQe+COLO4fXj5kHJY8gCr6c9DDyfhAmwwEsYVYcvnL19fMJJODs8CN/IBJhAXAKFXhXXRfDLMsqGddT3zihpFj4BX+NaNG96Dr6GVSEvSZBMNkC2QZIdMFl7IWf4XZAt+Vi8040lFcmsmBEXSdpcECrOo5UkS9axLFvw0uax4IlGI8DirmueDc6N1zWceRQmEJdAlNxqzoISmC22hMuY0TjCWmdziKAMo/kb16Hx10chWQuhNK2H6mvxpzPZ+8Je8js4+p8XcZpbmxU8uY6PZ6PtoSHeoiU2ToW4o7mwBS/ubxVf0BMJsMDrul15v3xf1Fn1tAzcmAAT6D4CkYRAdm4RLPashKNnDYufsQp3xWI0l78G1VcTYWEScobdCVuvw4OvUWGMZkWDR9XQ6NewodGPxTvc3QclHUamjF5RYtZSJe5Y4KXDg8FzbEOAxV3XPhTvl49AndXetYPyaEyACbQhEJo7zXjR7qRgiFyoil+UJovVqIYs1ZL1NaxE08ZnhKhTva1r1Zrs/WEtOhKWnJGwFkwU3ZE+WVPnx5tbm9Hs5/yjyXw0WeAlkyb3lfYEWOB17RbO2ToOGqdM6VroPBoTiEIgXBDYHE44cgpbJT02bjWZrSJwwmyxQjZZQKXMqFV9c2JAtgWulGQ497kB9pJT2ozqVTXc+QsnME7VA9nL58W1Za6UdM9HtCnByp2migCLu1SRjd4vp0vpeuY8IhOIRiBc4OX26g85EPVKlS00TYEkm0TN2mit+tsTRWoVc85I5O43FbKtJHipqgE/1nixocGPLc0Kqj0qb0aSCWh7gHynDzcOak5yz627Y4GXUrzceVIJaMAlfX9OapfcWXwCLPDiM+IrmEBXEQgXeOE+daHzILHmUjTUeFXs9qoYn28BNAVV354sLut1yPuQZKv4WlMV3LmiET7WcynfylQey4ZOngVeyreSB0gKARZ3ScHYkU5Y4HWEGt/DBFJDIFQcOLLzYcvOFQMpmgZZkvBdtRdjLQ14uNyCphB/uYm9rDh7oAPe2h9Rv+rPkGQzeh3ygbi3trJcfDbKZlGy3T5QcEVpI/6xORe1Vq5qk6zd7CpxR/NlgZesXeN+UkOAhV1quCbYKwdYJAiKL2MCXUEgLFVKfvFAUWnCKBMmuwE1SjzUzLG5MEsS6r/4E7B+PZRBJhQc/z7IyjdtWR1Aljs61Y1QNeP+8jxo5q5YYIaPESXVTapWzQIvVWS5384RYGHXOX5JupsDLJIEkrthAkkgEO14dv42F76t8urhriHGtn2cJpw1MAtFNjn444bnJwNeP7Teecg9dy58qoY//1IPkw+YWlaHB7bkYVpZS6ksw6qXhOlzFwECXWXFY4HHj1zPIsDCrkftBx/P9qjt4MnszQQiWH8M/7vnNjSJoAijmSTgr6PzEFoNy7f2c3i+fQVao54WxTL0aNhPmIJKj4rHljdgapT6p09sykWjTUKRT8U1ZQ2YuTWPq9t08jlkgddJgHx7mhFgYdcjN4wFXo/cFp7UXkggkigwImj/s9uDhdtbkg3fPzYPJPKouRbdB/+W/wFK61qyOX/4ULz+0oZmnJlTFZUoWfCKfSp+T+JuR95eSD6JS1YBm0/BrYO7puoHW/CSuHfcVccISH4NFw9Y2rGb+a6UEmCBl1K83DkTSIxAFN+t7PxiWKwOlDcreG1jo/CnO66fHYf1skHdsxVNc6+L2L95yOFwnDhdvDZlaR0M8fjqFicqNBOmDNKPaGdtykWeScPvS1ncJbZR7bsq1ZY8Fnjt2w++OkUEOL9disB2olsOsOgEPL6VCSSRQDQhkJXTC1ZHdsSRmufeCGXPZv01SYKc0xtSbglkZxEsw4+HacAYfFHpxuJyD+4IHM8aFjqzF0LkPbo5F7cMqmfLXRL3MtiVAkwf2OLrmIohWOClgir32W4CLPDajSzlN3CARcoR8wBMID4BDbgiSxcCFhNQpGdFgSRJyKMoWmqKH/A2teqr4aWLKbkdJEcenFfNbTPObo+Kp9c14oAsN47KcYOsd9tpgEAzRB4fy8bfoo5ccU3ftSiS+nTk1oTvYYGXMCq+MOUENMDm9eLcspUpH4oHiE+Aj2fjM+IrmEAqCPTyqrh2UIPoemdN2xHMJqB/72xk5fYS/nWuhX+JOg3zfkfDMWkKfJoGye+Fpij4olbG11VeUVc23DrIgi4VO9q2z3DuHk9LVQubLSspk2CBlxSM3EkqCJi8Ki4sXZaKrrnPBAiwwEsAEl/CBFJAwIhYjSTujOEKC5wo6V0I34Zv4F48I+osbIdcAuuB5+PTXR58stOtp1IJVDGzeoDbBrc9JmSRl4JNDe0ycDz72a8O/GKywC1LUFXdAntbv9Z1fzsj9ljgpXgfufskEfBruKQbAzG8npYINVqR1RYlm2iSltsTumGB1xN2geewNxLI8mo4L6/1G30kDiOGlYofK9uXCz87yeIQ33u+eRn+rXpZR/vxt8Ey7Fi8Xe7CD3u8EXFaPRpuG9wy3sxteUERuDfy7441a4EjdqoicuvA5Ig8FnjdsZM8ZtcRoP9WQz4kTRPfy9BAX5ugig8zNJglFSeXro07t3CxF+uGdBWCs7eOAyxcnijuw8AXMIEuIHB9bh1kGcgLO7mzZeXA4SxoMwP3p4/Ct+Yz8fOssx6Gqe9IPPdrEzY0tuTKizRtqxfw6qVpuXUxAUPg0bBmr4o/lbVOpdIRSx4LvC7eRB4uzQlogMXrx/lly4MLaY/go5vSQfSx9S7Nn1OefmYRiJImxWy2wlnYR6RHmb25CQcUWDE63wLPkifhXfmRYOC8/FVIziLcv6oBNV6qR8atpxIIFXk0x9v6ds6SxwKvp+40zys9CGj035aCC8p+aZfg68kib/aO8Xw8kx5PH89yLyJAR3dGOhNj2fbsPNBHvU/FfSsbcPoAOw4rssHzn+fgXfa+uMxIaEz57rj1fALhIo/yxN46UA+4aa8VjwVez99vnmGaETB5FVxYqgu+aNa9nirwGrU6zK84Js2I83SZwN5BwO7RcEuIr5zH1gcleVZsbFTw7K+NOGegAwf1ssL9xZPwrdAteCzw0u/ZCBd5tAKn14frylztF9hoHgAACmpJREFUEnks8NJv73nGaUQgx9uM00P8+kIFX08UeXw0m0YPF091ryQQml7DKFX2RaUHi3a4cVFZFsYWWOD+9yz41i7RBd6NCwFJxtSldcIdmVv6EAgXevk+L64udScs8ljgpc9e80zTlUCa1Nnlo9l0fcB43nsTgVCBl0+JjiUJz29owq8NflwxOAsj8ix6/dmN3woszmvfgWSx4+caH97Y0pJrzWBGR7+aeW8imF5rDRV5oT55iRzXssBLr73m2aYxAZPHjwtDgjN6ylJmbx8PtCSw7ynT4nkwASYQTiAk2EKWZeQWDRBXGP51kwfYcXiRDd7/zYPnu9niNbmwFNkXPiO+/nGPF2+Wu1r12senYFdIBQuG3vMIGCKPBV7P2xueERNoReDMki+RLQXqDXUjGxZ23Qifh2YCHSBg8gFTy/RgCapBS7Vo3YqGu3+pBwJZjR4alydeb/zn+dDcunO+3GsQsi94Wnz9vz1evGWIvIBg5MTGHdiMbrilsLEGV5S15GSNZ8VjC143bBIPyQTgB87u/zUcUnJK0rSHKB/FtocWX8sEeg6B3j4FVwfyoznzi2G2OrDLreDRNS05024Y6sSgbN0k3/jCudA8eoUEuXgIss97Qnz9fbUX/9rqghGZywKv5+xxvJm08stTgJuKd7XyyQsVfSzw4tHk15lACgmYPX5ckOJj24XlQ1GPLKgmmY9iU7iX3DUTSDWBUP+77KJSWGSg2qPiwdW6pc5ot4/IQbFNr0fWSuT13hfZ5z4ufv7fai/e2eoStWjvL89jP7xUb14S+w8VeXJjI24s1QV+uEWPBV4SoXNXTKDTBPwanIoXZ5St6lBXH27dF7VaNlT6y8+FKDrEkG9iAj2VQKjAkwsGItciRfSro/lPGZGDooDIa3jhXCBgyTP1Hoqsc/8ulvjJLg++LHejl8R+eD11z2PNyxB6jsZ6XF3aEkBjCD0WeOm4qzznvYeABph8Ki4sXRZxzXPLx0AhB2kWc3vPM8Er3TsJBArU0+Jnbs3DjPF5woK3x6vigVUNwhInXtuh++C1EXnPnwsE6p3KfYYh++xHQZUbpy6rE/fyMW16PlYk8jRvi7izehVcV6ofy7PAS8895VkzASbABJhAJhGgKmL6qWrEFmq9e2JzLqaPt8NssYtrNVWB3+eFz9OMv60ztzpunTLCiSKb7pPXECLynFfOgZRVgIdWN8DboKDeyv8lpuvjFCkxMgu8dN1NnjcTYAJMgAlkBIEin4prylr70NHC/tNgxw/VVrhNEqYPbFtmjAIsKNAiUlMVP36p1fBDrRfrG/yYOiIHvYzj2qdOFrfYT7oLln0OwbxyF37a4xUBF5wPL70fqTZlzm7/uZaTW6f3nvLsmQATYAJMIM0IWLzA7YM6Xx9Wls2wZmXDYnVANlkgSWGWOE2DovphMll0K95Tp5DND5b9fwf7sTdha5OCJ9c3gvPhpdkDFGW6oSKPj2gzY095FUyACTABJpAOBEJ86VIxXZPFCqvdCYvVDtnUtkRFQ8CCJ5ltcF73Lnyahj8vq9f98LbnsT9vKjali/s0RB4LvC4Gz8MxASbABJjA3kkg1I+uqwiQ0LM4nLDa9JybhsCTC0qRfdEzeqLk5brAo8bBFl21M6kfhwVe6hnzCEyACTABJrAXE+jjV3BlIFdZd2HI710qhvZ89U8oO1YEU6V8UeHBom1u4ecnyTIe3uiElwMuumubkjouC7yk4uTOmAATYAJMgAm0EOgOq10k/rGCMuq8GnItEP57jTW7cM8WB29hBhBggZcBm8hLYAJMgAkwgZ5HoKeIu1AyzoISSJIMd3M9rDYHLIGjW+Oaprrd8HlcfFTb8x6nds+IBV67kfENTIAJMAEmwARiEzD5gKllnY+STTVne3Ye6IOyHruaauFp1lO2UDJl6OnzuKUpARZ4abpxPG0mwASYABPouQR6ovWuvbQ44KK9xHrW9SzwetZ+8GyYABNgAkwgzQn09im4ukwvAJ+u7aHNefBb03X2PG8iwAKPnwMmwASYABNgAkkkwNa7JMLkrjpMgAVeh9HxjUyACTABJsAEdAJ2r4ZbBtVnBA4+ms2IbWQLXmZsI6+CCTABJsAEupSABuT5NNyYIaLOYPfoply4bWHlzroULA+WLAJswUsWSe6HCTABJsAEMp4A1Wy9Ms3962JtElvvMucRZoGXOXvJK2ECTIAJMIEUEnB6Nfwxwyx2obhY3KXw4emGrlngdQN0HpIJMAEmwATSj0AmBE9Eo/7kplw08NFs+j2UMWbMAi+jtpMXwwSYABNgAikhoEDUa83Uxta7zNtZFniZt6e8IibABJgAE0gygUy23s3cngdwXEWSn5ju744FXvfvAc+ACTABJsAEejgB2QdMS4PSY+3F+NzmHFRb5fbextenAQEWeGmwSTxFJsAEmAAT6H4CmWjF46PZ7n+uUjUDFnipIsv9MgEmwASYQEYRyCSB99IWJ3aZTAAb7zLqGQ1dDAu8jN1aXhgTYAJMgAkkk0C6VavweJrF8m22rCAGTmSczCeiZ/fFAq9n7w/PjgkwASbABHoQgXSw4hnCLhTbI1tzgazsHkSSp5JqAizwUk2Y+2cCTIAJMIGMI9ATgy4iCbtZO3KDEbKSlQVexj2IMRbEAm9v2m1eKxNgAkyACaSEgNUD3Da4e/LkhQu7ZzbnoMkmgQVdSrY6bTplgZc2W8UTZQJMgAkwgZ5EQPM2RZ6OCuT4NFw7qKFLp/vYrr5QLV06JA/WgwmwwOvBm8NTYwJMgAkwgfQhEFXwaQBUQFYBi6rBIWm4uqyxUwv7x44+cJklwNSpbvjmDCbAAi+DN5eXxgSYABNgAt1HIKrgizclEoSKLgitmgYFEvzZ2ZzSJB43fr0VARZ4/EAwASbABJgAE+gCAu0RfOw/1wUbkuFDsMDL8A3m5TEBJsAEmEDPJGAIPhZzPXN/0n1WLPDSfQd5/kyACTABJsAEmAATCCPAAo8fCSbABJgAE2ACTIAJZBgBFngZtqG8HCbABJgAE2ACTIAJsMDjZ4AJMAEmwASYABNgAhlGgAVehm0oL4cJMAEmwASYABNgAizw+BlgAkyACTABJsAEmECGEWCBl2EbysthAkyACTABJsAEmAALPH4GmAATYAJMgAkwASaQYQRY4GXYhvJymAATYAJMgAkwASbAAo+fASbABJgAE2ACTIAJZBgBFngZtqG8HCbABJgAE2ACTIAJsMDjZ4AJMAEmwASYABNgAhlGgAVehm0oL4cJMAEmwASYABNgAizw+BlgAkyACTABJsAEmECGEWCBl2EbysthAkyACTABJsAEmAALPH4GmAATYAJMgAkwASaQYQRY4GXYhvJymAATYAJMgAkwASbAAo+fASbABJgAE2ACTIAJZBgBFngZtqG8HCbABJgAE2ACTIAJsMDjZ4AJMAEmwASYABNgAhlGgAVehm0oL4cJMAEmwASYABNgAizw+BlgAkyACTABJsAEmECGEWCBl2EbysthAkyACTABJsAEmAALPH4GmAATYAJMgAkwASaQYQT+P5nIxjoBG7CxAAAAAElFTkSuQmCC"}))),B=window.wp.components,l=window.wp.i18n,o=window.wp.blockEditor;function C(A){var e=Object.create(null);return function(t){return void 0===e[t]&&(e[t]=A(t)),e[t]}}var c=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,a=C((function(A){return c.test(A)||111===A.charCodeAt(0)&&110===A.charCodeAt(1)&&A.charCodeAt(2)<91})),g=function(){const A=Array.prototype.slice.call(arguments).filter(Boolean),e={},t=[];A.forEach((A=>{(A?A.split(" "):[]).forEach((A=>{if(A.startsWith("atm_")){const[,t]=A.split("_");e[t]=A}else t.push(A)}))}));const r=[];for(const A in e)Object.prototype.hasOwnProperty.call(e,A)&&r.push(e[A]);return r.push(...t),r.join(" ")},E=(A,e)=>{const t={};return Object.keys(A).filter((A=>e=>-1===A.indexOf(e))(e)).forEach((e=>{t[e]=A[e]})),t},w=function(A){let e="";return t=>{const n=(n,B)=>{const{as:l=A,class:o=e}=n;var C;const c=function(A,e){const t=E(e,["as","class"]);if(!A){const A="function"==typeof a?{default:a}:a;Object.keys(t).forEach((e=>{A.default(e)||delete t[e]}))}return t}(void 0===t.propsAsIs?!("string"==typeof l&&-1===l.indexOf("-")&&(C=l[0],C.toUpperCase()!==C)):t.propsAsIs,n);c.ref=B,c.className=t.atomic?g(t.class,c.className||o):g(c.className||o,t.class);const{vars:w}=t;if(w){const A={};for(const e in w){const r=w[e],B=r[0],l=r[1]||"",o="function"==typeof B?B(n):B;t.name,A[`--${e}`]=`${o}${l}`}const e=c.style||{},r=Object.keys(e);r.length>0&&r.forEach((t=>{A[t]=e[t]})),c.style=A}return A.__wyw_meta&&A!==l?(c.as=l,(0,r.createElement)(A,c)):(0,r.createElement)(l,c)},B=r.forwardRef?(0,r.forwardRef)(n):A=>{const e=E(A,["innerRef"]);return n(e,A.innerRef)};return B.displayName=t.name,B.__wyw_meta={className:t.class||e,extends:A},B}};const d=w("p")({name:"Help",class:"hacvl5b",propsAsIs:!1});t(703);const s=function({open:A,hasValue:e=!1}){return(0,r.createElement)(B.Button,{isSecondary:!0,isSmall:!0,icon:"edit",onClick:A,className:e?"jet-fb has-value":"",label:e?(0,l.__)("Edit icon","jet-form-builder"):(0,l.__)("Choose icon","jet-form-builder")},e?(0,l.__)("Edit","jet-form-builder"):(0,l.__)("Choose","jet-form-builder"))},i=w("label")({name:"Label",class:"l1qx79ow",propsAsIs:!1});t(674);const Q=window.wp.element,v=window.wp.primitives,b=(0,r.createElement)(v.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,r.createElement)(v.Path,{d:"M16.7 7.1l-6.3 8.5-3.3-2.5-.9 1.2 4.5 3.4L17.9 8z"})),u=JSON.parse('{"apiVersion":3,"name":"jet-forms/check-mark","category":"layout","title":"Check mark","icon":"\\n \\n \\n \\n \\n \\n \\n \\n","keywords":["jetformbuilder","check","mark","toggle","radio","select"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"attributes":{"controlType":{"type":"string","default":""},"defaultImageControl":{"type":"object","default":{}},"checkedImageControl":{"type":"object","default":{}},"style":{"type":"object","default":{".jet-form-builder-check-mark-img":{"width":24}}}},"render":"file:./block-render.php","viewStyle":"jet-fb-compat-jet-engine-check-mark"}'),{__:f}=wp.i18n,{createBlock:I}=wp.blocks,{name:m,icon:P=""}=u;u.attributes.isPreview={type:"boolean",default:!1};const p={...u,icon:(0,r.createElement)("span",{dangerouslySetInnerHTML:{__html:P}}),description:f("A block for custom Listing Item templates. Set custom icons for the block's default and checked modes.","jet-form-builder"),edit:function(A){const{setAttributes:e,attributes:t,toggleSelection:C}=A,{".jet-form-builder-check-mark-img":{width:c}}=t.style,a=(0,o.useBlockProps)(),[g,E]=(0,Q.useState)(!1),w=!("image"!==t.controlType||!t?.checkedImageControl?.url||!t?.defaultImageControl?.url)&&(g?t?.checkedImageControl?.url:t?.defaultImageControl?.url);return t.isPreview?(0,r.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},n):(0,r.createElement)(r.Fragment,null,(0,r.createElement)(o.BlockControls,null,(0,r.createElement)(B.ToolbarButton,{icon:b,title:g?(0,l.__)("Show unchecked state","jet-form-builder"):(0,l.__)("Show checked state","jet-form-builder"),onClick:()=>E((A=>!A)),isActive:g})),(0,r.createElement)("div",{...a},w?(0,r.createElement)(B.ResizableBox,{enable:{bottom:!1,bottomLeft:!1,bottomRight:!1,left:!1,right:!0,top:!1,topLeft:!1,topRight:!1},size:{width:c},minWidth:"10",onResizeStop:(A,r,n,B)=>{e({style:{...t.style,".jet-form-builder-check-mark-img":{width:c+B.width}}}),C(!0)},onResizeStart:()=>{C(!1)}},(0,r.createElement)("img",{src:w,className:"jet-form-builder-check-mark-img",alt:(0,l.__)("Check mark control","jet-form-builder")})):(0,r.createElement)("input",{type:"checkbox",checked:g,onChange:()=>E((A=>!A)),className:"jet-form-builder-check-mark-input"})),(0,r.createElement)(o.InspectorControls,null,(0,r.createElement)("div",{style:{padding:"20px"}},(0,r.createElement)(B.__experimentalToggleGroupControl,{onChange:A=>e({controlType:A}),value:t.controlType,label:(0,l.__)("Control type","jet-form-builder"),isBlock:!0},(0,r.createElement)(B.__experimentalToggleGroupControlOption,{label:(0,l.__)("HTML input","jet-form-builder"),value:""}),(0,r.createElement)(B.__experimentalToggleGroupControlOption,{label:(0,l.__)("Image","jet-form-builder"),value:"image"})))),"image"===t.controlType&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(o.InspectorControls,null,(0,r.createElement)(o.MediaUploadCheck,null,(0,r.createElement)(B.PanelBody,{title:(0,l.__)("Control Default","jet-form-builder")},(0,r.createElement)(B.Flex,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,r.createElement)(i,null,(0,l.__)("Default icon","jet-form-builder")),(0,r.createElement)(o.MediaUpload,{onSelect:A=>{var r;return e({defaultImageControl:{...null!==(r=t.defaultImageControl)&&void 0!==r?r:{},url:A.url,id:A.id}})},allowedTypes:["image/*"],value:t.defaultImageControl?.id,render:({open:A})=>(0,r.createElement)(s,{open:A,hasValue:!!t.defaultImageControl?.url})}),!!t.defaultImageControl?.url&&(0,r.createElement)(B.Button,{isDestructive:!0,isSmall:!0,icon:"no-alt",onClick:()=>e({defaultImageControl:{}}),label:(0,l.__)("Remove default icon","jet-form-builder")})),!!t.defaultImageControl?.url&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)("img",{src:t.defaultImageControl?.url,style:{maxWidth:"150px",maxHeight:"150px",margin:"1em 0"}})),(0,r.createElement)(d,null,(0,l.__)("Choose icon for default state of choice","jet-form-builder"))),(0,r.createElement)(B.PanelBody,{title:(0,l.__)("Control Checked","jet-form-builder")},(0,r.createElement)(B.Flex,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,r.createElement)(i,null,(0,l.__)("Checked icon","jet-form-builder")),(0,r.createElement)(o.MediaUpload,{onSelect:A=>{var r;return e({checkedImageControl:{...null!==(r=t.checkedImageControl)&&void 0!==r?r:{},url:A.url,id:A.id}})},allowedTypes:["image/*"],value:t.checkedImageControl?.id,render:({open:A})=>(0,r.createElement)(s,{open:A,hasValue:!!t.checkedImageControl?.url})}),!!t.checkedImageControl?.url&&(0,r.createElement)(B.Button,{isDestructive:!0,isSmall:!0,icon:"no-alt",onClick:()=>e({checkedImageControl:{}}),label:(0,l.__)("Remove checked icon","jet-form-builder")})),!!t.checkedImageControl?.url&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)("img",{src:t.checkedImageControl?.url,style:{maxWidth:"150px",maxHeight:"150px",margin:"1em 0"}})),(0,r.createElement)(d,null,(0,l.__)("Choose icon for checked state of choice","jet-form-builder")))))))},example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:A=>I("jet-forms/text-field",{...A}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:A=>I(m,{...A}),priority:0}]}};(0,window.wp.blocks.registerBlockType)(m,p)})(); \ No newline at end of file diff --git a/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/checkbox.asset.php b/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/checkbox.asset.php index d2ba38705..fd56087a1 100644 --- a/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/checkbox.asset.php +++ b/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/checkbox.asset.php @@ -1 +1 @@ - array(), 'version' => 'adae14921d09f9151ddd'); + array(), 'version' => '6cfe04cd724e98d9bf33'); diff --git a/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/checkbox.js b/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/checkbox.js index af42650ef..62d1d9b5d 100644 --- a/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/checkbox.js +++ b/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/checkbox.js @@ -1 +1 @@ -(()=>{"use strict";function t(t,e,o){t.dataset.custom||((function(t){return t.closest(".checkradio-wrap").querySelector(".jet-form-builder__field-template .jet-fb-check-mark input")}(t)).checked=t.checked)}const{CheckboxData:e}=JetFormBuilderAbstract;function o(){e.call(this)}o.prototype=Object.create(e.prototype),o.prototype.isSupported=function(t){return e.prototype.isSupported.call(this,t)&&!!t.querySelector(".jet-form-builder__field-template .jet-fb-check-mark input")},o.prototype.addListeners=function(){e.prototype.addListeners.call(this),this.sanitize(e=>function(e,o){for(const e of o.nodes)t(e);return e}(e,this))},o.prototype.onChangeValue=function(t){t.target.classList.contains("check-mark-control")?(t.target.closest(".jet-form-builder__field-wrap").querySelector(".jet-form-builder__field").checked=t.target.checked,e.prototype.onChangeValue.call(this,t)):e.prototype.onChangeValue.call(this,t)};const r=o,{addFilter:c}=JetPlugins.hooks;c("jet.fb.inputs","jet-form-builder/choice-with-check-mark",function(t){return[r,...t]},20)})(); \ No newline at end of file +(()=>{"use strict";function t(t,e,o){t.dataset.custom||((function(t){return t.closest(".checkradio-wrap").querySelector(".jet-form-builder__field-template .jet-fb-check-mark input")}(t)).checked=t.checked)}const{CheckboxData:e}=JetFormBuilderAbstract;function o(){e.call(this)}o.prototype=Object.create(e.prototype),o.prototype.isSupported=function(t){return e.prototype.isSupported.call(this,t)&&!!t.querySelector(".jet-form-builder__field-template .jet-fb-check-mark input")},o.prototype.addListeners=function(){e.prototype.addListeners.call(this),this.sanitize((e=>function(e,o){for(const e of o.nodes)t(e);return e}(e,this)))},o.prototype.onChangeValue=function(t){t.target.classList.contains("check-mark-control")?(t.target.closest(".jet-form-builder__field-wrap").querySelector(".jet-form-builder__field").checked=t.target.checked,e.prototype.onChangeValue.call(this,t)):e.prototype.onChangeValue.call(this,t)};const r=o,{addFilter:c}=JetPlugins.hooks;c("jet.fb.inputs","jet-form-builder/choice-with-check-mark",(function(t){return[r,...t]}),20)})(); \ No newline at end of file diff --git a/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/radio.asset.php b/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/radio.asset.php index ad2d54852..662f1ed7e 100644 --- a/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/radio.asset.php +++ b/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/radio.asset.php @@ -1 +1 @@ - array(), 'version' => 'df4ff1e6ee14f5d9e3b2'); + array(), 'version' => '9bbd22b94ecad6500714'); diff --git a/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/radio.js b/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/radio.js index 56e7dfc16..ea348236b 100644 --- a/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/radio.js +++ b/compatibility/jet-engine/blocks/check-mark/assets/build/frontend/radio.js @@ -1 +1 @@ -(()=>{"use strict";function t(t){t.dataset.custom||((function(t){return t.closest(".checkradio-wrap").querySelector(".jet-form-builder__field-template .jet-fb-check-mark input")}(t)).checked=t.checked)}const{RadioData:e}=JetFormBuilderAbstract;function o(){e.call(this)}o.prototype=Object.create(e.prototype),o.prototype.isSupported=function(t){return e.prototype.isSupported.call(this,t)&&!!t.querySelector(".jet-form-builder__field-template .jet-fb-check-mark input")},o.prototype.addListeners=function(){e.prototype.addListeners.call(this),this.watch(()=>function(e){for(const o of e.nodes)t(o)}(this))},o.prototype.onChangeValue=function(t){t.target.classList.contains("check-mark-control")?(t.target.closest(".jet-form-builder__field-wrap").querySelector(".jet-form-builder__field").checked=t.target.checked,e.prototype.onChangeValue.call(this,t)):e.prototype.onChangeValue.call(this,t)};const r=o,{addFilter:c}=JetPlugins.hooks;c("jet.fb.inputs","jet-form-builder/choice-with-check-mark",function(t){return[r,...t]},20)})(); \ No newline at end of file +(()=>{"use strict";function t(t){t.dataset.custom||((function(t){return t.closest(".checkradio-wrap").querySelector(".jet-form-builder__field-template .jet-fb-check-mark input")}(t)).checked=t.checked)}const{RadioData:e}=JetFormBuilderAbstract;function o(){e.call(this)}o.prototype=Object.create(e.prototype),o.prototype.isSupported=function(t){return e.prototype.isSupported.call(this,t)&&!!t.querySelector(".jet-form-builder__field-template .jet-fb-check-mark input")},o.prototype.addListeners=function(){e.prototype.addListeners.call(this),this.watch((()=>function(e){for(const o of e.nodes)t(o)}(this)))},o.prototype.onChangeValue=function(t){t.target.classList.contains("check-mark-control")?(t.target.closest(".jet-form-builder__field-wrap").querySelector(".jet-form-builder__field").checked=t.target.checked,e.prototype.onChangeValue.call(this,t)):e.prototype.onChangeValue.call(this,t)};const r=o,{addFilter:c}=JetPlugins.hooks;c("jet.fb.inputs","jet-form-builder/choice-with-check-mark",(function(t){return[r,...t]}),20)})(); \ No newline at end of file diff --git a/compatibility/jet-engine/blocks/map-field/assets/build/editor.asset.php b/compatibility/jet-engine/blocks/map-field/assets/build/editor.asset.php index a525fa0b0..f5e623d9d 100644 --- a/compatibility/jet-engine/blocks/map-field/assets/build/editor.asset.php +++ b/compatibility/jet-engine/blocks/map-field/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-block-editor', 'wp-components', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => 'f8af67dd0abdbce70380'); + array('react', 'wp-block-editor', 'wp-components', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => 'd815be8d0dd3a42a5bc6'); diff --git a/compatibility/jet-engine/blocks/map-field/assets/build/editor.js b/compatibility/jet-engine/blocks/map-field/assets/build/editor.js index 488379004..a7e2bfccf 100644 --- a/compatibility/jet-engine/blocks/map-field/assets/build/editor.js +++ b/compatibility/jet-engine/blocks/map-field/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var A={d:(e,B)=>{for(var t in B)A.o(B,t)&&!A.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:B[t]})},o:(A,e)=>Object.prototype.hasOwnProperty.call(A,e),r:A=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(A,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(A,"__esModule",{value:!0})}},e={};A.r(e),A.d(e,{metadata:()=>o,name:()=>X,settings:()=>z});const B=window.React,t=(0,B.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,B.createElement)("g",{clipPath:"url(#clip0_75_1467)"},(0,B.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,B.createElement)("rect",{width:"298",height:"144",fill:"url(#pattern0)"}),(0,B.createElement)("path",{d:"M223 57C217.195 57 212.5 61.695 212.5 67.5C212.5 75.375 223 87 223 87C223 87 233.5 75.375 233.5 67.5C233.5 61.695 228.805 57 223 57Z",fill:"white"}),(0,B.createElement)("path",{d:"M223 57C217.195 57 212.5 61.695 212.5 67.5C212.5 75.375 223 87 223 87C223 87 233.5 75.375 233.5 67.5C233.5 61.695 228.805 57 223 57ZM223 71.25C220.93 71.25 219.25 69.57 219.25 67.5C219.25 65.43 220.93 63.75 223 63.75C225.07 63.75 226.75 65.43 226.75 67.5C226.75 69.57 225.07 71.25 223 71.25Z",fill:"#4272F9"})),(0,B.createElement)("defs",null,(0,B.createElement)("pattern",{id:"pattern0",patternContentUnits:"objectBoundingBox",width:"1",height:"1"},(0,B.createElement)("use",{xlinkHref:"#image0_75_1467",transform:"matrix(0.00158228 0 0 0.00327444 0 -1.46776)"})),(0,B.createElement)("clipPath",{id:"clip0_75_1467"},(0,B.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,B.createElement)("image",{id:"image0_75_1467",width:"632",height:"840",xlinkHref:"data:image/png;base64,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WpMIaE1Pyi4RYhYIbkh26qiD9tfLL700ZMC7+eZb9KUvfUk/vuZHvUEtM8nCBLU//PFPOvzwI3TQQQfphut/0bsHraOfXftzLVhwrk45+WRdcfmlvZMseidnhCP6+/Mv6uSTT9GUKVP08IMPKhI1s1ozkyzyGaI1s2bN2nuXXnmVLvrm13Xht7+rw08/1w6jtiXSqg8H7ELOj99+o76z+Hy9b9v/sEO0cTPJwszriHXrqIP2s7N9r77+Rm3x/p20siulzpRrd7iYUxPU5eedqT8/8UedvmCh9j7sq3YI10yyMIsdcyCAAAIIIIAAAhMh4LzyVrN77OGH6s0lS3THQ49p1va72PBj8k1jJKB//PFRnX78sWptbR0y4JllS8w3dg8/9KBmzthK6XTa7hEbCIa1cOEi3X7HHVq0aJFOOflEO7RrZtG+8uo/dfAhh9pv8u6/715tteUWm7YxC4b03Yu+p+uuu95O3vjG1xfbHTCyy6TkE/CqqqJ2+ZVHn3pOJx51uD6w/Q76ya13qitcY2fCmj11652kLjjpWN115x36yEd3twGv28ksk2KWUbn6W+frsYce1GFHHKljzjnf9t7F07IzcHvWLNexh3xBdfV1uvLaG1S99TY24L3WZr7TI+BNxAvNMxFAAAEEEEBActb1pNyvn3OGbrzheu259z4658Jvas57t7XLj7z07F90929u02OPPKyenp4hA94vfnGdampq9NWjjtIxxxyjObO3Vk+sR48++pjOPmeB7Rm8/rqfa8ftt7e9aSaomS3ETj31dN19zz069NBDdeopJ2nu3Hm2p+ze++7T9dffYHeX+NUvr9fOO++cWQevd6HjvAJeNGIDXlt7h75yxJF6+qmntPCCC/WFI45S/aQpatu4Xg/eebtuuuE6rV61SjvtvIsNeB0K2dm3Zpi2+YW/6rsXLFJPT7eOPv4EffrAL6qqtk4rmt/WT39wuf78xBP64qGH6rxLrtSqmGsD3hvtSXWy0DF/vxBAAAEEEEBgggScFV1J942XX9KFC87U0rff0py5czV16haKRCJq72hXbXW1li9frqamJtvbNtQkC/Nt3cyZM1QVrVIylVR3d49Wr16tN998U2eccbq+9c1vKp2KZ3ayML17gZBe+/e/ddJJp2jjxo3aYoupamhotL1/a9assVuXHX3013TiCcdnFkB2zTUB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5bPc5c7TJL2U3I2ZFjxOhm/2TKw455xzRB26Rx99FPvss4/heVbbzffnK+oQ8xQuC2R4kdYFlgZGoQaMlm576623cOaZZwqr0S233KJKnURwd+yxx4r6lBdccAHOPvvsrGb+/e9/46yzzgKBHF8gGfoh5cUXX8Tdd9+Njz/+WBQur62txV577SW8BzNmzCio3Wq7x+g+CioAr3nCJEyfPS/bBYPXe7o6BQlyNBzC+ElT8O3TzsPMOVtlHvI2eybIPcWM2UyJMYK83u5u/PmJB/HeG69i3nY74ezLrhV9lgvgyTq0pbpnxfPVXwtfgNUausVPuYRWbLo9yQNJwFzNIt2zZlQJKec6hwC82mAmmN9vCwyrbKHHIicnqgXkZF/52inBXW7sXe48inUjl1Op7LtUgPfb3/5W3Hh5szz44IPFdNva2sTvLEHy61//WrhtjUo13nwtLjyju2i1H4saMArwrr76atx+++1CFSeeeCJuu+22YWohwDvooIPApK2rrroK55133hCA981vflO8PP7mN7/JArylS5eK/njthAkThGWQlj5a8ggW77zzTlGuK59U4z1G13lRo0nZeXcsPOsi+GoGyf8T8QSW/neRqEDRsWkDmGl78gWXgRphksWS/36MT95/G6tXLBMuWQoJkDs3t6Ovpwtzt90R51z2M0GhUi6AN+ie3Sg400oRgjuCPMbxETCWS6QFrxwZqWbPWeok0t9VNSU/1daoCvBC6T7U2xow3p7haaLkA1JqIE0vwFObUDjSJzJv1ZIqRgu4MwPg8U37iSeewJ577iloUkhwTB68iy66SKTq04K3//6DBJx6D3A13nwtN63e3bPajWUNGAF4dK8SnP33v/8VKiFP5nPPPYepUzM8YlKKAXgEjddee63o86GHHsKkSZPw+9//XgBEJgc888wzglF/SwB4kiYlGY9k+Mb4n6gj68HTD9+PV194BrXBelx07S/RPGEi3v2/V/HHB+9GKNSHabO2Qk1tMOvWpuWvdelnZQd4dBPXNU0SBLjd7WtK/srIJKBSY/m0JjJoFRvZai5a8+Tnkjamt2OdoCypVskCPGm9U07UAQcm2TM3DCMAj+1LKXmjV1nVar0zA+CRBuWMM84QVrx58+YJqpTFixeLN/G9995b3HBrFG+VenVWjQCPc7eseHp30Go3VjVgBOCRI5NE6Jmq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Uwv7x44+cJklwNSpbvjmDCbAAi+DN5eXxgSYABNgAt1HIKrgizclEoSKLgitmgYFEvzZ2ZzSJB43fr0VARZ4/EAwASbABJgAE+gCAu0RfOw/1wUbkuFDsMDL8A3m5TEBJsAEmEDPJGAIPhZzPXN/0n1WLPDSfQd5/kyACTABJsAEmAATCCPAAo8fCSbABJgAE2ACTIAJZBgBFngZtqG8HCbABJgAE2ACTIAJsMDjZ4AJMAEmwASYABNgAhlGgAVehm0oL4cJMAEmwASYABNgAizw+BlgAkyACTABJsAEmECGEWCBl2EbysthAkyACTABJsAEmAALPH4GmAATYAJMgAkwASaQYQRY4GXYhvJymAATYAJMgAkwASbAAo+fASbABJgAE2ACTIAJZBgBFngZtqG8HCbABJgAE2ACTIAJsMDjZ4AJMAEmwASYABNgAhlGgAVehm0oL4cJMAEmwASYABNgAizw+BlgAkyACTABJsAEmECGEWCBl2EbysthAkyACTABJsAEmAALPH4GmAATYAJMgAkwASaQYQRY4GXYhvJymAATYAJMgAkwASbAAo+fASbABJgAE2ACTIAJZBgBFngZtqG8HCbABJgAE2ACTIAJsMDjZ4AJMAEmwASYABNgAhlGgAVehm0oL4cJMAEmwASYABNgAizw+BlgAkyACTABJsAEmECGEWCBl2EbysthAkyACTABJsAEmAALPH4GmAATYAJMgAkwASaQYQT+P5nIxjoBG7CxAAAAAElFTkSuQmCC"}))),r=window.wp.components,C=window.wp.i18n,E=window.wp.element,w=window.wp.blockEditor,{AdvancedFields:g,FieldWrapper:Q,ToolBarFields:n,AdvancedInspectorControl:v,AttributeHelp:b,BlockLabel:d,BlockDescription:l,BlockName:c,BlockDefaultValue:I}=JetFBComponents,{useUniqueNameOnDuplicate:f,useMetaState:a}=JetFBHooks,{isEmpty:P}=JetFBActions,o=JSON.parse('{"apiVersion":3,"name":"jet-forms/map-field","category":"jet-form-builder-fields","title":"Map Field","icon":"\\n\\n\\n","keywords":["jetformbuilder","field","map","location","place"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"attributes":{"autocomplete":{"type":"boolean","default":false},"validation":{"type":"object","default":{}},"format":{"type":"string","default":"location_string"},"zoom":{"type":["string","number"],"default":14,"jfb":{"rich":true}},"height":{"type":"number","default":300},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-compat-jet-engine-map-field","viewStyle":"jet-fb-compat-jet-engine-map-field"}'),{__:u}=wp.i18n,{createBlock:s}=wp.blocks,{name:X,icon:H=""}=o,z={icon:(0,B.createElement)("span",{dangerouslySetInnerHTML:{__html:H}}),description:u("Input coordinates by pinning the needed location on the map easily. \nSave the value conveniently into the Map meta field of JetEngine.","jet-form-builder"),edit:function(A){var e;const o=(0,w.useBlockProps)();f();const{isSelected:u,attributes:s,setAttributes:X,editProps:{uniqKey:H}}=A;if(s.isPreview)return(0,B.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},t);const z=-1===[11,14].indexOf(s.zoom),[W]=a("_jf_preset"),j=!P(s.default)||W.enabled&&!P(W?.fields_map?.[s.name]);return[JetFBMapField.is_supported&&(0,B.createElement)(n,{key:H("ToolBarFields"),...A}),u&&JetFBMapField.is_supported&&(0,B.createElement)(w.InspectorControls,{key:H("InspectorControls")},(0,B.createElement)(r.PanelBody,{title:(0,C.__)("General","jet-form-builder")},(0,B.createElement)(d,null),(0,B.createElement)(c,null),(0,B.createElement)(l,null)),(0,B.createElement)(r.PanelBody,{title:(0,C.__)("Value","jet-form-builder")},(0,B.createElement)(r.__experimentalToggleGroupControl,{onChange:A=>X({format:A}),value:s.format,label:(0,C.__)("Value format","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},JetFBMapField.formats.map(A=>(0,B.createElement)(r.__experimentalToggleGroupControlOption,{key:H(A.value),label:A.label,value:A.value,"aria-label":A.title,showTooltip:!0}))),(0,B.createElement)(I,{hasMacro:!1,help:(0,C.__)("Latitude and longitude can be entered by separating \nthem with a comma: 50.45, 30.53.","jet-form-builder")}),j&&(0,B.createElement)(v,{value:s.zoom,label:(0,C.__)("Zoom","jet-form-builder"),onChangePreset:!!z&&(A=>X({zoom:A}))},({instanceId:A})=>{var e;return(0,B.createElement)(B.Fragment,null,(0,B.createElement)(r.__experimentalToggleGroupControl,{onChange:A=>X({zoom:A}),value:"number"==typeof s.zoom?s.zoom:"",isBlock:!0,isAdaptiveWidth:!1},(0,B.createElement)(r.__experimentalToggleGroupControlOption,{label:(0,C.__)("Default","jet-form-builder"),value:14,"aria-label":14,showTooltip:!0}),(0,B.createElement)(r.__experimentalToggleGroupControlOption,{label:(0,C.__)("Small","jet-form-builder"),value:11,"aria-label":11,showTooltip:!0}),(0,B.createElement)(r.__experimentalToggleGroupControlOption,{label:(0,C.__)("Custom","jet-form-builder"),value:""})),z&&(0,B.createElement)(B.Fragment,null,(0,B.createElement)(r.TextControl,{id:A,className:"jet-fb m-unset",value:null!==(e=s.zoom)&&void 0!==e?e:14,onChange:A=>X({zoom:A})}),(0,B.createElement)(b,{name:"zoom"},(0,C.__)("Enter a number from 1 to 18.","jet-form-builder"))))})),(0,B.createElement)(r.PanelBody,{title:(0,C.__)("Map Settings","jet-form-builder")},(0,B.createElement)(r.ToggleControl,{label:(0,C.__)("Show search autocomplete","jet-form-builder"),checked:s.autocomplete,onChange:A=>X({autocomplete:Boolean(A)})}),(0,B.createElement)(r.RangeControl,{label:(0,C.__)("Height","jet-form-builder"),value:null!==(e=s.height)&&void 0!==e?e:300,onChange:A=>X({height:A}),allowReset:!0,resetFallbackValue:300,min:50,max:1e3})),(0,B.createElement)(g,{key:H("AdvancedFields"),...A})),(0,B.createElement)("div",{...o,key:H("viewBlock")},JetFBMapField.is_supported?(0,B.createElement)(Q,{key:H("FieldWrapper"),...A},t):(0,B.createElement)(E.RawHTML,null,JetFBMapField.help))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:A=>s("jet-forms/text-field",{...A}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:A=>s(X,{...A}),priority:0}]}};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/map-field",A=>(A.push(e),A))})(); \ No newline at end of file +(()=>{"use strict";var A={d:(e,B)=>{for(var t in B)A.o(B,t)&&!A.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:B[t]})},o:(A,e)=>Object.prototype.hasOwnProperty.call(A,e),r:A=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(A,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(A,"__esModule",{value:!0})}},e={};A.r(e),A.d(e,{metadata:()=>o,name:()=>X,settings:()=>z});const B=window.React,t=(0,B.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink"},(0,B.createElement)("g",{clipPath:"url(#clip0_75_1467)"},(0,B.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,B.createElement)("rect",{width:"298",height:"144",fill:"url(#pattern0)"}),(0,B.createElement)("path",{d:"M223 57C217.195 57 212.5 61.695 212.5 67.5C212.5 75.375 223 87 223 87C223 87 233.5 75.375 233.5 67.5C233.5 61.695 228.805 57 223 57Z",fill:"white"}),(0,B.createElement)("path",{d:"M223 57C217.195 57 212.5 61.695 212.5 67.5C212.5 75.375 223 87 223 87C223 87 233.5 75.375 233.5 67.5C233.5 61.695 228.805 57 223 57ZM223 71.25C220.93 71.25 219.25 69.57 219.25 67.5C219.25 65.43 220.93 63.75 223 63.75C225.07 63.75 226.75 65.43 226.75 67.5C226.75 69.57 225.07 71.25 223 71.25Z",fill:"#4272F9"})),(0,B.createElement)("defs",null,(0,B.createElement)("pattern",{id:"pattern0",patternContentUnits:"objectBoundingBox",width:"1",height:"1"},(0,B.createElement)("use",{xlinkHref:"#image0_75_1467",transform:"matrix(0.00158228 0 0 0.00327444 0 -1.46776)"})),(0,B.createElement)("clipPath",{id:"clip0_75_1467"},(0,B.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,B.createElement)("image",{id:"image0_75_1467",width:"632",height:"840",xlinkHref:"data:image/png;base64,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WpMIaE1Pyi4RYhYIbkh26qiD9tfLL700ZMC7+eZb9KUvfUk/vuZHvUEtM8nCBLU//PFPOvzwI3TQQQfphut/0bsHraOfXftzLVhwrk45+WRdcfmlvZMseidnhCP6+/Mv6uSTT9GUKVP08IMPKhI1s1ozkyzyGaI1s2bN2nuXXnmVLvrm13Xht7+rw08/1w6jtiXSqg8H7ELOj99+o76z+Hy9b9v/sEO0cTPJwszriHXrqIP2s7N9r77+Rm3x/p20siulzpRrd7iYUxPU5eedqT8/8UedvmCh9j7sq3YI10yyMIsdcyCAAAIIIIAAAhMh4LzyVrN77OGH6s0lS3THQ49p1va72PBj8k1jJKB//PFRnX78sWptbR0y4JllS8w3dg8/9KBmzthK6XTa7hEbCIa1cOEi3X7HHVq0aJFOOflEO7RrZtG+8uo/dfAhh9pv8u6/715tteUWm7YxC4b03Yu+p+uuu95O3vjG1xfbHTCyy6TkE/CqqqJ2+ZVHn3pOJx51uD6w/Q76ya13qitcY2fCmj11652kLjjpWN115x36yEd3twGv28ksk2KWUbn6W+frsYce1GFHHKljzjnf9t7F07IzcHvWLNexh3xBdfV1uvLaG1S99TY24L3WZr7TI+BNxAvNMxFAAAEEEEBActb1pNyvn3OGbrzheu259z4658Jvas57t7XLj7z07F90929u02OPPKyenp4hA94vfnGdampq9NWjjtIxxxyjObO3Vk+sR48++pjOPmeB7Rm8/rqfa8ftt7e9aSaomS3ETj31dN19zz069NBDdeopJ2nu3Hm2p+ze++7T9dffYHeX+NUvr9fOO++cWQevd6HjvAJeNGIDXlt7h75yxJF6+qmntPCCC/WFI45S/aQpatu4Xg/eebtuuuE6rV61SjvtvIsNeB0K2dm3Zpi2+YW/6rsXLFJPT7eOPv4EffrAL6qqtk4rmt/WT39wuf78xBP64qGH6rxLrtSqmGsD3hvtSXWy0DF/vxBAAAEEEEBgggScFV1J942XX9KFC87U0rff0py5czV16haKRCJq72hXbXW1li9frqamJtvbNtQkC/Nt3cyZM1QVrVIylVR3d49Wr16tN998U2eccbq+9c1vKp2KZ3ayML17gZBe+/e/ddJJp2jjxo3aYoupamhotL1/a9assVuXHX3013TiCcdnFkB2zTUB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5bPc5c7TJL2U3I2ZFjxOhm/2TKw455xzRB26Rx99FPvss4/heVbbzffnK+oQ8xQuC2R4kdYFlgZGoQaMlm576623cOaZZwqr0S233KJKnURwd+yxx4r6lBdccAHOPvvsrGb+/e9/46yzzgKBHF8gGfoh5cUXX8Tdd9+Njz/+WBQur62txV577SW8BzNmzCio3Wq7x+g+CioAr3nCJEyfPS/bBYPXe7o6BQlyNBzC+ElT8O3TzsPMOVtlHvI2eybIPcWM2UyJMYK83u5u/PmJB/HeG69i3nY74ezLrhV9lgvgyTq0pbpnxfPVXwtfgNUausVPuYRWbLo9yQNJwFzNIt2zZlQJKec6hwC82mAmmN9vCwyrbKHHIicnqgXkZF/52inBXW7sXe48inUjl1Op7LtUgPfb3/5W3Hh5szz44IPFdNva2sTvLEHy61//WrhtjUo13nwtLjyju2i1H4saMArwrr76atx+++1CFSeeeCJuu+22YWohwDvooIPApK2rrroK55133hCA981vflO8PP7mN7/JArylS5eK/njthAkThGWQlj5a8ggW77zzTlGuK59U4z1G13lRo0nZeXcsPOsi+GoGyf8T8QSW/neRqEDRsWkDmGl78gWXgRphksWS/36MT95/G6tXLBMuWQoJkDs3t6Ovpwtzt90R51z2M0GhUi6AN+ie3Sg400oRgjuCPMbxETCWS6QFrxwZqWbPWeok0t9VNSU/1daoCvBC6T7U2xow3p7haaLkA1JqIE0vwFObUDjSJzJv1ZIqRgu4MwPg8U37iSeewJ577iloUkhwTB68iy66SKTq04K3//6DBJx6D3A13nwtN63e3bPajWUNGAF4dK8SnP33v/8VKiFP5nPPPYepUzM8YlKKAXgEjddee63o86GHHsKkSZPw+9//XgBEJgc888wzglF/SwB4kiYlGY9k+Mb4n6gj68HTD9+PV194BrXBelx07S/RPGEi3v2/V/HHB+9GKNSHabO2Qk1tMOvWpuWvdelnZQd4dBPXNU0SBLjd7WtK/srIJKBSY/m0JjJoFRvZai5a8+Tnkjamt2OdoCypVskCPGm9U07UAQcm2TM3DCMAj+1LKXmjV1nVar0zA+CRBuWMM84QVrx58+YJqpTFixeLN/G9995b3HBrFG+VenVWjQCPc7eseHp30Go3VjVgBOCRI5NE6Jmq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Uwv7x44+cJklwNSpbvjmDCbAAi+DN5eXxgSYABNgAt1HIKrgizclEoSKLgitmgYFEvzZ2ZzSJB43fr0VARZ4/EAwASbABJgAE+gCAu0RfOw/1wUbkuFDsMDL8A3m5TEBJsAEmEDPJGAIPhZzPXN/0n1WLPDSfQd5/kyACTABJsAEmAATCCPAAo8fCSbABJgAE2ACTIAJZBgBFngZtqG8HCbABJgAE2ACTIAJsMDjZ4AJMAEmwASYABNgAhlGgAVehm0oL4cJMAEmwASYABNgAizw+BlgAkyACTABJsAEmECGEWCBl2EbysthAkyACTABJsAEmAALPH4GmAATYAJMgAkwASaQYQRY4GXYhvJymAATYAJMgAkwASbAAo+fASbABJgAE2ACTIAJZBgBFngZtqG8HCbABJgAE2ACTIAJsMDjZ4AJMAEmwASYABNgAhlGgAVehm0oL4cJMAEmwASYABNgAizw+BlgAkyACTABJsAEmECGEWCBl2EbysthAkyACTABJsAEmAALPH4GmAATYAJMgAkwASaQYQRY4GXYhvJymAATYAJMgAkwASbAAo+fASbABJgAE2ACTIAJZBgBFngZtqG8HCbABJgAE2ACTIAJsMDjZ4AJMAEmwASYABNgAhlGgAVehm0oL4cJMAEmwASYABNgAizw+BlgAkyACTABJsAEmECGEWCBl2EbysthAkyACTABJsAEmAALPH4GmAATYAJMgAkwASaQYQT+P5nIxjoBG7CxAAAAAElFTkSuQmCC"}))),r=window.wp.components,C=window.wp.i18n,E=window.wp.element,w=window.wp.blockEditor,{AdvancedFields:g,FieldWrapper:Q,ToolBarFields:n,AdvancedInspectorControl:v,AttributeHelp:b,BlockLabel:d,BlockDescription:l,BlockName:c,BlockDefaultValue:I}=JetFBComponents,{useUniqueNameOnDuplicate:f,useMetaState:a}=JetFBHooks,{isEmpty:P}=JetFBActions,o=JSON.parse('{"apiVersion":3,"name":"jet-forms/map-field","category":"jet-form-builder-fields","title":"Map Field","icon":"\\n\\n\\n","keywords":["jetformbuilder","field","map","location","place"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"attributes":{"autocomplete":{"type":"boolean","default":false},"validation":{"type":"object","default":{}},"format":{"type":"string","default":"location_string"},"zoom":{"type":["string","number"],"default":14,"jfb":{"rich":true}},"height":{"type":"number","default":300},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-compat-jet-engine-map-field","viewStyle":"jet-fb-compat-jet-engine-map-field"}'),{__:u}=wp.i18n,{createBlock:s}=wp.blocks,{name:X,icon:H=""}=o,z={icon:(0,B.createElement)("span",{dangerouslySetInnerHTML:{__html:H}}),description:u("Input coordinates by pinning the needed location on the map easily. \nSave the value conveniently into the Map meta field of JetEngine.","jet-form-builder"),edit:function(A){var e;const o=(0,w.useBlockProps)();f();const{isSelected:u,attributes:s,setAttributes:X,editProps:{uniqKey:H}}=A;if(s.isPreview)return(0,B.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},t);const z=-1===[11,14].indexOf(s.zoom),[W]=a("_jf_preset"),j=!P(s.default)||W.enabled&&!P(W?.fields_map?.[s.name]);return[JetFBMapField.is_supported&&(0,B.createElement)(n,{key:H("ToolBarFields"),...A}),u&&JetFBMapField.is_supported&&(0,B.createElement)(w.InspectorControls,{key:H("InspectorControls")},(0,B.createElement)(r.PanelBody,{title:(0,C.__)("General","jet-form-builder")},(0,B.createElement)(d,null),(0,B.createElement)(c,null),(0,B.createElement)(l,null)),(0,B.createElement)(r.PanelBody,{title:(0,C.__)("Value","jet-form-builder")},(0,B.createElement)(r.__experimentalToggleGroupControl,{onChange:A=>X({format:A}),value:s.format,label:(0,C.__)("Value format","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},JetFBMapField.formats.map((A=>(0,B.createElement)(r.__experimentalToggleGroupControlOption,{key:H(A.value),label:A.label,value:A.value,"aria-label":A.title,showTooltip:!0})))),(0,B.createElement)(I,{hasMacro:!1,help:(0,C.__)("Latitude and longitude can be entered by separating \nthem with a comma: 50.45, 30.53.","jet-form-builder")}),j&&(0,B.createElement)(v,{value:s.zoom,label:(0,C.__)("Zoom","jet-form-builder"),onChangePreset:!!z&&(A=>X({zoom:A}))},(({instanceId:A})=>{var e;return(0,B.createElement)(B.Fragment,null,(0,B.createElement)(r.__experimentalToggleGroupControl,{onChange:A=>X({zoom:A}),value:"number"==typeof s.zoom?s.zoom:"",isBlock:!0,isAdaptiveWidth:!1},(0,B.createElement)(r.__experimentalToggleGroupControlOption,{label:(0,C.__)("Default","jet-form-builder"),value:14,"aria-label":14,showTooltip:!0}),(0,B.createElement)(r.__experimentalToggleGroupControlOption,{label:(0,C.__)("Small","jet-form-builder"),value:11,"aria-label":11,showTooltip:!0}),(0,B.createElement)(r.__experimentalToggleGroupControlOption,{label:(0,C.__)("Custom","jet-form-builder"),value:""})),z&&(0,B.createElement)(B.Fragment,null,(0,B.createElement)(r.TextControl,{id:A,className:"jet-fb m-unset",value:null!==(e=s.zoom)&&void 0!==e?e:14,onChange:A=>X({zoom:A})}),(0,B.createElement)(b,{name:"zoom"},(0,C.__)("Enter a number from 1 to 18.","jet-form-builder"))))}))),(0,B.createElement)(r.PanelBody,{title:(0,C.__)("Map Settings","jet-form-builder")},(0,B.createElement)(r.ToggleControl,{label:(0,C.__)("Show search autocomplete","jet-form-builder"),checked:s.autocomplete,onChange:A=>X({autocomplete:Boolean(A)})}),(0,B.createElement)(r.RangeControl,{label:(0,C.__)("Height","jet-form-builder"),value:null!==(e=s.height)&&void 0!==e?e:300,onChange:A=>X({height:A}),allowReset:!0,resetFallbackValue:300,min:50,max:1e3})),(0,B.createElement)(g,{key:H("AdvancedFields"),...A})),(0,B.createElement)("div",{...o,key:H("viewBlock")},JetFBMapField.is_supported?(0,B.createElement)(Q,{key:H("FieldWrapper"),...A},t):(0,B.createElement)(E.RawHTML,null,JetFBMapField.help))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:A=>s("jet-forms/text-field",{...A}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:A=>s(X,{...A}),priority:0}]}};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/map-field",(A=>(A.push(e),A)))})(); \ No newline at end of file diff --git a/compatibility/jet-engine/blocks/map-field/assets/build/frontend/autocomplete.asset.php b/compatibility/jet-engine/blocks/map-field/assets/build/frontend/autocomplete.asset.php index 3bfc11660..7a36400dc 100644 --- a/compatibility/jet-engine/blocks/map-field/assets/build/frontend/autocomplete.asset.php +++ b/compatibility/jet-engine/blocks/map-field/assets/build/frontend/autocomplete.asset.php @@ -1 +1 @@ - array('wp-api-fetch', 'wp-url'), 'version' => '2a84e04b8e1be569ff30'); + array('wp-api-fetch', 'wp-url'), 'version' => '1ccb5474b29a16a63502'); diff --git a/compatibility/jet-engine/blocks/map-field/assets/build/frontend/autocomplete.js b/compatibility/jet-engine/blocks/map-field/assets/build/frontend/autocomplete.js index 28432842e..a823b6642 100644 --- a/compatibility/jet-engine/blocks/map-field/assets/build/frontend/autocomplete.js +++ b/compatibility/jet-engine/blocks/map-field/assets/build/frontend/autocomplete.js @@ -1 +1 @@ -(()=>{"use strict";var t={n:e=>{var s=e&&e.__esModule?()=>e.default:()=>e;return t.d(s,{a:s}),s},d:(e,s)=>{for(var o in s)t.o(s,o)&&!t.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:s[o]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e)};const e=window.wp.apiFetch;var s=t.n(e);const o=window.wp.url,{ReactiveVar:n,LoadingReactiveVar:r}=JetFormBuilderAbstract;function i(t){this.searchNode=t,this.controller=null,this.search=new n(""),this.search.make(),this.search.watch(this.onChangeSearch.bind(this)),this.response=new n(!1),this.response.make(),this.loading=new r,this.loading.make(),this.initEventListeners()}i.prototype.initEventListeners=function(){this.searchNode.addEventListener("input",t=>{this.search.current=t.target.value})},i.prototype.onChangeSearch=function(){if(this.abort(),this.searchNode.value!==this.search.current&&(this.searchNode.value=this.search.current),2>this.search.current?.length)return void this.loading.end();const t=(0,o.addQueryArgs)(JetMapFieldsSettings.apiAutocomplete,{query:this.search.current});this.loading.start(),s()({path:t,signal:this.controller.signal}).then(t=>{this.response.current={success:!!t.success,response:t},this.loading.end()}).catch(t=>{"AbortError"!==t.name&&(this.response.current={success:!1,response:t},this.loading.end())})},i.prototype.abort=function(){this.controller?.abort?.(),this.controller=new AbortController};const a=i,{ReactiveVar:c}=JetFormBuilderAbstract;function h(t){this.listNode=t,this.selected=new c,this.selected.make(),this.initEventListeners()}h.prototype.createItem=function(t){const e=document.createElement("li");return e.textContent=t.label,e.tabIndex=0,e},h.prototype.setItems=function(t){this.listNode.innerHTML="";const e=t.map(this.createItem.bind(this));this.listNode.append(...e)},h.prototype.showList=function(){this.listNode.querySelector("li")&&this.listNode.classList.add("show")},h.prototype.hideList=function(){this.listNode.classList.remove("show")},h.prototype.onSelect=function(){this.listNode.querySelectorAll(".selected").forEach(function(t){t.classList.remove("selected")}),this.selected.current.classList.add("selected")},h.prototype.initEventListeners=function(){this.listNode.addEventListener("click",t=>{"LI"===t.target.tagName&&(this.selected.current=t.target)}),this.listNode.addEventListener("keydown",t=>{const e=document.activeElement;if("LI"===e.tagName&&e.parentNode===this.listNode)switch(t.key){case"ArrowDown":this.focusNextItem(e),t.preventDefault();break;case"ArrowUp":this.focusPreviousItem(e),t.preventDefault();break;case"Enter":this.selected.current=e,t.preventDefault()}}),this.selected.watch(this.onSelect.bind(this))},h.prototype.focusNextItem=function(t){const e=t.nextElementSibling;e&&e.focus()},h.prototype.focusPreviousItem=function(t){const e=t.previousElementSibling;e?e.focus():this.focusTopOutside()},h.prototype.focusTopOutside=function(){},h.prototype.focusFirstItem=function(){const t=this.listNode.querySelector("li");t&&t.focus()};const l=h;function p(t,e){this.searchInput=t,this.dropDown=e,this.getDropDown().selected.signals=[],this.getDropDown().selected.watch(()=>{this.searchInput.searchNode.value=this.getDropDown().selected.current.textContent,this.getDropDown().hideList()}),this.getDropDown().focusTopOutside=()=>{this.getSearchInput().searchNode.focus()},this.getSearchInput().searchNode.addEventListener("keydown",t=>{"ArrowDown"===t.key&&(this.dropDown.focusFirstItem(),t.preventDefault())}),this.getSearchInput().searchNode.addEventListener("focus",t=>{this.getDropDown().showList()}),this.getSearchInput().searchNode.addEventListener("blur",t=>{t.relatedTarget?.parentElement!==this.getDropDown().listNode&&this.getDropDown().hideList()}),this.getDropDown().listNode.addEventListener("focusout",t=>{t.relatedTarget!==this.getSearchInput().searchNode&&t.relatedTarget?.parentElement!==this.getDropDown().listNode&&this.getDropDown().hideList()})}p.prototype.getDropDown=function(){return this.dropDown},p.prototype.getSearchInput=function(){return this.searchInput};const d=p;function u(t,e){d.call(this,t,e)}u.prototype=Object.create(d.prototype),u.prototype.initHooks=function(){this.getDropDown().selected.watch(()=>{const t=this.getDropDown().selected.current;t.dataset.lat&&t.dataset.lng?this.getMapInput().callable.setMarker({lat:t.dataset.lat,lng:t.dataset.lng}):this.geocodeSearch(t.textContent)}),this.getSearchInput().loading.watch(()=>{this.getLoaderNode().classList.toggle("show",this.getSearchInput().loading.current)}),this.getSearchInput().response.watch(()=>{const{current:t}=this.getSearchInput().response,e=t.success?t.response?.data:[{label:t.response.html}];this.getDropDown().setItems(e),this.getDropDown().showList()}),this.getDropDown().createItem=t=>{const e=l.prototype.createItem.call(this.dropDown,t);return e.classList.add("jet-fb-map-field__search-item"),"label"in t||(e.textContent=t.address,t?.lat&&t?.lng&&(e.dataset.lat=t.lat,e.dataset.lng=t.lng)),e},this.getMapInput().value.watch(()=>{this.getMapInput().value.current||(this.getSearchInput().search.current="",this.getDropDown().setItems([]))})},u.prototype.setLoaderNode=function(t){this.loader=t},u.prototype.getLoaderNode=function(){return this.loader},u.prototype.setMapInput=function(t){this.input=t},u.prototype.getMapInput=function(){return this.input},u.prototype.geocodeSearch=function(t){t=t||this.getSearchInput().search.current;const e=(0,o.addQueryArgs)(JetMapFieldsSettings.apiLocation,{address:t});s()({path:e}).then(t=>{t.success?this.getMapInput().callable.setMarker(t.data):window.alert(t.html)}).catch(function(t){console.error(t)})};const g=u,{addAction:f}=JetPlugins.hooks;f("jet.fb.input.makeReactive","jet-form-builder/map-field-autocomplete",function(t){if("map"!==t.inputType||!t.nodes?.[0]?.parentElement?.querySelector?.(".jet-fb-map-field__search"))return;const e=t.nodes[0].parentElement.querySelector(".jet-fb-map-field__search"),s=new l(e.querySelector(".jet-fb-map-field__search-list")),o=new a(e.querySelector('[type="text"]')),n=new g(o,s);n.setLoaderNode(e.querySelector(".jet-fb-map-field__search-loader")),n.setMapInput(t),n.initHooks()})})(); \ No newline at end of file +(()=>{"use strict";var t={n:e=>{var s=e&&e.__esModule?()=>e.default:()=>e;return t.d(s,{a:s}),s},d:(e,s)=>{for(var o in s)t.o(s,o)&&!t.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:s[o]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e)};const e=window.wp.apiFetch;var s=t.n(e);const o=window.wp.url,{ReactiveVar:n,LoadingReactiveVar:r}=JetFormBuilderAbstract;function i(t){this.searchNode=t,this.controller=null,this.search=new n(""),this.search.make(),this.search.watch(this.onChangeSearch.bind(this)),this.response=new n(!1),this.response.make(),this.loading=new r,this.loading.make(),this.initEventListeners()}i.prototype.initEventListeners=function(){this.searchNode.addEventListener("input",(t=>{this.search.current=t.target.value}))},i.prototype.onChangeSearch=function(){if(this.abort(),this.searchNode.value!==this.search.current&&(this.searchNode.value=this.search.current),2>this.search.current?.length)return void this.loading.end();const t=(0,o.addQueryArgs)(JetMapFieldsSettings.apiAutocomplete,{query:this.search.current});this.loading.start(),s()({path:t,signal:this.controller.signal}).then((t=>{this.response.current={success:!!t.success,response:t},this.loading.end()})).catch((t=>{"AbortError"!==t.name&&(this.response.current={success:!1,response:t},this.loading.end())}))},i.prototype.abort=function(){this.controller?.abort?.(),this.controller=new AbortController};const a=i,{ReactiveVar:c}=JetFormBuilderAbstract;function h(t){this.listNode=t,this.selected=new c,this.selected.make(),this.initEventListeners()}h.prototype.createItem=function(t){const e=document.createElement("li");return e.textContent=t.label,e.tabIndex=0,e},h.prototype.setItems=function(t){this.listNode.innerHTML="";const e=t.map(this.createItem.bind(this));this.listNode.append(...e)},h.prototype.showList=function(){this.listNode.querySelector("li")&&this.listNode.classList.add("show")},h.prototype.hideList=function(){this.listNode.classList.remove("show")},h.prototype.onSelect=function(){this.listNode.querySelectorAll(".selected").forEach((function(t){t.classList.remove("selected")})),this.selected.current.classList.add("selected")},h.prototype.initEventListeners=function(){this.listNode.addEventListener("click",(t=>{"LI"===t.target.tagName&&(this.selected.current=t.target)})),this.listNode.addEventListener("keydown",(t=>{const e=document.activeElement;if("LI"===e.tagName&&e.parentNode===this.listNode)switch(t.key){case"ArrowDown":this.focusNextItem(e),t.preventDefault();break;case"ArrowUp":this.focusPreviousItem(e),t.preventDefault();break;case"Enter":this.selected.current=e,t.preventDefault()}})),this.selected.watch(this.onSelect.bind(this))},h.prototype.focusNextItem=function(t){const e=t.nextElementSibling;e&&e.focus()},h.prototype.focusPreviousItem=function(t){const e=t.previousElementSibling;e?e.focus():this.focusTopOutside()},h.prototype.focusTopOutside=function(){},h.prototype.focusFirstItem=function(){const t=this.listNode.querySelector("li");t&&t.focus()};const l=h;function p(t,e){this.searchInput=t,this.dropDown=e,this.getDropDown().selected.signals=[],this.getDropDown().selected.watch((()=>{this.searchInput.searchNode.value=this.getDropDown().selected.current.textContent,this.getDropDown().hideList()})),this.getDropDown().focusTopOutside=()=>{this.getSearchInput().searchNode.focus()},this.getSearchInput().searchNode.addEventListener("keydown",(t=>{"ArrowDown"===t.key&&(this.dropDown.focusFirstItem(),t.preventDefault())})),this.getSearchInput().searchNode.addEventListener("focus",(t=>{this.getDropDown().showList()})),this.getSearchInput().searchNode.addEventListener("blur",(t=>{t.relatedTarget?.parentElement!==this.getDropDown().listNode&&this.getDropDown().hideList()})),this.getDropDown().listNode.addEventListener("focusout",(t=>{t.relatedTarget!==this.getSearchInput().searchNode&&t.relatedTarget?.parentElement!==this.getDropDown().listNode&&this.getDropDown().hideList()}))}p.prototype.getDropDown=function(){return this.dropDown},p.prototype.getSearchInput=function(){return this.searchInput};const d=p;function u(t,e){d.call(this,t,e)}u.prototype=Object.create(d.prototype),u.prototype.initHooks=function(){this.getDropDown().selected.watch((()=>{const t=this.getDropDown().selected.current;t.dataset.lat&&t.dataset.lng?this.getMapInput().callable.setMarker({lat:t.dataset.lat,lng:t.dataset.lng}):this.geocodeSearch(t.textContent)})),this.getSearchInput().loading.watch((()=>{this.getLoaderNode().classList.toggle("show",this.getSearchInput().loading.current)})),this.getSearchInput().response.watch((()=>{const{current:t}=this.getSearchInput().response,e=t.success?t.response?.data:[{label:t.response.html}];this.getDropDown().setItems(e),this.getDropDown().showList()})),this.getDropDown().createItem=t=>{const e=l.prototype.createItem.call(this.dropDown,t);return e.classList.add("jet-fb-map-field__search-item"),"label"in t||(e.textContent=t.address,t?.lat&&t?.lng&&(e.dataset.lat=t.lat,e.dataset.lng=t.lng)),e},this.getMapInput().value.watch((()=>{this.getMapInput().value.current||(this.getSearchInput().search.current="",this.getDropDown().setItems([]))}))},u.prototype.setLoaderNode=function(t){this.loader=t},u.prototype.getLoaderNode=function(){return this.loader},u.prototype.setMapInput=function(t){this.input=t},u.prototype.getMapInput=function(){return this.input},u.prototype.geocodeSearch=function(t){t=t||this.getSearchInput().search.current;const e=(0,o.addQueryArgs)(JetMapFieldsSettings.apiLocation,{address:t});s()({path:e}).then((t=>{t.success?this.getMapInput().callable.setMarker(t.data):window.alert(t.html)})).catch((function(t){console.error(t)}))};const g=u,{addAction:f}=JetPlugins.hooks;f("jet.fb.input.makeReactive","jet-form-builder/map-field-autocomplete",(function(t){if("map"!==t.inputType||!t.nodes?.[0]?.parentElement?.querySelector?.(".jet-fb-map-field__search"))return;const e=t.nodes[0].parentElement.querySelector(".jet-fb-map-field__search"),s=new l(e.querySelector(".jet-fb-map-field__search-list")),o=new a(e.querySelector('[type="text"]')),n=new g(o,s);n.setLoaderNode(e.querySelector(".jet-fb-map-field__search-loader")),n.setMapInput(t),n.initHooks()}))})(); \ No newline at end of file diff --git a/compatibility/jet-engine/blocks/map-field/assets/build/frontend/map.asset.php b/compatibility/jet-engine/blocks/map-field/assets/build/frontend/map.asset.php index 99690d64b..785abae4e 100644 --- a/compatibility/jet-engine/blocks/map-field/assets/build/frontend/map.asset.php +++ b/compatibility/jet-engine/blocks/map-field/assets/build/frontend/map.asset.php @@ -1 +1 @@ - array('wp-api-fetch'), 'version' => '1c42195e3a62f67476d2'); + array('wp-api-fetch'), 'version' => 'f38a215ec81ea07ac107'); diff --git a/compatibility/jet-engine/blocks/map-field/assets/build/frontend/map.js b/compatibility/jet-engine/blocks/map-field/assets/build/frontend/map.js index caa699ced..78ff2ab0a 100644 --- a/compatibility/jet-engine/blocks/map-field/assets/build/frontend/map.js +++ b/compatibility/jet-engine/blocks/map-field/assets/build/frontend/map.js @@ -1 +1 @@ -(()=>{"use strict";var t={};function e(t){return t.parentElement.classList.contains("jet-fb-map-field")}t.n=e=>{var i=e&&e.__esModule?()=>e.default:()=>e;return t.d(i,{a:i}),i},t.d=(e,i)=>{for(var n in i)t.o(i,n)&&!t.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:i[n]})},t.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);let i=!1;function n(){return!1===i&&(i=new window.JetEngineMapsProvider),i}const{InputData:r}=JetFormBuilderAbstract;function s(){r.call(this),this.isSupported=function(t){return e(t)},this.setNode=function(t){r.prototype.setNode.call(this,t);const e=t.parentElement;this.nodes.push(e.querySelector('[data-map-field="hash"]'),e.querySelector('[data-map-field="lat"]'),e.querySelector('[data-map-field="lng"]')),this.fieldSettings={...this.fieldSettings,...JSON.parse(t.dataset.settings)},this.fieldSettings.zoom=+this.fieldSettings.zoom,this.inputType="map"},this.setValue=function(){const[t]=this.nodes;if(!t.value)return;const e=t=>{const e=t.split(","),i=Number(e[0]),n=Number(e[1]);return 2!==e.length||Number.isNaN(i)||Number.isNaN(n)?{}:{lat:i,lng:n}};switch(this.fieldSettings.format){case"location_string":this.value.current=e(t.value);break;case"location_address":const[i,n,r,s]=this.nodes;if(!r?.value||!s?.value)return!1;this.value.current={lat:Number(r.value),lng:Number(s?.value)};break;case"location_array":try{this.value.current=JSON.parse(t.value)}catch(i){this.value.current=e(t.value)}}},this.makeReactive=function(){r.prototype.makeReactive.call(this),this.reporting.makeInvalid=()=>{},this.reporting.makeValid=()=>{},new IntersectionObserver((t,e)=>{t.forEach(t=>{t.isIntersecting&&(this.callable.render(),this.silenceNotify(),e.unobserve(t.target))})}).observe(this.nodes[0].parentElement)},this.hasAutoScroll=function(){return!1}}s.prototype=Object.create(r.prototype),s.prototype.fieldSettings={height:"300",format:"location_string",field_prefix:!1,zoom:14};const o=s,a=window.wp.apiFetch;var l=t.n(a);const{BaseSignal:u}=JetFormBuilderAbstract,{toHTML:p}=JetFormBuilderFunctions;function c(){u.call(this),this.lock.current=!0,this.map=null,this.marker=null,this.mapFrame=null,this.position=null,this.preview=null,this.markerDefaults={...c.prototype.markerDefaults},this.isSupported=function(t,i){return e(t)},this.runSignal=function(){let t;const{current:e}=this.input.value;if(!e||!Object.keys(e).length)return void this.removeMarker();const[i,n,r,s]=this.input.nodes;this.setPreview(JetMapFieldsSettings.i18n.loading);const o=()=>{this.input.reporting.valuePrev=null,this.input.report(),this.input.loading.end()};switch(this.input.loading.start(),this.input.fieldSettings.format){case"location_string":t=e.lat+","+e.lng,this.updateHashFieldPromise(t).then(()=>{i.value=t,this.setPreview(e)}).finally(o);break;case"location_array":t=JSON.stringify(e),this.updateHashFieldPromise(t).then(()=>{i.value=t,this.setPreview(e)}).finally(o);break;case"location_address":l()({method:"get",path:JetMapFieldsSettings.api+"?lat="+e.lat+"&lng="+e.lng,headers:{nonce:JetMapFieldsSettings.nonce}}).then(t=>{t.success?t.data?this.updateHashFieldPromise(t.data).then(()=>{i.value=t.data,this.setPreview(t.data)}).finally(o):(i.value=null,this.setPreview(JetMapFieldsSettings.i18n.notFound),o()):(i.value=null,this.setPreview(t.html),o())}).catch(function(t){console.log(t)})}r&&(r.value=e.lat),s&&(s.value=e.lng)}}c.prototype=Object.create(u.prototype),c.prototype.map=null,c.prototype.marker=null,c.prototype.preview=null,c.prototype.position=null,c.prototype.mapFrame=null,c.prototype.mapDefaults={center:{lat:41,lng:71},zoom:1},c.prototype.markerDefaults={content:'',shadow:!1},c.prototype.removeMarker=function(){const[t,e,i,r]=this.input.nodes;this.marker&&n().removeMarker(this.marker),this.setPreview(null),t.value=null,i&&(i.value=null),r&&(r.value=null),e&&(e.value=null)},c.prototype.setPreview=function(t){let e;e=t&&t.lat&&t.lng?''+t.lat+', '+t.lng+"":t,this.position.innerHTML=e,this.preview.style.display=t?"flex":"none"},c.prototype.updateHashFieldPromise=function(t){const[e,i]=this.input.nodes;return i?l()({method:"get",path:JetMapFieldsSettings.apiHash+"?loc="+t,headers:{nonce:JetMapFieldsSettings.nonce}}).then(t=>{t.success&&(i.value=t.data)}).catch(function(t){console.log(t)}):new Promise(function(t){t()})},c.prototype.render=function(){const t=this.input.nodes[0].parentElement;this.preview=t.querySelector(".jet-fb-map-field__preview"),this.position=t.querySelector(".jet-fb-map-field__position"),this.mapFrame=t.querySelector(".jet-fb-map-field__frame");const e=n();null!==this.input.value.current&&(this.mapDefaults={...this.mapDefaults,center:this.input.value.current,zoom:this.input.fieldSettings.zoom}),this.map=e.initMap(this.mapFrame,this.mapDefaults),null!==this.input.value.current&&(this.marker=e.addMarker({...this.markerDefaults,position:this.input.value.current,map:this.map})),e.markerOnClick(this.map,this.markerDefaults,t=>{this.marker&&e.removeMarker(this.marker),this.marker=t,this.input.value.current=e.getMarkerPosition(t,!0)}),t.querySelector(".jet-fb-map-field__reset").addEventListener("click",()=>{this.input.value.current=null}),this.lock.current=!1},c.prototype.setMarker=function({lat:t,lng:e}){t=Number(t),e=Number(e),this.input.value.current={lat:t,lng:e};const i=n();this.marker=i.addMarker({...this.markerDefaults,position:this.input.value.current,map:this.map}),this.setCenterByPosition()},c.prototype.setCenterByPosition=function(){n().setCenterByPosition({position:this.input.value.current,map:this.map,zoom:12})};const h=c,{NotEmptyRestriction:d=function(){}}=JetFormBuilderAbstract,{isEmpty:m}=JetFormBuilderFunctions;function f(){d.call(this)}f.prototype=Object.create(d.prototype),f.prototype.isSupported=function(t,e){return d.prototype?.isSupported?.call?.(this,t,e)&&"map"===e.input.inputType},f.prototype.validate=function(){const[t]=this.reporting.input.nodes;return d.prototype.validate.call(this)&&!m(t.value)};const v=f,{RequiredRestriction:y}=JetFormBuilderAbstract,{isEmpty:g}=JetFormBuilderFunctions;function b(){y.call(this)}b.prototype=Object.create(y.prototype),b.prototype.isSupported=function(t,e){return y.prototype.isSupported.call(this,t,e)&&"map"===e.input.inputType},b.prototype.validate=function(){const[t]=this.reporting.input.nodes;return y.prototype.validate.call(this)&&!g(t.value)};const k=b,{addFilter:S}=JetPlugins.hooks;S("jet.fb.inputs","jet-form-builder/map-field",function(t){return[o,...t]}),S("jet.fb.signals","jet-form-builder/map-field",function(t){return[h,...t]}),S("jet.fb.restrictions","jet-form-builder/map-field",function(t){return t.push(v),t}),S("jet.fb.restrictions.default","jet-form-builder/map-field",function(t){return t.push(k),t})})(); \ No newline at end of file +(()=>{"use strict";var t={};function e(t){return t.parentElement.classList.contains("jet-fb-map-field")}t.n=e=>{var i=e&&e.__esModule?()=>e.default:()=>e;return t.d(i,{a:i}),i},t.d=(e,i)=>{for(var n in i)t.o(i,n)&&!t.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:i[n]})},t.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);let i=!1;function n(){return!1===i&&(i=new window.JetEngineMapsProvider),i}const{InputData:r}=JetFormBuilderAbstract;function s(){r.call(this),this.isSupported=function(t){return e(t)},this.setNode=function(t){r.prototype.setNode.call(this,t);const e=t.parentElement;this.nodes.push(e.querySelector('[data-map-field="hash"]'),e.querySelector('[data-map-field="lat"]'),e.querySelector('[data-map-field="lng"]')),this.fieldSettings={...this.fieldSettings,...JSON.parse(t.dataset.settings)},this.fieldSettings.zoom=+this.fieldSettings.zoom,this.inputType="map"},this.setValue=function(){const[t]=this.nodes;if(!t.value)return;const e=t=>{const e=t.split(","),i=Number(e[0]),n=Number(e[1]);return 2!==e.length||Number.isNaN(i)||Number.isNaN(n)?{}:{lat:i,lng:n}};switch(this.fieldSettings.format){case"location_string":this.value.current=e(t.value);break;case"location_address":const[i,n,r,s]=this.nodes;if(!r?.value||!s?.value)return!1;this.value.current={lat:Number(r.value),lng:Number(s?.value)};break;case"location_array":try{this.value.current=JSON.parse(t.value)}catch(i){this.value.current=e(t.value)}}},this.makeReactive=function(){r.prototype.makeReactive.call(this),this.reporting.makeInvalid=()=>{},this.reporting.makeValid=()=>{},new IntersectionObserver(((t,e)=>{t.forEach((t=>{t.isIntersecting&&(this.callable.render(),this.silenceNotify(),e.unobserve(t.target))}))})).observe(this.nodes[0].parentElement)},this.hasAutoScroll=function(){return!1}}s.prototype=Object.create(r.prototype),s.prototype.fieldSettings={height:"300",format:"location_string",field_prefix:!1,zoom:14};const o=s,a=window.wp.apiFetch;var l=t.n(a);const{BaseSignal:u}=JetFormBuilderAbstract,{toHTML:p}=JetFormBuilderFunctions;function c(){u.call(this),this.lock.current=!0,this.map=null,this.marker=null,this.mapFrame=null,this.position=null,this.preview=null,this.markerDefaults={...c.prototype.markerDefaults},this.isSupported=function(t,i){return e(t)},this.runSignal=function(){let t;const{current:e}=this.input.value;if(!e||!Object.keys(e).length)return void this.removeMarker();const[i,n,r,s]=this.input.nodes;this.setPreview(JetMapFieldsSettings.i18n.loading);const o=()=>{this.input.reporting.valuePrev=null,this.input.report(),this.input.loading.end()};switch(this.input.loading.start(),this.input.fieldSettings.format){case"location_string":t=e.lat+","+e.lng,this.updateHashFieldPromise(t).then((()=>{i.value=t,this.setPreview(e)})).finally(o);break;case"location_array":t=JSON.stringify(e),this.updateHashFieldPromise(t).then((()=>{i.value=t,this.setPreview(e)})).finally(o);break;case"location_address":l()({method:"get",path:JetMapFieldsSettings.api+"?lat="+e.lat+"&lng="+e.lng,headers:{nonce:JetMapFieldsSettings.nonce}}).then((t=>{t.success?t.data?this.updateHashFieldPromise(t.data).then((()=>{i.value=t.data,this.setPreview(t.data)})).finally(o):(i.value=null,this.setPreview(JetMapFieldsSettings.i18n.notFound),o()):(i.value=null,this.setPreview(t.html),o())})).catch((function(t){console.log(t)}))}r&&(r.value=e.lat),s&&(s.value=e.lng)}}c.prototype=Object.create(u.prototype),c.prototype.map=null,c.prototype.marker=null,c.prototype.preview=null,c.prototype.position=null,c.prototype.mapFrame=null,c.prototype.mapDefaults={center:{lat:41,lng:71},zoom:1},c.prototype.markerDefaults={content:'',shadow:!1},c.prototype.removeMarker=function(){const[t,e,i,r]=this.input.nodes;this.marker&&n().removeMarker(this.marker),this.setPreview(null),t.value=null,i&&(i.value=null),r&&(r.value=null),e&&(e.value=null)},c.prototype.setPreview=function(t){let e;e=t&&t.lat&&t.lng?''+t.lat+', '+t.lng+"":t,this.position.innerHTML=e,this.preview.style.display=t?"flex":"none"},c.prototype.updateHashFieldPromise=function(t){const[e,i]=this.input.nodes;return i?l()({method:"get",path:JetMapFieldsSettings.apiHash+"?loc="+t,headers:{nonce:JetMapFieldsSettings.nonce}}).then((t=>{t.success&&(i.value=t.data)})).catch((function(t){console.log(t)})):new Promise((function(t){t()}))},c.prototype.render=function(){const t=this.input.nodes[0].parentElement;this.preview=t.querySelector(".jet-fb-map-field__preview"),this.position=t.querySelector(".jet-fb-map-field__position"),this.mapFrame=t.querySelector(".jet-fb-map-field__frame");const e=n();null!==this.input.value.current&&(this.mapDefaults={...this.mapDefaults,center:this.input.value.current,zoom:this.input.fieldSettings.zoom}),this.map=e.initMap(this.mapFrame,this.mapDefaults),null!==this.input.value.current&&(this.marker=e.addMarker({...this.markerDefaults,position:this.input.value.current,map:this.map})),e.markerOnClick(this.map,this.markerDefaults,(t=>{this.marker&&e.removeMarker(this.marker),this.marker=t,this.input.value.current=e.getMarkerPosition(t,!0)})),t.querySelector(".jet-fb-map-field__reset").addEventListener("click",(()=>{this.input.value.current=null})),this.lock.current=!1},c.prototype.setMarker=function({lat:t,lng:e}){t=Number(t),e=Number(e),this.input.value.current={lat:t,lng:e};const i=n();this.marker=i.addMarker({...this.markerDefaults,position:this.input.value.current,map:this.map}),this.setCenterByPosition()},c.prototype.setCenterByPosition=function(){n().setCenterByPosition({position:this.input.value.current,map:this.map,zoom:12})};const h=c,{NotEmptyRestriction:d=function(){}}=JetFormBuilderAbstract,{isEmpty:m}=JetFormBuilderFunctions;function f(){d.call(this)}f.prototype=Object.create(d.prototype),f.prototype.isSupported=function(t,e){return d.prototype?.isSupported?.call?.(this,t,e)&&"map"===e.input.inputType},f.prototype.validate=function(){const[t]=this.reporting.input.nodes;return d.prototype.validate.call(this)&&!m(t.value)};const v=f,{RequiredRestriction:y}=JetFormBuilderAbstract,{isEmpty:g}=JetFormBuilderFunctions;function b(){y.call(this)}b.prototype=Object.create(y.prototype),b.prototype.isSupported=function(t,e){return y.prototype.isSupported.call(this,t,e)&&"map"===e.input.inputType},b.prototype.validate=function(){const[t]=this.reporting.input.nodes;return y.prototype.validate.call(this)&&!g(t.value)};const k=b,{addFilter:S}=JetPlugins.hooks;S("jet.fb.inputs","jet-form-builder/map-field",(function(t){return[o,...t]})),S("jet.fb.signals","jet-form-builder/map-field",(function(t){return[h,...t]})),S("jet.fb.restrictions","jet-form-builder/map-field",(function(t){return t.push(v),t})),S("jet.fb.restrictions.default","jet-form-builder/map-field",(function(t){return t.push(k),t}))})(); \ No newline at end of file diff --git a/compatibility/woocommerce/assets/build/editor.asset.php b/compatibility/woocommerce/assets/build/editor.asset.php index eec345d4b..051b892f0 100644 --- a/compatibility/woocommerce/assets/build/editor.asset.php +++ b/compatibility/woocommerce/assets/build/editor.asset.php @@ -1 +1 @@ - array(), 'version' => '573abeed14d66ccb78d0'); + array(), 'version' => 'e6ec3b15c9bda02b5e79'); diff --git a/compatibility/woocommerce/assets/build/editor.js b/compatibility/woocommerce/assets/build/editor.js index 32b5d6d92..2034b3852 100644 --- a/compatibility/woocommerce/assets/build/editor.js +++ b/compatibility/woocommerce/assets/build/editor.js @@ -1 +1 @@ -(()=>{const{addFilter:o}=wp.hooks;o("jet.fb.insert.post.modifiers","jet-form-builder/woocommerce-compat",function(o){return[{id:"product",isSupported:o=>"product"===o.post_type},...o]})})(); \ No newline at end of file +(()=>{const{addFilter:o}=wp.hooks;o("jet.fb.insert.post.modifiers","jet-form-builder/woocommerce-compat",(function(o){return[{id:"product",isSupported:o=>"product"===o.post_type},...o]}))})(); \ No newline at end of file diff --git a/modules/actions-v2/assets/build/editor.asset.php b/modules/actions-v2/assets/build/editor.asset.php index 34d9fe126..a636f7c9a 100644 --- a/modules/actions-v2/assets/build/editor.asset.php +++ b/modules/actions-v2/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-primitives'), 'version' => '1ed9bc8247d9100667ca'); + array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-primitives'), 'version' => 'f380e91f406d0cb0ad92'); diff --git a/modules/actions-v2/assets/build/editor.js b/modules/actions-v2/assets/build/editor.js index e5b74420d..0d9dc07ce 100644 --- a/modules/actions-v2/assets/build/editor.js +++ b/modules/actions-v2/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={206(e,t,n){n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,'.cue09js{cursor:not-allowed;opacity:0.3;}.jet-form-action.draggable .cue09js{cursor:-webkit-grab;cursor:grab;opacity:1;}\n.f13vj9vm{position:absolute;opacity:0;-webkit-transition:0.2s ease-in-out;transition:0.2s ease-in-out;top:0;right:0;height:100%;background:linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 15%);padding:0 4px 0 25px;}.f13vj9vm.f13vj9vm{width:auto;}.rtl .f13vj9vm{left:0;padding:0 25px 0 4px;}\n.a4jlrqo{position:relative;}.a4jlrqo:hover:not([data-title-editing="true"]) .f13vj9vm{opacity:1;pointer-events:auto;}.a4jlrqo[data-title-editing="true"] .f13vj9vm{opacity:0;pointer-events:none;}\n.alc8tnc{-webkit-flex:1;-ms-flex:1;flex:1;min-width:0;}\n',""]);const a=s},653(e,t,n){n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".myen4j{margin-bottom:unset;}\n.e9ooo02.e9ooo02{box-shadow:#cc1818 0 0 0 2px;}\n.c131zb0w{-webkit-animation:show-current-c131zb0w 2s infinite;animation:show-current-c131zb0w 2s infinite;}@-webkit-keyframes show-current-c131zb0w{50%{box-shadow:rgba(3, 102, 214, 0.3) 0 0 0 3px;}}@keyframes show-current-c131zb0w{50%{box-shadow:rgba(3, 102, 214, 0.3) 0 0 0 3px;}}\n.da595pz{background-image:repeating-linear-gradient(-45deg, #ffffff75 0 20px, #d5d5d57d 20px 40px);}\n",""]);const a=s},985(e,t,n){n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".a14pz2hj{-webkit-flex:1;-ms-flex:1;flex:1;min-width:0;}\n.a1yeh6gv{display:block;width:100%;padding:0;border:none;background:transparent;text-align:left;cursor:text;}\n.an7tpyw{display:block;font-size:13px;line-height:1.4;overflow:hidden;text-overflow:ellipsis;}\n.a1wl0ukk{width:100%;min-height:30px;padding:0 8px;border:1px solid #949494;border-radius:2px;font-size:13px;line-height:1.4;}\n",""]);const a=s},716(e,t,n){n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".ajopllc{margin:unset;text-align:center;font-size:15px;color:#1d2327;}\n.c1j3i9l6{fill:currentColor;}\n.odma714{opacity:0;position:absolute;width:100%;height:100%;z-index:1;top:0;left:0;background-color:rgba(255, 255, 255, 0.6);padding:1em;text-align:center;color:#1d2327;font-weight:600;cursor:auto;}\n.fqw6jzj{cursor:pointer;padding:1.5em;border-radius:2px;border:1px solid #ddd;position:relative;color:#848485;}.fqw6jzj,.fqw6jzj .ajopllc,.fqw6jzj .odma714{-webkit-transition:0.2s ease-in-out;transition:0.2s ease-in-out;}.fqw6jzj:hover{box-shadow:rgba(0, 0, 0, 0.16) 0 1px 4px;}.fqw6jzj:hover,.fqw6jzj:hover .ajopllc{color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));}.fqw6jzj.is-disabled,.fqw6jzj.is-disabled .ajopllc{color:#c7c7c7;}.fqw6jzj.is-disabled:hover>*:not(.odma714){-webkit-filter:blur(2px);filter:blur(2px);}.fqw6jzj.is-disabled:hover .odma714{opacity:1;}\n",""]);const a=s},553(e,t,n){n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".sfffqhk{text-align:center;}\n",""]);const a=s},950(e,t,n){n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".sauuswy{border-top:1px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));margin-top:16px;margin-left:-16px;margin-bottom:-8px;padding-top:8px;}.sauuswy.sauuswy{width:calc(100% + 32px);}\n",""]);const a=s},185(e,t,n){n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,'.s1ani5eo:not([data-conditions-count="0"])::after{content:attr(data-conditions-count);position:absolute;font-size:1.2em;background-color:var(--wp-admin-theme-color);color:#fff;padding:2px 4px;border-radius:6px;top:0;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);font-family:monospace;line-height:normal;}\n',""]);const a=s},914(e,t,n){n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".ekbdm2s{padding:0 4px;border-radius:5px;color:#5c5c5c;font-size:0.9em;background-color:#f3f4f5;cursor:pointer;margin:auto;border:0;font-family:monospace;}.ekbdm2s:after{content:' X';font-weight:bold;}.ekbdm2s:focus{outline:1px solid #5c5c5c;background-color:#e7e8e9;}\n",""]);const a=s},512(e,t,n){n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".s5b5a3p{padding:1em;}\n",""]);const a=s},569(e,t,n){n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".s1goy86j{padding:1em;}\n",""]);const a=s},433(e){e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n="",o=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),o&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),o&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n}).join("")},t.i=function(e,n,o,i,r){"string"==typeof e&&(e=[[null,e,void 0]]);var s={};if(o)for(var a=0;a0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=r),n&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=n):d[2]=n),i&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=i):d[4]="".concat(i)),t.push(d))}},t}},168(e){e.exports=function(e){return e[1]}},542(e,t,n){n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(206),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},877(e,t,n){n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(653),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},545(e,t,n){n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(985),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},92(e,t,n){n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(716),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},929(e,t,n){n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(553),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},974(e,t,n){n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(950),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},409(e,t,n){n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(185),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},210(e,t,n){n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(914),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},848(e,t,n){n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(512),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},841(e,t,n){n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(569),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},673(e){var t=[];function n(e){for(var n=-1,o=0;o0?" ".concat(n.layer):""," {")),o+=n.css,i&&(o+="}"),n.media&&(o+="}"),n.supports&&(o+="}");var r=n.sourceMap;r&&"undefined"!=typeof btoa&&(o+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(r))))," */")),t.styleTagTransform(o,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},626(e){e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function n(o){var i=t[o];if(void 0!==i)return i.exports;var r=t[o]={id:o,exports:{}};return e[o](r,r.exports,n),r.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nc=void 0;var o={};n.r(o),n.d(o,{ActionFetchButton:()=>Pe,ActionGridItem:()=>Qe,ActionItemBody:()=>Xt,ActionItemFooter:()=>an,ActionItemHeader:()=>un,ActionItemWrapper:()=>yn,ActionListItemContext:()=>ot,ActionMessages:()=>Sn,ActionMessagesSlotFills:()=>Cn,ActionModalBackButton:()=>Ln,ActionModalCloseButton:()=>qn,ActionModalHeaderSlotFill:()=>Un,ActionTitle:()=>Et,ActionsAfterNewButtonSlotFill:()=>Zn,ActionsFlow:()=>oi,AddActionButton:()=>no,AllProActionsLink:()=>so,BaseAction:()=>fn,BaseComputedField:()=>ti,CurrentActionEditContext:()=>C,DeleteActionButton:()=>Ut,EditActionConditionsButton:()=>Nt,EditActionSettingsButton:()=>Jt,EventsList:()=>on,FetchAjaxButton:()=>co,FetchApiButton:()=>Ne,FieldsMapField:()=>Jo,ListActionItem:()=>mo,PlaceholderMessage:()=>go,RequestButton:()=>Se,RequestLoadingButton:()=>Ao,STORE_NAME:()=>ge,SingleValueAsArrayToggle:()=>Ho,TableListContainer:()=>Io,TableListHead:()=>Mo,TableListRow:()=>Ro,ToggleActionExecutionButton:()=>Ot,ValidateButton:()=>Eo,ValidateButtonWithStore:()=>So,ValidatedSelectControl:()=>Lo,ValidatedTextControl:()=>_o,ValidatorProvider:()=>ko,addAction:()=>ai,addComputedField:()=>di,convertFlow:()=>mi,convertListToFieldsMap:()=>gi,globalTab:()=>yi,registerAction:()=>ii,useActionCallback:()=>St,useActionErrors:()=>wn,useActionValidatorProvider:()=>Bo,useActions:()=>dt,useActionsEdit:()=>mt,useCurrentAction:()=>Rn,useLoopedAction:()=>st,useRequestFields:()=>Wo,useUpdateCurrentAction:()=>Hn,useUpdateCurrentActionMeta:()=>$o,withCurrentAction:()=>Ae,withDispatchActionLoading:()=>je,withRequestFields:()=>Qo,withSelectActionLoading:()=>Ee});var i={};n.r(i),n.d(i,{addAction:()=>V,addCallback:()=>U,addComputedField:()=>G,clearCurrent:()=>R,editAction:()=>W,editMeta:()=>N,openActionSettings:()=>Z,registerAction:()=>q,registerActions:()=>z,registerCategory:()=>D,setCurrentAction:()=>T,setLoading:()=>M,setLoadingResult:()=>P,setMeta:()=>I,showActionsInserterModal:()=>Y,updateCurrentConditions:()=>O,updateCurrentSettings:()=>H});var r={};n.r(r),n.d(r,{getAction:()=>oe,getActions:()=>ee,getActionsMap:()=>Q,getAllLoading:()=>we,getCategories:()=>ne,getComputedFields:()=>X,getCurrentAction:()=>ue,getCurrentEdit:()=>pe,getCurrentLoading:()=>fe,getCurrentSettings:()=>me,getErrorVisibility:()=>de,getLoading:()=>K,getLoadingIndex:()=>$,getMetaIndex:()=>ce,getOpenScenario:()=>le,getSortedActions:()=>te,isConditionalModal:()=>se,isFixed:()=>ae,isSettingsModal:()=>re,isShowActionsInserterModal:()=>ie});const s=window.wp.data,a="SET_CURRENT_ACTION",l="SET_LOADING",c="UPDATE_ACTION_CONDITIONS",d="SET_CURRENT_META",u="EDIT_CURRENT_META",p="CLEAR_CURRENT",m="ADD_COMPUTED_FIELD",f="EDIT_ACTION",w="REGISTER_ACTION",g="REGISTER_CATEGORY",h="SHOW_ACTIONS_INSERTER_MODAL",v=window.React,y=window.wp.element;var A;const b=(0,y.createContext)({});window.JetFBComponents=null!==(A=window.JetFBComponents)&&void 0!==A?A:{},window.JetFBComponents.CurrentActionEditContext=b;const C=b,E=window.wp.components;function F(e,t=""){const n=window.jetFormActionTypes.find(t=>e===t.id);if(!n)return!1;const o=window[n.self];return t&&o[t]?o[t]:o}function x({actionType:e=!1,source:t=!1},n,o=""){let i=!1;return t&&t[n]?i=t[n]:e&&(i=F(e)[n]),i?e=>e?i[e]?i[e]:o:i:()=>o}const S=function(e,t){const n=function(e,t=!1){t||(t=F(e));const n=x({source:t},"__labels","[Empty Label]"),o=x({source:t},"__help_messages"),i=(s={source:t},x(s,"__messages",{})),r=function(e){return x(e,"__gateway_attrs",[])}({source:t});var s;return{source:t,label:n,help:o,messages:i,gatewayAttrs:r,setSource:function(t={}){const n=function(e){const t=window.jetFormActionTypes.find(t=>e===t.id);return!!t&&t.self}(e);return!(!n||!window[n]||(window[n]={...window[n],...t},0))}}}(e);return o=>{const i={onChangeSetting:(e,t)=>{o.onChange({...o.settings,[t]:e})},getMapField:({source:e="fields_map",name:t})=>{const n=o.settings;return void 0!==n[e]&&void 0!==n[e][t]?n[e][t]:""},setMapField:({source:e="fields_map",nameField:t,value:n})=>{const i={...o.settings[e],[t]:n};o.onChange({...o.settings,[e]:i})},onChangeSettingObj:e=>{o.onChange({...o.settings,...e})}},r={...o,...n,...i},s=(0,E.withFilters)(`jet.fb.render.action.${e}`)(()=>null);return(0,v.createElement)(C.Provider,{value:r},(0,v.createElement)(t,{...r}),(0,v.createElement)(s,{...r}))}},B={id:-1,state:"",success:!1,response:{},loading:!1,buttonClassName:["jet-form-validate-button"]},k=(e={})=>{const t={...B};return e.state&&(t.buttonClassName=["jet-form-validate-button",e.state]),{...t,...e}},j=window.wp.i18n,J=window.wp.primitives,_=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{fillRule:"evenodd",d:"M7.25 16.437a6.5 6.5 0 1 1 9.5 0V16A2.75 2.75 0 0 0 14 13.25h-4A2.75 2.75 0 0 0 7.25 16v.437Zm1.5 1.193a6.47 6.47 0 0 0 3.25.87 6.47 6.47 0 0 0 3.25-.87V16c0-.69-.56-1.25-1.25-1.25h-4c-.69 0-1.25.56-1.25 1.25v1.63ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm10-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",clipRule:"evenodd"})),L={currentAction:{},types:[{type:"login",label:(0,j.__)("User Login","jet-form-builder"),icon:_,disabled:!0,category:"user",proActionLink:"https://jetformbuilder.com/addons/user-login/"},{type:"redirect_to_woo_checkout",label:(0,j.__)("Add to Cart & Redirect to Checkout","jet-form-builder"),icon:(0,v.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,v.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,v.createElement)("g",null,(0,v.createElement)("path",{d:"M6 13h9c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1V4H2c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1v2h13l-4 7H6v1zm-.5 3c.83 0 1.5.67 1.5 1.5S6.33 19 5.5 19 4 18.33 4 17.5 4.67 16 5.5 16zm9 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z"}))),disabled:!0,proActionLink:"https://jetformbuilder.com/addons/woocommerce-cart-checkout-action/"}],categories:[{type:"communication",label:(0,j.__)("Communication & Notifications","jet-form-builder")},{type:"user",label:(0,j.__)("User Management","jet-form-builder")},{type:"content",label:(0,j.__)("Content & Data Management","jet-form-builder")},{type:"advanced",label:(0,j.__)("Advanced Integration","jet-form-builder")}],meta:{},loadingState:[k()],computedFields:[],showActionsInserterModal:!1};function T(e={}){return{type:a,item:e}}function I(e){return{type:d,item:e}}function N(e){return{type:u,item:e}}function R(){return{type:p}}function M(e){var t,n;return null!==(t=e.loading)&&void 0!==t||(e.loading=!0),null!==(n=e.state)&&void 0!==n||(e.state="loading"),({dispatch:t,select:n})=>{const o=n.getLoadingIndex(e.id),i=[...n.getAllLoading()];-1!==o?i[o]=k(e):i.push(k(e)),t({type:l,payload:i})}}function P(e){return({dispatch:t})=>{t.setLoading({id:e.id,state:e.success?"is-valid":"is-invalid",success:e.success,response:e.response,loading:!1})}}function H(e){return({select:t,dispatch:n})=>{const o=t.getCurrentAction(),i={...t.getCurrentSettings(),...e};n({type:a,item:{...o,settings:{...o.settings,[o.type]:i}}})}}function O(e){return{type:c,item:e}}function z(e){return({dispatch:t})=>{for(const n of e)t.registerAction(n)}}function q(e){return({select:t,dispatch:n})=>{t.getAction(e.type)?n({type:f,actionSettings:e}):n.addAction(e)}}function D(e){return{type:g,category:e}}function V(e){return{type:w,actionSettings:e}}function U(e,t){return({dispatch:n})=>{n.registerAction({type:e,edit:t})}}function G(e,t={}){return{type:m,field:e,settings:t}}function W(e,t){return({dispatch:n})=>{n.registerAction({...t,type:e})}}function Z({item:e,index:t,scenario:n=""}){return({dispatch:o})=>{o.setCurrentAction({...e,index:t}),o.setMeta({index:t,modalType:"settings",scenario:n})}}function Y(e){return{type:h,show:e}}function $(e,t){return e.loadingState.findIndex(e=>e.id===t)}function K(e,t){const n=$(e,t);return-1!==n?e.loadingState[n]:{...B}}function X(e){return e.computedFields}function Q(e){const t={};for(const n of e.types)t[n.type]=n;return t}function ee(e){return e.types}function te(e){const t={};return e.categories.forEach((e,n)=>{t[e.type]=n}),e.types.toSorted((e,n)=>(t.hasOwnProperty(e.category)?t[e.category]:1/0)-(t.hasOwnProperty(n.category)?t[n.category]:1/0))}function ne(e){return e.categories}function oe(e,t){return e.types.find(({type:e})=>e===t)}function ie(e){return e.showActionsInserterModal}function re(e){return"settings"===e.meta?.modalType}function se(e){return"conditions"===e.meta?.modalType}function ae(e,t){var n;const o=oe(e,t);return null!==(n=o?.fixed)&&void 0!==n&&n}function le(e){return e.meta?.scenario}function ce(e){return e.meta?.index}function de(e){return e.meta?.errorsShow}function ue(e){return e.currentAction}function pe(e){var t;const n=null!==(t=e.currentAction?.type)&&void 0!==t&&t;return oe(e,n)?.edit}function me(e){var t,n,o;return null!==(o=(null!==(t=e.currentAction?.settings)&&void 0!==t?t:{})[null!==(n=e.currentAction?.type)&&void 0!==n&&n])&&void 0!==o?o:{}}function fe(e){const t=e.currentAction?.id;return K(e,t)}function we(e){return e.loadingState}const ge="jet-forms/actions",he=(0,s.createReduxStore)(ge,{reducer:function(e=L,t){switch(t?.type){case a:const n={};return"function"==typeof t.item?n.currentAction=t.item(e.currentAction):n.currentAction=t.item,{...e,...n};case d:return{...e,meta:{...t.item}};case u:return{...e,meta:{...e.meta,...t.item}};case p:return{...e,currentAction:{},meta:{}};case l:return{...e,loadingState:t.payload};case c:const{conditions:o=[]}=e.currentAction,i="function"==typeof t.item?t.item(o):t.item;return{...e,currentAction:{...e.currentAction,conditions:i}};case w:const{actionSettings:r}=t;return r.hasOwnProperty("label")||(r.label=window.jetFormActionTypes.find(e=>e.id===r.type)?.name),{...e,types:[...e.types,{...r,edit:S(r.type,r.edit)}]};case g:return{...e,categories:[...e.categories,{...t.category}]};case m:const s=[...e.computedFields,{field:t.field,settings:t.settings}].sort((e,t)=>{var n,o;return(null!==(n=e.settings?.priority)&&void 0!==n?n:10)-(null!==(o=t.settings?.priority)&&void 0!==o?o:10)});return{...e,computedFields:s};case f:const{actionSettings:v}=t;"edit"in v&&(v.edit=S(v.type,v.edit));const y=e.types.map(e=>e.type!==v.type?e:{...e,...v});return{...e,types:y};case h:return{...e,showActionsInserterModal:t.show};default:return e}},actions:i,selectors:r});var ve;function ye(e){return{currentAction:e(ge).getCurrentAction()}}window.JetFBHooks=null!==(ve=window.JetFBHooks)&&void 0!==ve?ve:{},window.JetFBHooks.withCurrentAction=ye;const Ae=ye;var be;function Ce(e){return{loadingState:e(ge).getCurrentLoading()}}window.JetFBHooks=null!==(be=window.JetFBHooks)&&void 0!==be?be:{},window.JetFBHooks.withSelectActionLoading=Ce;const Ee=Ce;var Fe;function xe({label:e,ajaxArgs:t={},onSuccessRequest:n=()=>{},onFailRequest:o=()=>{},onLoading:i=()=>{},className:r="",children:s=()=>{},disabled:a=!1,customRequest:l=!1,isHidden:c=!1,hasFetched:d=-1,...u}){r="string"==typeof r?r:r.join(" ");const p=()=>{!1===l?(i(),jQuery.ajax({url:ajaxurl,type:"POST",data:t}).done(e=>e.success?n(e):o()).fail(()=>o())):"function"==typeof l?l():o()};return(0,y.useEffect)(()=>{c&&-1===d&&p()},[]),c?null:(0,v.createElement)(E.Button,{disabled:a,key:"validate_api_key",onClick:p,className:r+" jet-fb-button line-with-input",variant:"secondary",...u},s&&s,e)}window.JetFBComponents=null!==(Fe=window?.JetFBComponents)&&void 0!==Fe?Fe:{},window.JetFBComponents.RequestButton=xe;const Se=xe;var Be;function ke(e){return{setLoading(t){e(ge).setLoading({id:t})},setResultSuccess(t,n){e(ge).setLoadingResult({id:t,success:!0,response:n})},setResultFail(t){e(ge).setLoadingResult({id:t,success:!1,response:{}})}}}window.JetFBHooks=null!==(Be=window.JetFBHooks)&&void 0!==Be?Be:{},window.JetFBHooks.withDispatchActionLoading=ke;const je=ke,Je=window.wp.compose,_e=window.wp.apiFetch;var Le,Te=n.n(_e);function Ie({initialLabel:e="Valid",label:t="InValid",apiArgs:n={},loadingState:o,setLoading:i,id:r,setResultSuccess:s,setResultFail:a,onLoading:l=()=>{},onSuccess:c=()=>{},onFail:d=()=>{},isHidden:u=!1}){return(0,v.createElement)(Se,{disabled:o.loading,hasFetched:o.id,label:(-1===o.id||o.loading)&&e?e:t,className:o.buttonClassName,isHidden:u,customRequest:()=>{i(r),l(),Te()(n).then(e=>{s(r,e),c(e)}).catch(e=>{a(r),d(e)})},isDestructive:o.buttonClassName.includes("is-invalid")},(0,v.createElement)("i",{className:"dashicons"}))}window.JetFBComponents=null!==(Le=window?.JetFBComponents)&&void 0!==Le?Le:{},window.JetFBComponents.FetchApiButton=Ie;const Ne=(0,Je.compose)((0,s.withDispatch)(je))(Ie);var Re;function Me({currentAction:e,...t}){return(0,v.createElement)(Ne,{id:e.id,...t})}window.JetFBComponents=null!==(Re=window?.JetFBComponents)&&void 0!==Re?Re:{},window.JetFBComponents.ActionFetchButton=Me;const Pe=(0,Je.compose)((0,s.withSelect)(Ae),(0,s.withSelect)(Ee))(Me);function He(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var Oe=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,ze=He(function(e){return Oe.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),qe=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)})});const o=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&o.push(t[e]);return o.push(...n),o.join(" ")},De=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{n[t]=e[t]}),n},Ve=(e,t)=>{},Ue=function(e){let t="";return n=>{const o=(o,i)=>{const{as:r=e,class:s=t}=o;var a;const l=function(e,t){const n=De(t,["as","class"]);if(!e){const e="function"==typeof ze?{default:ze}:ze;Object.keys(n).forEach(t=>{e.default(t)||delete n[t]})}return n}(void 0===n.propsAsIs?!("string"==typeof r&&-1===r.indexOf("-")&&(a=r[0],a.toUpperCase()!==a)):n.propsAsIs,o);l.ref=i,l.className=n.atomic?qe(n.class,l.className||s):qe(l.className||s,n.class);const{vars:c}=n;if(c){const e={};for(const t in c){const i=c[t],r=i[0],s=i[1]||"",a="function"==typeof r?r(o):r;Ve(0,n.name),e[`--${t}`]=`${a}${s}`}const t=l.style||{},i=Object.keys(t);i.length>0&&i.forEach(n=>{e[n]=t[n]}),l.style=e}return e.__wyw_meta&&e!==r?(l.as=r,(0,v.createElement)(e,l)):(0,v.createElement)(r,l)},i=v.forwardRef?(0,v.forwardRef)(o):e=>{const t=De(e,["innerRef"]);return o(t,e.innerRef)};return i.displayName=n.name,i.__wyw_meta={className:n.class||t,extends:e},i}};const Ge=(0,y.forwardRef)(function({icon:e,size:t=24,...n},o){return(0,y.cloneElement)(e,{width:t,height:t,...n,ref:o})}),We=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"M10.5 4v4h3V4H15v4h1.5a1 1 0 011 1v4l-3 4v2a1 1 0 01-1 1h-3a1 1 0 01-1-1v-2l-3-4V9a1 1 0 011-1H9V4h1.5zm.5 12.5v2h2v-2l3-4v-3H8v3l3 4z"})),Ze=function({action:e}){var t;return(0,v.createElement)(E.Flex,{direction:"column",justify:"space-evenly",align:"center"},(0,v.createElement)("span",null,(0,j.__)("This is paid addon. You can buy it here:","jet-form-builder")),(0,v.createElement)(E.ExternalLink,{href:null!==(t=e.proActionLink)&&void 0!==t?t:"https://jetformbuilder.com/pricing/"},"jetformbuilder.com"))},Ye=Ue("h5")({name:"ActionTitle",class:"ajopllc",propsAsIs:!1}),$e=Ue(Ge)({name:"ColoredIcon",class:"c1j3i9l6",propsAsIs:!0}),Ke=Ue("div")({name:"Overlay",class:"odma714",propsAsIs:!1}),Xe=Ue(E.Flex)({name:"FlexWrapper",class:"fqw6jzj",propsAsIs:!0}),Qe=function({action:e,onClick:t}){var n,o;const i=null!==(n=e?.disabledOverlay)&&void 0!==n?n:Ze;return(0,v.createElement)(Xe,{onClick:t,direction:"column",align:"center",justify:"flex-start",className:e.disabled?"jfb-action-grid-item is-disabled":"jfb-action-grid-item"},(0,v.createElement)($e,{icon:null!==(o=e?.icon)&&void 0!==o?o:We,size:32}),(0,v.createElement)(Ye,null,e.label),e?.docHref&&(0,v.createElement)(E.ExternalLink,{href:e?.docHref},(0,j.__)("Documentation","jet-form-builder")),e.disabled&&(0,v.createElement)(Ke,null,(0,v.createElement)(i,{action:e})))};n(92);const et=(0,v.createElement)(J.SVG,{width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"M8 7h2V5H8v2zm0 6h2v-2H8v2zm0 6h2v-2H8v2zm6-14v2h2V5h-2zm0 8h2v-2h-2v2zm0 6h2v-2h-2v2z"}));var tt;const nt=(0,y.createContext)({index:-1,action:{}});window.JetFBComponents=null!==(tt=window.JetFBComponents)&&void 0!==tt?tt:{},window.JetFBComponents.ActionListItemContext=nt;const ot=nt;var it;function rt(){return(0,y.useContext)(ot)}window.JetFBHooks=null!==(it=window.JetFBHooks)&&void 0!==it?it:{},window.JetFBHooks.useLoopedAction=rt;const st=rt,at=window.jfb.data;var lt;function ct(e=void 0){return(0,at.useMetaState)("_jf_actions","[]",e)}window.JetFBHooks=null!==(lt=window.JetFBHooks)&&void 0!==lt?lt:{},window.JetFBHooks.useActions=ct;const dt=ct;var ut;const pt=()=>{const[e,t]=dt(),n=(n,o)=>{const i=e.map(e=>n!==e.id?e:{...JSON.parse(JSON.stringify(e)),...o});t([...i])};return{actions:e,setActions:t,moveAction:(n,o)=>{const i=JSON.parse(JSON.stringify(e[n])),r=JSON.parse(JSON.stringify(e[o]));e.splice(o,1,i),e.splice(n,1,r),t([...e])},deleteAction:n=>{e.splice(n,1),t([...e])},updateActionObj:n,toggleExecute:e=>{var t;n(e.id,{is_execute:!(null===(t=e.is_execute)||void 0===t||t)})},addActionProps:n=>{const o=JSON.parse(JSON.stringify(n));o.id=0>o.id?-1*o.id:o.id,t([...e,{...o}])}}};window.JetFBHooks=null!==(ut=window.JetFBHooks)&&void 0!==ut?ut:{},window.JetFBHooks.useActionsEdit=pt;const mt=pt;var ft;const wt=Ue("div")({name:"ActionTitleWrap",class:"a14pz2hj",propsAsIs:!1}),gt=Ue("button")({name:"ActionButton",class:"a1yeh6gv",propsAsIs:!1}),ht=Ue("span")({name:"ActionLabel",class:"an7tpyw",propsAsIs:!1}),vt=Ue("input")({name:"ActionNameInput",class:"a1wl0ukk",propsAsIs:!1});function yt({fallbackLabel:e,nextName:t,setNextName:n,commitName:o,setIsEditing:i,previousNameRef:r,isEscapePressedRef:s,inputRef:a}){return(0,v.createElement)(vt,{ref:a,value:t,onChange:e=>n(e.target.value),onBlur:()=>{s.current?s.current=!1:o()},onKeyDown:e=>{"Enter"===e.key&&(e.preventDefault(),o()),"Escape"===e.key&&(e.preventDefault(),s.current=!0,n(r.current),i(!1))},"aria-label":(0,j.__)("Action display name","jet-form-builder"),placeholder:e,type:"text",maxLength:255,spellCheck:!1})}function At({displayName:e,startEditing:t}){return(0,v.createElement)(gt,{type:"button",onClick:t,"aria-label":(0,j.sprintf)((0,j.__)("Rename action: %s","jet-form-builder"),e)},(0,v.createElement)(ht,{title:e},e))}function bt({deleteAction:e,index:t}){return(0,v.createElement)(E.Button,{isDestructive:!0,variant:"secondary",onClick:()=>e(t)},(0,j.__)("Action is not registered. Delete","jet-form-builder"))}function Ct({onEditingChange:e=()=>{}}){const{deleteAction:t,updateActionObj:n}=mt(),{action:o,index:i}=st(),r=(0,s.useSelect)(e=>e(ge).getAction(o.type),[o.type]),a=function(e,t,n){var o;const[i,r]=(0,y.useState)(!1),[s,a]=(0,y.useState)(""),l=(0,y.useRef)(null),c=(0,y.useRef)(""),d=(0,y.useRef)(!1),u=null!==(o=t?.label)&&void 0!==o?o:"",p=function(e={},t=""){const n=e?.editor_name;return"string"==typeof n&&n.trim()?n.trim():t}(e,u);return(0,y.useEffect)(()=>{if(i)return l.current?.focus(),void l.current?.select();a(p)},[p,i]),{displayName:p,fallbackLabel:u,inputRef:l,isEditing:i,isEscapePressedRef:d,nextName:s,previousNameRef:c,setIsEditing:r,setNextName:a,startEditing:()=>{c.current=p,a(p),r(!0)},commitName:()=>{const t=s.trim(),o=t&&t!==u?t:"";e.editor_name!==o&&n(e.id,{editor_name:o}),r(!1)}}}(o,r,n);return(0,y.useEffect)(()=>{e(a.isEditing)},[a.isEditing]),r?(0,v.createElement)(wt,null,a.isEditing&&(0,v.createElement)(yt,{fallbackLabel:a.fallbackLabel,nextName:a.nextName,setNextName:a.setNextName,commitName:a.commitName,setIsEditing:a.setIsEditing,previousNameRef:a.previousNameRef,isEscapePressedRef:a.isEscapePressedRef,inputRef:a.inputRef}),!a.isEditing&&(0,v.createElement)(At,{displayName:a.displayName,startEditing:a.startEditing})):(0,v.createElement)(bt,{deleteAction:t,index:i})}window.JetFBComponents=null!==(ft=window?.JetFBComponents)&&void 0!==ft?ft:{},window.JetFBComponents.ActionTitle=Ct;const Et=Ct;var Ft;n(545);const xt=(e=!1)=>(0,s.useSelect)(t=>e?t("jet-forms/actions").getAction(e)?.edit:t("jet-forms/actions").getCurrentEdit(),[e]);window.JetFBHooks=null!==(Ft=window.JetFBHooks)&&void 0!==Ft?Ft:{},window.JetFBHooks.useActionCallback=xt;const St=xt,Bt=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"m19 7-3-3-8.5 8.5-1 4 4-1L19 7Zm-7 11.5H5V20h7v-1.5Z"}));var kt;function jt(){const{action:e,index:t}=st(),{setCurrentAction:n,setMeta:o}=(0,s.useDispatch)("jet-forms/actions"),i=St(e.type);return(0,v.createElement)(E.Button,{disabled:!i,size:"small",icon:Bt,label:(0,j.__)("Edit Action","jet-form-builder"),tooltipPosition:"top",onClick:()=>{n({...e,index:t}),o({index:t,modalType:"settings"})}})}window.JetFBComponents=null!==(kt=window?.JetFBComponents)&&void 0!==kt?kt:{},window.JetFBComponents.EditActionSettingsButton=jt;const Jt=jt,_t=(0,v.createElement)(J.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/SVG"},(0,v.createElement)(J.Path,{d:"M17.192 6.75L15.47 5.03l1.06-1.06 3.537 3.53-3.537 3.53-1.06-1.06 1.723-1.72h-3.19c-.602 0-.993.202-1.28.498-.309.319-.538.792-.695 1.383-.13.488-.222 1.023-.296 1.508-.034.664-.116 1.413-.303 2.117-.193.721-.513 1.467-1.068 2.04-.575.594-1.359.954-2.357.954H4v-1.5h4.003c.601 0 .993-.202 1.28-.498.308-.319.538-.792.695-1.383.149-.557.216-1.093.288-1.662l.039-.31a9.653 9.653 0 0 1 .272-1.653c.193-.722.513-1.467 1.067-2.04.576-.594 1.36-.954 2.358-.954h3.19zM8.004 6.75c.8 0 1.46.23 1.988.628a6.24 6.24 0 0 0-.684 1.396 1.725 1.725 0 0 0-.024-.026c-.287-.296-.679-.498-1.28-.498H4v-1.5h4.003zM12.699 14.726c-.161.459-.38.94-.684 1.396.527.397 1.188.628 1.988.628h3.19l-1.722 1.72 1.06 1.06L20.067 16l-3.537-3.53-1.06 1.06 1.723 1.72h-3.19c-.602 0-.993-.202-1.28-.498a1.96 1.96 0 0 1-.024-.026z"}));var Lt;const Tt=Ue(E.Button)({name:"StyledButton",class:"s1ani5eo",propsAsIs:!0});function It(){var e;const{action:t,index:n}=st(),{setCurrentAction:o,setMeta:i}=(0,s.useDispatch)("jet-forms/actions");return(0,v.createElement)(Tt,{size:"small",icon:_t,"data-conditions-count":null!==(e=t?.conditions?.length)&&void 0!==e?e:0,onClick:()=>{o({...t,index:n}),i({index:n,modalType:"conditions"})},label:(0,j.__)("Edit Conditions & Events","jet-form-builder"),tooltipPosition:"top"})}window.JetFBComponents=null!==(Lt=window?.JetFBComponents)&&void 0!==Lt?Lt:{},window.JetFBComponents.EditActionConditionsButton=It;const Nt=It;n(409);const Rt=(0,v.createElement)(J.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,v.createElement)(J.Path,{d:"M4.67 10.664s-2.09 1.11-2.917 1.582l.494.87 1.608-.914.002.002c.343.502.86 1.17 1.563 1.84.348.33.742.663 1.185.976L5.57 16.744l.858.515 1.02-1.701a9.1 9.1 0 0 0 4.051 1.18V19h1v-2.263a9.1 9.1 0 0 0 4.05-1.18l1.021 1.7.858-.514-1.034-1.723c.442-.313.837-.646 1.184-.977.703-.669 1.22-1.337 1.563-1.839l.002-.003 1.61.914.493-.87c-1.75-.994-2.918-1.58-2.918-1.58l-.003.005a8.29 8.29 0 0 1-.422.689 10.097 10.097 0 0 1-1.36 1.598c-1.218 1.16-3.042 2.293-5.544 2.293-2.503 0-4.327-1.132-5.546-2.293a10.099 10.099 0 0 1-1.359-1.599 8.267 8.267 0 0 1-.422-.689l-.003-.005Z"})),Mt=(0,v.createElement)(J.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,v.createElement)(J.Path,{d:"M3.99961 13C4.67043 13.3354 4.6703 13.3357 4.67017 13.3359L4.67298 13.3305C4.67621 13.3242 4.68184 13.3135 4.68988 13.2985C4.70595 13.2686 4.7316 13.2218 4.76695 13.1608C4.8377 13.0385 4.94692 12.8592 5.09541 12.6419C5.39312 12.2062 5.84436 11.624 6.45435 11.0431C7.67308 9.88241 9.49719 8.75 11.9996 8.75C14.502 8.75 16.3261 9.88241 17.5449 11.0431C18.1549 11.624 18.6061 12.2062 18.9038 12.6419C19.0523 12.8592 19.1615 13.0385 19.2323 13.1608C19.2676 13.2218 19.2933 13.2686 19.3093 13.2985C19.3174 13.3135 19.323 13.3242 19.3262 13.3305L19.3291 13.3359C19.3289 13.3357 19.3288 13.3354 19.9996 13C20.6704 12.6646 20.6703 12.6643 20.6701 12.664L20.6697 12.6632L20.6688 12.6614L20.6662 12.6563L20.6583 12.6408C20.6517 12.6282 20.6427 12.6108 20.631 12.5892C20.6078 12.5459 20.5744 12.4852 20.5306 12.4096C20.4432 12.2584 20.3141 12.0471 20.1423 11.7956C19.7994 11.2938 19.2819 10.626 18.5794 9.9569C17.1731 8.61759 14.9972 7.25 11.9996 7.25C9.00203 7.25 6.82614 8.61759 5.41987 9.9569C4.71736 10.626 4.19984 11.2938 3.85694 11.7956C3.68511 12.0471 3.55605 12.2584 3.4686 12.4096C3.42484 12.4852 3.39142 12.5459 3.36818 12.5892C3.35656 12.6108 3.34748 12.6282 3.34092 12.6408L3.33297 12.6563L3.33041 12.6614L3.32948 12.6632L3.32911 12.664C3.32894 12.6643 3.32879 12.6646 3.99961 13ZM11.9996 16C13.9326 16 15.4996 14.433 15.4996 12.5C15.4996 10.567 13.9326 9 11.9996 9C10.0666 9 8.49961 10.567 8.49961 12.5C8.49961 14.433 10.0666 16 11.9996 16Z"}));var Pt;function Ht(){var e;const{action:t}=st(),n=null===(e=t.is_execute)||void 0===e||e,{toggleExecute:o}=mt();return(0,v.createElement)(E.Button,{size:"small",icon:n?Rt:Mt,label:n?(0,j.__)("Turn off","jet-form-builder"):(0,j.__)("Turn on","jet-form-builder"),onClick:()=>o(t),tooltipPosition:"top"})}window.JetFBComponents=null!==(Pt=window?.JetFBComponents)&&void 0!==Pt?Pt:{},window.JetFBComponents.ToggleActionExecutionButton=Ht;const Ot=Ht,zt=window.jfb.components,qt=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 5.5A2.25 2.25 0 0 0 9.878 7h4.244A2.251 2.251 0 0 0 12 5.5ZM12 4a3.751 3.751 0 0 0-3.675 3H5v1.5h1.27l.818 8.997a2.75 2.75 0 0 0 2.739 2.501h4.347a2.75 2.75 0 0 0 2.738-2.5L17.73 8.5H19V7h-3.325A3.751 3.751 0 0 0 12 4Zm4.224 4.5H7.776l.806 8.861a1.25 1.25 0 0 0 1.245 1.137h4.347a1.25 1.25 0 0 0 1.245-1.137l.805-8.861Z"}));var Dt;function Vt(){const{index:e}=st(),{deleteAction:t}=mt(),{showPopover:n,setShowPopover:o,ref:i,popoverProps:r}=(0,zt.useTriggerPopover)();return(0,v.createElement)(v.Fragment,null,(0,v.createElement)(E.Button,{ref:i,isDestructive:!0,size:"small",icon:qt,label:(0,j.__)("Delete action","jet-form-builder"),tooltipPosition:"top",onClick:()=>o(e=>!e)}),n&&(0,v.createElement)(zt.PopoverStandard,{placement:"top-end",noArrow:!1,...r},(0,v.createElement)("span",null,(0,j.__)("Delete this action?","jet-form-builder"))," ",(0,v.createElement)(E.Button,{isLink:!0,isDestructive:!0,onClick:()=>t(e)},(0,j.__)("Yes","jet-form-builder"))," / ",(0,v.createElement)(E.Button,{isLink:!0,onClick:()=>o(!1)},(0,j.__)("No","jet-form-builder"))))}window.JetFBComponents=null!==(Dt=window?.JetFBComponents)&&void 0!==Dt?Dt:{},window.JetFBComponents.DeleteActionButton=Vt;const Ut=Vt;var Gt;const Wt=Ue(Ge)({name:"CursoredIcon",class:"cue09js",propsAsIs:!0}),Zt=Ue(E.Flex)({name:"FlexActionButtons",class:"f13vj9vm",propsAsIs:!0}),Yt=Ue(E.CardBody)({name:"ActionCardBody",class:"a4jlrqo",propsAsIs:!0}),$t=Ue(E.Flex)({name:"ActionTitleWrap",class:"alc8tnc",propsAsIs:!0});function Kt(){const{action:e}=st(),[t,n]=(0,y.useState)(!1),o=(0,s.useSelect)(t=>t("jet-forms/actions").getAction(e.type),[e.type]);return(0,v.createElement)(Yt,{"data-title-editing":t?"true":void 0},void 0===o&&(0,v.createElement)(E.Flex,{align:"center",justify:"space-between"},(0,v.createElement)("small",null,"Action ",(0,v.createElement)("b",null,'"',e.type,'"')," is not supported"),(0,v.createElement)(Ut,null)),void 0!==o&&(0,v.createElement)(v.Fragment,null,(0,v.createElement)(E.Flex,{align:"center",justify:"flex-start",gap:1},(0,v.createElement)(Wt,{className:"jfb-action-handle",icon:et}),(0,v.createElement)($t,{align:"center",justify:"flex-start"},(0,v.createElement)(Et,{onEditingChange:n}))),(0,v.createElement)(Zt,{justify:"flex-end"},(0,v.createElement)(Jt,null),!o.disableConditions&&(0,v.createElement)(Nt,null),(0,v.createElement)(Ot,null),(0,v.createElement)(Ut,null))))}window.JetFBComponents=null!==(Gt=window?.JetFBComponents)&&void 0!==Gt?Gt:{},window.JetFBComponents.ActionItemBody=Kt;const Xt=Kt;var Qt;n(542);const en=Ue("button")({name:"EventButton",class:"ekbdm2s",propsAsIs:!1});function tn(e){var t,n;const{slug:o,index:i}=e,{action:r}=(0,y.useContext)(ot),a=(0,s.useSelect)(e=>e("jet-forms/events").getType(o),[o]),{updateActionObj:l}=mt(),c=[null!==(t=a?.title)&&void 0!==t?t:"",(0,j.__)("(Click to delete)","jet-form-builder")].join(" ");return(0,v.createElement)(en,{type:"button",title:c,onClick:()=>{r.events.splice(i,1),l(r.id,{...r})}},null!==(n=a?.value)&&void 0!==n?n:o)}function nn(e){const{events:t=[]}=e;return t.map((e,t)=>(0,v.createElement)(tn,{key:e,slug:e,index:t}))}window.JetFBComponents=null!==(Qt=window?.JetFBComponents)&&void 0!==Qt?Qt:{},window.JetFBComponents.EventsList=nn;const on=nn;var rn;function sn({children:e,...t}={}){const{action:n}=st(),o=window.JetFormEditorData.actionConditionExcludeEvents;return o[n.type]&&n.events?.length&&(n.events=n.events.filter(e=>!o[n.type].includes(e))),Boolean(n.events?.length)&&(0,v.createElement)(E.CardFooter,{style:{flexWrap:"wrap",rowGap:"0.5em"},...t},(0,v.createElement)(on,{events:n.events}),e)}n(210),window.JetFBComponents=null!==(rn=window?.JetFBComponents)&&void 0!==rn?rn:{},window.JetFBComponents.ActionItemFooter=sn;const an=sn,ln=window.wp.hooks;var cn;function dn({children:e,...t}={}){const{action:n}=st(),o=(0,ln.applyFilters)(`jet.fb.section.actions.header.${n.type}`,null,n);return o?(0,v.createElement)(E.CardHeader,{...t},o,e):null}window.JetFBComponents=null!==(cn=window?.JetFBComponents)&&void 0!==cn?cn:{},window.JetFBComponents.ActionItemHeader=dn;const un=dn;function pn(e=null){this.initData(e)}function mn(){return Math.floor(8999*Math.random())+1e3}pn.prototype.initData=function(e){var t,n,o,i,r,s;this.id=null!==(t=e?.id)&&void 0!==t?t:mn(),this.settings=null!==(n=e?.settings)&&void 0!==n?n:{},this.type=null!==(o=e?.type)&&void 0!==o?o:"send_email",this.editor_name=null!==(i=e?.editor_name)&&void 0!==i?i:"",this.conditions=null!==(r=e?.conditions)&&void 0!==r?r:[],this.events=null!==(s=e?.events)&&void 0!==s?s:[],Object.defineProperty(this,"selfSettings",{get:()=>{var e;return this.settings.hasOwnProperty(null!==(e=this.type)&&void 0!==e?e:"")?this.settings[this.type]:{}},set:e=>{var t;this.settings.hasOwnProperty(null!==(t=this.type)&&void 0!==t?t:"")||(this.settings[this.type]={}),this.settings[this.type]={...this.settings[this.type],...e}}}),Object.defineProperty(this,"index",{get:()=>{var t;return null!==(t=e?.index)&&void 0!==t?t:0}})},pn.prototype.refactorSettings=function(){const e=this.settings;this.settings={},this.selfSettings=e},pn.prototype.resetID=function(){this.id=mn()},window.JetFBComponents=window.JetFBComponents||{},window.JetFBComponents.BaseAction=pn;const fn=pn,wn=function(e){e=new fn(e);const t=(0,s.useSelect)(t=>{const n=t(ge).getAction(e.type);return n?.validators?n.validators:[]},[e.type]),n=[];for(const o of t){const t=o({settings:e.selfSettings});Array.isArray(t)?n.push(...t):t&&n.push(t)}return n};var gn;const hn=Ue(E.Card)({name:"MarginLessCard",class:"myen4j",propsAsIs:!0});function vn({className:e="",...t}={}){var n;const{action:o}=st(),{currentAction:i,isFixed:r}=(0,s.useSelect)(e=>({currentAction:e("jet-forms/actions").getCurrentAction(),isFixed:e("jet-forms/actions").isFixed(o.type)}),[o.type]),a=wn(o),l=null===(n=o.is_execute)||void 0===n||n,c=Boolean(a.length)?(0,j.__)("This action isn't set up properly. Please check the settings of the action","jet-form-builder"):"",d=c?E.Tooltip:y.Fragment,u=c?{text:c,delay:200,placement:"top"}:{};return(0,v.createElement)(d,{...u},(0,v.createElement)(hn,{elevation:2,size:"extraSmall",className:qe("jet-form-action",e,!r&&"draggable",!l&&"da595pz",i?.id===o.id&&"c131zb0w",a.length&&"e9ooo02"),...t}))}window.JetFBComponents=null!==(gn=window?.JetFBComponents)&&void 0!==gn?gn:{},window.JetFBComponents.ActionItemWrapper=vn;const yn=vn;var An;n(877);const bn={};for(const{self:e}of window.jetFormActionTypes)if(window[e]?.hasOwnProperty?.("__messages")&&Object.keys(window[e].__messages)?.length)for(const t of Object.keys(window[e].__messages))bn.hasOwnProperty(t)||(bn[t]=(0,E.createSlotFill)(`JFBActionMessageRow-${t}`));window.JetFBComponents=null!==(An=window?.JetFBComponents)&&void 0!==An?An:{},window.JetFBComponents.ActionMessagesSlotFills=bn;const Cn=bn;var En;function Fn(e){const{type:t,label:n,value:o,onChange:i}=e,{Slot:r}=(0,y.useMemo)(()=>Cn[t],[t]);return(0,v.createElement)(Ro,{tag:"jfb-message-item",label:n},({htmlId:t})=>(0,v.createElement)(r,{fillProps:{...e,id:t}},e=>Boolean(e?.length)?e:(0,v.createElement)(zt.StyledTextControl,{id:t,value:o,onChange:i})))}function xn(e){const{settings:t,source:n,getMapField:o,setMapField:i,messages:r,onChangeSetting:s}=e;return(0,y.useEffect)(()=>{const e=t.messages||{},o={};Object.entries(n.__messages).forEach(([t,n])=>{e[t]||(o[t]=n.value)}),o&&s({...e,...o},"messages")},[]),(0,v.createElement)("div",{createId:!1,className:zt.TableListStyle.Wrap},(0,v.createElement)(zt.Label,{className:zt.TableListStyle.Label},(0,j.__)("Messages Settings","jet-form-builder")),(0,v.createElement)(zt.Help,{className:zt.TableListStyle.WhiteSpaceNormal},"Change error message according to USER LOGIN form field; it can be username or email."),(0,v.createElement)(Io,null,t.messages&&Object.entries(t.messages).map(([e])=>{return(0,v.createElement)(Fn,{key:"message_"+e,type:e,label:r(e).label,value:(t=e,o({name:t,source:"messages"})),onChange:t=>{i({value:t,nameField:e,source:"messages"})}});var t})))}window.JetFBComponents=null!==(En=window?.JetFBComponents)&&void 0!==En?En:{},window.JetFBComponents.ActionMessages=xn;const Sn=xn,Bn=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"M10.8622 8.04053L14.2805 12.0286L10.8622 16.0167L9.72327 15.0405L12.3049 12.0286L9.72327 9.01672L10.8622 8.04053Z"})),kn=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"m13.1 16-3.4-4 3.4-4 1.1 1-2.6 3 2.6 3-1.1 1z"}));var jn;const Jn=document.body.classList.contains("rtl");function _n(){const{deleteAction:e}=mt(),{index:t}=st(),{ref:n,setShowPopover:o,showPopover:i,popoverProps:r}=(0,zt.useTriggerPopover)(),{showActionsInserterModal:a}=(0,s.useDispatch)(ge);return(0,s.useSelect)(e=>"inserter"===e(ge).getOpenScenario(),[])&&(0,v.createElement)(v.Fragment,null,(0,v.createElement)(E.Button,{ref:n,variant:"tertiary",icon:Jn?Bn:kn,onClick:()=>o(e=>!e)},(0,j.__)("Back","jet-form-builder")),i&&(0,v.createElement)(zt.PopoverStandard,{placement:"bottom",noArrow:!1,...r},(0,v.createElement)("span",null,(0,j.__)("Are you sure? All your changes will be lost.","jet-form-builder"))," ",(0,v.createElement)(E.Button,{isLink:!0,isDestructive:!0,onClick:()=>{e(t),a(!0)}},(0,j.__)("Yes","jet-form-builder"))," / ",(0,v.createElement)(E.Button,{isLink:!0,onClick:()=>o(!1)},(0,j.__)("No","jet-form-builder"))))}window.JetFBComponents=null!==(jn=window?.JetFBComponents)&&void 0!==jn?jn:{},window.JetFBComponents.ActionModalBackButton=_n;const Ln=_n,Tn=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));var In;function Nn(){const[e,t]=(0,s.useSelect)(e=>[e(ge).getCurrentAction(),e(ge).getCurrentSettings()],[]),{updateCurrentSettings:n}=(0,s.useDispatch)(ge);return{currentAction:e,currentSettings:t,updateSettings:n}}window.JetFBHooks=null!==(In=window.JetFBHooks)&&void 0!==In?In:{},window.JetFBHooks.useCurrentAction=Nn;const Rn=Nn;var Mn;const Pn=()=>{const{currentAction:e}=Rn(),{setCurrentAction:t,clearCurrent:n,updateCurrentConditions:o}=(0,s.useDispatch)(ge);return{setCurrentAction:t,setTypeSettings:n=>{t({...e,settings:{...e.settings,[e.type]:n}})},clearCurrent:n,updateCurrentConditions:o}};window.JetFBHooks=null!==(Mn=window.JetFBHooks)&&void 0!==Mn?Mn:{},window.JetFBHooks.useUpdateCurrentAction=Pn;const Hn=Pn;var On;function zn(){const{clearCurrent:e}=Hn();return(0,v.createElement)(v.Fragment,null,(0,v.createElement)(E.Button,{icon:Tn,onClick:()=>e(),label:(0,j.__)("Close","jet-form-builder")}))}window.JetFBComponents=null!==(On=window?.JetFBComponents)&&void 0!==On?On:{},window.JetFBComponents.ActionModalCloseButton=zn;const qn=zn;var Dn;const Vn=(0,E.createSlotFill)("JFBActionModalHeader");window.JetFBComponents=null!==(Dn=window?.JetFBComponents)&&void 0!==Dn?Dn:{},window.JetFBComponents.ActionModalHeaderSlotFill=Vn;const Un=Vn;var Gn;const Wn=(0,E.createSlotFill)("JFBActionsAfterNewButton");window.JetFBComponents=null!==(Gn=window?.JetFBComponents)&&void 0!==Gn?Gn:{},window.JetFBComponents.ActionsAfterNewButtonSlotFill=Wn;const Zn=Wn,Yn=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"M11 12.5V17.5H12.5V12.5H17.5V11H12.5V6H11V11H6V12.5H11Z"})),$n=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"M12 13.06l3.712 3.713 1.061-1.06L13.061 12l3.712-3.712-1.06-1.06L12 10.938 8.288 7.227l-1.061 1.06L10.939 12l-3.712 3.712 1.06 1.061L12 13.061z"})),Kn=".components-modal__frame",Xn=Ue("div")({name:"StyledPlaceholder",class:"sfffqhk",propsAsIs:!1}),Qn=function(){(0,y.useEffect)(()=>{const e=e=>{(e=>{const t=e.metaKey&&!e.ctrlKey,n=e.ctrlKey&&!e.metaKey;return(t||n)&&"z"===e.key.toLowerCase()&&!e.altKey})(e)&&(e=>{const t=e.composedPath?.();return t?.length?t.some(e=>e instanceof Element&&e.matches?.(Kn)):e.target?.closest?.(Kn)})(e)&&e.stopPropagation()};return window.addEventListener("keydown",e,!0),()=>{window.removeEventListener("keydown",e,!0)}},[]);const e=(0,y.useRef)(null),{actions:t,setActions:n}=mt(),{openActionSettings:o,showActionsInserterModal:i}=(0,s.useDispatch)(ge),{search:r,setSearch:a,category:l,categories:c,actionTypes:d,setCategory:u}=(()=>{const[e,t]=(0,y.useState)(""),[n,o]=(0,y.useState)(""),{actionTypes:i,categories:r}=(0,s.useSelect)(t=>{const o=t(ge);return{actionTypes:o.getSortedActions().filter(t=>(!e||!t?.category&&"misc"===e||t?.category===e)&&t?.label?.toLowerCase?.().includes?.(n.toLowerCase())),categories:[{value:"",label:(0,j.__)("All","jet-form-builder")},...o.getCategories().map(e=>({value:e?.type,label:e?.label})),{value:"misc",label:(0,j.__)("Misc","jet-form-builder")}]}},[n,e]);return{search:n,setSearch:o,category:e,categories:r,actionTypes:i,setCategory:t}})();return(0,y.useEffect)(()=>{const t=window.requestAnimationFrame(()=>{e.current?.focus?.()});return()=>{window.cancelAnimationFrame(t)}},[]),(0,y.useEffect)(()=>()=>{a(""),u("")},[u,a]),(0,v.createElement)(E.Modal,{size:"large",title:(0,j.__)("Add new action","jet-form-builder"),onRequestClose:()=>i(!1),headerActions:(0,v.createElement)(zt.StyledFlexControl,{expanded:!1},(0,v.createElement)(E.TextControl,{ref:e,placeholder:(0,j.__)("Search action by name…","jet-form-builder"),value:r,onChange:a}),(0,v.createElement)(E.SelectControl,{value:l,onChange:u,options:c}))},!Boolean(d?.length)&&(0,v.createElement)(Xn,null,(0,v.createElement)("h3",null,(0,j.__)("No actions were found by your search parameters.","jet-form-builder")),(0,v.createElement)(E.Button,{variant:"secondary",icon:$n,onClick:()=>{a(""),u("")}},(0,j.__)("Clear search & category fields","jet-form-builder"))),(0,v.createElement)(E.__experimentalGrid,{columns:4,className:"jfb-actions-grid"},d.map(e=>(0,v.createElement)(Qe,{key:e.type,action:e,onClick:r=>{e.disabled||((e,r)=>{const s=Array.from(e.target?.classList);if(s?.[0]?.includes?.("components-external-link"))return;const a={...new fn({type:r.type})};n([...t,a]),i(!1),o({item:a,index:t.length,scenario:"inserter"})})(r,e)}}))))};var eo;function to(){const{showActionsInserterModal:e}=(0,s.useDispatch)(ge),t=(0,s.useSelect)(e=>e(ge).isShowActionsInserterModal(),[]);return(0,v.createElement)(v.Fragment,null,(0,v.createElement)(E.Button,{isPrimary:!0,onClick:()=>e(!0),icon:Yn},(0,j.__)("New Action","jet-form-builder")),t&&(0,v.createElement)(Qn,null))}n(929),window.JetFBComponents=null!==(eo=window?.JetFBComponents)&&void 0!==eo?eo:{},window.JetFBComponents.AddActionButton=to;const no=to;var oo;const io=Ue(E.Flex)({name:"StyledFlex",class:"sauuswy",propsAsIs:!0});function ro(){return!JetFormEditorData.isActivePro&&(0,v.createElement)(io,{gap:3,justify:"center"},(0,v.createElement)("a",{href:JetFormEditorData.utmLinks.allProActions,target:"_blank",rel:"external noreferrer noopener",style:{textDecoration:"none"}},(0,v.createElement)(E.Flex,null,(0,j.__)("All PRO Actions","jet-form-builder"),(0,v.createElement)(Ge,{size:20,icon:(0,v.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",fill:"currentColor"},(0,v.createElement)("path",{d:"M19.5 4.5h-7V6h4.44l-5.97 5.97 1.06 1.06L18 7.06v4.44h1.5v-7Zm-13 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3H17v3a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h3V5.5h-3Z"}))}))))}window.JetFBComponents=null!==(oo=window?.JetFBComponents)&&void 0!==oo?oo:{},window.JetFBComponents.AllProActionsLink=ro;const so=ro;var ao;function lo({initialLabel:e="Valid",label:t="InValid",ajaxArgs:n={},loadingState:o,setLoading:i,id:r,setResultSuccess:s,setResultFail:a}){return(0,v.createElement)(Se,{disabled:o.loading,ajaxArgs:n,label:-1===o.id&&e?e:t,onLoading:()=>{i(r)},onSuccessRequest:e=>{s(r,e)},onFailRequest:()=>a(r),className:o.buttonClassName},(0,v.createElement)("i",{className:"dashicons"}))}n(974),window.JetFBComponents=null!==(ao=window?.JetFBComponents)&&void 0!==ao?ao:{},window.JetFBComponents.FetchAjaxButton=lo;const co=(0,Je.compose)((0,s.withSelect)(Ee),(0,s.withDispatch)(je))(lo);var uo;function po(){return(0,v.createElement)(v.Fragment,null,(0,v.createElement)(yn,null,(0,v.createElement)(un,null),(0,v.createElement)(Xt,null),(0,v.createElement)(an,null)))}window.JetFBComponents=null!==(uo=window?.JetFBComponents)&&void 0!==uo?uo:{},window.JetFBComponents.ListActionItem=po;const mo=po;var fo;function wo({style:e,children:t}){const n={fontSize:"1.5em",padding:"2em",textAlign:"center",backgroundColor:"aliceblue",...e};return(0,v.createElement)("p",{style:n},t)}window.JetFBComponents=null!==(fo=window?.JetFBComponents)&&void 0!==fo?fo:{},window.JetFBComponents.PlaceholderMessage=wo;const go=wo,ho=["jet-form-validate-button"];var vo;function yo({label:e,ajaxArgs:t={},onSuccessRequest:n=()=>{},onFailRequest:o=()=>{}}){const[i,r,s]=function(){const[e,t]=(0,y.useState)([...ho]);return[e.join(" "),()=>{t([...ho,"loading"])},()=>{t(ho)}]}();return(0,v.createElement)(Se,{ajaxArgs:t,label:e,onLoading:r,onSuccessRequest:e=>{s(),n(e)},onFailRequest:()=>{s(),o()},className:i},(0,v.createElement)("i",{className:"dashicons"}))}window.JetFBComponents=null!==(vo=window?.JetFBComponents)&&void 0!==vo?vo:{},window.JetFBComponents.RequestLoadingButton=yo;const Ao=yo;var bo;function Co({initialValid:e=null,label:t,ajaxArgs:n={},onValid:o=()=>{},onInvalid:i=()=>{}}){const[r,s]=(0,y.useState)({}),[a,l,c,d]=function(e){const t="is-valid",n="is-invalid",[o,i]=(0,y.useState)(()=>[...ho,...e?[t]:!1===e?[n]:[]]);return[o.join(" "),()=>{i([...ho,t])},()=>{i([...ho,n])},()=>{i([...ho,"loading"])}]}(e||null);return(0,v.createElement)(Se,{ajaxArgs:n,label:t,onLoading:d,onSuccessRequest:e=>{l(),o(e),s({})},onFailRequest:()=>{c(),i(),s({isDestructive:!0})},className:a,...r},(0,v.createElement)("i",{className:"dashicons"}))}window.JetFBComponents=null!==(bo=window?.JetFBComponents)&&void 0!==bo?bo:{},window.JetFBComponents.ValidateButton=Co;const Eo=Co;var Fo;function xo(e){const t=(0,s.useSelect)(e=>e(ge).getCurrentAction(),[]);return(0,v.createElement)(co,{id:t.id,...e})}window.JetFBComponents=null!==(Fo=window?.JetFBComponents)&&void 0!==Fo?Fo:{},window.JetFBComponents.ValidateButtonWithStore=xo;const So=xo,Bo=function({isSupported:e}){const{currentAction:t,isShowErrors:n}=(0,s.useSelect)(e=>({currentAction:e(ge).getCurrentAction(),isShowErrors:e(ge).getErrorVisibility()}),[]),[o,i]=(0,y.useState)(!1);return{hasError:wn(o||n?t:{type:!1}).some(e),setShowError:i}},ko=function({isSupported:e,children:t}){return t(Bo({isSupported:e}))},jo=Ue(E.Flex)({name:"StyledFlex",class:"s5b5a3p",propsAsIs:!0}),Jo=function e({tag:t,label:n,help:o="",isRequired:i,formFields:r,value:s,onChange:a}){const l=i?zt.RequiredLabel:zt.Label,{hasError:c,setShowError:d}=Bo({isSupported:e=>`field_${t}`===e?.property}),u=(0,Je.useInstanceId)(e,"jfb-field-map");return(0,v.createElement)(E.Card,{elevation:2},(0,v.createElement)(jo,{direction:"column",gap:3},c&&(0,v.createElement)(zt.IconText,null,(0,j.__)("Please fill this required field","jet-form-builder")),(0,v.createElement)(zt.RowControl,{createId:!1,controlSize:1,className:qe(c&&zt.ControlWithErrorStyle)},(0,v.createElement)(l,{htmlFor:u},n),(0,v.createElement)(zt.StyledSelectControl,{id:u,value:s,onChange:a,onBlur:()=>d(!0),options:r})),Boolean(o)&&(0,v.createElement)(zt.Help,null,o)))};n(848);const _o=function({value:e,onChange:t,label:n,help:o,isErrorSupported:i=()=>!1,errorText:r="",required:s=!1,disabled:a=!1}){const{hasError:l,setShowError:c}=Bo({isSupported:i}),d=s?zt.RequiredLabel:zt.Label;return(0,v.createElement)(zt.RowControl,null,({id:i})=>(0,v.createElement)(v.Fragment,null,(0,v.createElement)(d,{htmlFor:i},n),(0,v.createElement)(zt.RowControlEnd,{hasError:l,errorText:r},(0,v.createElement)(zt.StyledTextControl,{id:i,value:e,onChange:t,onBlur:()=>c(!0),help:o,disabled:a}))))},Lo=function({value:e,onChange:t,label:n,help:o="",options:i,required:r=!1,isErrorSupported:s=()=>!1}){const{hasError:a,setShowError:l}=Bo({isSupported:s}),c=r?zt.RequiredLabel:zt.Label;return(0,v.createElement)(zt.RowControl,null,({id:r})=>(0,v.createElement)(v.Fragment,null,(0,v.createElement)(c,{htmlFor:r},n),(0,v.createElement)(zt.RowControlEnd,{hasError:a},(0,v.createElement)(zt.StyledSelectControl,{id:r,value:e,onChange:t,onBlur:()=>l(!0),help:o,options:i}))))},To=Ue(E.Flex)({name:"StyledFlex",class:"s1goy86j",propsAsIs:!0});function Io({children:e}){return(0,v.createElement)(E.Card,{className:zt.TableListStyle.Card},e)}function No({tag:e,label:t,help:n,isRequired:o,children:i}){const r=o?zt.RequiredLabel:zt.Label,{hasError:s,setShowError:a}=Bo({isSupported:t=>`field_${e}`===t?.property}),l=(0,Je.useInstanceId)(No,e);return(0,v.createElement)(To,{className:zt.TableListStyle.Td,direction:"column",gap:3},s&&(0,v.createElement)(zt.IconText,null,(0,j.__)("Please fill this required field","jet-form-builder")),(0,v.createElement)(zt.RowControl,{createId:!1,controlSize:1,className:qe(s&&zt.ControlWithErrorStyle)},(0,v.createElement)("div",{className:zt.TableListStyle.TdItem},(0,v.createElement)(r,{htmlFor:l,className:zt.TableListStyle.WhiteSpaceNormal},t),Boolean(n)&&(0,v.createElement)(zt.Help,{className:zt.TableListStyle.WhiteSpaceNormal},n)),(0,v.createElement)("div",{className:zt.TableListStyle.TdItem},"function"==typeof i?i({setShowError:a,htmlId:l}):(0,y.isValidElement)(i)?(0,y.cloneElement)(i,{setShowError:a}):i)))}function Ro({tag:e,label:t,help:n="",isRequired:o,children:i}){return(0,v.createElement)(ko,{isSupported:t=>`field_${e}`===t?.property},({hasError:r,setShowError:s})=>(0,v.createElement)(No,{tag:e,label:t,help:n,isRequired:o},i))}function Mo({columns:e}){return(0,v.createElement)(E.Flex,{className:zt.TableListStyle.Th},e.map((e,t)=>(0,v.createElement)(E.FlexItem,{key:`col_${t}`,className:zt.TableListStyle.ThItem},e)))}n(841);const Po="single_value_as_array",Ho=function({fieldName:e,getMapField:t,setMapField:n,showHelp:o=!1}){return(0,v.createElement)(E.ToggleControl,{label:(0,j.__)("Save single value as array","jet-form-builder"),help:o?(0,j.__)("Other target field settings may affect whether the value is saved as an array.","jet-form-builder"):void 0,checked:!!t({source:Po,name:e}),onChange:t=>n({source:Po,nameField:e,value:!!t})})};var Oo;const{useSelect:zo}=wp.data,{useContext:qo}=wp.element,Do=({actions:e,fields:t})=>{for(const n of e){const{[n.type]:e={}}=n.settings;if(e.requestFields)for(const o of e.requestFields)-1===t.findIndex(e=>e.value===o.name)&&t.push({from:n.type,id:n.id,label:o.name,value:o.name,name:o.name,help:o.help})}},Vo=({computed:e,action:t,fields:n,nameSet:o})=>{if(!e.isSupported(t,n))return;e.setAction(t),e.hasInList=!1;let i=e.getName();if(o.has(i)&&(e.hasInList=!0,i=e.getName()),n.some(({value:e})=>e===i))return;o.add(i);const r=e.getLabel();n.push({from:t.type,id:t.id,label:r||i,value:i,name:i,help:e.getHelp()})};function Uo({fields:e,actions:t,computed:n,nameSet:o}){t=t.map(e=>new fn(e));for(const{field:i,settings:r}of n){if(r?.isScoped)continue;const n=new i;for(const i of t)Vo({computed:n,action:i,nameSet:o,fields:e});if(n.action||!n.isSupportedGlobal())continue;const s=n.getLabel(),a=n.getName();e.push({label:s||a,value:a,name:a,help:n.getHelp()})}}function Go({returnOnEmptyCurrentAction:e=!0}={}){const t=zo(e=>e("core/editor").getEditedPostAttribute("meta")||{},[]),n=qo(C),{currentAction:o,computedList:i}=zo(e=>({currentAction:e(ge).getCurrentAction(),computedList:e(ge).getComputedFields()}),[]);if(!n?.actionId&&e)return[];const r=JSON.parse(t._jf_actions||"[]");Number.isNaN(Number(o?.index))||r.splice(o.index);const s=new Set,a=[];for(const{field:e,settings:t}of i){if(!t?.isScoped)continue;const n=new e;Vo({computed:n,action:o,nameSet:s,fields:a})}return Do({actions:r,fields:a}),Uo({fields:a,actions:r,computed:i,nameSet:s}),a}window.JetFBHooks=null!==(Oo=window.JetFBHooks)&&void 0!==Oo?Oo:{},window.JetFBHooks.useRequestFields=Go;const Wo=Go;var Zo;const Yo=()=>{const{currentAction:e}=Rn(),{updateActionObj:t,addActionProps:n}=mt();return 0>e.id?e=>n(e):n=>{t(e.id,n)}};window.JetFBHooks=null!==(Zo=window.JetFBHooks)&&void 0!==Zo?Zo:{},window.JetFBHooks.useUpdateCurrentActionMeta=Yo;const $o=Yo;var Ko;function Xo(e){const t=e("core/editor").getEditedPostAttribute("meta")||{},n=JSON.parse(t._jf_actions||"[]"),o=e(ge).getCurrentAction(),i=e(ge).getComputedFields();n.splice(o.index);const r=[],s=new Set;return Do({actions:n,fields:r}),Uo({fields:r,actions:n,computed:i,nameSet:s}),{requestFields:r}}window.JetFBHooks=null!==(Ko=window.JetFBHooks)&&void 0!==Ko?Ko:{},window.JetFBHooks.withRequestFields=Xo;const Qo=Xo;function ei(){this.action=null,this.hasInList=!1}ei.prototype.isSupported=function(e,t){return this.getSupportedActions().includes(e.type)},ei.prototype.isSupportedGlobal=function(){return!1},ei.prototype.getSupportedActions=function(){return[]},ei.prototype.setAction=function(e){this.action=e},ei.prototype.getName=function(){return""},ei.prototype.getLabel=function(){return""},ei.prototype.getHelp=function(){return""},window.JetFBComponents=window.JetFBComponents||{},window.JetFBComponents.BaseComputedField=ei;const ti=ei;function ni(e=null){this.list=e}ni.prototype={setList(e){this.list=e},resetID(){for(const e of this.list)e.resetID()},hasType(e){return this.list.some(t=>t.type===e)},add(e){"string"==typeof e&&(e={type:e}),this.list.push(new fn(e))}},window.JetFBComponents=window.JetFBComponents||{},window.JetFBComponents.ActionsFlow=ni;const oi=ni,ii=function(e){(0,s.dispatch)(ge).registerAction(e)};var ri;function si(e,t){(0,s.dispatch)(ge).addCallback(e,t)}window.JetFBActions=null!==(ri=window.JetFBActions)&&void 0!==ri?ri:{},window.JetFBActions.addAction=si;const ai=si;var li;function ci(e,t={}){(0,s.dispatch)(ge).addComputedField(e,t)}window.JetFBActions=null!==(li=window.JetFBActions)&&void 0!==li?li:{},window.JetFBActions.addComputedField=ci;const di=ci;var ui;function pi(e=[]){const t=[];for(const n of e){const e=new fn(n);e.refactorSettings(),t.push(e)}return new oi(t)}window.JetFBActions=null!==(ui=window.JetFBActions)&&void 0!==ui?ui:{},window.JetFBActions.convertFlow=pi;const mi=pi;var fi;function wi(...e){const t=[];for(const n of e)Array.isArray(n)&&t.push(...n.map(e=>[e.value,e]));return t}window.JetFBActions=null!==(fi=window.JetFBActions)&&void 0!==fi?fi:{},window.JetFBActions.convertListToFieldsMap=wi;const gi=wi;var hi;function vi({slug:e,element:t="",empty:n=""}){const o=JetFormEditorData.global_settings;return o?t?o[e]&&o[e][t]?o[e][t]:n:o[e]||n:n}window.JetFBActions=null!==(hi=window.JetFBActions)&&void 0!==hi?hi:{},window.JetFBActions.globalTab=vi;const yi=vi;(0,s.register)(he),(window.jfb=window.jfb||{}).actions=o})(); \ No newline at end of file +(()=>{"use strict";var e={92:(e,t,n)=>{n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(716),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},168:e=>{e.exports=function(e){return e[1]}},185:(e,t,n)=>{n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,'.s1ani5eo:not([data-conditions-count="0"])::after{content:attr(data-conditions-count);position:absolute;font-size:1.2em;background-color:var(--wp-admin-theme-color);color:#fff;padding:2px 4px;border-radius:6px;top:0;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);font-family:monospace;line-height:normal;}\n',""]);const a=s},206:(e,t,n)=>{n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,'.cue09js{cursor:not-allowed;opacity:0.3;}.jet-form-action.draggable .cue09js{cursor:-webkit-grab;cursor:grab;opacity:1;}\n.f13vj9vm{position:absolute;opacity:0;-webkit-transition:0.2s ease-in-out;transition:0.2s ease-in-out;top:0;right:0;height:100%;background:linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 15%);padding:0 4px 0 25px;}.f13vj9vm.f13vj9vm{width:auto;}.rtl .f13vj9vm{left:0;padding:0 25px 0 4px;}\n.a4jlrqo{position:relative;}.a4jlrqo:hover:not([data-title-editing="true"]) .f13vj9vm{opacity:1;pointer-events:auto;}.a4jlrqo[data-title-editing="true"] .f13vj9vm{opacity:0;pointer-events:none;}\n.alc8tnc{-webkit-flex:1;-ms-flex:1;flex:1;min-width:0;}\n',""]);const a=s},210:(e,t,n)=>{n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(914),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},262:e=>{var t={};e.exports=function(e,n){var o=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!o)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");o.appendChild(n)}},357:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},409:(e,t,n)=>{n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(185),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},433:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",o=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),o&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),o&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,o,i,r){"string"==typeof e&&(e=[[null,e,void 0]]);var s={};if(o)for(var a=0;a0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=r),n&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=n):d[2]=n),i&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=i):d[4]="".concat(i)),t.push(d))}},t}},512:(e,t,n)=>{n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".s5b5a3p{padding:1em;}\n",""]);const a=s},542:(e,t,n)=>{n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(206),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},545:(e,t,n)=>{n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(985),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},553:(e,t,n)=>{n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".sfffqhk{text-align:center;}\n",""]);const a=s},569:(e,t,n)=>{n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".s1goy86j{padding:1em;}\n",""]);const a=s},598:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var o="";n.supports&&(o+="@supports (".concat(n.supports,") {")),n.media&&(o+="@media ".concat(n.media," {"));var i=void 0!==n.layer;i&&(o+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),o+=n.css,i&&(o+="}"),n.media&&(o+="}"),n.supports&&(o+="}");var r=n.sourceMap;r&&"undefined"!=typeof btoa&&(o+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(r))))," */")),t.styleTagTransform(o,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},626:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},653:(e,t,n)=>{n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".myen4j{margin-bottom:unset;}\n.e9ooo02.e9ooo02{box-shadow:#cc1818 0 0 0 2px;}\n.c131zb0w{-webkit-animation:show-current-c131zb0w 2s infinite;animation:show-current-c131zb0w 2s infinite;}@-webkit-keyframes show-current-c131zb0w{50%{box-shadow:rgba(3, 102, 214, 0.3) 0 0 0 3px;}}@keyframes show-current-c131zb0w{50%{box-shadow:rgba(3, 102, 214, 0.3) 0 0 0 3px;}}\n.da595pz{background-image:repeating-linear-gradient(-45deg, #ffffff75 0 20px, #d5d5d57d 20px 40px);}\n",""]);const a=s},657:(e,t,n)=>{e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},673:e=>{var t=[];function n(e){for(var n=-1,o=0;o{n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".ajopllc{margin:unset;text-align:center;font-size:15px;color:#1d2327;}\n.c1j3i9l6{fill:currentColor;}\n.odma714{opacity:0;position:absolute;width:100%;height:100%;z-index:1;top:0;left:0;background-color:rgba(255, 255, 255, 0.6);padding:1em;text-align:center;color:#1d2327;font-weight:600;cursor:auto;}\n.fqw6jzj{cursor:pointer;padding:1.5em;border-radius:2px;border:1px solid #ddd;position:relative;color:#848485;}.fqw6jzj,.fqw6jzj .ajopllc,.fqw6jzj .odma714{-webkit-transition:0.2s ease-in-out;transition:0.2s ease-in-out;}.fqw6jzj:hover{box-shadow:rgba(0, 0, 0, 0.16) 0 1px 4px;}.fqw6jzj:hover,.fqw6jzj:hover .ajopllc{color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));}.fqw6jzj.is-disabled,.fqw6jzj.is-disabled .ajopllc{color:#c7c7c7;}.fqw6jzj.is-disabled:hover>*:not(.odma714){-webkit-filter:blur(2px);filter:blur(2px);}.fqw6jzj.is-disabled:hover .odma714{opacity:1;}\n",""]);const a=s},841:(e,t,n)=>{n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(569),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},848:(e,t,n)=>{n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(512),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},877:(e,t,n)=>{n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(653),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},914:(e,t,n)=>{n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".ekbdm2s{padding:0 4px;border-radius:5px;color:#5c5c5c;font-size:0.9em;background-color:#f3f4f5;cursor:pointer;margin:auto;border:0;font-family:monospace;}.ekbdm2s:after{content:' X';font-weight:bold;}.ekbdm2s:focus{outline:1px solid #5c5c5c;background-color:#e7e8e9;}\n",""]);const a=s},929:(e,t,n)=>{n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(553),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},950:(e,t,n)=>{n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".sauuswy{border-top:1px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));margin-top:16px;margin-left:-16px;margin-bottom:-8px;padding-top:8px;}.sauuswy.sauuswy{width:calc(100% + 32px);}\n",""]);const a=s},974:(e,t,n)=>{n.r(t),n.d(t,{default:()=>h});var o=n(673),i=n.n(o),r=n(598),s=n.n(r),a=n(262),l=n.n(a),c=n(657),d=n.n(c),u=n(357),p=n.n(u),m=n(626),f=n.n(m),w=n(950),g={};g.styleTagTransform=f(),g.setAttributes=d(),g.insert=l().bind(null,"head"),g.domAPI=s(),g.insertStyleElement=p(),i()(w.A,g);const h=w.A&&w.A.locals?w.A.locals:void 0},985:(e,t,n)=>{n.d(t,{A:()=>a});var o=n(168),i=n.n(o),r=n(433),s=n.n(r)()(i());s.push([e.id,".a14pz2hj{-webkit-flex:1;-ms-flex:1;flex:1;min-width:0;}\n.a1yeh6gv{display:block;width:100%;padding:0;border:none;background:transparent;text-align:left;cursor:text;}\n.an7tpyw{display:block;font-size:13px;line-height:1.4;overflow:hidden;text-overflow:ellipsis;}\n.a1wl0ukk{width:100%;min-height:30px;padding:0 8px;border:1px solid #949494;border-radius:2px;font-size:13px;line-height:1.4;}\n",""]);const a=s}},t={};function n(o){var i=t[o];if(void 0!==i)return i.exports;var r=t[o]={id:o,exports:{}};return e[o](r,r.exports,n),r.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nc=void 0;var o={};n.r(o),n.d(o,{ActionFetchButton:()=>Pe,ActionGridItem:()=>Xe,ActionItemBody:()=>Kt,ActionItemFooter:()=>sn,ActionItemHeader:()=>dn,ActionItemWrapper:()=>vn,ActionListItemContext:()=>nt,ActionMessages:()=>xn,ActionMessagesSlotFills:()=>bn,ActionModalBackButton:()=>_n,ActionModalCloseButton:()=>zn,ActionModalHeaderSlotFill:()=>Vn,ActionTitle:()=>Ct,ActionsAfterNewButtonSlotFill:()=>Wn,ActionsFlow:()=>ni,AddActionButton:()=>to,AllProActionsLink:()=>ro,BaseAction:()=>mn,BaseComputedField:()=>ei,CurrentActionEditContext:()=>C,DeleteActionButton:()=>Vt,EditActionConditionsButton:()=>It,EditActionSettingsButton:()=>jt,EventsList:()=>nn,FetchAjaxButton:()=>lo,FetchApiButton:()=>Ne,FieldsMapField:()=>jo,ListActionItem:()=>po,PlaceholderMessage:()=>wo,RequestButton:()=>Se,RequestLoadingButton:()=>yo,STORE_NAME:()=>ge,SingleValueAsArrayToggle:()=>Po,TableListContainer:()=>To,TableListHead:()=>Ro,TableListRow:()=>No,ToggleActionExecutionButton:()=>Ht,ValidateButton:()=>Co,ValidateButtonWithStore:()=>xo,ValidatedSelectControl:()=>_o,ValidatedTextControl:()=>Jo,ValidatorProvider:()=>Bo,addAction:()=>si,addComputedField:()=>ci,convertFlow:()=>pi,convertListToFieldsMap:()=>wi,globalTab:()=>vi,registerAction:()=>oi,useActionCallback:()=>xt,useActionErrors:()=>fn,useActionValidatorProvider:()=>So,useActions:()=>ct,useActionsEdit:()=>pt,useCurrentAction:()=>Nn,useLoopedAction:()=>rt,useRequestFields:()=>Go,useUpdateCurrentAction:()=>Pn,useUpdateCurrentActionMeta:()=>Yo,withCurrentAction:()=>Ae,withDispatchActionLoading:()=>je,withRequestFields:()=>Xo,withSelectActionLoading:()=>Ee});var i={};n.r(i),n.d(i,{addAction:()=>V,addCallback:()=>U,addComputedField:()=>G,clearCurrent:()=>R,editAction:()=>W,editMeta:()=>N,openActionSettings:()=>Z,registerAction:()=>q,registerActions:()=>z,registerCategory:()=>D,setCurrentAction:()=>T,setLoading:()=>M,setLoadingResult:()=>P,setMeta:()=>I,showActionsInserterModal:()=>Y,updateCurrentConditions:()=>O,updateCurrentSettings:()=>H});var r={};n.r(r),n.d(r,{getAction:()=>oe,getActions:()=>ee,getActionsMap:()=>Q,getAllLoading:()=>we,getCategories:()=>ne,getComputedFields:()=>X,getCurrentAction:()=>ue,getCurrentEdit:()=>pe,getCurrentLoading:()=>fe,getCurrentSettings:()=>me,getErrorVisibility:()=>de,getLoading:()=>K,getLoadingIndex:()=>$,getMetaIndex:()=>ce,getOpenScenario:()=>le,getSortedActions:()=>te,isConditionalModal:()=>se,isFixed:()=>ae,isSettingsModal:()=>re,isShowActionsInserterModal:()=>ie});const s=window.wp.data,a="SET_CURRENT_ACTION",l="SET_LOADING",c="UPDATE_ACTION_CONDITIONS",d="SET_CURRENT_META",u="EDIT_CURRENT_META",p="CLEAR_CURRENT",m="ADD_COMPUTED_FIELD",f="EDIT_ACTION",w="REGISTER_ACTION",g="REGISTER_CATEGORY",h="SHOW_ACTIONS_INSERTER_MODAL",v=window.React,y=window.wp.element;var A;const b=(0,y.createContext)({});window.JetFBComponents=null!==(A=window.JetFBComponents)&&void 0!==A?A:{},window.JetFBComponents.CurrentActionEditContext=b;const C=b,E=window.wp.components;function F(e,t=""){const n=window.jetFormActionTypes.find((t=>e===t.id));if(!n)return!1;const o=window[n.self];return t&&o[t]?o[t]:o}function x({actionType:e=!1,source:t=!1},n,o=""){let i=!1;return t&&t[n]?i=t[n]:e&&(i=F(e)[n]),i?e=>e?i[e]?i[e]:o:i:()=>o}const S=function(e,t){const n=function(e,t=!1){t||(t=F(e));const n=x({source:t},"__labels","[Empty Label]"),o=x({source:t},"__help_messages"),i=(s={source:t},x(s,"__messages",{})),r=function(e){return x(e,"__gateway_attrs",[])}({source:t});var s;return{source:t,label:n,help:o,messages:i,gatewayAttrs:r,setSource:function(t={}){const n=function(e){const t=window.jetFormActionTypes.find((t=>e===t.id));return!!t&&t.self}(e);return!(!n||!window[n]||(window[n]={...window[n],...t},0))}}}(e);return o=>{const i={onChangeSetting:(e,t)=>{o.onChange({...o.settings,[t]:e})},getMapField:({source:e="fields_map",name:t})=>{const n=o.settings;return void 0!==n[e]&&void 0!==n[e][t]?n[e][t]:""},setMapField:({source:e="fields_map",nameField:t,value:n})=>{const i={...o.settings[e],[t]:n};o.onChange({...o.settings,[e]:i})},onChangeSettingObj:e=>{o.onChange({...o.settings,...e})}},r={...o,...n,...i},s=(0,E.withFilters)(`jet.fb.render.action.${e}`)((()=>null));return(0,v.createElement)(C.Provider,{value:r},(0,v.createElement)(t,{...r}),(0,v.createElement)(s,{...r}))}},B={id:-1,state:"",success:!1,response:{},loading:!1,buttonClassName:["jet-form-validate-button"]},k=(e={})=>{const t={...B};return e.state&&(t.buttonClassName=["jet-form-validate-button",e.state]),{...t,...e}},j=window.wp.i18n,J=window.wp.primitives,_=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{fillRule:"evenodd",d:"M7.25 16.437a6.5 6.5 0 1 1 9.5 0V16A2.75 2.75 0 0 0 14 13.25h-4A2.75 2.75 0 0 0 7.25 16v.437Zm1.5 1.193a6.47 6.47 0 0 0 3.25.87 6.47 6.47 0 0 0 3.25-.87V16c0-.69-.56-1.25-1.25-1.25h-4c-.69 0-1.25.56-1.25 1.25v1.63ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm10-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",clipRule:"evenodd"})),L={currentAction:{},types:[{type:"login",label:(0,j.__)("User Login","jet-form-builder"),icon:_,disabled:!0,category:"user",proActionLink:"https://jetformbuilder.com/addons/user-login/"},{type:"redirect_to_woo_checkout",label:(0,j.__)("Add to Cart & Redirect to Checkout","jet-form-builder"),icon:(0,v.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,v.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,v.createElement)("g",null,(0,v.createElement)("path",{d:"M6 13h9c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1V4H2c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1v2h13l-4 7H6v1zm-.5 3c.83 0 1.5.67 1.5 1.5S6.33 19 5.5 19 4 18.33 4 17.5 4.67 16 5.5 16zm9 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z"}))),disabled:!0,proActionLink:"https://jetformbuilder.com/addons/woocommerce-cart-checkout-action/"}],categories:[{type:"communication",label:(0,j.__)("Communication & Notifications","jet-form-builder")},{type:"user",label:(0,j.__)("User Management","jet-form-builder")},{type:"content",label:(0,j.__)("Content & Data Management","jet-form-builder")},{type:"advanced",label:(0,j.__)("Advanced Integration","jet-form-builder")}],meta:{},loadingState:[k()],computedFields:[],showActionsInserterModal:!1};function T(e={}){return{type:a,item:e}}function I(e){return{type:d,item:e}}function N(e){return{type:u,item:e}}function R(){return{type:p}}function M(e){var t,n;return null!==(t=e.loading)&&void 0!==t||(e.loading=!0),null!==(n=e.state)&&void 0!==n||(e.state="loading"),({dispatch:t,select:n})=>{const o=n.getLoadingIndex(e.id),i=[...n.getAllLoading()];-1!==o?i[o]=k(e):i.push(k(e)),t({type:l,payload:i})}}function P(e){return({dispatch:t})=>{t.setLoading({id:e.id,state:e.success?"is-valid":"is-invalid",success:e.success,response:e.response,loading:!1})}}function H(e){return({select:t,dispatch:n})=>{const o=t.getCurrentAction(),i={...t.getCurrentSettings(),...e};n({type:a,item:{...o,settings:{...o.settings,[o.type]:i}}})}}function O(e){return{type:c,item:e}}function z(e){return({dispatch:t})=>{for(const n of e)t.registerAction(n)}}function q(e){return({select:t,dispatch:n})=>{t.getAction(e.type)?n({type:f,actionSettings:e}):n.addAction(e)}}function D(e){return{type:g,category:e}}function V(e){return{type:w,actionSettings:e}}function U(e,t){return({dispatch:n})=>{n.registerAction({type:e,edit:t})}}function G(e,t={}){return{type:m,field:e,settings:t}}function W(e,t){return({dispatch:n})=>{n.registerAction({...t,type:e})}}function Z({item:e,index:t,scenario:n=""}){return({dispatch:o})=>{o.setCurrentAction({...e,index:t}),o.setMeta({index:t,modalType:"settings",scenario:n})}}function Y(e){return{type:h,show:e}}function $(e,t){return e.loadingState.findIndex((e=>e.id===t))}function K(e,t){const n=$(e,t);return-1!==n?e.loadingState[n]:{...B}}function X(e){return e.computedFields}function Q(e){const t={};for(const n of e.types)t[n.type]=n;return t}function ee(e){return e.types}function te(e){const t={};return e.categories.forEach(((e,n)=>{t[e.type]=n})),e.types.toSorted(((e,n)=>(t.hasOwnProperty(e.category)?t[e.category]:1/0)-(t.hasOwnProperty(n.category)?t[n.category]:1/0)))}function ne(e){return e.categories}function oe(e,t){return e.types.find((({type:e})=>e===t))}function ie(e){return e.showActionsInserterModal}function re(e){return"settings"===e.meta?.modalType}function se(e){return"conditions"===e.meta?.modalType}function ae(e,t){var n;const o=oe(e,t);return null!==(n=o?.fixed)&&void 0!==n&&n}function le(e){return e.meta?.scenario}function ce(e){return e.meta?.index}function de(e){return e.meta?.errorsShow}function ue(e){return e.currentAction}function pe(e){var t;const n=null!==(t=e.currentAction?.type)&&void 0!==t&&t;return oe(e,n)?.edit}function me(e){var t,n,o;return null!==(o=(null!==(t=e.currentAction?.settings)&&void 0!==t?t:{})[null!==(n=e.currentAction?.type)&&void 0!==n&&n])&&void 0!==o?o:{}}function fe(e){const t=e.currentAction?.id;return K(e,t)}function we(e){return e.loadingState}const ge="jet-forms/actions",he=(0,s.createReduxStore)(ge,{reducer:function(e=L,t){switch(t?.type){case a:const n={};return"function"==typeof t.item?n.currentAction=t.item(e.currentAction):n.currentAction=t.item,{...e,...n};case d:return{...e,meta:{...t.item}};case u:return{...e,meta:{...e.meta,...t.item}};case p:return{...e,currentAction:{},meta:{}};case l:return{...e,loadingState:t.payload};case c:const{conditions:o=[]}=e.currentAction,i="function"==typeof t.item?t.item(o):t.item;return{...e,currentAction:{...e.currentAction,conditions:i}};case w:const{actionSettings:r}=t;return r.hasOwnProperty("label")||(r.label=window.jetFormActionTypes.find((e=>e.id===r.type))?.name),{...e,types:[...e.types,{...r,edit:S(r.type,r.edit)}]};case g:return{...e,categories:[...e.categories,{...t.category}]};case m:const s=[...e.computedFields,{field:t.field,settings:t.settings}].sort(((e,t)=>{var n,o;return(null!==(n=e.settings?.priority)&&void 0!==n?n:10)-(null!==(o=t.settings?.priority)&&void 0!==o?o:10)}));return{...e,computedFields:s};case f:const{actionSettings:v}=t;"edit"in v&&(v.edit=S(v.type,v.edit));const y=e.types.map((e=>e.type!==v.type?e:{...e,...v}));return{...e,types:y};case h:return{...e,showActionsInserterModal:t.show};default:return e}},actions:i,selectors:r});var ve;function ye(e){return{currentAction:e(ge).getCurrentAction()}}window.JetFBHooks=null!==(ve=window.JetFBHooks)&&void 0!==ve?ve:{},window.JetFBHooks.withCurrentAction=ye;const Ae=ye;var be;function Ce(e){return{loadingState:e(ge).getCurrentLoading()}}window.JetFBHooks=null!==(be=window.JetFBHooks)&&void 0!==be?be:{},window.JetFBHooks.withSelectActionLoading=Ce;const Ee=Ce;var Fe;function xe({label:e,ajaxArgs:t={},onSuccessRequest:n=()=>{},onFailRequest:o=()=>{},onLoading:i=()=>{},className:r="",children:s=()=>{},disabled:a=!1,customRequest:l=!1,isHidden:c=!1,hasFetched:d=-1,...u}){r="string"==typeof r?r:r.join(" ");const p=()=>{!1===l?(i(),jQuery.ajax({url:ajaxurl,type:"POST",data:t}).done((e=>e.success?n(e):o())).fail((()=>o()))):"function"==typeof l?l():o()};return(0,y.useEffect)((()=>{c&&-1===d&&p()}),[]),c?null:(0,v.createElement)(E.Button,{disabled:a,key:"validate_api_key",onClick:p,className:r+" jet-fb-button line-with-input",variant:"secondary",...u},s&&s,e)}window.JetFBComponents=null!==(Fe=window?.JetFBComponents)&&void 0!==Fe?Fe:{},window.JetFBComponents.RequestButton=xe;const Se=xe;var Be;function ke(e){return{setLoading(t){e(ge).setLoading({id:t})},setResultSuccess(t,n){e(ge).setLoadingResult({id:t,success:!0,response:n})},setResultFail(t){e(ge).setLoadingResult({id:t,success:!1,response:{}})}}}window.JetFBHooks=null!==(Be=window.JetFBHooks)&&void 0!==Be?Be:{},window.JetFBHooks.withDispatchActionLoading=ke;const je=ke,Je=window.wp.compose,_e=window.wp.apiFetch;var Le,Te=n.n(_e);function Ie({initialLabel:e="Valid",label:t="InValid",apiArgs:n={},loadingState:o,setLoading:i,id:r,setResultSuccess:s,setResultFail:a,onLoading:l=()=>{},onSuccess:c=()=>{},onFail:d=()=>{},isHidden:u=!1}){return(0,v.createElement)(Se,{disabled:o.loading,hasFetched:o.id,label:(-1===o.id||o.loading)&&e?e:t,className:o.buttonClassName,isHidden:u,customRequest:()=>{i(r),l(),Te()(n).then((e=>{s(r,e),c(e)})).catch((e=>{a(r),d(e)}))},isDestructive:o.buttonClassName.includes("is-invalid")},(0,v.createElement)("i",{className:"dashicons"}))}window.JetFBComponents=null!==(Le=window?.JetFBComponents)&&void 0!==Le?Le:{},window.JetFBComponents.FetchApiButton=Ie;const Ne=(0,Je.compose)((0,s.withDispatch)(je))(Ie);var Re;function Me({currentAction:e,...t}){return(0,v.createElement)(Ne,{id:e.id,...t})}window.JetFBComponents=null!==(Re=window?.JetFBComponents)&&void 0!==Re?Re:{},window.JetFBComponents.ActionFetchButton=Me;const Pe=(0,Je.compose)((0,s.withSelect)(Ae),(0,s.withSelect)(Ee))(Me);function He(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var Oe=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,ze=He((function(e){return Oe.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),qe=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)}))}));const o=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&o.push(t[e]);return o.push(...n),o.join(" ")},De=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach((t=>{n[t]=e[t]})),n},Ve=function(e){let t="";return n=>{const o=(o,i)=>{const{as:r=e,class:s=t}=o;var a;const l=function(e,t){const n=De(t,["as","class"]);if(!e){const e="function"==typeof ze?{default:ze}:ze;Object.keys(n).forEach((t=>{e.default(t)||delete n[t]}))}return n}(void 0===n.propsAsIs?!("string"==typeof r&&-1===r.indexOf("-")&&(a=r[0],a.toUpperCase()!==a)):n.propsAsIs,o);l.ref=i,l.className=n.atomic?qe(n.class,l.className||s):qe(l.className||s,n.class);const{vars:c}=n;if(c){const e={};for(const t in c){const i=c[t],r=i[0],s=i[1]||"",a="function"==typeof r?r(o):r;n.name,e[`--${t}`]=`${a}${s}`}const t=l.style||{},i=Object.keys(t);i.length>0&&i.forEach((n=>{e[n]=t[n]})),l.style=e}return e.__wyw_meta&&e!==r?(l.as=r,(0,v.createElement)(e,l)):(0,v.createElement)(r,l)},i=v.forwardRef?(0,v.forwardRef)(o):e=>{const t=De(e,["innerRef"]);return o(t,e.innerRef)};return i.displayName=n.name,i.__wyw_meta={className:n.class||t,extends:e},i}};const Ue=(0,y.forwardRef)((function({icon:e,size:t=24,...n},o){return(0,y.cloneElement)(e,{width:t,height:t,...n,ref:o})})),Ge=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"M10.5 4v4h3V4H15v4h1.5a1 1 0 011 1v4l-3 4v2a1 1 0 01-1 1h-3a1 1 0 01-1-1v-2l-3-4V9a1 1 0 011-1H9V4h1.5zm.5 12.5v2h2v-2l3-4v-3H8v3l3 4z"})),We=function({action:e}){var t;return(0,v.createElement)(E.Flex,{direction:"column",justify:"space-evenly",align:"center"},(0,v.createElement)("span",null,(0,j.__)("This is paid addon. You can buy it here:","jet-form-builder")),(0,v.createElement)(E.ExternalLink,{href:null!==(t=e.proActionLink)&&void 0!==t?t:"https://jetformbuilder.com/pricing/"},"jetformbuilder.com"))},Ze=Ve("h5")({name:"ActionTitle",class:"ajopllc",propsAsIs:!1}),Ye=Ve(Ue)({name:"ColoredIcon",class:"c1j3i9l6",propsAsIs:!0}),$e=Ve("div")({name:"Overlay",class:"odma714",propsAsIs:!1}),Ke=Ve(E.Flex)({name:"FlexWrapper",class:"fqw6jzj",propsAsIs:!0}),Xe=function({action:e,onClick:t}){var n,o;const i=null!==(n=e?.disabledOverlay)&&void 0!==n?n:We;return(0,v.createElement)(Ke,{onClick:t,direction:"column",align:"center",justify:"flex-start",className:e.disabled?"jfb-action-grid-item is-disabled":"jfb-action-grid-item"},(0,v.createElement)(Ye,{icon:null!==(o=e?.icon)&&void 0!==o?o:Ge,size:32}),(0,v.createElement)(Ze,null,e.label),e?.docHref&&(0,v.createElement)(E.ExternalLink,{href:e?.docHref},(0,j.__)("Documentation","jet-form-builder")),e.disabled&&(0,v.createElement)($e,null,(0,v.createElement)(i,{action:e})))};n(92);const Qe=(0,v.createElement)(J.SVG,{width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"M8 7h2V5H8v2zm0 6h2v-2H8v2zm0 6h2v-2H8v2zm6-14v2h2V5h-2zm0 8h2v-2h-2v2zm0 6h2v-2h-2v2z"}));var et;const tt=(0,y.createContext)({index:-1,action:{}});window.JetFBComponents=null!==(et=window.JetFBComponents)&&void 0!==et?et:{},window.JetFBComponents.ActionListItemContext=tt;const nt=tt;var ot;function it(){return(0,y.useContext)(nt)}window.JetFBHooks=null!==(ot=window.JetFBHooks)&&void 0!==ot?ot:{},window.JetFBHooks.useLoopedAction=it;const rt=it,st=window.jfb.data;var at;function lt(e=void 0){return(0,st.useMetaState)("_jf_actions","[]",e)}window.JetFBHooks=null!==(at=window.JetFBHooks)&&void 0!==at?at:{},window.JetFBHooks.useActions=lt;const ct=lt;var dt;const ut=()=>{const[e,t]=ct(),n=(n,o)=>{const i=e.map((e=>n!==e.id?e:{...JSON.parse(JSON.stringify(e)),...o}));t([...i])};return{actions:e,setActions:t,moveAction:(n,o)=>{const i=JSON.parse(JSON.stringify(e[n])),r=JSON.parse(JSON.stringify(e[o]));e.splice(o,1,i),e.splice(n,1,r),t([...e])},deleteAction:n=>{e.splice(n,1),t([...e])},updateActionObj:n,toggleExecute:e=>{var t;n(e.id,{is_execute:!(null===(t=e.is_execute)||void 0===t||t)})},addActionProps:n=>{const o=JSON.parse(JSON.stringify(n));o.id=0>o.id?-1*o.id:o.id,t([...e,{...o}])}}};window.JetFBHooks=null!==(dt=window.JetFBHooks)&&void 0!==dt?dt:{},window.JetFBHooks.useActionsEdit=ut;const pt=ut;var mt;const ft=Ve("div")({name:"ActionTitleWrap",class:"a14pz2hj",propsAsIs:!1}),wt=Ve("button")({name:"ActionButton",class:"a1yeh6gv",propsAsIs:!1}),gt=Ve("span")({name:"ActionLabel",class:"an7tpyw",propsAsIs:!1}),ht=Ve("input")({name:"ActionNameInput",class:"a1wl0ukk",propsAsIs:!1});function vt({fallbackLabel:e,nextName:t,setNextName:n,commitName:o,setIsEditing:i,previousNameRef:r,isEscapePressedRef:s,inputRef:a}){return(0,v.createElement)(ht,{ref:a,value:t,onChange:e=>n(e.target.value),onBlur:()=>{s.current?s.current=!1:o()},onKeyDown:e=>{"Enter"===e.key&&(e.preventDefault(),o()),"Escape"===e.key&&(e.preventDefault(),s.current=!0,n(r.current),i(!1))},"aria-label":(0,j.__)("Action display name","jet-form-builder"),placeholder:e,type:"text",maxLength:255,spellCheck:!1})}function yt({displayName:e,startEditing:t}){return(0,v.createElement)(wt,{type:"button",onClick:t,"aria-label":(0,j.sprintf)((0,j.__)("Rename action: %s","jet-form-builder"),e)},(0,v.createElement)(gt,{title:e},e))}function At({deleteAction:e,index:t}){return(0,v.createElement)(E.Button,{isDestructive:!0,variant:"secondary",onClick:()=>e(t)},(0,j.__)("Action is not registered. Delete","jet-form-builder"))}function bt({onEditingChange:e=()=>{}}){const{deleteAction:t,updateActionObj:n}=pt(),{action:o,index:i}=rt(),r=(0,s.useSelect)((e=>e(ge).getAction(o.type)),[o.type]),a=function(e,t,n){var o;const[i,r]=(0,y.useState)(!1),[s,a]=(0,y.useState)(""),l=(0,y.useRef)(null),c=(0,y.useRef)(""),d=(0,y.useRef)(!1),u=null!==(o=t?.label)&&void 0!==o?o:"",p=function(e={},t=""){const n=e?.editor_name;return"string"==typeof n&&n.trim()?n.trim():t}(e,u);return(0,y.useEffect)((()=>{if(i)return l.current?.focus(),void l.current?.select();a(p)}),[p,i]),{displayName:p,fallbackLabel:u,inputRef:l,isEditing:i,isEscapePressedRef:d,nextName:s,previousNameRef:c,setIsEditing:r,setNextName:a,startEditing:()=>{c.current=p,a(p),r(!0)},commitName:()=>{const t=s.trim(),o=t&&t!==u?t:"";e.editor_name!==o&&n(e.id,{editor_name:o}),r(!1)}}}(o,r,n);return(0,y.useEffect)((()=>{e(a.isEditing)}),[a.isEditing]),r?(0,v.createElement)(ft,null,a.isEditing&&(0,v.createElement)(vt,{fallbackLabel:a.fallbackLabel,nextName:a.nextName,setNextName:a.setNextName,commitName:a.commitName,setIsEditing:a.setIsEditing,previousNameRef:a.previousNameRef,isEscapePressedRef:a.isEscapePressedRef,inputRef:a.inputRef}),!a.isEditing&&(0,v.createElement)(yt,{displayName:a.displayName,startEditing:a.startEditing})):(0,v.createElement)(At,{deleteAction:t,index:i})}window.JetFBComponents=null!==(mt=window?.JetFBComponents)&&void 0!==mt?mt:{},window.JetFBComponents.ActionTitle=bt;const Ct=bt;var Et;n(545);const Ft=(e=!1)=>(0,s.useSelect)((t=>e?t("jet-forms/actions").getAction(e)?.edit:t("jet-forms/actions").getCurrentEdit()),[e]);window.JetFBHooks=null!==(Et=window.JetFBHooks)&&void 0!==Et?Et:{},window.JetFBHooks.useActionCallback=Ft;const xt=Ft,St=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"m19 7-3-3-8.5 8.5-1 4 4-1L19 7Zm-7 11.5H5V20h7v-1.5Z"}));var Bt;function kt(){const{action:e,index:t}=rt(),{setCurrentAction:n,setMeta:o}=(0,s.useDispatch)("jet-forms/actions"),i=xt(e.type);return(0,v.createElement)(E.Button,{disabled:!i,size:"small",icon:St,label:(0,j.__)("Edit Action","jet-form-builder"),tooltipPosition:"top",onClick:()=>{n({...e,index:t}),o({index:t,modalType:"settings"})}})}window.JetFBComponents=null!==(Bt=window?.JetFBComponents)&&void 0!==Bt?Bt:{},window.JetFBComponents.EditActionSettingsButton=kt;const jt=kt,Jt=(0,v.createElement)(J.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/SVG"},(0,v.createElement)(J.Path,{d:"M17.192 6.75L15.47 5.03l1.06-1.06 3.537 3.53-3.537 3.53-1.06-1.06 1.723-1.72h-3.19c-.602 0-.993.202-1.28.498-.309.319-.538.792-.695 1.383-.13.488-.222 1.023-.296 1.508-.034.664-.116 1.413-.303 2.117-.193.721-.513 1.467-1.068 2.04-.575.594-1.359.954-2.357.954H4v-1.5h4.003c.601 0 .993-.202 1.28-.498.308-.319.538-.792.695-1.383.149-.557.216-1.093.288-1.662l.039-.31a9.653 9.653 0 0 1 .272-1.653c.193-.722.513-1.467 1.067-2.04.576-.594 1.36-.954 2.358-.954h3.19zM8.004 6.75c.8 0 1.46.23 1.988.628a6.24 6.24 0 0 0-.684 1.396 1.725 1.725 0 0 0-.024-.026c-.287-.296-.679-.498-1.28-.498H4v-1.5h4.003zM12.699 14.726c-.161.459-.38.94-.684 1.396.527.397 1.188.628 1.988.628h3.19l-1.722 1.72 1.06 1.06L20.067 16l-3.537-3.53-1.06 1.06 1.723 1.72h-3.19c-.602 0-.993-.202-1.28-.498a1.96 1.96 0 0 1-.024-.026z"}));var _t;const Lt=Ve(E.Button)({name:"StyledButton",class:"s1ani5eo",propsAsIs:!0});function Tt(){var e;const{action:t,index:n}=rt(),{setCurrentAction:o,setMeta:i}=(0,s.useDispatch)("jet-forms/actions");return(0,v.createElement)(Lt,{size:"small",icon:Jt,"data-conditions-count":null!==(e=t?.conditions?.length)&&void 0!==e?e:0,onClick:()=>{o({...t,index:n}),i({index:n,modalType:"conditions"})},label:(0,j.__)("Edit Conditions & Events","jet-form-builder"),tooltipPosition:"top"})}window.JetFBComponents=null!==(_t=window?.JetFBComponents)&&void 0!==_t?_t:{},window.JetFBComponents.EditActionConditionsButton=Tt;const It=Tt;n(409);const Nt=(0,v.createElement)(J.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,v.createElement)(J.Path,{d:"M4.67 10.664s-2.09 1.11-2.917 1.582l.494.87 1.608-.914.002.002c.343.502.86 1.17 1.563 1.84.348.33.742.663 1.185.976L5.57 16.744l.858.515 1.02-1.701a9.1 9.1 0 0 0 4.051 1.18V19h1v-2.263a9.1 9.1 0 0 0 4.05-1.18l1.021 1.7.858-.514-1.034-1.723c.442-.313.837-.646 1.184-.977.703-.669 1.22-1.337 1.563-1.839l.002-.003 1.61.914.493-.87c-1.75-.994-2.918-1.58-2.918-1.58l-.003.005a8.29 8.29 0 0 1-.422.689 10.097 10.097 0 0 1-1.36 1.598c-1.218 1.16-3.042 2.293-5.544 2.293-2.503 0-4.327-1.132-5.546-2.293a10.099 10.099 0 0 1-1.359-1.599 8.267 8.267 0 0 1-.422-.689l-.003-.005Z"})),Rt=(0,v.createElement)(J.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,v.createElement)(J.Path,{d:"M3.99961 13C4.67043 13.3354 4.6703 13.3357 4.67017 13.3359L4.67298 13.3305C4.67621 13.3242 4.68184 13.3135 4.68988 13.2985C4.70595 13.2686 4.7316 13.2218 4.76695 13.1608C4.8377 13.0385 4.94692 12.8592 5.09541 12.6419C5.39312 12.2062 5.84436 11.624 6.45435 11.0431C7.67308 9.88241 9.49719 8.75 11.9996 8.75C14.502 8.75 16.3261 9.88241 17.5449 11.0431C18.1549 11.624 18.6061 12.2062 18.9038 12.6419C19.0523 12.8592 19.1615 13.0385 19.2323 13.1608C19.2676 13.2218 19.2933 13.2686 19.3093 13.2985C19.3174 13.3135 19.323 13.3242 19.3262 13.3305L19.3291 13.3359C19.3289 13.3357 19.3288 13.3354 19.9996 13C20.6704 12.6646 20.6703 12.6643 20.6701 12.664L20.6697 12.6632L20.6688 12.6614L20.6662 12.6563L20.6583 12.6408C20.6517 12.6282 20.6427 12.6108 20.631 12.5892C20.6078 12.5459 20.5744 12.4852 20.5306 12.4096C20.4432 12.2584 20.3141 12.0471 20.1423 11.7956C19.7994 11.2938 19.2819 10.626 18.5794 9.9569C17.1731 8.61759 14.9972 7.25 11.9996 7.25C9.00203 7.25 6.82614 8.61759 5.41987 9.9569C4.71736 10.626 4.19984 11.2938 3.85694 11.7956C3.68511 12.0471 3.55605 12.2584 3.4686 12.4096C3.42484 12.4852 3.39142 12.5459 3.36818 12.5892C3.35656 12.6108 3.34748 12.6282 3.34092 12.6408L3.33297 12.6563L3.33041 12.6614L3.32948 12.6632L3.32911 12.664C3.32894 12.6643 3.32879 12.6646 3.99961 13ZM11.9996 16C13.9326 16 15.4996 14.433 15.4996 12.5C15.4996 10.567 13.9326 9 11.9996 9C10.0666 9 8.49961 10.567 8.49961 12.5C8.49961 14.433 10.0666 16 11.9996 16Z"}));var Mt;function Pt(){var e;const{action:t}=rt(),n=null===(e=t.is_execute)||void 0===e||e,{toggleExecute:o}=pt();return(0,v.createElement)(E.Button,{size:"small",icon:n?Nt:Rt,label:n?(0,j.__)("Turn off","jet-form-builder"):(0,j.__)("Turn on","jet-form-builder"),onClick:()=>o(t),tooltipPosition:"top"})}window.JetFBComponents=null!==(Mt=window?.JetFBComponents)&&void 0!==Mt?Mt:{},window.JetFBComponents.ToggleActionExecutionButton=Pt;const Ht=Pt,Ot=window.jfb.components,zt=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 5.5A2.25 2.25 0 0 0 9.878 7h4.244A2.251 2.251 0 0 0 12 5.5ZM12 4a3.751 3.751 0 0 0-3.675 3H5v1.5h1.27l.818 8.997a2.75 2.75 0 0 0 2.739 2.501h4.347a2.75 2.75 0 0 0 2.738-2.5L17.73 8.5H19V7h-3.325A3.751 3.751 0 0 0 12 4Zm4.224 4.5H7.776l.806 8.861a1.25 1.25 0 0 0 1.245 1.137h4.347a1.25 1.25 0 0 0 1.245-1.137l.805-8.861Z"}));var qt;function Dt(){const{index:e}=rt(),{deleteAction:t}=pt(),{showPopover:n,setShowPopover:o,ref:i,popoverProps:r}=(0,Ot.useTriggerPopover)();return(0,v.createElement)(v.Fragment,null,(0,v.createElement)(E.Button,{ref:i,isDestructive:!0,size:"small",icon:zt,label:(0,j.__)("Delete action","jet-form-builder"),tooltipPosition:"top",onClick:()=>o((e=>!e))}),n&&(0,v.createElement)(Ot.PopoverStandard,{placement:"top-end",noArrow:!1,...r},(0,v.createElement)("span",null,(0,j.__)("Delete this action?","jet-form-builder"))," ",(0,v.createElement)(E.Button,{isLink:!0,isDestructive:!0,onClick:()=>t(e)},(0,j.__)("Yes","jet-form-builder"))," / ",(0,v.createElement)(E.Button,{isLink:!0,onClick:()=>o(!1)},(0,j.__)("No","jet-form-builder"))))}window.JetFBComponents=null!==(qt=window?.JetFBComponents)&&void 0!==qt?qt:{},window.JetFBComponents.DeleteActionButton=Dt;const Vt=Dt;var Ut;const Gt=Ve(Ue)({name:"CursoredIcon",class:"cue09js",propsAsIs:!0}),Wt=Ve(E.Flex)({name:"FlexActionButtons",class:"f13vj9vm",propsAsIs:!0}),Zt=Ve(E.CardBody)({name:"ActionCardBody",class:"a4jlrqo",propsAsIs:!0}),Yt=Ve(E.Flex)({name:"ActionTitleWrap",class:"alc8tnc",propsAsIs:!0});function $t(){const{action:e}=rt(),[t,n]=(0,y.useState)(!1),o=(0,s.useSelect)((t=>t("jet-forms/actions").getAction(e.type)),[e.type]);return(0,v.createElement)(Zt,{"data-title-editing":t?"true":void 0},void 0===o&&(0,v.createElement)(E.Flex,{align:"center",justify:"space-between"},(0,v.createElement)("small",null,"Action ",(0,v.createElement)("b",null,'"',e.type,'"')," is not supported"),(0,v.createElement)(Vt,null)),void 0!==o&&(0,v.createElement)(v.Fragment,null,(0,v.createElement)(E.Flex,{align:"center",justify:"flex-start",gap:1},(0,v.createElement)(Gt,{className:"jfb-action-handle",icon:Qe}),(0,v.createElement)(Yt,{align:"center",justify:"flex-start"},(0,v.createElement)(Ct,{onEditingChange:n}))),(0,v.createElement)(Wt,{justify:"flex-end"},(0,v.createElement)(jt,null),!o.disableConditions&&(0,v.createElement)(It,null),(0,v.createElement)(Ht,null),(0,v.createElement)(Vt,null))))}window.JetFBComponents=null!==(Ut=window?.JetFBComponents)&&void 0!==Ut?Ut:{},window.JetFBComponents.ActionItemBody=$t;const Kt=$t;var Xt;n(542);const Qt=Ve("button")({name:"EventButton",class:"ekbdm2s",propsAsIs:!1});function en(e){var t,n;const{slug:o,index:i}=e,{action:r}=(0,y.useContext)(nt),a=(0,s.useSelect)((e=>e("jet-forms/events").getType(o)),[o]),{updateActionObj:l}=pt(),c=[null!==(t=a?.title)&&void 0!==t?t:"",(0,j.__)("(Click to delete)","jet-form-builder")].join(" ");return(0,v.createElement)(Qt,{type:"button",title:c,onClick:()=>{r.events.splice(i,1),l(r.id,{...r})}},null!==(n=a?.value)&&void 0!==n?n:o)}function tn(e){const{events:t=[]}=e;return t.map(((e,t)=>(0,v.createElement)(en,{key:e,slug:e,index:t})))}window.JetFBComponents=null!==(Xt=window?.JetFBComponents)&&void 0!==Xt?Xt:{},window.JetFBComponents.EventsList=tn;const nn=tn;var on;function rn({children:e,...t}={}){const{action:n}=rt(),o=window.JetFormEditorData.actionConditionExcludeEvents;return o[n.type]&&n.events?.length&&(n.events=n.events.filter((e=>!o[n.type].includes(e)))),Boolean(n.events?.length)&&(0,v.createElement)(E.CardFooter,{style:{flexWrap:"wrap",rowGap:"0.5em"},...t},(0,v.createElement)(nn,{events:n.events}),e)}n(210),window.JetFBComponents=null!==(on=window?.JetFBComponents)&&void 0!==on?on:{},window.JetFBComponents.ActionItemFooter=rn;const sn=rn,an=window.wp.hooks;var ln;function cn({children:e,...t}={}){const{action:n}=rt(),o=(0,an.applyFilters)(`jet.fb.section.actions.header.${n.type}`,null,n);return o?(0,v.createElement)(E.CardHeader,{...t},o,e):null}window.JetFBComponents=null!==(ln=window?.JetFBComponents)&&void 0!==ln?ln:{},window.JetFBComponents.ActionItemHeader=cn;const dn=cn;function un(e=null){this.initData(e)}function pn(){return Math.floor(8999*Math.random())+1e3}un.prototype.initData=function(e){var t,n,o,i,r,s;this.id=null!==(t=e?.id)&&void 0!==t?t:pn(),this.settings=null!==(n=e?.settings)&&void 0!==n?n:{},this.type=null!==(o=e?.type)&&void 0!==o?o:"send_email",this.editor_name=null!==(i=e?.editor_name)&&void 0!==i?i:"",this.conditions=null!==(r=e?.conditions)&&void 0!==r?r:[],this.events=null!==(s=e?.events)&&void 0!==s?s:[],Object.defineProperty(this,"selfSettings",{get:()=>{var e;return this.settings.hasOwnProperty(null!==(e=this.type)&&void 0!==e?e:"")?this.settings[this.type]:{}},set:e=>{var t;this.settings.hasOwnProperty(null!==(t=this.type)&&void 0!==t?t:"")||(this.settings[this.type]={}),this.settings[this.type]={...this.settings[this.type],...e}}}),Object.defineProperty(this,"index",{get:()=>{var t;return null!==(t=e?.index)&&void 0!==t?t:0}})},un.prototype.refactorSettings=function(){const e=this.settings;this.settings={},this.selfSettings=e},un.prototype.resetID=function(){this.id=pn()},window.JetFBComponents=window.JetFBComponents||{},window.JetFBComponents.BaseAction=un;const mn=un,fn=function(e){e=new mn(e);const t=(0,s.useSelect)((t=>{const n=t(ge).getAction(e.type);return n?.validators?n.validators:[]}),[e.type]),n=[];for(const o of t){const t=o({settings:e.selfSettings});Array.isArray(t)?n.push(...t):t&&n.push(t)}return n};var wn;const gn=Ve(E.Card)({name:"MarginLessCard",class:"myen4j",propsAsIs:!0});function hn({className:e="",...t}={}){var n;const{action:o}=rt(),{currentAction:i,isFixed:r}=(0,s.useSelect)((e=>({currentAction:e("jet-forms/actions").getCurrentAction(),isFixed:e("jet-forms/actions").isFixed(o.type)})),[o.type]),a=fn(o),l=null===(n=o.is_execute)||void 0===n||n,c=Boolean(a.length)?(0,j.__)("This action isn't set up properly. Please check the settings of the action","jet-form-builder"):"",d=c?E.Tooltip:y.Fragment,u=c?{text:c,delay:200,placement:"top"}:{};return(0,v.createElement)(d,{...u},(0,v.createElement)(gn,{elevation:2,size:"extraSmall",className:qe("jet-form-action",e,!r&&"draggable",!l&&"da595pz",i?.id===o.id&&"c131zb0w",a.length&&"e9ooo02"),...t}))}window.JetFBComponents=null!==(wn=window?.JetFBComponents)&&void 0!==wn?wn:{},window.JetFBComponents.ActionItemWrapper=hn;const vn=hn;var yn;n(877);const An={};for(const{self:e}of window.jetFormActionTypes)if(window[e]?.hasOwnProperty?.("__messages")&&Object.keys(window[e].__messages)?.length)for(const t of Object.keys(window[e].__messages))An.hasOwnProperty(t)||(An[t]=(0,E.createSlotFill)(`JFBActionMessageRow-${t}`));window.JetFBComponents=null!==(yn=window?.JetFBComponents)&&void 0!==yn?yn:{},window.JetFBComponents.ActionMessagesSlotFills=An;const bn=An;var Cn;function En(e){const{type:t,label:n,value:o,onChange:i}=e,{Slot:r}=(0,y.useMemo)((()=>bn[t]),[t]);return(0,v.createElement)(No,{tag:"jfb-message-item",label:n},(({htmlId:t})=>(0,v.createElement)(r,{fillProps:{...e,id:t}},(e=>Boolean(e?.length)?e:(0,v.createElement)(Ot.StyledTextControl,{id:t,value:o,onChange:i})))))}function Fn(e){const{settings:t,source:n,getMapField:o,setMapField:i,messages:r,onChangeSetting:s}=e;return(0,y.useEffect)((()=>{const e=t.messages||{},o={};Object.entries(n.__messages).forEach((([t,n])=>{e[t]||(o[t]=n.value)})),o&&s({...e,...o},"messages")}),[]),(0,v.createElement)("div",{createId:!1,className:Ot.TableListStyle.Wrap},(0,v.createElement)(Ot.Label,{className:Ot.TableListStyle.Label},(0,j.__)("Messages Settings","jet-form-builder")),(0,v.createElement)(Ot.Help,{className:Ot.TableListStyle.WhiteSpaceNormal},"Change error message according to USER LOGIN form field; it can be username or email."),(0,v.createElement)(To,null,t.messages&&Object.entries(t.messages).map((([e])=>{return(0,v.createElement)(En,{key:"message_"+e,type:e,label:r(e).label,value:(t=e,o({name:t,source:"messages"})),onChange:t=>{i({value:t,nameField:e,source:"messages"})}});var t}))))}window.JetFBComponents=null!==(Cn=window?.JetFBComponents)&&void 0!==Cn?Cn:{},window.JetFBComponents.ActionMessages=Fn;const xn=Fn,Sn=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"M10.8622 8.04053L14.2805 12.0286L10.8622 16.0167L9.72327 15.0405L12.3049 12.0286L9.72327 9.01672L10.8622 8.04053Z"})),Bn=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"m13.1 16-3.4-4 3.4-4 1.1 1-2.6 3 2.6 3-1.1 1z"}));var kn;const jn=document.body.classList.contains("rtl");function Jn(){const{deleteAction:e}=pt(),{index:t}=rt(),{ref:n,setShowPopover:o,showPopover:i,popoverProps:r}=(0,Ot.useTriggerPopover)(),{showActionsInserterModal:a}=(0,s.useDispatch)(ge);return(0,s.useSelect)((e=>"inserter"===e(ge).getOpenScenario()),[])&&(0,v.createElement)(v.Fragment,null,(0,v.createElement)(E.Button,{ref:n,variant:"tertiary",icon:jn?Sn:Bn,onClick:()=>o((e=>!e))},(0,j.__)("Back","jet-form-builder")),i&&(0,v.createElement)(Ot.PopoverStandard,{placement:"bottom",noArrow:!1,...r},(0,v.createElement)("span",null,(0,j.__)("Are you sure? All your changes will be lost.","jet-form-builder"))," ",(0,v.createElement)(E.Button,{isLink:!0,isDestructive:!0,onClick:()=>{e(t),a(!0)}},(0,j.__)("Yes","jet-form-builder"))," / ",(0,v.createElement)(E.Button,{isLink:!0,onClick:()=>o(!1)},(0,j.__)("No","jet-form-builder"))))}window.JetFBComponents=null!==(kn=window?.JetFBComponents)&&void 0!==kn?kn:{},window.JetFBComponents.ActionModalBackButton=Jn;const _n=Jn,Ln=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));var Tn;function In(){const[e,t]=(0,s.useSelect)((e=>[e(ge).getCurrentAction(),e(ge).getCurrentSettings()]),[]),{updateCurrentSettings:n}=(0,s.useDispatch)(ge);return{currentAction:e,currentSettings:t,updateSettings:n}}window.JetFBHooks=null!==(Tn=window.JetFBHooks)&&void 0!==Tn?Tn:{},window.JetFBHooks.useCurrentAction=In;const Nn=In;var Rn;const Mn=()=>{const{currentAction:e}=Nn(),{setCurrentAction:t,clearCurrent:n,updateCurrentConditions:o}=(0,s.useDispatch)(ge);return{setCurrentAction:t,setTypeSettings:n=>{t({...e,settings:{...e.settings,[e.type]:n}})},clearCurrent:n,updateCurrentConditions:o}};window.JetFBHooks=null!==(Rn=window.JetFBHooks)&&void 0!==Rn?Rn:{},window.JetFBHooks.useUpdateCurrentAction=Mn;const Pn=Mn;var Hn;function On(){const{clearCurrent:e}=Pn();return(0,v.createElement)(v.Fragment,null,(0,v.createElement)(E.Button,{icon:Ln,onClick:()=>e(),label:(0,j.__)("Close","jet-form-builder")}))}window.JetFBComponents=null!==(Hn=window?.JetFBComponents)&&void 0!==Hn?Hn:{},window.JetFBComponents.ActionModalCloseButton=On;const zn=On;var qn;const Dn=(0,E.createSlotFill)("JFBActionModalHeader");window.JetFBComponents=null!==(qn=window?.JetFBComponents)&&void 0!==qn?qn:{},window.JetFBComponents.ActionModalHeaderSlotFill=Dn;const Vn=Dn;var Un;const Gn=(0,E.createSlotFill)("JFBActionsAfterNewButton");window.JetFBComponents=null!==(Un=window?.JetFBComponents)&&void 0!==Un?Un:{},window.JetFBComponents.ActionsAfterNewButtonSlotFill=Gn;const Wn=Gn,Zn=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"M11 12.5V17.5H12.5V12.5H17.5V11H12.5V6H11V11H6V12.5H11Z"})),Yn=(0,v.createElement)(J.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,v.createElement)(J.Path,{d:"M12 13.06l3.712 3.713 1.061-1.06L13.061 12l3.712-3.712-1.06-1.06L12 10.938 8.288 7.227l-1.061 1.06L10.939 12l-3.712 3.712 1.06 1.061L12 13.061z"})),$n=".components-modal__frame",Kn=Ve("div")({name:"StyledPlaceholder",class:"sfffqhk",propsAsIs:!1}),Xn=function(){(0,y.useEffect)((()=>{const e=e=>{(e=>{const t=e.metaKey&&!e.ctrlKey,n=e.ctrlKey&&!e.metaKey;return(t||n)&&"z"===e.key.toLowerCase()&&!e.altKey})(e)&&(e=>{const t=e.composedPath?.();return t?.length?t.some((e=>e instanceof Element&&e.matches?.($n))):e.target?.closest?.($n)})(e)&&e.stopPropagation()};return window.addEventListener("keydown",e,!0),()=>{window.removeEventListener("keydown",e,!0)}}),[]);const e=(0,y.useRef)(null),{actions:t,setActions:n}=pt(),{openActionSettings:o,showActionsInserterModal:i}=(0,s.useDispatch)(ge),{search:r,setSearch:a,category:l,categories:c,actionTypes:d,setCategory:u}=(()=>{const[e,t]=(0,y.useState)(""),[n,o]=(0,y.useState)(""),{actionTypes:i,categories:r}=(0,s.useSelect)((t=>{const o=t(ge);return{actionTypes:o.getSortedActions().filter((t=>(!e||!t?.category&&"misc"===e||t?.category===e)&&t?.label?.toLowerCase?.().includes?.(n.toLowerCase()))),categories:[{value:"",label:(0,j.__)("All","jet-form-builder")},...o.getCategories().map((e=>({value:e?.type,label:e?.label}))),{value:"misc",label:(0,j.__)("Misc","jet-form-builder")}]}}),[n,e]);return{search:n,setSearch:o,category:e,categories:r,actionTypes:i,setCategory:t}})();return(0,y.useEffect)((()=>{const t=window.requestAnimationFrame((()=>{e.current?.focus?.()}));return()=>{window.cancelAnimationFrame(t)}}),[]),(0,y.useEffect)((()=>()=>{a(""),u("")}),[u,a]),(0,v.createElement)(E.Modal,{size:"large",title:(0,j.__)("Add new action","jet-form-builder"),onRequestClose:()=>i(!1),headerActions:(0,v.createElement)(Ot.StyledFlexControl,{expanded:!1},(0,v.createElement)(E.TextControl,{ref:e,placeholder:(0,j.__)("Search action by name…","jet-form-builder"),value:r,onChange:a}),(0,v.createElement)(E.SelectControl,{value:l,onChange:u,options:c}))},!Boolean(d?.length)&&(0,v.createElement)(Kn,null,(0,v.createElement)("h3",null,(0,j.__)("No actions were found by your search parameters.","jet-form-builder")),(0,v.createElement)(E.Button,{variant:"secondary",icon:Yn,onClick:()=>{a(""),u("")}},(0,j.__)("Clear search & category fields","jet-form-builder"))),(0,v.createElement)(E.__experimentalGrid,{columns:4,className:"jfb-actions-grid"},d.map((e=>(0,v.createElement)(Xe,{key:e.type,action:e,onClick:r=>{e.disabled||((e,r)=>{const s=Array.from(e.target?.classList);if(s?.[0]?.includes?.("components-external-link"))return;const a={...new mn({type:r.type})};n([...t,a]),i(!1),o({item:a,index:t.length,scenario:"inserter"})})(r,e)}})))))};var Qn;function eo(){const{showActionsInserterModal:e}=(0,s.useDispatch)(ge),t=(0,s.useSelect)((e=>e(ge).isShowActionsInserterModal()),[]);return(0,v.createElement)(v.Fragment,null,(0,v.createElement)(E.Button,{isPrimary:!0,onClick:()=>e(!0),icon:Zn},(0,j.__)("New Action","jet-form-builder")),t&&(0,v.createElement)(Xn,null))}n(929),window.JetFBComponents=null!==(Qn=window?.JetFBComponents)&&void 0!==Qn?Qn:{},window.JetFBComponents.AddActionButton=eo;const to=eo;var no;const oo=Ve(E.Flex)({name:"StyledFlex",class:"sauuswy",propsAsIs:!0});function io(){return!JetFormEditorData.isActivePro&&(0,v.createElement)(oo,{gap:3,justify:"center"},(0,v.createElement)("a",{href:JetFormEditorData.utmLinks.allProActions,target:"_blank",rel:"external noreferrer noopener",style:{textDecoration:"none"}},(0,v.createElement)(E.Flex,null,(0,j.__)("All PRO Actions","jet-form-builder"),(0,v.createElement)(Ue,{size:20,icon:(0,v.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",fill:"currentColor"},(0,v.createElement)("path",{d:"M19.5 4.5h-7V6h4.44l-5.97 5.97 1.06 1.06L18 7.06v4.44h1.5v-7Zm-13 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3H17v3a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h3V5.5h-3Z"}))}))))}window.JetFBComponents=null!==(no=window?.JetFBComponents)&&void 0!==no?no:{},window.JetFBComponents.AllProActionsLink=io;const ro=io;var so;function ao({initialLabel:e="Valid",label:t="InValid",ajaxArgs:n={},loadingState:o,setLoading:i,id:r,setResultSuccess:s,setResultFail:a}){return(0,v.createElement)(Se,{disabled:o.loading,ajaxArgs:n,label:-1===o.id&&e?e:t,onLoading:()=>{i(r)},onSuccessRequest:e=>{s(r,e)},onFailRequest:()=>a(r),className:o.buttonClassName},(0,v.createElement)("i",{className:"dashicons"}))}n(974),window.JetFBComponents=null!==(so=window?.JetFBComponents)&&void 0!==so?so:{},window.JetFBComponents.FetchAjaxButton=ao;const lo=(0,Je.compose)((0,s.withSelect)(Ee),(0,s.withDispatch)(je))(ao);var co;function uo(){return(0,v.createElement)(v.Fragment,null,(0,v.createElement)(vn,null,(0,v.createElement)(dn,null),(0,v.createElement)(Kt,null),(0,v.createElement)(sn,null)))}window.JetFBComponents=null!==(co=window?.JetFBComponents)&&void 0!==co?co:{},window.JetFBComponents.ListActionItem=uo;const po=uo;var mo;function fo({style:e,children:t}){const n={fontSize:"1.5em",padding:"2em",textAlign:"center",backgroundColor:"aliceblue",...e};return(0,v.createElement)("p",{style:n},t)}window.JetFBComponents=null!==(mo=window?.JetFBComponents)&&void 0!==mo?mo:{},window.JetFBComponents.PlaceholderMessage=fo;const wo=fo,go=["jet-form-validate-button"];var ho;function vo({label:e,ajaxArgs:t={},onSuccessRequest:n=()=>{},onFailRequest:o=()=>{}}){const[i,r,s]=function(){const[e,t]=(0,y.useState)([...go]);return[e.join(" "),()=>{t([...go,"loading"])},()=>{t(go)}]}();return(0,v.createElement)(Se,{ajaxArgs:t,label:e,onLoading:r,onSuccessRequest:e=>{s(),n(e)},onFailRequest:()=>{s(),o()},className:i},(0,v.createElement)("i",{className:"dashicons"}))}window.JetFBComponents=null!==(ho=window?.JetFBComponents)&&void 0!==ho?ho:{},window.JetFBComponents.RequestLoadingButton=vo;const yo=vo;var Ao;function bo({initialValid:e=null,label:t,ajaxArgs:n={},onValid:o=()=>{},onInvalid:i=()=>{}}){const[r,s]=(0,y.useState)({}),[a,l,c,d]=function(e){const t="is-valid",n="is-invalid",[o,i]=(0,y.useState)((()=>[...go,...e?[t]:!1===e?[n]:[]]));return[o.join(" "),()=>{i([...go,t])},()=>{i([...go,n])},()=>{i([...go,"loading"])}]}(e||null);return(0,v.createElement)(Se,{ajaxArgs:n,label:t,onLoading:d,onSuccessRequest:e=>{l(),o(e),s({})},onFailRequest:()=>{c(),i(),s({isDestructive:!0})},className:a,...r},(0,v.createElement)("i",{className:"dashicons"}))}window.JetFBComponents=null!==(Ao=window?.JetFBComponents)&&void 0!==Ao?Ao:{},window.JetFBComponents.ValidateButton=bo;const Co=bo;var Eo;function Fo(e){const t=(0,s.useSelect)((e=>e(ge).getCurrentAction()),[]);return(0,v.createElement)(lo,{id:t.id,...e})}window.JetFBComponents=null!==(Eo=window?.JetFBComponents)&&void 0!==Eo?Eo:{},window.JetFBComponents.ValidateButtonWithStore=Fo;const xo=Fo,So=function({isSupported:e}){const{currentAction:t,isShowErrors:n}=(0,s.useSelect)((e=>({currentAction:e(ge).getCurrentAction(),isShowErrors:e(ge).getErrorVisibility()})),[]),[o,i]=(0,y.useState)(!1);return{hasError:fn(o||n?t:{type:!1}).some(e),setShowError:i}},Bo=function({isSupported:e,children:t}){return t(So({isSupported:e}))},ko=Ve(E.Flex)({name:"StyledFlex",class:"s5b5a3p",propsAsIs:!0}),jo=function e({tag:t,label:n,help:o="",isRequired:i,formFields:r,value:s,onChange:a}){const l=i?Ot.RequiredLabel:Ot.Label,{hasError:c,setShowError:d}=So({isSupported:e=>`field_${t}`===e?.property}),u=(0,Je.useInstanceId)(e,"jfb-field-map");return(0,v.createElement)(E.Card,{elevation:2},(0,v.createElement)(ko,{direction:"column",gap:3},c&&(0,v.createElement)(Ot.IconText,null,(0,j.__)("Please fill this required field","jet-form-builder")),(0,v.createElement)(Ot.RowControl,{createId:!1,controlSize:1,className:qe(c&&Ot.ControlWithErrorStyle)},(0,v.createElement)(l,{htmlFor:u},n),(0,v.createElement)(Ot.StyledSelectControl,{id:u,value:s,onChange:a,onBlur:()=>d(!0),options:r})),Boolean(o)&&(0,v.createElement)(Ot.Help,null,o)))};n(848);const Jo=function({value:e,onChange:t,label:n,help:o,isErrorSupported:i=()=>!1,errorText:r="",required:s=!1,disabled:a=!1}){const{hasError:l,setShowError:c}=So({isSupported:i}),d=s?Ot.RequiredLabel:Ot.Label;return(0,v.createElement)(Ot.RowControl,null,(({id:i})=>(0,v.createElement)(v.Fragment,null,(0,v.createElement)(d,{htmlFor:i},n),(0,v.createElement)(Ot.RowControlEnd,{hasError:l,errorText:r},(0,v.createElement)(Ot.StyledTextControl,{id:i,value:e,onChange:t,onBlur:()=>c(!0),help:o,disabled:a})))))},_o=function({value:e,onChange:t,label:n,help:o="",options:i,required:r=!1,isErrorSupported:s=()=>!1}){const{hasError:a,setShowError:l}=So({isSupported:s}),c=r?Ot.RequiredLabel:Ot.Label;return(0,v.createElement)(Ot.RowControl,null,(({id:r})=>(0,v.createElement)(v.Fragment,null,(0,v.createElement)(c,{htmlFor:r},n),(0,v.createElement)(Ot.RowControlEnd,{hasError:a},(0,v.createElement)(Ot.StyledSelectControl,{id:r,value:e,onChange:t,onBlur:()=>l(!0),help:o,options:i})))))},Lo=Ve(E.Flex)({name:"StyledFlex",class:"s1goy86j",propsAsIs:!0});function To({children:e}){return(0,v.createElement)(E.Card,{className:Ot.TableListStyle.Card},e)}function Io({tag:e,label:t,help:n,isRequired:o,children:i}){const r=o?Ot.RequiredLabel:Ot.Label,{hasError:s,setShowError:a}=So({isSupported:t=>`field_${e}`===t?.property}),l=(0,Je.useInstanceId)(Io,e);return(0,v.createElement)(Lo,{className:Ot.TableListStyle.Td,direction:"column",gap:3},s&&(0,v.createElement)(Ot.IconText,null,(0,j.__)("Please fill this required field","jet-form-builder")),(0,v.createElement)(Ot.RowControl,{createId:!1,controlSize:1,className:qe(s&&Ot.ControlWithErrorStyle)},(0,v.createElement)("div",{className:Ot.TableListStyle.TdItem},(0,v.createElement)(r,{htmlFor:l,className:Ot.TableListStyle.WhiteSpaceNormal},t),Boolean(n)&&(0,v.createElement)(Ot.Help,{className:Ot.TableListStyle.WhiteSpaceNormal},n)),(0,v.createElement)("div",{className:Ot.TableListStyle.TdItem},"function"==typeof i?i({setShowError:a,htmlId:l}):(0,y.isValidElement)(i)?(0,y.cloneElement)(i,{setShowError:a}):i)))}function No({tag:e,label:t,help:n="",isRequired:o,children:i}){return(0,v.createElement)(Bo,{isSupported:t=>`field_${e}`===t?.property},(({hasError:r,setShowError:s})=>(0,v.createElement)(Io,{tag:e,label:t,help:n,isRequired:o},i)))}function Ro({columns:e}){return(0,v.createElement)(E.Flex,{className:Ot.TableListStyle.Th},e.map(((e,t)=>(0,v.createElement)(E.FlexItem,{key:`col_${t}`,className:Ot.TableListStyle.ThItem},e))))}n(841);const Mo="single_value_as_array",Po=function({fieldName:e,getMapField:t,setMapField:n,showHelp:o=!1}){return(0,v.createElement)(E.ToggleControl,{label:(0,j.__)("Save single value as array","jet-form-builder"),help:o?(0,j.__)("Other target field settings may affect whether the value is saved as an array.","jet-form-builder"):void 0,checked:!!t({source:Mo,name:e}),onChange:t=>n({source:Mo,nameField:e,value:!!t})})};var Ho;const{useSelect:Oo}=wp.data,{useContext:zo}=wp.element,qo=({actions:e,fields:t})=>{for(const n of e){const{[n.type]:e={}}=n.settings;if(e.requestFields)for(const o of e.requestFields)-1===t.findIndex((e=>e.value===o.name))&&t.push({from:n.type,id:n.id,label:o.name,value:o.name,name:o.name,help:o.help})}},Do=({computed:e,action:t,fields:n,nameSet:o})=>{if(!e.isSupported(t,n))return;e.setAction(t),e.hasInList=!1;let i=e.getName();if(o.has(i)&&(e.hasInList=!0,i=e.getName()),n.some((({value:e})=>e===i)))return;o.add(i);const r=e.getLabel();n.push({from:t.type,id:t.id,label:r||i,value:i,name:i,help:e.getHelp()})};function Vo({fields:e,actions:t,computed:n,nameSet:o}){t=t.map((e=>new mn(e)));for(const{field:i,settings:r}of n){if(r?.isScoped)continue;const n=new i;for(const i of t)Do({computed:n,action:i,nameSet:o,fields:e});if(n.action||!n.isSupportedGlobal())continue;const s=n.getLabel(),a=n.getName();e.push({label:s||a,value:a,name:a,help:n.getHelp()})}}function Uo({returnOnEmptyCurrentAction:e=!0}={}){const t=Oo((e=>e("core/editor").getEditedPostAttribute("meta")||{}),[]),n=zo(C),{currentAction:o,computedList:i}=Oo((e=>({currentAction:e(ge).getCurrentAction(),computedList:e(ge).getComputedFields()})),[]);if(!n?.actionId&&e)return[];const r=JSON.parse(t._jf_actions||"[]");Number.isNaN(Number(o?.index))||r.splice(o.index);const s=new Set,a=[];for(const{field:e,settings:t}of i){if(!t?.isScoped)continue;const n=new e;Do({computed:n,action:o,nameSet:s,fields:a})}return qo({actions:r,fields:a}),Vo({fields:a,actions:r,computed:i,nameSet:s}),a}window.JetFBHooks=null!==(Ho=window.JetFBHooks)&&void 0!==Ho?Ho:{},window.JetFBHooks.useRequestFields=Uo;const Go=Uo;var Wo;const Zo=()=>{const{currentAction:e}=Nn(),{updateActionObj:t,addActionProps:n}=pt();return 0>e.id?e=>n(e):n=>{t(e.id,n)}};window.JetFBHooks=null!==(Wo=window.JetFBHooks)&&void 0!==Wo?Wo:{},window.JetFBHooks.useUpdateCurrentActionMeta=Zo;const Yo=Zo;var $o;function Ko(e){const t=e("core/editor").getEditedPostAttribute("meta")||{},n=JSON.parse(t._jf_actions||"[]"),o=e(ge).getCurrentAction(),i=e(ge).getComputedFields();n.splice(o.index);const r=[],s=new Set;return qo({actions:n,fields:r}),Vo({fields:r,actions:n,computed:i,nameSet:s}),{requestFields:r}}window.JetFBHooks=null!==($o=window.JetFBHooks)&&void 0!==$o?$o:{},window.JetFBHooks.withRequestFields=Ko;const Xo=Ko;function Qo(){this.action=null,this.hasInList=!1}Qo.prototype.isSupported=function(e,t){return this.getSupportedActions().includes(e.type)},Qo.prototype.isSupportedGlobal=function(){return!1},Qo.prototype.getSupportedActions=function(){return[]},Qo.prototype.setAction=function(e){this.action=e},Qo.prototype.getName=function(){return""},Qo.prototype.getLabel=function(){return""},Qo.prototype.getHelp=function(){return""},window.JetFBComponents=window.JetFBComponents||{},window.JetFBComponents.BaseComputedField=Qo;const ei=Qo;function ti(e=null){this.list=e}ti.prototype={setList(e){this.list=e},resetID(){for(const e of this.list)e.resetID()},hasType(e){return this.list.some((t=>t.type===e))},add(e){"string"==typeof e&&(e={type:e}),this.list.push(new mn(e))}},window.JetFBComponents=window.JetFBComponents||{},window.JetFBComponents.ActionsFlow=ti;const ni=ti,oi=function(e){(0,s.dispatch)(ge).registerAction(e)};var ii;function ri(e,t){(0,s.dispatch)(ge).addCallback(e,t)}window.JetFBActions=null!==(ii=window.JetFBActions)&&void 0!==ii?ii:{},window.JetFBActions.addAction=ri;const si=ri;var ai;function li(e,t={}){(0,s.dispatch)(ge).addComputedField(e,t)}window.JetFBActions=null!==(ai=window.JetFBActions)&&void 0!==ai?ai:{},window.JetFBActions.addComputedField=li;const ci=li;var di;function ui(e=[]){const t=[];for(const n of e){const e=new mn(n);e.refactorSettings(),t.push(e)}return new ni(t)}window.JetFBActions=null!==(di=window.JetFBActions)&&void 0!==di?di:{},window.JetFBActions.convertFlow=ui;const pi=ui;var mi;function fi(...e){const t=[];for(const n of e)Array.isArray(n)&&t.push(...n.map((e=>[e.value,e])));return t}window.JetFBActions=null!==(mi=window.JetFBActions)&&void 0!==mi?mi:{},window.JetFBActions.convertListToFieldsMap=fi;const wi=fi;var gi;function hi({slug:e,element:t="",empty:n=""}){const o=JetFormEditorData.global_settings;return o?t?o[e]&&o[e][t]?o[e][t]:n:o[e]||n:n}window.JetFBActions=null!==(gi=window.JetFBActions)&&void 0!==gi?gi:{},window.JetFBActions.globalTab=hi;const vi=hi;(0,s.register)(he),(window.jfb=window.jfb||{}).actions=o})(); \ No newline at end of file diff --git a/modules/actions-v2/call-hook/assets/build/editor.asset.php b/modules/actions-v2/call-hook/assets/build/editor.asset.php index da7ef616e..267c3d155 100644 --- a/modules/actions-v2/call-hook/assets/build/editor.asset.php +++ b/modules/actions-v2/call-hook/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-i18n', 'wp-primitives'), 'version' => '81425f67916bc7b9482d'); + array('react', 'wp-components', 'wp-i18n', 'wp-primitives'), 'version' => '7547ff02bbf354170236'); diff --git a/modules/actions-v2/call-hook/assets/build/editor.js b/modules/actions-v2/call-hook/assets/build/editor.js index 368f52ec4..53104e1f1 100644 --- a/modules/actions-v2/call-hook/assets/build/editor.js +++ b/modules/actions-v2/call-hook/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";const e=window.React,t=window.wp.i18n,o=window.wp.components,l=window.jfb.components,r=window.jfb.actions,n=window.wp.primitives,a=(0,e.createElement)(n.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)(n.Path,{d:"M20.8 10.7l-4.3-4.3-1.1 1.1 4.3 4.3c.1.1.1.3 0 .4l-4.3 4.3 1.1 1.1 4.3-4.3c.7-.8.7-1.9 0-2.6zM4.2 11.8l4.3-4.3-1-1-4.3 4.3c-.7.7-.7 1.8 0 2.5l4.3 4.3 1.1-1.1-4.3-4.3c-.2-.1-.2-.3-.1-.4z"})),i={type:"call_hook",label:(0,t.__)("Call Hook","jet-form-builder"),edit:function({settings:n,onChangeSettingObj:a}){return(0,e.createElement)(o.Flex,{direction:"column"},(0,e.createElement)(l.RowControl,null,({id:o})=>(0,e.createElement)(r.ValidatorProvider,{isSupported:()=>!0},({hasError:r,setShowError:i})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(l.RequiredLabel,{htmlFor:o},(0,t.__)("Hook Name","jet-form-builder")),(0,e.createElement)(l.RowControlEnd,{hasError:r},(0,e.createElement)(l.StyledTextControl,{id:o,value:n.hook_name,onChange:e=>a({hook_name:e.toLowerCase().replace(/[^\w\-]/g,"")}),onBlur:()=>i(!0)}))))),(0,e.createElement)(l.WideLine,null),(0,e.createElement)("div",{className:"jet-call-hook-instruction"},(0,t.__)("Called hook names:","jet-form-builder"),(0,e.createElement)("ul",null,(0,e.createElement)("li",null,(0,e.createElement)("code",null,"jet-form-builder/custom-action/",n.hook_name)," - ",(0,t.__)("WP action. Perform a hook without an ability to validate form,","jet-form-builder")),(0,e.createElement)("li",null,(0,e.createElement)("code",null,"jet-form-builder/custom-filter/",n.hook_name)," - ",(0,t.__)("WP filter. Perform a hook with an ability to validate form. Allows to return error message.","jet-form-builder"))),(0,t.__)("Hook arguments:","jet-form-builder"),(0,e.createElement)("ul",null,(0,e.createElement)("li",null,(0,e.createElement)("code",null,"$result")," - ",(0,t.__)("only for WP filter. Hook execution result,","jet-form-builder")),(0,e.createElement)("li",null,(0,e.createElement)("code",null,"$request")," - ",(0,t.__)("array with submitted form data,","jet-form-builder")),(0,e.createElement)("li",null,(0,e.createElement)("code",null,"$action_handler")," - ",(0,t.__)("action handler object, allows to manage actions data and to throws error status:","jet-form-builder"),(0,e.createElement)("code",null,"throw new Action_Exception( 'failed')")))))},icon:a,docHref:"https://jetformbuilder.com/features/call-hook/",category:"advanced",validators:[({settings:e})=>!e?.hook_name&&{type:"empty",property:"hook_name"}]};(0,r.registerAction)(i)})(); \ No newline at end of file +(()=>{"use strict";const e=window.React,t=window.wp.i18n,o=window.wp.components,l=window.jfb.components,r=window.jfb.actions,n=window.wp.primitives,a=(0,e.createElement)(n.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)(n.Path,{d:"M20.8 10.7l-4.3-4.3-1.1 1.1 4.3 4.3c.1.1.1.3 0 .4l-4.3 4.3 1.1 1.1 4.3-4.3c.7-.8.7-1.9 0-2.6zM4.2 11.8l4.3-4.3-1-1-4.3 4.3c-.7.7-.7 1.8 0 2.5l4.3 4.3 1.1-1.1-4.3-4.3c-.2-.1-.2-.3-.1-.4z"})),i={type:"call_hook",label:(0,t.__)("Call Hook","jet-form-builder"),edit:function({settings:n,onChangeSettingObj:a}){return(0,e.createElement)(o.Flex,{direction:"column"},(0,e.createElement)(l.RowControl,null,(({id:o})=>(0,e.createElement)(r.ValidatorProvider,{isSupported:()=>!0},(({hasError:r,setShowError:i})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(l.RequiredLabel,{htmlFor:o},(0,t.__)("Hook Name","jet-form-builder")),(0,e.createElement)(l.RowControlEnd,{hasError:r},(0,e.createElement)(l.StyledTextControl,{id:o,value:n.hook_name,onChange:e=>a({hook_name:e.toLowerCase().replace(/[^\w\-]/g,"")}),onBlur:()=>i(!0)}))))))),(0,e.createElement)(l.WideLine,null),(0,e.createElement)("div",{className:"jet-call-hook-instruction"},(0,t.__)("Called hook names:","jet-form-builder"),(0,e.createElement)("ul",null,(0,e.createElement)("li",null,(0,e.createElement)("code",null,"jet-form-builder/custom-action/",n.hook_name)," - ",(0,t.__)("WP action. Perform a hook without an ability to validate form,","jet-form-builder")),(0,e.createElement)("li",null,(0,e.createElement)("code",null,"jet-form-builder/custom-filter/",n.hook_name)," - ",(0,t.__)("WP filter. Perform a hook with an ability to validate form. Allows to return error message.","jet-form-builder"))),(0,t.__)("Hook arguments:","jet-form-builder"),(0,e.createElement)("ul",null,(0,e.createElement)("li",null,(0,e.createElement)("code",null,"$result")," - ",(0,t.__)("only for WP filter. Hook execution result,","jet-form-builder")),(0,e.createElement)("li",null,(0,e.createElement)("code",null,"$request")," - ",(0,t.__)("array with submitted form data,","jet-form-builder")),(0,e.createElement)("li",null,(0,e.createElement)("code",null,"$action_handler")," - ",(0,t.__)("action handler object, allows to manage actions data and to throws error status:","jet-form-builder"),(0,e.createElement)("code",null,"throw new Action_Exception( 'failed')")))))},icon:a,docHref:"https://jetformbuilder.com/features/call-hook/",category:"advanced",validators:[({settings:e})=>!e?.hook_name&&{type:"empty",property:"hook_name"}]};(0,r.registerAction)(i)})(); \ No newline at end of file diff --git a/modules/actions-v2/call-webhook/assets/build/editor.asset.php b/modules/actions-v2/call-webhook/assets/build/editor.asset.php index 1e52e8882..ae8a8625d 100644 --- a/modules/actions-v2/call-webhook/assets/build/editor.asset.php +++ b/modules/actions-v2/call-webhook/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-compose', 'wp-i18n', 'wp-primitives'), 'version' => 'fb331ffc67d56349919c'); + array('react', 'wp-components', 'wp-compose', 'wp-i18n', 'wp-primitives'), 'version' => '0d499900ccbbe254d6fa'); diff --git a/modules/actions-v2/call-webhook/assets/build/editor.js b/modules/actions-v2/call-webhook/assets/build/editor.js index 9bcc2c201..fcd56ec5e 100644 --- a/modules/actions-v2/call-webhook/assets/build/editor.js +++ b/modules/actions-v2/call-webhook/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";const e=window.React,t=window.wp.compose,o=window.jfb.components,n=window.wp.i18n,r=window.wp.components;var l=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},o=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,o]=e.split("_");t[o]=e}else o.push(e)})});const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...o),n.join(" ")};const i=window.jfb.actions,{PresetButton:c,MacrosFields:a}=JetFBComponents,s=function({settings:s,onChangeSettingObj:u}){const{hasError:h,setShowError:w}=(0,i.useActionValidatorProvider)({isSupported:e=>"webhook_url"===e?.property}),m=(0,t.useInstanceId)(o.RowControl,"jfb-control");return(0,e.createElement)(o.RowControl,{createId:!1},(0,e.createElement)(o.LabelWithActions,null,(0,e.createElement)(o.RequiredLabel,{htmlFor:m},(0,n.__)("Webhook URL","jet-form-builder")),(0,e.createElement)(c,{value:s.webhook_url,onChange:e=>u({webhook_url:e})}),(0,e.createElement)(a,{onClick:e=>{var t;return u({webhook_url:(null!==(t=s.webhook_url)&&void 0!==t?t:"")+e})},withCurrent:!0})),(0,e.createElement)(r.Flex,{className:l(o.RowControlEndStyle,h&&o.ControlWithErrorStyle),direction:"column"},h&&(0,e.createElement)(o.IconText,null,(0,n.__)("Please fill this required field","jet-form-builder")),(0,e.createElement)(o.StyledTextControl,{id:m,value:s.webhook_url,onChange:e=>u({webhook_url:e}),onBlur:()=>w(!0)})))},u=function({settings:r,onChangeSettingObj:l}){var i;const c=(0,t.useInstanceId)(o.RowControl,"jfb-control");return(0,e.createElement)(o.RowControl,{createId:!1},(0,e.createElement)(o.Label,{htmlFor:c},(0,n.__)("Timeout in seconds","jet-form-builder")),(0,e.createElement)(o.StyledTextControl,{id:c,type:"number",min:0,value:null!==(i=r.webhook_timeout)&&void 0!==i?i:10,onChange:e=>l({webhook_timeout:e})}))},h=window.wp.primitives,w=(0,e.createElement)(h.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(h.Path,{d:"M17.3 10.1c0-2.5-2.1-4.4-4.8-4.4-2.2 0-4.1 1.4-4.6 3.3h-.2C5.7 9 4 10.7 4 12.8c0 2.1 1.7 3.8 3.7 3.8h9c1.8 0 3.2-1.5 3.2-3.3.1-1.6-1.1-2.9-2.6-3.2zm-.5 5.1h-9c-1.2 0-2.2-1.1-2.2-2.3s1-2.4 2.2-2.4h1.3l.3-1.1c.4-1.3 1.7-2.2 3.2-2.2 1.8 0 3.3 1.3 3.3 2.9v1.3l1.3.2c.8.1 1.4.9 1.4 1.8-.1 1-.9 1.8-1.8 1.8z"})),m={type:"call_webhook",label:(0,n.__)("Call Webhook","jet-form-builder"),edit:function({settings:t,onChangeSettingObj:o}){return(0,e.createElement)(r.Flex,{direction:"column"},(0,e.createElement)(s,{settings:t,onChangeSettingObj:o}),(0,e.createElement)(u,{settings:t,onChangeSettingObj:o}))},icon:w,docHref:"https://jetformbuilder.com/features/call-webhook/",category:"advanced",validators:[({settings:e})=>!e?.webhook_url&&{type:"empty",property:"webhook_url"}]};(0,i.registerAction)(m)})(); \ No newline at end of file +(()=>{"use strict";const e=window.React,t=window.wp.compose,o=window.jfb.components,n=window.wp.i18n,r=window.wp.components;var l=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},o=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,o]=e.split("_");t[o]=e}else o.push(e)}))}));const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...o),n.join(" ")};const i=window.jfb.actions,{PresetButton:c,MacrosFields:a}=JetFBComponents,s=function({settings:s,onChangeSettingObj:u}){const{hasError:h,setShowError:w}=(0,i.useActionValidatorProvider)({isSupported:e=>"webhook_url"===e?.property}),m=(0,t.useInstanceId)(o.RowControl,"jfb-control");return(0,e.createElement)(o.RowControl,{createId:!1},(0,e.createElement)(o.LabelWithActions,null,(0,e.createElement)(o.RequiredLabel,{htmlFor:m},(0,n.__)("Webhook URL","jet-form-builder")),(0,e.createElement)(c,{value:s.webhook_url,onChange:e=>u({webhook_url:e})}),(0,e.createElement)(a,{onClick:e=>{var t;return u({webhook_url:(null!==(t=s.webhook_url)&&void 0!==t?t:"")+e})},withCurrent:!0})),(0,e.createElement)(r.Flex,{className:l(o.RowControlEndStyle,h&&o.ControlWithErrorStyle),direction:"column"},h&&(0,e.createElement)(o.IconText,null,(0,n.__)("Please fill this required field","jet-form-builder")),(0,e.createElement)(o.StyledTextControl,{id:m,value:s.webhook_url,onChange:e=>u({webhook_url:e}),onBlur:()=>w(!0)})))},u=function({settings:r,onChangeSettingObj:l}){var i;const c=(0,t.useInstanceId)(o.RowControl,"jfb-control");return(0,e.createElement)(o.RowControl,{createId:!1},(0,e.createElement)(o.Label,{htmlFor:c},(0,n.__)("Timeout in seconds","jet-form-builder")),(0,e.createElement)(o.StyledTextControl,{id:c,type:"number",min:0,value:null!==(i=r.webhook_timeout)&&void 0!==i?i:10,onChange:e=>l({webhook_timeout:e})}))},h=window.wp.primitives,w=(0,e.createElement)(h.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(h.Path,{d:"M17.3 10.1c0-2.5-2.1-4.4-4.8-4.4-2.2 0-4.1 1.4-4.6 3.3h-.2C5.7 9 4 10.7 4 12.8c0 2.1 1.7 3.8 3.7 3.8h9c1.8 0 3.2-1.5 3.2-3.3.1-1.6-1.1-2.9-2.6-3.2zm-.5 5.1h-9c-1.2 0-2.2-1.1-2.2-2.3s1-2.4 2.2-2.4h1.3l.3-1.1c.4-1.3 1.7-2.2 3.2-2.2 1.8 0 3.3 1.3 3.3 2.9v1.3l1.3.2c.8.1 1.4.9 1.4 1.8-.1 1-.9 1.8-1.8 1.8z"})),m={type:"call_webhook",label:(0,n.__)("Call Webhook","jet-form-builder"),edit:function({settings:t,onChangeSettingObj:o}){return(0,e.createElement)(r.Flex,{direction:"column"},(0,e.createElement)(s,{settings:t,onChangeSettingObj:o}),(0,e.createElement)(u,{settings:t,onChangeSettingObj:o}))},icon:w,docHref:"https://jetformbuilder.com/features/call-webhook/",category:"advanced",validators:[({settings:e})=>!e?.webhook_url&&{type:"empty",property:"webhook_url"}]};(0,i.registerAction)(m)})(); \ No newline at end of file diff --git a/modules/actions-v2/get-response/assets/build/editor.asset.php b/modules/actions-v2/get-response/assets/build/editor.asset.php index f2f26ab8f..dc8784a81 100644 --- a/modules/actions-v2/get-response/assets/build/editor.asset.php +++ b/modules/actions-v2/get-response/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => 'a6d60436525013004b2e'); + array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => 'babb42b30caeadf3b85d'); diff --git a/modules/actions-v2/get-response/assets/build/editor.js b/modules/actions-v2/get-response/assets/build/editor.js index 7b3c612ef..4ce2f0d99 100644 --- a/modules/actions-v2/get-response/assets/build/editor.js +++ b/modules/actions-v2/get-response/assets/build/editor.js @@ -1 +1 @@ -(()=>{var e={74(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>l});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".sb855b9{-webkit-flex:1;-ms-flex:1;flex:1;}.sb855b9 .components-base-control__field input.components-text-control__input{height:40px;}\n",""]);const l=i},186(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r}).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var l=0;l0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=a),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),o&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=o):d[4]="".concat(o)),t.push(d))}},t}},721(e){"use strict";e.exports=function(e){return e[1]}},679(e,t,r){var n=r(74);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,r(54).A)("1c0a89ce",n,!1,{})},54(e,t,r){"use strict";function n(e,t){for(var r=[],n={},o=0;om});var o="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!o)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var a={},i=o&&(document.head||document.getElementsByTagName("head")[0]),l=null,s=0,c=!1,d=function(){},u=null,p="data-vue-ssr-id",f="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function m(e,t,r,o){c=r,u=o||{};var i=n(e,t);return h(i),function(t){for(var r=[],o=0;or.parts.length&&(n.parts.length=r.parts.length)}else{var i=[];for(o=0;o{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e={};r.r(e),r.d(e,{fetchApiData:()=>y});var t={};r.r(t),r.d(t,{getFetchError:()=>w,getFields:()=>b,getLists:()=>v,isFetchLoading:()=>E});const n=window.React,o=window.wp.i18n,a=window.wp.data,i=window.jfb.components,l="SET_LISTS",s="SET_FIELDS",c="START_FETCH",d="END_FETCH",u="SET_FETCH_ERROR",p=(0,a.combineReducers)({api:function(e={},t){switch(t?.type){case l:return{...e,lists:t.payload};case s:return{...e,fields:t.payload}}return e},fetch:function(e={},t){switch(t?.type){case c:return{...e,loading:!0};case d:return{...e,loading:!1};case u:return{...e,error:t.error}}return e}}),f=p,m=window.wp.apiFetch;var h=r.n(m);const g=window.wp.url,y=e=>async({dispatch:t})=>{if(!e)return;t({type:c}),t({type:u,error:!1});const r=(0,g.addQueryArgs)("jet-form-builder/v1/get-response",{apiKey:e});let n;try{n=await h()({path:r})}catch(e){return void t({type:u,error:e})}finally{t({type:d})}t({type:l,payload:n.lists}),t({type:s,payload:n.fields})};function v(e){var t;return null!==(t=e?.api?.lists)&&void 0!==t?t:[]}function b(e){var t;return null!==(t=e?.api?.fields)&&void 0!==t?t:[]}function E(e){var t;return null!==(t=e.fetch?.loading)&&void 0!==t&&t}function w(e){var t;return null!==(t=e.fetch?.error)&&void 0!==t&&t}const _="jet-forms/get-response",x=(0,a.createReduxStore)(_,{reducer:f,actions:e,selectors:t}),S=window.wp.components;var k=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},r=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,r]=e.split("_");t[r]=e}else r.push(e)})});const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...r),n.join(" ")};const C=window.jfb.actions,F=function({settings:e,onChangeSettingObj:t}){const r=(0,a.useSelect)(e=>e(_).getLists(),[]),{hasError:l,setShowError:s}=(0,C.useActionValidatorProvider)({isSupported:e=>"list_id"===e?.property});return(0,n.createElement)(i.RowControl,null,({id:a})=>(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.RequiredLabel,{htmlFor:a},(0,o.__)("List","jet-form-builder")),(0,n.createElement)(S.Flex,{className:k(i.RowControlEndStyle,l&&i.ControlWithErrorStyle),direction:"column"},l&&(0,n.createElement)(i.IconText,null,(0,o.__)("Please fill this required field","jet-form-builder")),(0,n.createElement)(i.StyledSelectControl,{id:a,value:e.list_id,onChange:e=>t({list_id:e}),onBlur:()=>s(!0),options:[{value:"",label:(0,o.__)("-- Select list --","jet-form-builder")},...r]}))))},T=window.jfb.blocksToActions,j=function({getMapField:e,setMapField:t}){const r=(0,T.useFields)({withInner:!1,placeholder:"--"}),l=(0,a.useSelect)(e=>e(_).getFields(),[]);return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.Label,null,(0,o.__)("Fields map","jet-form-builder")),(0,n.createElement)(S.Flex,{className:k(i.RowControlEndStyle),direction:"column",gap:4},l.map(o=>(0,n.createElement)(C.FieldsMapField,{key:o.value,tag:o.value,label:o.label,isRequired:o.required,formFields:r,value:e({name:o.value}),onChange:e=>t({nameField:o.value,value:e})}))))},R=window.wp.compose,A=window.wp.primitives,O=(0,n.createElement)(A.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(A.Path,{d:"M17.3 10.1c0-2.5-2.1-4.4-4.8-4.4-2.2 0-4.1 1.4-4.6 3.3h-.2C5.7 9 4 10.7 4 12.8c0 2.1 1.7 3.8 3.7 3.8h9c1.8 0 3.2-1.5 3.2-3.3.1-1.6-1.1-2.9-2.6-3.2zm-.5 5.1h-9c-1.2 0-2.2-1.1-2.2-2.3s1-2.4 2.2-2.4h1.3l.3-1.1c.4-1.3 1.7-2.2 3.2-2.2 1.8 0 3.3 1.3 3.3 2.9v1.3l1.3.2c.8.1 1.4.9 1.4 1.8-.1 1-.9 1.8-1.8 1.8z"})),L=function({...e}){return(0,n.createElement)("div",{...e},(0,o.__)("How to obtain your GetResponse API Key?","jet-form-builder")," ",(0,n.createElement)(S.ExternalLink,{href:"https://app.getresponse.com/api"},(0,o.__)("More info here","jet-form-builder")))};function M(e){var t=Object.create(null);return function(r){return void 0===t[r]&&(t[r]=e(r)),t[r]}}var P=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,I=M(function(e){return P.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),B=(e,t)=>{const r={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{r[t]=e[t]}),r},N=(e,t)=>{},U=function(e){let t="";return r=>{const o=(o,a)=>{const{as:i=e,class:l=t}=o;var s;const c=function(e,t){const r=B(t,["as","class"]);if(!e){const e="function"==typeof I?{default:I}:I;Object.keys(r).forEach(t=>{e.default(t)||delete r[t]})}return r}(void 0===r.propsAsIs?!("string"==typeof i&&-1===i.indexOf("-")&&(s=i[0],s.toUpperCase()!==s)):r.propsAsIs,o);c.ref=a,c.className=r.atomic?k(r.class,c.className||l):k(c.className||l,r.class);const{vars:d}=r;if(d){const e={};for(const t in d){const n=d[t],a=n[0],i=n[1]||"",l="function"==typeof a?a(o):a;N(0,r.name),e[`--${t}`]=`${l}${i}`}const t=c.style||{},n=Object.keys(t);n.length>0&&n.forEach(r=>{e[r]=t[r]}),c.style=e}return e.__wyw_meta&&e!==i?(c.as=i,(0,n.createElement)(e,c)):(0,n.createElement)(i,c)},a=n.forwardRef?(0,n.forwardRef)(o):e=>{const t=B(e,["innerRef"]);return o(t,e.innerRef)};return a.displayName=r.name,a.__wyw_meta={className:r.class||t,extends:e},a}};const D=window.jfb.data,H=U(S.TextControl)({name:"StyledTextControl",class:"sb855b9",propsAsIs:!0}),q=function({settings:e,onChangeSettingObj:t}){const{fetchApiData:r}=(0,a.useDispatch)(_),{isFetchLoading:l,fetchError:s}=(0,a.useSelect)(e=>({isFetchLoading:e(_).isFetchLoading(),fetchError:e(_).getFetchError()}),[]),{hasError:c,setShowError:d}=(0,C.useActionValidatorProvider)({isSupported:e=>"api_key"===e?.property}),{value:u,onChange:p}=(0,D.useSiteOptionJSON)("jet_form_builder_settings__get-response-tab"),f=(0,R.useInstanceId)(i.RowControl,"jfb-control");return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.RequiredLabel,{htmlFor:f},(0,o.__)("API Key","jet-form-builder")),(0,n.createElement)(S.Flex,{className:k(i.RowControlEndStyle,(c||Boolean(s))&&i.ControlWithErrorStyle),direction:"column"},c&&(0,n.createElement)(i.IconText,null,(0,o.__)("Please fill this required field","jet-form-builder")),Boolean(s)&&(0,n.createElement)(i.IconText,null,(0,o.__)("Fetching data was failed","jet-form-builder")),(0,n.createElement)(i.StyledFlexControl,null,e.use_global?(0,n.createElement)(H,{id:f,value:u.api_key,onChange:e=>p({api_key:e}),onBlur:()=>d(!0)}):(0,n.createElement)(H,{id:f,value:e.api_key,onChange:e=>t({api_key:e}),onBlur:()=>d(!0)}),(0,n.createElement)(S.Button,{onClick:()=>r(e.use_global?u.api_key:e.api_key),disabled:l,isBusy:l,icon:O,variant:"secondary"},(0,o.__)("Fetch","jet-form-builder"))),(0,n.createElement)(L,null)))};r(679);const z=function({settings:e,onChangeSettingObj:t}){return(0,n.createElement)(i.RowControl,null,({id:r})=>(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.Label,{htmlFor:r},(0,o.__)("Day Of Cycle","jet-form-builder")),(0,n.createElement)(i.StyledTextControl,{id:r,type:"number",onChange:e=>t({day_of_cycle:e}),value:e.day_of_cycle})))},{ToggleControl:W}=JetFBComponents,V=(0,n.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,n.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,n.createElement)("g",null,(0,n.createElement)("path",{d:"M16 1.1L4 5.9c-1.1.4-2 1.8-2 3v8.7c0 1.2.9 1.8 2 1.4l12-4.8c1.1-.4 2-1.8 2-3V2.5c0-1.2-.9-1.8-2-1.4zm.6 2.6l-6 9.3-6.7-4.5c-.1-.1-.4-.4-.2-.7.2-.4.7-.2.7-.2l6.3 2.3s4.8-6.3 5.1-6.7c.1-.2.4-.3.7-.1.3.2.2.5.1.6z"}))),G=[({settings:e})=>!e.use_global&&!e?.api_key&&{type:"empty",property:"api_key"},({settings:e})=>!e?.list_id&&{type:"empty",property:"list_id"},({settings:e})=>{const t=(0,a.select)(_).getFields();if(!Object.keys(t).length)return!1;const r=[];if(!t?.length)return!1;for(const n of t){if(!n.required)continue;const t=e?.fields_map?.[n.value];t||r.push({type:"empty",property:"field_"+n.value})}return r}],X={type:"getresponse",label:(0,o.__)("Getresponse","jet-form-builder"),edit:function(e){const{settings:t,onChangeSettingObj:r,getMapField:l,setMapField:s}=e,{fields:c,hasError:d}=(0,a.useSelect)(e=>({hasError:Boolean(e(_).getFetchError()),fields:e(_).getFields()}),[]);return(0,n.createElement)(S.Flex,{direction:"column"},(0,n.createElement)(W,{className:i.ClearBaseControlStyle,checked:t.use_global,onChange:e=>r({use_global:Boolean(e)})},(0,o.__)("Use","jet-form-builder")+" ",(0,n.createElement)("a",{href:JetFormEditorData.global_settings_url+"#get-response-tab"},(0,o.__)("Global Settings","jet-form-builder"))),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(q,{settings:t,onChangeSettingObj:r}),!d&&Boolean(c.length)&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.WideLine,null),(0,n.createElement)(F,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(z,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(j,{getMapField:l,setMapField:s})))},icon:V,docHref:"https://jetformbuilder.com/features/getresponse/",category:"communication",validators:G};(0,a.register)(x),(0,C.registerAction)(X)})()})(); \ No newline at end of file +(()=>{var e={54:(e,t,r)=>{"use strict";function n(e,t){for(var r=[],n={},o=0;om});var o="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!o)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var a={},i=o&&(document.head||document.getElementsByTagName("head")[0]),l=null,s=0,c=!1,d=function(){},u=null,p="data-vue-ssr-id",f="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function m(e,t,r,o){c=r,u=o||{};var i=n(e,t);return h(i),function(t){for(var r=[],o=0;or.parts.length&&(n.parts.length=r.parts.length)}else{var i=[];for(o=0;o{"use strict";r.r(t),r.d(t,{default:()=>l});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".sb855b9{-webkit-flex:1;-ms-flex:1;flex:1;}.sb855b9 .components-base-control__field input.components-text-control__input{height:40px;}\n",""]);const l=i},186:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r})).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var l=0;l0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=a),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),o&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=o):d[4]="".concat(o)),t.push(d))}},t}},679:(e,t,r)=>{var n=r(74);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,r(54).A)("1c0a89ce",n,!1,{})},721:e=>{"use strict";e.exports=function(e){return e[1]}}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e={};r.r(e),r.d(e,{fetchApiData:()=>y});var t={};r.r(t),r.d(t,{getFetchError:()=>w,getFields:()=>b,getLists:()=>v,isFetchLoading:()=>E});const n=window.React,o=window.wp.i18n,a=window.wp.data,i=window.jfb.components,l="SET_LISTS",s="SET_FIELDS",c="START_FETCH",d="END_FETCH",u="SET_FETCH_ERROR",p=(0,a.combineReducers)({api:function(e={},t){switch(t?.type){case l:return{...e,lists:t.payload};case s:return{...e,fields:t.payload}}return e},fetch:function(e={},t){switch(t?.type){case c:return{...e,loading:!0};case d:return{...e,loading:!1};case u:return{...e,error:t.error}}return e}}),f=p,m=window.wp.apiFetch;var h=r.n(m);const g=window.wp.url,y=e=>async({dispatch:t})=>{if(!e)return;t({type:c}),t({type:u,error:!1});const r=(0,g.addQueryArgs)("jet-form-builder/v1/get-response",{apiKey:e});let n;try{n=await h()({path:r})}catch(e){return void t({type:u,error:e})}finally{t({type:d})}t({type:l,payload:n.lists}),t({type:s,payload:n.fields})};function v(e){var t;return null!==(t=e?.api?.lists)&&void 0!==t?t:[]}function b(e){var t;return null!==(t=e?.api?.fields)&&void 0!==t?t:[]}function E(e){var t;return null!==(t=e.fetch?.loading)&&void 0!==t&&t}function w(e){var t;return null!==(t=e.fetch?.error)&&void 0!==t&&t}const _="jet-forms/get-response",x=(0,a.createReduxStore)(_,{reducer:f,actions:e,selectors:t}),S=window.wp.components;var k=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},r=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,r]=e.split("_");t[r]=e}else r.push(e)}))}));const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...r),n.join(" ")};const C=window.jfb.actions,F=function({settings:e,onChangeSettingObj:t}){const r=(0,a.useSelect)((e=>e(_).getLists()),[]),{hasError:l,setShowError:s}=(0,C.useActionValidatorProvider)({isSupported:e=>"list_id"===e?.property});return(0,n.createElement)(i.RowControl,null,(({id:a})=>(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.RequiredLabel,{htmlFor:a},(0,o.__)("List","jet-form-builder")),(0,n.createElement)(S.Flex,{className:k(i.RowControlEndStyle,l&&i.ControlWithErrorStyle),direction:"column"},l&&(0,n.createElement)(i.IconText,null,(0,o.__)("Please fill this required field","jet-form-builder")),(0,n.createElement)(i.StyledSelectControl,{id:a,value:e.list_id,onChange:e=>t({list_id:e}),onBlur:()=>s(!0),options:[{value:"",label:(0,o.__)("-- Select list --","jet-form-builder")},...r]})))))},j=window.jfb.blocksToActions,T=function({getMapField:e,setMapField:t}){const r=(0,j.useFields)({withInner:!1,placeholder:"--"}),l=(0,a.useSelect)((e=>e(_).getFields()),[]);return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.Label,null,(0,o.__)("Fields map","jet-form-builder")),(0,n.createElement)(S.Flex,{className:k(i.RowControlEndStyle),direction:"column",gap:4},l.map((o=>(0,n.createElement)(C.FieldsMapField,{key:o.value,tag:o.value,label:o.label,isRequired:o.required,formFields:r,value:e({name:o.value}),onChange:e=>t({nameField:o.value,value:e})})))))},R=window.wp.compose,A=window.wp.primitives,O=(0,n.createElement)(A.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(A.Path,{d:"M17.3 10.1c0-2.5-2.1-4.4-4.8-4.4-2.2 0-4.1 1.4-4.6 3.3h-.2C5.7 9 4 10.7 4 12.8c0 2.1 1.7 3.8 3.7 3.8h9c1.8 0 3.2-1.5 3.2-3.3.1-1.6-1.1-2.9-2.6-3.2zm-.5 5.1h-9c-1.2 0-2.2-1.1-2.2-2.3s1-2.4 2.2-2.4h1.3l.3-1.1c.4-1.3 1.7-2.2 3.2-2.2 1.8 0 3.3 1.3 3.3 2.9v1.3l1.3.2c.8.1 1.4.9 1.4 1.8-.1 1-.9 1.8-1.8 1.8z"})),L=function({...e}){return(0,n.createElement)("div",{...e},(0,o.__)("How to obtain your GetResponse API Key?","jet-form-builder")," ",(0,n.createElement)(S.ExternalLink,{href:"https://app.getresponse.com/api"},(0,o.__)("More info here","jet-form-builder")))};function M(e){var t=Object.create(null);return function(r){return void 0===t[r]&&(t[r]=e(r)),t[r]}}var P=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,I=M((function(e){return P.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),B=(e,t)=>{const r={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach((t=>{r[t]=e[t]})),r},N=function(e){let t="";return r=>{const o=(o,a)=>{const{as:i=e,class:l=t}=o;var s;const c=function(e,t){const r=B(t,["as","class"]);if(!e){const e="function"==typeof I?{default:I}:I;Object.keys(r).forEach((t=>{e.default(t)||delete r[t]}))}return r}(void 0===r.propsAsIs?!("string"==typeof i&&-1===i.indexOf("-")&&(s=i[0],s.toUpperCase()!==s)):r.propsAsIs,o);c.ref=a,c.className=r.atomic?k(r.class,c.className||l):k(c.className||l,r.class);const{vars:d}=r;if(d){const e={};for(const t in d){const n=d[t],a=n[0],i=n[1]||"",l="function"==typeof a?a(o):a;r.name,e[`--${t}`]=`${l}${i}`}const t=c.style||{},n=Object.keys(t);n.length>0&&n.forEach((r=>{e[r]=t[r]})),c.style=e}return e.__wyw_meta&&e!==i?(c.as=i,(0,n.createElement)(e,c)):(0,n.createElement)(i,c)},a=n.forwardRef?(0,n.forwardRef)(o):e=>{const t=B(e,["innerRef"]);return o(t,e.innerRef)};return a.displayName=r.name,a.__wyw_meta={className:r.class||t,extends:e},a}};const U=window.jfb.data,D=N(S.TextControl)({name:"StyledTextControl",class:"sb855b9",propsAsIs:!0}),H=function({settings:e,onChangeSettingObj:t}){const{fetchApiData:r}=(0,a.useDispatch)(_),{isFetchLoading:l,fetchError:s}=(0,a.useSelect)((e=>({isFetchLoading:e(_).isFetchLoading(),fetchError:e(_).getFetchError()})),[]),{hasError:c,setShowError:d}=(0,C.useActionValidatorProvider)({isSupported:e=>"api_key"===e?.property}),{value:u,onChange:p}=(0,U.useSiteOptionJSON)("jet_form_builder_settings__get-response-tab"),f=(0,R.useInstanceId)(i.RowControl,"jfb-control");return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.RequiredLabel,{htmlFor:f},(0,o.__)("API Key","jet-form-builder")),(0,n.createElement)(S.Flex,{className:k(i.RowControlEndStyle,(c||Boolean(s))&&i.ControlWithErrorStyle),direction:"column"},c&&(0,n.createElement)(i.IconText,null,(0,o.__)("Please fill this required field","jet-form-builder")),Boolean(s)&&(0,n.createElement)(i.IconText,null,(0,o.__)("Fetching data was failed","jet-form-builder")),(0,n.createElement)(i.StyledFlexControl,null,e.use_global?(0,n.createElement)(D,{id:f,value:u.api_key,onChange:e=>p({api_key:e}),onBlur:()=>d(!0)}):(0,n.createElement)(D,{id:f,value:e.api_key,onChange:e=>t({api_key:e}),onBlur:()=>d(!0)}),(0,n.createElement)(S.Button,{onClick:()=>r(e.use_global?u.api_key:e.api_key),disabled:l,isBusy:l,icon:O,variant:"secondary"},(0,o.__)("Fetch","jet-form-builder"))),(0,n.createElement)(L,null)))};r(679);const q=function({settings:e,onChangeSettingObj:t}){return(0,n.createElement)(i.RowControl,null,(({id:r})=>(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.Label,{htmlFor:r},(0,o.__)("Day Of Cycle","jet-form-builder")),(0,n.createElement)(i.StyledTextControl,{id:r,type:"number",onChange:e=>t({day_of_cycle:e}),value:e.day_of_cycle}))))},{ToggleControl:z}=JetFBComponents,W=(0,n.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,n.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,n.createElement)("g",null,(0,n.createElement)("path",{d:"M16 1.1L4 5.9c-1.1.4-2 1.8-2 3v8.7c0 1.2.9 1.8 2 1.4l12-4.8c1.1-.4 2-1.8 2-3V2.5c0-1.2-.9-1.8-2-1.4zm.6 2.6l-6 9.3-6.7-4.5c-.1-.1-.4-.4-.2-.7.2-.4.7-.2.7-.2l6.3 2.3s4.8-6.3 5.1-6.7c.1-.2.4-.3.7-.1.3.2.2.5.1.6z"}))),V=[({settings:e})=>!e.use_global&&!e?.api_key&&{type:"empty",property:"api_key"},({settings:e})=>!e?.list_id&&{type:"empty",property:"list_id"},({settings:e})=>{const t=(0,a.select)(_).getFields();if(!Object.keys(t).length)return!1;const r=[];if(!t?.length)return!1;for(const n of t){if(!n.required)continue;const t=e?.fields_map?.[n.value];t||r.push({type:"empty",property:"field_"+n.value})}return r}],G={type:"getresponse",label:(0,o.__)("Getresponse","jet-form-builder"),edit:function(e){const{settings:t,onChangeSettingObj:r,getMapField:l,setMapField:s}=e,{fields:c,hasError:d}=(0,a.useSelect)((e=>({hasError:Boolean(e(_).getFetchError()),fields:e(_).getFields()})),[]);return(0,n.createElement)(S.Flex,{direction:"column"},(0,n.createElement)(z,{className:i.ClearBaseControlStyle,checked:t.use_global,onChange:e=>r({use_global:Boolean(e)})},(0,o.__)("Use","jet-form-builder")+" ",(0,n.createElement)("a",{href:JetFormEditorData.global_settings_url+"#get-response-tab"},(0,o.__)("Global Settings","jet-form-builder"))),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(H,{settings:t,onChangeSettingObj:r}),!d&&Boolean(c.length)&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.WideLine,null),(0,n.createElement)(F,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(q,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(T,{getMapField:l,setMapField:s})))},icon:W,docHref:"https://jetformbuilder.com/features/getresponse/",category:"communication",validators:V};(0,a.register)(x),(0,C.registerAction)(G)})()})(); \ No newline at end of file diff --git a/modules/actions-v2/insert-post/assets/build/editor.asset.php b/modules/actions-v2/insert-post/assets/build/editor.asset.php index 76f98c928..489b2e03c 100644 --- a/modules/actions-v2/insert-post/assets/build/editor.asset.php +++ b/modules/actions-v2/insert-post/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '9e4d4fc8c9587c7d3ecf'); + array('react', 'wp-components', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '309d8c2de10d3f183f06'); diff --git a/modules/actions-v2/insert-post/assets/build/editor.js b/modules/actions-v2/insert-post/assets/build/editor.js index 2c4d2bfd9..7e812bf6e 100644 --- a/modules/actions-v2/insert-post/assets/build/editor.js +++ b/modules/actions-v2/insert-post/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";const e=window.React,t=window.wp.element,n=window.jfb.actions,o=window.jfb.components,{ActionFieldsMapContext:r,CurrentPropertyMapContext:l}=JetFBComponents,s=function(){var s;const{FieldSelect:a,property:i}=(0,t.useContext)(l),{source:p,setMapField:c,getMapField:u}=(0,t.useContext)(n.CurrentActionEditContext),{name:d,index:m}=(0,t.useContext)(r),h=null!==(s=u({name:d}))&&void 0!==s?s:"",f=e=>c({nameField:d,value:e});switch(i){case"meta_input":return(0,e.createElement)("div",{className:"components-base-control jet-margin-bottom-wrapper"},a,(0,e.createElement)(o.StyledTextControl,{key:d+m+"_text",value:h,onChange:f}),(0,e.createElement)(n.SingleValueAsArrayToggle,{fieldName:d,getMapField:u,setMapField:c,showHelp:!0}));case"post_terms":return(0,e.createElement)("div",{className:"components-base-control jet-margin-bottom-wrapper"},a,(0,e.createElement)(o.StyledSelectControl,{key:d+m+"_select",value:h,onChange:f,options:p.taxonomies}));default:return a}},a=window.wp.components,i=window.wp.hooks;var p=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)})});const o=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&o.push(t[e]);return o.push(...n),o.join(" ")};const c=window.wp.i18n,u=window.jfb.blocksToActions;class d extends wp.element.Component{constructor(e){super(e),this.addNewOption=this.addNewOption.bind(this)}getDefaultMeta(){return this.props.defaultMeta?Array.from(this.props.defaultMeta):[]}addNewOption(){const e=this.getDefaultMeta();e.push({key:"",value:""}),this.props.onChange(e)}removeOption(e){const t=this.getDefaultMeta();t.splice(e,1),this.props.onChange(t)}onChangeValue({value:e,name:t,id:n}){const o=Array.from(this.props.defaultMeta);o[n][t]=e,this.props.onChange(o)}render(){return(0,e.createElement)(e.Fragment,null,this.getDefaultMeta().map((t,n)=>(0,e.createElement)("div",{className:"jet-user-meta__row",key:"jet-form-builder-repeater-item-"+n},(0,e.createElement)("div",{className:"repeater-item-column jet-margin-bottom-wrapper"},(0,e.createElement)(o.StyledTextControl,{key:"meta_key",label:(0,c.__)("Meta Key","jet-form-builder"),value:t.key,onChange:e=>{this.onChangeValue({value:e,name:"key",id:n})}}),(0,e.createElement)(o.StyledTextControl,{key:"meta_value",label:(0,c.__)("Meta Value","jet-form-builder"),value:t.value,onChange:e=>{this.onChangeValue({value:e,name:"value",id:n})}})),(0,e.createElement)("div",{className:"repeater-item-column"},(0,e.createElement)(a.Button,{icon:"dismiss",label:"Remove",onClick:()=>this.removeOption(n)})))),(0,e.createElement)(a.FlexItem,null,(0,e.createElement)(a.Button,{className:"button-add-option",isSecondary:!0,onClick:this.addNewOption},(0,c.__)("Add New Option","jet-form-builder"))))}}const m=d,{convertListToFieldsMap:h}=JetFBActions,{ActionFieldsMap:f,WrapperRequiredControl:_,DynamicPropertySelect:y}=JetFBComponents,E=(0,i.applyFilters)("jet.fb.insert.post.modifiers",[{id:"all",isSupported:()=>!0}]),g=e=>{for(const t of E)if(t.isSupported(e))return t.id},{BaseComputedField:C}=JetFBComponents,{__:w}=wp.i18n;function v(){C.call(this),this.getSupportedActions=function(){return["insert_post"]},this.getName=function(){return"inserted_post_id"},this.getHelp=function(){return w("A computed field from the Insert/Update Post action.","jet-form-builder")}}v.prototype=Object.create(C.prototype);const b=v,F=e=>{const{insert_post:t={}}=e?.settings;return t.post_type};function S(){n.BaseComputedField.call(this),this.getSupportedActions=function(){return["insert_post"]},this.isSupported=function(e){return n.BaseComputedField.prototype.isSupported.call(this,e)&&F(e)},this.getName=function(){const e=this.hasInList?`_${this.action.id}`:"";return`inserted_${F(this.action)}`+e},this.getHelp=function(){return(0,c.sprintf)((0,c.__)("A computed field from the Insert/Update Post (%s) action.","jet-form-builder"),this.action.id)}}S.prototype=Object.create(n.BaseComputedField.prototype);const j=S,{addComputedField:x}=JetFBActions;x(b),x(j);const M={type:"insert_post",label:(0,c.__)("Insert/Update Post","jet-form-builder"),edit:function(r){const{settings:l,onChangeSettingObj:i,source:d,help:E,label:C}=r,w=h((0,u.useFields)()),[v,b]=(0,t.useState)(()=>{var e;const t=g(l);return null!==(e=d.properties[t])&&void 0!==e?e:[]});return(0,t.useEffect)(()=>{l.requestFields?.length&&i({requestFields:null})},[]),(0,t.useEffect)(()=>{var e;const t=g(l);b(null!==(e=d.properties[t])&&void 0!==e?e:[])},[l.post_type]),(0,u.useSanitizeFieldsMap)(),(0,e.createElement)(a.Flex,{direction:"column"},(0,e.createElement)(o.RowControl,null,({id:t})=>(0,e.createElement)(n.ValidatorProvider,{isSupported:e=>"post_type"===e?.property},({hasError:n,setShowError:r})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(o.RequiredLabel,{htmlFor:t},(0,c.__)("Post type","jet-form-builder")),(0,e.createElement)(o.StyledFlexControl,{className:p(o.RowControlEndStyle,n&&o.ControlWithErrorStyle),direction:"column"},n&&(0,e.createElement)(o.IconText,null,(0,c.__)("Please fill this required field","jet-form-builder")),(0,e.createElement)(o.StyledSelectControl,{id:t,value:l.post_type,options:d.postTypes,help:E("post_type"),onChange:e=>i({post_type:e}),onBlur:()=>r(!0)}))))),(0,e.createElement)(o.WideLine,null),(0,e.createElement)(o.RowControl,null,({id:t})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(o.Label,{htmlFor:t},C("post_status")),(0,e.createElement)(o.StyledSelectControl,{id:t,value:l.post_status,options:d.postStatuses,help:E("post_status"),onChange:e=>i({post_status:e})}))),(0,e.createElement)(o.WideLine,null),(0,e.createElement)(f,{label:C("fields_map"),fields:w},(0,e.createElement)(_,null,(0,e.createElement)(y,{dynamic:["meta_input","post_terms"],properties:v,parseValue:e=>e.includes("jet_tax__")?"post_terms":"meta_input"},(0,e.createElement)(s,null)))),(0,e.createElement)(o.WideLine,null),(0,e.createElement)(o.RowControl,null,(0,e.createElement)(o.Label,null,C("default_meta")),(0,e.createElement)(o.RowControlEnd,null,(0,e.createElement)(m,{defaultMeta:l.default_meta,onChange:e=>i({default_meta:e})}))))},icon:(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,e.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,e.createElement)("g",null,(0,e.createElement)("path",{d:"M17 7V4h-2V2h-3v1H3v15h11V9h1V7h2zm-1-2v1h-2v2h-1V6h-2V5h2V3h1v2h2z"}))),docHref:"https://jetformbuilder.com/features/insert-update-post/",category:"content",validators:[({settings:e})=>!e?.post_type&&{type:"empty",property:"post_type"}]};(0,n.registerAction)(M)})(); \ No newline at end of file +(()=>{"use strict";const e=window.React,t=window.wp.element,n=window.jfb.actions,o=window.jfb.components,{ActionFieldsMapContext:r,CurrentPropertyMapContext:l}=JetFBComponents,s=function(){var s;const{FieldSelect:a,property:i}=(0,t.useContext)(l),{source:p,setMapField:c,getMapField:u}=(0,t.useContext)(n.CurrentActionEditContext),{name:d,index:m}=(0,t.useContext)(r),h=null!==(s=u({name:d}))&&void 0!==s?s:"",f=e=>c({nameField:d,value:e});switch(i){case"meta_input":return(0,e.createElement)("div",{className:"components-base-control jet-margin-bottom-wrapper"},a,(0,e.createElement)(o.StyledTextControl,{key:d+m+"_text",value:h,onChange:f}),(0,e.createElement)(n.SingleValueAsArrayToggle,{fieldName:d,getMapField:u,setMapField:c,showHelp:!0}));case"post_terms":return(0,e.createElement)("div",{className:"components-base-control jet-margin-bottom-wrapper"},a,(0,e.createElement)(o.StyledSelectControl,{key:d+m+"_select",value:h,onChange:f,options:p.taxonomies}));default:return a}},a=window.wp.components,i=window.wp.hooks;var p=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)}))}));const o=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&o.push(t[e]);return o.push(...n),o.join(" ")};const c=window.wp.i18n,u=window.jfb.blocksToActions;class d extends wp.element.Component{constructor(e){super(e),this.addNewOption=this.addNewOption.bind(this)}getDefaultMeta(){return this.props.defaultMeta?Array.from(this.props.defaultMeta):[]}addNewOption(){const e=this.getDefaultMeta();e.push({key:"",value:""}),this.props.onChange(e)}removeOption(e){const t=this.getDefaultMeta();t.splice(e,1),this.props.onChange(t)}onChangeValue({value:e,name:t,id:n}){const o=Array.from(this.props.defaultMeta);o[n][t]=e,this.props.onChange(o)}render(){return(0,e.createElement)(e.Fragment,null,this.getDefaultMeta().map(((t,n)=>(0,e.createElement)("div",{className:"jet-user-meta__row",key:"jet-form-builder-repeater-item-"+n},(0,e.createElement)("div",{className:"repeater-item-column jet-margin-bottom-wrapper"},(0,e.createElement)(o.StyledTextControl,{key:"meta_key",label:(0,c.__)("Meta Key","jet-form-builder"),value:t.key,onChange:e=>{this.onChangeValue({value:e,name:"key",id:n})}}),(0,e.createElement)(o.StyledTextControl,{key:"meta_value",label:(0,c.__)("Meta Value","jet-form-builder"),value:t.value,onChange:e=>{this.onChangeValue({value:e,name:"value",id:n})}})),(0,e.createElement)("div",{className:"repeater-item-column"},(0,e.createElement)(a.Button,{icon:"dismiss",label:"Remove",onClick:()=>this.removeOption(n)}))))),(0,e.createElement)(a.FlexItem,null,(0,e.createElement)(a.Button,{className:"button-add-option",isSecondary:!0,onClick:this.addNewOption},(0,c.__)("Add New Option","jet-form-builder"))))}}const m=d,{convertListToFieldsMap:h}=JetFBActions,{ActionFieldsMap:f,WrapperRequiredControl:_,DynamicPropertySelect:y}=JetFBComponents,E=(0,i.applyFilters)("jet.fb.insert.post.modifiers",[{id:"all",isSupported:()=>!0}]),g=e=>{for(const t of E)if(t.isSupported(e))return t.id},{BaseComputedField:C}=JetFBComponents,{__:w}=wp.i18n;function v(){C.call(this),this.getSupportedActions=function(){return["insert_post"]},this.getName=function(){return"inserted_post_id"},this.getHelp=function(){return w("A computed field from the Insert/Update Post action.","jet-form-builder")}}v.prototype=Object.create(C.prototype);const b=v,F=e=>{const{insert_post:t={}}=e?.settings;return t.post_type};function S(){n.BaseComputedField.call(this),this.getSupportedActions=function(){return["insert_post"]},this.isSupported=function(e){return n.BaseComputedField.prototype.isSupported.call(this,e)&&F(e)},this.getName=function(){const e=this.hasInList?`_${this.action.id}`:"";return`inserted_${F(this.action)}`+e},this.getHelp=function(){return(0,c.sprintf)((0,c.__)("A computed field from the Insert/Update Post (%s) action.","jet-form-builder"),this.action.id)}}S.prototype=Object.create(n.BaseComputedField.prototype);const j=S,{addComputedField:x}=JetFBActions;x(b),x(j);const M={type:"insert_post",label:(0,c.__)("Insert/Update Post","jet-form-builder"),edit:function(r){const{settings:l,onChangeSettingObj:i,source:d,help:E,label:C}=r,w=h((0,u.useFields)()),[v,b]=(0,t.useState)((()=>{var e;const t=g(l);return null!==(e=d.properties[t])&&void 0!==e?e:[]}));return(0,t.useEffect)((()=>{l.requestFields?.length&&i({requestFields:null})}),[]),(0,t.useEffect)((()=>{var e;const t=g(l);b(null!==(e=d.properties[t])&&void 0!==e?e:[])}),[l.post_type]),(0,u.useSanitizeFieldsMap)(),(0,e.createElement)(a.Flex,{direction:"column"},(0,e.createElement)(o.RowControl,null,(({id:t})=>(0,e.createElement)(n.ValidatorProvider,{isSupported:e=>"post_type"===e?.property},(({hasError:n,setShowError:r})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(o.RequiredLabel,{htmlFor:t},(0,c.__)("Post type","jet-form-builder")),(0,e.createElement)(o.StyledFlexControl,{className:p(o.RowControlEndStyle,n&&o.ControlWithErrorStyle),direction:"column"},n&&(0,e.createElement)(o.IconText,null,(0,c.__)("Please fill this required field","jet-form-builder")),(0,e.createElement)(o.StyledSelectControl,{id:t,value:l.post_type,options:d.postTypes,help:E("post_type"),onChange:e=>i({post_type:e}),onBlur:()=>r(!0)}))))))),(0,e.createElement)(o.WideLine,null),(0,e.createElement)(o.RowControl,null,(({id:t})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(o.Label,{htmlFor:t},C("post_status")),(0,e.createElement)(o.StyledSelectControl,{id:t,value:l.post_status,options:d.postStatuses,help:E("post_status"),onChange:e=>i({post_status:e})})))),(0,e.createElement)(o.WideLine,null),(0,e.createElement)(f,{label:C("fields_map"),fields:w},(0,e.createElement)(_,null,(0,e.createElement)(y,{dynamic:["meta_input","post_terms"],properties:v,parseValue:e=>e.includes("jet_tax__")?"post_terms":"meta_input"},(0,e.createElement)(s,null)))),(0,e.createElement)(o.WideLine,null),(0,e.createElement)(o.RowControl,null,(0,e.createElement)(o.Label,null,C("default_meta")),(0,e.createElement)(o.RowControlEnd,null,(0,e.createElement)(m,{defaultMeta:l.default_meta,onChange:e=>i({default_meta:e})}))))},icon:(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,e.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,e.createElement)("g",null,(0,e.createElement)("path",{d:"M17 7V4h-2V2h-3v1H3v15h11V9h1V7h2zm-1-2v1h-2v2h-1V6h-2V5h2V3h1v2h2z"}))),docHref:"https://jetformbuilder.com/features/insert-update-post/",category:"content",validators:[({settings:e})=>!e?.post_type&&{type:"empty",property:"post_type"}]};(0,n.registerAction)(M)})(); \ No newline at end of file diff --git a/modules/actions-v2/insert-term/assets/build/editor.asset.php b/modules/actions-v2/insert-term/assets/build/editor.asset.php index e929d7d74..e0d98b296 100644 --- a/modules/actions-v2/insert-term/assets/build/editor.asset.php +++ b/modules/actions-v2/insert-term/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '8f7bb10d8f4445582e0b'); + array('react', 'wp-components', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '8637cb03342ef93a28bc'); diff --git a/modules/actions-v2/insert-term/assets/build/editor.js b/modules/actions-v2/insert-term/assets/build/editor.js index 159ac3c9f..83c7ddcf9 100644 --- a/modules/actions-v2/insert-term/assets/build/editor.js +++ b/modules/actions-v2/insert-term/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";const e=window.React,t=window.wp.element,o=window.jfb.actions,n=window.jfb.components,{ActionFieldsMapContext:l,CurrentPropertyMapContext:r}=JetFBComponents,i=function(){const{FieldSelect:i,property:a}=(0,t.useContext)(r),{source:s,setMapField:c,getMapField:d}=(0,t.useContext)(o.CurrentActionEditContext),{name:p,index:m}=(0,t.useContext)(l);return"term_meta"===a?(0,e.createElement)("div",{className:"components-base-control jet-margin-bottom-wrapper"},i,(0,e.createElement)(n.StyledTextControl,{key:p+m+"_text",value:d({name:p}),onChange:e=>c({nameField:p,value:e})})):i},a=window.wp.components,s=window.wp.hooks;var c=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},o=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,o]=e.split("_");t[o]=e}else o.push(e)})});const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...o),n.join(" ")};const d=window.wp.i18n,p=window.jfb.blocksToActions,{convertListToFieldsMap:m}=JetFBActions,{ActionFieldsMap:u,WrapperRequiredControl:C,DynamicPropertySelect:f}=JetFBComponents,w=(0,s.applyFilters)("jet.fb.insert.term.modifiers",[{id:"all",isSupported:()=>!0}]),E=e=>{for(const t of w)if(t.isSupported(e))return t.id},h={type:"insert_term",label:(0,d.__)("Insert/Update Term","jet-form-builder"),edit:function(l){const{settings:r,onChangeSettingObj:s,source:w,help:h,label:y}=l,v=m((0,p.useFields)()),[x,F]=(0,t.useState)(()=>{var e;const t=E(r);return null!==(e=w.properties[t])&&void 0!==e?e:[]});return(0,t.useEffect)(()=>{r.requestFields?.length&&s({requestFields:null})},[]),(0,t.useEffect)(()=>{var e;const t=E(r);F(null!==(e=w.properties[t])&&void 0!==e?e:[])},[r.taxonomy]),(0,p.useSanitizeFieldsMap)(),(0,e.createElement)(a.Flex,{direction:"column"},(0,e.createElement)(n.RowControl,null,({id:t})=>(0,e.createElement)(o.ValidatorProvider,{isSupported:e=>"taxonomy"===e?.property},({hasError:o,setShowError:l})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(n.RequiredLabel,{htmlFor:t},(0,d.__)("Taxonomy","jet-form-builder")),(0,e.createElement)(a.Flex,{className:c(n.RowControlEndStyle,o&&n.ControlWithErrorStyle),direction:"column"},o&&(0,e.createElement)(n.IconText,null,(0,d.__)("Please fill this required field","jet-form-builder")),(0,e.createElement)(n.StyledSelectControl,{id:t,value:r.taxonomy,options:w.taxonomies,help:h("taxonomy"),onChange:e=>s({taxonomy:e}),onBlur:()=>l(!0)}))))),(0,e.createElement)(n.WideLine,null),(0,e.createElement)(u,{label:y("fields_map"),fields:v},(0,e.createElement)(C,null,(0,e.createElement)(f,{dynamic:["term_meta"],properties:x,parseValue:e=>"term_meta"},(0,e.createElement)(i,null)))))},icon:(0,e.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,e.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M26 4C28.2091 4 30 5.79086 30 8V26C30 28.2091 28.2091 30 26 30H8C5.79086 30 4 28.2091 4 26V8C4 5.79086 5.79086 4 8 4H26ZM8 6C6.89543 6 6 6.89543 6 8V26C6 27.1046 6.89543 28 8 28H26C27.1046 28 28 27.1046 28 26V8C28 6.89543 27.1046 6 26 6H8Z",fill:"currentColor"}),(0,e.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M56 4C58.2091 4 60 5.79086 60 8V26C60 28.2091 58.2091 30 56 30H38C35.7909 30 34 28.2091 34 26V8C34 5.79086 35.7909 4 38 4H56ZM38 6C36.8954 6 36 6.89543 36 8V26C36 27.1046 36.8954 28 38 28H56C57.1046 28 58 27.1046 58 26V8C58 6.89543 57.1046 6 56 6H38Z",fill:"currentColor"}),(0,e.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M26 34C28.2091 34 30 35.7909 30 38V56C30 58.2091 28.2091 60 26 60H8C5.79086 60 4 58.2091 4 56V38C4 35.7909 5.79086 34 8 34H26ZM8 36C6.89543 36 6 36.8954 6 38V56C6 57.1046 6.89543 58 8 58H26C27.1046 58 28 57.1046 28 56V38C28 36.8954 27.1046 36 26 36H8Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M47 40C47.5523 40 48 40.4477 48 41V46H53C53.5523 46 54 46.4477 54 47C54 47.5523 53.5523 48 53 48H48V53C48 53.5523 47.5523 54 47 54C46.4477 54 46 53.5523 46 53V48H41C40.4477 48 40 47.5523 40 47C40 46.4477 40.4477 46 41 46H46V41C46 40.4477 46.4477 40 47 40Z",fill:"currentColor"}),(0,e.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M47 34C54.1797 34 60 39.8203 60 47C60 54.1797 54.1797 60 47 60C39.8203 60 34 54.1797 34 47C34 39.8203 39.8203 34 47 34ZM47 36C40.9249 36 36 40.9249 36 47C36 53.0751 40.9249 58 47 58C53.0751 58 58 53.0751 58 47C58 40.9249 53.0751 36 47 36Z",fill:"currentColor"})),category:"content",validators:[({settings:e})=>!e?.taxonomy&&{type:"empty",property:"taxonomy"}]};(0,o.registerAction)(h)})(); \ No newline at end of file +(()=>{"use strict";const e=window.React,t=window.wp.element,o=window.jfb.actions,n=window.jfb.components,{ActionFieldsMapContext:l,CurrentPropertyMapContext:r}=JetFBComponents,i=function(){const{FieldSelect:i,property:a}=(0,t.useContext)(r),{source:s,setMapField:c,getMapField:d}=(0,t.useContext)(o.CurrentActionEditContext),{name:p,index:m}=(0,t.useContext)(l);return"term_meta"===a?(0,e.createElement)("div",{className:"components-base-control jet-margin-bottom-wrapper"},i,(0,e.createElement)(n.StyledTextControl,{key:p+m+"_text",value:d({name:p}),onChange:e=>c({nameField:p,value:e})})):i},a=window.wp.components,s=window.wp.hooks;var c=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},o=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,o]=e.split("_");t[o]=e}else o.push(e)}))}));const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...o),n.join(" ")};const d=window.wp.i18n,p=window.jfb.blocksToActions,{convertListToFieldsMap:m}=JetFBActions,{ActionFieldsMap:u,WrapperRequiredControl:C,DynamicPropertySelect:f}=JetFBComponents,w=(0,s.applyFilters)("jet.fb.insert.term.modifiers",[{id:"all",isSupported:()=>!0}]),E=e=>{for(const t of w)if(t.isSupported(e))return t.id},h={type:"insert_term",label:(0,d.__)("Insert/Update Term","jet-form-builder"),edit:function(l){const{settings:r,onChangeSettingObj:s,source:w,help:h,label:y}=l,v=m((0,p.useFields)()),[x,F]=(0,t.useState)((()=>{var e;const t=E(r);return null!==(e=w.properties[t])&&void 0!==e?e:[]}));return(0,t.useEffect)((()=>{r.requestFields?.length&&s({requestFields:null})}),[]),(0,t.useEffect)((()=>{var e;const t=E(r);F(null!==(e=w.properties[t])&&void 0!==e?e:[])}),[r.taxonomy]),(0,p.useSanitizeFieldsMap)(),(0,e.createElement)(a.Flex,{direction:"column"},(0,e.createElement)(n.RowControl,null,(({id:t})=>(0,e.createElement)(o.ValidatorProvider,{isSupported:e=>"taxonomy"===e?.property},(({hasError:o,setShowError:l})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(n.RequiredLabel,{htmlFor:t},(0,d.__)("Taxonomy","jet-form-builder")),(0,e.createElement)(a.Flex,{className:c(n.RowControlEndStyle,o&&n.ControlWithErrorStyle),direction:"column"},o&&(0,e.createElement)(n.IconText,null,(0,d.__)("Please fill this required field","jet-form-builder")),(0,e.createElement)(n.StyledSelectControl,{id:t,value:r.taxonomy,options:w.taxonomies,help:h("taxonomy"),onChange:e=>s({taxonomy:e}),onBlur:()=>l(!0)}))))))),(0,e.createElement)(n.WideLine,null),(0,e.createElement)(u,{label:y("fields_map"),fields:v},(0,e.createElement)(C,null,(0,e.createElement)(f,{dynamic:["term_meta"],properties:x,parseValue:e=>"term_meta"},(0,e.createElement)(i,null)))))},icon:(0,e.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,e.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M26 4C28.2091 4 30 5.79086 30 8V26C30 28.2091 28.2091 30 26 30H8C5.79086 30 4 28.2091 4 26V8C4 5.79086 5.79086 4 8 4H26ZM8 6C6.89543 6 6 6.89543 6 8V26C6 27.1046 6.89543 28 8 28H26C27.1046 28 28 27.1046 28 26V8C28 6.89543 27.1046 6 26 6H8Z",fill:"currentColor"}),(0,e.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M56 4C58.2091 4 60 5.79086 60 8V26C60 28.2091 58.2091 30 56 30H38C35.7909 30 34 28.2091 34 26V8C34 5.79086 35.7909 4 38 4H56ZM38 6C36.8954 6 36 6.89543 36 8V26C36 27.1046 36.8954 28 38 28H56C57.1046 28 58 27.1046 58 26V8C58 6.89543 57.1046 6 56 6H38Z",fill:"currentColor"}),(0,e.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M26 34C28.2091 34 30 35.7909 30 38V56C30 58.2091 28.2091 60 26 60H8C5.79086 60 4 58.2091 4 56V38C4 35.7909 5.79086 34 8 34H26ZM8 36C6.89543 36 6 36.8954 6 38V56C6 57.1046 6.89543 58 8 58H26C27.1046 58 28 57.1046 28 56V38C28 36.8954 27.1046 36 26 36H8Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M47 40C47.5523 40 48 40.4477 48 41V46H53C53.5523 46 54 46.4477 54 47C54 47.5523 53.5523 48 53 48H48V53C48 53.5523 47.5523 54 47 54C46.4477 54 46 53.5523 46 53V48H41C40.4477 48 40 47.5523 40 47C40 46.4477 40.4477 46 41 46H46V41C46 40.4477 46.4477 40 47 40Z",fill:"currentColor"}),(0,e.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M47 34C54.1797 34 60 39.8203 60 47C60 54.1797 54.1797 60 47 60C39.8203 60 34 54.1797 34 47C34 39.8203 39.8203 34 47 34ZM47 36C40.9249 36 36 40.9249 36 47C36 53.0751 40.9249 58 47 58C53.0751 58 58 53.0751 58 47C58 40.9249 53.0751 36 47 36Z",fill:"currentColor"})),category:"content",validators:[({settings:e})=>!e?.taxonomy&&{type:"empty",property:"taxonomy"}]};(0,o.registerAction)(h)})(); \ No newline at end of file diff --git a/modules/actions-v2/mailchimp/assets/build/editor.asset.php b/modules/actions-v2/mailchimp/assets/build/editor.asset.php index b1c8dbc66..2008b7c7a 100644 --- a/modules/actions-v2/mailchimp/assets/build/editor.asset.php +++ b/modules/actions-v2/mailchimp/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => '9e09afabe79ec10d791d'); + array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => 'f13b1fdb6a5a02dfa9af'); diff --git a/modules/actions-v2/mailchimp/assets/build/editor.js b/modules/actions-v2/mailchimp/assets/build/editor.js index 9f24fdef3..95fe520c7 100644 --- a/modules/actions-v2/mailchimp/assets/build/editor.js +++ b/modules/actions-v2/mailchimp/assets/build/editor.js @@ -1 +1 @@ -(()=>{var e={826(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>l});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".sotfoyb{-webkit-flex:1;-ms-flex:1;flex:1;}\n",""]);const l=i},186(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r}).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var l=0;l0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=a),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),o&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=o):d[4]="".concat(o)),t.push(d))}},t}},721(e){"use strict";e.exports=function(e){return e[1]}},421(e,t,r){var n=r(826);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,r(54).A)("002169f0",n,!1,{})},54(e,t,r){"use strict";function n(e,t){for(var r=[],n={},o=0;of});var o="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!o)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var a={},i=o&&(document.head||document.getElementsByTagName("head")[0]),l=null,s=0,c=!1,d=function(){},u=null,p="data-vue-ssr-id",m="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(e,t,r,o){c=r,u=o||{};var i=n(e,t);return g(i),function(t){for(var r=[],o=0;or.parts.length&&(n.parts.length=r.parts.length)}else{var i=[];for(o=0;o{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e={};r.r(e),r.d(e,{fetchApiData:()=>E});var t={};r.r(t),r.d(t,{getFetchError:()=>k,getFields:()=>S,getGroups:()=>C,getLists:()=>w,isFetchLoading:()=>x});const n=window.React,o=window.wp.components,a=window.wp.i18n,i=window.jfb.components,l=window.wp.compose;var s=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},r=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,r]=e.split("_");t[r]=e}else r.push(e)})});const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...r),n.join(" ")};const c=window.wp.data,d="SET_LISTS",u="SET_GROUPS",p="SET_FIELDS",m="START_FETCH",f="END_FETCH",g="SET_FETCH_ERROR",h=(0,c.combineReducers)({api:function(e={},t){switch(t?.type){case d:return{...e,lists:t.payload};case u:return{...e,groups:t.payload};case p:return{...e,fields:t.payload}}return e},fetch:function(e={},t){switch(t?.type){case m:return{...e,loading:!0};case f:return{...e,loading:!1};case g:return{...e,error:t.error}}return e}}),y=h,v=window.wp.apiFetch;var b=r.n(v);const _=window.wp.url,E=e=>async({dispatch:t})=>{if(!e)return;t({type:m}),t({type:g,error:!1});const r=(0,_.addQueryArgs)("jet-form-builder/v1/mailchimp",{apiKey:e});let n;try{n=await b()({path:r})}catch(e){return void t({type:g,error:e})}finally{t({type:f})}t({type:d,payload:n.lists}),t({type:u,payload:n.groups}),t({type:p,payload:n.fields})};function w(e){var t;return null!==(t=e?.api?.lists)&&void 0!==t?t:[]}function C(e){var t;return null!==(t=e?.api?.groups)&&void 0!==t?t:{}}function S(e){var t;return null!==(t=e?.api?.fields)&&void 0!==t?t:{}}function x(e){var t;return null!==(t=e.fetch?.loading)&&void 0!==t&&t}function k(e){var t;return null!==(t=e.fetch?.error)&&void 0!==t&&t}const j="jet-forms/mailchimp",T=(0,c.createReduxStore)(j,{reducer:y,actions:e,selectors:t}),F=window.wp.primitives,A=(0,n.createElement)(F.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(F.Path,{d:"M17.3 10.1c0-2.5-2.1-4.4-4.8-4.4-2.2 0-4.1 1.4-4.6 3.3h-.2C5.7 9 4 10.7 4 12.8c0 2.1 1.7 3.8 3.7 3.8h9c1.8 0 3.2-1.5 3.2-3.3.1-1.6-1.1-2.9-2.6-3.2zm-.5 5.1h-9c-1.2 0-2.2-1.1-2.2-2.3s1-2.4 2.2-2.4h1.3l.3-1.1c.4-1.3 1.7-2.2 3.2-2.2 1.8 0 3.3 1.3 3.3 2.9v1.3l1.3.2c.8.1 1.4.9 1.4 1.8-.1 1-.9 1.8-1.8 1.8z"})),R=function({...e}){return(0,n.createElement)("div",{...e},(0,a.__)("How to obtain your MailChimp API Key?","jet-form-builder")," ",(0,n.createElement)(o.ExternalLink,{href:"https://mailchimp.com/help/about-api-keys/"},(0,a.__)("More info here","jet-form-builder")))};function O(e){var t=Object.create(null);return function(r){return void 0===t[r]&&(t[r]=e(r)),t[r]}}var L=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,I=O(function(e){return L.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),M=(e,t)=>{const r={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{r[t]=e[t]}),r},P=(e,t)=>{},B=function(e){let t="";return r=>{const o=(o,a)=>{const{as:i=e,class:l=t}=o;var c;const d=function(e,t){const r=M(t,["as","class"]);if(!e){const e="function"==typeof I?{default:I}:I;Object.keys(r).forEach(t=>{e.default(t)||delete r[t]})}return r}(void 0===r.propsAsIs?!("string"==typeof i&&-1===i.indexOf("-")&&(c=i[0],c.toUpperCase()!==c)):r.propsAsIs,o);d.ref=a,d.className=r.atomic?s(r.class,d.className||l):s(d.className||l,r.class);const{vars:u}=r;if(u){const e={};for(const t in u){const n=u[t],a=n[0],i=n[1]||"",l="function"==typeof a?a(o):a;P(0,r.name),e[`--${t}`]=`${l}${i}`}const t=d.style||{},n=Object.keys(t);n.length>0&&n.forEach(r=>{e[r]=t[r]}),d.style=e}return e.__wyw_meta&&e!==i?(d.as=i,(0,n.createElement)(e,d)):(0,n.createElement)(i,d)},a=n.forwardRef?(0,n.forwardRef)(o):e=>{const t=M(e,["innerRef"]);return o(t,e.innerRef)};return a.displayName=r.name,a.__wyw_meta={className:r.class||t,extends:e},a}};const N=window.jfb.data,U=window.jfb.actions,D=B(o.TextControl)({name:"StyledTextControl",class:"sotfoyb",propsAsIs:!0}),H=function({settings:e,onChangeSettingObj:t}){const{fetchApiData:r}=(0,c.useDispatch)(j),{isFetchLoading:d,fetchError:u}=(0,c.useSelect)(e=>({isFetchLoading:e(j).isFetchLoading(),fetchError:e(j).getFetchError()}),[]),{hasError:p,setShowError:m}=(0,U.useActionValidatorProvider)({isSupported:e=>"api_key"===e?.property}),{value:f,onChange:g}=(0,N.useSiteOptionJSON)("jet_form_builder_settings__mailchimp-tab"),h=(0,l.useInstanceId)(i.RowControl,"jfb-control");return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.RequiredLabel,{htmlFor:h},(0,a.__)("API Key","jet-form-builder")),(0,n.createElement)(o.Flex,{className:s(i.RowControlEndStyle,(p||Boolean(u))&&i.ControlWithErrorStyle),direction:"column"},p&&(0,n.createElement)(i.IconText,null,(0,a.__)("Please fill this required field","jet-form-builder")),Boolean(u)&&(0,n.createElement)(i.IconText,null,(0,a.__)("Fetching data was failed","jet-form-builder")),(0,n.createElement)(o.Flex,null,e.use_global?(0,n.createElement)(D,{id:h,value:f.api_key,onChange:e=>g({api_key:e}),onBlur:()=>m(!0)}):(0,n.createElement)(D,{id:h,value:e.api_key,onChange:e=>t({api_key:e}),onBlur:()=>m(!0)}),(0,n.createElement)(o.Button,{onClick:()=>r(e.use_global?f.api_key:e.api_key),disabled:d,isBusy:d,icon:A,variant:"secondary"},(0,a.__)("Fetch","jet-form-builder"))),(0,n.createElement)(R,null)))};r(421);const W=function({settings:e,onChangeSettingObj:t}){const r=(0,c.useSelect)(e=>e(j).getLists(),[]),{hasError:d,setShowError:u}=(0,U.useActionValidatorProvider)({isSupported:e=>"list_id"===e?.property}),p=(0,l.useInstanceId)(i.RowControl,"jfb-control");return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.RequiredLabel,{htmlFor:p},(0,a.__)("Audience","jet-form-builder")),(0,n.createElement)(o.Flex,{className:s(i.RowControlEndStyle,d&&i.ControlWithErrorStyle),direction:"column"},d&&(0,n.createElement)(i.IconText,null,(0,a.__)("Please fill this required field","jet-form-builder")),(0,n.createElement)(i.StyledSelectControl,{id:p,value:e.list_id,onChange:e=>t({list_id:e}),onBlur:()=>u(!0),options:[{value:"",label:(0,a.__)("-- Select list / audience --","jet-form-builder")},...r]})))},q=function({settings:e,onChangeSettingObj:t,listId:r}){const o=(0,c.useSelect)(e=>{var t;const n=e(j).getGroups();return null!==(t=n?.[r])&&void 0!==t?t:[]},[r]);return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.Label,null,(0,a.__)("Groups","jet-form-builder")),(0,n.createElement)(i.FormLabeledTokenField,{label:(0,a.__)("Choose a group","jet-form-builder"),value:e.groups_ids,onChange:e=>t({groups_ids:e}),suggestions:o,__experimentalValidateInput:e=>o.some(({value:t})=>t===e),__experimentalExpandOnFocus:!0,__experimentalShowHowTo:!1}))},z=function({settings:e,onChangeSettingObj:t}){const r=Array.isArray(e.tags)?e.tags:[];return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.Label,null,(0,a.__)("Tags","jet-form-builder")),(0,n.createElement)(i.StyledFormTokenFieldControl,{value:r,onChange:e=>t({tags:e})}))},V=window.jfb.blocksToActions,G=function({getMapField:e,setMapField:t,listId:r}){const l=(0,V.useFields)({withInner:!1,placeholder:"--"}),d=(0,c.useSelect)(e=>{var t;const n=e(j).getFields();return null!==(t=n?.[r])&&void 0!==t?t:[]},[r]);return(0,n.createElement)(i.RowControl,{align:"flex-start"},(0,n.createElement)(i.Label,null,(0,a.__)("Fields map","jet-form-builder")),(0,n.createElement)(o.Flex,{className:s(i.RowControlEndStyle),direction:"column",gap:4},d.map(r=>(0,n.createElement)(U.FieldsMapField,{key:r.value,tag:r.value,label:r.label,isRequired:r.required,formFields:l,value:e({name:r.value}),onChange:e=>t({nameField:r.value,value:e})}))))},X=window.wp.element,{ToggleControl:K}=JetFBComponents,Y=(0,n.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,n.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,n.createElement)("g",null,(0,n.createElement)("path",{d:"M16 1.1L4 5.9c-1.1.4-2 1.8-2 3v8.7c0 1.2.9 1.8 2 1.4l12-4.8c1.1-.4 2-1.8 2-3V2.5c0-1.2-.9-1.8-2-1.4zm.6 2.6l-6 9.3-6.7-4.5c-.1-.1-.4-.4-.2-.7.2-.4.7-.2.7-.2l6.3 2.3s4.8-6.3 5.1-6.7c.1-.2.4-.3.7-.1.3.2.2.5.1.6z"}))),J=[({settings:e})=>!e.use_global&&!e?.api_key&&{type:"empty",property:"api_key"},({settings:e})=>!e?.list_id&&{type:"empty",property:"list_id"},({settings:e})=>{const t=(0,c.select)(j).getFields();if(!Object.keys(t).length)return!1;const r=[],{list_id:n}=e,o=t[n];if(!o?.length)return!1;for(const t of o){if(!t.required)continue;const n=e?.fields_map?.[t.value];n||r.push({type:"empty",property:"field_"+t.value})}return r}],$={type:"mailchimp",label:(0,a.__)("MailChimp","jet-form-builder"),edit:function(e){const{settings:t,onChangeSettingObj:r,getMapField:l,setMapField:s}=e,{hasError:d,hasLists:u}=(0,c.useSelect)(e=>({hasError:Boolean(e(j).getFetchError()),hasLists:Boolean(e(j).getLists().length)}),[]);return(0,X.useEffect)(()=>{const e={};t.tags&&!Array.isArray(t.tags)&&(e.tags=t.tags.split(",").map(e=>e.trim())),t.groups_ids&&!Array.isArray(t.groups_ids)&&(e.groups_ids=function(e){const t=Object.entries(e),r=[];for(const[e,n]of t)n&&r.push(e);return r}(t.groups_ids)),Object.values(e)?.length&&r({...e})},[]),(0,n.createElement)(i.StyledFlexControl,{direction:"column"},(0,n.createElement)(K,{className:i.ClearBaseControlStyle,checked:t.use_global,onChange:e=>r({use_global:Boolean(e)})},(0,a.__)("Use","jet-form-builder")+" ",(0,n.createElement)("a",{href:JetFormEditorData.global_settings_url+"#mailchimp-tab"},(0,a.__)("Global Settings","jet-form-builder"))),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(H,{settings:t,onChangeSettingObj:r}),!d&&u&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.WideLine,null),(0,n.createElement)(W,{settings:t,onChangeSettingObj:r}),Boolean(t.list_id)&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.WideLine,null),(0,n.createElement)(q,{listId:t.list_id,settings:t,onChangeSettingObj:r}),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(z,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(o.ToggleControl,{label:(0,a.__)("Double Opt-In","jet-form-builder"),className:i.ClearBaseControlStyle,checked:t.double_opt_in,onChange:e=>{r({double_opt_in:Boolean(e)})}}),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(G,{listId:t.list_id,getMapField:l,setMapField:s}))))},icon:Y,docHref:"https://jetformbuilder.com/features/mailchimp/",category:"communication",validators:J};(0,c.register)(T),(0,U.registerAction)($)})()})(); \ No newline at end of file +(()=>{var e={54:(e,t,r)=>{"use strict";function n(e,t){for(var r=[],n={},o=0;of});var o="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!o)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var a={},i=o&&(document.head||document.getElementsByTagName("head")[0]),l=null,s=0,c=!1,d=function(){},u=null,p="data-vue-ssr-id",m="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(e,t,r,o){c=r,u=o||{};var i=n(e,t);return g(i),function(t){for(var r=[],o=0;or.parts.length&&(n.parts.length=r.parts.length)}else{var i=[];for(o=0;o{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r})).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var l=0;l0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=a),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),o&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=o):d[4]="".concat(o)),t.push(d))}},t}},421:(e,t,r)=>{var n=r(826);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,r(54).A)("002169f0",n,!1,{})},721:e=>{"use strict";e.exports=function(e){return e[1]}},826:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>l});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".sotfoyb{-webkit-flex:1;-ms-flex:1;flex:1;}\n",""]);const l=i}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e={};r.r(e),r.d(e,{fetchApiData:()=>E});var t={};r.r(t),r.d(t,{getFetchError:()=>k,getFields:()=>S,getGroups:()=>C,getLists:()=>w,isFetchLoading:()=>x});const n=window.React,o=window.wp.components,a=window.wp.i18n,i=window.jfb.components,l=window.wp.compose;var s=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},r=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,r]=e.split("_");t[r]=e}else r.push(e)}))}));const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...r),n.join(" ")};const c=window.wp.data,d="SET_LISTS",u="SET_GROUPS",p="SET_FIELDS",m="START_FETCH",f="END_FETCH",g="SET_FETCH_ERROR",h=(0,c.combineReducers)({api:function(e={},t){switch(t?.type){case d:return{...e,lists:t.payload};case u:return{...e,groups:t.payload};case p:return{...e,fields:t.payload}}return e},fetch:function(e={},t){switch(t?.type){case m:return{...e,loading:!0};case f:return{...e,loading:!1};case g:return{...e,error:t.error}}return e}}),y=h,v=window.wp.apiFetch;var b=r.n(v);const _=window.wp.url,E=e=>async({dispatch:t})=>{if(!e)return;t({type:m}),t({type:g,error:!1});const r=(0,_.addQueryArgs)("jet-form-builder/v1/mailchimp",{apiKey:e});let n;try{n=await b()({path:r})}catch(e){return void t({type:g,error:e})}finally{t({type:f})}t({type:d,payload:n.lists}),t({type:u,payload:n.groups}),t({type:p,payload:n.fields})};function w(e){var t;return null!==(t=e?.api?.lists)&&void 0!==t?t:[]}function C(e){var t;return null!==(t=e?.api?.groups)&&void 0!==t?t:{}}function S(e){var t;return null!==(t=e?.api?.fields)&&void 0!==t?t:{}}function x(e){var t;return null!==(t=e.fetch?.loading)&&void 0!==t&&t}function k(e){var t;return null!==(t=e.fetch?.error)&&void 0!==t&&t}const j="jet-forms/mailchimp",F=(0,c.createReduxStore)(j,{reducer:y,actions:e,selectors:t}),T=window.wp.primitives,A=(0,n.createElement)(T.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(T.Path,{d:"M17.3 10.1c0-2.5-2.1-4.4-4.8-4.4-2.2 0-4.1 1.4-4.6 3.3h-.2C5.7 9 4 10.7 4 12.8c0 2.1 1.7 3.8 3.7 3.8h9c1.8 0 3.2-1.5 3.2-3.3.1-1.6-1.1-2.9-2.6-3.2zm-.5 5.1h-9c-1.2 0-2.2-1.1-2.2-2.3s1-2.4 2.2-2.4h1.3l.3-1.1c.4-1.3 1.7-2.2 3.2-2.2 1.8 0 3.3 1.3 3.3 2.9v1.3l1.3.2c.8.1 1.4.9 1.4 1.8-.1 1-.9 1.8-1.8 1.8z"})),R=function({...e}){return(0,n.createElement)("div",{...e},(0,a.__)("How to obtain your MailChimp API Key?","jet-form-builder")," ",(0,n.createElement)(o.ExternalLink,{href:"https://mailchimp.com/help/about-api-keys/"},(0,a.__)("More info here","jet-form-builder")))};function O(e){var t=Object.create(null);return function(r){return void 0===t[r]&&(t[r]=e(r)),t[r]}}var L=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,I=O((function(e){return L.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),M=(e,t)=>{const r={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach((t=>{r[t]=e[t]})),r},P=function(e){let t="";return r=>{const o=(o,a)=>{const{as:i=e,class:l=t}=o;var c;const d=function(e,t){const r=M(t,["as","class"]);if(!e){const e="function"==typeof I?{default:I}:I;Object.keys(r).forEach((t=>{e.default(t)||delete r[t]}))}return r}(void 0===r.propsAsIs?!("string"==typeof i&&-1===i.indexOf("-")&&(c=i[0],c.toUpperCase()!==c)):r.propsAsIs,o);d.ref=a,d.className=r.atomic?s(r.class,d.className||l):s(d.className||l,r.class);const{vars:u}=r;if(u){const e={};for(const t in u){const n=u[t],a=n[0],i=n[1]||"",l="function"==typeof a?a(o):a;r.name,e[`--${t}`]=`${l}${i}`}const t=d.style||{},n=Object.keys(t);n.length>0&&n.forEach((r=>{e[r]=t[r]})),d.style=e}return e.__wyw_meta&&e!==i?(d.as=i,(0,n.createElement)(e,d)):(0,n.createElement)(i,d)},a=n.forwardRef?(0,n.forwardRef)(o):e=>{const t=M(e,["innerRef"]);return o(t,e.innerRef)};return a.displayName=r.name,a.__wyw_meta={className:r.class||t,extends:e},a}};const B=window.jfb.data,N=window.jfb.actions,U=P(o.TextControl)({name:"StyledTextControl",class:"sotfoyb",propsAsIs:!0}),D=function({settings:e,onChangeSettingObj:t}){const{fetchApiData:r}=(0,c.useDispatch)(j),{isFetchLoading:d,fetchError:u}=(0,c.useSelect)((e=>({isFetchLoading:e(j).isFetchLoading(),fetchError:e(j).getFetchError()})),[]),{hasError:p,setShowError:m}=(0,N.useActionValidatorProvider)({isSupported:e=>"api_key"===e?.property}),{value:f,onChange:g}=(0,B.useSiteOptionJSON)("jet_form_builder_settings__mailchimp-tab"),h=(0,l.useInstanceId)(i.RowControl,"jfb-control");return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.RequiredLabel,{htmlFor:h},(0,a.__)("API Key","jet-form-builder")),(0,n.createElement)(o.Flex,{className:s(i.RowControlEndStyle,(p||Boolean(u))&&i.ControlWithErrorStyle),direction:"column"},p&&(0,n.createElement)(i.IconText,null,(0,a.__)("Please fill this required field","jet-form-builder")),Boolean(u)&&(0,n.createElement)(i.IconText,null,(0,a.__)("Fetching data was failed","jet-form-builder")),(0,n.createElement)(o.Flex,null,e.use_global?(0,n.createElement)(U,{id:h,value:f.api_key,onChange:e=>g({api_key:e}),onBlur:()=>m(!0)}):(0,n.createElement)(U,{id:h,value:e.api_key,onChange:e=>t({api_key:e}),onBlur:()=>m(!0)}),(0,n.createElement)(o.Button,{onClick:()=>r(e.use_global?f.api_key:e.api_key),disabled:d,isBusy:d,icon:A,variant:"secondary"},(0,a.__)("Fetch","jet-form-builder"))),(0,n.createElement)(R,null)))};r(421);const H=function({settings:e,onChangeSettingObj:t}){const r=(0,c.useSelect)((e=>e(j).getLists()),[]),{hasError:d,setShowError:u}=(0,N.useActionValidatorProvider)({isSupported:e=>"list_id"===e?.property}),p=(0,l.useInstanceId)(i.RowControl,"jfb-control");return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.RequiredLabel,{htmlFor:p},(0,a.__)("Audience","jet-form-builder")),(0,n.createElement)(o.Flex,{className:s(i.RowControlEndStyle,d&&i.ControlWithErrorStyle),direction:"column"},d&&(0,n.createElement)(i.IconText,null,(0,a.__)("Please fill this required field","jet-form-builder")),(0,n.createElement)(i.StyledSelectControl,{id:p,value:e.list_id,onChange:e=>t({list_id:e}),onBlur:()=>u(!0),options:[{value:"",label:(0,a.__)("-- Select list / audience --","jet-form-builder")},...r]})))},W=function({settings:e,onChangeSettingObj:t,listId:r}){const o=(0,c.useSelect)((e=>{var t;const n=e(j).getGroups();return null!==(t=n?.[r])&&void 0!==t?t:[]}),[r]);return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.Label,null,(0,a.__)("Groups","jet-form-builder")),(0,n.createElement)(i.FormLabeledTokenField,{label:(0,a.__)("Choose a group","jet-form-builder"),value:e.groups_ids,onChange:e=>t({groups_ids:e}),suggestions:o,__experimentalValidateInput:e=>o.some((({value:t})=>t===e)),__experimentalExpandOnFocus:!0,__experimentalShowHowTo:!1}))},q=function({settings:e,onChangeSettingObj:t}){const r=Array.isArray(e.tags)?e.tags:[];return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.Label,null,(0,a.__)("Tags","jet-form-builder")),(0,n.createElement)(i.StyledFormTokenFieldControl,{value:r,onChange:e=>t({tags:e})}))},z=window.jfb.blocksToActions,V=function({getMapField:e,setMapField:t,listId:r}){const l=(0,z.useFields)({withInner:!1,placeholder:"--"}),d=(0,c.useSelect)((e=>{var t;const n=e(j).getFields();return null!==(t=n?.[r])&&void 0!==t?t:[]}),[r]);return(0,n.createElement)(i.RowControl,{align:"flex-start"},(0,n.createElement)(i.Label,null,(0,a.__)("Fields map","jet-form-builder")),(0,n.createElement)(o.Flex,{className:s(i.RowControlEndStyle),direction:"column",gap:4},d.map((r=>(0,n.createElement)(N.FieldsMapField,{key:r.value,tag:r.value,label:r.label,isRequired:r.required,formFields:l,value:e({name:r.value}),onChange:e=>t({nameField:r.value,value:e})})))))},G=window.wp.element,{ToggleControl:X}=JetFBComponents,K=(0,n.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,n.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,n.createElement)("g",null,(0,n.createElement)("path",{d:"M16 1.1L4 5.9c-1.1.4-2 1.8-2 3v8.7c0 1.2.9 1.8 2 1.4l12-4.8c1.1-.4 2-1.8 2-3V2.5c0-1.2-.9-1.8-2-1.4zm.6 2.6l-6 9.3-6.7-4.5c-.1-.1-.4-.4-.2-.7.2-.4.7-.2.7-.2l6.3 2.3s4.8-6.3 5.1-6.7c.1-.2.4-.3.7-.1.3.2.2.5.1.6z"}))),Y=[({settings:e})=>!e.use_global&&!e?.api_key&&{type:"empty",property:"api_key"},({settings:e})=>!e?.list_id&&{type:"empty",property:"list_id"},({settings:e})=>{const t=(0,c.select)(j).getFields();if(!Object.keys(t).length)return!1;const r=[],{list_id:n}=e,o=t[n];if(!o?.length)return!1;for(const t of o){if(!t.required)continue;const n=e?.fields_map?.[t.value];n||r.push({type:"empty",property:"field_"+t.value})}return r}],J={type:"mailchimp",label:(0,a.__)("MailChimp","jet-form-builder"),edit:function(e){const{settings:t,onChangeSettingObj:r,getMapField:l,setMapField:s}=e,{hasError:d,hasLists:u}=(0,c.useSelect)((e=>({hasError:Boolean(e(j).getFetchError()),hasLists:Boolean(e(j).getLists().length)})),[]);return(0,G.useEffect)((()=>{const e={};t.tags&&!Array.isArray(t.tags)&&(e.tags=t.tags.split(",").map((e=>e.trim()))),t.groups_ids&&!Array.isArray(t.groups_ids)&&(e.groups_ids=function(e){const t=Object.entries(e),r=[];for(const[e,n]of t)n&&r.push(e);return r}(t.groups_ids)),Object.values(e)?.length&&r({...e})}),[]),(0,n.createElement)(i.StyledFlexControl,{direction:"column"},(0,n.createElement)(X,{className:i.ClearBaseControlStyle,checked:t.use_global,onChange:e=>r({use_global:Boolean(e)})},(0,a.__)("Use","jet-form-builder")+" ",(0,n.createElement)("a",{href:JetFormEditorData.global_settings_url+"#mailchimp-tab"},(0,a.__)("Global Settings","jet-form-builder"))),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(D,{settings:t,onChangeSettingObj:r}),!d&&u&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.WideLine,null),(0,n.createElement)(H,{settings:t,onChangeSettingObj:r}),Boolean(t.list_id)&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.WideLine,null),(0,n.createElement)(W,{listId:t.list_id,settings:t,onChangeSettingObj:r}),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(q,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(o.ToggleControl,{label:(0,a.__)("Double Opt-In","jet-form-builder"),className:i.ClearBaseControlStyle,checked:t.double_opt_in,onChange:e=>{r({double_opt_in:Boolean(e)})}}),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(V,{listId:t.list_id,getMapField:l,setMapField:s}))))},icon:K,docHref:"https://jetformbuilder.com/features/mailchimp/",category:"communication",validators:Y};(0,c.register)(F),(0,N.registerAction)(J)})()})(); \ No newline at end of file diff --git a/modules/actions-v2/redirect-to-page/assets/build/editor.asset.php b/modules/actions-v2/redirect-to-page/assets/build/editor.asset.php index 48cb3c962..67983d39b 100644 --- a/modules/actions-v2/redirect-to-page/assets/build/editor.asset.php +++ b/modules/actions-v2/redirect-to-page/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '198a4ceedeb844a81480'); + array('react', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '2b57611daa740f80d1f8'); diff --git a/modules/actions-v2/redirect-to-page/assets/build/editor.js b/modules/actions-v2/redirect-to-page/assets/build/editor.js index df19d9788..d4a999a5e 100644 --- a/modules/actions-v2/redirect-to-page/assets/build/editor.js +++ b/modules/actions-v2/redirect-to-page/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={749(e,t,r){r.d(t,{A:()=>l});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".h10enhrf .components-toggle-control__help{-webkit-margin-start:0px;margin-inline-start:0px;}\n",""]);const l=i},246(e,t,r){r.d(t,{A:()=>l});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".s1yfsmz9.buddypress-active{width:100%;}.s1yfsmz9 .components-base-control{margin-bottom:0;}\n",""]);const l=i},186(e){e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r}).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var l=0;l0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=a),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),o&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=o):d[4]="".concat(o)),t.push(d))}},t}},721(e){e.exports=function(e){return e[1]}},884(e,t,r){r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),l=r(811),s=r.n(l),c=r(272),d=r.n(c),u=r(332),p=r.n(u),m=r(745),f=r.n(m),g=r(749),h={};h.styleTagTransform=f(),h.setAttributes=d(),h.insert=s().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0},627(e,t,r){r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),l=r(811),s=r.n(l),c=r(272),d=r.n(c),u=r(332),p=r.n(u),m=r(745),f=r.n(m),g=r(246),h={};h.styleTagTransform=f(),h.setAttributes=d(),h.insert=s().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0},264(e){var t=[];function r(e){for(var r=-1,n=0;n0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(n,e,t.options)}(t,e,r)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},745(e){e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nc=void 0;const n=window.React,o=window.wp.components,a=window.jfb.components,i=window.wp.i18n;var l=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},r=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,r]=e.split("_");t[r]=e}else r.push(e)})});const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...r),n.join(" ")};const s=window.wp.data,c=window.wp.element,d=window.jfb.actions,u=window.wp.compose,p=window.jfb.blocksToActions,m=function({settings:e,onChangeSettingObj:t}){const r=function({fields:e}){const t=(0,s.useSelect)(e=>{const{type:t}=e(d.STORE_NAME).getCurrentAction();return e(d.STORE_NAME).getAction(t)},[]);return(0,c.useMemo)(()=>t.redirectTypes.filter(({isSupported:t=()=>!0})=>t({fields:e})),[])}({fields:(0,p.useFields)({withInner:!1})}),m=(0,u.useInstanceId)(a.RowControl,"jfb-control"),{hasError:f,setShowError:g}=(0,d.useActionValidatorProvider)({isSupported:e=>"redirect_type"===e?.property});return(0,n.createElement)(a.RowControl,{createId:!1},(0,n.createElement)(a.RequiredLabel,{htmlFor:m},(0,i.__)("Redirect to","jet-form-builder")),(0,n.createElement)(o.Flex,{className:l(a.RowControlEndStyle,f&&a.ControlWithErrorStyle),direction:"column"},f&&(0,n.createElement)(a.IconText,null,(0,i.__)("Please fill this required field","jet-form-builder")),(0,n.createElement)(a.StyledSelectControl,{id:m,value:e.redirect_type,options:[{value:"",label:(0,i.__)("Set a redirect to...","jet-form-builder")},...r],onChange:e=>t({redirect_type:e}),onBlur:()=>g(!0)})))},f=window.wp.coreData,g=function({settings:e,onChangeSettingObj:t}){var r;const{hasError:o}=(0,d.useActionValidatorProvider)({isSupported:e=>"redirect_page"===e?.property}),[,l,c]=(0,u.useDebouncedInput)(""),p=(0,s.useSelect)(t=>t("core").getEntityRecord("postType","page",e.redirect_page),[]),m=(0,f.useEntityRecords)("postType","page",{per_page:20,search:c}),g=null!==(r=m.records?.filter?.(({id:e})=>e!==p?.id).map?.(e=>({value:e.id,label:e.title.raw})))&&void 0!==r?r:[];return(0,n.createElement)(a.RowControl,{createId:!1},(0,n.createElement)(a.RequiredLabel,null,(0,i.__)("Select page","jet-form-builder")),(0,n.createElement)(a.RowControlEnd,{hasError:o},(0,n.createElement)(a.StyledComboboxControl,{value:+e.redirect_page,options:p?.id?[{value:p.id,label:p.title.raw},...g]:g,onChange:e=>t({redirect_page:e}),onFilterValueChange:l})))},{PresetButton:h,MacrosFields:y}=JetFBComponents,b=function({settings:e,onChangeSettingObj:t}){const{hasError:r,setShowError:s}=(0,d.useActionValidatorProvider)({isSupported:e=>"redirect_url"===e?.property}),c=(0,u.useInstanceId)(a.RowControl,"jfb-control");return(0,n.createElement)(a.RowControl,{createId:!1},(0,n.createElement)(a.LabelWithActions,null,(0,n.createElement)(a.RequiredLabel,{htmlFor:c},(0,i.__)("Redirect URL","jet-form-builder")),(0,n.createElement)(h,{value:e.redirect_url,onChange:e=>t({redirect_url:e})}),(0,n.createElement)(y,{onClick:r=>{var n;return t({redirect_url:(null!==(n=e.redirect_url)&&void 0!==n?n:"")+r})},withCurrent:!0})),(0,n.createElement)(o.Flex,{className:l(a.RowControlEndStyle,r&&a.ControlWithErrorStyle),direction:"column"},r&&(0,n.createElement)(a.IconText,null,(0,i.__)("Please fill this required field","jet-form-builder")),(0,n.createElement)(a.StyledTextControl,{id:c,value:e.redirect_url,onChange:e=>t({redirect_url:e}),onBlur:()=>s(!0)})))},{useFields:v}=JetFBHooks,w=function({settings:e,onChangeSettingObj:t}){const r=v({withInner:!1}).map(({value:e})=>e);return(0,n.createElement)(a.RowControl,{createId:!1},(0,n.createElement)(a.Label,null,(0,i.__)("URL Query arguments","jet-form-builder")),(0,n.createElement)(a.StyledFormTokenFieldControl,{label:(0,i.__)("Add field","jet-form-builder"),value:e.redirect_args,suggestions:r,onChange:e=>t({redirect_args:e}),__experimentalExpandOnFocus:!0}))},_=function({settings:e,onChangeSettingObj:t}){const r=(0,u.useInstanceId)(a.RowControl,"jfb-control");return(0,n.createElement)(a.RowControl,{createId:!1},(0,n.createElement)(a.Label,{htmlFor:r},(0,i.__)("URL Hash","jet-form-builder")),(0,n.createElement)(a.StyledTextControl,{id:r,value:e.redirect_hash,onChange:e=>t({redirect_hash:e})}))},E=function({settings:e,onChangeSettingObj:t}){const r=(0,u.useInstanceId)(a.RowControl,"jfb-control");return(0,n.createElement)(a.RowControl,{createId:!1},(0,n.createElement)(a.Label,{htmlFor:r},(0,i.__)("Open in New Tab","jet-form-builder")),(0,n.createElement)(o.ToggleControl,{id:r,className:"h10enhrf",help:"Works with AJAX submit type only.",checked:e.open_in_new_tab||!1,onChange:e=>t({open_in_new_tab:e})}))};function C(e){var t=Object.create(null);return function(r){return void 0===t[r]&&(t[r]=e(r)),t[r]}}r(884);var S=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,x=C(function(e){return S.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),k=(e,t)=>{const r={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{r[t]=e[t]}),r},A=(e,t)=>{},R=function(e){let t="";return r=>{const o=(o,a)=>{const{as:i=e,class:s=t}=o;var c;const d=function(e,t){const r=k(t,["as","class"]);if(!e){const e="function"==typeof x?{default:x}:x;Object.keys(r).forEach(t=>{e.default(t)||delete r[t]})}return r}(void 0===r.propsAsIs?!("string"==typeof i&&-1===i.indexOf("-")&&(c=i[0],c.toUpperCase()!==c)):r.propsAsIs,o);d.ref=a,d.className=r.atomic?l(r.class,d.className||s):l(d.className||s,r.class);const{vars:u}=r;if(u){const e={};for(const t in u){const n=u[t],a=n[0],i=n[1]||"",l="function"==typeof a?a(o):a;A(0,r.name),e[`--${t}`]=`${l}${i}`}const t=d.style||{},n=Object.keys(t);n.length>0&&n.forEach(r=>{e[r]=t[r]}),d.style=e}return e.__wyw_meta&&e!==i?(d.as=i,(0,n.createElement)(e,d)):(0,n.createElement)(i,d)},a=n.forwardRef?(0,n.forwardRef)(o):e=>{const t=k(e,["innerRef"]);return o(t,e.innerRef)};return a.displayName=r.name,a.__wyw_meta={className:r.class||t,extends:e},a}};const T=R(o.Flex)({name:"StyledFlex",class:"s1yfsmz9",propsAsIs:!0});r(627);const j=window.wp.primitives,O=(0,n.createElement)(j.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(j.Path,{d:"M19.75 9c0-1.257-.565-2.197-1.39-2.858-.797-.64-1.827-1.017-2.815-1.247-1.802-.42-3.703-.403-4.383-.396L11 4.5V6l.177-.001c.696-.006 2.416-.02 4.028.356.887.207 1.67.518 2.216.957.52.416.829.945.829 1.688 0 .592-.167.966-.407 1.23-.255.281-.656.508-1.236.674-1.19.34-2.82.346-4.607.346h-.077c-1.692 0-3.527 0-4.942.404-.732.209-1.424.545-1.935 1.108-.526.579-.796 1.33-.796 2.238 0 1.257.565 2.197 1.39 2.858.797.64 1.827 1.017 2.815 1.247 1.802.42 3.703.403 4.383.396L13 19.5h.714V22L18 18.5 13.714 15v3H13l-.177.001c-.696.006-2.416.02-4.028-.356-.887-.207-1.67-.518-2.216-.957-.52-.416-.829-.945-.829-1.688 0-.592.167-.966.407-1.23.255-.281.656-.508 1.237-.674 1.189-.34 2.819-.346 4.606-.346h.077c1.692 0 3.527 0 4.941-.404.732-.209 1.425-.545 1.936-1.108.526-.579.796-1.33.796-2.238z"})),I={type:"redirect_to_page",label:(0,i.__)("Redirect to Page","jet-form-builder"),edit:function(e){const{settings:t,onChangeSettingObj:r}=e,o=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return(0,n.createElement)(T,{direction:"column",className:o?"buddypress-active":""},(0,n.createElement)(m,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(a.WideLine,null),"static_page"===t.redirect_type&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(g,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(a.WideLine,null)),"custom_url"===t.redirect_type&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(b,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(a.WideLine,null)),(0,n.createElement)(w,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(a.WideLine,null),(0,n.createElement)(_,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(a.WideLine,null),(0,n.createElement)(E,{settings:t,onChangeSettingObj:r}))},icon:O,docHref:"https://jetformbuilder.com/features/redirect-to-page/",validators:[({settings:e})=>!e?.redirect_type&&{type:"empty",property:"redirect_type"},({settings:e})=>"static_page"===e?.redirect_type&&!e?.redirect_page&&{type:"empty",property:"redirect_page"},({settings:e})=>"custom_url"===e?.redirect_type&&!e?.redirect_url&&{type:"empty",property:"redirect_url"}],redirectTypes:[{value:"static_page",label:(0,i.__)("Static Page","jet-form-builder")},{value:"custom_url",label:(0,i.__)("Custom URL","jet-form-builder")},{value:"current_page",label:(0,i.__)("Current Page","jet-form-builder")},{value:"inserted_post",label:(0,i.__)("Inserted/Updated post","jet-form-builder"),isSupported:({fields:e})=>e.some(({value:e})=>"inserted_post_id"===e)}]};(0,d.registerAction)(I)})(); \ No newline at end of file +(()=>{"use strict";var e={186:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r})).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var l=0;l0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=a),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),o&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=o):d[4]="".concat(o)),t.push(d))}},t}},246:(e,t,r)=>{r.d(t,{A:()=>l});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".s1yfsmz9.buddypress-active{width:100%;}.s1yfsmz9 .components-base-control{margin-bottom:0;}\n",""]);const l=i},264:e=>{var t=[];function r(e){for(var r=-1,n=0;n{e.exports=function(e){var t=r.nc;t&&e.setAttribute("nonce",t)}},332:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},449:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(r){!function(e,t,r){var n="";r.supports&&(n+="@supports (".concat(r.supports,") {")),r.media&&(n+="@media ".concat(r.media," {"));var o=void 0!==r.layer;o&&(n+="@layer".concat(r.layer.length>0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(n,e,t.options)}(t,e,r)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},627:(e,t,r)=>{r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),l=r(811),s=r.n(l),c=r(272),d=r.n(c),u=r(332),p=r.n(u),m=r(745),f=r.n(m),g=r(246),h={};h.styleTagTransform=f(),h.setAttributes=d(),h.insert=s().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0},721:e=>{e.exports=function(e){return e[1]}},745:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},749:(e,t,r)=>{r.d(t,{A:()=>l});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".h10enhrf .components-toggle-control__help{-webkit-margin-start:0px;margin-inline-start:0px;}\n",""]);const l=i},811:e=>{var t={};e.exports=function(e,r){var n=function(e){if(void 0===t[e]){var r=document.querySelector(e);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(e){r=null}t[e]=r}return t[e]}(e);if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");n.appendChild(r)}},884:(e,t,r)=>{r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),l=r(811),s=r.n(l),c=r(272),d=r.n(c),u=r(332),p=r.n(u),m=r(745),f=r.n(m),g=r(749),h={};h.styleTagTransform=f(),h.setAttributes=d(),h.insert=s().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nc=void 0;const n=window.React,o=window.wp.components,a=window.jfb.components,i=window.wp.i18n;var l=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},r=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,r]=e.split("_");t[r]=e}else r.push(e)}))}));const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...r),n.join(" ")};const s=window.wp.data,c=window.wp.element,d=window.jfb.actions,u=window.wp.compose,p=window.jfb.blocksToActions,m=function({settings:e,onChangeSettingObj:t}){const r=function({fields:e}){const t=(0,s.useSelect)((e=>{const{type:t}=e(d.STORE_NAME).getCurrentAction();return e(d.STORE_NAME).getAction(t)}),[]);return(0,c.useMemo)((()=>t.redirectTypes.filter((({isSupported:t=()=>!0})=>t({fields:e})))),[])}({fields:(0,p.useFields)({withInner:!1})}),m=(0,u.useInstanceId)(a.RowControl,"jfb-control"),{hasError:f,setShowError:g}=(0,d.useActionValidatorProvider)({isSupported:e=>"redirect_type"===e?.property});return(0,n.createElement)(a.RowControl,{createId:!1},(0,n.createElement)(a.RequiredLabel,{htmlFor:m},(0,i.__)("Redirect to","jet-form-builder")),(0,n.createElement)(o.Flex,{className:l(a.RowControlEndStyle,f&&a.ControlWithErrorStyle),direction:"column"},f&&(0,n.createElement)(a.IconText,null,(0,i.__)("Please fill this required field","jet-form-builder")),(0,n.createElement)(a.StyledSelectControl,{id:m,value:e.redirect_type,options:[{value:"",label:(0,i.__)("Set a redirect to...","jet-form-builder")},...r],onChange:e=>t({redirect_type:e}),onBlur:()=>g(!0)})))},f=window.wp.coreData,g=function({settings:e,onChangeSettingObj:t}){var r;const{hasError:o}=(0,d.useActionValidatorProvider)({isSupported:e=>"redirect_page"===e?.property}),[,l,c]=(0,u.useDebouncedInput)(""),p=(0,s.useSelect)((t=>t("core").getEntityRecord("postType","page",e.redirect_page)),[]),m=(0,f.useEntityRecords)("postType","page",{per_page:20,search:c}),g=null!==(r=m.records?.filter?.((({id:e})=>e!==p?.id)).map?.((e=>({value:e.id,label:e.title.raw}))))&&void 0!==r?r:[];return(0,n.createElement)(a.RowControl,{createId:!1},(0,n.createElement)(a.RequiredLabel,null,(0,i.__)("Select page","jet-form-builder")),(0,n.createElement)(a.RowControlEnd,{hasError:o},(0,n.createElement)(a.StyledComboboxControl,{value:+e.redirect_page,options:p?.id?[{value:p.id,label:p.title.raw},...g]:g,onChange:e=>t({redirect_page:e}),onFilterValueChange:l})))},{PresetButton:h,MacrosFields:y}=JetFBComponents,b=function({settings:e,onChangeSettingObj:t}){const{hasError:r,setShowError:s}=(0,d.useActionValidatorProvider)({isSupported:e=>"redirect_url"===e?.property}),c=(0,u.useInstanceId)(a.RowControl,"jfb-control");return(0,n.createElement)(a.RowControl,{createId:!1},(0,n.createElement)(a.LabelWithActions,null,(0,n.createElement)(a.RequiredLabel,{htmlFor:c},(0,i.__)("Redirect URL","jet-form-builder")),(0,n.createElement)(h,{value:e.redirect_url,onChange:e=>t({redirect_url:e})}),(0,n.createElement)(y,{onClick:r=>{var n;return t({redirect_url:(null!==(n=e.redirect_url)&&void 0!==n?n:"")+r})},withCurrent:!0})),(0,n.createElement)(o.Flex,{className:l(a.RowControlEndStyle,r&&a.ControlWithErrorStyle),direction:"column"},r&&(0,n.createElement)(a.IconText,null,(0,i.__)("Please fill this required field","jet-form-builder")),(0,n.createElement)(a.StyledTextControl,{id:c,value:e.redirect_url,onChange:e=>t({redirect_url:e}),onBlur:()=>s(!0)})))},{useFields:v}=JetFBHooks,w=function({settings:e,onChangeSettingObj:t}){const r=v({withInner:!1}).map((({value:e})=>e));return(0,n.createElement)(a.RowControl,{createId:!1},(0,n.createElement)(a.Label,null,(0,i.__)("URL Query arguments","jet-form-builder")),(0,n.createElement)(a.StyledFormTokenFieldControl,{label:(0,i.__)("Add field","jet-form-builder"),value:e.redirect_args,suggestions:r,onChange:e=>t({redirect_args:e}),__experimentalExpandOnFocus:!0}))},_=function({settings:e,onChangeSettingObj:t}){const r=(0,u.useInstanceId)(a.RowControl,"jfb-control");return(0,n.createElement)(a.RowControl,{createId:!1},(0,n.createElement)(a.Label,{htmlFor:r},(0,i.__)("URL Hash","jet-form-builder")),(0,n.createElement)(a.StyledTextControl,{id:r,value:e.redirect_hash,onChange:e=>t({redirect_hash:e})}))},E=function({settings:e,onChangeSettingObj:t}){const r=(0,u.useInstanceId)(a.RowControl,"jfb-control");return(0,n.createElement)(a.RowControl,{createId:!1},(0,n.createElement)(a.Label,{htmlFor:r},(0,i.__)("Open in New Tab","jet-form-builder")),(0,n.createElement)(o.ToggleControl,{id:r,className:"h10enhrf",help:"Works with AJAX submit type only.",checked:e.open_in_new_tab||!1,onChange:e=>t({open_in_new_tab:e})}))};function C(e){var t=Object.create(null);return function(r){return void 0===t[r]&&(t[r]=e(r)),t[r]}}r(884);var S=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,x=C((function(e){return S.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),k=(e,t)=>{const r={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach((t=>{r[t]=e[t]})),r},A=function(e){let t="";return r=>{const o=(o,a)=>{const{as:i=e,class:s=t}=o;var c;const d=function(e,t){const r=k(t,["as","class"]);if(!e){const e="function"==typeof x?{default:x}:x;Object.keys(r).forEach((t=>{e.default(t)||delete r[t]}))}return r}(void 0===r.propsAsIs?!("string"==typeof i&&-1===i.indexOf("-")&&(c=i[0],c.toUpperCase()!==c)):r.propsAsIs,o);d.ref=a,d.className=r.atomic?l(r.class,d.className||s):l(d.className||s,r.class);const{vars:u}=r;if(u){const e={};for(const t in u){const n=u[t],a=n[0],i=n[1]||"",l="function"==typeof a?a(o):a;r.name,e[`--${t}`]=`${l}${i}`}const t=d.style||{},n=Object.keys(t);n.length>0&&n.forEach((r=>{e[r]=t[r]})),d.style=e}return e.__wyw_meta&&e!==i?(d.as=i,(0,n.createElement)(e,d)):(0,n.createElement)(i,d)},a=n.forwardRef?(0,n.forwardRef)(o):e=>{const t=k(e,["innerRef"]);return o(t,e.innerRef)};return a.displayName=r.name,a.__wyw_meta={className:r.class||t,extends:e},a}};const R=A(o.Flex)({name:"StyledFlex",class:"s1yfsmz9",propsAsIs:!0});r(627);const j=window.wp.primitives,T=(0,n.createElement)(j.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(j.Path,{d:"M19.75 9c0-1.257-.565-2.197-1.39-2.858-.797-.64-1.827-1.017-2.815-1.247-1.802-.42-3.703-.403-4.383-.396L11 4.5V6l.177-.001c.696-.006 2.416-.02 4.028.356.887.207 1.67.518 2.216.957.52.416.829.945.829 1.688 0 .592-.167.966-.407 1.23-.255.281-.656.508-1.236.674-1.19.34-2.82.346-4.607.346h-.077c-1.692 0-3.527 0-4.942.404-.732.209-1.424.545-1.935 1.108-.526.579-.796 1.33-.796 2.238 0 1.257.565 2.197 1.39 2.858.797.64 1.827 1.017 2.815 1.247 1.802.42 3.703.403 4.383.396L13 19.5h.714V22L18 18.5 13.714 15v3H13l-.177.001c-.696.006-2.416.02-4.028-.356-.887-.207-1.67-.518-2.216-.957-.52-.416-.829-.945-.829-1.688 0-.592.167-.966.407-1.23.255-.281.656-.508 1.237-.674 1.189-.34 2.819-.346 4.606-.346h.077c1.692 0 3.527 0 4.941-.404.732-.209 1.425-.545 1.936-1.108.526-.579.796-1.33.796-2.238z"})),O={type:"redirect_to_page",label:(0,i.__)("Redirect to Page","jet-form-builder"),edit:function(e){const{settings:t,onChangeSettingObj:r}=e,o=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return(0,n.createElement)(R,{direction:"column",className:o?"buddypress-active":""},(0,n.createElement)(m,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(a.WideLine,null),"static_page"===t.redirect_type&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(g,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(a.WideLine,null)),"custom_url"===t.redirect_type&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(b,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(a.WideLine,null)),(0,n.createElement)(w,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(a.WideLine,null),(0,n.createElement)(_,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(a.WideLine,null),(0,n.createElement)(E,{settings:t,onChangeSettingObj:r}))},icon:T,docHref:"https://jetformbuilder.com/features/redirect-to-page/",validators:[({settings:e})=>!e?.redirect_type&&{type:"empty",property:"redirect_type"},({settings:e})=>"static_page"===e?.redirect_type&&!e?.redirect_page&&{type:"empty",property:"redirect_page"},({settings:e})=>"custom_url"===e?.redirect_type&&!e?.redirect_url&&{type:"empty",property:"redirect_url"}],redirectTypes:[{value:"static_page",label:(0,i.__)("Static Page","jet-form-builder")},{value:"custom_url",label:(0,i.__)("Custom URL","jet-form-builder")},{value:"current_page",label:(0,i.__)("Current Page","jet-form-builder")},{value:"inserted_post",label:(0,i.__)("Inserted/Updated post","jet-form-builder"),isSupported:({fields:e})=>e.some((({value:e})=>"inserted_post_id"===e))}]};(0,d.registerAction)(O)})(); \ No newline at end of file diff --git a/modules/actions-v2/register-user/assets/build/editor.asset.php b/modules/actions-v2/register-user/assets/build/editor.asset.php index 00eacce5c..2bb3af892 100644 --- a/modules/actions-v2/register-user/assets/build/editor.asset.php +++ b/modules/actions-v2/register-user/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-i18n', 'wp-primitives'), 'version' => '17c71d86c62ecaafa51c'); + array('react', 'wp-components', 'wp-i18n', 'wp-primitives'), 'version' => '5de1fdd83fa28d8b64f4'); diff --git a/modules/actions-v2/register-user/assets/build/editor.js b/modules/actions-v2/register-user/assets/build/editor.js index 8b7ba3087..796f2dbe2 100644 --- a/modules/actions-v2/register-user/assets/build/editor.js +++ b/modules/actions-v2/register-user/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";const e=window.React,t=window.wp.components,l=window.wp.i18n,r=window.jfb.actions,a=window.jfb.components;var i=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},l=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,l]=e.split("_");t[l]=e}else l.push(e)})});const r=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&r.push(t[e]);return r.push(...l),r.join(" ")};const o=function({settings:o,onChangeSettingObj:s}){const{hasError:n,setShowError:d}=(0,r.useActionValidatorProvider)({isSupported:e=>"role_can_register"===e?.property});return(0,e.createElement)(a.RowControl,null,({id:r})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(a.RequiredLabel,{htmlFor:r},(0,l.__)("Who can add new user?","jet-form-builder")),(0,e.createElement)(t.Flex,{className:i(a.RowControlEndStyle,n&&a.ControlWithErrorStyle),direction:"column"},n&&(0,e.createElement)(a.IconText,null,(0,l.__)("Please fill this required field","jet-form-builder")),(0,e.createElement)(a.StyledSelectControl,{id:r,value:o.role_can_register,options:JetFBRegisterAction.allUserRoles,onChange:e=>s({role_can_register:e}),onBlur:()=>d(!0)}))))},s=window.jfb.blocksToActions,n=[{value:"login",label:(0,l.__)("User Login","jet-form-builder"),help:(0,l.__)("Choose the form field that will be used to get the user login. The value of this field will be stored as the user login in the database.","jet-form-builder"),required:!0},{value:"email",label:(0,l.__)("Email","jet-form-builder"),help:(0,l.__)("Choose the form field that will be used to get the user email. The value of this field will be stored as the user email in the database. You can use the same field in the User Login setting if you want the login and email to be the same.","jet-form-builder"),required:!0},{value:"password",label:(0,l.__)("Password","jet-form-builder"),help:(0,l.__)("Choose the form field that will be used to get the user password. The value of this field will be stored in the database in a hashed format.","jet-form-builder"),required:!0},{value:"confirm_password",label:(0,l.__)("Confirm Password","jet-form-builder"),help:(0,l.__)("Choose the form field that will be used to confirm the user password. This field is required to ensure the user has entered the correct password.","jet-form-builder"),required:!0},{value:"first_name",label:(0,l.__)("First Name","jet-form-builder"),help:(0,l.__)("(Optional) Choose the form field that will be used to get the user's first name. The value of this field will be stored in the database as the First Name in the user profile.","jet-form-builder")},{value:"last_name",label:(0,l.__)("Last Name","jet-form-builder"),help:(0,l.__)("(Optional) Choose the form field that will be used to get the user's last name. The value of this field will be stored in the WordPress database as the last name in the user profile.","jet-form-builder")},{value:"user_url",label:(0,l.__)("User URL","jet-form-builder"),help:(0,l.__)("(Optional) Choose the form field that will be used to get the user’s website. The value of this field will be stored in the WordPress database as the website in the Contacts section of the user profile.","jet-form-builder")}],d=function({getMapField:t,setMapField:i}){const o=(0,s.useFields)({withInner:!1,placeholder:"--"});return(0,e.createElement)("div",{className:a.TableListStyle.Wrap},(0,e.createElement)(a.Label,{className:a.TableListStyle.Label},(0,l.__)("Fields map","jet-form-builder")),(0,e.createElement)(a.Help,{className:a.TableListStyle.WhiteSpaceNormal},"Map your form fields to standard user’s fields. This links the form input to user profile data, so values are saved in the user’s account."),(0,e.createElement)(r.TableListContainer,null,(0,e.createElement)(r.TableListHead,{columns:[(0,l.__)("User Meta Fields","jet-form-builder"),(0,l.__)("Form Fields","jet-form-builder")]}),n.map(l=>(0,e.createElement)(r.TableListRow,{key:l.value,tag:l.value,label:l.label,help:l.help,isRequired:l.required},({setShowError:r,htmlId:s})=>(0,e.createElement)(a.StyledSelectControl,{id:s,onBlur:()=>r(!0),options:o,formFields:o,value:t({name:l.value}),onChange:e=>i({nameField:l.value,value:e})})))))},u=function({settings:t,onChangeSettingObj:r}){return(0,e.createElement)(a.RowControl,null,({id:i})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(a.Label,{htmlFor:i},(0,l.__)("User Role","jet-form-builder")),(0,e.createElement)(a.StyledSelectControl,{multiple:!0,id:i,value:t.user_role,options:JetFBRegisterAction.userRoles,onChange:e=>r({user_role:e}),help:(0,l.__)("Hold Ctrl (Windows) or Command (Mac) to select multiple roles.","jet-form-builder")})))},m=function({getMapField:t,setMapField:i}){const o=(0,s.useFields)({withInner:!1});return(0,e.createElement)("div",{createId:!1,className:a.TableListStyle.Wrap},(0,e.createElement)(a.Label,{className:a.TableListStyle.Label},(0,l.__)("User Meta","jet-form-builder")),(0,e.createElement)(a.Help,{className:a.TableListStyle.WhiteSpaceNormal},(0,l.__)('Map form fields to custom user meta fields (e.g., "Phone") not included in WordPress by default.',"jet-form-builder")),(0,e.createElement)(a.Help,{className:a.TableListStyle.WhiteSpaceNormal},(0,l.__)("Other settings of the target meta field may affect whether the value is saved as an array.","jet-form-builder")),(0,e.createElement)(r.TableListContainer,null,(0,e.createElement)(r.TableListHead,{columns:[(0,l.__)("Form Fields","jet-form-builder"),(0,l.__)("User Meta Fields","jet-form-builder")]}),o.map(l=>(0,e.createElement)(r.TableListRow,{key:l.value,tag:l.value,label:l.label},({htmlId:o})=>(0,e.createElement)("div",{className:"jet-margin-bottom-wrapper"},(0,e.createElement)(a.StyledTextControl,{placeholder:"User meta field/key",id:o,value:t({source:"meta_fields_map",name:l.value}),onChange:e=>i({nameField:l.value,value:e,source:"meta_fields_map"})}),(0,e.createElement)(r.SingleValueAsArrayToggle,{fieldName:l.value,getMapField:t,setMapField:i}))))))},c=function({settings:t,onChangeSettingObj:r}){const i=(0,s.useFields)({withInner:!1,placeholder:"--"});return(0,e.createElement)(a.RowControl,null,({id:o})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(a.Label,{htmlFor:o},(0,l.__)('"Remember me" field:',"jet-form-builder")),(0,e.createElement)(a.StyledSelectControl,{id:o,value:t.remember_me_field,options:i,onChange:e=>r({remember_me_field:e})})))},h=window.wp.primitives,f=(0,e.createElement)(h.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(h.Path,{fillRule:"evenodd",d:"M7.25 16.437a6.5 6.5 0 1 1 9.5 0V16A2.75 2.75 0 0 0 14 13.25h-4A2.75 2.75 0 0 0 7.25 16v.437Zm1.5 1.193a6.47 6.47 0 0 0 3.25.87 6.47 6.47 0 0 0 3.25-.87V16c0-.69-.56-1.25-1.25-1.25h-4c-.69 0-1.25.56-1.25 1.25v1.63ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm10-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",clipRule:"evenodd"})),b={type:"register_user",label:(0,l.__)("Register User","jet-form-builder"),edit:function(i){const{settings:s,onChangeSettingObj:n,getMapField:h,setMapField:f}=i;return(0,e.createElement)(a.StyledFlexControl,{direction:"column"},(0,e.createElement)(t.ToggleControl,{className:a.ClearBaseControlStyle,label:(0,l.__)("Allow creating new users by existing users","jet-form-builder"),checked:s.allow_register,onChange:e=>n({allow_register:e}),help:(0,l.__)("If this option is enabled, logged-in users with the selected role will be able to add new users using this form. If disabled, only non-logged-in users will be able to register themselves.","jet-form-builder")}),s.allow_register&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)(a.WideLine,null),(0,e.createElement)(o,{settings:s,onChangeSettingObj:n})),(0,e.createElement)(a.WideLine,null),(0,e.createElement)(d,{getMapField:h,setMapField:f}),(0,e.createElement)(a.WideLine,null),(0,e.createElement)(u,{settings:s,onChangeSettingObj:n}),(0,e.createElement)(a.WideLine,null),(0,e.createElement)(t.ToggleControl,{className:a.ClearBaseControlStyle,label:(0,l.__)("Log In User after Register:","jet-form-builder"),checked:s.log_in,onChange:e=>n({log_in:e}),help:(0,l.__)('To use the "Remember me" option, first add a checkbox, radio button, or switcher field to your form with a value of 1, and label it "Remember me" or similar. Then, select it here.',"jet-form-builder")}),s.log_in&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)(a.WideLine,null),(0,e.createElement)(c,{settings:s,onChangeSettingObj:n})),(0,e.createElement)(a.WideLine,null),(0,e.createElement)(t.ToggleControl,{className:a.ClearBaseControlStyle,label:(0,l.__)("Add User ID to form data:","jet-form-builder"),checked:s.add_user_id,onChange:e=>n({add_user_id:e}),help:(0,l.__)('Registered user ID will be added to form data. Current user ID will be added to form data only if "Allow creating new users by existing users" option was disabled.',"jet-form-builder")}),(0,e.createElement)(a.WideLine,null),(0,e.createElement)(m,{getMapField:h,setMapField:f}),(0,e.createElement)(a.WideLine,null),(0,e.createElement)(r.ActionMessages,{...i}))},icon:f,docHref:"https://jetformbuilder.com/features/register-user/",category:"user",validators:[({settings:e})=>!!e.allow_register&&!e?.role_can_register&&{type:"empty",property:"role_can_register"},({settings:e})=>{const t=[];for(const l of n){if(!l.required)continue;const r=e?.fields_map?.[l.value];r||t.push({type:"empty",property:"field_"+l.value})}return t}]};function _(){r.BaseComputedField.call(this),this.isSupported=function(e){return"register_user"===e.type&&e.selfSettings.add_user_id},this.getName=function(){return"user_id"},this.getHelp=function(){return(0,l.__)("A computed field from the Register User action.","jet-form-builder")}}_.prototype=Object.create(r.BaseComputedField.prototype);const p=_;(0,r.registerAction)(b),(0,r.addComputedField)(p)})(); \ No newline at end of file +(()=>{"use strict";const e=window.React,t=window.wp.components,l=window.wp.i18n,r=window.jfb.actions,a=window.jfb.components;var i=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},l=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,l]=e.split("_");t[l]=e}else l.push(e)}))}));const r=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&r.push(t[e]);return r.push(...l),r.join(" ")};const o=function({settings:o,onChangeSettingObj:s}){const{hasError:n,setShowError:d}=(0,r.useActionValidatorProvider)({isSupported:e=>"role_can_register"===e?.property});return(0,e.createElement)(a.RowControl,null,(({id:r})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(a.RequiredLabel,{htmlFor:r},(0,l.__)("Who can add new user?","jet-form-builder")),(0,e.createElement)(t.Flex,{className:i(a.RowControlEndStyle,n&&a.ControlWithErrorStyle),direction:"column"},n&&(0,e.createElement)(a.IconText,null,(0,l.__)("Please fill this required field","jet-form-builder")),(0,e.createElement)(a.StyledSelectControl,{id:r,value:o.role_can_register,options:JetFBRegisterAction.allUserRoles,onChange:e=>s({role_can_register:e}),onBlur:()=>d(!0)})))))},s=window.jfb.blocksToActions,n=[{value:"login",label:(0,l.__)("User Login","jet-form-builder"),help:(0,l.__)("Choose the form field that will be used to get the user login. The value of this field will be stored as the user login in the database.","jet-form-builder"),required:!0},{value:"email",label:(0,l.__)("Email","jet-form-builder"),help:(0,l.__)("Choose the form field that will be used to get the user email. The value of this field will be stored as the user email in the database. You can use the same field in the User Login setting if you want the login and email to be the same.","jet-form-builder"),required:!0},{value:"password",label:(0,l.__)("Password","jet-form-builder"),help:(0,l.__)("Choose the form field that will be used to get the user password. The value of this field will be stored in the database in a hashed format.","jet-form-builder"),required:!0},{value:"confirm_password",label:(0,l.__)("Confirm Password","jet-form-builder"),help:(0,l.__)("Choose the form field that will be used to confirm the user password. This field is required to ensure the user has entered the correct password.","jet-form-builder"),required:!0},{value:"first_name",label:(0,l.__)("First Name","jet-form-builder"),help:(0,l.__)("(Optional) Choose the form field that will be used to get the user's first name. The value of this field will be stored in the database as the First Name in the user profile.","jet-form-builder")},{value:"last_name",label:(0,l.__)("Last Name","jet-form-builder"),help:(0,l.__)("(Optional) Choose the form field that will be used to get the user's last name. The value of this field will be stored in the WordPress database as the last name in the user profile.","jet-form-builder")},{value:"user_url",label:(0,l.__)("User URL","jet-form-builder"),help:(0,l.__)("(Optional) Choose the form field that will be used to get the user’s website. The value of this field will be stored in the WordPress database as the website in the Contacts section of the user profile.","jet-form-builder")}],d=function({getMapField:t,setMapField:i}){const o=(0,s.useFields)({withInner:!1,placeholder:"--"});return(0,e.createElement)("div",{className:a.TableListStyle.Wrap},(0,e.createElement)(a.Label,{className:a.TableListStyle.Label},(0,l.__)("Fields map","jet-form-builder")),(0,e.createElement)(a.Help,{className:a.TableListStyle.WhiteSpaceNormal},"Map your form fields to standard user’s fields. This links the form input to user profile data, so values are saved in the user’s account."),(0,e.createElement)(r.TableListContainer,null,(0,e.createElement)(r.TableListHead,{columns:[(0,l.__)("User Meta Fields","jet-form-builder"),(0,l.__)("Form Fields","jet-form-builder")]}),n.map((l=>(0,e.createElement)(r.TableListRow,{key:l.value,tag:l.value,label:l.label,help:l.help,isRequired:l.required},(({setShowError:r,htmlId:s})=>(0,e.createElement)(a.StyledSelectControl,{id:s,onBlur:()=>r(!0),options:o,formFields:o,value:t({name:l.value}),onChange:e=>i({nameField:l.value,value:e})})))))))},u=function({settings:t,onChangeSettingObj:r}){return(0,e.createElement)(a.RowControl,null,(({id:i})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(a.Label,{htmlFor:i},(0,l.__)("User Role","jet-form-builder")),(0,e.createElement)(a.StyledSelectControl,{multiple:!0,id:i,value:t.user_role,options:JetFBRegisterAction.userRoles,onChange:e=>r({user_role:e}),help:(0,l.__)("Hold Ctrl (Windows) or Command (Mac) to select multiple roles.","jet-form-builder")}))))},m=function({getMapField:t,setMapField:i}){const o=(0,s.useFields)({withInner:!1});return(0,e.createElement)("div",{createId:!1,className:a.TableListStyle.Wrap},(0,e.createElement)(a.Label,{className:a.TableListStyle.Label},(0,l.__)("User Meta","jet-form-builder")),(0,e.createElement)(a.Help,{className:a.TableListStyle.WhiteSpaceNormal},(0,l.__)('Map form fields to custom user meta fields (e.g., "Phone") not included in WordPress by default.',"jet-form-builder")),(0,e.createElement)(a.Help,{className:a.TableListStyle.WhiteSpaceNormal},(0,l.__)("Other settings of the target meta field may affect whether the value is saved as an array.","jet-form-builder")),(0,e.createElement)(r.TableListContainer,null,(0,e.createElement)(r.TableListHead,{columns:[(0,l.__)("Form Fields","jet-form-builder"),(0,l.__)("User Meta Fields","jet-form-builder")]}),o.map((l=>(0,e.createElement)(r.TableListRow,{key:l.value,tag:l.value,label:l.label},(({htmlId:o})=>(0,e.createElement)("div",{className:"jet-margin-bottom-wrapper"},(0,e.createElement)(a.StyledTextControl,{placeholder:"User meta field/key",id:o,value:t({source:"meta_fields_map",name:l.value}),onChange:e=>i({nameField:l.value,value:e,source:"meta_fields_map"})}),(0,e.createElement)(r.SingleValueAsArrayToggle,{fieldName:l.value,getMapField:t,setMapField:i}))))))))},c=function({settings:t,onChangeSettingObj:r}){const i=(0,s.useFields)({withInner:!1,placeholder:"--"});return(0,e.createElement)(a.RowControl,null,(({id:o})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(a.Label,{htmlFor:o},(0,l.__)('"Remember me" field:',"jet-form-builder")),(0,e.createElement)(a.StyledSelectControl,{id:o,value:t.remember_me_field,options:i,onChange:e=>r({remember_me_field:e})}))))},h=window.wp.primitives,f=(0,e.createElement)(h.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(h.Path,{fillRule:"evenodd",d:"M7.25 16.437a6.5 6.5 0 1 1 9.5 0V16A2.75 2.75 0 0 0 14 13.25h-4A2.75 2.75 0 0 0 7.25 16v.437Zm1.5 1.193a6.47 6.47 0 0 0 3.25.87 6.47 6.47 0 0 0 3.25-.87V16c0-.69-.56-1.25-1.25-1.25h-4c-.69 0-1.25.56-1.25 1.25v1.63ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm10-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",clipRule:"evenodd"})),b={type:"register_user",label:(0,l.__)("Register User","jet-form-builder"),edit:function(i){const{settings:s,onChangeSettingObj:n,getMapField:h,setMapField:f}=i;return(0,e.createElement)(a.StyledFlexControl,{direction:"column"},(0,e.createElement)(t.ToggleControl,{className:a.ClearBaseControlStyle,label:(0,l.__)("Allow creating new users by existing users","jet-form-builder"),checked:s.allow_register,onChange:e=>n({allow_register:e}),help:(0,l.__)("If this option is enabled, logged-in users with the selected role will be able to add new users using this form. If disabled, only non-logged-in users will be able to register themselves.","jet-form-builder")}),s.allow_register&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)(a.WideLine,null),(0,e.createElement)(o,{settings:s,onChangeSettingObj:n})),(0,e.createElement)(a.WideLine,null),(0,e.createElement)(d,{getMapField:h,setMapField:f}),(0,e.createElement)(a.WideLine,null),(0,e.createElement)(u,{settings:s,onChangeSettingObj:n}),(0,e.createElement)(a.WideLine,null),(0,e.createElement)(t.ToggleControl,{className:a.ClearBaseControlStyle,label:(0,l.__)("Log In User after Register:","jet-form-builder"),checked:s.log_in,onChange:e=>n({log_in:e}),help:(0,l.__)('To use the "Remember me" option, first add a checkbox, radio button, or switcher field to your form with a value of 1, and label it "Remember me" or similar. Then, select it here.',"jet-form-builder")}),s.log_in&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)(a.WideLine,null),(0,e.createElement)(c,{settings:s,onChangeSettingObj:n})),(0,e.createElement)(a.WideLine,null),(0,e.createElement)(t.ToggleControl,{className:a.ClearBaseControlStyle,label:(0,l.__)("Add User ID to form data:","jet-form-builder"),checked:s.add_user_id,onChange:e=>n({add_user_id:e}),help:(0,l.__)('Registered user ID will be added to form data. Current user ID will be added to form data only if "Allow creating new users by existing users" option was disabled.',"jet-form-builder")}),(0,e.createElement)(a.WideLine,null),(0,e.createElement)(m,{getMapField:h,setMapField:f}),(0,e.createElement)(a.WideLine,null),(0,e.createElement)(r.ActionMessages,{...i}))},icon:f,docHref:"https://jetformbuilder.com/features/register-user/",category:"user",validators:[({settings:e})=>!!e.allow_register&&!e?.role_can_register&&{type:"empty",property:"role_can_register"},({settings:e})=>{const t=[];for(const l of n){if(!l.required)continue;const r=e?.fields_map?.[l.value];r||t.push({type:"empty",property:"field_"+l.value})}return t}]};function _(){r.BaseComputedField.call(this),this.isSupported=function(e){return"register_user"===e.type&&e.selfSettings.add_user_id},this.getName=function(){return"user_id"},this.getHelp=function(){return(0,l.__)("A computed field from the Register User action.","jet-form-builder")}}_.prototype=Object.create(r.BaseComputedField.prototype);const p=_;(0,r.registerAction)(b),(0,r.addComputedField)(p)})(); \ No newline at end of file diff --git a/modules/actions-v2/send-email/assets/build/editor.asset.php b/modules/actions-v2/send-email/assets/build/editor.asset.php index 982b05ebe..06f50f197 100644 --- a/modules/actions-v2/send-email/assets/build/editor.asset.php +++ b/modules/actions-v2/send-email/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-i18n'), 'version' => '82bbb111e73bc5b517d8'); + array('react', 'wp-components', 'wp-i18n'), 'version' => '048dcbaf48c4b98ca605'); diff --git a/modules/actions-v2/send-email/assets/build/editor.js b/modules/actions-v2/send-email/assets/build/editor.js index dcfdf51da..b303f03c6 100644 --- a/modules/actions-v2/send-email/assets/build/editor.js +++ b/modules/actions-v2/send-email/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={123(e,t,n){n.d(t,{A:()=>i});var r=n(721),o=n.n(r),l=n(186),a=n.n(l)()(o());a.push([e.id,".s111vc0f .components-base-control__field{margin-bottom:0;}\n",""]);const i=a},186(e){e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n}).join("")},t.i=function(e,n,r,o,l){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(r)for(var i=0;i0?" ".concat(m[5]):""," {").concat(m[1],"}")),m[5]=l),n&&(m[2]?(m[1]="@media ".concat(m[2]," {").concat(m[1],"}"),m[2]=n):m[2]=n),o&&(m[4]?(m[1]="@supports (".concat(m[4],") {").concat(m[1],"}"),m[4]=o):m[4]="".concat(o)),t.push(m))}},t}},721(e){e.exports=function(e){return e[1]}},768(e,t,n){n.r(t),n.d(t,{default:()=>b});var r=n(264),o=n.n(r),l=n(449),a=n.n(l),i=n(811),c=n.n(i),s=n(272),m=n.n(s),d=n(332),u=n.n(d),p=n(745),f=n.n(p),h=n(123),g={};g.styleTagTransform=f(),g.setAttributes=m(),g.insert=c().bind(null,"head"),g.domAPI=a(),g.insertStyleElement=u(),o()(h.A,g);const b=h.A&&h.A.locals?h.A.locals:void 0},264(e){var t=[];function n(e){for(var n=-1,r=0;r0?" ".concat(n.layer):""," {")),r+=n.css,o&&(r+="}"),n.media&&(r+="}"),n.supports&&(r+="}");var l=n.sourceMap;l&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(l))))," */")),t.styleTagTransform(r,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},745(e){e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var l=t[r]={id:r,exports:{}};return e[r](l,l.exports,n),l.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nc=void 0;const r=window.React,o=window.wp.i18n,l=window.wp.components,a=window.jfb.components,{MacrosFields:i}=JetFBComponents,c=function({settings:e,onChangeSettingObj:t}){return(0,r.createElement)(a.RowControl,null,({id:n})=>(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.LabelWithActions,null,(0,r.createElement)(a.Label,{htmlFor:n},(0,o.__)("Reply to Email Address","jet-form-builder")),(0,r.createElement)(i,{onClick:n=>{var r;return t({reply_to_email:(null!==(r=e.reply_to_email)&&void 0!==r?r:"")+n})},withCurrent:!0})),(0,r.createElement)(a.StyledTextControl,{id:n,value:e.reply_to_email,onChange:e=>t({reply_to_email:e})})))},{MacrosFields:s}=JetFBComponents,m=function({settings:e,onChangeSettingObj:t}){return(0,r.createElement)(a.RowControl,null,({id:n})=>(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.LabelWithActions,null,(0,r.createElement)(a.Label,{htmlFor:n},(0,o.__)("Subject","jet-form-builder")),(0,r.createElement)(s,{onClick:n=>{var r;return t({subject:(null!==(r=e.subject)&&void 0!==r?r:"")+n})},withCurrent:!0})),(0,r.createElement)(a.StyledTextControl,{id:n,value:e.subject,onChange:e=>t({subject:e}),help:(0,o.__)("Define the subject line of the email. This will appear as the email's title when it is received. You can use form field macros to insert the values of form fields as part of the subject. To add macros, use the wrench icon to the right of the current option name.","jet-form-builder")})))},{MacrosFields:d}=JetFBComponents,u=function({settings:e,onChangeSettingObj:t}){return(0,r.createElement)(a.RowControl,null,({id:n})=>(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.LabelWithActions,null,(0,r.createElement)(a.Label,{htmlFor:n},(0,o.__)("From Name","jet-form-builder")),(0,r.createElement)(d,{onClick:n=>{var r;return t({from_name:(null!==(r=e.from_name)&&void 0!==r?r:"")+n})},withCurrent:!0})),(0,r.createElement)(a.StyledTextControl,{id:n,value:e.from_name,onChange:e=>t({from_name:e}),help:(0,o.__)("Specify the name that will appear as the sender of the email. You can use form field macros to insert the values of form fields as part of the name. To add macros, use the wrench icon to the right of the current option name.","jet-form-builder")})))},{MacrosFields:p}=JetFBComponents,f=function({settings:e,onChangeSettingObj:t}){return(0,r.createElement)(a.RowControl,null,({id:n})=>(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.LabelWithActions,null,(0,r.createElement)(a.Label,{htmlFor:n},(0,o.__)("From Email Address","jet-form-builder")),(0,r.createElement)(p,{onClick:n=>{var r;return t({from_address:(null!==(r=e.from_address)&&void 0!==r?r:"")+n})},withCurrent:!0})),(0,r.createElement)(a.StyledTextControl,{id:n,value:e.from_address,onChange:e=>t({from_address:e}),help:(0,o.__)("Specify the email address that will appear as the sender of the email. You can use form field macros to insert the values of form fields as part of the address. To add macros, use the wrench icon to the right of the current option name.","jet-form-builder")})))},h=window.jfb.actions;function g(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var b=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_=g(function(e){return b.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),y=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)})});const r=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&r.push(t[e]);return r.push(...n),r.join(" ")},v=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{n[t]=e[t]}),n},E=(e,t)=>{};const C=function(e){let t="";return n=>{const o=(o,l)=>{const{as:a=e,class:i=t}=o;var c;const s=function(e,t){const n=v(t,["as","class"]);if(!e){const e="function"==typeof _?{default:_}:_;Object.keys(n).forEach(t=>{e.default(t)||delete n[t]})}return n}(void 0===n.propsAsIs?!("string"==typeof a&&-1===a.indexOf("-")&&(c=a[0],c.toUpperCase()!==c)):n.propsAsIs,o);s.ref=l,s.className=n.atomic?y(n.class,s.className||i):y(s.className||i,n.class);const{vars:m}=n;if(m){const e={};for(const t in m){const r=m[t],l=r[0],a=r[1]||"",i="function"==typeof l?l(o):l;E(0,n.name),e[`--${t}`]=`${i}${a}`}const t=s.style||{},r=Object.keys(t);r.length>0&&r.forEach(n=>{e[n]=t[n]}),s.style=e}return e.__wyw_meta&&e!==a?(s.as=a,(0,r.createElement)(e,s)):(0,r.createElement)(a,s)},l=r.forwardRef?(0,r.forwardRef)(o):e=>{const t=v(e,["innerRef"]);return o(t,e.innerRef)};return l.displayName=n.name,l.__wyw_meta={className:n.class||t,extends:e},l}}(l.TextareaControl)({name:"StyledTextareaControl",class:"s111vc0f",propsAsIs:!0}),{MacrosFields:w}=JetFBComponents,S=function({settings:e,onChangeSettingObj:t}){const{hasError:n,setShowError:l}=(0,h.useActionValidatorProvider)({isSupported:e=>"content"===e?.property});return(0,r.createElement)(a.RowControl,null,({id:i})=>(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.LabelWithActions,null,(0,r.createElement)(a.RequiredLabel,{htmlFor:i},(0,o.__)("Content","jet-form-builder")),(0,r.createElement)(w,{onClick:n=>{var r;return t({content:(null!==(r=e.content)&&void 0!==r?r:"")+n})},withCurrent:!0})),(0,r.createElement)(a.RowControlEnd,{hasError:n},(0,r.createElement)(C,{id:i,value:e.content,onChange:e=>t({content:e}),help:(0,o.__)("Define the main body of the email. You can use form field macros to insert the values of form fields as part of the content. To add macros, use the wrench icon to the right of the current option name.","jet-form-builder"),onBlur:()=>l(!0)}))))};n(768);const j=window.jfb.blocksToActions,x=function({settings:e,onChangeSettingObj:t}){const n=(0,j.useFields)({withInner:!1});return(0,r.createElement)(a.RowControl,{createId:!1},(0,r.createElement)(a.Label,null,(0,o.__)("Attachments","jet-form-builder")),(0,r.createElement)(a.FormLabeledTokenField,{label:(0,o.__)("Add form field with attachment","jet-form-builder"),value:e.attachments,suggestions:n,onChange:e=>t({attachments:[...new Set(e)]}),__experimentalExpandOnFocus:!0}))},k=[{value:"",label:"--"},{value:"admin",label:(0,o.__)("Admin email","jet-form-builder")},{value:"form",label:(0,o.__)("Email from submitted form field","jet-form-builder")},{value:"custom",label:(0,o.__)("Custom email","jet-form-builder")}],T=[{value:"",label:"--"},{value:"text/plain",label:(0,o.__)("Plain text","jet-form-builder")},{value:"text/html",label:(0,o.__)("HTML","jet-form-builder")}],A={"text/plain":(0,o.__)("Sends the email as plain text without any formatting.","jet-form-builder"),"text/html":(0,o.__)("Sends the email with HTML formatting, allowing for rich text, images, and other multimedia elements","jet-form-builder")},F={admin:(0,o.__)("Sends the email to the admin email address configured in General Settings.","jet-form-builder"),custom:(0,o.__)("Sends the email to a custom address specified in the Email Address field below.","jet-form-builder"),form:(0,o.__)("Uses the email address provided by the user in the form.","jet-form-builder")},L={form:(0,o.__)("Uses the email address provided by the user in the form.","jet-form-builder"),custom:(0,o.__)("Manually set a custom reply-to email address.","jet-form-builder")},O=function({settings:e,onChangeSettingObj:t}){const n=(0,j.useFields)({withInner:!1,placeholder:"--"});return(0,r.createElement)(r.Fragment,null,(0,r.createElement)(h.ValidatedSelectControl,{value:e.mail_to,onChange:e=>t({mail_to:e}),isErrorSupported:e=>"mail_to"===e?.property,label:(0,o.__)("Mail To","jet-form-builder"),help:F[e.mail_to],options:k,required:!0}),"custom"===e.mail_to&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedTextControl,{label:(0,o.__)("Email Address","jet-form-builder"),help:(0,o.__)("To apply multiple mailing addresses, separate them with commas","jet-form-builder"),value:e.custom_email,onChange:e=>t({custom_email:e}),required:!0})),"form"===e.mail_to&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{label:(0,o.__)("From field","jet-form-builder"),help:(0,o.__)('To apply multiple mailing addresses, you can select a "Checkbox Field" or a "Select field" with enabled "Is multiple" option.',"jet-form-builder"),value:e.from_field,onChange:e=>t({from_field:e}),options:n,isErrorSupported:e=>"from_field"===e?.property,required:!0})))},R=function({settings:e,onChangeSettingObj:t}){const n=(0,j.useFields)({withInner:!1,placeholder:"--"});return(0,r.createElement)(r.Fragment,null,(0,r.createElement)(h.ValidatedSelectControl,{value:e.cc_from,onChange:e=>t({cc_from:e}),label:(0,o.__)("CC Address from","jet-form-builder"),options:k,help:F[e.cc_from]}),"custom"===e.cc_from&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedTextControl,{label:(0,o.__)("CC Email Address","jet-form-builder"),help:(0,o.__)("To apply multiple mailing addresses, separate them with commas","jet-form-builder"),value:e.cc_email,onChange:e=>t({cc_email:e}),isErrorSupported:e=>"cc_email"===e?.property,required:!0})),"form"===e.cc_from&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{label:(0,o.__)("CC Address From field","jet-form-builder"),help:(0,o.__)('To apply multiple mailing addresses, you can select a "Checkbox Field" or a "Select field" with enabled "Is multiple" option.',"jet-form-builder"),value:e.cc_field,onChange:e=>t({cc_field:e}),options:n,isErrorSupported:e=>"cc_field"===e?.property,required:!0})),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{value:e.bcc_from,onChange:e=>t({bcc_from:e}),label:(0,o.__)("BCC Address from","jet-form-builder"),options:k,help:F[e.bcc_from]}),"custom"===e.bcc_from&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedTextControl,{label:(0,o.__)("BCC Email Address","jet-form-builder"),help:(0,o.__)("To apply multiple mailing addresses, separate them with commas","jet-form-builder"),value:e.bcc_email,onChange:e=>t({bcc_email:e}),isErrorSupported:e=>"bcc_email"===e?.property,required:!0})),"form"===e.bcc_from&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{label:(0,o.__)("BCC Address From field","jet-form-builder"),help:(0,o.__)('To apply multiple mailing addresses, you can select a "Checkbox Field" or a "Select field" with enabled "Is multiple" option.',"jet-form-builder"),value:e.bcc_field,onChange:e=>t({bcc_field:e}),options:n,isErrorSupported:e=>"bcc_field"===e?.property,required:!0})))},M={type:"send_email",label:(0,o.__)("Send Email","jet-form-builder"),edit:function(e){var t,n;const{settings:i,onChangeSettingObj:s}=e,d=(0,j.useFields)({withInner:!1,placeholder:"--"});return(0,r.createElement)(l.Flex,{direction:"column"},(0,r.createElement)(O,{...e}),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(l.ToggleControl,{className:a.ClearBaseControlStyle,label:(0,o.__)("Use CC/BCC","jet-form-builder"),checked:i.use_cc_bcc,onChange:e=>s({use_cc_bcc:e})}),i.use_cc_bcc&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(R,{...e})),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{label:(0,o.__)("Reply To","jet-form-builder"),value:i.reply_to,onChange:e=>s({reply_to:e}),options:k,help:null!==(t=L[i.reply_to])&&void 0!==t?t:""}),"custom"===i.reply_to&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(c,{...e})),"form"===i.reply_to&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{label:(0,o.__)("Reply To Email From Field","jet-form-builder"),value:i.reply_from_field,onChange:e=>s({reply_from_field:e}),options:d})),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(m,{settings:i,onChangeSettingObj:s}),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(u,{settings:i,onChangeSettingObj:s}),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(f,{settings:i,onChangeSettingObj:s}),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{label:(0,o.__)("Content type","jet-form-builder"),value:i.content_type,onChange:e=>s({content_type:e}),options:T,help:null!==(n=A[i.content_type])&&void 0!==n?n:""}),Boolean(!i.content_type||"text/html"===i.content_type)&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(l.ToggleControl,{className:a.ClearBaseControlStyle,label:(0,o.__)("Disable Auto-Formatting","jet-form-builder"),checked:i.disable_format,onChange:e=>s({disable_format:e}),help:(0,o.__)("By default, each new line in the email content field is changed to a separate paragraph element. And each link turns into a clickable hyperlink. To prevent this, enable this option.","jet-form-builder")})),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(S,{settings:i,onChangeSettingObj:s}),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(x,{settings:i,onChangeSettingObj:s}))},icon:(0,r.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,r.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,r.createElement)("g",null,(0,r.createElement)("path",{d:"M19 14.5v-9c0-.83-.67-1.5-1.5-1.5H3.49c-.83 0-1.5.67-1.5 1.5v9c0 .83.67 1.5 1.5 1.5H17.5c.83 0 1.5-.67 1.5-1.5zm-1.31-9.11c.33.33.15.67-.03.84L13.6 9.95l3.9 4.06c.12.14.2.36.06.51-.13.16-.43.15-.56.05l-4.37-3.73-2.14 1.95-2.13-1.95-4.37 3.73c-.13.1-.43.11-.56-.05-.14-.15-.06-.37.06-.51l3.9-4.06-4.06-3.72c-.18-.17-.36-.51-.03-.84s.67-.17.95.07l6.24 5.04 6.25-5.04c.28-.24.62-.4.95-.07z"}))),docHref:"https://jetformbuilder.com/features/send-email/",category:"communication",validators:[({settings:e})=>!e?.mail_to&&{type:"empty",property:"mail_to"},({settings:e})=>!e?.content&&{type:"empty",property:"content"},({settings:e})=>"custom"===e?.mail_to&&!e?.custom_email&&{type:"empty",property:"custom_email"},({settings:e})=>"form"===e?.mail_to&&!e?.from_field&&{type:"empty",property:"from_field"},({settings:e})=>!("custom"!==e?.cc_from||!e.use_cc_bcc)&&!e?.cc_email&&{property:"cc_email"},({settings:e})=>!("form"!==e?.cc_from||!e.use_cc_bcc)&&!e?.cc_field&&{property:"cc_field"},({settings:e})=>!("custom"!==e?.bcc_from||!e.use_cc_bcc)&&!e?.bcc_email&&{property:"bcc_email"},({settings:e})=>!("form"!==e?.bcc_from||!e.use_cc_bcc)&&!e?.bcc_field&&{property:"bcc_field"}]};(0,h.registerAction)(M)})(); \ No newline at end of file +(()=>{"use strict";var e={123:(e,t,n)=>{n.d(t,{A:()=>i});var r=n(721),o=n.n(r),l=n(186),a=n.n(l)()(o());a.push([e.id,".s111vc0f .components-base-control__field{margin-bottom:0;}\n",""]);const i=a},186:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,r,o,l){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(r)for(var i=0;i0?" ".concat(m[5]):""," {").concat(m[1],"}")),m[5]=l),n&&(m[2]?(m[1]="@media ".concat(m[2]," {").concat(m[1],"}"),m[2]=n):m[2]=n),o&&(m[4]?(m[1]="@supports (".concat(m[4],") {").concat(m[1],"}"),m[4]=o):m[4]="".concat(o)),t.push(m))}},t}},264:e=>{var t=[];function n(e){for(var n=-1,r=0;r{e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},332:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},449:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var r="";n.supports&&(r+="@supports (".concat(n.supports,") {")),n.media&&(r+="@media ".concat(n.media," {"));var o=void 0!==n.layer;o&&(r+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),r+=n.css,o&&(r+="}"),n.media&&(r+="}"),n.supports&&(r+="}");var l=n.sourceMap;l&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(l))))," */")),t.styleTagTransform(r,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},721:e=>{e.exports=function(e){return e[1]}},745:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},768:(e,t,n)=>{n.r(t),n.d(t,{default:()=>b});var r=n(264),o=n.n(r),l=n(449),a=n.n(l),i=n(811),c=n.n(i),s=n(272),m=n.n(s),d=n(332),u=n.n(d),p=n(745),f=n.n(p),h=n(123),g={};g.styleTagTransform=f(),g.setAttributes=m(),g.insert=c().bind(null,"head"),g.domAPI=a(),g.insertStyleElement=u(),o()(h.A,g);const b=h.A&&h.A.locals?h.A.locals:void 0},811:e=>{var t={};e.exports=function(e,n){var r=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!r)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");r.appendChild(n)}}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var l=t[r]={id:r,exports:{}};return e[r](l,l.exports,n),l.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nc=void 0;const r=window.React,o=window.wp.i18n,l=window.wp.components,a=window.jfb.components,{MacrosFields:i}=JetFBComponents,c=function({settings:e,onChangeSettingObj:t}){return(0,r.createElement)(a.RowControl,null,(({id:n})=>(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.LabelWithActions,null,(0,r.createElement)(a.Label,{htmlFor:n},(0,o.__)("Reply to Email Address","jet-form-builder")),(0,r.createElement)(i,{onClick:n=>{var r;return t({reply_to_email:(null!==(r=e.reply_to_email)&&void 0!==r?r:"")+n})},withCurrent:!0})),(0,r.createElement)(a.StyledTextControl,{id:n,value:e.reply_to_email,onChange:e=>t({reply_to_email:e})}))))},{MacrosFields:s}=JetFBComponents,m=function({settings:e,onChangeSettingObj:t}){return(0,r.createElement)(a.RowControl,null,(({id:n})=>(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.LabelWithActions,null,(0,r.createElement)(a.Label,{htmlFor:n},(0,o.__)("Subject","jet-form-builder")),(0,r.createElement)(s,{onClick:n=>{var r;return t({subject:(null!==(r=e.subject)&&void 0!==r?r:"")+n})},withCurrent:!0})),(0,r.createElement)(a.StyledTextControl,{id:n,value:e.subject,onChange:e=>t({subject:e}),help:(0,o.__)("Define the subject line of the email. This will appear as the email's title when it is received. You can use form field macros to insert the values of form fields as part of the subject. To add macros, use the wrench icon to the right of the current option name.","jet-form-builder")}))))},{MacrosFields:d}=JetFBComponents,u=function({settings:e,onChangeSettingObj:t}){return(0,r.createElement)(a.RowControl,null,(({id:n})=>(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.LabelWithActions,null,(0,r.createElement)(a.Label,{htmlFor:n},(0,o.__)("From Name","jet-form-builder")),(0,r.createElement)(d,{onClick:n=>{var r;return t({from_name:(null!==(r=e.from_name)&&void 0!==r?r:"")+n})},withCurrent:!0})),(0,r.createElement)(a.StyledTextControl,{id:n,value:e.from_name,onChange:e=>t({from_name:e}),help:(0,o.__)("Specify the name that will appear as the sender of the email. You can use form field macros to insert the values of form fields as part of the name. To add macros, use the wrench icon to the right of the current option name.","jet-form-builder")}))))},{MacrosFields:p}=JetFBComponents,f=function({settings:e,onChangeSettingObj:t}){return(0,r.createElement)(a.RowControl,null,(({id:n})=>(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.LabelWithActions,null,(0,r.createElement)(a.Label,{htmlFor:n},(0,o.__)("From Email Address","jet-form-builder")),(0,r.createElement)(p,{onClick:n=>{var r;return t({from_address:(null!==(r=e.from_address)&&void 0!==r?r:"")+n})},withCurrent:!0})),(0,r.createElement)(a.StyledTextControl,{id:n,value:e.from_address,onChange:e=>t({from_address:e}),help:(0,o.__)("Specify the email address that will appear as the sender of the email. You can use form field macros to insert the values of form fields as part of the address. To add macros, use the wrench icon to the right of the current option name.","jet-form-builder")}))))},h=window.jfb.actions;function g(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var b=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_=g((function(e){return b.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),y=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)}))}));const r=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&r.push(t[e]);return r.push(...n),r.join(" ")},v=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach((t=>{n[t]=e[t]})),n};const E=function(e){let t="";return n=>{const o=(o,l)=>{const{as:a=e,class:i=t}=o;var c;const s=function(e,t){const n=v(t,["as","class"]);if(!e){const e="function"==typeof _?{default:_}:_;Object.keys(n).forEach((t=>{e.default(t)||delete n[t]}))}return n}(void 0===n.propsAsIs?!("string"==typeof a&&-1===a.indexOf("-")&&(c=a[0],c.toUpperCase()!==c)):n.propsAsIs,o);s.ref=l,s.className=n.atomic?y(n.class,s.className||i):y(s.className||i,n.class);const{vars:m}=n;if(m){const e={};for(const t in m){const r=m[t],l=r[0],a=r[1]||"",i="function"==typeof l?l(o):l;n.name,e[`--${t}`]=`${i}${a}`}const t=s.style||{},r=Object.keys(t);r.length>0&&r.forEach((n=>{e[n]=t[n]})),s.style=e}return e.__wyw_meta&&e!==a?(s.as=a,(0,r.createElement)(e,s)):(0,r.createElement)(a,s)},l=r.forwardRef?(0,r.forwardRef)(o):e=>{const t=v(e,["innerRef"]);return o(t,e.innerRef)};return l.displayName=n.name,l.__wyw_meta={className:n.class||t,extends:e},l}}(l.TextareaControl)({name:"StyledTextareaControl",class:"s111vc0f",propsAsIs:!0}),{MacrosFields:C}=JetFBComponents,w=function({settings:e,onChangeSettingObj:t}){const{hasError:n,setShowError:l}=(0,h.useActionValidatorProvider)({isSupported:e=>"content"===e?.property});return(0,r.createElement)(a.RowControl,null,(({id:i})=>(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.LabelWithActions,null,(0,r.createElement)(a.RequiredLabel,{htmlFor:i},(0,o.__)("Content","jet-form-builder")),(0,r.createElement)(C,{onClick:n=>{var r;return t({content:(null!==(r=e.content)&&void 0!==r?r:"")+n})},withCurrent:!0})),(0,r.createElement)(a.RowControlEnd,{hasError:n},(0,r.createElement)(E,{id:i,value:e.content,onChange:e=>t({content:e}),help:(0,o.__)("Define the main body of the email. You can use form field macros to insert the values of form fields as part of the content. To add macros, use the wrench icon to the right of the current option name.","jet-form-builder"),onBlur:()=>l(!0)})))))};n(768);const S=window.jfb.blocksToActions,j=function({settings:e,onChangeSettingObj:t}){const n=(0,S.useFields)({withInner:!1});return(0,r.createElement)(a.RowControl,{createId:!1},(0,r.createElement)(a.Label,null,(0,o.__)("Attachments","jet-form-builder")),(0,r.createElement)(a.FormLabeledTokenField,{label:(0,o.__)("Add form field with attachment","jet-form-builder"),value:e.attachments,suggestions:n,onChange:e=>t({attachments:[...new Set(e)]}),__experimentalExpandOnFocus:!0}))},x=[{value:"",label:"--"},{value:"admin",label:(0,o.__)("Admin email","jet-form-builder")},{value:"form",label:(0,o.__)("Email from submitted form field","jet-form-builder")},{value:"custom",label:(0,o.__)("Custom email","jet-form-builder")}],k=[{value:"",label:"--"},{value:"text/plain",label:(0,o.__)("Plain text","jet-form-builder")},{value:"text/html",label:(0,o.__)("HTML","jet-form-builder")}],T={"text/plain":(0,o.__)("Sends the email as plain text without any formatting.","jet-form-builder"),"text/html":(0,o.__)("Sends the email with HTML formatting, allowing for rich text, images, and other multimedia elements","jet-form-builder")},F={admin:(0,o.__)("Sends the email to the admin email address configured in General Settings.","jet-form-builder"),custom:(0,o.__)("Sends the email to a custom address specified in the Email Address field below.","jet-form-builder"),form:(0,o.__)("Uses the email address provided by the user in the form.","jet-form-builder")},A={form:(0,o.__)("Uses the email address provided by the user in the form.","jet-form-builder"),custom:(0,o.__)("Manually set a custom reply-to email address.","jet-form-builder")},L=function({settings:e,onChangeSettingObj:t}){const n=(0,S.useFields)({withInner:!1,placeholder:"--"});return(0,r.createElement)(r.Fragment,null,(0,r.createElement)(h.ValidatedSelectControl,{value:e.mail_to,onChange:e=>t({mail_to:e}),isErrorSupported:e=>"mail_to"===e?.property,label:(0,o.__)("Mail To","jet-form-builder"),help:F[e.mail_to],options:x,required:!0}),"custom"===e.mail_to&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedTextControl,{label:(0,o.__)("Email Address","jet-form-builder"),help:(0,o.__)("To apply multiple mailing addresses, separate them with commas","jet-form-builder"),value:e.custom_email,onChange:e=>t({custom_email:e}),required:!0})),"form"===e.mail_to&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{label:(0,o.__)("From field","jet-form-builder"),help:(0,o.__)('To apply multiple mailing addresses, you can select a "Checkbox Field" or a "Select field" with enabled "Is multiple" option.',"jet-form-builder"),value:e.from_field,onChange:e=>t({from_field:e}),options:n,isErrorSupported:e=>"from_field"===e?.property,required:!0})))},O=function({settings:e,onChangeSettingObj:t}){const n=(0,S.useFields)({withInner:!1,placeholder:"--"});return(0,r.createElement)(r.Fragment,null,(0,r.createElement)(h.ValidatedSelectControl,{value:e.cc_from,onChange:e=>t({cc_from:e}),label:(0,o.__)("CC Address from","jet-form-builder"),options:x,help:F[e.cc_from]}),"custom"===e.cc_from&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedTextControl,{label:(0,o.__)("CC Email Address","jet-form-builder"),help:(0,o.__)("To apply multiple mailing addresses, separate them with commas","jet-form-builder"),value:e.cc_email,onChange:e=>t({cc_email:e}),isErrorSupported:e=>"cc_email"===e?.property,required:!0})),"form"===e.cc_from&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{label:(0,o.__)("CC Address From field","jet-form-builder"),help:(0,o.__)('To apply multiple mailing addresses, you can select a "Checkbox Field" or a "Select field" with enabled "Is multiple" option.',"jet-form-builder"),value:e.cc_field,onChange:e=>t({cc_field:e}),options:n,isErrorSupported:e=>"cc_field"===e?.property,required:!0})),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{value:e.bcc_from,onChange:e=>t({bcc_from:e}),label:(0,o.__)("BCC Address from","jet-form-builder"),options:x,help:F[e.bcc_from]}),"custom"===e.bcc_from&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedTextControl,{label:(0,o.__)("BCC Email Address","jet-form-builder"),help:(0,o.__)("To apply multiple mailing addresses, separate them with commas","jet-form-builder"),value:e.bcc_email,onChange:e=>t({bcc_email:e}),isErrorSupported:e=>"bcc_email"===e?.property,required:!0})),"form"===e.bcc_from&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{label:(0,o.__)("BCC Address From field","jet-form-builder"),help:(0,o.__)('To apply multiple mailing addresses, you can select a "Checkbox Field" or a "Select field" with enabled "Is multiple" option.',"jet-form-builder"),value:e.bcc_field,onChange:e=>t({bcc_field:e}),options:n,isErrorSupported:e=>"bcc_field"===e?.property,required:!0})))},R={type:"send_email",label:(0,o.__)("Send Email","jet-form-builder"),edit:function(e){var t,n;const{settings:i,onChangeSettingObj:s}=e,d=(0,S.useFields)({withInner:!1,placeholder:"--"});return(0,r.createElement)(l.Flex,{direction:"column"},(0,r.createElement)(L,{...e}),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(l.ToggleControl,{className:a.ClearBaseControlStyle,label:(0,o.__)("Use CC/BCC","jet-form-builder"),checked:i.use_cc_bcc,onChange:e=>s({use_cc_bcc:e})}),i.use_cc_bcc&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(O,{...e})),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{label:(0,o.__)("Reply To","jet-form-builder"),value:i.reply_to,onChange:e=>s({reply_to:e}),options:x,help:null!==(t=A[i.reply_to])&&void 0!==t?t:""}),"custom"===i.reply_to&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(c,{...e})),"form"===i.reply_to&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{label:(0,o.__)("Reply To Email From Field","jet-form-builder"),value:i.reply_from_field,onChange:e=>s({reply_from_field:e}),options:d})),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(m,{settings:i,onChangeSettingObj:s}),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(u,{settings:i,onChangeSettingObj:s}),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(f,{settings:i,onChangeSettingObj:s}),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(h.ValidatedSelectControl,{label:(0,o.__)("Content type","jet-form-builder"),value:i.content_type,onChange:e=>s({content_type:e}),options:k,help:null!==(n=T[i.content_type])&&void 0!==n?n:""}),Boolean(!i.content_type||"text/html"===i.content_type)&&(0,r.createElement)(r.Fragment,null,(0,r.createElement)(a.WideLine,null),(0,r.createElement)(l.ToggleControl,{className:a.ClearBaseControlStyle,label:(0,o.__)("Disable Auto-Formatting","jet-form-builder"),checked:i.disable_format,onChange:e=>s({disable_format:e}),help:(0,o.__)("By default, each new line in the email content field is changed to a separate paragraph element. And each link turns into a clickable hyperlink. To prevent this, enable this option.","jet-form-builder")})),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(w,{settings:i,onChangeSettingObj:s}),(0,r.createElement)(a.WideLine,null),(0,r.createElement)(j,{settings:i,onChangeSettingObj:s}))},icon:(0,r.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,r.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,r.createElement)("g",null,(0,r.createElement)("path",{d:"M19 14.5v-9c0-.83-.67-1.5-1.5-1.5H3.49c-.83 0-1.5.67-1.5 1.5v9c0 .83.67 1.5 1.5 1.5H17.5c.83 0 1.5-.67 1.5-1.5zm-1.31-9.11c.33.33.15.67-.03.84L13.6 9.95l3.9 4.06c.12.14.2.36.06.51-.13.16-.43.15-.56.05l-4.37-3.73-2.14 1.95-2.13-1.95-4.37 3.73c-.13.1-.43.11-.56-.05-.14-.15-.06-.37.06-.51l3.9-4.06-4.06-3.72c-.18-.17-.36-.51-.03-.84s.67-.17.95.07l6.24 5.04 6.25-5.04c.28-.24.62-.4.95-.07z"}))),docHref:"https://jetformbuilder.com/features/send-email/",category:"communication",validators:[({settings:e})=>!e?.mail_to&&{type:"empty",property:"mail_to"},({settings:e})=>!e?.content&&{type:"empty",property:"content"},({settings:e})=>"custom"===e?.mail_to&&!e?.custom_email&&{type:"empty",property:"custom_email"},({settings:e})=>"form"===e?.mail_to&&!e?.from_field&&{type:"empty",property:"from_field"},({settings:e})=>!("custom"!==e?.cc_from||!e.use_cc_bcc)&&!e?.cc_email&&{property:"cc_email"},({settings:e})=>!("form"!==e?.cc_from||!e.use_cc_bcc)&&!e?.cc_field&&{property:"cc_field"},({settings:e})=>!("custom"!==e?.bcc_from||!e.use_cc_bcc)&&!e?.bcc_email&&{property:"bcc_email"},({settings:e})=>!("form"!==e?.bcc_from||!e.use_cc_bcc)&&!e?.bcc_field&&{property:"bcc_field"}]};(0,h.registerAction)(R)})(); \ No newline at end of file diff --git a/modules/actions-v2/update-user/assets/build/editor.asset.php b/modules/actions-v2/update-user/assets/build/editor.asset.php index 859aa8c5e..3294b5b59 100644 --- a/modules/actions-v2/update-user/assets/build/editor.asset.php +++ b/modules/actions-v2/update-user/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '4babbc89fbca8e0c65db'); + array('react', 'wp-components', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '1ab6412207398acfd0db'); diff --git a/modules/actions-v2/update-user/assets/build/editor.js b/modules/actions-v2/update-user/assets/build/editor.js index df09a5cd0..22e6835f3 100644 --- a/modules/actions-v2/update-user/assets/build/editor.js +++ b/modules/actions-v2/update-user/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";const e=window.React,t=window.wp.element,l=window.jfb.components,{CurrentActionEditContext:r,ActionFieldsMapContext:o,CurrentPropertyMapContext:n}=JetFBComponents,i=function(){const{FieldSelect:i,property:s}=(0,t.useContext)(n),{setMapField:a,getMapField:d}=(0,t.useContext)(r),{name:u,index:m}=(0,t.useContext)(o);return"user_meta"===s?(0,e.createElement)("div",{className:"components-base-control jet-margin-bottom-wrapper"},i,(0,e.createElement)(l.StyledTextControl,{key:u+m+"_text",value:d({name:u}),onChange:e=>a({nameField:u,value:e})})):i},s=window.jfb.blocksToActions,a=window.jfb.actions,d=window.wp.components,u=window.wp.i18n,{ActionFieldsMap:m,WrapperRequiredControl:c,DynamicPropertySelect:p}=JetFBComponents,w=window.wp.primitives,f=(0,e.createElement)(w.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(w.Path,{fillRule:"evenodd",d:"M7.25 16.437a6.5 6.5 0 1 1 9.5 0V16A2.75 2.75 0 0 0 14 13.25h-4A2.75 2.75 0 0 0 7.25 16v.437Zm1.5 1.193a6.47 6.47 0 0 0 3.25.87 6.47 6.47 0 0 0 3.25-.87V16c0-.69-.56-1.25-1.25-1.25h-4c-.69 0-1.25.56-1.25 1.25v1.63ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm10-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",clipRule:"evenodd"})),_={type:"update_user",label:(0,u.__)("Update User","jet-form-builder"),edit:function(t){var r,o;const n=(0,a.convertListToFieldsMap)((0,s.useFields)({withInner:!1})),{settings:w,onChangeSetting:f,source:_,label:b}=t;(0,s.useSanitizeFieldsMap)();const{hasError:g}=(0,a.useActionValidatorProvider)({isSupported:e=>"field_id"===e?.property}),v=Object.values(null!==(r=w?.fields_map)&&void 0!==r?r:{}).includes("role"),h=(Array.isArray(w?.user_role)?w.user_role:w?.user_role?[w.user_role]:[]).filter(Boolean),y=null!==(o=_.globalSelfPromotableRoles)&&void 0!==o?o:[],E=h.some(e=>!y.includes(e));return(0,e.createElement)(d.Flex,{direction:"column"},(0,e.createElement)(m,{label:b("fields_map"),fields:n,customHelp:()=>g&&(0,e.createElement)(l.IconText,null,(0,u.__)("Please select a field for User ID","jet-form-builder"))},(0,e.createElement)(c,null,(0,e.createElement)(p,{dynamic:["user_meta"]},(0,e.createElement)(i,null)))),(v||E)&&(0,e.createElement)(d.Notice,{status:"warning",isDismissible:!1},v&&(0,u.__)('Role values from Fields Map, including User Meta with the key "role", only work for users who can promote users, or when the submitted role is already allowed for self-promotion.',"jet-form-builder"),v&&E&&" ",E&&(0,u.__)("Selected User Role values outside the global Self-Promotable Roles list may be skipped for users without the promote_users capability.","jet-form-builder")," ",(0,e.createElement)("a",{href:_.globalSettingsUrl,target:"_blank",rel:"noopener noreferrer"},(0,u.__)("Manage in JetFormBuilder Settings.","jet-form-builder"))),(0,e.createElement)(l.WideLine,null),(0,e.createElement)(l.RowControl,null,({id:t})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(l.Label,{htmlFor:t},(0,u.__)("User role","jet-form-builder")),(0,e.createElement)(l.StyledSelectControl,{multiple:!0,id:t,value:w.user_role,options:_.userRoles,onChange:e=>f(e,"user_role"),help:(0,u.__)("Hold Ctrl (Windows) or Command (Mac) to select multiple roles.","jet-form-builder")}))),(0,e.createElement)(l.WideLine,null),(0,e.createElement)(a.ActionMessages,{...t}))},icon:f,docHref:"https://jetformbuilder.com/features/update-user/",category:"user",validators:[({settings:e})=>{var t;return!Object.values(null!==(t=e?.fields_map)&&void 0!==t?t:{}).some(e=>"ID"===e)&&{type:"empty",property:"field_id"}}]};(0,a.registerAction)(_)})(); \ No newline at end of file +(()=>{"use strict";const e=window.React,t=window.wp.element,l=window.jfb.components,{CurrentActionEditContext:r,ActionFieldsMapContext:o,CurrentPropertyMapContext:n}=JetFBComponents,i=function(){const{FieldSelect:i,property:s}=(0,t.useContext)(n),{setMapField:a,getMapField:d}=(0,t.useContext)(r),{name:u,index:m}=(0,t.useContext)(o);return"user_meta"===s?(0,e.createElement)("div",{className:"components-base-control jet-margin-bottom-wrapper"},i,(0,e.createElement)(l.StyledTextControl,{key:u+m+"_text",value:d({name:u}),onChange:e=>a({nameField:u,value:e})})):i},s=window.jfb.blocksToActions,a=window.jfb.actions,d=window.wp.components,u=window.wp.i18n,{ActionFieldsMap:m,WrapperRequiredControl:c,DynamicPropertySelect:p}=JetFBComponents,w=window.wp.primitives,f=(0,e.createElement)(w.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(w.Path,{fillRule:"evenodd",d:"M7.25 16.437a6.5 6.5 0 1 1 9.5 0V16A2.75 2.75 0 0 0 14 13.25h-4A2.75 2.75 0 0 0 7.25 16v.437Zm1.5 1.193a6.47 6.47 0 0 0 3.25.87 6.47 6.47 0 0 0 3.25-.87V16c0-.69-.56-1.25-1.25-1.25h-4c-.69 0-1.25.56-1.25 1.25v1.63ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm10-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",clipRule:"evenodd"})),_={type:"update_user",label:(0,u.__)("Update User","jet-form-builder"),edit:function(t){var r,o;const n=(0,a.convertListToFieldsMap)((0,s.useFields)({withInner:!1})),{settings:w,onChangeSetting:f,source:_,label:b}=t;(0,s.useSanitizeFieldsMap)();const{hasError:g}=(0,a.useActionValidatorProvider)({isSupported:e=>"field_id"===e?.property}),v=Object.values(null!==(r=w?.fields_map)&&void 0!==r?r:{}).includes("role"),h=(Array.isArray(w?.user_role)?w.user_role:w?.user_role?[w.user_role]:[]).filter(Boolean),y=null!==(o=_.globalSelfPromotableRoles)&&void 0!==o?o:[],E=h.some((e=>!y.includes(e)));return(0,e.createElement)(d.Flex,{direction:"column"},(0,e.createElement)(m,{label:b("fields_map"),fields:n,customHelp:()=>g&&(0,e.createElement)(l.IconText,null,(0,u.__)("Please select a field for User ID","jet-form-builder"))},(0,e.createElement)(c,null,(0,e.createElement)(p,{dynamic:["user_meta"]},(0,e.createElement)(i,null)))),(v||E)&&(0,e.createElement)(d.Notice,{status:"warning",isDismissible:!1},v&&(0,u.__)('Role values from Fields Map, including User Meta with the key "role", only work for users who can promote users, or when the submitted role is already allowed for self-promotion.',"jet-form-builder"),v&&E&&" ",E&&(0,u.__)("Selected User Role values outside the global Self-Promotable Roles list may be skipped for users without the promote_users capability.","jet-form-builder")," ",(0,e.createElement)("a",{href:_.globalSettingsUrl,target:"_blank",rel:"noopener noreferrer"},(0,u.__)("Manage in JetFormBuilder Settings.","jet-form-builder"))),(0,e.createElement)(l.WideLine,null),(0,e.createElement)(l.RowControl,null,(({id:t})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(l.Label,{htmlFor:t},(0,u.__)("User role","jet-form-builder")),(0,e.createElement)(l.StyledSelectControl,{multiple:!0,id:t,value:w.user_role,options:_.userRoles,onChange:e=>f(e,"user_role"),help:(0,u.__)("Hold Ctrl (Windows) or Command (Mac) to select multiple roles.","jet-form-builder")})))),(0,e.createElement)(l.WideLine,null),(0,e.createElement)(a.ActionMessages,{...t}))},icon:f,docHref:"https://jetformbuilder.com/features/update-user/",category:"user",validators:[({settings:e})=>{var t;return!Object.values(null!==(t=e?.fields_map)&&void 0!==t?t:{}).some((e=>"ID"===e))&&{type:"empty",property:"field_id"}}]};(0,a.registerAction)(_)})(); \ No newline at end of file diff --git a/modules/active-campaign/assets/build/admin/jfb-settings.asset.php b/modules/active-campaign/assets/build/admin/jfb-settings.asset.php index 96b8789f0..b90abf6c5 100644 --- a/modules/active-campaign/assets/build/admin/jfb-settings.asset.php +++ b/modules/active-campaign/assets/build/admin/jfb-settings.asset.php @@ -1 +1 @@ - array(), 'version' => '2c67048d4a3b6b22b079'); + array(), 'version' => 'f4f35b10d1568f802f0f'); diff --git a/modules/active-campaign/assets/build/admin/jfb-settings.js b/modules/active-campaign/assets/build/admin/jfb-settings.js index ec560e250..016212d74 100644 --- a/modules/active-campaign/assets/build/admin/jfb-settings.js +++ b/modules/active-campaign/assets/build/admin/jfb-settings.js @@ -1 +1 @@ -(()=>{"use strict";var e={d:(t,i)=>{for(var a in i)e.o(i,a)&&!e.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:i[a]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{component:()=>c,title:()=>s});var i=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",[i("cx-vui-input",{attrs:{label:e.label.api_key,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.api_key,callback:function(t){e.api_key=t},expression:"api_key"}}),e._v(" "),i("cx-vui-input",{attrs:{label:e.label.api_url,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.api_url,callback:function(t){e.api_url=t},expression:"api_url"}}),e._v(" "),i("p",{staticClass:"fb-description"},[e._v(e._s(e.help.apiPref)+" "),i("a",{attrs:{href:e.help.apiLink,target:"_blank"}},[e._v(e._s(e.help.apiLinkLabel))])])],1)};i._withStripped=!0;const{__:a}=wp.i18n,r={api_key:a("API Key","jet-form-builder"),api_url:a("API URL","jet-form-builder")},n={apiPref:a("How to obtain your ActiveCampaign API URL and Key? More info"),apiLinkLabel:a("here"),apiLink:"https://help.activecampaign.com/hc/en-us/articles/207317590-Getting-started-with-the-API"};var l=function(e,t){var i,a=e;if(t&&(a.render=t,a.staticRenderFns=[],a._compiled=!0),i)if(a.functional){a._injectStyles=i;var r=a.render;a.render=function(e,t){return i.call(t),r(e,t)}}else{var n=a.beforeCreate;a.beforeCreate=n?[].concat(n,i):[i]}return{exports:e,options:a}}({name:"active-campaign-tab",props:{incoming:{type:Object,default:{}}},data:()=>({label:r,help:n,api_key:"",api_url:""}),created(){this.api_key=this.incoming.api_key||"",this.api_url=this.incoming.api_url||""},methods:{getRequestOnSave(){return{data:{api_key:this.api_key,api_url:this.api_url}}}}},i);const p=l.exports,{__:o}=wp.i18n,s=o("ActiveCampaign API","jet-form-builder"),c=p,{addFilter:u}=wp.hooks;u("jet.fb.register.settings-page.tabs","jet-form-builder/active-campaign",e=>(e.push(t),e))})(); \ No newline at end of file +(()=>{"use strict";var e={d:(t,i)=>{for(var a in i)e.o(i,a)&&!e.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:i[a]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{component:()=>c,title:()=>s});var i=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",[i("cx-vui-input",{attrs:{label:e.label.api_key,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.api_key,callback:function(t){e.api_key=t},expression:"api_key"}}),e._v(" "),i("cx-vui-input",{attrs:{label:e.label.api_url,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.api_url,callback:function(t){e.api_url=t},expression:"api_url"}}),e._v(" "),i("p",{staticClass:"fb-description"},[e._v(e._s(e.help.apiPref)+" "),i("a",{attrs:{href:e.help.apiLink,target:"_blank"}},[e._v(e._s(e.help.apiLinkLabel))])])],1)};i._withStripped=!0;const{__:a}=wp.i18n,r={api_key:a("API Key","jet-form-builder"),api_url:a("API URL","jet-form-builder")},n={apiPref:a("How to obtain your ActiveCampaign API URL and Key? More info"),apiLinkLabel:a("here"),apiLink:"https://help.activecampaign.com/hc/en-us/articles/207317590-Getting-started-with-the-API"};var l=function(e,t){var i,a=e;if(t&&(a.render=t,a.staticRenderFns=[],a._compiled=!0),i)if(a.functional){a._injectStyles=i;var r=a.render;a.render=function(e,t){return i.call(t),r(e,t)}}else{var n=a.beforeCreate;a.beforeCreate=n?[].concat(n,i):[i]}return{exports:e,options:a}}({name:"active-campaign-tab",props:{incoming:{type:Object,default:{}}},data:()=>({label:r,help:n,api_key:"",api_url:""}),created(){this.api_key=this.incoming.api_key||"",this.api_url=this.incoming.api_url||""},methods:{getRequestOnSave(){return{data:{api_key:this.api_key,api_url:this.api_url}}}}},i);const p=l.exports,{__:o}=wp.i18n,s=o("ActiveCampaign API","jet-form-builder"),c=p,{addFilter:u}=wp.hooks;u("jet.fb.register.settings-page.tabs","jet-form-builder/active-campaign",(e=>(e.push(t),e)))})(); \ No newline at end of file diff --git a/modules/active-campaign/assets/build/editor.asset.php b/modules/active-campaign/assets/build/editor.asset.php index a83d2feb6..ffc760625 100644 --- a/modules/active-campaign/assets/build/editor.asset.php +++ b/modules/active-campaign/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => 'facfde657a9d552d7ad7'); + array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => '0219c8b379fdedba8117'); diff --git a/modules/active-campaign/assets/build/editor.js b/modules/active-campaign/assets/build/editor.js index 354a89cfe..a787e55cf 100644 --- a/modules/active-campaign/assets/build/editor.js +++ b/modules/active-campaign/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={n:t=>{var r=t&&t.__esModule?()=>t.default:()=>t;return e.d(r,{a:r}),r},d:(t,r)=>{for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{fetchApiData:()=>_});var r={};e.r(r),e.d(r,{getFetchError:()=>v,getFields:()=>b,getLists:()=>y,isFetchLoading:()=>w});const n=window.React,l=window.wp.i18n,a=window.wp.element,o=window.wp.data,i=window.jfb.components,c=window.wp.components,s="SET_LISTS",u="SET_FIELDS",d="START_FETCH",m="END_FETCH",p="SET_FETCH_ERROR",g=(0,o.combineReducers)({api:function(e={},t){switch(t?.type){case s:return{...e,lists:t.payload};case u:return{...e,fields:t.payload}}return e},fetch:function(e={},t){switch(t?.type){case d:return{...e,loading:!0};case m:return{...e,loading:!1};case p:return{...e,error:t.error}}return e}}),f=window.wp.apiFetch;var h=e.n(f);const E=window.wp.url,_=({apiKey:e,apiUrl:t})=>async({dispatch:r})=>{if(!e||!t)return;r({type:d}),r({type:p,error:!1});const n=(0,E.addQueryArgs)("jet-form-builder/v1/active-campaign",{apiKey:e,apiUrl:t});let l;try{l=await h()({path:n})}catch(e){return void r({type:p,error:e})}finally{r({type:m})}r({type:s,payload:l.lists}),r({type:u,payload:l.fields})};function y(e){var t;return null!==(t=e?.api?.lists)&&void 0!==t?t:[]}function b(e){var t;return null!==(t=e?.api?.fields)&&void 0!==t?t:[]}function w(e){var t;return null!==(t=e.fetch?.loading)&&void 0!==t&&t}function v(e){var t;return null!==(t=e.fetch?.error)&&void 0!==t&&t}const F="jet-forms/active-campaign",S=(0,o.createReduxStore)(F,{reducer:g,actions:t,selectors:r}),C=function({...e}){return(0,n.createElement)("div",{...e},(0,l.__)("How to obtain your ActiveCampaign API URL and Key?","jet-form-builder")," ",(0,n.createElement)(c.ExternalLink,{href:"https://help.activecampaign.com/hc/en-us/articles/207317590-Getting-started-with-the-API"},(0,l.__)("More info here","jet-form-builder")))},j=window.wp.compose,L=window.wp.primitives,I=(0,n.createElement)(L.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(L.Path,{d:"M17.3 10.1c0-2.5-2.1-4.4-4.8-4.4-2.2 0-4.1 1.4-4.6 3.3h-.2C5.7 9 4 10.7 4 12.8c0 2.1 1.7 3.8 3.7 3.8h9c1.8 0 3.2-1.5 3.2-3.3.1-1.6-1.1-2.9-2.6-3.2zm-.5 5.1h-9c-1.2 0-2.2-1.1-2.2-2.3s1-2.4 2.2-2.4h1.3l.3-1.1c.4-1.3 1.7-2.2 3.2-2.2 1.8 0 3.3 1.3 3.3 2.9v1.3l1.3.2c.8.1 1.4.9 1.4 1.8-.1 1-.9 1.8-1.8 1.8z"})),R=function({apiKey:e,apiUrl:t}){const{fetchApiData:r}=(0,o.useDispatch)(F),a=(0,o.useSelect)(e=>e(F).isFetchLoading(),[]);return(0,n.createElement)(i.StyledButtonControl,{onClick:()=>r({apiKey:e,apiUrl:t}),disabled:a,isBusy:a,icon:I,variant:"secondary"},(0,l.__)("Fetch","jet-form-builder"))};var T=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},r=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,r]=e.split("_");t[r]=e}else r.push(e)})});const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...r),n.join(" ")};const x=window.jfb.actions,A=function({settings:e,onChangeSettingObj:t}){const r=(0,o.useSelect)(e=>e(F).getFetchError(),[]),{hasError:a,setShowError:s}=(0,x.useActionValidatorProvider)({isSupported:e=>"api_key"===e?.property}),{hasError:u,setShowError:d}=(0,x.useActionValidatorProvider)({isSupported:e=>"api_url"===e?.property}),m=(0,j.useInstanceId)(i.RowControl,"jfb-control"),p=(0,j.useInstanceId)(i.RowControl,"jfb-control");return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.Label,null,(0,l.__)("API Data","jet-form-builder")),(0,n.createElement)(c.Flex,{className:T(i.RowControlEndStyle,Boolean(r)&&i.ControlWithErrorStyle),gap:3,direction:"column"},Boolean(r)&&(0,n.createElement)(i.IconText,null,(0,l.__)("Fetching data was failed","jet-form-builder")),(0,n.createElement)(i.RequiredLabel,{htmlFor:m},(0,l.__)("API URL","jet-form-builder")),u&&(0,n.createElement)(i.IconText,null,(0,l.__)("Please fill this required field","jet-form-builder")),(0,n.createElement)(i.StyledTextControl,{id:m,value:e.api_url,onChange:e=>t({api_url:e}),onBlur:()=>d(!0),className:u&&i.ControlWithErrorStyle}),(0,n.createElement)(i.RequiredLabel,{htmlFor:p},(0,l.__)("API Key","jet-form-builder")),a&&(0,n.createElement)(i.IconText,null,(0,l.__)("Please fill this required field","jet-form-builder")),(0,n.createElement)(i.StyledTextControl,{id:p,value:e.api_key,onChange:e=>t({api_key:e}),onBlur:()=>s(!0),className:a&&i.ControlWithErrorStyle}),(0,n.createElement)(c.FlexItem,null,(0,n.createElement)(R,{apiKey:e.api_key,apiUrl:e.api_url})),(0,n.createElement)(C,null)))},O=window.jfb.data,P=function(){const e=(0,o.useSelect)(e=>e(F).getFetchError(),[]),{value:t,onChange:r}=(0,O.useSiteOptionJSON)("jet_form_builder_settings__active-campaign-tab"),a=(0,j.useInstanceId)(i.RowControl,"jfb-control"),s=(0,j.useInstanceId)(i.RowControl,"jfb-control");return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.Label,null,(0,l.__)("API Data","jet-form-builder")),(0,n.createElement)(c.Flex,{className:T(i.RowControlEndStyle,Boolean(e)&&i.ControlWithErrorStyle),gap:3,direction:"column"},Boolean(e)&&(0,n.createElement)(i.IconText,null,(0,l.__)("Fetching data was failed","jet-form-builder")),(0,n.createElement)(i.RequiredLabel,{htmlFor:a},(0,l.__)("API URL","jet-form-builder")),(0,n.createElement)(i.StyledTextControl,{id:a,value:t.api_url,onChange:e=>r({...t,api_url:e})}),(0,n.createElement)(i.RequiredLabel,{htmlFor:s},(0,l.__)("API Key","jet-form-builder")),(0,n.createElement)(i.StyledTextControl,{id:s,value:t.api_key,onChange:e=>r({...t,api_key:e})}),(0,n.createElement)(c.FlexItem,null,(0,n.createElement)(R,{apiUrl:t.api_url,apiKey:t.api_key})),(0,n.createElement)(C,null)))},B=function({settings:e,onChangeSettingObj:t}){const r=(0,o.useSelect)(e=>e(F).getLists(),[]);return(0,n.createElement)(i.RowControl,null,({id:a})=>(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.Label,{htmlFor:a},(0,l.__)("List Id","jet-form-builder")),(0,n.createElement)(i.StyledSelectControl,{id:a,value:e.list_id,onChange:e=>t({list_id:e}),options:[{value:"",label:"--"},...r]})))},k=window.jfb.blocksToActions,M=function({getMapField:e,setMapField:t}){const r=(0,k.useFields)({withInner:!1,placeholder:"--"}),a=(0,o.useSelect)(e=>e(F).getFields(),[]);return(0,n.createElement)(i.RowControl,null,(0,n.createElement)(i.Label,null,(0,l.__)("Fields map","jet-form-builder")),(0,n.createElement)(c.Flex,{className:T(i.RowControlEndStyle),direction:"column",gap:4},a.map(l=>(0,n.createElement)(x.FieldsMapField,{key:l.value,tag:l.value,label:l.label,isRequired:l.required,formFields:r,value:e({name:l.value}),onChange:e=>t({nameField:l.value,value:e})}))))},N=function({settings:e,onChangeSettingObj:t}){return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.Label,null,(0,l.__)("Tags","jet-form-builder")),(0,n.createElement)(i.StyledFormTokenFieldControl,{value:e.tags,onChange:e=>t({tags:e})}))},{ToggleControl:U}=JetFBComponents,q={first_name:"firstName",last_name:"lastName"},K=(0,n.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,n.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,n.createElement)("g",null,(0,n.createElement)("path",{d:"M16 1.1L4 5.9c-1.1.4-2 1.8-2 3v8.7c0 1.2.9 1.8 2 1.4l12-4.8c1.1-.4 2-1.8 2-3V2.5c0-1.2-.9-1.8-2-1.4zm.6 2.6l-6 9.3-6.7-4.5c-.1-.1-.4-.4-.2-.7.2-.4.7-.2.7-.2l6.3 2.3s4.8-6.3 5.1-6.7c.1-.2.4-.3.7-.1.3.2.2.5.1.6z"}))),W=[({settings:e})=>!e.use_global&&!e?.api_key&&{type:"empty",property:"api_key"},({settings:e})=>!e.use_global&&!e?.api_url&&{type:"empty",property:"api_url"},({settings:e})=>{const t=(0,o.select)(F).getFields();if(!Object.keys(t).length)return!1;const r=[];if(!t?.length)return!1;for(const n of t){if(!n.required)continue;const t=e?.fields_map?.[n.value];t||r.push({type:"empty",property:"field_"+n.value})}return r}],D={type:"active_campaign",label:(0,l.__)("Active Campaign","jet-form-builder"),edit:function(e){const{settings:t,onChangeSettingObj:r,getMapField:s,setMapField:u}=e,{isFetchLoading:d,hasLists:m,fields:p,hasError:g}=(0,o.useSelect)(e=>({isFetchLoading:e(F).isFetchLoading(),hasError:Boolean(e(F).getFetchError()),hasLists:Boolean(e(F).getLists().length),fields:e(F).getFields()}),[]);return(0,a.useEffect)(()=>{const e={};for(const[r,l]of Object.entries(null!==(n=t.fields_map)&&void 0!==n?n:{})){var n;q.hasOwnProperty(r)?e[q[r]]=l:e[r]=l}r({fields_map:e})},[]),(0,a.useEffect)(()=>{if(!p?.length)return;const e=new Set(p.map(e=>e.value)),n={};for(const[r,l]of Object.entries(t.fields_map))e.has(r)&&(n[r]=l);r({fields_map:n})},[d]),(0,a.useEffect)(()=>{t.tags&&!Array.isArray(t.tags)&&r({tags:t.tags.split(",").map(e=>e.trim())})},[]),(0,n.createElement)(c.Flex,{direction:"column"},(0,n.createElement)(U,{className:i.ClearBaseControlStyle,checked:t.use_global,onChange:e=>r({use_global:Boolean(e)})},(0,l.__)("Use","jet-form-builder")+" ",(0,n.createElement)("a",{href:JetFormEditorData.global_settings_url+"#active-campaign-tab"},(0,l.__)("Global Settings","jet-form-builder"))),(0,n.createElement)(i.WideLine,null),t.use_global?(0,n.createElement)(P,null):(0,n.createElement)(A,{settings:t,onChangeSettingObj:r}),!g&&Boolean(p.length)&&(0,n.createElement)(n.Fragment,null,m&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.WideLine,null),(0,n.createElement)(B,{settings:t,onChangeSettingObj:r})),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(N,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(M,{getMapField:s,setMapField:u})))},icon:K,docHref:"https://jetformbuilder.com/features/activecampaign/",category:"communication",validators:W};(0,o.register)(S),(0,o.dispatch)("jet-forms/actions").registerAction(D)})(); \ No newline at end of file +(()=>{"use strict";var e={n:t=>{var r=t&&t.__esModule?()=>t.default:()=>t;return e.d(r,{a:r}),r},d:(t,r)=>{for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{fetchApiData:()=>_});var r={};e.r(r),e.d(r,{getFetchError:()=>v,getFields:()=>b,getLists:()=>y,isFetchLoading:()=>w});const n=window.React,l=window.wp.i18n,a=window.wp.element,o=window.wp.data,i=window.jfb.components,c=window.wp.components,s="SET_LISTS",u="SET_FIELDS",d="START_FETCH",m="END_FETCH",p="SET_FETCH_ERROR",g=(0,o.combineReducers)({api:function(e={},t){switch(t?.type){case s:return{...e,lists:t.payload};case u:return{...e,fields:t.payload}}return e},fetch:function(e={},t){switch(t?.type){case d:return{...e,loading:!0};case m:return{...e,loading:!1};case p:return{...e,error:t.error}}return e}}),f=window.wp.apiFetch;var h=e.n(f);const E=window.wp.url,_=({apiKey:e,apiUrl:t})=>async({dispatch:r})=>{if(!e||!t)return;r({type:d}),r({type:p,error:!1});const n=(0,E.addQueryArgs)("jet-form-builder/v1/active-campaign",{apiKey:e,apiUrl:t});let l;try{l=await h()({path:n})}catch(e){return void r({type:p,error:e})}finally{r({type:m})}r({type:s,payload:l.lists}),r({type:u,payload:l.fields})};function y(e){var t;return null!==(t=e?.api?.lists)&&void 0!==t?t:[]}function b(e){var t;return null!==(t=e?.api?.fields)&&void 0!==t?t:[]}function w(e){var t;return null!==(t=e.fetch?.loading)&&void 0!==t&&t}function v(e){var t;return null!==(t=e.fetch?.error)&&void 0!==t&&t}const F="jet-forms/active-campaign",S=(0,o.createReduxStore)(F,{reducer:g,actions:t,selectors:r}),C=function({...e}){return(0,n.createElement)("div",{...e},(0,l.__)("How to obtain your ActiveCampaign API URL and Key?","jet-form-builder")," ",(0,n.createElement)(c.ExternalLink,{href:"https://help.activecampaign.com/hc/en-us/articles/207317590-Getting-started-with-the-API"},(0,l.__)("More info here","jet-form-builder")))},j=window.wp.compose,L=window.wp.primitives,I=(0,n.createElement)(L.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(L.Path,{d:"M17.3 10.1c0-2.5-2.1-4.4-4.8-4.4-2.2 0-4.1 1.4-4.6 3.3h-.2C5.7 9 4 10.7 4 12.8c0 2.1 1.7 3.8 3.7 3.8h9c1.8 0 3.2-1.5 3.2-3.3.1-1.6-1.1-2.9-2.6-3.2zm-.5 5.1h-9c-1.2 0-2.2-1.1-2.2-2.3s1-2.4 2.2-2.4h1.3l.3-1.1c.4-1.3 1.7-2.2 3.2-2.2 1.8 0 3.3 1.3 3.3 2.9v1.3l1.3.2c.8.1 1.4.9 1.4 1.8-.1 1-.9 1.8-1.8 1.8z"})),R=function({apiKey:e,apiUrl:t}){const{fetchApiData:r}=(0,o.useDispatch)(F),a=(0,o.useSelect)((e=>e(F).isFetchLoading()),[]);return(0,n.createElement)(i.StyledButtonControl,{onClick:()=>r({apiKey:e,apiUrl:t}),disabled:a,isBusy:a,icon:I,variant:"secondary"},(0,l.__)("Fetch","jet-form-builder"))};var T=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},r=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,r]=e.split("_");t[r]=e}else r.push(e)}))}));const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...r),n.join(" ")};const x=window.jfb.actions,A=function({settings:e,onChangeSettingObj:t}){const r=(0,o.useSelect)((e=>e(F).getFetchError()),[]),{hasError:a,setShowError:s}=(0,x.useActionValidatorProvider)({isSupported:e=>"api_key"===e?.property}),{hasError:u,setShowError:d}=(0,x.useActionValidatorProvider)({isSupported:e=>"api_url"===e?.property}),m=(0,j.useInstanceId)(i.RowControl,"jfb-control"),p=(0,j.useInstanceId)(i.RowControl,"jfb-control");return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.Label,null,(0,l.__)("API Data","jet-form-builder")),(0,n.createElement)(c.Flex,{className:T(i.RowControlEndStyle,Boolean(r)&&i.ControlWithErrorStyle),gap:3,direction:"column"},Boolean(r)&&(0,n.createElement)(i.IconText,null,(0,l.__)("Fetching data was failed","jet-form-builder")),(0,n.createElement)(i.RequiredLabel,{htmlFor:m},(0,l.__)("API URL","jet-form-builder")),u&&(0,n.createElement)(i.IconText,null,(0,l.__)("Please fill this required field","jet-form-builder")),(0,n.createElement)(i.StyledTextControl,{id:m,value:e.api_url,onChange:e=>t({api_url:e}),onBlur:()=>d(!0),className:u&&i.ControlWithErrorStyle}),(0,n.createElement)(i.RequiredLabel,{htmlFor:p},(0,l.__)("API Key","jet-form-builder")),a&&(0,n.createElement)(i.IconText,null,(0,l.__)("Please fill this required field","jet-form-builder")),(0,n.createElement)(i.StyledTextControl,{id:p,value:e.api_key,onChange:e=>t({api_key:e}),onBlur:()=>s(!0),className:a&&i.ControlWithErrorStyle}),(0,n.createElement)(c.FlexItem,null,(0,n.createElement)(R,{apiKey:e.api_key,apiUrl:e.api_url})),(0,n.createElement)(C,null)))},O=window.jfb.data,P=function(){const e=(0,o.useSelect)((e=>e(F).getFetchError()),[]),{value:t,onChange:r}=(0,O.useSiteOptionJSON)("jet_form_builder_settings__active-campaign-tab"),a=(0,j.useInstanceId)(i.RowControl,"jfb-control"),s=(0,j.useInstanceId)(i.RowControl,"jfb-control");return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.Label,null,(0,l.__)("API Data","jet-form-builder")),(0,n.createElement)(c.Flex,{className:T(i.RowControlEndStyle,Boolean(e)&&i.ControlWithErrorStyle),gap:3,direction:"column"},Boolean(e)&&(0,n.createElement)(i.IconText,null,(0,l.__)("Fetching data was failed","jet-form-builder")),(0,n.createElement)(i.RequiredLabel,{htmlFor:a},(0,l.__)("API URL","jet-form-builder")),(0,n.createElement)(i.StyledTextControl,{id:a,value:t.api_url,onChange:e=>r({...t,api_url:e})}),(0,n.createElement)(i.RequiredLabel,{htmlFor:s},(0,l.__)("API Key","jet-form-builder")),(0,n.createElement)(i.StyledTextControl,{id:s,value:t.api_key,onChange:e=>r({...t,api_key:e})}),(0,n.createElement)(c.FlexItem,null,(0,n.createElement)(R,{apiUrl:t.api_url,apiKey:t.api_key})),(0,n.createElement)(C,null)))},B=function({settings:e,onChangeSettingObj:t}){const r=(0,o.useSelect)((e=>e(F).getLists()),[]);return(0,n.createElement)(i.RowControl,null,(({id:a})=>(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.Label,{htmlFor:a},(0,l.__)("List Id","jet-form-builder")),(0,n.createElement)(i.StyledSelectControl,{id:a,value:e.list_id,onChange:e=>t({list_id:e}),options:[{value:"",label:"--"},...r]}))))},k=window.jfb.blocksToActions,M=function({getMapField:e,setMapField:t}){const r=(0,k.useFields)({withInner:!1,placeholder:"--"}),a=(0,o.useSelect)((e=>e(F).getFields()),[]);return(0,n.createElement)(i.RowControl,null,(0,n.createElement)(i.Label,null,(0,l.__)("Fields map","jet-form-builder")),(0,n.createElement)(c.Flex,{className:T(i.RowControlEndStyle),direction:"column",gap:4},a.map((l=>(0,n.createElement)(x.FieldsMapField,{key:l.value,tag:l.value,label:l.label,isRequired:l.required,formFields:r,value:e({name:l.value}),onChange:e=>t({nameField:l.value,value:e})})))))},N=function({settings:e,onChangeSettingObj:t}){return(0,n.createElement)(i.RowControl,{createId:!1},(0,n.createElement)(i.Label,null,(0,l.__)("Tags","jet-form-builder")),(0,n.createElement)(i.StyledFormTokenFieldControl,{value:e.tags,onChange:e=>t({tags:e})}))},{ToggleControl:U}=JetFBComponents,q={first_name:"firstName",last_name:"lastName"},K=(0,n.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},(0,n.createElement)("rect",{x:"0",fill:"none",width:"20",height:"20"}),(0,n.createElement)("g",null,(0,n.createElement)("path",{d:"M16 1.1L4 5.9c-1.1.4-2 1.8-2 3v8.7c0 1.2.9 1.8 2 1.4l12-4.8c1.1-.4 2-1.8 2-3V2.5c0-1.2-.9-1.8-2-1.4zm.6 2.6l-6 9.3-6.7-4.5c-.1-.1-.4-.4-.2-.7.2-.4.7-.2.7-.2l6.3 2.3s4.8-6.3 5.1-6.7c.1-.2.4-.3.7-.1.3.2.2.5.1.6z"}))),W=[({settings:e})=>!e.use_global&&!e?.api_key&&{type:"empty",property:"api_key"},({settings:e})=>!e.use_global&&!e?.api_url&&{type:"empty",property:"api_url"},({settings:e})=>{const t=(0,o.select)(F).getFields();if(!Object.keys(t).length)return!1;const r=[];if(!t?.length)return!1;for(const n of t){if(!n.required)continue;const t=e?.fields_map?.[n.value];t||r.push({type:"empty",property:"field_"+n.value})}return r}],D={type:"active_campaign",label:(0,l.__)("Active Campaign","jet-form-builder"),edit:function(e){const{settings:t,onChangeSettingObj:r,getMapField:s,setMapField:u}=e,{isFetchLoading:d,hasLists:m,fields:p,hasError:g}=(0,o.useSelect)((e=>({isFetchLoading:e(F).isFetchLoading(),hasError:Boolean(e(F).getFetchError()),hasLists:Boolean(e(F).getLists().length),fields:e(F).getFields()})),[]);return(0,a.useEffect)((()=>{const e={};for(const[r,l]of Object.entries(null!==(n=t.fields_map)&&void 0!==n?n:{})){var n;q.hasOwnProperty(r)?e[q[r]]=l:e[r]=l}r({fields_map:e})}),[]),(0,a.useEffect)((()=>{if(!p?.length)return;const e=new Set(p.map((e=>e.value))),n={};for(const[r,l]of Object.entries(t.fields_map))e.has(r)&&(n[r]=l);r({fields_map:n})}),[d]),(0,a.useEffect)((()=>{t.tags&&!Array.isArray(t.tags)&&r({tags:t.tags.split(",").map((e=>e.trim()))})}),[]),(0,n.createElement)(c.Flex,{direction:"column"},(0,n.createElement)(U,{className:i.ClearBaseControlStyle,checked:t.use_global,onChange:e=>r({use_global:Boolean(e)})},(0,l.__)("Use","jet-form-builder")+" ",(0,n.createElement)("a",{href:JetFormEditorData.global_settings_url+"#active-campaign-tab"},(0,l.__)("Global Settings","jet-form-builder"))),(0,n.createElement)(i.WideLine,null),t.use_global?(0,n.createElement)(P,null):(0,n.createElement)(A,{settings:t,onChangeSettingObj:r}),!g&&Boolean(p.length)&&(0,n.createElement)(n.Fragment,null,m&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(i.WideLine,null),(0,n.createElement)(B,{settings:t,onChangeSettingObj:r})),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(N,{settings:t,onChangeSettingObj:r}),(0,n.createElement)(i.WideLine,null),(0,n.createElement)(M,{getMapField:s,setMapField:u})))},icon:K,docHref:"https://jetformbuilder.com/features/activecampaign/",category:"communication",validators:W};(0,o.register)(S),(0,o.dispatch)("jet-forms/actions").registerAction(D)})(); \ No newline at end of file diff --git a/modules/admin/assets/build/plugins.js b/modules/admin/assets/build/plugins.js index 11e68797c..207f5aa6f 100644 --- a/modules/admin/assets/build/plugins.js +++ b/modules/admin/assets/build/plugins.js @@ -1 +1 @@ -(()=>{const e=JetFBPluginConfig.slug,t="modal-"+e,o=document.querySelector("#"+t),l=o.querySelector(".jet-form-builder-modal-exit"),r=o.querySelector(".button.close"),c=o.querySelector(".button.continue");let n="";o.addEventListener("click",e=>{[r,l].includes(e.target)?o.classList.remove("open"):c===e.target&&(window.location=n)}),document.querySelector("#bulk-action-form").addEventListener("click",function(t){"A"===t.target.nodeName&&t.target?.id?.includes?.("deactivate-")&&t.target.closest(`tr.active[data-slug="${e}"]`)&&(t.preventDefault(),n=t.target.href,o.style.display="flex",o.classList.add("open"))})})(); \ No newline at end of file +(()=>{const e=JetFBPluginConfig.slug,t="modal-"+e,o=document.querySelector("#"+t),l=o.querySelector(".jet-form-builder-modal-exit"),r=o.querySelector(".button.close"),c=o.querySelector(".button.continue");let n="";o.addEventListener("click",(e=>{[r,l].includes(e.target)?o.classList.remove("open"):c===e.target&&(window.location=n)})),document.querySelector("#bulk-action-form").addEventListener("click",(function(t){"A"===t.target.nodeName&&t.target?.id?.includes?.("deactivate-")&&t.target.closest(`tr.active[data-slug="${e}"]`)&&(t.preventDefault(),n=t.target.href,o.style.display="flex",o.classList.add("open"))}))})(); \ No newline at end of file diff --git a/modules/advanced-choices/assets/build/editor-not-supported.asset.php b/modules/advanced-choices/assets/build/editor-not-supported.asset.php index 898796a71..0c9baa57c 100644 --- a/modules/advanced-choices/assets/build/editor-not-supported.asset.php +++ b/modules/advanced-choices/assets/build/editor-not-supported.asset.php @@ -1 +1 @@ - array('react'), 'version' => '773321d253ffd1fc7cb8'); + array('react'), 'version' => '69dcf7715a1bc84d4509'); diff --git a/modules/advanced-choices/assets/build/editor-not-supported.js b/modules/advanced-choices/assets/build/editor-not-supported.js index ccf7162ac..3ea663528 100644 --- a/modules/advanced-choices/assets/build/editor-not-supported.js +++ b/modules/advanced-choices/assets/build/editor-not-supported.js @@ -1 +1 @@ -(()=>{"use strict";var e={d:(r,t)=>{for(var o in t)e.o(t,o)&&!e.o(r,o)&&Object.defineProperty(r,o,{enumerable:!0,get:t[o]})},o:(e,r)=>Object.prototype.hasOwnProperty.call(e,r),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},r={};e.r(r),e.d(r,{metadata:()=>c,name:()=>d,settings:()=>a});const t=window.React,{__:o}=wp.i18n;let{useBlockProps:i}=wp.blockEditor;const{Placeholder:l}=wp.components,c=JSON.parse('{"apiVersion":3,"name":"jet-forms/choices-field","category":"jet-form-builder-fields","title":"Advanced Choices Field","description":"","icon":"\\n\\n\\n\\n\\n\\n\\n","attributes":{"isPreview":{"type":"boolean","default":false},"value":{"type":"object","default":{}},"allow_multiple":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":["string","array","number","boolean","object"],"default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"visibility":{"type":"string","default":""}},"keywords":["jetformbuilder","field","choices"],"textdomain":"jet-form-builder","supports":{"html":false,"jetFBSwitchPageOnChange":true,"jetFBSanitizeValue":true,"jetStyle":{"--jfb-choice-text":[".jet-form-builder-choice--item","color","text"],"--jfb-choice-bg":[".jet-form-builder-choice--item","color","background"],"--jfb-choice-border":[".jet-form-builder-choice--item","border"],"--jfb-choice-border-radius":[".jet-form-builder-choice--item","border","radius"],"--jfb-choice-hover-text":[".jet-form-builder-choice--item:hover","color","text"],"--jfb-choice-hover-bg":[".jet-form-builder-choice--item:hover","color","background"],"--jfb-choice-hover-border":[".jet-form-builder-choice--item:hover","border"],"--jfb-choice-hover-border-radius":[".jet-form-builder-choice--item:hover","border","radius"],"--jfb-choice-checked-text":[".jet-form-builder-choice--item.is-checked","color","text"],"--jfb-choice-checked-bg":[".jet-form-builder-choice--item.is-checked","color","background"],"--jfb-choice-checked-border":[".jet-form-builder-choice--item.is-checked","border"],"--jfb-choice-checked-border-radius":[".jet-form-builder-choice--item.is-checked","border","radius"]},"jetCustomWrapperLayout":true,"layout":{"allowSwitching":false,"allowInheriting":false,"allowVerticalAlignment":false,"allowSizingOnChildren":true,"default":{"type":"flex"}},"spacing":{"blockGap":["horizontal","vertical"],"margin":true,"padding":true,"units":["px","em","rem","vh","vw"]}},"providesContext":{"jet-forms/choices-field--multiple":"allow_multiple","jet-forms/choices-field--required":"required","jet-forms/choices-field--name":"name","jet-forms/choices-field--default":"default"},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-advanced-choices","style":"jet-fb-advanced-choices"}'),{name:d,icon:n}=c,a={icon:(0,t.createElement)("span",{dangerouslySetInnerHTML:{__html:n}}),edit:function(e){const r=i();return(0,t.createElement)(l,{instructions:o("You should update your WordPress to version 6.2 or higher","jet-form-builder"),label:o("Advanced Choices not supported","jet-form-builder"),...r})}},{addFilter:u}=wp.hooks;u("jet.fb.register.fields","jet-form-builder/advanced-choices-not-supported",function(e){return e.push(r),e})})(); \ No newline at end of file +(()=>{"use strict";var e={d:(r,t)=>{for(var o in t)e.o(t,o)&&!e.o(r,o)&&Object.defineProperty(r,o,{enumerable:!0,get:t[o]})},o:(e,r)=>Object.prototype.hasOwnProperty.call(e,r),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},r={};e.r(r),e.d(r,{metadata:()=>c,name:()=>d,settings:()=>a});const t=window.React,{__:o}=wp.i18n;let{useBlockProps:i}=wp.blockEditor;const{Placeholder:l}=wp.components,c=JSON.parse('{"apiVersion":3,"name":"jet-forms/choices-field","category":"jet-form-builder-fields","title":"Advanced Choices Field","description":"","icon":"\\n\\n\\n\\n\\n\\n\\n","attributes":{"isPreview":{"type":"boolean","default":false},"value":{"type":"object","default":{}},"allow_multiple":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":["string","array","number","boolean","object"],"default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"visibility":{"type":"string","default":""}},"keywords":["jetformbuilder","field","choices"],"textdomain":"jet-form-builder","supports":{"html":false,"jetFBSwitchPageOnChange":true,"jetFBSanitizeValue":true,"jetStyle":{"--jfb-choice-text":[".jet-form-builder-choice--item","color","text"],"--jfb-choice-bg":[".jet-form-builder-choice--item","color","background"],"--jfb-choice-border":[".jet-form-builder-choice--item","border"],"--jfb-choice-border-radius":[".jet-form-builder-choice--item","border","radius"],"--jfb-choice-hover-text":[".jet-form-builder-choice--item:hover","color","text"],"--jfb-choice-hover-bg":[".jet-form-builder-choice--item:hover","color","background"],"--jfb-choice-hover-border":[".jet-form-builder-choice--item:hover","border"],"--jfb-choice-hover-border-radius":[".jet-form-builder-choice--item:hover","border","radius"],"--jfb-choice-checked-text":[".jet-form-builder-choice--item.is-checked","color","text"],"--jfb-choice-checked-bg":[".jet-form-builder-choice--item.is-checked","color","background"],"--jfb-choice-checked-border":[".jet-form-builder-choice--item.is-checked","border"],"--jfb-choice-checked-border-radius":[".jet-form-builder-choice--item.is-checked","border","radius"]},"jetCustomWrapperLayout":true,"layout":{"allowSwitching":false,"allowInheriting":false,"allowVerticalAlignment":false,"allowSizingOnChildren":true,"default":{"type":"flex"}},"spacing":{"blockGap":["horizontal","vertical"],"margin":true,"padding":true,"units":["px","em","rem","vh","vw"]}},"providesContext":{"jet-forms/choices-field--multiple":"allow_multiple","jet-forms/choices-field--required":"required","jet-forms/choices-field--name":"name","jet-forms/choices-field--default":"default"},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-advanced-choices","style":"jet-fb-advanced-choices"}'),{name:d,icon:n}=c,a={icon:(0,t.createElement)("span",{dangerouslySetInnerHTML:{__html:n}}),edit:function(e){const r=i();return(0,t.createElement)(l,{instructions:o("You should update your WordPress to version 6.2 or higher","jet-form-builder"),label:o("Advanced Choices not supported","jet-form-builder"),...r})}},{addFilter:u}=wp.hooks;u("jet.fb.register.fields","jet-form-builder/advanced-choices-not-supported",(function(e){return e.push(r),e}))})(); \ No newline at end of file diff --git a/modules/advanced-choices/assets/build/editor.asset.php b/modules/advanced-choices/assets/build/editor.asset.php index 799850afe..8264e02c1 100644 --- a/modules/advanced-choices/assets/build/editor.asset.php +++ b/modules/advanced-choices/assets/build/editor.asset.php @@ -1 +1 @@ - array('react'), 'version' => '0f0f81072e8b60cb754e'); + array('react'), 'version' => '34f1895631055cfd0523'); diff --git a/modules/advanced-choices/assets/build/editor.js b/modules/advanced-choices/assets/build/editor.js index 2ae5da418..b5a68cb6c 100644 --- a/modules/advanced-choices/assets/build/editor.js +++ b/modules/advanced-choices/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={d:(t,l)=>{for(var C in l)e.o(l,C)&&!e.o(t,C)&&Object.defineProperty(t,C,{enumerable:!0,get:l[C]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{metadata:()=>X,name:()=>me,settings:()=>ue});var l={};e.r(l),e.d(l,{metadata:()=>Se,name:()=>Pe,settings:()=>De});var C={};e.r(C),e.d(C,{metadata:()=>dt,name:()=>ut,settings:()=>pt});const o=window.React,{__:r}=wp.i18n,{useDispatch:i,useSelect:c}=wp.data,{createBlocksFromInnerBlocksTemplate:a}=wp.blocks;let{__experimentalBlockVariationPicker:n,BlockVariationPicker:m,useBlockEditContext:s}=wp.blockEditor;m=m||n;const{useBlockAttributes:d}=JetFBHooks,u=function(){const{clientId:e}=s(),[,t]=d(),{replaceInnerBlocks:l}=i("core/block-editor"),{variations:C,defaultVariation:n}=c(e=>{const{getBlockVariations:t,getDefaultBlockVariation:l}=e("core/blocks");return{defaultVariation:l(me),variations:t(me,"block")}},[]);return(0,o.createElement)(m,{allowSkip:!0,label:r("Select choices layout","jet-form-builder"),instructions:r("You can select one of predefined layout, or skip this step and build custom from scratch","jet-form-builder"),variations:C,onSelect:(C=n)=>{C.attributes&&t(C.attributes),C.innerBlocks&&l(e,a(C.innerBlocks),!0)}})},{createContext:h}=wp.element,f=h({current:!1,updateCurrent:()=>{}}),{ToolbarButton:p}=wp.components,{SVG:b,Path:V}=wp.primitives,{useBlockEditContext:g}=wp.blockEditor,{__:w}=wp.i18n,{useCallback:v}=wp.element,{createBlock:j}=wp.blocks,{useDispatch:E,select:k}=wp.data,H=function(){const{clientId:e}=g(),{insertBlock:t}=E("core/block-editor"),l=v(()=>{const l=k("core/block-editor").getBlockCount(e),C=j("jet-forms/choice",{value:`value-of-${l}-choice`,calc_value:l});t(C,l,e)},[e]);return(0,o.createElement)(p,{onClick:l,icon:(0,o.createElement)(b,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)(V,{d:"M18.5 5.5V8H20V5.5h2.5V4H20V1.5h-1.5V4H16v1.5h2.5zM12 4H6a2 2 0 00-2 2v12a2 2 0 002 2h12a2 2 0 002-2v-6h-1.5v6a.5.5 0 01-.5.5H6a.5.5 0 01-.5-.5V6a.5.5 0 01.5-.5h6V4z"})),label:w("Add new Choice","jet-form-builder")})},M=(0,o.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{width:"298",height:"144",rx:"4",fill:"#E2E8F0"}),(0,o.createElement)("rect",{x:"12",y:"12",width:"86",height:"120",rx:"8",fill:"white"}),(0,o.createElement)("rect",{x:"20",y:"44",width:"70",height:"60",rx:"4",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M67 86V62H43V86H67ZM50.3333 76L53.6667 80.0133L58.3333 74L64.3333 82H45.6667L50.3333 76Z",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"20",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"20",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("path",{d:"M47.5586 27.4648V28.0039C47.5586 28.6445 47.4785 29.2188 47.3184 29.7266C47.1582 30.2344 46.9277 30.666 46.627 31.0215C46.3262 31.377 45.9648 31.6484 45.543 31.8359C45.125 32.0234 44.6562 32.1172 44.1367 32.1172C43.6328 32.1172 43.1699 32.0234 42.748 31.8359C42.3301 31.6484 41.9668 31.377 41.6582 31.0215C41.3535 30.666 41.1172 30.2344 40.9492 29.7266C40.7812 29.2188 40.6973 28.6445 40.6973 28.0039V27.4648C40.6973 26.8242 40.7793 26.252 40.9434 25.748C41.1113 25.2402 41.3477 24.8086 41.6523 24.4531C41.957 24.0938 42.3184 23.8203 42.7363 23.6328C43.1582 23.4453 43.6211 23.3516 44.125 23.3516C44.6445 23.3516 45.1133 23.4453 45.5312 23.6328C45.9531 23.8203 46.3145 24.0938 46.6152 24.4531C46.9199 24.8086 47.1523 25.2402 47.3125 25.748C47.4766 26.252 47.5586 26.8242 47.5586 27.4648ZM46.4395 28.0039V27.4531C46.4395 26.9453 46.3867 26.4961 46.2812 26.1055C46.1797 25.7148 46.0293 25.3867 45.8301 25.1211C45.6309 24.8555 45.3867 24.6543 45.0977 24.5176C44.8125 24.3809 44.4883 24.3125 44.125 24.3125C43.7734 24.3125 43.4551 24.3809 43.1699 24.5176C42.8887 24.6543 42.6465 24.8555 42.4434 25.1211C42.2441 25.3867 42.0898 25.7148 41.9805 26.1055C41.8711 26.4961 41.8164 26.9453 41.8164 27.4531V28.0039C41.8164 28.5156 41.8711 28.9688 41.9805 29.3633C42.0898 29.7539 42.2461 30.084 42.4492 30.3535C42.6562 30.6191 42.9004 30.8203 43.1816 30.957C43.4668 31.0938 43.7852 31.1621 44.1367 31.1621C44.5039 31.1621 44.8301 31.0938 45.1152 30.957C45.4004 30.8203 45.6406 30.6191 45.8359 30.3535C46.0352 30.084 46.1855 29.7539 46.2871 29.3633C46.3887 28.9688 46.4395 28.5156 46.4395 28.0039ZM50.1719 26.8789V34.4375H49.082V25.6602H50.0781L50.1719 26.8789ZM54.4434 28.7773V28.9004C54.4434 29.3613 54.3887 29.7891 54.2793 30.1836C54.1699 30.5742 54.0098 30.9141 53.7988 31.2031C53.5918 31.4922 53.3359 31.7168 53.0312 31.877C52.7266 32.0371 52.377 32.1172 51.9824 32.1172C51.5801 32.1172 51.2246 32.0508 50.916 31.918C50.6074 31.7852 50.3457 31.5918 50.1309 31.3379C49.916 31.084 49.7441 30.7793 49.6152 30.4238C49.4902 30.0684 49.4043 29.668 49.3574 29.2227V28.5664C49.4043 28.0977 49.4922 27.6777 49.6211 27.3066C49.75 26.9355 49.9199 26.6191 50.1309 26.3574C50.3457 26.0918 50.6055 25.8906 50.9102 25.7539C51.2148 25.6133 51.5664 25.543 51.9648 25.543C52.3633 25.543 52.7168 25.6211 53.0254 25.7773C53.334 25.9297 53.5938 26.1484 53.8047 26.4336C54.0156 26.7188 54.1738 27.0605 54.2793 27.459C54.3887 27.8535 54.4434 28.293 54.4434 28.7773ZM53.3535 28.9004V28.7773C53.3535 28.4609 53.3203 28.1641 53.2539 27.8867C53.1875 27.6055 53.084 27.3594 52.9434 27.1484C52.8066 26.9336 52.6309 26.7656 52.416 26.6445C52.2012 26.5195 51.9453 26.457 51.6484 26.457C51.375 26.457 51.1367 26.5039 50.9336 26.5977C50.7344 26.6914 50.5645 26.8184 50.4238 26.9785C50.2832 27.1348 50.168 27.3145 50.0781 27.5176C49.9922 27.7168 49.9277 27.9238 49.8848 28.1387V29.6562C49.9629 29.9297 50.0723 30.1875 50.2129 30.4297C50.3535 30.668 50.541 30.8613 50.7754 31.0098C51.0098 31.1543 51.3047 31.2266 51.6602 31.2266C51.9531 31.2266 52.2051 31.166 52.416 31.0449C52.6309 30.9199 52.8066 30.75 52.9434 30.5352C53.084 30.3203 53.1875 30.0742 53.2539 29.7969C53.3203 29.5156 53.3535 29.2168 53.3535 28.9004ZM58.4805 25.6602V26.4922H55.0527V25.6602H58.4805ZM56.2129 24.1191H57.2969V30.4297C57.2969 30.6445 57.3301 30.8066 57.3965 30.916C57.4629 31.0254 57.5488 31.0977 57.6543 31.1328C57.7598 31.168 57.873 31.1855 57.9941 31.1855C58.084 31.1855 58.1777 31.1777 58.2754 31.1621C58.377 31.1426 58.4531 31.127 58.5039 31.1152L58.5098 32C58.4238 32.0273 58.3105 32.0527 58.1699 32.0762C58.0332 32.1035 57.8672 32.1172 57.6719 32.1172C57.4062 32.1172 57.1621 32.0645 56.9395 31.959C56.7168 31.8535 56.5391 31.6777 56.4062 31.4316C56.2773 31.1816 56.2129 30.8457 56.2129 30.4238V24.1191ZM60.9297 25.6602V32H59.8398V25.6602H60.9297ZM59.7578 23.9785C59.7578 23.8027 59.8105 23.6543 59.916 23.5332C60.0254 23.4121 60.1855 23.3516 60.3965 23.3516C60.6035 23.3516 60.7617 23.4121 60.8711 23.5332C60.9844 23.6543 61.041 23.8027 61.041 23.9785C61.041 24.1465 60.9844 24.291 60.8711 24.4121C60.7617 24.5293 60.6035 24.5879 60.3965 24.5879C60.1855 24.5879 60.0254 24.5293 59.916 24.4121C59.8105 24.291 59.7578 24.1465 59.7578 23.9785ZM62.3828 28.9004V28.7656C62.3828 28.3086 62.4492 27.8848 62.582 27.4941C62.7148 27.0996 62.9062 26.7578 63.1562 26.4688C63.4062 26.1758 63.709 25.9492 64.0645 25.7891C64.4199 25.625 64.8184 25.543 65.2598 25.543C65.7051 25.543 66.1055 25.625 66.4609 25.7891C66.8203 25.9492 67.125 26.1758 67.375 26.4688C67.6289 26.7578 67.8223 27.0996 67.9551 27.4941C68.0879 27.8848 68.1543 28.3086 68.1543 28.7656V28.9004C68.1543 29.3574 68.0879 29.7812 67.9551 30.1719C67.8223 30.5625 67.6289 30.9043 67.375 31.1973C67.125 31.4863 66.8223 31.7129 66.4668 31.877C66.1152 32.0371 65.7168 32.1172 65.2715 32.1172C64.8262 32.1172 64.4258 32.0371 64.0703 31.877C63.7148 31.7129 63.4102 31.4863 63.1562 31.1973C62.9062 30.9043 62.7148 30.5625 62.582 30.1719C62.4492 29.7812 62.3828 29.3574 62.3828 28.9004ZM63.4668 28.7656V28.9004C63.4668 29.2168 63.5039 29.5156 63.5781 29.7969C63.6523 30.0742 63.7637 30.3203 63.9121 30.5352C64.0645 30.75 64.2539 30.9199 64.4805 31.0449C64.707 31.166 64.9707 31.2266 65.2715 31.2266C65.5684 31.2266 65.8281 31.166 66.0508 31.0449C66.2773 30.9199 66.4648 30.75 66.6133 30.5352C66.7617 30.3203 66.873 30.0742 66.9473 29.7969C67.0254 29.5156 67.0645 29.2168 67.0645 28.9004V28.7656C67.0645 28.4531 67.0254 28.1582 66.9473 27.8809C66.873 27.5996 66.7598 27.3516 66.6074 27.1367C66.459 26.918 66.2715 26.7461 66.0449 26.6211C65.8223 26.4961 65.5605 26.4336 65.2598 26.4336C64.9629 26.4336 64.7012 26.4961 64.4746 26.6211C64.252 26.7461 64.0645 26.918 63.9121 27.1367C63.7637 27.3516 63.6523 27.5996 63.5781 27.8809C63.5039 28.1582 63.4668 28.4531 63.4668 28.7656ZM70.5977 27.0137V32H69.5137V25.6602H70.5391L70.5977 27.0137ZM70.3398 28.5898L69.8887 28.5723C69.8926 28.1387 69.957 27.7383 70.082 27.3711C70.207 27 70.3828 26.6777 70.6094 26.4043C70.8359 26.1309 71.1055 25.9199 71.418 25.7715C71.7344 25.6191 72.084 25.543 72.4668 25.543C72.7793 25.543 73.0605 25.5859 73.3105 25.6719C73.5605 25.7539 73.7734 25.8867 73.9492 26.0703C74.1289 26.2539 74.2656 26.4922 74.3594 26.7852C74.4531 27.0742 74.5 27.4277 74.5 27.8457V32H73.4102V27.834C73.4102 27.502 73.3613 27.2363 73.2637 27.0371C73.166 26.834 73.0234 26.6875 72.8359 26.5977C72.6484 26.5039 72.418 26.457 72.1445 26.457C71.875 26.457 71.6289 26.5137 71.4062 26.627C71.1875 26.7402 70.998 26.8965 70.8379 27.0957C70.6816 27.2949 70.5586 27.5234 70.4688 27.7812C70.3828 28.0352 70.3398 28.3047 70.3398 28.5898ZM82.5684 23.4219V32H81.4844V24.7754L79.2988 25.5723V24.5938L82.3984 23.4219H82.5684Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M32.6667 23.3333V32.6667H23.3333V23.3333H32.6667ZM32.6667 22H23.3333C22.6 22 22 22.6 22 23.3333V32.6667C22 33.4 22.6 34 23.3333 34H32.6667C33.4 34 34 33.4 34 32.6667V23.3333C34 22.6 33.4 22 32.6667 22Z",fill:"#64748B"}),(0,o.createElement)("rect",{x:"107",y:"13",width:"84",height:"118",rx:"7",fill:"white",stroke:"#4272F9",strokeWidth:"2"}),(0,o.createElement)("rect",{x:"114",y:"44",width:"70",height:"60",rx:"4",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M161 86V62H137V86H161ZM144.333 76L147.667 80.0133L152.333 74L158.333 82H139.667L144.333 76Z",fill:"#CBD5E1"}),(0,o.createElement)("path",{d:"M141.559 27.4648V28.0039C141.559 28.6445 141.479 29.2188 141.318 29.7266C141.158 30.2344 140.928 30.666 140.627 31.0215C140.326 31.377 139.965 31.6484 139.543 31.8359C139.125 32.0234 138.656 32.1172 138.137 32.1172C137.633 32.1172 137.17 32.0234 136.748 31.8359C136.33 31.6484 135.967 31.377 135.658 31.0215C135.354 30.666 135.117 30.2344 134.949 29.7266C134.781 29.2188 134.697 28.6445 134.697 28.0039V27.4648C134.697 26.8242 134.779 26.252 134.943 25.748C135.111 25.2402 135.348 24.8086 135.652 24.4531C135.957 24.0938 136.318 23.8203 136.736 23.6328C137.158 23.4453 137.621 23.3516 138.125 23.3516C138.645 23.3516 139.113 23.4453 139.531 23.6328C139.953 23.8203 140.314 24.0938 140.615 24.4531C140.92 24.8086 141.152 25.2402 141.312 25.748C141.477 26.252 141.559 26.8242 141.559 27.4648ZM140.439 28.0039V27.4531C140.439 26.9453 140.387 26.4961 140.281 26.1055C140.18 25.7148 140.029 25.3867 139.83 25.1211C139.631 24.8555 139.387 24.6543 139.098 24.5176C138.812 24.3809 138.488 24.3125 138.125 24.3125C137.773 24.3125 137.455 24.3809 137.17 24.5176C136.889 24.6543 136.646 24.8555 136.443 25.1211C136.244 25.3867 136.09 25.7148 135.98 26.1055C135.871 26.4961 135.816 26.9453 135.816 27.4531V28.0039C135.816 28.5156 135.871 28.9688 135.98 29.3633C136.09 29.7539 136.246 30.084 136.449 30.3535C136.656 30.6191 136.9 30.8203 137.182 30.957C137.467 31.0938 137.785 31.1621 138.137 31.1621C138.504 31.1621 138.83 31.0938 139.115 30.957C139.4 30.8203 139.641 30.6191 139.836 30.3535C140.035 30.084 140.186 29.7539 140.287 29.3633C140.389 28.9688 140.439 28.5156 140.439 28.0039ZM144.172 26.8789V34.4375H143.082V25.6602H144.078L144.172 26.8789ZM148.443 28.7773V28.9004C148.443 29.3613 148.389 29.7891 148.279 30.1836C148.17 30.5742 148.01 30.9141 147.799 31.2031C147.592 31.4922 147.336 31.7168 147.031 31.877C146.727 32.0371 146.377 32.1172 145.982 32.1172C145.58 32.1172 145.225 32.0508 144.916 31.918C144.607 31.7852 144.346 31.5918 144.131 31.3379C143.916 31.084 143.744 30.7793 143.615 30.4238C143.49 30.0684 143.404 29.668 143.357 29.2227V28.5664C143.404 28.0977 143.492 27.6777 143.621 27.3066C143.75 26.9355 143.92 26.6191 144.131 26.3574C144.346 26.0918 144.605 25.8906 144.91 25.7539C145.215 25.6133 145.566 25.543 145.965 25.543C146.363 25.543 146.717 25.6211 147.025 25.7773C147.334 25.9297 147.594 26.1484 147.805 26.4336C148.016 26.7188 148.174 27.0605 148.279 27.459C148.389 27.8535 148.443 28.293 148.443 28.7773ZM147.354 28.9004V28.7773C147.354 28.4609 147.32 28.1641 147.254 27.8867C147.188 27.6055 147.084 27.3594 146.943 27.1484C146.807 26.9336 146.631 26.7656 146.416 26.6445C146.201 26.5195 145.945 26.457 145.648 26.457C145.375 26.457 145.137 26.5039 144.934 26.5977C144.734 26.6914 144.564 26.8184 144.424 26.9785C144.283 27.1348 144.168 27.3145 144.078 27.5176C143.992 27.7168 143.928 27.9238 143.885 28.1387V29.6562C143.963 29.9297 144.072 30.1875 144.213 30.4297C144.354 30.668 144.541 30.8613 144.775 31.0098C145.01 31.1543 145.305 31.2266 145.66 31.2266C145.953 31.2266 146.205 31.166 146.416 31.0449C146.631 30.9199 146.807 30.75 146.943 30.5352C147.084 30.3203 147.188 30.0742 147.254 29.7969C147.32 29.5156 147.354 29.2168 147.354 28.9004ZM152.48 25.6602V26.4922H149.053V25.6602H152.48ZM150.213 24.1191H151.297V30.4297C151.297 30.6445 151.33 30.8066 151.396 30.916C151.463 31.0254 151.549 31.0977 151.654 31.1328C151.76 31.168 151.873 31.1855 151.994 31.1855C152.084 31.1855 152.178 31.1777 152.275 31.1621C152.377 31.1426 152.453 31.127 152.504 31.1152L152.51 32C152.424 32.0273 152.311 32.0527 152.17 32.0762C152.033 32.1035 151.867 32.1172 151.672 32.1172C151.406 32.1172 151.162 32.0645 150.939 31.959C150.717 31.8535 150.539 31.6777 150.406 31.4316C150.277 31.1816 150.213 30.8457 150.213 30.4238V24.1191ZM154.93 25.6602V32H153.84V25.6602H154.93ZM153.758 23.9785C153.758 23.8027 153.811 23.6543 153.916 23.5332C154.025 23.4121 154.186 23.3516 154.396 23.3516C154.604 23.3516 154.762 23.4121 154.871 23.5332C154.984 23.6543 155.041 23.8027 155.041 23.9785C155.041 24.1465 154.984 24.291 154.871 24.4121C154.762 24.5293 154.604 24.5879 154.396 24.5879C154.186 24.5879 154.025 24.5293 153.916 24.4121C153.811 24.291 153.758 24.1465 153.758 23.9785ZM156.383 28.9004V28.7656C156.383 28.3086 156.449 27.8848 156.582 27.4941C156.715 27.0996 156.906 26.7578 157.156 26.4688C157.406 26.1758 157.709 25.9492 158.064 25.7891C158.42 25.625 158.818 25.543 159.26 25.543C159.705 25.543 160.105 25.625 160.461 25.7891C160.82 25.9492 161.125 26.1758 161.375 26.4688C161.629 26.7578 161.822 27.0996 161.955 27.4941C162.088 27.8848 162.154 28.3086 162.154 28.7656V28.9004C162.154 29.3574 162.088 29.7812 161.955 30.1719C161.822 30.5625 161.629 30.9043 161.375 31.1973C161.125 31.4863 160.822 31.7129 160.467 31.877C160.115 32.0371 159.717 32.1172 159.271 32.1172C158.826 32.1172 158.426 32.0371 158.07 31.877C157.715 31.7129 157.41 31.4863 157.156 31.1973C156.906 30.9043 156.715 30.5625 156.582 30.1719C156.449 29.7812 156.383 29.3574 156.383 28.9004ZM157.467 28.7656V28.9004C157.467 29.2168 157.504 29.5156 157.578 29.7969C157.652 30.0742 157.764 30.3203 157.912 30.5352C158.064 30.75 158.254 30.9199 158.48 31.0449C158.707 31.166 158.971 31.2266 159.271 31.2266C159.568 31.2266 159.828 31.166 160.051 31.0449C160.277 30.9199 160.465 30.75 160.613 30.5352C160.762 30.3203 160.873 30.0742 160.947 29.7969C161.025 29.5156 161.064 29.2168 161.064 28.9004V28.7656C161.064 28.4531 161.025 28.1582 160.947 27.8809C160.873 27.5996 160.76 27.3516 160.607 27.1367C160.459 26.918 160.271 26.7461 160.045 26.6211C159.822 26.4961 159.561 26.4336 159.26 26.4336C158.963 26.4336 158.701 26.4961 158.475 26.6211C158.252 26.7461 158.064 26.918 157.912 27.1367C157.764 27.3516 157.652 27.5996 157.578 27.8809C157.504 28.1582 157.467 28.4531 157.467 28.7656ZM164.598 27.0137V32H163.514V25.6602H164.539L164.598 27.0137ZM164.34 28.5898L163.889 28.5723C163.893 28.1387 163.957 27.7383 164.082 27.3711C164.207 27 164.383 26.6777 164.609 26.4043C164.836 26.1309 165.105 25.9199 165.418 25.7715C165.734 25.6191 166.084 25.543 166.467 25.543C166.779 25.543 167.061 25.5859 167.311 25.6719C167.561 25.7539 167.773 25.8867 167.949 26.0703C168.129 26.2539 168.266 26.4922 168.359 26.7852C168.453 27.0742 168.5 27.4277 168.5 27.8457V32H167.41V27.834C167.41 27.502 167.361 27.2363 167.264 27.0371C167.166 26.834 167.023 26.6875 166.836 26.5977C166.648 26.5039 166.418 26.457 166.145 26.457C165.875 26.457 165.629 26.5137 165.406 26.627C165.188 26.7402 164.998 26.8965 164.838 27.0957C164.682 27.2949 164.559 27.5234 164.469 27.7812C164.383 28.0352 164.34 28.3047 164.34 28.5898ZM178.596 31.1094V32H173.012V31.2207L175.807 28.1094C176.15 27.7266 176.416 27.4023 176.604 27.1367C176.795 26.8672 176.928 26.627 177.002 26.416C177.08 26.2012 177.119 25.9824 177.119 25.7598C177.119 25.4785 177.061 25.2246 176.943 24.998C176.83 24.7676 176.662 24.584 176.439 24.4473C176.217 24.3105 175.947 24.2422 175.631 24.2422C175.252 24.2422 174.936 24.3164 174.682 24.4648C174.432 24.6094 174.244 24.8125 174.119 25.0742C173.994 25.3359 173.932 25.6367 173.932 25.9766H172.848C172.848 25.4961 172.953 25.0566 173.164 24.6582C173.375 24.2598 173.688 23.9434 174.102 23.709C174.516 23.4707 175.025 23.3516 175.631 23.3516C176.17 23.3516 176.631 23.4473 177.014 23.6387C177.396 23.8262 177.689 24.0918 177.893 24.4355C178.1 24.7754 178.203 25.1738 178.203 25.6309C178.203 25.8809 178.16 26.1348 178.074 26.3926C177.992 26.6465 177.877 26.9004 177.729 27.1543C177.584 27.4082 177.414 27.6582 177.219 27.9043C177.027 28.1504 176.822 28.3926 176.604 28.6309L174.318 31.1094H178.596Z",fill:"#0F172A"}),(0,o.createElement)("g",{clipPath:"url(#clip0_171_1873)"},(0,o.createElement)("path",{d:"M128.667 23.4533L121.06 31.0667L118.233 28.24L119.173 27.3L121.06 29.1867L127.727 22.52L128.667 23.4533ZM127.193 26.8133C127.28 27.1933 127.333 27.5933 127.333 28C127.333 30.9467 124.947 33.3333 122 33.3333C119.053 33.3333 116.667 30.9467 116.667 28C116.667 25.0533 119.053 22.6667 122 22.6667C123.053 22.6667 124.027 22.9733 124.853 23.5L125.813 22.54C124.733 21.78 123.42 21.3333 122 21.3333C118.32 21.3333 115.333 24.32 115.333 28C115.333 31.68 118.32 34.6667 122 34.6667C125.68 34.6667 128.667 31.68 128.667 28C128.667 27.2067 128.52 26.4467 128.267 25.74L127.193 26.8133Z",fill:"#4272F9"})),(0,o.createElement)("rect",{x:"114",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"114",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"200",y:"12",width:"86",height:"120",rx:"8",fill:"white"}),(0,o.createElement)("rect",{x:"208",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"208",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"208",y:"44",width:"70",height:"60",rx:"4",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M255 86V62H231V86H255ZM238.333 76L241.667 80.0133L246.333 74L252.333 82H233.667L238.333 76Z",fill:"#CBD5E1"}),(0,o.createElement)("path",{d:"M235.559 27.4648V28.0039C235.559 28.6445 235.479 29.2188 235.318 29.7266C235.158 30.2344 234.928 30.666 234.627 31.0215C234.326 31.377 233.965 31.6484 233.543 31.8359C233.125 32.0234 232.656 32.1172 232.137 32.1172C231.633 32.1172 231.17 32.0234 230.748 31.8359C230.33 31.6484 229.967 31.377 229.658 31.0215C229.354 30.666 229.117 30.2344 228.949 29.7266C228.781 29.2188 228.697 28.6445 228.697 28.0039V27.4648C228.697 26.8242 228.779 26.252 228.943 25.748C229.111 25.2402 229.348 24.8086 229.652 24.4531C229.957 24.0938 230.318 23.8203 230.736 23.6328C231.158 23.4453 231.621 23.3516 232.125 23.3516C232.645 23.3516 233.113 23.4453 233.531 23.6328C233.953 23.8203 234.314 24.0938 234.615 24.4531C234.92 24.8086 235.152 25.2402 235.312 25.748C235.477 26.252 235.559 26.8242 235.559 27.4648ZM234.439 28.0039V27.4531C234.439 26.9453 234.387 26.4961 234.281 26.1055C234.18 25.7148 234.029 25.3867 233.83 25.1211C233.631 24.8555 233.387 24.6543 233.098 24.5176C232.812 24.3809 232.488 24.3125 232.125 24.3125C231.773 24.3125 231.455 24.3809 231.17 24.5176C230.889 24.6543 230.646 24.8555 230.443 25.1211C230.244 25.3867 230.09 25.7148 229.98 26.1055C229.871 26.4961 229.816 26.9453 229.816 27.4531V28.0039C229.816 28.5156 229.871 28.9688 229.98 29.3633C230.09 29.7539 230.246 30.084 230.449 30.3535C230.656 30.6191 230.9 30.8203 231.182 30.957C231.467 31.0938 231.785 31.1621 232.137 31.1621C232.504 31.1621 232.83 31.0938 233.115 30.957C233.4 30.8203 233.641 30.6191 233.836 30.3535C234.035 30.084 234.186 29.7539 234.287 29.3633C234.389 28.9688 234.439 28.5156 234.439 28.0039ZM238.172 26.8789V34.4375H237.082V25.6602H238.078L238.172 26.8789ZM242.443 28.7773V28.9004C242.443 29.3613 242.389 29.7891 242.279 30.1836C242.17 30.5742 242.01 30.9141 241.799 31.2031C241.592 31.4922 241.336 31.7168 241.031 31.877C240.727 32.0371 240.377 32.1172 239.982 32.1172C239.58 32.1172 239.225 32.0508 238.916 31.918C238.607 31.7852 238.346 31.5918 238.131 31.3379C237.916 31.084 237.744 30.7793 237.615 30.4238C237.49 30.0684 237.404 29.668 237.357 29.2227V28.5664C237.404 28.0977 237.492 27.6777 237.621 27.3066C237.75 26.9355 237.92 26.6191 238.131 26.3574C238.346 26.0918 238.605 25.8906 238.91 25.7539C239.215 25.6133 239.566 25.543 239.965 25.543C240.363 25.543 240.717 25.6211 241.025 25.7773C241.334 25.9297 241.594 26.1484 241.805 26.4336C242.016 26.7188 242.174 27.0605 242.279 27.459C242.389 27.8535 242.443 28.293 242.443 28.7773ZM241.354 28.9004V28.7773C241.354 28.4609 241.32 28.1641 241.254 27.8867C241.188 27.6055 241.084 27.3594 240.943 27.1484C240.807 26.9336 240.631 26.7656 240.416 26.6445C240.201 26.5195 239.945 26.457 239.648 26.457C239.375 26.457 239.137 26.5039 238.934 26.5977C238.734 26.6914 238.564 26.8184 238.424 26.9785C238.283 27.1348 238.168 27.3145 238.078 27.5176C237.992 27.7168 237.928 27.9238 237.885 28.1387V29.6562C237.963 29.9297 238.072 30.1875 238.213 30.4297C238.354 30.668 238.541 30.8613 238.775 31.0098C239.01 31.1543 239.305 31.2266 239.66 31.2266C239.953 31.2266 240.205 31.166 240.416 31.0449C240.631 30.9199 240.807 30.75 240.943 30.5352C241.084 30.3203 241.188 30.0742 241.254 29.7969C241.32 29.5156 241.354 29.2168 241.354 28.9004ZM246.48 25.6602V26.4922H243.053V25.6602H246.48ZM244.213 24.1191H245.297V30.4297C245.297 30.6445 245.33 30.8066 245.396 30.916C245.463 31.0254 245.549 31.0977 245.654 31.1328C245.76 31.168 245.873 31.1855 245.994 31.1855C246.084 31.1855 246.178 31.1777 246.275 31.1621C246.377 31.1426 246.453 31.127 246.504 31.1152L246.51 32C246.424 32.0273 246.311 32.0527 246.17 32.0762C246.033 32.1035 245.867 32.1172 245.672 32.1172C245.406 32.1172 245.162 32.0645 244.939 31.959C244.717 31.8535 244.539 31.6777 244.406 31.4316C244.277 31.1816 244.213 30.8457 244.213 30.4238V24.1191ZM248.93 25.6602V32H247.84V25.6602H248.93ZM247.758 23.9785C247.758 23.8027 247.811 23.6543 247.916 23.5332C248.025 23.4121 248.186 23.3516 248.396 23.3516C248.604 23.3516 248.762 23.4121 248.871 23.5332C248.984 23.6543 249.041 23.8027 249.041 23.9785C249.041 24.1465 248.984 24.291 248.871 24.4121C248.762 24.5293 248.604 24.5879 248.396 24.5879C248.186 24.5879 248.025 24.5293 247.916 24.4121C247.811 24.291 247.758 24.1465 247.758 23.9785ZM250.383 28.9004V28.7656C250.383 28.3086 250.449 27.8848 250.582 27.4941C250.715 27.0996 250.906 26.7578 251.156 26.4688C251.406 26.1758 251.709 25.9492 252.064 25.7891C252.42 25.625 252.818 25.543 253.26 25.543C253.705 25.543 254.105 25.625 254.461 25.7891C254.82 25.9492 255.125 26.1758 255.375 26.4688C255.629 26.7578 255.822 27.0996 255.955 27.4941C256.088 27.8848 256.154 28.3086 256.154 28.7656V28.9004C256.154 29.3574 256.088 29.7812 255.955 30.1719C255.822 30.5625 255.629 30.9043 255.375 31.1973C255.125 31.4863 254.822 31.7129 254.467 31.877C254.115 32.0371 253.717 32.1172 253.271 32.1172C252.826 32.1172 252.426 32.0371 252.07 31.877C251.715 31.7129 251.41 31.4863 251.156 31.1973C250.906 30.9043 250.715 30.5625 250.582 30.1719C250.449 29.7812 250.383 29.3574 250.383 28.9004ZM251.467 28.7656V28.9004C251.467 29.2168 251.504 29.5156 251.578 29.7969C251.652 30.0742 251.764 30.3203 251.912 30.5352C252.064 30.75 252.254 30.9199 252.48 31.0449C252.707 31.166 252.971 31.2266 253.271 31.2266C253.568 31.2266 253.828 31.166 254.051 31.0449C254.277 30.9199 254.465 30.75 254.613 30.5352C254.762 30.3203 254.873 30.0742 254.947 29.7969C255.025 29.5156 255.064 29.2168 255.064 28.9004V28.7656C255.064 28.4531 255.025 28.1582 254.947 27.8809C254.873 27.5996 254.76 27.3516 254.607 27.1367C254.459 26.918 254.271 26.7461 254.045 26.6211C253.822 26.4961 253.561 26.4336 253.26 26.4336C252.963 26.4336 252.701 26.4961 252.475 26.6211C252.252 26.7461 252.064 26.918 251.912 27.1367C251.764 27.3516 251.652 27.5996 251.578 27.8809C251.504 28.1582 251.467 28.4531 251.467 28.7656ZM258.598 27.0137V32H257.514V25.6602H258.539L258.598 27.0137ZM258.34 28.5898L257.889 28.5723C257.893 28.1387 257.957 27.7383 258.082 27.3711C258.207 27 258.383 26.6777 258.609 26.4043C258.836 26.1309 259.105 25.9199 259.418 25.7715C259.734 25.6191 260.084 25.543 260.467 25.543C260.779 25.543 261.061 25.5859 261.311 25.6719C261.561 25.7539 261.773 25.8867 261.949 26.0703C262.129 26.2539 262.266 26.4922 262.359 26.7852C262.453 27.0742 262.5 27.4277 262.5 27.8457V32H261.41V27.834C261.41 27.502 261.361 27.2363 261.264 27.0371C261.166 26.834 261.023 26.6875 260.836 26.5977C260.648 26.5039 260.418 26.457 260.145 26.457C259.875 26.457 259.629 26.5137 259.406 26.627C259.188 26.7402 258.998 26.8965 258.838 27.0957C258.682 27.2949 258.559 27.5234 258.469 27.7812C258.383 28.0352 258.34 28.3047 258.34 28.5898ZM268.588 27.2012H269.361C269.74 27.2012 270.053 27.1387 270.299 27.0137C270.549 26.8848 270.734 26.7109 270.855 26.4922C270.98 26.2695 271.043 26.0195 271.043 25.7422C271.043 25.4141 270.988 25.1387 270.879 24.916C270.77 24.6934 270.605 24.5254 270.387 24.4121C270.168 24.2988 269.891 24.2422 269.555 24.2422C269.25 24.2422 268.98 24.3027 268.746 24.4238C268.516 24.541 268.334 24.709 268.201 24.9277C268.072 25.1465 268.008 25.4043 268.008 25.7012H266.924C266.924 25.2676 267.033 24.873 267.252 24.5176C267.471 24.1621 267.777 23.8789 268.172 23.668C268.57 23.457 269.031 23.3516 269.555 23.3516C270.07 23.3516 270.521 23.4434 270.908 23.627C271.295 23.8066 271.596 24.0762 271.811 24.4355C272.025 24.791 272.133 25.2344 272.133 25.7656C272.133 25.9805 272.082 26.2109 271.98 26.457C271.883 26.6992 271.729 26.9258 271.518 27.1367C271.311 27.3477 271.041 27.5215 270.709 27.6582C270.377 27.791 269.979 27.8574 269.514 27.8574H268.588V27.2012ZM268.588 28.0918V27.4414H269.514C270.057 27.4414 270.506 27.5059 270.861 27.6348C271.217 27.7637 271.496 27.9355 271.699 28.1504C271.906 28.3652 272.051 28.6016 272.133 28.8594C272.219 29.1133 272.262 29.3672 272.262 29.6211C272.262 30.0195 272.193 30.373 272.057 30.6816C271.924 30.9902 271.734 31.252 271.488 31.4668C271.246 31.6816 270.961 31.8438 270.633 31.9531C270.305 32.0625 269.947 32.1172 269.561 32.1172C269.189 32.1172 268.84 32.0645 268.512 31.959C268.188 31.8535 267.9 31.7012 267.65 31.502C267.4 31.2988 267.205 31.0508 267.064 30.7578C266.924 30.4609 266.854 30.123 266.854 29.7441H267.938C267.938 30.041 268.002 30.3008 268.131 30.5234C268.264 30.7461 268.451 30.9199 268.693 31.0449C268.939 31.166 269.229 31.2266 269.561 31.2266C269.893 31.2266 270.178 31.1699 270.416 31.0566C270.658 30.9395 270.844 30.7637 270.973 30.5293C271.105 30.2949 271.172 30 271.172 29.6445C271.172 29.2891 271.098 28.998 270.949 28.7715C270.801 28.541 270.59 28.3711 270.316 28.2617C270.047 28.1484 269.729 28.0918 269.361 28.0918H268.588Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M220.667 23.3333V32.6667H211.333V23.3333H220.667ZM220.667 22H211.333C210.6 22 210 22.6 210 23.3333V32.6667C210 33.4 210.6 34 211.333 34H220.667C221.4 34 222 33.4 222 32.6667V23.3333C222 22.6 221.4 22 220.667 22Z",fill:"#64748B"}),(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"clip0_171_1873"},(0,o.createElement)("rect",{width:"16",height:"16",fill:"white",transform:"translate(114 20)"})))),{__:L}=wp.i18n;let{InspectorControls:y,useBlockProps:Z,useInnerBlocksProps:_,useBlockEditContext:x}=wp.blockEditor;const{ToolBarFields:B,BlockLabel:F,BlockName:N,BlockDescription:S,BlockAdvancedValue:A,FieldWrapper:I,StylePanel:P,StyleColorItem:R,StyleColorItemsWrapper:T,StyleBorderItem:D,StyleBorderRadiusItem:O,SwitchPageOnChangeControls:J}=JetFBComponents,{PanelBody:G,ToggleControl:q}=wp.components,{useJetStyle:W,useUniqueNameOnDuplicate:z,useUniqKey:U}=JetFBHooks,{useState:Y}=wp.element,$=["jet-forms/choice"],K=()=>{const{clientId:e}=x(),t=e+"sample-control-1",l=e+"sample-control-2";return(0,o.createElement)(o.Fragment,null,(0,o.createElement)("li",{className:"jet-form-builder-choice--item"},(0,o.createElement)("span",{className:"jet-form-builder-choice--item-control"},(0,o.createElement)("input",{id:t,type:"checkbox",className:"jet-form-builder-choice--item-control-input"}),(0,o.createElement)("label",{htmlFor:t},L("Item #1","jet-form-builder")))),(0,o.createElement)("li",{className:"jet-form-builder-choice--item"},(0,o.createElement)("span",{className:"jet-form-builder-choice--item-control"},(0,o.createElement)("input",{id:l,type:"checkbox",className:"jet-form-builder-choice--item-control-input"}),(0,o.createElement)("label",{htmlFor:l},L("Item #2","jet-form-builder")))))},Q={className:"jet-form-builder-choice"},X=JSON.parse('{"apiVersion":3,"name":"jet-forms/choices-field","category":"jet-form-builder-fields","title":"Advanced Choices Field","description":"","icon":"\\n\\n\\n\\n\\n\\n\\n","attributes":{"isPreview":{"type":"boolean","default":false},"value":{"type":"object","default":{}},"allow_multiple":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":["string","array","number","boolean","object"],"default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"visibility":{"type":"string","default":""}},"keywords":["jetformbuilder","field","choices"],"textdomain":"jet-form-builder","supports":{"html":false,"jetFBSwitchPageOnChange":true,"jetFBSanitizeValue":true,"jetStyle":{"--jfb-choice-text":[".jet-form-builder-choice--item","color","text"],"--jfb-choice-bg":[".jet-form-builder-choice--item","color","background"],"--jfb-choice-border":[".jet-form-builder-choice--item","border"],"--jfb-choice-border-radius":[".jet-form-builder-choice--item","border","radius"],"--jfb-choice-hover-text":[".jet-form-builder-choice--item:hover","color","text"],"--jfb-choice-hover-bg":[".jet-form-builder-choice--item:hover","color","background"],"--jfb-choice-hover-border":[".jet-form-builder-choice--item:hover","border"],"--jfb-choice-hover-border-radius":[".jet-form-builder-choice--item:hover","border","radius"],"--jfb-choice-checked-text":[".jet-form-builder-choice--item.is-checked","color","text"],"--jfb-choice-checked-bg":[".jet-form-builder-choice--item.is-checked","color","background"],"--jfb-choice-checked-border":[".jet-form-builder-choice--item.is-checked","border"],"--jfb-choice-checked-border-radius":[".jet-form-builder-choice--item.is-checked","border","radius"]},"jetCustomWrapperLayout":true,"layout":{"allowSwitching":false,"allowInheriting":false,"allowVerticalAlignment":false,"allowSizingOnChildren":true,"default":{"type":"flex"}},"spacing":{"blockGap":["horizontal","vertical"],"margin":true,"padding":true,"units":["px","em","rem","vh","vw"]}},"providesContext":{"jet-forms/choices-field--multiple":"allow_multiple","jet-forms/choices-field--required":"required","jet-forms/choices-field--name":"name","jet-forms/choices-field--default":"default"},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-advanced-choices","style":"jet-fb-advanced-choices"}'),{__:ee}=wp.i18n,{assetUrl:te}=JetFBActions,le=e=>["core/image",{alt:e,url:te("img/image-placeholder.jpg"),width:100,height:100}],Ce=[{name:"simple-empty",title:ee("Simple Empty","jet-form-builder"),innerBlocks:[["jet-forms/choice"],["jet-forms/choice"]],isDefault:!0,scope:["hidden"]},{name:"simple-buttons",title:ee("Text","jet-form-builder"),description:ee("Simple buttons list with labels","jet-form-builder"),icon:(0,o.createElement)("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M24.7125 10.7017C25.1 10.3082 25.0952 9.67505 24.7017 9.28752C24.3082 8.89998 23.675 8.90482 23.2875 9.29831L12.1609 20.5961L8.69122 17.2774C8.29212 16.8956 7.65911 16.9097 7.27736 17.3088C6.89561 17.7079 6.90967 18.3409 7.30878 18.7226L12.2028 23.4039L24.7125 10.7017Z",fill:"#0F172A"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 4C0 1.79086 1.79086 0 4 0H28C30.2091 0 32 1.79086 32 4V28C32 30.2091 30.2091 32 28 32H4C1.79086 32 0 30.2091 0 28V4ZM4 2H28C29.1046 2 30 2.89543 30 4V28C30 29.1046 29.1046 30 28 30H4C2.89543 30 2 29.1046 2 28V4C2 2.89543 2.89543 2 4 2Z",fill:"#0F172A"})),innerBlocks:[["jet-forms/choice",{value:"Book Name #1",calc_value:"100"},[["core/paragraph",{content:"Book Name #1"}]]],["jet-forms/choice",{value:"Book Name #2",calc_value:"200"},[["core/paragraph",{content:"Book Name #2"}]]],["jet-forms/choice",{value:"Book Name #3",calc_value:"200"},[["core/paragraph",{content:"Book Name #3"}]]]],scope:["block"]},{name:"images",title:ee("Images","jet-form-builder"),description:ee("Image buttons","jet-form-builder"),icon:(0,o.createElement)("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.5 15C18.433 15 20 13.433 20 11.5C20 9.567 18.433 8 16.5 8C14.567 8 13 9.567 13 11.5C13 13.433 14.567 15 16.5 15ZM16.5 13C17.3284 13 18 12.3284 18 11.5C18 10.6716 17.3284 10 16.5 10C15.6716 10 15 10.6716 15 11.5C15 12.3284 15.6716 13 16.5 13Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M20.7917 17.2985C20.6037 17.1076 20.3469 17 20.0789 17C19.811 17 19.5542 17.1076 19.3662 17.2985L15.1579 21.5744L12.2917 18.6622C12.1037 18.4712 11.8469 18.3636 11.5789 18.3636C11.311 18.3636 11.0542 18.4712 10.8662 18.6622L7.28729 22.2985C6.89989 22.6922 6.90492 23.3253 7.29854 23.7127C7.69216 24.1001 8.32531 24.0951 8.71271 23.7015L11.5789 20.7892L14.4452 23.7015C14.6332 23.8924 14.8899 24 15.1579 24C15.4259 24 15.6826 23.8924 15.8706 23.7015L20.0789 19.4256L24.2873 23.7015C24.6747 24.0951 25.3078 24.1001 25.7015 23.7127C26.0951 23.3253 26.1001 22.6922 25.7127 22.2985L20.7917 17.2985Z",fill:"#0F172A"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 4C0 1.79086 1.79086 0 4 0H28C30.2091 0 32 1.79086 32 4V28C32 30.2091 30.2091 32 28 32H4C1.79086 32 0 30.2091 0 28V4ZM4 2H28C29.1046 2 30 2.89543 30 4V28C30 29.1046 29.1046 30 28 30H4C2.89543 30 2 29.1046 2 28V4C2 2.89543 2.89543 2 4 2Z",fill:"#0F172A"})),innerBlocks:[["jet-forms/choice",{value:"Book Name #1",calc_value:"100"},[le("Book Name #1")]],["jet-forms/choice",{value:"Book Name #2",calc_value:"200"},[le("Book Name #2")]],["jet-forms/choice",{value:"Book Name #3",calc_value:"200"},[le("Book Name #3")]]],scope:["block"]},{name:"buttons-with-images",title:ee("Images with description","jet-form-builder"),description:ee("Image buttons with labels in footer","jet-form-builder"),icon:(0,o.createElement)("svg",{width:"32",height:"38",viewBox:"0 0 32 38",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.5 13C18.433 13 20 11.433 20 9.5C20 7.567 18.433 6 16.5 6C14.567 6 13 7.567 13 9.5C13 11.433 14.567 13 16.5 13ZM16.5 11C17.3284 11 18 10.3284 18 9.5C18 8.67157 17.3284 8 16.5 8C15.6716 8 15 8.67157 15 9.5C15 10.3284 15.6716 11 16.5 11Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M20.7917 15.2985C20.6037 15.1076 20.3469 15 20.0789 15C19.811 15 19.5542 15.1076 19.3662 15.2985L15.1579 19.5744L12.2917 16.6622C12.1037 16.4712 11.8469 16.3636 11.5789 16.3636C11.311 16.3636 11.0542 16.4712 10.8662 16.6622L7.28729 20.2985C6.89989 20.6922 6.90492 21.3253 7.29854 21.7127C7.69216 22.1001 8.32531 22.0951 8.71271 21.7015L11.5789 18.7892L14.4452 21.7015C14.6332 21.8924 14.8899 22 15.1579 22C15.4259 22 15.6826 21.8924 15.8706 21.7015L20.0789 17.4256L24.2873 21.7015C24.6747 22.0951 25.3078 22.1001 25.7015 21.7127C26.0951 21.3253 26.1001 20.6922 25.7127 20.2985L20.7917 15.2985Z",fill:"#0F172A"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 4C0 1.79086 1.79086 0 4 0H28C30.2091 0 32 1.79086 32 4V24C32 26.2091 30.2091 28 28 28H4C1.79086 28 0 26.2091 0 24V4ZM4 2H28C29.1046 2 30 2.89543 30 4V24C30 25.1046 29.1046 26 28 26H4C2.89543 26 2 25.1046 2 24V4C2 2.89543 2.89543 2 4 2Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M1 32C0.447715 32 0 32.4477 0 33C0 33.5523 0.447715 34 1 34H31C31.5523 34 32 33.5523 32 33C32 32.4477 31.5523 32 31 32H1Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M0 37C0 36.4477 0.447715 36 1 36H27C27.5523 36 28 36.4477 28 37C28 37.5523 27.5523 38 27 38H1C0.447715 38 0 37.5523 0 37Z",fill:"#0F172A"})),innerBlocks:[["jet-forms/choice",{value:"Book Name #1",calc_value:"100"},[le("Book Name #1"),["core/paragraph",{content:"Book Name #1"}]]],["jet-forms/choice",{value:"Book Name #2",calc_value:"200"},[le("Book Name #2"),["core/paragraph",{content:"Book Name #2"}]]],["jet-forms/choice",{value:"Book Name #3",calc_value:"200"},[le("Book Name #3"),["core/paragraph",{content:"Book Name #3"}]]]],scope:["block"]},{name:"images-with-controls",title:ee("Images with controls","jet-form-builder"),description:ee("Image buttons with controls in footer","jet-form-builder"),icon:(0,o.createElement)("svg",{width:"32",height:"40",viewBox:"0 0 32 40",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 0C2.23858 0 0 2.23858 0 5C0 7.76142 2.23858 10 5 10C7.76142 10 10 7.76142 10 5C10 2.23858 7.76142 0 5 0ZM2 5C2 6.65685 3.34315 8 5 8C6.65685 8 8 6.65685 8 5C8 3.34315 6.65685 2 5 2C3.34315 2 2 3.34315 2 5Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M12 3C12 2.44772 12.4477 2 13 2H31C31.5523 2 32 2.44772 32 3C32 3.55228 31.5523 4 31 4H13C12.4477 4 12 3.55228 12 3Z",fill:"#0F172A"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.5 25C18.433 25 20 23.433 20 21.5C20 19.567 18.433 18 16.5 18C14.567 18 13 19.567 13 21.5C13 23.433 14.567 25 16.5 25ZM16.5 23C17.3284 23 18 22.3284 18 21.5C18 20.6716 17.3284 20 16.5 20C15.6716 20 15 20.6716 15 21.5C15 22.3284 15.6716 23 16.5 23Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M20.7917 27.2985C20.6037 27.1076 20.3469 27 20.0789 27C19.811 27 19.5542 27.1076 19.3662 27.2985L15.1579 31.5744L12.2917 28.6622C12.1037 28.4712 11.8469 28.3636 11.5789 28.3636C11.311 28.3636 11.0542 28.4712 10.8662 28.6622L7.28729 32.2985C6.89989 32.6922 6.90492 33.3253 7.29854 33.7127C7.69216 34.1001 8.32531 34.0951 8.71271 33.7015L11.5789 30.7892L14.4452 33.7015C14.6332 33.8924 14.8899 34 15.1579 34C15.4259 34 15.6826 33.8924 15.8706 33.7015L20.0789 29.4256L24.2873 33.7015C24.6747 34.0951 25.3078 34.1001 25.7015 33.7127C26.0951 33.3253 26.1001 32.6922 25.7127 32.2985L20.7917 27.2985Z",fill:"#0F172A"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 12C1.79086 12 0 13.7909 0 16V36C0 38.2091 1.79086 40 4 40H28C30.2091 40 32 38.2091 32 36V16C32 13.7909 30.2091 12 28 12H4ZM28 14H4C2.89543 14 2 14.8954 2 16V36C2 37.1046 2.89543 38 4 38H28C29.1046 38 30 37.1046 30 36V16C30 14.8954 29.1046 14 28 14Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M13 6C12.4477 6 12 6.44772 12 7C12 7.55228 12.4477 8 13 8H31C31.5523 8 32 7.55228 32 7C32 6.44772 31.5523 6 31 6H13Z",fill:"#0F172A"})),innerBlocks:[["jet-forms/choice",{value:"Book Name #1",calc_value:"100"},[le("Book Name #1"),["jet-forms/choice-control",{label:"Book Name #1"}]]],["jet-forms/choice",{value:"Book Name #2",calc_value:"200"},[le("Book Name #2"),["jet-forms/choice-control",{label:"Book Name #1"}]]],["jet-forms/choice",{value:"Book Name #3",calc_value:"200"},[le("Book Name #3"),["jet-forms/choice-control",{label:"Book Name #1"}]]]],scope:["block"]}],{useInnerBlocksProps:oe}=wp.blockEditor,{Fragment:re}=wp.element,{createBlock:ie}=wp.blocks,ce=e=>"manual_input"===e.field_options_from&&Array.isArray(e.field_options)&&e.field_options.length>0,ae=(e,t)=>{var l;const C=e.field_options.map(e=>{var t,l;return ie("jet-forms/choice",{value:e.value,calc_value:null!==(t=e.calculate)&&void 0!==t?t:""},[ie("jet-forms/choice-control",{label:null!==(l=e.label)&&void 0!==l?l:""})])});return ie(me,{name:e.name,label:e.label,desc:e.desc,value:e.value,default:e.default,required:e.required,visibility:e.visibility,switch_on_change:null!==(l=e.switch_on_change)&&void 0!==l&&l,allow_multiple:!!t},C)},ne={from:[{type:"block",blocks:["jet-forms/checkbox-field"],isMatch:ce,transform:e=>ae(e,!0),priority:-1},{type:"block",blocks:["jet-forms/radio-field"],isMatch:ce,transform:e=>ae(e,!1),priority:-1},{type:"block",blocks:["jet-forms/select-field"],isMatch:ce,transform:e=>ae(e,e.multiple),priority:-1}]},{name:me,icon:se}=X,{__:de}=wp.i18n;X.supports.__experimentalLayout=X.supports.layout;const ue={icon:(0,o.createElement)("span",{dangerouslySetInnerHTML:{__html:se}}),description:de("Turn any block, text, images, or other objects into the object \nfor selection with this block.","jet-form-builder"),edit:function(e){const{isSelected:t,attributes:l,setAttributes:C}=e;z();const r=U(),i=Z(),c=W(Q),a=_(c,{allowedBlocks:$,placeholder:t?(0,o.createElement)(u,null):(0,o.createElement)(K,null)}),n=function({allow_multiple:e}){const[t,l]=Y(()=>e?[]:"");return{current:t,updateCurrent:C=>{if(!e)return void l(t!==C?C:"");const o=Array.isArray(t)?t:[t];o.includes(C)?l(o.filter(e=>e!==C)):l([...o,C])}}}(l);return l.isPreview?(0,o.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},M):(0,o.createElement)(f.Provider,{value:n},(0,o.createElement)(B,null,(0,o.createElement)(H,null)),!l.allow_multiple&&(0,o.createElement)(J,null),(0,o.createElement)(y,null,(0,o.createElement)(G,{title:L("General","jet-form-builder")},(0,o.createElement)(F,null),(0,o.createElement)(N,null),(0,o.createElement)(S,null)),(0,o.createElement)(G,{title:L("Value","jet-form-builder")},(0,o.createElement)(q,{label:L("Allow multiple choices","jet-form-builder"),checked:l.allow_multiple,help:L("Enable this option if you need to be able \nto select multiple options","jet-form-builder"),onChange:e=>C({allow_multiple:e})}),(0,o.createElement)(A,{help:l.allow_multiple&&L("You should list the choice \nvalues separated by commas that should be selected by default. But this \nis not the case when you use a dynamic value using a preset, macros, etc.","jet-form-builder")}))),(0,o.createElement)(y,{group:"styles"},(0,o.createElement)(P,{label:L("Default choice","jet-form-builder")},(0,o.createElement)(T,null,(0,o.createElement)(R,{cssVar:"--jfb-choice-text",label:L("Text Choice","jet-form-builder")}),(0,o.createElement)(R,{cssVar:"--jfb-choice-bg",label:L("Background Choice","jet-form-builder")})),(0,o.createElement)(D,{cssVar:"--jfb-choice-border",label:L("Border","jet-form-builder"),enableAlpha:!0,labelForControl:!0}),(0,o.createElement)(O,{cssVar:"--jfb-choice-border-radius",label:L("Radius","jet-form-builder")})),(0,o.createElement)(P,{label:L("Hover choice","jet-form-builder")},(0,o.createElement)(T,null,(0,o.createElement)(R,{cssVar:"--jfb-choice-hover-text",label:L("Text Choice","jet-form-builder")}),(0,o.createElement)(R,{cssVar:"--jfb-choice-hover-bg",label:L("Background Choice","jet-form-builder")})),(0,o.createElement)(D,{cssVar:"--jfb-choice-hover-border",label:L("Border","jet-form-builder"),enableAlpha:!0,labelForControl:!0}),(0,o.createElement)(O,{cssVar:"--jfb-choice-hover-border-radius",label:L("Radius","jet-form-builder")})),(0,o.createElement)(P,{label:L("Checked choice","jet-form-builder")},(0,o.createElement)(T,null,(0,o.createElement)(R,{cssVar:"--jfb-choice-checked-text",label:L("Text Choice","jet-form-builder")}),(0,o.createElement)(R,{cssVar:"--jfb-choice-checked-bg",label:L("Background Choice","jet-form-builder")})),(0,o.createElement)(D,{cssVar:"--jfb-choice-checked-border",label:L("Border","jet-form-builder"),enableAlpha:!0,labelForControl:!0}),(0,o.createElement)(O,{cssVar:"--jfb-choice-checked-border-radius",label:L("Radius","jet-form-builder")}))),(0,o.createElement)("div",{...i,key:r("viewBlock")},(0,o.createElement)(I,{...e,key:r("viewBlockWrapper")},(0,o.createElement)("ul",{...a}))))},save:function(){const e=oe.save();return(0,o.createElement)(re,{...e})},example:{attributes:{isPreview:!0}},variations:Ce,transforms:ne},{createContext:he}=wp.element,fe=he({clientId:!1}),{useBlockEditContext:pe}=wp.blockEditor,{useContext:be}=wp.element,Ve=function(){const{clientId:e,name:t}=pe(),{current:l,updateCurrent:C}=be(f),{clientId:o}=be(fe);return"jet-forms/choice"===t?[l.includes?.(e),()=>{C(e)}]:[l.includes?.(o),()=>{C(o)}]},{ToolbarButton:ge}=wp.components,{SVG:we,Path:ve}=wp.primitives,{__:je}=wp.i18n,Ee=function(){const[e,t]=Ve();return(0,o.createElement)(ge,{icon:(0,o.createElement)(we,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)(ve,{d:"M16.7 7.1l-6.3 8.5-3.3-2.5-.9 1.2 4.5 3.4L17.9 8z"})),title:je(e?"Show unchecked state":"Show checked state","jet-form-builder"),onClick:()=>t(),isActive:e})},{useSelect:ke}=wp.data,He=["jet-forms/choice-control"],Me=(0,o.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{width:"298",height:"144",rx:"4",fill:"#E2E8F0"}),(0,o.createElement)("rect",{x:"93",y:"12",width:"128",height:"122",rx:"8",fill:"white"}),(0,o.createElement)("rect",{x:"109",y:"114",width:"96",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"109",y:"120",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"109",y:"52",width:"96",height:"56",rx:"4",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M169 92.0666V68.8666H145V92.0666H169ZM152.333 82.4L155.667 86.2795L160.333 80.4666L166.333 88.2H147.667L152.333 82.4Z",fill:"#CBD5E1"}),(0,o.createElement)("path",{d:"M147.078 32.9531V33.6719C147.078 34.526 146.971 35.2917 146.758 35.9688C146.544 36.6458 146.237 37.2214 145.836 37.6953C145.435 38.1693 144.953 38.5312 144.391 38.7812C143.833 39.0312 143.208 39.1562 142.516 39.1562C141.844 39.1562 141.227 39.0312 140.664 38.7812C140.107 38.5312 139.622 38.1693 139.211 37.6953C138.805 37.2214 138.49 36.6458 138.266 35.9688C138.042 35.2917 137.93 34.526 137.93 33.6719V32.9531C137.93 32.099 138.039 31.3359 138.258 30.6641C138.482 29.987 138.797 29.4115 139.203 28.9375C139.609 28.4583 140.091 28.0938 140.648 27.8438C141.211 27.5938 141.828 27.4688 142.5 27.4688C143.193 27.4688 143.818 27.5938 144.375 27.8438C144.938 28.0938 145.419 28.4583 145.82 28.9375C146.227 29.4115 146.536 29.987 146.75 30.6641C146.969 31.3359 147.078 32.099 147.078 32.9531ZM145.586 33.6719V32.9375C145.586 32.2604 145.516 31.6615 145.375 31.1406C145.24 30.6198 145.039 30.1823 144.773 29.8281C144.508 29.474 144.182 29.2057 143.797 29.0234C143.417 28.8411 142.984 28.75 142.5 28.75C142.031 28.75 141.607 28.8411 141.227 29.0234C140.852 29.2057 140.529 29.474 140.258 29.8281C139.992 30.1823 139.786 30.6198 139.641 31.1406C139.495 31.6615 139.422 32.2604 139.422 32.9375V33.6719C139.422 34.3542 139.495 34.9583 139.641 35.4844C139.786 36.0052 139.995 36.4453 140.266 36.8047C140.542 37.1589 140.867 37.4271 141.242 37.6094C141.622 37.7917 142.047 37.8828 142.516 37.8828C143.005 37.8828 143.44 37.7917 143.82 37.6094C144.201 37.4271 144.521 37.1589 144.781 36.8047C145.047 36.4453 145.247 36.0052 145.383 35.4844C145.518 34.9583 145.586 34.3542 145.586 33.6719ZM150.562 32.1719V42.25H149.109V30.5469H150.438L150.562 32.1719ZM156.258 34.7031V34.8672C156.258 35.4818 156.185 36.0521 156.039 36.5781C155.893 37.099 155.68 37.5521 155.398 37.9375C155.122 38.3229 154.781 38.6224 154.375 38.8359C153.969 39.0495 153.503 39.1562 152.977 39.1562C152.44 39.1562 151.966 39.0677 151.555 38.8906C151.143 38.7135 150.794 38.4557 150.508 38.1172C150.221 37.7786 149.992 37.3724 149.82 36.8984C149.654 36.4245 149.539 35.8906 149.477 35.2969V34.4219C149.539 33.7969 149.656 33.237 149.828 32.7422C150 32.2474 150.227 31.8255 150.508 31.4766C150.794 31.1224 151.141 30.8542 151.547 30.6719C151.953 30.4844 152.422 30.3906 152.953 30.3906C153.484 30.3906 153.956 30.4948 154.367 30.7031C154.779 30.9062 155.125 31.1979 155.406 31.5781C155.688 31.9583 155.898 32.4141 156.039 32.9453C156.185 33.4714 156.258 34.0573 156.258 34.7031ZM154.805 34.8672V34.7031C154.805 34.2812 154.76 33.8854 154.672 33.5156C154.583 33.1406 154.445 32.8125 154.258 32.5312C154.076 32.2448 153.841 32.0208 153.555 31.8594C153.268 31.6927 152.927 31.6094 152.531 31.6094C152.167 31.6094 151.849 31.6719 151.578 31.7969C151.312 31.9219 151.086 32.0911 150.898 32.3047C150.711 32.513 150.557 32.7526 150.438 33.0234C150.323 33.2891 150.237 33.5651 150.18 33.8516V35.875C150.284 36.2396 150.43 36.5833 150.617 36.9062C150.805 37.224 151.055 37.4818 151.367 37.6797C151.68 37.8724 152.073 37.9688 152.547 37.9688C152.938 37.9688 153.273 37.888 153.555 37.7266C153.841 37.5599 154.076 37.3333 154.258 37.0469C154.445 36.7604 154.583 36.4323 154.672 36.0625C154.76 35.6875 154.805 35.2891 154.805 34.8672ZM161.641 30.5469V31.6562H157.07V30.5469H161.641ZM158.617 28.4922H160.062V36.9062C160.062 37.1927 160.107 37.4089 160.195 37.5547C160.284 37.7005 160.398 37.7969 160.539 37.8438C160.68 37.8906 160.831 37.9141 160.992 37.9141C161.112 37.9141 161.237 37.9036 161.367 37.8828C161.503 37.8568 161.604 37.8359 161.672 37.8203L161.68 39C161.565 39.0365 161.414 39.0703 161.227 39.1016C161.044 39.138 160.823 39.1562 160.562 39.1562C160.208 39.1562 159.883 39.0859 159.586 38.9453C159.289 38.8047 159.052 38.5703 158.875 38.2422C158.703 37.9089 158.617 37.4609 158.617 36.8984V28.4922ZM164.906 30.5469V39H163.453V30.5469H164.906ZM163.344 28.3047C163.344 28.0703 163.414 27.8724 163.555 27.7109C163.701 27.5495 163.914 27.4688 164.195 27.4688C164.471 27.4688 164.682 27.5495 164.828 27.7109C164.979 27.8724 165.055 28.0703 165.055 28.3047C165.055 28.5286 164.979 28.7214 164.828 28.8828C164.682 29.0391 164.471 29.1172 164.195 29.1172C163.914 29.1172 163.701 29.0391 163.555 28.8828C163.414 28.7214 163.344 28.5286 163.344 28.3047ZM166.844 34.8672V34.6875C166.844 34.0781 166.932 33.513 167.109 32.9922C167.286 32.4661 167.542 32.0104 167.875 31.625C168.208 31.2344 168.612 30.9323 169.086 30.7188C169.56 30.5 170.091 30.3906 170.68 30.3906C171.273 30.3906 171.807 30.5 172.281 30.7188C172.76 30.9323 173.167 31.2344 173.5 31.625C173.839 32.0104 174.096 32.4661 174.273 32.9922C174.451 33.513 174.539 34.0781 174.539 34.6875V34.8672C174.539 35.4766 174.451 36.0417 174.273 36.5625C174.096 37.0833 173.839 37.5391 173.5 37.9297C173.167 38.3151 172.763 38.6172 172.289 38.8359C171.82 39.0495 171.289 39.1562 170.695 39.1562C170.102 39.1562 169.568 39.0495 169.094 38.8359C168.62 38.6172 168.214 38.3151 167.875 37.9297C167.542 37.5391 167.286 37.0833 167.109 36.5625C166.932 36.0417 166.844 35.4766 166.844 34.8672ZM168.289 34.6875V34.8672C168.289 35.2891 168.339 35.6875 168.438 36.0625C168.536 36.4323 168.685 36.7604 168.883 37.0469C169.086 37.3333 169.339 37.5599 169.641 37.7266C169.943 37.888 170.294 37.9688 170.695 37.9688C171.091 37.9688 171.438 37.888 171.734 37.7266C172.036 37.5599 172.286 37.3333 172.484 37.0469C172.682 36.7604 172.831 36.4323 172.93 36.0625C173.034 35.6875 173.086 35.2891 173.086 34.8672V34.6875C173.086 34.2708 173.034 33.8776 172.93 33.5078C172.831 33.1328 172.68 32.8021 172.477 32.5156C172.279 32.224 172.029 31.9948 171.727 31.8281C171.43 31.6615 171.081 31.5781 170.68 31.5781C170.284 31.5781 169.935 31.6615 169.633 31.8281C169.336 31.9948 169.086 32.224 168.883 32.5156C168.685 32.8021 168.536 33.1328 168.438 33.5078C168.339 33.8776 168.289 34.2708 168.289 34.6875ZM177.797 32.3516V39H176.352V30.5469H177.719L177.797 32.3516ZM177.453 34.4531L176.852 34.4297C176.857 33.8516 176.943 33.3177 177.109 32.8281C177.276 32.3333 177.51 31.9036 177.812 31.5391C178.115 31.1745 178.474 30.8932 178.891 30.6953C179.312 30.4922 179.779 30.3906 180.289 30.3906C180.706 30.3906 181.081 30.4479 181.414 30.5625C181.747 30.6719 182.031 30.849 182.266 31.0938C182.505 31.3385 182.688 31.6562 182.812 32.0469C182.938 32.4323 183 32.9036 183 33.4609V39H181.547V33.4453C181.547 33.0026 181.482 32.6484 181.352 32.3828C181.221 32.112 181.031 31.9167 180.781 31.7969C180.531 31.6719 180.224 31.6094 179.859 31.6094C179.5 31.6094 179.172 31.6849 178.875 31.8359C178.583 31.987 178.331 32.1953 178.117 32.4609C177.909 32.7266 177.745 33.0312 177.625 33.375C177.51 33.7135 177.453 34.0729 177.453 34.4531ZM193.758 27.5625V39H192.312V29.3672L189.398 30.4297V29.125L193.531 27.5625H193.758Z",fill:"#0F172A"}),(0,o.createElement)("g",{clipPath:"url(#clip0_147_2251)"},(0,o.createElement)("path",{d:"M131 27.18L119.59 38.6L115.35 34.36L116.76 32.95L119.59 35.78L129.59 25.78L131 27.18ZM128.79 32.22C128.92 32.79 129 33.39 129 34C129 38.42 125.42 42 121 42C116.58 42 113 38.42 113 34C113 29.58 116.58 26 121 26C122.58 26 124.04 26.46 125.28 27.25L126.72 25.81C125.1 24.67 123.13 24 121 24C115.48 24 111 28.48 111 34C111 39.52 115.48 44 121 44C126.52 44 131 39.52 131 34C131 32.81 130.78 31.67 130.4 30.61L128.79 32.22Z",fill:"#4272F9"})),(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"clip0_147_2251"},(0,o.createElement)("rect",{width:"24",height:"24",fill:"white",transform:"translate(109 22)"})))),{__:Le}=wp.i18n,{InspectorControls:ye,useBlockProps:Ze,useInnerBlocksProps:_e,BlockControls:xe}=wp.blockEditor,{PanelBody:Be,TextControl:Fe}=wp.components,{classnames:Ne}=JetFBActions,Se=JSON.parse('{"apiVersion":3,"name":"jet-forms/choice","title":"Advanced Choice","parent":["jet-forms/choices-field"],"category":"jet-form-builder-fields","keywords":["jetformbuilder","field","choices","choice"],"description":"","icon":"\\n\\n\\n\\n\\n\\n\\n","textdomain":"jet-form-builder","attributes":{"value":{"type":"string","default":""},"calc_value":{"type":"string","default":""},"className":{"type":"string","default":""},"backgroundColor":{"type":"string"},"style":{"type":"object","default":{}},"isPreview":{"type":"boolean","default":false}},"supports":{"html":false,"layout":{"allowSwitching":false,"allowInheriting":false,"allowVerticalAlignment":false,"default":{"type":"flex","orientation":"vertical"}},"color":{},"spacing":{"blockGap":["horizontal","vertical"],"margin":true,"padding":true,"units":["px","em","rem","vh","vw"]}},"providesContext":{"jet-forms/choice--value":"value","jet-forms/choice--calc_value":"calc_value"},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index","jet-forms/choices-field--multiple","jet-forms/choices-field--required","jet-forms/choices-field--default","jet-forms/choices-field--name","jet-forms/choices-field--raw-name"]}'),{useInnerBlocksProps:Ae}=wp.blockEditor,{Fragment:Ie}=wp.element,{name:Pe,icon:Re}=Se,{__:Te}=wp.i18n;Se.supports.__experimentalLayout=Se.supports.layout;const De={icon:(0,o.createElement)("span",{dangerouslySetInnerHTML:{__html:Re}}),description:Te("Apply a variety of settings of the one particular choice block.","jet-form-builder"),edit:function(e){const{attributes:t,setAttributes:l,clientId:C}=e,[r]=Ve(),i=Ne({"jet-form-builder-choice--item":!0,"is-checked":r,"jfb-collapse-block-margin":!0,"jfb-collapse-block-border":!0}),c=ke(e=>{const t=[],l=e("core/blocks").getBlockTypes();for(const e of l)!e.name||!He.includes(e.name)&&e.name.includes("jet-forms/")||t.push(e.name);return t},[]),a=Ze({className:i}),n=_e(a,{template:[["core/paragraph",{}]],allowedBlocks:c});return t.isPreview?(0,o.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Me):(0,o.createElement)(fe.Provider,{value:{clientId:C}},(0,o.createElement)("li",{...n}),(0,o.createElement)(xe,{group:"block"},(0,o.createElement)(Ee,null)),(0,o.createElement)(ye,null,(0,o.createElement)(Be,{title:Le("General","jet-form-builder")},(0,o.createElement)(Fe,{label:Le("Value","jet-form-builder"),value:t.value,onChange:e=>l({value:e.trim()})}),(0,o.createElement)(Fe,{label:Le("Value for Calculated Field","jet-form-builder"),help:Le("This value will be used for calculations\nin the Calculated Field.","jet-form-builder"),value:t.calc_value,onChange:e=>l({calc_value:e.trim()})}))))},save:function(){const e=Ae.save();return(0,o.createElement)(Ie,{...e})},example:{attributes:{isPreview:!0}}},Oe=(0,o.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{width:"298",height:"144",rx:"4",fill:"#E2E8F0"}),(0,o.createElement)("rect",{x:"50",y:"26",width:"198",height:"92",rx:"8",fill:"white"}),(0,o.createElement)("path",{d:"M124.234 74.4785H126.109C126.012 75.377 125.755 76.181 125.338 76.8906C124.921 77.6003 124.332 78.1634 123.57 78.5801C122.809 78.9902 121.858 79.1953 120.719 79.1953C119.885 79.1953 119.127 79.0391 118.443 78.7266C117.766 78.4141 117.184 77.9714 116.695 77.3984C116.207 76.819 115.829 76.1257 115.562 75.3184C115.302 74.5046 115.172 73.5996 115.172 72.6035V71.1875C115.172 70.1914 115.302 69.2897 115.562 68.4824C115.829 67.6686 116.21 66.972 116.705 66.3926C117.206 65.8132 117.809 65.3672 118.512 65.0547C119.215 64.7422 120.006 64.5859 120.885 64.5859C121.959 64.5859 122.867 64.7878 123.609 65.1914C124.352 65.5951 124.928 66.1549 125.338 66.8711C125.755 67.5807 126.012 68.4043 126.109 69.3418H124.234C124.143 68.6777 123.974 68.1081 123.727 67.6328C123.479 67.151 123.128 66.7799 122.672 66.5195C122.216 66.2591 121.62 66.1289 120.885 66.1289C120.253 66.1289 119.697 66.2493 119.215 66.4902C118.74 66.7311 118.339 67.0729 118.014 67.5156C117.695 67.9583 117.454 68.4889 117.291 69.1074C117.128 69.7259 117.047 70.4128 117.047 71.168V72.6035C117.047 73.3001 117.118 73.9544 117.262 74.5664C117.411 75.1784 117.636 75.7155 117.936 76.1777C118.235 76.64 118.616 77.0046 119.078 77.2715C119.54 77.5319 120.087 77.6621 120.719 77.6621C121.52 77.6621 122.158 77.5352 122.633 77.2812C123.108 77.0273 123.466 76.6628 123.707 76.1875C123.954 75.7122 124.13 75.1426 124.234 74.4785ZM130.211 64V79H128.404V64H130.211ZM129.781 73.3164L129.029 73.2871C129.036 72.5645 129.143 71.8971 129.352 71.2852C129.56 70.6667 129.853 70.1296 130.23 69.6738C130.608 69.2181 131.057 68.8665 131.578 68.6191C132.105 68.3652 132.688 68.2383 133.326 68.2383C133.847 68.2383 134.316 68.3099 134.732 68.4531C135.149 68.5898 135.504 68.8112 135.797 69.1172C136.096 69.4232 136.324 69.8203 136.48 70.3086C136.637 70.7904 136.715 71.3796 136.715 72.0762V79H134.898V72.0566C134.898 71.5033 134.817 71.0605 134.654 70.7285C134.492 70.39 134.254 70.1458 133.941 69.9961C133.629 69.8398 133.245 69.7617 132.789 69.7617C132.34 69.7617 131.93 69.8561 131.559 70.0449C131.194 70.2337 130.878 70.4941 130.611 70.8262C130.351 71.1582 130.146 71.5391 129.996 71.9688C129.853 72.3919 129.781 72.8411 129.781 73.3164ZM138.941 73.834V73.6094C138.941 72.8477 139.052 72.1413 139.273 71.4902C139.495 70.8327 139.814 70.263 140.23 69.7812C140.647 69.293 141.152 68.9154 141.744 68.6484C142.337 68.375 143.001 68.2383 143.736 68.2383C144.479 68.2383 145.146 68.375 145.738 68.6484C146.337 68.9154 146.845 69.293 147.262 69.7812C147.685 70.263 148.007 70.8327 148.229 71.4902C148.45 72.1413 148.561 72.8477 148.561 73.6094V73.834C148.561 74.5957 148.45 75.3021 148.229 75.9531C148.007 76.6042 147.685 77.1738 147.262 77.6621C146.845 78.1439 146.34 78.5215 145.748 78.7949C145.162 79.0618 144.498 79.1953 143.756 79.1953C143.014 79.1953 142.346 79.0618 141.754 78.7949C141.161 78.5215 140.654 78.1439 140.23 77.6621C139.814 77.1738 139.495 76.6042 139.273 75.9531C139.052 75.3021 138.941 74.5957 138.941 73.834ZM140.748 73.6094V73.834C140.748 74.3613 140.81 74.8594 140.934 75.3281C141.057 75.7904 141.243 76.2005 141.49 76.5586C141.744 76.9167 142.06 77.1999 142.438 77.4082C142.815 77.61 143.255 77.7109 143.756 77.7109C144.251 77.7109 144.684 77.61 145.055 77.4082C145.432 77.1999 145.745 76.9167 145.992 76.5586C146.24 76.2005 146.425 75.7904 146.549 75.3281C146.679 74.8594 146.744 74.3613 146.744 73.834V73.6094C146.744 73.0885 146.679 72.597 146.549 72.1348C146.425 71.666 146.236 71.2526 145.982 70.8945C145.735 70.5299 145.423 70.2435 145.045 70.0352C144.674 69.8268 144.238 69.7227 143.736 69.7227C143.242 69.7227 142.805 69.8268 142.428 70.0352C142.057 70.2435 141.744 70.5299 141.49 70.8945C141.243 71.2526 141.057 71.666 140.934 72.1348C140.81 72.597 140.748 73.0885 140.748 73.6094ZM152.789 68.4336V79H150.973V68.4336H152.789ZM150.836 65.6309C150.836 65.3379 150.924 65.0905 151.1 64.8887C151.282 64.6868 151.549 64.5859 151.9 64.5859C152.245 64.5859 152.509 64.6868 152.691 64.8887C152.88 65.0905 152.975 65.3379 152.975 65.6309C152.975 65.9108 152.88 66.1517 152.691 66.3535C152.509 66.5488 152.245 66.6465 151.9 66.6465C151.549 66.6465 151.282 66.5488 151.1 66.3535C150.924 66.1517 150.836 65.9108 150.836 65.6309ZM159.918 77.7109C160.348 77.7109 160.745 77.623 161.109 77.4473C161.474 77.2715 161.773 77.0306 162.008 76.7246C162.242 76.4121 162.376 76.0573 162.408 75.6602H164.127C164.094 76.2852 163.883 76.8678 163.492 77.4082C163.108 77.9421 162.604 78.375 161.979 78.707C161.354 79.0326 160.667 79.1953 159.918 79.1953C159.124 79.1953 158.43 79.0553 157.838 78.7754C157.252 78.4954 156.764 78.1113 156.373 77.623C155.989 77.1348 155.699 76.5749 155.504 75.9434C155.315 75.3053 155.221 74.6315 155.221 73.9219V73.5117C155.221 72.8021 155.315 72.1315 155.504 71.5C155.699 70.862 155.989 70.2988 156.373 69.8105C156.764 69.3223 157.252 68.9382 157.838 68.6582C158.43 68.3783 159.124 68.2383 159.918 68.2383C160.745 68.2383 161.467 68.4076 162.086 68.7461C162.704 69.0781 163.189 69.5339 163.541 70.1133C163.899 70.6862 164.094 71.3372 164.127 72.0664H162.408C162.376 71.6302 162.252 71.2363 162.037 70.8848C161.829 70.5332 161.542 70.2533 161.178 70.0449C160.82 69.8301 160.4 69.7227 159.918 69.7227C159.365 69.7227 158.899 69.8333 158.521 70.0547C158.15 70.2695 157.854 70.5625 157.633 70.9336C157.418 71.2982 157.262 71.7051 157.164 72.1543C157.073 72.597 157.027 73.0495 157.027 73.5117V73.9219C157.027 74.3841 157.073 74.8398 157.164 75.2891C157.255 75.7383 157.408 76.1452 157.623 76.5098C157.844 76.8743 158.141 77.1673 158.512 77.3887C158.889 77.6035 159.358 77.7109 159.918 77.7109ZM170.543 79.1953C169.807 79.1953 169.14 79.0716 168.541 78.8242C167.949 78.5703 167.438 78.2155 167.008 77.7598C166.585 77.304 166.259 76.7637 166.031 76.1387C165.803 75.5137 165.689 74.8301 165.689 74.0879V73.6777C165.689 72.8184 165.816 72.0534 166.07 71.3828C166.324 70.7057 166.669 70.1328 167.105 69.6641C167.542 69.1953 168.036 68.8405 168.59 68.5996C169.143 68.3587 169.716 68.2383 170.309 68.2383C171.064 68.2383 171.715 68.3685 172.262 68.6289C172.815 68.8893 173.268 69.2539 173.619 69.7227C173.971 70.1849 174.231 70.7318 174.4 71.3633C174.57 71.9883 174.654 72.6719 174.654 73.4141V74.2246H166.764V72.75H172.848V72.6133C172.822 72.1445 172.724 71.6888 172.555 71.2461C172.392 70.8034 172.132 70.4388 171.773 70.1523C171.415 69.8659 170.927 69.7227 170.309 69.7227C169.898 69.7227 169.521 69.8105 169.176 69.9863C168.831 70.1556 168.535 70.4095 168.287 70.748C168.04 71.0866 167.848 71.5 167.711 71.9883C167.574 72.4766 167.506 73.0397 167.506 73.6777V74.0879C167.506 74.5892 167.574 75.0612 167.711 75.5039C167.854 75.9401 168.059 76.3242 168.326 76.6562C168.6 76.9883 168.928 77.2487 169.312 77.4375C169.703 77.6263 170.146 77.7207 170.641 77.7207C171.279 77.7207 171.819 77.5905 172.262 77.3301C172.704 77.0697 173.092 76.7214 173.424 76.2852L174.518 77.1543C174.29 77.4993 174 77.8281 173.648 78.1406C173.297 78.4531 172.864 78.707 172.35 78.9023C171.842 79.0977 171.24 79.1953 170.543 79.1953ZM183.688 68.4336V79H181.871V68.4336H183.688ZM181.734 65.6309C181.734 65.3379 181.822 65.0905 181.998 64.8887C182.18 64.6868 182.447 64.5859 182.799 64.5859C183.144 64.5859 183.408 64.6868 183.59 64.8887C183.779 65.0905 183.873 65.3379 183.873 65.6309C183.873 65.9108 183.779 66.1517 183.59 66.3535C183.408 66.5488 183.144 66.6465 182.799 66.6465C182.447 66.6465 182.18 66.5488 181.998 66.3535C181.822 66.1517 181.734 65.9108 181.734 65.6309ZM191.012 68.4336V69.8203H185.299V68.4336H191.012ZM187.232 65.8652H189.039V76.3828C189.039 76.7409 189.094 77.0111 189.205 77.1934C189.316 77.3757 189.459 77.4961 189.635 77.5547C189.811 77.6133 189.999 77.6426 190.201 77.6426C190.351 77.6426 190.507 77.6296 190.67 77.6035C190.839 77.571 190.966 77.5449 191.051 77.5254L191.061 79C190.917 79.0456 190.729 79.0879 190.494 79.127C190.266 79.1725 189.99 79.1953 189.664 79.1953C189.221 79.1953 188.814 79.1074 188.443 78.9316C188.072 78.7559 187.776 78.4629 187.555 78.0527C187.34 77.6361 187.232 77.0762 187.232 76.373V65.8652ZM197.516 79.1953C196.78 79.1953 196.113 79.0716 195.514 78.8242C194.921 78.5703 194.41 78.2155 193.98 77.7598C193.557 77.304 193.232 76.7637 193.004 76.1387C192.776 75.5137 192.662 74.8301 192.662 74.0879V73.6777C192.662 72.8184 192.789 72.0534 193.043 71.3828C193.297 70.7057 193.642 70.1328 194.078 69.6641C194.514 69.1953 195.009 68.8405 195.562 68.5996C196.116 68.3587 196.689 68.2383 197.281 68.2383C198.036 68.2383 198.688 68.3685 199.234 68.6289C199.788 68.8893 200.24 69.2539 200.592 69.7227C200.943 70.1849 201.204 70.7318 201.373 71.3633C201.542 71.9883 201.627 72.6719 201.627 73.4141V74.2246H193.736V72.75H199.82V72.6133C199.794 72.1445 199.697 71.6888 199.527 71.2461C199.365 70.8034 199.104 70.4388 198.746 70.1523C198.388 69.8659 197.9 69.7227 197.281 69.7227C196.871 69.7227 196.493 69.8105 196.148 69.9863C195.803 70.1556 195.507 70.4095 195.26 70.748C195.012 71.0866 194.82 71.5 194.684 71.9883C194.547 72.4766 194.479 73.0397 194.479 73.6777V74.0879C194.479 74.5892 194.547 75.0612 194.684 75.5039C194.827 75.9401 195.032 76.3242 195.299 76.6562C195.572 76.9883 195.901 77.2487 196.285 77.4375C196.676 77.6263 197.118 77.7207 197.613 77.7207C198.251 77.7207 198.792 77.5905 199.234 77.3301C199.677 77.0697 200.064 76.7214 200.396 76.2852L201.49 77.1543C201.262 77.4993 200.973 77.8281 200.621 78.1406C200.27 78.4531 199.837 78.707 199.322 78.9023C198.814 79.0977 198.212 79.1953 197.516 79.1953ZM205.533 70.5332V79H203.717V68.4336H205.436L205.533 70.5332ZM205.162 73.3164L204.322 73.2871C204.329 72.5645 204.423 71.8971 204.605 71.2852C204.788 70.6667 205.058 70.1296 205.416 69.6738C205.774 69.2181 206.22 68.8665 206.754 68.6191C207.288 68.3652 207.906 68.2383 208.609 68.2383C209.104 68.2383 209.56 68.3099 209.977 68.4531C210.393 68.5898 210.755 68.8079 211.061 69.1074C211.367 69.4069 211.604 69.791 211.773 70.2598C211.943 70.7285 212.027 71.2949 212.027 71.959V79H210.221V72.0469C210.221 71.4935 210.126 71.0508 209.938 70.7188C209.755 70.3867 209.495 70.1458 209.156 69.9961C208.818 69.8398 208.421 69.7617 207.965 69.7617C207.431 69.7617 206.985 69.8561 206.627 70.0449C206.269 70.2337 205.982 70.4941 205.768 70.8262C205.553 71.1582 205.396 71.5391 205.299 71.9688C205.208 72.3919 205.162 72.8411 205.162 73.3164ZM212.008 72.3203L210.797 72.6914C210.803 72.112 210.898 71.5553 211.08 71.0215C211.269 70.4876 211.539 70.0124 211.891 69.5957C212.249 69.179 212.688 68.8503 213.209 68.6094C213.73 68.362 214.326 68.2383 214.996 68.2383C215.562 68.2383 216.064 68.3132 216.5 68.4629C216.943 68.6126 217.314 68.8438 217.613 69.1562C217.919 69.4622 218.15 69.8561 218.307 70.3379C218.463 70.8197 218.541 71.3926 218.541 72.0566V79H216.725V72.0371C216.725 71.4447 216.63 70.9857 216.441 70.6602C216.259 70.3281 215.999 70.097 215.66 69.9668C215.328 69.8301 214.931 69.7617 214.469 69.7617C214.072 69.7617 213.72 69.8301 213.414 69.9668C213.108 70.1035 212.851 70.2923 212.643 70.5332C212.434 70.7676 212.275 71.0378 212.164 71.3438C212.06 71.6497 212.008 71.9753 212.008 72.3203Z",fill:"#0F172A"}),(0,o.createElement)("g",{clipPath:"url(#clip0_149_2283)"},(0,o.createElement)("path",{d:"M103.667 64.0433L90.355 77.3666L85.4083 72.42L87.0533 70.775L90.355 74.0766L102.022 62.41L103.667 64.0433ZM101.088 69.9233C101.24 70.5883 101.333 71.2883 101.333 72C101.333 77.1566 97.1567 81.3333 92 81.3333C86.8433 81.3333 82.6667 77.1566 82.6667 72C82.6667 66.8433 86.8433 62.6666 92 62.6666C93.8433 62.6666 95.5467 63.2033 96.9933 64.125L98.6733 62.445C96.7833 61.115 94.485 60.3333 92 60.3333C85.56 60.3333 80.3333 65.56 80.3333 72C80.3333 78.44 85.56 83.6666 92 83.6666C98.44 83.6666 103.667 78.44 103.667 72C103.667 70.6116 103.41 69.2816 102.967 68.045L101.088 69.9233Z",fill:"#4272F9"})),(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"clip0_149_2283"},(0,o.createElement)("rect",{width:"28",height:"28",fill:"white",transform:"translate(78 58)"})))),{__:Je,sprintf:Ge}=wp.i18n,{useBlockProps:qe,RichText:We,InspectorControls:ze,MediaUpload:Ue,MediaUploadCheck:Ye,BlockControls:$e}=wp.blockEditor,{useInstanceId:Ke}=wp.compose;let{Button:Qe,PanelBody:Xe,RangeControl:et,__experimentalToggleGroupControl:tt,ToggleGroupControl:lt,__experimentalToggleGroupControlOption:Ct,ToggleGroupControlOption:ot}=wp.components;lt=lt||tt,ot=ot||Ct;const{BaseHelp:rt,BaseLabel:it,StylePanel:ct,StylePanelItem:at}=JetFBComponents,{useStyle:nt,useJetStyle:mt}=JetFBHooks;function st({open:e,hasValue:t=!1}){return(0,o.createElement)(Qe,{isSecondary:!0,isSmall:!0,icon:"edit",onClick:e,className:t?"jet-fb has-value":"",label:Je(t?"Edit icon":"Choose icon","jet-form-builder")},Je(t?"Edit":"Choose","jet-form-builder"))}const dt=JSON.parse('{"apiVersion":3,"name":"jet-forms/choice-control","title":"Choice Control","ancestor":["jet-forms/choice"],"category":"jet-form-builder-fields","keywords":["jetformbuilder","field","check","choice","control"],"description":"","icon":"\\n\\n\\n\\n\\n\\n\\n","textdomain":"jet-form-builder","attributes":{"label":{"type":"string","default":""},"control_type":{"type":"string","default":""},"default_image_control":{"type":"object","default":{}},"checked_image_control":{"type":"object","default":""},"style":{"type":"object","default":{".jet-form-builder-choice--item-control-img":{"width":"24px"}}},"isPreview":{"type":"boolean","default":false}},"supports":{"html":false,"jetStyle":{"--jfb-choice-control-width":[".jet-form-builder-choice--item-control-img","width"]},"spacing":{"margin":true,"padding":true,"units":["px","em","rem","vh","vw"]},"color":{"text":true,"background":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index","jet-forms/choices-field--multiple","jet-forms/choices-field--required","jet-forms/choices-field--name","jet-forms/choices-field--raw-name","jet-forms/choices-field--default","jet-forms/choice--value","jet-forms/choice--calc_value"]}'),{name:ut,icon:ht}=dt,{__:ft}=wp.i18n,pt={icon:(0,o.createElement)("span",{dangerouslySetInnerHTML:{__html:ht}}),description:ft('Get the adjusting options for the Image and Choice Control block \nwith "Images and Controls" layout of the Advanced Choices Field.',"jet-form-builder"),edit:function e(t){const{context:l,setAttributes:C,attributes:r}=t,{"jet-forms/choices-field--multiple":i,"jet-forms/choices-field--name":c}=l,a=mt(),n=qe({className:Ge("jet-form-builder-choice--item-control %s",a.className),style:a.style}),m=Ke(e,c),[s,d]=Ve(),u="image"===r.control_type&&(s?r?.checked_image_control?.url:r?.default_image_control?.url),[h,f]=nt("--jfb-choice-control-width"),p=parseInt(h);return r.isPreview?(0,o.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Oe):(0,o.createElement)(o.Fragment,null,(0,o.createElement)($e,{group:"block"},(0,o.createElement)(Ee,null)),(0,o.createElement)("span",{...n},u?(0,o.createElement)("img",{src:u,className:"jet-form-builder-choice--item-control-img",alt:c+" "+Je("control","jet-form-builder")}):(0,o.createElement)("input",{id:m,type:i?"checkbox":"radio",checked:s,onChange:()=>d(),className:"jet-form-builder-choice--item-control-input"}),(0,o.createElement)(We,{tagName:"label",value:r.label,onChange:e=>C({label:e}),placeholder:Je("Label for input...","jet-form-builder"),multiline:!1})),(0,o.createElement)(ze,null,(0,o.createElement)("div",{style:{padding:"20px"}},(0,o.createElement)(lt,{onChange:e=>C({control_type:e}),value:r.control_type,label:Je("Control type","jet-form-builder"),isBlock:!0},(0,o.createElement)(ot,{label:Je(i?"Checkbox input":"Radio input","jet-form-builder"),value:""}),(0,o.createElement)(ot,{label:Je("Image","jet-form-builder"),value:"image"})))),"image"===r.control_type&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)(ze,null,(0,o.createElement)(Ye,null,(0,o.createElement)(Xe,{title:Je("Control Default","jet-form-builder")},(0,o.createElement)(it,{label:Je("Default icon","jet-form-builder")},(0,o.createElement)(Ue,{onSelect:e=>{var t;return C({default_image_control:{...null!==(t=r.default_image_control)&&void 0!==t?t:{},url:e.url,id:e.id}})},allowedTypes:["image/*"],value:r.default_image_control?.id,render:({open:e})=>(0,o.createElement)(st,{open:e,hasValue:!!r.default_image_control?.url})}),!!r.default_image_control?.url&&(0,o.createElement)(Qe,{isDestructive:!0,isSmall:!0,icon:"no-alt",onClick:()=>C({default_image_control:{}}),label:Je("Remove default icon","jet-form-builder")})),!!r.default_image_control?.url&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("img",{src:r.default_image_control?.url,style:{maxWidth:"150px",maxHeight:"150px",margin:"1em 0"}})),(0,o.createElement)(rt,null,Je("Choose icon for default state of choice","jet-form-builder"))),(0,o.createElement)(Xe,{title:Je("Control Checked","jet-form-builder")},(0,o.createElement)(it,{label:Je("Checked Icon","jet-form-builder")},(0,o.createElement)(Ue,{onSelect:e=>{var t;return C({checked_image_control:{...null!==(t=r.checked_image_control)&&void 0!==t?t:{},url:e.url,id:e.id}})},allowedTypes:["image/*"],value:r.checked_image_control?.id,render:({open:e})=>(0,o.createElement)(st,{open:e,hasValue:!!r.checked_image_control?.url})}),!!r.checked_image_control?.url&&(0,o.createElement)(Qe,{isDestructive:!0,isSmall:!0,icon:"no-alt",onClick:()=>C({checked_image_control:{}}),label:Je("Remove checked icon","jet-form-builder")})),!!r.checked_image_control?.url&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("img",{src:r.checked_image_control?.url,style:{maxWidth:"150px",maxHeight:"150px",margin:"1em 0"}})),(0,o.createElement)(rt,null,Je("Choose icon for checked state of choice","jet-form-builder"))))),(0,o.createElement)(ze,{group:"styles"},(0,o.createElement)(ct,{label:Je("Image control","jet-form-builder")},(0,o.createElement)(at,{label:Je("Width","jet-form-builder"),cssVar:"--jfb-choice-control-width",defaultValue:"24px"},(0,o.createElement)(et,{help:Je("Specify the width of the image in pixels.","jet-form-builder"),initialPosition:24,label:Je("Width","jet-form-builder"),value:p,max:200,min:0,onChange:e=>f(e?`${e}px`:0)}))))))},example:{attributes:{isPreview:!0}}},{addFilter:bt}=wp.hooks;bt("jet.fb.register.fields","jet-form-builder/advanced-choices",function(e){return e.push(t,l,C),e})})(); \ No newline at end of file +(()=>{"use strict";var e={d:(t,l)=>{for(var C in l)e.o(l,C)&&!e.o(t,C)&&Object.defineProperty(t,C,{enumerable:!0,get:l[C]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{metadata:()=>X,name:()=>me,settings:()=>ue});var l={};e.r(l),e.d(l,{metadata:()=>Se,name:()=>Pe,settings:()=>De});var C={};e.r(C),e.d(C,{metadata:()=>dt,name:()=>ut,settings:()=>pt});const o=window.React,{__:r}=wp.i18n,{useDispatch:i,useSelect:c}=wp.data,{createBlocksFromInnerBlocksTemplate:a}=wp.blocks;let{__experimentalBlockVariationPicker:n,BlockVariationPicker:m,useBlockEditContext:s}=wp.blockEditor;m=m||n;const{useBlockAttributes:d}=JetFBHooks,u=function(){const{clientId:e}=s(),[,t]=d(),{replaceInnerBlocks:l}=i("core/block-editor"),{variations:C,defaultVariation:n}=c((e=>{const{getBlockVariations:t,getDefaultBlockVariation:l}=e("core/blocks");return{defaultVariation:l(me),variations:t(me,"block")}}),[]);return(0,o.createElement)(m,{allowSkip:!0,label:r("Select choices layout","jet-form-builder"),instructions:r("You can select one of predefined layout, or skip this step and build custom from scratch","jet-form-builder"),variations:C,onSelect:(C=n)=>{C.attributes&&t(C.attributes),C.innerBlocks&&l(e,a(C.innerBlocks),!0)}})},{createContext:h}=wp.element,f=h({current:!1,updateCurrent:()=>{}}),{ToolbarButton:p}=wp.components,{SVG:b,Path:V}=wp.primitives,{useBlockEditContext:g}=wp.blockEditor,{__:w}=wp.i18n,{useCallback:v}=wp.element,{createBlock:j}=wp.blocks,{useDispatch:E,select:k}=wp.data,H=function(){const{clientId:e}=g(),{insertBlock:t}=E("core/block-editor"),l=v((()=>{const l=k("core/block-editor").getBlockCount(e),C=j("jet-forms/choice",{value:`value-of-${l}-choice`,calc_value:l});t(C,l,e)}),[e]);return(0,o.createElement)(p,{onClick:l,icon:(0,o.createElement)(b,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)(V,{d:"M18.5 5.5V8H20V5.5h2.5V4H20V1.5h-1.5V4H16v1.5h2.5zM12 4H6a2 2 0 00-2 2v12a2 2 0 002 2h12a2 2 0 002-2v-6h-1.5v6a.5.5 0 01-.5.5H6a.5.5 0 01-.5-.5V6a.5.5 0 01.5-.5h6V4z"})),label:w("Add new Choice","jet-form-builder")})},M=(0,o.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{width:"298",height:"144",rx:"4",fill:"#E2E8F0"}),(0,o.createElement)("rect",{x:"12",y:"12",width:"86",height:"120",rx:"8",fill:"white"}),(0,o.createElement)("rect",{x:"20",y:"44",width:"70",height:"60",rx:"4",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M67 86V62H43V86H67ZM50.3333 76L53.6667 80.0133L58.3333 74L64.3333 82H45.6667L50.3333 76Z",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"20",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"20",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("path",{d:"M47.5586 27.4648V28.0039C47.5586 28.6445 47.4785 29.2188 47.3184 29.7266C47.1582 30.2344 46.9277 30.666 46.627 31.0215C46.3262 31.377 45.9648 31.6484 45.543 31.8359C45.125 32.0234 44.6562 32.1172 44.1367 32.1172C43.6328 32.1172 43.1699 32.0234 42.748 31.8359C42.3301 31.6484 41.9668 31.377 41.6582 31.0215C41.3535 30.666 41.1172 30.2344 40.9492 29.7266C40.7812 29.2188 40.6973 28.6445 40.6973 28.0039V27.4648C40.6973 26.8242 40.7793 26.252 40.9434 25.748C41.1113 25.2402 41.3477 24.8086 41.6523 24.4531C41.957 24.0938 42.3184 23.8203 42.7363 23.6328C43.1582 23.4453 43.6211 23.3516 44.125 23.3516C44.6445 23.3516 45.1133 23.4453 45.5312 23.6328C45.9531 23.8203 46.3145 24.0938 46.6152 24.4531C46.9199 24.8086 47.1523 25.2402 47.3125 25.748C47.4766 26.252 47.5586 26.8242 47.5586 27.4648ZM46.4395 28.0039V27.4531C46.4395 26.9453 46.3867 26.4961 46.2812 26.1055C46.1797 25.7148 46.0293 25.3867 45.8301 25.1211C45.6309 24.8555 45.3867 24.6543 45.0977 24.5176C44.8125 24.3809 44.4883 24.3125 44.125 24.3125C43.7734 24.3125 43.4551 24.3809 43.1699 24.5176C42.8887 24.6543 42.6465 24.8555 42.4434 25.1211C42.2441 25.3867 42.0898 25.7148 41.9805 26.1055C41.8711 26.4961 41.8164 26.9453 41.8164 27.4531V28.0039C41.8164 28.5156 41.8711 28.9688 41.9805 29.3633C42.0898 29.7539 42.2461 30.084 42.4492 30.3535C42.6562 30.6191 42.9004 30.8203 43.1816 30.957C43.4668 31.0938 43.7852 31.1621 44.1367 31.1621C44.5039 31.1621 44.8301 31.0938 45.1152 30.957C45.4004 30.8203 45.6406 30.6191 45.8359 30.3535C46.0352 30.084 46.1855 29.7539 46.2871 29.3633C46.3887 28.9688 46.4395 28.5156 46.4395 28.0039ZM50.1719 26.8789V34.4375H49.082V25.6602H50.0781L50.1719 26.8789ZM54.4434 28.7773V28.9004C54.4434 29.3613 54.3887 29.7891 54.2793 30.1836C54.1699 30.5742 54.0098 30.9141 53.7988 31.2031C53.5918 31.4922 53.3359 31.7168 53.0312 31.877C52.7266 32.0371 52.377 32.1172 51.9824 32.1172C51.5801 32.1172 51.2246 32.0508 50.916 31.918C50.6074 31.7852 50.3457 31.5918 50.1309 31.3379C49.916 31.084 49.7441 30.7793 49.6152 30.4238C49.4902 30.0684 49.4043 29.668 49.3574 29.2227V28.5664C49.4043 28.0977 49.4922 27.6777 49.6211 27.3066C49.75 26.9355 49.9199 26.6191 50.1309 26.3574C50.3457 26.0918 50.6055 25.8906 50.9102 25.7539C51.2148 25.6133 51.5664 25.543 51.9648 25.543C52.3633 25.543 52.7168 25.6211 53.0254 25.7773C53.334 25.9297 53.5938 26.1484 53.8047 26.4336C54.0156 26.7188 54.1738 27.0605 54.2793 27.459C54.3887 27.8535 54.4434 28.293 54.4434 28.7773ZM53.3535 28.9004V28.7773C53.3535 28.4609 53.3203 28.1641 53.2539 27.8867C53.1875 27.6055 53.084 27.3594 52.9434 27.1484C52.8066 26.9336 52.6309 26.7656 52.416 26.6445C52.2012 26.5195 51.9453 26.457 51.6484 26.457C51.375 26.457 51.1367 26.5039 50.9336 26.5977C50.7344 26.6914 50.5645 26.8184 50.4238 26.9785C50.2832 27.1348 50.168 27.3145 50.0781 27.5176C49.9922 27.7168 49.9277 27.9238 49.8848 28.1387V29.6562C49.9629 29.9297 50.0723 30.1875 50.2129 30.4297C50.3535 30.668 50.541 30.8613 50.7754 31.0098C51.0098 31.1543 51.3047 31.2266 51.6602 31.2266C51.9531 31.2266 52.2051 31.166 52.416 31.0449C52.6309 30.9199 52.8066 30.75 52.9434 30.5352C53.084 30.3203 53.1875 30.0742 53.2539 29.7969C53.3203 29.5156 53.3535 29.2168 53.3535 28.9004ZM58.4805 25.6602V26.4922H55.0527V25.6602H58.4805ZM56.2129 24.1191H57.2969V30.4297C57.2969 30.6445 57.3301 30.8066 57.3965 30.916C57.4629 31.0254 57.5488 31.0977 57.6543 31.1328C57.7598 31.168 57.873 31.1855 57.9941 31.1855C58.084 31.1855 58.1777 31.1777 58.2754 31.1621C58.377 31.1426 58.4531 31.127 58.5039 31.1152L58.5098 32C58.4238 32.0273 58.3105 32.0527 58.1699 32.0762C58.0332 32.1035 57.8672 32.1172 57.6719 32.1172C57.4062 32.1172 57.1621 32.0645 56.9395 31.959C56.7168 31.8535 56.5391 31.6777 56.4062 31.4316C56.2773 31.1816 56.2129 30.8457 56.2129 30.4238V24.1191ZM60.9297 25.6602V32H59.8398V25.6602H60.9297ZM59.7578 23.9785C59.7578 23.8027 59.8105 23.6543 59.916 23.5332C60.0254 23.4121 60.1855 23.3516 60.3965 23.3516C60.6035 23.3516 60.7617 23.4121 60.8711 23.5332C60.9844 23.6543 61.041 23.8027 61.041 23.9785C61.041 24.1465 60.9844 24.291 60.8711 24.4121C60.7617 24.5293 60.6035 24.5879 60.3965 24.5879C60.1855 24.5879 60.0254 24.5293 59.916 24.4121C59.8105 24.291 59.7578 24.1465 59.7578 23.9785ZM62.3828 28.9004V28.7656C62.3828 28.3086 62.4492 27.8848 62.582 27.4941C62.7148 27.0996 62.9062 26.7578 63.1562 26.4688C63.4062 26.1758 63.709 25.9492 64.0645 25.7891C64.4199 25.625 64.8184 25.543 65.2598 25.543C65.7051 25.543 66.1055 25.625 66.4609 25.7891C66.8203 25.9492 67.125 26.1758 67.375 26.4688C67.6289 26.7578 67.8223 27.0996 67.9551 27.4941C68.0879 27.8848 68.1543 28.3086 68.1543 28.7656V28.9004C68.1543 29.3574 68.0879 29.7812 67.9551 30.1719C67.8223 30.5625 67.6289 30.9043 67.375 31.1973C67.125 31.4863 66.8223 31.7129 66.4668 31.877C66.1152 32.0371 65.7168 32.1172 65.2715 32.1172C64.8262 32.1172 64.4258 32.0371 64.0703 31.877C63.7148 31.7129 63.4102 31.4863 63.1562 31.1973C62.9062 30.9043 62.7148 30.5625 62.582 30.1719C62.4492 29.7812 62.3828 29.3574 62.3828 28.9004ZM63.4668 28.7656V28.9004C63.4668 29.2168 63.5039 29.5156 63.5781 29.7969C63.6523 30.0742 63.7637 30.3203 63.9121 30.5352C64.0645 30.75 64.2539 30.9199 64.4805 31.0449C64.707 31.166 64.9707 31.2266 65.2715 31.2266C65.5684 31.2266 65.8281 31.166 66.0508 31.0449C66.2773 30.9199 66.4648 30.75 66.6133 30.5352C66.7617 30.3203 66.873 30.0742 66.9473 29.7969C67.0254 29.5156 67.0645 29.2168 67.0645 28.9004V28.7656C67.0645 28.4531 67.0254 28.1582 66.9473 27.8809C66.873 27.5996 66.7598 27.3516 66.6074 27.1367C66.459 26.918 66.2715 26.7461 66.0449 26.6211C65.8223 26.4961 65.5605 26.4336 65.2598 26.4336C64.9629 26.4336 64.7012 26.4961 64.4746 26.6211C64.252 26.7461 64.0645 26.918 63.9121 27.1367C63.7637 27.3516 63.6523 27.5996 63.5781 27.8809C63.5039 28.1582 63.4668 28.4531 63.4668 28.7656ZM70.5977 27.0137V32H69.5137V25.6602H70.5391L70.5977 27.0137ZM70.3398 28.5898L69.8887 28.5723C69.8926 28.1387 69.957 27.7383 70.082 27.3711C70.207 27 70.3828 26.6777 70.6094 26.4043C70.8359 26.1309 71.1055 25.9199 71.418 25.7715C71.7344 25.6191 72.084 25.543 72.4668 25.543C72.7793 25.543 73.0605 25.5859 73.3105 25.6719C73.5605 25.7539 73.7734 25.8867 73.9492 26.0703C74.1289 26.2539 74.2656 26.4922 74.3594 26.7852C74.4531 27.0742 74.5 27.4277 74.5 27.8457V32H73.4102V27.834C73.4102 27.502 73.3613 27.2363 73.2637 27.0371C73.166 26.834 73.0234 26.6875 72.8359 26.5977C72.6484 26.5039 72.418 26.457 72.1445 26.457C71.875 26.457 71.6289 26.5137 71.4062 26.627C71.1875 26.7402 70.998 26.8965 70.8379 27.0957C70.6816 27.2949 70.5586 27.5234 70.4688 27.7812C70.3828 28.0352 70.3398 28.3047 70.3398 28.5898ZM82.5684 23.4219V32H81.4844V24.7754L79.2988 25.5723V24.5938L82.3984 23.4219H82.5684Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M32.6667 23.3333V32.6667H23.3333V23.3333H32.6667ZM32.6667 22H23.3333C22.6 22 22 22.6 22 23.3333V32.6667C22 33.4 22.6 34 23.3333 34H32.6667C33.4 34 34 33.4 34 32.6667V23.3333C34 22.6 33.4 22 32.6667 22Z",fill:"#64748B"}),(0,o.createElement)("rect",{x:"107",y:"13",width:"84",height:"118",rx:"7",fill:"white",stroke:"#4272F9",strokeWidth:"2"}),(0,o.createElement)("rect",{x:"114",y:"44",width:"70",height:"60",rx:"4",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M161 86V62H137V86H161ZM144.333 76L147.667 80.0133L152.333 74L158.333 82H139.667L144.333 76Z",fill:"#CBD5E1"}),(0,o.createElement)("path",{d:"M141.559 27.4648V28.0039C141.559 28.6445 141.479 29.2188 141.318 29.7266C141.158 30.2344 140.928 30.666 140.627 31.0215C140.326 31.377 139.965 31.6484 139.543 31.8359C139.125 32.0234 138.656 32.1172 138.137 32.1172C137.633 32.1172 137.17 32.0234 136.748 31.8359C136.33 31.6484 135.967 31.377 135.658 31.0215C135.354 30.666 135.117 30.2344 134.949 29.7266C134.781 29.2188 134.697 28.6445 134.697 28.0039V27.4648C134.697 26.8242 134.779 26.252 134.943 25.748C135.111 25.2402 135.348 24.8086 135.652 24.4531C135.957 24.0938 136.318 23.8203 136.736 23.6328C137.158 23.4453 137.621 23.3516 138.125 23.3516C138.645 23.3516 139.113 23.4453 139.531 23.6328C139.953 23.8203 140.314 24.0938 140.615 24.4531C140.92 24.8086 141.152 25.2402 141.312 25.748C141.477 26.252 141.559 26.8242 141.559 27.4648ZM140.439 28.0039V27.4531C140.439 26.9453 140.387 26.4961 140.281 26.1055C140.18 25.7148 140.029 25.3867 139.83 25.1211C139.631 24.8555 139.387 24.6543 139.098 24.5176C138.812 24.3809 138.488 24.3125 138.125 24.3125C137.773 24.3125 137.455 24.3809 137.17 24.5176C136.889 24.6543 136.646 24.8555 136.443 25.1211C136.244 25.3867 136.09 25.7148 135.98 26.1055C135.871 26.4961 135.816 26.9453 135.816 27.4531V28.0039C135.816 28.5156 135.871 28.9688 135.98 29.3633C136.09 29.7539 136.246 30.084 136.449 30.3535C136.656 30.6191 136.9 30.8203 137.182 30.957C137.467 31.0938 137.785 31.1621 138.137 31.1621C138.504 31.1621 138.83 31.0938 139.115 30.957C139.4 30.8203 139.641 30.6191 139.836 30.3535C140.035 30.084 140.186 29.7539 140.287 29.3633C140.389 28.9688 140.439 28.5156 140.439 28.0039ZM144.172 26.8789V34.4375H143.082V25.6602H144.078L144.172 26.8789ZM148.443 28.7773V28.9004C148.443 29.3613 148.389 29.7891 148.279 30.1836C148.17 30.5742 148.01 30.9141 147.799 31.2031C147.592 31.4922 147.336 31.7168 147.031 31.877C146.727 32.0371 146.377 32.1172 145.982 32.1172C145.58 32.1172 145.225 32.0508 144.916 31.918C144.607 31.7852 144.346 31.5918 144.131 31.3379C143.916 31.084 143.744 30.7793 143.615 30.4238C143.49 30.0684 143.404 29.668 143.357 29.2227V28.5664C143.404 28.0977 143.492 27.6777 143.621 27.3066C143.75 26.9355 143.92 26.6191 144.131 26.3574C144.346 26.0918 144.605 25.8906 144.91 25.7539C145.215 25.6133 145.566 25.543 145.965 25.543C146.363 25.543 146.717 25.6211 147.025 25.7773C147.334 25.9297 147.594 26.1484 147.805 26.4336C148.016 26.7188 148.174 27.0605 148.279 27.459C148.389 27.8535 148.443 28.293 148.443 28.7773ZM147.354 28.9004V28.7773C147.354 28.4609 147.32 28.1641 147.254 27.8867C147.188 27.6055 147.084 27.3594 146.943 27.1484C146.807 26.9336 146.631 26.7656 146.416 26.6445C146.201 26.5195 145.945 26.457 145.648 26.457C145.375 26.457 145.137 26.5039 144.934 26.5977C144.734 26.6914 144.564 26.8184 144.424 26.9785C144.283 27.1348 144.168 27.3145 144.078 27.5176C143.992 27.7168 143.928 27.9238 143.885 28.1387V29.6562C143.963 29.9297 144.072 30.1875 144.213 30.4297C144.354 30.668 144.541 30.8613 144.775 31.0098C145.01 31.1543 145.305 31.2266 145.66 31.2266C145.953 31.2266 146.205 31.166 146.416 31.0449C146.631 30.9199 146.807 30.75 146.943 30.5352C147.084 30.3203 147.188 30.0742 147.254 29.7969C147.32 29.5156 147.354 29.2168 147.354 28.9004ZM152.48 25.6602V26.4922H149.053V25.6602H152.48ZM150.213 24.1191H151.297V30.4297C151.297 30.6445 151.33 30.8066 151.396 30.916C151.463 31.0254 151.549 31.0977 151.654 31.1328C151.76 31.168 151.873 31.1855 151.994 31.1855C152.084 31.1855 152.178 31.1777 152.275 31.1621C152.377 31.1426 152.453 31.127 152.504 31.1152L152.51 32C152.424 32.0273 152.311 32.0527 152.17 32.0762C152.033 32.1035 151.867 32.1172 151.672 32.1172C151.406 32.1172 151.162 32.0645 150.939 31.959C150.717 31.8535 150.539 31.6777 150.406 31.4316C150.277 31.1816 150.213 30.8457 150.213 30.4238V24.1191ZM154.93 25.6602V32H153.84V25.6602H154.93ZM153.758 23.9785C153.758 23.8027 153.811 23.6543 153.916 23.5332C154.025 23.4121 154.186 23.3516 154.396 23.3516C154.604 23.3516 154.762 23.4121 154.871 23.5332C154.984 23.6543 155.041 23.8027 155.041 23.9785C155.041 24.1465 154.984 24.291 154.871 24.4121C154.762 24.5293 154.604 24.5879 154.396 24.5879C154.186 24.5879 154.025 24.5293 153.916 24.4121C153.811 24.291 153.758 24.1465 153.758 23.9785ZM156.383 28.9004V28.7656C156.383 28.3086 156.449 27.8848 156.582 27.4941C156.715 27.0996 156.906 26.7578 157.156 26.4688C157.406 26.1758 157.709 25.9492 158.064 25.7891C158.42 25.625 158.818 25.543 159.26 25.543C159.705 25.543 160.105 25.625 160.461 25.7891C160.82 25.9492 161.125 26.1758 161.375 26.4688C161.629 26.7578 161.822 27.0996 161.955 27.4941C162.088 27.8848 162.154 28.3086 162.154 28.7656V28.9004C162.154 29.3574 162.088 29.7812 161.955 30.1719C161.822 30.5625 161.629 30.9043 161.375 31.1973C161.125 31.4863 160.822 31.7129 160.467 31.877C160.115 32.0371 159.717 32.1172 159.271 32.1172C158.826 32.1172 158.426 32.0371 158.07 31.877C157.715 31.7129 157.41 31.4863 157.156 31.1973C156.906 30.9043 156.715 30.5625 156.582 30.1719C156.449 29.7812 156.383 29.3574 156.383 28.9004ZM157.467 28.7656V28.9004C157.467 29.2168 157.504 29.5156 157.578 29.7969C157.652 30.0742 157.764 30.3203 157.912 30.5352C158.064 30.75 158.254 30.9199 158.48 31.0449C158.707 31.166 158.971 31.2266 159.271 31.2266C159.568 31.2266 159.828 31.166 160.051 31.0449C160.277 30.9199 160.465 30.75 160.613 30.5352C160.762 30.3203 160.873 30.0742 160.947 29.7969C161.025 29.5156 161.064 29.2168 161.064 28.9004V28.7656C161.064 28.4531 161.025 28.1582 160.947 27.8809C160.873 27.5996 160.76 27.3516 160.607 27.1367C160.459 26.918 160.271 26.7461 160.045 26.6211C159.822 26.4961 159.561 26.4336 159.26 26.4336C158.963 26.4336 158.701 26.4961 158.475 26.6211C158.252 26.7461 158.064 26.918 157.912 27.1367C157.764 27.3516 157.652 27.5996 157.578 27.8809C157.504 28.1582 157.467 28.4531 157.467 28.7656ZM164.598 27.0137V32H163.514V25.6602H164.539L164.598 27.0137ZM164.34 28.5898L163.889 28.5723C163.893 28.1387 163.957 27.7383 164.082 27.3711C164.207 27 164.383 26.6777 164.609 26.4043C164.836 26.1309 165.105 25.9199 165.418 25.7715C165.734 25.6191 166.084 25.543 166.467 25.543C166.779 25.543 167.061 25.5859 167.311 25.6719C167.561 25.7539 167.773 25.8867 167.949 26.0703C168.129 26.2539 168.266 26.4922 168.359 26.7852C168.453 27.0742 168.5 27.4277 168.5 27.8457V32H167.41V27.834C167.41 27.502 167.361 27.2363 167.264 27.0371C167.166 26.834 167.023 26.6875 166.836 26.5977C166.648 26.5039 166.418 26.457 166.145 26.457C165.875 26.457 165.629 26.5137 165.406 26.627C165.188 26.7402 164.998 26.8965 164.838 27.0957C164.682 27.2949 164.559 27.5234 164.469 27.7812C164.383 28.0352 164.34 28.3047 164.34 28.5898ZM178.596 31.1094V32H173.012V31.2207L175.807 28.1094C176.15 27.7266 176.416 27.4023 176.604 27.1367C176.795 26.8672 176.928 26.627 177.002 26.416C177.08 26.2012 177.119 25.9824 177.119 25.7598C177.119 25.4785 177.061 25.2246 176.943 24.998C176.83 24.7676 176.662 24.584 176.439 24.4473C176.217 24.3105 175.947 24.2422 175.631 24.2422C175.252 24.2422 174.936 24.3164 174.682 24.4648C174.432 24.6094 174.244 24.8125 174.119 25.0742C173.994 25.3359 173.932 25.6367 173.932 25.9766H172.848C172.848 25.4961 172.953 25.0566 173.164 24.6582C173.375 24.2598 173.688 23.9434 174.102 23.709C174.516 23.4707 175.025 23.3516 175.631 23.3516C176.17 23.3516 176.631 23.4473 177.014 23.6387C177.396 23.8262 177.689 24.0918 177.893 24.4355C178.1 24.7754 178.203 25.1738 178.203 25.6309C178.203 25.8809 178.16 26.1348 178.074 26.3926C177.992 26.6465 177.877 26.9004 177.729 27.1543C177.584 27.4082 177.414 27.6582 177.219 27.9043C177.027 28.1504 176.822 28.3926 176.604 28.6309L174.318 31.1094H178.596Z",fill:"#0F172A"}),(0,o.createElement)("g",{clipPath:"url(#clip0_171_1873)"},(0,o.createElement)("path",{d:"M128.667 23.4533L121.06 31.0667L118.233 28.24L119.173 27.3L121.06 29.1867L127.727 22.52L128.667 23.4533ZM127.193 26.8133C127.28 27.1933 127.333 27.5933 127.333 28C127.333 30.9467 124.947 33.3333 122 33.3333C119.053 33.3333 116.667 30.9467 116.667 28C116.667 25.0533 119.053 22.6667 122 22.6667C123.053 22.6667 124.027 22.9733 124.853 23.5L125.813 22.54C124.733 21.78 123.42 21.3333 122 21.3333C118.32 21.3333 115.333 24.32 115.333 28C115.333 31.68 118.32 34.6667 122 34.6667C125.68 34.6667 128.667 31.68 128.667 28C128.667 27.2067 128.52 26.4467 128.267 25.74L127.193 26.8133Z",fill:"#4272F9"})),(0,o.createElement)("rect",{x:"114",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"114",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"200",y:"12",width:"86",height:"120",rx:"8",fill:"white"}),(0,o.createElement)("rect",{x:"208",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"208",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"208",y:"44",width:"70",height:"60",rx:"4",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M255 86V62H231V86H255ZM238.333 76L241.667 80.0133L246.333 74L252.333 82H233.667L238.333 76Z",fill:"#CBD5E1"}),(0,o.createElement)("path",{d:"M235.559 27.4648V28.0039C235.559 28.6445 235.479 29.2188 235.318 29.7266C235.158 30.2344 234.928 30.666 234.627 31.0215C234.326 31.377 233.965 31.6484 233.543 31.8359C233.125 32.0234 232.656 32.1172 232.137 32.1172C231.633 32.1172 231.17 32.0234 230.748 31.8359C230.33 31.6484 229.967 31.377 229.658 31.0215C229.354 30.666 229.117 30.2344 228.949 29.7266C228.781 29.2188 228.697 28.6445 228.697 28.0039V27.4648C228.697 26.8242 228.779 26.252 228.943 25.748C229.111 25.2402 229.348 24.8086 229.652 24.4531C229.957 24.0938 230.318 23.8203 230.736 23.6328C231.158 23.4453 231.621 23.3516 232.125 23.3516C232.645 23.3516 233.113 23.4453 233.531 23.6328C233.953 23.8203 234.314 24.0938 234.615 24.4531C234.92 24.8086 235.152 25.2402 235.312 25.748C235.477 26.252 235.559 26.8242 235.559 27.4648ZM234.439 28.0039V27.4531C234.439 26.9453 234.387 26.4961 234.281 26.1055C234.18 25.7148 234.029 25.3867 233.83 25.1211C233.631 24.8555 233.387 24.6543 233.098 24.5176C232.812 24.3809 232.488 24.3125 232.125 24.3125C231.773 24.3125 231.455 24.3809 231.17 24.5176C230.889 24.6543 230.646 24.8555 230.443 25.1211C230.244 25.3867 230.09 25.7148 229.98 26.1055C229.871 26.4961 229.816 26.9453 229.816 27.4531V28.0039C229.816 28.5156 229.871 28.9688 229.98 29.3633C230.09 29.7539 230.246 30.084 230.449 30.3535C230.656 30.6191 230.9 30.8203 231.182 30.957C231.467 31.0938 231.785 31.1621 232.137 31.1621C232.504 31.1621 232.83 31.0938 233.115 30.957C233.4 30.8203 233.641 30.6191 233.836 30.3535C234.035 30.084 234.186 29.7539 234.287 29.3633C234.389 28.9688 234.439 28.5156 234.439 28.0039ZM238.172 26.8789V34.4375H237.082V25.6602H238.078L238.172 26.8789ZM242.443 28.7773V28.9004C242.443 29.3613 242.389 29.7891 242.279 30.1836C242.17 30.5742 242.01 30.9141 241.799 31.2031C241.592 31.4922 241.336 31.7168 241.031 31.877C240.727 32.0371 240.377 32.1172 239.982 32.1172C239.58 32.1172 239.225 32.0508 238.916 31.918C238.607 31.7852 238.346 31.5918 238.131 31.3379C237.916 31.084 237.744 30.7793 237.615 30.4238C237.49 30.0684 237.404 29.668 237.357 29.2227V28.5664C237.404 28.0977 237.492 27.6777 237.621 27.3066C237.75 26.9355 237.92 26.6191 238.131 26.3574C238.346 26.0918 238.605 25.8906 238.91 25.7539C239.215 25.6133 239.566 25.543 239.965 25.543C240.363 25.543 240.717 25.6211 241.025 25.7773C241.334 25.9297 241.594 26.1484 241.805 26.4336C242.016 26.7188 242.174 27.0605 242.279 27.459C242.389 27.8535 242.443 28.293 242.443 28.7773ZM241.354 28.9004V28.7773C241.354 28.4609 241.32 28.1641 241.254 27.8867C241.188 27.6055 241.084 27.3594 240.943 27.1484C240.807 26.9336 240.631 26.7656 240.416 26.6445C240.201 26.5195 239.945 26.457 239.648 26.457C239.375 26.457 239.137 26.5039 238.934 26.5977C238.734 26.6914 238.564 26.8184 238.424 26.9785C238.283 27.1348 238.168 27.3145 238.078 27.5176C237.992 27.7168 237.928 27.9238 237.885 28.1387V29.6562C237.963 29.9297 238.072 30.1875 238.213 30.4297C238.354 30.668 238.541 30.8613 238.775 31.0098C239.01 31.1543 239.305 31.2266 239.66 31.2266C239.953 31.2266 240.205 31.166 240.416 31.0449C240.631 30.9199 240.807 30.75 240.943 30.5352C241.084 30.3203 241.188 30.0742 241.254 29.7969C241.32 29.5156 241.354 29.2168 241.354 28.9004ZM246.48 25.6602V26.4922H243.053V25.6602H246.48ZM244.213 24.1191H245.297V30.4297C245.297 30.6445 245.33 30.8066 245.396 30.916C245.463 31.0254 245.549 31.0977 245.654 31.1328C245.76 31.168 245.873 31.1855 245.994 31.1855C246.084 31.1855 246.178 31.1777 246.275 31.1621C246.377 31.1426 246.453 31.127 246.504 31.1152L246.51 32C246.424 32.0273 246.311 32.0527 246.17 32.0762C246.033 32.1035 245.867 32.1172 245.672 32.1172C245.406 32.1172 245.162 32.0645 244.939 31.959C244.717 31.8535 244.539 31.6777 244.406 31.4316C244.277 31.1816 244.213 30.8457 244.213 30.4238V24.1191ZM248.93 25.6602V32H247.84V25.6602H248.93ZM247.758 23.9785C247.758 23.8027 247.811 23.6543 247.916 23.5332C248.025 23.4121 248.186 23.3516 248.396 23.3516C248.604 23.3516 248.762 23.4121 248.871 23.5332C248.984 23.6543 249.041 23.8027 249.041 23.9785C249.041 24.1465 248.984 24.291 248.871 24.4121C248.762 24.5293 248.604 24.5879 248.396 24.5879C248.186 24.5879 248.025 24.5293 247.916 24.4121C247.811 24.291 247.758 24.1465 247.758 23.9785ZM250.383 28.9004V28.7656C250.383 28.3086 250.449 27.8848 250.582 27.4941C250.715 27.0996 250.906 26.7578 251.156 26.4688C251.406 26.1758 251.709 25.9492 252.064 25.7891C252.42 25.625 252.818 25.543 253.26 25.543C253.705 25.543 254.105 25.625 254.461 25.7891C254.82 25.9492 255.125 26.1758 255.375 26.4688C255.629 26.7578 255.822 27.0996 255.955 27.4941C256.088 27.8848 256.154 28.3086 256.154 28.7656V28.9004C256.154 29.3574 256.088 29.7812 255.955 30.1719C255.822 30.5625 255.629 30.9043 255.375 31.1973C255.125 31.4863 254.822 31.7129 254.467 31.877C254.115 32.0371 253.717 32.1172 253.271 32.1172C252.826 32.1172 252.426 32.0371 252.07 31.877C251.715 31.7129 251.41 31.4863 251.156 31.1973C250.906 30.9043 250.715 30.5625 250.582 30.1719C250.449 29.7812 250.383 29.3574 250.383 28.9004ZM251.467 28.7656V28.9004C251.467 29.2168 251.504 29.5156 251.578 29.7969C251.652 30.0742 251.764 30.3203 251.912 30.5352C252.064 30.75 252.254 30.9199 252.48 31.0449C252.707 31.166 252.971 31.2266 253.271 31.2266C253.568 31.2266 253.828 31.166 254.051 31.0449C254.277 30.9199 254.465 30.75 254.613 30.5352C254.762 30.3203 254.873 30.0742 254.947 29.7969C255.025 29.5156 255.064 29.2168 255.064 28.9004V28.7656C255.064 28.4531 255.025 28.1582 254.947 27.8809C254.873 27.5996 254.76 27.3516 254.607 27.1367C254.459 26.918 254.271 26.7461 254.045 26.6211C253.822 26.4961 253.561 26.4336 253.26 26.4336C252.963 26.4336 252.701 26.4961 252.475 26.6211C252.252 26.7461 252.064 26.918 251.912 27.1367C251.764 27.3516 251.652 27.5996 251.578 27.8809C251.504 28.1582 251.467 28.4531 251.467 28.7656ZM258.598 27.0137V32H257.514V25.6602H258.539L258.598 27.0137ZM258.34 28.5898L257.889 28.5723C257.893 28.1387 257.957 27.7383 258.082 27.3711C258.207 27 258.383 26.6777 258.609 26.4043C258.836 26.1309 259.105 25.9199 259.418 25.7715C259.734 25.6191 260.084 25.543 260.467 25.543C260.779 25.543 261.061 25.5859 261.311 25.6719C261.561 25.7539 261.773 25.8867 261.949 26.0703C262.129 26.2539 262.266 26.4922 262.359 26.7852C262.453 27.0742 262.5 27.4277 262.5 27.8457V32H261.41V27.834C261.41 27.502 261.361 27.2363 261.264 27.0371C261.166 26.834 261.023 26.6875 260.836 26.5977C260.648 26.5039 260.418 26.457 260.145 26.457C259.875 26.457 259.629 26.5137 259.406 26.627C259.188 26.7402 258.998 26.8965 258.838 27.0957C258.682 27.2949 258.559 27.5234 258.469 27.7812C258.383 28.0352 258.34 28.3047 258.34 28.5898ZM268.588 27.2012H269.361C269.74 27.2012 270.053 27.1387 270.299 27.0137C270.549 26.8848 270.734 26.7109 270.855 26.4922C270.98 26.2695 271.043 26.0195 271.043 25.7422C271.043 25.4141 270.988 25.1387 270.879 24.916C270.77 24.6934 270.605 24.5254 270.387 24.4121C270.168 24.2988 269.891 24.2422 269.555 24.2422C269.25 24.2422 268.98 24.3027 268.746 24.4238C268.516 24.541 268.334 24.709 268.201 24.9277C268.072 25.1465 268.008 25.4043 268.008 25.7012H266.924C266.924 25.2676 267.033 24.873 267.252 24.5176C267.471 24.1621 267.777 23.8789 268.172 23.668C268.57 23.457 269.031 23.3516 269.555 23.3516C270.07 23.3516 270.521 23.4434 270.908 23.627C271.295 23.8066 271.596 24.0762 271.811 24.4355C272.025 24.791 272.133 25.2344 272.133 25.7656C272.133 25.9805 272.082 26.2109 271.98 26.457C271.883 26.6992 271.729 26.9258 271.518 27.1367C271.311 27.3477 271.041 27.5215 270.709 27.6582C270.377 27.791 269.979 27.8574 269.514 27.8574H268.588V27.2012ZM268.588 28.0918V27.4414H269.514C270.057 27.4414 270.506 27.5059 270.861 27.6348C271.217 27.7637 271.496 27.9355 271.699 28.1504C271.906 28.3652 272.051 28.6016 272.133 28.8594C272.219 29.1133 272.262 29.3672 272.262 29.6211C272.262 30.0195 272.193 30.373 272.057 30.6816C271.924 30.9902 271.734 31.252 271.488 31.4668C271.246 31.6816 270.961 31.8438 270.633 31.9531C270.305 32.0625 269.947 32.1172 269.561 32.1172C269.189 32.1172 268.84 32.0645 268.512 31.959C268.188 31.8535 267.9 31.7012 267.65 31.502C267.4 31.2988 267.205 31.0508 267.064 30.7578C266.924 30.4609 266.854 30.123 266.854 29.7441H267.938C267.938 30.041 268.002 30.3008 268.131 30.5234C268.264 30.7461 268.451 30.9199 268.693 31.0449C268.939 31.166 269.229 31.2266 269.561 31.2266C269.893 31.2266 270.178 31.1699 270.416 31.0566C270.658 30.9395 270.844 30.7637 270.973 30.5293C271.105 30.2949 271.172 30 271.172 29.6445C271.172 29.2891 271.098 28.998 270.949 28.7715C270.801 28.541 270.59 28.3711 270.316 28.2617C270.047 28.1484 269.729 28.0918 269.361 28.0918H268.588Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M220.667 23.3333V32.6667H211.333V23.3333H220.667ZM220.667 22H211.333C210.6 22 210 22.6 210 23.3333V32.6667C210 33.4 210.6 34 211.333 34H220.667C221.4 34 222 33.4 222 32.6667V23.3333C222 22.6 221.4 22 220.667 22Z",fill:"#64748B"}),(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"clip0_171_1873"},(0,o.createElement)("rect",{width:"16",height:"16",fill:"white",transform:"translate(114 20)"})))),{__:L}=wp.i18n;let{InspectorControls:y,useBlockProps:Z,useInnerBlocksProps:_,useBlockEditContext:x}=wp.blockEditor;const{ToolBarFields:B,BlockLabel:F,BlockName:N,BlockDescription:S,BlockAdvancedValue:A,FieldWrapper:I,StylePanel:P,StyleColorItem:R,StyleColorItemsWrapper:T,StyleBorderItem:D,StyleBorderRadiusItem:O,SwitchPageOnChangeControls:J}=JetFBComponents,{PanelBody:G,ToggleControl:q}=wp.components,{useJetStyle:W,useUniqueNameOnDuplicate:z,useUniqKey:U}=JetFBHooks,{useState:Y}=wp.element,$=["jet-forms/choice"],K=()=>{const{clientId:e}=x(),t=e+"sample-control-1",l=e+"sample-control-2";return(0,o.createElement)(o.Fragment,null,(0,o.createElement)("li",{className:"jet-form-builder-choice--item"},(0,o.createElement)("span",{className:"jet-form-builder-choice--item-control"},(0,o.createElement)("input",{id:t,type:"checkbox",className:"jet-form-builder-choice--item-control-input"}),(0,o.createElement)("label",{htmlFor:t},L("Item #1","jet-form-builder")))),(0,o.createElement)("li",{className:"jet-form-builder-choice--item"},(0,o.createElement)("span",{className:"jet-form-builder-choice--item-control"},(0,o.createElement)("input",{id:l,type:"checkbox",className:"jet-form-builder-choice--item-control-input"}),(0,o.createElement)("label",{htmlFor:l},L("Item #2","jet-form-builder")))))},Q={className:"jet-form-builder-choice"},X=JSON.parse('{"apiVersion":3,"name":"jet-forms/choices-field","category":"jet-form-builder-fields","title":"Advanced Choices Field","description":"","icon":"\\n\\n\\n\\n\\n\\n\\n","attributes":{"isPreview":{"type":"boolean","default":false},"value":{"type":"object","default":{}},"allow_multiple":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":["string","array","number","boolean","object"],"default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"visibility":{"type":"string","default":""}},"keywords":["jetformbuilder","field","choices"],"textdomain":"jet-form-builder","supports":{"html":false,"jetFBSwitchPageOnChange":true,"jetFBSanitizeValue":true,"jetStyle":{"--jfb-choice-text":[".jet-form-builder-choice--item","color","text"],"--jfb-choice-bg":[".jet-form-builder-choice--item","color","background"],"--jfb-choice-border":[".jet-form-builder-choice--item","border"],"--jfb-choice-border-radius":[".jet-form-builder-choice--item","border","radius"],"--jfb-choice-hover-text":[".jet-form-builder-choice--item:hover","color","text"],"--jfb-choice-hover-bg":[".jet-form-builder-choice--item:hover","color","background"],"--jfb-choice-hover-border":[".jet-form-builder-choice--item:hover","border"],"--jfb-choice-hover-border-radius":[".jet-form-builder-choice--item:hover","border","radius"],"--jfb-choice-checked-text":[".jet-form-builder-choice--item.is-checked","color","text"],"--jfb-choice-checked-bg":[".jet-form-builder-choice--item.is-checked","color","background"],"--jfb-choice-checked-border":[".jet-form-builder-choice--item.is-checked","border"],"--jfb-choice-checked-border-radius":[".jet-form-builder-choice--item.is-checked","border","radius"]},"jetCustomWrapperLayout":true,"layout":{"allowSwitching":false,"allowInheriting":false,"allowVerticalAlignment":false,"allowSizingOnChildren":true,"default":{"type":"flex"}},"spacing":{"blockGap":["horizontal","vertical"],"margin":true,"padding":true,"units":["px","em","rem","vh","vw"]}},"providesContext":{"jet-forms/choices-field--multiple":"allow_multiple","jet-forms/choices-field--required":"required","jet-forms/choices-field--name":"name","jet-forms/choices-field--default":"default"},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-advanced-choices","style":"jet-fb-advanced-choices"}'),{__:ee}=wp.i18n,{assetUrl:te}=JetFBActions,le=e=>["core/image",{alt:e,url:te("img/image-placeholder.jpg"),width:100,height:100}],Ce=[{name:"simple-empty",title:ee("Simple Empty","jet-form-builder"),innerBlocks:[["jet-forms/choice"],["jet-forms/choice"]],isDefault:!0,scope:["hidden"]},{name:"simple-buttons",title:ee("Text","jet-form-builder"),description:ee("Simple buttons list with labels","jet-form-builder"),icon:(0,o.createElement)("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M24.7125 10.7017C25.1 10.3082 25.0952 9.67505 24.7017 9.28752C24.3082 8.89998 23.675 8.90482 23.2875 9.29831L12.1609 20.5961L8.69122 17.2774C8.29212 16.8956 7.65911 16.9097 7.27736 17.3088C6.89561 17.7079 6.90967 18.3409 7.30878 18.7226L12.2028 23.4039L24.7125 10.7017Z",fill:"#0F172A"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 4C0 1.79086 1.79086 0 4 0H28C30.2091 0 32 1.79086 32 4V28C32 30.2091 30.2091 32 28 32H4C1.79086 32 0 30.2091 0 28V4ZM4 2H28C29.1046 2 30 2.89543 30 4V28C30 29.1046 29.1046 30 28 30H4C2.89543 30 2 29.1046 2 28V4C2 2.89543 2.89543 2 4 2Z",fill:"#0F172A"})),innerBlocks:[["jet-forms/choice",{value:"Book Name #1",calc_value:"100"},[["core/paragraph",{content:"Book Name #1"}]]],["jet-forms/choice",{value:"Book Name #2",calc_value:"200"},[["core/paragraph",{content:"Book Name #2"}]]],["jet-forms/choice",{value:"Book Name #3",calc_value:"200"},[["core/paragraph",{content:"Book Name #3"}]]]],scope:["block"]},{name:"images",title:ee("Images","jet-form-builder"),description:ee("Image buttons","jet-form-builder"),icon:(0,o.createElement)("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.5 15C18.433 15 20 13.433 20 11.5C20 9.567 18.433 8 16.5 8C14.567 8 13 9.567 13 11.5C13 13.433 14.567 15 16.5 15ZM16.5 13C17.3284 13 18 12.3284 18 11.5C18 10.6716 17.3284 10 16.5 10C15.6716 10 15 10.6716 15 11.5C15 12.3284 15.6716 13 16.5 13Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M20.7917 17.2985C20.6037 17.1076 20.3469 17 20.0789 17C19.811 17 19.5542 17.1076 19.3662 17.2985L15.1579 21.5744L12.2917 18.6622C12.1037 18.4712 11.8469 18.3636 11.5789 18.3636C11.311 18.3636 11.0542 18.4712 10.8662 18.6622L7.28729 22.2985C6.89989 22.6922 6.90492 23.3253 7.29854 23.7127C7.69216 24.1001 8.32531 24.0951 8.71271 23.7015L11.5789 20.7892L14.4452 23.7015C14.6332 23.8924 14.8899 24 15.1579 24C15.4259 24 15.6826 23.8924 15.8706 23.7015L20.0789 19.4256L24.2873 23.7015C24.6747 24.0951 25.3078 24.1001 25.7015 23.7127C26.0951 23.3253 26.1001 22.6922 25.7127 22.2985L20.7917 17.2985Z",fill:"#0F172A"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 4C0 1.79086 1.79086 0 4 0H28C30.2091 0 32 1.79086 32 4V28C32 30.2091 30.2091 32 28 32H4C1.79086 32 0 30.2091 0 28V4ZM4 2H28C29.1046 2 30 2.89543 30 4V28C30 29.1046 29.1046 30 28 30H4C2.89543 30 2 29.1046 2 28V4C2 2.89543 2.89543 2 4 2Z",fill:"#0F172A"})),innerBlocks:[["jet-forms/choice",{value:"Book Name #1",calc_value:"100"},[le("Book Name #1")]],["jet-forms/choice",{value:"Book Name #2",calc_value:"200"},[le("Book Name #2")]],["jet-forms/choice",{value:"Book Name #3",calc_value:"200"},[le("Book Name #3")]]],scope:["block"]},{name:"buttons-with-images",title:ee("Images with description","jet-form-builder"),description:ee("Image buttons with labels in footer","jet-form-builder"),icon:(0,o.createElement)("svg",{width:"32",height:"38",viewBox:"0 0 32 38",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.5 13C18.433 13 20 11.433 20 9.5C20 7.567 18.433 6 16.5 6C14.567 6 13 7.567 13 9.5C13 11.433 14.567 13 16.5 13ZM16.5 11C17.3284 11 18 10.3284 18 9.5C18 8.67157 17.3284 8 16.5 8C15.6716 8 15 8.67157 15 9.5C15 10.3284 15.6716 11 16.5 11Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M20.7917 15.2985C20.6037 15.1076 20.3469 15 20.0789 15C19.811 15 19.5542 15.1076 19.3662 15.2985L15.1579 19.5744L12.2917 16.6622C12.1037 16.4712 11.8469 16.3636 11.5789 16.3636C11.311 16.3636 11.0542 16.4712 10.8662 16.6622L7.28729 20.2985C6.89989 20.6922 6.90492 21.3253 7.29854 21.7127C7.69216 22.1001 8.32531 22.0951 8.71271 21.7015L11.5789 18.7892L14.4452 21.7015C14.6332 21.8924 14.8899 22 15.1579 22C15.4259 22 15.6826 21.8924 15.8706 21.7015L20.0789 17.4256L24.2873 21.7015C24.6747 22.0951 25.3078 22.1001 25.7015 21.7127C26.0951 21.3253 26.1001 20.6922 25.7127 20.2985L20.7917 15.2985Z",fill:"#0F172A"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 4C0 1.79086 1.79086 0 4 0H28C30.2091 0 32 1.79086 32 4V24C32 26.2091 30.2091 28 28 28H4C1.79086 28 0 26.2091 0 24V4ZM4 2H28C29.1046 2 30 2.89543 30 4V24C30 25.1046 29.1046 26 28 26H4C2.89543 26 2 25.1046 2 24V4C2 2.89543 2.89543 2 4 2Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M1 32C0.447715 32 0 32.4477 0 33C0 33.5523 0.447715 34 1 34H31C31.5523 34 32 33.5523 32 33C32 32.4477 31.5523 32 31 32H1Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M0 37C0 36.4477 0.447715 36 1 36H27C27.5523 36 28 36.4477 28 37C28 37.5523 27.5523 38 27 38H1C0.447715 38 0 37.5523 0 37Z",fill:"#0F172A"})),innerBlocks:[["jet-forms/choice",{value:"Book Name #1",calc_value:"100"},[le("Book Name #1"),["core/paragraph",{content:"Book Name #1"}]]],["jet-forms/choice",{value:"Book Name #2",calc_value:"200"},[le("Book Name #2"),["core/paragraph",{content:"Book Name #2"}]]],["jet-forms/choice",{value:"Book Name #3",calc_value:"200"},[le("Book Name #3"),["core/paragraph",{content:"Book Name #3"}]]]],scope:["block"]},{name:"images-with-controls",title:ee("Images with controls","jet-form-builder"),description:ee("Image buttons with controls in footer","jet-form-builder"),icon:(0,o.createElement)("svg",{width:"32",height:"40",viewBox:"0 0 32 40",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 0C2.23858 0 0 2.23858 0 5C0 7.76142 2.23858 10 5 10C7.76142 10 10 7.76142 10 5C10 2.23858 7.76142 0 5 0ZM2 5C2 6.65685 3.34315 8 5 8C6.65685 8 8 6.65685 8 5C8 3.34315 6.65685 2 5 2C3.34315 2 2 3.34315 2 5Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M12 3C12 2.44772 12.4477 2 13 2H31C31.5523 2 32 2.44772 32 3C32 3.55228 31.5523 4 31 4H13C12.4477 4 12 3.55228 12 3Z",fill:"#0F172A"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.5 25C18.433 25 20 23.433 20 21.5C20 19.567 18.433 18 16.5 18C14.567 18 13 19.567 13 21.5C13 23.433 14.567 25 16.5 25ZM16.5 23C17.3284 23 18 22.3284 18 21.5C18 20.6716 17.3284 20 16.5 20C15.6716 20 15 20.6716 15 21.5C15 22.3284 15.6716 23 16.5 23Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M20.7917 27.2985C20.6037 27.1076 20.3469 27 20.0789 27C19.811 27 19.5542 27.1076 19.3662 27.2985L15.1579 31.5744L12.2917 28.6622C12.1037 28.4712 11.8469 28.3636 11.5789 28.3636C11.311 28.3636 11.0542 28.4712 10.8662 28.6622L7.28729 32.2985C6.89989 32.6922 6.90492 33.3253 7.29854 33.7127C7.69216 34.1001 8.32531 34.0951 8.71271 33.7015L11.5789 30.7892L14.4452 33.7015C14.6332 33.8924 14.8899 34 15.1579 34C15.4259 34 15.6826 33.8924 15.8706 33.7015L20.0789 29.4256L24.2873 33.7015C24.6747 34.0951 25.3078 34.1001 25.7015 33.7127C26.0951 33.3253 26.1001 32.6922 25.7127 32.2985L20.7917 27.2985Z",fill:"#0F172A"}),(0,o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 12C1.79086 12 0 13.7909 0 16V36C0 38.2091 1.79086 40 4 40H28C30.2091 40 32 38.2091 32 36V16C32 13.7909 30.2091 12 28 12H4ZM28 14H4C2.89543 14 2 14.8954 2 16V36C2 37.1046 2.89543 38 4 38H28C29.1046 38 30 37.1046 30 36V16C30 14.8954 29.1046 14 28 14Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M13 6C12.4477 6 12 6.44772 12 7C12 7.55228 12.4477 8 13 8H31C31.5523 8 32 7.55228 32 7C32 6.44772 31.5523 6 31 6H13Z",fill:"#0F172A"})),innerBlocks:[["jet-forms/choice",{value:"Book Name #1",calc_value:"100"},[le("Book Name #1"),["jet-forms/choice-control",{label:"Book Name #1"}]]],["jet-forms/choice",{value:"Book Name #2",calc_value:"200"},[le("Book Name #2"),["jet-forms/choice-control",{label:"Book Name #1"}]]],["jet-forms/choice",{value:"Book Name #3",calc_value:"200"},[le("Book Name #3"),["jet-forms/choice-control",{label:"Book Name #1"}]]]],scope:["block"]}],{useInnerBlocksProps:oe}=wp.blockEditor,{Fragment:re}=wp.element,{createBlock:ie}=wp.blocks,ce=e=>"manual_input"===e.field_options_from&&Array.isArray(e.field_options)&&e.field_options.length>0,ae=(e,t)=>{var l;const C=e.field_options.map((e=>{var t,l;return ie("jet-forms/choice",{value:e.value,calc_value:null!==(t=e.calculate)&&void 0!==t?t:""},[ie("jet-forms/choice-control",{label:null!==(l=e.label)&&void 0!==l?l:""})])}));return ie(me,{name:e.name,label:e.label,desc:e.desc,value:e.value,default:e.default,required:e.required,visibility:e.visibility,switch_on_change:null!==(l=e.switch_on_change)&&void 0!==l&&l,allow_multiple:!!t},C)},ne={from:[{type:"block",blocks:["jet-forms/checkbox-field"],isMatch:ce,transform:e=>ae(e,!0),priority:-1},{type:"block",blocks:["jet-forms/radio-field"],isMatch:ce,transform:e=>ae(e,!1),priority:-1},{type:"block",blocks:["jet-forms/select-field"],isMatch:ce,transform:e=>ae(e,e.multiple),priority:-1}]},{name:me,icon:se}=X,{__:de}=wp.i18n;X.supports.__experimentalLayout=X.supports.layout;const ue={icon:(0,o.createElement)("span",{dangerouslySetInnerHTML:{__html:se}}),description:de("Turn any block, text, images, or other objects into the object \nfor selection with this block.","jet-form-builder"),edit:function(e){const{isSelected:t,attributes:l,setAttributes:C}=e;z();const r=U(),i=Z(),c=W(Q),a=_(c,{allowedBlocks:$,placeholder:t?(0,o.createElement)(u,null):(0,o.createElement)(K,null)}),n=function({allow_multiple:e}){const[t,l]=Y((()=>e?[]:""));return{current:t,updateCurrent:C=>{if(!e)return void l(t!==C?C:"");const o=Array.isArray(t)?t:[t];o.includes(C)?l(o.filter((e=>e!==C))):l([...o,C])}}}(l);return l.isPreview?(0,o.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},M):(0,o.createElement)(f.Provider,{value:n},(0,o.createElement)(B,null,(0,o.createElement)(H,null)),!l.allow_multiple&&(0,o.createElement)(J,null),(0,o.createElement)(y,null,(0,o.createElement)(G,{title:L("General","jet-form-builder")},(0,o.createElement)(F,null),(0,o.createElement)(N,null),(0,o.createElement)(S,null)),(0,o.createElement)(G,{title:L("Value","jet-form-builder")},(0,o.createElement)(q,{label:L("Allow multiple choices","jet-form-builder"),checked:l.allow_multiple,help:L("Enable this option if you need to be able \nto select multiple options","jet-form-builder"),onChange:e=>C({allow_multiple:e})}),(0,o.createElement)(A,{help:l.allow_multiple&&L("You should list the choice \nvalues separated by commas that should be selected by default. But this \nis not the case when you use a dynamic value using a preset, macros, etc.","jet-form-builder")}))),(0,o.createElement)(y,{group:"styles"},(0,o.createElement)(P,{label:L("Default choice","jet-form-builder")},(0,o.createElement)(T,null,(0,o.createElement)(R,{cssVar:"--jfb-choice-text",label:L("Text Choice","jet-form-builder")}),(0,o.createElement)(R,{cssVar:"--jfb-choice-bg",label:L("Background Choice","jet-form-builder")})),(0,o.createElement)(D,{cssVar:"--jfb-choice-border",label:L("Border","jet-form-builder"),enableAlpha:!0,labelForControl:!0}),(0,o.createElement)(O,{cssVar:"--jfb-choice-border-radius",label:L("Radius","jet-form-builder")})),(0,o.createElement)(P,{label:L("Hover choice","jet-form-builder")},(0,o.createElement)(T,null,(0,o.createElement)(R,{cssVar:"--jfb-choice-hover-text",label:L("Text Choice","jet-form-builder")}),(0,o.createElement)(R,{cssVar:"--jfb-choice-hover-bg",label:L("Background Choice","jet-form-builder")})),(0,o.createElement)(D,{cssVar:"--jfb-choice-hover-border",label:L("Border","jet-form-builder"),enableAlpha:!0,labelForControl:!0}),(0,o.createElement)(O,{cssVar:"--jfb-choice-hover-border-radius",label:L("Radius","jet-form-builder")})),(0,o.createElement)(P,{label:L("Checked choice","jet-form-builder")},(0,o.createElement)(T,null,(0,o.createElement)(R,{cssVar:"--jfb-choice-checked-text",label:L("Text Choice","jet-form-builder")}),(0,o.createElement)(R,{cssVar:"--jfb-choice-checked-bg",label:L("Background Choice","jet-form-builder")})),(0,o.createElement)(D,{cssVar:"--jfb-choice-checked-border",label:L("Border","jet-form-builder"),enableAlpha:!0,labelForControl:!0}),(0,o.createElement)(O,{cssVar:"--jfb-choice-checked-border-radius",label:L("Radius","jet-form-builder")}))),(0,o.createElement)("div",{...i,key:r("viewBlock")},(0,o.createElement)(I,{...e,key:r("viewBlockWrapper")},(0,o.createElement)("ul",{...a}))))},save:function(){const e=oe.save();return(0,o.createElement)(re,{...e})},example:{attributes:{isPreview:!0}},variations:Ce,transforms:ne},{createContext:he}=wp.element,fe=he({clientId:!1}),{useBlockEditContext:pe}=wp.blockEditor,{useContext:be}=wp.element,Ve=function(){const{clientId:e,name:t}=pe(),{current:l,updateCurrent:C}=be(f),{clientId:o}=be(fe);return"jet-forms/choice"===t?[l.includes?.(e),()=>{C(e)}]:[l.includes?.(o),()=>{C(o)}]},{ToolbarButton:ge}=wp.components,{SVG:we,Path:ve}=wp.primitives,{__:je}=wp.i18n,Ee=function(){const[e,t]=Ve();return(0,o.createElement)(ge,{icon:(0,o.createElement)(we,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)(ve,{d:"M16.7 7.1l-6.3 8.5-3.3-2.5-.9 1.2 4.5 3.4L17.9 8z"})),title:je(e?"Show unchecked state":"Show checked state","jet-form-builder"),onClick:()=>t(),isActive:e})},{useSelect:ke}=wp.data,He=["jet-forms/choice-control"],Me=(0,o.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{width:"298",height:"144",rx:"4",fill:"#E2E8F0"}),(0,o.createElement)("rect",{x:"93",y:"12",width:"128",height:"122",rx:"8",fill:"white"}),(0,o.createElement)("rect",{x:"109",y:"114",width:"96",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"109",y:"120",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,o.createElement)("rect",{x:"109",y:"52",width:"96",height:"56",rx:"4",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M169 92.0666V68.8666H145V92.0666H169ZM152.333 82.4L155.667 86.2795L160.333 80.4666L166.333 88.2H147.667L152.333 82.4Z",fill:"#CBD5E1"}),(0,o.createElement)("path",{d:"M147.078 32.9531V33.6719C147.078 34.526 146.971 35.2917 146.758 35.9688C146.544 36.6458 146.237 37.2214 145.836 37.6953C145.435 38.1693 144.953 38.5312 144.391 38.7812C143.833 39.0312 143.208 39.1562 142.516 39.1562C141.844 39.1562 141.227 39.0312 140.664 38.7812C140.107 38.5312 139.622 38.1693 139.211 37.6953C138.805 37.2214 138.49 36.6458 138.266 35.9688C138.042 35.2917 137.93 34.526 137.93 33.6719V32.9531C137.93 32.099 138.039 31.3359 138.258 30.6641C138.482 29.987 138.797 29.4115 139.203 28.9375C139.609 28.4583 140.091 28.0938 140.648 27.8438C141.211 27.5938 141.828 27.4688 142.5 27.4688C143.193 27.4688 143.818 27.5938 144.375 27.8438C144.938 28.0938 145.419 28.4583 145.82 28.9375C146.227 29.4115 146.536 29.987 146.75 30.6641C146.969 31.3359 147.078 32.099 147.078 32.9531ZM145.586 33.6719V32.9375C145.586 32.2604 145.516 31.6615 145.375 31.1406C145.24 30.6198 145.039 30.1823 144.773 29.8281C144.508 29.474 144.182 29.2057 143.797 29.0234C143.417 28.8411 142.984 28.75 142.5 28.75C142.031 28.75 141.607 28.8411 141.227 29.0234C140.852 29.2057 140.529 29.474 140.258 29.8281C139.992 30.1823 139.786 30.6198 139.641 31.1406C139.495 31.6615 139.422 32.2604 139.422 32.9375V33.6719C139.422 34.3542 139.495 34.9583 139.641 35.4844C139.786 36.0052 139.995 36.4453 140.266 36.8047C140.542 37.1589 140.867 37.4271 141.242 37.6094C141.622 37.7917 142.047 37.8828 142.516 37.8828C143.005 37.8828 143.44 37.7917 143.82 37.6094C144.201 37.4271 144.521 37.1589 144.781 36.8047C145.047 36.4453 145.247 36.0052 145.383 35.4844C145.518 34.9583 145.586 34.3542 145.586 33.6719ZM150.562 32.1719V42.25H149.109V30.5469H150.438L150.562 32.1719ZM156.258 34.7031V34.8672C156.258 35.4818 156.185 36.0521 156.039 36.5781C155.893 37.099 155.68 37.5521 155.398 37.9375C155.122 38.3229 154.781 38.6224 154.375 38.8359C153.969 39.0495 153.503 39.1562 152.977 39.1562C152.44 39.1562 151.966 39.0677 151.555 38.8906C151.143 38.7135 150.794 38.4557 150.508 38.1172C150.221 37.7786 149.992 37.3724 149.82 36.8984C149.654 36.4245 149.539 35.8906 149.477 35.2969V34.4219C149.539 33.7969 149.656 33.237 149.828 32.7422C150 32.2474 150.227 31.8255 150.508 31.4766C150.794 31.1224 151.141 30.8542 151.547 30.6719C151.953 30.4844 152.422 30.3906 152.953 30.3906C153.484 30.3906 153.956 30.4948 154.367 30.7031C154.779 30.9062 155.125 31.1979 155.406 31.5781C155.688 31.9583 155.898 32.4141 156.039 32.9453C156.185 33.4714 156.258 34.0573 156.258 34.7031ZM154.805 34.8672V34.7031C154.805 34.2812 154.76 33.8854 154.672 33.5156C154.583 33.1406 154.445 32.8125 154.258 32.5312C154.076 32.2448 153.841 32.0208 153.555 31.8594C153.268 31.6927 152.927 31.6094 152.531 31.6094C152.167 31.6094 151.849 31.6719 151.578 31.7969C151.312 31.9219 151.086 32.0911 150.898 32.3047C150.711 32.513 150.557 32.7526 150.438 33.0234C150.323 33.2891 150.237 33.5651 150.18 33.8516V35.875C150.284 36.2396 150.43 36.5833 150.617 36.9062C150.805 37.224 151.055 37.4818 151.367 37.6797C151.68 37.8724 152.073 37.9688 152.547 37.9688C152.938 37.9688 153.273 37.888 153.555 37.7266C153.841 37.5599 154.076 37.3333 154.258 37.0469C154.445 36.7604 154.583 36.4323 154.672 36.0625C154.76 35.6875 154.805 35.2891 154.805 34.8672ZM161.641 30.5469V31.6562H157.07V30.5469H161.641ZM158.617 28.4922H160.062V36.9062C160.062 37.1927 160.107 37.4089 160.195 37.5547C160.284 37.7005 160.398 37.7969 160.539 37.8438C160.68 37.8906 160.831 37.9141 160.992 37.9141C161.112 37.9141 161.237 37.9036 161.367 37.8828C161.503 37.8568 161.604 37.8359 161.672 37.8203L161.68 39C161.565 39.0365 161.414 39.0703 161.227 39.1016C161.044 39.138 160.823 39.1562 160.562 39.1562C160.208 39.1562 159.883 39.0859 159.586 38.9453C159.289 38.8047 159.052 38.5703 158.875 38.2422C158.703 37.9089 158.617 37.4609 158.617 36.8984V28.4922ZM164.906 30.5469V39H163.453V30.5469H164.906ZM163.344 28.3047C163.344 28.0703 163.414 27.8724 163.555 27.7109C163.701 27.5495 163.914 27.4688 164.195 27.4688C164.471 27.4688 164.682 27.5495 164.828 27.7109C164.979 27.8724 165.055 28.0703 165.055 28.3047C165.055 28.5286 164.979 28.7214 164.828 28.8828C164.682 29.0391 164.471 29.1172 164.195 29.1172C163.914 29.1172 163.701 29.0391 163.555 28.8828C163.414 28.7214 163.344 28.5286 163.344 28.3047ZM166.844 34.8672V34.6875C166.844 34.0781 166.932 33.513 167.109 32.9922C167.286 32.4661 167.542 32.0104 167.875 31.625C168.208 31.2344 168.612 30.9323 169.086 30.7188C169.56 30.5 170.091 30.3906 170.68 30.3906C171.273 30.3906 171.807 30.5 172.281 30.7188C172.76 30.9323 173.167 31.2344 173.5 31.625C173.839 32.0104 174.096 32.4661 174.273 32.9922C174.451 33.513 174.539 34.0781 174.539 34.6875V34.8672C174.539 35.4766 174.451 36.0417 174.273 36.5625C174.096 37.0833 173.839 37.5391 173.5 37.9297C173.167 38.3151 172.763 38.6172 172.289 38.8359C171.82 39.0495 171.289 39.1562 170.695 39.1562C170.102 39.1562 169.568 39.0495 169.094 38.8359C168.62 38.6172 168.214 38.3151 167.875 37.9297C167.542 37.5391 167.286 37.0833 167.109 36.5625C166.932 36.0417 166.844 35.4766 166.844 34.8672ZM168.289 34.6875V34.8672C168.289 35.2891 168.339 35.6875 168.438 36.0625C168.536 36.4323 168.685 36.7604 168.883 37.0469C169.086 37.3333 169.339 37.5599 169.641 37.7266C169.943 37.888 170.294 37.9688 170.695 37.9688C171.091 37.9688 171.438 37.888 171.734 37.7266C172.036 37.5599 172.286 37.3333 172.484 37.0469C172.682 36.7604 172.831 36.4323 172.93 36.0625C173.034 35.6875 173.086 35.2891 173.086 34.8672V34.6875C173.086 34.2708 173.034 33.8776 172.93 33.5078C172.831 33.1328 172.68 32.8021 172.477 32.5156C172.279 32.224 172.029 31.9948 171.727 31.8281C171.43 31.6615 171.081 31.5781 170.68 31.5781C170.284 31.5781 169.935 31.6615 169.633 31.8281C169.336 31.9948 169.086 32.224 168.883 32.5156C168.685 32.8021 168.536 33.1328 168.438 33.5078C168.339 33.8776 168.289 34.2708 168.289 34.6875ZM177.797 32.3516V39H176.352V30.5469H177.719L177.797 32.3516ZM177.453 34.4531L176.852 34.4297C176.857 33.8516 176.943 33.3177 177.109 32.8281C177.276 32.3333 177.51 31.9036 177.812 31.5391C178.115 31.1745 178.474 30.8932 178.891 30.6953C179.312 30.4922 179.779 30.3906 180.289 30.3906C180.706 30.3906 181.081 30.4479 181.414 30.5625C181.747 30.6719 182.031 30.849 182.266 31.0938C182.505 31.3385 182.688 31.6562 182.812 32.0469C182.938 32.4323 183 32.9036 183 33.4609V39H181.547V33.4453C181.547 33.0026 181.482 32.6484 181.352 32.3828C181.221 32.112 181.031 31.9167 180.781 31.7969C180.531 31.6719 180.224 31.6094 179.859 31.6094C179.5 31.6094 179.172 31.6849 178.875 31.8359C178.583 31.987 178.331 32.1953 178.117 32.4609C177.909 32.7266 177.745 33.0312 177.625 33.375C177.51 33.7135 177.453 34.0729 177.453 34.4531ZM193.758 27.5625V39H192.312V29.3672L189.398 30.4297V29.125L193.531 27.5625H193.758Z",fill:"#0F172A"}),(0,o.createElement)("g",{clipPath:"url(#clip0_147_2251)"},(0,o.createElement)("path",{d:"M131 27.18L119.59 38.6L115.35 34.36L116.76 32.95L119.59 35.78L129.59 25.78L131 27.18ZM128.79 32.22C128.92 32.79 129 33.39 129 34C129 38.42 125.42 42 121 42C116.58 42 113 38.42 113 34C113 29.58 116.58 26 121 26C122.58 26 124.04 26.46 125.28 27.25L126.72 25.81C125.1 24.67 123.13 24 121 24C115.48 24 111 28.48 111 34C111 39.52 115.48 44 121 44C126.52 44 131 39.52 131 34C131 32.81 130.78 31.67 130.4 30.61L128.79 32.22Z",fill:"#4272F9"})),(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"clip0_147_2251"},(0,o.createElement)("rect",{width:"24",height:"24",fill:"white",transform:"translate(109 22)"})))),{__:Le}=wp.i18n,{InspectorControls:ye,useBlockProps:Ze,useInnerBlocksProps:_e,BlockControls:xe}=wp.blockEditor,{PanelBody:Be,TextControl:Fe}=wp.components,{classnames:Ne}=JetFBActions,Se=JSON.parse('{"apiVersion":3,"name":"jet-forms/choice","title":"Advanced Choice","parent":["jet-forms/choices-field"],"category":"jet-form-builder-fields","keywords":["jetformbuilder","field","choices","choice"],"description":"","icon":"\\n\\n\\n\\n\\n\\n\\n","textdomain":"jet-form-builder","attributes":{"value":{"type":"string","default":""},"calc_value":{"type":"string","default":""},"className":{"type":"string","default":""},"backgroundColor":{"type":"string"},"style":{"type":"object","default":{}},"isPreview":{"type":"boolean","default":false}},"supports":{"html":false,"layout":{"allowSwitching":false,"allowInheriting":false,"allowVerticalAlignment":false,"default":{"type":"flex","orientation":"vertical"}},"color":{},"spacing":{"blockGap":["horizontal","vertical"],"margin":true,"padding":true,"units":["px","em","rem","vh","vw"]}},"providesContext":{"jet-forms/choice--value":"value","jet-forms/choice--calc_value":"calc_value"},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index","jet-forms/choices-field--multiple","jet-forms/choices-field--required","jet-forms/choices-field--default","jet-forms/choices-field--name","jet-forms/choices-field--raw-name"]}'),{useInnerBlocksProps:Ae}=wp.blockEditor,{Fragment:Ie}=wp.element,{name:Pe,icon:Re}=Se,{__:Te}=wp.i18n;Se.supports.__experimentalLayout=Se.supports.layout;const De={icon:(0,o.createElement)("span",{dangerouslySetInnerHTML:{__html:Re}}),description:Te("Apply a variety of settings of the one particular choice block.","jet-form-builder"),edit:function(e){const{attributes:t,setAttributes:l,clientId:C}=e,[r]=Ve(),i=Ne({"jet-form-builder-choice--item":!0,"is-checked":r,"jfb-collapse-block-margin":!0,"jfb-collapse-block-border":!0}),c=ke((e=>{const t=[],l=e("core/blocks").getBlockTypes();for(const e of l)!e.name||!He.includes(e.name)&&e.name.includes("jet-forms/")||t.push(e.name);return t}),[]),a=Ze({className:i}),n=_e(a,{template:[["core/paragraph",{}]],allowedBlocks:c});return t.isPreview?(0,o.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Me):(0,o.createElement)(fe.Provider,{value:{clientId:C}},(0,o.createElement)("li",{...n}),(0,o.createElement)(xe,{group:"block"},(0,o.createElement)(Ee,null)),(0,o.createElement)(ye,null,(0,o.createElement)(Be,{title:Le("General","jet-form-builder")},(0,o.createElement)(Fe,{label:Le("Value","jet-form-builder"),value:t.value,onChange:e=>l({value:e.trim()})}),(0,o.createElement)(Fe,{label:Le("Value for Calculated Field","jet-form-builder"),help:Le("This value will be used for calculations\nin the Calculated Field.","jet-form-builder"),value:t.calc_value,onChange:e=>l({calc_value:e.trim()})}))))},save:function(){const e=Ae.save();return(0,o.createElement)(Ie,{...e})},example:{attributes:{isPreview:!0}}},Oe=(0,o.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{width:"298",height:"144",rx:"4",fill:"#E2E8F0"}),(0,o.createElement)("rect",{x:"50",y:"26",width:"198",height:"92",rx:"8",fill:"white"}),(0,o.createElement)("path",{d:"M124.234 74.4785H126.109C126.012 75.377 125.755 76.181 125.338 76.8906C124.921 77.6003 124.332 78.1634 123.57 78.5801C122.809 78.9902 121.858 79.1953 120.719 79.1953C119.885 79.1953 119.127 79.0391 118.443 78.7266C117.766 78.4141 117.184 77.9714 116.695 77.3984C116.207 76.819 115.829 76.1257 115.562 75.3184C115.302 74.5046 115.172 73.5996 115.172 72.6035V71.1875C115.172 70.1914 115.302 69.2897 115.562 68.4824C115.829 67.6686 116.21 66.972 116.705 66.3926C117.206 65.8132 117.809 65.3672 118.512 65.0547C119.215 64.7422 120.006 64.5859 120.885 64.5859C121.959 64.5859 122.867 64.7878 123.609 65.1914C124.352 65.5951 124.928 66.1549 125.338 66.8711C125.755 67.5807 126.012 68.4043 126.109 69.3418H124.234C124.143 68.6777 123.974 68.1081 123.727 67.6328C123.479 67.151 123.128 66.7799 122.672 66.5195C122.216 66.2591 121.62 66.1289 120.885 66.1289C120.253 66.1289 119.697 66.2493 119.215 66.4902C118.74 66.7311 118.339 67.0729 118.014 67.5156C117.695 67.9583 117.454 68.4889 117.291 69.1074C117.128 69.7259 117.047 70.4128 117.047 71.168V72.6035C117.047 73.3001 117.118 73.9544 117.262 74.5664C117.411 75.1784 117.636 75.7155 117.936 76.1777C118.235 76.64 118.616 77.0046 119.078 77.2715C119.54 77.5319 120.087 77.6621 120.719 77.6621C121.52 77.6621 122.158 77.5352 122.633 77.2812C123.108 77.0273 123.466 76.6628 123.707 76.1875C123.954 75.7122 124.13 75.1426 124.234 74.4785ZM130.211 64V79H128.404V64H130.211ZM129.781 73.3164L129.029 73.2871C129.036 72.5645 129.143 71.8971 129.352 71.2852C129.56 70.6667 129.853 70.1296 130.23 69.6738C130.608 69.2181 131.057 68.8665 131.578 68.6191C132.105 68.3652 132.688 68.2383 133.326 68.2383C133.847 68.2383 134.316 68.3099 134.732 68.4531C135.149 68.5898 135.504 68.8112 135.797 69.1172C136.096 69.4232 136.324 69.8203 136.48 70.3086C136.637 70.7904 136.715 71.3796 136.715 72.0762V79H134.898V72.0566C134.898 71.5033 134.817 71.0605 134.654 70.7285C134.492 70.39 134.254 70.1458 133.941 69.9961C133.629 69.8398 133.245 69.7617 132.789 69.7617C132.34 69.7617 131.93 69.8561 131.559 70.0449C131.194 70.2337 130.878 70.4941 130.611 70.8262C130.351 71.1582 130.146 71.5391 129.996 71.9688C129.853 72.3919 129.781 72.8411 129.781 73.3164ZM138.941 73.834V73.6094C138.941 72.8477 139.052 72.1413 139.273 71.4902C139.495 70.8327 139.814 70.263 140.23 69.7812C140.647 69.293 141.152 68.9154 141.744 68.6484C142.337 68.375 143.001 68.2383 143.736 68.2383C144.479 68.2383 145.146 68.375 145.738 68.6484C146.337 68.9154 146.845 69.293 147.262 69.7812C147.685 70.263 148.007 70.8327 148.229 71.4902C148.45 72.1413 148.561 72.8477 148.561 73.6094V73.834C148.561 74.5957 148.45 75.3021 148.229 75.9531C148.007 76.6042 147.685 77.1738 147.262 77.6621C146.845 78.1439 146.34 78.5215 145.748 78.7949C145.162 79.0618 144.498 79.1953 143.756 79.1953C143.014 79.1953 142.346 79.0618 141.754 78.7949C141.161 78.5215 140.654 78.1439 140.23 77.6621C139.814 77.1738 139.495 76.6042 139.273 75.9531C139.052 75.3021 138.941 74.5957 138.941 73.834ZM140.748 73.6094V73.834C140.748 74.3613 140.81 74.8594 140.934 75.3281C141.057 75.7904 141.243 76.2005 141.49 76.5586C141.744 76.9167 142.06 77.1999 142.438 77.4082C142.815 77.61 143.255 77.7109 143.756 77.7109C144.251 77.7109 144.684 77.61 145.055 77.4082C145.432 77.1999 145.745 76.9167 145.992 76.5586C146.24 76.2005 146.425 75.7904 146.549 75.3281C146.679 74.8594 146.744 74.3613 146.744 73.834V73.6094C146.744 73.0885 146.679 72.597 146.549 72.1348C146.425 71.666 146.236 71.2526 145.982 70.8945C145.735 70.5299 145.423 70.2435 145.045 70.0352C144.674 69.8268 144.238 69.7227 143.736 69.7227C143.242 69.7227 142.805 69.8268 142.428 70.0352C142.057 70.2435 141.744 70.5299 141.49 70.8945C141.243 71.2526 141.057 71.666 140.934 72.1348C140.81 72.597 140.748 73.0885 140.748 73.6094ZM152.789 68.4336V79H150.973V68.4336H152.789ZM150.836 65.6309C150.836 65.3379 150.924 65.0905 151.1 64.8887C151.282 64.6868 151.549 64.5859 151.9 64.5859C152.245 64.5859 152.509 64.6868 152.691 64.8887C152.88 65.0905 152.975 65.3379 152.975 65.6309C152.975 65.9108 152.88 66.1517 152.691 66.3535C152.509 66.5488 152.245 66.6465 151.9 66.6465C151.549 66.6465 151.282 66.5488 151.1 66.3535C150.924 66.1517 150.836 65.9108 150.836 65.6309ZM159.918 77.7109C160.348 77.7109 160.745 77.623 161.109 77.4473C161.474 77.2715 161.773 77.0306 162.008 76.7246C162.242 76.4121 162.376 76.0573 162.408 75.6602H164.127C164.094 76.2852 163.883 76.8678 163.492 77.4082C163.108 77.9421 162.604 78.375 161.979 78.707C161.354 79.0326 160.667 79.1953 159.918 79.1953C159.124 79.1953 158.43 79.0553 157.838 78.7754C157.252 78.4954 156.764 78.1113 156.373 77.623C155.989 77.1348 155.699 76.5749 155.504 75.9434C155.315 75.3053 155.221 74.6315 155.221 73.9219V73.5117C155.221 72.8021 155.315 72.1315 155.504 71.5C155.699 70.862 155.989 70.2988 156.373 69.8105C156.764 69.3223 157.252 68.9382 157.838 68.6582C158.43 68.3783 159.124 68.2383 159.918 68.2383C160.745 68.2383 161.467 68.4076 162.086 68.7461C162.704 69.0781 163.189 69.5339 163.541 70.1133C163.899 70.6862 164.094 71.3372 164.127 72.0664H162.408C162.376 71.6302 162.252 71.2363 162.037 70.8848C161.829 70.5332 161.542 70.2533 161.178 70.0449C160.82 69.8301 160.4 69.7227 159.918 69.7227C159.365 69.7227 158.899 69.8333 158.521 70.0547C158.15 70.2695 157.854 70.5625 157.633 70.9336C157.418 71.2982 157.262 71.7051 157.164 72.1543C157.073 72.597 157.027 73.0495 157.027 73.5117V73.9219C157.027 74.3841 157.073 74.8398 157.164 75.2891C157.255 75.7383 157.408 76.1452 157.623 76.5098C157.844 76.8743 158.141 77.1673 158.512 77.3887C158.889 77.6035 159.358 77.7109 159.918 77.7109ZM170.543 79.1953C169.807 79.1953 169.14 79.0716 168.541 78.8242C167.949 78.5703 167.438 78.2155 167.008 77.7598C166.585 77.304 166.259 76.7637 166.031 76.1387C165.803 75.5137 165.689 74.8301 165.689 74.0879V73.6777C165.689 72.8184 165.816 72.0534 166.07 71.3828C166.324 70.7057 166.669 70.1328 167.105 69.6641C167.542 69.1953 168.036 68.8405 168.59 68.5996C169.143 68.3587 169.716 68.2383 170.309 68.2383C171.064 68.2383 171.715 68.3685 172.262 68.6289C172.815 68.8893 173.268 69.2539 173.619 69.7227C173.971 70.1849 174.231 70.7318 174.4 71.3633C174.57 71.9883 174.654 72.6719 174.654 73.4141V74.2246H166.764V72.75H172.848V72.6133C172.822 72.1445 172.724 71.6888 172.555 71.2461C172.392 70.8034 172.132 70.4388 171.773 70.1523C171.415 69.8659 170.927 69.7227 170.309 69.7227C169.898 69.7227 169.521 69.8105 169.176 69.9863C168.831 70.1556 168.535 70.4095 168.287 70.748C168.04 71.0866 167.848 71.5 167.711 71.9883C167.574 72.4766 167.506 73.0397 167.506 73.6777V74.0879C167.506 74.5892 167.574 75.0612 167.711 75.5039C167.854 75.9401 168.059 76.3242 168.326 76.6562C168.6 76.9883 168.928 77.2487 169.312 77.4375C169.703 77.6263 170.146 77.7207 170.641 77.7207C171.279 77.7207 171.819 77.5905 172.262 77.3301C172.704 77.0697 173.092 76.7214 173.424 76.2852L174.518 77.1543C174.29 77.4993 174 77.8281 173.648 78.1406C173.297 78.4531 172.864 78.707 172.35 78.9023C171.842 79.0977 171.24 79.1953 170.543 79.1953ZM183.688 68.4336V79H181.871V68.4336H183.688ZM181.734 65.6309C181.734 65.3379 181.822 65.0905 181.998 64.8887C182.18 64.6868 182.447 64.5859 182.799 64.5859C183.144 64.5859 183.408 64.6868 183.59 64.8887C183.779 65.0905 183.873 65.3379 183.873 65.6309C183.873 65.9108 183.779 66.1517 183.59 66.3535C183.408 66.5488 183.144 66.6465 182.799 66.6465C182.447 66.6465 182.18 66.5488 181.998 66.3535C181.822 66.1517 181.734 65.9108 181.734 65.6309ZM191.012 68.4336V69.8203H185.299V68.4336H191.012ZM187.232 65.8652H189.039V76.3828C189.039 76.7409 189.094 77.0111 189.205 77.1934C189.316 77.3757 189.459 77.4961 189.635 77.5547C189.811 77.6133 189.999 77.6426 190.201 77.6426C190.351 77.6426 190.507 77.6296 190.67 77.6035C190.839 77.571 190.966 77.5449 191.051 77.5254L191.061 79C190.917 79.0456 190.729 79.0879 190.494 79.127C190.266 79.1725 189.99 79.1953 189.664 79.1953C189.221 79.1953 188.814 79.1074 188.443 78.9316C188.072 78.7559 187.776 78.4629 187.555 78.0527C187.34 77.6361 187.232 77.0762 187.232 76.373V65.8652ZM197.516 79.1953C196.78 79.1953 196.113 79.0716 195.514 78.8242C194.921 78.5703 194.41 78.2155 193.98 77.7598C193.557 77.304 193.232 76.7637 193.004 76.1387C192.776 75.5137 192.662 74.8301 192.662 74.0879V73.6777C192.662 72.8184 192.789 72.0534 193.043 71.3828C193.297 70.7057 193.642 70.1328 194.078 69.6641C194.514 69.1953 195.009 68.8405 195.562 68.5996C196.116 68.3587 196.689 68.2383 197.281 68.2383C198.036 68.2383 198.688 68.3685 199.234 68.6289C199.788 68.8893 200.24 69.2539 200.592 69.7227C200.943 70.1849 201.204 70.7318 201.373 71.3633C201.542 71.9883 201.627 72.6719 201.627 73.4141V74.2246H193.736V72.75H199.82V72.6133C199.794 72.1445 199.697 71.6888 199.527 71.2461C199.365 70.8034 199.104 70.4388 198.746 70.1523C198.388 69.8659 197.9 69.7227 197.281 69.7227C196.871 69.7227 196.493 69.8105 196.148 69.9863C195.803 70.1556 195.507 70.4095 195.26 70.748C195.012 71.0866 194.82 71.5 194.684 71.9883C194.547 72.4766 194.479 73.0397 194.479 73.6777V74.0879C194.479 74.5892 194.547 75.0612 194.684 75.5039C194.827 75.9401 195.032 76.3242 195.299 76.6562C195.572 76.9883 195.901 77.2487 196.285 77.4375C196.676 77.6263 197.118 77.7207 197.613 77.7207C198.251 77.7207 198.792 77.5905 199.234 77.3301C199.677 77.0697 200.064 76.7214 200.396 76.2852L201.49 77.1543C201.262 77.4993 200.973 77.8281 200.621 78.1406C200.27 78.4531 199.837 78.707 199.322 78.9023C198.814 79.0977 198.212 79.1953 197.516 79.1953ZM205.533 70.5332V79H203.717V68.4336H205.436L205.533 70.5332ZM205.162 73.3164L204.322 73.2871C204.329 72.5645 204.423 71.8971 204.605 71.2852C204.788 70.6667 205.058 70.1296 205.416 69.6738C205.774 69.2181 206.22 68.8665 206.754 68.6191C207.288 68.3652 207.906 68.2383 208.609 68.2383C209.104 68.2383 209.56 68.3099 209.977 68.4531C210.393 68.5898 210.755 68.8079 211.061 69.1074C211.367 69.4069 211.604 69.791 211.773 70.2598C211.943 70.7285 212.027 71.2949 212.027 71.959V79H210.221V72.0469C210.221 71.4935 210.126 71.0508 209.938 70.7188C209.755 70.3867 209.495 70.1458 209.156 69.9961C208.818 69.8398 208.421 69.7617 207.965 69.7617C207.431 69.7617 206.985 69.8561 206.627 70.0449C206.269 70.2337 205.982 70.4941 205.768 70.8262C205.553 71.1582 205.396 71.5391 205.299 71.9688C205.208 72.3919 205.162 72.8411 205.162 73.3164ZM212.008 72.3203L210.797 72.6914C210.803 72.112 210.898 71.5553 211.08 71.0215C211.269 70.4876 211.539 70.0124 211.891 69.5957C212.249 69.179 212.688 68.8503 213.209 68.6094C213.73 68.362 214.326 68.2383 214.996 68.2383C215.562 68.2383 216.064 68.3132 216.5 68.4629C216.943 68.6126 217.314 68.8438 217.613 69.1562C217.919 69.4622 218.15 69.8561 218.307 70.3379C218.463 70.8197 218.541 71.3926 218.541 72.0566V79H216.725V72.0371C216.725 71.4447 216.63 70.9857 216.441 70.6602C216.259 70.3281 215.999 70.097 215.66 69.9668C215.328 69.8301 214.931 69.7617 214.469 69.7617C214.072 69.7617 213.72 69.8301 213.414 69.9668C213.108 70.1035 212.851 70.2923 212.643 70.5332C212.434 70.7676 212.275 71.0378 212.164 71.3438C212.06 71.6497 212.008 71.9753 212.008 72.3203Z",fill:"#0F172A"}),(0,o.createElement)("g",{clipPath:"url(#clip0_149_2283)"},(0,o.createElement)("path",{d:"M103.667 64.0433L90.355 77.3666L85.4083 72.42L87.0533 70.775L90.355 74.0766L102.022 62.41L103.667 64.0433ZM101.088 69.9233C101.24 70.5883 101.333 71.2883 101.333 72C101.333 77.1566 97.1567 81.3333 92 81.3333C86.8433 81.3333 82.6667 77.1566 82.6667 72C82.6667 66.8433 86.8433 62.6666 92 62.6666C93.8433 62.6666 95.5467 63.2033 96.9933 64.125L98.6733 62.445C96.7833 61.115 94.485 60.3333 92 60.3333C85.56 60.3333 80.3333 65.56 80.3333 72C80.3333 78.44 85.56 83.6666 92 83.6666C98.44 83.6666 103.667 78.44 103.667 72C103.667 70.6116 103.41 69.2816 102.967 68.045L101.088 69.9233Z",fill:"#4272F9"})),(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"clip0_149_2283"},(0,o.createElement)("rect",{width:"28",height:"28",fill:"white",transform:"translate(78 58)"})))),{__:Je,sprintf:Ge}=wp.i18n,{useBlockProps:qe,RichText:We,InspectorControls:ze,MediaUpload:Ue,MediaUploadCheck:Ye,BlockControls:$e}=wp.blockEditor,{useInstanceId:Ke}=wp.compose;let{Button:Qe,PanelBody:Xe,RangeControl:et,__experimentalToggleGroupControl:tt,ToggleGroupControl:lt,__experimentalToggleGroupControlOption:Ct,ToggleGroupControlOption:ot}=wp.components;lt=lt||tt,ot=ot||Ct;const{BaseHelp:rt,BaseLabel:it,StylePanel:ct,StylePanelItem:at}=JetFBComponents,{useStyle:nt,useJetStyle:mt}=JetFBHooks;function st({open:e,hasValue:t=!1}){return(0,o.createElement)(Qe,{isSecondary:!0,isSmall:!0,icon:"edit",onClick:e,className:t?"jet-fb has-value":"",label:Je(t?"Edit icon":"Choose icon","jet-form-builder")},Je(t?"Edit":"Choose","jet-form-builder"))}const dt=JSON.parse('{"apiVersion":3,"name":"jet-forms/choice-control","title":"Choice Control","ancestor":["jet-forms/choice"],"category":"jet-form-builder-fields","keywords":["jetformbuilder","field","check","choice","control"],"description":"","icon":"\\n\\n\\n\\n\\n\\n\\n","textdomain":"jet-form-builder","attributes":{"label":{"type":"string","default":""},"control_type":{"type":"string","default":""},"default_image_control":{"type":"object","default":{}},"checked_image_control":{"type":"object","default":""},"style":{"type":"object","default":{".jet-form-builder-choice--item-control-img":{"width":"24px"}}},"isPreview":{"type":"boolean","default":false}},"supports":{"html":false,"jetStyle":{"--jfb-choice-control-width":[".jet-form-builder-choice--item-control-img","width"]},"spacing":{"margin":true,"padding":true,"units":["px","em","rem","vh","vw"]},"color":{"text":true,"background":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index","jet-forms/choices-field--multiple","jet-forms/choices-field--required","jet-forms/choices-field--name","jet-forms/choices-field--raw-name","jet-forms/choices-field--default","jet-forms/choice--value","jet-forms/choice--calc_value"]}'),{name:ut,icon:ht}=dt,{__:ft}=wp.i18n,pt={icon:(0,o.createElement)("span",{dangerouslySetInnerHTML:{__html:ht}}),description:ft('Get the adjusting options for the Image and Choice Control block \nwith "Images and Controls" layout of the Advanced Choices Field.',"jet-form-builder"),edit:function e(t){const{context:l,setAttributes:C,attributes:r}=t,{"jet-forms/choices-field--multiple":i,"jet-forms/choices-field--name":c}=l,a=mt(),n=qe({className:Ge("jet-form-builder-choice--item-control %s",a.className),style:a.style}),m=Ke(e,c),[s,d]=Ve(),u="image"===r.control_type&&(s?r?.checked_image_control?.url:r?.default_image_control?.url),[h,f]=nt("--jfb-choice-control-width"),p=parseInt(h);return r.isPreview?(0,o.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Oe):(0,o.createElement)(o.Fragment,null,(0,o.createElement)($e,{group:"block"},(0,o.createElement)(Ee,null)),(0,o.createElement)("span",{...n},u?(0,o.createElement)("img",{src:u,className:"jet-form-builder-choice--item-control-img",alt:c+" "+Je("control","jet-form-builder")}):(0,o.createElement)("input",{id:m,type:i?"checkbox":"radio",checked:s,onChange:()=>d(),className:"jet-form-builder-choice--item-control-input"}),(0,o.createElement)(We,{tagName:"label",value:r.label,onChange:e=>C({label:e}),placeholder:Je("Label for input...","jet-form-builder"),multiline:!1})),(0,o.createElement)(ze,null,(0,o.createElement)("div",{style:{padding:"20px"}},(0,o.createElement)(lt,{onChange:e=>C({control_type:e}),value:r.control_type,label:Je("Control type","jet-form-builder"),isBlock:!0},(0,o.createElement)(ot,{label:Je(i?"Checkbox input":"Radio input","jet-form-builder"),value:""}),(0,o.createElement)(ot,{label:Je("Image","jet-form-builder"),value:"image"})))),"image"===r.control_type&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)(ze,null,(0,o.createElement)(Ye,null,(0,o.createElement)(Xe,{title:Je("Control Default","jet-form-builder")},(0,o.createElement)(it,{label:Je("Default icon","jet-form-builder")},(0,o.createElement)(Ue,{onSelect:e=>{var t;return C({default_image_control:{...null!==(t=r.default_image_control)&&void 0!==t?t:{},url:e.url,id:e.id}})},allowedTypes:["image/*"],value:r.default_image_control?.id,render:({open:e})=>(0,o.createElement)(st,{open:e,hasValue:!!r.default_image_control?.url})}),!!r.default_image_control?.url&&(0,o.createElement)(Qe,{isDestructive:!0,isSmall:!0,icon:"no-alt",onClick:()=>C({default_image_control:{}}),label:Je("Remove default icon","jet-form-builder")})),!!r.default_image_control?.url&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("img",{src:r.default_image_control?.url,style:{maxWidth:"150px",maxHeight:"150px",margin:"1em 0"}})),(0,o.createElement)(rt,null,Je("Choose icon for default state of choice","jet-form-builder"))),(0,o.createElement)(Xe,{title:Je("Control Checked","jet-form-builder")},(0,o.createElement)(it,{label:Je("Checked Icon","jet-form-builder")},(0,o.createElement)(Ue,{onSelect:e=>{var t;return C({checked_image_control:{...null!==(t=r.checked_image_control)&&void 0!==t?t:{},url:e.url,id:e.id}})},allowedTypes:["image/*"],value:r.checked_image_control?.id,render:({open:e})=>(0,o.createElement)(st,{open:e,hasValue:!!r.checked_image_control?.url})}),!!r.checked_image_control?.url&&(0,o.createElement)(Qe,{isDestructive:!0,isSmall:!0,icon:"no-alt",onClick:()=>C({checked_image_control:{}}),label:Je("Remove checked icon","jet-form-builder")})),!!r.checked_image_control?.url&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("img",{src:r.checked_image_control?.url,style:{maxWidth:"150px",maxHeight:"150px",margin:"1em 0"}})),(0,o.createElement)(rt,null,Je("Choose icon for checked state of choice","jet-form-builder"))))),(0,o.createElement)(ze,{group:"styles"},(0,o.createElement)(ct,{label:Je("Image control","jet-form-builder")},(0,o.createElement)(at,{label:Je("Width","jet-form-builder"),cssVar:"--jfb-choice-control-width",defaultValue:"24px"},(0,o.createElement)(et,{help:Je("Specify the width of the image in pixels.","jet-form-builder"),initialPosition:24,label:Je("Width","jet-form-builder"),value:p,max:200,min:0,onChange:e=>f(e?`${e}px`:0)}))))))},example:{attributes:{isPreview:!0}}},{addFilter:bt}=wp.hooks;bt("jet.fb.register.fields","jet-form-builder/advanced-choices",(function(e){return e.push(t,l,C),e}))})(); \ No newline at end of file diff --git a/modules/advanced-choices/assets/build/frontend/choices.field.asset.php b/modules/advanced-choices/assets/build/frontend/choices.field.asset.php index beaf83f08..22924bd4a 100644 --- a/modules/advanced-choices/assets/build/frontend/choices.field.asset.php +++ b/modules/advanced-choices/assets/build/frontend/choices.field.asset.php @@ -1 +1 @@ - array(), 'version' => 'ffb76854f41cac80abe5'); + array(), 'version' => 'ca05550a7cac3b9b55a3'); diff --git a/modules/advanced-choices/assets/build/frontend/choices.field.js b/modules/advanced-choices/assets/build/frontend/choices.field.js index 56f0dace5..3fa2a62c7 100644 --- a/modules/advanced-choices/assets/build/frontend/choices.field.js +++ b/modules/advanced-choices/assets/build/frontend/choices.field.js @@ -1 +1 @@ -(()=>{"use strict";function t(t){return t?.classList?.contains("jet-form-builder-choice")}function e(t){return t.closest(".jet-form-builder-choice--item")}const{InputData:i,ReactiveSet:n,ReactiveHook:o}=JetFormBuilderAbstract,{getParsedName:s}=JetFormBuilderFunctions;function r(){i.call(this),this.isSupported=t,this.setNode=function(t){t.jfbSync=this,this.nodes=Array.from(t.querySelectorAll(".jet-form-builder-choice--item input")),this.rawName=this.nodes[0].name,this.name=s(this.rawName),this.inputType="choice"},this.setValue=function(){this.value.current=this.isArray()?this.getMultipleValue():this.getSingleValue()},this.addListeners=function(){for(const t of this.nodes)t.addEventListener("change",()=>this.setValue()),this.addListenerForChoice(t);this.isArray()&&this.sanitize(t=>Array.isArray(t)?t:[t])},this.getMultipleValue=function(){return Array.from(this.nodes).filter(t=>t.checked).map(t=>t.value)},this.getSingleValue=function(){for(const t of this.nodes)if(t.checked)return t.value;return""},this.addListenerForChoice=function(t){const i=e(t);i.addEventListener("click",e=>this.toggleChoice(t,e)),this.enterKey=new o,this.isNativeControl(t)?t.addEventListener("keydown",this.handleEnterKey.bind(this)):i.addEventListener("keydown",e=>{this.handleEnterKey(e),this.handleSpaceKey(e,t),this.isArray()||(this.handleNextKey(e,t),this.handlePrevKey(e,t))})},this.toggleChoice=function(t,e){e.target.closest(".jet-form-builder-choice--item-control label")||(this.isArray()?this.value.toggle(t.value):this.value.current!==t.value?this.value.current=t.value:this.value.current="")},this.hasAutoScroll=function(){return this.isNativeControl(this.nodes[0])},this.focusRaw=function(){const[t]=this.nodes;this.isNativeControl(t)?i.prototype.focusRaw.call(this):e(t).focus({preventScroll:!0})}}r.prototype=Object.create(i.prototype),r.prototype.getReactive=function(){return new n},r.prototype.isNativeControl=function(t){return t.classList.contains("jet-form-builder-choice--item-control-input")},r.prototype.handleNextKey=function(t,e){if(!["ArrowRight","ArrowDown"].includes(t.key))return;t.preventDefault();const i=this.nextNode(e);this.switchChoice(t,i)},r.prototype.handlePrevKey=function(t,e){if(!["ArrowUp","ArrowLeft"].includes(t.key))return;t.preventDefault();const i=this.prevNode(e);this.switchChoice(t,i)},r.prototype.handleSpaceKey=function(t,e){["Spacebar"," "].includes(t.key)&&(t.preventDefault(),this.toggleChoice(e,t))},r.prototype.switchChoice=function(t,i){const n=e(i);this.toggleChoice(i,t),n.focus({preventScroll:!0})},r.prototype.nextNode=function(t){for(const[e,i]of this.nodes.entries())if(i===t)return this.nodes.hasOwnProperty(+e+1)?this.nodes[+e+1]:this.nodes[0]},r.prototype.prevNode=function(t){for(const[e,i]of this.nodes.entries())if(i===t)return this.nodes.at(e-1)};const c=r,{BaseSignal:a}=JetFormBuilderAbstract,{isEmpty:h}=JetFormBuilderFunctions;function u(){a.call(this),this.isRadio=null,this.indexedFirst=!1,this.isSupported=function(t,i){return!!e(t)},this.runSignal=function(){this.input.calcValue=0,this.indexedFirst=!1;for(const i of this.input.nodes){var t;i.checked=this.isRadio?this.input.value.current===i.value:this.input.value.current?.includes(i.value);const n=e(i);this.toggleTabIndex(i,n),n.classList.toggle("is-checked",i.checked),n.ariaChecked=i.checked,this.toggleImageControl(n,i.checked),i.checked&&(this.input.calcValue+=parseFloat(null!==(t=i.dataset?.calculate)&&void 0!==t?t:i.value))}},this.setInput=function(t){a.prototype.setInput.call(this,t),this.isRadio=!this.input.isArray()}}u.prototype=Object.create(a.prototype),u.prototype.toggleImageControl=function(t,e){const i=t.querySelectorAll(".jet-form-builder-choice--item-control-img");for(const t of i)t.style.display=e?t.classList.contains("checked")?"":"none":t.classList.contains("checked")?"none":""},u.prototype.toggleTabIndex=function(t,e){if(this.isRadio&&!this.input.isNativeControl(t))return h(this.input.value.current)?(this.setRawTabIndex(e,this.indexedFirst?-1:0),void(this.indexedFirst=!0)):void this.setRawTabIndex(e,t.checked?0:-1)},u.prototype.setRawTabIndex=function(t,e){e!==t.tabIndex&&(t.tabIndex=e)};const l=u,{addFilter:d}=JetPlugins.hooks;d("jet.fb.inputs","jet-form-builder/choices-field",function(t){return[c,...t]}),d("jet.fb.signals","jet-form-builder/choices-field",function(t){return[l,...t]},20)})(); \ No newline at end of file +(()=>{"use strict";function t(t){return t?.classList?.contains("jet-form-builder-choice")}function e(t){return t.closest(".jet-form-builder-choice--item")}const{InputData:i,ReactiveSet:n,ReactiveHook:o}=JetFormBuilderAbstract,{getParsedName:s}=JetFormBuilderFunctions;function r(){i.call(this),this.isSupported=t,this.setNode=function(t){t.jfbSync=this,this.nodes=Array.from(t.querySelectorAll(".jet-form-builder-choice--item input")),this.rawName=this.nodes[0].name,this.name=s(this.rawName),this.inputType="choice"},this.setValue=function(){this.value.current=this.isArray()?this.getMultipleValue():this.getSingleValue()},this.addListeners=function(){for(const t of this.nodes)t.addEventListener("change",(()=>this.setValue())),this.addListenerForChoice(t);this.isArray()&&this.sanitize((t=>Array.isArray(t)?t:[t]))},this.getMultipleValue=function(){return Array.from(this.nodes).filter((t=>t.checked)).map((t=>t.value))},this.getSingleValue=function(){for(const t of this.nodes)if(t.checked)return t.value;return""},this.addListenerForChoice=function(t){const i=e(t);i.addEventListener("click",(e=>this.toggleChoice(t,e))),this.enterKey=new o,this.isNativeControl(t)?t.addEventListener("keydown",this.handleEnterKey.bind(this)):i.addEventListener("keydown",(e=>{this.handleEnterKey(e),this.handleSpaceKey(e,t),this.isArray()||(this.handleNextKey(e,t),this.handlePrevKey(e,t))}))},this.toggleChoice=function(t,e){e.target.closest(".jet-form-builder-choice--item-control label")||(this.isArray()?this.value.toggle(t.value):this.value.current!==t.value?this.value.current=t.value:this.value.current="")},this.hasAutoScroll=function(){return this.isNativeControl(this.nodes[0])},this.focusRaw=function(){const[t]=this.nodes;this.isNativeControl(t)?i.prototype.focusRaw.call(this):e(t).focus({preventScroll:!0})}}r.prototype=Object.create(i.prototype),r.prototype.getReactive=function(){return new n},r.prototype.isNativeControl=function(t){return t.classList.contains("jet-form-builder-choice--item-control-input")},r.prototype.handleNextKey=function(t,e){if(!["ArrowRight","ArrowDown"].includes(t.key))return;t.preventDefault();const i=this.nextNode(e);this.switchChoice(t,i)},r.prototype.handlePrevKey=function(t,e){if(!["ArrowUp","ArrowLeft"].includes(t.key))return;t.preventDefault();const i=this.prevNode(e);this.switchChoice(t,i)},r.prototype.handleSpaceKey=function(t,e){["Spacebar"," "].includes(t.key)&&(t.preventDefault(),this.toggleChoice(e,t))},r.prototype.switchChoice=function(t,i){const n=e(i);this.toggleChoice(i,t),n.focus({preventScroll:!0})},r.prototype.nextNode=function(t){for(const[e,i]of this.nodes.entries())if(i===t)return this.nodes.hasOwnProperty(+e+1)?this.nodes[+e+1]:this.nodes[0]},r.prototype.prevNode=function(t){for(const[e,i]of this.nodes.entries())if(i===t)return this.nodes.at(e-1)};const c=r,{BaseSignal:a}=JetFormBuilderAbstract,{isEmpty:h}=JetFormBuilderFunctions;function u(){a.call(this),this.isRadio=null,this.indexedFirst=!1,this.isSupported=function(t,i){return!!e(t)},this.runSignal=function(){this.input.calcValue=0,this.indexedFirst=!1;for(const i of this.input.nodes){var t;i.checked=this.isRadio?this.input.value.current===i.value:this.input.value.current?.includes(i.value);const n=e(i);this.toggleTabIndex(i,n),n.classList.toggle("is-checked",i.checked),n.ariaChecked=i.checked,this.toggleImageControl(n,i.checked),i.checked&&(this.input.calcValue+=parseFloat(null!==(t=i.dataset?.calculate)&&void 0!==t?t:i.value))}},this.setInput=function(t){a.prototype.setInput.call(this,t),this.isRadio=!this.input.isArray()}}u.prototype=Object.create(a.prototype),u.prototype.toggleImageControl=function(t,e){const i=t.querySelectorAll(".jet-form-builder-choice--item-control-img");for(const t of i)t.style.display=e?t.classList.contains("checked")?"":"none":t.classList.contains("checked")?"none":""},u.prototype.toggleTabIndex=function(t,e){if(this.isRadio&&!this.input.isNativeControl(t))return h(this.input.value.current)?(this.setRawTabIndex(e,this.indexedFirst?-1:0),void(this.indexedFirst=!0)):void this.setRawTabIndex(e,t.checked?0:-1)},u.prototype.setRawTabIndex=function(t,e){e!==t.tabIndex&&(t.tabIndex=e)};const l=u,{addFilter:d}=JetPlugins.hooks;d("jet.fb.inputs","jet-form-builder/choices-field",(function(t){return[c,...t]})),d("jet.fb.signals","jet-form-builder/choices-field",(function(t){return[l,...t]}),20)})(); \ No newline at end of file diff --git a/modules/ai/assets/build/admin/forms.asset.php b/modules/ai/assets/build/admin/forms.asset.php index 4a6801900..38c509a6a 100644 --- a/modules/ai/assets/build/admin/forms.asset.php +++ b/modules/ai/assets/build/admin/forms.asset.php @@ -1 +1 @@ - array('react', 'wp-api-fetch', 'wp-components', 'wp-dom-ready', 'wp-element', 'wp-i18n'), 'version' => 'ab8b006aa12d1b84b976'); + array('react', 'wp-api-fetch', 'wp-components', 'wp-dom-ready', 'wp-element', 'wp-i18n'), 'version' => '55404eac730d6da0c224'); diff --git a/modules/ai/assets/build/admin/forms.js b/modules/ai/assets/build/admin/forms.js index 22819a430..ee76d06b7 100644 --- a/modules/ai/assets/build/admin/forms.js +++ b/modules/ai/assets/build/admin/forms.js @@ -1 +1 @@ -(()=>{"use strict";var t={42(t,e,r){r.d(e,{A:()=>l});var n=r(168),o=r.n(n),a=r(433),i=r.n(a)()(o());i.push([t.id,".jfb-ai-modal .badge{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:var(--wp-components-color-accent-inverted,#fff);font-size:0.65em;padding:0.2em 0.5em;border-radius:1em}.jfb-ai-modal .components-notice{margin:0 0 2em 0}",""]);const l=i},433(t){t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var r="",n=void 0!==e[5];return e[4]&&(r+="@supports (".concat(e[4],") {")),e[2]&&(r+="@media ".concat(e[2]," {")),n&&(r+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),r+=t(e),n&&(r+="}"),e[2]&&(r+="}"),e[4]&&(r+="}"),r}).join("")},e.i=function(t,r,n,o,a){"string"==typeof t&&(t=[[null,t,void 0]]);var i={};if(n)for(var l=0;l0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=a),r&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=r):u[2]=r),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),e.push(u))}},e}},168(t){t.exports=function(t){return t[1]}},673(t){var e=[];function r(t){for(var r=-1,n=0;n0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),e.styleTagTransform(n,t,e.options)}(e,t,r)},remove:function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(e)}}}},626(t){t.exports=function(t,e){if(e.styleSheet)e.styleSheet.cssText=t;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(t))}}}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var a=e[n]={id:n,exports:{}};return t[n](a,a.exports,r),a.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.nc=void 0;const n=window.React;var o=r(673),a=r.n(o),i=r(598),l=r.n(i),s=r(262),c=r.n(s),u=r(657),m=r.n(u),d=r(357),p=r.n(d),f=r(626),h=r.n(f),b=r(42),v={};v.styleTagTransform=h(),v.setAttributes=m(),v.insert=c().bind(null,"head"),v.domAPI=l(),v.insertStyleElement=p(),a()(b.A,v),b.A&&b.A.locals&&b.A.locals;const g=window.wp.components,y=window.wp.element,w=window.wp.i18n,E=window.wp.apiFetch;var _=r.n(E);const{parseHTMLtoBlocks:j,getFormInnerFields:x}=JetFormBuilderParser,S=["Registration form with minimum inputs","Opt-in form with gender selector like radio","Quiz form with 5 questions with choices about math"],k=function({setShowModal:t,footer:e=()=>"Here may be buttons"}){const[r,o]=(0,y.useState)(""),[a,i]=(0,y.useState)(""),[l,s]=(0,y.useState)(!1),[c,u]=(0,y.useState)(""),[m,d]=(0,y.useState)(0),[p,f]=(0,y.useState)(0);return(0,n.createElement)(g.Modal,{style:{width:"60vw"},onRequestClose:()=>t(!1),title:(0,n.createElement)(g.Flex,null,(0,w.__)("Generate Form with AI","jet-form-builder"),(0,n.createElement)("span",{className:"badge"},(0,w.__)("Limited 15 requests per month","jet-form-builder"))),className:"jfb-ai-modal"},c&&(0,n.createElement)(g.Notice,{status:"error",onRemove:()=>u("")},(0,n.createElement)(g.Flex,{direction:"column"},c,(0,n.createElement)(g.ExternalLink,{href:"https://support.crocoblock.com/support/home/"},(0,w.__)("Contact Crocoblock support","jet-form-builder")))),Boolean(a.length)?(0,n.createElement)(n.Fragment,null,(0,n.createElement)("div",{className:"jet-form-builder-html-parser-preview"},(0,n.createElement)("style",null,'\n\t\t\t\t\t.jet-form-builder-html-parser-preview {\n\t\t\t\t\t\tpointer-events: none;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview textarea,\n\t\t\t\t\t.jet-form-builder-html-parser-preview input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),\n\t\t\t\t\t.jet-form-builder-html-parser-preview select {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\twidth: 100% !important;\n\t\t\t\t\t\tmax-width: 100% !important;\n\t\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview label {\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\tmargin-bottom:5px;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview br {\n\t\t\t\t\t\tdisplay:none;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview input[type="submit"],\n\t\t\t\t\t.jet-form-builder-html-parser-preview button {\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\tborder: none;\n\t\t\t\t\t\tbackground-color: #0071a1;\n\t\t\t\t\t\tcolor: #fff;\n\t\t\t\t\t\tpadding: 10px 20px;\n\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t}\n\t\t\t\t'),(0,n.createElement)("div",{dangerouslySetInnerHTML:{__html:a},style:{padding:"2em 1em",backgroundColor:"#f6f7f7",marginBottom:"1em"}})),(0,n.createElement)(e,{clearHTML:()=>i(""),formHTML:a,prompt:r},(0,n.createElement)("span",{style:{flex:"1",textAlign:"end",color:"rgb( 117, 117, 117 )"}},(0,w.sprintf)((0,w.__)("Requests used: %d/%d","jet-form-builder"),m,p)))):(0,n.createElement)(n.Fragment,null,(0,n.createElement)(g.TextareaControl,{label:(0,w.__)("Describe the form you want","jet-form-builder"),value:r,onChange:o,help:(0,w.__)("Prompt example: Simple contact form","jet-form-builder")}),Boolean(r.length)&&(0,n.createElement)(g.Button,{variant:"primary",isBusy:l,disabled:l,onClick:()=>{s(!0),_()({path:"/jet-form-builder/v1/ai/generate",method:"POST",data:{prompt:r}}).then(t=>{u(""),i(x(t.form)),console.group((0,w.__)("JFB: Parsed blocks from generated HTML","jet-form-builder")),console.log(j(t.form)),console.groupEnd(),d(t.usage),f(t.limit)}).catch(t=>{var e;u(null!==(e=t?.message)&&void 0!==e?e:(0,w.__)("Undefined error.","jet-form-builder"))}).finally(()=>{s(!1)})}},(0,w.__)("Generate","jet-form-builder")),(0,n.createElement)("h4",null,(0,w.__)("Tips to write good prompt:","jet-form-builder")),(0,n.createElement)("ul",{style:{listStyle:"disc",paddingInlineStart:"1em"}},(0,n.createElement)("li",null,(0,w.__)("Start with the main purpose of the form.","jet-form-builder")),(0,n.createElement)("li",null,(0,w.__)("If you need specific fields – describe them in the prompt as well.","jet-form-builder")),(0,n.createElement)("li",null,(0,w.__)("It is better to use the English language for the prompt, as AI understands it better than others.","jet-form-builder"))),(0,n.createElement)("h4",null,(0,w.__)("Examples of the good prompts:","jet-form-builder")),(0,n.createElement)("ul",{style:{listStyle:"disc",paddingInlineStart:"1em"}},S.map(t=>(0,n.createElement)("li",{key:t},(0,n.createElement)(g.Button,{onClick:()=>o(t),variant:"link"},t))))))};function C({name:t,attributes:e}){return`\x3c!-- wp:${t} ${JSON.stringify(e)} /--\x3e`}const T=function(t){return t.map(C).join("\n\n")},{parseHTMLtoBlocks:M}=JetFormBuilderParser,F=function({clearHTML:t,formHTML:e,prompt:r,children:o=null}){return(0,n.createElement)(g.Flex,{justify:"flex-start"},(0,n.createElement)(g.Button,{variant:"primary",onClick:()=>{const t=M(e);t.length?_()({method:"POST",path:"/wp/v2/jet-form-builder",data:{title:r,content:T(t),status:"publish"}}).then(t=>{window.location.href=(t=>{const e=new URL(JetFormBuilderAdmin.edit_url);return e.searchParams.set("post",t),e.href})(t.id)}).catch(console.error):console.error((0,w.__)("JFB: Invalid html","jet-form-builder"),e)}},(0,w.__)("Create form with this template","jet-form-builder")),(0,n.createElement)(g.Button,{variant:"secondary",onClick:t},(0,w.__)("Change generation prompt","jet-form-builder")),o)},I=function(){const[t,e]=(0,y.useState)(!1);return(0,n.createElement)(n.Fragment,null,(0,n.createElement)("a",{href:"#",className:"page-title-action",onClick:t=>{t.preventDefault(),e(t=>!t)}},(0,w.__)("Generate with AI","jet-form-builder")),t&&(0,n.createElement)(k,{setShowModal:e,footer:F}))},A=window.wp.domReady;r.n(A)()(()=>{const t=document.createElement("div");t.style.display="inline-flex",document.querySelector('.page-title-action[href*="post-new.php"]').after(t),(0,y.createRoot)(t).render((0,n.createElement)(I,null))})})(); \ No newline at end of file +(()=>{"use strict";var t={42:(t,e,r)=>{r.d(e,{A:()=>l});var n=r(168),o=r.n(n),a=r(433),i=r.n(a)()(o());i.push([t.id,".jfb-ai-modal .badge{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:var(--wp-components-color-accent-inverted,#fff);font-size:0.65em;padding:0.2em 0.5em;border-radius:1em}.jfb-ai-modal .components-notice{margin:0 0 2em 0}",""]);const l=i},168:t=>{t.exports=function(t){return t[1]}},262:t=>{var e={};t.exports=function(t,r){var n=function(t){if(void 0===e[t]){var r=document.querySelector(t);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(t){r=null}e[t]=r}return e[t]}(t);if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");n.appendChild(r)}},357:t=>{t.exports=function(t){var e=document.createElement("style");return t.setAttributes(e,t.attributes),t.insert(e,t.options),e}},433:t=>{t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var r="",n=void 0!==e[5];return e[4]&&(r+="@supports (".concat(e[4],") {")),e[2]&&(r+="@media ".concat(e[2]," {")),n&&(r+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),r+=t(e),n&&(r+="}"),e[2]&&(r+="}"),e[4]&&(r+="}"),r})).join("")},e.i=function(t,r,n,o,a){"string"==typeof t&&(t=[[null,t,void 0]]);var i={};if(n)for(var l=0;l0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=a),r&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=r):u[2]=r),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),e.push(u))}},e}},598:t=>{t.exports=function(t){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var e=t.insertStyleElement(t);return{update:function(r){!function(t,e,r){var n="";r.supports&&(n+="@supports (".concat(r.supports,") {")),r.media&&(n+="@media ".concat(r.media," {"));var o=void 0!==r.layer;o&&(n+="@layer".concat(r.layer.length>0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),e.styleTagTransform(n,t,e.options)}(e,t,r)},remove:function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(e)}}}},626:t=>{t.exports=function(t,e){if(e.styleSheet)e.styleSheet.cssText=t;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(t))}}},657:(t,e,r)=>{t.exports=function(t){var e=r.nc;e&&t.setAttribute("nonce",e)}},673:t=>{var e=[];function r(t){for(var r=-1,n=0;n{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.nc=void 0;const n=window.React;var o=r(673),a=r.n(o),i=r(598),l=r.n(i),s=r(262),c=r.n(s),u=r(657),m=r.n(u),d=r(357),p=r.n(d),f=r(626),h=r.n(f),b=r(42),v={};v.styleTagTransform=h(),v.setAttributes=m(),v.insert=c().bind(null,"head"),v.domAPI=l(),v.insertStyleElement=p(),a()(b.A,v),b.A&&b.A.locals&&b.A.locals;const g=window.wp.components,y=window.wp.element,w=window.wp.i18n,E=window.wp.apiFetch;var _=r.n(E);const{parseHTMLtoBlocks:j,getFormInnerFields:x}=JetFormBuilderParser,S=["Registration form with minimum inputs","Opt-in form with gender selector like radio","Quiz form with 5 questions with choices about math"],k=function({setShowModal:t,footer:e=()=>"Here may be buttons"}){const[r,o]=(0,y.useState)(""),[a,i]=(0,y.useState)(""),[l,s]=(0,y.useState)(!1),[c,u]=(0,y.useState)(""),[m,d]=(0,y.useState)(0),[p,f]=(0,y.useState)(0);return(0,n.createElement)(g.Modal,{style:{width:"60vw"},onRequestClose:()=>t(!1),title:(0,n.createElement)(g.Flex,null,(0,w.__)("Generate Form with AI","jet-form-builder"),(0,n.createElement)("span",{className:"badge"},(0,w.__)("Limited 15 requests per month","jet-form-builder"))),className:"jfb-ai-modal"},c&&(0,n.createElement)(g.Notice,{status:"error",onRemove:()=>u("")},(0,n.createElement)(g.Flex,{direction:"column"},c,(0,n.createElement)(g.ExternalLink,{href:"https://support.crocoblock.com/support/home/"},(0,w.__)("Contact Crocoblock support","jet-form-builder")))),Boolean(a.length)?(0,n.createElement)(n.Fragment,null,(0,n.createElement)("div",{className:"jet-form-builder-html-parser-preview"},(0,n.createElement)("style",null,'\n\t\t\t\t\t.jet-form-builder-html-parser-preview {\n\t\t\t\t\t\tpointer-events: none;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview textarea,\n\t\t\t\t\t.jet-form-builder-html-parser-preview input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),\n\t\t\t\t\t.jet-form-builder-html-parser-preview select {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\twidth: 100% !important;\n\t\t\t\t\t\tmax-width: 100% !important;\n\t\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview label {\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\tmargin-bottom:5px;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview br {\n\t\t\t\t\t\tdisplay:none;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview input[type="submit"],\n\t\t\t\t\t.jet-form-builder-html-parser-preview button {\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\tborder: none;\n\t\t\t\t\t\tbackground-color: #0071a1;\n\t\t\t\t\t\tcolor: #fff;\n\t\t\t\t\t\tpadding: 10px 20px;\n\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t}\n\t\t\t\t'),(0,n.createElement)("div",{dangerouslySetInnerHTML:{__html:a},style:{padding:"2em 1em",backgroundColor:"#f6f7f7",marginBottom:"1em"}})),(0,n.createElement)(e,{clearHTML:()=>i(""),formHTML:a,prompt:r},(0,n.createElement)("span",{style:{flex:"1",textAlign:"end",color:"rgb( 117, 117, 117 )"}},(0,w.sprintf)((0,w.__)("Requests used: %d/%d","jet-form-builder"),m,p)))):(0,n.createElement)(n.Fragment,null,(0,n.createElement)(g.TextareaControl,{label:(0,w.__)("Describe the form you want","jet-form-builder"),value:r,onChange:o,help:(0,w.__)("Prompt example: Simple contact form","jet-form-builder")}),Boolean(r.length)&&(0,n.createElement)(g.Button,{variant:"primary",isBusy:l,disabled:l,onClick:()=>{s(!0),_()({path:"/jet-form-builder/v1/ai/generate",method:"POST",data:{prompt:r}}).then((t=>{u(""),i(x(t.form)),console.group((0,w.__)("JFB: Parsed blocks from generated HTML","jet-form-builder")),console.log(j(t.form)),console.groupEnd(),d(t.usage),f(t.limit)})).catch((t=>{var e;u(null!==(e=t?.message)&&void 0!==e?e:(0,w.__)("Undefined error.","jet-form-builder"))})).finally((()=>{s(!1)}))}},(0,w.__)("Generate","jet-form-builder")),(0,n.createElement)("h4",null,(0,w.__)("Tips to write good prompt:","jet-form-builder")),(0,n.createElement)("ul",{style:{listStyle:"disc",paddingInlineStart:"1em"}},(0,n.createElement)("li",null,(0,w.__)("Start with the main purpose of the form.","jet-form-builder")),(0,n.createElement)("li",null,(0,w.__)("If you need specific fields – describe them in the prompt as well.","jet-form-builder")),(0,n.createElement)("li",null,(0,w.__)("It is better to use the English language for the prompt, as AI understands it better than others.","jet-form-builder"))),(0,n.createElement)("h4",null,(0,w.__)("Examples of the good prompts:","jet-form-builder")),(0,n.createElement)("ul",{style:{listStyle:"disc",paddingInlineStart:"1em"}},S.map((t=>(0,n.createElement)("li",{key:t},(0,n.createElement)(g.Button,{onClick:()=>o(t),variant:"link"},t)))))))};function C({name:t,attributes:e}){return`\x3c!-- wp:${t} ${JSON.stringify(e)} /--\x3e`}const T=function(t){return t.map(C).join("\n\n")},{parseHTMLtoBlocks:M}=JetFormBuilderParser,F=function({clearHTML:t,formHTML:e,prompt:r,children:o=null}){return(0,n.createElement)(g.Flex,{justify:"flex-start"},(0,n.createElement)(g.Button,{variant:"primary",onClick:()=>{const t=M(e);t.length?_()({method:"POST",path:"/wp/v2/jet-form-builder",data:{title:r,content:T(t),status:"publish"}}).then((t=>{window.location.href=(t=>{const e=new URL(JetFormBuilderAdmin.edit_url);return e.searchParams.set("post",t),e.href})(t.id)})).catch(console.error):console.error((0,w.__)("JFB: Invalid html","jet-form-builder"),e)}},(0,w.__)("Create form with this template","jet-form-builder")),(0,n.createElement)(g.Button,{variant:"secondary",onClick:t},(0,w.__)("Change generation prompt","jet-form-builder")),o)},I=function(){const[t,e]=(0,y.useState)(!1);return(0,n.createElement)(n.Fragment,null,(0,n.createElement)("a",{href:"#",className:"page-title-action",onClick:t=>{t.preventDefault(),e((t=>!t))}},(0,w.__)("Generate with AI","jet-form-builder")),t&&(0,n.createElement)(k,{setShowModal:e,footer:F}))},A=window.wp.domReady;r.n(A)()((()=>{const t=document.createElement("div");t.style.display="inline-flex",document.querySelector('.page-title-action[href*="post-new.php"]').after(t),(0,y.createRoot)(t).render((0,n.createElement)(I,null))}))})(); \ No newline at end of file diff --git a/modules/ai/assets/build/editor.asset.php b/modules/ai/assets/build/editor.asset.php index 1e9e756c9..7aeff354d 100644 --- a/modules/ai/assets/build/editor.asset.php +++ b/modules/ai/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-api-fetch', 'wp-components', 'wp-data', 'wp-dom-ready', 'wp-element', 'wp-i18n'), 'version' => '393fa013d402da817910'); + array('react', 'wp-api-fetch', 'wp-components', 'wp-data', 'wp-dom-ready', 'wp-element', 'wp-i18n'), 'version' => '3bf4a59978138d70eae5'); diff --git a/modules/ai/assets/build/editor.js b/modules/ai/assets/build/editor.js index 329ad7d07..c1661773e 100644 --- a/modules/ai/assets/build/editor.js +++ b/modules/ai/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={42(e,t,r){r.d(t,{A:()=>l});var n=r(168),o=r.n(n),a=r(433),i=r.n(a)()(o());i.push([e.id,".jfb-ai-modal .badge{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:var(--wp-components-color-accent-inverted,#fff);font-size:0.65em;padding:0.2em 0.5em;border-radius:1em}.jfb-ai-modal .components-notice{margin:0 0 2em 0}",""]);const l=i},433(e){e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r}).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var l=0;l0?" ".concat(m[5]):""," {").concat(m[1],"}")),m[5]=a),r&&(m[2]?(m[1]="@media ".concat(m[2]," {").concat(m[1],"}"),m[2]=r):m[2]=r),o&&(m[4]?(m[1]="@supports (".concat(m[4],") {").concat(m[1],"}"),m[4]=o):m[4]="".concat(o)),t.push(m))}},t}},168(e){e.exports=function(e){return e[1]}},673(e){var t=[];function r(e){for(var r=-1,n=0;n0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(n,e,t.options)}(t,e,r)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},626(e){e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.nc=void 0;const n=window.React;var o=r(673),a=r.n(o),i=r(598),l=r.n(i),c=r(262),s=r.n(c),m=r(657),u=r.n(m),d=r(357),p=r.n(d),f=r(626),h=r.n(f),v=r(42),b={};b.styleTagTransform=h(),b.setAttributes=u(),b.insert=s().bind(null,"head"),b.domAPI=l(),b.insertStyleElement=p(),a()(v.A,b),v.A&&v.A.locals&&v.A.locals;const L=window.wp.components,w=window.wp.element,g=window.wp.i18n,E=window.wp.apiFetch;var y=r.n(E);const{parseHTMLtoBlocks:_,getFormInnerFields:C}=JetFormBuilderParser,j=["Registration form with minimum inputs","Opt-in form with gender selector like radio","Quiz form with 5 questions with choices about math"],k=function({setShowModal:e,footer:t=()=>"Here may be buttons"}){const[r,o]=(0,w.useState)(""),[a,i]=(0,w.useState)(""),[l,c]=(0,w.useState)(!1),[s,m]=(0,w.useState)(""),[u,d]=(0,w.useState)(0),[p,f]=(0,w.useState)(0);return(0,n.createElement)(L.Modal,{style:{width:"60vw"},onRequestClose:()=>e(!1),title:(0,n.createElement)(L.Flex,null,(0,g.__)("Generate Form with AI","jet-form-builder"),(0,n.createElement)("span",{className:"badge"},(0,g.__)("Limited 15 requests per month","jet-form-builder"))),className:"jfb-ai-modal"},s&&(0,n.createElement)(L.Notice,{status:"error",onRemove:()=>m("")},(0,n.createElement)(L.Flex,{direction:"column"},s,(0,n.createElement)(L.ExternalLink,{href:"https://support.crocoblock.com/support/home/"},(0,g.__)("Contact Crocoblock support","jet-form-builder")))),Boolean(a.length)?(0,n.createElement)(n.Fragment,null,(0,n.createElement)("div",{className:"jet-form-builder-html-parser-preview"},(0,n.createElement)("style",null,'\n\t\t\t\t\t.jet-form-builder-html-parser-preview {\n\t\t\t\t\t\tpointer-events: none;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview textarea,\n\t\t\t\t\t.jet-form-builder-html-parser-preview input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),\n\t\t\t\t\t.jet-form-builder-html-parser-preview select {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\twidth: 100% !important;\n\t\t\t\t\t\tmax-width: 100% !important;\n\t\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview label {\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\tmargin-bottom:5px;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview br {\n\t\t\t\t\t\tdisplay:none;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview input[type="submit"],\n\t\t\t\t\t.jet-form-builder-html-parser-preview button {\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\tborder: none;\n\t\t\t\t\t\tbackground-color: #0071a1;\n\t\t\t\t\t\tcolor: #fff;\n\t\t\t\t\t\tpadding: 10px 20px;\n\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t}\n\t\t\t\t'),(0,n.createElement)("div",{dangerouslySetInnerHTML:{__html:a},style:{padding:"2em 1em",backgroundColor:"#f6f7f7",marginBottom:"1em"}})),(0,n.createElement)(t,{clearHTML:()=>i(""),formHTML:a,prompt:r},(0,n.createElement)("span",{style:{flex:"1",textAlign:"end",color:"rgb( 117, 117, 117 )"}},(0,g.sprintf)((0,g.__)("Requests used: %d/%d","jet-form-builder"),u,p)))):(0,n.createElement)(n.Fragment,null,(0,n.createElement)(L.TextareaControl,{label:(0,g.__)("Describe the form you want","jet-form-builder"),value:r,onChange:o,help:(0,g.__)("Prompt example: Simple contact form","jet-form-builder")}),Boolean(r.length)&&(0,n.createElement)(L.Button,{variant:"primary",isBusy:l,disabled:l,onClick:()=>{c(!0),y()({path:"/jet-form-builder/v1/ai/generate",method:"POST",data:{prompt:r}}).then(e=>{m(""),i(C(e.form)),console.group((0,g.__)("JFB: Parsed blocks from generated HTML","jet-form-builder")),console.log(_(e.form)),console.groupEnd(),d(e.usage),f(e.limit)}).catch(e=>{var t;m(null!==(t=e?.message)&&void 0!==t?t:(0,g.__)("Undefined error.","jet-form-builder"))}).finally(()=>{c(!1)})}},(0,g.__)("Generate","jet-form-builder")),(0,n.createElement)("h4",null,(0,g.__)("Tips to write good prompt:","jet-form-builder")),(0,n.createElement)("ul",{style:{listStyle:"disc",paddingInlineStart:"1em"}},(0,n.createElement)("li",null,(0,g.__)("Start with the main purpose of the form.","jet-form-builder")),(0,n.createElement)("li",null,(0,g.__)("If you need specific fields – describe them in the prompt as well.","jet-form-builder")),(0,n.createElement)("li",null,(0,g.__)("It is better to use the English language for the prompt, as AI understands it better than others.","jet-form-builder"))),(0,n.createElement)("h4",null,(0,g.__)("Examples of the good prompts:","jet-form-builder")),(0,n.createElement)("ul",{style:{listStyle:"disc",paddingInlineStart:"1em"}},j.map(e=>(0,n.createElement)("li",{key:e},(0,n.createElement)(L.Button,{onClick:()=>o(e),variant:"link"},e))))))},x=window.jfb.components,{parseHTMLtoBlocks:M}=JetFormBuilderParser,{usePattern:S}=JetFBHooks,T=function({clearHTML:e,formHTML:t,children:r=null}){const{showPopover:o,setShowPopover:a,ref:i,popoverProps:l}=(0,x.useTriggerPopover)(),{insert:c,append:s,blocks:m}=S({name:"ai"});return(0,n.createElement)(L.Flex,{justify:"flex-start"},(0,n.createElement)(L.Button,{ref:i,variant:"primary",onClick:()=>m.length?a(e=>!e):c({blocks:M(t)})},(0,g.__)("Use this form","jet-form-builder")),(0,n.createElement)(L.Button,{variant:"secondary",onClick:e},(0,g.__)("Change generation prompt","jet-form-builder")),o&&(0,n.createElement)(x.PopoverStandard,{position:"top-start",noArrow:!1,...l},(0,n.createElement)("span",null,(0,g.__)("I want to","jet-form-builder"))," ",(0,n.createElement)(L.Button,{isLink:!0,isDestructive:!0,onClick:()=>c({blocks:M(t)})},(0,g.__)("replace","jet-form-builder"))," / ",(0,n.createElement)(L.Button,{isLink:!0,onClick:()=>s({blocks:M(t)})},(0,g.__)("append","jet-form-builder"))," ",(0,n.createElement)("span",null,(0,g.__)("form settings and blocks","jet-form-builder"))),r)},{PatternInserterButton:F}=JetFBComponents,B=window.wp.data,I=window.wp.domReady;var A=r.n(I);const P=document.createElement("div");P.classList.add("jfb-generate-form-ai-wrapper"),(0,w.createRoot)(P).render((0,n.createElement)(function(){const[e,t]=(0,w.useState)(!1);return(0,n.createElement)(n.Fragment,null,(0,n.createElement)(L.Button,{variant:"tertiary",iconSize:"16",icon:(0,n.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 22 22",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,n.createElement)("path",{d:"M7.5 3.6L10 5L8.6 2.5L10 0L7.5 1.4L5 0L6.4 2.5L5 5L7.5 3.6ZM19.5 13.4L17 12L18.4 14.5L17 17L19.5 15.6L22 17L20.6 14.5L22 12L19.5 13.4ZM22 0L19.5 1.4L17 0L18.4 2.5L17 5L19.5 3.6L22 5L20.6 2.5L22 0ZM14.37 5.29C13.98 4.9 13.35 4.9 12.96 5.29L1.29 16.96C0.899998 17.35 0.899998 17.98 1.29 18.37L3.63 20.71C4.02 21.1 4.65 21.1 5.04 20.71L16.7 9.05C17.09 8.66 17.09 8.03 16.7 7.64L14.37 5.29ZM13.34 10.78L11.22 8.66L13.66 6.22L15.78 8.34L13.34 10.78Z",fill:"currentColor"})),onClick:()=>t(e=>!e)},(0,g.__)("Generate Form with AI","jet-form-builder")),e&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(k,{setShowModal:t,footer:T})))},null)),A()(()=>{const e={isAddedTimeout:!1};setTimeout(()=>{const t=(0,B.subscribe)(()=>function(e,t){const r=document.querySelector(".edit-post-header-toolbar");r&&(r.appendChild(P),t.isAddedTimeout||(t.isAddedTimeout=!0,setTimeout(e,500)))}(t,e))})}),(0,B.dispatch)("jet-forms/patterns").register({name:"ai",title:"Generate via AI",view:function({pattern:e}){const[t,r]=(0,w.useState)(!1);return(0,n.createElement)(n.Fragment,null,(0,n.createElement)(L.FlexItem,{className:"block-editor-block-variation-picker__or"},(0,g.__)("or","jet-form-builder")),(0,n.createElement)("li",null,(0,n.createElement)(F,{patternName:"ai",variant:"secondary",withPatternIcon:!0,iconSize:32,className:"block-editor-block-variation-picker__variation",onClick:()=>r(!0)}),(0,n.createElement)("span",{className:"block-editor-block-variation-picker__variation-label"},e.title)),t&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(k,{setShowModal:r,footer:T})))},icon:(0,n.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,n.createElement)("path",{d:"M40 16L36 13.76L32 16L34.24 12L32 8L36 10.24L40 8L37.76 12L40 16Z"}),(0,n.createElement)("path",{d:"M21 18L17 15.76L13 18L15.24 14L13 10L17 12.24L21 10L18.76 14L21 18Z"}),(0,n.createElement)("path",{d:"M34.32 30L36 27L33 28.68L30 27L31.68 30L30 33L33 31.32L36 33L34.32 30Z"}),(0,n.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.59073 33.7046C7.80309 34.4923 7.80309 35.7693 8.59073 36.5569L11.4431 39.4093C12.2307 40.1969 13.5077 40.1969 14.2954 39.4093L31.4093 22.2954C32.1969 21.5077 32.1969 20.2307 31.4093 19.4431L28.5569 16.5907C27.7693 15.8031 26.4923 15.8031 25.7046 16.5907L8.59073 33.7046ZM22.8548 22.269L10.0049 35.1188L10.002 35.1221L10.0013 35.123C10.0011 35.1236 10 35.1266 10 35.1308C10 35.1332 10.0003 35.135 10.0005 35.1363L10.0011 35.1382C10.0012 35.1383 10.0023 35.1401 10.0049 35.1427L12.8573 37.9951C12.8581 37.9959 12.8588 37.9966 12.8594 37.9971C12.8599 37.9975 12.8603 37.9978 12.8606 37.9981L12.8614 37.9987C12.862 37.9989 12.865 38 12.8692 38C12.8716 38 12.8735 37.9997 12.8748 37.9994C12.8757 37.9992 12.8763 37.999 12.8766 37.9989C12.8767 37.9988 12.8785 37.9977 12.8812 37.9951L25.731 25.1452L22.8548 22.269ZM24.269 20.8548L27.1452 23.731L29.9951 20.8812L29.9978 20.8781L29.9987 20.877L29.9995 20.8743C29.9998 20.8731 30 20.8713 30 20.8692C30 20.8674 29.9998 20.8659 29.9996 20.8647C29.9994 20.8631 29.999 20.8622 29.9989 20.8618C29.9988 20.8617 29.9977 20.8599 29.9951 20.8573L27.1427 18.0049C27.1401 18.0023 27.1387 18.0014 27.1386 18.0013C27.1384 18.0012 27.1375 18.0009 27.1369 18.0007C27.1356 18.0004 27.1336 18 27.1308 18C27.1266 18 27.124 18.0009 27.1234 18.0011C27.1233 18.0012 27.1215 18.0023 27.1188 18.0049L24.269 20.8548Z"}))})})(); \ No newline at end of file +(()=>{"use strict";var e={42:(e,t,r)=>{r.d(t,{A:()=>l});var n=r(168),o=r.n(n),a=r(433),i=r.n(a)()(o());i.push([e.id,".jfb-ai-modal .badge{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:var(--wp-components-color-accent-inverted,#fff);font-size:0.65em;padding:0.2em 0.5em;border-radius:1em}.jfb-ai-modal .components-notice{margin:0 0 2em 0}",""]);const l=i},168:e=>{e.exports=function(e){return e[1]}},262:e=>{var t={};e.exports=function(e,r){var n=function(e){if(void 0===t[e]){var r=document.querySelector(e);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(e){r=null}t[e]=r}return t[e]}(e);if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");n.appendChild(r)}},357:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},433:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r})).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var l=0;l0?" ".concat(m[5]):""," {").concat(m[1],"}")),m[5]=a),r&&(m[2]?(m[1]="@media ".concat(m[2]," {").concat(m[1],"}"),m[2]=r):m[2]=r),o&&(m[4]?(m[1]="@supports (".concat(m[4],") {").concat(m[1],"}"),m[4]=o):m[4]="".concat(o)),t.push(m))}},t}},598:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(r){!function(e,t,r){var n="";r.supports&&(n+="@supports (".concat(r.supports,") {")),r.media&&(n+="@media ".concat(r.media," {"));var o=void 0!==r.layer;o&&(n+="@layer".concat(r.layer.length>0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(n,e,t.options)}(t,e,r)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},626:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},657:(e,t,r)=>{e.exports=function(e){var t=r.nc;t&&e.setAttribute("nonce",t)}},673:e=>{var t=[];function r(e){for(var r=-1,n=0;n{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.nc=void 0;const n=window.React;var o=r(673),a=r.n(o),i=r(598),l=r.n(i),c=r(262),s=r.n(c),m=r(657),u=r.n(m),d=r(357),p=r.n(d),f=r(626),h=r.n(f),v=r(42),b={};b.styleTagTransform=h(),b.setAttributes=u(),b.insert=s().bind(null,"head"),b.domAPI=l(),b.insertStyleElement=p(),a()(v.A,b),v.A&&v.A.locals&&v.A.locals;const L=window.wp.components,w=window.wp.element,g=window.wp.i18n,E=window.wp.apiFetch;var y=r.n(E);const{parseHTMLtoBlocks:_,getFormInnerFields:C}=JetFormBuilderParser,j=["Registration form with minimum inputs","Opt-in form with gender selector like radio","Quiz form with 5 questions with choices about math"],k=function({setShowModal:e,footer:t=()=>"Here may be buttons"}){const[r,o]=(0,w.useState)(""),[a,i]=(0,w.useState)(""),[l,c]=(0,w.useState)(!1),[s,m]=(0,w.useState)(""),[u,d]=(0,w.useState)(0),[p,f]=(0,w.useState)(0);return(0,n.createElement)(L.Modal,{style:{width:"60vw"},onRequestClose:()=>e(!1),title:(0,n.createElement)(L.Flex,null,(0,g.__)("Generate Form with AI","jet-form-builder"),(0,n.createElement)("span",{className:"badge"},(0,g.__)("Limited 15 requests per month","jet-form-builder"))),className:"jfb-ai-modal"},s&&(0,n.createElement)(L.Notice,{status:"error",onRemove:()=>m("")},(0,n.createElement)(L.Flex,{direction:"column"},s,(0,n.createElement)(L.ExternalLink,{href:"https://support.crocoblock.com/support/home/"},(0,g.__)("Contact Crocoblock support","jet-form-builder")))),Boolean(a.length)?(0,n.createElement)(n.Fragment,null,(0,n.createElement)("div",{className:"jet-form-builder-html-parser-preview"},(0,n.createElement)("style",null,'\n\t\t\t\t\t.jet-form-builder-html-parser-preview {\n\t\t\t\t\t\tpointer-events: none;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview textarea,\n\t\t\t\t\t.jet-form-builder-html-parser-preview input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),\n\t\t\t\t\t.jet-form-builder-html-parser-preview select {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\twidth: 100% !important;\n\t\t\t\t\t\tmax-width: 100% !important;\n\t\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview label {\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\tmargin-bottom:5px;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview br {\n\t\t\t\t\t\tdisplay:none;\n\t\t\t\t\t}\n\t\t\t\t\t.jet-form-builder-html-parser-preview input[type="submit"],\n\t\t\t\t\t.jet-form-builder-html-parser-preview button {\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\tborder: none;\n\t\t\t\t\t\tbackground-color: #0071a1;\n\t\t\t\t\t\tcolor: #fff;\n\t\t\t\t\t\tpadding: 10px 20px;\n\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t}\n\t\t\t\t'),(0,n.createElement)("div",{dangerouslySetInnerHTML:{__html:a},style:{padding:"2em 1em",backgroundColor:"#f6f7f7",marginBottom:"1em"}})),(0,n.createElement)(t,{clearHTML:()=>i(""),formHTML:a,prompt:r},(0,n.createElement)("span",{style:{flex:"1",textAlign:"end",color:"rgb( 117, 117, 117 )"}},(0,g.sprintf)((0,g.__)("Requests used: %d/%d","jet-form-builder"),u,p)))):(0,n.createElement)(n.Fragment,null,(0,n.createElement)(L.TextareaControl,{label:(0,g.__)("Describe the form you want","jet-form-builder"),value:r,onChange:o,help:(0,g.__)("Prompt example: Simple contact form","jet-form-builder")}),Boolean(r.length)&&(0,n.createElement)(L.Button,{variant:"primary",isBusy:l,disabled:l,onClick:()=>{c(!0),y()({path:"/jet-form-builder/v1/ai/generate",method:"POST",data:{prompt:r}}).then((e=>{m(""),i(C(e.form)),console.group((0,g.__)("JFB: Parsed blocks from generated HTML","jet-form-builder")),console.log(_(e.form)),console.groupEnd(),d(e.usage),f(e.limit)})).catch((e=>{var t;m(null!==(t=e?.message)&&void 0!==t?t:(0,g.__)("Undefined error.","jet-form-builder"))})).finally((()=>{c(!1)}))}},(0,g.__)("Generate","jet-form-builder")),(0,n.createElement)("h4",null,(0,g.__)("Tips to write good prompt:","jet-form-builder")),(0,n.createElement)("ul",{style:{listStyle:"disc",paddingInlineStart:"1em"}},(0,n.createElement)("li",null,(0,g.__)("Start with the main purpose of the form.","jet-form-builder")),(0,n.createElement)("li",null,(0,g.__)("If you need specific fields – describe them in the prompt as well.","jet-form-builder")),(0,n.createElement)("li",null,(0,g.__)("It is better to use the English language for the prompt, as AI understands it better than others.","jet-form-builder"))),(0,n.createElement)("h4",null,(0,g.__)("Examples of the good prompts:","jet-form-builder")),(0,n.createElement)("ul",{style:{listStyle:"disc",paddingInlineStart:"1em"}},j.map((e=>(0,n.createElement)("li",{key:e},(0,n.createElement)(L.Button,{onClick:()=>o(e),variant:"link"},e)))))))},x=window.jfb.components,{parseHTMLtoBlocks:M}=JetFormBuilderParser,{usePattern:S}=JetFBHooks,T=function({clearHTML:e,formHTML:t,children:r=null}){const{showPopover:o,setShowPopover:a,ref:i,popoverProps:l}=(0,x.useTriggerPopover)(),{insert:c,append:s,blocks:m}=S({name:"ai"});return(0,n.createElement)(L.Flex,{justify:"flex-start"},(0,n.createElement)(L.Button,{ref:i,variant:"primary",onClick:()=>m.length?a((e=>!e)):c({blocks:M(t)})},(0,g.__)("Use this form","jet-form-builder")),(0,n.createElement)(L.Button,{variant:"secondary",onClick:e},(0,g.__)("Change generation prompt","jet-form-builder")),o&&(0,n.createElement)(x.PopoverStandard,{position:"top-start",noArrow:!1,...l},(0,n.createElement)("span",null,(0,g.__)("I want to","jet-form-builder"))," ",(0,n.createElement)(L.Button,{isLink:!0,isDestructive:!0,onClick:()=>c({blocks:M(t)})},(0,g.__)("replace","jet-form-builder"))," / ",(0,n.createElement)(L.Button,{isLink:!0,onClick:()=>s({blocks:M(t)})},(0,g.__)("append","jet-form-builder"))," ",(0,n.createElement)("span",null,(0,g.__)("form settings and blocks","jet-form-builder"))),r)},{PatternInserterButton:F}=JetFBComponents,B=window.wp.data,I=window.wp.domReady;var A=r.n(I);const P=document.createElement("div");P.classList.add("jfb-generate-form-ai-wrapper"),(0,w.createRoot)(P).render((0,n.createElement)((function(){const[e,t]=(0,w.useState)(!1);return(0,n.createElement)(n.Fragment,null,(0,n.createElement)(L.Button,{variant:"tertiary",iconSize:"16",icon:(0,n.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 22 22",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,n.createElement)("path",{d:"M7.5 3.6L10 5L8.6 2.5L10 0L7.5 1.4L5 0L6.4 2.5L5 5L7.5 3.6ZM19.5 13.4L17 12L18.4 14.5L17 17L19.5 15.6L22 17L20.6 14.5L22 12L19.5 13.4ZM22 0L19.5 1.4L17 0L18.4 2.5L17 5L19.5 3.6L22 5L20.6 2.5L22 0ZM14.37 5.29C13.98 4.9 13.35 4.9 12.96 5.29L1.29 16.96C0.899998 17.35 0.899998 17.98 1.29 18.37L3.63 20.71C4.02 21.1 4.65 21.1 5.04 20.71L16.7 9.05C17.09 8.66 17.09 8.03 16.7 7.64L14.37 5.29ZM13.34 10.78L11.22 8.66L13.66 6.22L15.78 8.34L13.34 10.78Z",fill:"currentColor"})),onClick:()=>t((e=>!e))},(0,g.__)("Generate Form with AI","jet-form-builder")),e&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(k,{setShowModal:t,footer:T})))}),null)),A()((()=>{const e={isAddedTimeout:!1};setTimeout((()=>{const t=(0,B.subscribe)((()=>function(e,t){const r=document.querySelector(".edit-post-header-toolbar");r&&(r.appendChild(P),t.isAddedTimeout||(t.isAddedTimeout=!0,setTimeout(e,500)))}(t,e)))}))})),(0,B.dispatch)("jet-forms/patterns").register({name:"ai",title:"Generate via AI",view:function({pattern:e}){const[t,r]=(0,w.useState)(!1);return(0,n.createElement)(n.Fragment,null,(0,n.createElement)(L.FlexItem,{className:"block-editor-block-variation-picker__or"},(0,g.__)("or","jet-form-builder")),(0,n.createElement)("li",null,(0,n.createElement)(F,{patternName:"ai",variant:"secondary",withPatternIcon:!0,iconSize:32,className:"block-editor-block-variation-picker__variation",onClick:()=>r(!0)}),(0,n.createElement)("span",{className:"block-editor-block-variation-picker__variation-label"},e.title)),t&&(0,n.createElement)(n.Fragment,null,(0,n.createElement)(k,{setShowModal:r,footer:T})))},icon:(0,n.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,n.createElement)("path",{d:"M40 16L36 13.76L32 16L34.24 12L32 8L36 10.24L40 8L37.76 12L40 16Z"}),(0,n.createElement)("path",{d:"M21 18L17 15.76L13 18L15.24 14L13 10L17 12.24L21 10L18.76 14L21 18Z"}),(0,n.createElement)("path",{d:"M34.32 30L36 27L33 28.68L30 27L31.68 30L30 33L33 31.32L36 33L34.32 30Z"}),(0,n.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.59073 33.7046C7.80309 34.4923 7.80309 35.7693 8.59073 36.5569L11.4431 39.4093C12.2307 40.1969 13.5077 40.1969 14.2954 39.4093L31.4093 22.2954C32.1969 21.5077 32.1969 20.2307 31.4093 19.4431L28.5569 16.5907C27.7693 15.8031 26.4923 15.8031 25.7046 16.5907L8.59073 33.7046ZM22.8548 22.269L10.0049 35.1188L10.002 35.1221L10.0013 35.123C10.0011 35.1236 10 35.1266 10 35.1308C10 35.1332 10.0003 35.135 10.0005 35.1363L10.0011 35.1382C10.0012 35.1383 10.0023 35.1401 10.0049 35.1427L12.8573 37.9951C12.8581 37.9959 12.8588 37.9966 12.8594 37.9971C12.8599 37.9975 12.8603 37.9978 12.8606 37.9981L12.8614 37.9987C12.862 37.9989 12.865 38 12.8692 38C12.8716 38 12.8735 37.9997 12.8748 37.9994C12.8757 37.9992 12.8763 37.999 12.8766 37.9989C12.8767 37.9988 12.8785 37.9977 12.8812 37.9951L25.731 25.1452L22.8548 22.269ZM24.269 20.8548L27.1452 23.731L29.9951 20.8812L29.9978 20.8781L29.9987 20.877L29.9995 20.8743C29.9998 20.8731 30 20.8713 30 20.8692C30 20.8674 29.9998 20.8659 29.9996 20.8647C29.9994 20.8631 29.999 20.8622 29.9989 20.8618C29.9988 20.8617 29.9977 20.8599 29.9951 20.8573L27.1427 18.0049C27.1401 18.0023 27.1387 18.0014 27.1386 18.0013C27.1384 18.0012 27.1375 18.0009 27.1369 18.0007C27.1356 18.0004 27.1336 18 27.1308 18C27.1266 18 27.124 18.0009 27.1234 18.0011C27.1233 18.0012 27.1215 18.0023 27.1188 18.0049L24.269 20.8548Z"}))})})(); \ No newline at end of file diff --git a/modules/blocks-v2/actions-integration/assets/build/editor.asset.php b/modules/blocks-v2/actions-integration/assets/build/editor.asset.php index 4a6526362..cb4cbc49a 100644 --- a/modules/blocks-v2/actions-integration/assets/build/editor.asset.php +++ b/modules/blocks-v2/actions-integration/assets/build/editor.asset.php @@ -1 +1 @@ - array('wp-block-editor', 'wp-data', 'wp-element'), 'version' => '67a405011a841544598c'); + array('wp-block-editor', 'wp-data', 'wp-element'), 'version' => 'fd06b66b33df62721404'); diff --git a/modules/blocks-v2/actions-integration/assets/build/editor.js b/modules/blocks-v2/actions-integration/assets/build/editor.js index 2b8cc3b09..71989e209 100644 --- a/modules/blocks-v2/actions-integration/assets/build/editor.js +++ b/modules/blocks-v2/actions-integration/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={d:(o,t)=>{for(var n in t)e.o(t,n)&&!e.o(o,n)&&Object.defineProperty(o,n,{enumerable:!0,get:t[n]})},o:(e,o)=>Object.prototype.hasOwnProperty.call(e,o),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},o={};e.r(o),e.d(o,{useFields:()=>l,useSanitizeFieldsMap:()=>u});const t=window.wp.data,n=window.wp.blockEditor,i=window.jfb.actions;var d;function s(e={}){const o=(0,n.useBlockEditContext)(),d=(0,i.useRequestFields)();e.excludeCurrent&&o?.clientId?.length&&(e.currentId=o.clientId);const s=(0,t.useSelect)(o=>o("jet-forms/fields").getFields(e),[]);return e.placeholder?[{value:"",label:e.placeholder},...s,...d]:[...s,...d]}window.JetFBHooks=null!==(d=window.JetFBHooks)&&void 0!==d?d:{},window.JetFBHooks.useFields=s;const l=s,r=window.wp.element;var c;function w(e="fields_map"){const o=l(),{settings:t,onChangeSettingObj:n}=(0,r.useContext)(i.CurrentActionEditContext);(0,r.useEffect)(()=>{if(!t.hasOwnProperty(e))return;const i=t[e],d=e=>-1!==o.findIndex(o=>o.value===e);for(const e in i)i.hasOwnProperty(e)&&(d(e)||delete i[e]);n({[e]:i})},[e])}window.JetFBHooks=null!==(c=window.JetFBHooks)&&void 0!==c?c:{},window.JetFBHooks.useSanitizeFieldsMap=w;const u=w;(window.jfb=window.jfb||{}).blocksToActions=o})(); \ No newline at end of file +(()=>{"use strict";var e={d:(o,t)=>{for(var n in t)e.o(t,n)&&!e.o(o,n)&&Object.defineProperty(o,n,{enumerable:!0,get:t[n]})},o:(e,o)=>Object.prototype.hasOwnProperty.call(e,o),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},o={};e.r(o),e.d(o,{useFields:()=>l,useSanitizeFieldsMap:()=>u});const t=window.wp.data,n=window.wp.blockEditor,i=window.jfb.actions;var d;function s(e={}){const o=(0,n.useBlockEditContext)(),d=(0,i.useRequestFields)();e.excludeCurrent&&o?.clientId?.length&&(e.currentId=o.clientId);const s=(0,t.useSelect)((o=>o("jet-forms/fields").getFields(e)),[]);return e.placeholder?[{value:"",label:e.placeholder},...s,...d]:[...s,...d]}window.JetFBHooks=null!==(d=window.JetFBHooks)&&void 0!==d?d:{},window.JetFBHooks.useFields=s;const l=s,r=window.wp.element;var c;function w(e="fields_map"){const o=l(),{settings:t,onChangeSettingObj:n}=(0,r.useContext)(i.CurrentActionEditContext);(0,r.useEffect)((()=>{if(!t.hasOwnProperty(e))return;const i=t[e],d=e=>-1!==o.findIndex((o=>o.value===e));for(const e in i)i.hasOwnProperty(e)&&(d(e)||delete i[e]);n({[e]:i})}),[e])}window.JetFBHooks=null!==(c=window.JetFBHooks)&&void 0!==c?c:{},window.JetFBHooks.useSanitizeFieldsMap=w;const u=w;(window.jfb=window.jfb||{}).blocksToActions=o})(); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/editor/index.asset.php b/modules/blocks-v2/phone-field/assets/build/editor/index.asset.php index 3f254e2fb..579aed62d 100644 --- a/modules/blocks-v2/phone-field/assets/build/editor/index.asset.php +++ b/modules/blocks-v2/phone-field/assets/build/editor/index.asset.php @@ -1 +1 @@ - array('react', 'wp-block-editor', 'wp-components', 'wp-hooks', 'wp-i18n'), 'version' => 'fdda3cb08621f4cb8256'); + array('react', 'wp-block-editor', 'wp-components', 'wp-hooks', 'wp-i18n'), 'version' => 'ef9883f2a6b0cac8c2d9'); diff --git a/modules/blocks-v2/phone-field/assets/build/editor/index.js b/modules/blocks-v2/phone-field/assets/build/editor/index.js index 0366dd04a..fdcf09f80 100644 --- a/modules/blocks-v2/phone-field/assets/build/editor/index.js +++ b/modules/blocks-v2/phone-field/assets/build/editor/index.js @@ -1 +1 @@ -(()=>{"use strict";var e={d:(t,l)=>{for(var r in l)e.o(l,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:l[r]})}};e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),e.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var t;e.g.importScripts&&(t=e.g.location+"");var l=e.g.document;if(!t&&l&&(l.currentScript&&"SCRIPT"===l.currentScript.tagName.toUpperCase()&&(t=l.currentScript.src),!t)){var r=l.getElementsByTagName("script");if(r.length)for(var a=r.length-1;a>-1&&(!t||!/^http(s?):/.test(t));)t=r[a--].src}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"})();var t={};e.r(t),e.d(t,{metadata:()=>b,name:()=>g,settings:()=>h});const l=window.React,r=window.wp.i18n,a=window.wp.components,n=window.wp.blockEditor,o=e.p+"images/globe@2x.webp";function i({separateDialCode:e=!0,separateDialCodeClass:t="separate-dial-code",dialCode:a="+1",placeholder:n="201-231-2312",value:o="",globeIcon:i}){return(0,l.createElement)("div",null,(0,l.createElement)("div",{className:`jet-form-builder__field-wrap phone-field-wrap phone-field-preview ${e?t:""}`},(0,l.createElement)("div",{className:"iti iti--allow-dropdown iti--show-flags iti--inline-dropdown"},(0,l.createElement)("div",{className:"iti__country-container","aria-hidden":"true"},(0,l.createElement)("div",{className:"iti__selected-country"},(0,l.createElement)("div",{className:"iti__selected-country-primary"},(0,l.createElement)("div",{className:"iti__flag iti__globe",style:{backgroundImage:i?`url(${i})`:"none"}}),(0,l.createElement)("div",{className:"iti__arrow"})),e&&(0,l.createElement)("div",{className:"iti__selected-dial-code"},a))),(0,l.createElement)("input",{type:"tel",className:"jet-form-builder__field phone-field-intl iti__tel-input",disabled:!0,readOnly:!0,value:o,placeholder:n.length>0?n:"201-231-2312",onChange:()=>{},"aria-label":(0,r.__)("Phone number","jet-form-builder")}))))}const{ToolBarFields:d,BlockName:s,BlockLabel:u,BlockDescription:c,AdvancedFields:p,FieldWrapper:m,BlockAdvancedValue:f}=JetFBComponents,{useUniqueNameOnDuplicate:_}=JetFBHooks,b=JSON.parse('{"$schema":"https://raw.githubusercontent.com/WordPress/gutenberg/trunk/schemas/json/block.json","apiVersion":3,"name":"jet-forms/phone-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","phone","international","telephone"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Phone Field","icon":"","attributes":{"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"value":{"type":"object","default":{"groups":[]}},"required":{"type":"boolean","default":false},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"default_country":{"type":"string","default":"auto"},"preferred_countries":{"type":"string","default":""},"only_countries":{"type":"string","default":""},"exclude_countries":{"type":"string","default":""},"separate_dial_code":{"type":"boolean","default":false},"save_format":{"type":"string","default":"e164","enum":["e164","national","international"]},"ipinfo_token":{"type":"string","default":""},"use_global":{"type":"boolean","default":false},"isPreview":{"type":"boolean","default":false},"validation_message_required":{"type":"string","default":"Required field is empty"},"validation_message_invalid":{"type":"string","default":"Please enter a valid phone number"}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-blocks-v2-phone-field","viewStyle":"jet-fb-blocks-v2-phone-field"}'),{name:g,icon:C=""}=b,h={icon:(0,l.createElement)("span",{dangerouslySetInnerHTML:{__html:C}}),description:"Add an international phone number input field with country flags, dial codes, and validation.",edit:function(e){const{attributes:t,setAttributes:b,isSelected:g,editProps:{uniqKey:C,attrHelp:h}}=e,y=(0,n.useBlockProps)();return _(),[(0,l.createElement)(d,{key:C("ToolBarFields"),...e}),g&&(0,l.createElement)(n.InspectorControls,{key:C("InspectorControls")},(0,l.createElement)(a.PanelBody,{title:(0,r.__)("General","jet-form-builder")},(0,l.createElement)(u,null),(0,l.createElement)(s,null),(0,l.createElement)(c,null)),(0,l.createElement)(a.PanelBody,{title:(0,r.__)("Value","jet-form-builder")},(0,l.createElement)(f,null)),(0,l.createElement)(a.PanelBody,{title:(0,r.__)("Field","jet-form-builder"),initialOpen:!1},(0,l.createElement)(a.TextControl,{label:(0,r.__)("Default Country","jet-form-builder"),value:t.default_country,onChange:e=>b({default_country:e}),help:(0,r.__)('ISO country code (e.g., "US", "UA") or "auto" for IP detection.',"jet-form-builder")}),(0,l.createElement)(a.BaseControl,{id:C("preferredCountries"),label:(0,r.__)("Preferred Countries","jet-form-builder"),help:(0,r.__)('Comma-separated country codes (e.g., "US, GB, UA").',"jet-form-builder")},(0,l.createElement)(a.TextControl,{value:t.preferred_countries,onChange:e=>{b({preferred_countries:e})},placeholder:"US, GB, UA"})),(0,l.createElement)(a.BaseControl,{id:C("onlyCountries"),label:(0,r.__)("Only Countries","jet-form-builder"),help:(0,r.__)('Show only these countries (e.g., "US, CA, MX").',"jet-form-builder")},(0,l.createElement)(a.TextControl,{value:t.only_countries,onChange:e=>{b({only_countries:e})},placeholder:"US, CA, MX"})),t.only_countries.length<=0&&(0,l.createElement)(a.BaseControl,{id:C("excludeCountries"),label:(0,r.__)("Exclude Countries","jet-form-builder"),help:(0,r.__)('Exclude these countries (e.g., "US, BY")',"jet-form-builder")},(0,l.createElement)(a.TextControl,{value:t.exclude_countries,onChange:e=>{b({exclude_countries:e})},placeholder:"US, BY"})),(0,l.createElement)(a.ToggleControl,{label:(0,r.__)("Separate Dial Code","jet-form-builder"),checked:t.separate_dial_code,onChange:()=>b({separate_dial_code:!t.separate_dial_code}),help:(0,r.__)("Display the selected country's international dial code next to the input, so it looks like it's part of the typed number.","jet-form-builder")}),(0,l.createElement)(a.SelectControl,{label:(0,r.__)("Save Format","jet-form-builder"),value:t.save_format,options:[{label:(0,r.__)("E.164","jet-form-builder"),value:"e164"},{label:(0,r.__)("International","jet-form-builder"),value:"international"}],onChange:e=>b({save_format:e}),help:(0,r.__)("Save format: E.164 (+12015553333) or International (+1 201-555-3333).","jet-form-builder")})),(0,l.createElement)(a.PanelBody,{title:(0,r.__)("Additional Settings","jet-form-builder"),initialOpen:!1},(0,l.createElement)(a.ToggleControl,{label:(0,r.__)("Use Global ipinfo.io Token","jet-form-builder"),checked:t.use_global,onChange:()=>b({use_global:!t.use_global}),help:(0,l.createElement)(l.Fragment,null,(0,r.__)("Use","jet-form-builder")+" ",(0,l.createElement)("a",{href:window.JetFormEditorData?.global_settings_url+"#phone-field-tab",target:"_blank",rel:"noopener noreferrer"},(0,r.__)("Global Settings","jet-form-builder")))}),!t.use_global&&(0,l.createElement)(a.TextControl,{label:(0,r.__)("ipinfo.io API Token","jet-form-builder"),value:t.ipinfo_token,onChange:e=>b({ipinfo_token:e}),help:(0,r.__)("Optional: API token for IP-based country detection (50k free requests/month)","jet-form-builder")})),(0,l.createElement)(a.PanelBody,{title:(0,r.__)("Validation Messages","jet-form-builder"),initialOpen:!1},(0,l.createElement)(a.TextControl,{label:(0,r.__)("Required Field Message","jet-form-builder"),value:t.validation_message_required,onChange:e=>b({validation_message_required:e}),placeholder:(0,r.__)("Required field is empty","jet-form-builder")}),(0,l.createElement)(a.TextControl,{label:(0,r.__)("Invalid Phone Message","jet-form-builder"),value:t.validation_message_invalid,onChange:e=>b({validation_message_invalid:e}),placeholder:(0,r.__)("Please enter a valid phone number","jet-form-builder")})),(0,l.createElement)(p,{...e})),(0,l.createElement)("div",{...y,key:C("viewBlock")},(0,l.createElement)(m,{key:C("FieldWrapper"),...e},(0,l.createElement)(i,{separateDialCode:t.separate_dial_code,globeIcon:o,placeholder:t.default})))]},jfbResolveBlock(){const e={clientId:this.clientId,name:this.name};return this.attributes.name?{...e,fields:[{value:this.attributes.name,name:this.attributes.name,label:this.attributes.label||this.attributes.name}]}:e},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}}};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/phone-field",function(e){return e.push(t),e})})(); \ No newline at end of file +(()=>{"use strict";var e={d:(t,l)=>{for(var r in l)e.o(l,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:l[r]})}};e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),e.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var t;e.g.importScripts&&(t=e.g.location+"");var l=e.g.document;if(!t&&l&&(l.currentScript&&"SCRIPT"===l.currentScript.tagName.toUpperCase()&&(t=l.currentScript.src),!t)){var r=l.getElementsByTagName("script");if(r.length)for(var a=r.length-1;a>-1&&(!t||!/^http(s?):/.test(t));)t=r[a--].src}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e.p=t+"../"})();var t={};e.r(t),e.d(t,{metadata:()=>b,name:()=>g,settings:()=>h});const l=window.React,r=window.wp.i18n,a=window.wp.components,n=window.wp.blockEditor,o=e.p+"images/globe@2x.webp";function i({separateDialCode:e=!0,separateDialCodeClass:t="separate-dial-code",dialCode:a="+1",placeholder:n="201-231-2312",value:o="",globeIcon:i}){return(0,l.createElement)("div",null,(0,l.createElement)("div",{className:`jet-form-builder__field-wrap phone-field-wrap phone-field-preview ${e?t:""}`},(0,l.createElement)("div",{className:"iti iti--allow-dropdown iti--show-flags iti--inline-dropdown"},(0,l.createElement)("div",{className:"iti__country-container","aria-hidden":"true"},(0,l.createElement)("div",{className:"iti__selected-country"},(0,l.createElement)("div",{className:"iti__selected-country-primary"},(0,l.createElement)("div",{className:"iti__flag iti__globe",style:{backgroundImage:i?`url(${i})`:"none"}}),(0,l.createElement)("div",{className:"iti__arrow"})),e&&(0,l.createElement)("div",{className:"iti__selected-dial-code"},a))),(0,l.createElement)("input",{type:"tel",className:"jet-form-builder__field phone-field-intl iti__tel-input",disabled:!0,readOnly:!0,value:o,placeholder:n.length>0?n:"201-231-2312",onChange:()=>{},"aria-label":(0,r.__)("Phone number","jet-form-builder")}))))}const{ToolBarFields:d,BlockName:s,BlockLabel:u,BlockDescription:c,AdvancedFields:p,FieldWrapper:m,BlockAdvancedValue:f}=JetFBComponents,{useUniqueNameOnDuplicate:_}=JetFBHooks,b=JSON.parse('{"$schema":"https://raw.githubusercontent.com/WordPress/gutenberg/trunk/schemas/json/block.json","apiVersion":3,"name":"jet-forms/phone-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","phone","international","telephone"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Phone Field","icon":"","attributes":{"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"value":{"type":"object","default":{"groups":[]}},"required":{"type":"boolean","default":false},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"default_country":{"type":"string","default":"auto"},"preferred_countries":{"type":"string","default":""},"only_countries":{"type":"string","default":""},"exclude_countries":{"type":"string","default":""},"separate_dial_code":{"type":"boolean","default":false},"save_format":{"type":"string","default":"e164","enum":["e164","national","international"]},"ipinfo_token":{"type":"string","default":""},"use_global":{"type":"boolean","default":false},"isPreview":{"type":"boolean","default":false},"validation_message_required":{"type":"string","default":"Required field is empty"},"validation_message_invalid":{"type":"string","default":"Please enter a valid phone number"}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-blocks-v2-phone-field","viewStyle":"jet-fb-blocks-v2-phone-field"}'),{name:g,icon:C=""}=b,h={icon:(0,l.createElement)("span",{dangerouslySetInnerHTML:{__html:C}}),description:"Add an international phone number input field with country flags, dial codes, and validation.",edit:function(e){const{attributes:t,setAttributes:b,isSelected:g,editProps:{uniqKey:C,attrHelp:h}}=e,y=(0,n.useBlockProps)();return _(),[(0,l.createElement)(d,{key:C("ToolBarFields"),...e}),g&&(0,l.createElement)(n.InspectorControls,{key:C("InspectorControls")},(0,l.createElement)(a.PanelBody,{title:(0,r.__)("General","jet-form-builder")},(0,l.createElement)(u,null),(0,l.createElement)(s,null),(0,l.createElement)(c,null)),(0,l.createElement)(a.PanelBody,{title:(0,r.__)("Value","jet-form-builder")},(0,l.createElement)(f,null)),(0,l.createElement)(a.PanelBody,{title:(0,r.__)("Field","jet-form-builder"),initialOpen:!1},(0,l.createElement)(a.TextControl,{label:(0,r.__)("Default Country","jet-form-builder"),value:t.default_country,onChange:e=>b({default_country:e}),help:(0,r.__)('ISO country code (e.g., "US", "UA") or "auto" for IP detection.',"jet-form-builder")}),(0,l.createElement)(a.BaseControl,{id:C("preferredCountries"),label:(0,r.__)("Preferred Countries","jet-form-builder"),help:(0,r.__)('Comma-separated country codes (e.g., "US, GB, UA").',"jet-form-builder")},(0,l.createElement)(a.TextControl,{value:t.preferred_countries,onChange:e=>{b({preferred_countries:e})},placeholder:"US, GB, UA"})),(0,l.createElement)(a.BaseControl,{id:C("onlyCountries"),label:(0,r.__)("Only Countries","jet-form-builder"),help:(0,r.__)('Show only these countries (e.g., "US, CA, MX").',"jet-form-builder")},(0,l.createElement)(a.TextControl,{value:t.only_countries,onChange:e=>{b({only_countries:e})},placeholder:"US, CA, MX"})),t.only_countries.length<=0&&(0,l.createElement)(a.BaseControl,{id:C("excludeCountries"),label:(0,r.__)("Exclude Countries","jet-form-builder"),help:(0,r.__)('Exclude these countries (e.g., "US, BY")',"jet-form-builder")},(0,l.createElement)(a.TextControl,{value:t.exclude_countries,onChange:e=>{b({exclude_countries:e})},placeholder:"US, BY"})),(0,l.createElement)(a.ToggleControl,{label:(0,r.__)("Separate Dial Code","jet-form-builder"),checked:t.separate_dial_code,onChange:()=>b({separate_dial_code:!t.separate_dial_code}),help:(0,r.__)("Display the selected country's international dial code next to the input, so it looks like it's part of the typed number.","jet-form-builder")}),(0,l.createElement)(a.SelectControl,{label:(0,r.__)("Save Format","jet-form-builder"),value:t.save_format,options:[{label:(0,r.__)("E.164","jet-form-builder"),value:"e164"},{label:(0,r.__)("International","jet-form-builder"),value:"international"}],onChange:e=>b({save_format:e}),help:(0,r.__)("Save format: E.164 (+12015553333) or International (+1 201-555-3333).","jet-form-builder")})),(0,l.createElement)(a.PanelBody,{title:(0,r.__)("Additional Settings","jet-form-builder"),initialOpen:!1},(0,l.createElement)(a.ToggleControl,{label:(0,r.__)("Use Global ipinfo.io Token","jet-form-builder"),checked:t.use_global,onChange:()=>b({use_global:!t.use_global}),help:(0,l.createElement)(l.Fragment,null,(0,r.__)("Use","jet-form-builder")+" ",(0,l.createElement)("a",{href:window.JetFormEditorData?.global_settings_url+"#phone-field-tab",target:"_blank",rel:"noopener noreferrer"},(0,r.__)("Global Settings","jet-form-builder")))}),!t.use_global&&(0,l.createElement)(a.TextControl,{label:(0,r.__)("ipinfo.io API Token","jet-form-builder"),value:t.ipinfo_token,onChange:e=>b({ipinfo_token:e}),help:(0,r.__)("Optional: API token for IP-based country detection (50k free requests/month)","jet-form-builder")})),(0,l.createElement)(a.PanelBody,{title:(0,r.__)("Validation Messages","jet-form-builder"),initialOpen:!1},(0,l.createElement)(a.TextControl,{label:(0,r.__)("Required Field Message","jet-form-builder"),value:t.validation_message_required,onChange:e=>b({validation_message_required:e}),placeholder:(0,r.__)("Required field is empty","jet-form-builder")}),(0,l.createElement)(a.TextControl,{label:(0,r.__)("Invalid Phone Message","jet-form-builder"),value:t.validation_message_invalid,onChange:e=>b({validation_message_invalid:e}),placeholder:(0,r.__)("Please enter a valid phone number","jet-form-builder")})),(0,l.createElement)(p,{...e})),(0,l.createElement)("div",{...y,key:C("viewBlock")},(0,l.createElement)(m,{key:C("FieldWrapper"),...e},(0,l.createElement)(i,{separateDialCode:t.separate_dial_code,globeIcon:o,placeholder:t.default})))]},jfbResolveBlock(){const e={clientId:this.clientId,name:this.name};return this.attributes.name?{...e,fields:[{value:this.attributes.name,name:this.attributes.name,label:this.attributes.label||this.attributes.name}]}:e},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}}};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/phone-field",(function(e){return e.push(t),e}))})(); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/field.asset.php b/modules/blocks-v2/phone-field/assets/build/frontend/field.asset.php index 9dae345c8..516f05384 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/field.asset.php +++ b/modules/blocks-v2/phone-field/assets/build/frontend/field.asset.php @@ -1 +1 @@ - array(), 'version' => '102fc402ef6b503ed976'); + array(), 'version' => 'f7a4d0236d823c961866'); diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/field.js b/modules/blocks-v2/phone-field/assets/build/frontend/field.js index 477b35acc..41d0d5b13 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/field.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/field.js @@ -1 +1 @@ -(()=>{"use strict";var e,t={},n={};function i(e){var r=n[e];if(void 0!==r)return r.exports;var o=n[e]={exports:{}};return t[e](o,o.exports,i),o.exports}i.m=t,i.d=(e,t)=>{for(var n in t)i.o(t,n)&&!i.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce((t,n)=>(i.f[n](e,t),t),[])),i.u=e=>87===e?"frontend/i18n/phone-i18n-uk.js":612===e?"frontend/i18n/phone-i18n-ru.js":874===e?"frontend/i18n/phone-i18n-de.js":847===e?"frontend/i18n/phone-i18n-fr.js":487===e?"frontend/i18n/phone-i18n-es.js":932===e?"frontend/i18n/phone-i18n-it.js":519===e?"frontend/i18n/phone-i18n-pl.js":791===e?"frontend/i18n/phone-i18n-pt.js":809===e?"frontend/i18n/phone-i18n-nl.js":680===e?"frontend/i18n/phone-i18n-ja.js":217===e?"frontend/i18n/phone-i18n-zh.js":489===e?"frontend/i18n/phone-i18n-ko.js":410===e?"frontend/i18n/phone-i18n-ar.js":949===e?"frontend/i18n/phone-i18n-tr.js":416===e?"frontend/i18n/phone-i18n-sv.js":886===e?"frontend/i18n/phone-i18n-da.js":372===e?"frontend/i18n/phone-i18n-fi.js":618===e?"frontend/i18n/phone-i18n-no.js":557===e?"frontend/i18n/phone-i18n-cs.js":974===e?"frontend/i18n/phone-i18n-hu.js":278===e?"frontend/i18n/phone-i18n-ro.js":590===e?"frontend/i18n/phone-i18n-bg.js":569===e?"frontend/i18n/phone-i18n-hr.js":653===e?"frontend/i18n/phone-i18n-sk.js":736===e?"frontend/i18n/phone-i18n-el.js":615===e?"frontend/i18n/phone-i18n-th.js":580===e?"frontend/i18n/phone-i18n-vi.js":788===e?"frontend/i18n/phone-i18n-id.js":354===e?"frontend/i18n/phone-i18n-hi.js":231===e?"frontend/i18n/phone-i18n-bn.js":302===e?"frontend/i18n/phone-i18n-ur.js":628===e?"frontend/i18n/phone-i18n-fa.js":982===e?"frontend/i18n/phone-i18n-mr.js":378===e?"frontend/i18n/phone-i18n-te.js":434===e?"frontend/i18n/phone-i18n-bs.js":319===e?"frontend/i18n/phone-i18n-ca.js":void 0,i.miniCssF=e=>{},i.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e={},i.l=(t,n,r,o)=>{if(e[t])e[t].push(n);else{var s,a;if(void 0!==r)for(var d=document.getElementsByTagName("script"),u=0;u{s.onerror=s.onload=null,clearTimeout(c);var r=e[t];if(delete e[t],s.parentNode&&s.parentNode.removeChild(s),r&&r.forEach(e=>e(i)),n)return n(i)},c=setTimeout(h.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=h.bind(null,s.onerror),s.onload=h.bind(null,s.onload),a&&document.head.appendChild(s)}},i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e;i.g.importScripts&&(e=i.g.location+"");var t=i.g.document;if(!e&&t&&(t.currentScript&&"SCRIPT"===t.currentScript.tagName.toUpperCase()&&(e=t.currentScript.src),!e)){var n=t.getElementsByTagName("script");if(n.length)for(var r=n.length-1;r>-1&&(!e||!/^http(s?):/.test(e));)e=n[r--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),i.p=e+"../"})(),(()=>{var e={750:0};i.f.j=(t,n)=>{var r=i.o(e,t)?e[t]:void 0;if(0!==r)if(r)n.push(r[2]);else{var o=new Promise((n,i)=>r=e[t]=[n,i]);n.push(r[2]=o);var s=i.p+i.u(t),a=new Error;i.l(s,n=>{if(i.o(e,t)&&(0!==(r=e[t])&&(e[t]=void 0),r)){var o=n&&("load"===n.type?"missing":n.type),s=n&&n.target&&n.target.src;a.message="Loading chunk "+t+" failed.\n("+o+": "+s+")",a.name="ChunkLoadError",a.type=o,a.request=s,r[1](a)}},"chunk-"+t,t)}};var t=(t,n)=>{var r,o,[s,a,d]=n,u=0;if(s.some(t=>0!==e[t])){for(r in a)i.o(a,r)&&(i.m[r]=a[r]);d&&d(i)}for(t&&t(n);ui.e(87).then(i.bind(i,171)),ru:()=>i.e(612).then(i.bind(i,628)),de:()=>i.e(874).then(i.bind(i,74)),fr:()=>i.e(847).then(i.bind(i,7)),es:()=>i.e(487).then(i.bind(i,763)),it:()=>i.e(932).then(i.bind(i,760)),pl:()=>i.e(519).then(i.bind(i,471)),pt:()=>i.e(791).then(i.bind(i,823)),nl:()=>i.e(809).then(i.bind(i,697)),ja:()=>i.e(680).then(i.bind(i,608)),zh:()=>i.e(217).then(i.bind(i,721)),ko:()=>i.e(489).then(i.bind(i,397)),ar:()=>i.e(410).then(i.bind(i,830)),tr:()=>i.e(949).then(i.bind(i,853)),sv:()=>i.e(416).then(i.bind(i,620)),da:()=>i.e(886).then(i.bind(i,862)),fi:()=>i.e(372).then(i.bind(i,844)),no:()=>i.e(618).then(i.bind(i,146)),cs:()=>i.e(557).then(i.bind(i,705)),hu:()=>i.e(974).then(i.bind(i,958)),ro:()=>i.e(278).then(i.bind(i,350)),bg:()=>i.e(590).then(i.bind(i,574)),hr:()=>i.e(569).then(i.bind(i,289)),sk:()=>i.e(653).then(i.bind(i,169)),el:()=>i.e(736).then(i.bind(i,644)),th:()=>i.e(615).then(i.bind(i,423)),vi:()=>i.e(580).then(i.bind(i,388)),id:()=>i.e(788).then(i.bind(i,80)),hi:()=>i.e(354).then(i.bind(i,602)),bn:()=>i.e(231).then(i.bind(i,655)),ur:()=>i.e(302).then(i.bind(i,730)),fa:()=>i.e(628).then(i.bind(i,428)),mr:()=>i.e(982).then(i.bind(i,922)),te:()=>i.e(378).then(i.bind(i,722)),bs:()=>i.e(434).then(i.bind(i,322)),ca:()=>i.e(319).then(i.bind(i,227))},s={};function a(e){if(!e||"string"!=typeof e)return"";const t=e.trim().replace(/-/g,"_");if(!t)return"";const[n="",i=""]=t.split("_");return n?i?`${n.toLowerCase()}_${i.toUpperCase()}`:n.toLowerCase():""}async function d(e){const t=function(e){const t=a(e);if(!t)return"en";const[n]=t.split("_");return r[t]||r[n]||"en"}(e);if("en"===t)return{};if(s[t])return s[t];const n=o[t];if(!n)return{};try{const e=(await n()).default||{};return s[t]=e,e}catch{return{}}}function u(){const e="object"==typeof window.jfbPhoneFieldLocaleContext&&null!==window.jfbPhoneFieldLocaleContext?window.jfbPhoneFieldLocaleContext:{};return((e=[])=>{for(const t of e){const e=a(t);if(e)return e}return""})([e.pageLocale,e.pageLang,document.documentElement?.lang,e.siteLocale,e.siteLang])}async function l(){const e=u()||"en";return await d(e)}const{InputData:h}=window.JetFormBuilderAbstract;function c(){h.call(this),this.itiInstance=null,this.isInitialized=!1,this.isSupported=function(e){return e.classList.contains("phone-field")},this.setNode=function(e){h.prototype.setNode.call(this,e),this.initIntlTelInput()},this.initIntlTelInput=async function(){const e=this.nodes[0];if(!e)return;if(this.isInitialized)return;const t=this.getWrapperNode().querySelector("input.phone-field-intl"),n=e.dataset.defaultCountry||"auto",i=this.parseCountryList(e.dataset.preferredCountries),r=this.parseCountryList(e.dataset.onlyCountries),o=this.parseCountryList(e.dataset.excludeCountries),s=e.dataset.separateDialCode||!1,a=e.dataset.ipinfoToken||"";let d=n;"auto"===d&&(d=this.detectCountryByIP(a)||this.detectCountryByLanguage()||"us");const u=await this.getLocalizedCountryNames(),l={initialCountry:d,separateDialCode:"1"===s,strictMode:!0,nationalMode:!0,formatAsYouType:!0,formatOnDisplay:!0,autoPlaceholder:"aggressive"};i.length&&(l.countryOrder=i),r.length&&(l.onlyCountries=r),o.length&&(l.excludeCountries=o),Object.keys(u).length&&(l.i18n=u),this.itiInstance=window.intlTelInput(t,l),this.itiInstance.setNumber(e.value),this.isInitialized=!0},this.normalizeIfInternational=function(e){const t=e.value.trim();t&&"+"===t[0]&&(this.itiInstance.setNumber(t),this.setValue())},this.parseCountryList=function(e){return e?e.split(",").map(e=>e.trim().toLowerCase()).filter(e=>e):[]},this.detectCountryByIP=function(e){const t=sessionStorage.getItem("jfb_detected_country");return t||(fetch(e?`https://api.ipinfo.io/lite/me?token=${e}`:"https://ipinfo.io/json").then(e=>e.json()).then(e=>{if(e.country){const t=e.country.toLowerCase();sessionStorage.setItem("jfb_detected_country",t),this.itiInstance&&this.itiInstance.setCountry(t)}}).catch(()=>{}),null)},this.detectCountryByLanguage=function(){const e=navigator.language||navigator.userLanguage;if(!e)return null;const t=e.split("-");return t.length>1?t[1].toLowerCase():{en:"us",ru:"ru",uk:"ua",de:"de",fr:"fr",es:"es",it:"it",pl:"pl",pt:"br",ja:"jp",ko:"kr",zh:"cn",ar:"sa",he:"il",hi:"in"}[t[0].toLowerCase()]||null},this.getLocalizedCountryNames=async function(){const e=void 0!==window.jfbPhoneFieldI18n?window.jfbPhoneFieldI18n:{};let t={};try{t=await l()}catch{}return{...t,...e}},this.addListeners=function(){h.prototype.addListeners.call(this);const e=this.nodes[0];if(!e)return;const t=this.getWrapperNode(),n=t.querySelector("input.phone-field-intl");if(!n)return;const i=e.closest("form");i&&i.addEventListener("submit",()=>{this.normalizeIfInternational(n),this.syncFromIntlInput(n,e),this.validateAndShowError()},!0),n.addEventListener("countrychange",()=>{this.syncFromIntlInput(n,e),t.classList.contains("field-has-error")&&this.validateAndShowError()}),n.addEventListener("input",()=>{this.normalizeIfInternational(n),this.syncFromIntlInput(n,e),n.value.trim()&&this.clearError()}),n.addEventListener("change",()=>{this.normalizeIfInternational(n),this.syncFromIntlInput(n,e)}),n.addEventListener("blur",()=>{setTimeout(()=>{this.normalizeIfInternational(n),this.syncFromIntlInput(n,e),this.validateAndShowError()},0)})},this.syncFromIntlInput=function(e,t){if(!this.itiInstance)return;let n;n="international"===(t.dataset.saveFormat||"e164")?this.itiInstance.getNumber(window.intlTelInput.utils.numberFormat.INTERNATIONAL):this.itiInstance.getNumber(),t.value=n||"",this.calcValue=n||"",this.value.current=n||""},this.showError=function(e){const t=this.getWrapperNode();if(!t)return;this.clearError(),t.classList.add("field-has-error");const n=document.createElement("div");n.className="error-message jet-form-builder__error",n.textContent=e;const i=t.querySelector(".jet-form-builder-col__end");i?i.appendChild(n):t.appendChild(n);const r=t.querySelector("input.phone-field-intl");r&&(r.classList.add("invalid"),r.setAttribute("aria-invalid","true"))},this.clearError=function(){const e=this.getWrapperNode();if(!e)return;e.classList.remove("field-has-error");const t=e.querySelector(".error-message");t&&t.remove();const n=e.querySelector("input.phone-field-intl");n&&(n.classList.remove("invalid"),n.removeAttribute("aria-invalid"))},this.getValidationMessage=function(e){const t=this.nodes[0];return"required"===e&&t.dataset.validationMessageRequired?t.dataset.validationMessageRequired:"invalid"===e&&t.dataset.validationMessageInvalid?t.dataset.validationMessageInvalid:"required"===e?"This field is required":"Please enter a valid phone number"},this.validateAndShowError=function(){const e=this.getWrapperNode(),t=e?.querySelector("input.phone-field-intl"),n=this.nodes[0];if(!t)return!0;const i=t.value.trim();return n.hasAttribute("required")&&!i?(this.showError(this.getValidationMessage("required")),!1):i&&this.itiInstance&&!this.itiInstance.isValidNumber()?(this.showError(this.getValidationMessage("invalid")),!1):(this.clearError(),!0)},this.getReportingNode=function(){const e=this.getWrapperNode(),t=e?.querySelector("input.phone-field-intl");return t||this.nodes[0]},this.getWrapperNode=function(){const e=this.nodes[0];return e?e.closest(".jet-form-builder-row"):null},c.prototype.setValue=function(){const e=this.nodes[0];if(!e)return"";if(!this.itiInstance)return this.calcValue=e.value,this.value.current=e.value,e.value;let t;return t="international"===(e.dataset.saveFormat||"e164")?this.itiInstance.getNumber(window.intlTelInputUtils.numberFormat.INTERNATIONAL):this.itiInstance.getNumber(),e.value=t||"",this.calcValue=t||"",this.value.current=t||"",t}}c.prototype=Object.create(h.prototype),c.prototype.constructor=c;const p=c;let{AdvancedRestriction:f,Restriction:b}=window.JetFormBuilderAbstract||{};function m(){f.call(this),this.type="phone_validation"}f=f||b,m.prototype=Object.create(f.prototype),m.prototype.isSupported=function(e){return e.classList.contains("phone-field")},m.prototype.validate=function(){const e=this.reporting.input,t=e.getWrapperNode(),n=t?.querySelector("input.phone-field-intl");return!e.itiInstance||(!n||!n.value.trim()||e.itiInstance.isValidNumber())},m.prototype.getRawMessage=function(){const e=this.getMessageBySlug?.("phone_invalid");return e||"Please enter a valid phone number"};const g=m,{addFilter:v}=JetPlugins.hooks;v("jet.fb.inputs","jet-form-builder/phone-field",function(e){return e.push(p),e},10);const y=e=>(e.push(g),e);v("jet.fb.restrictions.default","jet-form-builder/phone-field",y),v("jet.fb.restrictions","jet-form-builder/phone-field",y)})(); \ No newline at end of file +(()=>{"use strict";var e,t={},n={};function i(e){var r=n[e];if(void 0!==r)return r.exports;var o=n[e]={exports:{}};return t[e](o,o.exports,i),o.exports}i.m=t,i.d=(e,t)=>{for(var n in t)i.o(t,n)&&!i.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce(((t,n)=>(i.f[n](e,t),t)),[])),i.u=e=>87===e?"frontend/i18n/phone-i18n-uk.js":612===e?"frontend/i18n/phone-i18n-ru.js":874===e?"frontend/i18n/phone-i18n-de.js":847===e?"frontend/i18n/phone-i18n-fr.js":487===e?"frontend/i18n/phone-i18n-es.js":932===e?"frontend/i18n/phone-i18n-it.js":519===e?"frontend/i18n/phone-i18n-pl.js":791===e?"frontend/i18n/phone-i18n-pt.js":809===e?"frontend/i18n/phone-i18n-nl.js":680===e?"frontend/i18n/phone-i18n-ja.js":217===e?"frontend/i18n/phone-i18n-zh.js":489===e?"frontend/i18n/phone-i18n-ko.js":410===e?"frontend/i18n/phone-i18n-ar.js":949===e?"frontend/i18n/phone-i18n-tr.js":416===e?"frontend/i18n/phone-i18n-sv.js":886===e?"frontend/i18n/phone-i18n-da.js":372===e?"frontend/i18n/phone-i18n-fi.js":618===e?"frontend/i18n/phone-i18n-no.js":557===e?"frontend/i18n/phone-i18n-cs.js":974===e?"frontend/i18n/phone-i18n-hu.js":278===e?"frontend/i18n/phone-i18n-ro.js":590===e?"frontend/i18n/phone-i18n-bg.js":569===e?"frontend/i18n/phone-i18n-hr.js":653===e?"frontend/i18n/phone-i18n-sk.js":736===e?"frontend/i18n/phone-i18n-el.js":615===e?"frontend/i18n/phone-i18n-th.js":580===e?"frontend/i18n/phone-i18n-vi.js":788===e?"frontend/i18n/phone-i18n-id.js":354===e?"frontend/i18n/phone-i18n-hi.js":231===e?"frontend/i18n/phone-i18n-bn.js":302===e?"frontend/i18n/phone-i18n-ur.js":628===e?"frontend/i18n/phone-i18n-fa.js":982===e?"frontend/i18n/phone-i18n-mr.js":378===e?"frontend/i18n/phone-i18n-te.js":434===e?"frontend/i18n/phone-i18n-bs.js":319===e?"frontend/i18n/phone-i18n-ca.js":void 0,i.miniCssF=e=>{},i.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e={},i.l=(t,n,r,o)=>{if(e[t])e[t].push(n);else{var s,a;if(void 0!==r)for(var d=document.getElementsByTagName("script"),u=0;u{s.onerror=s.onload=null,clearTimeout(c);var r=e[t];if(delete e[t],s.parentNode&&s.parentNode.removeChild(s),r&&r.forEach((e=>e(i))),n)return n(i)},c=setTimeout(h.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=h.bind(null,s.onerror),s.onload=h.bind(null,s.onload),a&&document.head.appendChild(s)}},i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e;i.g.importScripts&&(e=i.g.location+"");var t=i.g.document;if(!e&&t&&(t.currentScript&&"SCRIPT"===t.currentScript.tagName.toUpperCase()&&(e=t.currentScript.src),!e)){var n=t.getElementsByTagName("script");if(n.length)for(var r=n.length-1;r>-1&&(!e||!/^http(s?):/.test(e));)e=n[r--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),i.p=e+"../"})(),(()=>{var e={750:0};i.f.j=(t,n)=>{var r=i.o(e,t)?e[t]:void 0;if(0!==r)if(r)n.push(r[2]);else{var o=new Promise(((n,i)=>r=e[t]=[n,i]));n.push(r[2]=o);var s=i.p+i.u(t),a=new Error;i.l(s,(n=>{if(i.o(e,t)&&(0!==(r=e[t])&&(e[t]=void 0),r)){var o=n&&("load"===n.type?"missing":n.type),s=n&&n.target&&n.target.src;a.message="Loading chunk "+t+" failed.\n("+o+": "+s+")",a.name="ChunkLoadError",a.type=o,a.request=s,r[1](a)}}),"chunk-"+t,t)}};var t=(t,n)=>{var r,o,[s,a,d]=n,u=0;if(s.some((t=>0!==e[t]))){for(r in a)i.o(a,r)&&(i.m[r]=a[r]);d&&d(i)}for(t&&t(n);ui.e(87).then(i.bind(i,171)),ru:()=>i.e(612).then(i.bind(i,628)),de:()=>i.e(874).then(i.bind(i,74)),fr:()=>i.e(847).then(i.bind(i,7)),es:()=>i.e(487).then(i.bind(i,763)),it:()=>i.e(932).then(i.bind(i,760)),pl:()=>i.e(519).then(i.bind(i,471)),pt:()=>i.e(791).then(i.bind(i,823)),nl:()=>i.e(809).then(i.bind(i,697)),ja:()=>i.e(680).then(i.bind(i,608)),zh:()=>i.e(217).then(i.bind(i,721)),ko:()=>i.e(489).then(i.bind(i,397)),ar:()=>i.e(410).then(i.bind(i,830)),tr:()=>i.e(949).then(i.bind(i,853)),sv:()=>i.e(416).then(i.bind(i,620)),da:()=>i.e(886).then(i.bind(i,862)),fi:()=>i.e(372).then(i.bind(i,844)),no:()=>i.e(618).then(i.bind(i,146)),cs:()=>i.e(557).then(i.bind(i,705)),hu:()=>i.e(974).then(i.bind(i,958)),ro:()=>i.e(278).then(i.bind(i,350)),bg:()=>i.e(590).then(i.bind(i,574)),hr:()=>i.e(569).then(i.bind(i,289)),sk:()=>i.e(653).then(i.bind(i,169)),el:()=>i.e(736).then(i.bind(i,644)),th:()=>i.e(615).then(i.bind(i,423)),vi:()=>i.e(580).then(i.bind(i,388)),id:()=>i.e(788).then(i.bind(i,80)),hi:()=>i.e(354).then(i.bind(i,602)),bn:()=>i.e(231).then(i.bind(i,655)),ur:()=>i.e(302).then(i.bind(i,730)),fa:()=>i.e(628).then(i.bind(i,428)),mr:()=>i.e(982).then(i.bind(i,922)),te:()=>i.e(378).then(i.bind(i,722)),bs:()=>i.e(434).then(i.bind(i,322)),ca:()=>i.e(319).then(i.bind(i,227))},s={};function a(e){if(!e||"string"!=typeof e)return"";const t=e.trim().replace(/-/g,"_");if(!t)return"";const[n="",i=""]=t.split("_");return n?i?`${n.toLowerCase()}_${i.toUpperCase()}`:n.toLowerCase():""}async function d(e){const t=function(e){const t=a(e);if(!t)return"en";const[n]=t.split("_");return r[t]||r[n]||"en"}(e);if("en"===t)return{};if(s[t])return s[t];const n=o[t];if(!n)return{};try{const e=(await n()).default||{};return s[t]=e,e}catch{return{}}}function u(){const e="object"==typeof window.jfbPhoneFieldLocaleContext&&null!==window.jfbPhoneFieldLocaleContext?window.jfbPhoneFieldLocaleContext:{};return((e=[])=>{for(const t of e){const e=a(t);if(e)return e}return""})([e.pageLocale,e.pageLang,document.documentElement?.lang,e.siteLocale,e.siteLang])}async function l(){const e=u()||"en";return await d(e)}const{InputData:h}=window.JetFormBuilderAbstract;function c(){h.call(this),this.itiInstance=null,this.isInitialized=!1,this.isSupported=function(e){return e.classList.contains("phone-field")},this.setNode=function(e){h.prototype.setNode.call(this,e),this.initIntlTelInput()},this.initIntlTelInput=async function(){const e=this.nodes[0];if(!e)return;if(this.isInitialized)return;const t=this.getWrapperNode().querySelector("input.phone-field-intl"),n=e.dataset.defaultCountry||"auto",i=this.parseCountryList(e.dataset.preferredCountries),r=this.parseCountryList(e.dataset.onlyCountries),o=this.parseCountryList(e.dataset.excludeCountries),s=e.dataset.separateDialCode||!1,a=e.dataset.ipinfoToken||"";let d=n;"auto"===d&&(d=this.detectCountryByIP(a)||this.detectCountryByLanguage()||"us");const u=await this.getLocalizedCountryNames(),l={initialCountry:d,separateDialCode:"1"===s,strictMode:!0,nationalMode:!0,formatAsYouType:!0,formatOnDisplay:!0,autoPlaceholder:"aggressive"};i.length&&(l.countryOrder=i),r.length&&(l.onlyCountries=r),o.length&&(l.excludeCountries=o),Object.keys(u).length&&(l.i18n=u),this.itiInstance=window.intlTelInput(t,l),this.itiInstance.setNumber(e.value),this.isInitialized=!0},this.normalizeIfInternational=function(e){const t=e.value.trim();t&&"+"===t[0]&&(this.itiInstance.setNumber(t),this.setValue())},this.parseCountryList=function(e){return e?e.split(",").map((e=>e.trim().toLowerCase())).filter((e=>e)):[]},this.detectCountryByIP=function(e){const t=sessionStorage.getItem("jfb_detected_country");return t||(fetch(e?`https://api.ipinfo.io/lite/me?token=${e}`:"https://ipinfo.io/json").then((e=>e.json())).then((e=>{if(e.country){const t=e.country.toLowerCase();sessionStorage.setItem("jfb_detected_country",t),this.itiInstance&&this.itiInstance.setCountry(t)}})).catch((()=>{})),null)},this.detectCountryByLanguage=function(){const e=navigator.language||navigator.userLanguage;if(!e)return null;const t=e.split("-");return t.length>1?t[1].toLowerCase():{en:"us",ru:"ru",uk:"ua",de:"de",fr:"fr",es:"es",it:"it",pl:"pl",pt:"br",ja:"jp",ko:"kr",zh:"cn",ar:"sa",he:"il",hi:"in"}[t[0].toLowerCase()]||null},this.getLocalizedCountryNames=async function(){const e=void 0!==window.jfbPhoneFieldI18n?window.jfbPhoneFieldI18n:{};let t={};try{t=await l()}catch{}return{...t,...e}},this.addListeners=function(){h.prototype.addListeners.call(this);const e=this.nodes[0];if(!e)return;const t=this.getWrapperNode(),n=t.querySelector("input.phone-field-intl");if(!n)return;const i=e.closest("form");i&&i.addEventListener("submit",(()=>{this.normalizeIfInternational(n),this.syncFromIntlInput(n,e),this.validateAndShowError()}),!0),n.addEventListener("countrychange",(()=>{this.syncFromIntlInput(n,e),t.classList.contains("field-has-error")&&this.validateAndShowError()})),n.addEventListener("input",(()=>{this.normalizeIfInternational(n),this.syncFromIntlInput(n,e),n.value.trim()&&this.clearError()})),n.addEventListener("change",(()=>{this.normalizeIfInternational(n),this.syncFromIntlInput(n,e)})),n.addEventListener("blur",(()=>{setTimeout((()=>{this.normalizeIfInternational(n),this.syncFromIntlInput(n,e),this.validateAndShowError()}),0)}))},this.syncFromIntlInput=function(e,t){if(!this.itiInstance)return;let n;n="international"===(t.dataset.saveFormat||"e164")?this.itiInstance.getNumber(window.intlTelInput.utils.numberFormat.INTERNATIONAL):this.itiInstance.getNumber(),t.value=n||"",this.calcValue=n||"",this.value.current=n||""},this.showError=function(e){const t=this.getWrapperNode();if(!t)return;this.clearError(),t.classList.add("field-has-error");const n=document.createElement("div");n.className="error-message jet-form-builder__error",n.textContent=e;const i=t.querySelector(".jet-form-builder-col__end");i?i.appendChild(n):t.appendChild(n);const r=t.querySelector("input.phone-field-intl");r&&(r.classList.add("invalid"),r.setAttribute("aria-invalid","true"))},this.clearError=function(){const e=this.getWrapperNode();if(!e)return;e.classList.remove("field-has-error");const t=e.querySelector(".error-message");t&&t.remove();const n=e.querySelector("input.phone-field-intl");n&&(n.classList.remove("invalid"),n.removeAttribute("aria-invalid"))},this.getValidationMessage=function(e){const t=this.nodes[0];return"required"===e&&t.dataset.validationMessageRequired?t.dataset.validationMessageRequired:"invalid"===e&&t.dataset.validationMessageInvalid?t.dataset.validationMessageInvalid:"required"===e?"This field is required":"Please enter a valid phone number"},this.validateAndShowError=function(){const e=this.getWrapperNode(),t=e?.querySelector("input.phone-field-intl"),n=this.nodes[0];if(!t)return!0;const i=t.value.trim();return n.hasAttribute("required")&&!i?(this.showError(this.getValidationMessage("required")),!1):i&&this.itiInstance&&!this.itiInstance.isValidNumber()?(this.showError(this.getValidationMessage("invalid")),!1):(this.clearError(),!0)},this.getReportingNode=function(){const e=this.getWrapperNode(),t=e?.querySelector("input.phone-field-intl");return t||this.nodes[0]},this.getWrapperNode=function(){const e=this.nodes[0];return e?e.closest(".jet-form-builder-row"):null},c.prototype.setValue=function(){const e=this.nodes[0];if(!e)return"";if(!this.itiInstance)return this.calcValue=e.value,this.value.current=e.value,e.value;let t;return t="international"===(e.dataset.saveFormat||"e164")?this.itiInstance.getNumber(window.intlTelInputUtils.numberFormat.INTERNATIONAL):this.itiInstance.getNumber(),e.value=t||"",this.calcValue=t||"",this.value.current=t||"",t}}c.prototype=Object.create(h.prototype),c.prototype.constructor=c;const p=c;let{AdvancedRestriction:f,Restriction:b}=window.JetFormBuilderAbstract||{};function m(){f.call(this),this.type="phone_validation"}f=f||b,m.prototype=Object.create(f.prototype),m.prototype.isSupported=function(e){return e.classList.contains("phone-field")},m.prototype.validate=function(){const e=this.reporting.input,t=e.getWrapperNode(),n=t?.querySelector("input.phone-field-intl");return!e.itiInstance||(!n||!n.value.trim()||e.itiInstance.isValidNumber())},m.prototype.getRawMessage=function(){const e=this.getMessageBySlug?.("phone_invalid");return e||"Please enter a valid phone number"};const g=m,{addFilter:v}=JetPlugins.hooks;v("jet.fb.inputs","jet-form-builder/phone-field",(function(e){return e.push(p),e}),10);const y=e=>(e.push(g),e);v("jet.fb.restrictions.default","jet-form-builder/phone-field",y),v("jet.fb.restrictions","jet-form-builder/phone-field",y)})(); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ar.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ar.js index ec668785e..641314926 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ar.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ar.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[410],{830(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"أندورا",ae:"الإمارات العربية المتحدة",af:"أفغانستان",ag:"أنتيغوا وبربودا",ai:"أنغويلا",al:"ألبانيا",am:"أرمينيا",ao:"أنغولا",ar:"الأرجنتين",as:"ساموا الأمريكية",at:"النمسا",au:"أستراليا",aw:"أروبا",ax:"جزر آلاند",az:"أذربيجان",ba:"البوسنة والهرسك",bb:"بربادوس",bd:"بنغلاديش",be:"بلجيكا",bf:"بوركينا فاسو",bg:"بلغاريا",bh:"البحرين",bi:"بوروندي",bj:"بنين",bl:"سان بارتليمي",bm:"برمودا",bn:"بروناي",bo:"بوليفيا",bq:"هولندا الكاريبية",br:"البرازيل",bs:"جزر البهاما",bt:"بوتان",bw:"بوتسوانا",by:"بيلاروس",bz:"بليز",ca:"كندا",cc:"جزر كوكوس (كيلينغ)",cd:"الكونغو - كينشاسا",cf:"جمهورية أفريقيا الوسطى",cg:"الكونغو - برازافيل",ch:"سويسرا",ci:"ساحل العاج",ck:"جزر كوك",cl:"تشيلي",cm:"الكاميرون",cn:"الصين",co:"كولومبيا",cr:"كوستاريكا",cu:"كوبا",cv:"الرأس الأخضر",cw:"كوراساو",cx:"جزيرة كريسماس",cy:"قبرص",cz:"التشيك",de:"ألمانيا",dj:"جيبوتي",dk:"الدانمرك",dm:"دومينيكا",do:"جمهورية الدومينيكان",dz:"الجزائر",ec:"الإكوادور",ee:"إستونيا",eg:"مصر",eh:"الصحراء الغربية",er:"إريتريا",es:"إسبانيا",et:"إثيوبيا",fi:"فنلندا",fj:"فيجي",fk:"جزر فوكلاند",fm:"ميكرونيزيا",fo:"جزر فارو",fr:"فرنسا",ga:"الغابون",gb:"المملكة المتحدة",gd:"غرينادا",ge:"جورجيا",gf:"غويانا الفرنسية",gg:"غيرنزي",gh:"غانا",gi:"جبل طارق",gl:"غرينلاند",gm:"غامبيا",gn:"غينيا",gp:"غوادلوب",gq:"غينيا الاستوائية",gr:"اليونان",gt:"غواتيمالا",gu:"غوام",gw:"غينيا بيساو",gy:"غيانا",hk:"هونغ كونغ الصينية (منطقة إدارية خاصة)",hn:"هندوراس",hr:"كرواتيا",ht:"هايتي",hu:"هنغاريا",id:"إندونيسيا",ie:"أيرلندا",il:"إسرائيل",im:"جزيرة مان",in:"الهند",io:"الإقليم البريطاني في المحيط الهندي",iq:"العراق",ir:"إيران",is:"آيسلندا",it:"إيطاليا",je:"جيرسي",jm:"جامايكا",jo:"الأردن",jp:"اليابان",ke:"كينيا",kg:"قيرغيزستان",kh:"كمبوديا",ki:"كيريباتي",km:"جزر القمر",kn:"سانت كيتس ونيفيس",kp:"كوريا الشمالية",kr:"كوريا الجنوبية",kw:"الكويت",ky:"جزر كايمان",kz:"كازاخستان",la:"لاوس",lb:"لبنان",lc:"سانت لوسيا",li:"ليختنشتاين",lk:"سريلانكا",lr:"ليبيريا",ls:"ليسوتو",lt:"ليتوانيا",lu:"لوكسمبورغ",lv:"لاتفيا",ly:"ليبيا",ma:"المغرب",mc:"موناكو",md:"مولدوفا",me:"الجبل الأسود",mf:"سان مارتن",mg:"مدغشقر",mh:"جزر مارشال",mk:"مقدونيا الشمالية",ml:"مالي",mm:"ميانمار (بورما)",mn:"منغوليا",mo:"منطقة ماكاو الإدارية الخاصة",mp:"جزر ماريانا الشمالية",mq:"جزر المارتينيك",mr:"موريتانيا",ms:"مونتسرات",mt:"مالطا",mu:"موريشيوس",mv:"جزر المالديف",mw:"ملاوي",mx:"المكسيك",my:"ماليزيا",mz:"موزمبيق",na:"ناميبيا",nc:"كاليدونيا الجديدة",ne:"النيجر",nf:"جزيرة نورفولك",ng:"نيجيريا",ni:"نيكاراغوا",nl:"هولندا",no:"النرويج",np:"نيبال",nr:"ناورو",nu:"نيوي",nz:"نيوزيلندا",om:"عُمان",pa:"بنما",pe:"بيرو",pf:"بولينيزيا الفرنسية",pg:"بابوا غينيا الجديدة",ph:"الفلبين",pk:"باكستان",pl:"بولندا",pm:"سان بيير ومكويلون",pr:"بورتوريكو",ps:"الأراضي الفلسطينية",pt:"البرتغال",pw:"بالاو",py:"باراغواي",qa:"قطر",re:"روينيون",ro:"رومانيا",rs:"صربيا",ru:"روسيا",rw:"رواندا",sa:"المملكة العربية السعودية",sb:"جزر سليمان",sc:"سيشل",sd:"السودان",se:"السويد",sg:"سنغافورة",sh:"سانت هيلينا",si:"سلوفينيا",sj:"سفالبارد وجان ماين",sk:"سلوفاكيا",sl:"سيراليون",sm:"سان مارينو",sn:"السنغال",so:"الصومال",sr:"سورينام",ss:"جنوب السودان",st:"ساو تومي وبرينسيبي",sv:"السلفادور",sx:"سانت مارتن",sy:"سوريا",sz:"إسواتيني",tc:"جزر توركس وكايكوس",td:"تشاد",tg:"توغو",th:"تايلاند",tj:"طاجيكستان",tk:"توكيلو",tl:"تيمور - ليشتي",tm:"تركمانستان",tn:"تونس",to:"تونغا",tr:"تركيا",tt:"ترينيداد وتوباغو",tv:"توفالو",tw:"تايوان",tz:"تنزانيا",ua:"أوكرانيا",ug:"أوغندا",us:"الولايات المتحدة",uy:"أورغواي",uz:"أوزبكستان",va:"الفاتيكان",vc:"سانت فنسنت وجزر غرينادين",ve:"فنزويلا",vg:"جزر فيرجن البريطانية",vi:"جزر فيرجن التابعة للولايات المتحدة",vn:"فيتنام",vu:"فانواتو",wf:"جزر والس وفوتونا",ws:"ساموا",ye:"اليمن",yt:"مايوت",za:"جنوب أفريقيا",zm:"زامبيا",zw:"زيمبابوي"},c={selectedCountryAriaLabel:"البلد المحدد",noCountrySelected:"لم يتم تحديد أي بلد",countryListAriaLabel:"قائمة الدول",searchPlaceholder:"يبحث",zeroSearchResults:"لم يتم العثور على نتائج",oneSearchResult:"تم العثور على نتيجة واحدة",multipleSearchResults:"تم العثور على ${count} من النتائج",ac:"جزيرة الصعود",xk:"كوسوفو"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[410],{830:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"أندورا",ae:"الإمارات العربية المتحدة",af:"أفغانستان",ag:"أنتيغوا وبربودا",ai:"أنغويلا",al:"ألبانيا",am:"أرمينيا",ao:"أنغولا",ar:"الأرجنتين",as:"ساموا الأمريكية",at:"النمسا",au:"أستراليا",aw:"أروبا",ax:"جزر آلاند",az:"أذربيجان",ba:"البوسنة والهرسك",bb:"بربادوس",bd:"بنغلاديش",be:"بلجيكا",bf:"بوركينا فاسو",bg:"بلغاريا",bh:"البحرين",bi:"بوروندي",bj:"بنين",bl:"سان بارتليمي",bm:"برمودا",bn:"بروناي",bo:"بوليفيا",bq:"هولندا الكاريبية",br:"البرازيل",bs:"جزر البهاما",bt:"بوتان",bw:"بوتسوانا",by:"بيلاروس",bz:"بليز",ca:"كندا",cc:"جزر كوكوس (كيلينغ)",cd:"الكونغو - كينشاسا",cf:"جمهورية أفريقيا الوسطى",cg:"الكونغو - برازافيل",ch:"سويسرا",ci:"ساحل العاج",ck:"جزر كوك",cl:"تشيلي",cm:"الكاميرون",cn:"الصين",co:"كولومبيا",cr:"كوستاريكا",cu:"كوبا",cv:"الرأس الأخضر",cw:"كوراساو",cx:"جزيرة كريسماس",cy:"قبرص",cz:"التشيك",de:"ألمانيا",dj:"جيبوتي",dk:"الدانمرك",dm:"دومينيكا",do:"جمهورية الدومينيكان",dz:"الجزائر",ec:"الإكوادور",ee:"إستونيا",eg:"مصر",eh:"الصحراء الغربية",er:"إريتريا",es:"إسبانيا",et:"إثيوبيا",fi:"فنلندا",fj:"فيجي",fk:"جزر فوكلاند",fm:"ميكرونيزيا",fo:"جزر فارو",fr:"فرنسا",ga:"الغابون",gb:"المملكة المتحدة",gd:"غرينادا",ge:"جورجيا",gf:"غويانا الفرنسية",gg:"غيرنزي",gh:"غانا",gi:"جبل طارق",gl:"غرينلاند",gm:"غامبيا",gn:"غينيا",gp:"غوادلوب",gq:"غينيا الاستوائية",gr:"اليونان",gt:"غواتيمالا",gu:"غوام",gw:"غينيا بيساو",gy:"غيانا",hk:"هونغ كونغ الصينية (منطقة إدارية خاصة)",hn:"هندوراس",hr:"كرواتيا",ht:"هايتي",hu:"هنغاريا",id:"إندونيسيا",ie:"أيرلندا",il:"إسرائيل",im:"جزيرة مان",in:"الهند",io:"الإقليم البريطاني في المحيط الهندي",iq:"العراق",ir:"إيران",is:"آيسلندا",it:"إيطاليا",je:"جيرسي",jm:"جامايكا",jo:"الأردن",jp:"اليابان",ke:"كينيا",kg:"قيرغيزستان",kh:"كمبوديا",ki:"كيريباتي",km:"جزر القمر",kn:"سانت كيتس ونيفيس",kp:"كوريا الشمالية",kr:"كوريا الجنوبية",kw:"الكويت",ky:"جزر كايمان",kz:"كازاخستان",la:"لاوس",lb:"لبنان",lc:"سانت لوسيا",li:"ليختنشتاين",lk:"سريلانكا",lr:"ليبيريا",ls:"ليسوتو",lt:"ليتوانيا",lu:"لوكسمبورغ",lv:"لاتفيا",ly:"ليبيا",ma:"المغرب",mc:"موناكو",md:"مولدوفا",me:"الجبل الأسود",mf:"سان مارتن",mg:"مدغشقر",mh:"جزر مارشال",mk:"مقدونيا الشمالية",ml:"مالي",mm:"ميانمار (بورما)",mn:"منغوليا",mo:"منطقة ماكاو الإدارية الخاصة",mp:"جزر ماريانا الشمالية",mq:"جزر المارتينيك",mr:"موريتانيا",ms:"مونتسرات",mt:"مالطا",mu:"موريشيوس",mv:"جزر المالديف",mw:"ملاوي",mx:"المكسيك",my:"ماليزيا",mz:"موزمبيق",na:"ناميبيا",nc:"كاليدونيا الجديدة",ne:"النيجر",nf:"جزيرة نورفولك",ng:"نيجيريا",ni:"نيكاراغوا",nl:"هولندا",no:"النرويج",np:"نيبال",nr:"ناورو",nu:"نيوي",nz:"نيوزيلندا",om:"عُمان",pa:"بنما",pe:"بيرو",pf:"بولينيزيا الفرنسية",pg:"بابوا غينيا الجديدة",ph:"الفلبين",pk:"باكستان",pl:"بولندا",pm:"سان بيير ومكويلون",pr:"بورتوريكو",ps:"الأراضي الفلسطينية",pt:"البرتغال",pw:"بالاو",py:"باراغواي",qa:"قطر",re:"روينيون",ro:"رومانيا",rs:"صربيا",ru:"روسيا",rw:"رواندا",sa:"المملكة العربية السعودية",sb:"جزر سليمان",sc:"سيشل",sd:"السودان",se:"السويد",sg:"سنغافورة",sh:"سانت هيلينا",si:"سلوفينيا",sj:"سفالبارد وجان ماين",sk:"سلوفاكيا",sl:"سيراليون",sm:"سان مارينو",sn:"السنغال",so:"الصومال",sr:"سورينام",ss:"جنوب السودان",st:"ساو تومي وبرينسيبي",sv:"السلفادور",sx:"سانت مارتن",sy:"سوريا",sz:"إسواتيني",tc:"جزر توركس وكايكوس",td:"تشاد",tg:"توغو",th:"تايلاند",tj:"طاجيكستان",tk:"توكيلو",tl:"تيمور - ليشتي",tm:"تركمانستان",tn:"تونس",to:"تونغا",tr:"تركيا",tt:"ترينيداد وتوباغو",tv:"توفالو",tw:"تايوان",tz:"تنزانيا",ua:"أوكرانيا",ug:"أوغندا",us:"الولايات المتحدة",uy:"أورغواي",uz:"أوزبكستان",va:"الفاتيكان",vc:"سانت فنسنت وجزر غرينادين",ve:"فنزويلا",vg:"جزر فيرجن البريطانية",vi:"جزر فيرجن التابعة للولايات المتحدة",vn:"فيتنام",vu:"فانواتو",wf:"جزر والس وفوتونا",ws:"ساموا",ye:"اليمن",yt:"مايوت",za:"جنوب أفريقيا",zm:"زامبيا",zw:"زيمبابوي"},c={selectedCountryAriaLabel:"البلد المحدد",noCountrySelected:"لم يتم تحديد أي بلد",countryListAriaLabel:"قائمة الدول",searchPlaceholder:"يبحث",zeroSearchResults:"لم يتم العثور على نتائج",oneSearchResult:"تم العثور على نتيجة واحدة",multipleSearchResults:"تم العثور على ${count} من النتائج",ac:"جزيرة الصعود",xk:"كوسوفو"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-bg.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-bg.js index f703942a0..e1a67f252 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-bg.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-bg.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[590],{574(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"Андора",ae:"Обединени арабски емирства",af:"Афганистан",ag:"Антигуа и Барбуда",ai:"Ангуила",al:"Албания",am:"Армения",ao:"Ангола",ar:"Аржентина",as:"Американска Самоа",at:"Австрия",au:"Австралия",aw:"Аруба",ax:"Оландски острови",az:"Азербайджан",ba:"Босна и Херцеговина",bb:"Барбадос",bd:"Бангладеш",be:"Белгия",bf:"Буркина Фасо",bg:"България",bh:"Бахрейн",bi:"Бурунди",bj:"Бенин",bl:"Сен Бартелеми",bm:"Бермудски острови",bn:"Бруней Даруссалам",bo:"Боливия",bq:"Карибска Нидерландия",br:"Бразилия",bs:"Бахамски острови",bt:"Бутан",bw:"Ботсвана",by:"Беларус",bz:"Белиз",ca:"Канада",cc:"Кокосови острови (острови Кийлинг)",cd:"Конго (Киншаса)",cf:"Централноафриканска република",cg:"Конго (Бразавил)",ch:"Швейцария",ci:"Кот д’Ивоар",ck:"острови Кук",cl:"Чили",cm:"Камерун",cn:"Китай",co:"Колумбия",cr:"Коста Рика",cu:"Куба",cv:"Кабо Верде",cw:"Кюрасао",cx:"остров Рождество",cy:"Кипър",cz:"Чехия",de:"Германия",dj:"Джибути",dk:"Дания",dm:"Доминика",do:"Доминиканска република",dz:"Алжир",ec:"Еквадор",ee:"Естония",eg:"Египет",eh:"Западна Сахара",er:"Еритрея",es:"Испания",et:"Етиопия",fi:"Финландия",fj:"Фиджи",fk:"Фолкландски острови",fm:"Микронезия",fo:"Фарьорски острови",fr:"Франция",ga:"Габон",gb:"Обединеното кралство",gd:"Гренада",ge:"Грузия",gf:"Френска Гвиана",gg:"Гърнзи",gh:"Гана",gi:"Гибралтар",gl:"Гренландия",gm:"Гамбия",gn:"Гвинея",gp:"Гваделупа",gq:"Екваториална Гвинея",gr:"Гърция",gt:"Гватемала",gu:"Гуам",gw:"Гвинея-Бисау",gy:"Гаяна",hk:"Хонконг, САР на Китай",hn:"Хондурас",hr:"Хърватия",ht:"Хаити",hu:"Унгария",id:"Индонезия",ie:"Ирландия",il:"Израел",im:"остров Ман",in:"Индия",io:"Британска територия в Индийския океан",iq:"Ирак",ir:"Иран",is:"Исландия",it:"Италия",je:"Джърси",jm:"Ямайка",jo:"Йордания",jp:"Япония",ke:"Кения",kg:"Киргизстан",kh:"Камбоджа",ki:"Кирибати",km:"Коморски острови",kn:"Сейнт Китс и Невис",kp:"Северна Корея",kr:"Южна Корея",kw:"Кувейт",ky:"Кайманови острови",kz:"Казахстан",la:"Лаос",lb:"Ливан",lc:"Сейнт Лусия",li:"Лихтенщайн",lk:"Шри Ланка",lr:"Либерия",ls:"Лесото",lt:"Литва",lu:"Люксембург",lv:"Латвия",ly:"Либия",ma:"Мароко",mc:"Монако",md:"Молдова",me:"Черна гора",mf:"Сен Мартен",mg:"Мадагаскар",mh:"Маршалови острови",mk:"Северна Македония",ml:"Мали",mm:"Мианмар (Бирма)",mn:"Монголия",mo:"Макао, САР на Китай",mp:"Северни Мариански острови",mq:"Мартиника",mr:"Мавритания",ms:"Монтсерат",mt:"Малта",mu:"Мавриций",mv:"Малдиви",mw:"Малави",mx:"Мексико",my:"Малайзия",mz:"Мозамбик",na:"Намибия",nc:"Нова Каледония",ne:"Нигер",nf:"остров Норфолк",ng:"Нигерия",ni:"Никарагуа",nl:"Нидерландия",no:"Норвегия",np:"Непал",nr:"Науру",nu:"Ниуе",nz:"Нова Зеландия",om:"Оман",pa:"Панама",pe:"Перу",pf:"Френска Полинезия",pg:"Папуа-Нова Гвинея",ph:"Филипини",pk:"Пакистан",pl:"Полша",pm:"Сен Пиер и Микелон",pr:"Пуерто Рико",ps:"Палестински територии",pt:"Португалия",pw:"Палау",py:"Парагвай",qa:"Катар",re:"Реюнион",ro:"Румъния",rs:"Сърбия",ru:"Русия",rw:"Руанда",sa:"Саудитска Арабия",sb:"Соломонови острови",sc:"Сейшели",sd:"Судан",se:"Швеция",sg:"Сингапур",sh:"Света Елена",si:"Словения",sj:"Свалбард и Ян Майен",sk:"Словакия",sl:"Сиера Леоне",sm:"Сан Марино",sn:"Сенегал",so:"Сомалия",sr:"Суринам",ss:"Южен Судан",st:"Сао Томе и Принсипи",sv:"Салвадор",sx:"Синт Мартен",sy:"Сирия",sz:"Есватини",tc:"острови Търкс и Кайкос",td:"Чад",tg:"Того",th:"Тайланд",tj:"Таджикистан",tk:"Токелау",tl:"Източен Тимор",tm:"Туркменистан",tn:"Тунис",to:"Тонга",tr:"Турция",tt:"Тринидад и Тобаго",tv:"Тувалу",tw:"Тайван",tz:"Танзания",ua:"Украйна",ug:"Уганда",us:"Съединени щати",uy:"Уругвай",uz:"Узбекистан",va:"Ватикан",vc:"Сейнт Винсънт и Гренадини",ve:"Венецуела",vg:"Британски Вирджински острови",vi:"Американски Вирджински острови",vn:"Виетнам",vu:"Вануату",wf:"Уолис и Футуна",ws:"Самоа",ye:"Йемен",yt:"Майот",za:"Южна Африка",zm:"Замбия",zw:"Зимбабве"},c={selectedCountryAriaLabel:"Избрана държава",noCountrySelected:"Няма избрана държава",countryListAriaLabel:"Списък на страните",searchPlaceholder:"Търсене",zeroSearchResults:"Няма намерени резултати",oneSearchResult:"Намерен е 1 резултат",multipleSearchResults:"${count} намерени резултата",ac:"Остров Възнесение",xk:"Косово"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[590],{574:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"Андора",ae:"Обединени арабски емирства",af:"Афганистан",ag:"Антигуа и Барбуда",ai:"Ангуила",al:"Албания",am:"Армения",ao:"Ангола",ar:"Аржентина",as:"Американска Самоа",at:"Австрия",au:"Австралия",aw:"Аруба",ax:"Оландски острови",az:"Азербайджан",ba:"Босна и Херцеговина",bb:"Барбадос",bd:"Бангладеш",be:"Белгия",bf:"Буркина Фасо",bg:"България",bh:"Бахрейн",bi:"Бурунди",bj:"Бенин",bl:"Сен Бартелеми",bm:"Бермудски острови",bn:"Бруней Даруссалам",bo:"Боливия",bq:"Карибска Нидерландия",br:"Бразилия",bs:"Бахамски острови",bt:"Бутан",bw:"Ботсвана",by:"Беларус",bz:"Белиз",ca:"Канада",cc:"Кокосови острови (острови Кийлинг)",cd:"Конго (Киншаса)",cf:"Централноафриканска република",cg:"Конго (Бразавил)",ch:"Швейцария",ci:"Кот д’Ивоар",ck:"острови Кук",cl:"Чили",cm:"Камерун",cn:"Китай",co:"Колумбия",cr:"Коста Рика",cu:"Куба",cv:"Кабо Верде",cw:"Кюрасао",cx:"остров Рождество",cy:"Кипър",cz:"Чехия",de:"Германия",dj:"Джибути",dk:"Дания",dm:"Доминика",do:"Доминиканска република",dz:"Алжир",ec:"Еквадор",ee:"Естония",eg:"Египет",eh:"Западна Сахара",er:"Еритрея",es:"Испания",et:"Етиопия",fi:"Финландия",fj:"Фиджи",fk:"Фолкландски острови",fm:"Микронезия",fo:"Фарьорски острови",fr:"Франция",ga:"Габон",gb:"Обединеното кралство",gd:"Гренада",ge:"Грузия",gf:"Френска Гвиана",gg:"Гърнзи",gh:"Гана",gi:"Гибралтар",gl:"Гренландия",gm:"Гамбия",gn:"Гвинея",gp:"Гваделупа",gq:"Екваториална Гвинея",gr:"Гърция",gt:"Гватемала",gu:"Гуам",gw:"Гвинея-Бисау",gy:"Гаяна",hk:"Хонконг, САР на Китай",hn:"Хондурас",hr:"Хърватия",ht:"Хаити",hu:"Унгария",id:"Индонезия",ie:"Ирландия",il:"Израел",im:"остров Ман",in:"Индия",io:"Британска територия в Индийския океан",iq:"Ирак",ir:"Иран",is:"Исландия",it:"Италия",je:"Джърси",jm:"Ямайка",jo:"Йордания",jp:"Япония",ke:"Кения",kg:"Киргизстан",kh:"Камбоджа",ki:"Кирибати",km:"Коморски острови",kn:"Сейнт Китс и Невис",kp:"Северна Корея",kr:"Южна Корея",kw:"Кувейт",ky:"Кайманови острови",kz:"Казахстан",la:"Лаос",lb:"Ливан",lc:"Сейнт Лусия",li:"Лихтенщайн",lk:"Шри Ланка",lr:"Либерия",ls:"Лесото",lt:"Литва",lu:"Люксембург",lv:"Латвия",ly:"Либия",ma:"Мароко",mc:"Монако",md:"Молдова",me:"Черна гора",mf:"Сен Мартен",mg:"Мадагаскар",mh:"Маршалови острови",mk:"Северна Македония",ml:"Мали",mm:"Мианмар (Бирма)",mn:"Монголия",mo:"Макао, САР на Китай",mp:"Северни Мариански острови",mq:"Мартиника",mr:"Мавритания",ms:"Монтсерат",mt:"Малта",mu:"Мавриций",mv:"Малдиви",mw:"Малави",mx:"Мексико",my:"Малайзия",mz:"Мозамбик",na:"Намибия",nc:"Нова Каледония",ne:"Нигер",nf:"остров Норфолк",ng:"Нигерия",ni:"Никарагуа",nl:"Нидерландия",no:"Норвегия",np:"Непал",nr:"Науру",nu:"Ниуе",nz:"Нова Зеландия",om:"Оман",pa:"Панама",pe:"Перу",pf:"Френска Полинезия",pg:"Папуа-Нова Гвинея",ph:"Филипини",pk:"Пакистан",pl:"Полша",pm:"Сен Пиер и Микелон",pr:"Пуерто Рико",ps:"Палестински територии",pt:"Португалия",pw:"Палау",py:"Парагвай",qa:"Катар",re:"Реюнион",ro:"Румъния",rs:"Сърбия",ru:"Русия",rw:"Руанда",sa:"Саудитска Арабия",sb:"Соломонови острови",sc:"Сейшели",sd:"Судан",se:"Швеция",sg:"Сингапур",sh:"Света Елена",si:"Словения",sj:"Свалбард и Ян Майен",sk:"Словакия",sl:"Сиера Леоне",sm:"Сан Марино",sn:"Сенегал",so:"Сомалия",sr:"Суринам",ss:"Южен Судан",st:"Сао Томе и Принсипи",sv:"Салвадор",sx:"Синт Мартен",sy:"Сирия",sz:"Есватини",tc:"острови Търкс и Кайкос",td:"Чад",tg:"Того",th:"Тайланд",tj:"Таджикистан",tk:"Токелау",tl:"Източен Тимор",tm:"Туркменистан",tn:"Тунис",to:"Тонга",tr:"Турция",tt:"Тринидад и Тобаго",tv:"Тувалу",tw:"Тайван",tz:"Танзания",ua:"Украйна",ug:"Уганда",us:"Съединени щати",uy:"Уругвай",uz:"Узбекистан",va:"Ватикан",vc:"Сейнт Винсънт и Гренадини",ve:"Венецуела",vg:"Британски Вирджински острови",vi:"Американски Вирджински острови",vn:"Виетнам",vu:"Вануату",wf:"Уолис и Футуна",ws:"Самоа",ye:"Йемен",yt:"Майот",za:"Южна Африка",zm:"Замбия",zw:"Зимбабве"},c={selectedCountryAriaLabel:"Избрана държава",noCountrySelected:"Няма избрана държава",countryListAriaLabel:"Списък на страните",searchPlaceholder:"Търсене",zeroSearchResults:"Няма намерени резултати",oneSearchResult:"Намерен е 1 резултат",multipleSearchResults:"${count} намерени резултата",ac:"Остров Възнесение",xk:"Косово"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-bn.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-bn.js index cd1e7b1ce..dc39911de 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-bn.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-bn.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[231],{655(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"আন্ডোরা",ae:"সংযুক্ত আরব আমিরাত",af:"আফগানিস্তান",ag:"অ্যান্টিগুয়া ও বারবুডা",ai:"এ্যাঙ্গুইলা",al:"আলবেনিয়া",am:"আর্মেনিয়া",ao:"অ্যাঙ্গোলা",ar:"আর্জেন্টিনা",as:"আমেরিকান সামোয়া",at:"অস্ট্রিয়া",au:"অস্ট্রেলিয়া",aw:"আরুবা",ax:"আলান্ড দ্বীপপুঞ্জ",az:"আজারবাইজান",ba:"বসনিয়া ও হার্জেগোভিনা",bb:"বারবাদোস",bd:"বাংলাদেশ",be:"বেলজিয়াম",bf:"বুরকিনা ফাসো",bg:"বুলগেরিয়া",bh:"বাহরাইন",bi:"বুরুন্ডি",bj:"বেনিন",bl:"সেন্ট বারথেলিমি",bm:"বারমুডা",bn:"ব্রুনেই",bo:"বলিভিয়া",bq:"ক্যারিবিয়ান নেদারল্যান্ডস",br:"ব্রাজিল",bs:"বাহামা দ্বীপপুঞ্জ",bt:"ভুটান",bw:"বতসোয়ানা",by:"বেলারুশ",bz:"বেলিজ",ca:"কানাডা",cc:"কোকোস (কিলিং) দ্বীপপুঞ্জ",cd:"কঙ্গো-কিনশাসা",cf:"মধ্য আফ্রিকার প্রজাতন্ত্র",cg:"কঙ্গো - ব্রাজাভিল",ch:"সুইজারল্যান্ড",ci:"কোত দিভোয়ার",ck:"কুক দ্বীপপুঞ্জ",cl:"চিলি",cm:"ক্যামেরুন",cn:"চীন",co:"কলম্বিয়া",cr:"কোস্টারিকা",cu:"কিউবা",cv:"কেপভার্দে",cw:"কুরাসাও",cx:"ক্রিসমাস দ্বীপ",cy:"সাইপ্রাস",cz:"চেচিয়া",de:"জার্মানি",dj:"জিবুতি",dk:"ডেনমার্ক",dm:"ডোমিনিকা",do:"ডোমেনিকান প্রজাতন্ত্র",dz:"আলজেরিয়া",ec:"ইকুয়েডর",ee:"এস্তোনিয়া",eg:"মিশর",eh:"পশ্চিম সাহারা",er:"ইরিত্রিয়া",es:"স্পেন",et:"ইথিওপিয়া",fi:"ফিনল্যান্ড",fj:"ফিজি",fk:"ফকল্যান্ড দ্বীপপুঞ্জ",fm:"মাইক্রোনেশিয়া",fo:"ফ্যারও দ্বীপপুঞ্জ",fr:"ফ্রান্স",ga:"গ্যাবন",gb:"যুক্তরাজ্য",gd:"গ্রেনাডা",ge:"জর্জিয়া",gf:"ফরাসী গায়ানা",gg:"গুয়ার্নসি",gh:"ঘানা",gi:"জিব্রাল্টার",gl:"গ্রীনল্যান্ড",gm:"গাম্বিয়া",gn:"গিনি",gp:"গুয়াদেলৌপ",gq:"নিরক্ষীয় গিনি",gr:"গ্রীস",gt:"গুয়াতেমালা",gu:"গুয়াম",gw:"গিনি-বিসাউ",gy:"গিয়ানা",hk:"হংকং এসএআর চীনা",hn:"হন্ডুরাস",hr:"ক্রোয়েশিয়া",ht:"হাইতি",hu:"হাঙ্গেরি",id:"ইন্দোনেশিয়া",ie:"আয়ারল্যান্ড",il:"ইজরায়েল",im:"আইল অফ ম্যান",in:"ভারত",io:"ব্রিটিশ ভারত মহাসাগরীয় অঞ্চল",iq:"ইরাক",ir:"ইরান",is:"আইসল্যান্ড",it:"ইতালি",je:"জার্সি",jm:"জামাইকা",jo:"জর্ডন",jp:"জাপান",ke:"কেনিয়া",kg:"কিরগিজিস্তান",kh:"কম্বোডিয়া",ki:"কিরিবাতি",km:"কমোরোস",kn:"সেন্ট কিটস ও নেভিস",kp:"উত্তর কোরিয়া",kr:"দক্ষিণ কোরিয়া",kw:"কুয়েত",ky:"কেম্যান দ্বীপপুঞ্জ",kz:"কাজাখস্তান",la:"লাওস",lb:"লেবানন",lc:"সেন্ট লুসিয়া",li:"লিচেনস্টেইন",lk:"শ্রীলঙ্কা",lr:"লাইবেরিয়া",ls:"লেসোথো",lt:"লিথুয়ানিয়া",lu:"লাক্সেমবার্গ",lv:"লাত্ভিয়া",ly:"লিবিয়া",ma:"মোরক্কো",mc:"মোনাকো",md:"মলডোভা",me:"মন্টিনিগ্রো",mf:"সেন্ট মার্টিন",mg:"মাদাগাস্কার",mh:"মার্শাল দ্বীপপুঞ্জ",mk:"উত্তর ম্যাসেডোনিয়া",ml:"মালি",mm:"মায়ানমার (বার্মা)",mn:"মঙ্গোলিয়া",mo:"ম্যাকাও এসএআর চীনা",mp:"উত্তরাঞ্চলীয় মারিয়ানা দ্বীপপুঞ্জ",mq:"মার্টিনিক",mr:"মরিতানিয়া",ms:"মন্টসেরাট",mt:"মাল্টা",mu:"মরিশাস",mv:"মালদ্বীপ",mw:"মালাউই",mx:"মেক্সিকো",my:"মালয়েশিয়া",mz:"মোজাম্বিক",na:"নামিবিয়া",nc:"নিউ ক্যালেডোনিয়া",ne:"নাইজার",nf:"নরফোক দ্বীপ",ng:"নাইজেরিয়া",ni:"নিকারাগুয়া",nl:"নেদারল্যান্ডস",no:"নরওয়ে",np:"নেপাল",nr:"নাউরু",nu:"নিউয়ে",nz:"নিউজিল্যান্ড",om:"ওমান",pa:"পানামা",pe:"পেরু",pf:"ফরাসী পলিনেশিয়া",pg:"পাপুয়া নিউ গিনি",ph:"ফিলিপাইন",pk:"পাকিস্তান",pl:"পোল্যান্ড",pm:"সেন্ট পিয়ের ও মিকুয়েলন",pr:"পুয়ের্তো রিকো",ps:"প্যালেস্টাইনের অঞ্চলসমূহ",pt:"পর্তুগাল",pw:"পালাউ",py:"প্যারাগুয়ে",qa:"কাতার",re:"রিইউনিয়ন",ro:"রোমানিয়া",rs:"সার্বিয়া",ru:"রাশিয়া",rw:"রুয়ান্ডা",sa:"সৌদি আরব",sb:"সলোমন দ্বীপপুঞ্জ",sc:"সিসিলি",sd:"সুদান",se:"সুইডেন",sg:"সিঙ্গাপুর",sh:"সেন্ট হেলেনা",si:"স্লোভানিয়া",sj:"স্বালবার্ড ও জান মেয়েন",sk:"স্লোভাকিয়া",sl:"সিয়েরা লিওন",sm:"সান মারিনো",sn:"সেনেগাল",so:"সোমালিয়া",sr:"সুরিনাম",ss:"দক্ষিণ সুদান",st:"সাওটোমা ও প্রিন্সিপি",sv:"এল সালভেদর",sx:"সিন্ট মার্টেন",sy:"সিরিয়া",sz:"ইসওয়াতিনি",tc:"তুর্কস ও কাইকোস দ্বীপপুঞ্জ",td:"চাদ",tg:"টোগো",th:"থাইল্যান্ড",tj:"তাজিকিস্তান",tk:"টোকেলাউ",tl:"তিমুর-লেস্তে",tm:"তুর্কমেনিস্তান",tn:"তিউনিসিয়া",to:"টোঙ্গা",tr:"তুরস্ক",tt:"ত্রিনিনাদ ও টোব্যাগো",tv:"টুভালু",tw:"তাইওয়ান",tz:"তাঞ্জানিয়া",ua:"ইউক্রেন",ug:"উগান্ডা",us:"মার্কিন যুক্তরাষ্ট্র",uy:"উরুগুয়ে",uz:"উজবেকিস্তান",va:"ভ্যাটিকান সিটি",vc:"সেন্ট ভিনসেন্ট ও গ্রেনাডিনস",ve:"ভেনেজুয়েলা",vg:"ব্রিটিশ ভার্জিন দ্বীপপুঞ্জ",vi:"মার্কিন যুক্তরাষ্ট্রের ভার্জিন দ্বীপপুঞ্জ",vn:"ভিয়েতনাম",vu:"ভানুয়াটু",wf:"ওয়ালিস ও ফুটুনা",ws:"সামোয়া",ye:"ইয়েমেন",yt:"মায়োত্তে",za:"দক্ষিণ আফ্রিকা",zm:"জাম্বিয়া",zw:"জিম্বাবোয়ে"},c={selectedCountryAriaLabel:"নির্বাচিত দেশ",noCountrySelected:"কোনো দেশ নির্বাচন করা হয়নি",countryListAriaLabel:"দেশের তালিকা",searchPlaceholder:"অনুসন্ধান করুন",zeroSearchResults:"কোন ফলাফল পাওয়া যায়নি",oneSearchResult:"1টি ফলাফল পাওয়া গেছে",multipleSearchResults:"${count} ফলাফল পাওয়া গেছে",ac:"অ্যাসেনশন দ্বীপ",xk:"কসোভো"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[231],{655:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"আন্ডোরা",ae:"সংযুক্ত আরব আমিরাত",af:"আফগানিস্তান",ag:"অ্যান্টিগুয়া ও বারবুডা",ai:"এ্যাঙ্গুইলা",al:"আলবেনিয়া",am:"আর্মেনিয়া",ao:"অ্যাঙ্গোলা",ar:"আর্জেন্টিনা",as:"আমেরিকান সামোয়া",at:"অস্ট্রিয়া",au:"অস্ট্রেলিয়া",aw:"আরুবা",ax:"আলান্ড দ্বীপপুঞ্জ",az:"আজারবাইজান",ba:"বসনিয়া ও হার্জেগোভিনা",bb:"বারবাদোস",bd:"বাংলাদেশ",be:"বেলজিয়াম",bf:"বুরকিনা ফাসো",bg:"বুলগেরিয়া",bh:"বাহরাইন",bi:"বুরুন্ডি",bj:"বেনিন",bl:"সেন্ট বারথেলিমি",bm:"বারমুডা",bn:"ব্রুনেই",bo:"বলিভিয়া",bq:"ক্যারিবিয়ান নেদারল্যান্ডস",br:"ব্রাজিল",bs:"বাহামা দ্বীপপুঞ্জ",bt:"ভুটান",bw:"বতসোয়ানা",by:"বেলারুশ",bz:"বেলিজ",ca:"কানাডা",cc:"কোকোস (কিলিং) দ্বীপপুঞ্জ",cd:"কঙ্গো-কিনশাসা",cf:"মধ্য আফ্রিকার প্রজাতন্ত্র",cg:"কঙ্গো - ব্রাজাভিল",ch:"সুইজারল্যান্ড",ci:"কোত দিভোয়ার",ck:"কুক দ্বীপপুঞ্জ",cl:"চিলি",cm:"ক্যামেরুন",cn:"চীন",co:"কলম্বিয়া",cr:"কোস্টারিকা",cu:"কিউবা",cv:"কেপভার্দে",cw:"কুরাসাও",cx:"ক্রিসমাস দ্বীপ",cy:"সাইপ্রাস",cz:"চেচিয়া",de:"জার্মানি",dj:"জিবুতি",dk:"ডেনমার্ক",dm:"ডোমিনিকা",do:"ডোমেনিকান প্রজাতন্ত্র",dz:"আলজেরিয়া",ec:"ইকুয়েডর",ee:"এস্তোনিয়া",eg:"মিশর",eh:"পশ্চিম সাহারা",er:"ইরিত্রিয়া",es:"স্পেন",et:"ইথিওপিয়া",fi:"ফিনল্যান্ড",fj:"ফিজি",fk:"ফকল্যান্ড দ্বীপপুঞ্জ",fm:"মাইক্রোনেশিয়া",fo:"ফ্যারও দ্বীপপুঞ্জ",fr:"ফ্রান্স",ga:"গ্যাবন",gb:"যুক্তরাজ্য",gd:"গ্রেনাডা",ge:"জর্জিয়া",gf:"ফরাসী গায়ানা",gg:"গুয়ার্নসি",gh:"ঘানা",gi:"জিব্রাল্টার",gl:"গ্রীনল্যান্ড",gm:"গাম্বিয়া",gn:"গিনি",gp:"গুয়াদেলৌপ",gq:"নিরক্ষীয় গিনি",gr:"গ্রীস",gt:"গুয়াতেমালা",gu:"গুয়াম",gw:"গিনি-বিসাউ",gy:"গিয়ানা",hk:"হংকং এসএআর চীনা",hn:"হন্ডুরাস",hr:"ক্রোয়েশিয়া",ht:"হাইতি",hu:"হাঙ্গেরি",id:"ইন্দোনেশিয়া",ie:"আয়ারল্যান্ড",il:"ইজরায়েল",im:"আইল অফ ম্যান",in:"ভারত",io:"ব্রিটিশ ভারত মহাসাগরীয় অঞ্চল",iq:"ইরাক",ir:"ইরান",is:"আইসল্যান্ড",it:"ইতালি",je:"জার্সি",jm:"জামাইকা",jo:"জর্ডন",jp:"জাপান",ke:"কেনিয়া",kg:"কিরগিজিস্তান",kh:"কম্বোডিয়া",ki:"কিরিবাতি",km:"কমোরোস",kn:"সেন্ট কিটস ও নেভিস",kp:"উত্তর কোরিয়া",kr:"দক্ষিণ কোরিয়া",kw:"কুয়েত",ky:"কেম্যান দ্বীপপুঞ্জ",kz:"কাজাখস্তান",la:"লাওস",lb:"লেবানন",lc:"সেন্ট লুসিয়া",li:"লিচেনস্টেইন",lk:"শ্রীলঙ্কা",lr:"লাইবেরিয়া",ls:"লেসোথো",lt:"লিথুয়ানিয়া",lu:"লাক্সেমবার্গ",lv:"লাত্ভিয়া",ly:"লিবিয়া",ma:"মোরক্কো",mc:"মোনাকো",md:"মলডোভা",me:"মন্টিনিগ্রো",mf:"সেন্ট মার্টিন",mg:"মাদাগাস্কার",mh:"মার্শাল দ্বীপপুঞ্জ",mk:"উত্তর ম্যাসেডোনিয়া",ml:"মালি",mm:"মায়ানমার (বার্মা)",mn:"মঙ্গোলিয়া",mo:"ম্যাকাও এসএআর চীনা",mp:"উত্তরাঞ্চলীয় মারিয়ানা দ্বীপপুঞ্জ",mq:"মার্টিনিক",mr:"মরিতানিয়া",ms:"মন্টসেরাট",mt:"মাল্টা",mu:"মরিশাস",mv:"মালদ্বীপ",mw:"মালাউই",mx:"মেক্সিকো",my:"মালয়েশিয়া",mz:"মোজাম্বিক",na:"নামিবিয়া",nc:"নিউ ক্যালেডোনিয়া",ne:"নাইজার",nf:"নরফোক দ্বীপ",ng:"নাইজেরিয়া",ni:"নিকারাগুয়া",nl:"নেদারল্যান্ডস",no:"নরওয়ে",np:"নেপাল",nr:"নাউরু",nu:"নিউয়ে",nz:"নিউজিল্যান্ড",om:"ওমান",pa:"পানামা",pe:"পেরু",pf:"ফরাসী পলিনেশিয়া",pg:"পাপুয়া নিউ গিনি",ph:"ফিলিপাইন",pk:"পাকিস্তান",pl:"পোল্যান্ড",pm:"সেন্ট পিয়ের ও মিকুয়েলন",pr:"পুয়ের্তো রিকো",ps:"প্যালেস্টাইনের অঞ্চলসমূহ",pt:"পর্তুগাল",pw:"পালাউ",py:"প্যারাগুয়ে",qa:"কাতার",re:"রিইউনিয়ন",ro:"রোমানিয়া",rs:"সার্বিয়া",ru:"রাশিয়া",rw:"রুয়ান্ডা",sa:"সৌদি আরব",sb:"সলোমন দ্বীপপুঞ্জ",sc:"সিসিলি",sd:"সুদান",se:"সুইডেন",sg:"সিঙ্গাপুর",sh:"সেন্ট হেলেনা",si:"স্লোভানিয়া",sj:"স্বালবার্ড ও জান মেয়েন",sk:"স্লোভাকিয়া",sl:"সিয়েরা লিওন",sm:"সান মারিনো",sn:"সেনেগাল",so:"সোমালিয়া",sr:"সুরিনাম",ss:"দক্ষিণ সুদান",st:"সাওটোমা ও প্রিন্সিপি",sv:"এল সালভেদর",sx:"সিন্ট মার্টেন",sy:"সিরিয়া",sz:"ইসওয়াতিনি",tc:"তুর্কস ও কাইকোস দ্বীপপুঞ্জ",td:"চাদ",tg:"টোগো",th:"থাইল্যান্ড",tj:"তাজিকিস্তান",tk:"টোকেলাউ",tl:"তিমুর-লেস্তে",tm:"তুর্কমেনিস্তান",tn:"তিউনিসিয়া",to:"টোঙ্গা",tr:"তুরস্ক",tt:"ত্রিনিনাদ ও টোব্যাগো",tv:"টুভালু",tw:"তাইওয়ান",tz:"তাঞ্জানিয়া",ua:"ইউক্রেন",ug:"উগান্ডা",us:"মার্কিন যুক্তরাষ্ট্র",uy:"উরুগুয়ে",uz:"উজবেকিস্তান",va:"ভ্যাটিকান সিটি",vc:"সেন্ট ভিনসেন্ট ও গ্রেনাডিনস",ve:"ভেনেজুয়েলা",vg:"ব্রিটিশ ভার্জিন দ্বীপপুঞ্জ",vi:"মার্কিন যুক্তরাষ্ট্রের ভার্জিন দ্বীপপুঞ্জ",vn:"ভিয়েতনাম",vu:"ভানুয়াটু",wf:"ওয়ালিস ও ফুটুনা",ws:"সামোয়া",ye:"ইয়েমেন",yt:"মায়োত্তে",za:"দক্ষিণ আফ্রিকা",zm:"জাম্বিয়া",zw:"জিম্বাবোয়ে"},c={selectedCountryAriaLabel:"নির্বাচিত দেশ",noCountrySelected:"কোনো দেশ নির্বাচন করা হয়নি",countryListAriaLabel:"দেশের তালিকা",searchPlaceholder:"অনুসন্ধান করুন",zeroSearchResults:"কোন ফলাফল পাওয়া যায়নি",oneSearchResult:"1টি ফলাফল পাওয়া গেছে",multipleSearchResults:"${count} ফলাফল পাওয়া গেছে",ac:"অ্যাসেনশন দ্বীপ",xk:"কসোভো"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-bs.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-bs.js index a781f8945..9dcd943bc 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-bs.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-bs.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[434],{322(a,i,n){n.r(i),n.d(i,{countryTranslations:()=>e,default:()=>o,interfaceTranslations:()=>r});const e={ad:"Andora",ae:"Ujedinjeni Arapski Emirati",af:"Afganistan",ag:"Antigva i Barbuda",ai:"Angvila",al:"Albanija",am:"Armenija",ao:"Angola",ar:"Argentina",as:"Američka Samoa",at:"Austrija",au:"Australija",aw:"Aruba",ax:"Olandska ostrva",az:"Azerbejdžan",ba:"Bosna i Hercegovina",bb:"Barbados",bd:"Bangladeš",be:"Belgija",bf:"Burkina Faso",bg:"Bugarska",bh:"Bahrein",bi:"Burundi",bj:"Benin",bl:"Sveti Bartolomej",bm:"Bermuda",bn:"Brunej",bo:"Bolivija",bq:"Karipska Holandija",br:"Brazil",bs:"Bahami",bt:"Butan",bw:"Bocvana",by:"Bjelorusija",bz:"Belize",ca:"Kanada",cc:"Kokosova (Keelingova) ostrva",cd:"Demokratska Republika Kongo",cf:"Centralnoafrička Republika",cg:"Kongo",ch:"Švicarska",ci:"Obala Slonovače",ck:"Kukova ostrva",cl:"Čile",cm:"Kamerun",cn:"Kina",co:"Kolumbija",cr:"Kostarika",cu:"Kuba",cv:"Kape Verde",cw:"Kurasao",cx:"Božićno ostrvo",cy:"Kipar",cz:"Češka",de:"Njemačka",dj:"Džibuti",dk:"Danska",dm:"Dominika",do:"Dominikanska Republika",dz:"Alžir",ec:"Ekvador",ee:"Estonija",eg:"Egipat",eh:"Zapadna Sahara",er:"Eritreja",es:"Španija",et:"Etiopija",fi:"Finska",fj:"Fidži",fk:"Folklandska ostrva",fm:"Mikronezija",fo:"Farska ostrva",fr:"Francuska",ga:"Gabon",gb:"Ujedinjeno Kraljevstvo",gd:"Grenada",ge:"Gruzija",gf:"Francuska Gvajana",gg:"Gernzi",gh:"Gana",gi:"Gibraltar",gl:"Grenland",gm:"Gambija",gn:"Gvineja",gp:"Gvadalupe",gq:"Ekvatorijalna Gvineja",gr:"Grčka",gt:"Gvatemala",gu:"Guam",gw:"Gvineja-Bisao",gy:"Gvajana",hk:"Hong Kong (SAR Kina)",hn:"Honduras",hr:"Hrvatska",ht:"Haiti",hu:"Mađarska",id:"Indonezija",ie:"Irska",il:"Izrael",im:"Ostrvo Man",in:"Indija",io:"Britanska Teritorija u Indijskom Okeanu",iq:"Irak",ir:"Iran",is:"Island",it:"Italija",je:"Jersey",jm:"Jamajka",jo:"Jordan",jp:"Japan",ke:"Kenija",kg:"Kirgistan",kh:"Kambodža",ki:"Kiribati",km:"Komori",kn:"Sveti Kits i Nevis",kp:"Sjeverna Koreja",kr:"Južna Koreja",kw:"Kuvajt",ky:"Kajmanska ostrva",kz:"Kazahstan",la:"Laos",lb:"Liban",lc:"Sveta Lucija",li:"Lihtenštajn",lk:"Šri Lanka",lr:"Liberija",ls:"Lesoto",lt:"Litvanija",lu:"Luksemburg",lv:"Latvija",ly:"Libija",ma:"Maroko",mc:"Monako",md:"Moldavija",me:"Crna Gora",mf:"Sveti Martin",mg:"Madagaskar",mh:"Maršalova ostrva",mk:"Sjeverna Makedonija",ml:"Mali",mm:"Mjanmar",mn:"Mongolija",mo:"Makao (SAR Kina)",mp:"Sjeverna Marijanska ostrva",mq:"Martinik",mr:"Mauritanija",ms:"Monserat",mt:"Malta",mu:"Mauricijus",mv:"Maldivi",mw:"Malavi",mx:"Meksiko",my:"Malezija",mz:"Mozambik",na:"Namibija",nc:"Nova Kaledonija",ne:"Niger",nf:"Ostrvo Norfolk",ng:"Nigerija",ni:"Nikaragva",nl:"Holandija",no:"Norveška",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Novi Zeland",om:"Oman",pa:"Panama",pe:"Peru",pf:"Francuska Polinezija",pg:"Papua Nova Gvineja",ph:"Filipini",pk:"Pakistan",pl:"Poljska",pm:"Sveti Petar i Mikelon",pr:"Porto Riko",ps:"Palestinska Teritorija",pt:"Portugal",pw:"Palau",py:"Paragvaj",qa:"Katar",re:"Reunion",ro:"Rumunija",rs:"Srbija",ru:"Rusija",rw:"Ruanda",sa:"Saudijska Arabija",sb:"Solomonska Ostrva",sc:"Sejšeli",sd:"Sudan",se:"Švedska",sg:"Singapur",sh:"Sveta Helena",si:"Slovenija",sj:"Svalbard i Jan Majen",sk:"Slovačka",sl:"Sijera Leone",sm:"San Marino",sn:"Senegal",so:"Somalija",sr:"Surinam",ss:"Južni Sudan",st:"Sao Tome i Principe",sv:"Salvador",sx:"Sint Marten",sy:"Sirija",sz:"Esvatini",tc:"Ostrva Turks i Kaikos",td:"Čad",tg:"Togo",th:"Tajland",tj:"Tadžikistan",tk:"Tokelau",tl:"Istočni Timor",tm:"Turkmenistan",tn:"Tunis",to:"Tonga",tr:"Turska",tt:"Trinidad i Tobago",tv:"Tuvalu",tw:"Tajvan",tz:"Tanzanija",ua:"Ukrajina",ug:"Uganda",us:"Sjedinjene Države",uy:"Urugvaj",uz:"Uzbekistan",va:"Vatikan",vc:"Sveti Vinsent i Grenadin",ve:"Venecuela",vg:"Britanska Djevičanska ostrva",vi:"Američka Djevičanska ostrva",vn:"Vijetnam",vu:"Vanuatu",wf:"Ostrva Valis i Futuna",ws:"Samoa",ye:"Jemen",yt:"Majote",za:"Južnoafrička Republika",zm:"Zambija",zw:"Zimbabve"},r={selectedCountryAriaLabel:"Odabrana zemlja",noCountrySelected:"Zemlja nije odabrana",countryListAriaLabel:"Lista zemalja",searchPlaceholder:"Pretraži",zeroSearchResults:"Nema pronađenih rezultata",oneSearchResult:"Pronađen 1 rezultat",multipleSearchResults:"${count} rezultata pronađeno",ac:"Ascension",xk:"Kosovo"},o={...e,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[434],{322:(a,i,n)=>{n.r(i),n.d(i,{countryTranslations:()=>e,default:()=>o,interfaceTranslations:()=>r});const e={ad:"Andora",ae:"Ujedinjeni Arapski Emirati",af:"Afganistan",ag:"Antigva i Barbuda",ai:"Angvila",al:"Albanija",am:"Armenija",ao:"Angola",ar:"Argentina",as:"Američka Samoa",at:"Austrija",au:"Australija",aw:"Aruba",ax:"Olandska ostrva",az:"Azerbejdžan",ba:"Bosna i Hercegovina",bb:"Barbados",bd:"Bangladeš",be:"Belgija",bf:"Burkina Faso",bg:"Bugarska",bh:"Bahrein",bi:"Burundi",bj:"Benin",bl:"Sveti Bartolomej",bm:"Bermuda",bn:"Brunej",bo:"Bolivija",bq:"Karipska Holandija",br:"Brazil",bs:"Bahami",bt:"Butan",bw:"Bocvana",by:"Bjelorusija",bz:"Belize",ca:"Kanada",cc:"Kokosova (Keelingova) ostrva",cd:"Demokratska Republika Kongo",cf:"Centralnoafrička Republika",cg:"Kongo",ch:"Švicarska",ci:"Obala Slonovače",ck:"Kukova ostrva",cl:"Čile",cm:"Kamerun",cn:"Kina",co:"Kolumbija",cr:"Kostarika",cu:"Kuba",cv:"Kape Verde",cw:"Kurasao",cx:"Božićno ostrvo",cy:"Kipar",cz:"Češka",de:"Njemačka",dj:"Džibuti",dk:"Danska",dm:"Dominika",do:"Dominikanska Republika",dz:"Alžir",ec:"Ekvador",ee:"Estonija",eg:"Egipat",eh:"Zapadna Sahara",er:"Eritreja",es:"Španija",et:"Etiopija",fi:"Finska",fj:"Fidži",fk:"Folklandska ostrva",fm:"Mikronezija",fo:"Farska ostrva",fr:"Francuska",ga:"Gabon",gb:"Ujedinjeno Kraljevstvo",gd:"Grenada",ge:"Gruzija",gf:"Francuska Gvajana",gg:"Gernzi",gh:"Gana",gi:"Gibraltar",gl:"Grenland",gm:"Gambija",gn:"Gvineja",gp:"Gvadalupe",gq:"Ekvatorijalna Gvineja",gr:"Grčka",gt:"Gvatemala",gu:"Guam",gw:"Gvineja-Bisao",gy:"Gvajana",hk:"Hong Kong (SAR Kina)",hn:"Honduras",hr:"Hrvatska",ht:"Haiti",hu:"Mađarska",id:"Indonezija",ie:"Irska",il:"Izrael",im:"Ostrvo Man",in:"Indija",io:"Britanska Teritorija u Indijskom Okeanu",iq:"Irak",ir:"Iran",is:"Island",it:"Italija",je:"Jersey",jm:"Jamajka",jo:"Jordan",jp:"Japan",ke:"Kenija",kg:"Kirgistan",kh:"Kambodža",ki:"Kiribati",km:"Komori",kn:"Sveti Kits i Nevis",kp:"Sjeverna Koreja",kr:"Južna Koreja",kw:"Kuvajt",ky:"Kajmanska ostrva",kz:"Kazahstan",la:"Laos",lb:"Liban",lc:"Sveta Lucija",li:"Lihtenštajn",lk:"Šri Lanka",lr:"Liberija",ls:"Lesoto",lt:"Litvanija",lu:"Luksemburg",lv:"Latvija",ly:"Libija",ma:"Maroko",mc:"Monako",md:"Moldavija",me:"Crna Gora",mf:"Sveti Martin",mg:"Madagaskar",mh:"Maršalova ostrva",mk:"Sjeverna Makedonija",ml:"Mali",mm:"Mjanmar",mn:"Mongolija",mo:"Makao (SAR Kina)",mp:"Sjeverna Marijanska ostrva",mq:"Martinik",mr:"Mauritanija",ms:"Monserat",mt:"Malta",mu:"Mauricijus",mv:"Maldivi",mw:"Malavi",mx:"Meksiko",my:"Malezija",mz:"Mozambik",na:"Namibija",nc:"Nova Kaledonija",ne:"Niger",nf:"Ostrvo Norfolk",ng:"Nigerija",ni:"Nikaragva",nl:"Holandija",no:"Norveška",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Novi Zeland",om:"Oman",pa:"Panama",pe:"Peru",pf:"Francuska Polinezija",pg:"Papua Nova Gvineja",ph:"Filipini",pk:"Pakistan",pl:"Poljska",pm:"Sveti Petar i Mikelon",pr:"Porto Riko",ps:"Palestinska Teritorija",pt:"Portugal",pw:"Palau",py:"Paragvaj",qa:"Katar",re:"Reunion",ro:"Rumunija",rs:"Srbija",ru:"Rusija",rw:"Ruanda",sa:"Saudijska Arabija",sb:"Solomonska Ostrva",sc:"Sejšeli",sd:"Sudan",se:"Švedska",sg:"Singapur",sh:"Sveta Helena",si:"Slovenija",sj:"Svalbard i Jan Majen",sk:"Slovačka",sl:"Sijera Leone",sm:"San Marino",sn:"Senegal",so:"Somalija",sr:"Surinam",ss:"Južni Sudan",st:"Sao Tome i Principe",sv:"Salvador",sx:"Sint Marten",sy:"Sirija",sz:"Esvatini",tc:"Ostrva Turks i Kaikos",td:"Čad",tg:"Togo",th:"Tajland",tj:"Tadžikistan",tk:"Tokelau",tl:"Istočni Timor",tm:"Turkmenistan",tn:"Tunis",to:"Tonga",tr:"Turska",tt:"Trinidad i Tobago",tv:"Tuvalu",tw:"Tajvan",tz:"Tanzanija",ua:"Ukrajina",ug:"Uganda",us:"Sjedinjene Države",uy:"Urugvaj",uz:"Uzbekistan",va:"Vatikan",vc:"Sveti Vinsent i Grenadin",ve:"Venecuela",vg:"Britanska Djevičanska ostrva",vi:"Američka Djevičanska ostrva",vn:"Vijetnam",vu:"Vanuatu",wf:"Ostrva Valis i Futuna",ws:"Samoa",ye:"Jemen",yt:"Majote",za:"Južnoafrička Republika",zm:"Zambija",zw:"Zimbabve"},r={selectedCountryAriaLabel:"Odabrana zemlja",noCountrySelected:"Zemlja nije odabrana",countryListAriaLabel:"Lista zemalja",searchPlaceholder:"Pretraži",zeroSearchResults:"Nema pronađenih rezultata",oneSearchResult:"Pronađen 1 rezultat",multipleSearchResults:"${count} rezultata pronađeno",ac:"Ascension",xk:"Kosovo"},o={...e,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ca.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ca.js index 01bc5d93f..5e9a095f3 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ca.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ca.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[319],{227(a,i,e){e.r(i),e.d(i,{countryTranslations:()=>n,default:()=>s,interfaceTranslations:()=>r});const n={ad:"Andorra",ae:"Emirats Àrabs Units",af:"Afganistan",ag:"Antigua i Barbuda",ai:"Anguilla",al:"Albània",am:"Armènia",ao:"Angola",ar:"Argentina",as:"Samoa Nord-americana",at:"Àustria",au:"Austràlia",aw:"Aruba",ax:"Illes Åland",az:"Azerbaidjan",ba:"Bòsnia i Hercegovina",bb:"Barbados",bd:"Bangladesh",be:"Bèlgica",bf:"Burkina Faso",bg:"Bulgària",bh:"Bahrain",bi:"Burundi",bj:"Benín",bl:"Saint Barthélemy",bm:"Bermudes",bn:"Brunei",bo:"Bolívia",bq:"Carib Neerlandès",br:"Brasil",bs:"Bahames",bt:"Bhutan",bw:"Botswana",by:"Belarús",bz:"Belize",ca:"Canadà",cc:"Illes Cocos",cd:"Congo - Kinshasa",cf:"República Centreafricana",cg:"Congo - Brazzaville",ch:"Suïssa",ci:"Côte d’Ivoire",ck:"Illes Cook",cl:"Xile",cm:"Camerun",cn:"Xina",co:"Colòmbia",cr:"Costa Rica",cu:"Cuba",cv:"Cap Verd",cw:"Curaçao",cx:"Illa Christmas",cy:"Xipre",cz:"Txèquia",de:"Alemanya",dj:"Djibouti",dk:"Dinamarca",dm:"Dominica",do:"República Dominicana",dz:"Algèria",ec:"Equador",ee:"Estònia",eg:"Egipte",eh:"Sàhara Occidental",er:"Eritrea",es:"Espanya",et:"Etiòpia",fi:"Finlàndia",fj:"Fiji",fk:"Illes Malvines",fm:"Micronèsia",fo:"Illes Fèroe",fr:"França",ga:"Gabon",gb:"Regne Unit",gd:"Grenada",ge:"Geòrgia",gf:"Guaiana Francesa",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Groenlàndia",gm:"Gàmbia",gn:"Guinea",gp:"Guadeloupe",gq:"Guinea Equatorial",gr:"Grècia",gt:"Guatemala",gu:"Guam",gw:"Guinea Bissau",gy:"Guyana",hk:"Hong Kong (RAE Xina)",hn:"Hondures",hr:"Croàcia",ht:"Haití",hu:"Hongria",id:"Indonèsia",ie:"Irlanda",il:"Israel",im:"Illa de Man",in:"Índia",io:"Territori Britànic de l’Oceà Índic",iq:"Iraq",ir:"Iran",is:"Islàndia",it:"Itàlia",je:"Jersey",jm:"Jamaica",jo:"Jordània",jp:"Japó",ke:"Kenya",kg:"Kirguizistan",kh:"Cambodja",ki:"Kiribati",km:"Comores",kn:"Saint Christopher i Nevis",kp:"Corea del Nord",kr:"Corea del Sud",kw:"Kuwait",ky:"Illes Caiman",kz:"Kazakhstan",la:"Laos",lb:"Líban",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Libèria",ls:"Lesotho",lt:"Lituània",lu:"Luxemburg",lv:"Letònia",ly:"Líbia",ma:"Marroc",mc:"Mònaco",md:"Moldàvia",me:"Montenegro",mf:"Saint Martin",mg:"Madagascar",mh:"Illes Marshall",mk:"Macedònia del Nord",ml:"Mali",mm:"Myanmar (Birmània)",mn:"Mongòlia",mo:"Macau (RAE Xina)",mp:"Illes Mariannes del Nord",mq:"Martinica",mr:"Mauritània",ms:"Montserrat",mt:"Malta",mu:"Maurici",mv:"Maldives",mw:"Malawi",mx:"Mèxic",my:"Malàisia",mz:"Moçambic",na:"Namíbia",nc:"Nova Caledònia",ne:"Níger",nf:"Norfolk",ng:"Nigèria",ni:"Nicaragua",nl:"Països Baixos",no:"Noruega",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nova Zelanda",om:"Oman",pa:"Panamà",pe:"Perú",pf:"Polinèsia Francesa",pg:"Papua Nova Guinea",ph:"Filipines",pk:"Pakistan",pl:"Polònia",pm:"Saint-Pierre-et-Miquelon",pr:"Puerto Rico",ps:"Territoris palestins",pt:"Portugal",pw:"Palau",py:"Paraguai",qa:"Qatar",re:"Illa de la Reunió",ro:"Romania",rs:"Sèrbia",ru:"Rússia",rw:"Ruanda",sa:"Aràbia Saudita",sb:"Illes Salomó",sc:"Seychelles",sd:"Sudan",se:"Suècia",sg:"Singapur",sh:"Saint Helena",si:"Eslovènia",sj:"Svalbard i Jan Mayen",sk:"Eslovàquia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somàlia",sr:"Surinam",ss:"Sudan del Sud",st:"São Tomé i Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Síria",sz:"eSwatini",tc:"Illes Turks i Caicos",td:"Txad",tg:"Togo",th:"Tailàndia",tj:"Tadjikistan",tk:"Tokelau",tl:"Timor Oriental",tm:"Turkmenistan",tn:"Tunísia",to:"Tonga",tr:"Turquia",tt:"Trinitat i Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzània",ua:"Ucraïna",ug:"Uganda",us:"Estats Units",uy:"Uruguai",uz:"Uzbekistan",va:"Ciutat del Vaticà",vc:"Saint Vincent i les Grenadines",ve:"Veneçuela",vg:"Illes Verges Britàniques",vi:"Illes Verges Nord-americanes",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis i Futuna",ws:"Samoa",ye:"Iemen",yt:"Mayotte",za:"República de Sud-àfrica",zm:"Zàmbia",zw:"Zimbàbue"},r={selectedCountryAriaLabel:"País seleccionat",noCountrySelected:"No s'ha seleccionat cap país",countryListAriaLabel:"Llista de països",searchPlaceholder:"Cerca",zeroSearchResults:"Sense resultats",oneSearchResult:"1 resultat trobat",multipleSearchResults:"${count} resultats trobats",ac:"Illa de l'Ascensió",xk:"Kosovo"},s={...n,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[319],{227:(a,i,e)=>{e.r(i),e.d(i,{countryTranslations:()=>n,default:()=>s,interfaceTranslations:()=>r});const n={ad:"Andorra",ae:"Emirats Àrabs Units",af:"Afganistan",ag:"Antigua i Barbuda",ai:"Anguilla",al:"Albània",am:"Armènia",ao:"Angola",ar:"Argentina",as:"Samoa Nord-americana",at:"Àustria",au:"Austràlia",aw:"Aruba",ax:"Illes Åland",az:"Azerbaidjan",ba:"Bòsnia i Hercegovina",bb:"Barbados",bd:"Bangladesh",be:"Bèlgica",bf:"Burkina Faso",bg:"Bulgària",bh:"Bahrain",bi:"Burundi",bj:"Benín",bl:"Saint Barthélemy",bm:"Bermudes",bn:"Brunei",bo:"Bolívia",bq:"Carib Neerlandès",br:"Brasil",bs:"Bahames",bt:"Bhutan",bw:"Botswana",by:"Belarús",bz:"Belize",ca:"Canadà",cc:"Illes Cocos",cd:"Congo - Kinshasa",cf:"República Centreafricana",cg:"Congo - Brazzaville",ch:"Suïssa",ci:"Côte d’Ivoire",ck:"Illes Cook",cl:"Xile",cm:"Camerun",cn:"Xina",co:"Colòmbia",cr:"Costa Rica",cu:"Cuba",cv:"Cap Verd",cw:"Curaçao",cx:"Illa Christmas",cy:"Xipre",cz:"Txèquia",de:"Alemanya",dj:"Djibouti",dk:"Dinamarca",dm:"Dominica",do:"República Dominicana",dz:"Algèria",ec:"Equador",ee:"Estònia",eg:"Egipte",eh:"Sàhara Occidental",er:"Eritrea",es:"Espanya",et:"Etiòpia",fi:"Finlàndia",fj:"Fiji",fk:"Illes Malvines",fm:"Micronèsia",fo:"Illes Fèroe",fr:"França",ga:"Gabon",gb:"Regne Unit",gd:"Grenada",ge:"Geòrgia",gf:"Guaiana Francesa",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Groenlàndia",gm:"Gàmbia",gn:"Guinea",gp:"Guadeloupe",gq:"Guinea Equatorial",gr:"Grècia",gt:"Guatemala",gu:"Guam",gw:"Guinea Bissau",gy:"Guyana",hk:"Hong Kong (RAE Xina)",hn:"Hondures",hr:"Croàcia",ht:"Haití",hu:"Hongria",id:"Indonèsia",ie:"Irlanda",il:"Israel",im:"Illa de Man",in:"Índia",io:"Territori Britànic de l’Oceà Índic",iq:"Iraq",ir:"Iran",is:"Islàndia",it:"Itàlia",je:"Jersey",jm:"Jamaica",jo:"Jordània",jp:"Japó",ke:"Kenya",kg:"Kirguizistan",kh:"Cambodja",ki:"Kiribati",km:"Comores",kn:"Saint Christopher i Nevis",kp:"Corea del Nord",kr:"Corea del Sud",kw:"Kuwait",ky:"Illes Caiman",kz:"Kazakhstan",la:"Laos",lb:"Líban",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Libèria",ls:"Lesotho",lt:"Lituània",lu:"Luxemburg",lv:"Letònia",ly:"Líbia",ma:"Marroc",mc:"Mònaco",md:"Moldàvia",me:"Montenegro",mf:"Saint Martin",mg:"Madagascar",mh:"Illes Marshall",mk:"Macedònia del Nord",ml:"Mali",mm:"Myanmar (Birmània)",mn:"Mongòlia",mo:"Macau (RAE Xina)",mp:"Illes Mariannes del Nord",mq:"Martinica",mr:"Mauritània",ms:"Montserrat",mt:"Malta",mu:"Maurici",mv:"Maldives",mw:"Malawi",mx:"Mèxic",my:"Malàisia",mz:"Moçambic",na:"Namíbia",nc:"Nova Caledònia",ne:"Níger",nf:"Norfolk",ng:"Nigèria",ni:"Nicaragua",nl:"Països Baixos",no:"Noruega",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nova Zelanda",om:"Oman",pa:"Panamà",pe:"Perú",pf:"Polinèsia Francesa",pg:"Papua Nova Guinea",ph:"Filipines",pk:"Pakistan",pl:"Polònia",pm:"Saint-Pierre-et-Miquelon",pr:"Puerto Rico",ps:"Territoris palestins",pt:"Portugal",pw:"Palau",py:"Paraguai",qa:"Qatar",re:"Illa de la Reunió",ro:"Romania",rs:"Sèrbia",ru:"Rússia",rw:"Ruanda",sa:"Aràbia Saudita",sb:"Illes Salomó",sc:"Seychelles",sd:"Sudan",se:"Suècia",sg:"Singapur",sh:"Saint Helena",si:"Eslovènia",sj:"Svalbard i Jan Mayen",sk:"Eslovàquia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somàlia",sr:"Surinam",ss:"Sudan del Sud",st:"São Tomé i Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Síria",sz:"eSwatini",tc:"Illes Turks i Caicos",td:"Txad",tg:"Togo",th:"Tailàndia",tj:"Tadjikistan",tk:"Tokelau",tl:"Timor Oriental",tm:"Turkmenistan",tn:"Tunísia",to:"Tonga",tr:"Turquia",tt:"Trinitat i Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzània",ua:"Ucraïna",ug:"Uganda",us:"Estats Units",uy:"Uruguai",uz:"Uzbekistan",va:"Ciutat del Vaticà",vc:"Saint Vincent i les Grenadines",ve:"Veneçuela",vg:"Illes Verges Britàniques",vi:"Illes Verges Nord-americanes",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis i Futuna",ws:"Samoa",ye:"Iemen",yt:"Mayotte",za:"República de Sud-àfrica",zm:"Zàmbia",zw:"Zimbàbue"},r={selectedCountryAriaLabel:"País seleccionat",noCountrySelected:"No s'ha seleccionat cap país",countryListAriaLabel:"Llista de països",searchPlaceholder:"Cerca",zeroSearchResults:"Sense resultats",oneSearchResult:"1 resultat trobat",multipleSearchResults:"${count} resultats trobats",ac:"Illa de l'Ascensió",xk:"Kosovo"},s={...n,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-cs.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-cs.js index 290abf470..135a45377 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-cs.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-cs.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[557],{705(a,o,n){n.r(o),n.d(o,{countryTranslations:()=>e,default:()=>i,interfaceTranslations:()=>r});const e={ad:"Andorra",ae:"Spojené arabské emiráty",af:"Afghánistán",ag:"Antigua a Barbuda",ai:"Anguilla",al:"Albánie",am:"Arménie",ao:"Angola",ar:"Argentina",as:"Americká Samoa",at:"Rakousko",au:"Austrálie",aw:"Aruba",ax:"Ålandy",az:"Ázerbájdžán",ba:"Bosna a Hercegovina",bb:"Barbados",bd:"Bangladéš",be:"Belgie",bf:"Burkina Faso",bg:"Bulharsko",bh:"Bahrajn",bi:"Burundi",bj:"Benin",bl:"Svatý Bartoloměj",bm:"Bermudy",bn:"Brunej",bo:"Bolívie",bq:"Karibské Nizozemsko",br:"Brazílie",bs:"Bahamy",bt:"Bhútán",bw:"Botswana",by:"Bělorusko",bz:"Belize",ca:"Kanada",cc:"Kokosové ostrovy",cd:"Kongo – Kinshasa",cf:"Středoafrická republika",cg:"Kongo – Brazzaville",ch:"Švýcarsko",ci:"Pobřeží slonoviny",ck:"Cookovy ostrovy",cl:"Chile",cm:"Kamerun",cn:"Čína",co:"Kolumbie",cr:"Kostarika",cu:"Kuba",cv:"Kapverdy",cw:"Curaçao",cx:"Vánoční ostrov",cy:"Kypr",cz:"Česko",de:"Německo",dj:"Džibutsko",dk:"Dánsko",dm:"Dominika",do:"Dominikánská republika",dz:"Alžírsko",ec:"Ekvádor",ee:"Estonsko",eg:"Egypt",eh:"Západní Sahara",er:"Eritrea",es:"Španělsko",et:"Etiopie",fi:"Finsko",fj:"Fidži",fk:"Falklandské ostrovy",fm:"Mikronésie",fo:"Faerské ostrovy",fr:"Francie",ga:"Gabon",gb:"Spojené království",gd:"Grenada",ge:"Gruzie",gf:"Francouzská Guyana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grónsko",gm:"Gambie",gn:"Guinea",gp:"Guadeloupe",gq:"Rovníková Guinea",gr:"Řecko",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hongkong – ZAO Číny",hn:"Honduras",hr:"Chorvatsko",ht:"Haiti",hu:"Maďarsko",id:"Indonésie",ie:"Irsko",il:"Izrael",im:"Ostrov Man",in:"Indie",io:"Britské indickooceánské území",iq:"Irák",ir:"Írán",is:"Island",it:"Itálie",je:"Jersey",jm:"Jamajka",jo:"Jordánsko",jp:"Japonsko",ke:"Keňa",kg:"Kyrgyzstán",kh:"Kambodža",ki:"Kiribati",km:"Komory",kn:"Svatý Kryštof a Nevis",kp:"Severní Korea",kr:"Jižní Korea",kw:"Kuvajt",ky:"Kajmanské ostrovy",kz:"Kazachstán",la:"Laos",lb:"Libanon",lc:"Svatá Lucie",li:"Lichtenštejnsko",lk:"Srí Lanka",lr:"Libérie",ls:"Lesotho",lt:"Litva",lu:"Lucembursko",lv:"Lotyšsko",ly:"Libye",ma:"Maroko",mc:"Monako",md:"Moldavsko",me:"Černá Hora",mf:"Svatý Martin (Francie)",mg:"Madagaskar",mh:"Marshallovy ostrovy",mk:"Severní Makedonie",ml:"Mali",mm:"Myanmar (Barma)",mn:"Mongolsko",mo:"Macao – ZAO Číny",mp:"Severní Mariany",mq:"Martinik",mr:"Mauritánie",ms:"Montserrat",mt:"Malta",mu:"Mauricius",mv:"Maledivy",mw:"Malawi",mx:"Mexiko",my:"Malajsie",mz:"Mosambik",na:"Namibie",nc:"Nová Kaledonie",ne:"Niger",nf:"Norfolk",ng:"Nigérie",ni:"Nikaragua",nl:"Nizozemsko",no:"Norsko",np:"Nepál",nr:"Nauru",nu:"Niue",nz:"Nový Zéland",om:"Omán",pa:"Panama",pe:"Peru",pf:"Francouzská Polynésie",pg:"Papua-Nová Guinea",ph:"Filipíny",pk:"Pákistán",pl:"Polsko",pm:"Saint-Pierre a Miquelon",pr:"Portoriko",ps:"Palestinská území",pt:"Portugalsko",pw:"Palau",py:"Paraguay",qa:"Katar",re:"Réunion",ro:"Rumunsko",rs:"Srbsko",ru:"Rusko",rw:"Rwanda",sa:"Saúdská Arábie",sb:"Šalamounovy ostrovy",sc:"Seychely",sd:"Súdán",se:"Švédsko",sg:"Singapur",sh:"Svatá Helena",si:"Slovinsko",sj:"Špicberky a Jan Mayen",sk:"Slovensko",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somálsko",sr:"Surinam",ss:"Jižní Súdán",st:"Svatý Tomáš a Princův ostrov",sv:"Salvador",sx:"Svatý Martin (Nizozemsko)",sy:"Sýrie",sz:"Svazijsko",tc:"Turks a Caicos",td:"Čad",tg:"Togo",th:"Thajsko",tj:"Tádžikistán",tk:"Tokelau",tl:"Východní Timor",tm:"Turkmenistán",tn:"Tunisko",to:"Tonga",tr:"Turecko",tt:"Trinidad a Tobago",tv:"Tuvalu",tw:"Tchaj-wan",tz:"Tanzanie",ua:"Ukrajina",ug:"Uganda",us:"Spojené státy",uy:"Uruguay",uz:"Uzbekistán",va:"Vatikán",vc:"Svatý Vincenc a Grenadiny",ve:"Venezuela",vg:"Britské Panenské ostrovy",vi:"Americké Panenské ostrovy",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis a Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Jihoafrická republika",zm:"Zambie",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Vybraná země",noCountrySelected:"Není vybrána žádná země",countryListAriaLabel:"Seznam zemí",searchPlaceholder:"Vyhledat",zeroSearchResults:"Nebyly nalezeny žádné výsledky",oneSearchResult:"1 výsledek nalezen",multipleSearchResults:"${count} výsledků nalezeno",ac:"Ascension",xk:"Kosovo"},i={...e,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[557],{705:(a,o,n)=>{n.r(o),n.d(o,{countryTranslations:()=>e,default:()=>i,interfaceTranslations:()=>r});const e={ad:"Andorra",ae:"Spojené arabské emiráty",af:"Afghánistán",ag:"Antigua a Barbuda",ai:"Anguilla",al:"Albánie",am:"Arménie",ao:"Angola",ar:"Argentina",as:"Americká Samoa",at:"Rakousko",au:"Austrálie",aw:"Aruba",ax:"Ålandy",az:"Ázerbájdžán",ba:"Bosna a Hercegovina",bb:"Barbados",bd:"Bangladéš",be:"Belgie",bf:"Burkina Faso",bg:"Bulharsko",bh:"Bahrajn",bi:"Burundi",bj:"Benin",bl:"Svatý Bartoloměj",bm:"Bermudy",bn:"Brunej",bo:"Bolívie",bq:"Karibské Nizozemsko",br:"Brazílie",bs:"Bahamy",bt:"Bhútán",bw:"Botswana",by:"Bělorusko",bz:"Belize",ca:"Kanada",cc:"Kokosové ostrovy",cd:"Kongo – Kinshasa",cf:"Středoafrická republika",cg:"Kongo – Brazzaville",ch:"Švýcarsko",ci:"Pobřeží slonoviny",ck:"Cookovy ostrovy",cl:"Chile",cm:"Kamerun",cn:"Čína",co:"Kolumbie",cr:"Kostarika",cu:"Kuba",cv:"Kapverdy",cw:"Curaçao",cx:"Vánoční ostrov",cy:"Kypr",cz:"Česko",de:"Německo",dj:"Džibutsko",dk:"Dánsko",dm:"Dominika",do:"Dominikánská republika",dz:"Alžírsko",ec:"Ekvádor",ee:"Estonsko",eg:"Egypt",eh:"Západní Sahara",er:"Eritrea",es:"Španělsko",et:"Etiopie",fi:"Finsko",fj:"Fidži",fk:"Falklandské ostrovy",fm:"Mikronésie",fo:"Faerské ostrovy",fr:"Francie",ga:"Gabon",gb:"Spojené království",gd:"Grenada",ge:"Gruzie",gf:"Francouzská Guyana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grónsko",gm:"Gambie",gn:"Guinea",gp:"Guadeloupe",gq:"Rovníková Guinea",gr:"Řecko",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hongkong – ZAO Číny",hn:"Honduras",hr:"Chorvatsko",ht:"Haiti",hu:"Maďarsko",id:"Indonésie",ie:"Irsko",il:"Izrael",im:"Ostrov Man",in:"Indie",io:"Britské indickooceánské území",iq:"Irák",ir:"Írán",is:"Island",it:"Itálie",je:"Jersey",jm:"Jamajka",jo:"Jordánsko",jp:"Japonsko",ke:"Keňa",kg:"Kyrgyzstán",kh:"Kambodža",ki:"Kiribati",km:"Komory",kn:"Svatý Kryštof a Nevis",kp:"Severní Korea",kr:"Jižní Korea",kw:"Kuvajt",ky:"Kajmanské ostrovy",kz:"Kazachstán",la:"Laos",lb:"Libanon",lc:"Svatá Lucie",li:"Lichtenštejnsko",lk:"Srí Lanka",lr:"Libérie",ls:"Lesotho",lt:"Litva",lu:"Lucembursko",lv:"Lotyšsko",ly:"Libye",ma:"Maroko",mc:"Monako",md:"Moldavsko",me:"Černá Hora",mf:"Svatý Martin (Francie)",mg:"Madagaskar",mh:"Marshallovy ostrovy",mk:"Severní Makedonie",ml:"Mali",mm:"Myanmar (Barma)",mn:"Mongolsko",mo:"Macao – ZAO Číny",mp:"Severní Mariany",mq:"Martinik",mr:"Mauritánie",ms:"Montserrat",mt:"Malta",mu:"Mauricius",mv:"Maledivy",mw:"Malawi",mx:"Mexiko",my:"Malajsie",mz:"Mosambik",na:"Namibie",nc:"Nová Kaledonie",ne:"Niger",nf:"Norfolk",ng:"Nigérie",ni:"Nikaragua",nl:"Nizozemsko",no:"Norsko",np:"Nepál",nr:"Nauru",nu:"Niue",nz:"Nový Zéland",om:"Omán",pa:"Panama",pe:"Peru",pf:"Francouzská Polynésie",pg:"Papua-Nová Guinea",ph:"Filipíny",pk:"Pákistán",pl:"Polsko",pm:"Saint-Pierre a Miquelon",pr:"Portoriko",ps:"Palestinská území",pt:"Portugalsko",pw:"Palau",py:"Paraguay",qa:"Katar",re:"Réunion",ro:"Rumunsko",rs:"Srbsko",ru:"Rusko",rw:"Rwanda",sa:"Saúdská Arábie",sb:"Šalamounovy ostrovy",sc:"Seychely",sd:"Súdán",se:"Švédsko",sg:"Singapur",sh:"Svatá Helena",si:"Slovinsko",sj:"Špicberky a Jan Mayen",sk:"Slovensko",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somálsko",sr:"Surinam",ss:"Jižní Súdán",st:"Svatý Tomáš a Princův ostrov",sv:"Salvador",sx:"Svatý Martin (Nizozemsko)",sy:"Sýrie",sz:"Svazijsko",tc:"Turks a Caicos",td:"Čad",tg:"Togo",th:"Thajsko",tj:"Tádžikistán",tk:"Tokelau",tl:"Východní Timor",tm:"Turkmenistán",tn:"Tunisko",to:"Tonga",tr:"Turecko",tt:"Trinidad a Tobago",tv:"Tuvalu",tw:"Tchaj-wan",tz:"Tanzanie",ua:"Ukrajina",ug:"Uganda",us:"Spojené státy",uy:"Uruguay",uz:"Uzbekistán",va:"Vatikán",vc:"Svatý Vincenc a Grenadiny",ve:"Venezuela",vg:"Britské Panenské ostrovy",vi:"Americké Panenské ostrovy",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis a Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Jihoafrická republika",zm:"Zambie",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Vybraná země",noCountrySelected:"Není vybrána žádná země",countryListAriaLabel:"Seznam zemí",searchPlaceholder:"Vyhledat",zeroSearchResults:"Nebyly nalezeny žádné výsledky",oneSearchResult:"1 výsledek nalezen",multipleSearchResults:"${count} výsledků nalezeno",ac:"Ascension",xk:"Kosovo"},i={...e,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-da.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-da.js index aa14e570f..3246655e1 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-da.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-da.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[886],{862(a,e,n){n.r(e),n.d(e,{countryTranslations:()=>i,default:()=>o,interfaceTranslations:()=>r});const i={ad:"Andorra",ae:"De Forenede Arabiske Emirater",af:"Afghanistan",ag:"Antigua og Barbuda",ai:"Anguilla",al:"Albanien",am:"Armenien",ao:"Angola",ar:"Argentina",as:"Amerikansk Samoa",at:"Østrig",au:"Australien",aw:"Aruba",ax:"Åland",az:"Aserbajdsjan",ba:"Bosnien-Hercegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgien",bf:"Burkina Faso",bg:"Bulgarien",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"Saint Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"De tidligere Nederlandske Antiller",br:"Brasilien",bs:"Bahamas",bt:"Bhutan",bw:"Botswana",by:"Hviderusland",bz:"Belize",ca:"Canada",cc:"Cocosøerne",cd:"Congo-Kinshasa",cf:"Den Centralafrikanske Republik",cg:"Congo-Brazzaville",ch:"Schweiz",ci:"Elfenbenskysten",ck:"Cookøerne",cl:"Chile",cm:"Cameroun",cn:"Kina",co:"Colombia",cr:"Costa Rica",cu:"Cuba",cv:"Kap Verde",cw:"Curaçao",cx:"Juleøen",cy:"Cypern",cz:"Tjekkiet",de:"Tyskland",dj:"Djibouti",dk:"Danmark",dm:"Dominica",do:"Den Dominikanske Republik",dz:"Algeriet",ec:"Ecuador",ee:"Estland",eg:"Egypten",eh:"Vestsahara",er:"Eritrea",es:"Spanien",et:"Etiopien",fi:"Finland",fj:"Fiji",fk:"Falklandsøerne",fm:"Mikronesien",fo:"Færøerne",fr:"Frankrig",ga:"Gabon",gb:"Storbritannien",gd:"Grenada",ge:"Georgien",gf:"Fransk Guyana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grønland",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Ækvatorialguinea",gr:"Grækenland",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"SAR Hongkong",hn:"Honduras",hr:"Kroatien",ht:"Haiti",hu:"Ungarn",id:"Indonesien",ie:"Irland",il:"Israel",im:"Isle of Man",in:"Indien",io:"Det Britiske Territorium i Det Indiske Ocean",iq:"Irak",ir:"Iran",is:"Island",it:"Italien",je:"Jersey",jm:"Jamaica",jo:"Jordan",jp:"Japan",ke:"Kenya",kg:"Kirgisistan",kh:"Cambodja",ki:"Kiribati",km:"Comorerne",kn:"Saint Kitts og Nevis",kp:"Nordkorea",kr:"Sydkorea",kw:"Kuwait",ky:"Caymanøerne",kz:"Kasakhstan",la:"Laos",lb:"Libanon",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litauen",lu:"Luxembourg",lv:"Letland",ly:"Libyen",ma:"Marokko",mc:"Monaco",md:"Moldova",me:"Montenegro",mf:"Saint Martin",mg:"Madagaskar",mh:"Marshalløerne",mk:"Nordmakedonien",ml:"Mali",mm:"Myanmar (Burma)",mn:"Mongoliet",mo:"SAR Macao",mp:"Nordmarianerne",mq:"Martinique",mr:"Mauretanien",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldiverne",mw:"Malawi",mx:"Mexico",my:"Malaysia",mz:"Mozambique",na:"Namibia",nc:"Ny Kaledonien",ne:"Niger",nf:"Norfolk Island",ng:"Nigeria",ni:"Nicaragua",nl:"Holland",no:"Norge",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"New Zealand",om:"Oman",pa:"Panama",pe:"Peru",pf:"Fransk Polynesien",pg:"Papua Ny Guinea",ph:"Filippinerne",pk:"Pakistan",pl:"Polen",pm:"Saint Pierre og Miquelon",pr:"Puerto Rico",ps:"De palæstinensiske områder",pt:"Portugal",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Rumænien",rs:"Serbien",ru:"Rusland",rw:"Rwanda",sa:"Saudi-Arabien",sb:"Salomonøerne",sc:"Seychellerne",sd:"Sudan",se:"Sverige",sg:"Singapore",sh:"St. Helena",si:"Slovenien",sj:"Svalbard og Jan Mayen",sk:"Slovakiet",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Surinam",ss:"Sydsudan",st:"São Tomé og Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Syrien",sz:"Eswatini",tc:"Turks- og Caicosøerne",td:"Tchad",tg:"Togo",th:"Thailand",tj:"Tadsjikistan",tk:"Tokelau",tl:"Timor-Leste",tm:"Turkmenistan",tn:"Tunesien",to:"Tonga",tr:"Tyrkiet",tt:"Trinidad og Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Ukraine",ug:"Uganda",us:"USA",uy:"Uruguay",uz:"Usbekistan",va:"Vatikanstaten",vc:"Saint Vincent og Grenadinerne",ve:"Venezuela",vg:"De Britiske Jomfruøer",vi:"De Amerikanske Jomfruøer",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis og Futuna",ws:"Samoa",ye:"Yemen",yt:"Mayotte",za:"Sydafrika",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Valgt land",noCountrySelected:"Intet land er valgt",countryListAriaLabel:"Liste over lande",searchPlaceholder:"Søge",zeroSearchResults:"Ingen resultater fundet",oneSearchResult:"1 resultat fundet",multipleSearchResults:"${count} resultater fundet",ac:"Ascension",xk:"Kosovo"},o={...i,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[886],{862:(a,e,n)=>{n.r(e),n.d(e,{countryTranslations:()=>i,default:()=>o,interfaceTranslations:()=>r});const i={ad:"Andorra",ae:"De Forenede Arabiske Emirater",af:"Afghanistan",ag:"Antigua og Barbuda",ai:"Anguilla",al:"Albanien",am:"Armenien",ao:"Angola",ar:"Argentina",as:"Amerikansk Samoa",at:"Østrig",au:"Australien",aw:"Aruba",ax:"Åland",az:"Aserbajdsjan",ba:"Bosnien-Hercegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgien",bf:"Burkina Faso",bg:"Bulgarien",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"Saint Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"De tidligere Nederlandske Antiller",br:"Brasilien",bs:"Bahamas",bt:"Bhutan",bw:"Botswana",by:"Hviderusland",bz:"Belize",ca:"Canada",cc:"Cocosøerne",cd:"Congo-Kinshasa",cf:"Den Centralafrikanske Republik",cg:"Congo-Brazzaville",ch:"Schweiz",ci:"Elfenbenskysten",ck:"Cookøerne",cl:"Chile",cm:"Cameroun",cn:"Kina",co:"Colombia",cr:"Costa Rica",cu:"Cuba",cv:"Kap Verde",cw:"Curaçao",cx:"Juleøen",cy:"Cypern",cz:"Tjekkiet",de:"Tyskland",dj:"Djibouti",dk:"Danmark",dm:"Dominica",do:"Den Dominikanske Republik",dz:"Algeriet",ec:"Ecuador",ee:"Estland",eg:"Egypten",eh:"Vestsahara",er:"Eritrea",es:"Spanien",et:"Etiopien",fi:"Finland",fj:"Fiji",fk:"Falklandsøerne",fm:"Mikronesien",fo:"Færøerne",fr:"Frankrig",ga:"Gabon",gb:"Storbritannien",gd:"Grenada",ge:"Georgien",gf:"Fransk Guyana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grønland",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Ækvatorialguinea",gr:"Grækenland",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"SAR Hongkong",hn:"Honduras",hr:"Kroatien",ht:"Haiti",hu:"Ungarn",id:"Indonesien",ie:"Irland",il:"Israel",im:"Isle of Man",in:"Indien",io:"Det Britiske Territorium i Det Indiske Ocean",iq:"Irak",ir:"Iran",is:"Island",it:"Italien",je:"Jersey",jm:"Jamaica",jo:"Jordan",jp:"Japan",ke:"Kenya",kg:"Kirgisistan",kh:"Cambodja",ki:"Kiribati",km:"Comorerne",kn:"Saint Kitts og Nevis",kp:"Nordkorea",kr:"Sydkorea",kw:"Kuwait",ky:"Caymanøerne",kz:"Kasakhstan",la:"Laos",lb:"Libanon",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litauen",lu:"Luxembourg",lv:"Letland",ly:"Libyen",ma:"Marokko",mc:"Monaco",md:"Moldova",me:"Montenegro",mf:"Saint Martin",mg:"Madagaskar",mh:"Marshalløerne",mk:"Nordmakedonien",ml:"Mali",mm:"Myanmar (Burma)",mn:"Mongoliet",mo:"SAR Macao",mp:"Nordmarianerne",mq:"Martinique",mr:"Mauretanien",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldiverne",mw:"Malawi",mx:"Mexico",my:"Malaysia",mz:"Mozambique",na:"Namibia",nc:"Ny Kaledonien",ne:"Niger",nf:"Norfolk Island",ng:"Nigeria",ni:"Nicaragua",nl:"Holland",no:"Norge",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"New Zealand",om:"Oman",pa:"Panama",pe:"Peru",pf:"Fransk Polynesien",pg:"Papua Ny Guinea",ph:"Filippinerne",pk:"Pakistan",pl:"Polen",pm:"Saint Pierre og Miquelon",pr:"Puerto Rico",ps:"De palæstinensiske områder",pt:"Portugal",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Rumænien",rs:"Serbien",ru:"Rusland",rw:"Rwanda",sa:"Saudi-Arabien",sb:"Salomonøerne",sc:"Seychellerne",sd:"Sudan",se:"Sverige",sg:"Singapore",sh:"St. Helena",si:"Slovenien",sj:"Svalbard og Jan Mayen",sk:"Slovakiet",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Surinam",ss:"Sydsudan",st:"São Tomé og Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Syrien",sz:"Eswatini",tc:"Turks- og Caicosøerne",td:"Tchad",tg:"Togo",th:"Thailand",tj:"Tadsjikistan",tk:"Tokelau",tl:"Timor-Leste",tm:"Turkmenistan",tn:"Tunesien",to:"Tonga",tr:"Tyrkiet",tt:"Trinidad og Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Ukraine",ug:"Uganda",us:"USA",uy:"Uruguay",uz:"Usbekistan",va:"Vatikanstaten",vc:"Saint Vincent og Grenadinerne",ve:"Venezuela",vg:"De Britiske Jomfruøer",vi:"De Amerikanske Jomfruøer",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis og Futuna",ws:"Samoa",ye:"Yemen",yt:"Mayotte",za:"Sydafrika",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Valgt land",noCountrySelected:"Intet land er valgt",countryListAriaLabel:"Liste over lande",searchPlaceholder:"Søge",zeroSearchResults:"Ingen resultater fundet",oneSearchResult:"1 resultat fundet",multipleSearchResults:"${count} resultater fundet",ac:"Ascension",xk:"Kosovo"},o={...i,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-de.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-de.js index ad913ffb2..f96405824 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-de.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-de.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[874],{74(a,n,e){e.r(n),e.d(n,{countryTranslations:()=>i,default:()=>s,interfaceTranslations:()=>r});const i={ad:"Andorra",ae:"Vereinigte Arabische Emirate",af:"Afghanistan",ag:"Antigua und Barbuda",ai:"Anguilla",al:"Albanien",am:"Armenien",ao:"Angola",ar:"Argentinien",as:"Amerikanisch-Samoa",at:"Österreich",au:"Australien",aw:"Aruba",ax:"Ålandinseln",az:"Aserbaidschan",ba:"Bosnien und Herzegowina",bb:"Barbados",bd:"Bangladesch",be:"Belgien",bf:"Burkina Faso",bg:"Bulgarien",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"St. Barthélemy",bm:"Bermuda",bn:"Brunei Darussalam",bo:"Bolivien",bq:"Bonaire, Sint Eustatius und Saba",br:"Brasilien",bs:"Bahamas",bt:"Bhutan",bw:"Botsuana",by:"Belarus",bz:"Belize",ca:"Kanada",cc:"Kokosinseln",cd:"Kongo-Kinshasa",cf:"Zentralafrikanische Republik",cg:"Kongo-Brazzaville",ch:"Schweiz",ci:"Côte d’Ivoire",ck:"Cookinseln",cl:"Chile",cm:"Kamerun",cn:"China",co:"Kolumbien",cr:"Costa Rica",cu:"Kuba",cv:"Cabo Verde",cw:"Curaçao",cx:"Weihnachtsinsel",cy:"Zypern",cz:"Tschechien",de:"Deutschland",dj:"Dschibuti",dk:"Dänemark",dm:"Dominica",do:"Dominikanische Republik",dz:"Algerien",ec:"Ecuador",ee:"Estland",eg:"Ägypten",eh:"Westsahara",er:"Eritrea",es:"Spanien",et:"Äthiopien",fi:"Finnland",fj:"Fidschi",fk:"Falklandinseln",fm:"Mikronesien",fo:"Färöer",fr:"Frankreich",ga:"Gabun",gb:"Vereinigtes Königreich",gd:"Grenada",ge:"Georgien",gf:"Französisch-Guayana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grönland",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Äquatorialguinea",gr:"Griechenland",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Sonderverwaltungsregion Hongkong",hn:"Honduras",hr:"Kroatien",ht:"Haiti",hu:"Ungarn",id:"Indonesien",ie:"Irland",il:"Israel",im:"Isle of Man",in:"Indien",io:"Britisches Territorium im Indischen Ozean",iq:"Irak",ir:"Iran",is:"Island",it:"Italien",je:"Jersey",jm:"Jamaika",jo:"Jordanien",jp:"Japan",ke:"Kenia",kg:"Kirgisistan",kh:"Kambodscha",ki:"Kiribati",km:"Komoren",kn:"St. Kitts und Nevis",kp:"Nordkorea",kr:"Südkorea",kw:"Kuwait",ky:"Kaimaninseln",kz:"Kasachstan",la:"Laos",lb:"Libanon",lc:"St. Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litauen",lu:"Luxemburg",lv:"Lettland",ly:"Libyen",ma:"Marokko",mc:"Monaco",md:"Republik Moldau",me:"Montenegro",mf:"St. Martin",mg:"Madagaskar",mh:"Marshallinseln",mk:"Nordmazedonien",ml:"Mali",mm:"Myanmar",mn:"Mongolei",mo:"Sonderverwaltungsregion Macau",mp:"Nördliche Marianen",mq:"Martinique",mr:"Mauretanien",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Malediven",mw:"Malawi",mx:"Mexiko",my:"Malaysia",mz:"Mosambik",na:"Namibia",nc:"Neukaledonien",ne:"Niger",nf:"Norfolkinsel",ng:"Nigeria",ni:"Nicaragua",nl:"Niederlande",no:"Norwegen",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Neuseeland",om:"Oman",pa:"Panama",pe:"Peru",pf:"Französisch-Polynesien",pg:"Papua-Neuguinea",ph:"Philippinen",pk:"Pakistan",pl:"Polen",pm:"St. Pierre und Miquelon",pr:"Puerto Rico",ps:"Palästinensische Autonomiegebiete",pt:"Portugal",pw:"Palau",py:"Paraguay",qa:"Katar",re:"Réunion",ro:"Rumänien",rs:"Serbien",ru:"Russland",rw:"Ruanda",sa:"Saudi-Arabien",sb:"Salomonen",sc:"Seychellen",sd:"Sudan",se:"Schweden",sg:"Singapur",sh:"St. Helena",si:"Slowenien",sj:"Spitzbergen und Jan Mayen",sk:"Slowakei",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Suriname",ss:"Südsudan",st:"São Tomé und Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Syrien",sz:"Eswatini",tc:"Turks- und Caicosinseln",td:"Tschad",tg:"Togo",th:"Thailand",tj:"Tadschikistan",tk:"Tokelau",tl:"Timor-Leste",tm:"Turkmenistan",tn:"Tunesien",to:"Tonga",tr:"Türkei",tt:"Trinidad und Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tansania",ua:"Ukraine",ug:"Uganda",us:"Vereinigte Staaten",uy:"Uruguay",uz:"Usbekistan",va:"Vatikanstadt",vc:"St. Vincent und die Grenadinen",ve:"Venezuela",vg:"Britische Jungferninseln",vi:"Amerikanische Jungferninseln",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis und Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Südafrika",zm:"Sambia",zw:"Simbabwe"},r={selectedCountryAriaLabel:"Ausgewähltes Land",noCountrySelected:"Kein Land ausgewählt",countryListAriaLabel:"Liste der Länder",searchPlaceholder:"Suchen",zeroSearchResults:"Keine Suchergebnisse",oneSearchResult:"1 Suchergebnis",multipleSearchResults:"${count} Suchergebnisse",ac:"Ascension-Insel",xk:"Kosovo"},s={...i,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[874],{74:(a,n,e)=>{e.r(n),e.d(n,{countryTranslations:()=>i,default:()=>s,interfaceTranslations:()=>r});const i={ad:"Andorra",ae:"Vereinigte Arabische Emirate",af:"Afghanistan",ag:"Antigua und Barbuda",ai:"Anguilla",al:"Albanien",am:"Armenien",ao:"Angola",ar:"Argentinien",as:"Amerikanisch-Samoa",at:"Österreich",au:"Australien",aw:"Aruba",ax:"Ålandinseln",az:"Aserbaidschan",ba:"Bosnien und Herzegowina",bb:"Barbados",bd:"Bangladesch",be:"Belgien",bf:"Burkina Faso",bg:"Bulgarien",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"St. Barthélemy",bm:"Bermuda",bn:"Brunei Darussalam",bo:"Bolivien",bq:"Bonaire, Sint Eustatius und Saba",br:"Brasilien",bs:"Bahamas",bt:"Bhutan",bw:"Botsuana",by:"Belarus",bz:"Belize",ca:"Kanada",cc:"Kokosinseln",cd:"Kongo-Kinshasa",cf:"Zentralafrikanische Republik",cg:"Kongo-Brazzaville",ch:"Schweiz",ci:"Côte d’Ivoire",ck:"Cookinseln",cl:"Chile",cm:"Kamerun",cn:"China",co:"Kolumbien",cr:"Costa Rica",cu:"Kuba",cv:"Cabo Verde",cw:"Curaçao",cx:"Weihnachtsinsel",cy:"Zypern",cz:"Tschechien",de:"Deutschland",dj:"Dschibuti",dk:"Dänemark",dm:"Dominica",do:"Dominikanische Republik",dz:"Algerien",ec:"Ecuador",ee:"Estland",eg:"Ägypten",eh:"Westsahara",er:"Eritrea",es:"Spanien",et:"Äthiopien",fi:"Finnland",fj:"Fidschi",fk:"Falklandinseln",fm:"Mikronesien",fo:"Färöer",fr:"Frankreich",ga:"Gabun",gb:"Vereinigtes Königreich",gd:"Grenada",ge:"Georgien",gf:"Französisch-Guayana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grönland",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Äquatorialguinea",gr:"Griechenland",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Sonderverwaltungsregion Hongkong",hn:"Honduras",hr:"Kroatien",ht:"Haiti",hu:"Ungarn",id:"Indonesien",ie:"Irland",il:"Israel",im:"Isle of Man",in:"Indien",io:"Britisches Territorium im Indischen Ozean",iq:"Irak",ir:"Iran",is:"Island",it:"Italien",je:"Jersey",jm:"Jamaika",jo:"Jordanien",jp:"Japan",ke:"Kenia",kg:"Kirgisistan",kh:"Kambodscha",ki:"Kiribati",km:"Komoren",kn:"St. Kitts und Nevis",kp:"Nordkorea",kr:"Südkorea",kw:"Kuwait",ky:"Kaimaninseln",kz:"Kasachstan",la:"Laos",lb:"Libanon",lc:"St. Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litauen",lu:"Luxemburg",lv:"Lettland",ly:"Libyen",ma:"Marokko",mc:"Monaco",md:"Republik Moldau",me:"Montenegro",mf:"St. Martin",mg:"Madagaskar",mh:"Marshallinseln",mk:"Nordmazedonien",ml:"Mali",mm:"Myanmar",mn:"Mongolei",mo:"Sonderverwaltungsregion Macau",mp:"Nördliche Marianen",mq:"Martinique",mr:"Mauretanien",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Malediven",mw:"Malawi",mx:"Mexiko",my:"Malaysia",mz:"Mosambik",na:"Namibia",nc:"Neukaledonien",ne:"Niger",nf:"Norfolkinsel",ng:"Nigeria",ni:"Nicaragua",nl:"Niederlande",no:"Norwegen",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Neuseeland",om:"Oman",pa:"Panama",pe:"Peru",pf:"Französisch-Polynesien",pg:"Papua-Neuguinea",ph:"Philippinen",pk:"Pakistan",pl:"Polen",pm:"St. Pierre und Miquelon",pr:"Puerto Rico",ps:"Palästinensische Autonomiegebiete",pt:"Portugal",pw:"Palau",py:"Paraguay",qa:"Katar",re:"Réunion",ro:"Rumänien",rs:"Serbien",ru:"Russland",rw:"Ruanda",sa:"Saudi-Arabien",sb:"Salomonen",sc:"Seychellen",sd:"Sudan",se:"Schweden",sg:"Singapur",sh:"St. Helena",si:"Slowenien",sj:"Spitzbergen und Jan Mayen",sk:"Slowakei",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Suriname",ss:"Südsudan",st:"São Tomé und Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Syrien",sz:"Eswatini",tc:"Turks- und Caicosinseln",td:"Tschad",tg:"Togo",th:"Thailand",tj:"Tadschikistan",tk:"Tokelau",tl:"Timor-Leste",tm:"Turkmenistan",tn:"Tunesien",to:"Tonga",tr:"Türkei",tt:"Trinidad und Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tansania",ua:"Ukraine",ug:"Uganda",us:"Vereinigte Staaten",uy:"Uruguay",uz:"Usbekistan",va:"Vatikanstadt",vc:"St. Vincent und die Grenadinen",ve:"Venezuela",vg:"Britische Jungferninseln",vi:"Amerikanische Jungferninseln",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis und Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Südafrika",zm:"Sambia",zw:"Simbabwe"},r={selectedCountryAriaLabel:"Ausgewähltes Land",noCountrySelected:"Kein Land ausgewählt",countryListAriaLabel:"Liste der Länder",searchPlaceholder:"Suchen",zeroSearchResults:"Keine Suchergebnisse",oneSearchResult:"1 Suchergebnis",multipleSearchResults:"${count} Suchergebnisse",ac:"Ascension-Insel",xk:"Kosovo"},s={...i,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-el.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-el.js index 66cc9e597..c301e55ec 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-el.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-el.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[736],{644(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"Ανδόρα",ae:"Ηνωμένα Αραβικά Εμιράτα",af:"Αφγανιστάν",ag:"Αντίγκουα και Μπαρμπούντα",ai:"Ανγκουίλα",al:"Αλβανία",am:"Αρμενία",ao:"Αγκόλα",ar:"Αργεντινή",as:"Αμερικανική Σαμόα",at:"Αυστρία",au:"Αυστραλία",aw:"Αρούμπα",ax:"Νήσοι Όλαντ",az:"Αζερμπαϊτζάν",ba:"Βοσνία - Ερζεγοβίνη",bb:"Μπαρμπέιντος",bd:"Μπανγκλαντές",be:"Βέλγιο",bf:"Μπουρκίνα Φάσο",bg:"Βουλγαρία",bh:"Μπαχρέιν",bi:"Μπουρούντι",bj:"Μπενίν",bl:"Άγιος Βαρθολομαίος",bm:"Βερμούδες",bn:"Μπρουνέι",bo:"Βολιβία",bq:"Ολλανδία Καραϊβικής",br:"Βραζιλία",bs:"Μπαχάμες",bt:"Μπουτάν",bw:"Μποτσουάνα",by:"Λευκορωσία",bz:"Μπελίζ",ca:"Καναδάς",cc:"Νήσοι Κόκος (Κίλινγκ)",cd:"Κονγκό - Κινσάσα",cf:"Κεντροαφρικανική Δημοκρατία",cg:"Κονγκό - Μπραζαβίλ",ch:"Ελβετία",ci:"Ακτή Ελεφαντοστού",ck:"Νήσοι Κουκ",cl:"Χιλή",cm:"Καμερούν",cn:"Κίνα",co:"Κολομβία",cr:"Κόστα Ρίκα",cu:"Κούβα",cv:"Πράσινο Ακρωτήριο",cw:"Κουρασάο",cx:"Νήσος των Χριστουγέννων",cy:"Κύπρος",cz:"Τσεχία",de:"Γερμανία",dj:"Τζιμπουτί",dk:"Δανία",dm:"Ντομίνικα",do:"Δομινικανή Δημοκρατία",dz:"Αλγερία",ec:"Ισημερινός",ee:"Εσθονία",eg:"Αίγυπτος",eh:"Δυτική Σαχάρα",er:"Ερυθραία",es:"Ισπανία",et:"Αιθιοπία",fi:"Φινλανδία",fj:"Φίτζι",fk:"Νήσοι Φόκλαντ",fm:"Μικρονησία",fo:"Νήσοι Φερόες",fr:"Γαλλία",ga:"Γκαμπόν",gb:"Ηνωμένο Βασίλειο",gd:"Γρενάδα",ge:"Γεωργία",gf:"Γαλλική Γουιάνα",gg:"Γκέρνζι",gh:"Γκάνα",gi:"Γιβραλτάρ",gl:"Γροιλανδία",gm:"Γκάμπια",gn:"Γουινέα",gp:"Γουαδελούπη",gq:"Ισημερινή Γουινέα",gr:"Ελλάδα",gt:"Γουατεμάλα",gu:"Γκουάμ",gw:"Γουινέα Μπισάου",gy:"Γουιάνα",hk:"Χονγκ Κονγκ ΕΔΠ Κίνας",hn:"Ονδούρα",hr:"Κροατία",ht:"Αϊτή",hu:"Ουγγαρία",id:"Ινδονησία",ie:"Ιρλανδία",il:"Ισραήλ",im:"Νήσος του Μαν",in:"Ινδία",io:"Βρετανικά Εδάφη Ινδικού Ωκεανού",iq:"Ιράκ",ir:"Ιράν",is:"Ισλανδία",it:"Ιταλία",je:"Τζέρζι",jm:"Τζαμάικα",jo:"Ιορδανία",jp:"Ιαπωνία",ke:"Κένυα",kg:"Κιργιστάν",kh:"Καμπότζη",ki:"Κιριμπάτι",km:"Κομόρες",kn:"Σεν Κιτς και Νέβις",kp:"Βόρεια Κορέα",kr:"Νότια Κορέα",kw:"Κουβέιτ",ky:"Νήσοι Κέιμαν",kz:"Καζακστάν",la:"Λάος",lb:"Λίβανος",lc:"Αγία Λουκία",li:"Λιχτενστάιν",lk:"Σρι Λάνκα",lr:"Λιβερία",ls:"Λεσότο",lt:"Λιθουανία",lu:"Λουξεμβούργο",lv:"Λετονία",ly:"Λιβύη",ma:"Μαρόκο",mc:"Μονακό",md:"Μολδαβία",me:"Μαυροβούνιο",mf:"Άγιος Μαρτίνος (Γαλλικό τμήμα)",mg:"Μαδαγασκάρη",mh:"Νήσοι Μάρσαλ",mk:"Βόρεια Μακεδονία",ml:"Μάλι",mm:"Μιανμάρ (Βιρμανία)",mn:"Μογγολία",mo:"Μακάο ΕΔΠ Κίνας",mp:"Νήσοι Βόρειες Μαριάνες",mq:"Μαρτινίκα",mr:"Μαυριτανία",ms:"Μονσεράτ",mt:"Μάλτα",mu:"Μαυρίκιος",mv:"Μαλδίβες",mw:"Μαλάουι",mx:"Μεξικό",my:"Μαλαισία",mz:"Μοζαμβίκη",na:"Ναμίμπια",nc:"Νέα Καληδονία",ne:"Νίγηρας",nf:"Νήσος Νόρφολκ",ng:"Νιγηρία",ni:"Νικαράγουα",nl:"Ολλανδία",no:"Νορβηγία",np:"Νεπάλ",nr:"Ναουρού",nu:"Νιούε",nz:"Νέα Ζηλανδία",om:"Ομάν",pa:"Παναμάς",pe:"Περού",pf:"Γαλλική Πολυνησία",pg:"Παπούα Νέα Γουινέα",ph:"Φιλιππίνες",pk:"Πακιστάν",pl:"Πολωνία",pm:"Σεν Πιερ και Μικελόν",pr:"Πουέρτο Ρίκο",ps:"Παλαιστινιακά Εδάφη",pt:"Πορτογαλία",pw:"Παλάου",py:"Παραγουάη",qa:"Κατάρ",re:"Ρεϊνιόν",ro:"Ρουμανία",rs:"Σερβία",ru:"Ρωσία",rw:"Ρουάντα",sa:"Σαουδική Αραβία",sb:"Νήσοι Σολομώντος",sc:"Σεϋχέλλες",sd:"Σουδάν",se:"Σουηδία",sg:"Σιγκαπούρη",sh:"Αγία Ελένη",si:"Σλοβενία",sj:"Σβάλμπαρντ και Γιαν Μαγιέν",sk:"Σλοβακία",sl:"Σιέρα Λεόνε",sm:"Άγιος Μαρίνος",sn:"Σενεγάλη",so:"Σομαλία",sr:"Σουρινάμ",ss:"Νότιο Σουδάν",st:"Σάο Τομέ και Πρίνσιπε",sv:"Ελ Σαλβαδόρ",sx:"Άγιος Μαρτίνος (Ολλανδικό τμήμα)",sy:"Συρία",sz:"Σουαζιλάνδη",tc:"Νήσοι Τερκς και Κάικος",td:"Τσαντ",tg:"Τόγκο",th:"Ταϊλάνδη",tj:"Τατζικιστάν",tk:"Τοκελάου",tl:"Τιμόρ-Λέστε",tm:"Τουρκμενιστάν",tn:"Τυνησία",to:"Τόνγκα",tr:"Τουρκία",tt:"Τρινιντάντ και Τομπάγκο",tv:"Τουβαλού",tw:"Ταϊβάν",tz:"Τανζανία",ua:"Ουκρανία",ug:"Ουγκάντα",us:"Ηνωμένες Πολιτείες",uy:"Ουρουγουάη",uz:"Ουζμπεκιστάν",va:"Βατικανό",vc:"Άγιος Βικέντιος και Γρεναδίνες",ve:"Βενεζουέλα",vg:"Βρετανικές Παρθένες Νήσοι",vi:"Αμερικανικές Παρθένες Νήσοι",vn:"Βιετνάμ",vu:"Βανουάτου",wf:"Γουάλις και Φουτούνα",ws:"Σαμόα",ye:"Υεμένη",yt:"Μαγιότ",za:"Νότια Αφρική",zm:"Ζάμπια",zw:"Ζιμπάμπουε"},c={selectedCountryAriaLabel:"Επιλεγμένη χώρα",noCountrySelected:"Δεν έχει επιλεγεί χώρα",countryListAriaLabel:"Κατάλογος χωρών",searchPlaceholder:"Αναζήτηση",zeroSearchResults:"Δεν βρέθηκαν αποτελέσματα",oneSearchResult:"Βρέθηκε 1 αποτέλεσμα",multipleSearchResults:"Βρέθηκαν ${count} αποτελέσματα",ac:"Νησί της Ανάληψης",xk:"Κοσσυφοπέδιο"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[736],{644:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"Ανδόρα",ae:"Ηνωμένα Αραβικά Εμιράτα",af:"Αφγανιστάν",ag:"Αντίγκουα και Μπαρμπούντα",ai:"Ανγκουίλα",al:"Αλβανία",am:"Αρμενία",ao:"Αγκόλα",ar:"Αργεντινή",as:"Αμερικανική Σαμόα",at:"Αυστρία",au:"Αυστραλία",aw:"Αρούμπα",ax:"Νήσοι Όλαντ",az:"Αζερμπαϊτζάν",ba:"Βοσνία - Ερζεγοβίνη",bb:"Μπαρμπέιντος",bd:"Μπανγκλαντές",be:"Βέλγιο",bf:"Μπουρκίνα Φάσο",bg:"Βουλγαρία",bh:"Μπαχρέιν",bi:"Μπουρούντι",bj:"Μπενίν",bl:"Άγιος Βαρθολομαίος",bm:"Βερμούδες",bn:"Μπρουνέι",bo:"Βολιβία",bq:"Ολλανδία Καραϊβικής",br:"Βραζιλία",bs:"Μπαχάμες",bt:"Μπουτάν",bw:"Μποτσουάνα",by:"Λευκορωσία",bz:"Μπελίζ",ca:"Καναδάς",cc:"Νήσοι Κόκος (Κίλινγκ)",cd:"Κονγκό - Κινσάσα",cf:"Κεντροαφρικανική Δημοκρατία",cg:"Κονγκό - Μπραζαβίλ",ch:"Ελβετία",ci:"Ακτή Ελεφαντοστού",ck:"Νήσοι Κουκ",cl:"Χιλή",cm:"Καμερούν",cn:"Κίνα",co:"Κολομβία",cr:"Κόστα Ρίκα",cu:"Κούβα",cv:"Πράσινο Ακρωτήριο",cw:"Κουρασάο",cx:"Νήσος των Χριστουγέννων",cy:"Κύπρος",cz:"Τσεχία",de:"Γερμανία",dj:"Τζιμπουτί",dk:"Δανία",dm:"Ντομίνικα",do:"Δομινικανή Δημοκρατία",dz:"Αλγερία",ec:"Ισημερινός",ee:"Εσθονία",eg:"Αίγυπτος",eh:"Δυτική Σαχάρα",er:"Ερυθραία",es:"Ισπανία",et:"Αιθιοπία",fi:"Φινλανδία",fj:"Φίτζι",fk:"Νήσοι Φόκλαντ",fm:"Μικρονησία",fo:"Νήσοι Φερόες",fr:"Γαλλία",ga:"Γκαμπόν",gb:"Ηνωμένο Βασίλειο",gd:"Γρενάδα",ge:"Γεωργία",gf:"Γαλλική Γουιάνα",gg:"Γκέρνζι",gh:"Γκάνα",gi:"Γιβραλτάρ",gl:"Γροιλανδία",gm:"Γκάμπια",gn:"Γουινέα",gp:"Γουαδελούπη",gq:"Ισημερινή Γουινέα",gr:"Ελλάδα",gt:"Γουατεμάλα",gu:"Γκουάμ",gw:"Γουινέα Μπισάου",gy:"Γουιάνα",hk:"Χονγκ Κονγκ ΕΔΠ Κίνας",hn:"Ονδούρα",hr:"Κροατία",ht:"Αϊτή",hu:"Ουγγαρία",id:"Ινδονησία",ie:"Ιρλανδία",il:"Ισραήλ",im:"Νήσος του Μαν",in:"Ινδία",io:"Βρετανικά Εδάφη Ινδικού Ωκεανού",iq:"Ιράκ",ir:"Ιράν",is:"Ισλανδία",it:"Ιταλία",je:"Τζέρζι",jm:"Τζαμάικα",jo:"Ιορδανία",jp:"Ιαπωνία",ke:"Κένυα",kg:"Κιργιστάν",kh:"Καμπότζη",ki:"Κιριμπάτι",km:"Κομόρες",kn:"Σεν Κιτς και Νέβις",kp:"Βόρεια Κορέα",kr:"Νότια Κορέα",kw:"Κουβέιτ",ky:"Νήσοι Κέιμαν",kz:"Καζακστάν",la:"Λάος",lb:"Λίβανος",lc:"Αγία Λουκία",li:"Λιχτενστάιν",lk:"Σρι Λάνκα",lr:"Λιβερία",ls:"Λεσότο",lt:"Λιθουανία",lu:"Λουξεμβούργο",lv:"Λετονία",ly:"Λιβύη",ma:"Μαρόκο",mc:"Μονακό",md:"Μολδαβία",me:"Μαυροβούνιο",mf:"Άγιος Μαρτίνος (Γαλλικό τμήμα)",mg:"Μαδαγασκάρη",mh:"Νήσοι Μάρσαλ",mk:"Βόρεια Μακεδονία",ml:"Μάλι",mm:"Μιανμάρ (Βιρμανία)",mn:"Μογγολία",mo:"Μακάο ΕΔΠ Κίνας",mp:"Νήσοι Βόρειες Μαριάνες",mq:"Μαρτινίκα",mr:"Μαυριτανία",ms:"Μονσεράτ",mt:"Μάλτα",mu:"Μαυρίκιος",mv:"Μαλδίβες",mw:"Μαλάουι",mx:"Μεξικό",my:"Μαλαισία",mz:"Μοζαμβίκη",na:"Ναμίμπια",nc:"Νέα Καληδονία",ne:"Νίγηρας",nf:"Νήσος Νόρφολκ",ng:"Νιγηρία",ni:"Νικαράγουα",nl:"Ολλανδία",no:"Νορβηγία",np:"Νεπάλ",nr:"Ναουρού",nu:"Νιούε",nz:"Νέα Ζηλανδία",om:"Ομάν",pa:"Παναμάς",pe:"Περού",pf:"Γαλλική Πολυνησία",pg:"Παπούα Νέα Γουινέα",ph:"Φιλιππίνες",pk:"Πακιστάν",pl:"Πολωνία",pm:"Σεν Πιερ και Μικελόν",pr:"Πουέρτο Ρίκο",ps:"Παλαιστινιακά Εδάφη",pt:"Πορτογαλία",pw:"Παλάου",py:"Παραγουάη",qa:"Κατάρ",re:"Ρεϊνιόν",ro:"Ρουμανία",rs:"Σερβία",ru:"Ρωσία",rw:"Ρουάντα",sa:"Σαουδική Αραβία",sb:"Νήσοι Σολομώντος",sc:"Σεϋχέλλες",sd:"Σουδάν",se:"Σουηδία",sg:"Σιγκαπούρη",sh:"Αγία Ελένη",si:"Σλοβενία",sj:"Σβάλμπαρντ και Γιαν Μαγιέν",sk:"Σλοβακία",sl:"Σιέρα Λεόνε",sm:"Άγιος Μαρίνος",sn:"Σενεγάλη",so:"Σομαλία",sr:"Σουρινάμ",ss:"Νότιο Σουδάν",st:"Σάο Τομέ και Πρίνσιπε",sv:"Ελ Σαλβαδόρ",sx:"Άγιος Μαρτίνος (Ολλανδικό τμήμα)",sy:"Συρία",sz:"Σουαζιλάνδη",tc:"Νήσοι Τερκς και Κάικος",td:"Τσαντ",tg:"Τόγκο",th:"Ταϊλάνδη",tj:"Τατζικιστάν",tk:"Τοκελάου",tl:"Τιμόρ-Λέστε",tm:"Τουρκμενιστάν",tn:"Τυνησία",to:"Τόνγκα",tr:"Τουρκία",tt:"Τρινιντάντ και Τομπάγκο",tv:"Τουβαλού",tw:"Ταϊβάν",tz:"Τανζανία",ua:"Ουκρανία",ug:"Ουγκάντα",us:"Ηνωμένες Πολιτείες",uy:"Ουρουγουάη",uz:"Ουζμπεκιστάν",va:"Βατικανό",vc:"Άγιος Βικέντιος και Γρεναδίνες",ve:"Βενεζουέλα",vg:"Βρετανικές Παρθένες Νήσοι",vi:"Αμερικανικές Παρθένες Νήσοι",vn:"Βιετνάμ",vu:"Βανουάτου",wf:"Γουάλις και Φουτούνα",ws:"Σαμόα",ye:"Υεμένη",yt:"Μαγιότ",za:"Νότια Αφρική",zm:"Ζάμπια",zw:"Ζιμπάμπουε"},c={selectedCountryAriaLabel:"Επιλεγμένη χώρα",noCountrySelected:"Δεν έχει επιλεγεί χώρα",countryListAriaLabel:"Κατάλογος χωρών",searchPlaceholder:"Αναζήτηση",zeroSearchResults:"Δεν βρέθηκαν αποτελέσματα",oneSearchResult:"Βρέθηκε 1 αποτέλεσμα",multipleSearchResults:"Βρέθηκαν ${count} αποτελέσματα",ac:"Νησί της Ανάληψης",xk:"Κοσσυφοπέδιο"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-es.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-es.js index 9636f57b3..88b641dc6 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-es.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-es.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[487],{763(a,i,n){n.r(i),n.d(i,{countryTranslations:()=>e,default:()=>s,interfaceTranslations:()=>r});const e={ad:"Andorra",ae:"Emiratos Árabes Unidos",af:"Afganistán",ag:"Antigua y Barbuda",ai:"Anguila",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentina",as:"Samoa Americana",at:"Austria",au:"Australia",aw:"Aruba",ax:"Islas Åland",az:"Azerbaiyán",ba:"Bosnia y Herzegovina",bb:"Barbados",bd:"Bangladés",be:"Bélgica",bf:"Burkina Faso",bg:"Bulgaria",bh:"Baréin",bi:"Burundi",bj:"Benín",bl:"San Bartolomé",bm:"Bermudas",bn:"Brunéi",bo:"Bolivia",bq:"Caribe neerlandés",br:"Brasil",bs:"Bahamas",bt:"Bután",bw:"Botsuana",by:"Bielorrusia",bz:"Belice",ca:"Canadá",cc:"Islas Cocos",cd:"República Democrática del Congo",cf:"República Centroafricana",cg:"Congo",ch:"Suiza",ci:"Côte d’Ivoire",ck:"Islas Cook",cl:"Chile",cm:"Camerún",cn:"China",co:"Colombia",cr:"Costa Rica",cu:"Cuba",cv:"Cabo Verde",cw:"Curazao",cx:"Isla de Navidad",cy:"Chipre",cz:"Chequia",de:"Alemania",dj:"Yibuti",dk:"Dinamarca",dm:"Dominica",do:"República Dominicana",dz:"Argelia",ec:"Ecuador",ee:"Estonia",eg:"Egipto",eh:"Sáhara Occidental",er:"Eritrea",es:"España",et:"Etiopía",fi:"Finlandia",fj:"Fiyi",fk:"Islas Malvinas",fm:"Micronesia",fo:"Islas Feroe",fr:"Francia",ga:"Gabón",gb:"Reino Unido",gd:"Granada",ge:"Georgia",gf:"Guayana Francesa",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Groenlandia",gm:"Gambia",gn:"Guinea",gp:"Guadalupe",gq:"Guinea Ecuatorial",gr:"Grecia",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bisáu",gy:"Guyana",hk:"RAE de Hong Kong (China)",hn:"Honduras",hr:"Croacia",ht:"Haití",hu:"Hungría",id:"Indonesia",ie:"Irlanda",il:"Israel",im:"Isla de Man",in:"India",io:"Territorio Británico del Océano Índico",iq:"Irak",ir:"Irán",is:"Islandia",it:"Italia",je:"Jersey",jm:"Jamaica",jo:"Jordania",jp:"Japón",ke:"Kenia",kg:"Kirguistán",kh:"Camboya",ki:"Kiribati",km:"Comoras",kn:"San Cristóbal y Nieves",kp:"Corea del Norte",kr:"Corea del Sur",kw:"Kuwait",ky:"Islas Caimán",kz:"Kazajistán",la:"Laos",lb:"Líbano",lc:"Santa Lucía",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesoto",lt:"Lituania",lu:"Luxemburgo",lv:"Letonia",ly:"Libia",ma:"Marruecos",mc:"Mónaco",md:"Moldavia",me:"Montenegro",mf:"San Martín",mg:"Madagascar",mh:"Islas Marshall",mk:"Macedonia del Norte",ml:"Mali",mm:"Myanmar (Birmania)",mn:"Mongolia",mo:"RAE de Macao (China)",mp:"Islas Marianas del Norte",mq:"Martinica",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauricio",mv:"Maldivas",mw:"Malaui",mx:"México",my:"Malasia",mz:"Mozambique",na:"Namibia",nc:"Nueva Caledonia",ne:"Níger",nf:"Isla Norfolk",ng:"Nigeria",ni:"Nicaragua",nl:"Países Bajos",no:"Noruega",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nueva Zelanda",om:"Omán",pa:"Panamá",pe:"Perú",pf:"Polinesia Francesa",pg:"Papúa Nueva Guinea",ph:"Filipinas",pk:"Pakistán",pl:"Polonia",pm:"San Pedro y Miquelón",pr:"Puerto Rico",ps:"Territorios Palestinos",pt:"Portugal",pw:"Palaos",py:"Paraguay",qa:"Catar",re:"Reunión",ro:"Rumanía",rs:"Serbia",ru:"Rusia",rw:"Ruanda",sa:"Arabia Saudí",sb:"Islas Salomón",sc:"Seychelles",sd:"Sudán",se:"Suecia",sg:"Singapur",sh:"Santa Elena",si:"Eslovenia",sj:"Svalbard y Jan Mayen",sk:"Eslovaquia",sl:"Sierra Leona",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Surinam",ss:"Sudán del Sur",st:"Santo Tomé y Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Siria",sz:"Esuatini",tc:"Islas Turcas y Caicos",td:"Chad",tg:"Togo",th:"Tailandia",tj:"Tayikistán",tk:"Tokelau",tl:"Timor-Leste",tm:"Turkmenistán",tn:"Túnez",to:"Tonga",tr:"Turquía",tt:"Trinidad y Tobago",tv:"Tuvalu",tw:"Taiwán",tz:"Tanzania",ua:"Ucrania",ug:"Uganda",us:"Estados Unidos",uy:"Uruguay",uz:"Uzbekistán",va:"Ciudad del Vaticano",vc:"San Vicente y las Granadinas",ve:"Venezuela",vg:"Islas Vírgenes Británicas",vi:"Islas Vírgenes de EE. UU.",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis y Futuna",ws:"Samoa",ye:"Yemen",yt:"Mayotte",za:"Sudáfrica",zm:"Zambia",zw:"Zimbabue"},r={selectedCountryAriaLabel:"País seleccionado",noCountrySelected:"Ningún país seleccionado",countryListAriaLabel:"Lista de países",searchPlaceholder:"Buscar",zeroSearchResults:"No se han encontrado resultados",oneSearchResult:"1 resultado encontrado",multipleSearchResults:"${count} resultados encontrados",ac:"isla Ascencion",xk:"Kosovo"},s={...e,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[487],{763:(a,i,n)=>{n.r(i),n.d(i,{countryTranslations:()=>e,default:()=>s,interfaceTranslations:()=>r});const e={ad:"Andorra",ae:"Emiratos Árabes Unidos",af:"Afganistán",ag:"Antigua y Barbuda",ai:"Anguila",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentina",as:"Samoa Americana",at:"Austria",au:"Australia",aw:"Aruba",ax:"Islas Åland",az:"Azerbaiyán",ba:"Bosnia y Herzegovina",bb:"Barbados",bd:"Bangladés",be:"Bélgica",bf:"Burkina Faso",bg:"Bulgaria",bh:"Baréin",bi:"Burundi",bj:"Benín",bl:"San Bartolomé",bm:"Bermudas",bn:"Brunéi",bo:"Bolivia",bq:"Caribe neerlandés",br:"Brasil",bs:"Bahamas",bt:"Bután",bw:"Botsuana",by:"Bielorrusia",bz:"Belice",ca:"Canadá",cc:"Islas Cocos",cd:"República Democrática del Congo",cf:"República Centroafricana",cg:"Congo",ch:"Suiza",ci:"Côte d’Ivoire",ck:"Islas Cook",cl:"Chile",cm:"Camerún",cn:"China",co:"Colombia",cr:"Costa Rica",cu:"Cuba",cv:"Cabo Verde",cw:"Curazao",cx:"Isla de Navidad",cy:"Chipre",cz:"Chequia",de:"Alemania",dj:"Yibuti",dk:"Dinamarca",dm:"Dominica",do:"República Dominicana",dz:"Argelia",ec:"Ecuador",ee:"Estonia",eg:"Egipto",eh:"Sáhara Occidental",er:"Eritrea",es:"España",et:"Etiopía",fi:"Finlandia",fj:"Fiyi",fk:"Islas Malvinas",fm:"Micronesia",fo:"Islas Feroe",fr:"Francia",ga:"Gabón",gb:"Reino Unido",gd:"Granada",ge:"Georgia",gf:"Guayana Francesa",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Groenlandia",gm:"Gambia",gn:"Guinea",gp:"Guadalupe",gq:"Guinea Ecuatorial",gr:"Grecia",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bisáu",gy:"Guyana",hk:"RAE de Hong Kong (China)",hn:"Honduras",hr:"Croacia",ht:"Haití",hu:"Hungría",id:"Indonesia",ie:"Irlanda",il:"Israel",im:"Isla de Man",in:"India",io:"Territorio Británico del Océano Índico",iq:"Irak",ir:"Irán",is:"Islandia",it:"Italia",je:"Jersey",jm:"Jamaica",jo:"Jordania",jp:"Japón",ke:"Kenia",kg:"Kirguistán",kh:"Camboya",ki:"Kiribati",km:"Comoras",kn:"San Cristóbal y Nieves",kp:"Corea del Norte",kr:"Corea del Sur",kw:"Kuwait",ky:"Islas Caimán",kz:"Kazajistán",la:"Laos",lb:"Líbano",lc:"Santa Lucía",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesoto",lt:"Lituania",lu:"Luxemburgo",lv:"Letonia",ly:"Libia",ma:"Marruecos",mc:"Mónaco",md:"Moldavia",me:"Montenegro",mf:"San Martín",mg:"Madagascar",mh:"Islas Marshall",mk:"Macedonia del Norte",ml:"Mali",mm:"Myanmar (Birmania)",mn:"Mongolia",mo:"RAE de Macao (China)",mp:"Islas Marianas del Norte",mq:"Martinica",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauricio",mv:"Maldivas",mw:"Malaui",mx:"México",my:"Malasia",mz:"Mozambique",na:"Namibia",nc:"Nueva Caledonia",ne:"Níger",nf:"Isla Norfolk",ng:"Nigeria",ni:"Nicaragua",nl:"Países Bajos",no:"Noruega",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nueva Zelanda",om:"Omán",pa:"Panamá",pe:"Perú",pf:"Polinesia Francesa",pg:"Papúa Nueva Guinea",ph:"Filipinas",pk:"Pakistán",pl:"Polonia",pm:"San Pedro y Miquelón",pr:"Puerto Rico",ps:"Territorios Palestinos",pt:"Portugal",pw:"Palaos",py:"Paraguay",qa:"Catar",re:"Reunión",ro:"Rumanía",rs:"Serbia",ru:"Rusia",rw:"Ruanda",sa:"Arabia Saudí",sb:"Islas Salomón",sc:"Seychelles",sd:"Sudán",se:"Suecia",sg:"Singapur",sh:"Santa Elena",si:"Eslovenia",sj:"Svalbard y Jan Mayen",sk:"Eslovaquia",sl:"Sierra Leona",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Surinam",ss:"Sudán del Sur",st:"Santo Tomé y Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Siria",sz:"Esuatini",tc:"Islas Turcas y Caicos",td:"Chad",tg:"Togo",th:"Tailandia",tj:"Tayikistán",tk:"Tokelau",tl:"Timor-Leste",tm:"Turkmenistán",tn:"Túnez",to:"Tonga",tr:"Turquía",tt:"Trinidad y Tobago",tv:"Tuvalu",tw:"Taiwán",tz:"Tanzania",ua:"Ucrania",ug:"Uganda",us:"Estados Unidos",uy:"Uruguay",uz:"Uzbekistán",va:"Ciudad del Vaticano",vc:"San Vicente y las Granadinas",ve:"Venezuela",vg:"Islas Vírgenes Británicas",vi:"Islas Vírgenes de EE. UU.",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis y Futuna",ws:"Samoa",ye:"Yemen",yt:"Mayotte",za:"Sudáfrica",zm:"Zambia",zw:"Zimbabue"},r={selectedCountryAriaLabel:"País seleccionado",noCountrySelected:"Ningún país seleccionado",countryListAriaLabel:"Lista de países",searchPlaceholder:"Buscar",zeroSearchResults:"No se han encontrado resultados",oneSearchResult:"1 resultado encontrado",multipleSearchResults:"${count} resultados encontrados",ac:"isla Ascencion",xk:"Kosovo"},s={...e,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-fa.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-fa.js index 8399822ae..87bf4a485 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-fa.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-fa.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[628],{428(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"آندورا",ae:"امارات متحدهٔ عربی",af:"افغانستان",ag:"آنتیگوا و باربودا",ai:"آنگویلا",al:"آلبانی",am:"ارمنستان",ao:"آنگولا",ar:"آرژانتین",as:"ساموآی امریکا",at:"اتریش",au:"استرالیا",aw:"آروبا",ax:"جزایر آلاند",az:"جمهوری آذربایجان",ba:"بوسنی و هرزگوین",bb:"باربادوس",bd:"بنگلادش",be:"بلژیک",bf:"بورکینافاسو",bg:"بلغارستان",bh:"بحرین",bi:"بوروندی",bj:"بنین",bl:"سن بارتلمی",bm:"برمودا",bn:"برونئی",bo:"بولیوی",bq:"جزایر کارائیب هلند",br:"برزیل",bs:"باهاما",bt:"بوتان",bw:"بوتسوانا",by:"بلاروس",bz:"بلیز",ca:"کانادا",cc:"جزایر کوکوس",cd:"کنگو - کینشاسا",cf:"جمهوری افریقای مرکزی",cg:"کنگو - برازویل",ch:"سوئیس",ci:"ساحل عاج",ck:"جزایر کوک",cl:"شیلی",cm:"کامرون",cn:"چین",co:"کلمبیا",cr:"کاستاریکا",cu:"کوبا",cv:"کیپ‌ورد",cw:"کوراسائو",cx:"جزیرهٔ کریسمس",cy:"قبرس",cz:"چک",de:"آلمان",dj:"جیبوتی",dk:"دانمارک",dm:"دومینیکا",do:"جمهوری دومینیکن",dz:"الجزایر",ec:"اکوادور",ee:"استونی",eg:"مصر",eh:"صحرای غربی",er:"اریتره",es:"اسپانیا",et:"اتیوپی",fi:"فنلاند",fj:"فیجی",fk:"جزایر فالکلند",fm:"میکرونزی",fo:"جزایر فارو",fr:"فرانسه",ga:"گابن",gb:"بریتانیا",gd:"گرنادا",ge:"گرجستان",gf:"گویان فرانسه",gg:"گرنزی",gh:"غنا",gi:"جبل‌الطارق",gl:"گرینلند",gm:"گامبیا",gn:"گینه",gp:"گوادلوپ",gq:"گینهٔ استوایی",gr:"یونان",gt:"گواتمالا",gu:"گوام",gw:"گینهٔ بیسائو",gy:"گویان",hk:"هنگ‌کنگ، منطقهٔ ویژهٔ اداری چین",hn:"هندوراس",hr:"کرواسی",ht:"هائیتی",hu:"مجارستان",id:"اندونزی",ie:"ایرلند",il:"اسرائیل",im:"جزیرهٔ من",in:"هند",io:"قلمرو بریتانیا در اقیانوس هند",iq:"عراق",ir:"ایران",is:"ایسلند",it:"ایتالیا",je:"جرزی",jm:"جامائیکا",jo:"اردن",jp:"ژاپن",ke:"کنیا",kg:"قرقیزستان",kh:"کامبوج",ki:"کیریباتی",km:"کومور",kn:"سنت کیتس و نویس",kp:"کرهٔ شمالی",kr:"کرهٔ جنوبی",kw:"کویت",ky:"جزایر کِیمن",kz:"قزاقستان",la:"لائوس",lb:"لبنان",lc:"سنت لوسیا",li:"لیختن‌اشتاین",lk:"سری‌لانکا",lr:"لیبریا",ls:"لسوتو",lt:"لیتوانی",lu:"لوکزامبورگ",lv:"لتونی",ly:"لیبی",ma:"مراکش",mc:"موناکو",md:"مولداوی",me:"مونته‌نگرو",mf:"سنت مارتین",mg:"ماداگاسکار",mh:"جزایر مارشال",mk:"مقدونیهٔ شمالی",ml:"مالی",mm:"میانمار (برمه)",mn:"مغولستان",mo:"ماکائو، منطقهٔ ویژهٔ اداری چین",mp:"جزایر ماریانای شمالی",mq:"مارتینیک",mr:"موریتانی",ms:"مونت‌سرات",mt:"مالت",mu:"موریس",mv:"مالدیو",mw:"مالاوی",mx:"مکزیک",my:"مالزی",mz:"موزامبیک",na:"نامیبیا",nc:"کالدونیای جدید",ne:"نیجر",nf:"جزیرهٔ نورفولک",ng:"نیجریه",ni:"نیکاراگوئه",nl:"هلند",no:"نروژ",np:"نپال",nr:"نائورو",nu:"نیوئه",nz:"نیوزیلند",om:"عمان",pa:"پاناما",pe:"پرو",pf:"پلی‌نزی فرانسه",pg:"پاپوا گینهٔ نو",ph:"فیلیپین",pk:"پاکستان",pl:"لهستان",pm:"سن پیر و میکلن",pr:"پورتوریکو",ps:"سرزمین‌های فلسطینی",pt:"پرتغال",pw:"پالائو",py:"پاراگوئه",qa:"قطر",re:"رئونیون",ro:"رومانی",rs:"صربستان",ru:"روسیه",rw:"رواندا",sa:"عربستان سعودی",sb:"جزایر سلیمان",sc:"سیشل",sd:"سودان",se:"سوئد",sg:"سنگاپور",sh:"سنت هلن",si:"اسلوونی",sj:"سوالبارد و یان ماین",sk:"اسلواکی",sl:"سیرالئون",sm:"سان‌مارینو",sn:"سنگال",so:"سومالی",sr:"سورینام",ss:"سودان جنوبی",st:"سائوتومه و پرینسیپ",sv:"السالوادور",sx:"سنت مارتن",sy:"سوریه",sz:"اسواتینی",tc:"جزایر تورکس و کایکوس",td:"چاد",tg:"توگو",th:"تایلند",tj:"تاجیکستان",tk:"توکلائو",tl:"تیمور-لسته",tm:"ترکمنستان",tn:"تونس",to:"تونگا",tr:"ترکیه",tt:"ترینیداد و توباگو",tv:"تووالو",tw:"تایوان",tz:"تانزانیا",ua:"اوکراین",ug:"اوگاندا",us:"ایالات متحده",uy:"اروگوئه",uz:"ازبکستان",va:"واتیکان",vc:"سنت وینسنت و گرنادین",ve:"ونزوئلا",vg:"جزایر ویرجین بریتانیا",vi:"جزایر ویرجین ایالات متحده",vn:"ویتنام",vu:"وانواتو",wf:"والیس و فوتونا",ws:"ساموآ",ye:"یمن",yt:"مایوت",za:"افریقای جنوبی",zm:"زامبیا",zw:"زیمبابوه"},c={selectedCountryAriaLabel:"کشور انتخاب شده",noCountrySelected:"هیچ کشوری انتخاب نشده است",countryListAriaLabel:"لیست کشورها",searchPlaceholder:"جستجو",zeroSearchResults:"هیچ نتیجه‌ای یافت نشد",oneSearchResult:"1 نتیجه یافت شد",multipleSearchResults:"${count} نتیجه یافت شد",ac:"جزیره اسنشن",xk:"کوزوو"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[628],{428:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"آندورا",ae:"امارات متحدهٔ عربی",af:"افغانستان",ag:"آنتیگوا و باربودا",ai:"آنگویلا",al:"آلبانی",am:"ارمنستان",ao:"آنگولا",ar:"آرژانتین",as:"ساموآی امریکا",at:"اتریش",au:"استرالیا",aw:"آروبا",ax:"جزایر آلاند",az:"جمهوری آذربایجان",ba:"بوسنی و هرزگوین",bb:"باربادوس",bd:"بنگلادش",be:"بلژیک",bf:"بورکینافاسو",bg:"بلغارستان",bh:"بحرین",bi:"بوروندی",bj:"بنین",bl:"سن بارتلمی",bm:"برمودا",bn:"برونئی",bo:"بولیوی",bq:"جزایر کارائیب هلند",br:"برزیل",bs:"باهاما",bt:"بوتان",bw:"بوتسوانا",by:"بلاروس",bz:"بلیز",ca:"کانادا",cc:"جزایر کوکوس",cd:"کنگو - کینشاسا",cf:"جمهوری افریقای مرکزی",cg:"کنگو - برازویل",ch:"سوئیس",ci:"ساحل عاج",ck:"جزایر کوک",cl:"شیلی",cm:"کامرون",cn:"چین",co:"کلمبیا",cr:"کاستاریکا",cu:"کوبا",cv:"کیپ‌ورد",cw:"کوراسائو",cx:"جزیرهٔ کریسمس",cy:"قبرس",cz:"چک",de:"آلمان",dj:"جیبوتی",dk:"دانمارک",dm:"دومینیکا",do:"جمهوری دومینیکن",dz:"الجزایر",ec:"اکوادور",ee:"استونی",eg:"مصر",eh:"صحرای غربی",er:"اریتره",es:"اسپانیا",et:"اتیوپی",fi:"فنلاند",fj:"فیجی",fk:"جزایر فالکلند",fm:"میکرونزی",fo:"جزایر فارو",fr:"فرانسه",ga:"گابن",gb:"بریتانیا",gd:"گرنادا",ge:"گرجستان",gf:"گویان فرانسه",gg:"گرنزی",gh:"غنا",gi:"جبل‌الطارق",gl:"گرینلند",gm:"گامبیا",gn:"گینه",gp:"گوادلوپ",gq:"گینهٔ استوایی",gr:"یونان",gt:"گواتمالا",gu:"گوام",gw:"گینهٔ بیسائو",gy:"گویان",hk:"هنگ‌کنگ، منطقهٔ ویژهٔ اداری چین",hn:"هندوراس",hr:"کرواسی",ht:"هائیتی",hu:"مجارستان",id:"اندونزی",ie:"ایرلند",il:"اسرائیل",im:"جزیرهٔ من",in:"هند",io:"قلمرو بریتانیا در اقیانوس هند",iq:"عراق",ir:"ایران",is:"ایسلند",it:"ایتالیا",je:"جرزی",jm:"جامائیکا",jo:"اردن",jp:"ژاپن",ke:"کنیا",kg:"قرقیزستان",kh:"کامبوج",ki:"کیریباتی",km:"کومور",kn:"سنت کیتس و نویس",kp:"کرهٔ شمالی",kr:"کرهٔ جنوبی",kw:"کویت",ky:"جزایر کِیمن",kz:"قزاقستان",la:"لائوس",lb:"لبنان",lc:"سنت لوسیا",li:"لیختن‌اشتاین",lk:"سری‌لانکا",lr:"لیبریا",ls:"لسوتو",lt:"لیتوانی",lu:"لوکزامبورگ",lv:"لتونی",ly:"لیبی",ma:"مراکش",mc:"موناکو",md:"مولداوی",me:"مونته‌نگرو",mf:"سنت مارتین",mg:"ماداگاسکار",mh:"جزایر مارشال",mk:"مقدونیهٔ شمالی",ml:"مالی",mm:"میانمار (برمه)",mn:"مغولستان",mo:"ماکائو، منطقهٔ ویژهٔ اداری چین",mp:"جزایر ماریانای شمالی",mq:"مارتینیک",mr:"موریتانی",ms:"مونت‌سرات",mt:"مالت",mu:"موریس",mv:"مالدیو",mw:"مالاوی",mx:"مکزیک",my:"مالزی",mz:"موزامبیک",na:"نامیبیا",nc:"کالدونیای جدید",ne:"نیجر",nf:"جزیرهٔ نورفولک",ng:"نیجریه",ni:"نیکاراگوئه",nl:"هلند",no:"نروژ",np:"نپال",nr:"نائورو",nu:"نیوئه",nz:"نیوزیلند",om:"عمان",pa:"پاناما",pe:"پرو",pf:"پلی‌نزی فرانسه",pg:"پاپوا گینهٔ نو",ph:"فیلیپین",pk:"پاکستان",pl:"لهستان",pm:"سن پیر و میکلن",pr:"پورتوریکو",ps:"سرزمین‌های فلسطینی",pt:"پرتغال",pw:"پالائو",py:"پاراگوئه",qa:"قطر",re:"رئونیون",ro:"رومانی",rs:"صربستان",ru:"روسیه",rw:"رواندا",sa:"عربستان سعودی",sb:"جزایر سلیمان",sc:"سیشل",sd:"سودان",se:"سوئد",sg:"سنگاپور",sh:"سنت هلن",si:"اسلوونی",sj:"سوالبارد و یان ماین",sk:"اسلواکی",sl:"سیرالئون",sm:"سان‌مارینو",sn:"سنگال",so:"سومالی",sr:"سورینام",ss:"سودان جنوبی",st:"سائوتومه و پرینسیپ",sv:"السالوادور",sx:"سنت مارتن",sy:"سوریه",sz:"اسواتینی",tc:"جزایر تورکس و کایکوس",td:"چاد",tg:"توگو",th:"تایلند",tj:"تاجیکستان",tk:"توکلائو",tl:"تیمور-لسته",tm:"ترکمنستان",tn:"تونس",to:"تونگا",tr:"ترکیه",tt:"ترینیداد و توباگو",tv:"تووالو",tw:"تایوان",tz:"تانزانیا",ua:"اوکراین",ug:"اوگاندا",us:"ایالات متحده",uy:"اروگوئه",uz:"ازبکستان",va:"واتیکان",vc:"سنت وینسنت و گرنادین",ve:"ونزوئلا",vg:"جزایر ویرجین بریتانیا",vi:"جزایر ویرجین ایالات متحده",vn:"ویتنام",vu:"وانواتو",wf:"والیس و فوتونا",ws:"ساموآ",ye:"یمن",yt:"مایوت",za:"افریقای جنوبی",zm:"زامبیا",zw:"زیمبابوه"},c={selectedCountryAriaLabel:"کشور انتخاب شده",noCountrySelected:"هیچ کشوری انتخاب نشده است",countryListAriaLabel:"لیست کشورها",searchPlaceholder:"جستجو",zeroSearchResults:"هیچ نتیجه‌ای یافت نشد",oneSearchResult:"1 نتیجه یافت شد",multipleSearchResults:"${count} نتیجه یافت شد",ac:"جزیره اسنشن",xk:"کوزوو"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-fi.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-fi.js index f8545009e..02f33da38 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-fi.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-fi.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[372],{844(a,i,n){n.r(i),n.d(i,{countryTranslations:()=>e,default:()=>r,interfaceTranslations:()=>t});const e={ad:"Andorra",ae:"Arabiemiirikunnat",af:"Afganistan",ag:"Antigua ja Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentiina",as:"Amerikan Samoa",at:"Itävalta",au:"Australia",aw:"Aruba",ax:"Ahvenanmaa",az:"Azerbaidžan",ba:"Bosnia ja Hertsegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgia",bf:"Burkina Faso",bg:"Bulgaria",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Karibian Alankomaat",br:"Brasilia",bs:"Bahama",bt:"Bhutan",bw:"Botswana",by:"Valko-Venäjä",bz:"Belize",ca:"Kanada",cc:"Kookossaaret (Keelingsaaret)",cd:"Kongon demokraattinen tasavalta",cf:"Keski-Afrikan tasavalta",cg:"Kongon tasavalta",ch:"Sveitsi",ci:"Norsunluurannikko",ck:"Cookinsaaret",cl:"Chile",cm:"Kamerun",cn:"Kiina",co:"Kolumbia",cr:"Costa Rica",cu:"Kuuba",cv:"Kap Verde",cw:"Curaçao",cx:"Joulusaari",cy:"Kypros",cz:"Tšekki",de:"Saksa",dj:"Djibouti",dk:"Tanska",dm:"Dominica",do:"Dominikaaninen tasavalta",dz:"Algeria",ec:"Ecuador",ee:"Viro",eg:"Egypti",eh:"Länsi-Sahara",er:"Eritrea",es:"Espanja",et:"Etiopia",fi:"Suomi",fj:"Fidži",fk:"Falklandinsaaret",fm:"Mikronesian liittovaltio",fo:"Färsaaret",fr:"Ranska",ga:"Gabon",gb:"Iso-Britannia",gd:"Grenada",ge:"Georgia",gf:"Ranskan Guayana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grönlanti",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Päiväntasaajan Guinea",gr:"Kreikka",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hongkong – Kiinan e.h.a.",hn:"Honduras",hr:"Kroatia",ht:"Haiti",hu:"Unkari",id:"Indonesia",ie:"Irlanti",il:"Israel",im:"Mansaari",in:"Intia",io:"Brittiläinen Intian valtameren alue",iq:"Irak",ir:"Iran",is:"Islanti",it:"Italia",je:"Jersey",jm:"Jamaika",jo:"Jordania",jp:"Japani",ke:"Kenia",kg:"Kirgisia",kh:"Kambodža",ki:"Kiribati",km:"Komorit",kn:"Saint Kitts ja Nevis",kp:"Pohjois-Korea",kr:"Etelä-Korea",kw:"Kuwait",ky:"Caymansaaret",kz:"Kazakstan",la:"Laos",lb:"Libanon",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Liettua",lu:"Luxemburg",lv:"Latvia",ly:"Libya",ma:"Marokko",mc:"Monaco",md:"Moldova",me:"Montenegro",mf:"Saint-Martin",mg:"Madagaskar",mh:"Marshallinsaaret",mk:"Pohjois-Makedonia",ml:"Mali",mm:"Myanmar (Burma)",mn:"Mongolia",mo:"Macao – Kiinan e.h.a.",mp:"Pohjois-Mariaanit",mq:"Martinique",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Malediivit",mw:"Malawi",mx:"Meksiko",my:"Malesia",mz:"Mosambik",na:"Namibia",nc:"Uusi-Kaledonia",ne:"Niger",nf:"Norfolkinsaari",ng:"Nigeria",ni:"Nicaragua",nl:"Alankomaat",no:"Norja",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Uusi-Seelanti",om:"Oman",pa:"Panama",pe:"Peru",pf:"Ranskan Polynesia",pg:"Papua-Uusi-Guinea",ph:"Filippiinit",pk:"Pakistan",pl:"Puola",pm:"Saint-Pierre ja Miquelon",pr:"Puerto Rico",ps:"Palestiinalaisalueet",pt:"Portugali",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Romania",rs:"Serbia",ru:"Venäjä",rw:"Ruanda",sa:"Saudi-Arabia",sb:"Salomonsaaret",sc:"Seychellit",sd:"Sudan",se:"Ruotsi",sg:"Singapore",sh:"Saint Helena",si:"Slovenia",sj:"Huippuvuoret ja Jan Mayen",sk:"Slovakia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Suriname",ss:"Etelä-Sudan",st:"São Tomé ja Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Syyria",sz:"Swazimaa",tc:"Turks- ja Caicossaaret",td:"Tšad",tg:"Togo",th:"Thaimaa",tj:"Tadžikistan",tk:"Tokelau",tl:"Itä-Timor",tm:"Turkmenistan",tn:"Tunisia",to:"Tonga",tr:"Turkki",tt:"Trinidad ja Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tansania",ua:"Ukraina",ug:"Uganda",us:"Yhdysvallat",uy:"Uruguay",uz:"Uzbekistan",va:"Vatikaani",vc:"Saint Vincent ja Grenadiinit",ve:"Venezuela",vg:"Brittiläiset Neitsytsaaret",vi:"Yhdysvaltain Neitsytsaaret",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis ja Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Etelä-Afrikka",zm:"Sambia",zw:"Zimbabwe"},t={selectedCountryAriaLabel:"Valittu maa",noCountrySelected:"Maata ei ole valittu",countryListAriaLabel:"Luettelo maista",searchPlaceholder:"Haku",zeroSearchResults:"Ei tuloksia",oneSearchResult:"1 tulos löytyi",multipleSearchResults:"${count} tulosta löytyi",ac:"Ascension",xk:"Kosovo"},r={...e,...t}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[372],{844:(a,i,n)=>{n.r(i),n.d(i,{countryTranslations:()=>e,default:()=>r,interfaceTranslations:()=>t});const e={ad:"Andorra",ae:"Arabiemiirikunnat",af:"Afganistan",ag:"Antigua ja Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentiina",as:"Amerikan Samoa",at:"Itävalta",au:"Australia",aw:"Aruba",ax:"Ahvenanmaa",az:"Azerbaidžan",ba:"Bosnia ja Hertsegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgia",bf:"Burkina Faso",bg:"Bulgaria",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Karibian Alankomaat",br:"Brasilia",bs:"Bahama",bt:"Bhutan",bw:"Botswana",by:"Valko-Venäjä",bz:"Belize",ca:"Kanada",cc:"Kookossaaret (Keelingsaaret)",cd:"Kongon demokraattinen tasavalta",cf:"Keski-Afrikan tasavalta",cg:"Kongon tasavalta",ch:"Sveitsi",ci:"Norsunluurannikko",ck:"Cookinsaaret",cl:"Chile",cm:"Kamerun",cn:"Kiina",co:"Kolumbia",cr:"Costa Rica",cu:"Kuuba",cv:"Kap Verde",cw:"Curaçao",cx:"Joulusaari",cy:"Kypros",cz:"Tšekki",de:"Saksa",dj:"Djibouti",dk:"Tanska",dm:"Dominica",do:"Dominikaaninen tasavalta",dz:"Algeria",ec:"Ecuador",ee:"Viro",eg:"Egypti",eh:"Länsi-Sahara",er:"Eritrea",es:"Espanja",et:"Etiopia",fi:"Suomi",fj:"Fidži",fk:"Falklandinsaaret",fm:"Mikronesian liittovaltio",fo:"Färsaaret",fr:"Ranska",ga:"Gabon",gb:"Iso-Britannia",gd:"Grenada",ge:"Georgia",gf:"Ranskan Guayana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grönlanti",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Päiväntasaajan Guinea",gr:"Kreikka",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hongkong – Kiinan e.h.a.",hn:"Honduras",hr:"Kroatia",ht:"Haiti",hu:"Unkari",id:"Indonesia",ie:"Irlanti",il:"Israel",im:"Mansaari",in:"Intia",io:"Brittiläinen Intian valtameren alue",iq:"Irak",ir:"Iran",is:"Islanti",it:"Italia",je:"Jersey",jm:"Jamaika",jo:"Jordania",jp:"Japani",ke:"Kenia",kg:"Kirgisia",kh:"Kambodža",ki:"Kiribati",km:"Komorit",kn:"Saint Kitts ja Nevis",kp:"Pohjois-Korea",kr:"Etelä-Korea",kw:"Kuwait",ky:"Caymansaaret",kz:"Kazakstan",la:"Laos",lb:"Libanon",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Liettua",lu:"Luxemburg",lv:"Latvia",ly:"Libya",ma:"Marokko",mc:"Monaco",md:"Moldova",me:"Montenegro",mf:"Saint-Martin",mg:"Madagaskar",mh:"Marshallinsaaret",mk:"Pohjois-Makedonia",ml:"Mali",mm:"Myanmar (Burma)",mn:"Mongolia",mo:"Macao – Kiinan e.h.a.",mp:"Pohjois-Mariaanit",mq:"Martinique",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Malediivit",mw:"Malawi",mx:"Meksiko",my:"Malesia",mz:"Mosambik",na:"Namibia",nc:"Uusi-Kaledonia",ne:"Niger",nf:"Norfolkinsaari",ng:"Nigeria",ni:"Nicaragua",nl:"Alankomaat",no:"Norja",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Uusi-Seelanti",om:"Oman",pa:"Panama",pe:"Peru",pf:"Ranskan Polynesia",pg:"Papua-Uusi-Guinea",ph:"Filippiinit",pk:"Pakistan",pl:"Puola",pm:"Saint-Pierre ja Miquelon",pr:"Puerto Rico",ps:"Palestiinalaisalueet",pt:"Portugali",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Romania",rs:"Serbia",ru:"Venäjä",rw:"Ruanda",sa:"Saudi-Arabia",sb:"Salomonsaaret",sc:"Seychellit",sd:"Sudan",se:"Ruotsi",sg:"Singapore",sh:"Saint Helena",si:"Slovenia",sj:"Huippuvuoret ja Jan Mayen",sk:"Slovakia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Suriname",ss:"Etelä-Sudan",st:"São Tomé ja Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Syyria",sz:"Swazimaa",tc:"Turks- ja Caicossaaret",td:"Tšad",tg:"Togo",th:"Thaimaa",tj:"Tadžikistan",tk:"Tokelau",tl:"Itä-Timor",tm:"Turkmenistan",tn:"Tunisia",to:"Tonga",tr:"Turkki",tt:"Trinidad ja Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tansania",ua:"Ukraina",ug:"Uganda",us:"Yhdysvallat",uy:"Uruguay",uz:"Uzbekistan",va:"Vatikaani",vc:"Saint Vincent ja Grenadiinit",ve:"Venezuela",vg:"Brittiläiset Neitsytsaaret",vi:"Yhdysvaltain Neitsytsaaret",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis ja Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Etelä-Afrikka",zm:"Sambia",zw:"Zimbabwe"},t={selectedCountryAriaLabel:"Valittu maa",noCountrySelected:"Maata ei ole valittu",countryListAriaLabel:"Luettelo maista",searchPlaceholder:"Haku",zeroSearchResults:"Ei tuloksia",oneSearchResult:"1 tulos löytyi",multipleSearchResults:"${count} tulosta löytyi",ac:"Ascension",xk:"Kosovo"},r={...e,...t}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-fr.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-fr.js index 9062ad917..ad7575125 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-fr.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-fr.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[847],{7(a,e,i){i.r(e),i.d(e,{countryTranslations:()=>n,default:()=>s,interfaceTranslations:()=>r});const n={ad:"Andorre",ae:"Émirats arabes unis",af:"Afghanistan",ag:"Antigua-et-Barbuda",ai:"Anguilla",al:"Albanie",am:"Arménie",ao:"Angola",ar:"Argentine",as:"Samoa américaines",at:"Autriche",au:"Australie",aw:"Aruba",ax:"Îles Åland",az:"Azerbaïdjan",ba:"Bosnie-Herzégovine",bb:"Barbade",bd:"Bangladesh",be:"Belgique",bf:"Burkina Faso",bg:"Bulgarie",bh:"Bahreïn",bi:"Burundi",bj:"Bénin",bl:"Saint-Barthélemy",bm:"Bermudes",bn:"Brunéi Darussalam",bo:"Bolivie",bq:"Pays-Bas caribéens",br:"Brésil",bs:"Bahamas",bt:"Bhoutan",bw:"Botswana",by:"Biélorussie",bz:"Belize",ca:"Canada",cc:"Îles Cocos",cd:"Congo-Kinshasa",cf:"République centrafricaine",cg:"Congo-Brazzaville",ch:"Suisse",ci:"Côte d’Ivoire",ck:"Îles Cook",cl:"Chili",cm:"Cameroun",cn:"Chine",co:"Colombie",cr:"Costa Rica",cu:"Cuba",cv:"Cap-Vert",cw:"Curaçao",cx:"Île Christmas",cy:"Chypre",cz:"Tchéquie",de:"Allemagne",dj:"Djibouti",dk:"Danemark",dm:"Dominique",do:"République dominicaine",dz:"Algérie",ec:"Équateur",ee:"Estonie",eg:"Égypte",eh:"Sahara occidental",er:"Érythrée",es:"Espagne",et:"Éthiopie",fi:"Finlande",fj:"Fidji",fk:"Îles Malouines",fm:"États fédérés de Micronésie",fo:"Îles Féroé",fr:"France",ga:"Gabon",gb:"Royaume-Uni",gd:"Grenade",ge:"Géorgie",gf:"Guyane française",gg:"Guernesey",gh:"Ghana",gi:"Gibraltar",gl:"Groenland",gm:"Gambie",gn:"Guinée",gp:"Guadeloupe",gq:"Guinée équatoriale",gr:"Grèce",gt:"Guatemala",gu:"Guam",gw:"Guinée-Bissau",gy:"Guyana",hk:"R.A.S. chinoise de Hong Kong",hn:"Honduras",hr:"Croatie",ht:"Haïti",hu:"Hongrie",id:"Indonésie",ie:"Irlande",il:"Israël",im:"Île de Man",in:"Inde",io:"Territoire britannique de l’océan Indien",iq:"Irak",ir:"Iran",is:"Islande",it:"Italie",je:"Jersey",jm:"Jamaïque",jo:"Jordanie",jp:"Japon",ke:"Kenya",kg:"Kirghizistan",kh:"Cambodge",ki:"Kiribati",km:"Comores",kn:"Saint-Christophe-et-Niévès",kp:"Corée du Nord",kr:"Corée du Sud",kw:"Koweït",ky:"Îles Caïmans",kz:"Kazakhstan",la:"Laos",lb:"Liban",lc:"Sainte-Lucie",li:"Liechtenstein",lk:"Sri Lanka",lr:"Libéria",ls:"Lesotho",lt:"Lituanie",lu:"Luxembourg",lv:"Lettonie",ly:"Libye",ma:"Maroc",mc:"Monaco",md:"Moldavie",me:"Monténégro",mf:"Saint-Martin",mg:"Madagascar",mh:"Îles Marshall",mk:"Macédoine du Nord",ml:"Mali",mm:"Myanmar (Birmanie)",mn:"Mongolie",mo:"R.A.S. chinoise de Macao",mp:"Îles Mariannes du Nord",mq:"Martinique",mr:"Mauritanie",ms:"Montserrat",mt:"Malte",mu:"Maurice",mv:"Maldives",mw:"Malawi",mx:"Mexique",my:"Malaisie",mz:"Mozambique",na:"Namibie",nc:"Nouvelle-Calédonie",ne:"Niger",nf:"Île Norfolk",ng:"Nigéria",ni:"Nicaragua",nl:"Pays-Bas",no:"Norvège",np:"Népal",nr:"Nauru",nu:"Niue",nz:"Nouvelle-Zélande",om:"Oman",pa:"Panama",pe:"Pérou",pf:"Polynésie française",pg:"Papouasie-Nouvelle-Guinée",ph:"Philippines",pk:"Pakistan",pl:"Pologne",pm:"Saint-Pierre-et-Miquelon",pr:"Porto Rico",ps:"Territoires palestiniens",pt:"Portugal",pw:"Palaos",py:"Paraguay",qa:"Qatar",re:"La Réunion",ro:"Roumanie",rs:"Serbie",ru:"Russie",rw:"Rwanda",sa:"Arabie saoudite",sb:"Îles Salomon",sc:"Seychelles",sd:"Soudan",se:"Suède",sg:"Singapour",sh:"Sainte-Hélène",si:"Slovénie",sj:"Svalbard et Jan Mayen",sk:"Slovaquie",sl:"Sierra Leone",sm:"Saint-Marin",sn:"Sénégal",so:"Somalie",sr:"Suriname",ss:"Soudan du Sud",st:"Sao Tomé-et-Principe",sv:"Salvador",sx:"Saint-Martin (partie néerlandaise)",sy:"Syrie",sz:"Eswatini",tc:"Îles Turques-et-Caïques",td:"Tchad",tg:"Togo",th:"Thaïlande",tj:"Tadjikistan",tk:"Tokelau",tl:"Timor oriental",tm:"Turkménistan",tn:"Tunisie",to:"Tonga",tr:"Turquie",tt:"Trinité-et-Tobago",tv:"Tuvalu",tw:"Taïwan",tz:"Tanzanie",ua:"Ukraine",ug:"Ouganda",us:"États-Unis",uy:"Uruguay",uz:"Ouzbékistan",va:"État de la Cité du Vatican",vc:"Saint-Vincent-et-les-Grenadines",ve:"Venezuela",vg:"Îles Vierges britanniques",vi:"Îles Vierges des États-Unis",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis-et-Futuna",ws:"Samoa",ye:"Yémen",yt:"Mayotte",za:"Afrique du Sud",zm:"Zambie",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Pays sélectionné",noCountrySelected:"Aucun pays sélectionné",countryListAriaLabel:"Liste des pays",searchPlaceholder:"Recherche",zeroSearchResults:"Aucun résultat trouvé",oneSearchResult:"1 résultat trouvé",multipleSearchResults:"${count} résultats trouvés",ac:"Île de l'Ascension",xk:"Kosovo"},s={...n,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[847],{7:(a,e,i)=>{i.r(e),i.d(e,{countryTranslations:()=>n,default:()=>s,interfaceTranslations:()=>r});const n={ad:"Andorre",ae:"Émirats arabes unis",af:"Afghanistan",ag:"Antigua-et-Barbuda",ai:"Anguilla",al:"Albanie",am:"Arménie",ao:"Angola",ar:"Argentine",as:"Samoa américaines",at:"Autriche",au:"Australie",aw:"Aruba",ax:"Îles Åland",az:"Azerbaïdjan",ba:"Bosnie-Herzégovine",bb:"Barbade",bd:"Bangladesh",be:"Belgique",bf:"Burkina Faso",bg:"Bulgarie",bh:"Bahreïn",bi:"Burundi",bj:"Bénin",bl:"Saint-Barthélemy",bm:"Bermudes",bn:"Brunéi Darussalam",bo:"Bolivie",bq:"Pays-Bas caribéens",br:"Brésil",bs:"Bahamas",bt:"Bhoutan",bw:"Botswana",by:"Biélorussie",bz:"Belize",ca:"Canada",cc:"Îles Cocos",cd:"Congo-Kinshasa",cf:"République centrafricaine",cg:"Congo-Brazzaville",ch:"Suisse",ci:"Côte d’Ivoire",ck:"Îles Cook",cl:"Chili",cm:"Cameroun",cn:"Chine",co:"Colombie",cr:"Costa Rica",cu:"Cuba",cv:"Cap-Vert",cw:"Curaçao",cx:"Île Christmas",cy:"Chypre",cz:"Tchéquie",de:"Allemagne",dj:"Djibouti",dk:"Danemark",dm:"Dominique",do:"République dominicaine",dz:"Algérie",ec:"Équateur",ee:"Estonie",eg:"Égypte",eh:"Sahara occidental",er:"Érythrée",es:"Espagne",et:"Éthiopie",fi:"Finlande",fj:"Fidji",fk:"Îles Malouines",fm:"États fédérés de Micronésie",fo:"Îles Féroé",fr:"France",ga:"Gabon",gb:"Royaume-Uni",gd:"Grenade",ge:"Géorgie",gf:"Guyane française",gg:"Guernesey",gh:"Ghana",gi:"Gibraltar",gl:"Groenland",gm:"Gambie",gn:"Guinée",gp:"Guadeloupe",gq:"Guinée équatoriale",gr:"Grèce",gt:"Guatemala",gu:"Guam",gw:"Guinée-Bissau",gy:"Guyana",hk:"R.A.S. chinoise de Hong Kong",hn:"Honduras",hr:"Croatie",ht:"Haïti",hu:"Hongrie",id:"Indonésie",ie:"Irlande",il:"Israël",im:"Île de Man",in:"Inde",io:"Territoire britannique de l’océan Indien",iq:"Irak",ir:"Iran",is:"Islande",it:"Italie",je:"Jersey",jm:"Jamaïque",jo:"Jordanie",jp:"Japon",ke:"Kenya",kg:"Kirghizistan",kh:"Cambodge",ki:"Kiribati",km:"Comores",kn:"Saint-Christophe-et-Niévès",kp:"Corée du Nord",kr:"Corée du Sud",kw:"Koweït",ky:"Îles Caïmans",kz:"Kazakhstan",la:"Laos",lb:"Liban",lc:"Sainte-Lucie",li:"Liechtenstein",lk:"Sri Lanka",lr:"Libéria",ls:"Lesotho",lt:"Lituanie",lu:"Luxembourg",lv:"Lettonie",ly:"Libye",ma:"Maroc",mc:"Monaco",md:"Moldavie",me:"Monténégro",mf:"Saint-Martin",mg:"Madagascar",mh:"Îles Marshall",mk:"Macédoine du Nord",ml:"Mali",mm:"Myanmar (Birmanie)",mn:"Mongolie",mo:"R.A.S. chinoise de Macao",mp:"Îles Mariannes du Nord",mq:"Martinique",mr:"Mauritanie",ms:"Montserrat",mt:"Malte",mu:"Maurice",mv:"Maldives",mw:"Malawi",mx:"Mexique",my:"Malaisie",mz:"Mozambique",na:"Namibie",nc:"Nouvelle-Calédonie",ne:"Niger",nf:"Île Norfolk",ng:"Nigéria",ni:"Nicaragua",nl:"Pays-Bas",no:"Norvège",np:"Népal",nr:"Nauru",nu:"Niue",nz:"Nouvelle-Zélande",om:"Oman",pa:"Panama",pe:"Pérou",pf:"Polynésie française",pg:"Papouasie-Nouvelle-Guinée",ph:"Philippines",pk:"Pakistan",pl:"Pologne",pm:"Saint-Pierre-et-Miquelon",pr:"Porto Rico",ps:"Territoires palestiniens",pt:"Portugal",pw:"Palaos",py:"Paraguay",qa:"Qatar",re:"La Réunion",ro:"Roumanie",rs:"Serbie",ru:"Russie",rw:"Rwanda",sa:"Arabie saoudite",sb:"Îles Salomon",sc:"Seychelles",sd:"Soudan",se:"Suède",sg:"Singapour",sh:"Sainte-Hélène",si:"Slovénie",sj:"Svalbard et Jan Mayen",sk:"Slovaquie",sl:"Sierra Leone",sm:"Saint-Marin",sn:"Sénégal",so:"Somalie",sr:"Suriname",ss:"Soudan du Sud",st:"Sao Tomé-et-Principe",sv:"Salvador",sx:"Saint-Martin (partie néerlandaise)",sy:"Syrie",sz:"Eswatini",tc:"Îles Turques-et-Caïques",td:"Tchad",tg:"Togo",th:"Thaïlande",tj:"Tadjikistan",tk:"Tokelau",tl:"Timor oriental",tm:"Turkménistan",tn:"Tunisie",to:"Tonga",tr:"Turquie",tt:"Trinité-et-Tobago",tv:"Tuvalu",tw:"Taïwan",tz:"Tanzanie",ua:"Ukraine",ug:"Ouganda",us:"États-Unis",uy:"Uruguay",uz:"Ouzbékistan",va:"État de la Cité du Vatican",vc:"Saint-Vincent-et-les-Grenadines",ve:"Venezuela",vg:"Îles Vierges britanniques",vi:"Îles Vierges des États-Unis",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis-et-Futuna",ws:"Samoa",ye:"Yémen",yt:"Mayotte",za:"Afrique du Sud",zm:"Zambie",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Pays sélectionné",noCountrySelected:"Aucun pays sélectionné",countryListAriaLabel:"Liste des pays",searchPlaceholder:"Recherche",zeroSearchResults:"Aucun résultat trouvé",oneSearchResult:"1 résultat trouvé",multipleSearchResults:"${count} résultats trouvés",ac:"Île de l'Ascension",xk:"Kosovo"},s={...n,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-hi.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-hi.js index ec9047d3d..a3c8c041d 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-hi.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-hi.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[354],{602(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"एंडोरा",ae:"संयुक्त अरब अमीरात",af:"अफ़गानिस्तान",ag:"एंटिगुआ और बरबुडा",ai:"एंग्विला",al:"अल्बानिया",am:"आर्मेनिया",ao:"अंगोला",ar:"अर्जेंटीना",as:"अमेरिकी समोआ",at:"ऑस्ट्रिया",au:"ऑस्ट्रेलिया",aw:"अरूबा",ax:"एलैंड द्वीपसमूह",az:"अज़रबैजान",ba:"बोस्निया और हर्ज़ेगोविना",bb:"बारबाडोस",bd:"बांग्लादेश",be:"बेल्जियम",bf:"बुर्किना फ़ासो",bg:"बुल्गारिया",bh:"बहरीन",bi:"बुरुंडी",bj:"बेनिन",bl:"सेंट बार्थेलेमी",bm:"बरमूडा",bn:"ब्रूनेई",bo:"बोलीविया",bq:"कैरिबियन नीदरलैंड",br:"ब्राज़ील",bs:"बहामास",bt:"भूटान",bw:"बोत्स्वाना",by:"बेलारूस",bz:"बेलीज़",ca:"कनाडा",cc:"कोकोस (कीलिंग) द्वीपसमूह",cd:"कांगो - किंशासा",cf:"मध्य अफ़्रीकी गणराज्य",cg:"कांगो – ब्राज़ाविल",ch:"स्विट्ज़रलैंड",ci:"कोट डी आइवर",ck:"कुक द्वीपसमूह",cl:"चिली",cm:"कैमरून",cn:"चीन",co:"कोलंबिया",cr:"कोस्टारिका",cu:"क्यूबा",cv:"केप वर्ड",cw:"क्यूरासाओ",cx:"क्रिसमस द्वीप",cy:"साइप्रस",cz:"चेकिया",de:"जर्मनी",dj:"जिबूती",dk:"डेनमार्क",dm:"डोमिनिका",do:"डोमिनिकन गणराज्य",dz:"अल्जीरिया",ec:"इक्वाडोर",ee:"एस्टोनिया",eg:"मिस्र",eh:"पश्चिमी सहारा",er:"इरिट्रिया",es:"स्पेन",et:"इथियोपिया",fi:"फ़िनलैंड",fj:"फ़िजी",fk:"फ़ॉकलैंड द्वीपसमूह",fm:"माइक्रोनेशिया",fo:"फ़ेरो द्वीपसमूह",fr:"फ़्रांस",ga:"गैबॉन",gb:"यूनाइटेड किंगडम",gd:"ग्रेनाडा",ge:"जॉर्जिया",gf:"फ़्रेंच गुयाना",gg:"गर्नसी",gh:"घाना",gi:"जिब्राल्टर",gl:"ग्रीनलैंड",gm:"गाम्बिया",gn:"गिनी",gp:"ग्वाडेलूप",gq:"इक्वेटोरियल गिनी",gr:"यूनान",gt:"ग्वाटेमाला",gu:"गुआम",gw:"गिनी-बिसाउ",gy:"गुयाना",hk:"हाँग काँग (चीन विशेष प्रशासनिक क्षेत्र)",hn:"होंडूरास",hr:"क्रोएशिया",ht:"हैती",hu:"हंगरी",id:"इंडोनेशिया",ie:"आयरलैंड",il:"इज़राइल",im:"आइल ऑफ़ मैन",in:"भारत",io:"ब्रिटिश हिंद महासागरीय क्षेत्र",iq:"इराक",ir:"ईरान",is:"आइसलैंड",it:"इटली",je:"जर्सी",jm:"जमैका",jo:"जॉर्डन",jp:"जापान",ke:"केन्या",kg:"किर्गिज़स्तान",kh:"कंबोडिया",ki:"किरिबाती",km:"कोमोरोस",kn:"सेंट किट्स और नेविस",kp:"उत्तर कोरिया",kr:"दक्षिण कोरिया",kw:"कुवैत",ky:"कैमेन द्वीपसमूह",kz:"कज़ाखस्तान",la:"लाओस",lb:"लेबनान",lc:"सेंट लूसिया",li:"लिचेंस्टीन",lk:"श्रीलंका",lr:"लाइबेरिया",ls:"लेसोथो",lt:"लिथुआनिया",lu:"लग्ज़मबर्ग",lv:"लातविया",ly:"लीबिया",ma:"मोरक्को",mc:"मोनाको",md:"मॉल्डोवा",me:"मोंटेनेग्रो",mf:"सेंट मार्टिन",mg:"मेडागास्कर",mh:"मार्शल द्वीपसमूह",mk:"उत्तरी मकदूनिया",ml:"माली",mm:"म्यांमार (बर्मा)",mn:"मंगोलिया",mo:"मकाऊ (विशेष प्रशासनिक क्षेत्र चीन)",mp:"उत्तरी मारियाना द्वीपसमूह",mq:"मार्टीनिक",mr:"मॉरिटानिया",ms:"मोंटसेरात",mt:"माल्टा",mu:"मॉरीशस",mv:"मालदीव",mw:"मलावी",mx:"मैक्सिको",my:"मलेशिया",mz:"मोज़ांबिक",na:"नामीबिया",nc:"न्यू कैलेडोनिया",ne:"नाइजर",nf:"नॉरफ़ॉक द्वीप",ng:"नाइजीरिया",ni:"निकारागुआ",nl:"नीदरलैंड",no:"नॉर्वे",np:"नेपाल",nr:"नाउरु",nu:"नीयू",nz:"न्यूज़ीलैंड",om:"ओमान",pa:"पनामा",pe:"पेरू",pf:"फ़्रेंच पोलिनेशिया",pg:"पापुआ न्यू गिनी",ph:"फ़िलिपींस",pk:"पाकिस्तान",pl:"पोलैंड",pm:"सेंट पिएरे और मिक्वेलान",pr:"पोर्टो रिको",ps:"फ़िलिस्तीनी क्षेत्र",pt:"पुर्तगाल",pw:"पलाऊ",py:"पराग्वे",qa:"क़तर",re:"रियूनियन",ro:"रोमानिया",rs:"सर्बिया",ru:"रूस",rw:"रवांडा",sa:"सऊदी अरब",sb:"सोलोमन द्वीपसमूह",sc:"सेशेल्स",sd:"सूडान",se:"स्वीडन",sg:"सिंगापुर",sh:"सेंट हेलेना",si:"स्लोवेनिया",sj:"स्वालबार्ड और जान मायेन",sk:"स्लोवाकिया",sl:"सिएरा लियोन",sm:"सैन मेरीनो",sn:"सेनेगल",so:"सोमालिया",sr:"सूरीनाम",ss:"दक्षिण सूडान",st:"साओ टोम और प्रिंसिपे",sv:"अल सल्वाडोर",sx:"सिंट मार्टिन",sy:"सीरिया",sz:"स्वाज़ीलैंड",tc:"तुर्क और कैकोज़ द्वीपसमूह",td:"चाड",tg:"टोगो",th:"थाईलैंड",tj:"ताज़िकिस्तान",tk:"तोकेलाउ",tl:"तिमोर-लेस्त",tm:"तुर्कमेनिस्तान",tn:"ट्यूनीशिया",to:"टोंगा",tr:"तुर्की",tt:"त्रिनिदाद और टोबैगो",tv:"तुवालू",tw:"ताइवान",tz:"तंज़ानिया",ua:"यूक्रेन",ug:"युगांडा",us:"संयुक्त राज्य",uy:"उरूग्वे",uz:"उज़्बेकिस्तान",va:"वेटिकन सिटी",vc:"सेंट विंसेंट और ग्रेनाडाइंस",ve:"वेनेज़ुएला",vg:"ब्रिटिश वर्जिन द्वीपसमूह",vi:"यू॰एस॰ वर्जिन द्वीपसमूह",vn:"वियतनाम",vu:"वनुआतू",wf:"वालिस और फ़्यूचूना",ws:"समोआ",ye:"यमन",yt:"मायोते",za:"दक्षिण अफ़्रीका",zm:"ज़ाम्बिया",zw:"ज़िम्बाब्वे"},c={selectedCountryAriaLabel:"चयनित देश",noCountrySelected:"कोई देश चयनित नहीं",countryListAriaLabel:"देशों की सूची",searchPlaceholder:"खोज",zeroSearchResults:"कोई परिणाम नहीं मिला",oneSearchResult:"1 परिणाम मिला",multipleSearchResults:"${count} परिणाम मिले",ac:"असेंशन द्वीप",xk:"कोसोवो"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[354],{602:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"एंडोरा",ae:"संयुक्त अरब अमीरात",af:"अफ़गानिस्तान",ag:"एंटिगुआ और बरबुडा",ai:"एंग्विला",al:"अल्बानिया",am:"आर्मेनिया",ao:"अंगोला",ar:"अर्जेंटीना",as:"अमेरिकी समोआ",at:"ऑस्ट्रिया",au:"ऑस्ट्रेलिया",aw:"अरूबा",ax:"एलैंड द्वीपसमूह",az:"अज़रबैजान",ba:"बोस्निया और हर्ज़ेगोविना",bb:"बारबाडोस",bd:"बांग्लादेश",be:"बेल्जियम",bf:"बुर्किना फ़ासो",bg:"बुल्गारिया",bh:"बहरीन",bi:"बुरुंडी",bj:"बेनिन",bl:"सेंट बार्थेलेमी",bm:"बरमूडा",bn:"ब्रूनेई",bo:"बोलीविया",bq:"कैरिबियन नीदरलैंड",br:"ब्राज़ील",bs:"बहामास",bt:"भूटान",bw:"बोत्स्वाना",by:"बेलारूस",bz:"बेलीज़",ca:"कनाडा",cc:"कोकोस (कीलिंग) द्वीपसमूह",cd:"कांगो - किंशासा",cf:"मध्य अफ़्रीकी गणराज्य",cg:"कांगो – ब्राज़ाविल",ch:"स्विट्ज़रलैंड",ci:"कोट डी आइवर",ck:"कुक द्वीपसमूह",cl:"चिली",cm:"कैमरून",cn:"चीन",co:"कोलंबिया",cr:"कोस्टारिका",cu:"क्यूबा",cv:"केप वर्ड",cw:"क्यूरासाओ",cx:"क्रिसमस द्वीप",cy:"साइप्रस",cz:"चेकिया",de:"जर्मनी",dj:"जिबूती",dk:"डेनमार्क",dm:"डोमिनिका",do:"डोमिनिकन गणराज्य",dz:"अल्जीरिया",ec:"इक्वाडोर",ee:"एस्टोनिया",eg:"मिस्र",eh:"पश्चिमी सहारा",er:"इरिट्रिया",es:"स्पेन",et:"इथियोपिया",fi:"फ़िनलैंड",fj:"फ़िजी",fk:"फ़ॉकलैंड द्वीपसमूह",fm:"माइक्रोनेशिया",fo:"फ़ेरो द्वीपसमूह",fr:"फ़्रांस",ga:"गैबॉन",gb:"यूनाइटेड किंगडम",gd:"ग्रेनाडा",ge:"जॉर्जिया",gf:"फ़्रेंच गुयाना",gg:"गर्नसी",gh:"घाना",gi:"जिब्राल्टर",gl:"ग्रीनलैंड",gm:"गाम्बिया",gn:"गिनी",gp:"ग्वाडेलूप",gq:"इक्वेटोरियल गिनी",gr:"यूनान",gt:"ग्वाटेमाला",gu:"गुआम",gw:"गिनी-बिसाउ",gy:"गुयाना",hk:"हाँग काँग (चीन विशेष प्रशासनिक क्षेत्र)",hn:"होंडूरास",hr:"क्रोएशिया",ht:"हैती",hu:"हंगरी",id:"इंडोनेशिया",ie:"आयरलैंड",il:"इज़राइल",im:"आइल ऑफ़ मैन",in:"भारत",io:"ब्रिटिश हिंद महासागरीय क्षेत्र",iq:"इराक",ir:"ईरान",is:"आइसलैंड",it:"इटली",je:"जर्सी",jm:"जमैका",jo:"जॉर्डन",jp:"जापान",ke:"केन्या",kg:"किर्गिज़स्तान",kh:"कंबोडिया",ki:"किरिबाती",km:"कोमोरोस",kn:"सेंट किट्स और नेविस",kp:"उत्तर कोरिया",kr:"दक्षिण कोरिया",kw:"कुवैत",ky:"कैमेन द्वीपसमूह",kz:"कज़ाखस्तान",la:"लाओस",lb:"लेबनान",lc:"सेंट लूसिया",li:"लिचेंस्टीन",lk:"श्रीलंका",lr:"लाइबेरिया",ls:"लेसोथो",lt:"लिथुआनिया",lu:"लग्ज़मबर्ग",lv:"लातविया",ly:"लीबिया",ma:"मोरक्को",mc:"मोनाको",md:"मॉल्डोवा",me:"मोंटेनेग्रो",mf:"सेंट मार्टिन",mg:"मेडागास्कर",mh:"मार्शल द्वीपसमूह",mk:"उत्तरी मकदूनिया",ml:"माली",mm:"म्यांमार (बर्मा)",mn:"मंगोलिया",mo:"मकाऊ (विशेष प्रशासनिक क्षेत्र चीन)",mp:"उत्तरी मारियाना द्वीपसमूह",mq:"मार्टीनिक",mr:"मॉरिटानिया",ms:"मोंटसेरात",mt:"माल्टा",mu:"मॉरीशस",mv:"मालदीव",mw:"मलावी",mx:"मैक्सिको",my:"मलेशिया",mz:"मोज़ांबिक",na:"नामीबिया",nc:"न्यू कैलेडोनिया",ne:"नाइजर",nf:"नॉरफ़ॉक द्वीप",ng:"नाइजीरिया",ni:"निकारागुआ",nl:"नीदरलैंड",no:"नॉर्वे",np:"नेपाल",nr:"नाउरु",nu:"नीयू",nz:"न्यूज़ीलैंड",om:"ओमान",pa:"पनामा",pe:"पेरू",pf:"फ़्रेंच पोलिनेशिया",pg:"पापुआ न्यू गिनी",ph:"फ़िलिपींस",pk:"पाकिस्तान",pl:"पोलैंड",pm:"सेंट पिएरे और मिक्वेलान",pr:"पोर्टो रिको",ps:"फ़िलिस्तीनी क्षेत्र",pt:"पुर्तगाल",pw:"पलाऊ",py:"पराग्वे",qa:"क़तर",re:"रियूनियन",ro:"रोमानिया",rs:"सर्बिया",ru:"रूस",rw:"रवांडा",sa:"सऊदी अरब",sb:"सोलोमन द्वीपसमूह",sc:"सेशेल्स",sd:"सूडान",se:"स्वीडन",sg:"सिंगापुर",sh:"सेंट हेलेना",si:"स्लोवेनिया",sj:"स्वालबार्ड और जान मायेन",sk:"स्लोवाकिया",sl:"सिएरा लियोन",sm:"सैन मेरीनो",sn:"सेनेगल",so:"सोमालिया",sr:"सूरीनाम",ss:"दक्षिण सूडान",st:"साओ टोम और प्रिंसिपे",sv:"अल सल्वाडोर",sx:"सिंट मार्टिन",sy:"सीरिया",sz:"स्वाज़ीलैंड",tc:"तुर्क और कैकोज़ द्वीपसमूह",td:"चाड",tg:"टोगो",th:"थाईलैंड",tj:"ताज़िकिस्तान",tk:"तोकेलाउ",tl:"तिमोर-लेस्त",tm:"तुर्कमेनिस्तान",tn:"ट्यूनीशिया",to:"टोंगा",tr:"तुर्की",tt:"त्रिनिदाद और टोबैगो",tv:"तुवालू",tw:"ताइवान",tz:"तंज़ानिया",ua:"यूक्रेन",ug:"युगांडा",us:"संयुक्त राज्य",uy:"उरूग्वे",uz:"उज़्बेकिस्तान",va:"वेटिकन सिटी",vc:"सेंट विंसेंट और ग्रेनाडाइंस",ve:"वेनेज़ुएला",vg:"ब्रिटिश वर्जिन द्वीपसमूह",vi:"यू॰एस॰ वर्जिन द्वीपसमूह",vn:"वियतनाम",vu:"वनुआतू",wf:"वालिस और फ़्यूचूना",ws:"समोआ",ye:"यमन",yt:"मायोते",za:"दक्षिण अफ़्रीका",zm:"ज़ाम्बिया",zw:"ज़िम्बाब्वे"},c={selectedCountryAriaLabel:"चयनित देश",noCountrySelected:"कोई देश चयनित नहीं",countryListAriaLabel:"देशों की सूची",searchPlaceholder:"खोज",zeroSearchResults:"कोई परिणाम नहीं मिला",oneSearchResult:"1 परिणाम मिला",multipleSearchResults:"${count} परिणाम मिले",ac:"असेंशन द्वीप",xk:"कोसोवो"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-hr.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-hr.js index ff9926f78..3ac018b27 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-hr.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-hr.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[569],{289(a,i,n){n.r(i),n.d(i,{countryTranslations:()=>e,default:()=>o,interfaceTranslations:()=>r});const e={ad:"Andora",ae:"Ujedinjeni Arapski Emirati",af:"Afganistan",ag:"Antigva i Barbuda",ai:"Angvila",al:"Albanija",am:"Armenija",ao:"Angola",ar:"Argentina",as:"Američka Samoa",at:"Austrija",au:"Australija",aw:"Aruba",ax:"Ålandski otoci",az:"Azerbajdžan",ba:"Bosna i Hercegovina",bb:"Barbados",bd:"Bangladeš",be:"Belgija",bf:"Burkina Faso",bg:"Bugarska",bh:"Bahrein",bi:"Burundi",bj:"Benin",bl:"Saint Barthélemy",bm:"Bermudi",bn:"Brunej",bo:"Bolivija",bq:"Karipski otoci Nizozemske",br:"Brazil",bs:"Bahami",bt:"Butan",bw:"Bocvana",by:"Bjelorusija",bz:"Belize",ca:"Kanada",cc:"Kokosovi (Keelingovi) otoci",cd:"Kongo - Kinshasa",cf:"Srednjoafrička Republika",cg:"Kongo - Brazzaville",ch:"Švicarska",ci:"Obala Bjelokosti",ck:"Cookovi Otoci",cl:"Čile",cm:"Kamerun",cn:"Kina",co:"Kolumbija",cr:"Kostarika",cu:"Kuba",cv:"Zelenortska Republika",cw:"Curaçao",cx:"Božićni otok",cy:"Cipar",cz:"Češka",de:"Njemačka",dj:"Džibuti",dk:"Danska",dm:"Dominika",do:"Dominikanska Republika",dz:"Alžir",ec:"Ekvador",ee:"Estonija",eg:"Egipat",eh:"Zapadna Sahara",er:"Eritreja",es:"Španjolska",et:"Etiopija",fi:"Finska",fj:"Fidži",fk:"Falklandski otoci",fm:"Mikronezija",fo:"Farski otoci",fr:"Francuska",ga:"Gabon",gb:"Ujedinjeno Kraljevstvo",gd:"Grenada",ge:"Gruzija",gf:"Francuska Gijana",gg:"Guernsey",gh:"Gana",gi:"Gibraltar",gl:"Grenland",gm:"Gambija",gn:"Gvineja",gp:"Guadalupe",gq:"Ekvatorska Gvineja",gr:"Grčka",gt:"Gvatemala",gu:"Guam",gw:"Gvineja Bisau",gy:"Gvajana",hk:"PUP Hong Kong Kina",hn:"Honduras",hr:"Hrvatska",ht:"Haiti",hu:"Mađarska",id:"Indonezija",ie:"Irska",il:"Izrael",im:"Otok Man",in:"Indija",io:"Britanski Indijskooceanski teritorij",iq:"Irak",ir:"Iran",is:"Island",it:"Italija",je:"Jersey",jm:"Jamajka",jo:"Jordan",jp:"Japan",ke:"Kenija",kg:"Kirgistan",kh:"Kambodža",ki:"Kiribati",km:"Komori",kn:"Sveti Kristofor i Nevis",kp:"Sjeverna Koreja",kr:"Južna Koreja",kw:"Kuvajt",ky:"Kajmanski otoci",kz:"Kazahstan",la:"Laos",lb:"Libanon",lc:"Sveta Lucija",li:"Lihtenštajn",lk:"Šri Lanka",lr:"Liberija",ls:"Lesoto",lt:"Litva",lu:"Luksemburg",lv:"Latvija",ly:"Libija",ma:"Maroko",mc:"Monako",md:"Moldavija",me:"Crna Gora",mf:"Saint Martin",mg:"Madagaskar",mh:"Maršalovi Otoci",mk:"Sjeverna Makedonija",ml:"Mali",mm:"Mjanmar (Burma)",mn:"Mongolija",mo:"PUP Makao Kina",mp:"Sjevernomarijanski otoci",mq:"Martinique",mr:"Mauretanija",ms:"Montserrat",mt:"Malta",mu:"Mauricijus",mv:"Maldivi",mw:"Malavi",mx:"Meksiko",my:"Malezija",mz:"Mozambik",na:"Namibija",nc:"Nova Kaledonija",ne:"Niger",nf:"Otok Norfolk",ng:"Nigerija",ni:"Nikaragva",nl:"Nizozemska",no:"Norveška",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Novi Zeland",om:"Oman",pa:"Panama",pe:"Peru",pf:"Francuska Polinezija",pg:"Papua Nova Gvineja",ph:"Filipini",pk:"Pakistan",pl:"Poljska",pm:"Saint-Pierre-et-Miquelon",pr:"Portoriko",ps:"Palestinsko područje",pt:"Portugal",pw:"Palau",py:"Paragvaj",qa:"Katar",re:"Réunion",ro:"Rumunjska",rs:"Srbija",ru:"Rusija",rw:"Ruanda",sa:"Saudijska Arabija",sb:"Salomonski Otoci",sc:"Sejšeli",sd:"Sudan",se:"Švedska",sg:"Singapur",sh:"Sveta Helena",si:"Slovenija",sj:"Svalbard i Jan Mayen",sk:"Slovačka",sl:"Sijera Leone",sm:"San Marino",sn:"Senegal",so:"Somalija",sr:"Surinam",ss:"Južni Sudan",st:"Sveti Toma i Princip",sv:"Salvador",sx:"Sint Maarten",sy:"Sirija",sz:"Esvatini",tc:"Otoci Turks i Caicos",td:"Čad",tg:"Togo",th:"Tajland",tj:"Tadžikistan",tk:"Tokelau",tl:"Timor-Leste",tm:"Turkmenistan",tn:"Tunis",to:"Tonga",tr:"Turska",tt:"Trinidad i Tobago",tv:"Tuvalu",tw:"Tajvan",tz:"Tanzanija",ua:"Ukrajina",ug:"Uganda",us:"Sjedinjene Američke Države",uy:"Urugvaj",uz:"Uzbekistan",va:"Vatikanski Grad",vc:"Sveti Vincent i Grenadini",ve:"Venezuela",vg:"Britanski Djevičanski otoci",vi:"Američki Djevičanski otoci",vn:"Vijetnam",vu:"Vanuatu",wf:"Wallis i Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Južnoafrička Republika",zm:"Zambija",zw:"Zimbabve"},r={selectedCountryAriaLabel:"Odabrana zemlja",noCountrySelected:"Zemlja nije odabrana",countryListAriaLabel:"Lista zemalja",searchPlaceholder:"Pretraži",zeroSearchResults:"Nema pronađenih rezultata",oneSearchResult:"Pronađen 1 rezultat",multipleSearchResults:"${count} rezultata pronađeno",ac:"Ascension",xk:"Kosovo"},o={...e,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[569],{289:(a,i,n)=>{n.r(i),n.d(i,{countryTranslations:()=>e,default:()=>o,interfaceTranslations:()=>r});const e={ad:"Andora",ae:"Ujedinjeni Arapski Emirati",af:"Afganistan",ag:"Antigva i Barbuda",ai:"Angvila",al:"Albanija",am:"Armenija",ao:"Angola",ar:"Argentina",as:"Američka Samoa",at:"Austrija",au:"Australija",aw:"Aruba",ax:"Ålandski otoci",az:"Azerbajdžan",ba:"Bosna i Hercegovina",bb:"Barbados",bd:"Bangladeš",be:"Belgija",bf:"Burkina Faso",bg:"Bugarska",bh:"Bahrein",bi:"Burundi",bj:"Benin",bl:"Saint Barthélemy",bm:"Bermudi",bn:"Brunej",bo:"Bolivija",bq:"Karipski otoci Nizozemske",br:"Brazil",bs:"Bahami",bt:"Butan",bw:"Bocvana",by:"Bjelorusija",bz:"Belize",ca:"Kanada",cc:"Kokosovi (Keelingovi) otoci",cd:"Kongo - Kinshasa",cf:"Srednjoafrička Republika",cg:"Kongo - Brazzaville",ch:"Švicarska",ci:"Obala Bjelokosti",ck:"Cookovi Otoci",cl:"Čile",cm:"Kamerun",cn:"Kina",co:"Kolumbija",cr:"Kostarika",cu:"Kuba",cv:"Zelenortska Republika",cw:"Curaçao",cx:"Božićni otok",cy:"Cipar",cz:"Češka",de:"Njemačka",dj:"Džibuti",dk:"Danska",dm:"Dominika",do:"Dominikanska Republika",dz:"Alžir",ec:"Ekvador",ee:"Estonija",eg:"Egipat",eh:"Zapadna Sahara",er:"Eritreja",es:"Španjolska",et:"Etiopija",fi:"Finska",fj:"Fidži",fk:"Falklandski otoci",fm:"Mikronezija",fo:"Farski otoci",fr:"Francuska",ga:"Gabon",gb:"Ujedinjeno Kraljevstvo",gd:"Grenada",ge:"Gruzija",gf:"Francuska Gijana",gg:"Guernsey",gh:"Gana",gi:"Gibraltar",gl:"Grenland",gm:"Gambija",gn:"Gvineja",gp:"Guadalupe",gq:"Ekvatorska Gvineja",gr:"Grčka",gt:"Gvatemala",gu:"Guam",gw:"Gvineja Bisau",gy:"Gvajana",hk:"PUP Hong Kong Kina",hn:"Honduras",hr:"Hrvatska",ht:"Haiti",hu:"Mađarska",id:"Indonezija",ie:"Irska",il:"Izrael",im:"Otok Man",in:"Indija",io:"Britanski Indijskooceanski teritorij",iq:"Irak",ir:"Iran",is:"Island",it:"Italija",je:"Jersey",jm:"Jamajka",jo:"Jordan",jp:"Japan",ke:"Kenija",kg:"Kirgistan",kh:"Kambodža",ki:"Kiribati",km:"Komori",kn:"Sveti Kristofor i Nevis",kp:"Sjeverna Koreja",kr:"Južna Koreja",kw:"Kuvajt",ky:"Kajmanski otoci",kz:"Kazahstan",la:"Laos",lb:"Libanon",lc:"Sveta Lucija",li:"Lihtenštajn",lk:"Šri Lanka",lr:"Liberija",ls:"Lesoto",lt:"Litva",lu:"Luksemburg",lv:"Latvija",ly:"Libija",ma:"Maroko",mc:"Monako",md:"Moldavija",me:"Crna Gora",mf:"Saint Martin",mg:"Madagaskar",mh:"Maršalovi Otoci",mk:"Sjeverna Makedonija",ml:"Mali",mm:"Mjanmar (Burma)",mn:"Mongolija",mo:"PUP Makao Kina",mp:"Sjevernomarijanski otoci",mq:"Martinique",mr:"Mauretanija",ms:"Montserrat",mt:"Malta",mu:"Mauricijus",mv:"Maldivi",mw:"Malavi",mx:"Meksiko",my:"Malezija",mz:"Mozambik",na:"Namibija",nc:"Nova Kaledonija",ne:"Niger",nf:"Otok Norfolk",ng:"Nigerija",ni:"Nikaragva",nl:"Nizozemska",no:"Norveška",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Novi Zeland",om:"Oman",pa:"Panama",pe:"Peru",pf:"Francuska Polinezija",pg:"Papua Nova Gvineja",ph:"Filipini",pk:"Pakistan",pl:"Poljska",pm:"Saint-Pierre-et-Miquelon",pr:"Portoriko",ps:"Palestinsko područje",pt:"Portugal",pw:"Palau",py:"Paragvaj",qa:"Katar",re:"Réunion",ro:"Rumunjska",rs:"Srbija",ru:"Rusija",rw:"Ruanda",sa:"Saudijska Arabija",sb:"Salomonski Otoci",sc:"Sejšeli",sd:"Sudan",se:"Švedska",sg:"Singapur",sh:"Sveta Helena",si:"Slovenija",sj:"Svalbard i Jan Mayen",sk:"Slovačka",sl:"Sijera Leone",sm:"San Marino",sn:"Senegal",so:"Somalija",sr:"Surinam",ss:"Južni Sudan",st:"Sveti Toma i Princip",sv:"Salvador",sx:"Sint Maarten",sy:"Sirija",sz:"Esvatini",tc:"Otoci Turks i Caicos",td:"Čad",tg:"Togo",th:"Tajland",tj:"Tadžikistan",tk:"Tokelau",tl:"Timor-Leste",tm:"Turkmenistan",tn:"Tunis",to:"Tonga",tr:"Turska",tt:"Trinidad i Tobago",tv:"Tuvalu",tw:"Tajvan",tz:"Tanzanija",ua:"Ukrajina",ug:"Uganda",us:"Sjedinjene Američke Države",uy:"Urugvaj",uz:"Uzbekistan",va:"Vatikanski Grad",vc:"Sveti Vincent i Grenadini",ve:"Venezuela",vg:"Britanski Djevičanski otoci",vi:"Američki Djevičanski otoci",vn:"Vijetnam",vu:"Vanuatu",wf:"Wallis i Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Južnoafrička Republika",zm:"Zambija",zw:"Zimbabve"},r={selectedCountryAriaLabel:"Odabrana zemlja",noCountrySelected:"Zemlja nije odabrana",countryListAriaLabel:"Lista zemalja",searchPlaceholder:"Pretraži",zeroSearchResults:"Nema pronađenih rezultata",oneSearchResult:"Pronađen 1 rezultat",multipleSearchResults:"${count} rezultata pronađeno",ac:"Ascension",xk:"Kosovo"},o={...e,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-hu.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-hu.js index ade65dff4..18e273fb6 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-hu.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-hu.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[974],{958(a,i,e){e.r(i),e.d(i,{countryTranslations:()=>n,default:()=>s,interfaceTranslations:()=>r});const n={ad:"Andorra",ae:"Egyesült Arab Emírségek",af:"Afganisztán",ag:"Antigua és Barbuda",ai:"Anguilla",al:"Albánia",am:"Örményország",ao:"Angola",ar:"Argentína",as:"Amerikai Szamoa",at:"Ausztria",au:"Ausztrália",aw:"Aruba",ax:"Åland-szigetek",az:"Azerbajdzsán",ba:"Bosznia-Hercegovina",bb:"Barbados",bd:"Banglades",be:"Belgium",bf:"Burkina Faso",bg:"Bulgária",bh:"Bahrein",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolívia",bq:"Holland Karib-térség",br:"Brazília",bs:"Bahama-szigetek",bt:"Bhután",bw:"Botswana",by:"Belarusz",bz:"Belize",ca:"Kanada",cc:"Kókusz (Keeling)-szigetek",cd:"Kongó - Kinshasa",cf:"Közép-afrikai Köztársaság",cg:"Kongó - Brazzaville",ch:"Svájc",ci:"Elefántcsontpart",ck:"Cook-szigetek",cl:"Chile",cm:"Kamerun",cn:"Kína",co:"Kolumbia",cr:"Costa Rica",cu:"Kuba",cv:"Zöld-foki Köztársaság",cw:"Curaçao",cx:"Karácsony-sziget",cy:"Ciprus",cz:"Csehország",de:"Németország",dj:"Dzsibuti",dk:"Dánia",dm:"Dominika",do:"Dominikai Köztársaság",dz:"Algéria",ec:"Ecuador",ee:"Észtország",eg:"Egyiptom",eh:"Nyugat-Szahara",er:"Eritrea",es:"Spanyolország",et:"Etiópia",fi:"Finnország",fj:"Fidzsi",fk:"Falkland-szigetek",fm:"Mikronézia",fo:"Feröer szigetek",fr:"Franciaország",ga:"Gabon",gb:"Egyesült Királyság",gd:"Grenada",ge:"Grúzia",gf:"Francia Guyana",gg:"Guernsey",gh:"Ghána",gi:"Gibraltár",gl:"Grönland",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Egyenlítői-Guinea",gr:"Görögország",gt:"Guatemala",gu:"Guam",gw:"Bissau-Guinea",gy:"Guyana",hk:"Hongkong KKT",hn:"Honduras",hr:"Horvátország",ht:"Haiti",hu:"Magyarország",id:"Indonézia",ie:"Írország",il:"Izrael",im:"Man-sziget",in:"India",io:"Brit Indiai-óceáni Terület",iq:"Irak",ir:"Irán",is:"Izland",it:"Olaszország",je:"Jersey",jm:"Jamaica",jo:"Jordánia",jp:"Japán",ke:"Kenya",kg:"Kirgizisztán",kh:"Kambodzsa",ki:"Kiribati",km:"Comore-szigetek",kn:"Saint Kitts és Nevis",kp:"Észak-Korea",kr:"Dél-Korea",kw:"Kuvait",ky:"Kajmán-szigetek",kz:"Kazahsztán",la:"Laosz",lb:"Libanon",lc:"Saint Lucia",li:"Liechtenstein",lk:"Srí Lanka",lr:"Libéria",ls:"Lesotho",lt:"Litvánia",lu:"Luxemburg",lv:"Lettország",ly:"Líbia",ma:"Marokkó",mc:"Monaco",md:"Moldova",me:"Montenegró",mf:"Saint Martin",mg:"Madagaszkár",mh:"Marshall-szigetek",mk:"Észak-Macedónia",ml:"Mali",mm:"Mianmar",mn:"Mongólia",mo:"Makaó KKT",mp:"Északi Mariana-szigetek",mq:"Martinique",mr:"Mauritánia",ms:"Montserrat",mt:"Málta",mu:"Mauritius",mv:"Maldív-szigetek",mw:"Malawi",mx:"Mexikó",my:"Malajzia",mz:"Mozambik",na:"Namíbia",nc:"Új-Kaledónia",ne:"Niger",nf:"Norfolk-sziget",ng:"Nigéria",ni:"Nicaragua",nl:"Hollandia",no:"Norvégia",np:"Nepál",nr:"Nauru",nu:"Niue",nz:"Új-Zéland",om:"Omán",pa:"Panama",pe:"Peru",pf:"Francia Polinézia",pg:"Pápua Új-Guinea",ph:"Fülöp-szigetek",pk:"Pakisztán",pl:"Lengyelország",pm:"Saint-Pierre és Miquelon",pr:"Puerto Rico",ps:"Palesztin Terület",pt:"Portugália",pw:"Palau",py:"Paraguay",qa:"Katar",re:"Réunion",ro:"Románia",rs:"Szerbia",ru:"Oroszország",rw:"Ruanda",sa:"Szaúd-Arábia",sb:"Salamon-szigetek",sc:"Seychelle-szigetek",sd:"Szudán",se:"Svédország",sg:"Szingapúr",sh:"Szent Ilona",si:"Szlovénia",sj:"Svalbard és Jan Mayen",sk:"Szlovákia",sl:"Sierra Leone",sm:"San Marino",sn:"Szenegál",so:"Szomália",sr:"Suriname",ss:"Dél-Szudán",st:"São Tomé és Príncipe",sv:"Salvador",sx:"Sint Maarten",sy:"Szíria",sz:"Szváziföld",tc:"Turks- és Caicos-szigetek",td:"Csád",tg:"Togo",th:"Thaiföld",tj:"Tádzsikisztán",tk:"Tokelau",tl:"Kelet-Timor",tm:"Türkmenisztán",tn:"Tunézia",to:"Tonga",tr:"Törökország",tt:"Trinidad és Tobago",tv:"Tuvalu",tw:"Tajvan",tz:"Tanzánia",ua:"Ukrajna",ug:"Uganda",us:"Egyesült Államok",uy:"Uruguay",uz:"Üzbegisztán",va:"Vatikán",vc:"Saint Vincent és a Grenadine-szigetek",ve:"Venezuela",vg:"Brit Virgin-szigetek",vi:"Amerikai Virgin-szigetek",vn:"Vietnám",vu:"Vanuatu",wf:"Wallis és Futuna",ws:"Szamoa",ye:"Jemen",yt:"Mayotte",za:"Dél-afrikai Köztársaság",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Kiválasztott ország",noCountrySelected:"Nincs ország kiválasztva",countryListAriaLabel:"Országok listája",searchPlaceholder:"Keresés",zeroSearchResults:"Nincs találat",oneSearchResult:"1 találat",multipleSearchResults:"${count} találat",ac:"Ascension-sziget",xk:"Koszovó"},s={...n,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[974],{958:(a,i,e)=>{e.r(i),e.d(i,{countryTranslations:()=>n,default:()=>s,interfaceTranslations:()=>r});const n={ad:"Andorra",ae:"Egyesült Arab Emírségek",af:"Afganisztán",ag:"Antigua és Barbuda",ai:"Anguilla",al:"Albánia",am:"Örményország",ao:"Angola",ar:"Argentína",as:"Amerikai Szamoa",at:"Ausztria",au:"Ausztrália",aw:"Aruba",ax:"Åland-szigetek",az:"Azerbajdzsán",ba:"Bosznia-Hercegovina",bb:"Barbados",bd:"Banglades",be:"Belgium",bf:"Burkina Faso",bg:"Bulgária",bh:"Bahrein",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolívia",bq:"Holland Karib-térség",br:"Brazília",bs:"Bahama-szigetek",bt:"Bhután",bw:"Botswana",by:"Belarusz",bz:"Belize",ca:"Kanada",cc:"Kókusz (Keeling)-szigetek",cd:"Kongó - Kinshasa",cf:"Közép-afrikai Köztársaság",cg:"Kongó - Brazzaville",ch:"Svájc",ci:"Elefántcsontpart",ck:"Cook-szigetek",cl:"Chile",cm:"Kamerun",cn:"Kína",co:"Kolumbia",cr:"Costa Rica",cu:"Kuba",cv:"Zöld-foki Köztársaság",cw:"Curaçao",cx:"Karácsony-sziget",cy:"Ciprus",cz:"Csehország",de:"Németország",dj:"Dzsibuti",dk:"Dánia",dm:"Dominika",do:"Dominikai Köztársaság",dz:"Algéria",ec:"Ecuador",ee:"Észtország",eg:"Egyiptom",eh:"Nyugat-Szahara",er:"Eritrea",es:"Spanyolország",et:"Etiópia",fi:"Finnország",fj:"Fidzsi",fk:"Falkland-szigetek",fm:"Mikronézia",fo:"Feröer szigetek",fr:"Franciaország",ga:"Gabon",gb:"Egyesült Királyság",gd:"Grenada",ge:"Grúzia",gf:"Francia Guyana",gg:"Guernsey",gh:"Ghána",gi:"Gibraltár",gl:"Grönland",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Egyenlítői-Guinea",gr:"Görögország",gt:"Guatemala",gu:"Guam",gw:"Bissau-Guinea",gy:"Guyana",hk:"Hongkong KKT",hn:"Honduras",hr:"Horvátország",ht:"Haiti",hu:"Magyarország",id:"Indonézia",ie:"Írország",il:"Izrael",im:"Man-sziget",in:"India",io:"Brit Indiai-óceáni Terület",iq:"Irak",ir:"Irán",is:"Izland",it:"Olaszország",je:"Jersey",jm:"Jamaica",jo:"Jordánia",jp:"Japán",ke:"Kenya",kg:"Kirgizisztán",kh:"Kambodzsa",ki:"Kiribati",km:"Comore-szigetek",kn:"Saint Kitts és Nevis",kp:"Észak-Korea",kr:"Dél-Korea",kw:"Kuvait",ky:"Kajmán-szigetek",kz:"Kazahsztán",la:"Laosz",lb:"Libanon",lc:"Saint Lucia",li:"Liechtenstein",lk:"Srí Lanka",lr:"Libéria",ls:"Lesotho",lt:"Litvánia",lu:"Luxemburg",lv:"Lettország",ly:"Líbia",ma:"Marokkó",mc:"Monaco",md:"Moldova",me:"Montenegró",mf:"Saint Martin",mg:"Madagaszkár",mh:"Marshall-szigetek",mk:"Észak-Macedónia",ml:"Mali",mm:"Mianmar",mn:"Mongólia",mo:"Makaó KKT",mp:"Északi Mariana-szigetek",mq:"Martinique",mr:"Mauritánia",ms:"Montserrat",mt:"Málta",mu:"Mauritius",mv:"Maldív-szigetek",mw:"Malawi",mx:"Mexikó",my:"Malajzia",mz:"Mozambik",na:"Namíbia",nc:"Új-Kaledónia",ne:"Niger",nf:"Norfolk-sziget",ng:"Nigéria",ni:"Nicaragua",nl:"Hollandia",no:"Norvégia",np:"Nepál",nr:"Nauru",nu:"Niue",nz:"Új-Zéland",om:"Omán",pa:"Panama",pe:"Peru",pf:"Francia Polinézia",pg:"Pápua Új-Guinea",ph:"Fülöp-szigetek",pk:"Pakisztán",pl:"Lengyelország",pm:"Saint-Pierre és Miquelon",pr:"Puerto Rico",ps:"Palesztin Terület",pt:"Portugália",pw:"Palau",py:"Paraguay",qa:"Katar",re:"Réunion",ro:"Románia",rs:"Szerbia",ru:"Oroszország",rw:"Ruanda",sa:"Szaúd-Arábia",sb:"Salamon-szigetek",sc:"Seychelle-szigetek",sd:"Szudán",se:"Svédország",sg:"Szingapúr",sh:"Szent Ilona",si:"Szlovénia",sj:"Svalbard és Jan Mayen",sk:"Szlovákia",sl:"Sierra Leone",sm:"San Marino",sn:"Szenegál",so:"Szomália",sr:"Suriname",ss:"Dél-Szudán",st:"São Tomé és Príncipe",sv:"Salvador",sx:"Sint Maarten",sy:"Szíria",sz:"Szváziföld",tc:"Turks- és Caicos-szigetek",td:"Csád",tg:"Togo",th:"Thaiföld",tj:"Tádzsikisztán",tk:"Tokelau",tl:"Kelet-Timor",tm:"Türkmenisztán",tn:"Tunézia",to:"Tonga",tr:"Törökország",tt:"Trinidad és Tobago",tv:"Tuvalu",tw:"Tajvan",tz:"Tanzánia",ua:"Ukrajna",ug:"Uganda",us:"Egyesült Államok",uy:"Uruguay",uz:"Üzbegisztán",va:"Vatikán",vc:"Saint Vincent és a Grenadine-szigetek",ve:"Venezuela",vg:"Brit Virgin-szigetek",vi:"Amerikai Virgin-szigetek",vn:"Vietnám",vu:"Vanuatu",wf:"Wallis és Futuna",ws:"Szamoa",ye:"Jemen",yt:"Mayotte",za:"Dél-afrikai Köztársaság",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Kiválasztott ország",noCountrySelected:"Nincs ország kiválasztva",countryListAriaLabel:"Országok listája",searchPlaceholder:"Keresés",zeroSearchResults:"Nincs találat",oneSearchResult:"1 találat",multipleSearchResults:"${count} találat",ac:"Ascension-sziget",xk:"Koszovó"},s={...n,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-id.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-id.js index 894eb4301..11e05284f 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-id.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-id.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[788],{80(a,i,n){n.r(i),n.d(i,{countryTranslations:()=>e,default:()=>u,interfaceTranslations:()=>r});const e={ad:"Andorra",ae:"Uni Emirat Arab",af:"Afganistan",ag:"Antigua dan Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentina",as:"Samoa Amerika",at:"Austria",au:"Australia",aw:"Aruba",ax:"Kepulauan Aland",az:"Azerbaijan",ba:"Bosnia dan Herzegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgia",bf:"Burkina Faso",bg:"Bulgaria",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"Saint Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Belanda Karibia",br:"Brasil",bs:"Bahama",bt:"Bhutan",bw:"Botswana",by:"Belarus",bz:"Belize",ca:"Kanada",cc:"Kepulauan Cocos (Keeling)",cd:"Kongo - Kinshasa",cf:"Republik Afrika Tengah",cg:"Kongo - Brazzaville",ch:"Swiss",ci:"Côte d’Ivoire",ck:"Kepulauan Cook",cl:"Cile",cm:"Kamerun",cn:"Tiongkok",co:"Kolombia",cr:"Kosta Rika",cu:"Kuba",cv:"Tanjung Verde",cw:"Curaçao",cx:"Pulau Natal",cy:"Siprus",cz:"Ceko",de:"Jerman",dj:"Jibuti",dk:"Denmark",dm:"Dominika",do:"Republik Dominika",dz:"Aljazair",ec:"Ekuador",ee:"Estonia",eg:"Mesir",eh:"Sahara Barat",er:"Eritrea",es:"Spanyol",et:"Etiopia",fi:"Finlandia",fj:"Fiji",fk:"Kepulauan Falkland",fm:"Mikronesia",fo:"Kepulauan Faroe",fr:"Prancis",ga:"Gabon",gb:"Inggris Raya",gd:"Grenada",ge:"Georgia",gf:"Guyana Prancis",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grinlandia",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Guinea Ekuatorial",gr:"Yunani",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hong Kong DAK Tiongkok",hn:"Honduras",hr:"Kroasia",ht:"Haiti",hu:"Hungaria",id:"Indonesia",ie:"Irlandia",il:"Israel",im:"Pulau Man",in:"India",io:"Wilayah Inggris di Samudra Hindia",iq:"Irak",ir:"Iran",is:"Islandia",it:"Italia",je:"Jersey",jm:"Jamaika",jo:"Yordania",jp:"Jepang",ke:"Kenya",kg:"Kirgistan",kh:"Kamboja",ki:"Kiribati",km:"Komoro",kn:"Saint Kitts dan Nevis",kp:"Korea Utara",kr:"Korea Selatan",kw:"Kuwait",ky:"Kepulauan Cayman",kz:"Kazakstan",la:"Laos",lb:"Lebanon",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Lituania",lu:"Luksemburg",lv:"Latvia",ly:"Libia",ma:"Maroko",mc:"Monako",md:"Moldova",me:"Montenegro",mf:"Saint Martin",mg:"Madagaskar",mh:"Kepulauan Marshall",mk:"Makedonia Utara",ml:"Mali",mm:"Myanmar (Burma)",mn:"Mongolia",mo:"Makau DAK Tiongkok",mp:"Kepulauan Mariana Utara",mq:"Martinik",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maladewa",mw:"Malawi",mx:"Meksiko",my:"Malaysia",mz:"Mozambik",na:"Namibia",nc:"Kaledonia Baru",ne:"Niger",nf:"Kepulauan Norfolk",ng:"Nigeria",ni:"Nikaragua",nl:"Belanda",no:"Norwegia",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Selandia Baru",om:"Oman",pa:"Panama",pe:"Peru",pf:"Polinesia Prancis",pg:"Papua Nugini",ph:"Filipina",pk:"Pakistan",pl:"Polandia",pm:"Saint Pierre dan Miquelon",pr:"Puerto Riko",ps:"Wilayah Palestina",pt:"Portugal",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Rumania",rs:"Serbia",ru:"Rusia",rw:"Rwanda",sa:"Arab Saudi",sb:"Kepulauan Solomon",sc:"Seychelles",sd:"Sudan",se:"Swedia",sg:"Singapura",sh:"Saint Helena",si:"Slovenia",sj:"Kepulauan Svalbard dan Jan Mayen",sk:"Slovakia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Suriname",ss:"Sudan Selatan",st:"Sao Tome dan Principe",sv:"El Salvador",sx:"Sint Maarten",sy:"Suriah",sz:"eSwatini",tc:"Kepulauan Turks dan Caicos",td:"Cad",tg:"Togo",th:"Thailand",tj:"Tajikistan",tk:"Tokelau",tl:"Timor Leste",tm:"Turkimenistan",tn:"Tunisia",to:"Tonga",tr:"Turki",tt:"Trinidad dan Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Ukraina",ug:"Uganda",us:"Amerika Serikat",uy:"Uruguay",uz:"Uzbekistan",va:"Vatikan",vc:"Saint Vincent dan Grenadine",ve:"Venezuela",vg:"Kepulauan Virgin Britania Raya",vi:"Kepulauan Virgin Amerika Serikat",vn:"Vietnam",vu:"Vanuatu",wf:"Kepulauan Wallis dan Futuna",ws:"Samoa",ye:"Yaman",yt:"Mayotte",za:"Afrika Selatan",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Negara yang dipilih",noCountrySelected:"Tidak ada negara yang dipilih",countryListAriaLabel:"Daftar negara",searchPlaceholder:"Mencari",zeroSearchResults:"Tidak ada hasil yang ditemukan",oneSearchResult:"1 hasil ditemukan",multipleSearchResults:"${count} hasil ditemukan",ac:"Pulau Kenaikan",xk:"Kosovo"},u={...e,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[788],{80:(a,i,n)=>{n.r(i),n.d(i,{countryTranslations:()=>e,default:()=>u,interfaceTranslations:()=>r});const e={ad:"Andorra",ae:"Uni Emirat Arab",af:"Afganistan",ag:"Antigua dan Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentina",as:"Samoa Amerika",at:"Austria",au:"Australia",aw:"Aruba",ax:"Kepulauan Aland",az:"Azerbaijan",ba:"Bosnia dan Herzegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgia",bf:"Burkina Faso",bg:"Bulgaria",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"Saint Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Belanda Karibia",br:"Brasil",bs:"Bahama",bt:"Bhutan",bw:"Botswana",by:"Belarus",bz:"Belize",ca:"Kanada",cc:"Kepulauan Cocos (Keeling)",cd:"Kongo - Kinshasa",cf:"Republik Afrika Tengah",cg:"Kongo - Brazzaville",ch:"Swiss",ci:"Côte d’Ivoire",ck:"Kepulauan Cook",cl:"Cile",cm:"Kamerun",cn:"Tiongkok",co:"Kolombia",cr:"Kosta Rika",cu:"Kuba",cv:"Tanjung Verde",cw:"Curaçao",cx:"Pulau Natal",cy:"Siprus",cz:"Ceko",de:"Jerman",dj:"Jibuti",dk:"Denmark",dm:"Dominika",do:"Republik Dominika",dz:"Aljazair",ec:"Ekuador",ee:"Estonia",eg:"Mesir",eh:"Sahara Barat",er:"Eritrea",es:"Spanyol",et:"Etiopia",fi:"Finlandia",fj:"Fiji",fk:"Kepulauan Falkland",fm:"Mikronesia",fo:"Kepulauan Faroe",fr:"Prancis",ga:"Gabon",gb:"Inggris Raya",gd:"Grenada",ge:"Georgia",gf:"Guyana Prancis",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grinlandia",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Guinea Ekuatorial",gr:"Yunani",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hong Kong DAK Tiongkok",hn:"Honduras",hr:"Kroasia",ht:"Haiti",hu:"Hungaria",id:"Indonesia",ie:"Irlandia",il:"Israel",im:"Pulau Man",in:"India",io:"Wilayah Inggris di Samudra Hindia",iq:"Irak",ir:"Iran",is:"Islandia",it:"Italia",je:"Jersey",jm:"Jamaika",jo:"Yordania",jp:"Jepang",ke:"Kenya",kg:"Kirgistan",kh:"Kamboja",ki:"Kiribati",km:"Komoro",kn:"Saint Kitts dan Nevis",kp:"Korea Utara",kr:"Korea Selatan",kw:"Kuwait",ky:"Kepulauan Cayman",kz:"Kazakstan",la:"Laos",lb:"Lebanon",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Lituania",lu:"Luksemburg",lv:"Latvia",ly:"Libia",ma:"Maroko",mc:"Monako",md:"Moldova",me:"Montenegro",mf:"Saint Martin",mg:"Madagaskar",mh:"Kepulauan Marshall",mk:"Makedonia Utara",ml:"Mali",mm:"Myanmar (Burma)",mn:"Mongolia",mo:"Makau DAK Tiongkok",mp:"Kepulauan Mariana Utara",mq:"Martinik",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maladewa",mw:"Malawi",mx:"Meksiko",my:"Malaysia",mz:"Mozambik",na:"Namibia",nc:"Kaledonia Baru",ne:"Niger",nf:"Kepulauan Norfolk",ng:"Nigeria",ni:"Nikaragua",nl:"Belanda",no:"Norwegia",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Selandia Baru",om:"Oman",pa:"Panama",pe:"Peru",pf:"Polinesia Prancis",pg:"Papua Nugini",ph:"Filipina",pk:"Pakistan",pl:"Polandia",pm:"Saint Pierre dan Miquelon",pr:"Puerto Riko",ps:"Wilayah Palestina",pt:"Portugal",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Rumania",rs:"Serbia",ru:"Rusia",rw:"Rwanda",sa:"Arab Saudi",sb:"Kepulauan Solomon",sc:"Seychelles",sd:"Sudan",se:"Swedia",sg:"Singapura",sh:"Saint Helena",si:"Slovenia",sj:"Kepulauan Svalbard dan Jan Mayen",sk:"Slovakia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Suriname",ss:"Sudan Selatan",st:"Sao Tome dan Principe",sv:"El Salvador",sx:"Sint Maarten",sy:"Suriah",sz:"eSwatini",tc:"Kepulauan Turks dan Caicos",td:"Cad",tg:"Togo",th:"Thailand",tj:"Tajikistan",tk:"Tokelau",tl:"Timor Leste",tm:"Turkimenistan",tn:"Tunisia",to:"Tonga",tr:"Turki",tt:"Trinidad dan Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Ukraina",ug:"Uganda",us:"Amerika Serikat",uy:"Uruguay",uz:"Uzbekistan",va:"Vatikan",vc:"Saint Vincent dan Grenadine",ve:"Venezuela",vg:"Kepulauan Virgin Britania Raya",vi:"Kepulauan Virgin Amerika Serikat",vn:"Vietnam",vu:"Vanuatu",wf:"Kepulauan Wallis dan Futuna",ws:"Samoa",ye:"Yaman",yt:"Mayotte",za:"Afrika Selatan",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Negara yang dipilih",noCountrySelected:"Tidak ada negara yang dipilih",countryListAriaLabel:"Daftar negara",searchPlaceholder:"Mencari",zeroSearchResults:"Tidak ada hasil yang ditemukan",oneSearchResult:"1 hasil ditemukan",multipleSearchResults:"${count} hasil ditemukan",ac:"Pulau Kenaikan",xk:"Kosovo"},u={...e,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-it.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-it.js index a672e2f0f..fe1832381 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-it.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-it.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[932],{760(a,i,e){e.r(i),e.d(i,{countryTranslations:()=>n,default:()=>r,interfaceTranslations:()=>o});const n={ad:"Andorra",ae:"Emirati Arabi Uniti",af:"Afghanistan",ag:"Antigua e Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentina",as:"Samoa americane",at:"Austria",au:"Australia",aw:"Aruba",ax:"Isole Åland",az:"Azerbaigian",ba:"Bosnia ed Erzegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgio",bf:"Burkina Faso",bg:"Bulgaria",bh:"Bahrein",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Caraibi olandesi",br:"Brasile",bs:"Bahamas",bt:"Bhutan",bw:"Botswana",by:"Bielorussia",bz:"Belize",ca:"Canada",cc:"Isole Cocos (Keeling)",cd:"Congo - Kinshasa",cf:"Repubblica Centrafricana",cg:"Congo-Brazzaville",ch:"Svizzera",ci:"Costa d’Avorio",ck:"Isole Cook",cl:"Cile",cm:"Camerun",cn:"Cina",co:"Colombia",cr:"Costa Rica",cu:"Cuba",cv:"Capo Verde",cw:"Curaçao",cx:"Isola Christmas",cy:"Cipro",cz:"Cechia",de:"Germania",dj:"Gibuti",dk:"Danimarca",dm:"Dominica",do:"Repubblica Dominicana",dz:"Algeria",ec:"Ecuador",ee:"Estonia",eg:"Egitto",eh:"Sahara occidentale",er:"Eritrea",es:"Spagna",et:"Etiopia",fi:"Finlandia",fj:"Figi",fk:"Isole Falkland",fm:"Micronesia",fo:"Isole Fær Øer",fr:"Francia",ga:"Gabon",gb:"Regno Unito",gd:"Grenada",ge:"Georgia",gf:"Guyana francese",gg:"Guernsey",gh:"Ghana",gi:"Gibilterra",gl:"Groenlandia",gm:"Gambia",gn:"Guinea",gp:"Guadalupa",gq:"Guinea Equatoriale",gr:"Grecia",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"RAS di Hong Kong",hn:"Honduras",hr:"Croazia",ht:"Haiti",hu:"Ungheria",id:"Indonesia",ie:"Irlanda",il:"Israele",im:"Isola di Man",in:"India",io:"Territorio britannico dell’Oceano Indiano",iq:"Iraq",ir:"Iran",is:"Islanda",it:"Italia",je:"Jersey",jm:"Giamaica",jo:"Giordania",jp:"Giappone",ke:"Kenya",kg:"Kirghizistan",kh:"Cambogia",ki:"Kiribati",km:"Comore",kn:"Saint Kitts e Nevis",kp:"Corea del Nord",kr:"Corea del Sud",kw:"Kuwait",ky:"Isole Cayman",kz:"Kazakistan",la:"Laos",lb:"Libano",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Lituania",lu:"Lussemburgo",lv:"Lettonia",ly:"Libia",ma:"Marocco",mc:"Monaco",md:"Moldavia",me:"Montenegro",mf:"Saint Martin",mg:"Madagascar",mh:"Isole Marshall",mk:"Macedonia del Nord",ml:"Mali",mm:"Myanmar (Birmania)",mn:"Mongolia",mo:"RAS di Macao",mp:"Isole Marianne settentrionali",mq:"Martinica",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldive",mw:"Malawi",mx:"Messico",my:"Malaysia",mz:"Mozambico",na:"Namibia",nc:"Nuova Caledonia",ne:"Niger",nf:"Isola Norfolk",ng:"Nigeria",ni:"Nicaragua",nl:"Paesi Bassi",no:"Norvegia",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nuova Zelanda",om:"Oman",pa:"Panamá",pe:"Perù",pf:"Polinesia francese",pg:"Papua Nuova Guinea",ph:"Filippine",pk:"Pakistan",pl:"Polonia",pm:"Saint-Pierre e Miquelon",pr:"Portorico",ps:"Territori palestinesi",pt:"Portogallo",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Riunione",ro:"Romania",rs:"Serbia",ru:"Russia",rw:"Ruanda",sa:"Arabia Saudita",sb:"Isole Salomone",sc:"Seychelles",sd:"Sudan",se:"Svezia",sg:"Singapore",sh:"Sant’Elena",si:"Slovenia",sj:"Svalbard e Jan Mayen",sk:"Slovacchia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Suriname",ss:"Sud Sudan",st:"São Tomé e Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Siria",sz:"Swaziland",tc:"Isole Turks e Caicos",td:"Ciad",tg:"Togo",th:"Thailandia",tj:"Tagikistan",tk:"Tokelau",tl:"Timor Est",tm:"Turkmenistan",tn:"Tunisia",to:"Tonga",tr:"Turchia",tt:"Trinidad e Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Ucraina",ug:"Uganda",us:"Stati Uniti",uy:"Uruguay",uz:"Uzbekistan",va:"Città del Vaticano",vc:"Saint Vincent e Grenadine",ve:"Venezuela",vg:"Isole Vergini Britanniche",vi:"Isole Vergini Americane",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis e Futuna",ws:"Samoa",ye:"Yemen",yt:"Mayotte",za:"Sudafrica",zm:"Zambia",zw:"Zimbabwe"},o={selectedCountryAriaLabel:"Paese selezionato",noCountrySelected:"Nessun paese selezionato",countryListAriaLabel:"Elenco dei paesi",searchPlaceholder:"Ricerca",zeroSearchResults:"Nessun risultato trovato",oneSearchResult:"1 risultato trovato",multipleSearchResults:"${count} risultati trovati",ac:"Isola di Ascensione",xk:"Kosovo"},r={...n,...o}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[932],{760:(a,i,e)=>{e.r(i),e.d(i,{countryTranslations:()=>n,default:()=>r,interfaceTranslations:()=>o});const n={ad:"Andorra",ae:"Emirati Arabi Uniti",af:"Afghanistan",ag:"Antigua e Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentina",as:"Samoa americane",at:"Austria",au:"Australia",aw:"Aruba",ax:"Isole Åland",az:"Azerbaigian",ba:"Bosnia ed Erzegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgio",bf:"Burkina Faso",bg:"Bulgaria",bh:"Bahrein",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Caraibi olandesi",br:"Brasile",bs:"Bahamas",bt:"Bhutan",bw:"Botswana",by:"Bielorussia",bz:"Belize",ca:"Canada",cc:"Isole Cocos (Keeling)",cd:"Congo - Kinshasa",cf:"Repubblica Centrafricana",cg:"Congo-Brazzaville",ch:"Svizzera",ci:"Costa d’Avorio",ck:"Isole Cook",cl:"Cile",cm:"Camerun",cn:"Cina",co:"Colombia",cr:"Costa Rica",cu:"Cuba",cv:"Capo Verde",cw:"Curaçao",cx:"Isola Christmas",cy:"Cipro",cz:"Cechia",de:"Germania",dj:"Gibuti",dk:"Danimarca",dm:"Dominica",do:"Repubblica Dominicana",dz:"Algeria",ec:"Ecuador",ee:"Estonia",eg:"Egitto",eh:"Sahara occidentale",er:"Eritrea",es:"Spagna",et:"Etiopia",fi:"Finlandia",fj:"Figi",fk:"Isole Falkland",fm:"Micronesia",fo:"Isole Fær Øer",fr:"Francia",ga:"Gabon",gb:"Regno Unito",gd:"Grenada",ge:"Georgia",gf:"Guyana francese",gg:"Guernsey",gh:"Ghana",gi:"Gibilterra",gl:"Groenlandia",gm:"Gambia",gn:"Guinea",gp:"Guadalupa",gq:"Guinea Equatoriale",gr:"Grecia",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"RAS di Hong Kong",hn:"Honduras",hr:"Croazia",ht:"Haiti",hu:"Ungheria",id:"Indonesia",ie:"Irlanda",il:"Israele",im:"Isola di Man",in:"India",io:"Territorio britannico dell’Oceano Indiano",iq:"Iraq",ir:"Iran",is:"Islanda",it:"Italia",je:"Jersey",jm:"Giamaica",jo:"Giordania",jp:"Giappone",ke:"Kenya",kg:"Kirghizistan",kh:"Cambogia",ki:"Kiribati",km:"Comore",kn:"Saint Kitts e Nevis",kp:"Corea del Nord",kr:"Corea del Sud",kw:"Kuwait",ky:"Isole Cayman",kz:"Kazakistan",la:"Laos",lb:"Libano",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Lituania",lu:"Lussemburgo",lv:"Lettonia",ly:"Libia",ma:"Marocco",mc:"Monaco",md:"Moldavia",me:"Montenegro",mf:"Saint Martin",mg:"Madagascar",mh:"Isole Marshall",mk:"Macedonia del Nord",ml:"Mali",mm:"Myanmar (Birmania)",mn:"Mongolia",mo:"RAS di Macao",mp:"Isole Marianne settentrionali",mq:"Martinica",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldive",mw:"Malawi",mx:"Messico",my:"Malaysia",mz:"Mozambico",na:"Namibia",nc:"Nuova Caledonia",ne:"Niger",nf:"Isola Norfolk",ng:"Nigeria",ni:"Nicaragua",nl:"Paesi Bassi",no:"Norvegia",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nuova Zelanda",om:"Oman",pa:"Panamá",pe:"Perù",pf:"Polinesia francese",pg:"Papua Nuova Guinea",ph:"Filippine",pk:"Pakistan",pl:"Polonia",pm:"Saint-Pierre e Miquelon",pr:"Portorico",ps:"Territori palestinesi",pt:"Portogallo",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Riunione",ro:"Romania",rs:"Serbia",ru:"Russia",rw:"Ruanda",sa:"Arabia Saudita",sb:"Isole Salomone",sc:"Seychelles",sd:"Sudan",se:"Svezia",sg:"Singapore",sh:"Sant’Elena",si:"Slovenia",sj:"Svalbard e Jan Mayen",sk:"Slovacchia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Suriname",ss:"Sud Sudan",st:"São Tomé e Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Siria",sz:"Swaziland",tc:"Isole Turks e Caicos",td:"Ciad",tg:"Togo",th:"Thailandia",tj:"Tagikistan",tk:"Tokelau",tl:"Timor Est",tm:"Turkmenistan",tn:"Tunisia",to:"Tonga",tr:"Turchia",tt:"Trinidad e Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Ucraina",ug:"Uganda",us:"Stati Uniti",uy:"Uruguay",uz:"Uzbekistan",va:"Città del Vaticano",vc:"Saint Vincent e Grenadine",ve:"Venezuela",vg:"Isole Vergini Britanniche",vi:"Isole Vergini Americane",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis e Futuna",ws:"Samoa",ye:"Yemen",yt:"Mayotte",za:"Sudafrica",zm:"Zambia",zw:"Zimbabwe"},o={selectedCountryAriaLabel:"Paese selezionato",noCountrySelected:"Nessun paese selezionato",countryListAriaLabel:"Elenco dei paesi",searchPlaceholder:"Ricerca",zeroSearchResults:"Nessun risultato trovato",oneSearchResult:"1 risultato trovato",multipleSearchResults:"${count} risultati trovati",ac:"Isola di Ascensione",xk:"Kosovo"},r={...n,...o}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ja.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ja.js index bd6cea8d7..3443138e7 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ja.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ja.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[680],{608(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"アンドラ",ae:"アラブ首長国連邦",af:"アフガニスタン",ag:"アンティグア・バーブーダ",ai:"アンギラ",al:"アルバニア",am:"アルメニア",ao:"アンゴラ",ar:"アルゼンチン",as:"米領サモア",at:"オーストリア",au:"オーストラリア",aw:"アルバ",ax:"オーランド諸島",az:"アゼルバイジャン",ba:"ボスニア・ヘルツェゴビナ",bb:"バルバドス",bd:"バングラデシュ",be:"ベルギー",bf:"ブルキナファソ",bg:"ブルガリア",bh:"バーレーン",bi:"ブルンジ",bj:"ベナン",bl:"サン・バルテルミー",bm:"バミューダ",bn:"ブルネイ",bo:"ボリビア",bq:"オランダ領カリブ",br:"ブラジル",bs:"バハマ",bt:"ブータン",bw:"ボツワナ",by:"ベラルーシ",bz:"ベリーズ",ca:"カナダ",cc:"ココス(キーリング)諸島",cd:"コンゴ民主共和国(キンシャサ)",cf:"中央アフリカ共和国",cg:"コンゴ共和国(ブラザビル)",ch:"スイス",ci:"コートジボワール",ck:"クック諸島",cl:"チリ",cm:"カメルーン",cn:"中国",co:"コロンビア",cr:"コスタリカ",cu:"キューバ",cv:"カーボベルデ",cw:"キュラソー",cx:"クリスマス島",cy:"キプロス",cz:"チェコ",de:"ドイツ",dj:"ジブチ",dk:"デンマーク",dm:"ドミニカ国",do:"ドミニカ共和国",dz:"アルジェリア",ec:"エクアドル",ee:"エストニア",eg:"エジプト",eh:"西サハラ",er:"エリトリア",es:"スペイン",et:"エチオピア",fi:"フィンランド",fj:"フィジー",fk:"フォークランド諸島",fm:"ミクロネシア連邦",fo:"フェロー諸島",fr:"フランス",ga:"ガボン",gb:"イギリス",gd:"グレナダ",ge:"ジョージア",gf:"仏領ギアナ",gg:"ガーンジー",gh:"ガーナ",gi:"ジブラルタル",gl:"グリーンランド",gm:"ガンビア",gn:"ギニア",gp:"グアドループ",gq:"赤道ギニア",gr:"ギリシャ",gt:"グアテマラ",gu:"グアム",gw:"ギニアビサウ",gy:"ガイアナ",hk:"中華人民共和国香港特別行政区",hn:"ホンジュラス",hr:"クロアチア",ht:"ハイチ",hu:"ハンガリー",id:"インドネシア",ie:"アイルランド",il:"イスラエル",im:"マン島",in:"インド",io:"英領インド洋地域",iq:"イラク",ir:"イラン",is:"アイスランド",it:"イタリア",je:"ジャージー",jm:"ジャマイカ",jo:"ヨルダン",jp:"日本",ke:"ケニア",kg:"キルギス",kh:"カンボジア",ki:"キリバス",km:"コモロ",kn:"セントクリストファー・ネーヴィス",kp:"北朝鮮",kr:"韓国",kw:"クウェート",ky:"ケイマン諸島",kz:"カザフスタン",la:"ラオス",lb:"レバノン",lc:"セントルシア",li:"リヒテンシュタイン",lk:"スリランカ",lr:"リベリア",ls:"レソト",lt:"リトアニア",lu:"ルクセンブルク",lv:"ラトビア",ly:"リビア",ma:"モロッコ",mc:"モナコ",md:"モルドバ",me:"モンテネグロ",mf:"サン・マルタン",mg:"マダガスカル",mh:"マーシャル諸島",mk:"北マケドニア",ml:"マリ",mm:"ミャンマー (ビルマ)",mn:"モンゴル",mo:"中華人民共和国マカオ特別行政区",mp:"北マリアナ諸島",mq:"マルティニーク",mr:"モーリタニア",ms:"モントセラト",mt:"マルタ",mu:"モーリシャス",mv:"モルディブ",mw:"マラウイ",mx:"メキシコ",my:"マレーシア",mz:"モザンビーク",na:"ナミビア",nc:"ニューカレドニア",ne:"ニジェール",nf:"ノーフォーク島",ng:"ナイジェリア",ni:"ニカラグア",nl:"オランダ",no:"ノルウェー",np:"ネパール",nr:"ナウル",nu:"ニウエ",nz:"ニュージーランド",om:"オマーン",pa:"パナマ",pe:"ペルー",pf:"仏領ポリネシア",pg:"パプアニューギニア",ph:"フィリピン",pk:"パキスタン",pl:"ポーランド",pm:"サンピエール島・ミクロン島",pr:"プエルトリコ",ps:"パレスチナ自治区",pt:"ポルトガル",pw:"パラオ",py:"パラグアイ",qa:"カタール",re:"レユニオン",ro:"ルーマニア",rs:"セルビア",ru:"ロシア",rw:"ルワンダ",sa:"サウジアラビア",sb:"ソロモン諸島",sc:"セーシェル",sd:"スーダン",se:"スウェーデン",sg:"シンガポール",sh:"セントヘレナ",si:"スロベニア",sj:"スバールバル諸島・ヤンマイエン島",sk:"スロバキア",sl:"シエラレオネ",sm:"サンマリノ",sn:"セネガル",so:"ソマリア",sr:"スリナム",ss:"南スーダン",st:"サントメ・プリンシペ",sv:"エルサルバドル",sx:"シント・マールテン",sy:"シリア",sz:"エスワティニ",tc:"タークス・カイコス諸島",td:"チャド",tg:"トーゴ",th:"タイ",tj:"タジキスタン",tk:"トケラウ",tl:"東ティモール",tm:"トルクメニスタン",tn:"チュニジア",to:"トンガ",tr:"トルコ",tt:"トリニダード・トバゴ",tv:"ツバル",tw:"台湾",tz:"タンザニア",ua:"ウクライナ",ug:"ウガンダ",us:"アメリカ合衆国",uy:"ウルグアイ",uz:"ウズベキスタン",va:"バチカン市国",vc:"セントビンセント及びグレナディーン諸島",ve:"ベネズエラ",vg:"英領ヴァージン諸島",vi:"米領ヴァージン諸島",vn:"ベトナム",vu:"バヌアツ",wf:"ウォリス・フツナ",ws:"サモア",ye:"イエメン",yt:"マヨット",za:"南アフリカ",zm:"ザンビア",zw:"ジンバブエ"},c={selectedCountryAriaLabel:"選択した国",noCountrySelected:"国が選択されていません",countryListAriaLabel:"国のリスト",searchPlaceholder:"検索",zeroSearchResults:"結果が見つかりません",oneSearchResult:"1 件の結果が見つかりました",multipleSearchResults:"${count} 件の結果が見つかりました",ac:"アセンション島",xk:"コソボ"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[680],{608:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"アンドラ",ae:"アラブ首長国連邦",af:"アフガニスタン",ag:"アンティグア・バーブーダ",ai:"アンギラ",al:"アルバニア",am:"アルメニア",ao:"アンゴラ",ar:"アルゼンチン",as:"米領サモア",at:"オーストリア",au:"オーストラリア",aw:"アルバ",ax:"オーランド諸島",az:"アゼルバイジャン",ba:"ボスニア・ヘルツェゴビナ",bb:"バルバドス",bd:"バングラデシュ",be:"ベルギー",bf:"ブルキナファソ",bg:"ブルガリア",bh:"バーレーン",bi:"ブルンジ",bj:"ベナン",bl:"サン・バルテルミー",bm:"バミューダ",bn:"ブルネイ",bo:"ボリビア",bq:"オランダ領カリブ",br:"ブラジル",bs:"バハマ",bt:"ブータン",bw:"ボツワナ",by:"ベラルーシ",bz:"ベリーズ",ca:"カナダ",cc:"ココス(キーリング)諸島",cd:"コンゴ民主共和国(キンシャサ)",cf:"中央アフリカ共和国",cg:"コンゴ共和国(ブラザビル)",ch:"スイス",ci:"コートジボワール",ck:"クック諸島",cl:"チリ",cm:"カメルーン",cn:"中国",co:"コロンビア",cr:"コスタリカ",cu:"キューバ",cv:"カーボベルデ",cw:"キュラソー",cx:"クリスマス島",cy:"キプロス",cz:"チェコ",de:"ドイツ",dj:"ジブチ",dk:"デンマーク",dm:"ドミニカ国",do:"ドミニカ共和国",dz:"アルジェリア",ec:"エクアドル",ee:"エストニア",eg:"エジプト",eh:"西サハラ",er:"エリトリア",es:"スペイン",et:"エチオピア",fi:"フィンランド",fj:"フィジー",fk:"フォークランド諸島",fm:"ミクロネシア連邦",fo:"フェロー諸島",fr:"フランス",ga:"ガボン",gb:"イギリス",gd:"グレナダ",ge:"ジョージア",gf:"仏領ギアナ",gg:"ガーンジー",gh:"ガーナ",gi:"ジブラルタル",gl:"グリーンランド",gm:"ガンビア",gn:"ギニア",gp:"グアドループ",gq:"赤道ギニア",gr:"ギリシャ",gt:"グアテマラ",gu:"グアム",gw:"ギニアビサウ",gy:"ガイアナ",hk:"中華人民共和国香港特別行政区",hn:"ホンジュラス",hr:"クロアチア",ht:"ハイチ",hu:"ハンガリー",id:"インドネシア",ie:"アイルランド",il:"イスラエル",im:"マン島",in:"インド",io:"英領インド洋地域",iq:"イラク",ir:"イラン",is:"アイスランド",it:"イタリア",je:"ジャージー",jm:"ジャマイカ",jo:"ヨルダン",jp:"日本",ke:"ケニア",kg:"キルギス",kh:"カンボジア",ki:"キリバス",km:"コモロ",kn:"セントクリストファー・ネーヴィス",kp:"北朝鮮",kr:"韓国",kw:"クウェート",ky:"ケイマン諸島",kz:"カザフスタン",la:"ラオス",lb:"レバノン",lc:"セントルシア",li:"リヒテンシュタイン",lk:"スリランカ",lr:"リベリア",ls:"レソト",lt:"リトアニア",lu:"ルクセンブルク",lv:"ラトビア",ly:"リビア",ma:"モロッコ",mc:"モナコ",md:"モルドバ",me:"モンテネグロ",mf:"サン・マルタン",mg:"マダガスカル",mh:"マーシャル諸島",mk:"北マケドニア",ml:"マリ",mm:"ミャンマー (ビルマ)",mn:"モンゴル",mo:"中華人民共和国マカオ特別行政区",mp:"北マリアナ諸島",mq:"マルティニーク",mr:"モーリタニア",ms:"モントセラト",mt:"マルタ",mu:"モーリシャス",mv:"モルディブ",mw:"マラウイ",mx:"メキシコ",my:"マレーシア",mz:"モザンビーク",na:"ナミビア",nc:"ニューカレドニア",ne:"ニジェール",nf:"ノーフォーク島",ng:"ナイジェリア",ni:"ニカラグア",nl:"オランダ",no:"ノルウェー",np:"ネパール",nr:"ナウル",nu:"ニウエ",nz:"ニュージーランド",om:"オマーン",pa:"パナマ",pe:"ペルー",pf:"仏領ポリネシア",pg:"パプアニューギニア",ph:"フィリピン",pk:"パキスタン",pl:"ポーランド",pm:"サンピエール島・ミクロン島",pr:"プエルトリコ",ps:"パレスチナ自治区",pt:"ポルトガル",pw:"パラオ",py:"パラグアイ",qa:"カタール",re:"レユニオン",ro:"ルーマニア",rs:"セルビア",ru:"ロシア",rw:"ルワンダ",sa:"サウジアラビア",sb:"ソロモン諸島",sc:"セーシェル",sd:"スーダン",se:"スウェーデン",sg:"シンガポール",sh:"セントヘレナ",si:"スロベニア",sj:"スバールバル諸島・ヤンマイエン島",sk:"スロバキア",sl:"シエラレオネ",sm:"サンマリノ",sn:"セネガル",so:"ソマリア",sr:"スリナム",ss:"南スーダン",st:"サントメ・プリンシペ",sv:"エルサルバドル",sx:"シント・マールテン",sy:"シリア",sz:"エスワティニ",tc:"タークス・カイコス諸島",td:"チャド",tg:"トーゴ",th:"タイ",tj:"タジキスタン",tk:"トケラウ",tl:"東ティモール",tm:"トルクメニスタン",tn:"チュニジア",to:"トンガ",tr:"トルコ",tt:"トリニダード・トバゴ",tv:"ツバル",tw:"台湾",tz:"タンザニア",ua:"ウクライナ",ug:"ウガンダ",us:"アメリカ合衆国",uy:"ウルグアイ",uz:"ウズベキスタン",va:"バチカン市国",vc:"セントビンセント及びグレナディーン諸島",ve:"ベネズエラ",vg:"英領ヴァージン諸島",vi:"米領ヴァージン諸島",vn:"ベトナム",vu:"バヌアツ",wf:"ウォリス・フツナ",ws:"サモア",ye:"イエメン",yt:"マヨット",za:"南アフリカ",zm:"ザンビア",zw:"ジンバブエ"},c={selectedCountryAriaLabel:"選択した国",noCountrySelected:"国が選択されていません",countryListAriaLabel:"国のリスト",searchPlaceholder:"検索",zeroSearchResults:"結果が見つかりません",oneSearchResult:"1 件の結果が見つかりました",multipleSearchResults:"${count} 件の結果が見つかりました",ac:"アセンション島",xk:"コソボ"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ko.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ko.js index 2b63c7cf1..c7f8c3481 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ko.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ko.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[489],{397(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"안도라",ae:"아랍에미리트",af:"아프가니스탄",ag:"앤티가 바부다",ai:"앵귈라",al:"알바니아",am:"아르메니아",ao:"앙골라",ar:"아르헨티나",as:"아메리칸 사모아",at:"오스트리아",au:"오스트레일리아",aw:"아루바",ax:"올란드 제도",az:"아제르바이잔",ba:"보스니아 헤르체고비나",bb:"바베이도스",bd:"방글라데시",be:"벨기에",bf:"부르키나파소",bg:"불가리아",bh:"바레인",bi:"부룬디",bj:"베냉",bl:"생바르텔레미",bm:"버뮤다",bn:"브루나이",bo:"볼리비아",bq:"네덜란드령 카리브",br:"브라질",bs:"바하마",bt:"부탄",bw:"보츠와나",by:"벨라루스",bz:"벨리즈",ca:"캐나다",cc:"코코스 제도",cd:"콩고-킨샤사",cf:"중앙 아프리카 공화국",cg:"콩고-브라자빌",ch:"스위스",ci:"코트디부아르",ck:"쿡 제도",cl:"칠레",cm:"카메룬",cn:"중국",co:"콜롬비아",cr:"코스타리카",cu:"쿠바",cv:"카보베르데",cw:"퀴라소",cx:"크리스마스섬",cy:"키프로스",cz:"체코",de:"독일",dj:"지부티",dk:"덴마크",dm:"도미니카",do:"도미니카 공화국",dz:"알제리",ec:"에콰도르",ee:"에스토니아",eg:"이집트",eh:"서사하라",er:"에리트리아",es:"스페인",et:"에티오피아",fi:"핀란드",fj:"피지",fk:"포클랜드 제도",fm:"미크로네시아",fo:"페로 제도",fr:"프랑스",ga:"가봉",gb:"영국",gd:"그레나다",ge:"조지아",gf:"프랑스령 기아나",gg:"건지",gh:"가나",gi:"지브롤터",gl:"그린란드",gm:"감비아",gn:"기니",gp:"과들루프",gq:"적도 기니",gr:"그리스",gt:"과테말라",gu:"괌",gw:"기니비사우",gy:"가이아나",hk:"홍콩(중국 특별행정구)",hn:"온두라스",hr:"크로아티아",ht:"아이티",hu:"헝가리",id:"인도네시아",ie:"아일랜드",il:"이스라엘",im:"맨 섬",in:"인도",io:"영국령 인도양 식민지",iq:"이라크",ir:"이란",is:"아이슬란드",it:"이탈리아",je:"저지",jm:"자메이카",jo:"요르단",jp:"일본",ke:"케냐",kg:"키르기스스탄",kh:"캄보디아",ki:"키리바시",km:"코모로",kn:"세인트키츠 네비스",kp:"북한",kr:"대한민국",kw:"쿠웨이트",ky:"케이맨 제도",kz:"카자흐스탄",la:"라오스",lb:"레바논",lc:"세인트루시아",li:"리히텐슈타인",lk:"스리랑카",lr:"라이베리아",ls:"레소토",lt:"리투아니아",lu:"룩셈부르크",lv:"라트비아",ly:"리비아",ma:"모로코",mc:"모나코",md:"몰도바",me:"몬테네그로",mf:"생마르탱",mg:"마다가스카르",mh:"마셜 제도",mk:"북마케도니아",ml:"말리",mm:"미얀마",mn:"몽골",mo:"마카오(중국 특별행정구)",mp:"북마리아나제도",mq:"마르티니크",mr:"모리타니",ms:"몬트세라트",mt:"몰타",mu:"모리셔스",mv:"몰디브",mw:"말라위",mx:"멕시코",my:"말레이시아",mz:"모잠비크",na:"나미비아",nc:"뉴칼레도니아",ne:"니제르",nf:"노퍽섬",ng:"나이지리아",ni:"니카라과",nl:"네덜란드",no:"노르웨이",np:"네팔",nr:"나우루",nu:"니우에",nz:"뉴질랜드",om:"오만",pa:"파나마",pe:"페루",pf:"프랑스령 폴리네시아",pg:"파푸아뉴기니",ph:"필리핀",pk:"파키스탄",pl:"폴란드",pm:"생피에르 미클롱",pr:"푸에르토리코",ps:"팔레스타인 지구",pt:"포르투갈",pw:"팔라우",py:"파라과이",qa:"카타르",re:"리유니온",ro:"루마니아",rs:"세르비아",ru:"러시아",rw:"르완다",sa:"사우디아라비아",sb:"솔로몬 제도",sc:"세이셸",sd:"수단",se:"스웨덴",sg:"싱가포르",sh:"세인트헬레나",si:"슬로베니아",sj:"스발바르제도-얀마웬섬",sk:"슬로바키아",sl:"시에라리온",sm:"산마리노",sn:"세네갈",so:"소말리아",sr:"수리남",ss:"남수단",st:"상투메 프린시페",sv:"엘살바도르",sx:"신트마르턴",sy:"시리아",sz:"에스와티니",tc:"터크스 케이커스 제도",td:"차드",tg:"토고",th:"태국",tj:"타지키스탄",tk:"토켈라우",tl:"동티모르",tm:"투르크메니스탄",tn:"튀니지",to:"통가",tr:"터키",tt:"트리니다드 토바고",tv:"투발루",tw:"대만",tz:"탄자니아",ua:"우크라이나",ug:"우간다",us:"미국",uy:"우루과이",uz:"우즈베키스탄",va:"바티칸 시국",vc:"세인트빈센트그레나딘",ve:"베네수엘라",vg:"영국령 버진아일랜드",vi:"미국령 버진아일랜드",vn:"베트남",vu:"바누아투",wf:"왈리스-푸투나 제도",ws:"사모아",ye:"예멘",yt:"마요트",za:"남아프리카",zm:"잠비아",zw:"짐바브웨"},c={selectedCountryAriaLabel:"선택한 국가",noCountrySelected:"선택한 국가가 없습니다.",countryListAriaLabel:"국가 목록",searchPlaceholder:"찾다",zeroSearchResults:"검색 결과가 없습니다",oneSearchResult:"검색된 결과 1개",multipleSearchResults:"${count}개의 결과를 찾았습니다.",ac:"승천섬",xk:"코소보"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[489],{397:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"안도라",ae:"아랍에미리트",af:"아프가니스탄",ag:"앤티가 바부다",ai:"앵귈라",al:"알바니아",am:"아르메니아",ao:"앙골라",ar:"아르헨티나",as:"아메리칸 사모아",at:"오스트리아",au:"오스트레일리아",aw:"아루바",ax:"올란드 제도",az:"아제르바이잔",ba:"보스니아 헤르체고비나",bb:"바베이도스",bd:"방글라데시",be:"벨기에",bf:"부르키나파소",bg:"불가리아",bh:"바레인",bi:"부룬디",bj:"베냉",bl:"생바르텔레미",bm:"버뮤다",bn:"브루나이",bo:"볼리비아",bq:"네덜란드령 카리브",br:"브라질",bs:"바하마",bt:"부탄",bw:"보츠와나",by:"벨라루스",bz:"벨리즈",ca:"캐나다",cc:"코코스 제도",cd:"콩고-킨샤사",cf:"중앙 아프리카 공화국",cg:"콩고-브라자빌",ch:"스위스",ci:"코트디부아르",ck:"쿡 제도",cl:"칠레",cm:"카메룬",cn:"중국",co:"콜롬비아",cr:"코스타리카",cu:"쿠바",cv:"카보베르데",cw:"퀴라소",cx:"크리스마스섬",cy:"키프로스",cz:"체코",de:"독일",dj:"지부티",dk:"덴마크",dm:"도미니카",do:"도미니카 공화국",dz:"알제리",ec:"에콰도르",ee:"에스토니아",eg:"이집트",eh:"서사하라",er:"에리트리아",es:"스페인",et:"에티오피아",fi:"핀란드",fj:"피지",fk:"포클랜드 제도",fm:"미크로네시아",fo:"페로 제도",fr:"프랑스",ga:"가봉",gb:"영국",gd:"그레나다",ge:"조지아",gf:"프랑스령 기아나",gg:"건지",gh:"가나",gi:"지브롤터",gl:"그린란드",gm:"감비아",gn:"기니",gp:"과들루프",gq:"적도 기니",gr:"그리스",gt:"과테말라",gu:"괌",gw:"기니비사우",gy:"가이아나",hk:"홍콩(중국 특별행정구)",hn:"온두라스",hr:"크로아티아",ht:"아이티",hu:"헝가리",id:"인도네시아",ie:"아일랜드",il:"이스라엘",im:"맨 섬",in:"인도",io:"영국령 인도양 식민지",iq:"이라크",ir:"이란",is:"아이슬란드",it:"이탈리아",je:"저지",jm:"자메이카",jo:"요르단",jp:"일본",ke:"케냐",kg:"키르기스스탄",kh:"캄보디아",ki:"키리바시",km:"코모로",kn:"세인트키츠 네비스",kp:"북한",kr:"대한민국",kw:"쿠웨이트",ky:"케이맨 제도",kz:"카자흐스탄",la:"라오스",lb:"레바논",lc:"세인트루시아",li:"리히텐슈타인",lk:"스리랑카",lr:"라이베리아",ls:"레소토",lt:"리투아니아",lu:"룩셈부르크",lv:"라트비아",ly:"리비아",ma:"모로코",mc:"모나코",md:"몰도바",me:"몬테네그로",mf:"생마르탱",mg:"마다가스카르",mh:"마셜 제도",mk:"북마케도니아",ml:"말리",mm:"미얀마",mn:"몽골",mo:"마카오(중국 특별행정구)",mp:"북마리아나제도",mq:"마르티니크",mr:"모리타니",ms:"몬트세라트",mt:"몰타",mu:"모리셔스",mv:"몰디브",mw:"말라위",mx:"멕시코",my:"말레이시아",mz:"모잠비크",na:"나미비아",nc:"뉴칼레도니아",ne:"니제르",nf:"노퍽섬",ng:"나이지리아",ni:"니카라과",nl:"네덜란드",no:"노르웨이",np:"네팔",nr:"나우루",nu:"니우에",nz:"뉴질랜드",om:"오만",pa:"파나마",pe:"페루",pf:"프랑스령 폴리네시아",pg:"파푸아뉴기니",ph:"필리핀",pk:"파키스탄",pl:"폴란드",pm:"생피에르 미클롱",pr:"푸에르토리코",ps:"팔레스타인 지구",pt:"포르투갈",pw:"팔라우",py:"파라과이",qa:"카타르",re:"리유니온",ro:"루마니아",rs:"세르비아",ru:"러시아",rw:"르완다",sa:"사우디아라비아",sb:"솔로몬 제도",sc:"세이셸",sd:"수단",se:"스웨덴",sg:"싱가포르",sh:"세인트헬레나",si:"슬로베니아",sj:"스발바르제도-얀마웬섬",sk:"슬로바키아",sl:"시에라리온",sm:"산마리노",sn:"세네갈",so:"소말리아",sr:"수리남",ss:"남수단",st:"상투메 프린시페",sv:"엘살바도르",sx:"신트마르턴",sy:"시리아",sz:"에스와티니",tc:"터크스 케이커스 제도",td:"차드",tg:"토고",th:"태국",tj:"타지키스탄",tk:"토켈라우",tl:"동티모르",tm:"투르크메니스탄",tn:"튀니지",to:"통가",tr:"터키",tt:"트리니다드 토바고",tv:"투발루",tw:"대만",tz:"탄자니아",ua:"우크라이나",ug:"우간다",us:"미국",uy:"우루과이",uz:"우즈베키스탄",va:"바티칸 시국",vc:"세인트빈센트그레나딘",ve:"베네수엘라",vg:"영국령 버진아일랜드",vi:"미국령 버진아일랜드",vn:"베트남",vu:"바누아투",wf:"왈리스-푸투나 제도",ws:"사모아",ye:"예멘",yt:"마요트",za:"남아프리카",zm:"잠비아",zw:"짐바브웨"},c={selectedCountryAriaLabel:"선택한 국가",noCountrySelected:"선택한 국가가 없습니다.",countryListAriaLabel:"국가 목록",searchPlaceholder:"찾다",zeroSearchResults:"검색 결과가 없습니다",oneSearchResult:"검색된 결과 1개",multipleSearchResults:"${count}개의 결과를 찾았습니다.",ac:"승천섬",xk:"코소보"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-mr.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-mr.js index 8b7217050..a116617ba 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-mr.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-mr.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[982],{922(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"अँडोरा",ae:"संयुक्त अरब अमीरात",af:"अफगाणिस्तान",ag:"अँटिग्वा आणि बर्बुडा",ai:"अँग्विला",al:"अल्बानिया",am:"अर्मेनिया",ao:"अंगोला",ar:"अर्जेंटिना",as:"अमेरिकन सामोआ",at:"ऑस्ट्रिया",au:"ऑस्ट्रेलिया",aw:"अरुबा",ax:"अ‍ॅलँड बेटे",az:"अझरबैजान",ba:"बोस्निया अणि हर्जेगोविना",bb:"बार्बाडोस",bd:"बांगलादेश",be:"बेल्जियम",bf:"बुर्किना फासो",bg:"बल्गेरिया",bh:"बहारीन",bi:"बुरुंडी",bj:"बेनिन",bl:"सेंट बार्थेलेमी",bm:"बर्मुडा",bn:"ब्रुनेई",bo:"बोलिव्हिया",bq:"कॅरिबियन नेदरलँड्स",br:"ब्राझिल",bs:"बहामाज",bt:"भूतान",bw:"बोट्सवाना",by:"बेलारूस",bz:"बेलिझे",ca:"कॅनडा",cc:"कोकोस (कीलिंग) बेटे",cd:"काँगो - किंशासा",cf:"केंद्रीय अफ्रिकी प्रजासत्ताक",cg:"काँगो - ब्राझाविले",ch:"स्वित्झर्लंड",ci:"आयव्हरी कोस्ट",ck:"कुक बेटे",cl:"चिली",cm:"कॅमेरून",cn:"चीन",co:"कोलम्बिया",cr:"कोस्टा रिका",cu:"क्यूबा",cv:"केप व्हर्डे",cw:"क्युरासाओ",cx:"ख्रिसमस बेट",cy:"सायप्रस",cz:"झेकिया",de:"जर्मनी",dj:"जिबौटी",dk:"डेन्मार्क",dm:"डोमिनिका",do:"डोमिनिकन प्रजासत्ताक",dz:"अल्जीरिया",ec:"इक्वाडोर",ee:"एस्टोनिया",eg:"इजिप्त",eh:"पश्चिम सहारा",er:"एरिट्रिया",es:"स्पेन",et:"इथिओपिया",fi:"फिनलंड",fj:"फिजी",fk:"फॉकलंड बेटे",fm:"मायक्रोनेशिया",fo:"फेरो बेटे",fr:"फ्रान्स",ga:"गॅबॉन",gb:"युनायटेड किंगडम",gd:"ग्रेनेडा",ge:"जॉर्जिया",gf:"फ्रेंच गयाना",gg:"ग्वेर्नसे",gh:"घाना",gi:"जिब्राल्टर",gl:"ग्रीनलंड",gm:"गाम्बिया",gn:"गिनी",gp:"ग्वाडेलोउपे",gq:"इक्वेटोरियल गिनी",gr:"ग्रीस",gt:"ग्वाटेमाला",gu:"गुआम",gw:"गिनी-बिसाउ",gy:"गयाना",hk:"हाँगकाँग एसएआर चीन",hn:"होंडुरास",hr:"क्रोएशिया",ht:"हैती",hu:"हंगेरी",id:"इंडोनेशिया",ie:"आयर्लंड",il:"इस्त्राइल",im:"आयल ऑफ मॅन",in:"भारत",io:"ब्रिटिश हिंदी महासागर क्षेत्र",iq:"इराक",ir:"इराण",is:"आइसलँड",it:"इटली",je:"जर्सी",jm:"जमैका",jo:"जॉर्डन",jp:"जपान",ke:"केनिया",kg:"किरगिझस्तान",kh:"कंबोडिया",ki:"किरीबाटी",km:"कोमोरोज",kn:"सेंट किट्स आणि नेव्हिस",kp:"उत्तर कोरिया",kr:"दक्षिण कोरिया",kw:"कुवेत",ky:"केमन बेटे",kz:"कझाकस्तान",la:"लाओस",lb:"लेबनॉन",lc:"सेंट ल्यूसिया",li:"लिक्टेनस्टाइन",lk:"श्रीलंका",lr:"लायबेरिया",ls:"लेसोथो",lt:"लिथुआनिया",lu:"लक्झेंबर्ग",lv:"लात्विया",ly:"लिबिया",ma:"मोरोक्को",mc:"मोनॅको",md:"मोल्डोव्हा",me:"मोंटेनेग्रो",mf:"सेंट मार्टिन",mg:"मादागास्कर",mh:"मार्शल बेटे",mk:"उत्तर मॅसेडोनिया",ml:"माली",mm:"म्यानमार (बर्मा)",mn:"मंगोलिया",mo:"मकाओ एसएआर चीन",mp:"उत्तरी मारियाना बेटे",mq:"मार्टिनिक",mr:"मॉरिटानिया",ms:"मॉन्ट्सेराट",mt:"माल्टा",mu:"मॉरिशस",mv:"मालदीव",mw:"मलावी",mx:"मेक्सिको",my:"मलेशिया",mz:"मोझाम्बिक",na:"नामिबिया",nc:"न्यू कॅलेडोनिया",ne:"नाइजर",nf:"नॉरफॉक बेट",ng:"नायजेरिया",ni:"निकाराग्वा",nl:"नेदरलँड",no:"नॉर्वे",np:"नेपाळ",nr:"नाउरू",nu:"नीयू",nz:"न्यूझीलंड",om:"ओमान",pa:"पनामा",pe:"पेरू",pf:"फ्रेंच पॉलिनेशिया",pg:"पापुआ न्यू गिनी",ph:"फिलिपिन्स",pk:"पाकिस्तान",pl:"पोलंड",pm:"सेंट पियरे आणि मिक्वेलोन",pr:"प्युएर्तो रिको",ps:"पॅलेस्टिनियन प्रदेश",pt:"पोर्तुगाल",pw:"पलाऊ",py:"पराग्वे",qa:"कतार",re:"रियुनियन",ro:"रोमानिया",rs:"सर्बिया",ru:"रशिया",rw:"रवांडा",sa:"सौदी अरब",sb:"सोलोमन बेटे",sc:"सेशेल्स",sd:"सुदान",se:"स्वीडन",sg:"सिंगापूर",sh:"सेंट हेलेना",si:"स्लोव्हेनिया",sj:"स्वालबर्ड आणि जान मायेन",sk:"स्लोव्हाकिया",sl:"सिएरा लिओन",sm:"सॅन मरीनो",sn:"सेनेगल",so:"सोमालिया",sr:"सुरिनाम",ss:"दक्षिण सुदान",st:"साओ टोम आणि प्रिंसिपे",sv:"अल साल्वाडोर",sx:"सिंट मार्टेन",sy:"सीरिया",sz:"इस्वातिनी",tc:"टर्क्स आणि कैकोस बेटे",td:"चाड",tg:"टोगो",th:"थायलंड",tj:"ताजिकिस्तान",tk:"तोकेलाउ",tl:"तिमोर-लेस्ते",tm:"तुर्कमेनिस्तान",tn:"ट्यूनिशिया",to:"टोंगा",tr:"तुर्की",tt:"त्रिनिदाद आणि टोबॅगो",tv:"टुवालु",tw:"तैवान",tz:"टांझानिया",ua:"युक्रेन",ug:"युगांडा",us:"युनायटेड स्टेट्स",uy:"उरुग्वे",uz:"उझबेकिस्तान",va:"व्हॅटिकन सिटी",vc:"सेंट व्हिन्सेंट आणि ग्रेनडाइन्स",ve:"व्हेनेझुएला",vg:"ब्रिटिश व्हर्जिन बेटे",vi:"यू.एस. व्हर्जिन बेटे",vn:"व्हिएतनाम",vu:"वानुआतु",wf:"वालिस आणि फ्यूचूना",ws:"सामोआ",ye:"येमेन",yt:"मायोट्टे",za:"दक्षिण आफ्रिका",zm:"झाम्बिया",zw:"झिम्बाब्वे"},c={selectedCountryAriaLabel:"निवडलेला देश",noCountrySelected:"कोणताही देश निवडलेला नाही",countryListAriaLabel:"देशांची यादी",searchPlaceholder:"शोधा",zeroSearchResults:"कोणतेही परिणाम आढळले नाहीत",oneSearchResult:"1 परिणाम आढळला",multipleSearchResults:"${count} परिणाम आढळले",ac:"असेन्शन बेट",xk:"कोसोवो"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[982],{922:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"अँडोरा",ae:"संयुक्त अरब अमीरात",af:"अफगाणिस्तान",ag:"अँटिग्वा आणि बर्बुडा",ai:"अँग्विला",al:"अल्बानिया",am:"अर्मेनिया",ao:"अंगोला",ar:"अर्जेंटिना",as:"अमेरिकन सामोआ",at:"ऑस्ट्रिया",au:"ऑस्ट्रेलिया",aw:"अरुबा",ax:"अ‍ॅलँड बेटे",az:"अझरबैजान",ba:"बोस्निया अणि हर्जेगोविना",bb:"बार्बाडोस",bd:"बांगलादेश",be:"बेल्जियम",bf:"बुर्किना फासो",bg:"बल्गेरिया",bh:"बहारीन",bi:"बुरुंडी",bj:"बेनिन",bl:"सेंट बार्थेलेमी",bm:"बर्मुडा",bn:"ब्रुनेई",bo:"बोलिव्हिया",bq:"कॅरिबियन नेदरलँड्स",br:"ब्राझिल",bs:"बहामाज",bt:"भूतान",bw:"बोट्सवाना",by:"बेलारूस",bz:"बेलिझे",ca:"कॅनडा",cc:"कोकोस (कीलिंग) बेटे",cd:"काँगो - किंशासा",cf:"केंद्रीय अफ्रिकी प्रजासत्ताक",cg:"काँगो - ब्राझाविले",ch:"स्वित्झर्लंड",ci:"आयव्हरी कोस्ट",ck:"कुक बेटे",cl:"चिली",cm:"कॅमेरून",cn:"चीन",co:"कोलम्बिया",cr:"कोस्टा रिका",cu:"क्यूबा",cv:"केप व्हर्डे",cw:"क्युरासाओ",cx:"ख्रिसमस बेट",cy:"सायप्रस",cz:"झेकिया",de:"जर्मनी",dj:"जिबौटी",dk:"डेन्मार्क",dm:"डोमिनिका",do:"डोमिनिकन प्रजासत्ताक",dz:"अल्जीरिया",ec:"इक्वाडोर",ee:"एस्टोनिया",eg:"इजिप्त",eh:"पश्चिम सहारा",er:"एरिट्रिया",es:"स्पेन",et:"इथिओपिया",fi:"फिनलंड",fj:"फिजी",fk:"फॉकलंड बेटे",fm:"मायक्रोनेशिया",fo:"फेरो बेटे",fr:"फ्रान्स",ga:"गॅबॉन",gb:"युनायटेड किंगडम",gd:"ग्रेनेडा",ge:"जॉर्जिया",gf:"फ्रेंच गयाना",gg:"ग्वेर्नसे",gh:"घाना",gi:"जिब्राल्टर",gl:"ग्रीनलंड",gm:"गाम्बिया",gn:"गिनी",gp:"ग्वाडेलोउपे",gq:"इक्वेटोरियल गिनी",gr:"ग्रीस",gt:"ग्वाटेमाला",gu:"गुआम",gw:"गिनी-बिसाउ",gy:"गयाना",hk:"हाँगकाँग एसएआर चीन",hn:"होंडुरास",hr:"क्रोएशिया",ht:"हैती",hu:"हंगेरी",id:"इंडोनेशिया",ie:"आयर्लंड",il:"इस्त्राइल",im:"आयल ऑफ मॅन",in:"भारत",io:"ब्रिटिश हिंदी महासागर क्षेत्र",iq:"इराक",ir:"इराण",is:"आइसलँड",it:"इटली",je:"जर्सी",jm:"जमैका",jo:"जॉर्डन",jp:"जपान",ke:"केनिया",kg:"किरगिझस्तान",kh:"कंबोडिया",ki:"किरीबाटी",km:"कोमोरोज",kn:"सेंट किट्स आणि नेव्हिस",kp:"उत्तर कोरिया",kr:"दक्षिण कोरिया",kw:"कुवेत",ky:"केमन बेटे",kz:"कझाकस्तान",la:"लाओस",lb:"लेबनॉन",lc:"सेंट ल्यूसिया",li:"लिक्टेनस्टाइन",lk:"श्रीलंका",lr:"लायबेरिया",ls:"लेसोथो",lt:"लिथुआनिया",lu:"लक्झेंबर्ग",lv:"लात्विया",ly:"लिबिया",ma:"मोरोक्को",mc:"मोनॅको",md:"मोल्डोव्हा",me:"मोंटेनेग्रो",mf:"सेंट मार्टिन",mg:"मादागास्कर",mh:"मार्शल बेटे",mk:"उत्तर मॅसेडोनिया",ml:"माली",mm:"म्यानमार (बर्मा)",mn:"मंगोलिया",mo:"मकाओ एसएआर चीन",mp:"उत्तरी मारियाना बेटे",mq:"मार्टिनिक",mr:"मॉरिटानिया",ms:"मॉन्ट्सेराट",mt:"माल्टा",mu:"मॉरिशस",mv:"मालदीव",mw:"मलावी",mx:"मेक्सिको",my:"मलेशिया",mz:"मोझाम्बिक",na:"नामिबिया",nc:"न्यू कॅलेडोनिया",ne:"नाइजर",nf:"नॉरफॉक बेट",ng:"नायजेरिया",ni:"निकाराग्वा",nl:"नेदरलँड",no:"नॉर्वे",np:"नेपाळ",nr:"नाउरू",nu:"नीयू",nz:"न्यूझीलंड",om:"ओमान",pa:"पनामा",pe:"पेरू",pf:"फ्रेंच पॉलिनेशिया",pg:"पापुआ न्यू गिनी",ph:"फिलिपिन्स",pk:"पाकिस्तान",pl:"पोलंड",pm:"सेंट पियरे आणि मिक्वेलोन",pr:"प्युएर्तो रिको",ps:"पॅलेस्टिनियन प्रदेश",pt:"पोर्तुगाल",pw:"पलाऊ",py:"पराग्वे",qa:"कतार",re:"रियुनियन",ro:"रोमानिया",rs:"सर्बिया",ru:"रशिया",rw:"रवांडा",sa:"सौदी अरब",sb:"सोलोमन बेटे",sc:"सेशेल्स",sd:"सुदान",se:"स्वीडन",sg:"सिंगापूर",sh:"सेंट हेलेना",si:"स्लोव्हेनिया",sj:"स्वालबर्ड आणि जान मायेन",sk:"स्लोव्हाकिया",sl:"सिएरा लिओन",sm:"सॅन मरीनो",sn:"सेनेगल",so:"सोमालिया",sr:"सुरिनाम",ss:"दक्षिण सुदान",st:"साओ टोम आणि प्रिंसिपे",sv:"अल साल्वाडोर",sx:"सिंट मार्टेन",sy:"सीरिया",sz:"इस्वातिनी",tc:"टर्क्स आणि कैकोस बेटे",td:"चाड",tg:"टोगो",th:"थायलंड",tj:"ताजिकिस्तान",tk:"तोकेलाउ",tl:"तिमोर-लेस्ते",tm:"तुर्कमेनिस्तान",tn:"ट्यूनिशिया",to:"टोंगा",tr:"तुर्की",tt:"त्रिनिदाद आणि टोबॅगो",tv:"टुवालु",tw:"तैवान",tz:"टांझानिया",ua:"युक्रेन",ug:"युगांडा",us:"युनायटेड स्टेट्स",uy:"उरुग्वे",uz:"उझबेकिस्तान",va:"व्हॅटिकन सिटी",vc:"सेंट व्हिन्सेंट आणि ग्रेनडाइन्स",ve:"व्हेनेझुएला",vg:"ब्रिटिश व्हर्जिन बेटे",vi:"यू.एस. व्हर्जिन बेटे",vn:"व्हिएतनाम",vu:"वानुआतु",wf:"वालिस आणि फ्यूचूना",ws:"सामोआ",ye:"येमेन",yt:"मायोट्टे",za:"दक्षिण आफ्रिका",zm:"झाम्बिया",zw:"झिम्बाब्वे"},c={selectedCountryAriaLabel:"निवडलेला देश",noCountrySelected:"कोणताही देश निवडलेला नाही",countryListAriaLabel:"देशांची यादी",searchPlaceholder:"शोधा",zeroSearchResults:"कोणतेही परिणाम आढळले नाहीत",oneSearchResult:"1 परिणाम आढळला",multipleSearchResults:"${count} परिणाम आढळले",ac:"असेन्शन बेट",xk:"कोसोवो"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-nl.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-nl.js index b5f4fa7ef..d848253ba 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-nl.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-nl.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[809],{697(a,e,n){n.r(e),n.d(e,{countryTranslations:()=>i,default:()=>o,interfaceTranslations:()=>r});const i={ad:"Andorra",ae:"Verenigde Arabische Emiraten",af:"Afghanistan",ag:"Antigua en Barbuda",ai:"Anguilla",al:"Albanië",am:"Armenië",ao:"Angola",ar:"Argentinië",as:"Amerikaans-Samoa",at:"Oostenrijk",au:"Australië",aw:"Aruba",ax:"Åland",az:"Azerbeidzjan",ba:"Bosnië en Herzegovina",bb:"Barbados",bd:"Bangladesh",be:"België",bf:"Burkina Faso",bg:"Bulgarije",bh:"Bahrein",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Caribisch Nederland",br:"Brazilië",bs:"Bahama’s",bt:"Bhutan",bw:"Botswana",by:"Belarus",bz:"Belize",ca:"Canada",cc:"Cocoseilanden",cd:"Congo-Kinshasa",cf:"Centraal-Afrikaanse Republiek",cg:"Congo-Brazzaville",ch:"Zwitserland",ci:"Ivoorkust",ck:"Cookeilanden",cl:"Chili",cm:"Kameroen",cn:"China",co:"Colombia",cr:"Costa Rica",cu:"Cuba",cv:"Kaapverdië",cw:"Curaçao",cx:"Christmaseiland",cy:"Cyprus",cz:"Tsjechië",de:"Duitsland",dj:"Djibouti",dk:"Denemarken",dm:"Dominica",do:"Dominicaanse Republiek",dz:"Algerije",ec:"Ecuador",ee:"Estland",eg:"Egypte",eh:"Westelijke Sahara",er:"Eritrea",es:"Spanje",et:"Ethiopië",fi:"Finland",fj:"Fiji",fk:"Falklandeilanden",fm:"Micronesia",fo:"Faeröer",fr:"Frankrijk",ga:"Gabon",gb:"Verenigd Koninkrijk",gd:"Grenada",ge:"Georgië",gf:"Frans-Guyana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Groenland",gm:"Gambia",gn:"Guinee",gp:"Guadeloupe",gq:"Equatoriaal-Guinea",gr:"Griekenland",gt:"Guatemala",gu:"Guam",gw:"Guinee-Bissau",gy:"Guyana",hk:"Hongkong SAR van China",hn:"Honduras",hr:"Kroatië",ht:"Haïti",hu:"Hongarije",id:"Indonesië",ie:"Ierland",il:"Israël",im:"Isle of Man",in:"India",io:"Brits Indische Oceaanterritorium",iq:"Irak",ir:"Iran",is:"IJsland",it:"Italië",je:"Jersey",jm:"Jamaica",jo:"Jordanië",jp:"Japan",ke:"Kenia",kg:"Kirgizië",kh:"Cambodja",ki:"Kiribati",km:"Comoren",kn:"Saint Kitts en Nevis",kp:"Noord-Korea",kr:"Zuid-Korea",kw:"Koeweit",ky:"Kaaimaneilanden",kz:"Kazachstan",la:"Laos",lb:"Libanon",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litouwen",lu:"Luxemburg",lv:"Letland",ly:"Libië",ma:"Marokko",mc:"Monaco",md:"Moldavië",me:"Montenegro",mf:"Saint-Martin",mg:"Madagaskar",mh:"Marshalleilanden",mk:"Noord-Macedonië",ml:"Mali",mm:"Myanmar (Birma)",mn:"Mongolië",mo:"Macau SAR van China",mp:"Noordelijke Marianen",mq:"Martinique",mr:"Mauritanië",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldiven",mw:"Malawi",mx:"Mexico",my:"Maleisië",mz:"Mozambique",na:"Namibië",nc:"Nieuw-Caledonië",ne:"Niger",nf:"Norfolk",ng:"Nigeria",ni:"Nicaragua",nl:"Nederland",no:"Noorwegen",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nieuw-Zeeland",om:"Oman",pa:"Panama",pe:"Peru",pf:"Frans-Polynesië",pg:"Papoea-Nieuw-Guinea",ph:"Filipijnen",pk:"Pakistan",pl:"Polen",pm:"Saint-Pierre en Miquelon",pr:"Puerto Rico",ps:"Palestijnse gebieden",pt:"Portugal",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Roemenië",rs:"Servië",ru:"Rusland",rw:"Rwanda",sa:"Saoedi-Arabië",sb:"Salomonseilanden",sc:"Seychellen",sd:"Soedan",se:"Zweden",sg:"Singapore",sh:"Sint-Helena",si:"Slovenië",sj:"Spitsbergen en Jan Mayen",sk:"Slowakije",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalië",sr:"Suriname",ss:"Zuid-Soedan",st:"Sao Tomé en Principe",sv:"El Salvador",sx:"Sint-Maarten",sy:"Syrië",sz:"eSwatini",tc:"Turks- en Caicoseilanden",td:"Tsjaad",tg:"Togo",th:"Thailand",tj:"Tadzjikistan",tk:"Tokelau",tl:"Oost-Timor",tm:"Turkmenistan",tn:"Tunesië",to:"Tonga",tr:"Turkije",tt:"Trinidad en Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Oekraïne",ug:"Oeganda",us:"Verenigde Staten",uy:"Uruguay",uz:"Oezbekistan",va:"Vaticaanstad",vc:"Saint Vincent en de Grenadines",ve:"Venezuela",vg:"Britse Maagdeneilanden",vi:"Amerikaanse Maagdeneilanden",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis en Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Zuid-Afrika",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Geselecteerd land",noCountrySelected:"Geen land geselecteerd",countryListAriaLabel:"Lijst met landen",searchPlaceholder:"Zoekopdracht",zeroSearchResults:"Geen resultaten gevonden",oneSearchResult:"1 resultaat gevonden",multipleSearchResults:"${count} resultaten gevonden",ac:"Ascension-eiland",xk:"Kosovo"},o={...i,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[809],{697:(a,e,n)=>{n.r(e),n.d(e,{countryTranslations:()=>i,default:()=>o,interfaceTranslations:()=>r});const i={ad:"Andorra",ae:"Verenigde Arabische Emiraten",af:"Afghanistan",ag:"Antigua en Barbuda",ai:"Anguilla",al:"Albanië",am:"Armenië",ao:"Angola",ar:"Argentinië",as:"Amerikaans-Samoa",at:"Oostenrijk",au:"Australië",aw:"Aruba",ax:"Åland",az:"Azerbeidzjan",ba:"Bosnië en Herzegovina",bb:"Barbados",bd:"Bangladesh",be:"België",bf:"Burkina Faso",bg:"Bulgarije",bh:"Bahrein",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Caribisch Nederland",br:"Brazilië",bs:"Bahama’s",bt:"Bhutan",bw:"Botswana",by:"Belarus",bz:"Belize",ca:"Canada",cc:"Cocoseilanden",cd:"Congo-Kinshasa",cf:"Centraal-Afrikaanse Republiek",cg:"Congo-Brazzaville",ch:"Zwitserland",ci:"Ivoorkust",ck:"Cookeilanden",cl:"Chili",cm:"Kameroen",cn:"China",co:"Colombia",cr:"Costa Rica",cu:"Cuba",cv:"Kaapverdië",cw:"Curaçao",cx:"Christmaseiland",cy:"Cyprus",cz:"Tsjechië",de:"Duitsland",dj:"Djibouti",dk:"Denemarken",dm:"Dominica",do:"Dominicaanse Republiek",dz:"Algerije",ec:"Ecuador",ee:"Estland",eg:"Egypte",eh:"Westelijke Sahara",er:"Eritrea",es:"Spanje",et:"Ethiopië",fi:"Finland",fj:"Fiji",fk:"Falklandeilanden",fm:"Micronesia",fo:"Faeröer",fr:"Frankrijk",ga:"Gabon",gb:"Verenigd Koninkrijk",gd:"Grenada",ge:"Georgië",gf:"Frans-Guyana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Groenland",gm:"Gambia",gn:"Guinee",gp:"Guadeloupe",gq:"Equatoriaal-Guinea",gr:"Griekenland",gt:"Guatemala",gu:"Guam",gw:"Guinee-Bissau",gy:"Guyana",hk:"Hongkong SAR van China",hn:"Honduras",hr:"Kroatië",ht:"Haïti",hu:"Hongarije",id:"Indonesië",ie:"Ierland",il:"Israël",im:"Isle of Man",in:"India",io:"Brits Indische Oceaanterritorium",iq:"Irak",ir:"Iran",is:"IJsland",it:"Italië",je:"Jersey",jm:"Jamaica",jo:"Jordanië",jp:"Japan",ke:"Kenia",kg:"Kirgizië",kh:"Cambodja",ki:"Kiribati",km:"Comoren",kn:"Saint Kitts en Nevis",kp:"Noord-Korea",kr:"Zuid-Korea",kw:"Koeweit",ky:"Kaaimaneilanden",kz:"Kazachstan",la:"Laos",lb:"Libanon",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litouwen",lu:"Luxemburg",lv:"Letland",ly:"Libië",ma:"Marokko",mc:"Monaco",md:"Moldavië",me:"Montenegro",mf:"Saint-Martin",mg:"Madagaskar",mh:"Marshalleilanden",mk:"Noord-Macedonië",ml:"Mali",mm:"Myanmar (Birma)",mn:"Mongolië",mo:"Macau SAR van China",mp:"Noordelijke Marianen",mq:"Martinique",mr:"Mauritanië",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldiven",mw:"Malawi",mx:"Mexico",my:"Maleisië",mz:"Mozambique",na:"Namibië",nc:"Nieuw-Caledonië",ne:"Niger",nf:"Norfolk",ng:"Nigeria",ni:"Nicaragua",nl:"Nederland",no:"Noorwegen",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nieuw-Zeeland",om:"Oman",pa:"Panama",pe:"Peru",pf:"Frans-Polynesië",pg:"Papoea-Nieuw-Guinea",ph:"Filipijnen",pk:"Pakistan",pl:"Polen",pm:"Saint-Pierre en Miquelon",pr:"Puerto Rico",ps:"Palestijnse gebieden",pt:"Portugal",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Roemenië",rs:"Servië",ru:"Rusland",rw:"Rwanda",sa:"Saoedi-Arabië",sb:"Salomonseilanden",sc:"Seychellen",sd:"Soedan",se:"Zweden",sg:"Singapore",sh:"Sint-Helena",si:"Slovenië",sj:"Spitsbergen en Jan Mayen",sk:"Slowakije",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalië",sr:"Suriname",ss:"Zuid-Soedan",st:"Sao Tomé en Principe",sv:"El Salvador",sx:"Sint-Maarten",sy:"Syrië",sz:"eSwatini",tc:"Turks- en Caicoseilanden",td:"Tsjaad",tg:"Togo",th:"Thailand",tj:"Tadzjikistan",tk:"Tokelau",tl:"Oost-Timor",tm:"Turkmenistan",tn:"Tunesië",to:"Tonga",tr:"Turkije",tt:"Trinidad en Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Oekraïne",ug:"Oeganda",us:"Verenigde Staten",uy:"Uruguay",uz:"Oezbekistan",va:"Vaticaanstad",vc:"Saint Vincent en de Grenadines",ve:"Venezuela",vg:"Britse Maagdeneilanden",vi:"Amerikaanse Maagdeneilanden",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis en Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Zuid-Afrika",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Geselecteerd land",noCountrySelected:"Geen land geselecteerd",countryListAriaLabel:"Lijst met landen",searchPlaceholder:"Zoekopdracht",zeroSearchResults:"Geen resultaten gevonden",oneSearchResult:"1 resultaat gevonden",multipleSearchResults:"${count} resultaten gevonden",ac:"Ascension-eiland",xk:"Kosovo"},o={...i,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-no.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-no.js index 493d5fc9e..0a86d051d 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-no.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-no.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[618],{146(a,e,n){n.r(e),n.d(e,{countryTranslations:()=>i,default:()=>t,interfaceTranslations:()=>r});const i={ad:"Andorra",ae:"De forente arabiske emirater",af:"Afghanistan",ag:"Antigua og Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentina",as:"Amerikansk Samoa",at:"Østerrike",au:"Australia",aw:"Aruba",ax:"Åland",az:"Aserbajdsjan",ba:"Bosnia-Hercegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgia",bf:"Burkina Faso",bg:"Bulgaria",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Karibisk Nederland",br:"Brasil",bs:"Bahamas",bt:"Bhutan",bw:"Botswana",by:"Hviterussland",bz:"Belize",ca:"Canada",cc:"Kokosøyene",cd:"Kongo-Kinshasa",cf:"Den sentralafrikanske republikk",cg:"Kongo-Brazzaville",ch:"Sveits",ci:"Elfenbenskysten",ck:"Cookøyene",cl:"Chile",cm:"Kamerun",cn:"Kina",co:"Colombia",cr:"Costa Rica",cu:"Cuba",cv:"Kapp Verde",cw:"Curaçao",cx:"Christmasøya",cy:"Kypros",cz:"Tsjekkia",de:"Tyskland",dj:"Djibouti",dk:"Danmark",dm:"Dominica",do:"Den dominikanske republikk",dz:"Algerie",ec:"Ecuador",ee:"Estland",eg:"Egypt",eh:"Vest-Sahara",er:"Eritrea",es:"Spania",et:"Etiopia",fi:"Finland",fj:"Fiji",fk:"Falklandsøyene",fm:"Mikronesiaføderasjonen",fo:"Færøyene",fr:"Frankrike",ga:"Gabon",gb:"Storbritannia",gd:"Grenada",ge:"Georgia",gf:"Fransk Guyana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grønland",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Ekvatorial-Guinea",gr:"Hellas",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hongkong S.A.R. Kina",hn:"Honduras",hr:"Kroatia",ht:"Haiti",hu:"Ungarn",id:"Indonesia",ie:"Irland",il:"Israel",im:"Man",in:"India",io:"Det britiske territoriet i Indiahavet",iq:"Irak",ir:"Iran",is:"Island",it:"Italia",je:"Jersey",jm:"Jamaica",jo:"Jordan",jp:"Japan",ke:"Kenya",kg:"Kirgisistan",kh:"Kambodsja",ki:"Kiribati",km:"Komorene",kn:"Saint Kitts og Nevis",kp:"Nord-Korea",kr:"Sør-Korea",kw:"Kuwait",ky:"Caymanøyene",kz:"Kasakhstan",la:"Laos",lb:"Libanon",lc:"St. Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litauen",lu:"Luxemburg",lv:"Latvia",ly:"Libya",ma:"Marokko",mc:"Monaco",md:"Moldova",me:"Montenegro",mf:"Saint-Martin",mg:"Madagaskar",mh:"Marshalløyene",mk:"Nord-Makedonia",ml:"Mali",mm:"Myanmar (Burma)",mn:"Mongolia",mo:"Macao S.A.R. Kina",mp:"Nord-Marianene",mq:"Martinique",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldivene",mw:"Malawi",mx:"Mexico",my:"Malaysia",mz:"Mosambik",na:"Namibia",nc:"Ny-Caledonia",ne:"Niger",nf:"Norfolkøya",ng:"Nigeria",ni:"Nicaragua",nl:"Nederland",no:"Norge",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"New Zealand",om:"Oman",pa:"Panama",pe:"Peru",pf:"Fransk Polynesia",pg:"Papua Ny-Guinea",ph:"Filippinene",pk:"Pakistan",pl:"Polen",pm:"Saint-Pierre-et-Miquelon",pr:"Puerto Rico",ps:"Det palestinske området",pt:"Portugal",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Romania",rs:"Serbia",ru:"Russland",rw:"Rwanda",sa:"Saudi-Arabia",sb:"Salomonøyene",sc:"Seychellene",sd:"Sudan",se:"Sverige",sg:"Singapore",sh:"St. Helena",si:"Slovenia",sj:"Svalbard og Jan Mayen",sk:"Slovakia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Surinam",ss:"Sør-Sudan",st:"São Tomé og Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Syria",sz:"Eswatini",tc:"Turks- og Caicosøyene",td:"Tsjad",tg:"Togo",th:"Thailand",tj:"Tadsjikistan",tk:"Tokelau",tl:"Øst-Timor",tm:"Turkmenistan",tn:"Tunisia",to:"Tonga",tr:"Tyrkia",tt:"Trinidad og Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Ukraina",ug:"Uganda",us:"USA",uy:"Uruguay",uz:"Usbekistan",va:"Vatikanstaten",vc:"St. Vincent og Grenadinene",ve:"Venezuela",vg:"De britiske jomfruøyene",vi:"De amerikanske jomfruøyene",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis og Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Sør-Afrika",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Valgt land",noCountrySelected:"Ingen land er valgt",countryListAriaLabel:"Liste over land",searchPlaceholder:"Leting",zeroSearchResults:"Ingen resultater funnet",oneSearchResult:"1 resultat funnet",multipleSearchResults:"${count} resultater funnet",ac:"Ascension Island",xk:"Kosovo"},t={...i,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[618],{146:(a,e,n)=>{n.r(e),n.d(e,{countryTranslations:()=>i,default:()=>t,interfaceTranslations:()=>r});const i={ad:"Andorra",ae:"De forente arabiske emirater",af:"Afghanistan",ag:"Antigua og Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentina",as:"Amerikansk Samoa",at:"Østerrike",au:"Australia",aw:"Aruba",ax:"Åland",az:"Aserbajdsjan",ba:"Bosnia-Hercegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgia",bf:"Burkina Faso",bg:"Bulgaria",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Karibisk Nederland",br:"Brasil",bs:"Bahamas",bt:"Bhutan",bw:"Botswana",by:"Hviterussland",bz:"Belize",ca:"Canada",cc:"Kokosøyene",cd:"Kongo-Kinshasa",cf:"Den sentralafrikanske republikk",cg:"Kongo-Brazzaville",ch:"Sveits",ci:"Elfenbenskysten",ck:"Cookøyene",cl:"Chile",cm:"Kamerun",cn:"Kina",co:"Colombia",cr:"Costa Rica",cu:"Cuba",cv:"Kapp Verde",cw:"Curaçao",cx:"Christmasøya",cy:"Kypros",cz:"Tsjekkia",de:"Tyskland",dj:"Djibouti",dk:"Danmark",dm:"Dominica",do:"Den dominikanske republikk",dz:"Algerie",ec:"Ecuador",ee:"Estland",eg:"Egypt",eh:"Vest-Sahara",er:"Eritrea",es:"Spania",et:"Etiopia",fi:"Finland",fj:"Fiji",fk:"Falklandsøyene",fm:"Mikronesiaføderasjonen",fo:"Færøyene",fr:"Frankrike",ga:"Gabon",gb:"Storbritannia",gd:"Grenada",ge:"Georgia",gf:"Fransk Guyana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grønland",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Ekvatorial-Guinea",gr:"Hellas",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hongkong S.A.R. Kina",hn:"Honduras",hr:"Kroatia",ht:"Haiti",hu:"Ungarn",id:"Indonesia",ie:"Irland",il:"Israel",im:"Man",in:"India",io:"Det britiske territoriet i Indiahavet",iq:"Irak",ir:"Iran",is:"Island",it:"Italia",je:"Jersey",jm:"Jamaica",jo:"Jordan",jp:"Japan",ke:"Kenya",kg:"Kirgisistan",kh:"Kambodsja",ki:"Kiribati",km:"Komorene",kn:"Saint Kitts og Nevis",kp:"Nord-Korea",kr:"Sør-Korea",kw:"Kuwait",ky:"Caymanøyene",kz:"Kasakhstan",la:"Laos",lb:"Libanon",lc:"St. Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litauen",lu:"Luxemburg",lv:"Latvia",ly:"Libya",ma:"Marokko",mc:"Monaco",md:"Moldova",me:"Montenegro",mf:"Saint-Martin",mg:"Madagaskar",mh:"Marshalløyene",mk:"Nord-Makedonia",ml:"Mali",mm:"Myanmar (Burma)",mn:"Mongolia",mo:"Macao S.A.R. Kina",mp:"Nord-Marianene",mq:"Martinique",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldivene",mw:"Malawi",mx:"Mexico",my:"Malaysia",mz:"Mosambik",na:"Namibia",nc:"Ny-Caledonia",ne:"Niger",nf:"Norfolkøya",ng:"Nigeria",ni:"Nicaragua",nl:"Nederland",no:"Norge",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"New Zealand",om:"Oman",pa:"Panama",pe:"Peru",pf:"Fransk Polynesia",pg:"Papua Ny-Guinea",ph:"Filippinene",pk:"Pakistan",pl:"Polen",pm:"Saint-Pierre-et-Miquelon",pr:"Puerto Rico",ps:"Det palestinske området",pt:"Portugal",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Romania",rs:"Serbia",ru:"Russland",rw:"Rwanda",sa:"Saudi-Arabia",sb:"Salomonøyene",sc:"Seychellene",sd:"Sudan",se:"Sverige",sg:"Singapore",sh:"St. Helena",si:"Slovenia",sj:"Svalbard og Jan Mayen",sk:"Slovakia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Surinam",ss:"Sør-Sudan",st:"São Tomé og Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Syria",sz:"Eswatini",tc:"Turks- og Caicosøyene",td:"Tsjad",tg:"Togo",th:"Thailand",tj:"Tadsjikistan",tk:"Tokelau",tl:"Øst-Timor",tm:"Turkmenistan",tn:"Tunisia",to:"Tonga",tr:"Tyrkia",tt:"Trinidad og Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Ukraina",ug:"Uganda",us:"USA",uy:"Uruguay",uz:"Usbekistan",va:"Vatikanstaten",vc:"St. Vincent og Grenadinene",ve:"Venezuela",vg:"De britiske jomfruøyene",vi:"De amerikanske jomfruøyene",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis og Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Sør-Afrika",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Valgt land",noCountrySelected:"Ingen land er valgt",countryListAriaLabel:"Liste over land",searchPlaceholder:"Leting",zeroSearchResults:"Ingen resultater funnet",oneSearchResult:"1 resultat funnet",multipleSearchResults:"${count} resultater funnet",ac:"Ascension Island",xk:"Kosovo"},t={...i,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-pl.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-pl.js index ed37417b7..0407bd15e 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-pl.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-pl.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[519],{471(a,i,n){n.r(i),n.d(i,{countryTranslations:()=>e,default:()=>o,interfaceTranslations:()=>r});const e={ad:"Andora",ae:"Zjednoczone Emiraty Arabskie",af:"Afganistan",ag:"Antigua i Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentyna",as:"Samoa Amerykańskie",at:"Austria",au:"Australia",aw:"Aruba",ax:"Wyspy Alandzkie",az:"Azerbejdżan",ba:"Bośnia i Hercegowina",bb:"Barbados",bd:"Bangladesz",be:"Belgia",bf:"Burkina Faso",bg:"Bułgaria",bh:"Bahrajn",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermudy",bn:"Brunei",bo:"Boliwia",bq:"Niderlandy Karaibskie",br:"Brazylia",bs:"Bahamy",bt:"Bhutan",bw:"Botswana",by:"Białoruś",bz:"Belize",ca:"Kanada",cc:"Wyspy Kokosowe",cd:"Demokratyczna Republika Konga",cf:"Republika Środkowoafrykańska",cg:"Kongo",ch:"Szwajcaria",ci:"Côte d’Ivoire",ck:"Wyspy Cooka",cl:"Chile",cm:"Kamerun",cn:"Chiny",co:"Kolumbia",cr:"Kostaryka",cu:"Kuba",cv:"Republika Zielonego Przylądka",cw:"Curaçao",cx:"Wyspa Bożego Narodzenia",cy:"Cypr",cz:"Czechy",de:"Niemcy",dj:"Dżibuti",dk:"Dania",dm:"Dominika",do:"Dominikana",dz:"Algieria",ec:"Ekwador",ee:"Estonia",eg:"Egipt",eh:"Sahara Zachodnia",er:"Erytrea",es:"Hiszpania",et:"Etiopia",fi:"Finlandia",fj:"Fidżi",fk:"Falklandy",fm:"Mikronezja",fo:"Wyspy Owcze",fr:"Francja",ga:"Gabon",gb:"Wielka Brytania",gd:"Grenada",ge:"Gruzja",gf:"Gujana Francuska",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grenlandia",gm:"Gambia",gn:"Gwinea",gp:"Gwadelupa",gq:"Gwinea Równikowa",gr:"Grecja",gt:"Gwatemala",gu:"Guam",gw:"Gwinea Bissau",gy:"Gujana",hk:"SRA Hongkong (Chiny)",hn:"Honduras",hr:"Chorwacja",ht:"Haiti",hu:"Węgry",id:"Indonezja",ie:"Irlandia",il:"Izrael",im:"Wyspa Man",in:"Indie",io:"Brytyjskie Terytorium Oceanu Indyjskiego",iq:"Irak",ir:"Iran",is:"Islandia",it:"Włochy",je:"Jersey",jm:"Jamajka",jo:"Jordania",jp:"Japonia",ke:"Kenia",kg:"Kirgistan",kh:"Kambodża",ki:"Kiribati",km:"Komory",kn:"Saint Kitts i Nevis",kp:"Korea Północna",kr:"Korea Południowa",kw:"Kuwejt",ky:"Kajmany",kz:"Kazachstan",la:"Laos",lb:"Liban",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litwa",lu:"Luksemburg",lv:"Łotwa",ly:"Libia",ma:"Maroko",mc:"Monako",md:"Mołdawia",me:"Czarnogóra",mf:"Saint-Martin",mg:"Madagaskar",mh:"Wyspy Marshalla",mk:"Macedonia Północna",ml:"Mali",mm:"Mjanma (Birma)",mn:"Mongolia",mo:"SRA Makau (Chiny)",mp:"Mariany Północne",mq:"Martynika",mr:"Mauretania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Malediwy",mw:"Malawi",mx:"Meksyk",my:"Malezja",mz:"Mozambik",na:"Namibia",nc:"Nowa Kaledonia",ne:"Niger",nf:"Norfolk",ng:"Nigeria",ni:"Nikaragua",nl:"Holandia",no:"Norwegia",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nowa Zelandia",om:"Oman",pa:"Panama",pe:"Peru",pf:"Polinezja Francuska",pg:"Papua-Nowa Gwinea",ph:"Filipiny",pk:"Pakistan",pl:"Polska",pm:"Saint-Pierre i Miquelon",pr:"Portoryko",ps:"Terytoria Palestyńskie",pt:"Portugalia",pw:"Palau",py:"Paragwaj",qa:"Katar",re:"Reunion",ro:"Rumunia",rs:"Serbia",ru:"Rosja",rw:"Rwanda",sa:"Arabia Saudyjska",sb:"Wyspy Salomona",sc:"Seszele",sd:"Sudan",se:"Szwecja",sg:"Singapur",sh:"Wyspa Świętej Heleny",si:"Słowenia",sj:"Svalbard i Jan Mayen",sk:"Słowacja",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Surinam",ss:"Sudan Południowy",st:"Wyspy Świętego Tomasza i Książęca",sv:"Salwador",sx:"Sint Maarten",sy:"Syria",sz:"Eswatini",tc:"Turks i Caicos",td:"Czad",tg:"Togo",th:"Tajlandia",tj:"Tadżykistan",tk:"Tokelau",tl:"Timor Wschodni",tm:"Turkmenistan",tn:"Tunezja",to:"Tonga",tr:"Turcja",tt:"Trynidad i Tobago",tv:"Tuvalu",tw:"Tajwan",tz:"Tanzania",ua:"Ukraina",ug:"Uganda",us:"Stany Zjednoczone",uy:"Urugwaj",uz:"Uzbekistan",va:"Watykan",vc:"Saint Vincent i Grenadyny",ve:"Wenezuela",vg:"Brytyjskie Wyspy Dziewicze",vi:"Wyspy Dziewicze Stanów Zjednoczonych",vn:"Wietnam",vu:"Vanuatu",wf:"Wallis i Futuna",ws:"Samoa",ye:"Jemen",yt:"Majotta",za:"Republika Południowej Afryki",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Wybrany kraj",noCountrySelected:"Nie wybrano kraju",countryListAriaLabel:"Lista krajów",searchPlaceholder:"Szukaj",zeroSearchResults:"Nie znaleziono wyników",oneSearchResult:"Znaleziono 1 wynik",multipleSearchResults:"Znaleziono ${count} ${count > 1 && count < 5 ? 'wyniki' : 'wyników'}",ac:"Wyspa Wniebowstąpienia",xk:"Kosowo"},o={...e,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[519],{471:(a,i,n)=>{n.r(i),n.d(i,{countryTranslations:()=>e,default:()=>o,interfaceTranslations:()=>r});const e={ad:"Andora",ae:"Zjednoczone Emiraty Arabskie",af:"Afganistan",ag:"Antigua i Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentyna",as:"Samoa Amerykańskie",at:"Austria",au:"Australia",aw:"Aruba",ax:"Wyspy Alandzkie",az:"Azerbejdżan",ba:"Bośnia i Hercegowina",bb:"Barbados",bd:"Bangladesz",be:"Belgia",bf:"Burkina Faso",bg:"Bułgaria",bh:"Bahrajn",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermudy",bn:"Brunei",bo:"Boliwia",bq:"Niderlandy Karaibskie",br:"Brazylia",bs:"Bahamy",bt:"Bhutan",bw:"Botswana",by:"Białoruś",bz:"Belize",ca:"Kanada",cc:"Wyspy Kokosowe",cd:"Demokratyczna Republika Konga",cf:"Republika Środkowoafrykańska",cg:"Kongo",ch:"Szwajcaria",ci:"Côte d’Ivoire",ck:"Wyspy Cooka",cl:"Chile",cm:"Kamerun",cn:"Chiny",co:"Kolumbia",cr:"Kostaryka",cu:"Kuba",cv:"Republika Zielonego Przylądka",cw:"Curaçao",cx:"Wyspa Bożego Narodzenia",cy:"Cypr",cz:"Czechy",de:"Niemcy",dj:"Dżibuti",dk:"Dania",dm:"Dominika",do:"Dominikana",dz:"Algieria",ec:"Ekwador",ee:"Estonia",eg:"Egipt",eh:"Sahara Zachodnia",er:"Erytrea",es:"Hiszpania",et:"Etiopia",fi:"Finlandia",fj:"Fidżi",fk:"Falklandy",fm:"Mikronezja",fo:"Wyspy Owcze",fr:"Francja",ga:"Gabon",gb:"Wielka Brytania",gd:"Grenada",ge:"Gruzja",gf:"Gujana Francuska",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grenlandia",gm:"Gambia",gn:"Gwinea",gp:"Gwadelupa",gq:"Gwinea Równikowa",gr:"Grecja",gt:"Gwatemala",gu:"Guam",gw:"Gwinea Bissau",gy:"Gujana",hk:"SRA Hongkong (Chiny)",hn:"Honduras",hr:"Chorwacja",ht:"Haiti",hu:"Węgry",id:"Indonezja",ie:"Irlandia",il:"Izrael",im:"Wyspa Man",in:"Indie",io:"Brytyjskie Terytorium Oceanu Indyjskiego",iq:"Irak",ir:"Iran",is:"Islandia",it:"Włochy",je:"Jersey",jm:"Jamajka",jo:"Jordania",jp:"Japonia",ke:"Kenia",kg:"Kirgistan",kh:"Kambodża",ki:"Kiribati",km:"Komory",kn:"Saint Kitts i Nevis",kp:"Korea Północna",kr:"Korea Południowa",kw:"Kuwejt",ky:"Kajmany",kz:"Kazachstan",la:"Laos",lb:"Liban",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litwa",lu:"Luksemburg",lv:"Łotwa",ly:"Libia",ma:"Maroko",mc:"Monako",md:"Mołdawia",me:"Czarnogóra",mf:"Saint-Martin",mg:"Madagaskar",mh:"Wyspy Marshalla",mk:"Macedonia Północna",ml:"Mali",mm:"Mjanma (Birma)",mn:"Mongolia",mo:"SRA Makau (Chiny)",mp:"Mariany Północne",mq:"Martynika",mr:"Mauretania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Malediwy",mw:"Malawi",mx:"Meksyk",my:"Malezja",mz:"Mozambik",na:"Namibia",nc:"Nowa Kaledonia",ne:"Niger",nf:"Norfolk",ng:"Nigeria",ni:"Nikaragua",nl:"Holandia",no:"Norwegia",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nowa Zelandia",om:"Oman",pa:"Panama",pe:"Peru",pf:"Polinezja Francuska",pg:"Papua-Nowa Gwinea",ph:"Filipiny",pk:"Pakistan",pl:"Polska",pm:"Saint-Pierre i Miquelon",pr:"Portoryko",ps:"Terytoria Palestyńskie",pt:"Portugalia",pw:"Palau",py:"Paragwaj",qa:"Katar",re:"Reunion",ro:"Rumunia",rs:"Serbia",ru:"Rosja",rw:"Rwanda",sa:"Arabia Saudyjska",sb:"Wyspy Salomona",sc:"Seszele",sd:"Sudan",se:"Szwecja",sg:"Singapur",sh:"Wyspa Świętej Heleny",si:"Słowenia",sj:"Svalbard i Jan Mayen",sk:"Słowacja",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Surinam",ss:"Sudan Południowy",st:"Wyspy Świętego Tomasza i Książęca",sv:"Salwador",sx:"Sint Maarten",sy:"Syria",sz:"Eswatini",tc:"Turks i Caicos",td:"Czad",tg:"Togo",th:"Tajlandia",tj:"Tadżykistan",tk:"Tokelau",tl:"Timor Wschodni",tm:"Turkmenistan",tn:"Tunezja",to:"Tonga",tr:"Turcja",tt:"Trynidad i Tobago",tv:"Tuvalu",tw:"Tajwan",tz:"Tanzania",ua:"Ukraina",ug:"Uganda",us:"Stany Zjednoczone",uy:"Urugwaj",uz:"Uzbekistan",va:"Watykan",vc:"Saint Vincent i Grenadyny",ve:"Wenezuela",vg:"Brytyjskie Wyspy Dziewicze",vi:"Wyspy Dziewicze Stanów Zjednoczonych",vn:"Wietnam",vu:"Vanuatu",wf:"Wallis i Futuna",ws:"Samoa",ye:"Jemen",yt:"Majotta",za:"Republika Południowej Afryki",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Wybrany kraj",noCountrySelected:"Nie wybrano kraju",countryListAriaLabel:"Lista krajów",searchPlaceholder:"Szukaj",zeroSearchResults:"Nie znaleziono wyników",oneSearchResult:"Znaleziono 1 wynik",multipleSearchResults:"Znaleziono ${count} ${count > 1 && count < 5 ? 'wyniki' : 'wyników'}",ac:"Wyspa Wniebowstąpienia",xk:"Kosowo"},o={...e,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-pt.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-pt.js index 4667d3b17..581f26571 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-pt.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-pt.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[791],{823(a,i,n){n.r(i),n.d(i,{countryTranslations:()=>o,default:()=>r,interfaceTranslations:()=>e});const o={ad:"Andorra",ae:"Emirados Árabes Unidos",af:"Afeganistão",ag:"Antígua e Barbuda",ai:"Anguila",al:"Albânia",am:"Armênia",ao:"Angola",ar:"Argentina",as:"Samoa Americana",at:"Áustria",au:"Austrália",aw:"Aruba",ax:"Ilhas Aland",az:"Azerbaijão",ba:"Bósnia e Herzegovina",bb:"Barbados",bd:"Bangladesh",be:"Bélgica",bf:"Burquina Faso",bg:"Bulgária",bh:"Bahrein",bi:"Burundi",bj:"Benin",bl:"São Bartolomeu",bm:"Bermudas",bn:"Brunei",bo:"Bolívia",bq:"Países Baixos Caribenhos",br:"Brasil",bs:"Bahamas",bt:"Butão",bw:"Botsuana",by:"Bielorrússia",bz:"Belize",ca:"Canadá",cc:"Ilhas Cocos (Keeling)",cd:"Congo - Kinshasa",cf:"República Centro-Africana",cg:"República do Congo",ch:"Suíça",ci:"Costa do Marfim",ck:"Ilhas Cook",cl:"Chile",cm:"Camarões",cn:"China",co:"Colômbia",cr:"Costa Rica",cu:"Cuba",cv:"Cabo Verde",cw:"Curaçao",cx:"Ilha Christmas",cy:"Chipre",cz:"Tchéquia",de:"Alemanha",dj:"Djibuti",dk:"Dinamarca",dm:"Dominica",do:"República Dominicana",dz:"Argélia",ec:"Equador",ee:"Estônia",eg:"Egito",eh:"Saara Ocidental",er:"Eritreia",es:"Espanha",et:"Etiópia",fi:"Finlândia",fj:"Fiji",fk:"Ilhas Malvinas",fm:"Micronésia",fo:"Ilhas Faroe",fr:"França",ga:"Gabão",gb:"Reino Unido",gd:"Granada",ge:"Geórgia",gf:"Guiana Francesa",gg:"Guernsey",gh:"Gana",gi:"Gibraltar",gl:"Groenlândia",gm:"Gâmbia",gn:"Guiné",gp:"Guadalupe",gq:"Guiné Equatorial",gr:"Grécia",gt:"Guatemala",gu:"Guam",gw:"Guiné-Bissau",gy:"Guiana",hk:"Hong Kong, RAE da China",hn:"Honduras",hr:"Croácia",ht:"Haiti",hu:"Hungria",id:"Indonésia",ie:"Irlanda",il:"Israel",im:"Ilha de Man",in:"Índia",io:"Território Britânico do Oceano Índico",iq:"Iraque",ir:"Irã",is:"Islândia",it:"Itália",je:"Jersey",jm:"Jamaica",jo:"Jordânia",jp:"Japão",ke:"Quênia",kg:"Quirguistão",kh:"Camboja",ki:"Quiribati",km:"Comores",kn:"São Cristóvão e Névis",kp:"Coreia do Norte",kr:"Coreia do Sul",kw:"Kuwait",ky:"Ilhas Cayman",kz:"Cazaquistão",la:"Laos",lb:"Líbano",lc:"Santa Lúcia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Libéria",ls:"Lesoto",lt:"Lituânia",lu:"Luxemburgo",lv:"Letônia",ly:"Líbia",ma:"Marrocos",mc:"Mônaco",md:"Moldova",me:"Montenegro",mf:"São Martinho",mg:"Madagascar",mh:"Ilhas Marshall",mk:"Macedônia do Norte",ml:"Mali",mm:"Mianmar (Birmânia)",mn:"Mongólia",mo:"Macau, RAE da China",mp:"Ilhas Marianas do Norte",mq:"Martinica",mr:"Mauritânia",ms:"Montserrat",mt:"Malta",mu:"Maurício",mv:"Maldivas",mw:"Malaui",mx:"México",my:"Malásia",mz:"Moçambique",na:"Namíbia",nc:"Nova Caledônia",ne:"Níger",nf:"Ilha Norfolk",ng:"Nigéria",ni:"Nicarágua",nl:"Países Baixos",no:"Noruega",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nova Zelândia",om:"Omã",pa:"Panamá",pe:"Peru",pf:"Polinésia Francesa",pg:"Papua-Nova Guiné",ph:"Filipinas",pk:"Paquistão",pl:"Polônia",pm:"São Pedro e Miquelão",pr:"Porto Rico",ps:"Territórios palestinos",pt:"Portugal",pw:"Palau",py:"Paraguai",qa:"Catar",re:"Reunião",ro:"Romênia",rs:"Sérvia",ru:"Rússia",rw:"Ruanda",sa:"Arábia Saudita",sb:"Ilhas Salomão",sc:"Seicheles",sd:"Sudão",se:"Suécia",sg:"Singapura",sh:"Santa Helena",si:"Eslovênia",sj:"Svalbard e Jan Mayen",sk:"Eslováquia",sl:"Serra Leoa",sm:"San Marino",sn:"Senegal",so:"Somália",sr:"Suriname",ss:"Sudão do Sul",st:"São Tomé e Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Síria",sz:"Essuatíni",tc:"Ilhas Turcas e Caicos",td:"Chade",tg:"Togo",th:"Tailândia",tj:"Tadjiquistão",tk:"Tokelau",tl:"Timor-Leste",tm:"Turcomenistão",tn:"Tunísia",to:"Tonga",tr:"Turquia",tt:"Trinidad e Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzânia",ua:"Ucrânia",ug:"Uganda",us:"Estados Unidos",uy:"Uruguai",uz:"Uzbequistão",va:"Cidade do Vaticano",vc:"São Vicente e Granadinas",ve:"Venezuela",vg:"Ilhas Virgens Britânicas",vi:"Ilhas Virgens Americanas",vn:"Vietnã",vu:"Vanuatu",wf:"Wallis e Futuna",ws:"Samoa",ye:"Iêmen",yt:"Mayotte",za:"África do Sul",zm:"Zâmbia",zw:"Zimbábue"},e={selectedCountryAriaLabel:"País selecionado",noCountrySelected:"Nenhum país selecionado",countryListAriaLabel:"Lista de países",searchPlaceholder:"Procurar",zeroSearchResults:"Nenhum resultado encontrado",oneSearchResult:"1 resultado encontrado",multipleSearchResults:"${count} resultados encontrados",ac:"Ilha de Ascensão",xk:"Kosovo"},r={...o,...e}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[791],{823:(a,i,n)=>{n.r(i),n.d(i,{countryTranslations:()=>o,default:()=>r,interfaceTranslations:()=>e});const o={ad:"Andorra",ae:"Emirados Árabes Unidos",af:"Afeganistão",ag:"Antígua e Barbuda",ai:"Anguila",al:"Albânia",am:"Armênia",ao:"Angola",ar:"Argentina",as:"Samoa Americana",at:"Áustria",au:"Austrália",aw:"Aruba",ax:"Ilhas Aland",az:"Azerbaijão",ba:"Bósnia e Herzegovina",bb:"Barbados",bd:"Bangladesh",be:"Bélgica",bf:"Burquina Faso",bg:"Bulgária",bh:"Bahrein",bi:"Burundi",bj:"Benin",bl:"São Bartolomeu",bm:"Bermudas",bn:"Brunei",bo:"Bolívia",bq:"Países Baixos Caribenhos",br:"Brasil",bs:"Bahamas",bt:"Butão",bw:"Botsuana",by:"Bielorrússia",bz:"Belize",ca:"Canadá",cc:"Ilhas Cocos (Keeling)",cd:"Congo - Kinshasa",cf:"República Centro-Africana",cg:"República do Congo",ch:"Suíça",ci:"Costa do Marfim",ck:"Ilhas Cook",cl:"Chile",cm:"Camarões",cn:"China",co:"Colômbia",cr:"Costa Rica",cu:"Cuba",cv:"Cabo Verde",cw:"Curaçao",cx:"Ilha Christmas",cy:"Chipre",cz:"Tchéquia",de:"Alemanha",dj:"Djibuti",dk:"Dinamarca",dm:"Dominica",do:"República Dominicana",dz:"Argélia",ec:"Equador",ee:"Estônia",eg:"Egito",eh:"Saara Ocidental",er:"Eritreia",es:"Espanha",et:"Etiópia",fi:"Finlândia",fj:"Fiji",fk:"Ilhas Malvinas",fm:"Micronésia",fo:"Ilhas Faroe",fr:"França",ga:"Gabão",gb:"Reino Unido",gd:"Granada",ge:"Geórgia",gf:"Guiana Francesa",gg:"Guernsey",gh:"Gana",gi:"Gibraltar",gl:"Groenlândia",gm:"Gâmbia",gn:"Guiné",gp:"Guadalupe",gq:"Guiné Equatorial",gr:"Grécia",gt:"Guatemala",gu:"Guam",gw:"Guiné-Bissau",gy:"Guiana",hk:"Hong Kong, RAE da China",hn:"Honduras",hr:"Croácia",ht:"Haiti",hu:"Hungria",id:"Indonésia",ie:"Irlanda",il:"Israel",im:"Ilha de Man",in:"Índia",io:"Território Britânico do Oceano Índico",iq:"Iraque",ir:"Irã",is:"Islândia",it:"Itália",je:"Jersey",jm:"Jamaica",jo:"Jordânia",jp:"Japão",ke:"Quênia",kg:"Quirguistão",kh:"Camboja",ki:"Quiribati",km:"Comores",kn:"São Cristóvão e Névis",kp:"Coreia do Norte",kr:"Coreia do Sul",kw:"Kuwait",ky:"Ilhas Cayman",kz:"Cazaquistão",la:"Laos",lb:"Líbano",lc:"Santa Lúcia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Libéria",ls:"Lesoto",lt:"Lituânia",lu:"Luxemburgo",lv:"Letônia",ly:"Líbia",ma:"Marrocos",mc:"Mônaco",md:"Moldova",me:"Montenegro",mf:"São Martinho",mg:"Madagascar",mh:"Ilhas Marshall",mk:"Macedônia do Norte",ml:"Mali",mm:"Mianmar (Birmânia)",mn:"Mongólia",mo:"Macau, RAE da China",mp:"Ilhas Marianas do Norte",mq:"Martinica",mr:"Mauritânia",ms:"Montserrat",mt:"Malta",mu:"Maurício",mv:"Maldivas",mw:"Malaui",mx:"México",my:"Malásia",mz:"Moçambique",na:"Namíbia",nc:"Nova Caledônia",ne:"Níger",nf:"Ilha Norfolk",ng:"Nigéria",ni:"Nicarágua",nl:"Países Baixos",no:"Noruega",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nova Zelândia",om:"Omã",pa:"Panamá",pe:"Peru",pf:"Polinésia Francesa",pg:"Papua-Nova Guiné",ph:"Filipinas",pk:"Paquistão",pl:"Polônia",pm:"São Pedro e Miquelão",pr:"Porto Rico",ps:"Territórios palestinos",pt:"Portugal",pw:"Palau",py:"Paraguai",qa:"Catar",re:"Reunião",ro:"Romênia",rs:"Sérvia",ru:"Rússia",rw:"Ruanda",sa:"Arábia Saudita",sb:"Ilhas Salomão",sc:"Seicheles",sd:"Sudão",se:"Suécia",sg:"Singapura",sh:"Santa Helena",si:"Eslovênia",sj:"Svalbard e Jan Mayen",sk:"Eslováquia",sl:"Serra Leoa",sm:"San Marino",sn:"Senegal",so:"Somália",sr:"Suriname",ss:"Sudão do Sul",st:"São Tomé e Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Síria",sz:"Essuatíni",tc:"Ilhas Turcas e Caicos",td:"Chade",tg:"Togo",th:"Tailândia",tj:"Tadjiquistão",tk:"Tokelau",tl:"Timor-Leste",tm:"Turcomenistão",tn:"Tunísia",to:"Tonga",tr:"Turquia",tt:"Trinidad e Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzânia",ua:"Ucrânia",ug:"Uganda",us:"Estados Unidos",uy:"Uruguai",uz:"Uzbequistão",va:"Cidade do Vaticano",vc:"São Vicente e Granadinas",ve:"Venezuela",vg:"Ilhas Virgens Britânicas",vi:"Ilhas Virgens Americanas",vn:"Vietnã",vu:"Vanuatu",wf:"Wallis e Futuna",ws:"Samoa",ye:"Iêmen",yt:"Mayotte",za:"África do Sul",zm:"Zâmbia",zw:"Zimbábue"},e={selectedCountryAriaLabel:"País selecionado",noCountrySelected:"Nenhum país selecionado",countryListAriaLabel:"Lista de países",searchPlaceholder:"Procurar",zeroSearchResults:"Nenhum resultado encontrado",oneSearchResult:"1 resultado encontrado",multipleSearchResults:"${count} resultados encontrados",ac:"Ilha de Ascensão",xk:"Kosovo"},r={...o,...e}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ro.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ro.js index f90d5884d..41eed3737 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ro.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ro.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[278],{350(a,i,e){e.r(i),e.d(i,{countryTranslations:()=>n,default:()=>l,interfaceTranslations:()=>r});const n={ad:"Andorra",ae:"Emiratele Arabe Unite",af:"Afganistan",ag:"Antigua și Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentina",as:"Samoa Americană",at:"Austria",au:"Australia",aw:"Aruba",ax:"Insulele Åland",az:"Azerbaidjan",ba:"Bosnia și Herțegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgia",bf:"Burkina Faso",bg:"Bulgaria",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Insulele Caraibe Olandeze",br:"Brazilia",bs:"Bahamas",bt:"Bhutan",bw:"Botswana",by:"Belarus",bz:"Belize",ca:"Canada",cc:"Insulele Cocos (Keeling)",cd:"Congo - Kinshasa",cf:"Republica Centrafricană",cg:"Congo - Brazzaville",ch:"Elveția",ci:"Côte d’Ivoire",ck:"Insulele Cook",cl:"Chile",cm:"Camerun",cn:"China",co:"Columbia",cr:"Costa Rica",cu:"Cuba",cv:"Capul Verde",cw:"Curaçao",cx:"Insula Christmas",cy:"Cipru",cz:"Cehia",de:"Germania",dj:"Djibouti",dk:"Danemarca",dm:"Dominica",do:"Republica Dominicană",dz:"Algeria",ec:"Ecuador",ee:"Estonia",eg:"Egipt",eh:"Sahara Occidentală",er:"Eritreea",es:"Spania",et:"Etiopia",fi:"Finlanda",fj:"Fiji",fk:"Insulele Falkland",fm:"Micronezia",fo:"Insulele Feroe",fr:"Franța",ga:"Gabon",gb:"Regatul Unit",gd:"Grenada",ge:"Georgia",gf:"Guyana Franceză",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Groenlanda",gm:"Gambia",gn:"Guineea",gp:"Guadelupa",gq:"Guineea Ecuatorială",gr:"Grecia",gt:"Guatemala",gu:"Guam",gw:"Guineea-Bissau",gy:"Guyana",hk:"R.A.S. Hong Kong a Chinei",hn:"Honduras",hr:"Croația",ht:"Haiti",hu:"Ungaria",id:"Indonezia",ie:"Irlanda",il:"Israel",im:"Insula Man",in:"India",io:"Teritoriul Britanic din Oceanul Indian",iq:"Irak",ir:"Iran",is:"Islanda",it:"Italia",je:"Jersey",jm:"Jamaica",jo:"Iordania",jp:"Japonia",ke:"Kenya",kg:"Kârgâzstan",kh:"Cambodgia",ki:"Kiribati",km:"Comore",kn:"Saint Kitts și Nevis",kp:"Coreea de Nord",kr:"Coreea de Sud",kw:"Kuweit",ky:"Insulele Cayman",kz:"Kazahstan",la:"Laos",lb:"Liban",lc:"Sfânta Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Lituania",lu:"Luxemburg",lv:"Letonia",ly:"Libia",ma:"Maroc",mc:"Monaco",md:"Republica Moldova",me:"Muntenegru",mf:"Sfântul Martin",mg:"Madagascar",mh:"Insulele Marshall",mk:"Macedonia de Nord",ml:"Mali",mm:"Myanmar (Birmania)",mn:"Mongolia",mo:"R.A.S. Macao, China",mp:"Insulele Mariane de Nord",mq:"Martinica",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldive",mw:"Malawi",mx:"Mexic",my:"Malaysia",mz:"Mozambic",na:"Namibia",nc:"Noua Caledonie",ne:"Niger",nf:"Insula Norfolk",ng:"Nigeria",ni:"Nicaragua",nl:"Țările de Jos",no:"Norvegia",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Noua Zeelandă",om:"Oman",pa:"Panama",pe:"Peru",pf:"Polinezia Franceză",pg:"Papua-Noua Guinee",ph:"Filipine",pk:"Pakistan",pl:"Polonia",pm:"Saint-Pierre și Miquelon",pr:"Puerto Rico",ps:"Teritoriile Palestiniene",pt:"Portugalia",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"România",rs:"Serbia",ru:"Rusia",rw:"Rwanda",sa:"Arabia Saudită",sb:"Insulele Solomon",sc:"Seychelles",sd:"Sudan",se:"Suedia",sg:"Singapore",sh:"Sfânta Elena",si:"Slovenia",sj:"Svalbard și Jan Mayen",sk:"Slovacia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Suriname",ss:"Sudanul de Sud",st:"São Tomé și Príncipe",sv:"El Salvador",sx:"Sint-Maarten",sy:"Siria",sz:"eSwatini",tc:"Insulele Turks și Caicos",td:"Ciad",tg:"Togo",th:"Thailanda",tj:"Tadjikistan",tk:"Tokelau",tl:"Timor-Leste",tm:"Turkmenistan",tn:"Tunisia",to:"Tonga",tr:"Turcia",tt:"Trinidad și Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Ucraina",ug:"Uganda",us:"Statele Unite ale Americii",uy:"Uruguay",uz:"Uzbekistan",va:"Statul Cetății Vaticanului",vc:"Saint Vincent și Grenadinele",ve:"Venezuela",vg:"Insulele Virgine Britanice",vi:"Insulele Virgine Americane",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis și Futuna",ws:"Samoa",ye:"Yemen",yt:"Mayotte",za:"Africa de Sud",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Țara selectată",noCountrySelected:"Nicio țară selectată",countryListAriaLabel:"Lista țărilor",searchPlaceholder:"Căutare",zeroSearchResults:"Nici un rezultat gasit",oneSearchResult:"1 rezultat găsit",multipleSearchResults:"${count} rezultate găsite",ac:"Insula Ascensiunii",xk:"Kosovo"},l={...n,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[278],{350:(a,i,e)=>{e.r(i),e.d(i,{countryTranslations:()=>n,default:()=>l,interfaceTranslations:()=>r});const n={ad:"Andorra",ae:"Emiratele Arabe Unite",af:"Afganistan",ag:"Antigua și Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentina",as:"Samoa Americană",at:"Austria",au:"Australia",aw:"Aruba",ax:"Insulele Åland",az:"Azerbaidjan",ba:"Bosnia și Herțegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgia",bf:"Burkina Faso",bg:"Bulgaria",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"Saint-Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Insulele Caraibe Olandeze",br:"Brazilia",bs:"Bahamas",bt:"Bhutan",bw:"Botswana",by:"Belarus",bz:"Belize",ca:"Canada",cc:"Insulele Cocos (Keeling)",cd:"Congo - Kinshasa",cf:"Republica Centrafricană",cg:"Congo - Brazzaville",ch:"Elveția",ci:"Côte d’Ivoire",ck:"Insulele Cook",cl:"Chile",cm:"Camerun",cn:"China",co:"Columbia",cr:"Costa Rica",cu:"Cuba",cv:"Capul Verde",cw:"Curaçao",cx:"Insula Christmas",cy:"Cipru",cz:"Cehia",de:"Germania",dj:"Djibouti",dk:"Danemarca",dm:"Dominica",do:"Republica Dominicană",dz:"Algeria",ec:"Ecuador",ee:"Estonia",eg:"Egipt",eh:"Sahara Occidentală",er:"Eritreea",es:"Spania",et:"Etiopia",fi:"Finlanda",fj:"Fiji",fk:"Insulele Falkland",fm:"Micronezia",fo:"Insulele Feroe",fr:"Franța",ga:"Gabon",gb:"Regatul Unit",gd:"Grenada",ge:"Georgia",gf:"Guyana Franceză",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Groenlanda",gm:"Gambia",gn:"Guineea",gp:"Guadelupa",gq:"Guineea Ecuatorială",gr:"Grecia",gt:"Guatemala",gu:"Guam",gw:"Guineea-Bissau",gy:"Guyana",hk:"R.A.S. Hong Kong a Chinei",hn:"Honduras",hr:"Croația",ht:"Haiti",hu:"Ungaria",id:"Indonezia",ie:"Irlanda",il:"Israel",im:"Insula Man",in:"India",io:"Teritoriul Britanic din Oceanul Indian",iq:"Irak",ir:"Iran",is:"Islanda",it:"Italia",je:"Jersey",jm:"Jamaica",jo:"Iordania",jp:"Japonia",ke:"Kenya",kg:"Kârgâzstan",kh:"Cambodgia",ki:"Kiribati",km:"Comore",kn:"Saint Kitts și Nevis",kp:"Coreea de Nord",kr:"Coreea de Sud",kw:"Kuweit",ky:"Insulele Cayman",kz:"Kazahstan",la:"Laos",lb:"Liban",lc:"Sfânta Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Lituania",lu:"Luxemburg",lv:"Letonia",ly:"Libia",ma:"Maroc",mc:"Monaco",md:"Republica Moldova",me:"Muntenegru",mf:"Sfântul Martin",mg:"Madagascar",mh:"Insulele Marshall",mk:"Macedonia de Nord",ml:"Mali",mm:"Myanmar (Birmania)",mn:"Mongolia",mo:"R.A.S. Macao, China",mp:"Insulele Mariane de Nord",mq:"Martinica",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldive",mw:"Malawi",mx:"Mexic",my:"Malaysia",mz:"Mozambic",na:"Namibia",nc:"Noua Caledonie",ne:"Niger",nf:"Insula Norfolk",ng:"Nigeria",ni:"Nicaragua",nl:"Țările de Jos",no:"Norvegia",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Noua Zeelandă",om:"Oman",pa:"Panama",pe:"Peru",pf:"Polinezia Franceză",pg:"Papua-Noua Guinee",ph:"Filipine",pk:"Pakistan",pl:"Polonia",pm:"Saint-Pierre și Miquelon",pr:"Puerto Rico",ps:"Teritoriile Palestiniene",pt:"Portugalia",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"România",rs:"Serbia",ru:"Rusia",rw:"Rwanda",sa:"Arabia Saudită",sb:"Insulele Solomon",sc:"Seychelles",sd:"Sudan",se:"Suedia",sg:"Singapore",sh:"Sfânta Elena",si:"Slovenia",sj:"Svalbard și Jan Mayen",sk:"Slovacia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Suriname",ss:"Sudanul de Sud",st:"São Tomé și Príncipe",sv:"El Salvador",sx:"Sint-Maarten",sy:"Siria",sz:"eSwatini",tc:"Insulele Turks și Caicos",td:"Ciad",tg:"Togo",th:"Thailanda",tj:"Tadjikistan",tk:"Tokelau",tl:"Timor-Leste",tm:"Turkmenistan",tn:"Tunisia",to:"Tonga",tr:"Turcia",tt:"Trinidad și Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Ucraina",ug:"Uganda",us:"Statele Unite ale Americii",uy:"Uruguay",uz:"Uzbekistan",va:"Statul Cetății Vaticanului",vc:"Saint Vincent și Grenadinele",ve:"Venezuela",vg:"Insulele Virgine Britanice",vi:"Insulele Virgine Americane",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis și Futuna",ws:"Samoa",ye:"Yemen",yt:"Mayotte",za:"Africa de Sud",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Țara selectată",noCountrySelected:"Nicio țară selectată",countryListAriaLabel:"Lista țărilor",searchPlaceholder:"Căutare",zeroSearchResults:"Nici un rezultat gasit",oneSearchResult:"1 rezultat găsit",multipleSearchResults:"${count} rezultate găsite",ac:"Insula Ascensiunii",xk:"Kosovo"},l={...n,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ru.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ru.js index f1e44b552..b0b7a5b03 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ru.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ru.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[612],{628(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"Андорра",ae:"ОАЭ",af:"Афганистан",ag:"Антигуа и Барбуда",ai:"Ангилья",al:"Албания",am:"Армения",ao:"Ангола",ar:"Аргентина",as:"Американское Самоа",at:"Австрия",au:"Австралия",aw:"Аруба",ax:"Аландские о-ва",az:"Азербайджан",ba:"Босния и Герцеговина",bb:"Барбадос",bd:"Бангладеш",be:"Бельгия",bf:"Буркина-Фасо",bg:"Болгария",bh:"Бахрейн",bi:"Бурунди",bj:"Бенин",bl:"Сен-Бартелеми",bm:"Бермудские о-ва",bn:"Бруней-Даруссалам",bo:"Боливия",bq:"Бонэйр, Синт-Эстатиус и Саба",br:"Бразилия",bs:"Багамы",bt:"Бутан",bw:"Ботсвана",by:"Беларусь",bz:"Белиз",ca:"Канада",cc:"Кокосовые о-ва",cd:"Конго - Киншаса",cf:"Центрально-Африканская Республика",cg:"Конго - Браззавиль",ch:"Швейцария",ci:"Кот-д’Ивуар",ck:"Острова Кука",cl:"Чили",cm:"Камерун",cn:"Китай",co:"Колумбия",cr:"Коста-Рика",cu:"Куба",cv:"Кабо-Верде",cw:"Кюрасао",cx:"о-в Рождества",cy:"Кипр",cz:"Чехия",de:"Германия",dj:"Джибути",dk:"Дания",dm:"Доминика",do:"Доминиканская Республика",dz:"Алжир",ec:"Эквадор",ee:"Эстония",eg:"Египет",eh:"Западная Сахара",er:"Эритрея",es:"Испания",et:"Эфиопия",fi:"Финляндия",fj:"Фиджи",fk:"Фолклендские о-ва",fm:"Федеративные Штаты Микронезии",fo:"Фарерские о-ва",fr:"Франция",ga:"Габон",gb:"Великобритания",gd:"Гренада",ge:"Грузия",gf:"Французская Гвиана",gg:"Гернси",gh:"Гана",gi:"Гибралтар",gl:"Гренландия",gm:"Гамбия",gn:"Гвинея",gp:"Гваделупа",gq:"Экваториальная Гвинея",gr:"Греция",gt:"Гватемала",gu:"Гуам",gw:"Гвинея-Бисау",gy:"Гайана",hk:"Гонконг (САР)",hn:"Гондурас",hr:"Хорватия",ht:"Гаити",hu:"Венгрия",id:"Индонезия",ie:"Ирландия",il:"Израиль",im:"о-в Мэн",in:"Индия",io:"Британская территория в Индийском океане",iq:"Ирак",ir:"Иран",is:"Исландия",it:"Италия",je:"Джерси",jm:"Ямайка",jo:"Иордания",jp:"Япония",ke:"Кения",kg:"Киргизия",kh:"Камбоджа",ki:"Кирибати",km:"Коморы",kn:"Сент-Китс и Невис",kp:"КНДР",kr:"Республика Корея",kw:"Кувейт",ky:"Острова Кайман",kz:"Казахстан",la:"Лаос",lb:"Ливан",lc:"Сент-Люсия",li:"Лихтенштейн",lk:"Шри-Ланка",lr:"Либерия",ls:"Лесото",lt:"Литва",lu:"Люксембург",lv:"Латвия",ly:"Ливия",ma:"Марокко",mc:"Монако",md:"Молдова",me:"Черногория",mf:"Сен-Мартен",mg:"Мадагаскар",mh:"Маршалловы Острова",mk:"Северная Македония",ml:"Мали",mm:"Мьянма (Бирма)",mn:"Монголия",mo:"Макао (САР)",mp:"Северные Марианские о-ва",mq:"Мартиника",mr:"Мавритания",ms:"Монтсеррат",mt:"Мальта",mu:"Маврикий",mv:"Мальдивы",mw:"Малави",mx:"Мексика",my:"Малайзия",mz:"Мозамбик",na:"Намибия",nc:"Новая Каледония",ne:"Нигер",nf:"о-в Норфолк",ng:"Нигерия",ni:"Никарагуа",nl:"Нидерланды",no:"Норвегия",np:"Непал",nr:"Науру",nu:"Ниуэ",nz:"Новая Зеландия",om:"Оман",pa:"Панама",pe:"Перу",pf:"Французская Полинезия",pg:"Папуа — Новая Гвинея",ph:"Филиппины",pk:"Пакистан",pl:"Польша",pm:"Сен-Пьер и Микелон",pr:"Пуэрто-Рико",ps:"Палестинские территории",pt:"Португалия",pw:"Палау",py:"Парагвай",qa:"Катар",re:"Реюньон",ro:"Румыния",rs:"Сербия",ru:"Россия",rw:"Руанда",sa:"Саудовская Аравия",sb:"Соломоновы Острова",sc:"Сейшельские Острова",sd:"Судан",se:"Швеция",sg:"Сингапур",sh:"о-в Св. Елены",si:"Словения",sj:"Шпицберген и Ян-Майен",sk:"Словакия",sl:"Сьерра-Леоне",sm:"Сан-Марино",sn:"Сенегал",so:"Сомали",sr:"Суринам",ss:"Южный Судан",st:"Сан-Томе и Принсипи",sv:"Сальвадор",sx:"Синт-Мартен",sy:"Сирия",sz:"Эсватини",tc:"о-ва Тёркс и Кайкос",td:"Чад",tg:"Того",th:"Таиланд",tj:"Таджикистан",tk:"Токелау",tl:"Восточный Тимор",tm:"Туркменистан",tn:"Тунис",to:"Тонга",tr:"Турция",tt:"Тринидад и Тобаго",tv:"Тувалу",tw:"Тайвань",tz:"Танзания",ua:"Украина",ug:"Уганда",us:"Соединенные Штаты",uy:"Уругвай",uz:"Узбекистан",va:"Ватикан",vc:"Сент-Винсент и Гренадины",ve:"Венесуэла",vg:"Виргинские о-ва (Великобритания)",vi:"Виргинские о-ва (США)",vn:"Вьетнам",vu:"Вануату",wf:"Уоллис и Футуна",ws:"Самоа",ye:"Йемен",yt:"Майотта",za:"Южно-Африканская Республика",zm:"Замбия",zw:"Зимбабве"},c={selectedCountryAriaLabel:"Выбранная страна",noCountrySelected:"Страна не выбрана",countryListAriaLabel:"Список стран",searchPlaceholder:"Поиск",zeroSearchResults:"результатов не найдено",oneSearchResult:"найден 1 результат",multipleSearchResults:"Найдено ${count} результатов",ac:"Остров Вознесения",xk:"Косово"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[612],{628:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"Андорра",ae:"ОАЭ",af:"Афганистан",ag:"Антигуа и Барбуда",ai:"Ангилья",al:"Албания",am:"Армения",ao:"Ангола",ar:"Аргентина",as:"Американское Самоа",at:"Австрия",au:"Австралия",aw:"Аруба",ax:"Аландские о-ва",az:"Азербайджан",ba:"Босния и Герцеговина",bb:"Барбадос",bd:"Бангладеш",be:"Бельгия",bf:"Буркина-Фасо",bg:"Болгария",bh:"Бахрейн",bi:"Бурунди",bj:"Бенин",bl:"Сен-Бартелеми",bm:"Бермудские о-ва",bn:"Бруней-Даруссалам",bo:"Боливия",bq:"Бонэйр, Синт-Эстатиус и Саба",br:"Бразилия",bs:"Багамы",bt:"Бутан",bw:"Ботсвана",by:"Беларусь",bz:"Белиз",ca:"Канада",cc:"Кокосовые о-ва",cd:"Конго - Киншаса",cf:"Центрально-Африканская Республика",cg:"Конго - Браззавиль",ch:"Швейцария",ci:"Кот-д’Ивуар",ck:"Острова Кука",cl:"Чили",cm:"Камерун",cn:"Китай",co:"Колумбия",cr:"Коста-Рика",cu:"Куба",cv:"Кабо-Верде",cw:"Кюрасао",cx:"о-в Рождества",cy:"Кипр",cz:"Чехия",de:"Германия",dj:"Джибути",dk:"Дания",dm:"Доминика",do:"Доминиканская Республика",dz:"Алжир",ec:"Эквадор",ee:"Эстония",eg:"Египет",eh:"Западная Сахара",er:"Эритрея",es:"Испания",et:"Эфиопия",fi:"Финляндия",fj:"Фиджи",fk:"Фолклендские о-ва",fm:"Федеративные Штаты Микронезии",fo:"Фарерские о-ва",fr:"Франция",ga:"Габон",gb:"Великобритания",gd:"Гренада",ge:"Грузия",gf:"Французская Гвиана",gg:"Гернси",gh:"Гана",gi:"Гибралтар",gl:"Гренландия",gm:"Гамбия",gn:"Гвинея",gp:"Гваделупа",gq:"Экваториальная Гвинея",gr:"Греция",gt:"Гватемала",gu:"Гуам",gw:"Гвинея-Бисау",gy:"Гайана",hk:"Гонконг (САР)",hn:"Гондурас",hr:"Хорватия",ht:"Гаити",hu:"Венгрия",id:"Индонезия",ie:"Ирландия",il:"Израиль",im:"о-в Мэн",in:"Индия",io:"Британская территория в Индийском океане",iq:"Ирак",ir:"Иран",is:"Исландия",it:"Италия",je:"Джерси",jm:"Ямайка",jo:"Иордания",jp:"Япония",ke:"Кения",kg:"Киргизия",kh:"Камбоджа",ki:"Кирибати",km:"Коморы",kn:"Сент-Китс и Невис",kp:"КНДР",kr:"Республика Корея",kw:"Кувейт",ky:"Острова Кайман",kz:"Казахстан",la:"Лаос",lb:"Ливан",lc:"Сент-Люсия",li:"Лихтенштейн",lk:"Шри-Ланка",lr:"Либерия",ls:"Лесото",lt:"Литва",lu:"Люксембург",lv:"Латвия",ly:"Ливия",ma:"Марокко",mc:"Монако",md:"Молдова",me:"Черногория",mf:"Сен-Мартен",mg:"Мадагаскар",mh:"Маршалловы Острова",mk:"Северная Македония",ml:"Мали",mm:"Мьянма (Бирма)",mn:"Монголия",mo:"Макао (САР)",mp:"Северные Марианские о-ва",mq:"Мартиника",mr:"Мавритания",ms:"Монтсеррат",mt:"Мальта",mu:"Маврикий",mv:"Мальдивы",mw:"Малави",mx:"Мексика",my:"Малайзия",mz:"Мозамбик",na:"Намибия",nc:"Новая Каледония",ne:"Нигер",nf:"о-в Норфолк",ng:"Нигерия",ni:"Никарагуа",nl:"Нидерланды",no:"Норвегия",np:"Непал",nr:"Науру",nu:"Ниуэ",nz:"Новая Зеландия",om:"Оман",pa:"Панама",pe:"Перу",pf:"Французская Полинезия",pg:"Папуа — Новая Гвинея",ph:"Филиппины",pk:"Пакистан",pl:"Польша",pm:"Сен-Пьер и Микелон",pr:"Пуэрто-Рико",ps:"Палестинские территории",pt:"Португалия",pw:"Палау",py:"Парагвай",qa:"Катар",re:"Реюньон",ro:"Румыния",rs:"Сербия",ru:"Россия",rw:"Руанда",sa:"Саудовская Аравия",sb:"Соломоновы Острова",sc:"Сейшельские Острова",sd:"Судан",se:"Швеция",sg:"Сингапур",sh:"о-в Св. Елены",si:"Словения",sj:"Шпицберген и Ян-Майен",sk:"Словакия",sl:"Сьерра-Леоне",sm:"Сан-Марино",sn:"Сенегал",so:"Сомали",sr:"Суринам",ss:"Южный Судан",st:"Сан-Томе и Принсипи",sv:"Сальвадор",sx:"Синт-Мартен",sy:"Сирия",sz:"Эсватини",tc:"о-ва Тёркс и Кайкос",td:"Чад",tg:"Того",th:"Таиланд",tj:"Таджикистан",tk:"Токелау",tl:"Восточный Тимор",tm:"Туркменистан",tn:"Тунис",to:"Тонга",tr:"Турция",tt:"Тринидад и Тобаго",tv:"Тувалу",tw:"Тайвань",tz:"Танзания",ua:"Украина",ug:"Уганда",us:"Соединенные Штаты",uy:"Уругвай",uz:"Узбекистан",va:"Ватикан",vc:"Сент-Винсент и Гренадины",ve:"Венесуэла",vg:"Виргинские о-ва (Великобритания)",vi:"Виргинские о-ва (США)",vn:"Вьетнам",vu:"Вануату",wf:"Уоллис и Футуна",ws:"Самоа",ye:"Йемен",yt:"Майотта",za:"Южно-Африканская Республика",zm:"Замбия",zw:"Зимбабве"},c={selectedCountryAriaLabel:"Выбранная страна",noCountrySelected:"Страна не выбрана",countryListAriaLabel:"Список стран",searchPlaceholder:"Поиск",zeroSearchResults:"результатов не найдено",oneSearchResult:"найден 1 результат",multipleSearchResults:"Найдено ${count} результатов",ac:"Остров Вознесения",xk:"Косово"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-sk.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-sk.js index 9e9f246a8..f5ad776e1 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-sk.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-sk.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[653],{169(a,o,n){n.r(o),n.d(o,{countryTranslations:()=>r,default:()=>i,interfaceTranslations:()=>e});const r={ad:"Andorra",ae:"Spojené arabské emiráty",af:"Afganistan",ag:"Antigua a Barbuda",ai:"Anguilla",al:"Albánsko",am:"Arménsko",ao:"Angola",ar:"Argentína",as:"Americká Samoa",at:"Rakúsko",au:"Austrália",aw:"Aruba",ax:"Alandy",az:"Azerbajdžan",ba:"Bosna a Hercegovina",bb:"Barbados",bd:"Bangladéš",be:"Belgicko",bf:"Burkina Faso",bg:"Bulharsko",bh:"Bahrajn",bi:"Burundi",bj:"Benin",bl:"Svätý Bartolomej",bm:"Bermudy",bn:"Brunej",bo:"Bolívia",bq:"Karibské Holandsko",br:"Brazília",bs:"Bahamy",bt:"Bhután",bw:"Botswana",by:"Bielorusko",bz:"Belize",ca:"Kanada",cc:"Kokosové ostrovy",cd:"Konžská demokratická republika",cf:"Stredoafrická republika",cg:"Konžská republika",ch:"Švajčiarsko",ci:"Pobrežie Slonoviny",ck:"Cookove ostrovy",cl:"Čile",cm:"Kamerun",cn:"Čína",co:"Kolumbia",cr:"Kostarika",cu:"Kuba",cv:"Kapverdy",cw:"Curaçao",cx:"Vianočný ostrov",cy:"Cyprus",cz:"Česko",de:"Nemecko",dj:"Džibutsko",dk:"Dánsko",dm:"Dominika",do:"Dominikánska republika",dz:"Alžírsko",ec:"Ekvádor",ee:"Estónsko",eg:"Egypt",eh:"Západná Sahara",er:"Eritrea",es:"Španielsko",et:"Etiópia",fi:"Fínsko",fj:"Fidži",fk:"Falklandy",fm:"Mikronézia",fo:"Faerské ostrovy",fr:"Francúzsko",ga:"Gabon",gb:"Spojené kráľovstvo",gd:"Grenada",ge:"Gruzínsko",gf:"Francúzska Guyana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltár",gl:"Grónsko",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Rovníková Guinea",gr:"Grécko",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hongkong – OAO Číny",hn:"Honduras",hr:"Chorvátsko",ht:"Haiti",hu:"Maďarsko",id:"Indonézia",ie:"Írsko",il:"Izrael",im:"Ostrov Man",in:"India",io:"Britské indickooceánske územie",iq:"Irak",ir:"Irán",is:"Island",it:"Taliansko",je:"Jersey",jm:"Jamajka",jo:"Jordánsko",jp:"Japonsko",ke:"Keňa",kg:"Kirgizsko",kh:"Kambodža",ki:"Kiribati",km:"Komory",kn:"Svätý Krištof a Nevis",kp:"Severná Kórea",kr:"Južná Kórea",kw:"Kuvajt",ky:"Kajmanie ostrovy",kz:"Kazachstan",la:"Laos",lb:"Libanon",lc:"Svätá Lucia",li:"Lichtenštajnsko",lk:"Srí Lanka",lr:"Libéria",ls:"Lesotho",lt:"Litva",lu:"Luxembursko",lv:"Lotyšsko",ly:"Líbya",ma:"Maroko",mc:"Monako",md:"Moldavsko",me:"Čierna Hora",mf:"Svätý Martin (fr.)",mg:"Madagaskar",mh:"Marshallove ostrovy",mk:"Severné Macedónsko",ml:"Mali",mm:"Mjanmarsko",mn:"Mongolsko",mo:"Macao – OAO Číny",mp:"Severné Mariány",mq:"Martinik",mr:"Mauritánia",ms:"Montserrat",mt:"Malta",mu:"Maurícius",mv:"Maldivy",mw:"Malawi",mx:"Mexiko",my:"Malajzia",mz:"Mozambik",na:"Namíbia",nc:"Nová Kaledónia",ne:"Niger",nf:"Norfolk",ng:"Nigéria",ni:"Nikaragua",nl:"Holandsko",no:"Nórsko",np:"Nepál",nr:"Nauru",nu:"Niue",nz:"Nový Zéland",om:"Omán",pa:"Panama",pe:"Peru",pf:"Francúzska Polynézia",pg:"Papua-Nová Guinea",ph:"Filipíny",pk:"Pakistan",pl:"Poľsko",pm:"Saint Pierre a Miquelon",pr:"Portoriko",ps:"Palestínske územia",pt:"Portugalsko",pw:"Palau",py:"Paraguaj",qa:"Katar",re:"Réunion",ro:"Rumunsko",rs:"Srbsko",ru:"Rusko",rw:"Rwanda",sa:"Saudská Arábia",sb:"Šalamúnove ostrovy",sc:"Seychely",sd:"Sudán",se:"Švédsko",sg:"Singapur",sh:"Svätá Helena",si:"Slovinsko",sj:"Svalbard a Jan Mayen",sk:"Slovensko",sl:"Sierra Leone",sm:"San Maríno",sn:"Senegal",so:"Somálsko",sr:"Surinam",ss:"Južný Sudán",st:"Svätý Tomáš a Princov ostrov",sv:"Salvádor",sx:"Svätý Martin (hol.)",sy:"Sýria",sz:"Eswatini",tc:"Turks a Caicos",td:"Čad",tg:"Togo",th:"Thajsko",tj:"Tadžikistan",tk:"Tokelau",tl:"Východný Timor",tm:"Turkménsko",tn:"Tunisko",to:"Tonga",tr:"Turecko",tt:"Trinidad a Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzánia",ua:"Ukrajina",ug:"Uganda",us:"Spojené štáty",uy:"Uruguaj",uz:"Uzbekistan",va:"Vatikán",vc:"Svätý Vincent a Grenadíny",ve:"Venezuela",vg:"Britské Panenské ostrovy",vi:"Americké Panenské ostrovy",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis a Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Južná Afrika",zm:"Zambia",zw:"Zimbabwe"},e={selectedCountryAriaLabel:"Vybraná krajina",noCountrySelected:"Nie je vybratá žiadna krajina",countryListAriaLabel:"Zoznam krajín",searchPlaceholder:"Vyhľadať",zeroSearchResults:"Neboli nájdené žiadne výsledky",oneSearchResult:"1 nájdený výsledok",multipleSearchResults:"${count} nájdených výsledkov",ac:"Ascension",xk:"Kosovo"},i={...r,...e}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[653],{169:(a,o,n)=>{n.r(o),n.d(o,{countryTranslations:()=>r,default:()=>i,interfaceTranslations:()=>e});const r={ad:"Andorra",ae:"Spojené arabské emiráty",af:"Afganistan",ag:"Antigua a Barbuda",ai:"Anguilla",al:"Albánsko",am:"Arménsko",ao:"Angola",ar:"Argentína",as:"Americká Samoa",at:"Rakúsko",au:"Austrália",aw:"Aruba",ax:"Alandy",az:"Azerbajdžan",ba:"Bosna a Hercegovina",bb:"Barbados",bd:"Bangladéš",be:"Belgicko",bf:"Burkina Faso",bg:"Bulharsko",bh:"Bahrajn",bi:"Burundi",bj:"Benin",bl:"Svätý Bartolomej",bm:"Bermudy",bn:"Brunej",bo:"Bolívia",bq:"Karibské Holandsko",br:"Brazília",bs:"Bahamy",bt:"Bhután",bw:"Botswana",by:"Bielorusko",bz:"Belize",ca:"Kanada",cc:"Kokosové ostrovy",cd:"Konžská demokratická republika",cf:"Stredoafrická republika",cg:"Konžská republika",ch:"Švajčiarsko",ci:"Pobrežie Slonoviny",ck:"Cookove ostrovy",cl:"Čile",cm:"Kamerun",cn:"Čína",co:"Kolumbia",cr:"Kostarika",cu:"Kuba",cv:"Kapverdy",cw:"Curaçao",cx:"Vianočný ostrov",cy:"Cyprus",cz:"Česko",de:"Nemecko",dj:"Džibutsko",dk:"Dánsko",dm:"Dominika",do:"Dominikánska republika",dz:"Alžírsko",ec:"Ekvádor",ee:"Estónsko",eg:"Egypt",eh:"Západná Sahara",er:"Eritrea",es:"Španielsko",et:"Etiópia",fi:"Fínsko",fj:"Fidži",fk:"Falklandy",fm:"Mikronézia",fo:"Faerské ostrovy",fr:"Francúzsko",ga:"Gabon",gb:"Spojené kráľovstvo",gd:"Grenada",ge:"Gruzínsko",gf:"Francúzska Guyana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltár",gl:"Grónsko",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Rovníková Guinea",gr:"Grécko",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hongkong – OAO Číny",hn:"Honduras",hr:"Chorvátsko",ht:"Haiti",hu:"Maďarsko",id:"Indonézia",ie:"Írsko",il:"Izrael",im:"Ostrov Man",in:"India",io:"Britské indickooceánske územie",iq:"Irak",ir:"Irán",is:"Island",it:"Taliansko",je:"Jersey",jm:"Jamajka",jo:"Jordánsko",jp:"Japonsko",ke:"Keňa",kg:"Kirgizsko",kh:"Kambodža",ki:"Kiribati",km:"Komory",kn:"Svätý Krištof a Nevis",kp:"Severná Kórea",kr:"Južná Kórea",kw:"Kuvajt",ky:"Kajmanie ostrovy",kz:"Kazachstan",la:"Laos",lb:"Libanon",lc:"Svätá Lucia",li:"Lichtenštajnsko",lk:"Srí Lanka",lr:"Libéria",ls:"Lesotho",lt:"Litva",lu:"Luxembursko",lv:"Lotyšsko",ly:"Líbya",ma:"Maroko",mc:"Monako",md:"Moldavsko",me:"Čierna Hora",mf:"Svätý Martin (fr.)",mg:"Madagaskar",mh:"Marshallove ostrovy",mk:"Severné Macedónsko",ml:"Mali",mm:"Mjanmarsko",mn:"Mongolsko",mo:"Macao – OAO Číny",mp:"Severné Mariány",mq:"Martinik",mr:"Mauritánia",ms:"Montserrat",mt:"Malta",mu:"Maurícius",mv:"Maldivy",mw:"Malawi",mx:"Mexiko",my:"Malajzia",mz:"Mozambik",na:"Namíbia",nc:"Nová Kaledónia",ne:"Niger",nf:"Norfolk",ng:"Nigéria",ni:"Nikaragua",nl:"Holandsko",no:"Nórsko",np:"Nepál",nr:"Nauru",nu:"Niue",nz:"Nový Zéland",om:"Omán",pa:"Panama",pe:"Peru",pf:"Francúzska Polynézia",pg:"Papua-Nová Guinea",ph:"Filipíny",pk:"Pakistan",pl:"Poľsko",pm:"Saint Pierre a Miquelon",pr:"Portoriko",ps:"Palestínske územia",pt:"Portugalsko",pw:"Palau",py:"Paraguaj",qa:"Katar",re:"Réunion",ro:"Rumunsko",rs:"Srbsko",ru:"Rusko",rw:"Rwanda",sa:"Saudská Arábia",sb:"Šalamúnove ostrovy",sc:"Seychely",sd:"Sudán",se:"Švédsko",sg:"Singapur",sh:"Svätá Helena",si:"Slovinsko",sj:"Svalbard a Jan Mayen",sk:"Slovensko",sl:"Sierra Leone",sm:"San Maríno",sn:"Senegal",so:"Somálsko",sr:"Surinam",ss:"Južný Sudán",st:"Svätý Tomáš a Princov ostrov",sv:"Salvádor",sx:"Svätý Martin (hol.)",sy:"Sýria",sz:"Eswatini",tc:"Turks a Caicos",td:"Čad",tg:"Togo",th:"Thajsko",tj:"Tadžikistan",tk:"Tokelau",tl:"Východný Timor",tm:"Turkménsko",tn:"Tunisko",to:"Tonga",tr:"Turecko",tt:"Trinidad a Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzánia",ua:"Ukrajina",ug:"Uganda",us:"Spojené štáty",uy:"Uruguaj",uz:"Uzbekistan",va:"Vatikán",vc:"Svätý Vincent a Grenadíny",ve:"Venezuela",vg:"Britské Panenské ostrovy",vi:"Americké Panenské ostrovy",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis a Futuna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Južná Afrika",zm:"Zambia",zw:"Zimbabwe"},e={selectedCountryAriaLabel:"Vybraná krajina",noCountrySelected:"Nie je vybratá žiadna krajina",countryListAriaLabel:"Zoznam krajín",searchPlaceholder:"Vyhľadať",zeroSearchResults:"Neboli nájdené žiadne výsledky",oneSearchResult:"1 nájdený výsledok",multipleSearchResults:"${count} nájdených výsledkov",ac:"Ascension",xk:"Kosovo"},i={...r,...e}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-sv.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-sv.js index 5d00c2643..0bb143188 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-sv.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-sv.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[416],{620(a,n,e){e.r(n),e.d(n,{countryTranslations:()=>i,default:()=>t,interfaceTranslations:()=>r});const i={ad:"Andorra",ae:"Förenade Arabemiraten",af:"Afghanistan",ag:"Antigua och Barbuda",ai:"Anguilla",al:"Albanien",am:"Armenien",ao:"Angola",ar:"Argentina",as:"Amerikanska Samoa",at:"Österrike",au:"Australien",aw:"Aruba",ax:"Åland",az:"Azerbajdzjan",ba:"Bosnien och Hercegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgien",bf:"Burkina Faso",bg:"Bulgarien",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"S:t Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Karibiska Nederländerna",br:"Brasilien",bs:"Bahamas",bt:"Bhutan",bw:"Botswana",by:"Vitryssland",bz:"Belize",ca:"Kanada",cc:"Kokosöarna",cd:"Kongo-Kinshasa",cf:"Centralafrikanska republiken",cg:"Kongo-Brazzaville",ch:"Schweiz",ci:"Côte d’Ivoire",ck:"Cooköarna",cl:"Chile",cm:"Kamerun",cn:"Kina",co:"Colombia",cr:"Costa Rica",cu:"Kuba",cv:"Kap Verde",cw:"Curaçao",cx:"Julön",cy:"Cypern",cz:"Tjeckien",de:"Tyskland",dj:"Djibouti",dk:"Danmark",dm:"Dominica",do:"Dominikanska republiken",dz:"Algeriet",ec:"Ecuador",ee:"Estland",eg:"Egypten",eh:"Västsahara",er:"Eritrea",es:"Spanien",et:"Etiopien",fi:"Finland",fj:"Fiji",fk:"Falklandsöarna",fm:"Mikronesien",fo:"Färöarna",fr:"Frankrike",ga:"Gabon",gb:"Storbritannien",gd:"Grenada",ge:"Georgien",gf:"Franska Guyana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grönland",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Ekvatorialguinea",gr:"Grekland",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hongkong",hn:"Honduras",hr:"Kroatien",ht:"Haiti",hu:"Ungern",id:"Indonesien",ie:"Irland",il:"Israel",im:"Isle of Man",in:"Indien",io:"Brittiska territoriet i Indiska oceanen",iq:"Irak",ir:"Iran",is:"Island",it:"Italien",je:"Jersey",jm:"Jamaica",jo:"Jordanien",jp:"Japan",ke:"Kenya",kg:"Kirgizistan",kh:"Kambodja",ki:"Kiribati",km:"Komorerna",kn:"S:t Kitts och Nevis",kp:"Nordkorea",kr:"Sydkorea",kw:"Kuwait",ky:"Caymanöarna",kz:"Kazakstan",la:"Laos",lb:"Libanon",lc:"S:t Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litauen",lu:"Luxemburg",lv:"Lettland",ly:"Libyen",ma:"Marocko",mc:"Monaco",md:"Moldavien",me:"Montenegro",mf:"Saint-Martin",mg:"Madagaskar",mh:"Marshallöarna",mk:"Nordmakedonien",ml:"Mali",mm:"Myanmar (Burma)",mn:"Mongoliet",mo:"Macao",mp:"Nordmarianerna",mq:"Martinique",mr:"Mauretanien",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldiverna",mw:"Malawi",mx:"Mexiko",my:"Malaysia",mz:"Moçambique",na:"Namibia",nc:"Nya Kaledonien",ne:"Niger",nf:"Norfolkön",ng:"Nigeria",ni:"Nicaragua",nl:"Nederländerna",no:"Norge",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nya Zeeland",om:"Oman",pa:"Panama",pe:"Peru",pf:"Franska Polynesien",pg:"Papua Nya Guinea",ph:"Filippinerna",pk:"Pakistan",pl:"Polen",pm:"S:t Pierre och Miquelon",pr:"Puerto Rico",ps:"Palestinska territorierna",pt:"Portugal",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Rumänien",rs:"Serbien",ru:"Ryssland",rw:"Rwanda",sa:"Saudiarabien",sb:"Salomonöarna",sc:"Seychellerna",sd:"Sudan",se:"Sverige",sg:"Singapore",sh:"S:t Helena",si:"Slovenien",sj:"Svalbard och Jan Mayen",sk:"Slovakien",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Surinam",ss:"Sydsudan",st:"São Tomé och Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Syrien",sz:"Swaziland",tc:"Turks- och Caicosöarna",td:"Tchad",tg:"Togo",th:"Thailand",tj:"Tadzjikistan",tk:"Tokelau",tl:"Östtimor",tm:"Turkmenistan",tn:"Tunisien",to:"Tonga",tr:"Turkiet",tt:"Trinidad och Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Ukraina",ug:"Uganda",us:"USA",uy:"Uruguay",uz:"Uzbekistan",va:"Vatikanstaten",vc:"S:t Vincent och Grenadinerna",ve:"Venezuela",vg:"Brittiska Jungfruöarna",vi:"Amerikanska Jungfruöarna",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis- och Futunaöarna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Sydafrika",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Valt land",noCountrySelected:"Inget land valt",countryListAriaLabel:"Lista över länder",searchPlaceholder:"Sök",zeroSearchResults:"Inga resultat hittades",oneSearchResult:"1 resultat hittades",multipleSearchResults:"${count} resultat hittades",ac:"Ascension",xk:"Kosovo"},t={...i,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[416],{620:(a,n,e)=>{e.r(n),e.d(n,{countryTranslations:()=>i,default:()=>t,interfaceTranslations:()=>r});const i={ad:"Andorra",ae:"Förenade Arabemiraten",af:"Afghanistan",ag:"Antigua och Barbuda",ai:"Anguilla",al:"Albanien",am:"Armenien",ao:"Angola",ar:"Argentina",as:"Amerikanska Samoa",at:"Österrike",au:"Australien",aw:"Aruba",ax:"Åland",az:"Azerbajdzjan",ba:"Bosnien och Hercegovina",bb:"Barbados",bd:"Bangladesh",be:"Belgien",bf:"Burkina Faso",bg:"Bulgarien",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"S:t Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Karibiska Nederländerna",br:"Brasilien",bs:"Bahamas",bt:"Bhutan",bw:"Botswana",by:"Vitryssland",bz:"Belize",ca:"Kanada",cc:"Kokosöarna",cd:"Kongo-Kinshasa",cf:"Centralafrikanska republiken",cg:"Kongo-Brazzaville",ch:"Schweiz",ci:"Côte d’Ivoire",ck:"Cooköarna",cl:"Chile",cm:"Kamerun",cn:"Kina",co:"Colombia",cr:"Costa Rica",cu:"Kuba",cv:"Kap Verde",cw:"Curaçao",cx:"Julön",cy:"Cypern",cz:"Tjeckien",de:"Tyskland",dj:"Djibouti",dk:"Danmark",dm:"Dominica",do:"Dominikanska republiken",dz:"Algeriet",ec:"Ecuador",ee:"Estland",eg:"Egypten",eh:"Västsahara",er:"Eritrea",es:"Spanien",et:"Etiopien",fi:"Finland",fj:"Fiji",fk:"Falklandsöarna",fm:"Mikronesien",fo:"Färöarna",fr:"Frankrike",ga:"Gabon",gb:"Storbritannien",gd:"Grenada",ge:"Georgien",gf:"Franska Guyana",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Grönland",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Ekvatorialguinea",gr:"Grekland",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hongkong",hn:"Honduras",hr:"Kroatien",ht:"Haiti",hu:"Ungern",id:"Indonesien",ie:"Irland",il:"Israel",im:"Isle of Man",in:"Indien",io:"Brittiska territoriet i Indiska oceanen",iq:"Irak",ir:"Iran",is:"Island",it:"Italien",je:"Jersey",jm:"Jamaica",jo:"Jordanien",jp:"Japan",ke:"Kenya",kg:"Kirgizistan",kh:"Kambodja",ki:"Kiribati",km:"Komorerna",kn:"S:t Kitts och Nevis",kp:"Nordkorea",kr:"Sydkorea",kw:"Kuwait",ky:"Caymanöarna",kz:"Kazakstan",la:"Laos",lb:"Libanon",lc:"S:t Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litauen",lu:"Luxemburg",lv:"Lettland",ly:"Libyen",ma:"Marocko",mc:"Monaco",md:"Moldavien",me:"Montenegro",mf:"Saint-Martin",mg:"Madagaskar",mh:"Marshallöarna",mk:"Nordmakedonien",ml:"Mali",mm:"Myanmar (Burma)",mn:"Mongoliet",mo:"Macao",mp:"Nordmarianerna",mq:"Martinique",mr:"Mauretanien",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldiverna",mw:"Malawi",mx:"Mexiko",my:"Malaysia",mz:"Moçambique",na:"Namibia",nc:"Nya Kaledonien",ne:"Niger",nf:"Norfolkön",ng:"Nigeria",ni:"Nicaragua",nl:"Nederländerna",no:"Norge",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Nya Zeeland",om:"Oman",pa:"Panama",pe:"Peru",pf:"Franska Polynesien",pg:"Papua Nya Guinea",ph:"Filippinerna",pk:"Pakistan",pl:"Polen",pm:"S:t Pierre och Miquelon",pr:"Puerto Rico",ps:"Palestinska territorierna",pt:"Portugal",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Rumänien",rs:"Serbien",ru:"Ryssland",rw:"Rwanda",sa:"Saudiarabien",sb:"Salomonöarna",sc:"Seychellerna",sd:"Sudan",se:"Sverige",sg:"Singapore",sh:"S:t Helena",si:"Slovenien",sj:"Svalbard och Jan Mayen",sk:"Slovakien",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Surinam",ss:"Sydsudan",st:"São Tomé och Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Syrien",sz:"Swaziland",tc:"Turks- och Caicosöarna",td:"Tchad",tg:"Togo",th:"Thailand",tj:"Tadzjikistan",tk:"Tokelau",tl:"Östtimor",tm:"Turkmenistan",tn:"Tunisien",to:"Tonga",tr:"Turkiet",tt:"Trinidad och Tobago",tv:"Tuvalu",tw:"Taiwan",tz:"Tanzania",ua:"Ukraina",ug:"Uganda",us:"USA",uy:"Uruguay",uz:"Uzbekistan",va:"Vatikanstaten",vc:"S:t Vincent och Grenadinerna",ve:"Venezuela",vg:"Brittiska Jungfruöarna",vi:"Amerikanska Jungfruöarna",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis- och Futunaöarna",ws:"Samoa",ye:"Jemen",yt:"Mayotte",za:"Sydafrika",zm:"Zambia",zw:"Zimbabwe"},r={selectedCountryAriaLabel:"Valt land",noCountrySelected:"Inget land valt",countryListAriaLabel:"Lista över länder",searchPlaceholder:"Sök",zeroSearchResults:"Inga resultat hittades",oneSearchResult:"1 resultat hittades",multipleSearchResults:"${count} resultat hittades",ac:"Ascension",xk:"Kosovo"},t={...i,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-te.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-te.js index 25555aac9..d762cfa76 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-te.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-te.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[378],{722(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"ఆండోరా",ae:"యునైటెడ్ అరబ్ ఎమిరేట్స్",af:"ఆఫ్ఘనిస్తాన్",ag:"ఆంటిగ్వా మరియు బార్బుడా",ai:"ఆంగ్విల్లా",al:"అల్బేనియా",am:"ఆర్మేనియా",ao:"అంగోలా",ar:"అర్జెంటీనా",as:"అమెరికన్ సమోవా",at:"ఆస్ట్రియా",au:"ఆస్ట్రేలియా",aw:"అరుబా",ax:"ఆలాండ్ దీవులు",az:"అజర్బైజాన్",ba:"బోస్నియా మరియు హెర్జిగోవినా",bb:"బార్బడోస్",bd:"బంగ్లాదేశ్",be:"బెల్జియం",bf:"బుర్కినా ఫాసో",bg:"బల్గేరియా",bh:"బహ్రెయిన్",bi:"బురుండి",bj:"బెనిన్",bl:"సెయింట్ బర్థెలిమి",bm:"బెర్ముడా",bn:"బ్రూనే",bo:"బొలీవియా",bq:"కరీబియన్ నెదర్లాండ్స్",br:"బ్రెజిల్",bs:"బహామాస్",bt:"భూటాన్",bw:"బోట్స్వానా",by:"బెలారస్",bz:"బెలిజ్",ca:"కెనడా",cc:"కోకోస్ (కీలింగ్) దీవులు",cd:"కాంగో- కిన్షాసా",cf:"సెంట్రల్ ఆఫ్రికన్ రిపబ్లిక్",cg:"కాంగో- బ్రాజావిల్లి",ch:"స్విట్జర్లాండ్",ci:"కోట్ డి ఐవోర్",ck:"కుక్ దీవులు",cl:"చిలీ",cm:"కామెరూన్",cn:"చైనా",co:"కొలంబియా",cr:"కోస్టా రికా",cu:"క్యూబా",cv:"కేప్ వెర్డె",cw:"క్యూరసో",cx:"క్రిస్మస్ దీవి",cy:"సైప్రస్",cz:"చెకియా",de:"జర్మనీ",dj:"జిబౌటి",dk:"డెన్మార్క్",dm:"డొమినికా",do:"డొమినికన్ రిపబ్లిక్",dz:"అల్జీరియా",ec:"ఈక్వడార్",ee:"ఎస్టోనియా",eg:"ఈజిప్ట్",eh:"పడమటి సహారా",er:"ఎరిట్రియా",es:"స్పెయిన్",et:"ఇథియోపియా",fi:"ఫిన్లాండ్",fj:"ఫిజీ",fk:"ఫాక్‌ల్యాండ్ దీవులు",fm:"మైక్రోనేషియా",fo:"ఫారో దీవులు",fr:"ఫ్రాన్స్‌",ga:"గేబన్",gb:"యునైటెడ్ కింగ్‌డమ్",gd:"గ్రెనడా",ge:"జార్జియా",gf:"ఫ్రెంచ్ గియానా",gg:"గర్న్‌సీ",gh:"ఘనా",gi:"జిబ్రాల్టర్",gl:"గ్రీన్‌ల్యాండ్",gm:"గాంబియా",gn:"గినియా",gp:"గ్వాడెలోప్",gq:"ఈక్వటోరియల్ గినియా",gr:"గ్రీస్",gt:"గ్వాటిమాలా",gu:"గ్వామ్",gw:"గినియా-బిస్సావ్",gy:"గయానా",hk:"హాంకాంగ్ ఎస్ఏఆర్ చైనా",hn:"హోండురాస్",hr:"క్రొయేషియా",ht:"హైటి",hu:"హంగేరీ",id:"ఇండోనేషియా",ie:"ఐర్లాండ్",il:"ఇజ్రాయెల్",im:"ఐల్ ఆఫ్ మాన్",in:"భారతదేశం",io:"బ్రిటిష్ హిందూ మహాసముద్ర ప్రాంతం",iq:"ఇరాక్",ir:"ఇరాన్",is:"ఐస్లాండ్",it:"ఇటలీ",je:"జెర్సీ",jm:"జమైకా",jo:"జోర్డాన్",jp:"జపాన్",ke:"కెన్యా",kg:"కిర్గిజిస్తాన్",kh:"కంబోడియా",ki:"కిరిబాటి",km:"కొమొరోస్",kn:"సెయింట్ కిట్స్ మరియు నెవిస్",kp:"ఉత్తర కొరియా",kr:"దక్షిణ కొరియా",kw:"కువైట్",ky:"కేమాన్ దీవులు",kz:"కజకిస్తాన్",la:"లావోస్",lb:"లెబనాన్",lc:"సెయింట్ లూసియా",li:"లిక్టెన్‌స్టెయిన్",lk:"శ్రీలంక",lr:"లైబీరియా",ls:"లెసోతో",lt:"లిథువేనియా",lu:"లక్సెంబర్గ్",lv:"లాత్వియా",ly:"లిబియా",ma:"మొరాకో",mc:"మొనాకో",md:"మోల్డోవా",me:"మాంటెనెగ్రో",mf:"సెయింట్ మార్టిన్",mg:"మడగాస్కర్",mh:"మార్షల్ దీవులు",mk:"ఉత్తర మాసిడోనియా",ml:"మాలి",mm:"మయన్మార్",mn:"మంగోలియా",mo:"మకావ్ ఎస్ఏఆర్ చైనా",mp:"ఉత్తర మరియానా దీవులు",mq:"మార్టినీక్",mr:"మౌరిటేనియా",ms:"మాంట్సెరాట్",mt:"మాల్టా",mu:"మారిషస్",mv:"మాల్దీవులు",mw:"మలావీ",mx:"మెక్సికో",my:"మలేషియా",mz:"మొజాంబిక్",na:"నమీబియా",nc:"క్రొత్త కాలెడోనియా",ne:"నైజర్",nf:"నార్ఫోక్ దీవి",ng:"నైజీరియా",ni:"నికరాగువా",nl:"నెదర్లాండ్స్",no:"నార్వే",np:"నేపాల్",nr:"నౌరు",nu:"నియూ",nz:"న్యూజిలాండ్",om:"ఓమన్",pa:"పనామా",pe:"పెరూ",pf:"ఫ్రెంచ్ పోలినీషియా",pg:"పాపువా న్యూ గినియా",ph:"ఫిలిప్పైన్స్",pk:"పాకిస్తాన్",pl:"పోలాండ్",pm:"సెయింట్ పియెర్ మరియు మికెలాన్",pr:"ప్యూర్టో రికో",ps:"పాలస్తీనియన్ ప్రాంతాలు",pt:"పోర్చుగల్",pw:"పాలావ్",py:"పరాగ్వే",qa:"ఖతార్",re:"రీయూనియన్",ro:"రోమేనియా",rs:"సెర్బియా",ru:"రష్యా",rw:"రువాండా",sa:"సౌదీ అరేబియా",sb:"సోలమన్ దీవులు",sc:"సీషెల్స్",sd:"సూడాన్",se:"స్వీడన్",sg:"సింగపూర్",sh:"సెయింట్ హెలెనా",si:"స్లోవేనియా",sj:"స్వాల్‌బార్డ్ మరియు జాన్ మాయెన్",sk:"స్లొవేకియా",sl:"సియెర్రా లియాన్",sm:"శాన్ మారినో",sn:"సెనెగల్",so:"సోమాలియా",sr:"సూరినామ్",ss:"దక్షిణ సూడాన్",st:"సావో టోమ్ మరియు ప్రిన్సిపి",sv:"ఎల్ సాల్వడోర్",sx:"సింట్ మార్టెన్",sy:"సిరియా",sz:"ఈస్వాటిని",tc:"టర్క్స్ మరియు కైకోస్ దీవులు",td:"చాద్",tg:"టోగో",th:"థాయిలాండ్",tj:"తజికిస్తాన్",tk:"టోకెలావ్",tl:"టిమోర్-లెస్టె",tm:"టర్క్‌మెనిస్తాన్",tn:"ట్యునీషియా",to:"టోంగా",tr:"టర్కీ",tt:"ట్రినిడాడ్ మరియు టొబాగో",tv:"టువాలు",tw:"తైవాన్",tz:"టాంజానియా",ua:"ఉక్రెయిన్",ug:"ఉగాండా",us:"యునైటెడ్ స్టేట్స్",uy:"ఉరుగ్వే",uz:"ఉజ్బెకిస్తాన్",va:"వాటికన్ నగరం",vc:"సెయింట్ విన్సెంట్ మరియు గ్రెనడీన్స్",ve:"వెనిజులా",vg:"బ్రిటిష్ వర్జిన్ దీవులు",vi:"యు.ఎస్. వర్జిన్ దీవులు",vn:"వియత్నాం",vu:"వనాటు",wf:"వాల్లిస్ మరియు ఫుటునా",ws:"సమోవా",ye:"యెమెన్",yt:"మాయొట్",za:"దక్షిణ ఆఫ్రికా",zm:"జాంబియా",zw:"జింబాబ్వే"},c={selectedCountryAriaLabel:"ఎంచుకున్న దేశం",noCountrySelected:"ఏ దేశం ఎంచుకోబడలేదు",countryListAriaLabel:"దేశాల జాబితా",searchPlaceholder:"వెతకండి",zeroSearchResults:"ఎటువంటి ఫలితాలు లభించలేదు",oneSearchResult:"1 ఫలితం కనుగొనబడింది",multipleSearchResults:"${count} ఫలితాలు కనుగొనబడ్డాయి",ac:"అసెన్షన్ ద్వీపం",xk:"కొసోవో"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[378],{722:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"ఆండోరా",ae:"యునైటెడ్ అరబ్ ఎమిరేట్స్",af:"ఆఫ్ఘనిస్తాన్",ag:"ఆంటిగ్వా మరియు బార్బుడా",ai:"ఆంగ్విల్లా",al:"అల్బేనియా",am:"ఆర్మేనియా",ao:"అంగోలా",ar:"అర్జెంటీనా",as:"అమెరికన్ సమోవా",at:"ఆస్ట్రియా",au:"ఆస్ట్రేలియా",aw:"అరుబా",ax:"ఆలాండ్ దీవులు",az:"అజర్బైజాన్",ba:"బోస్నియా మరియు హెర్జిగోవినా",bb:"బార్బడోస్",bd:"బంగ్లాదేశ్",be:"బెల్జియం",bf:"బుర్కినా ఫాసో",bg:"బల్గేరియా",bh:"బహ్రెయిన్",bi:"బురుండి",bj:"బెనిన్",bl:"సెయింట్ బర్థెలిమి",bm:"బెర్ముడా",bn:"బ్రూనే",bo:"బొలీవియా",bq:"కరీబియన్ నెదర్లాండ్స్",br:"బ్రెజిల్",bs:"బహామాస్",bt:"భూటాన్",bw:"బోట్స్వానా",by:"బెలారస్",bz:"బెలిజ్",ca:"కెనడా",cc:"కోకోస్ (కీలింగ్) దీవులు",cd:"కాంగో- కిన్షాసా",cf:"సెంట్రల్ ఆఫ్రికన్ రిపబ్లిక్",cg:"కాంగో- బ్రాజావిల్లి",ch:"స్విట్జర్లాండ్",ci:"కోట్ డి ఐవోర్",ck:"కుక్ దీవులు",cl:"చిలీ",cm:"కామెరూన్",cn:"చైనా",co:"కొలంబియా",cr:"కోస్టా రికా",cu:"క్యూబా",cv:"కేప్ వెర్డె",cw:"క్యూరసో",cx:"క్రిస్మస్ దీవి",cy:"సైప్రస్",cz:"చెకియా",de:"జర్మనీ",dj:"జిబౌటి",dk:"డెన్మార్క్",dm:"డొమినికా",do:"డొమినికన్ రిపబ్లిక్",dz:"అల్జీరియా",ec:"ఈక్వడార్",ee:"ఎస్టోనియా",eg:"ఈజిప్ట్",eh:"పడమటి సహారా",er:"ఎరిట్రియా",es:"స్పెయిన్",et:"ఇథియోపియా",fi:"ఫిన్లాండ్",fj:"ఫిజీ",fk:"ఫాక్‌ల్యాండ్ దీవులు",fm:"మైక్రోనేషియా",fo:"ఫారో దీవులు",fr:"ఫ్రాన్స్‌",ga:"గేబన్",gb:"యునైటెడ్ కింగ్‌డమ్",gd:"గ్రెనడా",ge:"జార్జియా",gf:"ఫ్రెంచ్ గియానా",gg:"గర్న్‌సీ",gh:"ఘనా",gi:"జిబ్రాల్టర్",gl:"గ్రీన్‌ల్యాండ్",gm:"గాంబియా",gn:"గినియా",gp:"గ్వాడెలోప్",gq:"ఈక్వటోరియల్ గినియా",gr:"గ్రీస్",gt:"గ్వాటిమాలా",gu:"గ్వామ్",gw:"గినియా-బిస్సావ్",gy:"గయానా",hk:"హాంకాంగ్ ఎస్ఏఆర్ చైనా",hn:"హోండురాస్",hr:"క్రొయేషియా",ht:"హైటి",hu:"హంగేరీ",id:"ఇండోనేషియా",ie:"ఐర్లాండ్",il:"ఇజ్రాయెల్",im:"ఐల్ ఆఫ్ మాన్",in:"భారతదేశం",io:"బ్రిటిష్ హిందూ మహాసముద్ర ప్రాంతం",iq:"ఇరాక్",ir:"ఇరాన్",is:"ఐస్లాండ్",it:"ఇటలీ",je:"జెర్సీ",jm:"జమైకా",jo:"జోర్డాన్",jp:"జపాన్",ke:"కెన్యా",kg:"కిర్గిజిస్తాన్",kh:"కంబోడియా",ki:"కిరిబాటి",km:"కొమొరోస్",kn:"సెయింట్ కిట్స్ మరియు నెవిస్",kp:"ఉత్తర కొరియా",kr:"దక్షిణ కొరియా",kw:"కువైట్",ky:"కేమాన్ దీవులు",kz:"కజకిస్తాన్",la:"లావోస్",lb:"లెబనాన్",lc:"సెయింట్ లూసియా",li:"లిక్టెన్‌స్టెయిన్",lk:"శ్రీలంక",lr:"లైబీరియా",ls:"లెసోతో",lt:"లిథువేనియా",lu:"లక్సెంబర్గ్",lv:"లాత్వియా",ly:"లిబియా",ma:"మొరాకో",mc:"మొనాకో",md:"మోల్డోవా",me:"మాంటెనెగ్రో",mf:"సెయింట్ మార్టిన్",mg:"మడగాస్కర్",mh:"మార్షల్ దీవులు",mk:"ఉత్తర మాసిడోనియా",ml:"మాలి",mm:"మయన్మార్",mn:"మంగోలియా",mo:"మకావ్ ఎస్ఏఆర్ చైనా",mp:"ఉత్తర మరియానా దీవులు",mq:"మార్టినీక్",mr:"మౌరిటేనియా",ms:"మాంట్సెరాట్",mt:"మాల్టా",mu:"మారిషస్",mv:"మాల్దీవులు",mw:"మలావీ",mx:"మెక్సికో",my:"మలేషియా",mz:"మొజాంబిక్",na:"నమీబియా",nc:"క్రొత్త కాలెడోనియా",ne:"నైజర్",nf:"నార్ఫోక్ దీవి",ng:"నైజీరియా",ni:"నికరాగువా",nl:"నెదర్లాండ్స్",no:"నార్వే",np:"నేపాల్",nr:"నౌరు",nu:"నియూ",nz:"న్యూజిలాండ్",om:"ఓమన్",pa:"పనామా",pe:"పెరూ",pf:"ఫ్రెంచ్ పోలినీషియా",pg:"పాపువా న్యూ గినియా",ph:"ఫిలిప్పైన్స్",pk:"పాకిస్తాన్",pl:"పోలాండ్",pm:"సెయింట్ పియెర్ మరియు మికెలాన్",pr:"ప్యూర్టో రికో",ps:"పాలస్తీనియన్ ప్రాంతాలు",pt:"పోర్చుగల్",pw:"పాలావ్",py:"పరాగ్వే",qa:"ఖతార్",re:"రీయూనియన్",ro:"రోమేనియా",rs:"సెర్బియా",ru:"రష్యా",rw:"రువాండా",sa:"సౌదీ అరేబియా",sb:"సోలమన్ దీవులు",sc:"సీషెల్స్",sd:"సూడాన్",se:"స్వీడన్",sg:"సింగపూర్",sh:"సెయింట్ హెలెనా",si:"స్లోవేనియా",sj:"స్వాల్‌బార్డ్ మరియు జాన్ మాయెన్",sk:"స్లొవేకియా",sl:"సియెర్రా లియాన్",sm:"శాన్ మారినో",sn:"సెనెగల్",so:"సోమాలియా",sr:"సూరినామ్",ss:"దక్షిణ సూడాన్",st:"సావో టోమ్ మరియు ప్రిన్సిపి",sv:"ఎల్ సాల్వడోర్",sx:"సింట్ మార్టెన్",sy:"సిరియా",sz:"ఈస్వాటిని",tc:"టర్క్స్ మరియు కైకోస్ దీవులు",td:"చాద్",tg:"టోగో",th:"థాయిలాండ్",tj:"తజికిస్తాన్",tk:"టోకెలావ్",tl:"టిమోర్-లెస్టె",tm:"టర్క్‌మెనిస్తాన్",tn:"ట్యునీషియా",to:"టోంగా",tr:"టర్కీ",tt:"ట్రినిడాడ్ మరియు టొబాగో",tv:"టువాలు",tw:"తైవాన్",tz:"టాంజానియా",ua:"ఉక్రెయిన్",ug:"ఉగాండా",us:"యునైటెడ్ స్టేట్స్",uy:"ఉరుగ్వే",uz:"ఉజ్బెకిస్తాన్",va:"వాటికన్ నగరం",vc:"సెయింట్ విన్సెంట్ మరియు గ్రెనడీన్స్",ve:"వెనిజులా",vg:"బ్రిటిష్ వర్జిన్ దీవులు",vi:"యు.ఎస్. వర్జిన్ దీవులు",vn:"వియత్నాం",vu:"వనాటు",wf:"వాల్లిస్ మరియు ఫుటునా",ws:"సమోవా",ye:"యెమెన్",yt:"మాయొట్",za:"దక్షిణ ఆఫ్రికా",zm:"జాంబియా",zw:"జింబాబ్వే"},c={selectedCountryAriaLabel:"ఎంచుకున్న దేశం",noCountrySelected:"ఏ దేశం ఎంచుకోబడలేదు",countryListAriaLabel:"దేశాల జాబితా",searchPlaceholder:"వెతకండి",zeroSearchResults:"ఎటువంటి ఫలితాలు లభించలేదు",oneSearchResult:"1 ఫలితం కనుగొనబడింది",multipleSearchResults:"${count} ఫలితాలు కనుగొనబడ్డాయి",ac:"అసెన్షన్ ద్వీపం",xk:"కొసోవో"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-th.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-th.js index c9813f3e2..380aabf3b 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-th.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-th.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[615],{423(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"อันดอร์รา",ae:"สหรัฐอาหรับเอมิเรตส์",af:"อัฟกานิสถาน",ag:"แอนติกาและบาร์บูดา",ai:"แองกวิลลา",al:"แอลเบเนีย",am:"อาร์เมเนีย",ao:"แองโกลา",ar:"อาร์เจนตินา",as:"อเมริกันซามัว",at:"ออสเตรีย",au:"ออสเตรเลีย",aw:"อารูบา",ax:"หมู่เกาะโอลันด์",az:"อาเซอร์ไบจาน",ba:"บอสเนียและเฮอร์เซโกวีนา",bb:"บาร์เบโดส",bd:"บังกลาเทศ",be:"เบลเยียม",bf:"บูร์กินาฟาโซ",bg:"บัลแกเรีย",bh:"บาห์เรน",bi:"บุรุนดี",bj:"เบนิน",bl:"เซนต์บาร์เธเลมี",bm:"เบอร์มิวดา",bn:"บรูไน",bo:"โบลิเวีย",bq:"เนเธอร์แลนด์แคริบเบียน",br:"บราซิล",bs:"บาฮามาส",bt:"ภูฏาน",bw:"บอตสวานา",by:"เบลารุส",bz:"เบลีซ",ca:"แคนาดา",cc:"หมู่เกาะโคโคส (คีลิง)",cd:"คองโก - กินชาซา",cf:"สาธารณรัฐแอฟริกากลาง",cg:"คองโก - บราซซาวิล",ch:"สวิตเซอร์แลนด์",ci:"โกตดิวัวร์",ck:"หมู่เกาะคุก",cl:"ชิลี",cm:"แคเมอรูน",cn:"จีน",co:"โคลอมเบีย",cr:"คอสตาริกา",cu:"คิวบา",cv:"เคปเวิร์ด",cw:"คูราเซา",cx:"เกาะคริสต์มาส",cy:"ไซปรัส",cz:"เช็ก",de:"เยอรมนี",dj:"จิบูตี",dk:"เดนมาร์ก",dm:"โดมินิกา",do:"สาธารณรัฐโดมินิกัน",dz:"แอลจีเรีย",ec:"เอกวาดอร์",ee:"เอสโตเนีย",eg:"อียิปต์",eh:"ซาฮาราตะวันตก",er:"เอริเทรีย",es:"สเปน",et:"เอธิโอเปีย",fi:"ฟินแลนด์",fj:"ฟิจิ",fk:"หมู่เกาะฟอล์กแลนด์",fm:"ไมโครนีเซีย",fo:"หมู่เกาะแฟโร",fr:"ฝรั่งเศส",ga:"กาบอง",gb:"สหราชอาณาจักร",gd:"เกรเนดา",ge:"จอร์เจีย",gf:"เฟรนช์เกียนา",gg:"เกิร์นซีย์",gh:"กานา",gi:"ยิบรอลตาร์",gl:"กรีนแลนด์",gm:"แกมเบีย",gn:"กินี",gp:"กวาเดอลูป",gq:"อิเควทอเรียลกินี",gr:"กรีซ",gt:"กัวเตมาลา",gu:"กวม",gw:"กินี-บิสเซา",gy:"กายอานา",hk:"เขตปกครองพิเศษฮ่องกงแห่งสาธารณรัฐประชาชนจีน",hn:"ฮอนดูรัส",hr:"โครเอเชีย",ht:"เฮติ",hu:"ฮังการี",id:"อินโดนีเซีย",ie:"ไอร์แลนด์",il:"อิสราเอล",im:"เกาะแมน",in:"อินเดีย",io:"บริติชอินเดียนโอเชียนเทร์ริทอรี",iq:"อิรัก",ir:"อิหร่าน",is:"ไอซ์แลนด์",it:"อิตาลี",je:"เจอร์ซีย์",jm:"จาเมกา",jo:"จอร์แดน",jp:"ญี่ปุ่น",ke:"เคนยา",kg:"คีร์กีซสถาน",kh:"กัมพูชา",ki:"คิริบาส",km:"คอโมโรส",kn:"เซนต์คิตส์และเนวิส",kp:"เกาหลีเหนือ",kr:"เกาหลีใต้",kw:"คูเวต",ky:"หมู่เกาะเคย์แมน",kz:"คาซัคสถาน",la:"ลาว",lb:"เลบานอน",lc:"เซนต์ลูเซีย",li:"ลิกเตนสไตน์",lk:"ศรีลังกา",lr:"ไลบีเรีย",ls:"เลโซโท",lt:"ลิทัวเนีย",lu:"ลักเซมเบิร์ก",lv:"ลัตเวีย",ly:"ลิเบีย",ma:"โมร็อกโก",mc:"โมนาโก",md:"มอลโดวา",me:"มอนเตเนโกร",mf:"เซนต์มาร์ติน",mg:"มาดากัสการ์",mh:"หมู่เกาะมาร์แชลล์",mk:"มาซิโดเนียเหนือ",ml:"มาลี",mm:"เมียนมาร์ (พม่า)",mn:"มองโกเลีย",mo:"เขตปกครองพิเศษมาเก๊าแห่งสาธารณรัฐประชาชนจีน",mp:"หมู่เกาะนอร์เทิร์นมาเรียนา",mq:"มาร์ตินีก",mr:"มอริเตเนีย",ms:"มอนต์เซอร์รัต",mt:"มอลตา",mu:"มอริเชียส",mv:"มัลดีฟส์",mw:"มาลาวี",mx:"เม็กซิโก",my:"มาเลเซีย",mz:"โมซัมบิก",na:"นามิเบีย",nc:"นิวแคลิโดเนีย",ne:"ไนเจอร์",nf:"เกาะนอร์ฟอล์ก",ng:"ไนจีเรีย",ni:"นิการากัว",nl:"เนเธอร์แลนด์",no:"นอร์เวย์",np:"เนปาล",nr:"นาอูรู",nu:"นีอูเอ",nz:"นิวซีแลนด์",om:"โอมาน",pa:"ปานามา",pe:"เปรู",pf:"เฟรนช์โปลินีเซีย",pg:"ปาปัวนิวกินี",ph:"ฟิลิปปินส์",pk:"ปากีสถาน",pl:"โปแลนด์",pm:"แซงปีแยร์และมีเกอลง",pr:"เปอร์โตริโก",ps:"ดินแดนปาเลสไตน์",pt:"โปรตุเกส",pw:"ปาเลา",py:"ปารากวัย",qa:"กาตาร์",re:"เรอูนียง",ro:"โรมาเนีย",rs:"เซอร์เบีย",ru:"รัสเซีย",rw:"รวันดา",sa:"ซาอุดีอาระเบีย",sb:"หมู่เกาะโซโลมอน",sc:"เซเชลส์",sd:"ซูดาน",se:"สวีเดน",sg:"สิงคโปร์",sh:"เซนต์เฮเลนา",si:"สโลวีเนีย",sj:"สฟาลบาร์และยานไมเอน",sk:"สโลวะเกีย",sl:"เซียร์ราลีโอน",sm:"ซานมาริโน",sn:"เซเนกัล",so:"โซมาเลีย",sr:"ซูรินาเม",ss:"ซูดานใต้",st:"เซาตูเมและปรินซิปี",sv:"เอลซัลวาดอร์",sx:"ซินต์มาร์เทน",sy:"ซีเรีย",sz:"เอสวาตีนี",tc:"หมู่เกาะเติกส์และหมู่เกาะเคคอส",td:"ชาด",tg:"โตโก",th:"ไทย",tj:"ทาจิกิสถาน",tk:"โตเกเลา",tl:"ติมอร์-เลสเต",tm:"เติร์กเมนิสถาน",tn:"ตูนิเซีย",to:"ตองกา",tr:"ตุรกี",tt:"ตรินิแดดและโตเบโก",tv:"ตูวาลู",tw:"ไต้หวัน",tz:"แทนซาเนีย",ua:"ยูเครน",ug:"ยูกันดา",us:"สหรัฐอเมริกา",uy:"อุรุกวัย",uz:"อุซเบกิสถาน",va:"นครวาติกัน",vc:"เซนต์วินเซนต์และเกรนาดีนส์",ve:"เวเนซุเอลา",vg:"หมู่เกาะบริติชเวอร์จิน",vi:"หมู่เกาะเวอร์จินของสหรัฐอเมริกา",vn:"เวียดนาม",vu:"วานูอาตู",wf:"วาลลิสและฟุตูนา",ws:"ซามัว",ye:"เยเมน",yt:"มายอต",za:"แอฟริกาใต้",zm:"แซมเบีย",zw:"ซิมบับเว"},c={selectedCountryAriaLabel:"ประเทศที่เลือก",noCountrySelected:"ไม่ได้เลือกประเทศ",countryListAriaLabel:"รายชื่อประเทศ",searchPlaceholder:"ค้นหา",zeroSearchResults:"ไม่พบผลลัพธ์",oneSearchResult:"พบผลลัพธ์ 1 รายการ",multipleSearchResults:"พบผลลัพธ์ ${count} รายการ",ac:"เกาะแอสเซนชัน",xk:"โคโซโว"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[615],{423:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"อันดอร์รา",ae:"สหรัฐอาหรับเอมิเรตส์",af:"อัฟกานิสถาน",ag:"แอนติกาและบาร์บูดา",ai:"แองกวิลลา",al:"แอลเบเนีย",am:"อาร์เมเนีย",ao:"แองโกลา",ar:"อาร์เจนตินา",as:"อเมริกันซามัว",at:"ออสเตรีย",au:"ออสเตรเลีย",aw:"อารูบา",ax:"หมู่เกาะโอลันด์",az:"อาเซอร์ไบจาน",ba:"บอสเนียและเฮอร์เซโกวีนา",bb:"บาร์เบโดส",bd:"บังกลาเทศ",be:"เบลเยียม",bf:"บูร์กินาฟาโซ",bg:"บัลแกเรีย",bh:"บาห์เรน",bi:"บุรุนดี",bj:"เบนิน",bl:"เซนต์บาร์เธเลมี",bm:"เบอร์มิวดา",bn:"บรูไน",bo:"โบลิเวีย",bq:"เนเธอร์แลนด์แคริบเบียน",br:"บราซิล",bs:"บาฮามาส",bt:"ภูฏาน",bw:"บอตสวานา",by:"เบลารุส",bz:"เบลีซ",ca:"แคนาดา",cc:"หมู่เกาะโคโคส (คีลิง)",cd:"คองโก - กินชาซา",cf:"สาธารณรัฐแอฟริกากลาง",cg:"คองโก - บราซซาวิล",ch:"สวิตเซอร์แลนด์",ci:"โกตดิวัวร์",ck:"หมู่เกาะคุก",cl:"ชิลี",cm:"แคเมอรูน",cn:"จีน",co:"โคลอมเบีย",cr:"คอสตาริกา",cu:"คิวบา",cv:"เคปเวิร์ด",cw:"คูราเซา",cx:"เกาะคริสต์มาส",cy:"ไซปรัส",cz:"เช็ก",de:"เยอรมนี",dj:"จิบูตี",dk:"เดนมาร์ก",dm:"โดมินิกา",do:"สาธารณรัฐโดมินิกัน",dz:"แอลจีเรีย",ec:"เอกวาดอร์",ee:"เอสโตเนีย",eg:"อียิปต์",eh:"ซาฮาราตะวันตก",er:"เอริเทรีย",es:"สเปน",et:"เอธิโอเปีย",fi:"ฟินแลนด์",fj:"ฟิจิ",fk:"หมู่เกาะฟอล์กแลนด์",fm:"ไมโครนีเซีย",fo:"หมู่เกาะแฟโร",fr:"ฝรั่งเศส",ga:"กาบอง",gb:"สหราชอาณาจักร",gd:"เกรเนดา",ge:"จอร์เจีย",gf:"เฟรนช์เกียนา",gg:"เกิร์นซีย์",gh:"กานา",gi:"ยิบรอลตาร์",gl:"กรีนแลนด์",gm:"แกมเบีย",gn:"กินี",gp:"กวาเดอลูป",gq:"อิเควทอเรียลกินี",gr:"กรีซ",gt:"กัวเตมาลา",gu:"กวม",gw:"กินี-บิสเซา",gy:"กายอานา",hk:"เขตปกครองพิเศษฮ่องกงแห่งสาธารณรัฐประชาชนจีน",hn:"ฮอนดูรัส",hr:"โครเอเชีย",ht:"เฮติ",hu:"ฮังการี",id:"อินโดนีเซีย",ie:"ไอร์แลนด์",il:"อิสราเอล",im:"เกาะแมน",in:"อินเดีย",io:"บริติชอินเดียนโอเชียนเทร์ริทอรี",iq:"อิรัก",ir:"อิหร่าน",is:"ไอซ์แลนด์",it:"อิตาลี",je:"เจอร์ซีย์",jm:"จาเมกา",jo:"จอร์แดน",jp:"ญี่ปุ่น",ke:"เคนยา",kg:"คีร์กีซสถาน",kh:"กัมพูชา",ki:"คิริบาส",km:"คอโมโรส",kn:"เซนต์คิตส์และเนวิส",kp:"เกาหลีเหนือ",kr:"เกาหลีใต้",kw:"คูเวต",ky:"หมู่เกาะเคย์แมน",kz:"คาซัคสถาน",la:"ลาว",lb:"เลบานอน",lc:"เซนต์ลูเซีย",li:"ลิกเตนสไตน์",lk:"ศรีลังกา",lr:"ไลบีเรีย",ls:"เลโซโท",lt:"ลิทัวเนีย",lu:"ลักเซมเบิร์ก",lv:"ลัตเวีย",ly:"ลิเบีย",ma:"โมร็อกโก",mc:"โมนาโก",md:"มอลโดวา",me:"มอนเตเนโกร",mf:"เซนต์มาร์ติน",mg:"มาดากัสการ์",mh:"หมู่เกาะมาร์แชลล์",mk:"มาซิโดเนียเหนือ",ml:"มาลี",mm:"เมียนมาร์ (พม่า)",mn:"มองโกเลีย",mo:"เขตปกครองพิเศษมาเก๊าแห่งสาธารณรัฐประชาชนจีน",mp:"หมู่เกาะนอร์เทิร์นมาเรียนา",mq:"มาร์ตินีก",mr:"มอริเตเนีย",ms:"มอนต์เซอร์รัต",mt:"มอลตา",mu:"มอริเชียส",mv:"มัลดีฟส์",mw:"มาลาวี",mx:"เม็กซิโก",my:"มาเลเซีย",mz:"โมซัมบิก",na:"นามิเบีย",nc:"นิวแคลิโดเนีย",ne:"ไนเจอร์",nf:"เกาะนอร์ฟอล์ก",ng:"ไนจีเรีย",ni:"นิการากัว",nl:"เนเธอร์แลนด์",no:"นอร์เวย์",np:"เนปาล",nr:"นาอูรู",nu:"นีอูเอ",nz:"นิวซีแลนด์",om:"โอมาน",pa:"ปานามา",pe:"เปรู",pf:"เฟรนช์โปลินีเซีย",pg:"ปาปัวนิวกินี",ph:"ฟิลิปปินส์",pk:"ปากีสถาน",pl:"โปแลนด์",pm:"แซงปีแยร์และมีเกอลง",pr:"เปอร์โตริโก",ps:"ดินแดนปาเลสไตน์",pt:"โปรตุเกส",pw:"ปาเลา",py:"ปารากวัย",qa:"กาตาร์",re:"เรอูนียง",ro:"โรมาเนีย",rs:"เซอร์เบีย",ru:"รัสเซีย",rw:"รวันดา",sa:"ซาอุดีอาระเบีย",sb:"หมู่เกาะโซโลมอน",sc:"เซเชลส์",sd:"ซูดาน",se:"สวีเดน",sg:"สิงคโปร์",sh:"เซนต์เฮเลนา",si:"สโลวีเนีย",sj:"สฟาลบาร์และยานไมเอน",sk:"สโลวะเกีย",sl:"เซียร์ราลีโอน",sm:"ซานมาริโน",sn:"เซเนกัล",so:"โซมาเลีย",sr:"ซูรินาเม",ss:"ซูดานใต้",st:"เซาตูเมและปรินซิปี",sv:"เอลซัลวาดอร์",sx:"ซินต์มาร์เทน",sy:"ซีเรีย",sz:"เอสวาตีนี",tc:"หมู่เกาะเติกส์และหมู่เกาะเคคอส",td:"ชาด",tg:"โตโก",th:"ไทย",tj:"ทาจิกิสถาน",tk:"โตเกเลา",tl:"ติมอร์-เลสเต",tm:"เติร์กเมนิสถาน",tn:"ตูนิเซีย",to:"ตองกา",tr:"ตุรกี",tt:"ตรินิแดดและโตเบโก",tv:"ตูวาลู",tw:"ไต้หวัน",tz:"แทนซาเนีย",ua:"ยูเครน",ug:"ยูกันดา",us:"สหรัฐอเมริกา",uy:"อุรุกวัย",uz:"อุซเบกิสถาน",va:"นครวาติกัน",vc:"เซนต์วินเซนต์และเกรนาดีนส์",ve:"เวเนซุเอลา",vg:"หมู่เกาะบริติชเวอร์จิน",vi:"หมู่เกาะเวอร์จินของสหรัฐอเมริกา",vn:"เวียดนาม",vu:"วานูอาตู",wf:"วาลลิสและฟุตูนา",ws:"ซามัว",ye:"เยเมน",yt:"มายอต",za:"แอฟริกาใต้",zm:"แซมเบีย",zw:"ซิมบับเว"},c={selectedCountryAriaLabel:"ประเทศที่เลือก",noCountrySelected:"ไม่ได้เลือกประเทศ",countryListAriaLabel:"รายชื่อประเทศ",searchPlaceholder:"ค้นหา",zeroSearchResults:"ไม่พบผลลัพธ์",oneSearchResult:"พบผลลัพธ์ 1 รายการ",multipleSearchResults:"พบผลลัพธ์ ${count} รายการ",ac:"เกาะแอสเซนชัน",xk:"โคโซโว"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-tr.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-tr.js index cad07b533..90ff5312c 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-tr.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-tr.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[949],{853(a,n,i){i.r(n),i.d(n,{countryTranslations:()=>e,default:()=>l,interfaceTranslations:()=>r});const e={ad:"Andorra",ae:"Birleşik Arap Emirlikleri",af:"Afganistan",ag:"Antigua ve Barbuda",ai:"Anguilla",al:"Arnavutluk",am:"Ermenistan",ao:"Angola",ar:"Arjantin",as:"Amerikan Samoası",at:"Avusturya",au:"Avustralya",aw:"Aruba",ax:"Åland Adaları",az:"Azerbaycan",ba:"Bosna-Hersek",bb:"Barbados",bd:"Bangladeş",be:"Belçika",bf:"Burkina Faso",bg:"Bulgaristan",bh:"Bahreyn",bi:"Burundi",bj:"Benin",bl:"Saint Barthelemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivya",bq:"Karayip Hollandası",br:"Brezilya",bs:"Bahamalar",bt:"Butan",bw:"Botsvana",by:"Belarus",bz:"Belize",ca:"Kanada",cc:"Cocos (Keeling) Adaları",cd:"Kongo - Kinşasa",cf:"Orta Afrika Cumhuriyeti",cg:"Kongo - Brazavil",ch:"İsviçre",ci:"Côte d’Ivoire",ck:"Cook Adaları",cl:"Şili",cm:"Kamerun",cn:"Çin",co:"Kolombiya",cr:"Kosta Rika",cu:"Küba",cv:"Cape Verde",cw:"Curaçao",cx:"Christmas Adası",cy:"Kıbrıs",cz:"Çekya",de:"Almanya",dj:"Cibuti",dk:"Danimarka",dm:"Dominika",do:"Dominik Cumhuriyeti",dz:"Cezayir",ec:"Ekvador",ee:"Estonya",eg:"Mısır",eh:"Batı Sahra",er:"Eritre",es:"İspanya",et:"Etiyopya",fi:"Finlandiya",fj:"Fiji",fk:"Falkland Adaları",fm:"Mikronezya",fo:"Faroe Adaları",fr:"Fransa",ga:"Gabon",gb:"Birleşik Krallık",gd:"Grenada",ge:"Gürcistan",gf:"Fransız Guyanası",gg:"Guernsey",gh:"Gana",gi:"Cebelitarık",gl:"Grönland",gm:"Gambiya",gn:"Gine",gp:"Guadeloupe",gq:"Ekvator Ginesi",gr:"Yunanistan",gt:"Guatemala",gu:"Guam",gw:"Gine-Bissau",gy:"Guyana",hk:"Çin Hong Kong ÖİB",hn:"Honduras",hr:"Hırvatistan",ht:"Haiti",hu:"Macaristan",id:"Endonezya",ie:"İrlanda",il:"İsrail",im:"Man Adası",in:"Hindistan",io:"Britanya Hint Okyanusu Toprakları",iq:"Irak",ir:"İran",is:"İzlanda",it:"İtalya",je:"Jersey",jm:"Jamaika",jo:"Ürdün",jp:"Japonya",ke:"Kenya",kg:"Kırgızistan",kh:"Kamboçya",ki:"Kiribati",km:"Komorlar",kn:"Saint Kitts ve Nevis",kp:"Kuzey Kore",kr:"Güney Kore",kw:"Kuveyt",ky:"Cayman Adaları",kz:"Kazakistan",la:"Laos",lb:"Lübnan",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberya",ls:"Lesotho",lt:"Litvanya",lu:"Lüksemburg",lv:"Letonya",ly:"Libya",ma:"Fas",mc:"Monako",md:"Moldova",me:"Karadağ",mf:"Saint Martin",mg:"Madagaskar",mh:"Marshall Adaları",mk:"Kuzey Makedonya",ml:"Mali",mm:"Myanmar (Burma)",mn:"Moğolistan",mo:"Çin Makao ÖİB",mp:"Kuzey Mariana Adaları",mq:"Martinik",mr:"Moritanya",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldivler",mw:"Malavi",mx:"Meksika",my:"Malezya",mz:"Mozambik",na:"Namibya",nc:"Yeni Kaledonya",ne:"Nijer",nf:"Norfolk Adası",ng:"Nijerya",ni:"Nikaragua",nl:"Hollanda",no:"Norveç",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Yeni Zelanda",om:"Umman",pa:"Panama",pe:"Peru",pf:"Fransız Polinezyası",pg:"Papua Yeni Gine",ph:"Filipinler",pk:"Pakistan",pl:"Polonya",pm:"Saint Pierre ve Miquelon",pr:"Porto Riko",ps:"Filistin Bölgeleri",pt:"Portekiz",pw:"Palau",py:"Paraguay",qa:"Katar",re:"Reunion",ro:"Romanya",rs:"Sırbistan",ru:"Rusya",rw:"Ruanda",sa:"Suudi Arabistan",sb:"Solomon Adaları",sc:"Seyşeller",sd:"Sudan",se:"İsveç",sg:"Singapur",sh:"Saint Helena",si:"Slovenya",sj:"Svalbard ve Jan Mayen",sk:"Slovakya",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somali",sr:"Surinam",ss:"Güney Sudan",st:"Sao Tome ve Principe",sv:"El Salvador",sx:"Sint Maarten",sy:"Suriye",sz:"Esvatini",tc:"Turks ve Caicos Adaları",td:"Çad",tg:"Togo",th:"Tayland",tj:"Tacikistan",tk:"Tokelau",tl:"Timor-Leste",tm:"Türkmenistan",tn:"Tunus",to:"Tonga",tr:"Türkiye",tt:"Trinidad ve Tobago",tv:"Tuvalu",tw:"Tayvan",tz:"Tanzanya",ua:"Ukrayna",ug:"Uganda",us:"Amerika Birleşik Devletleri",uy:"Uruguay",uz:"Özbekistan",va:"Vatikan",vc:"Saint Vincent ve Grenadinler",ve:"Venezuela",vg:"Britanya Virjin Adaları",vi:"ABD Virjin Adaları",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis ve Futuna",ws:"Samoa",ye:"Yemen",yt:"Mayotte",za:"Güney Afrika",zm:"Zambiya",zw:"Zimbabve"},r={selectedCountryAriaLabel:"Seçilen ülke",noCountrySelected:"Hiçbir ülke seçilmedi",countryListAriaLabel:"Ülke listesi",searchPlaceholder:"Aramak",zeroSearchResults:"Sonuç bulunamadı",oneSearchResult:"1 sonuç bulundu",multipleSearchResults:"${count} sonuç bulundu",ac:"Yükselme adası",xk:"Kosova"},l={...e,...r}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[949],{853:(a,n,i)=>{i.r(n),i.d(n,{countryTranslations:()=>e,default:()=>l,interfaceTranslations:()=>r});const e={ad:"Andorra",ae:"Birleşik Arap Emirlikleri",af:"Afganistan",ag:"Antigua ve Barbuda",ai:"Anguilla",al:"Arnavutluk",am:"Ermenistan",ao:"Angola",ar:"Arjantin",as:"Amerikan Samoası",at:"Avusturya",au:"Avustralya",aw:"Aruba",ax:"Åland Adaları",az:"Azerbaycan",ba:"Bosna-Hersek",bb:"Barbados",bd:"Bangladeş",be:"Belçika",bf:"Burkina Faso",bg:"Bulgaristan",bh:"Bahreyn",bi:"Burundi",bj:"Benin",bl:"Saint Barthelemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivya",bq:"Karayip Hollandası",br:"Brezilya",bs:"Bahamalar",bt:"Butan",bw:"Botsvana",by:"Belarus",bz:"Belize",ca:"Kanada",cc:"Cocos (Keeling) Adaları",cd:"Kongo - Kinşasa",cf:"Orta Afrika Cumhuriyeti",cg:"Kongo - Brazavil",ch:"İsviçre",ci:"Côte d’Ivoire",ck:"Cook Adaları",cl:"Şili",cm:"Kamerun",cn:"Çin",co:"Kolombiya",cr:"Kosta Rika",cu:"Küba",cv:"Cape Verde",cw:"Curaçao",cx:"Christmas Adası",cy:"Kıbrıs",cz:"Çekya",de:"Almanya",dj:"Cibuti",dk:"Danimarka",dm:"Dominika",do:"Dominik Cumhuriyeti",dz:"Cezayir",ec:"Ekvador",ee:"Estonya",eg:"Mısır",eh:"Batı Sahra",er:"Eritre",es:"İspanya",et:"Etiyopya",fi:"Finlandiya",fj:"Fiji",fk:"Falkland Adaları",fm:"Mikronezya",fo:"Faroe Adaları",fr:"Fransa",ga:"Gabon",gb:"Birleşik Krallık",gd:"Grenada",ge:"Gürcistan",gf:"Fransız Guyanası",gg:"Guernsey",gh:"Gana",gi:"Cebelitarık",gl:"Grönland",gm:"Gambiya",gn:"Gine",gp:"Guadeloupe",gq:"Ekvator Ginesi",gr:"Yunanistan",gt:"Guatemala",gu:"Guam",gw:"Gine-Bissau",gy:"Guyana",hk:"Çin Hong Kong ÖİB",hn:"Honduras",hr:"Hırvatistan",ht:"Haiti",hu:"Macaristan",id:"Endonezya",ie:"İrlanda",il:"İsrail",im:"Man Adası",in:"Hindistan",io:"Britanya Hint Okyanusu Toprakları",iq:"Irak",ir:"İran",is:"İzlanda",it:"İtalya",je:"Jersey",jm:"Jamaika",jo:"Ürdün",jp:"Japonya",ke:"Kenya",kg:"Kırgızistan",kh:"Kamboçya",ki:"Kiribati",km:"Komorlar",kn:"Saint Kitts ve Nevis",kp:"Kuzey Kore",kr:"Güney Kore",kw:"Kuveyt",ky:"Cayman Adaları",kz:"Kazakistan",la:"Laos",lb:"Lübnan",lc:"Saint Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberya",ls:"Lesotho",lt:"Litvanya",lu:"Lüksemburg",lv:"Letonya",ly:"Libya",ma:"Fas",mc:"Monako",md:"Moldova",me:"Karadağ",mf:"Saint Martin",mg:"Madagaskar",mh:"Marshall Adaları",mk:"Kuzey Makedonya",ml:"Mali",mm:"Myanmar (Burma)",mn:"Moğolistan",mo:"Çin Makao ÖİB",mp:"Kuzey Mariana Adaları",mq:"Martinik",mr:"Moritanya",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldivler",mw:"Malavi",mx:"Meksika",my:"Malezya",mz:"Mozambik",na:"Namibya",nc:"Yeni Kaledonya",ne:"Nijer",nf:"Norfolk Adası",ng:"Nijerya",ni:"Nikaragua",nl:"Hollanda",no:"Norveç",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"Yeni Zelanda",om:"Umman",pa:"Panama",pe:"Peru",pf:"Fransız Polinezyası",pg:"Papua Yeni Gine",ph:"Filipinler",pk:"Pakistan",pl:"Polonya",pm:"Saint Pierre ve Miquelon",pr:"Porto Riko",ps:"Filistin Bölgeleri",pt:"Portekiz",pw:"Palau",py:"Paraguay",qa:"Katar",re:"Reunion",ro:"Romanya",rs:"Sırbistan",ru:"Rusya",rw:"Ruanda",sa:"Suudi Arabistan",sb:"Solomon Adaları",sc:"Seyşeller",sd:"Sudan",se:"İsveç",sg:"Singapur",sh:"Saint Helena",si:"Slovenya",sj:"Svalbard ve Jan Mayen",sk:"Slovakya",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somali",sr:"Surinam",ss:"Güney Sudan",st:"Sao Tome ve Principe",sv:"El Salvador",sx:"Sint Maarten",sy:"Suriye",sz:"Esvatini",tc:"Turks ve Caicos Adaları",td:"Çad",tg:"Togo",th:"Tayland",tj:"Tacikistan",tk:"Tokelau",tl:"Timor-Leste",tm:"Türkmenistan",tn:"Tunus",to:"Tonga",tr:"Türkiye",tt:"Trinidad ve Tobago",tv:"Tuvalu",tw:"Tayvan",tz:"Tanzanya",ua:"Ukrayna",ug:"Uganda",us:"Amerika Birleşik Devletleri",uy:"Uruguay",uz:"Özbekistan",va:"Vatikan",vc:"Saint Vincent ve Grenadinler",ve:"Venezuela",vg:"Britanya Virjin Adaları",vi:"ABD Virjin Adaları",vn:"Vietnam",vu:"Vanuatu",wf:"Wallis ve Futuna",ws:"Samoa",ye:"Yemen",yt:"Mayotte",za:"Güney Afrika",zm:"Zambiya",zw:"Zimbabve"},r={selectedCountryAriaLabel:"Seçilen ülke",noCountrySelected:"Hiçbir ülke seçilmedi",countryListAriaLabel:"Ülke listesi",searchPlaceholder:"Aramak",zeroSearchResults:"Sonuç bulunamadı",oneSearchResult:"1 sonuç bulundu",multipleSearchResults:"${count} sonuç bulundu",ac:"Yükselme adası",xk:"Kosova"},l={...e,...r}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-uk.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-uk.js index 6f498dab1..9541fd1ec 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-uk.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-uk.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[87],{171(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"Андорра",ae:"Обʼєднані Арабські Емірати",af:"Афганістан",ag:"Антиґуа і Барбуда",ai:"Анґілья",al:"Албанія",am:"Вірменія",ao:"Ангола",ar:"Аргентина",as:"Американське Самоа",at:"Австрія",au:"Австралія",aw:"Аруба",ax:"Аландські Острови",az:"Азербайджан",ba:"Боснія і Герцеґовина",bb:"Барбадос",bd:"Бангладеш",be:"Бельґія",bf:"Буркіна-Фасо",bg:"Болгарія",bh:"Бахрейн",bi:"Бурунді",bj:"Бенін",bl:"Сен-Бартельмі",bm:"Бермудські Острови",bn:"Бруней",bo:"Болівія",bq:"Нідерландські Карибські острови",br:"Бразілія",bs:"Багамські Острови",bt:"Бутан",bw:"Ботсвана",by:"Білорусь",bz:"Беліз",ca:"Канада",cc:"Кокосові (Кілінґ) Острови",cd:"Конго – Кіншаса",cf:"Центральноафриканська Республіка",cg:"Конго – Браззавіль",ch:"Швейцарія",ci:"Кот-дʼІвуар",ck:"Острови Кука",cl:"Чілі",cm:"Камерун",cn:"Китай",co:"Колумбія",cr:"Коста-Ріка",cu:"Куба",cv:"Кабо-Верде",cw:"Кюрасао",cx:"Острів Різдва",cy:"Кіпр",cz:"Чехія",de:"Німеччина",dj:"Джибуті",dk:"Данія",dm:"Домініка",do:"Домініканська Республіка",dz:"Алжир",ec:"Еквадор",ee:"Естонія",eg:"Єгипет",eh:"Західна Сахара",er:"Еритрея",es:"Іспанія",et:"Ефіопія",fi:"Фінляндія",fj:"Фіджі",fk:"Фолклендські Острови",fm:"Мікронезія",fo:"Фарерські Острови",fr:"Франція",ga:"Габон",gb:"Велика Британія",gd:"Ґренада",ge:"Грузія",gf:"Французька Ґвіана",gg:"Ґернсі",gh:"Гана",gi:"Ґібралтар",gl:"Ґренландія",gm:"Гамбія",gn:"Гвінея",gp:"Ґваделупа",gq:"Екваторіальна Гвінея",gr:"Греція",gt:"Ґватемала",gu:"Ґуам",gw:"Гвінея-Бісау",gy:"Ґайана",hk:"Гонконг, О.А.Р. Китаю",hn:"Гондурас",hr:"Хорватія",ht:"Гаїті",hu:"Угорщина",id:"Індонезія",ie:"Ірландія",il:"Ізраїль",im:"Острів Мен",in:"Індія",io:"Британська територія в Індійському Океані",iq:"Ірак",ir:"Іран",is:"Ісландія",it:"Італія",je:"Джерсі",jm:"Ямайка",jo:"Йорданія",jp:"Японія",ke:"Кенія",kg:"Киргизстан",kh:"Камбоджа",ki:"Кірібаті",km:"Комори",kn:"Сент-Кітс і Невіс",kp:"Північна Корея",kr:"Південна Корея",kw:"Кувейт",ky:"Кайманові Острови",kz:"Казахстан",la:"Лаос",lb:"Ліван",lc:"Сент-Люсія",li:"Ліхтенштейн",lk:"Шрі-Ланка",lr:"Ліберія",ls:"Лесото",lt:"Литва",lu:"Люксембурґ",lv:"Латвія",ly:"Лівія",ma:"Марокко",mc:"Монако",md:"Молдова",me:"Чорногорія",mf:"Сен-Мартен",mg:"Мадагаскар",mh:"Маршаллові Острови",mk:"Північна Македонія",ml:"Малі",mm:"Мʼянма (Бірма)",mn:"Монголія",mo:"Макао, О.А.Р Китаю",mp:"Північні Маріанські Острови",mq:"Мартініка",mr:"Мавританія",ms:"Монтсеррат",mt:"Мальта",mu:"Маврікій",mv:"Мальдіви",mw:"Малаві",mx:"Мексика",my:"Малайзія",mz:"Мозамбік",na:"Намібія",nc:"Нова Каледонія",ne:"Нігер",nf:"Острів Норфолк",ng:"Нігерія",ni:"Нікараґуа",nl:"Нідерланди",no:"Норвеґія",np:"Непал",nr:"Науру",nu:"Ніуе",nz:"Нова Зеландія",om:"Оман",pa:"Панама",pe:"Перу",pf:"Французька Полінезія",pg:"Папуа-Нова Ґвінея",ph:"Філіппіни",pk:"Пакистан",pl:"Польща",pm:"Сен-Пʼєр і Мікелон",pr:"Пуерто-Ріко",ps:"Палестинські території",pt:"Портуґалія",pw:"Палау",py:"Параґвай",qa:"Катар",re:"Реюньйон",ro:"Румунія",rs:"Сербія",ru:"Росія",rw:"Руанда",sa:"Саудівська Аравія",sb:"Соломонові Острови",sc:"Сейшельські Острови",sd:"Судан",se:"Швеція",sg:"Сінгапур",sh:"Острів Святої Єлени",si:"Словенія",sj:"Шпіцберген та Ян-Маєн",sk:"Словаччина",sl:"Сьєрра-Леоне",sm:"Сан-Маріно",sn:"Сенегал",so:"Сомалі",sr:"Сурінам",ss:"Південний Судан",st:"Сан-Томе і Прінсіпі",sv:"Сальвадор",sx:"Сінт-Мартен",sy:"Сирія",sz:"Есватіні",tc:"Острови Теркс і Кайкос",td:"Чад",tg:"Того",th:"Таїланд",tj:"Таджикистан",tk:"Токелау",tl:"Тімор-Лешті",tm:"Туркменістан",tn:"Туніс",to:"Тонґа",tr:"Туреччина",tt:"Трінідад і Тобаґо",tv:"Тувалу",tw:"Тайвань",tz:"Танзанія",ua:"Україна",ug:"Уганда",us:"Сполучені Штати",uy:"Уруґвай",uz:"Узбекистан",va:"Ватикан",vc:"Сент-Вінсент і Ґренадіни",ve:"Венесуела",vg:"Британські Віргінські острови",vi:"Віргінські острови, США",vn:"Вʼєтнам",vu:"Вануату",wf:"Уолліс і Футуна",ws:"Самоа",ye:"Ємен",yt:"Майотта",za:"Південно-Африканська Республіка",zm:"Замбія",zw:"Зімбабве"},c={selectedCountryAriaLabel:"Обрана країна",noCountrySelected:"Країну не обрано",countryListAriaLabel:"Список країн",searchPlaceholder:"Шукати",zeroSearchResults:"Результатів не знайдено",oneSearchResult:"Знайдено 1 результат",multipleSearchResults:"Знайдено ${count} результатів",ac:"Острів Вознесіння",xk:"Косово"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[87],{171:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"Андорра",ae:"Обʼєднані Арабські Емірати",af:"Афганістан",ag:"Антиґуа і Барбуда",ai:"Анґілья",al:"Албанія",am:"Вірменія",ao:"Ангола",ar:"Аргентина",as:"Американське Самоа",at:"Австрія",au:"Австралія",aw:"Аруба",ax:"Аландські Острови",az:"Азербайджан",ba:"Боснія і Герцеґовина",bb:"Барбадос",bd:"Бангладеш",be:"Бельґія",bf:"Буркіна-Фасо",bg:"Болгарія",bh:"Бахрейн",bi:"Бурунді",bj:"Бенін",bl:"Сен-Бартельмі",bm:"Бермудські Острови",bn:"Бруней",bo:"Болівія",bq:"Нідерландські Карибські острови",br:"Бразілія",bs:"Багамські Острови",bt:"Бутан",bw:"Ботсвана",by:"Білорусь",bz:"Беліз",ca:"Канада",cc:"Кокосові (Кілінґ) Острови",cd:"Конго – Кіншаса",cf:"Центральноафриканська Республіка",cg:"Конго – Браззавіль",ch:"Швейцарія",ci:"Кот-дʼІвуар",ck:"Острови Кука",cl:"Чілі",cm:"Камерун",cn:"Китай",co:"Колумбія",cr:"Коста-Ріка",cu:"Куба",cv:"Кабо-Верде",cw:"Кюрасао",cx:"Острів Різдва",cy:"Кіпр",cz:"Чехія",de:"Німеччина",dj:"Джибуті",dk:"Данія",dm:"Домініка",do:"Домініканська Республіка",dz:"Алжир",ec:"Еквадор",ee:"Естонія",eg:"Єгипет",eh:"Західна Сахара",er:"Еритрея",es:"Іспанія",et:"Ефіопія",fi:"Фінляндія",fj:"Фіджі",fk:"Фолклендські Острови",fm:"Мікронезія",fo:"Фарерські Острови",fr:"Франція",ga:"Габон",gb:"Велика Британія",gd:"Ґренада",ge:"Грузія",gf:"Французька Ґвіана",gg:"Ґернсі",gh:"Гана",gi:"Ґібралтар",gl:"Ґренландія",gm:"Гамбія",gn:"Гвінея",gp:"Ґваделупа",gq:"Екваторіальна Гвінея",gr:"Греція",gt:"Ґватемала",gu:"Ґуам",gw:"Гвінея-Бісау",gy:"Ґайана",hk:"Гонконг, О.А.Р. Китаю",hn:"Гондурас",hr:"Хорватія",ht:"Гаїті",hu:"Угорщина",id:"Індонезія",ie:"Ірландія",il:"Ізраїль",im:"Острів Мен",in:"Індія",io:"Британська територія в Індійському Океані",iq:"Ірак",ir:"Іран",is:"Ісландія",it:"Італія",je:"Джерсі",jm:"Ямайка",jo:"Йорданія",jp:"Японія",ke:"Кенія",kg:"Киргизстан",kh:"Камбоджа",ki:"Кірібаті",km:"Комори",kn:"Сент-Кітс і Невіс",kp:"Північна Корея",kr:"Південна Корея",kw:"Кувейт",ky:"Кайманові Острови",kz:"Казахстан",la:"Лаос",lb:"Ліван",lc:"Сент-Люсія",li:"Ліхтенштейн",lk:"Шрі-Ланка",lr:"Ліберія",ls:"Лесото",lt:"Литва",lu:"Люксембурґ",lv:"Латвія",ly:"Лівія",ma:"Марокко",mc:"Монако",md:"Молдова",me:"Чорногорія",mf:"Сен-Мартен",mg:"Мадагаскар",mh:"Маршаллові Острови",mk:"Північна Македонія",ml:"Малі",mm:"Мʼянма (Бірма)",mn:"Монголія",mo:"Макао, О.А.Р Китаю",mp:"Північні Маріанські Острови",mq:"Мартініка",mr:"Мавританія",ms:"Монтсеррат",mt:"Мальта",mu:"Маврікій",mv:"Мальдіви",mw:"Малаві",mx:"Мексика",my:"Малайзія",mz:"Мозамбік",na:"Намібія",nc:"Нова Каледонія",ne:"Нігер",nf:"Острів Норфолк",ng:"Нігерія",ni:"Нікараґуа",nl:"Нідерланди",no:"Норвеґія",np:"Непал",nr:"Науру",nu:"Ніуе",nz:"Нова Зеландія",om:"Оман",pa:"Панама",pe:"Перу",pf:"Французька Полінезія",pg:"Папуа-Нова Ґвінея",ph:"Філіппіни",pk:"Пакистан",pl:"Польща",pm:"Сен-Пʼєр і Мікелон",pr:"Пуерто-Ріко",ps:"Палестинські території",pt:"Портуґалія",pw:"Палау",py:"Параґвай",qa:"Катар",re:"Реюньйон",ro:"Румунія",rs:"Сербія",ru:"Росія",rw:"Руанда",sa:"Саудівська Аравія",sb:"Соломонові Острови",sc:"Сейшельські Острови",sd:"Судан",se:"Швеція",sg:"Сінгапур",sh:"Острів Святої Єлени",si:"Словенія",sj:"Шпіцберген та Ян-Маєн",sk:"Словаччина",sl:"Сьєрра-Леоне",sm:"Сан-Маріно",sn:"Сенегал",so:"Сомалі",sr:"Сурінам",ss:"Південний Судан",st:"Сан-Томе і Прінсіпі",sv:"Сальвадор",sx:"Сінт-Мартен",sy:"Сирія",sz:"Есватіні",tc:"Острови Теркс і Кайкос",td:"Чад",tg:"Того",th:"Таїланд",tj:"Таджикистан",tk:"Токелау",tl:"Тімор-Лешті",tm:"Туркменістан",tn:"Туніс",to:"Тонґа",tr:"Туреччина",tt:"Трінідад і Тобаґо",tv:"Тувалу",tw:"Тайвань",tz:"Танзанія",ua:"Україна",ug:"Уганда",us:"Сполучені Штати",uy:"Уруґвай",uz:"Узбекистан",va:"Ватикан",vc:"Сент-Вінсент і Ґренадіни",ve:"Венесуела",vg:"Британські Віргінські острови",vi:"Віргінські острови, США",vn:"Вʼєтнам",vu:"Вануату",wf:"Уолліс і Футуна",ws:"Самоа",ye:"Ємен",yt:"Майотта",za:"Південно-Африканська Республіка",zm:"Замбія",zw:"Зімбабве"},c={selectedCountryAriaLabel:"Обрана країна",noCountrySelected:"Країну не обрано",countryListAriaLabel:"Список країн",searchPlaceholder:"Шукати",zeroSearchResults:"Результатів не знайдено",oneSearchResult:"Знайдено 1 результат",multipleSearchResults:"Знайдено ${count} результатів",ac:"Острів Вознесіння",xk:"Косово"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ur.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ur.js index 135c9305c..ebbab5aa0 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ur.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-ur.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[302],{730(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"انڈورا",ae:"متحدہ عرب امارات",af:"افغانستان",ag:"انٹیگوا اور باربودا",ai:"انگوئیلا",al:"البانیہ",am:"آرمینیا",ao:"انگولا",ar:"ارجنٹینا",as:"امریکی ساموآ",at:"آسٹریا",au:"آسٹریلیا",aw:"اروبا",ax:"آلینڈ آئلینڈز",az:"آذربائیجان",ba:"بوسنیا اور ہرزیگووینا",bb:"بارباڈوس",bd:"بنگلہ دیش",be:"بیلجیم",bf:"برکینا فاسو",bg:"بلغاریہ",bh:"بحرین",bi:"برونڈی",bj:"بینن",bl:"سینٹ برتھلیمی",bm:"برمودا",bn:"برونائی",bo:"بولیویا",bq:"کریبیائی نیدرلینڈز",br:"برازیل",bs:"بہاماس",bt:"بھوٹان",bw:"بوتسوانا",by:"بیلاروس",bz:"بیلائز",ca:"کینیڈا",cc:"کوکوس (کیلنگ) جزائر",cd:"کانگو - کنشاسا",cf:"وسط افریقی جمہوریہ",cg:"کانگو - برازاویلے",ch:"سوئٹزر لینڈ",ci:"کوٹ ڈی آئیوری",ck:"کک آئلینڈز",cl:"چلی",cm:"کیمرون",cn:"چین",co:"کولمبیا",cr:"کوسٹا ریکا",cu:"کیوبا",cv:"کیپ ورڈی",cw:"کیوراکاؤ",cx:"جزیرہ کرسمس",cy:"قبرص",cz:"چیکیا",de:"جرمنی",dj:"جبوتی",dk:"ڈنمارک",dm:"ڈومنیکا",do:"جمہوریہ ڈومينيکن",dz:"الجیریا",ec:"ایکواڈور",ee:"اسٹونیا",eg:"مصر",eh:"مغربی صحارا",er:"اریٹیریا",es:"ہسپانیہ",et:"ایتھوپیا",fi:"فن لینڈ",fj:"فجی",fk:"فاکلینڈ جزائر",fm:"مائکرونیشیا",fo:"جزائر فارو",fr:"فرانس",ga:"گیبون",gb:"سلطنت متحدہ",gd:"گریناڈا",ge:"جارجیا",gf:"فرینچ گیانا",gg:"گوئرنسی",gh:"گھانا",gi:"جبل الطارق",gl:"گرین لینڈ",gm:"گیمبیا",gn:"گنی",gp:"گواڈیلوپ",gq:"استوائی گیانا",gr:"یونان",gt:"گواٹے مالا",gu:"گوام",gw:"گنی بساؤ",gy:"گیانا",hk:"ہانگ کانگ SAR چین",hn:"ہونڈاروس",hr:"کروشیا",ht:"ہیٹی",hu:"ہنگری",id:"انڈونیشیا",ie:"آئرلینڈ",il:"اسرائیل",im:"آئل آف مین",in:"بھارت",io:"برطانوی بحر ہند کا علاقہ",iq:"عراق",ir:"ایران",is:"آئس لینڈ",it:"اٹلی",je:"جرسی",jm:"جمائیکا",jo:"اردن",jp:"جاپان",ke:"کینیا",kg:"کرغزستان",kh:"کمبوڈیا",ki:"کریباتی",km:"کوموروس",kn:"سینٹ کٹس اور نیویس",kp:"شمالی کوریا",kr:"جنوبی کوریا",kw:"کویت",ky:"کیمین آئلینڈز",kz:"قزاخستان",la:"لاؤس",lb:"لبنان",lc:"سینٹ لوسیا",li:"لیشٹنسٹائن",lk:"سری لنکا",lr:"لائبیریا",ls:"لیسوتھو",lt:"لیتھونیا",lu:"لکسمبرگ",lv:"لٹویا",ly:"لیبیا",ma:"مراکش",mc:"موناکو",md:"مالدووا",me:"مونٹے نیگرو",mf:"سینٹ مارٹن",mg:"مڈغاسکر",mh:"مارشل آئلینڈز",mk:"شمالی مقدونیہ",ml:"مالی",mm:"میانمار (برما)",mn:"منگولیا",mo:"مکاؤ SAR چین",mp:"شمالی ماریانا آئلینڈز",mq:"مارٹینک",mr:"موریطانیہ",ms:"مونٹسیراٹ",mt:"مالٹا",mu:"ماریشس",mv:"مالدیپ",mw:"ملاوی",mx:"میکسیکو",my:"ملائشیا",mz:"موزمبیق",na:"نامیبیا",nc:"نیو کلیڈونیا",ne:"نائجر",nf:"نارفوک آئلینڈ",ng:"نائجیریا",ni:"نکاراگووا",nl:"نیدر لینڈز",no:"ناروے",np:"نیپال",nr:"نؤرو",nu:"نیئو",nz:"نیوزی لینڈ",om:"عمان",pa:"پانامہ",pe:"پیرو",pf:"فرانسیسی پولینیشیا",pg:"پاپوآ نیو گنی",ph:"فلپائن",pk:"پاکستان",pl:"پولینڈ",pm:"سینٹ پیئر اور میکلیئون",pr:"پیورٹو ریکو",ps:"فلسطینی خطے",pt:"پرتگال",pw:"پلاؤ",py:"پیراگوئے",qa:"قطر",re:"ری یونین",ro:"رومانیہ",rs:"سربیا",ru:"روس",rw:"روانڈا",sa:"سعودی عرب",sb:"سولومن آئلینڈز",sc:"سشلیز",sd:"سوڈان",se:"سویڈن",sg:"سنگاپور",sh:"سینٹ ہیلینا",si:"سلووینیا",sj:"سوالبرڈ اور جان ماین",sk:"سلوواکیہ",sl:"سیرالیون",sm:"سان مارینو",sn:"سینیگل",so:"صومالیہ",sr:"سورینام",ss:"جنوبی سوڈان",st:"ساؤ ٹومے اور پرنسپے",sv:"ال سلواڈور",sx:"سنٹ مارٹن",sy:"شام",sz:"سواتنی",tc:"ٹرکس اور کیکوس جزائر",td:"چاڈ",tg:"ٹوگو",th:"تھائی لینڈ",tj:"تاجکستان",tk:"ٹوکیلاؤ",tl:"تیمور لیسٹ",tm:"ترکمانستان",tn:"تونس",to:"ٹونگا",tr:"ترکی",tt:"ترینیداد اور ٹوباگو",tv:"ٹووالو",tw:"تائیوان",tz:"تنزانیہ",ua:"یوکرین",ug:"یوگنڈا",us:"ریاست ہائے متحدہ امریکہ",uy:"یوروگوئے",uz:"ازبکستان",va:"ویٹیکن سٹی",vc:"سینٹ ونسنٹ اور گرینیڈائنز",ve:"وینزوئیلا",vg:"برٹش ورجن آئلینڈز",vi:"امریکی ورجن آئلینڈز",vn:"ویتنام",vu:"وینوآٹو",wf:"ویلیز اور فیوٹیونا",ws:"ساموآ",ye:"یمن",yt:"مایوٹ",za:"جنوبی افریقہ",zm:"زامبیا",zw:"زمبابوے"},c={selectedCountryAriaLabel:"منتخب ملک",noCountrySelected:"کوئی ملک منتخب نہیں کیا گیا۔",countryListAriaLabel:"ممالک کی فہرست",searchPlaceholder:"تلاش کریں۔",zeroSearchResults:"کوئی نتیجہ نہیں",oneSearchResult:"1 نتیجہ ملا",multipleSearchResults:"${count} نتائج ملے",ac:"ایسنشن جزیرہ",xk:"کوسوو"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[302],{730:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"انڈورا",ae:"متحدہ عرب امارات",af:"افغانستان",ag:"انٹیگوا اور باربودا",ai:"انگوئیلا",al:"البانیہ",am:"آرمینیا",ao:"انگولا",ar:"ارجنٹینا",as:"امریکی ساموآ",at:"آسٹریا",au:"آسٹریلیا",aw:"اروبا",ax:"آلینڈ آئلینڈز",az:"آذربائیجان",ba:"بوسنیا اور ہرزیگووینا",bb:"بارباڈوس",bd:"بنگلہ دیش",be:"بیلجیم",bf:"برکینا فاسو",bg:"بلغاریہ",bh:"بحرین",bi:"برونڈی",bj:"بینن",bl:"سینٹ برتھلیمی",bm:"برمودا",bn:"برونائی",bo:"بولیویا",bq:"کریبیائی نیدرلینڈز",br:"برازیل",bs:"بہاماس",bt:"بھوٹان",bw:"بوتسوانا",by:"بیلاروس",bz:"بیلائز",ca:"کینیڈا",cc:"کوکوس (کیلنگ) جزائر",cd:"کانگو - کنشاسا",cf:"وسط افریقی جمہوریہ",cg:"کانگو - برازاویلے",ch:"سوئٹزر لینڈ",ci:"کوٹ ڈی آئیوری",ck:"کک آئلینڈز",cl:"چلی",cm:"کیمرون",cn:"چین",co:"کولمبیا",cr:"کوسٹا ریکا",cu:"کیوبا",cv:"کیپ ورڈی",cw:"کیوراکاؤ",cx:"جزیرہ کرسمس",cy:"قبرص",cz:"چیکیا",de:"جرمنی",dj:"جبوتی",dk:"ڈنمارک",dm:"ڈومنیکا",do:"جمہوریہ ڈومينيکن",dz:"الجیریا",ec:"ایکواڈور",ee:"اسٹونیا",eg:"مصر",eh:"مغربی صحارا",er:"اریٹیریا",es:"ہسپانیہ",et:"ایتھوپیا",fi:"فن لینڈ",fj:"فجی",fk:"فاکلینڈ جزائر",fm:"مائکرونیشیا",fo:"جزائر فارو",fr:"فرانس",ga:"گیبون",gb:"سلطنت متحدہ",gd:"گریناڈا",ge:"جارجیا",gf:"فرینچ گیانا",gg:"گوئرنسی",gh:"گھانا",gi:"جبل الطارق",gl:"گرین لینڈ",gm:"گیمبیا",gn:"گنی",gp:"گواڈیلوپ",gq:"استوائی گیانا",gr:"یونان",gt:"گواٹے مالا",gu:"گوام",gw:"گنی بساؤ",gy:"گیانا",hk:"ہانگ کانگ SAR چین",hn:"ہونڈاروس",hr:"کروشیا",ht:"ہیٹی",hu:"ہنگری",id:"انڈونیشیا",ie:"آئرلینڈ",il:"اسرائیل",im:"آئل آف مین",in:"بھارت",io:"برطانوی بحر ہند کا علاقہ",iq:"عراق",ir:"ایران",is:"آئس لینڈ",it:"اٹلی",je:"جرسی",jm:"جمائیکا",jo:"اردن",jp:"جاپان",ke:"کینیا",kg:"کرغزستان",kh:"کمبوڈیا",ki:"کریباتی",km:"کوموروس",kn:"سینٹ کٹس اور نیویس",kp:"شمالی کوریا",kr:"جنوبی کوریا",kw:"کویت",ky:"کیمین آئلینڈز",kz:"قزاخستان",la:"لاؤس",lb:"لبنان",lc:"سینٹ لوسیا",li:"لیشٹنسٹائن",lk:"سری لنکا",lr:"لائبیریا",ls:"لیسوتھو",lt:"لیتھونیا",lu:"لکسمبرگ",lv:"لٹویا",ly:"لیبیا",ma:"مراکش",mc:"موناکو",md:"مالدووا",me:"مونٹے نیگرو",mf:"سینٹ مارٹن",mg:"مڈغاسکر",mh:"مارشل آئلینڈز",mk:"شمالی مقدونیہ",ml:"مالی",mm:"میانمار (برما)",mn:"منگولیا",mo:"مکاؤ SAR چین",mp:"شمالی ماریانا آئلینڈز",mq:"مارٹینک",mr:"موریطانیہ",ms:"مونٹسیراٹ",mt:"مالٹا",mu:"ماریشس",mv:"مالدیپ",mw:"ملاوی",mx:"میکسیکو",my:"ملائشیا",mz:"موزمبیق",na:"نامیبیا",nc:"نیو کلیڈونیا",ne:"نائجر",nf:"نارفوک آئلینڈ",ng:"نائجیریا",ni:"نکاراگووا",nl:"نیدر لینڈز",no:"ناروے",np:"نیپال",nr:"نؤرو",nu:"نیئو",nz:"نیوزی لینڈ",om:"عمان",pa:"پانامہ",pe:"پیرو",pf:"فرانسیسی پولینیشیا",pg:"پاپوآ نیو گنی",ph:"فلپائن",pk:"پاکستان",pl:"پولینڈ",pm:"سینٹ پیئر اور میکلیئون",pr:"پیورٹو ریکو",ps:"فلسطینی خطے",pt:"پرتگال",pw:"پلاؤ",py:"پیراگوئے",qa:"قطر",re:"ری یونین",ro:"رومانیہ",rs:"سربیا",ru:"روس",rw:"روانڈا",sa:"سعودی عرب",sb:"سولومن آئلینڈز",sc:"سشلیز",sd:"سوڈان",se:"سویڈن",sg:"سنگاپور",sh:"سینٹ ہیلینا",si:"سلووینیا",sj:"سوالبرڈ اور جان ماین",sk:"سلوواکیہ",sl:"سیرالیون",sm:"سان مارینو",sn:"سینیگل",so:"صومالیہ",sr:"سورینام",ss:"جنوبی سوڈان",st:"ساؤ ٹومے اور پرنسپے",sv:"ال سلواڈور",sx:"سنٹ مارٹن",sy:"شام",sz:"سواتنی",tc:"ٹرکس اور کیکوس جزائر",td:"چاڈ",tg:"ٹوگو",th:"تھائی لینڈ",tj:"تاجکستان",tk:"ٹوکیلاؤ",tl:"تیمور لیسٹ",tm:"ترکمانستان",tn:"تونس",to:"ٹونگا",tr:"ترکی",tt:"ترینیداد اور ٹوباگو",tv:"ٹووالو",tw:"تائیوان",tz:"تنزانیہ",ua:"یوکرین",ug:"یوگنڈا",us:"ریاست ہائے متحدہ امریکہ",uy:"یوروگوئے",uz:"ازبکستان",va:"ویٹیکن سٹی",vc:"سینٹ ونسنٹ اور گرینیڈائنز",ve:"وینزوئیلا",vg:"برٹش ورجن آئلینڈز",vi:"امریکی ورجن آئلینڈز",vn:"ویتنام",vu:"وینوآٹو",wf:"ویلیز اور فیوٹیونا",ws:"ساموآ",ye:"یمن",yt:"مایوٹ",za:"جنوبی افریقہ",zm:"زامبیا",zw:"زمبابوے"},c={selectedCountryAriaLabel:"منتخب ملک",noCountrySelected:"کوئی ملک منتخب نہیں کیا گیا۔",countryListAriaLabel:"ممالک کی فہرست",searchPlaceholder:"تلاش کریں۔",zeroSearchResults:"کوئی نتیجہ نہیں",oneSearchResult:"1 نتیجہ ملا",multipleSearchResults:"${count} نتائج ملے",ac:"ایسنشن جزیرہ",xk:"کوسوو"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-vi.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-vi.js index d03118bcd..b975ac32f 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-vi.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-vi.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[580],{388(a,n,i){i.r(n),i.d(n,{countryTranslations:()=>e,default:()=>r,interfaceTranslations:()=>o});const e={ad:"Andorra",ae:"Các Tiểu Vương quốc Ả Rập Thống nhất",af:"Afghanistan",ag:"Antigua và Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentina",as:"Samoa thuộc Mỹ",at:"Áo",au:"Australia",aw:"Aruba",ax:"Quần đảo Åland",az:"Azerbaijan",ba:"Bosnia và Herzegovina",bb:"Barbados",bd:"Bangladesh",be:"Bỉ",bf:"Burkina Faso",bg:"Bulgaria",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"St. Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Ca-ri-bê Hà Lan",br:"Brazil",bs:"Bahamas",bt:"Bhutan",bw:"Botswana",by:"Belarus",bz:"Belize",ca:"Canada",cc:"Quần đảo Cocos (Keeling)",cd:"Congo - Kinshasa",cf:"Cộng hòa Trung Phi",cg:"Congo - Brazzaville",ch:"Thụy Sĩ",ci:"Côte d’Ivoire",ck:"Quần đảo Cook",cl:"Chile",cm:"Cameroon",cn:"Trung Quốc",co:"Colombia",cr:"Costa Rica",cu:"Cuba",cv:"Cape Verde",cw:"Curaçao",cx:"Đảo Giáng Sinh",cy:"Síp",cz:"Séc",de:"Đức",dj:"Djibouti",dk:"Đan Mạch",dm:"Dominica",do:"Cộng hòa Dominica",dz:"Algeria",ec:"Ecuador",ee:"Estonia",eg:"Ai Cập",eh:"Tây Sahara",er:"Eritrea",es:"Tây Ban Nha",et:"Ethiopia",fi:"Phần Lan",fj:"Fiji",fk:"Quần đảo Falkland",fm:"Micronesia",fo:"Quần đảo Faroe",fr:"Pháp",ga:"Gabon",gb:"Vương quốc Anh",gd:"Grenada",ge:"Georgia",gf:"Guiana thuộc Pháp",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Greenland",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Guinea Xích Đạo",gr:"Hy Lạp",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hồng Kông, Trung Quốc",hn:"Honduras",hr:"Croatia",ht:"Haiti",hu:"Hungary",id:"Indonesia",ie:"Ireland",il:"Israel",im:"Đảo Man",in:"Ấn Độ",io:"Lãnh thổ Ấn Độ Dương thuộc Anh",iq:"Iraq",ir:"Iran",is:"Iceland",it:"Italy",je:"Jersey",jm:"Jamaica",jo:"Jordan",jp:"Nhật Bản",ke:"Kenya",kg:"Kyrgyzstan",kh:"Campuchia",ki:"Kiribati",km:"Comoros",kn:"St. Kitts và Nevis",kp:"Triều Tiên",kr:"Hàn Quốc",kw:"Kuwait",ky:"Quần đảo Cayman",kz:"Kazakhstan",la:"Lào",lb:"Li-băng",lc:"St. Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litva",lu:"Luxembourg",lv:"Latvia",ly:"Libya",ma:"Ma-rốc",mc:"Monaco",md:"Moldova",me:"Montenegro",mf:"St. Martin",mg:"Madagascar",mh:"Quần đảo Marshall",mk:"Bắc Macedonia",ml:"Mali",mm:"Myanmar (Miến Điện)",mn:"Mông Cổ",mo:"Macao, Trung Quốc",mp:"Quần đảo Bắc Mariana",mq:"Martinique",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldives",mw:"Malawi",mx:"Mexico",my:"Malaysia",mz:"Mozambique",na:"Namibia",nc:"New Caledonia",ne:"Niger",nf:"Đảo Norfolk",ng:"Nigeria",ni:"Nicaragua",nl:"Hà Lan",no:"Na Uy",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"New Zealand",om:"Oman",pa:"Panama",pe:"Peru",pf:"Polynesia thuộc Pháp",pg:"Papua New Guinea",ph:"Philippines",pk:"Pakistan",pl:"Ba Lan",pm:"Saint Pierre và Miquelon",pr:"Puerto Rico",ps:"Lãnh thổ Palestine",pt:"Bồ Đào Nha",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Romania",rs:"Serbia",ru:"Nga",rw:"Rwanda",sa:"Ả Rập Xê-út",sb:"Quần đảo Solomon",sc:"Seychelles",sd:"Sudan",se:"Thụy Điển",sg:"Singapore",sh:"St. Helena",si:"Slovenia",sj:"Svalbard và Jan Mayen",sk:"Slovakia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Suriname",ss:"Nam Sudan",st:"São Tomé và Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Syria",sz:"Swaziland",tc:"Quần đảo Turks và Caicos",td:"Chad",tg:"Togo",th:"Thái Lan",tj:"Tajikistan",tk:"Tokelau",tl:"Timor-Leste",tm:"Turkmenistan",tn:"Tunisia",to:"Tonga",tr:"Thổ Nhĩ Kỳ",tt:"Trinidad và Tobago",tv:"Tuvalu",tw:"Đài Loan",tz:"Tanzania",ua:"Ukraina",ug:"Uganda",us:"Hoa Kỳ",uy:"Uruguay",uz:"Uzbekistan",va:"Thành Vatican",vc:"St. Vincent và Grenadines",ve:"Venezuela",vg:"Quần đảo Virgin thuộc Anh",vi:"Quần đảo Virgin thuộc Mỹ",vn:"Việt Nam",vu:"Vanuatu",wf:"Wallis và Futuna",ws:"Samoa",ye:"Yemen",yt:"Mayotte",za:"Nam Phi",zm:"Zambia",zw:"Zimbabwe"},o={selectedCountryAriaLabel:"Quốc gia đã chọn",noCountrySelected:"Không có quốc gia nào được chọn",countryListAriaLabel:"Danh sách các quốc gia",searchPlaceholder:"Khám xét",zeroSearchResults:"Không tìm thấy kết quả nào",oneSearchResult:"Đã tìm thấy 1 kết quả",multipleSearchResults:"Đã tìm thấy ${count} kết quả",ac:"Đảo Ascension",xk:"Kosovo"},r={...e,...o}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[580],{388:(a,n,i)=>{i.r(n),i.d(n,{countryTranslations:()=>e,default:()=>r,interfaceTranslations:()=>o});const e={ad:"Andorra",ae:"Các Tiểu Vương quốc Ả Rập Thống nhất",af:"Afghanistan",ag:"Antigua và Barbuda",ai:"Anguilla",al:"Albania",am:"Armenia",ao:"Angola",ar:"Argentina",as:"Samoa thuộc Mỹ",at:"Áo",au:"Australia",aw:"Aruba",ax:"Quần đảo Åland",az:"Azerbaijan",ba:"Bosnia và Herzegovina",bb:"Barbados",bd:"Bangladesh",be:"Bỉ",bf:"Burkina Faso",bg:"Bulgaria",bh:"Bahrain",bi:"Burundi",bj:"Benin",bl:"St. Barthélemy",bm:"Bermuda",bn:"Brunei",bo:"Bolivia",bq:"Ca-ri-bê Hà Lan",br:"Brazil",bs:"Bahamas",bt:"Bhutan",bw:"Botswana",by:"Belarus",bz:"Belize",ca:"Canada",cc:"Quần đảo Cocos (Keeling)",cd:"Congo - Kinshasa",cf:"Cộng hòa Trung Phi",cg:"Congo - Brazzaville",ch:"Thụy Sĩ",ci:"Côte d’Ivoire",ck:"Quần đảo Cook",cl:"Chile",cm:"Cameroon",cn:"Trung Quốc",co:"Colombia",cr:"Costa Rica",cu:"Cuba",cv:"Cape Verde",cw:"Curaçao",cx:"Đảo Giáng Sinh",cy:"Síp",cz:"Séc",de:"Đức",dj:"Djibouti",dk:"Đan Mạch",dm:"Dominica",do:"Cộng hòa Dominica",dz:"Algeria",ec:"Ecuador",ee:"Estonia",eg:"Ai Cập",eh:"Tây Sahara",er:"Eritrea",es:"Tây Ban Nha",et:"Ethiopia",fi:"Phần Lan",fj:"Fiji",fk:"Quần đảo Falkland",fm:"Micronesia",fo:"Quần đảo Faroe",fr:"Pháp",ga:"Gabon",gb:"Vương quốc Anh",gd:"Grenada",ge:"Georgia",gf:"Guiana thuộc Pháp",gg:"Guernsey",gh:"Ghana",gi:"Gibraltar",gl:"Greenland",gm:"Gambia",gn:"Guinea",gp:"Guadeloupe",gq:"Guinea Xích Đạo",gr:"Hy Lạp",gt:"Guatemala",gu:"Guam",gw:"Guinea-Bissau",gy:"Guyana",hk:"Hồng Kông, Trung Quốc",hn:"Honduras",hr:"Croatia",ht:"Haiti",hu:"Hungary",id:"Indonesia",ie:"Ireland",il:"Israel",im:"Đảo Man",in:"Ấn Độ",io:"Lãnh thổ Ấn Độ Dương thuộc Anh",iq:"Iraq",ir:"Iran",is:"Iceland",it:"Italy",je:"Jersey",jm:"Jamaica",jo:"Jordan",jp:"Nhật Bản",ke:"Kenya",kg:"Kyrgyzstan",kh:"Campuchia",ki:"Kiribati",km:"Comoros",kn:"St. Kitts và Nevis",kp:"Triều Tiên",kr:"Hàn Quốc",kw:"Kuwait",ky:"Quần đảo Cayman",kz:"Kazakhstan",la:"Lào",lb:"Li-băng",lc:"St. Lucia",li:"Liechtenstein",lk:"Sri Lanka",lr:"Liberia",ls:"Lesotho",lt:"Litva",lu:"Luxembourg",lv:"Latvia",ly:"Libya",ma:"Ma-rốc",mc:"Monaco",md:"Moldova",me:"Montenegro",mf:"St. Martin",mg:"Madagascar",mh:"Quần đảo Marshall",mk:"Bắc Macedonia",ml:"Mali",mm:"Myanmar (Miến Điện)",mn:"Mông Cổ",mo:"Macao, Trung Quốc",mp:"Quần đảo Bắc Mariana",mq:"Martinique",mr:"Mauritania",ms:"Montserrat",mt:"Malta",mu:"Mauritius",mv:"Maldives",mw:"Malawi",mx:"Mexico",my:"Malaysia",mz:"Mozambique",na:"Namibia",nc:"New Caledonia",ne:"Niger",nf:"Đảo Norfolk",ng:"Nigeria",ni:"Nicaragua",nl:"Hà Lan",no:"Na Uy",np:"Nepal",nr:"Nauru",nu:"Niue",nz:"New Zealand",om:"Oman",pa:"Panama",pe:"Peru",pf:"Polynesia thuộc Pháp",pg:"Papua New Guinea",ph:"Philippines",pk:"Pakistan",pl:"Ba Lan",pm:"Saint Pierre và Miquelon",pr:"Puerto Rico",ps:"Lãnh thổ Palestine",pt:"Bồ Đào Nha",pw:"Palau",py:"Paraguay",qa:"Qatar",re:"Réunion",ro:"Romania",rs:"Serbia",ru:"Nga",rw:"Rwanda",sa:"Ả Rập Xê-út",sb:"Quần đảo Solomon",sc:"Seychelles",sd:"Sudan",se:"Thụy Điển",sg:"Singapore",sh:"St. Helena",si:"Slovenia",sj:"Svalbard và Jan Mayen",sk:"Slovakia",sl:"Sierra Leone",sm:"San Marino",sn:"Senegal",so:"Somalia",sr:"Suriname",ss:"Nam Sudan",st:"São Tomé và Príncipe",sv:"El Salvador",sx:"Sint Maarten",sy:"Syria",sz:"Swaziland",tc:"Quần đảo Turks và Caicos",td:"Chad",tg:"Togo",th:"Thái Lan",tj:"Tajikistan",tk:"Tokelau",tl:"Timor-Leste",tm:"Turkmenistan",tn:"Tunisia",to:"Tonga",tr:"Thổ Nhĩ Kỳ",tt:"Trinidad và Tobago",tv:"Tuvalu",tw:"Đài Loan",tz:"Tanzania",ua:"Ukraina",ug:"Uganda",us:"Hoa Kỳ",uy:"Uruguay",uz:"Uzbekistan",va:"Thành Vatican",vc:"St. Vincent và Grenadines",ve:"Venezuela",vg:"Quần đảo Virgin thuộc Anh",vi:"Quần đảo Virgin thuộc Mỹ",vn:"Việt Nam",vu:"Vanuatu",wf:"Wallis và Futuna",ws:"Samoa",ye:"Yemen",yt:"Mayotte",za:"Nam Phi",zm:"Zambia",zw:"Zimbabwe"},o={selectedCountryAriaLabel:"Quốc gia đã chọn",noCountrySelected:"Không có quốc gia nào được chọn",countryListAriaLabel:"Danh sách các quốc gia",searchPlaceholder:"Khám xét",zeroSearchResults:"Không tìm thấy kết quả nào",oneSearchResult:"Đã tìm thấy 1 kết quả",multipleSearchResults:"Đã tìm thấy ${count} kết quả",ac:"Đảo Ascension",xk:"Kosovo"},r={...e,...o}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-zh.js b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-zh.js index 5d6ff58c4..d16e7082f 100644 --- a/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-zh.js +++ b/modules/blocks-v2/phone-field/assets/build/frontend/i18n/phone-i18n-zh.js @@ -1 +1 @@ -"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[217],{721(e,s,t){t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"安道尔",ae:"阿拉伯联合酋长国",af:"阿富汗",ag:"安提瓜和巴布达",ai:"安圭拉",al:"阿尔巴尼亚",am:"亚美尼亚",ao:"安哥拉",ar:"阿根廷",as:"美属萨摩亚",at:"奥地利",au:"澳大利亚",aw:"阿鲁巴",ax:"奥兰群岛",az:"阿塞拜疆",ba:"波斯尼亚和黑塞哥维那",bb:"巴巴多斯",bd:"孟加拉国",be:"比利时",bf:"布基纳法索",bg:"保加利亚",bh:"巴林",bi:"布隆迪",bj:"贝宁",bl:"圣巴泰勒米",bm:"百慕大",bn:"文莱",bo:"玻利维亚",bq:"荷属加勒比区",br:"巴西",bs:"巴哈马",bt:"不丹",bw:"博茨瓦纳",by:"白俄罗斯",bz:"伯利兹",ca:"加拿大",cc:"科科斯(基林)群岛",cd:"刚果(金)",cf:"中非共和国",cg:"刚果(布)",ch:"瑞士",ci:"科特迪瓦",ck:"库克群岛",cl:"智利",cm:"喀麦隆",cn:"中国",co:"哥伦比亚",cr:"哥斯达黎加",cu:"古巴",cv:"佛得角",cw:"库拉索",cx:"圣诞岛",cy:"塞浦路斯",cz:"捷克",de:"德国",dj:"吉布提",dk:"丹麦",dm:"多米尼克",do:"多米尼加共和国",dz:"阿尔及利亚",ec:"厄瓜多尔",ee:"爱沙尼亚",eg:"埃及",eh:"西撒哈拉",er:"厄立特里亚",es:"西班牙",et:"埃塞俄比亚",fi:"芬兰",fj:"斐济",fk:"福克兰群岛",fm:"密克罗尼西亚",fo:"法罗群岛",fr:"法国",ga:"加蓬",gb:"英国",gd:"格林纳达",ge:"格鲁吉亚",gf:"法属圭亚那",gg:"根西岛",gh:"加纳",gi:"直布罗陀",gl:"格陵兰",gm:"冈比亚",gn:"几内亚",gp:"瓜德罗普",gq:"赤道几内亚",gr:"希腊",gt:"危地马拉",gu:"关岛",gw:"几内亚比绍",gy:"圭亚那",hk:"中国香港特别行政区",hn:"洪都拉斯",hr:"克罗地亚",ht:"海地",hu:"匈牙利",id:"印度尼西亚",ie:"爱尔兰",il:"以色列",im:"马恩岛",in:"印度",io:"英属印度洋领地",iq:"伊拉克",ir:"伊朗",is:"冰岛",it:"意大利",je:"泽西岛",jm:"牙买加",jo:"约旦",jp:"日本",ke:"肯尼亚",kg:"吉尔吉斯斯坦",kh:"柬埔寨",ki:"基里巴斯",km:"科摩罗",kn:"圣基茨和尼维斯",kp:"朝鲜",kr:"韩国",kw:"科威特",ky:"开曼群岛",kz:"哈萨克斯坦",la:"老挝",lb:"黎巴嫩",lc:"圣卢西亚",li:"列支敦士登",lk:"斯里兰卡",lr:"利比里亚",ls:"莱索托",lt:"立陶宛",lu:"卢森堡",lv:"拉脱维亚",ly:"利比亚",ma:"摩洛哥",mc:"摩纳哥",md:"摩尔多瓦",me:"黑山",mf:"法属圣马丁",mg:"马达加斯加",mh:"马绍尔群岛",mk:"北马其顿",ml:"马里",mm:"缅甸",mn:"蒙古",mo:"中国澳门特别行政区",mp:"北马里亚纳群岛",mq:"马提尼克",mr:"毛里塔尼亚",ms:"蒙特塞拉特",mt:"马耳他",mu:"毛里求斯",mv:"马尔代夫",mw:"马拉维",mx:"墨西哥",my:"马来西亚",mz:"莫桑比克",na:"纳米比亚",nc:"新喀里多尼亚",ne:"尼日尔",nf:"诺福克岛",ng:"尼日利亚",ni:"尼加拉瓜",nl:"荷兰",no:"挪威",np:"尼泊尔",nr:"瑙鲁",nu:"纽埃",nz:"新西兰",om:"阿曼",pa:"巴拿马",pe:"秘鲁",pf:"法属波利尼西亚",pg:"巴布亚新几内亚",ph:"菲律宾",pk:"巴基斯坦",pl:"波兰",pm:"圣皮埃尔和密克隆群岛",pr:"波多黎各",ps:"巴勒斯坦领土",pt:"葡萄牙",pw:"帕劳",py:"巴拉圭",qa:"卡塔尔",re:"留尼汪",ro:"罗马尼亚",rs:"塞尔维亚",ru:"俄罗斯",rw:"卢旺达",sa:"沙特阿拉伯",sb:"所罗门群岛",sc:"塞舌尔",sd:"苏丹",se:"瑞典",sg:"新加坡",sh:"圣赫勒拿",si:"斯洛文尼亚",sj:"斯瓦尔巴和扬马延",sk:"斯洛伐克",sl:"塞拉利昂",sm:"圣马力诺",sn:"塞内加尔",so:"索马里",sr:"苏里南",ss:"南苏丹",st:"圣多美和普林西比",sv:"萨尔瓦多",sx:"荷属圣马丁",sy:"叙利亚",sz:"斯威士兰",tc:"特克斯和凯科斯群岛",td:"乍得",tg:"多哥",th:"泰国",tj:"塔吉克斯坦",tk:"托克劳",tl:"东帝汶",tm:"土库曼斯坦",tn:"突尼斯",to:"汤加",tr:"土耳其",tt:"特立尼达和多巴哥",tv:"图瓦卢",tw:"台湾",tz:"坦桑尼亚",ua:"乌克兰",ug:"乌干达",us:"美国",uy:"乌拉圭",uz:"乌兹别克斯坦",va:"梵蒂冈",vc:"圣文森特和格林纳丁斯",ve:"委内瑞拉",vg:"英属维尔京群岛",vi:"美属维尔京群岛",vn:"越南",vu:"瓦努阿图",wf:"瓦利斯和富图纳",ws:"萨摩亚",ye:"也门",yt:"马约特",za:"南非",zm:"赞比亚",zw:"津巴布韦"},c={selectedCountryAriaLabel:"所选国家",noCountrySelected:"未选择国家/地区",countryListAriaLabel:"国家名单",searchPlaceholder:"搜索",zeroSearchResults:"未找到结果",oneSearchResult:"找到 1 个结果",multipleSearchResults:"找到 ${count} 个结果",ac:"阿森松岛",xk:"科索沃"},m={...a,...c}}}]); \ No newline at end of file +"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[217],{721:(e,s,t)=>{t.r(s),t.d(s,{countryTranslations:()=>a,default:()=>m,interfaceTranslations:()=>c});const a={ad:"安道尔",ae:"阿拉伯联合酋长国",af:"阿富汗",ag:"安提瓜和巴布达",ai:"安圭拉",al:"阿尔巴尼亚",am:"亚美尼亚",ao:"安哥拉",ar:"阿根廷",as:"美属萨摩亚",at:"奥地利",au:"澳大利亚",aw:"阿鲁巴",ax:"奥兰群岛",az:"阿塞拜疆",ba:"波斯尼亚和黑塞哥维那",bb:"巴巴多斯",bd:"孟加拉国",be:"比利时",bf:"布基纳法索",bg:"保加利亚",bh:"巴林",bi:"布隆迪",bj:"贝宁",bl:"圣巴泰勒米",bm:"百慕大",bn:"文莱",bo:"玻利维亚",bq:"荷属加勒比区",br:"巴西",bs:"巴哈马",bt:"不丹",bw:"博茨瓦纳",by:"白俄罗斯",bz:"伯利兹",ca:"加拿大",cc:"科科斯(基林)群岛",cd:"刚果(金)",cf:"中非共和国",cg:"刚果(布)",ch:"瑞士",ci:"科特迪瓦",ck:"库克群岛",cl:"智利",cm:"喀麦隆",cn:"中国",co:"哥伦比亚",cr:"哥斯达黎加",cu:"古巴",cv:"佛得角",cw:"库拉索",cx:"圣诞岛",cy:"塞浦路斯",cz:"捷克",de:"德国",dj:"吉布提",dk:"丹麦",dm:"多米尼克",do:"多米尼加共和国",dz:"阿尔及利亚",ec:"厄瓜多尔",ee:"爱沙尼亚",eg:"埃及",eh:"西撒哈拉",er:"厄立特里亚",es:"西班牙",et:"埃塞俄比亚",fi:"芬兰",fj:"斐济",fk:"福克兰群岛",fm:"密克罗尼西亚",fo:"法罗群岛",fr:"法国",ga:"加蓬",gb:"英国",gd:"格林纳达",ge:"格鲁吉亚",gf:"法属圭亚那",gg:"根西岛",gh:"加纳",gi:"直布罗陀",gl:"格陵兰",gm:"冈比亚",gn:"几内亚",gp:"瓜德罗普",gq:"赤道几内亚",gr:"希腊",gt:"危地马拉",gu:"关岛",gw:"几内亚比绍",gy:"圭亚那",hk:"中国香港特别行政区",hn:"洪都拉斯",hr:"克罗地亚",ht:"海地",hu:"匈牙利",id:"印度尼西亚",ie:"爱尔兰",il:"以色列",im:"马恩岛",in:"印度",io:"英属印度洋领地",iq:"伊拉克",ir:"伊朗",is:"冰岛",it:"意大利",je:"泽西岛",jm:"牙买加",jo:"约旦",jp:"日本",ke:"肯尼亚",kg:"吉尔吉斯斯坦",kh:"柬埔寨",ki:"基里巴斯",km:"科摩罗",kn:"圣基茨和尼维斯",kp:"朝鲜",kr:"韩国",kw:"科威特",ky:"开曼群岛",kz:"哈萨克斯坦",la:"老挝",lb:"黎巴嫩",lc:"圣卢西亚",li:"列支敦士登",lk:"斯里兰卡",lr:"利比里亚",ls:"莱索托",lt:"立陶宛",lu:"卢森堡",lv:"拉脱维亚",ly:"利比亚",ma:"摩洛哥",mc:"摩纳哥",md:"摩尔多瓦",me:"黑山",mf:"法属圣马丁",mg:"马达加斯加",mh:"马绍尔群岛",mk:"北马其顿",ml:"马里",mm:"缅甸",mn:"蒙古",mo:"中国澳门特别行政区",mp:"北马里亚纳群岛",mq:"马提尼克",mr:"毛里塔尼亚",ms:"蒙特塞拉特",mt:"马耳他",mu:"毛里求斯",mv:"马尔代夫",mw:"马拉维",mx:"墨西哥",my:"马来西亚",mz:"莫桑比克",na:"纳米比亚",nc:"新喀里多尼亚",ne:"尼日尔",nf:"诺福克岛",ng:"尼日利亚",ni:"尼加拉瓜",nl:"荷兰",no:"挪威",np:"尼泊尔",nr:"瑙鲁",nu:"纽埃",nz:"新西兰",om:"阿曼",pa:"巴拿马",pe:"秘鲁",pf:"法属波利尼西亚",pg:"巴布亚新几内亚",ph:"菲律宾",pk:"巴基斯坦",pl:"波兰",pm:"圣皮埃尔和密克隆群岛",pr:"波多黎各",ps:"巴勒斯坦领土",pt:"葡萄牙",pw:"帕劳",py:"巴拉圭",qa:"卡塔尔",re:"留尼汪",ro:"罗马尼亚",rs:"塞尔维亚",ru:"俄罗斯",rw:"卢旺达",sa:"沙特阿拉伯",sb:"所罗门群岛",sc:"塞舌尔",sd:"苏丹",se:"瑞典",sg:"新加坡",sh:"圣赫勒拿",si:"斯洛文尼亚",sj:"斯瓦尔巴和扬马延",sk:"斯洛伐克",sl:"塞拉利昂",sm:"圣马力诺",sn:"塞内加尔",so:"索马里",sr:"苏里南",ss:"南苏丹",st:"圣多美和普林西比",sv:"萨尔瓦多",sx:"荷属圣马丁",sy:"叙利亚",sz:"斯威士兰",tc:"特克斯和凯科斯群岛",td:"乍得",tg:"多哥",th:"泰国",tj:"塔吉克斯坦",tk:"托克劳",tl:"东帝汶",tm:"土库曼斯坦",tn:"突尼斯",to:"汤加",tr:"土耳其",tt:"特立尼达和多巴哥",tv:"图瓦卢",tw:"台湾",tz:"坦桑尼亚",ua:"乌克兰",ug:"乌干达",us:"美国",uy:"乌拉圭",uz:"乌兹别克斯坦",va:"梵蒂冈",vc:"圣文森特和格林纳丁斯",ve:"委内瑞拉",vg:"英属维尔京群岛",vi:"美属维尔京群岛",vn:"越南",vu:"瓦努阿图",wf:"瓦利斯和富图纳",ws:"萨摩亚",ye:"也门",yt:"马约特",za:"南非",zm:"赞比亚",zw:"津巴布韦"},c={selectedCountryAriaLabel:"所选国家",noCountrySelected:"未选择国家/地区",countryListAriaLabel:"国家名单",searchPlaceholder:"搜索",zeroSearchResults:"未找到结果",oneSearchResult:"找到 1 个结果",multipleSearchResults:"找到 ${count} 个结果",ac:"阿森松岛",xk:"科索沃"},m={...a,...c}}}]); \ No newline at end of file diff --git a/modules/blocks-v2/repeater-field/assets/build/editor.asset.php b/modules/blocks-v2/repeater-field/assets/build/editor.asset.php index 9ddab6a51..37d751d93 100644 --- a/modules/blocks-v2/repeater-field/assets/build/editor.asset.php +++ b/modules/blocks-v2/repeater-field/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-hooks'), 'version' => '837b7bd5a587bf6dfcae'); + array('react', 'wp-hooks'), 'version' => '71c674619f1496535237'); diff --git a/modules/blocks-v2/repeater-field/assets/build/editor.js b/modules/blocks-v2/repeater-field/assets/build/editor.js index d2ef6e71a..935a569e7 100644 --- a/modules/blocks-v2/repeater-field/assets/build/editor.js +++ b/modules/blocks-v2/repeater-field/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={d:(C,t)=>{for(var l in t)e.o(t,l)&&!e.o(C,l)&&Object.defineProperty(C,l,{enumerable:!0,get:t[l]})},o:(e,C)=>Object.prototype.hasOwnProperty.call(e,C),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},C={};e.r(C),e.d(C,{metadata:()=>l,name:()=>F,settings:()=>P});const t=window.React,l=JSON.parse('{"apiVersion":3,"name":"jet-forms/repeater-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","range"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Repeater Field","icon":"\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"calc_formula":{"type":"string","default":""},"manage_items_count":{"type":"string","default":"manually"},"new_item_label":{"type":"string","default":"","jfb":{"rich":true}},"manage_items_count_field":{"type":"string","default":""},"repeater_calc_type":{"type":"string","default":"default"},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""}},"providesContext":{"jet-forms/repeater-field--name":"name","jet-forms/repeater-field--manage-items":"manage_items_count"},"viewStyle":"jet-fb-repeater-field"}'),{__:r}=wp.i18n,a=[{value:"default",label:r("Default (returns rows count)","jet-form-builder")},{value:"custom",label:r("Custom (calculate custom value for each row)","jet-form-builder")}],n=[{value:"manually",label:r("Manually","jet-form-builder")},{value:"dynamically",label:r("Dynamically (get count from form field)","jet-form-builder")}],o=(0,t.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,t.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,t.createElement)("path",{d:"M37.3486 37.4609V38.5H30.834V37.5908L34.0947 33.9609C34.4958 33.5143 34.8057 33.1361 35.0244 32.8262C35.2477 32.5117 35.4027 32.2314 35.4893 31.9854C35.5804 31.7347 35.626 31.4795 35.626 31.2197C35.626 30.8916 35.5576 30.5954 35.4209 30.3311C35.2887 30.0622 35.0928 29.848 34.833 29.6885C34.5732 29.529 34.2588 29.4492 33.8896 29.4492C33.4476 29.4492 33.0785 29.5358 32.7822 29.709C32.4906 29.8776 32.2718 30.1146 32.126 30.4199C31.9801 30.7253 31.9072 31.0762 31.9072 31.4727H30.6426C30.6426 30.9121 30.7656 30.3994 31.0117 29.9346C31.2578 29.4697 31.6224 29.1006 32.1055 28.8271C32.5885 28.5492 33.1833 28.4102 33.8896 28.4102C34.5186 28.4102 35.0563 28.5218 35.5029 28.7451C35.9495 28.9639 36.2913 29.2738 36.5283 29.6748C36.7699 30.0713 36.8906 30.5361 36.8906 31.0693C36.8906 31.361 36.8405 31.6572 36.7402 31.958C36.6445 32.2542 36.5101 32.5505 36.3369 32.8467C36.1683 33.1429 35.9701 33.4346 35.7422 33.7217C35.5189 34.0088 35.2796 34.2913 35.0244 34.5693L32.3584 37.4609H37.3486ZM40.1035 32.6826V38.5H38.8389V31.1035H40.0352L40.1035 32.6826ZM39.8027 34.5215L39.2764 34.501C39.2809 33.9951 39.3561 33.528 39.502 33.0996C39.6478 32.6667 39.8529 32.2907 40.1172 31.9717C40.3815 31.6527 40.696 31.4066 41.0605 31.2334C41.4297 31.0557 41.8376 30.9668 42.2842 30.9668C42.6488 30.9668 42.9769 31.0169 43.2686 31.1172C43.5602 31.2129 43.8086 31.3678 44.0137 31.582C44.2233 31.7962 44.3828 32.0742 44.4922 32.416C44.6016 32.7533 44.6562 33.1657 44.6562 33.6533V38.5H43.3848V33.6396C43.3848 33.2523 43.3278 32.9424 43.2139 32.71C43.0999 32.473 42.9336 32.3021 42.7148 32.1973C42.4961 32.0879 42.2272 32.0332 41.9082 32.0332C41.5938 32.0332 41.3066 32.0993 41.0469 32.2314C40.7917 32.3636 40.5706 32.5459 40.3838 32.7783C40.2015 33.0107 40.0579 33.2773 39.9531 33.5781C39.8529 33.8743 39.8027 34.1888 39.8027 34.5215ZM51.2393 37.0645V28H52.5107V38.5H51.3486L51.2393 37.0645ZM46.2627 34.8838V34.7402C46.2627 34.1751 46.3311 33.6624 46.4678 33.2021C46.609 32.7373 46.8073 32.3385 47.0625 32.0059C47.3223 31.6732 47.6299 31.418 47.9854 31.2402C48.3454 31.0579 48.7464 30.9668 49.1885 30.9668C49.6533 30.9668 50.0589 31.0488 50.4053 31.2129C50.7562 31.3724 51.0524 31.6071 51.2939 31.917C51.54 32.2223 51.7337 32.5915 51.875 33.0244C52.0163 33.4574 52.1143 33.9473 52.1689 34.4941V35.123C52.1188 35.6654 52.0208 36.153 51.875 36.5859C51.7337 37.0189 51.54 37.388 51.2939 37.6934C51.0524 37.9987 50.7562 38.2334 50.4053 38.3975C50.0544 38.557 49.6442 38.6367 49.1748 38.6367C48.7419 38.6367 48.3454 38.5433 47.9854 38.3564C47.6299 38.1696 47.3223 37.9076 47.0625 37.5703C46.8073 37.2331 46.609 36.8366 46.4678 36.3809C46.3311 35.9206 46.2627 35.4215 46.2627 34.8838ZM47.5342 34.7402V34.8838C47.5342 35.2529 47.5706 35.5993 47.6436 35.9229C47.721 36.2464 47.8395 36.5312 47.999 36.7773C48.1585 37.0234 48.3613 37.2171 48.6074 37.3584C48.8535 37.4951 49.1475 37.5635 49.4893 37.5635C49.9085 37.5635 50.2526 37.4746 50.5215 37.2969C50.7949 37.1191 51.0137 36.8844 51.1777 36.5928C51.3418 36.3011 51.4694 35.9844 51.5605 35.6426V33.9951C51.5059 33.7445 51.4261 33.5029 51.3213 33.2705C51.221 33.0335 51.0889 32.8239 50.9248 32.6416C50.7653 32.4548 50.5671 32.3066 50.3301 32.1973C50.0977 32.0879 49.8219 32.0332 49.5029 32.0332C49.1566 32.0332 48.8581 32.1061 48.6074 32.252C48.3613 32.3932 48.1585 32.5892 47.999 32.8398C47.8395 33.0859 47.721 33.373 47.6436 33.7012C47.5706 34.0247 47.5342 34.3711 47.5342 34.7402ZM61.5479 28.5469V38.5H60.249V28.5469H61.5479ZM64.7471 28.5469V29.627H57.0566V28.5469H64.7471ZM66.7773 32.2656V38.5H65.5127V31.1035H66.7432L66.7773 32.2656ZM69.0879 31.0625L69.0811 32.2383C68.9762 32.2155 68.876 32.2018 68.7803 32.1973C68.6891 32.1882 68.5843 32.1836 68.4658 32.1836C68.1742 32.1836 67.9167 32.2292 67.6934 32.3203C67.4701 32.4115 67.2809 32.5391 67.126 32.7031C66.971 32.8672 66.848 33.0632 66.7568 33.291C66.6702 33.5143 66.6133 33.7604 66.5859 34.0293L66.2305 34.2344C66.2305 33.7878 66.2738 33.3685 66.3604 32.9766C66.4515 32.5846 66.5905 32.2383 66.7773 31.9375C66.9642 31.6322 67.2012 31.3952 67.4883 31.2266C67.7799 31.0534 68.1263 30.9668 68.5273 30.9668C68.6185 30.9668 68.7233 30.9782 68.8418 31.001C68.9603 31.0192 69.0423 31.0397 69.0879 31.0625ZM74.3447 37.2354V33.4277C74.3447 33.1361 74.2855 32.8831 74.167 32.6689C74.0531 32.4502 73.8799 32.2816 73.6475 32.1631C73.415 32.0446 73.1279 31.9854 72.7861 31.9854C72.4671 31.9854 72.1868 32.04 71.9453 32.1494C71.7083 32.2588 71.5215 32.4023 71.3848 32.5801C71.2526 32.7578 71.1865 32.9492 71.1865 33.1543H69.9219C69.9219 32.89 69.9902 32.6279 70.127 32.3682C70.2637 32.1084 70.4596 31.8737 70.7148 31.6641C70.9746 31.4499 71.2845 31.2812 71.6445 31.1582C72.0091 31.0306 72.4147 30.9668 72.8613 30.9668C73.3991 30.9668 73.873 31.0579 74.2832 31.2402C74.6979 31.4225 75.0215 31.6982 75.2539 32.0674C75.4909 32.432 75.6094 32.89 75.6094 33.4414V36.8867C75.6094 37.1328 75.6299 37.3949 75.6709 37.6729C75.7165 37.9508 75.7826 38.1901 75.8691 38.3906V38.5H74.5498C74.486 38.3542 74.4359 38.1605 74.3994 37.9189C74.363 37.6729 74.3447 37.445 74.3447 37.2354ZM74.5635 34.0156L74.5771 34.9043H73.2988C72.9388 34.9043 72.6175 34.9339 72.335 34.9932C72.0524 35.0479 71.8154 35.1322 71.624 35.2461C71.4326 35.36 71.2868 35.5036 71.1865 35.6768C71.0863 35.8454 71.0361 36.0436 71.0361 36.2715C71.0361 36.5039 71.0885 36.7158 71.1934 36.9072C71.2982 37.0986 71.4554 37.2513 71.665 37.3652C71.8792 37.4746 72.1413 37.5293 72.4512 37.5293C72.8385 37.5293 73.1803 37.4473 73.4766 37.2832C73.7728 37.1191 74.0075 36.9186 74.1807 36.6816C74.3584 36.4447 74.4541 36.2145 74.4678 35.9912L75.0078 36.5996C74.9759 36.791 74.8893 37.0029 74.748 37.2354C74.6068 37.4678 74.4176 37.6911 74.1807 37.9053C73.9482 38.1149 73.6702 38.2904 73.3467 38.4316C73.0277 38.5684 72.6676 38.6367 72.2666 38.6367C71.7653 38.6367 71.3255 38.5387 70.9473 38.3428C70.5736 38.1468 70.2819 37.8848 70.0723 37.5566C69.8672 37.224 69.7646 36.8525 69.7646 36.4424C69.7646 36.0459 69.8421 35.6973 69.9971 35.3965C70.152 35.0911 70.3753 34.8382 70.667 34.6377C70.9587 34.4326 71.3096 34.2777 71.7197 34.1729C72.1299 34.068 72.5879 34.0156 73.0938 34.0156H74.5635ZM79.7383 37.3584L81.7617 31.1035H83.0537L80.3945 38.5H79.5469L79.7383 37.3584ZM78.0498 31.1035L80.1348 37.3926L80.2783 38.5H79.4307L76.751 31.1035H78.0498ZM87.2441 38.6367C86.7292 38.6367 86.262 38.5501 85.8428 38.377C85.4281 38.1992 85.0703 37.9508 84.7695 37.6318C84.4733 37.3128 84.2454 36.9346 84.0859 36.4971C83.9264 36.0596 83.8467 35.5811 83.8467 35.0615V34.7744C83.8467 34.1729 83.9355 33.6374 84.1133 33.168C84.291 32.694 84.5326 32.293 84.8379 31.9648C85.1432 31.6367 85.4896 31.3883 85.877 31.2197C86.2643 31.0511 86.6654 30.9668 87.0801 30.9668C87.6087 30.9668 88.0645 31.0579 88.4473 31.2402C88.8346 31.4225 89.1514 31.6777 89.3975 32.0059C89.6436 32.3294 89.8258 32.7122 89.9443 33.1543C90.0628 33.5918 90.1221 34.0703 90.1221 34.5898V35.1572H84.5986V34.125H88.8574V34.0293C88.8392 33.7012 88.7708 33.3822 88.6523 33.0723C88.5384 32.7624 88.3561 32.5072 88.1055 32.3066C87.8548 32.1061 87.513 32.0059 87.0801 32.0059C86.793 32.0059 86.5286 32.0674 86.2871 32.1904C86.0456 32.3089 85.8382 32.4867 85.665 32.7236C85.4919 32.9606 85.3574 33.25 85.2617 33.5918C85.166 33.9336 85.1182 34.3278 85.1182 34.7744V35.0615C85.1182 35.4124 85.166 35.7428 85.2617 36.0527C85.362 36.3581 85.5055 36.627 85.6924 36.8594C85.8838 37.0918 86.1139 37.2741 86.3828 37.4062C86.6562 37.5384 86.9661 37.6045 87.3125 37.6045C87.7591 37.6045 88.1374 37.5133 88.4473 37.3311C88.7572 37.1488 89.0283 36.9049 89.2607 36.5996L90.0264 37.208C89.8669 37.4495 89.6641 37.6797 89.418 37.8984C89.1719 38.1172 88.8688 38.2949 88.5088 38.4316C88.1533 38.5684 87.7318 38.6367 87.2441 38.6367ZM92.9727 28V38.5H91.7012V28H92.9727ZM96.377 28V38.5H95.1055V28H96.377ZM101.477 38.6367C100.962 38.6367 100.494 38.5501 100.075 38.377C99.6605 38.1992 99.3027 37.9508 99.002 37.6318C98.7057 37.3128 98.4779 36.9346 98.3184 36.4971C98.1589 36.0596 98.0791 35.5811 98.0791 35.0615V34.7744C98.0791 34.1729 98.168 33.6374 98.3457 33.168C98.5234 32.694 98.765 32.293 99.0703 31.9648C99.3757 31.6367 99.722 31.3883 100.109 31.2197C100.497 31.0511 100.898 30.9668 101.312 30.9668C101.841 30.9668 102.297 31.0579 102.68 31.2402C103.067 31.4225 103.384 31.6777 103.63 32.0059C103.876 32.3294 104.058 32.7122 104.177 33.1543C104.295 33.5918 104.354 34.0703 104.354 34.5898V35.1572H98.8311V34.125H103.09V34.0293C103.072 33.7012 103.003 33.3822 102.885 33.0723C102.771 32.7624 102.589 32.5072 102.338 32.3066C102.087 32.1061 101.745 32.0059 101.312 32.0059C101.025 32.0059 100.761 32.0674 100.52 32.1904C100.278 32.3089 100.071 32.4867 99.8975 32.7236C99.7243 32.9606 99.5898 33.25 99.4941 33.5918C99.3984 33.9336 99.3506 34.3278 99.3506 34.7744V35.0615C99.3506 35.4124 99.3984 35.7428 99.4941 36.0527C99.5944 36.3581 99.738 36.627 99.9248 36.8594C100.116 37.0918 100.346 37.2741 100.615 37.4062C100.889 37.5384 101.199 37.6045 101.545 37.6045C101.992 37.6045 102.37 37.5133 102.68 37.3311C102.99 37.1488 103.261 36.9049 103.493 36.5996L104.259 37.208C104.099 37.4495 103.896 37.6797 103.65 37.8984C103.404 38.1172 103.101 38.2949 102.741 38.4316C102.386 38.5684 101.964 38.6367 101.477 38.6367ZM107.096 32.2656V38.5H105.831V31.1035H107.062L107.096 32.2656ZM109.406 31.0625L109.399 32.2383C109.295 32.2155 109.194 32.2018 109.099 32.1973C109.007 32.1882 108.903 32.1836 108.784 32.1836C108.493 32.1836 108.235 32.2292 108.012 32.3203C107.788 32.4115 107.599 32.5391 107.444 32.7031C107.289 32.8672 107.166 33.0632 107.075 33.291C106.989 33.5143 106.932 33.7604 106.904 34.0293L106.549 34.2344C106.549 33.7878 106.592 33.3685 106.679 32.9766C106.77 32.5846 106.909 32.2383 107.096 31.9375C107.283 31.6322 107.52 31.3952 107.807 31.2266C108.098 31.0534 108.445 30.9668 108.846 30.9668C108.937 30.9668 109.042 30.9782 109.16 31.001C109.279 31.0192 109.361 31.0397 109.406 31.0625Z",fill:"#64748B"}),(0,t.createElement)("rect",{x:"30.5",y:"47",width:"115.5",height:"29",rx:"3.5",fill:"white"}),(0,t.createElement)("path",{d:"M44.9512 63.3022V56.7578H46.1699V63.3022C46.1699 63.9116 46.0451 64.4258 45.7954 64.8447C45.5457 65.2637 45.2008 65.5832 44.7607 65.8032C44.3249 66.019 43.8234 66.127 43.2563 66.127C42.6893 66.127 42.1857 66.0296 41.7456 65.835C41.3055 65.6403 40.9606 65.3441 40.7109 64.9463C40.4613 64.5485 40.3364 64.047 40.3364 63.4419H41.5615C41.5615 63.8312 41.6335 64.1507 41.7773 64.4004C41.9212 64.6501 42.1201 64.8341 42.374 64.9526C42.6322 65.0711 42.9263 65.1304 43.2563 65.1304C43.578 65.1304 43.8657 65.0627 44.1196 64.9272C44.3778 64.7876 44.5809 64.5824 44.729 64.3115C44.8771 64.0365 44.9512 63.7 44.9512 63.3022ZM50.918 66.127C50.4398 66.127 50.006 66.0465 49.6167 65.8857C49.2316 65.7207 48.8994 65.4901 48.6201 65.1938C48.3451 64.8976 48.1335 64.5464 47.9854 64.1401C47.8372 63.7339 47.7632 63.2896 47.7632 62.8071V62.5405C47.7632 61.9819 47.8457 61.4847 48.0107 61.0488C48.1758 60.6087 48.4001 60.2363 48.6836 59.9316C48.9671 59.627 49.2887 59.3963 49.6484 59.2397C50.0081 59.0832 50.3805 59.0049 50.7656 59.0049C51.2565 59.0049 51.6797 59.0895 52.0352 59.2588C52.3949 59.4281 52.689 59.665 52.9175 59.9697C53.146 60.2702 53.3153 60.6257 53.4253 61.0361C53.5353 61.4424 53.5903 61.8867 53.5903 62.3691V62.896H48.4614V61.9375H52.416V61.8486C52.3991 61.5439 52.3356 61.2477 52.2256 60.96C52.1198 60.6722 51.9505 60.4352 51.7178 60.249C51.485 60.0628 51.1676 59.9697 50.7656 59.9697C50.499 59.9697 50.2536 60.0269 50.0293 60.1411C49.805 60.2511 49.6125 60.4162 49.4517 60.6362C49.2909 60.8563 49.166 61.125 49.0771 61.4424C48.9883 61.7598 48.9438 62.1258 48.9438 62.5405V62.8071C48.9438 63.133 48.9883 63.4398 49.0771 63.7275C49.1702 64.0111 49.3035 64.2607 49.4771 64.4766C49.6548 64.6924 49.8685 64.8617 50.1182 64.9844C50.3721 65.1071 50.6598 65.1685 50.9814 65.1685C51.3962 65.1685 51.7474 65.0838 52.0352 64.9146C52.3229 64.7453 52.5747 64.5189 52.7905 64.2354L53.5015 64.8003C53.3534 65.0246 53.165 65.2383 52.9365 65.4414C52.708 65.6445 52.4266 65.8096 52.0923 65.9365C51.7622 66.0635 51.3708 66.127 50.918 66.127ZM56.1357 60.5981V66H54.9614V59.1318H56.0723L56.1357 60.5981ZM55.8564 62.3057L55.3677 62.2866C55.3719 61.8169 55.4417 61.3831 55.5771 60.9854C55.7126 60.5833 55.903 60.2342 56.1484 59.938C56.3939 59.6418 56.6859 59.4132 57.0244 59.2524C57.3672 59.0874 57.7459 59.0049 58.1606 59.0049C58.4992 59.0049 58.8039 59.0514 59.0747 59.1445C59.3455 59.2334 59.5762 59.3773 59.7666 59.5762C59.9613 59.7751 60.1094 60.0332 60.2109 60.3506C60.3125 60.6637 60.3633 61.0467 60.3633 61.4995V66H59.1826V61.4868C59.1826 61.1271 59.1297 60.8394 59.0239 60.6235C58.9181 60.4035 58.7637 60.2448 58.5605 60.1475C58.3574 60.0459 58.1077 59.9951 57.8115 59.9951C57.5195 59.9951 57.2529 60.0565 57.0117 60.1792C56.7747 60.3019 56.5695 60.4712 56.396 60.687C56.2267 60.9028 56.0934 61.1504 55.9961 61.4297C55.903 61.7048 55.8564 61.9967 55.8564 62.3057ZM63.3213 60.5981V66H62.147V59.1318H63.2578L63.3213 60.5981ZM63.042 62.3057L62.5532 62.2866C62.5575 61.8169 62.6273 61.3831 62.7627 60.9854C62.8981 60.5833 63.0885 60.2342 63.334 59.938C63.5794 59.6418 63.8714 59.4132 64.21 59.2524C64.5527 59.0874 64.9315 59.0049 65.3462 59.0049C65.6847 59.0049 65.9894 59.0514 66.2603 59.1445C66.5311 59.2334 66.7617 59.3773 66.9521 59.5762C67.1468 59.7751 67.2949 60.0332 67.3965 60.3506C67.498 60.6637 67.5488 61.0467 67.5488 61.4995V66H66.3682V61.4868C66.3682 61.1271 66.3153 60.8394 66.2095 60.6235C66.1037 60.4035 65.9492 60.2448 65.7461 60.1475C65.543 60.0459 65.2933 59.9951 64.9971 59.9951C64.7051 59.9951 64.4385 60.0565 64.1973 60.1792C63.9603 60.3019 63.755 60.4712 63.5815 60.687C63.4123 60.9028 63.279 61.1504 63.1816 61.4297C63.0885 61.7048 63.042 61.9967 63.042 62.3057ZM70.6084 59.1318V66H69.4277V59.1318H70.6084ZM69.3389 57.3101C69.3389 57.1196 69.396 56.9588 69.5103 56.8276C69.6287 56.6965 69.8022 56.6309 70.0308 56.6309C70.255 56.6309 70.4264 56.6965 70.5449 56.8276C70.6676 56.9588 70.729 57.1196 70.729 57.3101C70.729 57.492 70.6676 57.6486 70.5449 57.7798C70.4264 57.9067 70.255 57.9702 70.0308 57.9702C69.8022 57.9702 69.6287 57.9067 69.5103 57.7798C69.396 57.6486 69.3389 57.492 69.3389 57.3101ZM74.2456 66H73.0713V58.4082C73.0713 57.9131 73.1602 57.4963 73.3379 57.1577C73.5199 56.8149 73.7801 56.5568 74.1187 56.3833C74.4572 56.2056 74.8592 56.1167 75.3247 56.1167C75.4601 56.1167 75.5955 56.1252 75.731 56.1421C75.8706 56.159 76.006 56.1844 76.1372 56.2183L76.0737 57.1768C75.9849 57.1556 75.8833 57.1408 75.769 57.1323C75.659 57.1239 75.549 57.1196 75.439 57.1196C75.1893 57.1196 74.9735 57.1704 74.7915 57.272C74.6138 57.3693 74.4784 57.5132 74.3853 57.7036C74.2922 57.894 74.2456 58.1289 74.2456 58.4082V66ZM75.7056 59.1318V60.0332H71.9858V59.1318H75.7056ZM79.7109 66.127C79.2327 66.127 78.799 66.0465 78.4097 65.8857C78.0246 65.7207 77.6924 65.4901 77.4131 65.1938C77.138 64.8976 76.9264 64.5464 76.7783 64.1401C76.6302 63.7339 76.5562 63.2896 76.5562 62.8071V62.5405C76.5562 61.9819 76.6387 61.4847 76.8037 61.0488C76.9688 60.6087 77.193 60.2363 77.4766 59.9316C77.7601 59.627 78.0817 59.3963 78.4414 59.2397C78.8011 59.0832 79.1735 59.0049 79.5586 59.0049C80.0495 59.0049 80.4727 59.0895 80.8281 59.2588C81.1878 59.4281 81.4819 59.665 81.7104 59.9697C81.939 60.2702 82.1082 60.6257 82.2183 61.0361C82.3283 61.4424 82.3833 61.8867 82.3833 62.3691V62.896H77.2544V61.9375H81.209V61.8486C81.1921 61.5439 81.1286 61.2477 81.0186 60.96C80.9128 60.6722 80.7435 60.4352 80.5107 60.249C80.278 60.0628 79.9606 59.9697 79.5586 59.9697C79.292 59.9697 79.0465 60.0269 78.8223 60.1411C78.598 60.2511 78.4054 60.4162 78.2446 60.6362C78.0838 60.8563 77.959 61.125 77.8701 61.4424C77.7812 61.7598 77.7368 62.1258 77.7368 62.5405V62.8071C77.7368 63.133 77.7812 63.4398 77.8701 63.7275C77.9632 64.0111 78.0965 64.2607 78.27 64.4766C78.4478 64.6924 78.6615 64.8617 78.9111 64.9844C79.165 65.1071 79.4528 65.1685 79.7744 65.1685C80.1891 65.1685 80.5404 65.0838 80.8281 64.9146C81.1159 64.7453 81.3677 64.5189 81.5835 64.2354L82.2944 64.8003C82.1463 65.0246 81.958 65.2383 81.7295 65.4414C81.501 65.6445 81.2196 65.8096 80.8853 65.9365C80.5552 66.0635 80.1637 66.127 79.7109 66.127ZM84.9287 60.2109V66H83.7544V59.1318H84.897L84.9287 60.2109ZM87.0742 59.0938L87.0679 60.1855C86.9705 60.1644 86.8774 60.1517 86.7886 60.1475C86.7039 60.139 86.6066 60.1348 86.4966 60.1348C86.2257 60.1348 85.9867 60.1771 85.7793 60.2617C85.5719 60.3464 85.3963 60.4648 85.2524 60.6172C85.1086 60.7695 84.9943 60.9515 84.9097 61.1631C84.8293 61.3704 84.7764 61.599 84.751 61.8486L84.4209 62.0391C84.4209 61.6243 84.4611 61.235 84.5415 60.8711C84.6261 60.5072 84.7552 60.1855 84.9287 59.9062C85.1022 59.6227 85.3223 59.4027 85.5889 59.2461C85.8597 59.0853 86.1813 59.0049 86.5537 59.0049C86.6383 59.0049 86.7357 59.0155 86.8457 59.0366C86.9557 59.0535 87.0319 59.0726 87.0742 59.0938Z",fill:"#0F172A"}),(0,t.createElement)("rect",{x:"30.5",y:"47",width:"115.5",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,t.createElement)("rect",{x:"152",y:"47",width:"115.5",height:"29",rx:"3.5",fill:"white"}),(0,t.createElement)("path",{d:"M162.998 56.7578L165.397 61.3979L167.803 56.7578H169.193L166.007 62.5469V66H164.782V62.5469L161.595 56.7578H162.998ZM169.473 62.6421V62.4961C169.473 62.001 169.545 61.5418 169.688 61.1187C169.832 60.6912 170.04 60.321 170.311 60.0078C170.581 59.6904 170.909 59.445 171.294 59.2715C171.68 59.0938 172.111 59.0049 172.589 59.0049C173.072 59.0049 173.506 59.0938 173.891 59.2715C174.28 59.445 174.61 59.6904 174.881 60.0078C175.156 60.321 175.365 60.6912 175.509 61.1187C175.653 61.5418 175.725 62.001 175.725 62.4961V62.6421C175.725 63.1372 175.653 63.5964 175.509 64.0195C175.365 64.4427 175.156 64.813 174.881 65.1304C174.61 65.4435 174.282 65.689 173.897 65.8667C173.516 66.0402 173.084 66.127 172.602 66.127C172.12 66.127 171.686 66.0402 171.301 65.8667C170.916 65.689 170.586 65.4435 170.311 65.1304C170.04 64.813 169.832 64.4427 169.688 64.0195C169.545 63.5964 169.473 63.1372 169.473 62.6421ZM170.647 62.4961V62.6421C170.647 62.9849 170.687 63.3086 170.768 63.6133C170.848 63.9137 170.969 64.1803 171.129 64.4131C171.294 64.6458 171.5 64.8299 171.745 64.9653C171.991 65.0965 172.276 65.1621 172.602 65.1621C172.924 65.1621 173.205 65.0965 173.446 64.9653C173.692 64.8299 173.895 64.6458 174.056 64.4131C174.216 64.1803 174.337 63.9137 174.417 63.6133C174.502 63.3086 174.544 62.9849 174.544 62.6421V62.4961C174.544 62.1576 174.502 61.8381 174.417 61.5376C174.337 61.2329 174.214 60.9642 174.049 60.7314C173.889 60.4945 173.685 60.3083 173.44 60.1729C173.199 60.0374 172.915 59.9697 172.589 59.9697C172.268 59.9697 171.984 60.0374 171.739 60.1729C171.498 60.3083 171.294 60.4945 171.129 60.7314C170.969 60.9642 170.848 61.2329 170.768 61.5376C170.687 61.8381 170.647 62.1576 170.647 62.4961ZM181.4 64.4131V59.1318H182.581V66H181.457L181.4 64.4131ZM181.622 62.9658L182.111 62.9531C182.111 63.4102 182.062 63.8333 181.965 64.2227C181.872 64.6077 181.719 64.9421 181.508 65.2256C181.296 65.5091 181.019 65.7313 180.676 65.8921C180.333 66.0487 179.917 66.127 179.426 66.127C179.091 66.127 178.785 66.0783 178.505 65.981C178.23 65.8836 177.993 65.7334 177.794 65.5303C177.596 65.3271 177.441 65.0627 177.331 64.7368C177.225 64.411 177.172 64.0195 177.172 63.5625V59.1318H178.347V63.5752C178.347 63.8841 178.381 64.1401 178.448 64.3433C178.52 64.5422 178.615 64.7008 178.734 64.8193C178.857 64.9336 178.992 65.014 179.14 65.0605C179.292 65.1071 179.449 65.1304 179.61 65.1304C180.109 65.1304 180.505 65.0352 180.797 64.8447C181.089 64.6501 181.298 64.3898 181.425 64.064C181.556 63.7339 181.622 63.3678 181.622 62.9658ZM185.545 60.2109V66H184.371V59.1318H185.513L185.545 60.2109ZM187.69 59.0938L187.684 60.1855C187.587 60.1644 187.494 60.1517 187.405 60.1475C187.32 60.139 187.223 60.1348 187.113 60.1348C186.842 60.1348 186.603 60.1771 186.396 60.2617C186.188 60.3464 186.013 60.4648 185.869 60.6172C185.725 60.7695 185.611 60.9515 185.526 61.1631C185.445 61.3704 185.393 61.599 185.367 61.8486L185.037 62.0391C185.037 61.6243 185.077 61.235 185.158 60.8711C185.242 60.5072 185.371 60.1855 185.545 59.9062C185.718 59.6227 185.938 59.4027 186.205 59.2461C186.476 59.0853 186.798 59.0049 187.17 59.0049C187.255 59.0049 187.352 59.0155 187.462 59.0366C187.572 59.0535 187.648 59.0726 187.69 59.0938ZM199.288 56.7578V66H198.056L193.403 58.8716V66H192.178V56.7578H193.403L198.075 63.9053V56.7578H199.288ZM205.331 64.8257V61.29C205.331 61.0192 205.276 60.7843 205.166 60.5854C205.06 60.3823 204.899 60.2257 204.683 60.1157C204.467 60.0057 204.201 59.9507 203.883 59.9507C203.587 59.9507 203.327 60.0015 203.103 60.103C202.882 60.2046 202.709 60.3379 202.582 60.5029C202.459 60.668 202.398 60.8457 202.398 61.0361H201.224C201.224 60.7907 201.287 60.5474 201.414 60.3062C201.541 60.0649 201.723 59.847 201.96 59.6523C202.201 59.4535 202.489 59.2969 202.823 59.1826C203.162 59.0641 203.538 59.0049 203.953 59.0049C204.452 59.0049 204.893 59.0895 205.273 59.2588C205.659 59.4281 205.959 59.6841 206.175 60.0269C206.395 60.3654 206.505 60.7907 206.505 61.3027V64.502C206.505 64.7305 206.524 64.9738 206.562 65.2319C206.604 65.4901 206.666 65.7122 206.746 65.8984V66H205.521C205.462 65.8646 205.415 65.6847 205.381 65.4604C205.347 65.2319 205.331 65.0203 205.331 64.8257ZM205.534 61.8359L205.546 62.6611H204.359C204.025 62.6611 203.727 62.6886 203.464 62.7437C203.202 62.7944 202.982 62.8727 202.804 62.9785C202.626 63.0843 202.491 63.2176 202.398 63.3784C202.305 63.535 202.258 63.7191 202.258 63.9307C202.258 64.1465 202.307 64.3433 202.404 64.521C202.502 64.6987 202.648 64.8405 202.842 64.9463C203.041 65.0479 203.285 65.0986 203.572 65.0986C203.932 65.0986 204.249 65.0225 204.524 64.8701C204.799 64.7178 205.017 64.5316 205.178 64.3115C205.343 64.0915 205.432 63.8778 205.445 63.6704L205.946 64.2354C205.917 64.4131 205.836 64.6099 205.705 64.8257C205.574 65.0415 205.398 65.2489 205.178 65.4478C204.962 65.6424 204.704 65.8053 204.404 65.9365C204.108 66.0635 203.773 66.127 203.401 66.127C202.935 66.127 202.527 66.036 202.176 65.854C201.829 65.672 201.558 65.4287 201.363 65.124C201.173 64.8151 201.078 64.4702 201.078 64.0894C201.078 63.7212 201.15 63.3975 201.293 63.1182C201.437 62.8346 201.645 62.5998 201.916 62.4136C202.186 62.2231 202.512 62.0793 202.893 61.9819C203.274 61.8846 203.699 61.8359 204.169 61.8359H205.534ZM209.52 60.4966V66H208.339V59.1318H209.457L209.52 60.4966ZM209.279 62.3057L208.733 62.2866C208.737 61.8169 208.799 61.3831 208.917 60.9854C209.035 60.5833 209.211 60.2342 209.444 59.938C209.677 59.6418 209.966 59.4132 210.313 59.2524C210.66 59.0874 211.062 59.0049 211.52 59.0049C211.841 59.0049 212.137 59.0514 212.408 59.1445C212.679 59.2334 212.914 59.3752 213.113 59.5698C213.312 59.7645 213.466 60.0142 213.576 60.3188C213.686 60.6235 213.741 60.9917 213.741 61.4233V66H212.567V61.4805C212.567 61.1208 212.506 60.833 212.383 60.6172C212.264 60.4014 212.095 60.2448 211.875 60.1475C211.655 60.0459 211.397 59.9951 211.101 59.9951C210.754 59.9951 210.464 60.0565 210.231 60.1792C209.998 60.3019 209.812 60.4712 209.672 60.687C209.533 60.9028 209.431 61.1504 209.368 61.4297C209.308 61.7048 209.279 61.9967 209.279 62.3057ZM213.729 61.6582L212.941 61.8994C212.946 61.5228 213.007 61.161 213.125 60.814C213.248 60.467 213.424 60.158 213.652 59.8872C213.885 59.6164 214.171 59.4027 214.509 59.2461C214.848 59.0853 215.235 59.0049 215.671 59.0049C216.039 59.0049 216.365 59.0535 216.648 59.1509C216.936 59.2482 217.177 59.3984 217.372 59.6016C217.571 59.8005 217.721 60.0565 217.823 60.3696C217.924 60.6828 217.975 61.0552 217.975 61.4868V66H216.794V61.4741C216.794 61.089 216.733 60.7907 216.61 60.5791C216.492 60.3633 216.323 60.2131 216.103 60.1284C215.887 60.0396 215.629 59.9951 215.328 59.9951C215.07 59.9951 214.841 60.0396 214.643 60.1284C214.444 60.2173 214.277 60.34 214.141 60.4966C214.006 60.6489 213.902 60.8245 213.83 61.0234C213.762 61.2223 213.729 61.4339 213.729 61.6582ZM222.603 66.127C222.124 66.127 221.691 66.0465 221.301 65.8857C220.916 65.7207 220.584 65.4901 220.305 65.1938C220.03 64.8976 219.818 64.5464 219.67 64.1401C219.522 63.7339 219.448 63.2896 219.448 62.8071V62.5405C219.448 61.9819 219.53 61.4847 219.695 61.0488C219.86 60.6087 220.085 60.2363 220.368 59.9316C220.652 59.627 220.973 59.3963 221.333 59.2397C221.693 59.0832 222.065 59.0049 222.45 59.0049C222.941 59.0049 223.364 59.0895 223.72 59.2588C224.079 59.4281 224.374 59.665 224.602 59.9697C224.831 60.2702 225 60.6257 225.11 61.0361C225.22 61.4424 225.275 61.8867 225.275 62.3691V62.896H220.146V61.9375H224.101V61.8486C224.084 61.5439 224.02 61.2477 223.91 60.96C223.804 60.6722 223.635 60.4352 223.402 60.249C223.17 60.0628 222.852 59.9697 222.45 59.9697C222.184 59.9697 221.938 60.0269 221.714 60.1411C221.49 60.2511 221.297 60.4162 221.136 60.6362C220.975 60.8563 220.851 61.125 220.762 61.4424C220.673 61.7598 220.628 62.1258 220.628 62.5405V62.8071C220.628 63.133 220.673 63.4398 220.762 63.7275C220.855 64.0111 220.988 64.2607 221.162 64.4766C221.339 64.6924 221.553 64.8617 221.803 64.9844C222.057 65.1071 222.344 65.1685 222.666 65.1685C223.081 65.1685 223.432 65.0838 223.72 64.9146C224.007 64.7453 224.259 64.5189 224.475 64.2354L225.186 64.8003C225.038 65.0246 224.85 65.2383 224.621 65.4414C224.393 65.6445 224.111 65.8096 223.777 65.9365C223.447 66.0635 223.055 66.127 222.603 66.127Z",fill:"#64748B"}),(0,t.createElement)("rect",{x:"152",y:"47",width:"115.5",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,t.createElement)("rect",{x:"30",y:"86.5",width:"238",height:"32",rx:"16",fill:"#4272F9"}),(0,t.createElement)("path",{d:"M111.151 105.752V104.01H109.409V102.788H111.151V101.046H112.477V102.788H114.219V104.01H112.477V105.752H111.151ZM123.629 104.842H119.82V103.386H123.629V104.842ZM121.51 99.525H121.939L119.313 107H117.701L120.938 97.9H122.511L125.748 107H124.136L121.51 99.525ZM129.014 107.13C128.356 107.13 127.801 106.976 127.35 106.668C126.904 106.361 126.566 105.951 126.336 105.44C126.111 104.929 125.998 104.37 125.998 103.763C125.998 103.156 126.111 102.597 126.336 102.086C126.566 101.575 126.904 101.165 127.35 100.857C127.801 100.55 128.356 100.396 129.014 100.396C129.491 100.396 129.894 100.476 130.223 100.636C130.553 100.792 130.843 100.994 131.094 101.241L130.704 101.579V97.25H132.316V107H130.795L130.717 105.895L131.185 106.233C130.882 106.51 130.568 106.729 130.243 106.889C129.918 107.05 129.508 107.13 129.014 107.13ZM129.248 105.804C129.604 105.804 129.894 105.717 130.119 105.544C130.345 105.371 130.511 105.132 130.62 104.829C130.728 104.521 130.782 104.166 130.782 103.763C130.782 103.36 130.728 103.007 130.62 102.703C130.511 102.396 130.345 102.155 130.119 101.982C129.894 101.809 129.604 101.722 129.248 101.722C128.91 101.722 128.622 101.809 128.384 101.982C128.145 102.155 127.963 102.396 127.838 102.703C127.712 103.007 127.649 103.36 127.649 103.763C127.649 104.166 127.712 104.521 127.838 104.829C127.963 105.132 128.145 105.371 128.384 105.544C128.622 105.717 128.91 105.804 129.248 105.804ZM136.441 107.13C135.782 107.13 135.228 106.976 134.777 106.668C134.331 106.361 133.993 105.951 133.763 105.44C133.538 104.929 133.425 104.37 133.425 103.763C133.425 103.156 133.538 102.597 133.763 102.086C133.993 101.575 134.331 101.165 134.777 100.857C135.228 100.55 135.782 100.396 136.441 100.396C136.918 100.396 137.321 100.476 137.65 100.636C137.979 100.792 138.27 100.994 138.521 101.241L138.131 101.579V97.25H139.743V107H138.222L138.144 105.895L138.612 106.233C138.309 106.51 137.995 106.729 137.67 106.889C137.345 107.05 136.935 107.13 136.441 107.13ZM136.675 105.804C137.03 105.804 137.321 105.717 137.546 105.544C137.771 105.371 137.938 105.132 138.047 104.829C138.155 104.521 138.209 104.166 138.209 103.763C138.209 103.36 138.155 103.007 138.047 102.703C137.938 102.396 137.771 102.155 137.546 101.982C137.321 101.809 137.03 101.722 136.675 101.722C136.337 101.722 136.049 101.809 135.811 101.982C135.572 102.155 135.39 102.396 135.265 102.703C135.139 103.007 135.076 103.36 135.076 103.763C135.076 104.166 135.139 104.521 135.265 104.829C135.39 105.132 135.572 105.371 135.811 105.544C136.049 105.717 136.337 105.804 136.675 105.804ZM146.281 107.13C145.873 107.13 145.542 107.048 145.286 106.883C145.031 106.714 144.842 106.499 144.721 106.239C144.599 105.979 144.539 105.709 144.539 105.427V101.826H143.616L143.759 100.5H144.539V99.07L146.151 98.901V100.5H147.581V101.826H146.151V104.764C146.151 105.093 146.17 105.332 146.209 105.479C146.248 105.622 146.337 105.713 146.476 105.752C146.614 105.787 146.835 105.804 147.139 105.804H147.581L147.438 107.13H146.281ZM148.63 107V100.5H150.138L150.177 101.189C150.342 101.007 150.574 100.825 150.873 100.643C151.172 100.461 151.499 100.37 151.854 100.37C151.958 100.37 152.054 100.379 152.14 100.396L152.023 101.982C151.928 101.956 151.833 101.939 151.737 101.93C151.646 101.921 151.555 101.917 151.464 101.917C151.191 101.917 150.942 101.98 150.717 102.105C150.492 102.231 150.333 102.385 150.242 102.567V107H148.63ZM154.249 107.13C153.903 107.13 153.586 107.054 153.3 106.902C153.014 106.746 152.787 106.523 152.618 106.233C152.449 105.943 152.364 105.592 152.364 105.18C152.364 104.812 152.449 104.497 152.618 104.237C152.791 103.973 153.016 103.754 153.294 103.581C153.575 103.403 153.879 103.265 154.204 103.165C154.533 103.061 154.856 102.985 155.172 102.938C155.493 102.89 155.775 102.862 156.017 102.853C156 102.48 155.905 102.209 155.731 102.04C155.558 101.871 155.263 101.787 154.847 101.787C154.557 101.787 154.273 101.828 153.996 101.91C153.723 101.988 153.413 102.112 153.066 102.281L152.923 100.968C153.313 100.777 153.703 100.634 154.093 100.539C154.488 100.444 154.886 100.396 155.289 100.396C155.775 100.396 156.193 100.483 156.544 100.656C156.895 100.829 157.166 101.109 157.356 101.494C157.547 101.876 157.642 102.381 157.642 103.009V104.764C157.642 105.089 157.657 105.325 157.688 105.472C157.718 105.615 157.774 105.706 157.857 105.745C157.939 105.784 158.058 105.804 158.214 105.804H158.422L158.279 107.13H157.694C157.452 107.13 157.235 107.098 157.044 107.033C156.858 106.972 156.698 106.885 156.563 106.772C156.429 106.66 156.321 106.528 156.238 106.376C156.026 106.614 155.738 106.801 155.374 106.935C155.014 107.065 154.639 107.13 154.249 107.13ZM154.925 105.895C155.068 105.895 155.246 105.858 155.458 105.784C155.671 105.706 155.861 105.587 156.03 105.427V103.945C155.727 103.958 155.424 104.008 155.12 104.094C154.817 104.181 154.563 104.309 154.36 104.478C154.156 104.647 154.054 104.859 154.054 105.115C154.054 105.379 154.124 105.576 154.262 105.706C154.401 105.832 154.622 105.895 154.925 105.895ZM160.872 107L158.376 100.5H159.962L161.561 104.998L163.16 100.5H164.746L162.25 107H160.872ZM168.559 107.13C167.775 107.13 167.121 106.974 166.596 106.662C166.076 106.346 165.686 105.93 165.426 105.414C165.166 104.894 165.036 104.326 165.036 103.711C165.036 103.117 165.158 102.569 165.4 102.066C165.647 101.564 166.007 101.161 166.479 100.857C166.952 100.55 167.528 100.396 168.208 100.396C168.832 100.396 169.352 100.524 169.768 100.779C170.184 101.035 170.496 101.377 170.704 101.806C170.912 102.231 171.016 102.701 171.016 103.217C171.016 103.36 171.008 103.505 170.99 103.652C170.973 103.795 170.947 103.945 170.912 104.101H166.713C166.774 104.504 166.9 104.831 167.09 105.082C167.285 105.329 167.522 105.511 167.799 105.628C168.081 105.745 168.382 105.804 168.702 105.804C169.079 105.804 169.43 105.756 169.755 105.661C170.08 105.561 170.379 105.431 170.652 105.271L170.73 106.636C170.483 106.766 170.176 106.881 169.807 106.98C169.439 107.08 169.023 107.13 168.559 107.13ZM166.752 103.009H169.378C169.378 102.814 169.342 102.619 169.268 102.424C169.194 102.225 169.071 102.058 168.897 101.923C168.728 101.789 168.499 101.722 168.208 101.722C167.792 101.722 167.465 101.843 167.227 102.086C166.989 102.329 166.83 102.636 166.752 103.009ZM173.781 107.13C173.395 107.13 173.079 107.054 172.832 106.902C172.589 106.746 172.409 106.541 172.292 106.285C172.175 106.025 172.117 105.739 172.117 105.427V97.25H173.729V104.764C173.729 105.111 173.748 105.358 173.787 105.505C173.831 105.648 173.909 105.735 174.021 105.765C174.134 105.791 174.296 105.804 174.509 105.804L174.366 107.13H173.781ZM177.196 107.13C176.81 107.13 176.494 107.054 176.247 106.902C176.004 106.746 175.824 106.541 175.707 106.285C175.59 106.025 175.532 105.739 175.532 105.427V97.25H177.144V104.764C177.144 105.111 177.163 105.358 177.202 105.505C177.246 105.648 177.324 105.735 177.436 105.765C177.549 105.791 177.711 105.804 177.924 105.804L177.781 107.13H177.196ZM182.016 107.13C181.232 107.13 180.578 106.974 180.053 106.662C179.533 106.346 179.143 105.93 178.883 105.414C178.623 104.894 178.493 104.326 178.493 103.711C178.493 103.117 178.615 102.569 178.857 102.066C179.104 101.564 179.464 101.161 179.936 100.857C180.409 100.55 180.985 100.396 181.665 100.396C182.289 100.396 182.809 100.524 183.225 100.779C183.641 101.035 183.953 101.377 184.161 101.806C184.369 102.231 184.473 102.701 184.473 103.217C184.473 103.36 184.465 103.505 184.447 103.652C184.43 103.795 184.404 103.945 184.369 104.101H180.17C180.231 104.504 180.357 104.831 180.547 105.082C180.742 105.329 180.979 105.511 181.256 105.628C181.538 105.745 181.839 105.804 182.159 105.804C182.536 105.804 182.887 105.756 183.212 105.661C183.537 105.561 183.836 105.431 184.109 105.271L184.187 106.636C183.94 106.766 183.633 106.881 183.264 106.98C182.896 107.08 182.48 107.13 182.016 107.13ZM180.209 103.009H182.835C182.835 102.814 182.799 102.619 182.725 102.424C182.651 102.225 182.528 102.058 182.354 101.923C182.185 101.789 181.956 101.722 181.665 101.722C181.249 101.722 180.922 101.843 180.684 102.086C180.446 102.329 180.287 102.636 180.209 103.009ZM185.574 107V100.5H187.082L187.121 101.189C187.285 101.007 187.517 100.825 187.816 100.643C188.115 100.461 188.442 100.37 188.798 100.37C188.902 100.37 188.997 100.379 189.084 100.396L188.967 101.982C188.871 101.956 188.776 101.939 188.681 101.93C188.59 101.921 188.499 101.917 188.408 101.917C188.135 101.917 187.886 101.98 187.66 102.105C187.435 102.231 187.277 102.385 187.186 102.567V107H185.574Z",fill:"white"})),{ToolBarFields:i,GeneralFields:m,AdvancedFields:c,FieldWrapper:s}=JetFBComponents,{Tools:u}=JetFBActions,{useUniqueNameOnDuplicate:d,useFields:V}=JetFBHooks,{__:H}=wp.i18n,{InspectorControls:f,InnerBlocks:p,useBlockProps:b,RichText:_}=wp.blockEditor,{useState:y}=wp.element,{TextControl:L,TextareaControl:M,SelectControl:Z,PanelBody:h,Button:g,Popover:E,__experimentalNumberControl:w}=wp.components;let{NumberControl:v}=wp.components;void 0===v&&(v=w);const{InnerBlocks:j}=wp.blockEditor?wp.blockEditor:wp.editor,{__:k}=wp.i18n,{name:F,icon:x=""}=l;l.attributes.isPreview={type:"boolean",default:!1};const P={icon:(0,t.createElement)("span",{dangerouslySetInnerHTML:{__html:x}}),description:k("Create as many fields as they need in the form. Add this field to build complex forms for booking where many elements need to be inserted.","jet-form-builder"),edit:function(e){const C=b(),[l,r]=y(!1);d();const{attributes:w,setAttributes:v,isSelected:j,editProps:{uniqKey:k}}=e,F=V({excludeCurrent:!0});return w.isPreview?(0,t.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},o):[(0,t.createElement)(i,{key:k("ToolBarFields"),...e},"custom"===w.repeater_calc_type&&(0,t.createElement)(t.Fragment,null,(0,t.createElement)(g,{key:k("Button"),isTertiary:!0,isSmall:!0,icon:l?"no-alt":"admin-tools",onClick:()=>r(e=>!e)}),l&&(0,t.createElement)(E,{key:k("Popover"),placement:"bottom-end"},F.length&&(0,t.createElement)(h,{title:"Form Fields"},F.map(({value:C},l)=>(0,t.createElement)("div",{key:k("field_"+C+l)},(0,t.createElement)(g,{isLink:!0,onClick:()=>{(C=>{const t=w.calc_formula||"";e.setAttributes({calc_formula:t+"%"+C+"%"})})(C)}},"%FIELD::"+C+"%"))))))),j&&(0,t.createElement)(f,{key:k("InspectorControls")},(0,t.createElement)(m,{hasMacro:!1}),(0,t.createElement)(h,{title:H("Field","jet-form-builder"),key:k("PanelBody")},(0,t.createElement)(Z,{key:"manage_items_count",label:H("Manage repeater items count","jet-form-builder"),labelPosition:"top",value:w.manage_items_count,onChange:C=>{e.setAttributes({manage_items_count:C})},options:n}),"manually"===w.manage_items_count&&(0,t.createElement)(L,{key:"new_item_label",label:H("Add New Item Label","jet-form-builder"),value:w.new_item_label,onChange:C=>{e.setAttributes({new_item_label:C})}}),"dynamically"===w.manage_items_count&&(0,t.createElement)(Z,{key:"manage_items_count_field",label:H("Field items count","jet-form-builder"),labelPosition:"top",value:w.manage_items_count_field,onChange:C=>{e.setAttributes({manage_items_count_field:C})},options:u.withPlaceholder(F)}),(0,t.createElement)(Z,{key:"repeater_calc_type",label:H("Calculate repeater row value","jet-form-builder"),labelPosition:"top",value:w.repeater_calc_type,onChange:C=>{e.setAttributes({repeater_calc_type:C})},options:a}),"custom"===w.repeater_calc_type&&(0,t.createElement)("div",{className:"jet-form-editor__row-notice"},H("Set math formula to calculate field value.","jet-form-builder"),(0,t.createElement)("br",null),H("For example:","jet-form-builder"),(0,t.createElement)("br",null),(0,t.createElement)("br",null),"%FIELD::quantity%*%META::price%",(0,t.createElement)("br",null),(0,t.createElement)("br",null),H("Where:","jet-form-builder"),(0,t.createElement)("br",null),"-",H('%FIELD::quantity% - macro for form field value. "quantity" - is a field name to get value from',"jet-form-builder"),(0,t.createElement)("br",null),"-",H('%META::price% - macro for current post meta value. "price" - is a meta key to get value from',"jet-form-builder"),(0,t.createElement)("br",null),(0,t.createElement)("br",null))),(0,t.createElement)(c,{key:k("AdvancedFields"),...e})),(0,t.createElement)("div",{key:k("Fragment"),...C},"custom"===w.repeater_calc_type&&(0,t.createElement)("div",{className:"jet-forms__calc-formula-editor"},(0,t.createElement)("div",{className:"jet-form-editor__macros-wrap"},(0,t.createElement)(M,{key:"calc_formula",value:w.calc_formula,label:H("Calculation Formula for Repeater","jet-form-builder"),onChange:C=>{e.setAttributes({calc_formula:C})}}))),(0,t.createElement)(s,{key:k("FieldWrapper"),childrenPosition:"bottom",...e},(0,t.createElement)("div",{className:"jet-form-builder-repeater__row"},(0,t.createElement)(p,{key:k("repeater-fields")}),(0,t.createElement)(g,{className:"jet-form-builder-repeater__remove",isSecondary:!0,onClick:()=>{}},"×")),(0,t.createElement)("div",{className:"jet-form-builder-repeater__actions"},(0,t.createElement)(g,{className:"jet-form-builder-repeater__new",isSecondary:!0,onClick:()=>{}},(0,t.createElement)(_,{placeholder:"Add New",allowedFormats:[],value:w.new_item_label,onChange:e=>v({new_item_label:e})})))))]},save:function(){return(0,t.createElement)(j.Content,null)},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}}};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/repeater-field",function(e){return e.push(C),e})})(); \ No newline at end of file +(()=>{"use strict";var e={d:(C,t)=>{for(var l in t)e.o(t,l)&&!e.o(C,l)&&Object.defineProperty(C,l,{enumerable:!0,get:t[l]})},o:(e,C)=>Object.prototype.hasOwnProperty.call(e,C),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},C={};e.r(C),e.d(C,{metadata:()=>l,name:()=>F,settings:()=>P});const t=window.React,l=JSON.parse('{"apiVersion":3,"name":"jet-forms/repeater-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","range"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Repeater Field","icon":"\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"calc_formula":{"type":"string","default":""},"manage_items_count":{"type":"string","default":"manually"},"new_item_label":{"type":"string","default":"","jfb":{"rich":true}},"manage_items_count_field":{"type":"string","default":""},"repeater_calc_type":{"type":"string","default":"default"},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""}},"providesContext":{"jet-forms/repeater-field--name":"name","jet-forms/repeater-field--manage-items":"manage_items_count"},"viewStyle":"jet-fb-repeater-field"}'),{__:r}=wp.i18n,a=[{value:"default",label:r("Default (returns rows count)","jet-form-builder")},{value:"custom",label:r("Custom (calculate custom value for each row)","jet-form-builder")}],n=[{value:"manually",label:r("Manually","jet-form-builder")},{value:"dynamically",label:r("Dynamically (get count from form field)","jet-form-builder")}],o=(0,t.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,t.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,t.createElement)("path",{d:"M37.3486 37.4609V38.5H30.834V37.5908L34.0947 33.9609C34.4958 33.5143 34.8057 33.1361 35.0244 32.8262C35.2477 32.5117 35.4027 32.2314 35.4893 31.9854C35.5804 31.7347 35.626 31.4795 35.626 31.2197C35.626 30.8916 35.5576 30.5954 35.4209 30.3311C35.2887 30.0622 35.0928 29.848 34.833 29.6885C34.5732 29.529 34.2588 29.4492 33.8896 29.4492C33.4476 29.4492 33.0785 29.5358 32.7822 29.709C32.4906 29.8776 32.2718 30.1146 32.126 30.4199C31.9801 30.7253 31.9072 31.0762 31.9072 31.4727H30.6426C30.6426 30.9121 30.7656 30.3994 31.0117 29.9346C31.2578 29.4697 31.6224 29.1006 32.1055 28.8271C32.5885 28.5492 33.1833 28.4102 33.8896 28.4102C34.5186 28.4102 35.0563 28.5218 35.5029 28.7451C35.9495 28.9639 36.2913 29.2738 36.5283 29.6748C36.7699 30.0713 36.8906 30.5361 36.8906 31.0693C36.8906 31.361 36.8405 31.6572 36.7402 31.958C36.6445 32.2542 36.5101 32.5505 36.3369 32.8467C36.1683 33.1429 35.9701 33.4346 35.7422 33.7217C35.5189 34.0088 35.2796 34.2913 35.0244 34.5693L32.3584 37.4609H37.3486ZM40.1035 32.6826V38.5H38.8389V31.1035H40.0352L40.1035 32.6826ZM39.8027 34.5215L39.2764 34.501C39.2809 33.9951 39.3561 33.528 39.502 33.0996C39.6478 32.6667 39.8529 32.2907 40.1172 31.9717C40.3815 31.6527 40.696 31.4066 41.0605 31.2334C41.4297 31.0557 41.8376 30.9668 42.2842 30.9668C42.6488 30.9668 42.9769 31.0169 43.2686 31.1172C43.5602 31.2129 43.8086 31.3678 44.0137 31.582C44.2233 31.7962 44.3828 32.0742 44.4922 32.416C44.6016 32.7533 44.6562 33.1657 44.6562 33.6533V38.5H43.3848V33.6396C43.3848 33.2523 43.3278 32.9424 43.2139 32.71C43.0999 32.473 42.9336 32.3021 42.7148 32.1973C42.4961 32.0879 42.2272 32.0332 41.9082 32.0332C41.5938 32.0332 41.3066 32.0993 41.0469 32.2314C40.7917 32.3636 40.5706 32.5459 40.3838 32.7783C40.2015 33.0107 40.0579 33.2773 39.9531 33.5781C39.8529 33.8743 39.8027 34.1888 39.8027 34.5215ZM51.2393 37.0645V28H52.5107V38.5H51.3486L51.2393 37.0645ZM46.2627 34.8838V34.7402C46.2627 34.1751 46.3311 33.6624 46.4678 33.2021C46.609 32.7373 46.8073 32.3385 47.0625 32.0059C47.3223 31.6732 47.6299 31.418 47.9854 31.2402C48.3454 31.0579 48.7464 30.9668 49.1885 30.9668C49.6533 30.9668 50.0589 31.0488 50.4053 31.2129C50.7562 31.3724 51.0524 31.6071 51.2939 31.917C51.54 32.2223 51.7337 32.5915 51.875 33.0244C52.0163 33.4574 52.1143 33.9473 52.1689 34.4941V35.123C52.1188 35.6654 52.0208 36.153 51.875 36.5859C51.7337 37.0189 51.54 37.388 51.2939 37.6934C51.0524 37.9987 50.7562 38.2334 50.4053 38.3975C50.0544 38.557 49.6442 38.6367 49.1748 38.6367C48.7419 38.6367 48.3454 38.5433 47.9854 38.3564C47.6299 38.1696 47.3223 37.9076 47.0625 37.5703C46.8073 37.2331 46.609 36.8366 46.4678 36.3809C46.3311 35.9206 46.2627 35.4215 46.2627 34.8838ZM47.5342 34.7402V34.8838C47.5342 35.2529 47.5706 35.5993 47.6436 35.9229C47.721 36.2464 47.8395 36.5312 47.999 36.7773C48.1585 37.0234 48.3613 37.2171 48.6074 37.3584C48.8535 37.4951 49.1475 37.5635 49.4893 37.5635C49.9085 37.5635 50.2526 37.4746 50.5215 37.2969C50.7949 37.1191 51.0137 36.8844 51.1777 36.5928C51.3418 36.3011 51.4694 35.9844 51.5605 35.6426V33.9951C51.5059 33.7445 51.4261 33.5029 51.3213 33.2705C51.221 33.0335 51.0889 32.8239 50.9248 32.6416C50.7653 32.4548 50.5671 32.3066 50.3301 32.1973C50.0977 32.0879 49.8219 32.0332 49.5029 32.0332C49.1566 32.0332 48.8581 32.1061 48.6074 32.252C48.3613 32.3932 48.1585 32.5892 47.999 32.8398C47.8395 33.0859 47.721 33.373 47.6436 33.7012C47.5706 34.0247 47.5342 34.3711 47.5342 34.7402ZM61.5479 28.5469V38.5H60.249V28.5469H61.5479ZM64.7471 28.5469V29.627H57.0566V28.5469H64.7471ZM66.7773 32.2656V38.5H65.5127V31.1035H66.7432L66.7773 32.2656ZM69.0879 31.0625L69.0811 32.2383C68.9762 32.2155 68.876 32.2018 68.7803 32.1973C68.6891 32.1882 68.5843 32.1836 68.4658 32.1836C68.1742 32.1836 67.9167 32.2292 67.6934 32.3203C67.4701 32.4115 67.2809 32.5391 67.126 32.7031C66.971 32.8672 66.848 33.0632 66.7568 33.291C66.6702 33.5143 66.6133 33.7604 66.5859 34.0293L66.2305 34.2344C66.2305 33.7878 66.2738 33.3685 66.3604 32.9766C66.4515 32.5846 66.5905 32.2383 66.7773 31.9375C66.9642 31.6322 67.2012 31.3952 67.4883 31.2266C67.7799 31.0534 68.1263 30.9668 68.5273 30.9668C68.6185 30.9668 68.7233 30.9782 68.8418 31.001C68.9603 31.0192 69.0423 31.0397 69.0879 31.0625ZM74.3447 37.2354V33.4277C74.3447 33.1361 74.2855 32.8831 74.167 32.6689C74.0531 32.4502 73.8799 32.2816 73.6475 32.1631C73.415 32.0446 73.1279 31.9854 72.7861 31.9854C72.4671 31.9854 72.1868 32.04 71.9453 32.1494C71.7083 32.2588 71.5215 32.4023 71.3848 32.5801C71.2526 32.7578 71.1865 32.9492 71.1865 33.1543H69.9219C69.9219 32.89 69.9902 32.6279 70.127 32.3682C70.2637 32.1084 70.4596 31.8737 70.7148 31.6641C70.9746 31.4499 71.2845 31.2812 71.6445 31.1582C72.0091 31.0306 72.4147 30.9668 72.8613 30.9668C73.3991 30.9668 73.873 31.0579 74.2832 31.2402C74.6979 31.4225 75.0215 31.6982 75.2539 32.0674C75.4909 32.432 75.6094 32.89 75.6094 33.4414V36.8867C75.6094 37.1328 75.6299 37.3949 75.6709 37.6729C75.7165 37.9508 75.7826 38.1901 75.8691 38.3906V38.5H74.5498C74.486 38.3542 74.4359 38.1605 74.3994 37.9189C74.363 37.6729 74.3447 37.445 74.3447 37.2354ZM74.5635 34.0156L74.5771 34.9043H73.2988C72.9388 34.9043 72.6175 34.9339 72.335 34.9932C72.0524 35.0479 71.8154 35.1322 71.624 35.2461C71.4326 35.36 71.2868 35.5036 71.1865 35.6768C71.0863 35.8454 71.0361 36.0436 71.0361 36.2715C71.0361 36.5039 71.0885 36.7158 71.1934 36.9072C71.2982 37.0986 71.4554 37.2513 71.665 37.3652C71.8792 37.4746 72.1413 37.5293 72.4512 37.5293C72.8385 37.5293 73.1803 37.4473 73.4766 37.2832C73.7728 37.1191 74.0075 36.9186 74.1807 36.6816C74.3584 36.4447 74.4541 36.2145 74.4678 35.9912L75.0078 36.5996C74.9759 36.791 74.8893 37.0029 74.748 37.2354C74.6068 37.4678 74.4176 37.6911 74.1807 37.9053C73.9482 38.1149 73.6702 38.2904 73.3467 38.4316C73.0277 38.5684 72.6676 38.6367 72.2666 38.6367C71.7653 38.6367 71.3255 38.5387 70.9473 38.3428C70.5736 38.1468 70.2819 37.8848 70.0723 37.5566C69.8672 37.224 69.7646 36.8525 69.7646 36.4424C69.7646 36.0459 69.8421 35.6973 69.9971 35.3965C70.152 35.0911 70.3753 34.8382 70.667 34.6377C70.9587 34.4326 71.3096 34.2777 71.7197 34.1729C72.1299 34.068 72.5879 34.0156 73.0938 34.0156H74.5635ZM79.7383 37.3584L81.7617 31.1035H83.0537L80.3945 38.5H79.5469L79.7383 37.3584ZM78.0498 31.1035L80.1348 37.3926L80.2783 38.5H79.4307L76.751 31.1035H78.0498ZM87.2441 38.6367C86.7292 38.6367 86.262 38.5501 85.8428 38.377C85.4281 38.1992 85.0703 37.9508 84.7695 37.6318C84.4733 37.3128 84.2454 36.9346 84.0859 36.4971C83.9264 36.0596 83.8467 35.5811 83.8467 35.0615V34.7744C83.8467 34.1729 83.9355 33.6374 84.1133 33.168C84.291 32.694 84.5326 32.293 84.8379 31.9648C85.1432 31.6367 85.4896 31.3883 85.877 31.2197C86.2643 31.0511 86.6654 30.9668 87.0801 30.9668C87.6087 30.9668 88.0645 31.0579 88.4473 31.2402C88.8346 31.4225 89.1514 31.6777 89.3975 32.0059C89.6436 32.3294 89.8258 32.7122 89.9443 33.1543C90.0628 33.5918 90.1221 34.0703 90.1221 34.5898V35.1572H84.5986V34.125H88.8574V34.0293C88.8392 33.7012 88.7708 33.3822 88.6523 33.0723C88.5384 32.7624 88.3561 32.5072 88.1055 32.3066C87.8548 32.1061 87.513 32.0059 87.0801 32.0059C86.793 32.0059 86.5286 32.0674 86.2871 32.1904C86.0456 32.3089 85.8382 32.4867 85.665 32.7236C85.4919 32.9606 85.3574 33.25 85.2617 33.5918C85.166 33.9336 85.1182 34.3278 85.1182 34.7744V35.0615C85.1182 35.4124 85.166 35.7428 85.2617 36.0527C85.362 36.3581 85.5055 36.627 85.6924 36.8594C85.8838 37.0918 86.1139 37.2741 86.3828 37.4062C86.6562 37.5384 86.9661 37.6045 87.3125 37.6045C87.7591 37.6045 88.1374 37.5133 88.4473 37.3311C88.7572 37.1488 89.0283 36.9049 89.2607 36.5996L90.0264 37.208C89.8669 37.4495 89.6641 37.6797 89.418 37.8984C89.1719 38.1172 88.8688 38.2949 88.5088 38.4316C88.1533 38.5684 87.7318 38.6367 87.2441 38.6367ZM92.9727 28V38.5H91.7012V28H92.9727ZM96.377 28V38.5H95.1055V28H96.377ZM101.477 38.6367C100.962 38.6367 100.494 38.5501 100.075 38.377C99.6605 38.1992 99.3027 37.9508 99.002 37.6318C98.7057 37.3128 98.4779 36.9346 98.3184 36.4971C98.1589 36.0596 98.0791 35.5811 98.0791 35.0615V34.7744C98.0791 34.1729 98.168 33.6374 98.3457 33.168C98.5234 32.694 98.765 32.293 99.0703 31.9648C99.3757 31.6367 99.722 31.3883 100.109 31.2197C100.497 31.0511 100.898 30.9668 101.312 30.9668C101.841 30.9668 102.297 31.0579 102.68 31.2402C103.067 31.4225 103.384 31.6777 103.63 32.0059C103.876 32.3294 104.058 32.7122 104.177 33.1543C104.295 33.5918 104.354 34.0703 104.354 34.5898V35.1572H98.8311V34.125H103.09V34.0293C103.072 33.7012 103.003 33.3822 102.885 33.0723C102.771 32.7624 102.589 32.5072 102.338 32.3066C102.087 32.1061 101.745 32.0059 101.312 32.0059C101.025 32.0059 100.761 32.0674 100.52 32.1904C100.278 32.3089 100.071 32.4867 99.8975 32.7236C99.7243 32.9606 99.5898 33.25 99.4941 33.5918C99.3984 33.9336 99.3506 34.3278 99.3506 34.7744V35.0615C99.3506 35.4124 99.3984 35.7428 99.4941 36.0527C99.5944 36.3581 99.738 36.627 99.9248 36.8594C100.116 37.0918 100.346 37.2741 100.615 37.4062C100.889 37.5384 101.199 37.6045 101.545 37.6045C101.992 37.6045 102.37 37.5133 102.68 37.3311C102.99 37.1488 103.261 36.9049 103.493 36.5996L104.259 37.208C104.099 37.4495 103.896 37.6797 103.65 37.8984C103.404 38.1172 103.101 38.2949 102.741 38.4316C102.386 38.5684 101.964 38.6367 101.477 38.6367ZM107.096 32.2656V38.5H105.831V31.1035H107.062L107.096 32.2656ZM109.406 31.0625L109.399 32.2383C109.295 32.2155 109.194 32.2018 109.099 32.1973C109.007 32.1882 108.903 32.1836 108.784 32.1836C108.493 32.1836 108.235 32.2292 108.012 32.3203C107.788 32.4115 107.599 32.5391 107.444 32.7031C107.289 32.8672 107.166 33.0632 107.075 33.291C106.989 33.5143 106.932 33.7604 106.904 34.0293L106.549 34.2344C106.549 33.7878 106.592 33.3685 106.679 32.9766C106.77 32.5846 106.909 32.2383 107.096 31.9375C107.283 31.6322 107.52 31.3952 107.807 31.2266C108.098 31.0534 108.445 30.9668 108.846 30.9668C108.937 30.9668 109.042 30.9782 109.16 31.001C109.279 31.0192 109.361 31.0397 109.406 31.0625Z",fill:"#64748B"}),(0,t.createElement)("rect",{x:"30.5",y:"47",width:"115.5",height:"29",rx:"3.5",fill:"white"}),(0,t.createElement)("path",{d:"M44.9512 63.3022V56.7578H46.1699V63.3022C46.1699 63.9116 46.0451 64.4258 45.7954 64.8447C45.5457 65.2637 45.2008 65.5832 44.7607 65.8032C44.3249 66.019 43.8234 66.127 43.2563 66.127C42.6893 66.127 42.1857 66.0296 41.7456 65.835C41.3055 65.6403 40.9606 65.3441 40.7109 64.9463C40.4613 64.5485 40.3364 64.047 40.3364 63.4419H41.5615C41.5615 63.8312 41.6335 64.1507 41.7773 64.4004C41.9212 64.6501 42.1201 64.8341 42.374 64.9526C42.6322 65.0711 42.9263 65.1304 43.2563 65.1304C43.578 65.1304 43.8657 65.0627 44.1196 64.9272C44.3778 64.7876 44.5809 64.5824 44.729 64.3115C44.8771 64.0365 44.9512 63.7 44.9512 63.3022ZM50.918 66.127C50.4398 66.127 50.006 66.0465 49.6167 65.8857C49.2316 65.7207 48.8994 65.4901 48.6201 65.1938C48.3451 64.8976 48.1335 64.5464 47.9854 64.1401C47.8372 63.7339 47.7632 63.2896 47.7632 62.8071V62.5405C47.7632 61.9819 47.8457 61.4847 48.0107 61.0488C48.1758 60.6087 48.4001 60.2363 48.6836 59.9316C48.9671 59.627 49.2887 59.3963 49.6484 59.2397C50.0081 59.0832 50.3805 59.0049 50.7656 59.0049C51.2565 59.0049 51.6797 59.0895 52.0352 59.2588C52.3949 59.4281 52.689 59.665 52.9175 59.9697C53.146 60.2702 53.3153 60.6257 53.4253 61.0361C53.5353 61.4424 53.5903 61.8867 53.5903 62.3691V62.896H48.4614V61.9375H52.416V61.8486C52.3991 61.5439 52.3356 61.2477 52.2256 60.96C52.1198 60.6722 51.9505 60.4352 51.7178 60.249C51.485 60.0628 51.1676 59.9697 50.7656 59.9697C50.499 59.9697 50.2536 60.0269 50.0293 60.1411C49.805 60.2511 49.6125 60.4162 49.4517 60.6362C49.2909 60.8563 49.166 61.125 49.0771 61.4424C48.9883 61.7598 48.9438 62.1258 48.9438 62.5405V62.8071C48.9438 63.133 48.9883 63.4398 49.0771 63.7275C49.1702 64.0111 49.3035 64.2607 49.4771 64.4766C49.6548 64.6924 49.8685 64.8617 50.1182 64.9844C50.3721 65.1071 50.6598 65.1685 50.9814 65.1685C51.3962 65.1685 51.7474 65.0838 52.0352 64.9146C52.3229 64.7453 52.5747 64.5189 52.7905 64.2354L53.5015 64.8003C53.3534 65.0246 53.165 65.2383 52.9365 65.4414C52.708 65.6445 52.4266 65.8096 52.0923 65.9365C51.7622 66.0635 51.3708 66.127 50.918 66.127ZM56.1357 60.5981V66H54.9614V59.1318H56.0723L56.1357 60.5981ZM55.8564 62.3057L55.3677 62.2866C55.3719 61.8169 55.4417 61.3831 55.5771 60.9854C55.7126 60.5833 55.903 60.2342 56.1484 59.938C56.3939 59.6418 56.6859 59.4132 57.0244 59.2524C57.3672 59.0874 57.7459 59.0049 58.1606 59.0049C58.4992 59.0049 58.8039 59.0514 59.0747 59.1445C59.3455 59.2334 59.5762 59.3773 59.7666 59.5762C59.9613 59.7751 60.1094 60.0332 60.2109 60.3506C60.3125 60.6637 60.3633 61.0467 60.3633 61.4995V66H59.1826V61.4868C59.1826 61.1271 59.1297 60.8394 59.0239 60.6235C58.9181 60.4035 58.7637 60.2448 58.5605 60.1475C58.3574 60.0459 58.1077 59.9951 57.8115 59.9951C57.5195 59.9951 57.2529 60.0565 57.0117 60.1792C56.7747 60.3019 56.5695 60.4712 56.396 60.687C56.2267 60.9028 56.0934 61.1504 55.9961 61.4297C55.903 61.7048 55.8564 61.9967 55.8564 62.3057ZM63.3213 60.5981V66H62.147V59.1318H63.2578L63.3213 60.5981ZM63.042 62.3057L62.5532 62.2866C62.5575 61.8169 62.6273 61.3831 62.7627 60.9854C62.8981 60.5833 63.0885 60.2342 63.334 59.938C63.5794 59.6418 63.8714 59.4132 64.21 59.2524C64.5527 59.0874 64.9315 59.0049 65.3462 59.0049C65.6847 59.0049 65.9894 59.0514 66.2603 59.1445C66.5311 59.2334 66.7617 59.3773 66.9521 59.5762C67.1468 59.7751 67.2949 60.0332 67.3965 60.3506C67.498 60.6637 67.5488 61.0467 67.5488 61.4995V66H66.3682V61.4868C66.3682 61.1271 66.3153 60.8394 66.2095 60.6235C66.1037 60.4035 65.9492 60.2448 65.7461 60.1475C65.543 60.0459 65.2933 59.9951 64.9971 59.9951C64.7051 59.9951 64.4385 60.0565 64.1973 60.1792C63.9603 60.3019 63.755 60.4712 63.5815 60.687C63.4123 60.9028 63.279 61.1504 63.1816 61.4297C63.0885 61.7048 63.042 61.9967 63.042 62.3057ZM70.6084 59.1318V66H69.4277V59.1318H70.6084ZM69.3389 57.3101C69.3389 57.1196 69.396 56.9588 69.5103 56.8276C69.6287 56.6965 69.8022 56.6309 70.0308 56.6309C70.255 56.6309 70.4264 56.6965 70.5449 56.8276C70.6676 56.9588 70.729 57.1196 70.729 57.3101C70.729 57.492 70.6676 57.6486 70.5449 57.7798C70.4264 57.9067 70.255 57.9702 70.0308 57.9702C69.8022 57.9702 69.6287 57.9067 69.5103 57.7798C69.396 57.6486 69.3389 57.492 69.3389 57.3101ZM74.2456 66H73.0713V58.4082C73.0713 57.9131 73.1602 57.4963 73.3379 57.1577C73.5199 56.8149 73.7801 56.5568 74.1187 56.3833C74.4572 56.2056 74.8592 56.1167 75.3247 56.1167C75.4601 56.1167 75.5955 56.1252 75.731 56.1421C75.8706 56.159 76.006 56.1844 76.1372 56.2183L76.0737 57.1768C75.9849 57.1556 75.8833 57.1408 75.769 57.1323C75.659 57.1239 75.549 57.1196 75.439 57.1196C75.1893 57.1196 74.9735 57.1704 74.7915 57.272C74.6138 57.3693 74.4784 57.5132 74.3853 57.7036C74.2922 57.894 74.2456 58.1289 74.2456 58.4082V66ZM75.7056 59.1318V60.0332H71.9858V59.1318H75.7056ZM79.7109 66.127C79.2327 66.127 78.799 66.0465 78.4097 65.8857C78.0246 65.7207 77.6924 65.4901 77.4131 65.1938C77.138 64.8976 76.9264 64.5464 76.7783 64.1401C76.6302 63.7339 76.5562 63.2896 76.5562 62.8071V62.5405C76.5562 61.9819 76.6387 61.4847 76.8037 61.0488C76.9688 60.6087 77.193 60.2363 77.4766 59.9316C77.7601 59.627 78.0817 59.3963 78.4414 59.2397C78.8011 59.0832 79.1735 59.0049 79.5586 59.0049C80.0495 59.0049 80.4727 59.0895 80.8281 59.2588C81.1878 59.4281 81.4819 59.665 81.7104 59.9697C81.939 60.2702 82.1082 60.6257 82.2183 61.0361C82.3283 61.4424 82.3833 61.8867 82.3833 62.3691V62.896H77.2544V61.9375H81.209V61.8486C81.1921 61.5439 81.1286 61.2477 81.0186 60.96C80.9128 60.6722 80.7435 60.4352 80.5107 60.249C80.278 60.0628 79.9606 59.9697 79.5586 59.9697C79.292 59.9697 79.0465 60.0269 78.8223 60.1411C78.598 60.2511 78.4054 60.4162 78.2446 60.6362C78.0838 60.8563 77.959 61.125 77.8701 61.4424C77.7812 61.7598 77.7368 62.1258 77.7368 62.5405V62.8071C77.7368 63.133 77.7812 63.4398 77.8701 63.7275C77.9632 64.0111 78.0965 64.2607 78.27 64.4766C78.4478 64.6924 78.6615 64.8617 78.9111 64.9844C79.165 65.1071 79.4528 65.1685 79.7744 65.1685C80.1891 65.1685 80.5404 65.0838 80.8281 64.9146C81.1159 64.7453 81.3677 64.5189 81.5835 64.2354L82.2944 64.8003C82.1463 65.0246 81.958 65.2383 81.7295 65.4414C81.501 65.6445 81.2196 65.8096 80.8853 65.9365C80.5552 66.0635 80.1637 66.127 79.7109 66.127ZM84.9287 60.2109V66H83.7544V59.1318H84.897L84.9287 60.2109ZM87.0742 59.0938L87.0679 60.1855C86.9705 60.1644 86.8774 60.1517 86.7886 60.1475C86.7039 60.139 86.6066 60.1348 86.4966 60.1348C86.2257 60.1348 85.9867 60.1771 85.7793 60.2617C85.5719 60.3464 85.3963 60.4648 85.2524 60.6172C85.1086 60.7695 84.9943 60.9515 84.9097 61.1631C84.8293 61.3704 84.7764 61.599 84.751 61.8486L84.4209 62.0391C84.4209 61.6243 84.4611 61.235 84.5415 60.8711C84.6261 60.5072 84.7552 60.1855 84.9287 59.9062C85.1022 59.6227 85.3223 59.4027 85.5889 59.2461C85.8597 59.0853 86.1813 59.0049 86.5537 59.0049C86.6383 59.0049 86.7357 59.0155 86.8457 59.0366C86.9557 59.0535 87.0319 59.0726 87.0742 59.0938Z",fill:"#0F172A"}),(0,t.createElement)("rect",{x:"30.5",y:"47",width:"115.5",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,t.createElement)("rect",{x:"152",y:"47",width:"115.5",height:"29",rx:"3.5",fill:"white"}),(0,t.createElement)("path",{d:"M162.998 56.7578L165.397 61.3979L167.803 56.7578H169.193L166.007 62.5469V66H164.782V62.5469L161.595 56.7578H162.998ZM169.473 62.6421V62.4961C169.473 62.001 169.545 61.5418 169.688 61.1187C169.832 60.6912 170.04 60.321 170.311 60.0078C170.581 59.6904 170.909 59.445 171.294 59.2715C171.68 59.0938 172.111 59.0049 172.589 59.0049C173.072 59.0049 173.506 59.0938 173.891 59.2715C174.28 59.445 174.61 59.6904 174.881 60.0078C175.156 60.321 175.365 60.6912 175.509 61.1187C175.653 61.5418 175.725 62.001 175.725 62.4961V62.6421C175.725 63.1372 175.653 63.5964 175.509 64.0195C175.365 64.4427 175.156 64.813 174.881 65.1304C174.61 65.4435 174.282 65.689 173.897 65.8667C173.516 66.0402 173.084 66.127 172.602 66.127C172.12 66.127 171.686 66.0402 171.301 65.8667C170.916 65.689 170.586 65.4435 170.311 65.1304C170.04 64.813 169.832 64.4427 169.688 64.0195C169.545 63.5964 169.473 63.1372 169.473 62.6421ZM170.647 62.4961V62.6421C170.647 62.9849 170.687 63.3086 170.768 63.6133C170.848 63.9137 170.969 64.1803 171.129 64.4131C171.294 64.6458 171.5 64.8299 171.745 64.9653C171.991 65.0965 172.276 65.1621 172.602 65.1621C172.924 65.1621 173.205 65.0965 173.446 64.9653C173.692 64.8299 173.895 64.6458 174.056 64.4131C174.216 64.1803 174.337 63.9137 174.417 63.6133C174.502 63.3086 174.544 62.9849 174.544 62.6421V62.4961C174.544 62.1576 174.502 61.8381 174.417 61.5376C174.337 61.2329 174.214 60.9642 174.049 60.7314C173.889 60.4945 173.685 60.3083 173.44 60.1729C173.199 60.0374 172.915 59.9697 172.589 59.9697C172.268 59.9697 171.984 60.0374 171.739 60.1729C171.498 60.3083 171.294 60.4945 171.129 60.7314C170.969 60.9642 170.848 61.2329 170.768 61.5376C170.687 61.8381 170.647 62.1576 170.647 62.4961ZM181.4 64.4131V59.1318H182.581V66H181.457L181.4 64.4131ZM181.622 62.9658L182.111 62.9531C182.111 63.4102 182.062 63.8333 181.965 64.2227C181.872 64.6077 181.719 64.9421 181.508 65.2256C181.296 65.5091 181.019 65.7313 180.676 65.8921C180.333 66.0487 179.917 66.127 179.426 66.127C179.091 66.127 178.785 66.0783 178.505 65.981C178.23 65.8836 177.993 65.7334 177.794 65.5303C177.596 65.3271 177.441 65.0627 177.331 64.7368C177.225 64.411 177.172 64.0195 177.172 63.5625V59.1318H178.347V63.5752C178.347 63.8841 178.381 64.1401 178.448 64.3433C178.52 64.5422 178.615 64.7008 178.734 64.8193C178.857 64.9336 178.992 65.014 179.14 65.0605C179.292 65.1071 179.449 65.1304 179.61 65.1304C180.109 65.1304 180.505 65.0352 180.797 64.8447C181.089 64.6501 181.298 64.3898 181.425 64.064C181.556 63.7339 181.622 63.3678 181.622 62.9658ZM185.545 60.2109V66H184.371V59.1318H185.513L185.545 60.2109ZM187.69 59.0938L187.684 60.1855C187.587 60.1644 187.494 60.1517 187.405 60.1475C187.32 60.139 187.223 60.1348 187.113 60.1348C186.842 60.1348 186.603 60.1771 186.396 60.2617C186.188 60.3464 186.013 60.4648 185.869 60.6172C185.725 60.7695 185.611 60.9515 185.526 61.1631C185.445 61.3704 185.393 61.599 185.367 61.8486L185.037 62.0391C185.037 61.6243 185.077 61.235 185.158 60.8711C185.242 60.5072 185.371 60.1855 185.545 59.9062C185.718 59.6227 185.938 59.4027 186.205 59.2461C186.476 59.0853 186.798 59.0049 187.17 59.0049C187.255 59.0049 187.352 59.0155 187.462 59.0366C187.572 59.0535 187.648 59.0726 187.69 59.0938ZM199.288 56.7578V66H198.056L193.403 58.8716V66H192.178V56.7578H193.403L198.075 63.9053V56.7578H199.288ZM205.331 64.8257V61.29C205.331 61.0192 205.276 60.7843 205.166 60.5854C205.06 60.3823 204.899 60.2257 204.683 60.1157C204.467 60.0057 204.201 59.9507 203.883 59.9507C203.587 59.9507 203.327 60.0015 203.103 60.103C202.882 60.2046 202.709 60.3379 202.582 60.5029C202.459 60.668 202.398 60.8457 202.398 61.0361H201.224C201.224 60.7907 201.287 60.5474 201.414 60.3062C201.541 60.0649 201.723 59.847 201.96 59.6523C202.201 59.4535 202.489 59.2969 202.823 59.1826C203.162 59.0641 203.538 59.0049 203.953 59.0049C204.452 59.0049 204.893 59.0895 205.273 59.2588C205.659 59.4281 205.959 59.6841 206.175 60.0269C206.395 60.3654 206.505 60.7907 206.505 61.3027V64.502C206.505 64.7305 206.524 64.9738 206.562 65.2319C206.604 65.4901 206.666 65.7122 206.746 65.8984V66H205.521C205.462 65.8646 205.415 65.6847 205.381 65.4604C205.347 65.2319 205.331 65.0203 205.331 64.8257ZM205.534 61.8359L205.546 62.6611H204.359C204.025 62.6611 203.727 62.6886 203.464 62.7437C203.202 62.7944 202.982 62.8727 202.804 62.9785C202.626 63.0843 202.491 63.2176 202.398 63.3784C202.305 63.535 202.258 63.7191 202.258 63.9307C202.258 64.1465 202.307 64.3433 202.404 64.521C202.502 64.6987 202.648 64.8405 202.842 64.9463C203.041 65.0479 203.285 65.0986 203.572 65.0986C203.932 65.0986 204.249 65.0225 204.524 64.8701C204.799 64.7178 205.017 64.5316 205.178 64.3115C205.343 64.0915 205.432 63.8778 205.445 63.6704L205.946 64.2354C205.917 64.4131 205.836 64.6099 205.705 64.8257C205.574 65.0415 205.398 65.2489 205.178 65.4478C204.962 65.6424 204.704 65.8053 204.404 65.9365C204.108 66.0635 203.773 66.127 203.401 66.127C202.935 66.127 202.527 66.036 202.176 65.854C201.829 65.672 201.558 65.4287 201.363 65.124C201.173 64.8151 201.078 64.4702 201.078 64.0894C201.078 63.7212 201.15 63.3975 201.293 63.1182C201.437 62.8346 201.645 62.5998 201.916 62.4136C202.186 62.2231 202.512 62.0793 202.893 61.9819C203.274 61.8846 203.699 61.8359 204.169 61.8359H205.534ZM209.52 60.4966V66H208.339V59.1318H209.457L209.52 60.4966ZM209.279 62.3057L208.733 62.2866C208.737 61.8169 208.799 61.3831 208.917 60.9854C209.035 60.5833 209.211 60.2342 209.444 59.938C209.677 59.6418 209.966 59.4132 210.313 59.2524C210.66 59.0874 211.062 59.0049 211.52 59.0049C211.841 59.0049 212.137 59.0514 212.408 59.1445C212.679 59.2334 212.914 59.3752 213.113 59.5698C213.312 59.7645 213.466 60.0142 213.576 60.3188C213.686 60.6235 213.741 60.9917 213.741 61.4233V66H212.567V61.4805C212.567 61.1208 212.506 60.833 212.383 60.6172C212.264 60.4014 212.095 60.2448 211.875 60.1475C211.655 60.0459 211.397 59.9951 211.101 59.9951C210.754 59.9951 210.464 60.0565 210.231 60.1792C209.998 60.3019 209.812 60.4712 209.672 60.687C209.533 60.9028 209.431 61.1504 209.368 61.4297C209.308 61.7048 209.279 61.9967 209.279 62.3057ZM213.729 61.6582L212.941 61.8994C212.946 61.5228 213.007 61.161 213.125 60.814C213.248 60.467 213.424 60.158 213.652 59.8872C213.885 59.6164 214.171 59.4027 214.509 59.2461C214.848 59.0853 215.235 59.0049 215.671 59.0049C216.039 59.0049 216.365 59.0535 216.648 59.1509C216.936 59.2482 217.177 59.3984 217.372 59.6016C217.571 59.8005 217.721 60.0565 217.823 60.3696C217.924 60.6828 217.975 61.0552 217.975 61.4868V66H216.794V61.4741C216.794 61.089 216.733 60.7907 216.61 60.5791C216.492 60.3633 216.323 60.2131 216.103 60.1284C215.887 60.0396 215.629 59.9951 215.328 59.9951C215.07 59.9951 214.841 60.0396 214.643 60.1284C214.444 60.2173 214.277 60.34 214.141 60.4966C214.006 60.6489 213.902 60.8245 213.83 61.0234C213.762 61.2223 213.729 61.4339 213.729 61.6582ZM222.603 66.127C222.124 66.127 221.691 66.0465 221.301 65.8857C220.916 65.7207 220.584 65.4901 220.305 65.1938C220.03 64.8976 219.818 64.5464 219.67 64.1401C219.522 63.7339 219.448 63.2896 219.448 62.8071V62.5405C219.448 61.9819 219.53 61.4847 219.695 61.0488C219.86 60.6087 220.085 60.2363 220.368 59.9316C220.652 59.627 220.973 59.3963 221.333 59.2397C221.693 59.0832 222.065 59.0049 222.45 59.0049C222.941 59.0049 223.364 59.0895 223.72 59.2588C224.079 59.4281 224.374 59.665 224.602 59.9697C224.831 60.2702 225 60.6257 225.11 61.0361C225.22 61.4424 225.275 61.8867 225.275 62.3691V62.896H220.146V61.9375H224.101V61.8486C224.084 61.5439 224.02 61.2477 223.91 60.96C223.804 60.6722 223.635 60.4352 223.402 60.249C223.17 60.0628 222.852 59.9697 222.45 59.9697C222.184 59.9697 221.938 60.0269 221.714 60.1411C221.49 60.2511 221.297 60.4162 221.136 60.6362C220.975 60.8563 220.851 61.125 220.762 61.4424C220.673 61.7598 220.628 62.1258 220.628 62.5405V62.8071C220.628 63.133 220.673 63.4398 220.762 63.7275C220.855 64.0111 220.988 64.2607 221.162 64.4766C221.339 64.6924 221.553 64.8617 221.803 64.9844C222.057 65.1071 222.344 65.1685 222.666 65.1685C223.081 65.1685 223.432 65.0838 223.72 64.9146C224.007 64.7453 224.259 64.5189 224.475 64.2354L225.186 64.8003C225.038 65.0246 224.85 65.2383 224.621 65.4414C224.393 65.6445 224.111 65.8096 223.777 65.9365C223.447 66.0635 223.055 66.127 222.603 66.127Z",fill:"#64748B"}),(0,t.createElement)("rect",{x:"152",y:"47",width:"115.5",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,t.createElement)("rect",{x:"30",y:"86.5",width:"238",height:"32",rx:"16",fill:"#4272F9"}),(0,t.createElement)("path",{d:"M111.151 105.752V104.01H109.409V102.788H111.151V101.046H112.477V102.788H114.219V104.01H112.477V105.752H111.151ZM123.629 104.842H119.82V103.386H123.629V104.842ZM121.51 99.525H121.939L119.313 107H117.701L120.938 97.9H122.511L125.748 107H124.136L121.51 99.525ZM129.014 107.13C128.356 107.13 127.801 106.976 127.35 106.668C126.904 106.361 126.566 105.951 126.336 105.44C126.111 104.929 125.998 104.37 125.998 103.763C125.998 103.156 126.111 102.597 126.336 102.086C126.566 101.575 126.904 101.165 127.35 100.857C127.801 100.55 128.356 100.396 129.014 100.396C129.491 100.396 129.894 100.476 130.223 100.636C130.553 100.792 130.843 100.994 131.094 101.241L130.704 101.579V97.25H132.316V107H130.795L130.717 105.895L131.185 106.233C130.882 106.51 130.568 106.729 130.243 106.889C129.918 107.05 129.508 107.13 129.014 107.13ZM129.248 105.804C129.604 105.804 129.894 105.717 130.119 105.544C130.345 105.371 130.511 105.132 130.62 104.829C130.728 104.521 130.782 104.166 130.782 103.763C130.782 103.36 130.728 103.007 130.62 102.703C130.511 102.396 130.345 102.155 130.119 101.982C129.894 101.809 129.604 101.722 129.248 101.722C128.91 101.722 128.622 101.809 128.384 101.982C128.145 102.155 127.963 102.396 127.838 102.703C127.712 103.007 127.649 103.36 127.649 103.763C127.649 104.166 127.712 104.521 127.838 104.829C127.963 105.132 128.145 105.371 128.384 105.544C128.622 105.717 128.91 105.804 129.248 105.804ZM136.441 107.13C135.782 107.13 135.228 106.976 134.777 106.668C134.331 106.361 133.993 105.951 133.763 105.44C133.538 104.929 133.425 104.37 133.425 103.763C133.425 103.156 133.538 102.597 133.763 102.086C133.993 101.575 134.331 101.165 134.777 100.857C135.228 100.55 135.782 100.396 136.441 100.396C136.918 100.396 137.321 100.476 137.65 100.636C137.979 100.792 138.27 100.994 138.521 101.241L138.131 101.579V97.25H139.743V107H138.222L138.144 105.895L138.612 106.233C138.309 106.51 137.995 106.729 137.67 106.889C137.345 107.05 136.935 107.13 136.441 107.13ZM136.675 105.804C137.03 105.804 137.321 105.717 137.546 105.544C137.771 105.371 137.938 105.132 138.047 104.829C138.155 104.521 138.209 104.166 138.209 103.763C138.209 103.36 138.155 103.007 138.047 102.703C137.938 102.396 137.771 102.155 137.546 101.982C137.321 101.809 137.03 101.722 136.675 101.722C136.337 101.722 136.049 101.809 135.811 101.982C135.572 102.155 135.39 102.396 135.265 102.703C135.139 103.007 135.076 103.36 135.076 103.763C135.076 104.166 135.139 104.521 135.265 104.829C135.39 105.132 135.572 105.371 135.811 105.544C136.049 105.717 136.337 105.804 136.675 105.804ZM146.281 107.13C145.873 107.13 145.542 107.048 145.286 106.883C145.031 106.714 144.842 106.499 144.721 106.239C144.599 105.979 144.539 105.709 144.539 105.427V101.826H143.616L143.759 100.5H144.539V99.07L146.151 98.901V100.5H147.581V101.826H146.151V104.764C146.151 105.093 146.17 105.332 146.209 105.479C146.248 105.622 146.337 105.713 146.476 105.752C146.614 105.787 146.835 105.804 147.139 105.804H147.581L147.438 107.13H146.281ZM148.63 107V100.5H150.138L150.177 101.189C150.342 101.007 150.574 100.825 150.873 100.643C151.172 100.461 151.499 100.37 151.854 100.37C151.958 100.37 152.054 100.379 152.14 100.396L152.023 101.982C151.928 101.956 151.833 101.939 151.737 101.93C151.646 101.921 151.555 101.917 151.464 101.917C151.191 101.917 150.942 101.98 150.717 102.105C150.492 102.231 150.333 102.385 150.242 102.567V107H148.63ZM154.249 107.13C153.903 107.13 153.586 107.054 153.3 106.902C153.014 106.746 152.787 106.523 152.618 106.233C152.449 105.943 152.364 105.592 152.364 105.18C152.364 104.812 152.449 104.497 152.618 104.237C152.791 103.973 153.016 103.754 153.294 103.581C153.575 103.403 153.879 103.265 154.204 103.165C154.533 103.061 154.856 102.985 155.172 102.938C155.493 102.89 155.775 102.862 156.017 102.853C156 102.48 155.905 102.209 155.731 102.04C155.558 101.871 155.263 101.787 154.847 101.787C154.557 101.787 154.273 101.828 153.996 101.91C153.723 101.988 153.413 102.112 153.066 102.281L152.923 100.968C153.313 100.777 153.703 100.634 154.093 100.539C154.488 100.444 154.886 100.396 155.289 100.396C155.775 100.396 156.193 100.483 156.544 100.656C156.895 100.829 157.166 101.109 157.356 101.494C157.547 101.876 157.642 102.381 157.642 103.009V104.764C157.642 105.089 157.657 105.325 157.688 105.472C157.718 105.615 157.774 105.706 157.857 105.745C157.939 105.784 158.058 105.804 158.214 105.804H158.422L158.279 107.13H157.694C157.452 107.13 157.235 107.098 157.044 107.033C156.858 106.972 156.698 106.885 156.563 106.772C156.429 106.66 156.321 106.528 156.238 106.376C156.026 106.614 155.738 106.801 155.374 106.935C155.014 107.065 154.639 107.13 154.249 107.13ZM154.925 105.895C155.068 105.895 155.246 105.858 155.458 105.784C155.671 105.706 155.861 105.587 156.03 105.427V103.945C155.727 103.958 155.424 104.008 155.12 104.094C154.817 104.181 154.563 104.309 154.36 104.478C154.156 104.647 154.054 104.859 154.054 105.115C154.054 105.379 154.124 105.576 154.262 105.706C154.401 105.832 154.622 105.895 154.925 105.895ZM160.872 107L158.376 100.5H159.962L161.561 104.998L163.16 100.5H164.746L162.25 107H160.872ZM168.559 107.13C167.775 107.13 167.121 106.974 166.596 106.662C166.076 106.346 165.686 105.93 165.426 105.414C165.166 104.894 165.036 104.326 165.036 103.711C165.036 103.117 165.158 102.569 165.4 102.066C165.647 101.564 166.007 101.161 166.479 100.857C166.952 100.55 167.528 100.396 168.208 100.396C168.832 100.396 169.352 100.524 169.768 100.779C170.184 101.035 170.496 101.377 170.704 101.806C170.912 102.231 171.016 102.701 171.016 103.217C171.016 103.36 171.008 103.505 170.99 103.652C170.973 103.795 170.947 103.945 170.912 104.101H166.713C166.774 104.504 166.9 104.831 167.09 105.082C167.285 105.329 167.522 105.511 167.799 105.628C168.081 105.745 168.382 105.804 168.702 105.804C169.079 105.804 169.43 105.756 169.755 105.661C170.08 105.561 170.379 105.431 170.652 105.271L170.73 106.636C170.483 106.766 170.176 106.881 169.807 106.98C169.439 107.08 169.023 107.13 168.559 107.13ZM166.752 103.009H169.378C169.378 102.814 169.342 102.619 169.268 102.424C169.194 102.225 169.071 102.058 168.897 101.923C168.728 101.789 168.499 101.722 168.208 101.722C167.792 101.722 167.465 101.843 167.227 102.086C166.989 102.329 166.83 102.636 166.752 103.009ZM173.781 107.13C173.395 107.13 173.079 107.054 172.832 106.902C172.589 106.746 172.409 106.541 172.292 106.285C172.175 106.025 172.117 105.739 172.117 105.427V97.25H173.729V104.764C173.729 105.111 173.748 105.358 173.787 105.505C173.831 105.648 173.909 105.735 174.021 105.765C174.134 105.791 174.296 105.804 174.509 105.804L174.366 107.13H173.781ZM177.196 107.13C176.81 107.13 176.494 107.054 176.247 106.902C176.004 106.746 175.824 106.541 175.707 106.285C175.59 106.025 175.532 105.739 175.532 105.427V97.25H177.144V104.764C177.144 105.111 177.163 105.358 177.202 105.505C177.246 105.648 177.324 105.735 177.436 105.765C177.549 105.791 177.711 105.804 177.924 105.804L177.781 107.13H177.196ZM182.016 107.13C181.232 107.13 180.578 106.974 180.053 106.662C179.533 106.346 179.143 105.93 178.883 105.414C178.623 104.894 178.493 104.326 178.493 103.711C178.493 103.117 178.615 102.569 178.857 102.066C179.104 101.564 179.464 101.161 179.936 100.857C180.409 100.55 180.985 100.396 181.665 100.396C182.289 100.396 182.809 100.524 183.225 100.779C183.641 101.035 183.953 101.377 184.161 101.806C184.369 102.231 184.473 102.701 184.473 103.217C184.473 103.36 184.465 103.505 184.447 103.652C184.43 103.795 184.404 103.945 184.369 104.101H180.17C180.231 104.504 180.357 104.831 180.547 105.082C180.742 105.329 180.979 105.511 181.256 105.628C181.538 105.745 181.839 105.804 182.159 105.804C182.536 105.804 182.887 105.756 183.212 105.661C183.537 105.561 183.836 105.431 184.109 105.271L184.187 106.636C183.94 106.766 183.633 106.881 183.264 106.98C182.896 107.08 182.48 107.13 182.016 107.13ZM180.209 103.009H182.835C182.835 102.814 182.799 102.619 182.725 102.424C182.651 102.225 182.528 102.058 182.354 101.923C182.185 101.789 181.956 101.722 181.665 101.722C181.249 101.722 180.922 101.843 180.684 102.086C180.446 102.329 180.287 102.636 180.209 103.009ZM185.574 107V100.5H187.082L187.121 101.189C187.285 101.007 187.517 100.825 187.816 100.643C188.115 100.461 188.442 100.37 188.798 100.37C188.902 100.37 188.997 100.379 189.084 100.396L188.967 101.982C188.871 101.956 188.776 101.939 188.681 101.93C188.59 101.921 188.499 101.917 188.408 101.917C188.135 101.917 187.886 101.98 187.66 102.105C187.435 102.231 187.277 102.385 187.186 102.567V107H185.574Z",fill:"white"})),{ToolBarFields:i,GeneralFields:m,AdvancedFields:c,FieldWrapper:s}=JetFBComponents,{Tools:u}=JetFBActions,{useUniqueNameOnDuplicate:d,useFields:V}=JetFBHooks,{__:H}=wp.i18n,{InspectorControls:f,InnerBlocks:p,useBlockProps:b,RichText:_}=wp.blockEditor,{useState:y}=wp.element,{TextControl:L,TextareaControl:M,SelectControl:Z,PanelBody:h,Button:g,Popover:E,__experimentalNumberControl:w}=wp.components;let{NumberControl:v}=wp.components;void 0===v&&(v=w);const{InnerBlocks:j}=wp.blockEditor?wp.blockEditor:wp.editor,{__:k}=wp.i18n,{name:F,icon:x=""}=l;l.attributes.isPreview={type:"boolean",default:!1};const P={icon:(0,t.createElement)("span",{dangerouslySetInnerHTML:{__html:x}}),description:k("Create as many fields as they need in the form. Add this field to build complex forms for booking where many elements need to be inserted.","jet-form-builder"),edit:function(e){const C=b(),[l,r]=y(!1);d();const{attributes:w,setAttributes:v,isSelected:j,editProps:{uniqKey:k}}=e,F=V({excludeCurrent:!0});return w.isPreview?(0,t.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},o):[(0,t.createElement)(i,{key:k("ToolBarFields"),...e},"custom"===w.repeater_calc_type&&(0,t.createElement)(t.Fragment,null,(0,t.createElement)(g,{key:k("Button"),isTertiary:!0,isSmall:!0,icon:l?"no-alt":"admin-tools",onClick:()=>r((e=>!e))}),l&&(0,t.createElement)(E,{key:k("Popover"),placement:"bottom-end"},F.length&&(0,t.createElement)(h,{title:"Form Fields"},F.map((({value:C},l)=>(0,t.createElement)("div",{key:k("field_"+C+l)},(0,t.createElement)(g,{isLink:!0,onClick:()=>{(C=>{const t=w.calc_formula||"";e.setAttributes({calc_formula:t+"%"+C+"%"})})(C)}},"%FIELD::"+C+"%")))))))),j&&(0,t.createElement)(f,{key:k("InspectorControls")},(0,t.createElement)(m,{hasMacro:!1}),(0,t.createElement)(h,{title:H("Field","jet-form-builder"),key:k("PanelBody")},(0,t.createElement)(Z,{key:"manage_items_count",label:H("Manage repeater items count","jet-form-builder"),labelPosition:"top",value:w.manage_items_count,onChange:C=>{e.setAttributes({manage_items_count:C})},options:n}),"manually"===w.manage_items_count&&(0,t.createElement)(L,{key:"new_item_label",label:H("Add New Item Label","jet-form-builder"),value:w.new_item_label,onChange:C=>{e.setAttributes({new_item_label:C})}}),"dynamically"===w.manage_items_count&&(0,t.createElement)(Z,{key:"manage_items_count_field",label:H("Field items count","jet-form-builder"),labelPosition:"top",value:w.manage_items_count_field,onChange:C=>{e.setAttributes({manage_items_count_field:C})},options:u.withPlaceholder(F)}),(0,t.createElement)(Z,{key:"repeater_calc_type",label:H("Calculate repeater row value","jet-form-builder"),labelPosition:"top",value:w.repeater_calc_type,onChange:C=>{e.setAttributes({repeater_calc_type:C})},options:a}),"custom"===w.repeater_calc_type&&(0,t.createElement)("div",{className:"jet-form-editor__row-notice"},H("Set math formula to calculate field value.","jet-form-builder"),(0,t.createElement)("br",null),H("For example:","jet-form-builder"),(0,t.createElement)("br",null),(0,t.createElement)("br",null),"%FIELD::quantity%*%META::price%",(0,t.createElement)("br",null),(0,t.createElement)("br",null),H("Where:","jet-form-builder"),(0,t.createElement)("br",null),"-",H('%FIELD::quantity% - macro for form field value. "quantity" - is a field name to get value from',"jet-form-builder"),(0,t.createElement)("br",null),"-",H('%META::price% - macro for current post meta value. "price" - is a meta key to get value from',"jet-form-builder"),(0,t.createElement)("br",null),(0,t.createElement)("br",null))),(0,t.createElement)(c,{key:k("AdvancedFields"),...e})),(0,t.createElement)("div",{key:k("Fragment"),...C},"custom"===w.repeater_calc_type&&(0,t.createElement)("div",{className:"jet-forms__calc-formula-editor"},(0,t.createElement)("div",{className:"jet-form-editor__macros-wrap"},(0,t.createElement)(M,{key:"calc_formula",value:w.calc_formula,label:H("Calculation Formula for Repeater","jet-form-builder"),onChange:C=>{e.setAttributes({calc_formula:C})}}))),(0,t.createElement)(s,{key:k("FieldWrapper"),childrenPosition:"bottom",...e},(0,t.createElement)("div",{className:"jet-form-builder-repeater__row"},(0,t.createElement)(p,{key:k("repeater-fields")}),(0,t.createElement)(g,{className:"jet-form-builder-repeater__remove",isSecondary:!0,onClick:()=>{}},"×")),(0,t.createElement)("div",{className:"jet-form-builder-repeater__actions"},(0,t.createElement)(g,{className:"jet-form-builder-repeater__new",isSecondary:!0,onClick:()=>{}},(0,t.createElement)(_,{placeholder:"Add New",allowedFormats:[],value:w.new_item_label,onChange:e=>v({new_item_label:e})})))))]},save:function(){return(0,t.createElement)(j.Content,null)},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}}};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/repeater-field",(function(e){return e.push(C),e}))})(); \ No newline at end of file diff --git a/modules/blocks-v2/repeater-field/assets/build/frontend.asset.php b/modules/blocks-v2/repeater-field/assets/build/frontend.asset.php index 699881e65..3c40ca3c2 100644 --- a/modules/blocks-v2/repeater-field/assets/build/frontend.asset.php +++ b/modules/blocks-v2/repeater-field/assets/build/frontend.asset.php @@ -1 +1 @@ - array(), 'version' => 'd3b56d75d73134c1ecff'); + array(), 'version' => '17493531900bb55318a2'); diff --git a/modules/blocks-v2/repeater-field/assets/build/frontend.js b/modules/blocks-v2/repeater-field/assets/build/frontend.js index 563d25f0f..c11e6ac81 100644 --- a/modules/blocks-v2/repeater-field/assets/build/frontend.js +++ b/modules/blocks-v2/repeater-field/assets/build/frontend.js @@ -1 +1 @@ -(()=>{"use strict";function e(e){return 1===+e.dataset.repeater}const{Observable:t,CalculatedFormula:r}=JetFormBuilderAbstract;function n(e){return Array.isArray(e)?[...e]:e&&"object"==typeof e?{...e}:e}function o(e){var t;const[r]=null!==(t=e?.nodes)&&void 0!==t?t:[];return["date","time","datetime-local"].includes(r?.type)}function i(e){e._observeVersion=(e._observeVersion||0)+1;for(const t of e.getInputs())t._observeVersion=e._observeVersion}function s(e){t.call(this,e),this.calc=1,this.initedCalc=!1}s.prototype=Object.create(t.prototype),s.prototype.calc=1,s.prototype.initedCalc=!1,s.prototype.reObserve=function(e){this.isObserved=!1;const r={},s={};for(const[e,t]of Object.entries(this.value?.current||{}))r[e]=n(t);for(const e of this.getInputs()){const t=e.getName();var a;r[e.getName()]=n(e.getValue()),o(e)&&(s[t]=null!==(a=e.nodes?.[0]?.value)&&void 0!==a?a:"")}this.dataInputs={},t.prototype.observe.call(this,e),i(this);for(const e of this.getInputs()){const t=e.getName();if(Object.prototype.hasOwnProperty.call(r,t)){if(o(e)){const[r]=e.nodes;Object.prototype.hasOwnProperty.call(s,t)&&r&&(r.value=s[t]),e.reQueryValue();continue}e.silenceSet(n(r[t]))}}this.parent.lastObserved.current=this},s.prototype.observe=function(e){t.prototype.observe.call(this,e),i(this),this.parent.lastObserved.current=this},s.prototype.removeManually=function(){if(this._isRemoving)return;this._isRemoving=!0;const e=this.parent.value.current.filter(e=>e!==this&&!e._isRemoving),t=e.map(e=>{const t={};for(const[r,n]of Object.entries(e.value.current||{}))Array.isArray(n)?t[r]=[...n]:t[r]=n;if(0===Object.keys(t).length&&e.dataInputs)for(const[r,n]of Object.entries(e.dataInputs))if(n&&n.getValue){const e=n.getValue();Array.isArray(e)?t[r]=[...e]:t[r]=e}return{node:e.rootNode,values:t}});e.forEach((e,r)=>{if(t[r]){const n=t[r].values;for(const[t,r]of Object.entries(n))e.value.current[t]=r;setTimeout(()=>{e.getInputs().forEach(e=>{e.updatePreviews&&"function"==typeof e.updatePreviews&&e.updatePreviews()}),e.initedCalc=!1,e.initCalc()},50)}}),this.remove(),this.parent.remove(this),this.rootNode.remove()},s.prototype.initCalc=function(){if(this.initedCalc)return;this.initedCalc=!0;const[e]=this.parent.nodes,t=e.dataset?.formula;if(!t||"default"===this.parent.calcType)return;const n=new r(this);n.observe(t),n.setResult=()=>{this.calc=n.calculate(),this.parent.value.notify()},n.relatedCallback=function(e){return e.calcValue},n.emptyValue=function(){return 0},this.calc=n.calculate(),this.parent.silenceNotify()};const a=s,{InputData:l,ReactiveVar:c}=JetFormBuilderAbstract;function u(){l.call(this),this.buttonNode=!1,this.template=null,this.container=null,this.lastObserved=new c,this.lastObserved.make(),this.addEventAttached=!1,this.isSupported=function(t){return e(t)},this.addListeners=function(){this.reporting.makeInvalid=()=>{},this.reporting.makeValid=()=>{}},this.hasAutoScroll=function(){return!1},this.setValue=function(){const[e]=this.nodes;this.value.current=[];for(const t of e.querySelectorAll(".jet-form-builder-repeater__row")){const e=new a(this);e.rootNode=t,this.value.current.push(e)}for(const e of this.value.current)e.observe();for(const e of this.value.current)e.initCalc();const t=this.container.querySelectorAll(".jet-form-builder-repeater__remove");for(const e of t){const t=this.closestRow(e);t&&e.addEventListener("click",()=>t.removeManually())}if(this.isManualCount)return void(this.addEventAttached||this.buttonNode.hasListener||(this.buttonNode.addEventListener("click",()=>this.addNew()),this.addEventAttached=!0,this.buttonNode.hasListener=!0));const r=this.root.getInput(this.itemsField);r?(r.watch(()=>this.recalculateItems(r)),this.recalculateItems(r)):console.error(`JetFormBuilder error: undefined input by name [${this.itemsField}]`)},this.setNode=function(e){l.prototype.setNode.call(this,e),this.nodes=[e],this.name=e.dataset.fieldName,this.rawName=this.name,this.inputType="repeater",this.manageItems=e.dataset?.manageItems||"manually",this.calcType=e.dataset?.calcType||"default",this.itemsField=e.dataset?.itemsField,this.isManualCount=!this.itemsField||"manually"===this.manageItems,this.buttonNode=e.querySelector(".jet-form-builder-repeater__new"),this.template=e.querySelector(".jet-form-builder-repeater__initial"),this.container=e.querySelector(".jet-form-builder-repeater__items")},this.onClear=function(){this.value.current=[]},this.populateInner=function(){if(!this.value.current?.length)return!1;const e=[],t=this.value.current;for(const r of t)for(const t of r.getInputs())t.reporting?.restrictions?.length&&e.push(t);return e},this.onRemove=function(){const e=this.value.current;for(const t of e)t.remove()},this.reQueryValue=function(){this.value.current?.length&&this.value.current.forEach(e=>{e.getInputs().forEach(e=>{e.setValue(),e.initNotifyValue()})})}}u.prototype=Object.create(l.prototype),u.prototype.buttonNode=null,u.prototype.template=null,u.prototype.container=null,u.prototype.itemsField=!1,u.prototype.lastObserved=null,u.prototype.addNew=function(e=1){var t;this.value.current=[...null!==(t=this.value?.current)&&void 0!==t?t:[],...new Array(e).fill(null).map(()=>new a(this))]},u.prototype.findIndex=function(e){return Array.isArray(this.value.current)?this.value.current.findIndex(t=>t===e):-1},u.prototype.closestRow=function(e){const t=e.closest(".jet-form-builder-repeater__row");if(!t)return!1;const r=this.value.current;for(const e of r)if(e.rootNode===t)return e;return!1},u.prototype.remove=function(e){this.value.current=this.value.current.filter(t=>t!==e)},u.prototype.recalculateItems=function(e){var t;const r=(null!==(t=this.value.current?.length)&&void 0!==t?t:0)-e.calcValue;0!==r&&(r<0?this.addNew(-1*r):this.value.current=this.value.current.slice(0,-1*r))};const d=u,{BaseSignal:f}=window.JetFormBuilderAbstract;function p(){f.call(this),this.isSupported=function(t){return e(t)},this.runSignal=function(e=[]){const{current:t}=this.input.value,r=e?.length&&e.length>t.length;r&&this.removePrevItems(e);for(const e of Object.keys(t))t.hasOwnProperty(e)&&this.runItem(+e,r);let n=0;for(const e of Object.values(t))e.initCalc(),n+=e.calc;this.input.calcValue=n},this.runItem=function(e,t=!1){const r=this.input.value.current[e];if(r.isObserved){if(!t)return;r.rootNode.remove()}const n=document.createElement("template");n.innerHTML=this.input.template.innerHTML.trim(),n.innerHTML=n.innerHTML.replace(/__i__/g,e);const o=n.content.firstElementChild;o.querySelectorAll("input, select, textarea, output").forEach(e=>{switch(e.type){case"checkbox":case"radio":e.checked=e.defaultChecked||!1;break;case"select-one":case"select-multiple":e.querySelectorAll("option").forEach(e=>{e.selected=e.defaultSelected||!1});break;case"file":e.value="";break;default:e.value=e.defaultValue||""}}),n.content.firstChild.dataset.index=""+e,this.input.container.append(o);const i=this.input.container.lastChild;this.input.isManualCount&&i.querySelector(".jet-form-builder-repeater__remove").addEventListener("click",()=>r.removeManually()),r.isObserved?r.reObserve(i):r.observe(i)},this.removePrevItems=function(e){const t=this.input.value.current;for(const r of e)t.includes(r)||r.removeManually()}}p.prototype=Object.create(f.prototype);const h=p;let{AdvancedRestriction:m,Restriction:v}=JetFormBuilderAbstract;function y(){m.call(this),this.isSupported=function(t){return e(t)},this.validate=function(){return!0},this.getRawMessage=function(){return""}}m=m||v,y.prototype=Object.create(m.prototype);const b=y,{applyFilters:g}=JetPlugins.hooks;function j(e,t,r,n=""){const o="option-label"===n&&function(e){if(!e)return"";if("SELECT"===e.tagName)return Array.from(e.selectedOptions||[]).map(e=>String(e.label||e.textContent||e.value||"").trim()).filter(Boolean).join(", ");if("checkbox"===e.type||"radio"===e.type){const t=e.closest("label");if(!t)return"";const r=t.querySelector("span");return String(r?.textContent||t.textContent||e.value||"").trim()}return""}(e)||function(e){var t;return"SELECT"===e.tagName&&e.multiple?Array.from(e.selectedOptions||[]).map(e=>{var t;return String(null!==(t=e.value)&&void 0!==t?t:"").trim()}).filter(Boolean).join(", "):String(null!==(t=e.value)&&void 0!==t?t:"").trim()}(e);return g("jet.fb.macro.inside.repeater.field.value",o,e,t,r,n)}function _(e,t,r=!1,n=""){const o=t?.[0];if(!o||"1"!==o.dataset?.repeater)return e;!function(e){if(e.__jfbMacrosRepeaterBound)return;e.__jfbMacrosRepeaterBound=!0;const t=e.closest("form.jet-form-builder"),r=t?.dataset?.formId,n=window.JetFormBuilder?.[r],o=n?.getInput?.(e.dataset.fieldName),i=()=>{o?.value?.notify?.()};e.addEventListener("input",i,!0),e.addEventListener("change",i,!0),e.addEventListener("click",t=>{const r=t.target.closest?.(".jet-form-builder-repeater__row-remove");r&&e.contains(r)&&requestAnimationFrame(i)},!0)}(o);const i=r?.[0],s=i?.__jfbMacroTemplate;return i&&s?function(e,t){const r=e.querySelector(".jet-form-builder-repeater__items");if(!r)return"";const n=document.createElement("template");n.innerHTML=String(null!=t?t:"");const o=r.querySelectorAll("[data-repeater-row]"),i=[];return o.forEach(e=>{const t=n.content.cloneNode(!0),r=t.querySelectorAll("[data-jfb-macro]"),o=Object.create(null);r.forEach(t=>{var r;const n=t.getAttribute("data-jfb-macro")||"";if(!n)return;const i=t.dataset?.jfbMacroFormat||"";o[i]||(o[i]=function(e,t=""){const r=Object.create(null),n=e.closest(".field-type-repeater-field");return e.querySelectorAll("input, select, textarea").forEach(o=>{if(o.closest(".field-type-repeater-field")!==n)return;if(o.disabled)return;if("INPUT"===o.tagName&&"hidden"===o.type)return;if(("checkbox"===o.type||"radio"===o.type)&&!o.checked)return;const i=o.dataset?.fieldName||o.name||"";if(!i)return;const s=j(o,e,n,t);""!==s&&(r[i]?r[i]+=`, ${s}`:r[i]=s)}),r}(e,i)),t.innerHTML=String(null!==(r=o[i][n])&&void 0!==r?r:"")});const s=document.createElement("div");s.appendChild(t),i.push(s.innerHTML)}),i.join("")}(o,s):function(e,t,r=""){const n=e.querySelector(".jet-form-builder-repeater__items");if(!n)return"";const o=Array.isArray(t)&&t.length?new Set(t):null,i=n.querySelectorAll("[data-repeater-row]"),s=[];return i.forEach(e=>{const t=e.closest(".field-type-repeater-field");e.querySelectorAll("input, select, textarea").forEach(n=>{if(n.closest(".field-type-repeater-field")!==t)return;if(n.disabled)return;if("INPUT"===n.tagName&&"hidden"===n.type)return;if(("checkbox"===n.type||"radio"===n.type)&&!n.checked)return;const i=n.dataset?.fieldName||n.name||"";if(!i)return;if(o&&!o.has(i))return;const a=j(n,e,t,r);s.push(`${i}: ${a}`)})}),s.join("
    ")}(o,null,n)}const{addFilter:S,addAction:w}=JetPlugins.hooks;S("jet.fb.inputs","jet-form-builder/repeater-field",function(e){return[d,...e]}),S("jet.fb.signals","jet-form-builder/repeater-field",function(e){return[h,...e]});const A=e=>(e.push(b),e);S("jet.fb.restrictions.default","jet-form-builder/repeater-field",A),S("jet.fb.restrictions","jet-form-builder/repeater-field",A),w("jet.fb.multistep.page.observed.input","jet-form-builder/repeater-field",function(e,t){function r(e){t.registerInput(e,{includeInValidation:!1})}function n(){const n=(e.value.current||[]).flatMap(e=>e.getInputs()),o=new Set(n),i=new Set(e.value.current||[]);t.getTrackedInputs().filter(t=>t.root?.parent===e).filter(e=>!(i.has(e.root)&&e._observeVersion===e.root?._observeVersion||o.has(e))).forEach(e=>t.unregisterInput(e)),n.forEach(r),t.updateState()}"repeater"===e.inputType&&(n(),e.watch(n),e.lastObserved.watch(n))}),S("jet.fb.macro.field.value","jet-form-builder/repeater-field",(e,t,r,n)=>_(e,t,r,n))})(); \ No newline at end of file +(()=>{"use strict";function e(e){return 1===+e.dataset.repeater}const{Observable:t,CalculatedFormula:r}=JetFormBuilderAbstract;function n(e){return Array.isArray(e)?[...e]:e&&"object"==typeof e?{...e}:e}function o(e){var t;const[r]=null!==(t=e?.nodes)&&void 0!==t?t:[];return["date","time","datetime-local"].includes(r?.type)}function i(e){e._observeVersion=(e._observeVersion||0)+1;for(const t of e.getInputs())t._observeVersion=e._observeVersion}function s(e){t.call(this,e),this.calc=1,this.initedCalc=!1}s.prototype=Object.create(t.prototype),s.prototype.calc=1,s.prototype.initedCalc=!1,s.prototype.reObserve=function(e){this.isObserved=!1;const r={},s={};for(const[e,t]of Object.entries(this.value?.current||{}))r[e]=n(t);for(const e of this.getInputs()){const t=e.getName();var a;r[e.getName()]=n(e.getValue()),o(e)&&(s[t]=null!==(a=e.nodes?.[0]?.value)&&void 0!==a?a:"")}this.dataInputs={},t.prototype.observe.call(this,e),i(this);for(const e of this.getInputs()){const t=e.getName();if(Object.prototype.hasOwnProperty.call(r,t))if(o(e)){const[r]=e.nodes;Object.prototype.hasOwnProperty.call(s,t)&&r&&(r.value=s[t]),e.reQueryValue()}else e.silenceSet(n(r[t]))}this.parent.lastObserved.current=this},s.prototype.observe=function(e){t.prototype.observe.call(this,e),i(this),this.parent.lastObserved.current=this},s.prototype.removeManually=function(){if(this._isRemoving)return;this._isRemoving=!0;const e=this.parent.value.current.filter((e=>e!==this&&!e._isRemoving)),t=e.map((e=>{const t={};for(const[r,n]of Object.entries(e.value.current||{}))Array.isArray(n)?t[r]=[...n]:t[r]=n;if(0===Object.keys(t).length&&e.dataInputs)for(const[r,n]of Object.entries(e.dataInputs))if(n&&n.getValue){const e=n.getValue();Array.isArray(e)?t[r]=[...e]:t[r]=e}return{node:e.rootNode,values:t}}));e.forEach(((e,r)=>{if(t[r]){const n=t[r].values;for(const[t,r]of Object.entries(n))e.value.current[t]=r;setTimeout((()=>{e.getInputs().forEach((e=>{e.updatePreviews&&"function"==typeof e.updatePreviews&&e.updatePreviews()})),e.initedCalc=!1,e.initCalc()}),50)}})),this.remove(),this.parent.remove(this),this.rootNode.remove()},s.prototype.initCalc=function(){if(this.initedCalc)return;this.initedCalc=!0;const[e]=this.parent.nodes,t=e.dataset?.formula;if(!t||"default"===this.parent.calcType)return;const n=new r(this);n.observe(t),n.setResult=()=>{this.calc=n.calculate(),this.parent.value.notify()},n.relatedCallback=function(e){return e.calcValue},n.emptyValue=function(){return 0},this.calc=n.calculate(),this.parent.silenceNotify()};const a=s,{InputData:l,ReactiveVar:c}=JetFormBuilderAbstract;function u(){l.call(this),this.buttonNode=!1,this.template=null,this.container=null,this.lastObserved=new c,this.lastObserved.make(),this.addEventAttached=!1,this.isSupported=function(t){return e(t)},this.addListeners=function(){this.reporting.makeInvalid=()=>{},this.reporting.makeValid=()=>{}},this.hasAutoScroll=function(){return!1},this.setValue=function(){const[e]=this.nodes;this.value.current=[];for(const t of e.querySelectorAll(".jet-form-builder-repeater__row")){const e=new a(this);e.rootNode=t,this.value.current.push(e)}for(const e of this.value.current)e.observe();for(const e of this.value.current)e.initCalc();const t=this.container.querySelectorAll(".jet-form-builder-repeater__remove");for(const e of t){const t=this.closestRow(e);t&&e.addEventListener("click",(()=>t.removeManually()))}if(this.isManualCount)return void(this.addEventAttached||this.buttonNode.hasListener||(this.buttonNode.addEventListener("click",(()=>this.addNew())),this.addEventAttached=!0,this.buttonNode.hasListener=!0));const r=this.root.getInput(this.itemsField);r?(r.watch((()=>this.recalculateItems(r))),this.recalculateItems(r)):console.error(`JetFormBuilder error: undefined input by name [${this.itemsField}]`)},this.setNode=function(e){l.prototype.setNode.call(this,e),this.nodes=[e],this.name=e.dataset.fieldName,this.rawName=this.name,this.inputType="repeater",this.manageItems=e.dataset?.manageItems||"manually",this.calcType=e.dataset?.calcType||"default",this.itemsField=e.dataset?.itemsField,this.isManualCount=!this.itemsField||"manually"===this.manageItems,this.buttonNode=e.querySelector(".jet-form-builder-repeater__new"),this.template=e.querySelector(".jet-form-builder-repeater__initial"),this.container=e.querySelector(".jet-form-builder-repeater__items")},this.onClear=function(){this.value.current=[]},this.populateInner=function(){if(!this.value.current?.length)return!1;const e=[],t=this.value.current;for(const r of t)for(const t of r.getInputs())t.reporting?.restrictions?.length&&e.push(t);return e},this.onRemove=function(){const e=this.value.current;for(const t of e)t.remove()},this.reQueryValue=function(){this.value.current?.length&&this.value.current.forEach((e=>{e.getInputs().forEach((e=>{e.setValue(),e.initNotifyValue()}))}))}}u.prototype=Object.create(l.prototype),u.prototype.buttonNode=null,u.prototype.template=null,u.prototype.container=null,u.prototype.itemsField=!1,u.prototype.lastObserved=null,u.prototype.addNew=function(e=1){var t;this.value.current=[...null!==(t=this.value?.current)&&void 0!==t?t:[],...new Array(e).fill(null).map((()=>new a(this)))]},u.prototype.findIndex=function(e){return Array.isArray(this.value.current)?this.value.current.findIndex((t=>t===e)):-1},u.prototype.closestRow=function(e){const t=e.closest(".jet-form-builder-repeater__row");if(!t)return!1;const r=this.value.current;for(const e of r)if(e.rootNode===t)return e;return!1},u.prototype.remove=function(e){this.value.current=this.value.current.filter((t=>t!==e))},u.prototype.recalculateItems=function(e){var t;const r=(null!==(t=this.value.current?.length)&&void 0!==t?t:0)-e.calcValue;0!==r&&(r<0?this.addNew(-1*r):this.value.current=this.value.current.slice(0,-1*r))};const d=u,{BaseSignal:f}=window.JetFormBuilderAbstract;function p(){f.call(this),this.isSupported=function(t){return e(t)},this.runSignal=function(e=[]){const{current:t}=this.input.value,r=e?.length&&e.length>t.length;r&&this.removePrevItems(e);for(const e of Object.keys(t))t.hasOwnProperty(e)&&this.runItem(+e,r);let n=0;for(const e of Object.values(t))e.initCalc(),n+=e.calc;this.input.calcValue=n},this.runItem=function(e,t=!1){const r=this.input.value.current[e];if(r.isObserved){if(!t)return;r.rootNode.remove()}const n=document.createElement("template");n.innerHTML=this.input.template.innerHTML.trim(),n.innerHTML=n.innerHTML.replace(/__i__/g,e);const o=n.content.firstElementChild;o.querySelectorAll("input, select, textarea, output").forEach((e=>{switch(e.type){case"checkbox":case"radio":e.checked=e.defaultChecked||!1;break;case"select-one":case"select-multiple":e.querySelectorAll("option").forEach((e=>{e.selected=e.defaultSelected||!1}));break;case"file":e.value="";break;default:e.value=e.defaultValue||""}})),n.content.firstChild.dataset.index=""+e,this.input.container.append(o);const i=this.input.container.lastChild;this.input.isManualCount&&i.querySelector(".jet-form-builder-repeater__remove").addEventListener("click",(()=>r.removeManually())),r.isObserved?r.reObserve(i):r.observe(i)},this.removePrevItems=function(e){const t=this.input.value.current;for(const r of e)t.includes(r)||r.removeManually()}}p.prototype=Object.create(f.prototype);const h=p;let{AdvancedRestriction:m,Restriction:v}=JetFormBuilderAbstract;function y(){m.call(this),this.isSupported=function(t){return e(t)},this.validate=function(){return!0},this.getRawMessage=function(){return""}}m=m||v,y.prototype=Object.create(m.prototype);const b=y,{applyFilters:g}=JetPlugins.hooks;function j(e,t,r,n=""){const o="option-label"===n&&function(e){if(!e)return"";if("SELECT"===e.tagName)return Array.from(e.selectedOptions||[]).map((e=>String(e.label||e.textContent||e.value||"").trim())).filter(Boolean).join(", ");if("checkbox"===e.type||"radio"===e.type){const t=e.closest("label");if(!t)return"";const r=t.querySelector("span");return String(r?.textContent||t.textContent||e.value||"").trim()}return""}(e)||function(e){var t;return"SELECT"===e.tagName&&e.multiple?Array.from(e.selectedOptions||[]).map((e=>{var t;return String(null!==(t=e.value)&&void 0!==t?t:"").trim()})).filter(Boolean).join(", "):String(null!==(t=e.value)&&void 0!==t?t:"").trim()}(e);return g("jet.fb.macro.inside.repeater.field.value",o,e,t,r,n)}function _(e,t,r=!1,n=""){const o=t?.[0];if(!o||"1"!==o.dataset?.repeater)return e;!function(e){if(e.__jfbMacrosRepeaterBound)return;e.__jfbMacrosRepeaterBound=!0;const t=e.closest("form.jet-form-builder"),r=t?.dataset?.formId,n=window.JetFormBuilder?.[r],o=n?.getInput?.(e.dataset.fieldName),i=()=>{o?.value?.notify?.()};e.addEventListener("input",i,!0),e.addEventListener("change",i,!0),e.addEventListener("click",(t=>{const r=t.target.closest?.(".jet-form-builder-repeater__row-remove");r&&e.contains(r)&&requestAnimationFrame(i)}),!0)}(o);const i=r?.[0],s=i?.__jfbMacroTemplate;return i&&s?function(e,t){const r=e.querySelector(".jet-form-builder-repeater__items");if(!r)return"";const n=document.createElement("template");n.innerHTML=String(null!=t?t:"");const o=r.querySelectorAll("[data-repeater-row]"),i=[];return o.forEach((e=>{const t=n.content.cloneNode(!0),r=t.querySelectorAll("[data-jfb-macro]"),o=Object.create(null);r.forEach((t=>{var r;const n=t.getAttribute("data-jfb-macro")||"";if(!n)return;const i=t.dataset?.jfbMacroFormat||"";o[i]||(o[i]=function(e,t=""){const r=Object.create(null),n=e.closest(".field-type-repeater-field");return e.querySelectorAll("input, select, textarea").forEach((o=>{if(o.closest(".field-type-repeater-field")!==n)return;if(o.disabled)return;if("INPUT"===o.tagName&&"hidden"===o.type)return;if(("checkbox"===o.type||"radio"===o.type)&&!o.checked)return;const i=o.dataset?.fieldName||o.name||"";if(!i)return;const s=j(o,e,n,t);""!==s&&(r[i]?r[i]+=`, ${s}`:r[i]=s)})),r}(e,i)),t.innerHTML=String(null!==(r=o[i][n])&&void 0!==r?r:"")}));const s=document.createElement("div");s.appendChild(t),i.push(s.innerHTML)})),i.join("")}(o,s):function(e,t,r=""){const n=e.querySelector(".jet-form-builder-repeater__items");if(!n)return"";const o=Array.isArray(t)&&t.length?new Set(t):null,i=n.querySelectorAll("[data-repeater-row]"),s=[];return i.forEach((e=>{const t=e.closest(".field-type-repeater-field");e.querySelectorAll("input, select, textarea").forEach((n=>{if(n.closest(".field-type-repeater-field")!==t)return;if(n.disabled)return;if("INPUT"===n.tagName&&"hidden"===n.type)return;if(("checkbox"===n.type||"radio"===n.type)&&!n.checked)return;const i=n.dataset?.fieldName||n.name||"";if(!i)return;if(o&&!o.has(i))return;const a=j(n,e,t,r);s.push(`${i}: ${a}`)}))})),s.join("
    ")}(o,null,n)}const{addFilter:S,addAction:w}=JetPlugins.hooks;S("jet.fb.inputs","jet-form-builder/repeater-field",(function(e){return[d,...e]})),S("jet.fb.signals","jet-form-builder/repeater-field",(function(e){return[h,...e]}));const A=e=>(e.push(b),e);S("jet.fb.restrictions.default","jet-form-builder/repeater-field",A),S("jet.fb.restrictions","jet-form-builder/repeater-field",A),w("jet.fb.multistep.page.observed.input","jet-form-builder/repeater-field",(function(e,t){function r(e){t.registerInput(e,{includeInValidation:!1})}function n(){const n=(e.value.current||[]).flatMap((e=>e.getInputs())),o=new Set(n),i=new Set(e.value.current||[]);t.getTrackedInputs().filter((t=>t.root?.parent===e)).filter((e=>!(i.has(e.root)&&e._observeVersion===e.root?._observeVersion||o.has(e)))).forEach((e=>t.unregisterInput(e))),n.forEach(r),t.updateState()}"repeater"===e.inputType&&(n(),e.watch(n),e.lastObserved.watch(n))})),S("jet.fb.macro.field.value","jet-form-builder/repeater-field",((e,t,r,n)=>_(e,t,r,n)))})(); \ No newline at end of file diff --git a/modules/blocks-v2/text-field/assets/build/editor.asset.php b/modules/blocks-v2/text-field/assets/build/editor.asset.php index 52a883bd8..69133c072 100644 --- a/modules/blocks-v2/text-field/assets/build/editor.asset.php +++ b/modules/blocks-v2/text-field/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '1b84345819dcebe8dab3'); + array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => 'a0bb69fdec68dd3aa3f4'); diff --git a/modules/blocks-v2/text-field/assets/build/editor.js b/modules/blocks-v2/text-field/assets/build/editor.js index b9fb3ad06..842652d47 100644 --- a/modules/blocks-v2/text-field/assets/build/editor.js +++ b/modules/blocks-v2/text-field/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={727(e,t,C){C.r(t)}},t={};function C(l){var a=t[l];if(void 0!==a)return a.exports;var r=t[l]={exports:{}};return e[l](r,r.exports,C),r.exports}C.d=(e,t)=>{for(var l in t)C.o(t,l)&&!C.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:t[l]})},C.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),C.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var l={};C.r(l),C.d(l,{metadata:()=>N,name:()=>U,settings:()=>W});const a=window.React,{__:r}=wp.i18n,n=[{value:"text",label:r("Text","jet-form-builder")},{value:"email",label:r("Email","jet-form-builder")},{value:"url",label:r("Url","jet-form-builder")},{value:"tel",label:r("Tel","jet-form-builder")},{value:"password",label:r("Password","jet-form-builder")}],i=[{value:"",label:r("Default","jet-form-builder")},{value:"datetime",label:r("Datetime","jet-form-builder")}],o=[{value:"always",label:r("Always","jet-form-builder")},{value:"hover",label:r("Hover","jet-form-builder")},{value:"focus",label:r("Focus","jet-form-builder")}],s=[{value:"_",label:"_"},{value:"-",label:"-"},{value:"*",label:"*"},{value:"•",label:"•"}],c=(0,a.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,a.createElement)("path",{d:"M17.4746 49.5469V59.5H16.1553V49.5469H17.4746ZM21.6445 54.0244V55.1045H17.1875V54.0244H21.6445ZM22.3213 49.5469V50.627H17.1875V49.5469H22.3213ZM25.0762 52.1035V59.5H23.8047V52.1035H25.0762ZM23.709 50.1416C23.709 49.9365 23.7705 49.7633 23.8936 49.6221C24.0212 49.4808 24.208 49.4102 24.4541 49.4102C24.6956 49.4102 24.8802 49.4808 25.0078 49.6221C25.14 49.7633 25.2061 49.9365 25.2061 50.1416C25.2061 50.3376 25.14 50.5062 25.0078 50.6475C24.8802 50.7842 24.6956 50.8525 24.4541 50.8525C24.208 50.8525 24.0212 50.7842 23.8936 50.6475C23.7705 50.5062 23.709 50.3376 23.709 50.1416ZM28.3711 53.2656V59.5H27.1064V52.1035H28.3369L28.3711 53.2656ZM30.6816 52.0625L30.6748 53.2383C30.57 53.2155 30.4697 53.2018 30.374 53.1973C30.2829 53.1882 30.1781 53.1836 30.0596 53.1836C29.7679 53.1836 29.5104 53.2292 29.2871 53.3203C29.0638 53.4115 28.8747 53.5391 28.7197 53.7031C28.5648 53.8672 28.4417 54.0632 28.3506 54.291C28.264 54.5143 28.207 54.7604 28.1797 55.0293L27.8242 55.2344C27.8242 54.7878 27.8675 54.3685 27.9541 53.9766C28.0452 53.5846 28.1842 53.2383 28.3711 52.9375C28.5579 52.6322 28.7949 52.3952 29.082 52.2266C29.3737 52.0534 29.7201 51.9668 30.1211 51.9668C30.2122 51.9668 30.3171 51.9782 30.4355 52.001C30.554 52.0192 30.6361 52.0397 30.6816 52.0625ZM36.1572 57.5381C36.1572 57.3558 36.1162 57.1872 36.0342 57.0322C35.9567 56.8727 35.7949 56.7292 35.5488 56.6016C35.3073 56.4694 34.9427 56.3555 34.4551 56.2598C34.0449 56.1732 33.6735 56.0706 33.3408 55.9521C33.0127 55.8337 32.7324 55.6901 32.5 55.5215C32.2721 55.3529 32.0967 55.1546 31.9736 54.9268C31.8506 54.6989 31.7891 54.4323 31.7891 54.127C31.7891 53.8353 31.8529 53.5596 31.9805 53.2998C32.1126 53.04 32.2972 52.8099 32.5342 52.6094C32.7757 52.4089 33.0651 52.2516 33.4023 52.1377C33.7396 52.0238 34.1156 51.9668 34.5303 51.9668C35.1227 51.9668 35.6286 52.0716 36.0479 52.2812C36.4671 52.4909 36.7884 52.7712 37.0117 53.1221C37.235 53.4684 37.3467 53.8535 37.3467 54.2773H36.082C36.082 54.0723 36.0205 53.874 35.8975 53.6826C35.779 53.4867 35.6035 53.3249 35.3711 53.1973C35.1432 53.0697 34.863 53.0059 34.5303 53.0059C34.1794 53.0059 33.8945 53.0605 33.6758 53.1699C33.4616 53.2747 33.3044 53.4092 33.2041 53.5732C33.1084 53.7373 33.0605 53.9105 33.0605 54.0928C33.0605 54.2295 33.0833 54.3525 33.1289 54.4619C33.179 54.5667 33.2656 54.6647 33.3887 54.7559C33.5117 54.8424 33.6849 54.9245 33.9082 55.002C34.1315 55.0794 34.4163 55.1569 34.7627 55.2344C35.3688 55.3711 35.8678 55.5352 36.2598 55.7266C36.6517 55.918 36.9434 56.1527 37.1348 56.4307C37.3262 56.7087 37.4219 57.0459 37.4219 57.4424C37.4219 57.766 37.3535 58.0622 37.2168 58.3311C37.0846 58.5999 36.891 58.8324 36.6357 59.0283C36.3851 59.2197 36.0843 59.3701 35.7334 59.4795C35.387 59.5843 34.9974 59.6367 34.5645 59.6367C33.9128 59.6367 33.3613 59.5205 32.9102 59.2881C32.459 59.0557 32.1172 58.7549 31.8848 58.3857C31.6523 58.0166 31.5361 57.627 31.5361 57.2168H32.8076C32.8258 57.5632 32.9261 57.8389 33.1084 58.0439C33.2907 58.2445 33.514 58.388 33.7783 58.4746C34.0426 58.5566 34.3047 58.5977 34.5645 58.5977C34.9108 58.5977 35.2002 58.5521 35.4326 58.4609C35.6696 58.3698 35.8496 58.2445 35.9727 58.085C36.0957 57.9255 36.1572 57.7432 36.1572 57.5381ZM42.1797 52.1035V53.0742H38.1807V52.1035H42.1797ZM39.5342 50.3057H40.7988V57.668C40.7988 57.9186 40.8376 58.1077 40.915 58.2354C40.9925 58.363 41.0928 58.4473 41.2158 58.4883C41.3389 58.5293 41.471 58.5498 41.6123 58.5498C41.7171 58.5498 41.8265 58.5407 41.9404 58.5225C42.0589 58.4997 42.1478 58.4814 42.207 58.4678L42.2139 59.5C42.1136 59.5319 41.9814 59.5615 41.8174 59.5889C41.6579 59.6208 41.4642 59.6367 41.2363 59.6367C40.9264 59.6367 40.6416 59.5752 40.3818 59.4521C40.1221 59.3291 39.9147 59.124 39.7598 58.8369C39.6094 58.5452 39.5342 58.1533 39.5342 57.6611V50.3057ZM54.9834 49.5469V59.5H53.6572L48.6465 51.8232V59.5H47.3271V49.5469H48.6465L53.6777 57.2441V49.5469H54.9834ZM61.4912 58.2354V54.4277C61.4912 54.1361 61.432 53.8831 61.3135 53.6689C61.1995 53.4502 61.0264 53.2816 60.7939 53.1631C60.5615 53.0446 60.2744 52.9854 59.9326 52.9854C59.6136 52.9854 59.3333 53.04 59.0918 53.1494C58.8548 53.2588 58.668 53.4023 58.5312 53.5801C58.3991 53.7578 58.333 53.9492 58.333 54.1543H57.0684C57.0684 53.89 57.1367 53.6279 57.2734 53.3682C57.4102 53.1084 57.6061 52.8737 57.8613 52.6641C58.1211 52.4499 58.431 52.2812 58.791 52.1582C59.1556 52.0306 59.5612 51.9668 60.0078 51.9668C60.5456 51.9668 61.0195 52.0579 61.4297 52.2402C61.8444 52.4225 62.168 52.6982 62.4004 53.0674C62.6374 53.432 62.7559 53.89 62.7559 54.4414V57.8867C62.7559 58.1328 62.7764 58.3949 62.8174 58.6729C62.863 58.9508 62.929 59.1901 63.0156 59.3906V59.5H61.6963C61.6325 59.3542 61.5824 59.1605 61.5459 58.9189C61.5094 58.6729 61.4912 58.445 61.4912 58.2354ZM61.71 55.0156L61.7236 55.9043H60.4453C60.0853 55.9043 59.764 55.9339 59.4814 55.9932C59.1989 56.0479 58.9619 56.1322 58.7705 56.2461C58.5791 56.36 58.4333 56.5036 58.333 56.6768C58.2327 56.8454 58.1826 57.0436 58.1826 57.2715C58.1826 57.5039 58.235 57.7158 58.3398 57.9072C58.4447 58.0986 58.6019 58.2513 58.8115 58.3652C59.0257 58.4746 59.2878 58.5293 59.5977 58.5293C59.985 58.5293 60.3268 58.4473 60.623 58.2832C60.9193 58.1191 61.154 57.9186 61.3271 57.6816C61.5049 57.4447 61.6006 57.2145 61.6143 56.9912L62.1543 57.5996C62.1224 57.791 62.0358 58.0029 61.8945 58.2354C61.7533 58.4678 61.5641 58.6911 61.3271 58.9053C61.0947 59.1149 60.8167 59.2904 60.4932 59.4316C60.1742 59.5684 59.8141 59.6367 59.4131 59.6367C58.9118 59.6367 58.472 59.5387 58.0938 59.3428C57.7201 59.1468 57.4284 58.8848 57.2188 58.5566C57.0137 58.224 56.9111 57.8525 56.9111 57.4424C56.9111 57.0459 56.9886 56.6973 57.1436 56.3965C57.2985 56.0911 57.5218 55.8382 57.8135 55.6377C58.1051 55.4326 58.4561 55.2777 58.8662 55.1729C59.2764 55.068 59.7344 55.0156 60.2402 55.0156H61.71ZM66.0029 53.5732V59.5H64.7314V52.1035H65.9346L66.0029 53.5732ZM65.7432 55.5215L65.1553 55.501C65.1598 54.9951 65.2259 54.528 65.3535 54.0996C65.4811 53.6667 65.6702 53.2907 65.9209 52.9717C66.1715 52.6527 66.4837 52.4066 66.8574 52.2334C67.2311 52.0557 67.6641 51.9668 68.1562 51.9668C68.5026 51.9668 68.8216 52.0169 69.1133 52.1172C69.4049 52.2129 69.6579 52.3656 69.8721 52.5752C70.0863 52.7848 70.2526 53.0537 70.3711 53.3818C70.4896 53.71 70.5488 54.1064 70.5488 54.5713V59.5H69.2842V54.6328C69.2842 54.2454 69.2181 53.9355 69.0859 53.7031C68.9583 53.4707 68.776 53.3021 68.5391 53.1973C68.3021 53.0879 68.0241 53.0332 67.7051 53.0332C67.3314 53.0332 67.0192 53.0993 66.7686 53.2314C66.5179 53.3636 66.3174 53.5459 66.167 53.7783C66.0166 54.0107 65.9072 54.2773 65.8389 54.5781C65.7751 54.8743 65.7432 55.1888 65.7432 55.5215ZM70.5352 54.8242L69.6875 55.084C69.6921 54.6784 69.7581 54.2887 69.8857 53.915C70.0179 53.5413 70.207 53.2087 70.4531 52.917C70.7038 52.6253 71.0114 52.3952 71.376 52.2266C71.7406 52.0534 72.1576 51.9668 72.627 51.9668C73.0234 51.9668 73.3743 52.0192 73.6797 52.124C73.9896 52.2288 74.2493 52.3906 74.459 52.6094C74.6732 52.8236 74.835 53.0993 74.9443 53.4365C75.0537 53.7738 75.1084 54.1748 75.1084 54.6396V59.5H73.8369V54.626C73.8369 54.2113 73.7708 53.89 73.6387 53.6621C73.5111 53.4297 73.3288 53.2679 73.0918 53.1768C72.8594 53.0811 72.5814 53.0332 72.2578 53.0332C71.9798 53.0332 71.7337 53.0811 71.5195 53.1768C71.3053 53.2725 71.1253 53.4046 70.9795 53.5732C70.8337 53.7373 70.722 53.9264 70.6445 54.1406C70.5716 54.3548 70.5352 54.5827 70.5352 54.8242ZM80.0918 59.6367C79.5768 59.6367 79.1097 59.5501 78.6904 59.377C78.2757 59.1992 77.918 58.9508 77.6172 58.6318C77.321 58.3128 77.0931 57.9346 76.9336 57.4971C76.7741 57.0596 76.6943 56.5811 76.6943 56.0615V55.7744C76.6943 55.1729 76.7832 54.6374 76.9609 54.168C77.1387 53.694 77.3802 53.293 77.6855 52.9648C77.9909 52.6367 78.3372 52.3883 78.7246 52.2197C79.112 52.0511 79.513 51.9668 79.9277 51.9668C80.4564 51.9668 80.9121 52.0579 81.2949 52.2402C81.6823 52.4225 81.999 52.6777 82.2451 53.0059C82.4912 53.3294 82.6735 53.7122 82.792 54.1543C82.9105 54.5918 82.9697 55.0703 82.9697 55.5898V56.1572H77.4463V55.125H81.7051V55.0293C81.6868 54.7012 81.6185 54.3822 81.5 54.0723C81.3861 53.7624 81.2038 53.5072 80.9531 53.3066C80.7025 53.1061 80.3607 53.0059 79.9277 53.0059C79.6406 53.0059 79.3763 53.0674 79.1348 53.1904C78.8932 53.3089 78.6859 53.4867 78.5127 53.7236C78.3395 53.9606 78.2051 54.25 78.1094 54.5918C78.0137 54.9336 77.9658 55.3278 77.9658 55.7744V56.0615C77.9658 56.4124 78.0137 56.7428 78.1094 57.0527C78.2096 57.3581 78.3532 57.627 78.54 57.8594C78.7314 58.0918 78.9616 58.2741 79.2305 58.4062C79.5039 58.5384 79.8138 58.6045 80.1602 58.6045C80.6068 58.6045 80.985 58.5133 81.2949 58.3311C81.6048 58.1488 81.876 57.9049 82.1084 57.5996L82.874 58.208C82.7145 58.4495 82.5117 58.6797 82.2656 58.8984C82.0195 59.1172 81.7165 59.2949 81.3564 59.4316C81.001 59.5684 80.5794 59.6367 80.0918 59.6367ZM84.3643 54.6602L85.7383 52.7734L83.6738 52.1582L83.9951 51.1328L86.0596 51.8916L85.998 49.54H87.0371L86.9688 51.9326L89.0059 51.1738L89.3203 52.2197L87.2217 52.8418L88.5684 54.6943L87.7207 55.3301L86.4561 53.3613L85.2188 55.2822L84.3643 54.6602Z",fill:"#64748B"}),(0,a.createElement)("rect",{x:"15.5",y:"68",width:"130.5",height:"29",rx:"3.5",fill:"white"}),(0,a.createElement)("path",{d:"M26.0728 77.7578H29.1323C29.8263 77.7578 30.4124 77.8636 30.8906 78.0752C31.373 78.2868 31.7391 78.5999 31.9888 79.0146C32.2427 79.4251 32.3696 79.9308 32.3696 80.5317C32.3696 80.9549 32.2829 81.3421 32.1094 81.6934C31.9401 82.0404 31.6947 82.3366 31.373 82.582C31.0557 82.8232 30.6748 83.0031 30.2305 83.1216L29.8877 83.2549H27.0122L26.9995 82.2583H29.1704C29.6105 82.2583 29.9766 82.1821 30.2686 82.0298C30.5605 81.8732 30.7806 81.6637 30.9287 81.4014C31.0768 81.139 31.1509 80.8491 31.1509 80.5317C31.1509 80.1763 31.0811 79.8652 30.9414 79.5986C30.8018 79.332 30.5817 79.1268 30.2812 78.9829C29.985 78.8348 29.6021 78.7607 29.1323 78.7607H27.2979V87H26.0728V77.7578ZM31.4746 87L29.2275 82.8105L30.5034 82.8042L32.7822 86.9238V87H31.4746ZM37.9556 85.8257V82.29C37.9556 82.0192 37.9006 81.7843 37.7905 81.5854C37.6847 81.3823 37.5239 81.2257 37.3081 81.1157C37.0923 81.0057 36.8257 80.9507 36.5083 80.9507C36.2121 80.9507 35.9518 81.0015 35.7275 81.103C35.5075 81.2046 35.334 81.3379 35.207 81.5029C35.0843 81.668 35.0229 81.8457 35.0229 82.0361H33.8486C33.8486 81.7907 33.9121 81.5474 34.0391 81.3062C34.166 81.0649 34.348 80.847 34.585 80.6523C34.8262 80.4535 35.1139 80.2969 35.4482 80.1826C35.7868 80.0641 36.1634 80.0049 36.5781 80.0049C37.0775 80.0049 37.5176 80.0895 37.8984 80.2588C38.2835 80.4281 38.584 80.6841 38.7998 81.0269C39.0199 81.3654 39.1299 81.7907 39.1299 82.3027V85.502C39.1299 85.7305 39.1489 85.9738 39.187 86.2319C39.2293 86.4901 39.2907 86.7122 39.3711 86.8984V87H38.146C38.0868 86.8646 38.0402 86.6847 38.0063 86.4604C37.9725 86.2319 37.9556 86.0203 37.9556 85.8257ZM38.1587 82.8359L38.1714 83.6611H36.9844C36.6501 83.6611 36.3517 83.6886 36.0894 83.7437C35.827 83.7944 35.6069 83.8727 35.4292 83.9785C35.2515 84.0843 35.116 84.2176 35.0229 84.3784C34.9299 84.535 34.8833 84.7191 34.8833 84.9307C34.8833 85.1465 34.932 85.3433 35.0293 85.521C35.1266 85.6987 35.2726 85.8405 35.4673 85.9463C35.6662 86.0479 35.9095 86.0986 36.1973 86.0986C36.557 86.0986 36.8743 86.0225 37.1494 85.8701C37.4245 85.7178 37.6424 85.5316 37.8032 85.3115C37.9683 85.0915 38.0571 84.8778 38.0698 84.6704L38.5713 85.2354C38.5417 85.4131 38.4613 85.6099 38.3301 85.8257C38.1989 86.0415 38.0233 86.2489 37.8032 86.4478C37.5874 86.6424 37.3293 86.8053 37.0288 86.9365C36.7326 87.0635 36.3983 87.127 36.0259 87.127C35.5604 87.127 35.152 87.036 34.8008 86.854C34.4538 86.672 34.1829 86.4287 33.9883 86.124C33.7979 85.8151 33.7026 85.4702 33.7026 85.0894C33.7026 84.7212 33.7746 84.3975 33.9185 84.1182C34.0623 83.8346 34.2697 83.5998 34.5405 83.4136C34.8114 83.2231 35.1372 83.0793 35.5181 82.9819C35.8989 82.8846 36.3242 82.8359 36.7939 82.8359H38.1587ZM44.9761 85.1782C44.9761 85.009 44.938 84.8524 44.8618 84.7085C44.7899 84.5604 44.6396 84.4271 44.4111 84.3086C44.1868 84.1859 43.8483 84.0801 43.3955 83.9912C43.0146 83.9108 42.6698 83.8156 42.3608 83.7056C42.0562 83.5955 41.7959 83.4622 41.5801 83.3057C41.3685 83.1491 41.2056 82.965 41.0913 82.7534C40.9771 82.5418 40.9199 82.2943 40.9199 82.0107C40.9199 81.7399 40.9792 81.4839 41.0977 81.2427C41.2204 81.0015 41.3918 80.7878 41.6118 80.6016C41.8361 80.4154 42.1048 80.2694 42.418 80.1636C42.7311 80.0578 43.0802 80.0049 43.4653 80.0049C44.0155 80.0049 44.4852 80.1022 44.8745 80.2969C45.2638 80.4915 45.5622 80.7518 45.7695 81.0776C45.9769 81.3993 46.0806 81.7568 46.0806 82.1504H44.9062C44.9062 81.96 44.8491 81.7759 44.7349 81.5981C44.6248 81.4162 44.4619 81.266 44.2461 81.1475C44.0345 81.029 43.7743 80.9697 43.4653 80.9697C43.1395 80.9697 42.875 81.0205 42.6719 81.1221C42.473 81.2194 42.327 81.3442 42.2339 81.4966C42.145 81.6489 42.1006 81.8097 42.1006 81.979C42.1006 82.106 42.1217 82.2202 42.1641 82.3218C42.2106 82.4191 42.291 82.5101 42.4053 82.5947C42.5195 82.6751 42.6803 82.7513 42.8877 82.8232C43.0951 82.8952 43.3595 82.9671 43.6812 83.0391C44.244 83.166 44.7074 83.3184 45.0713 83.4961C45.4352 83.6738 45.7061 83.8918 45.8838 84.1499C46.0615 84.408 46.1504 84.7212 46.1504 85.0894C46.1504 85.3898 46.0869 85.6649 45.96 85.9146C45.8372 86.1642 45.6574 86.38 45.4204 86.562C45.1877 86.7397 44.9084 86.8794 44.5825 86.981C44.2609 87.0783 43.8991 87.127 43.4971 87.127C42.8919 87.127 42.3799 87.019 41.9609 86.8032C41.542 86.5874 41.2246 86.3081 41.0088 85.9653C40.793 85.6226 40.6851 85.2607 40.6851 84.8799H41.8657C41.8826 85.2015 41.9757 85.4575 42.145 85.6479C42.3143 85.8341 42.5216 85.9674 42.7671 86.0479C43.0125 86.124 43.2559 86.1621 43.4971 86.1621C43.8187 86.1621 44.0874 86.1198 44.3032 86.0352C44.5233 85.9505 44.6904 85.8341 44.8047 85.686C44.9189 85.5379 44.9761 85.3687 44.9761 85.1782ZM51.6919 85.1782C51.6919 85.009 51.6538 84.8524 51.5776 84.7085C51.5057 84.5604 51.3555 84.4271 51.127 84.3086C50.9027 84.1859 50.5641 84.0801 50.1113 83.9912C49.7305 83.9108 49.3856 83.8156 49.0767 83.7056C48.772 83.5955 48.5117 83.4622 48.2959 83.3057C48.0843 83.1491 47.9214 82.965 47.8071 82.7534C47.6929 82.5418 47.6357 82.2943 47.6357 82.0107C47.6357 81.7399 47.695 81.4839 47.8135 81.2427C47.9362 81.0015 48.1076 80.7878 48.3276 80.6016C48.5519 80.4154 48.8206 80.2694 49.1338 80.1636C49.4469 80.0578 49.7961 80.0049 50.1812 80.0049C50.7313 80.0049 51.201 80.1022 51.5903 80.2969C51.9797 80.4915 52.278 80.7518 52.4854 81.0776C52.6927 81.3993 52.7964 81.7568 52.7964 82.1504H51.6221C51.6221 81.96 51.5649 81.7759 51.4507 81.5981C51.3407 81.4162 51.1777 81.266 50.9619 81.1475C50.7503 81.029 50.4901 80.9697 50.1812 80.9697C49.8553 80.9697 49.5908 81.0205 49.3877 81.1221C49.1888 81.2194 49.0428 81.3442 48.9497 81.4966C48.8608 81.6489 48.8164 81.8097 48.8164 81.979C48.8164 82.106 48.8376 82.2202 48.8799 82.3218C48.9264 82.4191 49.0068 82.5101 49.1211 82.5947C49.2354 82.6751 49.3962 82.7513 49.6035 82.8232C49.8109 82.8952 50.0754 82.9671 50.397 83.0391C50.9598 83.166 51.4232 83.3184 51.7871 83.4961C52.151 83.6738 52.4219 83.8918 52.5996 84.1499C52.7773 84.408 52.8662 84.7212 52.8662 85.0894C52.8662 85.3898 52.8027 85.6649 52.6758 85.9146C52.5531 86.1642 52.3732 86.38 52.1362 86.562C51.9035 86.7397 51.6242 86.8794 51.2983 86.981C50.9767 87.0783 50.6149 87.127 50.2129 87.127C49.6077 87.127 49.0957 87.019 48.6768 86.8032C48.2578 86.5874 47.9404 86.3081 47.7246 85.9653C47.5088 85.6226 47.4009 85.2607 47.4009 84.8799H48.5815C48.5985 85.2015 48.6916 85.4575 48.8608 85.6479C49.0301 85.8341 49.2375 85.9674 49.4829 86.0479C49.7284 86.124 49.9717 86.1621 50.2129 86.1621C50.5345 86.1621 50.8032 86.1198 51.019 86.0352C51.2391 85.9505 51.4062 85.8341 51.5205 85.686C51.6348 85.5379 51.6919 85.3687 51.6919 85.1782ZM57.2588 87.127C56.7806 87.127 56.3468 87.0465 55.9575 86.8857C55.5724 86.7207 55.2402 86.4901 54.9609 86.1938C54.6859 85.8976 54.4743 85.5464 54.3262 85.1401C54.1781 84.7339 54.104 84.2896 54.104 83.8071V83.5405C54.104 82.9819 54.1865 82.4847 54.3516 82.0488C54.5166 81.6087 54.7409 81.2363 55.0244 80.9316C55.3079 80.627 55.6296 80.3963 55.9893 80.2397C56.349 80.0832 56.7214 80.0049 57.1064 80.0049C57.5973 80.0049 58.0205 80.0895 58.376 80.2588C58.7357 80.4281 59.0298 80.665 59.2583 80.9697C59.4868 81.2702 59.6561 81.6257 59.7661 82.0361C59.8761 82.4424 59.9312 82.8867 59.9312 83.3691V83.896H54.8022V82.9375H58.7568V82.8486C58.7399 82.5439 58.6764 82.2477 58.5664 81.96C58.4606 81.6722 58.2913 81.4352 58.0586 81.249C57.8258 81.0628 57.5085 80.9697 57.1064 80.9697C56.8398 80.9697 56.5944 81.0269 56.3701 81.1411C56.1458 81.2511 55.9533 81.4162 55.7925 81.6362C55.6317 81.8563 55.5068 82.125 55.418 82.4424C55.3291 82.7598 55.2847 83.1258 55.2847 83.5405V83.8071C55.2847 84.133 55.3291 84.4398 55.418 84.7275C55.5111 85.0111 55.6444 85.2607 55.8179 85.4766C55.9956 85.6924 56.2093 85.8617 56.459 85.9844C56.7129 86.1071 57.0007 86.1685 57.3223 86.1685C57.737 86.1685 58.0882 86.0838 58.376 85.9146C58.6637 85.7453 58.9155 85.5189 59.1313 85.2354L59.8423 85.8003C59.6942 86.0246 59.5059 86.2383 59.2773 86.4414C59.0488 86.6445 58.7674 86.8096 58.4331 86.9365C58.103 87.0635 57.7116 87.127 57.2588 87.127ZM62.5781 77.25V87H61.3975V77.25H62.5781Z",fill:"#0F172A"}),(0,a.createElement)("rect",{x:"15.5",y:"68",width:"130.5",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,a.createElement)("path",{d:"M158.691 58.4268V59.5H153.715V58.4268H158.691ZM153.975 49.5469V59.5H152.655V49.5469H153.975ZM164.372 58.2354V54.4277C164.372 54.1361 164.313 53.8831 164.194 53.6689C164.08 53.4502 163.907 53.2816 163.675 53.1631C163.442 53.0446 163.155 52.9854 162.813 52.9854C162.494 52.9854 162.214 53.04 161.973 53.1494C161.736 53.2588 161.549 53.4023 161.412 53.5801C161.28 53.7578 161.214 53.9492 161.214 54.1543H159.949C159.949 53.89 160.018 53.6279 160.154 53.3682C160.291 53.1084 160.487 52.8737 160.742 52.6641C161.002 52.4499 161.312 52.2812 161.672 52.1582C162.036 52.0306 162.442 51.9668 162.889 51.9668C163.426 51.9668 163.9 52.0579 164.311 52.2402C164.725 52.4225 165.049 52.6982 165.281 53.0674C165.518 53.432 165.637 53.89 165.637 54.4414V57.8867C165.637 58.1328 165.657 58.3949 165.698 58.6729C165.744 58.9508 165.81 59.1901 165.896 59.3906V59.5H164.577C164.513 59.3542 164.463 59.1605 164.427 58.9189C164.39 58.6729 164.372 58.445 164.372 58.2354ZM164.591 55.0156L164.604 55.9043H163.326C162.966 55.9043 162.645 55.9339 162.362 55.9932C162.08 56.0479 161.843 56.1322 161.651 56.2461C161.46 56.36 161.314 56.5036 161.214 56.6768C161.114 56.8454 161.063 57.0436 161.063 57.2715C161.063 57.5039 161.116 57.7158 161.221 57.9072C161.326 58.0986 161.483 58.2513 161.692 58.3652C161.907 58.4746 162.169 58.5293 162.479 58.5293C162.866 58.5293 163.208 58.4473 163.504 58.2832C163.8 58.1191 164.035 57.9186 164.208 57.6816C164.386 57.4447 164.481 57.2145 164.495 56.9912L165.035 57.5996C165.003 57.791 164.917 58.0029 164.775 58.2354C164.634 58.4678 164.445 58.6911 164.208 58.9053C163.976 59.1149 163.698 59.2904 163.374 59.4316C163.055 59.5684 162.695 59.6367 162.294 59.6367C161.793 59.6367 161.353 59.5387 160.975 59.3428C160.601 59.1468 160.309 58.8848 160.1 58.5566C159.895 58.224 159.792 57.8525 159.792 57.4424C159.792 57.0459 159.869 56.6973 160.024 56.3965C160.179 56.0911 160.403 55.8382 160.694 55.6377C160.986 55.4326 161.337 55.2777 161.747 55.1729C162.157 55.068 162.615 55.0156 163.121 55.0156H164.591ZM171.933 57.5381C171.933 57.3558 171.892 57.1872 171.81 57.0322C171.732 56.8727 171.57 56.7292 171.324 56.6016C171.083 56.4694 170.718 56.3555 170.23 56.2598C169.82 56.1732 169.449 56.0706 169.116 55.9521C168.788 55.8337 168.508 55.6901 168.275 55.5215C168.048 55.3529 167.872 55.1546 167.749 54.9268C167.626 54.6989 167.564 54.4323 167.564 54.127C167.564 53.8353 167.628 53.5596 167.756 53.2998C167.888 53.04 168.073 52.8099 168.31 52.6094C168.551 52.4089 168.84 52.2516 169.178 52.1377C169.515 52.0238 169.891 51.9668 170.306 51.9668C170.898 51.9668 171.404 52.0716 171.823 52.2812C172.243 52.4909 172.564 52.7712 172.787 53.1221C173.01 53.4684 173.122 53.8535 173.122 54.2773H171.857C171.857 54.0723 171.796 53.874 171.673 53.6826C171.554 53.4867 171.379 53.3249 171.146 53.1973C170.919 53.0697 170.638 53.0059 170.306 53.0059C169.955 53.0059 169.67 53.0605 169.451 53.1699C169.237 53.2747 169.08 53.4092 168.979 53.5732C168.884 53.7373 168.836 53.9105 168.836 54.0928C168.836 54.2295 168.859 54.3525 168.904 54.4619C168.954 54.5667 169.041 54.6647 169.164 54.7559C169.287 54.8424 169.46 54.9245 169.684 55.002C169.907 55.0794 170.192 55.1569 170.538 55.2344C171.144 55.3711 171.643 55.5352 172.035 55.7266C172.427 55.918 172.719 56.1527 172.91 56.4307C173.102 56.7087 173.197 57.0459 173.197 57.4424C173.197 57.766 173.129 58.0622 172.992 58.3311C172.86 58.5999 172.666 58.8324 172.411 59.0283C172.16 59.2197 171.86 59.3701 171.509 59.4795C171.162 59.5843 170.773 59.6367 170.34 59.6367C169.688 59.6367 169.137 59.5205 168.686 59.2881C168.234 59.0557 167.893 58.7549 167.66 58.3857C167.428 58.0166 167.312 57.627 167.312 57.2168H168.583C168.601 57.5632 168.701 57.8389 168.884 58.0439C169.066 58.2445 169.289 58.388 169.554 58.4746C169.818 58.5566 170.08 58.5977 170.34 58.5977C170.686 58.5977 170.976 58.5521 171.208 58.4609C171.445 58.3698 171.625 58.2445 171.748 58.085C171.871 57.9255 171.933 57.7432 171.933 57.5381ZM177.955 52.1035V53.0742H173.956V52.1035H177.955ZM175.31 50.3057H176.574V57.668C176.574 57.9186 176.613 58.1077 176.69 58.2354C176.768 58.363 176.868 58.4473 176.991 58.4883C177.114 58.5293 177.246 58.5498 177.388 58.5498C177.493 58.5498 177.602 58.5407 177.716 58.5225C177.834 58.4997 177.923 58.4814 177.982 58.4678L177.989 59.5C177.889 59.5319 177.757 59.5615 177.593 59.5889C177.433 59.6208 177.24 59.6367 177.012 59.6367C176.702 59.6367 176.417 59.5752 176.157 59.4521C175.897 59.3291 175.69 59.124 175.535 58.8369C175.385 58.5452 175.31 58.1533 175.31 57.6611V50.3057ZM190.759 49.5469V59.5H189.433L184.422 51.8232V59.5H183.103V49.5469H184.422L189.453 57.2441V49.5469H190.759ZM197.267 58.2354V54.4277C197.267 54.1361 197.207 53.8831 197.089 53.6689C196.975 53.4502 196.802 53.2816 196.569 53.1631C196.337 53.0446 196.05 52.9854 195.708 52.9854C195.389 52.9854 195.109 53.04 194.867 53.1494C194.63 53.2588 194.443 53.4023 194.307 53.5801C194.174 53.7578 194.108 53.9492 194.108 54.1543H192.844C192.844 53.89 192.912 53.6279 193.049 53.3682C193.186 53.1084 193.382 52.8737 193.637 52.6641C193.896 52.4499 194.206 52.2812 194.566 52.1582C194.931 52.0306 195.337 51.9668 195.783 51.9668C196.321 51.9668 196.795 52.0579 197.205 52.2402C197.62 52.4225 197.943 52.6982 198.176 53.0674C198.413 53.432 198.531 53.89 198.531 54.4414V57.8867C198.531 58.1328 198.552 58.3949 198.593 58.6729C198.638 58.9508 198.704 59.1901 198.791 59.3906V59.5H197.472C197.408 59.3542 197.358 59.1605 197.321 58.9189C197.285 58.6729 197.267 58.445 197.267 58.2354ZM197.485 55.0156L197.499 55.9043H196.221C195.861 55.9043 195.539 55.9339 195.257 55.9932C194.974 56.0479 194.737 56.1322 194.546 56.2461C194.354 56.36 194.209 56.5036 194.108 56.6768C194.008 56.8454 193.958 57.0436 193.958 57.2715C193.958 57.5039 194.01 57.7158 194.115 57.9072C194.22 58.0986 194.377 58.2513 194.587 58.3652C194.801 58.4746 195.063 58.5293 195.373 58.5293C195.76 58.5293 196.102 58.4473 196.398 58.2832C196.695 58.1191 196.929 57.9186 197.103 57.6816C197.28 57.4447 197.376 57.2145 197.39 56.9912L197.93 57.5996C197.898 57.791 197.811 58.0029 197.67 58.2354C197.529 58.4678 197.34 58.6911 197.103 58.9053C196.87 59.1149 196.592 59.2904 196.269 59.4316C195.95 59.5684 195.59 59.6367 195.188 59.6367C194.687 59.6367 194.247 59.5387 193.869 59.3428C193.495 59.1468 193.204 58.8848 192.994 58.5566C192.789 58.224 192.687 57.8525 192.687 57.4424C192.687 57.0459 192.764 56.6973 192.919 56.3965C193.074 56.0911 193.297 55.8382 193.589 55.6377C193.881 55.4326 194.231 55.2777 194.642 55.1729C195.052 55.068 195.51 55.0156 196.016 55.0156H197.485ZM201.778 53.5732V59.5H200.507V52.1035H201.71L201.778 53.5732ZM201.519 55.5215L200.931 55.501C200.935 54.9951 201.001 54.528 201.129 54.0996C201.257 53.6667 201.446 53.2907 201.696 52.9717C201.947 52.6527 202.259 52.4066 202.633 52.2334C203.007 52.0557 203.439 51.9668 203.932 51.9668C204.278 51.9668 204.597 52.0169 204.889 52.1172C205.18 52.2129 205.433 52.3656 205.647 52.5752C205.862 52.7848 206.028 53.0537 206.146 53.3818C206.265 53.71 206.324 54.1064 206.324 54.5713V59.5H205.06V54.6328C205.06 54.2454 204.993 53.9355 204.861 53.7031C204.734 53.4707 204.551 53.3021 204.314 53.1973C204.077 53.0879 203.799 53.0332 203.48 53.0332C203.107 53.0332 202.795 53.0993 202.544 53.2314C202.293 53.3636 202.093 53.5459 201.942 53.7783C201.792 54.0107 201.683 54.2773 201.614 54.5781C201.55 54.8743 201.519 55.1888 201.519 55.5215ZM206.311 54.8242L205.463 55.084C205.467 54.6784 205.534 54.2887 205.661 53.915C205.793 53.5413 205.982 53.2087 206.229 52.917C206.479 52.6253 206.787 52.3952 207.151 52.2266C207.516 52.0534 207.933 51.9668 208.402 51.9668C208.799 51.9668 209.15 52.0192 209.455 52.124C209.765 52.2288 210.025 52.3906 210.234 52.6094C210.449 52.8236 210.61 53.0993 210.72 53.4365C210.829 53.7738 210.884 54.1748 210.884 54.6396V59.5H209.612V54.626C209.612 54.2113 209.546 53.89 209.414 53.6621C209.286 53.4297 209.104 53.2679 208.867 53.1768C208.635 53.0811 208.357 53.0332 208.033 53.0332C207.755 53.0332 207.509 53.0811 207.295 53.1768C207.081 53.2725 206.901 53.4046 206.755 53.5732C206.609 53.7373 206.497 53.9264 206.42 54.1406C206.347 54.3548 206.311 54.5827 206.311 54.8242ZM215.867 59.6367C215.352 59.6367 214.885 59.5501 214.466 59.377C214.051 59.1992 213.693 58.9508 213.393 58.6318C213.096 58.3128 212.868 57.9346 212.709 57.4971C212.549 57.0596 212.47 56.5811 212.47 56.0615V55.7744C212.47 55.1729 212.559 54.6374 212.736 54.168C212.914 53.694 213.156 53.293 213.461 52.9648C213.766 52.6367 214.113 52.3883 214.5 52.2197C214.887 52.0511 215.288 51.9668 215.703 51.9668C216.232 51.9668 216.688 52.0579 217.07 52.2402C217.458 52.4225 217.774 52.6777 218.021 53.0059C218.267 53.3294 218.449 53.7122 218.567 54.1543C218.686 54.5918 218.745 55.0703 218.745 55.5898V56.1572H213.222V55.125H217.48V55.0293C217.462 54.7012 217.394 54.3822 217.275 54.0723C217.161 53.7624 216.979 53.5072 216.729 53.3066C216.478 53.1061 216.136 53.0059 215.703 53.0059C215.416 53.0059 215.152 53.0674 214.91 53.1904C214.669 53.3089 214.461 53.4867 214.288 53.7236C214.115 53.9606 213.98 54.25 213.885 54.5918C213.789 54.9336 213.741 55.3278 213.741 55.7744V56.0615C213.741 56.4124 213.789 56.7428 213.885 57.0527C213.985 57.3581 214.129 57.627 214.315 57.8594C214.507 58.0918 214.737 58.2741 215.006 58.4062C215.279 58.5384 215.589 58.6045 215.936 58.6045C216.382 58.6045 216.76 58.5133 217.07 58.3311C217.38 58.1488 217.651 57.9049 217.884 57.5996L218.649 58.208C218.49 58.4495 218.287 58.6797 218.041 58.8984C217.795 59.1172 217.492 59.2949 217.132 59.4316C216.776 59.5684 216.355 59.6367 215.867 59.6367Z",fill:"#64748B"}),(0,a.createElement)("rect",{x:"152.5",y:"68.5",width:"129.5",height:"28",rx:"3",fill:"white"}),(0,a.createElement)("path",{d:"M167.499 84.6641C167.499 84.4482 167.465 84.2578 167.397 84.0928C167.333 83.9235 167.219 83.7712 167.054 83.6357C166.893 83.5003 166.669 83.3713 166.381 83.2485C166.098 83.1258 165.738 83.001 165.302 82.874C164.845 82.7386 164.433 82.5884 164.064 82.4233C163.696 82.2541 163.381 82.0615 163.119 81.8457C162.856 81.6299 162.655 81.3823 162.516 81.103C162.376 80.8237 162.306 80.5042 162.306 80.1445C162.306 79.7848 162.38 79.4526 162.528 79.1479C162.676 78.8433 162.888 78.5788 163.163 78.3545C163.442 78.126 163.775 77.9482 164.16 77.8213C164.545 77.6943 164.974 77.6309 165.448 77.6309C166.142 77.6309 166.73 77.7642 167.213 78.0308C167.7 78.2931 168.07 78.638 168.324 79.0654C168.578 79.4886 168.705 79.9414 168.705 80.4238H167.486C167.486 80.0768 167.412 79.77 167.264 79.5034C167.116 79.2326 166.891 79.021 166.591 78.8687C166.29 78.7121 165.91 78.6338 165.448 78.6338C165.012 78.6338 164.653 78.6994 164.369 78.8306C164.086 78.9618 163.874 79.1395 163.734 79.3638C163.599 79.5881 163.531 79.8441 163.531 80.1318C163.531 80.3265 163.571 80.5042 163.652 80.665C163.736 80.8216 163.866 80.9676 164.039 81.103C164.217 81.2384 164.441 81.3633 164.712 81.4775C164.987 81.5918 165.315 81.7018 165.696 81.8076C166.221 81.9557 166.673 82.1208 167.054 82.3027C167.435 82.4847 167.748 82.6899 167.994 82.9185C168.243 83.1427 168.427 83.3988 168.546 83.6865C168.669 83.9701 168.73 84.2917 168.73 84.6514C168.73 85.028 168.654 85.3687 168.501 85.6733C168.349 85.978 168.131 86.2383 167.848 86.4541C167.564 86.6699 167.223 86.8371 166.826 86.9556C166.432 87.0698 165.992 87.127 165.505 87.127C165.078 87.127 164.657 87.0677 164.242 86.9492C163.832 86.8307 163.457 86.653 163.119 86.416C162.784 86.179 162.516 85.887 162.312 85.54C162.114 85.1888 162.014 84.7826 162.014 84.3213H163.233C163.233 84.6387 163.294 84.9116 163.417 85.1401C163.54 85.3644 163.707 85.5506 163.918 85.6987C164.134 85.8468 164.378 85.9569 164.648 86.0288C164.924 86.0965 165.209 86.1304 165.505 86.1304C165.933 86.1304 166.295 86.0711 166.591 85.9526C166.887 85.8341 167.111 85.6649 167.264 85.4448C167.42 85.2248 167.499 84.9645 167.499 84.6641ZM171.39 80.1318V87H170.209V80.1318H171.39ZM170.12 78.3101C170.12 78.1196 170.177 77.9588 170.292 77.8276C170.41 77.6965 170.583 77.6309 170.812 77.6309C171.036 77.6309 171.208 77.6965 171.326 77.8276C171.449 77.9588 171.51 78.1196 171.51 78.3101C171.51 78.492 171.449 78.6486 171.326 78.7798C171.208 78.9067 171.036 78.9702 170.812 78.9702C170.583 78.9702 170.41 78.9067 170.292 78.7798C170.177 78.6486 170.12 78.492 170.12 78.3101ZM174.443 81.4966V87H173.262V80.1318H174.379L174.443 81.4966ZM174.202 83.3057L173.656 83.2866C173.66 82.8169 173.721 82.3831 173.84 81.9854C173.958 81.5833 174.134 81.2342 174.367 80.938C174.599 80.6418 174.889 80.4132 175.236 80.2524C175.583 80.0874 175.985 80.0049 176.442 80.0049C176.764 80.0049 177.06 80.0514 177.331 80.1445C177.602 80.2334 177.837 80.3752 178.036 80.5698C178.235 80.7645 178.389 81.0142 178.499 81.3188C178.609 81.6235 178.664 81.9917 178.664 82.4233V87H177.49V82.4805C177.49 82.1208 177.428 81.833 177.306 81.6172C177.187 81.4014 177.018 81.2448 176.798 81.1475C176.578 81.0459 176.32 80.9951 176.023 80.9951C175.676 80.9951 175.387 81.0565 175.154 81.1792C174.921 81.3019 174.735 81.4712 174.595 81.687C174.456 81.9028 174.354 82.1504 174.291 82.4297C174.231 82.7048 174.202 82.9967 174.202 83.3057ZM178.651 82.6582L177.864 82.8994C177.868 82.5228 177.93 82.161 178.048 81.814C178.171 81.467 178.347 81.158 178.575 80.8872C178.808 80.6164 179.094 80.4027 179.432 80.2461C179.771 80.0853 180.158 80.0049 180.594 80.0049C180.962 80.0049 181.288 80.0535 181.571 80.1509C181.859 80.2482 182.1 80.3984 182.295 80.6016C182.494 80.8005 182.644 81.0565 182.746 81.3696C182.847 81.6828 182.898 82.0552 182.898 82.4868V87H181.717V82.4741C181.717 82.089 181.656 81.7907 181.533 81.5791C181.415 81.3633 181.245 81.2131 181.025 81.1284C180.81 81.0396 180.551 80.9951 180.251 80.9951C179.993 80.9951 179.764 81.0396 179.565 81.1284C179.367 81.2173 179.199 81.34 179.064 81.4966C178.929 81.6489 178.825 81.8245 178.753 82.0234C178.685 82.2223 178.651 82.4339 178.651 82.6582ZM185.843 81.4966V87H184.663V80.1318H185.78L185.843 81.4966ZM185.602 83.3057L185.056 83.2866C185.06 82.8169 185.122 82.3831 185.24 81.9854C185.359 81.5833 185.534 81.2342 185.767 80.938C186 80.6418 186.29 80.4132 186.637 80.2524C186.984 80.0874 187.386 80.0049 187.843 80.0049C188.164 80.0049 188.461 80.0514 188.731 80.1445C189.002 80.2334 189.237 80.3752 189.436 80.5698C189.635 80.7645 189.789 81.0142 189.899 81.3188C190.009 81.6235 190.064 81.9917 190.064 82.4233V87H188.89V82.4805C188.89 82.1208 188.829 81.833 188.706 81.6172C188.588 81.4014 188.418 81.2448 188.198 81.1475C187.978 81.0459 187.72 80.9951 187.424 80.9951C187.077 80.9951 186.787 81.0565 186.554 81.1792C186.321 81.3019 186.135 81.4712 185.996 81.687C185.856 81.9028 185.754 82.1504 185.691 82.4297C185.632 82.7048 185.602 82.9967 185.602 83.3057ZM190.052 82.6582L189.265 82.8994C189.269 82.5228 189.33 82.161 189.449 81.814C189.571 81.467 189.747 81.158 189.976 80.8872C190.208 80.6164 190.494 80.4027 190.833 80.2461C191.171 80.0853 191.558 80.0049 191.994 80.0049C192.362 80.0049 192.688 80.0535 192.972 80.1509C193.259 80.2482 193.501 80.3984 193.695 80.6016C193.894 80.8005 194.044 81.0565 194.146 81.3696C194.248 81.6828 194.298 82.0552 194.298 82.4868V87H193.118V82.4741C193.118 82.089 193.056 81.7907 192.934 81.5791C192.815 81.3633 192.646 81.2131 192.426 81.1284C192.21 81.0396 191.952 80.9951 191.651 80.9951C191.393 80.9951 191.165 81.0396 190.966 81.1284C190.767 81.2173 190.6 81.34 190.464 81.4966C190.329 81.6489 190.225 81.8245 190.153 82.0234C190.086 82.2223 190.052 82.4339 190.052 82.6582ZM198.926 87.127C198.448 87.127 198.014 87.0465 197.625 86.8857C197.239 86.7207 196.907 86.4901 196.628 86.1938C196.353 85.8976 196.141 85.5464 195.993 85.1401C195.845 84.7339 195.771 84.2896 195.771 83.8071V83.5405C195.771 82.9819 195.854 82.4847 196.019 82.0488C196.184 81.6087 196.408 81.2363 196.691 80.9316C196.975 80.627 197.297 80.3963 197.656 80.2397C198.016 80.0832 198.388 80.0049 198.773 80.0049C199.264 80.0049 199.688 80.0895 200.043 80.2588C200.403 80.4281 200.697 80.665 200.925 80.9697C201.154 81.2702 201.323 81.6257 201.433 82.0361C201.543 82.4424 201.598 82.8867 201.598 83.3691V83.896H196.469V82.9375H200.424V82.8486C200.407 82.5439 200.343 82.2477 200.233 81.96C200.128 81.6722 199.958 81.4352 199.726 81.249C199.493 81.0628 199.175 80.9697 198.773 80.9697C198.507 80.9697 198.261 81.0269 198.037 81.1411C197.813 81.2511 197.62 81.4162 197.459 81.6362C197.299 81.8563 197.174 82.125 197.085 82.4424C196.996 82.7598 196.952 83.1258 196.952 83.5405V83.8071C196.952 84.133 196.996 84.4398 197.085 84.7275C197.178 85.0111 197.311 85.2607 197.485 85.4766C197.663 85.6924 197.876 85.8617 198.126 85.9844C198.38 86.1071 198.668 86.1685 198.989 86.1685C199.404 86.1685 199.755 86.0838 200.043 85.9146C200.331 85.7453 200.583 85.5189 200.798 85.2354L201.509 85.8003C201.361 86.0246 201.173 86.2383 200.944 86.4414C200.716 86.6445 200.434 86.8096 200.1 86.9365C199.77 87.0635 199.379 87.127 198.926 87.127ZM204.144 81.5981V87H202.969V80.1318H204.08L204.144 81.5981ZM203.864 83.3057L203.375 83.2866C203.38 82.8169 203.45 82.3831 203.585 81.9854C203.72 81.5833 203.911 81.2342 204.156 80.938C204.402 80.6418 204.694 80.4132 205.032 80.2524C205.375 80.0874 205.754 80.0049 206.168 80.0049C206.507 80.0049 206.812 80.0514 207.083 80.1445C207.353 80.2334 207.584 80.3773 207.774 80.5762C207.969 80.7751 208.117 81.0332 208.219 81.3506C208.32 81.6637 208.371 82.0467 208.371 82.4995V87H207.19V82.4868C207.19 82.1271 207.138 81.8394 207.032 81.6235C206.926 81.4035 206.771 81.2448 206.568 81.1475C206.365 81.0459 206.116 80.9951 205.819 80.9951C205.527 80.9951 205.261 81.0565 205.02 81.1792C204.783 81.3019 204.577 81.4712 204.404 81.687C204.235 81.9028 204.101 82.1504 204.004 82.4297C203.911 82.7048 203.864 82.9967 203.864 83.3057ZM214.154 85.1782C214.154 85.009 214.116 84.8524 214.04 84.7085C213.968 84.5604 213.817 84.4271 213.589 84.3086C213.365 84.1859 213.026 84.0801 212.573 83.9912C212.192 83.9108 211.847 83.8156 211.539 83.7056C211.234 83.5955 210.974 83.4622 210.758 83.3057C210.546 83.1491 210.383 82.965 210.269 82.7534C210.155 82.5418 210.098 82.2943 210.098 82.0107C210.098 81.7399 210.157 81.4839 210.275 81.2427C210.398 81.0015 210.569 80.7878 210.79 80.6016C211.014 80.4154 211.283 80.2694 211.596 80.1636C211.909 80.0578 212.258 80.0049 212.643 80.0049C213.193 80.0049 213.663 80.1022 214.052 80.2969C214.442 80.4915 214.74 80.7518 214.947 81.0776C215.155 81.3993 215.258 81.7568 215.258 82.1504H214.084C214.084 81.96 214.027 81.7759 213.913 81.5981C213.803 81.4162 213.64 81.266 213.424 81.1475C213.212 81.029 212.952 80.9697 212.643 80.9697C212.317 80.9697 212.053 81.0205 211.85 81.1221C211.651 81.2194 211.505 81.3442 211.412 81.4966C211.323 81.6489 211.278 81.8097 211.278 81.979C211.278 82.106 211.299 82.2202 211.342 82.3218C211.388 82.4191 211.469 82.5101 211.583 82.5947C211.697 82.6751 211.858 82.7513 212.065 82.8232C212.273 82.8952 212.537 82.9671 212.859 83.0391C213.422 83.166 213.885 83.3184 214.249 83.4961C214.613 83.6738 214.884 83.8918 215.062 84.1499C215.239 84.408 215.328 84.7212 215.328 85.0894C215.328 85.3898 215.265 85.6649 215.138 85.9146C215.015 86.1642 214.835 86.38 214.598 86.562C214.365 86.7397 214.086 86.8794 213.76 86.981C213.439 87.0783 213.077 87.127 212.675 87.127C212.07 87.127 211.558 87.019 211.139 86.8032C210.72 86.5874 210.402 86.3081 210.187 85.9653C209.971 85.6226 209.863 85.2607 209.863 84.8799H211.043C211.06 85.2015 211.153 85.4575 211.323 85.6479C211.492 85.8341 211.699 85.9674 211.945 86.0479C212.19 86.124 212.434 86.1621 212.675 86.1621C212.996 86.1621 213.265 86.1198 213.481 86.0352C213.701 85.9505 213.868 85.8341 213.982 85.686C214.097 85.5379 214.154 85.3687 214.154 85.1782ZM218.039 77.7578V88.7139H217.093V77.7578H218.039Z",fill:"#0F172A"}),(0,a.createElement)("rect",{x:"152.5",y:"68.5",width:"129.5",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),d=window.wp.i18n,m=window.wp.components,u=window.wp.blockEditor;function p(e){var t=Object.create(null);return function(C){return void 0===t[C]&&(t[C]=e(C)),t[C]}}var f=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,h=p(function(e){return f.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),y=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},C=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,C]=e.split("_");t[C]=e}else C.push(e)})});const l=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&l.push(t[e]);return l.push(...C),l.join(" ")},b=(e,t)=>{const C={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{C[t]=e[t]}),C},g=(e,t)=>{},H=function(e){let t="";return C=>{const l=(l,r)=>{const{as:n=e,class:i=t}=l;var o;const s=function(e,t){const C=b(t,["as","class"]);if(!e){const e="function"==typeof h?{default:h}:h;Object.keys(C).forEach(t=>{e.default(t)||delete C[t]})}return C}(void 0===C.propsAsIs?!("string"==typeof n&&-1===n.indexOf("-")&&(o=n[0],o.toUpperCase()!==o)):C.propsAsIs,l);s.ref=r,s.className=C.atomic?y(C.class,s.className||i):y(s.className||i,C.class);const{vars:c}=C;if(c){const e={};for(const t in c){const a=c[t],r=a[0],n=a[1]||"",i="function"==typeof r?r(l):r;g(0,C.name),e[`--${t}`]=`${i}${n}`}const t=s.style||{},a=Object.keys(t);a.length>0&&a.forEach(C=>{e[C]=t[C]}),s.style=e}return e.__wyw_meta&&e!==n?(s.as=n,(0,a.createElement)(e,s)):(0,a.createElement)(n,s)},r=a.forwardRef?(0,a.forwardRef)(l):e=>{const t=b(e,["innerRef"]);return l(t,e.innerRef)};return r.displayName=C.name,r.__wyw_meta={className:C.class||t,extends:e},r}};const k=window.wp.element,{ToolBarFields:_,BlockName:v,BlockLabel:V,BlockDescription:w,AdvancedFields:E,FieldWrapper:x,FieldSettingsWrapper:L,ValidationToggleGroup:M,ValidationBlockMessage:j,BlockAdvancedValue:Z,EditAdvancedRulesButton:S,BaseHelp:T,AdvancedInspectorControl:P,AttributeHelp:A}=JetFBComponents,{useIsAdvancedValidation:F,useUniqueNameOnDuplicate:B}=JetFBHooks,O=H("input")({name:"FullWidthInput",class:"fylh6zt",propsAsIs:!1}),{seenIcon:R,unSeenIcon:I}=JFBTextFieldConfig;C(727);const N=JSON.parse('{"$schema":"https://raw.githubusercontent.com/WordPress/gutenberg/trunk/schemas/json/block.json","apiVersion":3,"name":"jet-forms/text-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","text"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Text Field","icon":"\\n\\n\\n","attributes":{"showEye":{"type":"boolean","default":false},"value":{"type":"object","default":{"groups":[]}},"validation":{"type":"object","default":{}},"field_type":{"type":"string","default":"text"},"autocomplete":{"type":"string","default":"off"},"enable_input_mask":{"type":"boolean","default":false},"clear_on_submit":{"type":"boolean","default":false},"mask_type":{"type":"string","default":""},"input_mask":{"type":"string","default":""},"mask_visibility":{"type":"string","default":"always"},"mask_placeholder":{"type":"string","default":"_"},"minlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"maxlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-blocks-v2-text-field","viewStyle":"jet-fb-blocks-v2-text-field","editorStyle":"jet-fb-blocks-v2-text-field-editor-style"}'),D=window.wp.blocks,{name:U,icon:z=""}=N,W={icon:(0,a.createElement)("span",{dangerouslySetInnerHTML:{__html:z}}),description:(0,d.__)("Add a single narrow text bar to the form and gather short text information like names, emails, titles, etc.","jet-form-builder"),edit:function(e){const{attributes:t,setAttributes:C,isSelected:l,editProps:{uniqKey:r,attrHelp:p}}=e,f=(0,u.useBlockProps)(),h=F();B();const[y,b]=(0,k.useState)(null);return(0,k.useEffect)(()=>b(!1),[t.field_type,t.showEye]),t.isPreview?(0,a.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},c):[(0,a.createElement)(_,{key:r("ToolBarFields"),...e}),l&&(0,a.createElement)(u.InspectorControls,{key:r("InspectorControls")},(0,a.createElement)(m.PanelBody,{title:(0,d.__)("General","jet-form-builder")},(0,a.createElement)(V,null),(0,a.createElement)(v,null),(0,a.createElement)(w,null)),(0,a.createElement)(m.PanelBody,{title:(0,d.__)("Value","jet-form-builder")},(0,a.createElement)(Z,null)),(0,a.createElement)(L,{...e},(0,a.createElement)(m.SelectControl,{key:"field_type",label:(0,d.__)("Field Type","jet-form-builder"),labelPosition:"top",value:t.field_type,onChange:e=>{C({field_type:e})},options:n}),"tel"===t.field_type&&(0,a.createElement)("div",{style:{marginBottom:"16px"}},(0,a.createElement)(m.Notice,{status:"info",isDismissible:!1},(0,a.createElement)("div",null,(0,d.__)("There is a dedicated Phone Field for entering the phone number in the form.","jet-form-builder")))),"password"===t.field_type&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(m.ToggleControl,{label:(0,d.__)("Show eye icon","jet-form-builder"),checked:t.showEye,help:(0,d.__)("Enable to allow user control visibility of value in input","jet-form-builder"),onChange:e=>C({showEye:e})})),(0,a.createElement)(m.SelectControl,{key:"autocomplete",label:(0,d.__)("Autocomplete","jet-form-builder"),labelPosition:"top",value:t.autocomplete||"off",onChange:e=>{C({autocomplete:e})},options:[{label:(0,d.__)("Off","jet-form-builder"),value:"off"},{label:(0,d.__)("On","jet-form-builder"),value:"on"}]}),(0,a.createElement)(P,{value:t.minlength,label:(0,d.__)("Min length (symbols)","jet-form-builder"),onChangePreset:e=>C({minlength:e})},({instanceId:e})=>(0,a.createElement)(m.TextControl,{id:e,className:"jet-fb m-unset",value:t.minlength,onChange:e=>C({minlength:e})})),(0,a.createElement)(A,{name:"minlength"}),(0,a.createElement)(P,{value:t.maxlength,label:(0,d.__)("Max length (symbols)","jet-form-builder"),onChangePreset:e=>C({maxlength:e})},({instanceId:e})=>(0,a.createElement)(m.TextControl,{id:e,className:"jet-fb m-unset",value:t.maxlength,onChange:e=>C({maxlength:e})})),(0,a.createElement)(A,{name:"maxlength"}),(0,a.createElement)(m.ToggleControl,{key:"enable_input_mask",label:(0,d.__)("Set Input Mask","jet-form-builder"),checked:t.enable_input_mask,help:(0,d.__)("Check this to setup specific input format for the current field","jet-form-builder"),onChange:e=>{C({enable_input_mask:e})}}),t.enable_input_mask&&(0,a.createElement)(React.Fragment,null,"datetime"!=t.mask_type&&(0,a.createElement)(m.ToggleControl,{label:(0,d.__)("Clear mask before submit","jet-form-builder"),checked:t.clear_on_submit,onChange:e=>C({clear_on_submit:e})}),(0,a.createElement)(m.SelectControl,{key:"mask_type",label:(0,d.__)("Mask type","jet-form-builder"),labelPosition:"top",value:t.mask_type,onChange:e=>{C({mask_type:e})},options:i}),(0,a.createElement)(m.TextControl,{key:"input_mask",label:(0,d.__)("Input mask","jet-form-builder"),value:t.input_mask,onChange:e=>{C({input_mask:e})}}),!t.mask_type&&(0,a.createElement)(T,{style:{marginBottom:"2em"}},p("input_mask_default")),"datetime"===t.mask_type&&(0,a.createElement)(T,{style:{marginBottom:"2em"}},(0,d.__)("Examples:","jet-form-builder")," dd/mm/yyyy, mm/dd/yyyy",(0,a.createElement)("br",null),(0,d.__)("More info - ","jet-form-builder"),(0,a.createElement)("a",{href:p("input_mask_datetime_link"),target:"_blank",rel:"noreferrer"},(0,d.__)("here","jet-form-builder"))),(0,a.createElement)(m.SelectControl,{key:"mask_visibility",label:(0,d.__)("Mask visibility","jet-form-builder"),labelPosition:"top",value:t.mask_visibility,onChange:e=>{C({mask_visibility:e})},options:o}),(0,a.createElement)(m.SelectControl,{key:"mask_placeholder",label:(0,d.__)("Mask placeholder","jet-form-builder"),labelPosition:"top",value:t.mask_placeholder,onChange:e=>{C({mask_placeholder:e})},options:s}))),(0,a.createElement)(m.PanelBody,{title:(0,d.__)("Validation","jet-form-builder")},(0,a.createElement)(M,null),h&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(S,null),"email"===t.field_type&&(0,a.createElement)(j,{name:"email"}),"url"===t.field_type&&(0,a.createElement)(j,{name:"url"}),t.enable_input_mask&&(0,a.createElement)(j,{name:"inputmask"}),Boolean(t.minlength)&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(j,{name:"char_min"})),Boolean(t.maxlength)&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(j,{name:"char_max"})),(0,a.createElement)(j,{name:"empty"}))),(0,a.createElement)(E,{key:r("AdvancedFields"),...e})),(0,a.createElement)("div",{key:r("viewBlock"),...f},(0,a.createElement)(x,{key:r("FieldWrapper"),...e},(0,a.createElement)("div",{className:["jet-form-builder__field-wrap jet-form-builder__field-preview",t.showEye&&"has-eye-icon"].join(" ")},(0,a.createElement)(O,{placeholder:t.placeholder,minLength:t.minlength,maxLength:t.maxlength,type:y?"text":t.field_type}),t.showEye&&"password"===t.field_type&&(0,a.createElement)("span",{className:["jfb-eye-icon",y?"":"seen"].join(" "),onClick:()=>b(e=>!e)},(0,a.createElement)(k.RawHTML,null,R),(0,a.createElement)(k.RawHTML,null,I)))))]},jfbResolveBlock(){const e={clientId:this.clientId,name:this.name};return this.attributes.name?{...e,fields:[{value:this.attributes.name,name:this.attributes.name,label:this.attributes.label||this.attributes.name,attributes:{field_type:this.attributes.field_type}}]}:e},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{from:[{type:"block",blocks:["core/paragraph"],transform:({content:e=""})=>(0,D.createBlock)(U,{label:e}),priority:0}]}};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/text-field",function(e){return e.push(l),e})})(); \ No newline at end of file +(()=>{"use strict";var e={727:(e,t,C)=>{C.r(t)}},t={};function C(l){var a=t[l];if(void 0!==a)return a.exports;var r=t[l]={exports:{}};return e[l](r,r.exports,C),r.exports}C.d=(e,t)=>{for(var l in t)C.o(t,l)&&!C.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:t[l]})},C.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),C.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var l={};C.r(l),C.d(l,{metadata:()=>I,name:()=>D,settings:()=>z});const a=window.React,{__:r}=wp.i18n,n=[{value:"text",label:r("Text","jet-form-builder")},{value:"email",label:r("Email","jet-form-builder")},{value:"url",label:r("Url","jet-form-builder")},{value:"tel",label:r("Tel","jet-form-builder")},{value:"password",label:r("Password","jet-form-builder")}],i=[{value:"",label:r("Default","jet-form-builder")},{value:"datetime",label:r("Datetime","jet-form-builder")}],o=[{value:"always",label:r("Always","jet-form-builder")},{value:"hover",label:r("Hover","jet-form-builder")},{value:"focus",label:r("Focus","jet-form-builder")}],s=[{value:"_",label:"_"},{value:"-",label:"-"},{value:"*",label:"*"},{value:"•",label:"•"}],c=(0,a.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,a.createElement)("path",{d:"M17.4746 49.5469V59.5H16.1553V49.5469H17.4746ZM21.6445 54.0244V55.1045H17.1875V54.0244H21.6445ZM22.3213 49.5469V50.627H17.1875V49.5469H22.3213ZM25.0762 52.1035V59.5H23.8047V52.1035H25.0762ZM23.709 50.1416C23.709 49.9365 23.7705 49.7633 23.8936 49.6221C24.0212 49.4808 24.208 49.4102 24.4541 49.4102C24.6956 49.4102 24.8802 49.4808 25.0078 49.6221C25.14 49.7633 25.2061 49.9365 25.2061 50.1416C25.2061 50.3376 25.14 50.5062 25.0078 50.6475C24.8802 50.7842 24.6956 50.8525 24.4541 50.8525C24.208 50.8525 24.0212 50.7842 23.8936 50.6475C23.7705 50.5062 23.709 50.3376 23.709 50.1416ZM28.3711 53.2656V59.5H27.1064V52.1035H28.3369L28.3711 53.2656ZM30.6816 52.0625L30.6748 53.2383C30.57 53.2155 30.4697 53.2018 30.374 53.1973C30.2829 53.1882 30.1781 53.1836 30.0596 53.1836C29.7679 53.1836 29.5104 53.2292 29.2871 53.3203C29.0638 53.4115 28.8747 53.5391 28.7197 53.7031C28.5648 53.8672 28.4417 54.0632 28.3506 54.291C28.264 54.5143 28.207 54.7604 28.1797 55.0293L27.8242 55.2344C27.8242 54.7878 27.8675 54.3685 27.9541 53.9766C28.0452 53.5846 28.1842 53.2383 28.3711 52.9375C28.5579 52.6322 28.7949 52.3952 29.082 52.2266C29.3737 52.0534 29.7201 51.9668 30.1211 51.9668C30.2122 51.9668 30.3171 51.9782 30.4355 52.001C30.554 52.0192 30.6361 52.0397 30.6816 52.0625ZM36.1572 57.5381C36.1572 57.3558 36.1162 57.1872 36.0342 57.0322C35.9567 56.8727 35.7949 56.7292 35.5488 56.6016C35.3073 56.4694 34.9427 56.3555 34.4551 56.2598C34.0449 56.1732 33.6735 56.0706 33.3408 55.9521C33.0127 55.8337 32.7324 55.6901 32.5 55.5215C32.2721 55.3529 32.0967 55.1546 31.9736 54.9268C31.8506 54.6989 31.7891 54.4323 31.7891 54.127C31.7891 53.8353 31.8529 53.5596 31.9805 53.2998C32.1126 53.04 32.2972 52.8099 32.5342 52.6094C32.7757 52.4089 33.0651 52.2516 33.4023 52.1377C33.7396 52.0238 34.1156 51.9668 34.5303 51.9668C35.1227 51.9668 35.6286 52.0716 36.0479 52.2812C36.4671 52.4909 36.7884 52.7712 37.0117 53.1221C37.235 53.4684 37.3467 53.8535 37.3467 54.2773H36.082C36.082 54.0723 36.0205 53.874 35.8975 53.6826C35.779 53.4867 35.6035 53.3249 35.3711 53.1973C35.1432 53.0697 34.863 53.0059 34.5303 53.0059C34.1794 53.0059 33.8945 53.0605 33.6758 53.1699C33.4616 53.2747 33.3044 53.4092 33.2041 53.5732C33.1084 53.7373 33.0605 53.9105 33.0605 54.0928C33.0605 54.2295 33.0833 54.3525 33.1289 54.4619C33.179 54.5667 33.2656 54.6647 33.3887 54.7559C33.5117 54.8424 33.6849 54.9245 33.9082 55.002C34.1315 55.0794 34.4163 55.1569 34.7627 55.2344C35.3688 55.3711 35.8678 55.5352 36.2598 55.7266C36.6517 55.918 36.9434 56.1527 37.1348 56.4307C37.3262 56.7087 37.4219 57.0459 37.4219 57.4424C37.4219 57.766 37.3535 58.0622 37.2168 58.3311C37.0846 58.5999 36.891 58.8324 36.6357 59.0283C36.3851 59.2197 36.0843 59.3701 35.7334 59.4795C35.387 59.5843 34.9974 59.6367 34.5645 59.6367C33.9128 59.6367 33.3613 59.5205 32.9102 59.2881C32.459 59.0557 32.1172 58.7549 31.8848 58.3857C31.6523 58.0166 31.5361 57.627 31.5361 57.2168H32.8076C32.8258 57.5632 32.9261 57.8389 33.1084 58.0439C33.2907 58.2445 33.514 58.388 33.7783 58.4746C34.0426 58.5566 34.3047 58.5977 34.5645 58.5977C34.9108 58.5977 35.2002 58.5521 35.4326 58.4609C35.6696 58.3698 35.8496 58.2445 35.9727 58.085C36.0957 57.9255 36.1572 57.7432 36.1572 57.5381ZM42.1797 52.1035V53.0742H38.1807V52.1035H42.1797ZM39.5342 50.3057H40.7988V57.668C40.7988 57.9186 40.8376 58.1077 40.915 58.2354C40.9925 58.363 41.0928 58.4473 41.2158 58.4883C41.3389 58.5293 41.471 58.5498 41.6123 58.5498C41.7171 58.5498 41.8265 58.5407 41.9404 58.5225C42.0589 58.4997 42.1478 58.4814 42.207 58.4678L42.2139 59.5C42.1136 59.5319 41.9814 59.5615 41.8174 59.5889C41.6579 59.6208 41.4642 59.6367 41.2363 59.6367C40.9264 59.6367 40.6416 59.5752 40.3818 59.4521C40.1221 59.3291 39.9147 59.124 39.7598 58.8369C39.6094 58.5452 39.5342 58.1533 39.5342 57.6611V50.3057ZM54.9834 49.5469V59.5H53.6572L48.6465 51.8232V59.5H47.3271V49.5469H48.6465L53.6777 57.2441V49.5469H54.9834ZM61.4912 58.2354V54.4277C61.4912 54.1361 61.432 53.8831 61.3135 53.6689C61.1995 53.4502 61.0264 53.2816 60.7939 53.1631C60.5615 53.0446 60.2744 52.9854 59.9326 52.9854C59.6136 52.9854 59.3333 53.04 59.0918 53.1494C58.8548 53.2588 58.668 53.4023 58.5312 53.5801C58.3991 53.7578 58.333 53.9492 58.333 54.1543H57.0684C57.0684 53.89 57.1367 53.6279 57.2734 53.3682C57.4102 53.1084 57.6061 52.8737 57.8613 52.6641C58.1211 52.4499 58.431 52.2812 58.791 52.1582C59.1556 52.0306 59.5612 51.9668 60.0078 51.9668C60.5456 51.9668 61.0195 52.0579 61.4297 52.2402C61.8444 52.4225 62.168 52.6982 62.4004 53.0674C62.6374 53.432 62.7559 53.89 62.7559 54.4414V57.8867C62.7559 58.1328 62.7764 58.3949 62.8174 58.6729C62.863 58.9508 62.929 59.1901 63.0156 59.3906V59.5H61.6963C61.6325 59.3542 61.5824 59.1605 61.5459 58.9189C61.5094 58.6729 61.4912 58.445 61.4912 58.2354ZM61.71 55.0156L61.7236 55.9043H60.4453C60.0853 55.9043 59.764 55.9339 59.4814 55.9932C59.1989 56.0479 58.9619 56.1322 58.7705 56.2461C58.5791 56.36 58.4333 56.5036 58.333 56.6768C58.2327 56.8454 58.1826 57.0436 58.1826 57.2715C58.1826 57.5039 58.235 57.7158 58.3398 57.9072C58.4447 58.0986 58.6019 58.2513 58.8115 58.3652C59.0257 58.4746 59.2878 58.5293 59.5977 58.5293C59.985 58.5293 60.3268 58.4473 60.623 58.2832C60.9193 58.1191 61.154 57.9186 61.3271 57.6816C61.5049 57.4447 61.6006 57.2145 61.6143 56.9912L62.1543 57.5996C62.1224 57.791 62.0358 58.0029 61.8945 58.2354C61.7533 58.4678 61.5641 58.6911 61.3271 58.9053C61.0947 59.1149 60.8167 59.2904 60.4932 59.4316C60.1742 59.5684 59.8141 59.6367 59.4131 59.6367C58.9118 59.6367 58.472 59.5387 58.0938 59.3428C57.7201 59.1468 57.4284 58.8848 57.2188 58.5566C57.0137 58.224 56.9111 57.8525 56.9111 57.4424C56.9111 57.0459 56.9886 56.6973 57.1436 56.3965C57.2985 56.0911 57.5218 55.8382 57.8135 55.6377C58.1051 55.4326 58.4561 55.2777 58.8662 55.1729C59.2764 55.068 59.7344 55.0156 60.2402 55.0156H61.71ZM66.0029 53.5732V59.5H64.7314V52.1035H65.9346L66.0029 53.5732ZM65.7432 55.5215L65.1553 55.501C65.1598 54.9951 65.2259 54.528 65.3535 54.0996C65.4811 53.6667 65.6702 53.2907 65.9209 52.9717C66.1715 52.6527 66.4837 52.4066 66.8574 52.2334C67.2311 52.0557 67.6641 51.9668 68.1562 51.9668C68.5026 51.9668 68.8216 52.0169 69.1133 52.1172C69.4049 52.2129 69.6579 52.3656 69.8721 52.5752C70.0863 52.7848 70.2526 53.0537 70.3711 53.3818C70.4896 53.71 70.5488 54.1064 70.5488 54.5713V59.5H69.2842V54.6328C69.2842 54.2454 69.2181 53.9355 69.0859 53.7031C68.9583 53.4707 68.776 53.3021 68.5391 53.1973C68.3021 53.0879 68.0241 53.0332 67.7051 53.0332C67.3314 53.0332 67.0192 53.0993 66.7686 53.2314C66.5179 53.3636 66.3174 53.5459 66.167 53.7783C66.0166 54.0107 65.9072 54.2773 65.8389 54.5781C65.7751 54.8743 65.7432 55.1888 65.7432 55.5215ZM70.5352 54.8242L69.6875 55.084C69.6921 54.6784 69.7581 54.2887 69.8857 53.915C70.0179 53.5413 70.207 53.2087 70.4531 52.917C70.7038 52.6253 71.0114 52.3952 71.376 52.2266C71.7406 52.0534 72.1576 51.9668 72.627 51.9668C73.0234 51.9668 73.3743 52.0192 73.6797 52.124C73.9896 52.2288 74.2493 52.3906 74.459 52.6094C74.6732 52.8236 74.835 53.0993 74.9443 53.4365C75.0537 53.7738 75.1084 54.1748 75.1084 54.6396V59.5H73.8369V54.626C73.8369 54.2113 73.7708 53.89 73.6387 53.6621C73.5111 53.4297 73.3288 53.2679 73.0918 53.1768C72.8594 53.0811 72.5814 53.0332 72.2578 53.0332C71.9798 53.0332 71.7337 53.0811 71.5195 53.1768C71.3053 53.2725 71.1253 53.4046 70.9795 53.5732C70.8337 53.7373 70.722 53.9264 70.6445 54.1406C70.5716 54.3548 70.5352 54.5827 70.5352 54.8242ZM80.0918 59.6367C79.5768 59.6367 79.1097 59.5501 78.6904 59.377C78.2757 59.1992 77.918 58.9508 77.6172 58.6318C77.321 58.3128 77.0931 57.9346 76.9336 57.4971C76.7741 57.0596 76.6943 56.5811 76.6943 56.0615V55.7744C76.6943 55.1729 76.7832 54.6374 76.9609 54.168C77.1387 53.694 77.3802 53.293 77.6855 52.9648C77.9909 52.6367 78.3372 52.3883 78.7246 52.2197C79.112 52.0511 79.513 51.9668 79.9277 51.9668C80.4564 51.9668 80.9121 52.0579 81.2949 52.2402C81.6823 52.4225 81.999 52.6777 82.2451 53.0059C82.4912 53.3294 82.6735 53.7122 82.792 54.1543C82.9105 54.5918 82.9697 55.0703 82.9697 55.5898V56.1572H77.4463V55.125H81.7051V55.0293C81.6868 54.7012 81.6185 54.3822 81.5 54.0723C81.3861 53.7624 81.2038 53.5072 80.9531 53.3066C80.7025 53.1061 80.3607 53.0059 79.9277 53.0059C79.6406 53.0059 79.3763 53.0674 79.1348 53.1904C78.8932 53.3089 78.6859 53.4867 78.5127 53.7236C78.3395 53.9606 78.2051 54.25 78.1094 54.5918C78.0137 54.9336 77.9658 55.3278 77.9658 55.7744V56.0615C77.9658 56.4124 78.0137 56.7428 78.1094 57.0527C78.2096 57.3581 78.3532 57.627 78.54 57.8594C78.7314 58.0918 78.9616 58.2741 79.2305 58.4062C79.5039 58.5384 79.8138 58.6045 80.1602 58.6045C80.6068 58.6045 80.985 58.5133 81.2949 58.3311C81.6048 58.1488 81.876 57.9049 82.1084 57.5996L82.874 58.208C82.7145 58.4495 82.5117 58.6797 82.2656 58.8984C82.0195 59.1172 81.7165 59.2949 81.3564 59.4316C81.001 59.5684 80.5794 59.6367 80.0918 59.6367ZM84.3643 54.6602L85.7383 52.7734L83.6738 52.1582L83.9951 51.1328L86.0596 51.8916L85.998 49.54H87.0371L86.9688 51.9326L89.0059 51.1738L89.3203 52.2197L87.2217 52.8418L88.5684 54.6943L87.7207 55.3301L86.4561 53.3613L85.2188 55.2822L84.3643 54.6602Z",fill:"#64748B"}),(0,a.createElement)("rect",{x:"15.5",y:"68",width:"130.5",height:"29",rx:"3.5",fill:"white"}),(0,a.createElement)("path",{d:"M26.0728 77.7578H29.1323C29.8263 77.7578 30.4124 77.8636 30.8906 78.0752C31.373 78.2868 31.7391 78.5999 31.9888 79.0146C32.2427 79.4251 32.3696 79.9308 32.3696 80.5317C32.3696 80.9549 32.2829 81.3421 32.1094 81.6934C31.9401 82.0404 31.6947 82.3366 31.373 82.582C31.0557 82.8232 30.6748 83.0031 30.2305 83.1216L29.8877 83.2549H27.0122L26.9995 82.2583H29.1704C29.6105 82.2583 29.9766 82.1821 30.2686 82.0298C30.5605 81.8732 30.7806 81.6637 30.9287 81.4014C31.0768 81.139 31.1509 80.8491 31.1509 80.5317C31.1509 80.1763 31.0811 79.8652 30.9414 79.5986C30.8018 79.332 30.5817 79.1268 30.2812 78.9829C29.985 78.8348 29.6021 78.7607 29.1323 78.7607H27.2979V87H26.0728V77.7578ZM31.4746 87L29.2275 82.8105L30.5034 82.8042L32.7822 86.9238V87H31.4746ZM37.9556 85.8257V82.29C37.9556 82.0192 37.9006 81.7843 37.7905 81.5854C37.6847 81.3823 37.5239 81.2257 37.3081 81.1157C37.0923 81.0057 36.8257 80.9507 36.5083 80.9507C36.2121 80.9507 35.9518 81.0015 35.7275 81.103C35.5075 81.2046 35.334 81.3379 35.207 81.5029C35.0843 81.668 35.0229 81.8457 35.0229 82.0361H33.8486C33.8486 81.7907 33.9121 81.5474 34.0391 81.3062C34.166 81.0649 34.348 80.847 34.585 80.6523C34.8262 80.4535 35.1139 80.2969 35.4482 80.1826C35.7868 80.0641 36.1634 80.0049 36.5781 80.0049C37.0775 80.0049 37.5176 80.0895 37.8984 80.2588C38.2835 80.4281 38.584 80.6841 38.7998 81.0269C39.0199 81.3654 39.1299 81.7907 39.1299 82.3027V85.502C39.1299 85.7305 39.1489 85.9738 39.187 86.2319C39.2293 86.4901 39.2907 86.7122 39.3711 86.8984V87H38.146C38.0868 86.8646 38.0402 86.6847 38.0063 86.4604C37.9725 86.2319 37.9556 86.0203 37.9556 85.8257ZM38.1587 82.8359L38.1714 83.6611H36.9844C36.6501 83.6611 36.3517 83.6886 36.0894 83.7437C35.827 83.7944 35.6069 83.8727 35.4292 83.9785C35.2515 84.0843 35.116 84.2176 35.0229 84.3784C34.9299 84.535 34.8833 84.7191 34.8833 84.9307C34.8833 85.1465 34.932 85.3433 35.0293 85.521C35.1266 85.6987 35.2726 85.8405 35.4673 85.9463C35.6662 86.0479 35.9095 86.0986 36.1973 86.0986C36.557 86.0986 36.8743 86.0225 37.1494 85.8701C37.4245 85.7178 37.6424 85.5316 37.8032 85.3115C37.9683 85.0915 38.0571 84.8778 38.0698 84.6704L38.5713 85.2354C38.5417 85.4131 38.4613 85.6099 38.3301 85.8257C38.1989 86.0415 38.0233 86.2489 37.8032 86.4478C37.5874 86.6424 37.3293 86.8053 37.0288 86.9365C36.7326 87.0635 36.3983 87.127 36.0259 87.127C35.5604 87.127 35.152 87.036 34.8008 86.854C34.4538 86.672 34.1829 86.4287 33.9883 86.124C33.7979 85.8151 33.7026 85.4702 33.7026 85.0894C33.7026 84.7212 33.7746 84.3975 33.9185 84.1182C34.0623 83.8346 34.2697 83.5998 34.5405 83.4136C34.8114 83.2231 35.1372 83.0793 35.5181 82.9819C35.8989 82.8846 36.3242 82.8359 36.7939 82.8359H38.1587ZM44.9761 85.1782C44.9761 85.009 44.938 84.8524 44.8618 84.7085C44.7899 84.5604 44.6396 84.4271 44.4111 84.3086C44.1868 84.1859 43.8483 84.0801 43.3955 83.9912C43.0146 83.9108 42.6698 83.8156 42.3608 83.7056C42.0562 83.5955 41.7959 83.4622 41.5801 83.3057C41.3685 83.1491 41.2056 82.965 41.0913 82.7534C40.9771 82.5418 40.9199 82.2943 40.9199 82.0107C40.9199 81.7399 40.9792 81.4839 41.0977 81.2427C41.2204 81.0015 41.3918 80.7878 41.6118 80.6016C41.8361 80.4154 42.1048 80.2694 42.418 80.1636C42.7311 80.0578 43.0802 80.0049 43.4653 80.0049C44.0155 80.0049 44.4852 80.1022 44.8745 80.2969C45.2638 80.4915 45.5622 80.7518 45.7695 81.0776C45.9769 81.3993 46.0806 81.7568 46.0806 82.1504H44.9062C44.9062 81.96 44.8491 81.7759 44.7349 81.5981C44.6248 81.4162 44.4619 81.266 44.2461 81.1475C44.0345 81.029 43.7743 80.9697 43.4653 80.9697C43.1395 80.9697 42.875 81.0205 42.6719 81.1221C42.473 81.2194 42.327 81.3442 42.2339 81.4966C42.145 81.6489 42.1006 81.8097 42.1006 81.979C42.1006 82.106 42.1217 82.2202 42.1641 82.3218C42.2106 82.4191 42.291 82.5101 42.4053 82.5947C42.5195 82.6751 42.6803 82.7513 42.8877 82.8232C43.0951 82.8952 43.3595 82.9671 43.6812 83.0391C44.244 83.166 44.7074 83.3184 45.0713 83.4961C45.4352 83.6738 45.7061 83.8918 45.8838 84.1499C46.0615 84.408 46.1504 84.7212 46.1504 85.0894C46.1504 85.3898 46.0869 85.6649 45.96 85.9146C45.8372 86.1642 45.6574 86.38 45.4204 86.562C45.1877 86.7397 44.9084 86.8794 44.5825 86.981C44.2609 87.0783 43.8991 87.127 43.4971 87.127C42.8919 87.127 42.3799 87.019 41.9609 86.8032C41.542 86.5874 41.2246 86.3081 41.0088 85.9653C40.793 85.6226 40.6851 85.2607 40.6851 84.8799H41.8657C41.8826 85.2015 41.9757 85.4575 42.145 85.6479C42.3143 85.8341 42.5216 85.9674 42.7671 86.0479C43.0125 86.124 43.2559 86.1621 43.4971 86.1621C43.8187 86.1621 44.0874 86.1198 44.3032 86.0352C44.5233 85.9505 44.6904 85.8341 44.8047 85.686C44.9189 85.5379 44.9761 85.3687 44.9761 85.1782ZM51.6919 85.1782C51.6919 85.009 51.6538 84.8524 51.5776 84.7085C51.5057 84.5604 51.3555 84.4271 51.127 84.3086C50.9027 84.1859 50.5641 84.0801 50.1113 83.9912C49.7305 83.9108 49.3856 83.8156 49.0767 83.7056C48.772 83.5955 48.5117 83.4622 48.2959 83.3057C48.0843 83.1491 47.9214 82.965 47.8071 82.7534C47.6929 82.5418 47.6357 82.2943 47.6357 82.0107C47.6357 81.7399 47.695 81.4839 47.8135 81.2427C47.9362 81.0015 48.1076 80.7878 48.3276 80.6016C48.5519 80.4154 48.8206 80.2694 49.1338 80.1636C49.4469 80.0578 49.7961 80.0049 50.1812 80.0049C50.7313 80.0049 51.201 80.1022 51.5903 80.2969C51.9797 80.4915 52.278 80.7518 52.4854 81.0776C52.6927 81.3993 52.7964 81.7568 52.7964 82.1504H51.6221C51.6221 81.96 51.5649 81.7759 51.4507 81.5981C51.3407 81.4162 51.1777 81.266 50.9619 81.1475C50.7503 81.029 50.4901 80.9697 50.1812 80.9697C49.8553 80.9697 49.5908 81.0205 49.3877 81.1221C49.1888 81.2194 49.0428 81.3442 48.9497 81.4966C48.8608 81.6489 48.8164 81.8097 48.8164 81.979C48.8164 82.106 48.8376 82.2202 48.8799 82.3218C48.9264 82.4191 49.0068 82.5101 49.1211 82.5947C49.2354 82.6751 49.3962 82.7513 49.6035 82.8232C49.8109 82.8952 50.0754 82.9671 50.397 83.0391C50.9598 83.166 51.4232 83.3184 51.7871 83.4961C52.151 83.6738 52.4219 83.8918 52.5996 84.1499C52.7773 84.408 52.8662 84.7212 52.8662 85.0894C52.8662 85.3898 52.8027 85.6649 52.6758 85.9146C52.5531 86.1642 52.3732 86.38 52.1362 86.562C51.9035 86.7397 51.6242 86.8794 51.2983 86.981C50.9767 87.0783 50.6149 87.127 50.2129 87.127C49.6077 87.127 49.0957 87.019 48.6768 86.8032C48.2578 86.5874 47.9404 86.3081 47.7246 85.9653C47.5088 85.6226 47.4009 85.2607 47.4009 84.8799H48.5815C48.5985 85.2015 48.6916 85.4575 48.8608 85.6479C49.0301 85.8341 49.2375 85.9674 49.4829 86.0479C49.7284 86.124 49.9717 86.1621 50.2129 86.1621C50.5345 86.1621 50.8032 86.1198 51.019 86.0352C51.2391 85.9505 51.4062 85.8341 51.5205 85.686C51.6348 85.5379 51.6919 85.3687 51.6919 85.1782ZM57.2588 87.127C56.7806 87.127 56.3468 87.0465 55.9575 86.8857C55.5724 86.7207 55.2402 86.4901 54.9609 86.1938C54.6859 85.8976 54.4743 85.5464 54.3262 85.1401C54.1781 84.7339 54.104 84.2896 54.104 83.8071V83.5405C54.104 82.9819 54.1865 82.4847 54.3516 82.0488C54.5166 81.6087 54.7409 81.2363 55.0244 80.9316C55.3079 80.627 55.6296 80.3963 55.9893 80.2397C56.349 80.0832 56.7214 80.0049 57.1064 80.0049C57.5973 80.0049 58.0205 80.0895 58.376 80.2588C58.7357 80.4281 59.0298 80.665 59.2583 80.9697C59.4868 81.2702 59.6561 81.6257 59.7661 82.0361C59.8761 82.4424 59.9312 82.8867 59.9312 83.3691V83.896H54.8022V82.9375H58.7568V82.8486C58.7399 82.5439 58.6764 82.2477 58.5664 81.96C58.4606 81.6722 58.2913 81.4352 58.0586 81.249C57.8258 81.0628 57.5085 80.9697 57.1064 80.9697C56.8398 80.9697 56.5944 81.0269 56.3701 81.1411C56.1458 81.2511 55.9533 81.4162 55.7925 81.6362C55.6317 81.8563 55.5068 82.125 55.418 82.4424C55.3291 82.7598 55.2847 83.1258 55.2847 83.5405V83.8071C55.2847 84.133 55.3291 84.4398 55.418 84.7275C55.5111 85.0111 55.6444 85.2607 55.8179 85.4766C55.9956 85.6924 56.2093 85.8617 56.459 85.9844C56.7129 86.1071 57.0007 86.1685 57.3223 86.1685C57.737 86.1685 58.0882 86.0838 58.376 85.9146C58.6637 85.7453 58.9155 85.5189 59.1313 85.2354L59.8423 85.8003C59.6942 86.0246 59.5059 86.2383 59.2773 86.4414C59.0488 86.6445 58.7674 86.8096 58.4331 86.9365C58.103 87.0635 57.7116 87.127 57.2588 87.127ZM62.5781 77.25V87H61.3975V77.25H62.5781Z",fill:"#0F172A"}),(0,a.createElement)("rect",{x:"15.5",y:"68",width:"130.5",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,a.createElement)("path",{d:"M158.691 58.4268V59.5H153.715V58.4268H158.691ZM153.975 49.5469V59.5H152.655V49.5469H153.975ZM164.372 58.2354V54.4277C164.372 54.1361 164.313 53.8831 164.194 53.6689C164.08 53.4502 163.907 53.2816 163.675 53.1631C163.442 53.0446 163.155 52.9854 162.813 52.9854C162.494 52.9854 162.214 53.04 161.973 53.1494C161.736 53.2588 161.549 53.4023 161.412 53.5801C161.28 53.7578 161.214 53.9492 161.214 54.1543H159.949C159.949 53.89 160.018 53.6279 160.154 53.3682C160.291 53.1084 160.487 52.8737 160.742 52.6641C161.002 52.4499 161.312 52.2812 161.672 52.1582C162.036 52.0306 162.442 51.9668 162.889 51.9668C163.426 51.9668 163.9 52.0579 164.311 52.2402C164.725 52.4225 165.049 52.6982 165.281 53.0674C165.518 53.432 165.637 53.89 165.637 54.4414V57.8867C165.637 58.1328 165.657 58.3949 165.698 58.6729C165.744 58.9508 165.81 59.1901 165.896 59.3906V59.5H164.577C164.513 59.3542 164.463 59.1605 164.427 58.9189C164.39 58.6729 164.372 58.445 164.372 58.2354ZM164.591 55.0156L164.604 55.9043H163.326C162.966 55.9043 162.645 55.9339 162.362 55.9932C162.08 56.0479 161.843 56.1322 161.651 56.2461C161.46 56.36 161.314 56.5036 161.214 56.6768C161.114 56.8454 161.063 57.0436 161.063 57.2715C161.063 57.5039 161.116 57.7158 161.221 57.9072C161.326 58.0986 161.483 58.2513 161.692 58.3652C161.907 58.4746 162.169 58.5293 162.479 58.5293C162.866 58.5293 163.208 58.4473 163.504 58.2832C163.8 58.1191 164.035 57.9186 164.208 57.6816C164.386 57.4447 164.481 57.2145 164.495 56.9912L165.035 57.5996C165.003 57.791 164.917 58.0029 164.775 58.2354C164.634 58.4678 164.445 58.6911 164.208 58.9053C163.976 59.1149 163.698 59.2904 163.374 59.4316C163.055 59.5684 162.695 59.6367 162.294 59.6367C161.793 59.6367 161.353 59.5387 160.975 59.3428C160.601 59.1468 160.309 58.8848 160.1 58.5566C159.895 58.224 159.792 57.8525 159.792 57.4424C159.792 57.0459 159.869 56.6973 160.024 56.3965C160.179 56.0911 160.403 55.8382 160.694 55.6377C160.986 55.4326 161.337 55.2777 161.747 55.1729C162.157 55.068 162.615 55.0156 163.121 55.0156H164.591ZM171.933 57.5381C171.933 57.3558 171.892 57.1872 171.81 57.0322C171.732 56.8727 171.57 56.7292 171.324 56.6016C171.083 56.4694 170.718 56.3555 170.23 56.2598C169.82 56.1732 169.449 56.0706 169.116 55.9521C168.788 55.8337 168.508 55.6901 168.275 55.5215C168.048 55.3529 167.872 55.1546 167.749 54.9268C167.626 54.6989 167.564 54.4323 167.564 54.127C167.564 53.8353 167.628 53.5596 167.756 53.2998C167.888 53.04 168.073 52.8099 168.31 52.6094C168.551 52.4089 168.84 52.2516 169.178 52.1377C169.515 52.0238 169.891 51.9668 170.306 51.9668C170.898 51.9668 171.404 52.0716 171.823 52.2812C172.243 52.4909 172.564 52.7712 172.787 53.1221C173.01 53.4684 173.122 53.8535 173.122 54.2773H171.857C171.857 54.0723 171.796 53.874 171.673 53.6826C171.554 53.4867 171.379 53.3249 171.146 53.1973C170.919 53.0697 170.638 53.0059 170.306 53.0059C169.955 53.0059 169.67 53.0605 169.451 53.1699C169.237 53.2747 169.08 53.4092 168.979 53.5732C168.884 53.7373 168.836 53.9105 168.836 54.0928C168.836 54.2295 168.859 54.3525 168.904 54.4619C168.954 54.5667 169.041 54.6647 169.164 54.7559C169.287 54.8424 169.46 54.9245 169.684 55.002C169.907 55.0794 170.192 55.1569 170.538 55.2344C171.144 55.3711 171.643 55.5352 172.035 55.7266C172.427 55.918 172.719 56.1527 172.91 56.4307C173.102 56.7087 173.197 57.0459 173.197 57.4424C173.197 57.766 173.129 58.0622 172.992 58.3311C172.86 58.5999 172.666 58.8324 172.411 59.0283C172.16 59.2197 171.86 59.3701 171.509 59.4795C171.162 59.5843 170.773 59.6367 170.34 59.6367C169.688 59.6367 169.137 59.5205 168.686 59.2881C168.234 59.0557 167.893 58.7549 167.66 58.3857C167.428 58.0166 167.312 57.627 167.312 57.2168H168.583C168.601 57.5632 168.701 57.8389 168.884 58.0439C169.066 58.2445 169.289 58.388 169.554 58.4746C169.818 58.5566 170.08 58.5977 170.34 58.5977C170.686 58.5977 170.976 58.5521 171.208 58.4609C171.445 58.3698 171.625 58.2445 171.748 58.085C171.871 57.9255 171.933 57.7432 171.933 57.5381ZM177.955 52.1035V53.0742H173.956V52.1035H177.955ZM175.31 50.3057H176.574V57.668C176.574 57.9186 176.613 58.1077 176.69 58.2354C176.768 58.363 176.868 58.4473 176.991 58.4883C177.114 58.5293 177.246 58.5498 177.388 58.5498C177.493 58.5498 177.602 58.5407 177.716 58.5225C177.834 58.4997 177.923 58.4814 177.982 58.4678L177.989 59.5C177.889 59.5319 177.757 59.5615 177.593 59.5889C177.433 59.6208 177.24 59.6367 177.012 59.6367C176.702 59.6367 176.417 59.5752 176.157 59.4521C175.897 59.3291 175.69 59.124 175.535 58.8369C175.385 58.5452 175.31 58.1533 175.31 57.6611V50.3057ZM190.759 49.5469V59.5H189.433L184.422 51.8232V59.5H183.103V49.5469H184.422L189.453 57.2441V49.5469H190.759ZM197.267 58.2354V54.4277C197.267 54.1361 197.207 53.8831 197.089 53.6689C196.975 53.4502 196.802 53.2816 196.569 53.1631C196.337 53.0446 196.05 52.9854 195.708 52.9854C195.389 52.9854 195.109 53.04 194.867 53.1494C194.63 53.2588 194.443 53.4023 194.307 53.5801C194.174 53.7578 194.108 53.9492 194.108 54.1543H192.844C192.844 53.89 192.912 53.6279 193.049 53.3682C193.186 53.1084 193.382 52.8737 193.637 52.6641C193.896 52.4499 194.206 52.2812 194.566 52.1582C194.931 52.0306 195.337 51.9668 195.783 51.9668C196.321 51.9668 196.795 52.0579 197.205 52.2402C197.62 52.4225 197.943 52.6982 198.176 53.0674C198.413 53.432 198.531 53.89 198.531 54.4414V57.8867C198.531 58.1328 198.552 58.3949 198.593 58.6729C198.638 58.9508 198.704 59.1901 198.791 59.3906V59.5H197.472C197.408 59.3542 197.358 59.1605 197.321 58.9189C197.285 58.6729 197.267 58.445 197.267 58.2354ZM197.485 55.0156L197.499 55.9043H196.221C195.861 55.9043 195.539 55.9339 195.257 55.9932C194.974 56.0479 194.737 56.1322 194.546 56.2461C194.354 56.36 194.209 56.5036 194.108 56.6768C194.008 56.8454 193.958 57.0436 193.958 57.2715C193.958 57.5039 194.01 57.7158 194.115 57.9072C194.22 58.0986 194.377 58.2513 194.587 58.3652C194.801 58.4746 195.063 58.5293 195.373 58.5293C195.76 58.5293 196.102 58.4473 196.398 58.2832C196.695 58.1191 196.929 57.9186 197.103 57.6816C197.28 57.4447 197.376 57.2145 197.39 56.9912L197.93 57.5996C197.898 57.791 197.811 58.0029 197.67 58.2354C197.529 58.4678 197.34 58.6911 197.103 58.9053C196.87 59.1149 196.592 59.2904 196.269 59.4316C195.95 59.5684 195.59 59.6367 195.188 59.6367C194.687 59.6367 194.247 59.5387 193.869 59.3428C193.495 59.1468 193.204 58.8848 192.994 58.5566C192.789 58.224 192.687 57.8525 192.687 57.4424C192.687 57.0459 192.764 56.6973 192.919 56.3965C193.074 56.0911 193.297 55.8382 193.589 55.6377C193.881 55.4326 194.231 55.2777 194.642 55.1729C195.052 55.068 195.51 55.0156 196.016 55.0156H197.485ZM201.778 53.5732V59.5H200.507V52.1035H201.71L201.778 53.5732ZM201.519 55.5215L200.931 55.501C200.935 54.9951 201.001 54.528 201.129 54.0996C201.257 53.6667 201.446 53.2907 201.696 52.9717C201.947 52.6527 202.259 52.4066 202.633 52.2334C203.007 52.0557 203.439 51.9668 203.932 51.9668C204.278 51.9668 204.597 52.0169 204.889 52.1172C205.18 52.2129 205.433 52.3656 205.647 52.5752C205.862 52.7848 206.028 53.0537 206.146 53.3818C206.265 53.71 206.324 54.1064 206.324 54.5713V59.5H205.06V54.6328C205.06 54.2454 204.993 53.9355 204.861 53.7031C204.734 53.4707 204.551 53.3021 204.314 53.1973C204.077 53.0879 203.799 53.0332 203.48 53.0332C203.107 53.0332 202.795 53.0993 202.544 53.2314C202.293 53.3636 202.093 53.5459 201.942 53.7783C201.792 54.0107 201.683 54.2773 201.614 54.5781C201.55 54.8743 201.519 55.1888 201.519 55.5215ZM206.311 54.8242L205.463 55.084C205.467 54.6784 205.534 54.2887 205.661 53.915C205.793 53.5413 205.982 53.2087 206.229 52.917C206.479 52.6253 206.787 52.3952 207.151 52.2266C207.516 52.0534 207.933 51.9668 208.402 51.9668C208.799 51.9668 209.15 52.0192 209.455 52.124C209.765 52.2288 210.025 52.3906 210.234 52.6094C210.449 52.8236 210.61 53.0993 210.72 53.4365C210.829 53.7738 210.884 54.1748 210.884 54.6396V59.5H209.612V54.626C209.612 54.2113 209.546 53.89 209.414 53.6621C209.286 53.4297 209.104 53.2679 208.867 53.1768C208.635 53.0811 208.357 53.0332 208.033 53.0332C207.755 53.0332 207.509 53.0811 207.295 53.1768C207.081 53.2725 206.901 53.4046 206.755 53.5732C206.609 53.7373 206.497 53.9264 206.42 54.1406C206.347 54.3548 206.311 54.5827 206.311 54.8242ZM215.867 59.6367C215.352 59.6367 214.885 59.5501 214.466 59.377C214.051 59.1992 213.693 58.9508 213.393 58.6318C213.096 58.3128 212.868 57.9346 212.709 57.4971C212.549 57.0596 212.47 56.5811 212.47 56.0615V55.7744C212.47 55.1729 212.559 54.6374 212.736 54.168C212.914 53.694 213.156 53.293 213.461 52.9648C213.766 52.6367 214.113 52.3883 214.5 52.2197C214.887 52.0511 215.288 51.9668 215.703 51.9668C216.232 51.9668 216.688 52.0579 217.07 52.2402C217.458 52.4225 217.774 52.6777 218.021 53.0059C218.267 53.3294 218.449 53.7122 218.567 54.1543C218.686 54.5918 218.745 55.0703 218.745 55.5898V56.1572H213.222V55.125H217.48V55.0293C217.462 54.7012 217.394 54.3822 217.275 54.0723C217.161 53.7624 216.979 53.5072 216.729 53.3066C216.478 53.1061 216.136 53.0059 215.703 53.0059C215.416 53.0059 215.152 53.0674 214.91 53.1904C214.669 53.3089 214.461 53.4867 214.288 53.7236C214.115 53.9606 213.98 54.25 213.885 54.5918C213.789 54.9336 213.741 55.3278 213.741 55.7744V56.0615C213.741 56.4124 213.789 56.7428 213.885 57.0527C213.985 57.3581 214.129 57.627 214.315 57.8594C214.507 58.0918 214.737 58.2741 215.006 58.4062C215.279 58.5384 215.589 58.6045 215.936 58.6045C216.382 58.6045 216.76 58.5133 217.07 58.3311C217.38 58.1488 217.651 57.9049 217.884 57.5996L218.649 58.208C218.49 58.4495 218.287 58.6797 218.041 58.8984C217.795 59.1172 217.492 59.2949 217.132 59.4316C216.776 59.5684 216.355 59.6367 215.867 59.6367Z",fill:"#64748B"}),(0,a.createElement)("rect",{x:"152.5",y:"68.5",width:"129.5",height:"28",rx:"3",fill:"white"}),(0,a.createElement)("path",{d:"M167.499 84.6641C167.499 84.4482 167.465 84.2578 167.397 84.0928C167.333 83.9235 167.219 83.7712 167.054 83.6357C166.893 83.5003 166.669 83.3713 166.381 83.2485C166.098 83.1258 165.738 83.001 165.302 82.874C164.845 82.7386 164.433 82.5884 164.064 82.4233C163.696 82.2541 163.381 82.0615 163.119 81.8457C162.856 81.6299 162.655 81.3823 162.516 81.103C162.376 80.8237 162.306 80.5042 162.306 80.1445C162.306 79.7848 162.38 79.4526 162.528 79.1479C162.676 78.8433 162.888 78.5788 163.163 78.3545C163.442 78.126 163.775 77.9482 164.16 77.8213C164.545 77.6943 164.974 77.6309 165.448 77.6309C166.142 77.6309 166.73 77.7642 167.213 78.0308C167.7 78.2931 168.07 78.638 168.324 79.0654C168.578 79.4886 168.705 79.9414 168.705 80.4238H167.486C167.486 80.0768 167.412 79.77 167.264 79.5034C167.116 79.2326 166.891 79.021 166.591 78.8687C166.29 78.7121 165.91 78.6338 165.448 78.6338C165.012 78.6338 164.653 78.6994 164.369 78.8306C164.086 78.9618 163.874 79.1395 163.734 79.3638C163.599 79.5881 163.531 79.8441 163.531 80.1318C163.531 80.3265 163.571 80.5042 163.652 80.665C163.736 80.8216 163.866 80.9676 164.039 81.103C164.217 81.2384 164.441 81.3633 164.712 81.4775C164.987 81.5918 165.315 81.7018 165.696 81.8076C166.221 81.9557 166.673 82.1208 167.054 82.3027C167.435 82.4847 167.748 82.6899 167.994 82.9185C168.243 83.1427 168.427 83.3988 168.546 83.6865C168.669 83.9701 168.73 84.2917 168.73 84.6514C168.73 85.028 168.654 85.3687 168.501 85.6733C168.349 85.978 168.131 86.2383 167.848 86.4541C167.564 86.6699 167.223 86.8371 166.826 86.9556C166.432 87.0698 165.992 87.127 165.505 87.127C165.078 87.127 164.657 87.0677 164.242 86.9492C163.832 86.8307 163.457 86.653 163.119 86.416C162.784 86.179 162.516 85.887 162.312 85.54C162.114 85.1888 162.014 84.7826 162.014 84.3213H163.233C163.233 84.6387 163.294 84.9116 163.417 85.1401C163.54 85.3644 163.707 85.5506 163.918 85.6987C164.134 85.8468 164.378 85.9569 164.648 86.0288C164.924 86.0965 165.209 86.1304 165.505 86.1304C165.933 86.1304 166.295 86.0711 166.591 85.9526C166.887 85.8341 167.111 85.6649 167.264 85.4448C167.42 85.2248 167.499 84.9645 167.499 84.6641ZM171.39 80.1318V87H170.209V80.1318H171.39ZM170.12 78.3101C170.12 78.1196 170.177 77.9588 170.292 77.8276C170.41 77.6965 170.583 77.6309 170.812 77.6309C171.036 77.6309 171.208 77.6965 171.326 77.8276C171.449 77.9588 171.51 78.1196 171.51 78.3101C171.51 78.492 171.449 78.6486 171.326 78.7798C171.208 78.9067 171.036 78.9702 170.812 78.9702C170.583 78.9702 170.41 78.9067 170.292 78.7798C170.177 78.6486 170.12 78.492 170.12 78.3101ZM174.443 81.4966V87H173.262V80.1318H174.379L174.443 81.4966ZM174.202 83.3057L173.656 83.2866C173.66 82.8169 173.721 82.3831 173.84 81.9854C173.958 81.5833 174.134 81.2342 174.367 80.938C174.599 80.6418 174.889 80.4132 175.236 80.2524C175.583 80.0874 175.985 80.0049 176.442 80.0049C176.764 80.0049 177.06 80.0514 177.331 80.1445C177.602 80.2334 177.837 80.3752 178.036 80.5698C178.235 80.7645 178.389 81.0142 178.499 81.3188C178.609 81.6235 178.664 81.9917 178.664 82.4233V87H177.49V82.4805C177.49 82.1208 177.428 81.833 177.306 81.6172C177.187 81.4014 177.018 81.2448 176.798 81.1475C176.578 81.0459 176.32 80.9951 176.023 80.9951C175.676 80.9951 175.387 81.0565 175.154 81.1792C174.921 81.3019 174.735 81.4712 174.595 81.687C174.456 81.9028 174.354 82.1504 174.291 82.4297C174.231 82.7048 174.202 82.9967 174.202 83.3057ZM178.651 82.6582L177.864 82.8994C177.868 82.5228 177.93 82.161 178.048 81.814C178.171 81.467 178.347 81.158 178.575 80.8872C178.808 80.6164 179.094 80.4027 179.432 80.2461C179.771 80.0853 180.158 80.0049 180.594 80.0049C180.962 80.0049 181.288 80.0535 181.571 80.1509C181.859 80.2482 182.1 80.3984 182.295 80.6016C182.494 80.8005 182.644 81.0565 182.746 81.3696C182.847 81.6828 182.898 82.0552 182.898 82.4868V87H181.717V82.4741C181.717 82.089 181.656 81.7907 181.533 81.5791C181.415 81.3633 181.245 81.2131 181.025 81.1284C180.81 81.0396 180.551 80.9951 180.251 80.9951C179.993 80.9951 179.764 81.0396 179.565 81.1284C179.367 81.2173 179.199 81.34 179.064 81.4966C178.929 81.6489 178.825 81.8245 178.753 82.0234C178.685 82.2223 178.651 82.4339 178.651 82.6582ZM185.843 81.4966V87H184.663V80.1318H185.78L185.843 81.4966ZM185.602 83.3057L185.056 83.2866C185.06 82.8169 185.122 82.3831 185.24 81.9854C185.359 81.5833 185.534 81.2342 185.767 80.938C186 80.6418 186.29 80.4132 186.637 80.2524C186.984 80.0874 187.386 80.0049 187.843 80.0049C188.164 80.0049 188.461 80.0514 188.731 80.1445C189.002 80.2334 189.237 80.3752 189.436 80.5698C189.635 80.7645 189.789 81.0142 189.899 81.3188C190.009 81.6235 190.064 81.9917 190.064 82.4233V87H188.89V82.4805C188.89 82.1208 188.829 81.833 188.706 81.6172C188.588 81.4014 188.418 81.2448 188.198 81.1475C187.978 81.0459 187.72 80.9951 187.424 80.9951C187.077 80.9951 186.787 81.0565 186.554 81.1792C186.321 81.3019 186.135 81.4712 185.996 81.687C185.856 81.9028 185.754 82.1504 185.691 82.4297C185.632 82.7048 185.602 82.9967 185.602 83.3057ZM190.052 82.6582L189.265 82.8994C189.269 82.5228 189.33 82.161 189.449 81.814C189.571 81.467 189.747 81.158 189.976 80.8872C190.208 80.6164 190.494 80.4027 190.833 80.2461C191.171 80.0853 191.558 80.0049 191.994 80.0049C192.362 80.0049 192.688 80.0535 192.972 80.1509C193.259 80.2482 193.501 80.3984 193.695 80.6016C193.894 80.8005 194.044 81.0565 194.146 81.3696C194.248 81.6828 194.298 82.0552 194.298 82.4868V87H193.118V82.4741C193.118 82.089 193.056 81.7907 192.934 81.5791C192.815 81.3633 192.646 81.2131 192.426 81.1284C192.21 81.0396 191.952 80.9951 191.651 80.9951C191.393 80.9951 191.165 81.0396 190.966 81.1284C190.767 81.2173 190.6 81.34 190.464 81.4966C190.329 81.6489 190.225 81.8245 190.153 82.0234C190.086 82.2223 190.052 82.4339 190.052 82.6582ZM198.926 87.127C198.448 87.127 198.014 87.0465 197.625 86.8857C197.239 86.7207 196.907 86.4901 196.628 86.1938C196.353 85.8976 196.141 85.5464 195.993 85.1401C195.845 84.7339 195.771 84.2896 195.771 83.8071V83.5405C195.771 82.9819 195.854 82.4847 196.019 82.0488C196.184 81.6087 196.408 81.2363 196.691 80.9316C196.975 80.627 197.297 80.3963 197.656 80.2397C198.016 80.0832 198.388 80.0049 198.773 80.0049C199.264 80.0049 199.688 80.0895 200.043 80.2588C200.403 80.4281 200.697 80.665 200.925 80.9697C201.154 81.2702 201.323 81.6257 201.433 82.0361C201.543 82.4424 201.598 82.8867 201.598 83.3691V83.896H196.469V82.9375H200.424V82.8486C200.407 82.5439 200.343 82.2477 200.233 81.96C200.128 81.6722 199.958 81.4352 199.726 81.249C199.493 81.0628 199.175 80.9697 198.773 80.9697C198.507 80.9697 198.261 81.0269 198.037 81.1411C197.813 81.2511 197.62 81.4162 197.459 81.6362C197.299 81.8563 197.174 82.125 197.085 82.4424C196.996 82.7598 196.952 83.1258 196.952 83.5405V83.8071C196.952 84.133 196.996 84.4398 197.085 84.7275C197.178 85.0111 197.311 85.2607 197.485 85.4766C197.663 85.6924 197.876 85.8617 198.126 85.9844C198.38 86.1071 198.668 86.1685 198.989 86.1685C199.404 86.1685 199.755 86.0838 200.043 85.9146C200.331 85.7453 200.583 85.5189 200.798 85.2354L201.509 85.8003C201.361 86.0246 201.173 86.2383 200.944 86.4414C200.716 86.6445 200.434 86.8096 200.1 86.9365C199.77 87.0635 199.379 87.127 198.926 87.127ZM204.144 81.5981V87H202.969V80.1318H204.08L204.144 81.5981ZM203.864 83.3057L203.375 83.2866C203.38 82.8169 203.45 82.3831 203.585 81.9854C203.72 81.5833 203.911 81.2342 204.156 80.938C204.402 80.6418 204.694 80.4132 205.032 80.2524C205.375 80.0874 205.754 80.0049 206.168 80.0049C206.507 80.0049 206.812 80.0514 207.083 80.1445C207.353 80.2334 207.584 80.3773 207.774 80.5762C207.969 80.7751 208.117 81.0332 208.219 81.3506C208.32 81.6637 208.371 82.0467 208.371 82.4995V87H207.19V82.4868C207.19 82.1271 207.138 81.8394 207.032 81.6235C206.926 81.4035 206.771 81.2448 206.568 81.1475C206.365 81.0459 206.116 80.9951 205.819 80.9951C205.527 80.9951 205.261 81.0565 205.02 81.1792C204.783 81.3019 204.577 81.4712 204.404 81.687C204.235 81.9028 204.101 82.1504 204.004 82.4297C203.911 82.7048 203.864 82.9967 203.864 83.3057ZM214.154 85.1782C214.154 85.009 214.116 84.8524 214.04 84.7085C213.968 84.5604 213.817 84.4271 213.589 84.3086C213.365 84.1859 213.026 84.0801 212.573 83.9912C212.192 83.9108 211.847 83.8156 211.539 83.7056C211.234 83.5955 210.974 83.4622 210.758 83.3057C210.546 83.1491 210.383 82.965 210.269 82.7534C210.155 82.5418 210.098 82.2943 210.098 82.0107C210.098 81.7399 210.157 81.4839 210.275 81.2427C210.398 81.0015 210.569 80.7878 210.79 80.6016C211.014 80.4154 211.283 80.2694 211.596 80.1636C211.909 80.0578 212.258 80.0049 212.643 80.0049C213.193 80.0049 213.663 80.1022 214.052 80.2969C214.442 80.4915 214.74 80.7518 214.947 81.0776C215.155 81.3993 215.258 81.7568 215.258 82.1504H214.084C214.084 81.96 214.027 81.7759 213.913 81.5981C213.803 81.4162 213.64 81.266 213.424 81.1475C213.212 81.029 212.952 80.9697 212.643 80.9697C212.317 80.9697 212.053 81.0205 211.85 81.1221C211.651 81.2194 211.505 81.3442 211.412 81.4966C211.323 81.6489 211.278 81.8097 211.278 81.979C211.278 82.106 211.299 82.2202 211.342 82.3218C211.388 82.4191 211.469 82.5101 211.583 82.5947C211.697 82.6751 211.858 82.7513 212.065 82.8232C212.273 82.8952 212.537 82.9671 212.859 83.0391C213.422 83.166 213.885 83.3184 214.249 83.4961C214.613 83.6738 214.884 83.8918 215.062 84.1499C215.239 84.408 215.328 84.7212 215.328 85.0894C215.328 85.3898 215.265 85.6649 215.138 85.9146C215.015 86.1642 214.835 86.38 214.598 86.562C214.365 86.7397 214.086 86.8794 213.76 86.981C213.439 87.0783 213.077 87.127 212.675 87.127C212.07 87.127 211.558 87.019 211.139 86.8032C210.72 86.5874 210.402 86.3081 210.187 85.9653C209.971 85.6226 209.863 85.2607 209.863 84.8799H211.043C211.06 85.2015 211.153 85.4575 211.323 85.6479C211.492 85.8341 211.699 85.9674 211.945 86.0479C212.19 86.124 212.434 86.1621 212.675 86.1621C212.996 86.1621 213.265 86.1198 213.481 86.0352C213.701 85.9505 213.868 85.8341 213.982 85.686C214.097 85.5379 214.154 85.3687 214.154 85.1782ZM218.039 77.7578V88.7139H217.093V77.7578H218.039Z",fill:"#0F172A"}),(0,a.createElement)("rect",{x:"152.5",y:"68.5",width:"129.5",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),d=window.wp.i18n,m=window.wp.components,u=window.wp.blockEditor;function p(e){var t=Object.create(null);return function(C){return void 0===t[C]&&(t[C]=e(C)),t[C]}}var f=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,h=p((function(e){return f.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),y=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},C=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,C]=e.split("_");t[C]=e}else C.push(e)}))}));const l=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&l.push(t[e]);return l.push(...C),l.join(" ")},b=(e,t)=>{const C={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach((t=>{C[t]=e[t]})),C},g=function(e){let t="";return C=>{const l=(l,r)=>{const{as:n=e,class:i=t}=l;var o;const s=function(e,t){const C=b(t,["as","class"]);if(!e){const e="function"==typeof h?{default:h}:h;Object.keys(C).forEach((t=>{e.default(t)||delete C[t]}))}return C}(void 0===C.propsAsIs?!("string"==typeof n&&-1===n.indexOf("-")&&(o=n[0],o.toUpperCase()!==o)):C.propsAsIs,l);s.ref=r,s.className=C.atomic?y(C.class,s.className||i):y(s.className||i,C.class);const{vars:c}=C;if(c){const e={};for(const t in c){const a=c[t],r=a[0],n=a[1]||"",i="function"==typeof r?r(l):r;C.name,e[`--${t}`]=`${i}${n}`}const t=s.style||{},a=Object.keys(t);a.length>0&&a.forEach((C=>{e[C]=t[C]})),s.style=e}return e.__wyw_meta&&e!==n?(s.as=n,(0,a.createElement)(e,s)):(0,a.createElement)(n,s)},r=a.forwardRef?(0,a.forwardRef)(l):e=>{const t=b(e,["innerRef"]);return l(t,e.innerRef)};return r.displayName=C.name,r.__wyw_meta={className:C.class||t,extends:e},r}};const H=window.wp.element,{ToolBarFields:k,BlockName:_,BlockLabel:v,BlockDescription:V,AdvancedFields:w,FieldWrapper:E,FieldSettingsWrapper:x,ValidationToggleGroup:L,ValidationBlockMessage:M,BlockAdvancedValue:j,EditAdvancedRulesButton:Z,BaseHelp:S,AdvancedInspectorControl:P,AttributeHelp:T}=JetFBComponents,{useIsAdvancedValidation:A,useUniqueNameOnDuplicate:F}=JetFBHooks,B=g("input")({name:"FullWidthInput",class:"fylh6zt",propsAsIs:!1}),{seenIcon:O,unSeenIcon:R}=JFBTextFieldConfig;C(727);const I=JSON.parse('{"$schema":"https://raw.githubusercontent.com/WordPress/gutenberg/trunk/schemas/json/block.json","apiVersion":3,"name":"jet-forms/text-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","text"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Text Field","icon":"\\n\\n\\n","attributes":{"showEye":{"type":"boolean","default":false},"value":{"type":"object","default":{"groups":[]}},"validation":{"type":"object","default":{}},"field_type":{"type":"string","default":"text"},"autocomplete":{"type":"string","default":"off"},"enable_input_mask":{"type":"boolean","default":false},"clear_on_submit":{"type":"boolean","default":false},"mask_type":{"type":"string","default":""},"input_mask":{"type":"string","default":""},"mask_visibility":{"type":"string","default":"always"},"mask_placeholder":{"type":"string","default":"_"},"minlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"maxlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-blocks-v2-text-field","viewStyle":"jet-fb-blocks-v2-text-field","editorStyle":"jet-fb-blocks-v2-text-field-editor-style"}'),N=window.wp.blocks,{name:D,icon:U=""}=I,z={icon:(0,a.createElement)("span",{dangerouslySetInnerHTML:{__html:U}}),description:(0,d.__)("Add a single narrow text bar to the form and gather short text information like names, emails, titles, etc.","jet-form-builder"),edit:function(e){const{attributes:t,setAttributes:C,isSelected:l,editProps:{uniqKey:r,attrHelp:p}}=e,f=(0,u.useBlockProps)(),h=A();F();const[y,b]=(0,H.useState)(null);return(0,H.useEffect)((()=>b(!1)),[t.field_type,t.showEye]),t.isPreview?(0,a.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},c):[(0,a.createElement)(k,{key:r("ToolBarFields"),...e}),l&&(0,a.createElement)(u.InspectorControls,{key:r("InspectorControls")},(0,a.createElement)(m.PanelBody,{title:(0,d.__)("General","jet-form-builder")},(0,a.createElement)(v,null),(0,a.createElement)(_,null),(0,a.createElement)(V,null)),(0,a.createElement)(m.PanelBody,{title:(0,d.__)("Value","jet-form-builder")},(0,a.createElement)(j,null)),(0,a.createElement)(x,{...e},(0,a.createElement)(m.SelectControl,{key:"field_type",label:(0,d.__)("Field Type","jet-form-builder"),labelPosition:"top",value:t.field_type,onChange:e=>{C({field_type:e})},options:n}),"tel"===t.field_type&&(0,a.createElement)("div",{style:{marginBottom:"16px"}},(0,a.createElement)(m.Notice,{status:"info",isDismissible:!1},(0,a.createElement)("div",null,(0,d.__)("There is a dedicated Phone Field for entering the phone number in the form.","jet-form-builder")))),"password"===t.field_type&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(m.ToggleControl,{label:(0,d.__)("Show eye icon","jet-form-builder"),checked:t.showEye,help:(0,d.__)("Enable to allow user control visibility of value in input","jet-form-builder"),onChange:e=>C({showEye:e})})),(0,a.createElement)(m.SelectControl,{key:"autocomplete",label:(0,d.__)("Autocomplete","jet-form-builder"),labelPosition:"top",value:t.autocomplete||"off",onChange:e=>{C({autocomplete:e})},options:[{label:(0,d.__)("Off","jet-form-builder"),value:"off"},{label:(0,d.__)("On","jet-form-builder"),value:"on"}]}),(0,a.createElement)(P,{value:t.minlength,label:(0,d.__)("Min length (symbols)","jet-form-builder"),onChangePreset:e=>C({minlength:e})},(({instanceId:e})=>(0,a.createElement)(m.TextControl,{id:e,className:"jet-fb m-unset",value:t.minlength,onChange:e=>C({minlength:e})}))),(0,a.createElement)(T,{name:"minlength"}),(0,a.createElement)(P,{value:t.maxlength,label:(0,d.__)("Max length (symbols)","jet-form-builder"),onChangePreset:e=>C({maxlength:e})},(({instanceId:e})=>(0,a.createElement)(m.TextControl,{id:e,className:"jet-fb m-unset",value:t.maxlength,onChange:e=>C({maxlength:e})}))),(0,a.createElement)(T,{name:"maxlength"}),(0,a.createElement)(m.ToggleControl,{key:"enable_input_mask",label:(0,d.__)("Set Input Mask","jet-form-builder"),checked:t.enable_input_mask,help:(0,d.__)("Check this to setup specific input format for the current field","jet-form-builder"),onChange:e=>{C({enable_input_mask:e})}}),t.enable_input_mask&&(0,a.createElement)(React.Fragment,null,"datetime"!=t.mask_type&&(0,a.createElement)(m.ToggleControl,{label:(0,d.__)("Clear mask before submit","jet-form-builder"),checked:t.clear_on_submit,onChange:e=>C({clear_on_submit:e})}),(0,a.createElement)(m.SelectControl,{key:"mask_type",label:(0,d.__)("Mask type","jet-form-builder"),labelPosition:"top",value:t.mask_type,onChange:e=>{C({mask_type:e})},options:i}),(0,a.createElement)(m.TextControl,{key:"input_mask",label:(0,d.__)("Input mask","jet-form-builder"),value:t.input_mask,onChange:e=>{C({input_mask:e})}}),!t.mask_type&&(0,a.createElement)(S,{style:{marginBottom:"2em"}},p("input_mask_default")),"datetime"===t.mask_type&&(0,a.createElement)(S,{style:{marginBottom:"2em"}},(0,d.__)("Examples:","jet-form-builder")," dd/mm/yyyy, mm/dd/yyyy",(0,a.createElement)("br",null),(0,d.__)("More info - ","jet-form-builder"),(0,a.createElement)("a",{href:p("input_mask_datetime_link"),target:"_blank",rel:"noreferrer"},(0,d.__)("here","jet-form-builder"))),(0,a.createElement)(m.SelectControl,{key:"mask_visibility",label:(0,d.__)("Mask visibility","jet-form-builder"),labelPosition:"top",value:t.mask_visibility,onChange:e=>{C({mask_visibility:e})},options:o}),(0,a.createElement)(m.SelectControl,{key:"mask_placeholder",label:(0,d.__)("Mask placeholder","jet-form-builder"),labelPosition:"top",value:t.mask_placeholder,onChange:e=>{C({mask_placeholder:e})},options:s}))),(0,a.createElement)(m.PanelBody,{title:(0,d.__)("Validation","jet-form-builder")},(0,a.createElement)(L,null),h&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(Z,null),"email"===t.field_type&&(0,a.createElement)(M,{name:"email"}),"url"===t.field_type&&(0,a.createElement)(M,{name:"url"}),t.enable_input_mask&&(0,a.createElement)(M,{name:"inputmask"}),Boolean(t.minlength)&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(M,{name:"char_min"})),Boolean(t.maxlength)&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(M,{name:"char_max"})),(0,a.createElement)(M,{name:"empty"}))),(0,a.createElement)(w,{key:r("AdvancedFields"),...e})),(0,a.createElement)("div",{key:r("viewBlock"),...f},(0,a.createElement)(E,{key:r("FieldWrapper"),...e},(0,a.createElement)("div",{className:["jet-form-builder__field-wrap jet-form-builder__field-preview",t.showEye&&"has-eye-icon"].join(" ")},(0,a.createElement)(B,{placeholder:t.placeholder,minLength:t.minlength,maxLength:t.maxlength,type:y?"text":t.field_type}),t.showEye&&"password"===t.field_type&&(0,a.createElement)("span",{className:["jfb-eye-icon",y?"":"seen"].join(" "),onClick:()=>b((e=>!e))},(0,a.createElement)(H.RawHTML,null,O),(0,a.createElement)(H.RawHTML,null,R)))))]},jfbResolveBlock(){const e={clientId:this.clientId,name:this.name};return this.attributes.name?{...e,fields:[{value:this.attributes.name,name:this.attributes.name,label:this.attributes.label||this.attributes.name,attributes:{field_type:this.attributes.field_type}}]}:e},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{from:[{type:"block",blocks:["core/paragraph"],transform:({content:e=""})=>(0,N.createBlock)(D,{label:e}),priority:0}]}};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/text-field",(function(e){return e.push(l),e}))})(); \ No newline at end of file diff --git a/modules/blocks-v2/text-field/assets/build/frontend/field.asset.php b/modules/blocks-v2/text-field/assets/build/frontend/field.asset.php index 506c33321..fc277f610 100644 --- a/modules/blocks-v2/text-field/assets/build/frontend/field.asset.php +++ b/modules/blocks-v2/text-field/assets/build/frontend/field.asset.php @@ -1 +1 @@ - array(), 'version' => 'c4f81b3c6552f155aeac'); + array(), 'version' => '76e1bccd8e219e27cabc'); diff --git a/modules/blocks-v2/text-field/assets/build/frontend/field.js b/modules/blocks-v2/text-field/assets/build/frontend/field.js index ff2da2b03..13204f446 100644 --- a/modules/blocks-v2/text-field/assets/build/frontend/field.js +++ b/modules/blocks-v2/text-field/assets/build/frontend/field.js @@ -1 +1 @@ -(()=>{"use strict";const{InputData:t}=JetFormBuilderAbstract;function e(){t.call(this),this.isSupported=function(){return!0},this.addListeners=function(){t.prototype.addListeners.call(this);const[e]=this.nodes,i=this.getWrapperNode()?.querySelector?.(".jfb-eye-icon");i&&(i.addEventListener("click",function(){i.classList.toggle("seen");const t="true"===this.getAttribute("aria-pressed");this.setAttribute("aria-pressed",!t),e.type=i.classList.contains("seen")?"password":"text"}),i.addEventListener("keydown",function(t){" "!==t.key&&"Enter"!==t.key||(t.preventDefault(),this.click())}),i.addEventListener("keyup",function(t){" "===t.key&&t.preventDefault()}))}}e.prototype=Object.create(t.prototype);const i=e,{BaseSignal:n}=JetFormBuilderAbstract,{toDate:r,toDateTime:s,toTime:u}=JetFormBuilderFunctions;function a(){n.call(this),this.isSupported=function(){return!0},this.runSignal=function(){this.input.calcValue=Number.isNaN(Number(this.input.calcValue))?this.input.calcValue:parseFloat(this.input.calcValue);const[t]=this.input.nodes,e=["date","time","datetime-local"].includes(t.type)?function(t,e){if(""===e||null==e)return"";if(Number.isNaN(Number(e)))return e;const i=new Date(Number(e));return"date"===t.type?r(i):"time"===t.type?u(i):"datetime-local"===t.type?s(i):e}(t,this.input.value.current):this.input.value.current;t.value!==e&&(t.value=e,this.triggerJQuery(t))}}a.prototype=Object.create(n.prototype);const o=a,{addFilter:c}=JetPlugins.hooks;c("jet.fb.inputs","jet-form-builder/text-field",function(t){return t.push(i),t},999),c("jet.fb.signals","jet-form-builder/text-field",function(t){return t.push(o),t},999)})(); \ No newline at end of file +(()=>{"use strict";const{InputData:t}=JetFormBuilderAbstract;function e(){t.call(this),this.isSupported=function(){return!0},this.addListeners=function(){t.prototype.addListeners.call(this);const[e]=this.nodes,i=this.getWrapperNode()?.querySelector?.(".jfb-eye-icon");i&&(i.addEventListener("click",(function(){i.classList.toggle("seen");const t="true"===this.getAttribute("aria-pressed");this.setAttribute("aria-pressed",!t),e.type=i.classList.contains("seen")?"password":"text"})),i.addEventListener("keydown",(function(t){" "!==t.key&&"Enter"!==t.key||(t.preventDefault(),this.click())})),i.addEventListener("keyup",(function(t){" "===t.key&&t.preventDefault()})))}}e.prototype=Object.create(t.prototype);const i=e,{BaseSignal:n}=JetFormBuilderAbstract,{toDate:r,toDateTime:s,toTime:u}=JetFormBuilderFunctions;function a(){n.call(this),this.isSupported=function(){return!0},this.runSignal=function(){this.input.calcValue=Number.isNaN(Number(this.input.calcValue))?this.input.calcValue:parseFloat(this.input.calcValue);const[t]=this.input.nodes,e=["date","time","datetime-local"].includes(t.type)?function(t,e){if(""===e||null==e)return"";if(Number.isNaN(Number(e)))return e;const i=new Date(Number(e));return"date"===t.type?r(i):"time"===t.type?u(i):"datetime-local"===t.type?s(i):e}(t,this.input.value.current):this.input.value.current;t.value!==e&&(t.value=e,this.triggerJQuery(t))}}a.prototype=Object.create(n.prototype);const o=a,{addFilter:c}=JetPlugins.hooks;c("jet.fb.inputs","jet-form-builder/text-field",(function(t){return t.push(i),t}),999),c("jet.fb.signals","jet-form-builder/text-field",(function(t){return t.push(o),t}),999)})(); \ No newline at end of file diff --git a/modules/blocks-v2/text-field/assets/build/frontend/field.mask.asset.php b/modules/blocks-v2/text-field/assets/build/frontend/field.mask.asset.php index dcba2d08a..419acaaa6 100644 --- a/modules/blocks-v2/text-field/assets/build/frontend/field.mask.asset.php +++ b/modules/blocks-v2/text-field/assets/build/frontend/field.mask.asset.php @@ -1 +1 @@ - array(), 'version' => 'f062467fb61706741649'); + array(), 'version' => '5dafa3c1adff6b2c2df2'); diff --git a/modules/blocks-v2/text-field/assets/build/frontend/field.mask.js b/modules/blocks-v2/text-field/assets/build/frontend/field.mask.js index 27f66bb60..8a17d930e 100644 --- a/modules/blocks-v2/text-field/assets/build/frontend/field.mask.js +++ b/modules/blocks-v2/text-field/assets/build/frontend/field.mask.js @@ -1 +1 @@ -(()=>{"use strict";const{applyFilters:t}=JetPlugins.hooks,{ReactiveHook:i,InputData:s}=JetFormBuilderAbstract;function e(){s.call(this),this.maskOptions={},this.clearOnSubmit=!1,this.isSupported=function(t){return t.classList.contains("jet-form-builder__masked-field")&&jQuery.fn.inputmask},this.addListeners=function(){const[t]=this.nodes;this.enterKey=new i,t.addEventListener("keydown",this.handleEnterKey.bind(this)),t.addEventListener("input",this.handleAutofill.bind(this,t))},this.handleAutofill=function(t){t&&t.inputmask&&(t.inputmask.setValue(t.value),this.maskValidation())},this.maskValidation=function(){const[t]=this.nodes,{value:i}=t;this.value.current=t.inputmask.unmaskedvalue(),setTimeout(()=>{this.reporting.validateOnBlur()},0),this.silenceSet(i)},this.changeStateMaskValidation=function(){const[t]=this.nodes;this.value.current=t.inputmask.unmaskedvalue()},this.setNode=function(i){var e;s.prototype.setNode.call(this,i),this.clearOnSubmit=null!==(e=i.dataset.clearMaskOnSubmit)&&void 0!==e&&e;const n=this.clearOnSubmit?{autoUnmask:!0}:{};n.oncomplete=this.maskValidation.bind(this),n.onincomplete=this.maskValidation.bind(this);const a=t("jet.fb.inputmask.options",n,this);jQuery(i).inputmask(a),i.inputmask&&setTimeout(()=>{const t=i.inputmask._valueGet(),s=i.inputmask.getemptymask();t&&t!==s&&(i.value=t,jQuery(i).trigger("input"))},0),this.beforeSubmit(this.removeMask.bind(this)),this.getSubmit().onEndSubmit(this.revertMask.bind(this))},this.removeMask=function(t){const i=jQuery(this.nodes[0]);this.maskOptions=i[0].inputmask.opts,this.value.current&&!this.clearOnSubmit||(i.inputmask("remove"),this.value.notify()),t()},this.revertMask=function(){const[t]=this.nodes,i=this.maskOptions;this.maskOptions={},t.inputmask||jQuery(t).inputmask(i)},this.onClear=function(){this.silenceSet("")}}e.prototype=Object.create(s.prototype);const n=e,{addFilter:a}=JetPlugins.hooks;a("jet.fb.inputs","jet-form-builder/text-field-masked",function(t){return[n,...t]})})(); \ No newline at end of file +(()=>{"use strict";const{applyFilters:t}=JetPlugins.hooks,{ReactiveHook:i,InputData:s}=JetFormBuilderAbstract;function e(){s.call(this),this.maskOptions={},this.clearOnSubmit=!1,this.isSupported=function(t){return t.classList.contains("jet-form-builder__masked-field")&&jQuery.fn.inputmask},this.addListeners=function(){const[t]=this.nodes;this.enterKey=new i,t.addEventListener("keydown",this.handleEnterKey.bind(this)),t.addEventListener("input",this.handleAutofill.bind(this,t))},this.handleAutofill=function(t){t&&t.inputmask&&(t.inputmask.setValue(t.value),this.maskValidation())},this.maskValidation=function(){const[t]=this.nodes,{value:i}=t;this.value.current=t.inputmask.unmaskedvalue(),setTimeout((()=>{this.reporting.validateOnBlur()}),0),this.silenceSet(i)},this.changeStateMaskValidation=function(){const[t]=this.nodes;this.value.current=t.inputmask.unmaskedvalue()},this.setNode=function(i){var e;s.prototype.setNode.call(this,i),this.clearOnSubmit=null!==(e=i.dataset.clearMaskOnSubmit)&&void 0!==e&&e;const n=this.clearOnSubmit?{autoUnmask:!0}:{};n.oncomplete=this.maskValidation.bind(this),n.onincomplete=this.maskValidation.bind(this);const a=t("jet.fb.inputmask.options",n,this);jQuery(i).inputmask(a),i.inputmask&&setTimeout((()=>{const t=i.inputmask._valueGet(),s=i.inputmask.getemptymask();t&&t!==s&&(i.value=t,jQuery(i).trigger("input"))}),0),this.beforeSubmit(this.removeMask.bind(this)),this.getSubmit().onEndSubmit(this.revertMask.bind(this))},this.removeMask=function(t){const i=jQuery(this.nodes[0]);this.maskOptions=i[0].inputmask.opts,this.value.current&&!this.clearOnSubmit||(i.inputmask("remove"),this.value.notify()),t()},this.revertMask=function(){const[t]=this.nodes,i=this.maskOptions;this.maskOptions={},t.inputmask||jQuery(t).inputmask(i)},this.onClear=function(){this.silenceSet("")}}e.prototype=Object.create(s.prototype);const n=e,{addFilter:a}=JetPlugins.hooks;a("jet.fb.inputs","jet-form-builder/text-field-masked",(function(t){return[n,...t]}))})(); \ No newline at end of file diff --git a/modules/captcha/assets/build/editor.asset.php b/modules/captcha/assets/build/editor.asset.php index 10c41e048..c72ddd9e5 100644 --- a/modules/captcha/assets/build/editor.asset.php +++ b/modules/captcha/assets/build/editor.asset.php @@ -1 +1 @@ - array('react'), 'version' => '1fba512c28ebb91b9384'); + array('react'), 'version' => '64e6c9858dd7498e737c'); diff --git a/modules/captcha/assets/build/editor.js b/modules/captcha/assets/build/editor.js index a8e606c3c..3191fabe6 100644 --- a/modules/captcha/assets/build/editor.js +++ b/modules/captcha/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={d:(t,l)=>{for(var a in l)e.o(l,a)&&!e.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:l[a]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{metadata:()=>u,name:()=>E,settings:()=>B});const l=window.React,a=(0,l.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)("rect",{width:"298",height:"144",rx:"4",fill:"#E2E8F0"}),(0,l.createElement)("rect",{x:"15",y:"26",width:"268",height:"92",rx:"5",fill:"#E2E8F0"}),(0,l.createElement)("rect",{x:"19",y:"44",width:"56",height:"56",rx:"4",fill:"white"}),(0,l.createElement)("path",{d:"M65.1937 71.5167C65.1928 71.25 65.1867 70.9848 65.1747 70.7208V55.67L61.0138 59.8309C57.6083 55.6624 52.4277 53 46.625 53C40.5862 53 35.2214 55.8824 31.8301 60.3463L38.6503 67.2383C39.3187 66.0022 40.2682 64.9404 41.4131 64.1386C42.6038 63.2094 44.2909 62.4496 46.6247 62.4496C46.9067 62.4496 47.1243 62.4826 47.2842 62.5446C50.1758 62.7729 52.6822 64.3687 54.158 66.6848L49.3303 71.5126C55.4452 71.4886 62.3531 71.4745 65.1932 71.5157",fill:"#1C3AA9"}),(0,l.createElement)("path",{d:"M46.5167 53.0007C46.25 53.0016 45.9848 53.0078 45.7208 53.0197H30.67L34.8309 57.1807C30.6624 60.5861 28 65.7668 28 71.5695C28 77.6082 30.8825 82.973 35.3463 86.3644L42.2383 79.5441C41.0022 78.8757 39.9404 77.9262 39.1386 76.7813C38.2094 75.5906 37.4496 73.9035 37.4496 71.5697C37.4496 71.2878 37.4826 71.0702 37.5446 70.9103C37.7729 68.0187 39.3687 65.5122 41.6848 64.0364L46.5126 68.8641C46.4886 62.7492 46.4744 55.8413 46.5157 53.0013",fill:"#4285F4"}),(0,l.createElement)("path",{d:"M28 71.5693C28.0009 71.836 28.007 72.1013 28.019 72.3653V87.4161L32.1799 83.2552C35.5854 87.4236 40.766 90.0861 46.5688 90.0861C52.6075 90.0861 57.9723 87.2036 61.3636 82.7398L54.5434 75.8478C53.875 77.0839 52.9255 78.1456 51.7806 78.9475C50.5899 79.8767 48.9028 80.6364 46.569 80.6364C46.287 80.6364 46.0694 80.6035 45.9095 80.5414C43.018 80.3132 40.5115 78.7174 39.0357 76.4012L43.8634 71.5735C37.7485 71.5975 30.8406 71.6116 28.0005 71.5704",fill:"#ABABAB"}),(0,l.createElement)("rect",{x:"87",y:"44",width:"56",height:"56",rx:"4",fill:"white"}),(0,l.createElement)("path",{opacity:"0.5",d:"M119.596 86.4341H124.515V91.353H119.596V86.4341Z",fill:"#0074BF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M114.677 86.4341H119.596V91.353H114.677V86.4341ZM109.758 86.4341H114.677V91.353H109.758V86.4341Z",fill:"#0074BF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M104.838 86.4341H109.757V91.353H104.838V86.4341Z",fill:"#0074BF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M124.514 81.5151H129.433V86.4341H124.514V81.5151Z",fill:"#0082BF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M119.594 81.5151H124.513V86.4341H119.594V81.5151Z",fill:"#0082BF"}),(0,l.createElement)("path",{d:"M114.675 81.5151H119.594V86.4341H114.675V81.5151ZM109.756 81.5151H114.675V86.4341H109.756V81.5151Z",fill:"#0082BF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M104.838 81.5151H109.757V86.4341H104.838V81.5151Z",fill:"#0082BF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M99.918 81.5152H104.837V86.4341H99.918V81.5152Z",fill:"#0082BF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M129.434 76.5952H134.353V81.5141H129.434V76.5952Z",fill:"#008FBF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M124.516 76.5952H129.435V81.5141H124.516V76.5952Z",fill:"#008FBF"}),(0,l.createElement)("path",{d:"M119.595 76.5952H124.514V81.5141H119.595V76.5952ZM114.676 76.5952H119.595V81.5141H114.676V76.5952ZM109.757 76.5952H114.676V81.5141H109.757V76.5952ZM104.838 76.5952H109.757V81.5141H104.838V76.5952Z",fill:"#008FBF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M99.918 76.5952H104.837V81.5141H99.918V76.5952Z",fill:"#008FBF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M95 76.5954H99.9189V81.5143H95V76.5954Z",fill:"#008FBF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M129.434 71.6763H134.353V76.5952H129.434V71.6763Z",fill:"#009DBF"}),(0,l.createElement)("path",{d:"M124.514 71.6763H129.433V76.5952H124.514V71.6763ZM119.594 71.6763H124.513V76.5952H119.594V71.6763ZM114.676 71.6763H119.594V76.5952H114.676V71.6763ZM109.757 71.6763H114.676V76.5952H109.757V71.6763ZM104.838 71.6763H109.757V76.5952H104.838V71.6763ZM99.918 71.6763H104.837V76.5952H99.918V71.6763Z",fill:"#009DBF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M95 71.6765H99.9189V76.5954H95V71.6765Z",fill:"#009DBF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M129.434 66.7573H134.353V71.6763H129.434V66.7573Z",fill:"#00ABBF"}),(0,l.createElement)("path",{d:"M124.514 66.7573H129.433V71.6763H124.514V66.7573ZM119.594 66.7573H124.513V71.6763H119.594V66.7573ZM114.676 66.7573H119.594V71.6763H114.676V66.7573ZM109.757 66.7573H114.676V71.6763H109.757V66.7573ZM104.838 66.7573H109.757V71.6763H104.838V66.7573ZM99.918 66.7573H104.837V71.6763H99.918V66.7573Z",fill:"#00ABBF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M95 66.7576H99.9189V71.6765H95V66.7576Z",fill:"#00ABBF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M129.434 61.8389H134.353V66.7578H129.434V61.8389Z",fill:"#00B9BF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M124.516 61.8389H129.435V66.7578H124.516V61.8389Z",fill:"#00B9BF"}),(0,l.createElement)("path",{d:"M119.595 61.8389H124.514V66.7578H119.595V61.8389ZM114.676 61.8389H119.595V66.7578H114.676V61.8389ZM109.757 61.8389H114.676V66.7578H109.757V61.8389ZM104.838 61.8389H109.757V66.7578H104.838V61.8389Z",fill:"#00B9BF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M99.918 61.8389H104.837V66.7578H99.918V61.8389Z",fill:"#00B9BF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M95 61.8386H99.9189V66.7576H95V61.8386Z",fill:"#00B9BF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M124.516 56.9189H129.435V61.8379H124.516V56.9189Z",fill:"#00C6BF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M119.596 56.9189H124.515V61.8379H119.596V56.9189Z",fill:"#00C6BF"}),(0,l.createElement)("path",{d:"M114.677 56.9189H119.596V61.8378H114.677V56.9189ZM109.758 56.9189H114.677V61.8378H109.758V56.9189Z",fill:"#00C6BF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M104.838 56.9189H109.757V61.8379H104.838V56.9189Z",fill:"#00C6BF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M99.918 56.9189H104.837V61.8379H99.918V56.9189Z",fill:"#00C6BF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M119.596 52H124.515V56.9189H119.596V52Z",fill:"#00D4BF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M114.677 52H119.596V56.9189H114.677V52ZM109.758 52H114.677V56.9189H109.758V52Z",fill:"#00D4BF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M104.838 52H109.757V56.9189H104.838V52Z",fill:"#00D4BF"}),(0,l.createElement)("path",{d:"M107.952 70.1248L109.323 67.0571C109.822 66.2706 109.756 65.307 109.209 64.7604C109.137 64.6876 109.056 64.623 108.969 64.5678C108.781 64.4528 108.571 64.3799 108.352 64.3544C108.134 64.3289 107.912 64.3514 107.703 64.4202C107.229 64.5678 106.823 64.8815 106.561 65.3038C106.561 65.3038 104.685 69.6818 103.986 71.6497C103.288 73.6176 103.567 77.2262 106.259 79.9243C109.115 82.7799 113.25 83.4326 115.887 81.4532C115.997 81.3978 116.101 81.3302 116.196 81.2517L124.322 74.4661C124.717 74.1397 125.301 73.4674 124.776 72.7005C124.265 71.9523 123.296 72.4615 122.9 72.7144L118.223 76.115C118.201 76.133 118.176 76.1465 118.149 76.1546C118.122 76.1626 118.093 76.1651 118.065 76.1618C118.037 76.1585 118.009 76.1496 117.985 76.1355C117.96 76.1214 117.939 76.1025 117.921 76.0799C117.802 75.9338 117.781 75.5471 117.968 75.3937L125.137 69.3097C125.756 68.7517 125.843 67.9407 125.341 67.3851C124.851 66.8409 124.074 66.8572 123.449 67.4201L116.995 72.4663C116.964 72.491 116.929 72.5092 116.892 72.5199C116.854 72.5305 116.815 72.5334 116.777 72.5284C116.738 72.5233 116.701 72.5105 116.667 72.4905C116.634 72.4706 116.605 72.4441 116.582 72.4125C116.454 72.2697 116.405 72.0258 116.549 71.883L123.859 64.7889C124.136 64.5306 124.299 64.173 124.313 63.7945C124.326 63.4161 124.189 63.0478 123.931 62.7705C123.803 62.6358 123.649 62.5286 123.479 62.4555C123.308 62.3824 123.124 62.345 122.938 62.3454C122.556 62.3412 122.187 62.4878 121.912 62.7533L114.442 69.7699C114.264 69.9485 113.914 69.7699 113.871 69.561C113.864 69.5236 113.865 69.4849 113.877 69.4484C113.888 69.412 113.908 69.3788 113.935 69.3521L119.653 62.8423C119.791 62.7134 119.902 62.558 119.979 62.3854C120.056 62.2128 120.097 62.0265 120.1 61.8375C120.104 61.6486 120.069 61.4609 119.999 61.2856C119.928 61.1103 119.823 60.951 119.69 60.8172C119.556 60.6833 119.397 60.5777 119.222 60.5065C119.047 60.4354 118.86 60.4002 118.671 60.403C118.482 60.4058 118.295 60.4466 118.122 60.523C117.949 60.5993 117.794 60.7097 117.664 60.8474L108.994 70.4332C108.683 70.744 108.225 70.7595 108.008 70.5792C107.941 70.5259 107.897 70.4484 107.887 70.3634C107.876 70.2783 107.9 70.1927 107.952 70.1248Z",fill:"white"}),(0,l.createElement)("rect",{x:"155",y:"44",width:"56",height:"56",rx:"4",fill:"white"}),(0,l.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M200.849 57.1507C196.911 53.2125 191.57 51 186 51C174.41 51 165 60.4098 165 72C165 83.5902 174.41 93 186 93C191.57 93 196.911 90.7875 200.849 86.8493L196.394 82.3945C193.638 85.1513 189.899 86.7 186 86.7C177.887 86.7 171.3 80.1131 171.3 72C171.3 63.8869 177.887 57.3 186 57.3C189.899 57.3 193.638 58.8487 196.394 61.6055L200.849 57.1507Z",fill:"#FFAB00"}),(0,l.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M171.15 86.8494C175.089 90.7877 180.43 93.0002 186 93.0002C191.569 93.0002 196.911 90.7877 200.849 86.8494L196.394 82.3947C193.637 85.1514 189.898 86.7002 186 86.7002C182.101 86.7002 178.362 85.1514 175.605 82.3947L171.15 86.8494Z",fill:"#FFC400"}),(0,l.createElement)("path",{d:"M179.699 75.1501C181.438 75.1501 182.849 73.7398 182.849 72.0001C182.849 70.2604 181.438 68.8501 179.699 68.8501C177.959 68.8501 176.549 70.2604 176.549 72.0001C176.549 73.7398 177.959 75.1501 179.699 75.1501Z",fill:"#FFAB00"}),(0,l.createElement)("path",{d:"M192.3 75.1501C194.04 75.1501 195.45 73.7398 195.45 72.0001C195.45 70.2604 194.04 68.8501 192.3 68.8501C190.561 68.8501 189.15 70.2604 189.15 72.0001C189.15 73.7398 190.561 75.1501 192.3 75.1501Z",fill:"#FFAB00"}),(0,l.createElement)("rect",{x:"223",y:"44",width:"56",height:"56",rx:"4",fill:"white"}),(0,l.createElement)("path",{d:"M269.335 73.8259L263.803 70.6535L262.849 70.2408L240.217 70.3956V81.8857H269.335V73.8259Z",fill:"white"}),(0,l.createElement)("path",{d:"M259.266 80.8279C259.537 79.8994 259.434 79.0483 258.983 78.4164C258.57 77.8361 257.874 77.5008 257.035 77.4621L241.161 77.2558C241.058 77.2558 240.967 77.2042 240.916 77.1268C240.864 77.0495 240.851 76.9463 240.877 76.8431C240.929 76.6884 241.083 76.5723 241.251 76.5594L257.267 76.3531C259.163 76.2628 261.226 74.7282 261.949 72.8454L262.864 70.4597C262.903 70.3566 262.916 70.2534 262.89 70.1502C261.858 65.482 257.693 62.0001 252.715 62.0001C248.124 62.0001 244.23 64.9661 242.837 69.0799C241.934 68.4093 240.787 68.0482 239.549 68.1643C237.344 68.3835 235.577 70.1502 235.358 72.3554C235.306 72.9228 235.345 73.4773 235.474 73.9932C231.876 74.0963 229 77.0366 229 80.6603C229 80.9827 229.026 81.3051 229.064 81.6274C229.09 81.7822 229.219 81.8983 229.374 81.8983H258.673C258.841 81.8983 258.996 81.7822 259.047 81.6146L259.266 80.8279Z",fill:"#F38020"}),(0,l.createElement)("path",{d:"M264.321 70.6276C264.179 70.6276 264.024 70.6276 263.882 70.6405C263.779 70.6405 263.689 70.7178 263.65 70.821L263.031 72.9746C262.76 73.9031 262.863 74.7542 263.315 75.3861C263.727 75.9664 264.424 76.3017 265.262 76.3404L268.641 76.5467C268.744 76.5467 268.834 76.5983 268.886 76.6757C268.937 76.753 268.95 76.8691 268.924 76.9594C268.873 77.1141 268.718 77.2302 268.55 77.2431L265.03 77.4494C263.121 77.5397 261.071 79.0743 260.349 80.9571L260.091 81.6147C260.039 81.7437 260.13 81.8727 260.271 81.8727H272.368C272.509 81.8727 272.638 81.7824 272.677 81.6405C272.883 80.8926 272.999 80.1059 272.999 79.2935C272.999 74.5221 269.105 70.6276 264.321 70.6276Z",fill:"#FAAE40"})),{CaptchaBlockEdit:i,SelectVariations:r,ToggleGroupVariations:c}=JetFBComponents,{useMetaState:n}=JetFBHooks,{__:o}=wp.i18n,{InspectorControls:p,useBlockProps:C}=wp.blockEditor,{useSelect:d}=wp.data,{useEffect:h,useState:V}=wp.element;let{__experimentalBlockVariationPicker:s,BlockVariationPicker:H,BlockControls:f}=wp.blockEditor;function m(e){const{setAttributes:t,attributes:i}=e,r=C(),{blockType:c,variations:n}=d(e=>{const{getBlockVariations:t,getBlockType:l}=e("core/blocks");return{blockType:l(E),variations:t(E,"block")}},[]);return i.isPreview?(0,l.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},a):(0,l.createElement)("div",{...r},(0,l.createElement)(H,{label:c?.title,instructions:o("Select captcha provider","jet-form-builder"),variations:n,onSelect:e=>{t(e.attributes)}}))}H=H||s;const u=JSON.parse('{"apiVersion":3,"name":"jet-forms/captcha-container","category":"jet-form-builder-fields","keywords":["jetformbuilder","captcha","recaptcha","hcaptcha","spam","protection"],"textdomain":"jet-form-builder","supports":{"html":false,"multiple":false},"title":"Captcha Container","description":"","icon":"\\n\\n\\n","attributes":{"provider":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{name:E,icon:M}=u,{__:Z}=wp.i18n,B={icon:(0,l.createElement)("span",{dangerouslySetInnerHTML:{__html:M}}),description:Z("Insert the captcha for your form. Determine its location yourself using the block, as is added before the submit button by default.","jet-form-builder"),edit:function(e){const{attributes:t,setAttributes:a}=e,[o,C]=n("_jf_recaptcha"),[d,s]=V(()=>t.provider);return h(()=>{t.isPreview||s(e=>t.provider!==e?t.provider:e)},[t.provider]),h(()=>{t.isPreview||s(e=>o.captcha!==e?o.captcha:e)},[o.captcha]),h(()=>{t.isPreview||C(e=>d!==e.captcha?(o.captcha=d,{...e,captcha:d}):e)},[d]),h(()=>{t.isPreview||d!==t.provider&&a({provider:d})},[d]),(0,l.createElement)(l.Fragment,null,(0,l.createElement)(p,null,(0,l.createElement)("div",{style:{padding:"0 20px 20px 20px"}},(0,l.createElement)(r,{value:t.provider}))),(0,l.createElement)(f,null,(0,l.createElement)(c,{value:t.provider})),t.provider?(0,l.createElement)(i.Slot,{fillProps:e}):(0,l.createElement)(m,{...e}))},example:{attributes:{isPreview:!0}}},{__:F}=wp.i18n,{Tools:y,getCaptchaProviders:w}=JetFBActions,{globalTab:b}=JetFBActions,g=(b({slug:"captcha-tab"}),y.withPlaceholder(w(),F("Without protection","jet-form-builder"))),{__:v}=wp.i18n,{useMetaState:L}=JetFBHooks,{CaptchaOptions:_}=JetFBComponents,{SelectControl:j}=wp.components,k=function(){const[e,t]=L("_jf_recaptcha");return(0,l.createElement)(l.Fragment,null,(0,l.createElement)(j,{label:v("Captcha Provider","jet-form-builder"),value:e.captcha,options:g,onChange:e=>{t(t=>({...t,captcha:e}))}}),Boolean(e.captcha)&&(0,l.createElement)(_.Slot,{fillProps:{args:e,setArgs:t}}))},{__:x}=wp.i18n,{useEffect:P}=wp.element,{useMetaState:S}=JetFBHooks,A={render:function(){const[e,t]=S("_jf_recaptcha");return P(()=>{e.enabled&&!e.hasOwnProperty("captcha")&&t(e=>(delete e.enabled,{captcha:"google",google:{use_global:e.use_global,key:e.key,secret:e.secret,threshold:e.threshold}}))},[]),(0,l.createElement)(k,null)},icon:"filter"},T={base:{name:"jf-captcha-panel",title:x("Captcha Settings","jet-form-builder")},settings:A},{addFilter:J}=wp.hooks;J("jet.fb.register.fields","jet-form-builder/captcha",function(e){return e.push(t),e}),J("jet.fb.register.plugin.jf-validation-panel.after","jet-form-builder/captcha",function(e){return e.push(T),e})})(); \ No newline at end of file +(()=>{"use strict";var e={d:(t,l)=>{for(var a in l)e.o(l,a)&&!e.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:l[a]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{metadata:()=>u,name:()=>E,settings:()=>B});const l=window.React,a=(0,l.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)("rect",{width:"298",height:"144",rx:"4",fill:"#E2E8F0"}),(0,l.createElement)("rect",{x:"15",y:"26",width:"268",height:"92",rx:"5",fill:"#E2E8F0"}),(0,l.createElement)("rect",{x:"19",y:"44",width:"56",height:"56",rx:"4",fill:"white"}),(0,l.createElement)("path",{d:"M65.1937 71.5167C65.1928 71.25 65.1867 70.9848 65.1747 70.7208V55.67L61.0138 59.8309C57.6083 55.6624 52.4277 53 46.625 53C40.5862 53 35.2214 55.8824 31.8301 60.3463L38.6503 67.2383C39.3187 66.0022 40.2682 64.9404 41.4131 64.1386C42.6038 63.2094 44.2909 62.4496 46.6247 62.4496C46.9067 62.4496 47.1243 62.4826 47.2842 62.5446C50.1758 62.7729 52.6822 64.3687 54.158 66.6848L49.3303 71.5126C55.4452 71.4886 62.3531 71.4745 65.1932 71.5157",fill:"#1C3AA9"}),(0,l.createElement)("path",{d:"M46.5167 53.0007C46.25 53.0016 45.9848 53.0078 45.7208 53.0197H30.67L34.8309 57.1807C30.6624 60.5861 28 65.7668 28 71.5695C28 77.6082 30.8825 82.973 35.3463 86.3644L42.2383 79.5441C41.0022 78.8757 39.9404 77.9262 39.1386 76.7813C38.2094 75.5906 37.4496 73.9035 37.4496 71.5697C37.4496 71.2878 37.4826 71.0702 37.5446 70.9103C37.7729 68.0187 39.3687 65.5122 41.6848 64.0364L46.5126 68.8641C46.4886 62.7492 46.4744 55.8413 46.5157 53.0013",fill:"#4285F4"}),(0,l.createElement)("path",{d:"M28 71.5693C28.0009 71.836 28.007 72.1013 28.019 72.3653V87.4161L32.1799 83.2552C35.5854 87.4236 40.766 90.0861 46.5688 90.0861C52.6075 90.0861 57.9723 87.2036 61.3636 82.7398L54.5434 75.8478C53.875 77.0839 52.9255 78.1456 51.7806 78.9475C50.5899 79.8767 48.9028 80.6364 46.569 80.6364C46.287 80.6364 46.0694 80.6035 45.9095 80.5414C43.018 80.3132 40.5115 78.7174 39.0357 76.4012L43.8634 71.5735C37.7485 71.5975 30.8406 71.6116 28.0005 71.5704",fill:"#ABABAB"}),(0,l.createElement)("rect",{x:"87",y:"44",width:"56",height:"56",rx:"4",fill:"white"}),(0,l.createElement)("path",{opacity:"0.5",d:"M119.596 86.4341H124.515V91.353H119.596V86.4341Z",fill:"#0074BF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M114.677 86.4341H119.596V91.353H114.677V86.4341ZM109.758 86.4341H114.677V91.353H109.758V86.4341Z",fill:"#0074BF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M104.838 86.4341H109.757V91.353H104.838V86.4341Z",fill:"#0074BF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M124.514 81.5151H129.433V86.4341H124.514V81.5151Z",fill:"#0082BF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M119.594 81.5151H124.513V86.4341H119.594V81.5151Z",fill:"#0082BF"}),(0,l.createElement)("path",{d:"M114.675 81.5151H119.594V86.4341H114.675V81.5151ZM109.756 81.5151H114.675V86.4341H109.756V81.5151Z",fill:"#0082BF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M104.838 81.5151H109.757V86.4341H104.838V81.5151Z",fill:"#0082BF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M99.918 81.5152H104.837V86.4341H99.918V81.5152Z",fill:"#0082BF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M129.434 76.5952H134.353V81.5141H129.434V76.5952Z",fill:"#008FBF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M124.516 76.5952H129.435V81.5141H124.516V76.5952Z",fill:"#008FBF"}),(0,l.createElement)("path",{d:"M119.595 76.5952H124.514V81.5141H119.595V76.5952ZM114.676 76.5952H119.595V81.5141H114.676V76.5952ZM109.757 76.5952H114.676V81.5141H109.757V76.5952ZM104.838 76.5952H109.757V81.5141H104.838V76.5952Z",fill:"#008FBF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M99.918 76.5952H104.837V81.5141H99.918V76.5952Z",fill:"#008FBF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M95 76.5954H99.9189V81.5143H95V76.5954Z",fill:"#008FBF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M129.434 71.6763H134.353V76.5952H129.434V71.6763Z",fill:"#009DBF"}),(0,l.createElement)("path",{d:"M124.514 71.6763H129.433V76.5952H124.514V71.6763ZM119.594 71.6763H124.513V76.5952H119.594V71.6763ZM114.676 71.6763H119.594V76.5952H114.676V71.6763ZM109.757 71.6763H114.676V76.5952H109.757V71.6763ZM104.838 71.6763H109.757V76.5952H104.838V71.6763ZM99.918 71.6763H104.837V76.5952H99.918V71.6763Z",fill:"#009DBF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M95 71.6765H99.9189V76.5954H95V71.6765Z",fill:"#009DBF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M129.434 66.7573H134.353V71.6763H129.434V66.7573Z",fill:"#00ABBF"}),(0,l.createElement)("path",{d:"M124.514 66.7573H129.433V71.6763H124.514V66.7573ZM119.594 66.7573H124.513V71.6763H119.594V66.7573ZM114.676 66.7573H119.594V71.6763H114.676V66.7573ZM109.757 66.7573H114.676V71.6763H109.757V66.7573ZM104.838 66.7573H109.757V71.6763H104.838V66.7573ZM99.918 66.7573H104.837V71.6763H99.918V66.7573Z",fill:"#00ABBF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M95 66.7576H99.9189V71.6765H95V66.7576Z",fill:"#00ABBF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M129.434 61.8389H134.353V66.7578H129.434V61.8389Z",fill:"#00B9BF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M124.516 61.8389H129.435V66.7578H124.516V61.8389Z",fill:"#00B9BF"}),(0,l.createElement)("path",{d:"M119.595 61.8389H124.514V66.7578H119.595V61.8389ZM114.676 61.8389H119.595V66.7578H114.676V61.8389ZM109.757 61.8389H114.676V66.7578H109.757V61.8389ZM104.838 61.8389H109.757V66.7578H104.838V61.8389Z",fill:"#00B9BF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M99.918 61.8389H104.837V66.7578H99.918V61.8389Z",fill:"#00B9BF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M95 61.8386H99.9189V66.7576H95V61.8386Z",fill:"#00B9BF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M124.516 56.9189H129.435V61.8379H124.516V56.9189Z",fill:"#00C6BF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M119.596 56.9189H124.515V61.8379H119.596V56.9189Z",fill:"#00C6BF"}),(0,l.createElement)("path",{d:"M114.677 56.9189H119.596V61.8378H114.677V56.9189ZM109.758 56.9189H114.677V61.8378H109.758V56.9189Z",fill:"#00C6BF"}),(0,l.createElement)("path",{opacity:"0.8",d:"M104.838 56.9189H109.757V61.8379H104.838V56.9189Z",fill:"#00C6BF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M99.918 56.9189H104.837V61.8379H99.918V56.9189Z",fill:"#00C6BF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M119.596 52H124.515V56.9189H119.596V52Z",fill:"#00D4BF"}),(0,l.createElement)("path",{opacity:"0.7",d:"M114.677 52H119.596V56.9189H114.677V52ZM109.758 52H114.677V56.9189H109.758V52Z",fill:"#00D4BF"}),(0,l.createElement)("path",{opacity:"0.5",d:"M104.838 52H109.757V56.9189H104.838V52Z",fill:"#00D4BF"}),(0,l.createElement)("path",{d:"M107.952 70.1248L109.323 67.0571C109.822 66.2706 109.756 65.307 109.209 64.7604C109.137 64.6876 109.056 64.623 108.969 64.5678C108.781 64.4528 108.571 64.3799 108.352 64.3544C108.134 64.3289 107.912 64.3514 107.703 64.4202C107.229 64.5678 106.823 64.8815 106.561 65.3038C106.561 65.3038 104.685 69.6818 103.986 71.6497C103.288 73.6176 103.567 77.2262 106.259 79.9243C109.115 82.7799 113.25 83.4326 115.887 81.4532C115.997 81.3978 116.101 81.3302 116.196 81.2517L124.322 74.4661C124.717 74.1397 125.301 73.4674 124.776 72.7005C124.265 71.9523 123.296 72.4615 122.9 72.7144L118.223 76.115C118.201 76.133 118.176 76.1465 118.149 76.1546C118.122 76.1626 118.093 76.1651 118.065 76.1618C118.037 76.1585 118.009 76.1496 117.985 76.1355C117.96 76.1214 117.939 76.1025 117.921 76.0799C117.802 75.9338 117.781 75.5471 117.968 75.3937L125.137 69.3097C125.756 68.7517 125.843 67.9407 125.341 67.3851C124.851 66.8409 124.074 66.8572 123.449 67.4201L116.995 72.4663C116.964 72.491 116.929 72.5092 116.892 72.5199C116.854 72.5305 116.815 72.5334 116.777 72.5284C116.738 72.5233 116.701 72.5105 116.667 72.4905C116.634 72.4706 116.605 72.4441 116.582 72.4125C116.454 72.2697 116.405 72.0258 116.549 71.883L123.859 64.7889C124.136 64.5306 124.299 64.173 124.313 63.7945C124.326 63.4161 124.189 63.0478 123.931 62.7705C123.803 62.6358 123.649 62.5286 123.479 62.4555C123.308 62.3824 123.124 62.345 122.938 62.3454C122.556 62.3412 122.187 62.4878 121.912 62.7533L114.442 69.7699C114.264 69.9485 113.914 69.7699 113.871 69.561C113.864 69.5236 113.865 69.4849 113.877 69.4484C113.888 69.412 113.908 69.3788 113.935 69.3521L119.653 62.8423C119.791 62.7134 119.902 62.558 119.979 62.3854C120.056 62.2128 120.097 62.0265 120.1 61.8375C120.104 61.6486 120.069 61.4609 119.999 61.2856C119.928 61.1103 119.823 60.951 119.69 60.8172C119.556 60.6833 119.397 60.5777 119.222 60.5065C119.047 60.4354 118.86 60.4002 118.671 60.403C118.482 60.4058 118.295 60.4466 118.122 60.523C117.949 60.5993 117.794 60.7097 117.664 60.8474L108.994 70.4332C108.683 70.744 108.225 70.7595 108.008 70.5792C107.941 70.5259 107.897 70.4484 107.887 70.3634C107.876 70.2783 107.9 70.1927 107.952 70.1248Z",fill:"white"}),(0,l.createElement)("rect",{x:"155",y:"44",width:"56",height:"56",rx:"4",fill:"white"}),(0,l.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M200.849 57.1507C196.911 53.2125 191.57 51 186 51C174.41 51 165 60.4098 165 72C165 83.5902 174.41 93 186 93C191.57 93 196.911 90.7875 200.849 86.8493L196.394 82.3945C193.638 85.1513 189.899 86.7 186 86.7C177.887 86.7 171.3 80.1131 171.3 72C171.3 63.8869 177.887 57.3 186 57.3C189.899 57.3 193.638 58.8487 196.394 61.6055L200.849 57.1507Z",fill:"#FFAB00"}),(0,l.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M171.15 86.8494C175.089 90.7877 180.43 93.0002 186 93.0002C191.569 93.0002 196.911 90.7877 200.849 86.8494L196.394 82.3947C193.637 85.1514 189.898 86.7002 186 86.7002C182.101 86.7002 178.362 85.1514 175.605 82.3947L171.15 86.8494Z",fill:"#FFC400"}),(0,l.createElement)("path",{d:"M179.699 75.1501C181.438 75.1501 182.849 73.7398 182.849 72.0001C182.849 70.2604 181.438 68.8501 179.699 68.8501C177.959 68.8501 176.549 70.2604 176.549 72.0001C176.549 73.7398 177.959 75.1501 179.699 75.1501Z",fill:"#FFAB00"}),(0,l.createElement)("path",{d:"M192.3 75.1501C194.04 75.1501 195.45 73.7398 195.45 72.0001C195.45 70.2604 194.04 68.8501 192.3 68.8501C190.561 68.8501 189.15 70.2604 189.15 72.0001C189.15 73.7398 190.561 75.1501 192.3 75.1501Z",fill:"#FFAB00"}),(0,l.createElement)("rect",{x:"223",y:"44",width:"56",height:"56",rx:"4",fill:"white"}),(0,l.createElement)("path",{d:"M269.335 73.8259L263.803 70.6535L262.849 70.2408L240.217 70.3956V81.8857H269.335V73.8259Z",fill:"white"}),(0,l.createElement)("path",{d:"M259.266 80.8279C259.537 79.8994 259.434 79.0483 258.983 78.4164C258.57 77.8361 257.874 77.5008 257.035 77.4621L241.161 77.2558C241.058 77.2558 240.967 77.2042 240.916 77.1268C240.864 77.0495 240.851 76.9463 240.877 76.8431C240.929 76.6884 241.083 76.5723 241.251 76.5594L257.267 76.3531C259.163 76.2628 261.226 74.7282 261.949 72.8454L262.864 70.4597C262.903 70.3566 262.916 70.2534 262.89 70.1502C261.858 65.482 257.693 62.0001 252.715 62.0001C248.124 62.0001 244.23 64.9661 242.837 69.0799C241.934 68.4093 240.787 68.0482 239.549 68.1643C237.344 68.3835 235.577 70.1502 235.358 72.3554C235.306 72.9228 235.345 73.4773 235.474 73.9932C231.876 74.0963 229 77.0366 229 80.6603C229 80.9827 229.026 81.3051 229.064 81.6274C229.09 81.7822 229.219 81.8983 229.374 81.8983H258.673C258.841 81.8983 258.996 81.7822 259.047 81.6146L259.266 80.8279Z",fill:"#F38020"}),(0,l.createElement)("path",{d:"M264.321 70.6276C264.179 70.6276 264.024 70.6276 263.882 70.6405C263.779 70.6405 263.689 70.7178 263.65 70.821L263.031 72.9746C262.76 73.9031 262.863 74.7542 263.315 75.3861C263.727 75.9664 264.424 76.3017 265.262 76.3404L268.641 76.5467C268.744 76.5467 268.834 76.5983 268.886 76.6757C268.937 76.753 268.95 76.8691 268.924 76.9594C268.873 77.1141 268.718 77.2302 268.55 77.2431L265.03 77.4494C263.121 77.5397 261.071 79.0743 260.349 80.9571L260.091 81.6147C260.039 81.7437 260.13 81.8727 260.271 81.8727H272.368C272.509 81.8727 272.638 81.7824 272.677 81.6405C272.883 80.8926 272.999 80.1059 272.999 79.2935C272.999 74.5221 269.105 70.6276 264.321 70.6276Z",fill:"#FAAE40"})),{CaptchaBlockEdit:i,SelectVariations:r,ToggleGroupVariations:c}=JetFBComponents,{useMetaState:n}=JetFBHooks,{__:o}=wp.i18n,{InspectorControls:p,useBlockProps:C}=wp.blockEditor,{useSelect:d}=wp.data,{useEffect:h,useState:V}=wp.element;let{__experimentalBlockVariationPicker:s,BlockVariationPicker:H,BlockControls:f}=wp.blockEditor;function m(e){const{setAttributes:t,attributes:i}=e,r=C(),{blockType:c,variations:n}=d((e=>{const{getBlockVariations:t,getBlockType:l}=e("core/blocks");return{blockType:l(E),variations:t(E,"block")}}),[]);return i.isPreview?(0,l.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},a):(0,l.createElement)("div",{...r},(0,l.createElement)(H,{label:c?.title,instructions:o("Select captcha provider","jet-form-builder"),variations:n,onSelect:e=>{t(e.attributes)}}))}H=H||s;const u=JSON.parse('{"apiVersion":3,"name":"jet-forms/captcha-container","category":"jet-form-builder-fields","keywords":["jetformbuilder","captcha","recaptcha","hcaptcha","spam","protection"],"textdomain":"jet-form-builder","supports":{"html":false,"multiple":false},"title":"Captcha Container","description":"","icon":"\\n\\n\\n","attributes":{"provider":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{name:E,icon:M}=u,{__:Z}=wp.i18n,B={icon:(0,l.createElement)("span",{dangerouslySetInnerHTML:{__html:M}}),description:Z("Insert the captcha for your form. Determine its location yourself using the block, as is added before the submit button by default.","jet-form-builder"),edit:function(e){const{attributes:t,setAttributes:a}=e,[o,C]=n("_jf_recaptcha"),[d,s]=V((()=>t.provider));return h((()=>{t.isPreview||s((e=>t.provider!==e?t.provider:e))}),[t.provider]),h((()=>{t.isPreview||s((e=>o.captcha!==e?o.captcha:e))}),[o.captcha]),h((()=>{t.isPreview||C((e=>d!==e.captcha?(o.captcha=d,{...e,captcha:d}):e))}),[d]),h((()=>{t.isPreview||d!==t.provider&&a({provider:d})}),[d]),(0,l.createElement)(l.Fragment,null,(0,l.createElement)(p,null,(0,l.createElement)("div",{style:{padding:"0 20px 20px 20px"}},(0,l.createElement)(r,{value:t.provider}))),(0,l.createElement)(f,null,(0,l.createElement)(c,{value:t.provider})),t.provider?(0,l.createElement)(i.Slot,{fillProps:e}):(0,l.createElement)(m,{...e}))},example:{attributes:{isPreview:!0}}},{__:F}=wp.i18n,{Tools:y,getCaptchaProviders:w}=JetFBActions,{globalTab:b}=JetFBActions,g=(b({slug:"captcha-tab"}),y.withPlaceholder(w(),F("Without protection","jet-form-builder"))),{__:v}=wp.i18n,{useMetaState:L}=JetFBHooks,{CaptchaOptions:_}=JetFBComponents,{SelectControl:j}=wp.components,k=function(){const[e,t]=L("_jf_recaptcha");return(0,l.createElement)(l.Fragment,null,(0,l.createElement)(j,{label:v("Captcha Provider","jet-form-builder"),value:e.captcha,options:g,onChange:e=>{t((t=>({...t,captcha:e})))}}),Boolean(e.captcha)&&(0,l.createElement)(_.Slot,{fillProps:{args:e,setArgs:t}}))},{__:x}=wp.i18n,{useEffect:P}=wp.element,{useMetaState:S}=JetFBHooks,A={render:function(){const[e,t]=S("_jf_recaptcha");return P((()=>{e.enabled&&!e.hasOwnProperty("captcha")&&t((e=>(delete e.enabled,{captcha:"google",google:{use_global:e.use_global,key:e.key,secret:e.secret,threshold:e.threshold}})))}),[]),(0,l.createElement)(k,null)},icon:"filter"},T={base:{name:"jf-captcha-panel",title:x("Captcha Settings","jet-form-builder")},settings:A},{addFilter:J}=wp.hooks;J("jet.fb.register.fields","jet-form-builder/captcha",(function(e){return e.push(t),e})),J("jet.fb.register.plugin.jf-validation-panel.after","jet-form-builder/captcha",(function(e){return e.push(T),e}))})(); \ No newline at end of file diff --git a/modules/captcha/assets/build/editor.package.asset.php b/modules/captcha/assets/build/editor.package.asset.php index 2a3034cf9..d7d693554 100644 --- a/modules/captcha/assets/build/editor.package.asset.php +++ b/modules/captcha/assets/build/editor.package.asset.php @@ -1 +1 @@ - array('react', 'wp-i18n'), 'version' => '179550ac8330d5975284'); + array('react', 'wp-i18n'), 'version' => 'd036082aab181bc56cc8'); diff --git a/modules/captcha/assets/build/editor.package.js b/modules/captcha/assets/build/editor.package.js index 676c48ddf..5b9f3898a 100644 --- a/modules/captcha/assets/build/editor.package.js +++ b/modules/captcha/assets/build/editor.package.js @@ -1 +1 @@ -(()=>{"use strict";const t=window.React,{createSlotFill:e}=wp.components,{Slot:o,Fill:n}=e("JFBCaptchaOptions");function c({children:e,provider:o=!1}){return(0,t.createElement)(n,null,({args:t,setArgs:n})=>o&&o!==t.captcha?null:"function"!=typeof e?e:e({args:t,setArgs:n}))}c.Slot=o;const a=c,{createSlotFill:r}=wp.components,{Slot:i,Fill:l}=r("JFBCaptchaBlockEdit");function s({children:e,provider:o}){return(0,t.createElement)(l,null,({attributes:t,...n})=>o&&o!==t.provider?null:"function"!=typeof e?e:e({attributes:t,...n}))}s.Slot=i;const u=s,{useMetaState:p}=JetFBHooks,d=function(){var t;return null!==(t=window.JetFormEditorData["captcha-tab-config"])&&void 0!==t?t:[]},f=window.wp.i18n,{useMetaState:m}=JetFBHooks,{useMemo:w,useCallback:h}=wp.element,{useDispatch:B,useSelect:b}=wp.data,{createBlock:k}=wp.blocks,{Tip:v,Button:F}=wp.components,C="jet-forms/captcha-container";window.JetFBComponents={...window.JetFBComponents,CaptchaOptions:a,CaptchaBlockEdit:u,CaptchaBlockTip:function(){const[e]=m("_jf_recaptcha"),o=w(()=>(t=>{var e;const o=d().find(({value:e})=>e===t);return null!==(e=o?.label)&&void 0!==e?e:(0,f.__)("captcha","jet-form-builder")})(e.captcha),[e.captcha]),{insertBlock:n}=B("core/block-editor"),c=b(t=>!t("jet-forms/fields").getBlock(C)),a=h(()=>{if(!c)return;const t=k(C,{provider:e.captcha});n(t)},[c]);return(0,t.createElement)(t.Fragment,null,(0,t.createElement)("div",{style:{marginBottom:"1.5em"}},(0,t.createElement)(v,null,(0,f.__)("By default, the captcha is added before the submit button of the form. However, you can determine its location yourself using the block.","jet-form-builder"))),(0,t.createElement)(F,{variant:"secondary",disabled:!c,onClick:a},(0,f.sprintf)((0,f.__)("Add %s block","jet-form-builder"),o)))}},window.JetFBActions={...window.JetFBActions,getCaptchaProviders:d},window.JetFBHooks={...window.JetFBHooks,useCaptchaProvider:function(){var t;const[e,o]=p("_jf_recaptcha"),{captcha:n}=e;if(!n)return[{},()=>{}];const c=null!==(t=e?.[n])&&void 0!==t?t:{};return[c,(t={})=>{n&&o(e=>({...e,[n]:{...c,...t}}))}]}}})(); \ No newline at end of file +(()=>{"use strict";const t=window.React,{createSlotFill:e}=wp.components,{Slot:o,Fill:n}=e("JFBCaptchaOptions");function c({children:e,provider:o=!1}){return(0,t.createElement)(n,null,(({args:t,setArgs:n})=>o&&o!==t.captcha?null:"function"!=typeof e?e:e({args:t,setArgs:n})))}c.Slot=o;const a=c,{createSlotFill:r}=wp.components,{Slot:i,Fill:l}=r("JFBCaptchaBlockEdit");function s({children:e,provider:o}){return(0,t.createElement)(l,null,(({attributes:t,...n})=>o&&o!==t.provider?null:"function"!=typeof e?e:e({attributes:t,...n})))}s.Slot=i;const u=s,{useMetaState:p}=JetFBHooks,d=function(){var t;return null!==(t=window.JetFormEditorData["captcha-tab-config"])&&void 0!==t?t:[]},f=window.wp.i18n,{useMetaState:m}=JetFBHooks,{useMemo:w,useCallback:h}=wp.element,{useDispatch:B,useSelect:b}=wp.data,{createBlock:k}=wp.blocks,{Tip:v,Button:F}=wp.components,C="jet-forms/captcha-container";window.JetFBComponents={...window.JetFBComponents,CaptchaOptions:a,CaptchaBlockEdit:u,CaptchaBlockTip:function(){const[e]=m("_jf_recaptcha"),o=w((()=>(t=>{var e;const o=d().find((({value:e})=>e===t));return null!==(e=o?.label)&&void 0!==e?e:(0,f.__)("captcha","jet-form-builder")})(e.captcha)),[e.captcha]),{insertBlock:n}=B("core/block-editor"),c=b((t=>!t("jet-forms/fields").getBlock(C))),a=h((()=>{if(!c)return;const t=k(C,{provider:e.captcha});n(t)}),[c]);return(0,t.createElement)(t.Fragment,null,(0,t.createElement)("div",{style:{marginBottom:"1.5em"}},(0,t.createElement)(v,null,(0,f.__)("By default, the captcha is added before the submit button of the form. However, you can determine its location yourself using the block.","jet-form-builder"))),(0,t.createElement)(F,{variant:"secondary",disabled:!c,onClick:a},(0,f.sprintf)((0,f.__)("Add %s block","jet-form-builder"),o)))}},window.JetFBActions={...window.JetFBActions,getCaptchaProviders:d},window.JetFBHooks={...window.JetFBHooks,useCaptchaProvider:function(){var t;const[e,o]=p("_jf_recaptcha"),{captcha:n}=e;if(!n)return[{},()=>{}];const c=null!==(t=e?.[n])&&void 0!==t?t:{};return[c,(t={})=>{n&&o((e=>({...e,[n]:{...c,...t}})))}]}}})(); \ No newline at end of file diff --git a/modules/captcha/assets/build/friendly.captcha/editor.asset.php b/modules/captcha/assets/build/friendly.captcha/editor.asset.php index 91c9696b9..c84cdc426 100644 --- a/modules/captcha/assets/build/friendly.captcha/editor.asset.php +++ b/modules/captcha/assets/build/friendly.captcha/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-block-editor', 'wp-components', 'wp-i18n'), 'version' => '566d2c299378300e4c14'); + array('react', 'wp-block-editor', 'wp-components', 'wp-i18n'), 'version' => '92755c1f3cfa8f9a5cba'); diff --git a/modules/captcha/assets/build/friendly.captcha/editor.js b/modules/captcha/assets/build/friendly.captcha/editor.js index a375d91d8..825d96d39 100644 --- a/modules/captcha/assets/build/friendly.captcha/editor.js +++ b/modules/captcha/assets/build/friendly.captcha/editor.js @@ -1 +1 @@ -(()=>{"use strict";const C=window.React,e=window.wp.i18n,t=window.wp.components,{ToggleControl:V,BaseHelp:l}=JetFBComponents,{useCaptchaProvider:H}=JetFBHooks,{useEffect:L}=wp.element,{globalTab:r}=JetFBActions,n=r({slug:"captcha-tab",element:"friendly",empty:{}}),M=function(){const[r,M]=H(),Z=r.use_global?n:r;return L(()=>{M({key:Z.key,secret:Z.secret,threshold:Z.threshold})},[r.use_global]),(0,C.createElement)(C.Fragment,null,(0,C.createElement)(V,{checked:r.use_global,onChange:C=>M({use_global:C})},(0,e.__)("Use","jet-form-builder")+" ",(0,C.createElement)("a",{href:JetFormEditorData.global_settings_url+"#captcha-tab__friendly"},(0,e.__)("Global Settings","jet-form-builder"))),(0,C.createElement)(t.TextControl,{label:(0,e.__)("Site Key:","jet-form-builder"),value:Z.key,disabled:r.use_global,onChange:C=>M({key:C})}),(0,C.createElement)(l,null,(0,e.__)("It can be found on the page listing your Applications.","jet-form-builder")," ",(0,C.createElement)(t.ExternalLink,{href:"https://docs.friendlycaptcha.com/#/installation?id=_1-generating-a-sitekey"},(0,e.__)("Or follow this guide","jet-form-builder"))),(0,C.createElement)(t.TextControl,{label:(0,e.__)("Secret Key:","jet-form-builder"),value:Z.secret,help:(0,e.__)("It can be found on the page listing your API keys.","jet-form-builder"),disabled:r.use_global,onChange:C=>M({secret:C})}))},Z=(0,C.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("rect",{width:"298",height:"144",rx:"4",fill:"#E2E8F0"}),(0,C.createElement)("rect",{x:"15",y:"15",width:"268",height:"64",rx:"4",fill:"white"}),(0,C.createElement)("rect",{opacity:"0.2",x:"25",y:"22",width:"50",height:"50",fill:"#F8FAFC"}),(0,C.createElement)("path",{d:"M36 37.618C36 37.2393 36.214 36.893 36.5528 36.7236L49.5528 30.2236C49.8343 30.0828 50.1657 30.0828 50.4472 30.2236L63.4472 36.7236C63.786 36.893 64 37.2393 64 37.618V45.6103C64 53.64 58.9523 60.8028 51.3904 63.5034L50.3363 63.8799C50.1188 63.9576 49.8812 63.9576 49.6637 63.8799L48.6096 63.5034C41.0477 60.8028 36 53.64 36 45.6103V37.618Z",fill:"#0F172A"}),(0,C.createElement)("path",{d:"M47.25 50.8225L43.4275 47L42.1259 48.2925L47.25 53.4166L58.25 42.4166L56.9575 41.1241L47.25 50.8225Z",fill:"white"}),(0,C.createElement)("path",{d:"M77.9375 40.625V52H76.4297V40.625H77.9375ZM81.9219 40V41C81.9219 41.3125 81.8672 41.6432 81.7578 41.9922C81.6536 42.3359 81.5 42.6693 81.2969 42.9922C81.0938 43.3099 80.849 43.5885 80.5625 43.8281L79.7344 43.2578C79.9792 42.9141 80.1641 42.5625 80.2891 42.2031C80.4193 41.8385 80.4844 41.4453 80.4844 41.0234V40H81.9219ZM84.9453 45.2266V52H83.4922V43.5469H84.8672L84.9453 45.2266ZM84.6484 47.4531L83.9766 47.4297C83.9818 46.8516 84.0573 46.3177 84.2031 45.8281C84.349 45.3333 84.5651 44.9036 84.8516 44.5391C85.138 44.1745 85.4948 43.8932 85.9219 43.6953C86.349 43.4922 86.8438 43.3906 87.4062 43.3906C87.8021 43.3906 88.1667 43.4479 88.5 43.5625C88.8333 43.6719 89.1224 43.8464 89.3672 44.0859C89.612 44.3255 89.8021 44.6328 89.9375 45.0078C90.0729 45.3828 90.1406 45.8359 90.1406 46.3672V52H88.6953V46.4375C88.6953 45.9948 88.6198 45.6406 88.4688 45.375C88.3229 45.1094 88.1146 44.9167 87.8438 44.7969C87.5729 44.6719 87.2552 44.6094 86.8906 44.6094C86.4635 44.6094 86.1068 44.6849 85.8203 44.8359C85.5339 44.987 85.3047 45.1953 85.1328 45.4609C84.9609 45.7266 84.8359 46.0312 84.7578 46.375C84.6849 46.7135 84.6484 47.0729 84.6484 47.4531ZM90.125 46.6562L89.1562 46.9531C89.1615 46.4896 89.237 46.0443 89.3828 45.6172C89.5339 45.1901 89.75 44.8099 90.0312 44.4766C90.3177 44.1432 90.6693 43.8802 91.0859 43.6875C91.5026 43.4896 91.9792 43.3906 92.5156 43.3906C92.9688 43.3906 93.3698 43.4505 93.7188 43.5703C94.0729 43.6901 94.3698 43.875 94.6094 44.125C94.8542 44.3698 95.0391 44.6849 95.1641 45.0703C95.2891 45.4557 95.3516 45.9141 95.3516 46.4453V52H93.8984V46.4297C93.8984 45.9557 93.8229 45.5885 93.6719 45.3281C93.526 45.0625 93.3177 44.8776 93.0469 44.7734C92.7812 44.6641 92.4635 44.6094 92.0938 44.6094C91.776 44.6094 91.4948 44.6641 91.25 44.7734C91.0052 44.8828 90.7995 45.0339 90.6328 45.2266C90.4661 45.4141 90.3385 45.6302 90.25 45.875C90.1667 46.1198 90.125 46.3802 90.125 46.6562ZM102.953 45.3516V52H101.508V43.5469H102.875L102.953 45.3516ZM102.609 47.4531L102.008 47.4297C102.013 46.8516 102.099 46.3177 102.266 45.8281C102.432 45.3333 102.667 44.9036 102.969 44.5391C103.271 44.1745 103.63 43.8932 104.047 43.6953C104.469 43.4922 104.935 43.3906 105.445 43.3906C105.862 43.3906 106.237 43.4479 106.57 43.5625C106.904 43.6719 107.188 43.849 107.422 44.0938C107.661 44.3385 107.844 44.6562 107.969 45.0469C108.094 45.4323 108.156 45.9036 108.156 46.4609V52H106.703V46.4453C106.703 46.0026 106.638 45.6484 106.508 45.3828C106.378 45.112 106.188 44.9167 105.938 44.7969C105.688 44.6719 105.38 44.6094 105.016 44.6094C104.656 44.6094 104.328 44.6849 104.031 44.8359C103.74 44.987 103.487 45.1953 103.273 45.4609C103.065 45.7266 102.901 46.0312 102.781 46.375C102.667 46.7135 102.609 47.0729 102.609 47.4531ZM109.969 47.8672V47.6875C109.969 47.0781 110.057 46.513 110.234 45.9922C110.411 45.4661 110.667 45.0104 111 44.625C111.333 44.2344 111.737 43.9323 112.211 43.7188C112.685 43.5 113.216 43.3906 113.805 43.3906C114.398 43.3906 114.932 43.5 115.406 43.7188C115.885 43.9323 116.292 44.2344 116.625 44.625C116.964 45.0104 117.221 45.4661 117.398 45.9922C117.576 46.513 117.664 47.0781 117.664 47.6875V47.8672C117.664 48.4766 117.576 49.0417 117.398 49.5625C117.221 50.0833 116.964 50.5391 116.625 50.9297C116.292 51.3151 115.888 51.6172 115.414 51.8359C114.945 52.0495 114.414 52.1562 113.82 52.1562C113.227 52.1562 112.693 52.0495 112.219 51.8359C111.745 51.6172 111.339 51.3151 111 50.9297C110.667 50.5391 110.411 50.0833 110.234 49.5625C110.057 49.0417 109.969 48.4766 109.969 47.8672ZM111.414 47.6875V47.8672C111.414 48.2891 111.464 48.6875 111.562 49.0625C111.661 49.4323 111.81 49.7604 112.008 50.0469C112.211 50.3333 112.464 50.5599 112.766 50.7266C113.068 50.888 113.419 50.9688 113.82 50.9688C114.216 50.9688 114.562 50.888 114.859 50.7266C115.161 50.5599 115.411 50.3333 115.609 50.0469C115.807 49.7604 115.956 49.4323 116.055 49.0625C116.159 48.6875 116.211 48.2891 116.211 47.8672V47.6875C116.211 47.2708 116.159 46.8776 116.055 46.5078C115.956 46.1328 115.805 45.8021 115.602 45.5156C115.404 45.224 115.154 44.9948 114.852 44.8281C114.555 44.6615 114.206 44.5781 113.805 44.5781C113.409 44.5781 113.06 44.6615 112.758 44.8281C112.461 44.9948 112.211 45.224 112.008 45.5156C111.81 45.8021 111.661 46.1328 111.562 46.5078C111.464 46.8776 111.414 47.2708 111.414 47.6875ZM123.016 43.5469V44.6562H118.445V43.5469H123.016ZM119.992 41.4922H121.438V49.9062C121.438 50.1927 121.482 50.4089 121.57 50.5547C121.659 50.7005 121.773 50.7969 121.914 50.8438C122.055 50.8906 122.206 50.9141 122.367 50.9141C122.487 50.9141 122.612 50.9036 122.742 50.8828C122.878 50.8568 122.979 50.8359 123.047 50.8203L123.055 52C122.94 52.0365 122.789 52.0703 122.602 52.1016C122.419 52.138 122.198 52.1562 121.938 52.1562C121.583 52.1562 121.258 52.0859 120.961 51.9453C120.664 51.8047 120.427 51.5703 120.25 51.2422C120.078 50.9089 119.992 50.4609 119.992 49.8984V41.4922ZM133.664 50.5547V46.2031C133.664 45.8698 133.596 45.5807 133.461 45.3359C133.331 45.0859 133.133 44.8932 132.867 44.7578C132.602 44.6224 132.273 44.5547 131.883 44.5547C131.518 44.5547 131.198 44.6172 130.922 44.7422C130.651 44.8672 130.438 45.0312 130.281 45.2344C130.13 45.4375 130.055 45.6562 130.055 45.8906H128.609C128.609 45.5885 128.688 45.2891 128.844 44.9922C129 44.6953 129.224 44.4271 129.516 44.1875C129.812 43.9427 130.167 43.75 130.578 43.6094C130.995 43.4635 131.458 43.3906 131.969 43.3906C132.583 43.3906 133.125 43.4948 133.594 43.7031C134.068 43.9115 134.438 44.2266 134.703 44.6484C134.974 45.0651 135.109 45.5885 135.109 46.2188V50.1562C135.109 50.4375 135.133 50.737 135.18 51.0547C135.232 51.3724 135.307 51.6458 135.406 51.875V52H133.898C133.826 51.8333 133.768 51.612 133.727 51.3359C133.685 51.0547 133.664 50.7943 133.664 50.5547ZM133.914 46.875L133.93 47.8906H132.469C132.057 47.8906 131.69 47.9245 131.367 47.9922C131.044 48.0547 130.773 48.151 130.555 48.2812C130.336 48.4115 130.169 48.5755 130.055 48.7734C129.94 48.9661 129.883 49.1927 129.883 49.4531C129.883 49.7188 129.943 49.9609 130.062 50.1797C130.182 50.3984 130.362 50.5729 130.602 50.7031C130.846 50.8281 131.146 50.8906 131.5 50.8906C131.943 50.8906 132.333 50.7969 132.672 50.6094C133.01 50.4219 133.279 50.1927 133.477 49.9219C133.68 49.651 133.789 49.388 133.805 49.1328L134.422 49.8281C134.385 50.0469 134.286 50.2891 134.125 50.5547C133.964 50.8203 133.747 51.0755 133.477 51.3203C133.211 51.5599 132.893 51.7604 132.523 51.9219C132.159 52.0781 131.747 52.1562 131.289 52.1562C130.716 52.1562 130.214 52.0443 129.781 51.8203C129.354 51.5964 129.021 51.2969 128.781 50.9219C128.547 50.5417 128.43 50.1172 128.43 49.6484C128.43 49.1953 128.518 48.7969 128.695 48.4531C128.872 48.1042 129.128 47.8151 129.461 47.5859C129.794 47.3516 130.195 47.1745 130.664 47.0547C131.133 46.9349 131.656 46.875 132.234 46.875H133.914ZM142.797 44.875V52H141.352V43.5469H142.758L142.797 44.875ZM145.438 43.5L145.43 44.8438C145.31 44.8177 145.195 44.8021 145.086 44.7969C144.982 44.7865 144.862 44.7812 144.727 44.7812C144.393 44.7812 144.099 44.8333 143.844 44.9375C143.589 45.0417 143.372 45.1875 143.195 45.375C143.018 45.5625 142.878 45.7865 142.773 46.0469C142.674 46.3021 142.609 46.5833 142.578 46.8906L142.172 47.125C142.172 46.6146 142.221 46.1354 142.32 45.6875C142.424 45.2396 142.583 44.8438 142.797 44.5C143.01 44.151 143.281 43.8802 143.609 43.6875C143.943 43.4896 144.339 43.3906 144.797 43.3906C144.901 43.3906 145.021 43.4036 145.156 43.4297C145.292 43.4505 145.385 43.474 145.438 43.5ZM146.234 47.8672V47.6875C146.234 47.0781 146.323 46.513 146.5 45.9922C146.677 45.4661 146.932 45.0104 147.266 44.625C147.599 44.2344 148.003 43.9323 148.477 43.7188C148.951 43.5 149.482 43.3906 150.07 43.3906C150.664 43.3906 151.198 43.5 151.672 43.7188C152.151 43.9323 152.557 44.2344 152.891 44.625C153.229 45.0104 153.487 45.4661 153.664 45.9922C153.841 46.513 153.93 47.0781 153.93 47.6875V47.8672C153.93 48.4766 153.841 49.0417 153.664 49.5625C153.487 50.0833 153.229 50.5391 152.891 50.9297C152.557 51.3151 152.154 51.6172 151.68 51.8359C151.211 52.0495 150.68 52.1562 150.086 52.1562C149.492 52.1562 148.958 52.0495 148.484 51.8359C148.01 51.6172 147.604 51.3151 147.266 50.9297C146.932 50.5391 146.677 50.0833 146.5 49.5625C146.323 49.0417 146.234 48.4766 146.234 47.8672ZM147.68 47.6875V47.8672C147.68 48.2891 147.729 48.6875 147.828 49.0625C147.927 49.4323 148.076 49.7604 148.273 50.0469C148.477 50.3333 148.729 50.5599 149.031 50.7266C149.333 50.888 149.685 50.9688 150.086 50.9688C150.482 50.9688 150.828 50.888 151.125 50.7266C151.427 50.5599 151.677 50.3333 151.875 50.0469C152.073 49.7604 152.221 49.4323 152.32 49.0625C152.424 48.6875 152.477 48.2891 152.477 47.8672V47.6875C152.477 47.2708 152.424 46.8776 152.32 46.5078C152.221 46.1328 152.07 45.8021 151.867 45.5156C151.669 45.224 151.419 44.9948 151.117 44.8281C150.82 44.6615 150.471 44.5781 150.07 44.5781C149.674 44.5781 149.326 44.6615 149.023 44.8281C148.727 44.9948 148.477 45.224 148.273 45.5156C148.076 45.8021 147.927 46.1328 147.828 46.5078C147.729 46.8776 147.68 47.2708 147.68 47.6875ZM155.734 40H157.188V50.3594L157.062 52H155.734V40ZM162.898 47.7031V47.8672C162.898 48.4818 162.826 49.0521 162.68 49.5781C162.534 50.099 162.32 50.5521 162.039 50.9375C161.758 51.3229 161.414 51.6224 161.008 51.8359C160.602 52.0495 160.135 52.1562 159.609 52.1562C159.073 52.1562 158.602 52.0651 158.195 51.8828C157.794 51.6953 157.456 51.4271 157.18 51.0781C156.904 50.7292 156.682 50.3073 156.516 49.8125C156.354 49.3177 156.242 48.7604 156.18 48.1406V47.4219C156.242 46.7969 156.354 46.237 156.516 45.7422C156.682 45.2474 156.904 44.8255 157.18 44.4766C157.456 44.1224 157.794 43.8542 158.195 43.6719C158.596 43.4844 159.062 43.3906 159.594 43.3906C160.125 43.3906 160.596 43.4948 161.008 43.7031C161.419 43.9062 161.763 44.1979 162.039 44.5781C162.32 44.9583 162.534 45.4141 162.68 45.9453C162.826 46.4714 162.898 47.0573 162.898 47.7031ZM161.445 47.8672V47.7031C161.445 47.2812 161.406 46.8854 161.328 46.5156C161.25 46.1406 161.125 45.8125 160.953 45.5312C160.781 45.2448 160.555 45.0208 160.273 44.8594C159.992 44.6927 159.646 44.6094 159.234 44.6094C158.87 44.6094 158.552 44.6719 158.281 44.7969C158.016 44.9219 157.789 45.0911 157.602 45.3047C157.414 45.513 157.26 45.7526 157.141 46.0234C157.026 46.2891 156.94 46.5651 156.883 46.8516V48.7344C156.966 49.099 157.102 49.4505 157.289 49.7891C157.482 50.1224 157.737 50.3958 158.055 50.6094C158.378 50.8229 158.776 50.9297 159.25 50.9297C159.641 50.9297 159.974 50.8516 160.25 50.6953C160.531 50.5339 160.758 50.3125 160.93 50.0312C161.107 49.75 161.237 49.4245 161.32 49.0547C161.404 48.6849 161.445 48.2891 161.445 47.8672ZM164.344 47.8672V47.6875C164.344 47.0781 164.432 46.513 164.609 45.9922C164.786 45.4661 165.042 45.0104 165.375 44.625C165.708 44.2344 166.112 43.9323 166.586 43.7188C167.06 43.5 167.591 43.3906 168.18 43.3906C168.773 43.3906 169.307 43.5 169.781 43.7188C170.26 43.9323 170.667 44.2344 171 44.625C171.339 45.0104 171.596 45.4661 171.773 45.9922C171.951 46.513 172.039 47.0781 172.039 47.6875V47.8672C172.039 48.4766 171.951 49.0417 171.773 49.5625C171.596 50.0833 171.339 50.5391 171 50.9297C170.667 51.3151 170.263 51.6172 169.789 51.8359C169.32 52.0495 168.789 52.1562 168.195 52.1562C167.602 52.1562 167.068 52.0495 166.594 51.8359C166.12 51.6172 165.714 51.3151 165.375 50.9297C165.042 50.5391 164.786 50.0833 164.609 49.5625C164.432 49.0417 164.344 48.4766 164.344 47.8672ZM165.789 47.6875V47.8672C165.789 48.2891 165.839 48.6875 165.938 49.0625C166.036 49.4323 166.185 49.7604 166.383 50.0469C166.586 50.3333 166.839 50.5599 167.141 50.7266C167.443 50.888 167.794 50.9688 168.195 50.9688C168.591 50.9688 168.938 50.888 169.234 50.7266C169.536 50.5599 169.786 50.3333 169.984 50.0469C170.182 49.7604 170.331 49.4323 170.43 49.0625C170.534 48.6875 170.586 48.2891 170.586 47.8672V47.6875C170.586 47.2708 170.534 46.8776 170.43 46.5078C170.331 46.1328 170.18 45.8021 169.977 45.5156C169.779 45.224 169.529 44.9948 169.227 44.8281C168.93 44.6615 168.581 44.5781 168.18 44.5781C167.784 44.5781 167.435 44.6615 167.133 44.8281C166.836 44.9948 166.586 45.224 166.383 45.5156C166.185 45.8021 166.036 46.1328 165.938 46.5078C165.839 46.8776 165.789 47.2708 165.789 47.6875ZM177.391 43.5469V44.6562H172.82V43.5469H177.391ZM174.367 41.4922H175.812V49.9062C175.812 50.1927 175.857 50.4089 175.945 50.5547C176.034 50.7005 176.148 50.7969 176.289 50.8438C176.43 50.8906 176.581 50.9141 176.742 50.9141C176.862 50.9141 176.987 50.9036 177.117 50.8828C177.253 50.8568 177.354 50.8359 177.422 50.8203L177.43 52C177.315 52.0365 177.164 52.0703 176.977 52.1016C176.794 52.138 176.573 52.1562 176.312 52.1562C175.958 52.1562 175.633 52.0859 175.336 51.9453C175.039 51.8047 174.802 51.5703 174.625 51.2422C174.453 50.9089 174.367 50.4609 174.367 49.8984V41.4922Z",fill:"#1E293B"}),(0,C.createElement)("path",{d:"M191.023 64.8906V72H189.559V64.8906H191.023ZM193.855 67.9277V69.0703H190.623V67.9277H193.855ZM194.197 64.8906V66.0381H190.623V64.8906H194.197ZM196.238 67.8691V72H194.832V66.7168H196.155L196.238 67.8691ZM197.83 66.6826L197.806 67.9863C197.737 67.9766 197.654 67.9684 197.557 67.9619C197.462 67.9521 197.376 67.9473 197.298 67.9473C197.099 67.9473 196.927 67.9733 196.78 68.0254C196.637 68.0742 196.517 68.1475 196.419 68.2451C196.325 68.3428 196.253 68.4616 196.204 68.6016C196.159 68.7415 196.132 68.901 196.126 69.0801L195.843 68.9922C195.843 68.6504 195.877 68.3363 195.945 68.0498C196.014 67.7601 196.113 67.5078 196.243 67.293C196.377 67.0781 196.539 66.9121 196.731 66.7949C196.924 66.6777 197.143 66.6191 197.391 66.6191C197.469 66.6191 197.549 66.6257 197.63 66.6387C197.711 66.6484 197.778 66.6631 197.83 66.6826ZM199.979 66.7168V72H198.567V66.7168H199.979ZM198.479 65.3398C198.479 65.1348 198.551 64.9655 198.694 64.832C198.838 64.6986 199.03 64.6318 199.271 64.6318C199.508 64.6318 199.699 64.6986 199.842 64.832C199.988 64.9655 200.062 65.1348 200.062 65.3398C200.062 65.5449 199.988 65.7142 199.842 65.8477C199.699 65.9811 199.508 66.0479 199.271 66.0479C199.03 66.0479 198.838 65.9811 198.694 65.8477C198.551 65.7142 198.479 65.5449 198.479 65.3398ZM203.572 72.0977C203.162 72.0977 202.794 72.0326 202.469 71.9023C202.143 71.7689 201.867 71.585 201.639 71.3506C201.414 71.1162 201.242 70.8444 201.121 70.5352C201.001 70.2227 200.94 69.8906 200.94 69.5391V69.3438C200.94 68.9434 200.997 68.5771 201.111 68.2451C201.225 67.9131 201.388 67.625 201.6 67.3809C201.814 67.1367 202.075 66.9495 202.381 66.8193C202.687 66.6859 203.032 66.6191 203.416 66.6191C203.79 66.6191 204.122 66.681 204.412 66.8047C204.702 66.9284 204.944 67.1042 205.14 67.332C205.338 67.5599 205.488 67.8333 205.589 68.1523C205.69 68.4681 205.74 68.8197 205.74 69.207V69.793H201.541V68.8555H204.358V68.748C204.358 68.5527 204.323 68.3786 204.251 68.2256C204.183 68.0693 204.078 67.9456 203.938 67.8545C203.799 67.7633 203.619 67.7178 203.401 67.7178C203.216 67.7178 203.056 67.7585 202.923 67.8398C202.789 67.9212 202.68 68.0352 202.596 68.1816C202.514 68.3281 202.452 68.5007 202.41 68.6992C202.371 68.8945 202.352 69.1094 202.352 69.3438V69.5391C202.352 69.7507 202.381 69.946 202.439 70.125C202.501 70.304 202.588 70.4587 202.698 70.5889C202.812 70.7191 202.949 70.82 203.108 70.8916C203.271 70.9632 203.455 70.999 203.66 70.999C203.914 70.999 204.15 70.9502 204.368 70.8525C204.59 70.7516 204.78 70.6003 204.939 70.3984L205.623 71.1406C205.512 71.3001 205.361 71.4531 205.169 71.5996C204.98 71.7461 204.752 71.8665 204.485 71.9609C204.218 72.0521 203.914 72.0977 203.572 72.0977ZM207.918 67.8447V72H206.512V66.7168H207.83L207.918 67.8447ZM207.713 69.1729H207.332C207.332 68.7822 207.382 68.4307 207.483 68.1182C207.584 67.8024 207.726 67.5339 207.908 67.3125C208.09 67.0879 208.307 66.917 208.558 66.7998C208.812 66.6794 209.095 66.6191 209.407 66.6191C209.655 66.6191 209.881 66.6549 210.086 66.7266C210.291 66.7982 210.467 66.9121 210.613 67.0684C210.763 67.2246 210.877 67.4313 210.955 67.6885C211.036 67.9456 211.077 68.2598 211.077 68.6309V72H209.661V68.626C209.661 68.3916 209.629 68.2093 209.563 68.0791C209.498 67.9489 209.402 67.8577 209.275 67.8057C209.152 67.7503 208.999 67.7227 208.816 67.7227C208.628 67.7227 208.463 67.7601 208.323 67.835C208.187 67.9098 208.073 68.014 207.981 68.1475C207.894 68.2777 207.827 68.4307 207.781 68.6064C207.736 68.7822 207.713 68.971 207.713 69.1729ZM215.267 70.8477V64.5H216.683V72H215.408L215.267 70.8477ZM211.927 69.4219V69.3193C211.927 68.9157 211.972 68.5495 212.063 68.2207C212.155 67.8887 212.288 67.6038 212.464 67.3662C212.64 67.1286 212.856 66.9447 213.113 66.8145C213.37 66.6842 213.663 66.6191 213.992 66.6191C214.301 66.6191 214.572 66.6842 214.803 66.8145C215.037 66.9447 215.236 67.1302 215.398 67.3711C215.564 67.6087 215.698 67.8903 215.799 68.2158C215.9 68.5381 215.973 68.8913 216.019 69.2754V69.5C215.973 69.8678 215.9 70.2096 215.799 70.5254C215.698 70.8411 215.564 71.1178 215.398 71.3555C215.236 71.5898 215.037 71.7721 214.803 71.9023C214.568 72.0326 214.295 72.0977 213.982 72.0977C213.654 72.0977 213.361 72.0309 213.104 71.8975C212.85 71.764 212.635 71.5768 212.459 71.3359C212.286 71.0951 212.155 70.8118 212.063 70.4863C211.972 70.1608 211.927 69.806 211.927 69.4219ZM213.333 69.3193V69.4219C213.333 69.64 213.349 69.8434 213.382 70.0322C213.418 70.221 213.475 70.3887 213.553 70.5352C213.634 70.6784 213.738 70.7907 213.865 70.8721C213.995 70.9502 214.153 70.9893 214.339 70.9893C214.58 70.9893 214.778 70.9355 214.935 70.8281C215.091 70.7174 215.21 70.5661 215.291 70.374C215.376 70.182 215.424 69.9606 215.438 69.71V69.0703C215.428 68.8652 215.398 68.6813 215.35 68.5186C215.304 68.3525 215.236 68.2109 215.145 68.0938C215.057 67.9766 214.946 67.8854 214.812 67.8203C214.682 67.7552 214.528 67.7227 214.349 67.7227C214.166 67.7227 214.01 67.765 213.88 67.8496C213.75 67.931 213.644 68.0433 213.562 68.1865C213.484 68.3298 213.426 68.499 213.387 68.6943C213.351 68.8864 213.333 69.0947 213.333 69.3193ZM219.266 64.5V72H217.854V64.5H219.266ZM221.995 71.4043L223.396 66.7168H224.905L222.781 72.7959C222.736 72.9294 222.674 73.0726 222.596 73.2256C222.521 73.3786 222.418 73.5234 222.288 73.6602C222.161 73.8001 222 73.9141 221.805 74.002C221.613 74.0898 221.377 74.1338 221.097 74.1338C220.963 74.1338 220.854 74.1257 220.77 74.1094C220.685 74.0931 220.584 74.0703 220.467 74.041V73.0107C220.503 73.0107 220.54 73.0107 220.579 73.0107C220.618 73.014 220.656 73.0156 220.691 73.0156C220.877 73.0156 221.028 72.9945 221.146 72.9521C221.263 72.9098 221.357 72.8447 221.429 72.7568C221.5 72.6722 221.557 72.5615 221.6 72.4248L221.995 71.4043ZM221.409 66.7168L222.557 70.5449L222.757 72.0342L221.8 72.1367L219.9 66.7168H221.409ZM229.676 69.6416H231.136C231.106 70.1201 230.975 70.5449 230.74 70.916C230.509 71.2871 230.185 71.5768 229.769 71.7852C229.355 71.9935 228.857 72.0977 228.274 72.0977C227.819 72.0977 227.41 72.0195 227.049 71.8633C226.688 71.7038 226.378 71.4759 226.121 71.1797C225.867 70.8835 225.674 70.5254 225.54 70.1055C225.407 69.6855 225.34 69.2152 225.34 68.6943V68.2012C225.34 67.6803 225.408 67.21 225.545 66.79C225.685 66.3669 225.883 66.0072 226.141 65.7109C226.401 65.4147 226.712 65.1868 227.073 65.0273C227.435 64.8678 227.838 64.7881 228.284 64.7881C228.877 64.7881 229.376 64.8955 229.783 65.1104C230.193 65.3252 230.511 65.6214 230.735 65.999C230.963 66.3766 231.1 66.8063 231.146 67.2881H229.681C229.664 67.0016 229.607 66.7591 229.51 66.5605C229.412 66.3587 229.264 66.2074 229.065 66.1064C228.87 66.0023 228.61 65.9502 228.284 65.9502C228.04 65.9502 227.827 65.9958 227.645 66.0869C227.462 66.1781 227.309 66.3164 227.186 66.502C227.062 66.6875 226.969 66.9219 226.907 67.2051C226.849 67.485 226.819 67.8138 226.819 68.1914V68.6943C226.819 69.0622 226.847 69.3861 226.902 69.666C226.958 69.9427 227.042 70.1771 227.156 70.3691C227.273 70.5579 227.423 70.7012 227.605 70.7988C227.791 70.8932 228.014 70.9404 228.274 70.9404C228.58 70.9404 228.833 70.8916 229.031 70.7939C229.23 70.6963 229.381 70.5514 229.485 70.3594C229.593 70.1673 229.656 69.9281 229.676 69.6416ZM234.861 70.8086V68.4551C234.861 68.2858 234.834 68.141 234.778 68.0205C234.723 67.8968 234.637 67.8008 234.52 67.7324C234.406 67.6641 234.257 67.6299 234.075 67.6299C233.919 67.6299 233.784 67.6576 233.67 67.7129C233.556 67.765 233.468 67.8415 233.406 67.9424C233.344 68.04 233.313 68.1556 233.313 68.2891H231.907C231.907 68.0645 231.959 67.8512 232.063 67.6494C232.168 67.4476 232.319 67.2702 232.518 67.1172C232.716 66.9609 232.952 66.8389 233.226 66.751C233.502 66.6631 233.812 66.6191 234.153 66.6191C234.563 66.6191 234.928 66.6875 235.247 66.8242C235.566 66.9609 235.817 67.166 235.999 67.4395C236.185 67.7129 236.277 68.0547 236.277 68.4648V70.7256C236.277 71.0153 236.295 71.2529 236.331 71.4385C236.367 71.6208 236.419 71.7803 236.487 71.917V72H235.066C234.998 71.8568 234.946 71.6777 234.91 71.4629C234.878 71.2448 234.861 71.0267 234.861 70.8086ZM235.047 68.7822L235.057 69.5781H234.271C234.085 69.5781 233.924 69.5993 233.787 69.6416C233.65 69.6839 233.538 69.7441 233.45 69.8223C233.362 69.8971 233.297 69.985 233.255 70.0859C233.216 70.1868 233.196 70.2975 233.196 70.418C233.196 70.5384 233.224 70.6475 233.279 70.7451C233.335 70.8395 233.414 70.9144 233.519 70.9697C233.623 71.0218 233.745 71.0479 233.885 71.0479C234.096 71.0479 234.28 71.0055 234.437 70.9209C234.593 70.8363 234.713 70.7321 234.798 70.6084C234.886 70.4847 234.931 70.3675 234.935 70.2568L235.306 70.8525C235.254 70.986 235.182 71.1243 235.091 71.2676C235.003 71.4108 234.891 71.5459 234.754 71.6729C234.617 71.7965 234.453 71.8991 234.261 71.9805C234.069 72.0586 233.841 72.0977 233.577 72.0977C233.242 72.0977 232.938 72.0309 232.664 71.8975C232.394 71.7607 232.179 71.5736 232.02 71.3359C231.863 71.0951 231.785 70.8216 231.785 70.5156C231.785 70.2389 231.837 69.9932 231.941 69.7783C232.046 69.5635 232.199 69.3828 232.4 69.2363C232.605 69.0866 232.861 68.9743 233.167 68.8994C233.473 68.8213 233.828 68.7822 234.231 68.7822H235.047ZM238.768 67.7324V74.0312H237.361V66.7168H238.665L238.768 67.7324ZM242.112 69.2998V69.4023C242.112 69.7865 242.067 70.1429 241.976 70.4717C241.888 70.8005 241.757 71.0869 241.585 71.3311C241.412 71.5719 241.198 71.7607 240.94 71.8975C240.687 72.0309 240.394 72.0977 240.062 72.0977C239.739 72.0977 239.459 72.0326 239.222 71.9023C238.984 71.7721 238.784 71.5898 238.621 71.3555C238.462 71.1178 238.333 70.8428 238.235 70.5303C238.138 70.2178 238.063 69.8825 238.011 69.5244V69.2559C238.063 68.8717 238.138 68.5202 238.235 68.2012C238.333 67.8789 238.462 67.6006 238.621 67.3662C238.784 67.1286 238.982 66.9447 239.217 66.8145C239.454 66.6842 239.733 66.6191 240.052 66.6191C240.387 66.6191 240.682 66.6826 240.936 66.8096C241.193 66.9365 241.408 67.1188 241.58 67.3564C241.756 67.5941 241.888 67.8773 241.976 68.2061C242.067 68.5348 242.112 68.8994 242.112 69.2998ZM240.701 69.4023V69.2998C240.701 69.0752 240.682 68.8685 240.643 68.6797C240.607 68.4876 240.548 68.32 240.467 68.1768C240.389 68.0335 240.285 67.9229 240.154 67.8447C240.027 67.7633 239.873 67.7227 239.69 67.7227C239.498 67.7227 239.334 67.7536 239.197 67.8154C239.064 67.8773 238.955 67.9668 238.87 68.084C238.785 68.2012 238.722 68.3411 238.68 68.5039C238.637 68.6667 238.611 68.8506 238.602 69.0557V69.7344C238.618 69.9753 238.663 70.1917 238.738 70.3838C238.813 70.5726 238.929 70.7223 239.085 70.833C239.241 70.9437 239.446 70.999 239.7 70.999C239.886 70.999 240.042 70.9583 240.169 70.877C240.296 70.7923 240.398 70.6768 240.477 70.5303C240.558 70.3838 240.615 70.2145 240.647 70.0225C240.683 69.8304 240.701 69.6237 240.701 69.4023ZM245.574 66.7168V67.7129H242.498V66.7168H245.574ZM243.26 65.4131H244.666V70.4082C244.666 70.5612 244.686 70.6784 244.725 70.7598C244.767 70.8411 244.829 70.8981 244.91 70.9307C244.992 70.96 245.094 70.9746 245.218 70.9746C245.306 70.9746 245.384 70.9714 245.452 70.9648C245.524 70.9551 245.584 70.9453 245.633 70.9355L245.638 71.9707C245.517 72.0098 245.387 72.0407 245.247 72.0635C245.107 72.0863 244.952 72.0977 244.783 72.0977C244.474 72.0977 244.204 72.0472 243.973 71.9463C243.745 71.8421 243.569 71.6761 243.445 71.4482C243.322 71.2204 243.26 70.9209 243.26 70.5498V65.4131ZM248.558 70.999C248.73 70.999 248.883 70.9665 249.017 70.9014C249.15 70.833 249.254 70.7386 249.329 70.6182C249.407 70.4945 249.448 70.3496 249.451 70.1836H250.774C250.771 70.5547 250.672 70.8851 250.477 71.1748C250.281 71.4613 250.019 71.6875 249.69 71.8535C249.362 72.0163 248.994 72.0977 248.587 72.0977C248.177 72.0977 247.819 72.0293 247.513 71.8926C247.21 71.7559 246.958 71.5671 246.756 71.3262C246.554 71.082 246.403 70.7988 246.302 70.4766C246.201 70.151 246.15 69.8027 246.15 69.4316V69.29C246.15 68.9157 246.201 68.5674 246.302 68.2451C246.403 67.9196 246.554 67.6364 246.756 67.3955C246.958 67.1514 247.21 66.9609 247.513 66.8242C247.815 66.6875 248.17 66.6191 248.577 66.6191C249.01 66.6191 249.389 66.7021 249.715 66.8682C250.044 67.0342 250.301 67.2718 250.486 67.5811C250.675 67.887 250.771 68.25 250.774 68.6699H249.451C249.448 68.4941 249.41 68.3346 249.339 68.1914C249.271 68.0482 249.17 67.9342 249.036 67.8496C248.906 67.7617 248.745 67.7178 248.553 67.7178C248.348 67.7178 248.18 67.7617 248.05 67.8496C247.92 67.9342 247.819 68.0514 247.747 68.2012C247.675 68.3477 247.625 68.5153 247.596 68.7041C247.57 68.8896 247.557 69.085 247.557 69.29V69.4316C247.557 69.6367 247.57 69.8337 247.596 70.0225C247.622 70.2113 247.671 70.3789 247.742 70.5254C247.817 70.6719 247.92 70.7874 248.05 70.8721C248.18 70.9567 248.349 70.999 248.558 70.999ZM252.962 64.5V72H251.556V64.5H252.962ZM252.762 69.1729H252.376C252.379 68.805 252.428 68.4665 252.522 68.1572C252.617 67.8447 252.752 67.5745 252.928 67.3467C253.104 67.1156 253.313 66.9365 253.558 66.8096C253.805 66.6826 254.078 66.6191 254.378 66.6191C254.638 66.6191 254.874 66.6566 255.086 66.7314C255.301 66.8031 255.485 66.9202 255.638 67.083C255.794 67.2425 255.914 67.4525 255.999 67.7129C256.084 67.9733 256.126 68.2891 256.126 68.6602V72H254.71V68.6504C254.71 68.416 254.676 68.2321 254.607 68.0986C254.542 67.9619 254.446 67.8659 254.319 67.8105C254.196 67.752 254.043 67.7227 253.86 67.7227C253.659 67.7227 253.486 67.7601 253.343 67.835C253.203 67.9098 253.09 68.014 253.006 68.1475C252.921 68.2777 252.859 68.4307 252.82 68.6064C252.781 68.7822 252.762 68.971 252.762 69.1729ZM260.047 70.8086V68.4551C260.047 68.2858 260.019 68.141 259.964 68.0205C259.909 67.8968 259.822 67.8008 259.705 67.7324C259.591 67.6641 259.443 67.6299 259.261 67.6299C259.104 67.6299 258.969 67.6576 258.855 67.7129C258.742 67.765 258.654 67.8415 258.592 67.9424C258.53 68.04 258.499 68.1556 258.499 68.2891H257.093C257.093 68.0645 257.145 67.8512 257.249 67.6494C257.353 67.4476 257.505 67.2702 257.703 67.1172C257.902 66.9609 258.138 66.8389 258.411 66.751C258.688 66.6631 258.997 66.6191 259.339 66.6191C259.749 66.6191 260.114 66.6875 260.433 66.8242C260.752 66.9609 261.002 67.166 261.185 67.4395C261.37 67.7129 261.463 68.0547 261.463 68.4648V70.7256C261.463 71.0153 261.481 71.2529 261.517 71.4385C261.552 71.6208 261.604 71.7803 261.673 71.917V72H260.252C260.184 71.8568 260.132 71.6777 260.096 71.4629C260.063 71.2448 260.047 71.0267 260.047 70.8086ZM260.232 68.7822L260.242 69.5781H259.456C259.271 69.5781 259.109 69.5993 258.973 69.6416C258.836 69.6839 258.724 69.7441 258.636 69.8223C258.548 69.8971 258.483 69.985 258.44 70.0859C258.401 70.1868 258.382 70.2975 258.382 70.418C258.382 70.5384 258.41 70.6475 258.465 70.7451C258.52 70.8395 258.6 70.9144 258.704 70.9697C258.808 71.0218 258.93 71.0479 259.07 71.0479C259.282 71.0479 259.466 71.0055 259.622 70.9209C259.778 70.8363 259.899 70.7321 259.983 70.6084C260.071 70.4847 260.117 70.3675 260.12 70.2568L260.491 70.8525C260.439 70.986 260.368 71.1243 260.276 71.2676C260.188 71.4108 260.076 71.5459 259.939 71.6729C259.803 71.7965 259.638 71.8991 259.446 71.9805C259.254 72.0586 259.026 72.0977 258.763 72.0977C258.427 72.0977 258.123 72.0309 257.85 71.8975C257.579 71.7607 257.365 71.5736 257.205 71.3359C257.049 71.0951 256.971 70.8216 256.971 70.5156C256.971 70.2389 257.023 69.9932 257.127 69.7783C257.231 69.5635 257.384 69.3828 257.586 69.2363C257.791 69.0866 258.047 68.9743 258.353 68.8994C258.659 68.8213 259.013 68.7822 259.417 68.7822H260.232Z",fill:"#4272F9"}),(0,C.createElement)("g",{clipPath:"url(#clip0_37_936)"},(0,C.createElement)("path",{d:"M270.566 71.5456V66.3837H265.404L265.404 67.8686H268.021L264.803 71.0859L265.864 72.1466L269.081 68.9293V71.5456L270.566 71.5456Z",fill:"#4272F9"})),(0,C.createElement)("path",{d:"M60.3366 102.512C60.4361 102.471 60.5009 102.374 60.5 102.267C60.4971 102.16 60.4278 102.066 60.3264 102.032L59.0119 101.575L58.8112 100.196C58.7962 100.097 58.7261 100.015 58.6306 99.9853C58.5333 99.958 58.429 99.9884 58.3615 100.063L57.4591 101.126L56.0972 100.785C55.9927 100.759 55.8827 100.801 55.8226 100.89C55.7623 100.979 55.7644 101.097 55.8281 101.184L56.6827 102.362L55.8212 103.68C55.7563 103.767 55.7566 103.886 55.8214 103.973C55.886 104.059 55.9981 104.094 56.1005 104.061L57.5409 103.615L58.5115 104.77C58.5585 104.828 58.6302 104.862 58.7055 104.862C58.7359 104.863 58.7663 104.857 58.7941 104.844C58.8965 104.809 58.964 104.711 58.9609 104.603V103.029L60.3366 102.512ZM57.8883 98.068C57.9425 97.9754 57.9301 97.858 57.8577 97.7787L56.8156 96.597L57.4966 95.3098C57.5479 95.216 57.5342 95.0998 57.4627 95.0205C57.3907 94.9404 57.2767 94.9133 57.1764 94.9523L55.8859 95.4732L54.8406 94.5537C54.7651 94.486 54.6565 94.4696 54.5643 94.5119C54.4719 94.554 54.4135 94.6466 54.4149 94.748V96.1406L53.1788 96.7775C53.0829 96.8266 53.028 96.9304 53.0418 97.0373C53.0556 97.1442 53.1349 97.2309 53.2401 97.2542L54.6532 97.5948L54.8677 99.1544C54.88 99.261 54.9601 99.3475 55.0653 99.3689H55.1197C55.209 99.3694 55.2919 99.3228 55.3377 99.2463L56.1311 97.966L57.6225 98.2009C57.7306 98.2192 57.838 98.1654 57.8883 98.068ZM57.8235 107.211C57.9 107.135 57.9197 107.019 57.8729 106.922C57.8259 106.825 57.7228 106.769 57.6159 106.782L56.2299 106.918L55.4841 105.74C55.428 105.656 55.3289 105.611 55.2287 105.624C55.1301 105.641 55.0496 105.712 55.0211 105.808L54.6432 107.149L53.2812 107.415C53.176 107.436 53.0943 107.52 53.0767 107.626C53.0599 107.731 53.1102 107.836 53.2026 107.888L54.4694 108.604L54.2378 110.16C54.2223 110.267 54.2755 110.371 54.3705 110.422C54.4071 110.442 54.4482 110.453 54.4898 110.453C54.5525 110.452 54.6128 110.429 54.6601 110.388L55.7838 109.366L57.1458 110.013C57.2451 110.067 57.3676 110.051 57.4489 109.973C57.5251 109.896 57.5443 109.78 57.4966 109.683L56.8156 108.26L57.8235 107.211ZM52.2934 93.9307C52.3782 93.8665 52.4136 93.7561 52.382 93.6546C52.349 93.5527 52.2573 93.4815 52.1504 93.4741L50.7578 93.4095L50.1891 92.1394C50.1435 92.0539 50.0544 92 49.9575 92C49.8606 92 49.7715 92.0537 49.7259 92.1392L49.1573 93.4093L47.7647 93.457C47.6578 93.4644 47.5661 93.5359 47.5331 93.6375C47.5015 93.739 47.5369 93.8494 47.6217 93.9133L48.7692 94.8192L48.3162 96.3245C48.2858 96.4273 48.3229 96.5378 48.4089 96.6016C48.4948 96.6655 48.6115 96.6689 48.701 96.6104L49.9575 95.7625L51.2141 96.5967C51.2559 96.6261 51.306 96.6416 51.3571 96.6411C51.4402 96.6413 51.5181 96.6012 51.5663 96.5335C51.6143 96.4658 51.6267 96.3789 51.5989 96.3005L51.1459 94.8193L52.2934 93.9307ZM46.8452 97.0361C46.8585 96.9297 46.8041 96.8264 46.7088 96.7772L45.4727 96.1403V94.7477C45.4737 94.6465 45.415 94.5544 45.3231 94.5128C45.2321 94.471 45.1252 94.4872 45.0506 94.5537L44.002 95.4731L42.7114 94.9522C42.6124 94.9128 42.4989 94.9399 42.4285 95.0202C42.3549 95.0983 42.3397 95.2152 42.391 95.3095L43.072 96.5967L42.0299 97.7784C41.9606 97.8594 41.9489 97.9748 42.0005 98.0682C42.052 98.1615 42.1563 98.2128 42.2618 98.1972L43.7532 97.9622L44.5499 99.2461C44.5962 99.3221 44.6789 99.3684 44.7679 99.3686H44.8223C44.9273 99.3456 45.0074 99.2603 45.0233 99.1541L45.2345 97.5945L46.6511 97.2539C46.7544 97.2283 46.8314 97.1415 46.8452 97.0361ZM46.668 107.827C46.762 107.774 46.8124 107.668 46.7941 107.561C46.7784 107.456 46.6977 107.373 46.5931 107.354L45.2312 107.085L44.8497 105.746C44.8236 105.649 44.7419 105.577 44.6421 105.563C44.5426 105.549 44.4445 105.594 44.3901 105.678L43.6409 106.853L42.2585 106.717C42.1519 106.706 42.0498 106.763 42.003 106.86C41.9555 106.956 41.9733 107.072 42.0471 107.149L43.0688 108.195L42.3878 109.621C42.3441 109.719 42.3643 109.834 42.4389 109.911C42.5151 109.987 42.6315 110.006 42.7284 109.959L44.0904 109.315L45.2108 110.337C45.292 110.406 45.4072 110.421 45.5037 110.374C45.5985 110.322 45.6514 110.216 45.6365 110.108L45.4015 108.552L46.668 107.827ZM44.1447 103.983C44.2062 103.895 44.2062 103.778 44.1447 103.69L43.2832 102.372L44.1378 101.194C44.1974 101.105 44.1977 100.989 44.1381 100.901C44.0782 100.812 43.9697 100.77 43.8656 100.795L42.5037 101.136L41.6215 100.063C41.5559 99.9873 41.4519 99.9569 41.3557 99.9856C41.2595 100.014 41.1889 100.097 41.1754 100.196L40.9882 101.575L39.6704 102.031C39.5709 102.068 39.5034 102.16 39.5001 102.266C39.4972 102.374 39.5628 102.473 39.6635 102.512L41.0255 103.039V104.612C41.0224 104.721 41.0901 104.819 41.1925 104.854C41.2202 104.867 41.2506 104.873 41.2811 104.871C41.3561 104.871 41.4274 104.837 41.4751 104.779L42.4457 103.625L43.8861 104.071C43.9823 104.095 44.0834 104.06 44.1447 103.983Z",fill:"#EAB413"}),(0,C.createElement)("path",{d:"M52.3818 109.655C52.4134 109.756 52.378 109.867 52.2932 109.931L51.1457 110.819L51.5987 112.3C51.6265 112.379 51.6141 112.466 51.5661 112.534C51.5179 112.601 51.44 112.641 51.3569 112.641C51.3058 112.642 51.2557 112.626 51.2139 112.597L49.9573 111.762L48.7008 112.61C48.6113 112.669 48.4946 112.666 48.4087 112.602C48.3227 112.538 48.2856 112.427 48.316 112.324L48.769 110.819L47.6215 109.913C47.5367 109.849 47.5013 109.739 47.5329 109.638C47.5659 109.536 47.6576 109.464 47.7645 109.457L49.1571 109.409L49.7257 108.139C49.7714 108.054 49.8604 108 49.9573 108C50.0543 108 50.1433 108.054 50.1889 108.139L50.7576 109.41L52.1502 109.474C52.2571 109.481 52.3488 109.553 52.3818 109.655Z",fill:"#EAB413"}),(0,C.createElement)("path",{d:"M16.5918 118.543H17.5049L19.834 124.339L22.1582 118.543H23.0762L20.1855 125.652H19.4727L16.5918 118.543ZM16.2939 118.543H17.0996L17.2314 122.879V125.652H16.2939V118.543ZM22.5635 118.543H23.3691V125.652H22.4316V122.879L22.5635 118.543ZM28.0029 124.749V122.029C28.0029 121.821 27.9606 121.64 27.876 121.487C27.7946 121.331 27.6709 121.21 27.5049 121.126C27.3389 121.041 27.1338 120.999 26.8896 120.999C26.6618 120.999 26.4616 121.038 26.2891 121.116C26.1198 121.194 25.9863 121.297 25.8887 121.424C25.7943 121.55 25.7471 121.687 25.7471 121.834H24.8438C24.8438 121.645 24.8926 121.458 24.9902 121.272C25.0879 121.087 25.2279 120.919 25.4102 120.769C25.5957 120.616 25.8171 120.496 26.0742 120.408C26.3346 120.317 26.6243 120.271 26.9434 120.271C27.3275 120.271 27.666 120.336 27.959 120.466C28.2552 120.597 28.4863 120.794 28.6523 121.057C28.8216 121.318 28.9062 121.645 28.9062 122.039V124.5C28.9062 124.675 28.9209 124.863 28.9502 125.061C28.9827 125.26 29.0299 125.431 29.0918 125.574V125.652H28.1494C28.1038 125.548 28.068 125.41 28.042 125.237C28.016 125.061 28.0029 124.898 28.0029 124.749ZM28.1592 122.449L28.1689 123.084H27.2559C26.9987 123.084 26.7692 123.105 26.5674 123.147C26.3656 123.186 26.1963 123.246 26.0596 123.328C25.9229 123.409 25.8187 123.512 25.7471 123.635C25.6755 123.756 25.6396 123.897 25.6396 124.06C25.6396 124.226 25.6771 124.378 25.752 124.514C25.8268 124.651 25.9391 124.76 26.0889 124.841C26.2419 124.92 26.429 124.959 26.6504 124.959C26.9271 124.959 27.1712 124.9 27.3828 124.783C27.5944 124.666 27.762 124.522 27.8857 124.353C28.0127 124.184 28.0811 124.02 28.0908 123.86L28.4766 124.295C28.4538 124.431 28.3919 124.583 28.291 124.749C28.1901 124.915 28.055 125.074 27.8857 125.227C27.7197 125.377 27.5212 125.502 27.29 125.603C27.0622 125.701 26.805 125.75 26.5186 125.75C26.1605 125.75 25.8464 125.68 25.5762 125.54C25.3092 125.4 25.1009 125.213 24.9512 124.978C24.8047 124.741 24.7314 124.475 24.7314 124.182C24.7314 123.899 24.7868 123.65 24.8975 123.435C25.0081 123.217 25.1676 123.036 25.376 122.893C25.5843 122.747 25.835 122.636 26.1279 122.561C26.4209 122.486 26.748 122.449 27.1094 122.449H28.1592ZM33.6572 124.627V118.152H34.5654V125.652H33.7354L33.6572 124.627ZM30.1025 123.069V122.966C30.1025 122.563 30.1514 122.197 30.249 121.868C30.3499 121.536 30.4915 121.251 30.6738 121.013C30.8594 120.776 31.0791 120.593 31.333 120.466C31.5902 120.336 31.8766 120.271 32.1924 120.271C32.5244 120.271 32.8141 120.33 33.0615 120.447C33.3122 120.561 33.5238 120.729 33.6963 120.95C33.8721 121.168 34.0104 121.432 34.1113 121.741C34.2122 122.05 34.2822 122.4 34.3213 122.791V123.24C34.2855 123.627 34.2155 123.976 34.1113 124.285C34.0104 124.594 33.8721 124.858 33.6963 125.076C33.5238 125.294 33.3122 125.462 33.0615 125.579C32.8109 125.693 32.5179 125.75 32.1826 125.75C31.8734 125.75 31.5902 125.683 31.333 125.549C31.0791 125.416 30.8594 125.229 30.6738 124.988C30.4915 124.747 30.3499 124.464 30.249 124.138C30.1514 123.81 30.1025 123.453 30.1025 123.069ZM31.0107 122.966V123.069C31.0107 123.333 31.0368 123.58 31.0889 123.811C31.1442 124.042 31.2288 124.246 31.3428 124.422C31.4567 124.597 31.6016 124.736 31.7773 124.837C31.9531 124.934 32.1631 124.983 32.4072 124.983C32.7067 124.983 32.9525 124.92 33.1445 124.793C33.3398 124.666 33.4961 124.498 33.6133 124.29C33.7305 124.081 33.8216 123.855 33.8867 123.611V122.434C33.8477 122.255 33.7907 122.083 33.7158 121.917C33.6442 121.747 33.5498 121.598 33.4326 121.467C33.3187 121.334 33.1771 121.228 33.0078 121.15C32.8418 121.072 32.6449 121.033 32.417 121.033C32.1696 121.033 31.9564 121.085 31.7773 121.189C31.6016 121.29 31.4567 121.43 31.3428 121.609C31.2288 121.785 31.1442 121.99 31.0889 122.224C31.0368 122.455 31.0107 122.703 31.0107 122.966ZM38.1641 125.75C37.7962 125.75 37.4626 125.688 37.1631 125.564C36.8669 125.437 36.6113 125.26 36.3965 125.032C36.1849 124.804 36.0221 124.534 35.9082 124.221C35.7943 123.909 35.7373 123.567 35.7373 123.196V122.991C35.7373 122.561 35.8008 122.179 35.9277 121.843C36.0547 121.505 36.2272 121.218 36.4453 120.984C36.6634 120.75 36.9108 120.572 37.1875 120.452C37.4642 120.331 37.7507 120.271 38.0469 120.271C38.4245 120.271 38.75 120.336 39.0234 120.466C39.3001 120.597 39.5264 120.779 39.7021 121.013C39.8779 121.244 40.0081 121.518 40.0928 121.834C40.1774 122.146 40.2197 122.488 40.2197 122.859V123.264H36.2744V122.527H39.3164V122.459C39.3034 122.224 39.2546 121.996 39.1699 121.775C39.0885 121.554 38.9583 121.371 38.7793 121.228C38.6003 121.085 38.3561 121.013 38.0469 121.013C37.8418 121.013 37.653 121.057 37.4805 121.145C37.3079 121.23 37.1598 121.357 37.0361 121.526C36.9124 121.695 36.8164 121.902 36.748 122.146C36.6797 122.39 36.6455 122.672 36.6455 122.991V123.196C36.6455 123.447 36.6797 123.683 36.748 123.904C36.8197 124.122 36.9222 124.314 37.0557 124.48C37.1924 124.646 37.3568 124.776 37.5488 124.871C37.7441 124.965 37.9655 125.012 38.2129 125.012C38.5319 125.012 38.8021 124.947 39.0234 124.817C39.2448 124.687 39.4385 124.513 39.6045 124.295L40.1514 124.729C40.0374 124.902 39.8926 125.066 39.7168 125.222C39.541 125.379 39.3245 125.506 39.0674 125.603C38.8135 125.701 38.5124 125.75 38.1641 125.75ZM44.7363 120.369V125.652H43.8281V120.369H44.7363ZM43.7598 118.967C43.7598 118.821 43.8037 118.697 43.8916 118.596C43.9827 118.495 44.1162 118.445 44.292 118.445C44.4645 118.445 44.5964 118.495 44.6875 118.596C44.7819 118.697 44.8291 118.821 44.8291 118.967C44.8291 119.107 44.7819 119.228 44.6875 119.329C44.5964 119.426 44.4645 119.475 44.292 119.475C44.1162 119.475 43.9827 119.426 43.8916 119.329C43.8037 119.228 43.7598 119.107 43.7598 118.967ZM47.0898 121.497V125.652H46.1865V120.369H47.041L47.0898 121.497ZM46.875 122.81L46.499 122.796C46.5023 122.434 46.556 122.101 46.6602 121.795C46.7643 121.485 46.9108 121.217 47.0996 120.989C47.2884 120.761 47.513 120.585 47.7734 120.462C48.0371 120.335 48.3285 120.271 48.6475 120.271C48.9079 120.271 49.1423 120.307 49.3506 120.379C49.5589 120.447 49.7363 120.558 49.8828 120.711C50.0326 120.864 50.1465 121.062 50.2246 121.306C50.3027 121.547 50.3418 121.842 50.3418 122.19V125.652H49.4336V122.18C49.4336 121.904 49.3929 121.682 49.3115 121.516C49.2301 121.347 49.1113 121.225 48.9551 121.15C48.7988 121.072 48.6068 121.033 48.3789 121.033C48.1543 121.033 47.9492 121.08 47.7637 121.174C47.5814 121.269 47.4235 121.399 47.29 121.565C47.1598 121.731 47.0573 121.922 46.9824 122.136C46.9108 122.348 46.875 122.573 46.875 122.81ZM58.8477 124.885V125.652H55.083V124.885H58.8477ZM55.2734 118.543V125.652H54.3311V118.543H55.2734ZM58.3496 121.599V122.366H55.083V121.599H58.3496ZM58.7988 118.543V119.314H55.083V118.543H58.7988ZM63.0225 124.431V120.369H63.9307V125.652H63.0664L63.0225 124.431ZM63.1934 123.318L63.5693 123.308C63.5693 123.66 63.5319 123.985 63.457 124.285C63.3854 124.581 63.2682 124.838 63.1055 125.056C62.9427 125.274 62.7295 125.445 62.4658 125.569C62.2021 125.689 61.8815 125.75 61.5039 125.75C61.2467 125.75 61.0107 125.712 60.7959 125.637C60.5843 125.563 60.402 125.447 60.249 125.291C60.096 125.134 59.9772 124.931 59.8926 124.68C59.8112 124.43 59.7705 124.129 59.7705 123.777V120.369H60.6738V123.787C60.6738 124.024 60.6999 124.221 60.752 124.378C60.8073 124.531 60.8805 124.653 60.9717 124.744C61.0661 124.832 61.1702 124.894 61.2842 124.929C61.4014 124.965 61.5218 124.983 61.6455 124.983C62.0296 124.983 62.334 124.91 62.5586 124.763C62.7832 124.614 62.9443 124.413 63.042 124.163C63.1429 123.909 63.1934 123.627 63.1934 123.318ZM66.2109 121.199V125.652H65.3076V120.369H66.1865L66.2109 121.199ZM67.8613 120.34L67.8564 121.179C67.7816 121.163 67.71 121.153 67.6416 121.15C67.5765 121.144 67.5016 121.14 67.417 121.14C67.2087 121.14 67.0247 121.173 66.8652 121.238C66.7057 121.303 66.5706 121.394 66.46 121.511C66.3493 121.629 66.2614 121.769 66.1963 121.931C66.1344 122.091 66.0938 122.267 66.0742 122.459L65.8203 122.605C65.8203 122.286 65.8512 121.987 65.9131 121.707C65.9782 121.427 66.0775 121.179 66.2109 120.965C66.3444 120.746 66.5137 120.577 66.7188 120.457C66.9271 120.333 67.1745 120.271 67.4609 120.271C67.526 120.271 67.6009 120.279 67.6855 120.296C67.7702 120.309 67.8288 120.323 67.8613 120.34ZM68.3594 123.069V122.957C68.3594 122.576 68.4147 122.223 68.5254 121.897C68.6361 121.568 68.7956 121.284 69.0039 121.043C69.2122 120.799 69.4645 120.61 69.7607 120.476C70.057 120.34 70.389 120.271 70.7568 120.271C71.1279 120.271 71.4616 120.34 71.7578 120.476C72.0573 120.61 72.3112 120.799 72.5195 121.043C72.7311 121.284 72.8923 121.568 73.0029 121.897C73.1136 122.223 73.1689 122.576 73.1689 122.957V123.069C73.1689 123.45 73.1136 123.803 73.0029 124.129C72.8923 124.454 72.7311 124.739 72.5195 124.983C72.3112 125.224 72.0589 125.413 71.7627 125.549C71.4697 125.683 71.1377 125.75 70.7666 125.75C70.3955 125.75 70.0618 125.683 69.7656 125.549C69.4694 125.413 69.2155 125.224 69.0039 124.983C68.7956 124.739 68.6361 124.454 68.5254 124.129C68.4147 123.803 68.3594 123.45 68.3594 123.069ZM69.2627 122.957V123.069C69.2627 123.333 69.2936 123.582 69.3555 123.816C69.4173 124.047 69.5101 124.252 69.6338 124.431C69.7607 124.61 69.9186 124.752 70.1074 124.856C70.2962 124.957 70.516 125.008 70.7666 125.008C71.014 125.008 71.2305 124.957 71.416 124.856C71.6048 124.752 71.7611 124.61 71.8848 124.431C72.0085 124.252 72.1012 124.047 72.1631 123.816C72.2282 123.582 72.2607 123.333 72.2607 123.069V122.957C72.2607 122.696 72.2282 122.451 72.1631 122.219C72.1012 121.985 72.0068 121.778 71.8799 121.599C71.7562 121.417 71.5999 121.274 71.4111 121.17C71.2256 121.065 71.0075 121.013 70.7568 121.013C70.5094 121.013 70.2913 121.065 70.1025 121.17C69.917 121.274 69.7607 121.417 69.6338 121.599C69.5101 121.778 69.4173 121.985 69.3555 122.219C69.2936 122.451 69.2627 122.696 69.2627 122.957ZM75.2051 121.384V127.683H74.2969V120.369H75.127L75.2051 121.384ZM78.7646 122.966V123.069C78.7646 123.453 78.7191 123.81 78.6279 124.138C78.5368 124.464 78.4033 124.747 78.2275 124.988C78.055 125.229 77.8418 125.416 77.5879 125.549C77.334 125.683 77.0426 125.75 76.7139 125.75C76.3786 125.75 76.0824 125.694 75.8252 125.584C75.568 125.473 75.3499 125.312 75.1709 125.1C74.9919 124.889 74.8486 124.635 74.7412 124.339C74.637 124.042 74.5654 123.709 74.5264 123.338V122.791C74.5654 122.4 74.6387 122.05 74.7461 121.741C74.8535 121.432 74.9951 121.168 75.1709 120.95C75.3499 120.729 75.5664 120.561 75.8203 120.447C76.0742 120.33 76.3672 120.271 76.6992 120.271C77.0312 120.271 77.3258 120.336 77.583 120.466C77.8402 120.593 78.0566 120.776 78.2324 121.013C78.4082 121.251 78.54 121.536 78.6279 121.868C78.7191 122.197 78.7646 122.563 78.7646 122.966ZM77.8564 123.069V122.966C77.8564 122.703 77.8288 122.455 77.7734 122.224C77.7181 121.99 77.6318 121.785 77.5146 121.609C77.4007 121.43 77.2542 121.29 77.0752 121.189C76.8962 121.085 76.6829 121.033 76.4355 121.033C76.2077 121.033 76.0091 121.072 75.8398 121.15C75.6738 121.228 75.5322 121.334 75.415 121.467C75.2979 121.598 75.2018 121.747 75.127 121.917C75.0553 122.083 75.0016 122.255 74.9658 122.434V123.699C75.0309 123.927 75.1221 124.142 75.2393 124.343C75.3564 124.542 75.5127 124.703 75.708 124.827C75.9033 124.947 76.1491 125.008 76.4453 125.008C76.6895 125.008 76.8994 124.957 77.0752 124.856C77.2542 124.752 77.4007 124.61 77.5146 124.431C77.6318 124.252 77.7181 124.047 77.7734 123.816C77.8288 123.582 77.8564 123.333 77.8564 123.069ZM82.1094 125.75C81.7415 125.75 81.4079 125.688 81.1084 125.564C80.8122 125.437 80.5566 125.26 80.3418 125.032C80.1302 124.804 79.9674 124.534 79.8535 124.221C79.7396 123.909 79.6826 123.567 79.6826 123.196V122.991C79.6826 122.561 79.7461 122.179 79.873 121.843C80 121.505 80.1725 121.218 80.3906 120.984C80.6087 120.75 80.8561 120.572 81.1328 120.452C81.4095 120.331 81.696 120.271 81.9922 120.271C82.3698 120.271 82.6953 120.336 82.9688 120.466C83.2454 120.597 83.4717 120.779 83.6475 121.013C83.8232 121.244 83.9535 121.518 84.0381 121.834C84.1227 122.146 84.165 122.488 84.165 122.859V123.264H80.2197V122.527H83.2617V122.459C83.2487 122.224 83.1999 121.996 83.1152 121.775C83.0339 121.554 82.9036 121.371 82.7246 121.228C82.5456 121.085 82.3014 121.013 81.9922 121.013C81.7871 121.013 81.5983 121.057 81.4258 121.145C81.2533 121.23 81.1051 121.357 80.9814 121.526C80.8577 121.695 80.7617 121.902 80.6934 122.146C80.625 122.39 80.5908 122.672 80.5908 122.991V123.196C80.5908 123.447 80.625 123.683 80.6934 123.904C80.765 124.122 80.8675 124.314 81.001 124.48C81.1377 124.646 81.3021 124.776 81.4941 124.871C81.6895 124.965 81.9108 125.012 82.1582 125.012C82.4772 125.012 82.7474 124.947 82.9688 124.817C83.1901 124.687 83.3838 124.513 83.5498 124.295L84.0967 124.729C83.9827 124.902 83.8379 125.066 83.6621 125.222C83.4863 125.379 83.2699 125.506 83.0127 125.603C82.7588 125.701 82.4577 125.75 82.1094 125.75Z",fill:"#475569"}),(0,C.createElement)("path",{d:"M128.5 95.6396C128.5 94.6862 129.173 93.8654 130.108 93.6784L132.617 93.1767C136.5 92.3999 140.5 92.3999 144.383 93.1767L146.892 93.6784C147.827 93.8654 148.5 94.6862 148.5 95.6396V98.1115C148.5 104.172 145.076 109.712 139.655 112.422L138.947 112.776C138.666 112.917 138.334 112.917 138.053 112.776L137.345 112.422C131.924 109.712 128.5 104.172 128.5 98.1115V95.6396Z",fill:"#EAB413"}),(0,C.createElement)("path",{d:"M142.056 106H135.405C135.161 105.995 134.929 105.894 134.759 105.718C134.589 105.543 134.496 105.307 134.5 105.063V101.312C134.496 101.068 134.589 100.832 134.759 100.657C134.929 100.481 135.161 100.38 135.405 100.375H135.859V98.9691C135.847 98.1948 136.143 97.4474 136.681 96.8908C137.22 96.3342 137.957 96.0139 138.731 96C139.505 96.0141 140.242 96.3345 140.781 96.8911C141.319 97.4477 141.614 98.195 141.603 98.9691V100.375H142.056C142.3 100.38 142.532 100.481 142.702 100.657C142.871 100.833 142.964 101.068 142.961 101.312V105.062C142.965 105.306 142.871 105.542 142.702 105.718C142.532 105.894 142.3 105.995 142.056 106ZM138.731 97.5631C138.365 97.5699 138.016 97.7216 137.761 97.9851C137.506 98.2487 137.366 98.6025 137.371 98.9691V100.375H140.095V98.9691C140.1 98.602 139.96 98.2476 139.704 97.984C139.448 97.7204 139.098 97.569 138.731 97.5631Z",fill:"white"}),(0,C.createElement)("path",{d:"M107.562 122.46V125.062C107.475 125.193 107.335 125.339 107.143 125.502C106.951 125.661 106.685 125.801 106.347 125.922C106.011 126.039 105.578 126.098 105.048 126.098C104.615 126.098 104.216 126.023 103.852 125.873C103.49 125.72 103.176 125.499 102.909 125.209C102.646 124.916 102.44 124.561 102.294 124.145C102.151 123.725 102.079 123.249 102.079 122.719V122.167C102.079 121.636 102.141 121.163 102.265 120.746C102.392 120.329 102.577 119.976 102.821 119.687C103.065 119.394 103.365 119.172 103.72 119.022C104.075 118.869 104.481 118.793 104.94 118.793C105.484 118.793 105.938 118.887 106.303 119.076C106.671 119.262 106.957 119.519 107.162 119.848C107.37 120.176 107.504 120.551 107.562 120.971H106.62C106.578 120.714 106.493 120.479 106.366 120.268C106.243 120.056 106.065 119.887 105.834 119.76C105.603 119.63 105.305 119.564 104.94 119.564C104.612 119.564 104.327 119.625 104.086 119.745C103.845 119.866 103.646 120.038 103.49 120.263C103.334 120.487 103.217 120.759 103.139 121.078C103.064 121.397 103.026 121.757 103.026 122.157V122.719C103.026 123.129 103.074 123.495 103.168 123.817C103.266 124.14 103.404 124.415 103.583 124.643C103.762 124.867 103.975 125.038 104.223 125.155C104.473 125.272 104.75 125.331 105.053 125.331C105.388 125.331 105.66 125.303 105.868 125.248C106.076 125.189 106.239 125.121 106.356 125.043C106.474 124.962 106.563 124.885 106.625 124.813V123.222H104.979V122.46H107.562ZM111.049 126H109.564L109.574 125.233H111.049C111.557 125.233 111.98 125.128 112.318 124.916C112.657 124.701 112.911 124.402 113.08 124.018C113.253 123.63 113.339 123.178 113.339 122.66V122.226C113.339 121.819 113.29 121.457 113.192 121.142C113.095 120.823 112.951 120.554 112.763 120.336C112.574 120.115 112.343 119.947 112.069 119.833C111.799 119.719 111.488 119.662 111.137 119.662H109.535V118.891H111.137C111.602 118.891 112.027 118.969 112.411 119.125C112.795 119.278 113.126 119.501 113.402 119.794C113.682 120.084 113.897 120.435 114.047 120.849C114.197 121.259 114.271 121.721 114.271 122.235V122.66C114.271 123.174 114.197 123.638 114.047 124.052C113.897 124.462 113.681 124.812 113.397 125.102C113.118 125.391 112.779 125.614 112.382 125.771C111.988 125.924 111.544 126 111.049 126ZM110.067 118.891V126H109.125V118.891H110.067ZM118.31 123.212H116.41V122.445H118.31C118.677 122.445 118.975 122.387 119.203 122.27C119.431 122.152 119.597 121.99 119.701 121.781C119.809 121.573 119.862 121.335 119.862 121.068C119.862 120.824 119.809 120.595 119.701 120.38C119.597 120.165 119.431 119.993 119.203 119.862C118.975 119.729 118.677 119.662 118.31 119.662H116.63V126H115.688V118.891H118.31C118.847 118.891 119.301 118.983 119.672 119.169C120.043 119.354 120.325 119.612 120.517 119.94C120.709 120.266 120.805 120.639 120.805 121.059C120.805 121.514 120.709 121.903 120.517 122.226C120.325 122.548 120.043 122.794 119.672 122.963C119.301 123.129 118.847 123.212 118.31 123.212ZM121.996 118.891H124.35C124.883 118.891 125.334 118.972 125.702 119.135C126.073 119.298 126.355 119.538 126.547 119.857C126.742 120.173 126.84 120.562 126.84 121.024C126.84 121.35 126.773 121.648 126.64 121.918C126.509 122.185 126.321 122.413 126.073 122.602C125.829 122.787 125.536 122.925 125.194 123.017L124.931 123.119H122.719L122.709 122.353H124.379C124.717 122.353 124.999 122.294 125.224 122.177C125.448 122.056 125.618 121.895 125.731 121.693C125.845 121.492 125.902 121.269 125.902 121.024C125.902 120.751 125.849 120.512 125.741 120.307C125.634 120.102 125.465 119.944 125.233 119.833C125.006 119.719 124.711 119.662 124.35 119.662H122.938V126H121.996V118.891ZM126.151 126L124.423 122.777L125.404 122.772L127.157 125.941V126H126.151ZM134.931 123.739H135.868C135.819 124.188 135.691 124.59 135.482 124.945C135.274 125.3 134.979 125.582 134.599 125.79C134.218 125.995 133.743 126.098 133.173 126.098C132.756 126.098 132.377 126.02 132.035 125.863C131.697 125.707 131.405 125.486 131.161 125.199C130.917 124.91 130.728 124.563 130.595 124.159C130.465 123.752 130.399 123.3 130.399 122.802V122.094C130.399 121.596 130.465 121.145 130.595 120.741C130.728 120.334 130.919 119.986 131.166 119.696C131.417 119.407 131.718 119.184 132.069 119.027C132.421 118.871 132.816 118.793 133.256 118.793C133.793 118.793 134.247 118.894 134.618 119.096C134.989 119.298 135.277 119.577 135.482 119.936C135.691 120.29 135.819 120.702 135.868 121.171H134.931C134.885 120.839 134.8 120.554 134.677 120.316C134.553 120.076 134.377 119.89 134.149 119.76C133.922 119.63 133.624 119.564 133.256 119.564C132.94 119.564 132.662 119.625 132.421 119.745C132.183 119.866 131.983 120.036 131.82 120.258C131.661 120.479 131.54 120.744 131.459 121.054C131.378 121.363 131.337 121.706 131.337 122.084V122.802C131.337 123.15 131.373 123.477 131.444 123.783C131.519 124.089 131.632 124.358 131.781 124.589C131.931 124.82 132.121 125.002 132.353 125.136C132.584 125.266 132.857 125.331 133.173 125.331C133.573 125.331 133.892 125.268 134.13 125.141C134.368 125.014 134.547 124.831 134.667 124.594C134.791 124.356 134.879 124.071 134.931 123.739ZM136.776 123.417V123.305C136.776 122.924 136.832 122.571 136.942 122.245C137.053 121.916 137.213 121.632 137.421 121.391C137.629 121.146 137.882 120.958 138.178 120.824C138.474 120.688 138.806 120.619 139.174 120.619C139.545 120.619 139.879 120.688 140.175 120.824C140.474 120.958 140.728 121.146 140.937 121.391C141.148 121.632 141.309 121.916 141.42 122.245C141.531 122.571 141.586 122.924 141.586 123.305V123.417C141.586 123.798 141.531 124.151 141.42 124.477C141.309 124.802 141.148 125.087 140.937 125.331C140.728 125.572 140.476 125.761 140.18 125.897C139.887 126.031 139.555 126.098 139.184 126.098C138.812 126.098 138.479 126.031 138.183 125.897C137.886 125.761 137.632 125.572 137.421 125.331C137.213 125.087 137.053 124.802 136.942 124.477C136.832 124.151 136.776 123.798 136.776 123.417ZM137.68 123.305V123.417C137.68 123.681 137.711 123.93 137.772 124.164C137.834 124.395 137.927 124.6 138.051 124.779C138.178 124.958 138.336 125.1 138.524 125.204C138.713 125.305 138.933 125.355 139.184 125.355C139.431 125.355 139.647 125.305 139.833 125.204C140.022 125.1 140.178 124.958 140.302 124.779C140.425 124.6 140.518 124.395 140.58 124.164C140.645 123.93 140.678 123.681 140.678 123.417V123.305C140.678 123.044 140.645 122.799 140.58 122.567C140.518 122.333 140.424 122.126 140.297 121.947C140.173 121.765 140.017 121.622 139.828 121.518C139.643 121.413 139.424 121.361 139.174 121.361C138.926 121.361 138.708 121.413 138.52 121.518C138.334 121.622 138.178 121.765 138.051 121.947C137.927 122.126 137.834 122.333 137.772 122.567C137.711 122.799 137.68 123.044 137.68 123.305ZM143.617 121.767V126H142.709V120.717H143.568L143.617 121.767ZM143.432 123.158L143.012 123.144C143.015 122.782 143.062 122.449 143.153 122.143C143.244 121.833 143.38 121.565 143.559 121.337C143.738 121.109 143.961 120.933 144.228 120.81C144.494 120.683 144.804 120.619 145.155 120.619C145.403 120.619 145.631 120.655 145.839 120.727C146.047 120.795 146.228 120.904 146.381 121.054C146.534 121.203 146.653 121.396 146.737 121.63C146.822 121.864 146.864 122.147 146.864 122.479V126H145.961V122.523C145.961 122.247 145.914 122.025 145.819 121.859C145.728 121.693 145.598 121.573 145.429 121.498C145.259 121.42 145.061 121.381 144.833 121.381C144.566 121.381 144.343 121.428 144.164 121.522C143.985 121.617 143.842 121.747 143.734 121.913C143.627 122.079 143.549 122.27 143.5 122.484C143.454 122.696 143.432 122.921 143.432 123.158ZM146.854 122.66L146.249 122.846C146.252 122.556 146.299 122.278 146.391 122.011C146.485 121.744 146.62 121.506 146.796 121.298C146.975 121.09 147.195 120.925 147.455 120.805C147.715 120.681 148.013 120.619 148.349 120.619C148.632 120.619 148.882 120.657 149.101 120.731C149.322 120.806 149.507 120.922 149.657 121.078C149.81 121.231 149.926 121.428 150.004 121.669C150.082 121.91 150.121 122.196 150.121 122.528V126H149.213V122.519C149.213 122.222 149.166 121.993 149.071 121.83C148.98 121.664 148.85 121.549 148.681 121.483C148.515 121.415 148.316 121.381 148.085 121.381C147.886 121.381 147.711 121.415 147.558 121.483C147.405 121.552 147.276 121.646 147.172 121.767C147.068 121.884 146.988 122.019 146.933 122.172C146.881 122.325 146.854 122.488 146.854 122.66ZM152.392 121.732V128.031H151.483V120.717H152.313L152.392 121.732ZM155.951 123.314V123.417C155.951 123.801 155.906 124.158 155.814 124.486C155.723 124.812 155.59 125.095 155.414 125.336C155.242 125.577 155.028 125.764 154.774 125.897C154.521 126.031 154.229 126.098 153.9 126.098C153.565 126.098 153.269 126.042 153.012 125.932C152.755 125.821 152.536 125.66 152.357 125.448C152.178 125.237 152.035 124.983 151.928 124.687C151.824 124.39 151.752 124.057 151.713 123.686V123.139C151.752 122.748 151.825 122.398 151.933 122.089C152.04 121.78 152.182 121.516 152.357 121.298C152.536 121.076 152.753 120.909 153.007 120.795C153.261 120.678 153.554 120.619 153.886 120.619C154.218 120.619 154.512 120.684 154.77 120.814C155.027 120.941 155.243 121.124 155.419 121.361C155.595 121.599 155.727 121.884 155.814 122.216C155.906 122.545 155.951 122.911 155.951 123.314ZM155.043 123.417V123.314C155.043 123.051 155.015 122.803 154.96 122.572C154.905 122.338 154.818 122.133 154.701 121.957C154.587 121.778 154.441 121.638 154.262 121.537C154.083 121.433 153.869 121.381 153.622 121.381C153.394 121.381 153.196 121.42 153.026 121.498C152.86 121.576 152.719 121.682 152.602 121.815C152.484 121.946 152.388 122.095 152.313 122.265C152.242 122.431 152.188 122.603 152.152 122.782V124.047C152.217 124.275 152.309 124.49 152.426 124.691C152.543 124.89 152.699 125.051 152.895 125.175C153.09 125.295 153.336 125.355 153.632 125.355C153.876 125.355 154.086 125.305 154.262 125.204C154.441 125.1 154.587 124.958 154.701 124.779C154.818 124.6 154.905 124.395 154.96 124.164C155.015 123.93 155.043 123.681 155.043 123.417ZM158.085 118.5V126H157.177V118.5H158.085ZM160.517 120.717V126H159.608V120.717H160.517ZM159.54 119.315C159.54 119.169 159.584 119.045 159.672 118.944C159.763 118.843 159.896 118.793 160.072 118.793C160.245 118.793 160.377 118.843 160.468 118.944C160.562 119.045 160.609 119.169 160.609 119.315C160.609 119.455 160.562 119.576 160.468 119.677C160.377 119.774 160.245 119.823 160.072 119.823C159.896 119.823 159.763 119.774 159.672 119.677C159.584 119.576 159.54 119.455 159.54 119.315ZM165.082 125.097V122.377C165.082 122.169 165.04 121.988 164.955 121.835C164.874 121.679 164.75 121.558 164.584 121.474C164.418 121.389 164.213 121.347 163.969 121.347C163.741 121.347 163.541 121.386 163.368 121.464C163.199 121.542 163.065 121.645 162.968 121.771C162.873 121.898 162.826 122.035 162.826 122.182H161.923C161.923 121.993 161.972 121.806 162.069 121.62C162.167 121.435 162.307 121.267 162.489 121.117C162.675 120.964 162.896 120.844 163.153 120.756C163.414 120.665 163.703 120.619 164.022 120.619C164.407 120.619 164.745 120.684 165.038 120.814C165.334 120.945 165.565 121.142 165.731 121.405C165.901 121.666 165.985 121.993 165.985 122.387V124.848C165.985 125.023 166 125.211 166.029 125.409C166.062 125.608 166.109 125.779 166.171 125.922V126H165.229C165.183 125.896 165.147 125.757 165.121 125.585C165.095 125.409 165.082 125.246 165.082 125.097ZM165.238 122.797L165.248 123.432H164.335C164.078 123.432 163.848 123.453 163.646 123.495C163.445 123.534 163.275 123.594 163.139 123.676C163.002 123.757 162.898 123.86 162.826 123.983C162.755 124.104 162.719 124.245 162.719 124.408C162.719 124.574 162.756 124.726 162.831 124.862C162.906 124.999 163.018 125.108 163.168 125.189C163.321 125.268 163.508 125.307 163.729 125.307C164.006 125.307 164.25 125.248 164.462 125.131C164.674 125.014 164.841 124.87 164.965 124.701C165.092 124.532 165.16 124.368 165.17 124.208L165.556 124.643C165.533 124.779 165.471 124.931 165.37 125.097C165.269 125.263 165.134 125.422 164.965 125.575C164.799 125.725 164.6 125.85 164.369 125.951C164.141 126.049 163.884 126.098 163.598 126.098C163.24 126.098 162.925 126.028 162.655 125.888C162.388 125.748 162.18 125.561 162.03 125.326C161.884 125.089 161.811 124.823 161.811 124.53C161.811 124.247 161.866 123.998 161.977 123.783C162.087 123.565 162.247 123.384 162.455 123.241C162.663 123.095 162.914 122.984 163.207 122.909C163.5 122.834 163.827 122.797 164.188 122.797H165.238ZM168.31 121.845V126H167.406V120.717H168.261L168.31 121.845ZM168.095 123.158L167.719 123.144C167.722 122.782 167.776 122.449 167.88 122.143C167.984 121.833 168.131 121.565 168.319 121.337C168.508 121.109 168.733 120.933 168.993 120.81C169.257 120.683 169.548 120.619 169.867 120.619C170.128 120.619 170.362 120.655 170.57 120.727C170.779 120.795 170.956 120.906 171.103 121.059C171.252 121.212 171.366 121.41 171.444 121.654C171.522 121.895 171.562 122.19 171.562 122.538V126H170.653V122.528C170.653 122.252 170.613 122.03 170.531 121.864C170.45 121.695 170.331 121.573 170.175 121.498C170.019 121.42 169.826 121.381 169.599 121.381C169.374 121.381 169.169 121.428 168.983 121.522C168.801 121.617 168.643 121.747 168.51 121.913C168.38 122.079 168.277 122.27 168.202 122.484C168.131 122.696 168.095 122.921 168.095 123.158ZM175.146 120.717V121.41H172.289V120.717H175.146ZM173.256 119.433H174.159V124.691C174.159 124.87 174.187 125.006 174.242 125.097C174.298 125.188 174.369 125.248 174.457 125.277C174.545 125.307 174.639 125.321 174.74 125.321C174.815 125.321 174.893 125.315 174.975 125.302C175.059 125.285 175.123 125.272 175.165 125.263L175.17 126C175.098 126.023 175.004 126.044 174.887 126.063C174.773 126.086 174.634 126.098 174.472 126.098C174.25 126.098 174.047 126.054 173.861 125.966C173.676 125.878 173.528 125.731 173.417 125.526C173.31 125.318 173.256 125.038 173.256 124.687V119.433Z",fill:"#475569"}),(0,C.createElement)("circle",{cx:"238",cy:"102.5",r:"10.5",fill:"#EAB413"}),(0,C.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M239.318 95.3014C238.975 94.9581 238.509 94.7654 238.024 94.7654C237.539 94.7649 237.073 94.9575 236.73 95.3007C236.387 95.6439 236.194 96.1095 236.195 96.5947C236.195 97.0798 236.388 97.5451 236.731 97.8881C237.074 98.2312 237.539 98.4239 238.024 98.4239C238.509 98.4239 238.975 98.2311 239.318 97.8881C239.661 97.5451 239.853 97.0799 239.853 96.5947C239.853 96.1096 239.661 95.6444 239.318 95.3014ZM243.918 99.9939L240.722 99.9938H235.278V99.9939H232.119C231.668 99.9939 231.303 100.359 231.303 100.81C231.303 101.261 231.668 101.627 232.119 101.627H235.278V104.565L235.278 104.574L235.278 109.5C235.278 110.001 235.684 110.407 236.185 110.407C236.686 110.407 237.092 110.001 237.092 109.5L237.092 105.53H238H238.907V109.5C238.907 110.001 239.314 110.407 239.815 110.407C240.316 110.407 240.722 110.001 240.722 109.5V104.574L240.722 104.567V101.627H243.918C244.369 101.627 244.735 101.261 244.735 100.81C244.735 100.359 244.369 99.9939 243.918 99.9939Z",fill:"white"}),(0,C.createElement)("path",{d:"M196.804 123.212H194.904V122.445H196.804C197.172 122.445 197.469 122.387 197.697 122.27C197.925 122.152 198.091 121.99 198.195 121.781C198.303 121.573 198.356 121.335 198.356 121.068C198.356 120.824 198.303 120.595 198.195 120.38C198.091 120.165 197.925 119.993 197.697 119.862C197.469 119.729 197.172 119.662 196.804 119.662H195.124V126H194.182V118.891H196.804C197.341 118.891 197.795 118.983 198.166 119.169C198.537 119.354 198.819 119.612 199.011 119.94C199.203 120.266 199.299 120.639 199.299 121.059C199.299 121.514 199.203 121.903 199.011 122.226C198.819 122.548 198.537 122.794 198.166 122.963C197.795 123.129 197.341 123.212 196.804 123.212ZM201.257 121.547V126H200.354V120.717H201.232L201.257 121.547ZM202.907 120.688L202.902 121.527C202.827 121.511 202.756 121.501 202.688 121.498C202.622 121.492 202.548 121.488 202.463 121.488C202.255 121.488 202.071 121.521 201.911 121.586C201.752 121.651 201.617 121.742 201.506 121.859C201.395 121.977 201.307 122.117 201.242 122.279C201.18 122.439 201.14 122.615 201.12 122.807L200.866 122.953C200.866 122.634 200.897 122.335 200.959 122.055C201.024 121.775 201.123 121.527 201.257 121.312C201.39 121.094 201.56 120.925 201.765 120.805C201.973 120.681 202.22 120.619 202.507 120.619C202.572 120.619 202.647 120.627 202.731 120.644C202.816 120.657 202.875 120.671 202.907 120.688ZM203.405 123.417V123.305C203.405 122.924 203.461 122.571 203.571 122.245C203.682 121.916 203.841 121.632 204.05 121.391C204.258 121.146 204.51 120.958 204.807 120.824C205.103 120.688 205.435 120.619 205.803 120.619C206.174 120.619 206.507 120.688 206.804 120.824C207.103 120.958 207.357 121.146 207.565 121.391C207.777 121.632 207.938 121.916 208.049 122.245C208.16 122.571 208.215 122.924 208.215 123.305V123.417C208.215 123.798 208.16 124.151 208.049 124.477C207.938 124.802 207.777 125.087 207.565 125.331C207.357 125.572 207.105 125.761 206.809 125.897C206.516 126.031 206.184 126.098 205.812 126.098C205.441 126.098 205.108 126.031 204.812 125.897C204.515 125.761 204.261 125.572 204.05 125.331C203.841 125.087 203.682 124.802 203.571 124.477C203.461 124.151 203.405 123.798 203.405 123.417ZM204.309 123.305V123.417C204.309 123.681 204.34 123.93 204.401 124.164C204.463 124.395 204.556 124.6 204.68 124.779C204.807 124.958 204.965 125.1 205.153 125.204C205.342 125.305 205.562 125.355 205.812 125.355C206.06 125.355 206.276 125.305 206.462 125.204C206.651 125.1 206.807 124.958 206.931 124.779C207.054 124.6 207.147 124.395 207.209 124.164C207.274 123.93 207.307 123.681 207.307 123.417V123.305C207.307 123.044 207.274 122.799 207.209 122.567C207.147 122.333 207.053 122.126 206.926 121.947C206.802 121.765 206.646 121.622 206.457 121.518C206.271 121.413 206.053 121.361 205.803 121.361C205.555 121.361 205.337 121.413 205.148 121.518C204.963 121.622 204.807 121.765 204.68 121.947C204.556 122.126 204.463 122.333 204.401 122.567C204.34 122.799 204.309 123.044 204.309 123.305ZM210.876 125.185L212.321 120.717H213.244L211.345 126H210.739L210.876 125.185ZM209.67 120.717L211.159 125.209L211.262 126H210.656L208.742 120.717H209.67ZM216.237 126.098C215.869 126.098 215.536 126.036 215.236 125.912C214.94 125.785 214.685 125.608 214.47 125.38C214.258 125.152 214.095 124.882 213.981 124.569C213.868 124.257 213.811 123.915 213.811 123.544V123.339C213.811 122.909 213.874 122.527 214.001 122.191C214.128 121.853 214.3 121.566 214.519 121.332C214.737 121.098 214.984 120.92 215.261 120.8C215.537 120.679 215.824 120.619 216.12 120.619C216.498 120.619 216.823 120.684 217.097 120.814C217.373 120.945 217.6 121.127 217.775 121.361C217.951 121.592 218.081 121.866 218.166 122.182C218.251 122.494 218.293 122.836 218.293 123.207V123.612H214.348V122.875H217.39V122.807C217.377 122.572 217.328 122.344 217.243 122.123C217.162 121.902 217.032 121.719 216.853 121.576C216.674 121.433 216.429 121.361 216.12 121.361C215.915 121.361 215.726 121.405 215.554 121.493C215.381 121.578 215.233 121.705 215.109 121.874C214.986 122.043 214.89 122.25 214.821 122.494C214.753 122.738 214.719 123.02 214.719 123.339V123.544C214.719 123.795 214.753 124.031 214.821 124.252C214.893 124.47 214.995 124.662 215.129 124.828C215.266 124.994 215.43 125.124 215.622 125.219C215.817 125.313 216.039 125.36 216.286 125.36C216.605 125.36 216.875 125.295 217.097 125.165C217.318 125.035 217.512 124.861 217.678 124.643L218.225 125.077C218.111 125.25 217.966 125.414 217.79 125.57C217.614 125.727 217.398 125.854 217.141 125.951C216.887 126.049 216.586 126.098 216.237 126.098ZM220.251 121.845V126H219.348V120.717H220.202L220.251 121.845ZM220.036 123.158L219.66 123.144C219.663 122.782 219.717 122.449 219.821 122.143C219.925 121.833 220.072 121.565 220.261 121.337C220.45 121.109 220.674 120.933 220.935 120.81C221.198 120.683 221.49 120.619 221.809 120.619C222.069 120.619 222.303 120.655 222.512 120.727C222.72 120.795 222.897 120.906 223.044 121.059C223.194 121.212 223.308 121.41 223.386 121.654C223.464 121.895 223.503 122.19 223.503 122.538V126H222.595V122.528C222.595 122.252 222.554 122.03 222.473 121.864C222.391 121.695 222.272 121.573 222.116 121.498C221.96 121.42 221.768 121.381 221.54 121.381C221.315 121.381 221.11 121.428 220.925 121.522C220.743 121.617 220.585 121.747 220.451 121.913C220.321 122.079 220.218 122.27 220.144 122.484C220.072 122.696 220.036 122.921 220.036 123.158ZM230.124 119.521L227.771 126H226.809L229.519 118.891H230.139L230.124 119.521ZM232.097 126L229.738 119.521L229.724 118.891H230.344L233.063 126H232.097ZM231.975 123.368V124.14H227.98V123.368H231.975ZM235.993 125.355C236.208 125.355 236.407 125.312 236.589 125.224C236.771 125.136 236.921 125.015 237.038 124.862C237.155 124.706 237.222 124.529 237.238 124.33H238.098C238.081 124.643 237.976 124.934 237.78 125.204C237.588 125.471 237.336 125.688 237.023 125.854C236.711 126.016 236.368 126.098 235.993 126.098C235.596 126.098 235.249 126.028 234.953 125.888C234.66 125.748 234.416 125.556 234.221 125.312C234.029 125.067 233.884 124.787 233.786 124.472C233.692 124.153 233.645 123.816 233.645 123.461V123.256C233.645 122.901 233.692 122.566 233.786 122.25C233.884 121.931 234.029 121.649 234.221 121.405C234.416 121.161 234.66 120.969 234.953 120.829C235.249 120.689 235.596 120.619 235.993 120.619C236.407 120.619 236.768 120.704 237.077 120.873C237.386 121.039 237.629 121.267 237.805 121.557C237.984 121.843 238.081 122.169 238.098 122.533H237.238C237.222 122.315 237.16 122.118 237.053 121.942C236.949 121.767 236.805 121.627 236.623 121.522C236.444 121.415 236.234 121.361 235.993 121.361C235.716 121.361 235.484 121.417 235.295 121.527C235.109 121.635 234.961 121.781 234.851 121.967C234.743 122.149 234.665 122.353 234.616 122.577C234.571 122.799 234.548 123.025 234.548 123.256V123.461C234.548 123.692 234.571 123.92 234.616 124.145C234.662 124.369 234.738 124.573 234.846 124.755C234.956 124.937 235.104 125.084 235.29 125.194C235.479 125.302 235.713 125.355 235.993 125.355ZM241.228 125.355C241.442 125.355 241.641 125.312 241.823 125.224C242.006 125.136 242.155 125.015 242.272 124.862C242.39 124.706 242.456 124.529 242.473 124.33H243.332C243.316 124.643 243.21 124.934 243.015 125.204C242.823 125.471 242.57 125.688 242.258 125.854C241.945 126.016 241.602 126.098 241.228 126.098C240.83 126.098 240.484 126.028 240.188 125.888C239.895 125.748 239.65 125.556 239.455 125.312C239.263 125.067 239.118 124.787 239.021 124.472C238.926 124.153 238.879 123.816 238.879 123.461V123.256C238.879 122.901 238.926 122.566 239.021 122.25C239.118 121.931 239.263 121.649 239.455 121.405C239.65 121.161 239.895 120.969 240.188 120.829C240.484 120.689 240.83 120.619 241.228 120.619C241.641 120.619 242.002 120.704 242.312 120.873C242.621 121.039 242.863 121.267 243.039 121.557C243.218 121.843 243.316 122.169 243.332 122.533H242.473C242.456 122.315 242.395 122.118 242.287 121.942C242.183 121.767 242.04 121.627 241.857 121.522C241.678 121.415 241.468 121.361 241.228 121.361C240.951 121.361 240.718 121.417 240.529 121.527C240.344 121.635 240.196 121.781 240.085 121.967C239.978 122.149 239.899 122.353 239.851 122.577C239.805 122.799 239.782 123.025 239.782 123.256V123.461C239.782 123.692 239.805 123.92 239.851 124.145C239.896 124.369 239.973 124.573 240.08 124.755C240.191 124.937 240.339 125.084 240.524 125.194C240.713 125.302 240.948 125.355 241.228 125.355ZM246.54 126.098C246.172 126.098 245.839 126.036 245.539 125.912C245.243 125.785 244.987 125.608 244.772 125.38C244.561 125.152 244.398 124.882 244.284 124.569C244.17 124.257 244.113 123.915 244.113 123.544V123.339C244.113 122.909 244.177 122.527 244.304 122.191C244.431 121.853 244.603 121.566 244.821 121.332C245.039 121.098 245.287 120.92 245.563 120.8C245.84 120.679 246.127 120.619 246.423 120.619C246.8 120.619 247.126 120.684 247.399 120.814C247.676 120.945 247.902 121.127 248.078 121.361C248.254 121.592 248.384 121.866 248.469 122.182C248.553 122.494 248.596 122.836 248.596 123.207V123.612H244.65V122.875H247.692V122.807C247.679 122.572 247.631 122.344 247.546 122.123C247.465 121.902 247.334 121.719 247.155 121.576C246.976 121.433 246.732 121.361 246.423 121.361C246.218 121.361 246.029 121.405 245.856 121.493C245.684 121.578 245.536 121.705 245.412 121.874C245.288 122.043 245.192 122.25 245.124 122.494C245.056 122.738 245.021 123.02 245.021 123.339V123.544C245.021 123.795 245.056 124.031 245.124 124.252C245.196 124.47 245.298 124.662 245.432 124.828C245.568 124.994 245.733 125.124 245.925 125.219C246.12 125.313 246.341 125.36 246.589 125.36C246.908 125.36 247.178 125.295 247.399 125.165C247.621 125.035 247.814 124.861 247.98 124.643L248.527 125.077C248.413 125.25 248.269 125.414 248.093 125.57C247.917 125.727 247.701 125.854 247.443 125.951C247.189 126.049 246.888 126.098 246.54 126.098ZM252.727 124.599C252.727 124.468 252.697 124.348 252.639 124.237C252.583 124.123 252.468 124.021 252.292 123.93C252.119 123.835 251.859 123.754 251.511 123.686C251.218 123.624 250.952 123.55 250.715 123.466C250.48 123.381 250.28 123.279 250.114 123.158C249.951 123.038 249.826 122.896 249.738 122.733C249.65 122.571 249.606 122.38 249.606 122.162C249.606 121.954 249.652 121.757 249.743 121.571C249.838 121.386 249.969 121.221 250.139 121.078C250.311 120.935 250.518 120.823 250.759 120.741C251 120.66 251.268 120.619 251.564 120.619C251.988 120.619 252.349 120.694 252.648 120.844C252.948 120.993 253.177 121.194 253.337 121.444C253.496 121.692 253.576 121.967 253.576 122.27H252.673C252.673 122.123 252.629 121.981 252.541 121.845C252.456 121.705 252.331 121.589 252.165 121.498C252.002 121.407 251.802 121.361 251.564 121.361C251.314 121.361 251.11 121.4 250.954 121.479C250.801 121.553 250.689 121.649 250.617 121.767C250.549 121.884 250.515 122.007 250.515 122.138C250.515 122.235 250.531 122.323 250.563 122.401C250.599 122.476 250.661 122.546 250.749 122.611C250.837 122.673 250.961 122.732 251.12 122.787C251.28 122.842 251.483 122.898 251.73 122.953C252.163 123.051 252.52 123.168 252.8 123.305C253.08 123.441 253.288 123.609 253.425 123.808C253.562 124.006 253.63 124.247 253.63 124.53C253.63 124.761 253.581 124.973 253.483 125.165C253.389 125.357 253.251 125.523 253.068 125.663C252.889 125.8 252.674 125.907 252.424 125.985C252.176 126.06 251.898 126.098 251.589 126.098C251.123 126.098 250.729 126.015 250.407 125.849C250.085 125.683 249.841 125.468 249.675 125.204C249.509 124.94 249.426 124.662 249.426 124.369H250.334C250.347 124.617 250.419 124.813 250.549 124.96C250.679 125.103 250.839 125.206 251.027 125.268C251.216 125.326 251.403 125.355 251.589 125.355C251.836 125.355 252.043 125.323 252.209 125.258C252.378 125.193 252.507 125.103 252.595 124.989C252.683 124.875 252.727 124.745 252.727 124.599ZM257.893 124.599C257.893 124.468 257.863 124.348 257.805 124.237C257.749 124.123 257.634 124.021 257.458 123.93C257.285 123.835 257.025 123.754 256.677 123.686C256.384 123.624 256.118 123.55 255.881 123.466C255.646 123.381 255.446 123.279 255.28 123.158C255.118 123.038 254.992 122.896 254.904 122.733C254.816 122.571 254.772 122.38 254.772 122.162C254.772 121.954 254.818 121.757 254.909 121.571C255.004 121.386 255.135 121.221 255.305 121.078C255.477 120.935 255.684 120.823 255.925 120.741C256.166 120.66 256.434 120.619 256.73 120.619C257.154 120.619 257.515 120.694 257.814 120.844C258.114 120.993 258.343 121.194 258.503 121.444C258.662 121.692 258.742 121.967 258.742 122.27H257.839C257.839 122.123 257.795 121.981 257.707 121.845C257.622 121.705 257.497 121.589 257.331 121.498C257.168 121.407 256.968 121.361 256.73 121.361C256.48 121.361 256.276 121.4 256.12 121.479C255.967 121.553 255.855 121.649 255.783 121.767C255.715 121.884 255.681 122.007 255.681 122.138C255.681 122.235 255.697 122.323 255.729 122.401C255.765 122.476 255.827 122.546 255.915 122.611C256.003 122.673 256.127 122.732 256.286 122.787C256.446 122.842 256.649 122.898 256.896 122.953C257.329 123.051 257.686 123.168 257.966 123.305C258.246 123.441 258.454 123.609 258.591 123.808C258.728 124.006 258.796 124.247 258.796 124.53C258.796 124.761 258.747 124.973 258.649 125.165C258.555 125.357 258.417 125.523 258.234 125.663C258.055 125.8 257.84 125.907 257.59 125.985C257.342 126.06 257.064 126.098 256.755 126.098C256.289 126.098 255.896 126.015 255.573 125.849C255.251 125.683 255.007 125.468 254.841 125.204C254.675 124.94 254.592 124.662 254.592 124.369H255.5C255.513 124.617 255.585 124.813 255.715 124.96C255.845 125.103 256.005 125.206 256.193 125.268C256.382 125.326 256.569 125.355 256.755 125.355C257.002 125.355 257.209 125.323 257.375 125.258C257.544 125.193 257.673 125.103 257.761 124.989C257.849 124.875 257.893 124.745 257.893 124.599ZM260.964 120.717V126H260.056V120.717H260.964ZM259.987 119.315C259.987 119.169 260.031 119.045 260.119 118.944C260.21 118.843 260.344 118.793 260.52 118.793C260.692 118.793 260.824 118.843 260.915 118.944C261.009 119.045 261.057 119.169 261.057 119.315C261.057 119.455 261.009 119.576 260.915 119.677C260.824 119.774 260.692 119.823 260.52 119.823C260.344 119.823 260.21 119.774 260.119 119.677C260.031 119.576 259.987 119.455 259.987 119.315ZM262.409 118.5H263.317V124.975L263.239 126H262.409V118.5ZM266.887 123.314V123.417C266.887 123.801 266.841 124.158 266.75 124.486C266.659 124.812 266.525 125.095 266.35 125.336C266.174 125.577 265.959 125.764 265.705 125.897C265.451 126.031 265.16 126.098 264.831 126.098C264.496 126.098 264.201 126.041 263.947 125.927C263.697 125.81 263.485 125.642 263.312 125.424C263.14 125.206 263.002 124.942 262.897 124.633C262.797 124.324 262.727 123.975 262.688 123.588V123.139C262.727 122.748 262.797 122.398 262.897 122.089C263.002 121.78 263.14 121.516 263.312 121.298C263.485 121.076 263.697 120.909 263.947 120.795C264.198 120.678 264.489 120.619 264.821 120.619C265.153 120.619 265.448 120.684 265.705 120.814C265.962 120.941 266.177 121.124 266.35 121.361C266.525 121.599 266.659 121.884 266.75 122.216C266.841 122.545 266.887 122.911 266.887 123.314ZM265.979 123.417V123.314C265.979 123.051 265.954 122.803 265.905 122.572C265.856 122.338 265.778 122.133 265.671 121.957C265.563 121.778 265.422 121.638 265.246 121.537C265.07 121.433 264.854 121.381 264.597 121.381C264.369 121.381 264.17 121.42 264.001 121.498C263.835 121.576 263.693 121.682 263.576 121.815C263.459 121.946 263.363 122.095 263.288 122.265C263.216 122.431 263.163 122.603 263.127 122.782V123.959C263.179 124.187 263.264 124.407 263.381 124.618C263.501 124.826 263.661 124.997 263.859 125.131C264.061 125.264 264.31 125.331 264.606 125.331C264.851 125.331 265.059 125.282 265.231 125.185C265.407 125.084 265.549 124.945 265.656 124.77C265.767 124.594 265.848 124.39 265.9 124.159C265.952 123.928 265.979 123.681 265.979 123.417ZM269.011 120.717V126H268.103V120.717H269.011ZM268.034 119.315C268.034 119.169 268.078 119.045 268.166 118.944C268.257 118.843 268.391 118.793 268.566 118.793C268.739 118.793 268.871 118.843 268.962 118.944C269.056 119.045 269.104 119.169 269.104 119.315C269.104 119.455 269.056 119.576 268.962 119.677C268.871 119.774 268.739 119.823 268.566 119.823C268.391 119.823 268.257 119.774 268.166 119.677C268.078 119.576 268.034 119.455 268.034 119.315ZM271.442 118.5V126H270.534V118.5H271.442ZM273.874 120.717V126H272.966V120.717H273.874ZM272.897 119.315C272.897 119.169 272.941 119.045 273.029 118.944C273.12 118.843 273.254 118.793 273.43 118.793C273.602 118.793 273.734 118.843 273.825 118.944C273.92 119.045 273.967 119.169 273.967 119.315C273.967 119.455 273.92 119.576 273.825 119.677C273.734 119.774 273.602 119.823 273.43 119.823C273.254 119.823 273.12 119.774 273.029 119.677C272.941 119.576 272.897 119.455 272.897 119.315ZM277.536 120.717V121.41H274.68V120.717H277.536ZM275.646 119.433H276.55V124.691C276.55 124.87 276.577 125.006 276.633 125.097C276.688 125.188 276.76 125.248 276.848 125.277C276.936 125.307 277.03 125.321 277.131 125.321C277.206 125.321 277.284 125.315 277.365 125.302C277.45 125.285 277.513 125.272 277.556 125.263L277.561 126C277.489 126.023 277.395 126.044 277.277 126.063C277.163 126.086 277.025 126.098 276.862 126.098C276.641 126.098 276.438 126.054 276.252 125.966C276.066 125.878 275.918 125.731 275.808 125.526C275.7 125.318 275.646 125.038 275.646 124.687V119.433ZM280.08 125.453L281.55 120.717H282.517L280.397 126.815C280.349 126.946 280.284 127.086 280.202 127.235C280.124 127.388 280.023 127.533 279.899 127.67C279.776 127.807 279.626 127.917 279.45 128.002C279.278 128.09 279.071 128.134 278.83 128.134C278.758 128.134 278.667 128.124 278.557 128.104C278.446 128.085 278.368 128.069 278.322 128.056L278.317 127.323C278.343 127.326 278.384 127.33 278.439 127.333C278.498 127.34 278.539 127.343 278.562 127.343C278.767 127.343 278.941 127.315 279.084 127.26C279.227 127.208 279.348 127.118 279.445 126.991C279.546 126.868 279.632 126.697 279.704 126.479L280.08 125.453ZM279.001 120.717L280.373 124.818L280.607 125.771L279.958 126.103L278.015 120.717H279.001Z",fill:"#475569"}),(0,C.createElement)("defs",null,(0,C.createElement)("clipPath",{id:"clip0_37_936"},(0,C.createElement)("rect",{width:"10",height:"10",fill:"white",transform:"translate(263 64)"})))),a=window.wp.blockEditor,i=function({isSelected:e,attributes:t}){const V=(0,a.useBlockProps)();return t.isPreview?(0,C.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Z):(0,C.createElement)(C.Fragment,null,(0,C.createElement)("div",{...V},e?(0,C.createElement)("div",null,(0,C.createElement)(M,null)):Z),(0,C.createElement)(a.InspectorControls,null,(0,C.createElement)("div",{style:{padding:"20px"}},(0,C.createElement)(M,null))))},{CaptchaOptions:c,CaptchaBlockEdit:o,CaptchaBlockTip:d}=JetFBComponents,{__:s}=wp.i18n,h={name:"friendly",title:s("Friendly Captcha","jet-form-builder"),isActive:(C,e)=>C.provider===e.provider,description:s("Set the Friendly Captcha settings in the Captcha Container block to add an anti-bot solution that generates a unique crypto puzzle for each visitor.","jet-form-builder"),icon:(0,C.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("path",{d:"M49.7875 46.6163C50.1279 46.1814 50.0512 45.5529 49.6163 45.2125C49.1814 44.8721 48.5529 44.9487 48.2125 45.3837L45.0179 49.4657L43.7289 48.0932C43.3509 47.6906 42.718 47.6707 42.3154 48.0488C41.9128 48.4269 41.893 49.0597 42.2711 49.4623L43.959 51.2597C44.5884 51.9299 45.6671 51.8813 46.2337 51.1573L49.7875 46.6163Z",fill:"currentColor"}),(0,C.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M50.2929 14.9131C50.6834 14.5226 50.6847 13.8877 50.2786 13.5133C45.7446 9.33346 39.7941 7 33.603 7C20.0242 7 9 18.0242 9 31.603C9 45.1818 20.0242 56.206 33.603 56.206C35.5725 56.206 37.5176 55.9699 39.4005 55.5133C41.1615 57.0613 43.4711 58 46 58C51.5229 58 56 53.5229 56 48C56 42.4772 51.5229 38 46 38C40.4772 38 36 42.4772 36 48C36 48.2199 36.0071 48.4382 36.0211 48.6546C35.2246 48.7675 34.4168 48.8251 33.603 48.8251C24.0979 48.8251 16.3809 41.1081 16.3809 31.603C16.3809 22.0979 24.0979 14.3809 33.603 14.3809C37.8363 14.3809 41.9089 15.9394 45.0536 18.7388C45.4661 19.106 46.0975 19.1085 46.488 18.718L50.2929 14.9131ZM36.3489 50.6281C35.4448 50.7586 34.5273 50.8251 33.603 50.8251C29.115 50.8251 24.9843 49.284 21.7118 46.7025L19.3079 49.1064C23.2042 52.2932 28.1821 54.206 33.603 54.206C35.0402 54.206 36.4632 54.0692 37.8548 53.8026C37.1779 52.8543 36.6626 51.7827 36.3489 50.6281ZM33.603 9C38.9274 9 44.0581 10.8786 48.1089 14.2687L45.7072 16.6704C42.2994 13.9079 38.0299 12.3809 33.603 12.3809C22.9933 12.3809 14.3809 20.9933 14.3809 31.603C14.3809 37.0044 16.6131 41.8881 20.2046 45.3813L17.8147 47.7712C13.6112 43.6656 11 37.9366 11 31.603C11 19.1288 21.1288 9 33.603 9ZM38 48C38 43.5817 41.5817 40 46 40C50.4183 40 54 43.5817 54 48C54 52.4183 50.4183 56 46 56C41.5817 56 38 52.4183 38 48Z",fill:"currentColor"}),(0,C.createElement)("path",{d:"M26.2222 35.2935C28.2604 35.2935 29.9126 33.6412 29.9126 31.603C29.9126 29.5648 28.2604 27.9126 26.2222 27.9126C24.184 27.9126 22.5317 29.5648 22.5317 31.603C22.5317 33.6412 24.184 35.2935 26.2222 35.2935Z",fill:"currentColor"}),(0,C.createElement)("path",{d:"M40.9839 35.2935C43.0221 35.2935 44.6744 33.6412 44.6744 31.603C44.6744 29.5648 43.0221 27.9126 40.9839 27.9126C38.9457 27.9126 37.2935 29.5648 37.2935 31.603C37.2935 33.6412 38.9457 35.2935 40.9839 35.2935Z",fill:"currentColor"})),scope:["block","inserter"],attributes:{provider:"friendly"}},{registerPlugin:m}=wp.plugins,{registerBlockVariation:p}=wp.blocks;p("jet-forms/captcha-container",h),m("jf-friendly-captcha",{render:function(){return(0,C.createElement)(C.Fragment,null,(0,C.createElement)(c,{provider:"friendly"},e=>(0,C.createElement)(C.Fragment,null,(0,C.createElement)(M,{...e}),(0,C.createElement)(d,null))),(0,C.createElement)(o,{provider:"friendly"},e=>(0,C.createElement)(i,{...e})))}})})(); \ No newline at end of file +(()=>{"use strict";const C=window.React,e=window.wp.i18n,t=window.wp.components,{ToggleControl:V,BaseHelp:l}=JetFBComponents,{useCaptchaProvider:H}=JetFBHooks,{useEffect:L}=wp.element,{globalTab:r}=JetFBActions,n=r({slug:"captcha-tab",element:"friendly",empty:{}}),M=function(){const[r,M]=H(),Z=r.use_global?n:r;return L((()=>{M({key:Z.key,secret:Z.secret,threshold:Z.threshold})}),[r.use_global]),(0,C.createElement)(C.Fragment,null,(0,C.createElement)(V,{checked:r.use_global,onChange:C=>M({use_global:C})},(0,e.__)("Use","jet-form-builder")+" ",(0,C.createElement)("a",{href:JetFormEditorData.global_settings_url+"#captcha-tab__friendly"},(0,e.__)("Global Settings","jet-form-builder"))),(0,C.createElement)(t.TextControl,{label:(0,e.__)("Site Key:","jet-form-builder"),value:Z.key,disabled:r.use_global,onChange:C=>M({key:C})}),(0,C.createElement)(l,null,(0,e.__)("It can be found on the page listing your Applications.","jet-form-builder")," ",(0,C.createElement)(t.ExternalLink,{href:"https://docs.friendlycaptcha.com/#/installation?id=_1-generating-a-sitekey"},(0,e.__)("Or follow this guide","jet-form-builder"))),(0,C.createElement)(t.TextControl,{label:(0,e.__)("Secret Key:","jet-form-builder"),value:Z.secret,help:(0,e.__)("It can be found on the page listing your API keys.","jet-form-builder"),disabled:r.use_global,onChange:C=>M({secret:C})}))},Z=(0,C.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("rect",{width:"298",height:"144",rx:"4",fill:"#E2E8F0"}),(0,C.createElement)("rect",{x:"15",y:"15",width:"268",height:"64",rx:"4",fill:"white"}),(0,C.createElement)("rect",{opacity:"0.2",x:"25",y:"22",width:"50",height:"50",fill:"#F8FAFC"}),(0,C.createElement)("path",{d:"M36 37.618C36 37.2393 36.214 36.893 36.5528 36.7236L49.5528 30.2236C49.8343 30.0828 50.1657 30.0828 50.4472 30.2236L63.4472 36.7236C63.786 36.893 64 37.2393 64 37.618V45.6103C64 53.64 58.9523 60.8028 51.3904 63.5034L50.3363 63.8799C50.1188 63.9576 49.8812 63.9576 49.6637 63.8799L48.6096 63.5034C41.0477 60.8028 36 53.64 36 45.6103V37.618Z",fill:"#0F172A"}),(0,C.createElement)("path",{d:"M47.25 50.8225L43.4275 47L42.1259 48.2925L47.25 53.4166L58.25 42.4166L56.9575 41.1241L47.25 50.8225Z",fill:"white"}),(0,C.createElement)("path",{d:"M77.9375 40.625V52H76.4297V40.625H77.9375ZM81.9219 40V41C81.9219 41.3125 81.8672 41.6432 81.7578 41.9922C81.6536 42.3359 81.5 42.6693 81.2969 42.9922C81.0938 43.3099 80.849 43.5885 80.5625 43.8281L79.7344 43.2578C79.9792 42.9141 80.1641 42.5625 80.2891 42.2031C80.4193 41.8385 80.4844 41.4453 80.4844 41.0234V40H81.9219ZM84.9453 45.2266V52H83.4922V43.5469H84.8672L84.9453 45.2266ZM84.6484 47.4531L83.9766 47.4297C83.9818 46.8516 84.0573 46.3177 84.2031 45.8281C84.349 45.3333 84.5651 44.9036 84.8516 44.5391C85.138 44.1745 85.4948 43.8932 85.9219 43.6953C86.349 43.4922 86.8438 43.3906 87.4062 43.3906C87.8021 43.3906 88.1667 43.4479 88.5 43.5625C88.8333 43.6719 89.1224 43.8464 89.3672 44.0859C89.612 44.3255 89.8021 44.6328 89.9375 45.0078C90.0729 45.3828 90.1406 45.8359 90.1406 46.3672V52H88.6953V46.4375C88.6953 45.9948 88.6198 45.6406 88.4688 45.375C88.3229 45.1094 88.1146 44.9167 87.8438 44.7969C87.5729 44.6719 87.2552 44.6094 86.8906 44.6094C86.4635 44.6094 86.1068 44.6849 85.8203 44.8359C85.5339 44.987 85.3047 45.1953 85.1328 45.4609C84.9609 45.7266 84.8359 46.0312 84.7578 46.375C84.6849 46.7135 84.6484 47.0729 84.6484 47.4531ZM90.125 46.6562L89.1562 46.9531C89.1615 46.4896 89.237 46.0443 89.3828 45.6172C89.5339 45.1901 89.75 44.8099 90.0312 44.4766C90.3177 44.1432 90.6693 43.8802 91.0859 43.6875C91.5026 43.4896 91.9792 43.3906 92.5156 43.3906C92.9688 43.3906 93.3698 43.4505 93.7188 43.5703C94.0729 43.6901 94.3698 43.875 94.6094 44.125C94.8542 44.3698 95.0391 44.6849 95.1641 45.0703C95.2891 45.4557 95.3516 45.9141 95.3516 46.4453V52H93.8984V46.4297C93.8984 45.9557 93.8229 45.5885 93.6719 45.3281C93.526 45.0625 93.3177 44.8776 93.0469 44.7734C92.7812 44.6641 92.4635 44.6094 92.0938 44.6094C91.776 44.6094 91.4948 44.6641 91.25 44.7734C91.0052 44.8828 90.7995 45.0339 90.6328 45.2266C90.4661 45.4141 90.3385 45.6302 90.25 45.875C90.1667 46.1198 90.125 46.3802 90.125 46.6562ZM102.953 45.3516V52H101.508V43.5469H102.875L102.953 45.3516ZM102.609 47.4531L102.008 47.4297C102.013 46.8516 102.099 46.3177 102.266 45.8281C102.432 45.3333 102.667 44.9036 102.969 44.5391C103.271 44.1745 103.63 43.8932 104.047 43.6953C104.469 43.4922 104.935 43.3906 105.445 43.3906C105.862 43.3906 106.237 43.4479 106.57 43.5625C106.904 43.6719 107.188 43.849 107.422 44.0938C107.661 44.3385 107.844 44.6562 107.969 45.0469C108.094 45.4323 108.156 45.9036 108.156 46.4609V52H106.703V46.4453C106.703 46.0026 106.638 45.6484 106.508 45.3828C106.378 45.112 106.188 44.9167 105.938 44.7969C105.688 44.6719 105.38 44.6094 105.016 44.6094C104.656 44.6094 104.328 44.6849 104.031 44.8359C103.74 44.987 103.487 45.1953 103.273 45.4609C103.065 45.7266 102.901 46.0312 102.781 46.375C102.667 46.7135 102.609 47.0729 102.609 47.4531ZM109.969 47.8672V47.6875C109.969 47.0781 110.057 46.513 110.234 45.9922C110.411 45.4661 110.667 45.0104 111 44.625C111.333 44.2344 111.737 43.9323 112.211 43.7188C112.685 43.5 113.216 43.3906 113.805 43.3906C114.398 43.3906 114.932 43.5 115.406 43.7188C115.885 43.9323 116.292 44.2344 116.625 44.625C116.964 45.0104 117.221 45.4661 117.398 45.9922C117.576 46.513 117.664 47.0781 117.664 47.6875V47.8672C117.664 48.4766 117.576 49.0417 117.398 49.5625C117.221 50.0833 116.964 50.5391 116.625 50.9297C116.292 51.3151 115.888 51.6172 115.414 51.8359C114.945 52.0495 114.414 52.1562 113.82 52.1562C113.227 52.1562 112.693 52.0495 112.219 51.8359C111.745 51.6172 111.339 51.3151 111 50.9297C110.667 50.5391 110.411 50.0833 110.234 49.5625C110.057 49.0417 109.969 48.4766 109.969 47.8672ZM111.414 47.6875V47.8672C111.414 48.2891 111.464 48.6875 111.562 49.0625C111.661 49.4323 111.81 49.7604 112.008 50.0469C112.211 50.3333 112.464 50.5599 112.766 50.7266C113.068 50.888 113.419 50.9688 113.82 50.9688C114.216 50.9688 114.562 50.888 114.859 50.7266C115.161 50.5599 115.411 50.3333 115.609 50.0469C115.807 49.7604 115.956 49.4323 116.055 49.0625C116.159 48.6875 116.211 48.2891 116.211 47.8672V47.6875C116.211 47.2708 116.159 46.8776 116.055 46.5078C115.956 46.1328 115.805 45.8021 115.602 45.5156C115.404 45.224 115.154 44.9948 114.852 44.8281C114.555 44.6615 114.206 44.5781 113.805 44.5781C113.409 44.5781 113.06 44.6615 112.758 44.8281C112.461 44.9948 112.211 45.224 112.008 45.5156C111.81 45.8021 111.661 46.1328 111.562 46.5078C111.464 46.8776 111.414 47.2708 111.414 47.6875ZM123.016 43.5469V44.6562H118.445V43.5469H123.016ZM119.992 41.4922H121.438V49.9062C121.438 50.1927 121.482 50.4089 121.57 50.5547C121.659 50.7005 121.773 50.7969 121.914 50.8438C122.055 50.8906 122.206 50.9141 122.367 50.9141C122.487 50.9141 122.612 50.9036 122.742 50.8828C122.878 50.8568 122.979 50.8359 123.047 50.8203L123.055 52C122.94 52.0365 122.789 52.0703 122.602 52.1016C122.419 52.138 122.198 52.1562 121.938 52.1562C121.583 52.1562 121.258 52.0859 120.961 51.9453C120.664 51.8047 120.427 51.5703 120.25 51.2422C120.078 50.9089 119.992 50.4609 119.992 49.8984V41.4922ZM133.664 50.5547V46.2031C133.664 45.8698 133.596 45.5807 133.461 45.3359C133.331 45.0859 133.133 44.8932 132.867 44.7578C132.602 44.6224 132.273 44.5547 131.883 44.5547C131.518 44.5547 131.198 44.6172 130.922 44.7422C130.651 44.8672 130.438 45.0312 130.281 45.2344C130.13 45.4375 130.055 45.6562 130.055 45.8906H128.609C128.609 45.5885 128.688 45.2891 128.844 44.9922C129 44.6953 129.224 44.4271 129.516 44.1875C129.812 43.9427 130.167 43.75 130.578 43.6094C130.995 43.4635 131.458 43.3906 131.969 43.3906C132.583 43.3906 133.125 43.4948 133.594 43.7031C134.068 43.9115 134.438 44.2266 134.703 44.6484C134.974 45.0651 135.109 45.5885 135.109 46.2188V50.1562C135.109 50.4375 135.133 50.737 135.18 51.0547C135.232 51.3724 135.307 51.6458 135.406 51.875V52H133.898C133.826 51.8333 133.768 51.612 133.727 51.3359C133.685 51.0547 133.664 50.7943 133.664 50.5547ZM133.914 46.875L133.93 47.8906H132.469C132.057 47.8906 131.69 47.9245 131.367 47.9922C131.044 48.0547 130.773 48.151 130.555 48.2812C130.336 48.4115 130.169 48.5755 130.055 48.7734C129.94 48.9661 129.883 49.1927 129.883 49.4531C129.883 49.7188 129.943 49.9609 130.062 50.1797C130.182 50.3984 130.362 50.5729 130.602 50.7031C130.846 50.8281 131.146 50.8906 131.5 50.8906C131.943 50.8906 132.333 50.7969 132.672 50.6094C133.01 50.4219 133.279 50.1927 133.477 49.9219C133.68 49.651 133.789 49.388 133.805 49.1328L134.422 49.8281C134.385 50.0469 134.286 50.2891 134.125 50.5547C133.964 50.8203 133.747 51.0755 133.477 51.3203C133.211 51.5599 132.893 51.7604 132.523 51.9219C132.159 52.0781 131.747 52.1562 131.289 52.1562C130.716 52.1562 130.214 52.0443 129.781 51.8203C129.354 51.5964 129.021 51.2969 128.781 50.9219C128.547 50.5417 128.43 50.1172 128.43 49.6484C128.43 49.1953 128.518 48.7969 128.695 48.4531C128.872 48.1042 129.128 47.8151 129.461 47.5859C129.794 47.3516 130.195 47.1745 130.664 47.0547C131.133 46.9349 131.656 46.875 132.234 46.875H133.914ZM142.797 44.875V52H141.352V43.5469H142.758L142.797 44.875ZM145.438 43.5L145.43 44.8438C145.31 44.8177 145.195 44.8021 145.086 44.7969C144.982 44.7865 144.862 44.7812 144.727 44.7812C144.393 44.7812 144.099 44.8333 143.844 44.9375C143.589 45.0417 143.372 45.1875 143.195 45.375C143.018 45.5625 142.878 45.7865 142.773 46.0469C142.674 46.3021 142.609 46.5833 142.578 46.8906L142.172 47.125C142.172 46.6146 142.221 46.1354 142.32 45.6875C142.424 45.2396 142.583 44.8438 142.797 44.5C143.01 44.151 143.281 43.8802 143.609 43.6875C143.943 43.4896 144.339 43.3906 144.797 43.3906C144.901 43.3906 145.021 43.4036 145.156 43.4297C145.292 43.4505 145.385 43.474 145.438 43.5ZM146.234 47.8672V47.6875C146.234 47.0781 146.323 46.513 146.5 45.9922C146.677 45.4661 146.932 45.0104 147.266 44.625C147.599 44.2344 148.003 43.9323 148.477 43.7188C148.951 43.5 149.482 43.3906 150.07 43.3906C150.664 43.3906 151.198 43.5 151.672 43.7188C152.151 43.9323 152.557 44.2344 152.891 44.625C153.229 45.0104 153.487 45.4661 153.664 45.9922C153.841 46.513 153.93 47.0781 153.93 47.6875V47.8672C153.93 48.4766 153.841 49.0417 153.664 49.5625C153.487 50.0833 153.229 50.5391 152.891 50.9297C152.557 51.3151 152.154 51.6172 151.68 51.8359C151.211 52.0495 150.68 52.1562 150.086 52.1562C149.492 52.1562 148.958 52.0495 148.484 51.8359C148.01 51.6172 147.604 51.3151 147.266 50.9297C146.932 50.5391 146.677 50.0833 146.5 49.5625C146.323 49.0417 146.234 48.4766 146.234 47.8672ZM147.68 47.6875V47.8672C147.68 48.2891 147.729 48.6875 147.828 49.0625C147.927 49.4323 148.076 49.7604 148.273 50.0469C148.477 50.3333 148.729 50.5599 149.031 50.7266C149.333 50.888 149.685 50.9688 150.086 50.9688C150.482 50.9688 150.828 50.888 151.125 50.7266C151.427 50.5599 151.677 50.3333 151.875 50.0469C152.073 49.7604 152.221 49.4323 152.32 49.0625C152.424 48.6875 152.477 48.2891 152.477 47.8672V47.6875C152.477 47.2708 152.424 46.8776 152.32 46.5078C152.221 46.1328 152.07 45.8021 151.867 45.5156C151.669 45.224 151.419 44.9948 151.117 44.8281C150.82 44.6615 150.471 44.5781 150.07 44.5781C149.674 44.5781 149.326 44.6615 149.023 44.8281C148.727 44.9948 148.477 45.224 148.273 45.5156C148.076 45.8021 147.927 46.1328 147.828 46.5078C147.729 46.8776 147.68 47.2708 147.68 47.6875ZM155.734 40H157.188V50.3594L157.062 52H155.734V40ZM162.898 47.7031V47.8672C162.898 48.4818 162.826 49.0521 162.68 49.5781C162.534 50.099 162.32 50.5521 162.039 50.9375C161.758 51.3229 161.414 51.6224 161.008 51.8359C160.602 52.0495 160.135 52.1562 159.609 52.1562C159.073 52.1562 158.602 52.0651 158.195 51.8828C157.794 51.6953 157.456 51.4271 157.18 51.0781C156.904 50.7292 156.682 50.3073 156.516 49.8125C156.354 49.3177 156.242 48.7604 156.18 48.1406V47.4219C156.242 46.7969 156.354 46.237 156.516 45.7422C156.682 45.2474 156.904 44.8255 157.18 44.4766C157.456 44.1224 157.794 43.8542 158.195 43.6719C158.596 43.4844 159.062 43.3906 159.594 43.3906C160.125 43.3906 160.596 43.4948 161.008 43.7031C161.419 43.9062 161.763 44.1979 162.039 44.5781C162.32 44.9583 162.534 45.4141 162.68 45.9453C162.826 46.4714 162.898 47.0573 162.898 47.7031ZM161.445 47.8672V47.7031C161.445 47.2812 161.406 46.8854 161.328 46.5156C161.25 46.1406 161.125 45.8125 160.953 45.5312C160.781 45.2448 160.555 45.0208 160.273 44.8594C159.992 44.6927 159.646 44.6094 159.234 44.6094C158.87 44.6094 158.552 44.6719 158.281 44.7969C158.016 44.9219 157.789 45.0911 157.602 45.3047C157.414 45.513 157.26 45.7526 157.141 46.0234C157.026 46.2891 156.94 46.5651 156.883 46.8516V48.7344C156.966 49.099 157.102 49.4505 157.289 49.7891C157.482 50.1224 157.737 50.3958 158.055 50.6094C158.378 50.8229 158.776 50.9297 159.25 50.9297C159.641 50.9297 159.974 50.8516 160.25 50.6953C160.531 50.5339 160.758 50.3125 160.93 50.0312C161.107 49.75 161.237 49.4245 161.32 49.0547C161.404 48.6849 161.445 48.2891 161.445 47.8672ZM164.344 47.8672V47.6875C164.344 47.0781 164.432 46.513 164.609 45.9922C164.786 45.4661 165.042 45.0104 165.375 44.625C165.708 44.2344 166.112 43.9323 166.586 43.7188C167.06 43.5 167.591 43.3906 168.18 43.3906C168.773 43.3906 169.307 43.5 169.781 43.7188C170.26 43.9323 170.667 44.2344 171 44.625C171.339 45.0104 171.596 45.4661 171.773 45.9922C171.951 46.513 172.039 47.0781 172.039 47.6875V47.8672C172.039 48.4766 171.951 49.0417 171.773 49.5625C171.596 50.0833 171.339 50.5391 171 50.9297C170.667 51.3151 170.263 51.6172 169.789 51.8359C169.32 52.0495 168.789 52.1562 168.195 52.1562C167.602 52.1562 167.068 52.0495 166.594 51.8359C166.12 51.6172 165.714 51.3151 165.375 50.9297C165.042 50.5391 164.786 50.0833 164.609 49.5625C164.432 49.0417 164.344 48.4766 164.344 47.8672ZM165.789 47.6875V47.8672C165.789 48.2891 165.839 48.6875 165.938 49.0625C166.036 49.4323 166.185 49.7604 166.383 50.0469C166.586 50.3333 166.839 50.5599 167.141 50.7266C167.443 50.888 167.794 50.9688 168.195 50.9688C168.591 50.9688 168.938 50.888 169.234 50.7266C169.536 50.5599 169.786 50.3333 169.984 50.0469C170.182 49.7604 170.331 49.4323 170.43 49.0625C170.534 48.6875 170.586 48.2891 170.586 47.8672V47.6875C170.586 47.2708 170.534 46.8776 170.43 46.5078C170.331 46.1328 170.18 45.8021 169.977 45.5156C169.779 45.224 169.529 44.9948 169.227 44.8281C168.93 44.6615 168.581 44.5781 168.18 44.5781C167.784 44.5781 167.435 44.6615 167.133 44.8281C166.836 44.9948 166.586 45.224 166.383 45.5156C166.185 45.8021 166.036 46.1328 165.938 46.5078C165.839 46.8776 165.789 47.2708 165.789 47.6875ZM177.391 43.5469V44.6562H172.82V43.5469H177.391ZM174.367 41.4922H175.812V49.9062C175.812 50.1927 175.857 50.4089 175.945 50.5547C176.034 50.7005 176.148 50.7969 176.289 50.8438C176.43 50.8906 176.581 50.9141 176.742 50.9141C176.862 50.9141 176.987 50.9036 177.117 50.8828C177.253 50.8568 177.354 50.8359 177.422 50.8203L177.43 52C177.315 52.0365 177.164 52.0703 176.977 52.1016C176.794 52.138 176.573 52.1562 176.312 52.1562C175.958 52.1562 175.633 52.0859 175.336 51.9453C175.039 51.8047 174.802 51.5703 174.625 51.2422C174.453 50.9089 174.367 50.4609 174.367 49.8984V41.4922Z",fill:"#1E293B"}),(0,C.createElement)("path",{d:"M191.023 64.8906V72H189.559V64.8906H191.023ZM193.855 67.9277V69.0703H190.623V67.9277H193.855ZM194.197 64.8906V66.0381H190.623V64.8906H194.197ZM196.238 67.8691V72H194.832V66.7168H196.155L196.238 67.8691ZM197.83 66.6826L197.806 67.9863C197.737 67.9766 197.654 67.9684 197.557 67.9619C197.462 67.9521 197.376 67.9473 197.298 67.9473C197.099 67.9473 196.927 67.9733 196.78 68.0254C196.637 68.0742 196.517 68.1475 196.419 68.2451C196.325 68.3428 196.253 68.4616 196.204 68.6016C196.159 68.7415 196.132 68.901 196.126 69.0801L195.843 68.9922C195.843 68.6504 195.877 68.3363 195.945 68.0498C196.014 67.7601 196.113 67.5078 196.243 67.293C196.377 67.0781 196.539 66.9121 196.731 66.7949C196.924 66.6777 197.143 66.6191 197.391 66.6191C197.469 66.6191 197.549 66.6257 197.63 66.6387C197.711 66.6484 197.778 66.6631 197.83 66.6826ZM199.979 66.7168V72H198.567V66.7168H199.979ZM198.479 65.3398C198.479 65.1348 198.551 64.9655 198.694 64.832C198.838 64.6986 199.03 64.6318 199.271 64.6318C199.508 64.6318 199.699 64.6986 199.842 64.832C199.988 64.9655 200.062 65.1348 200.062 65.3398C200.062 65.5449 199.988 65.7142 199.842 65.8477C199.699 65.9811 199.508 66.0479 199.271 66.0479C199.03 66.0479 198.838 65.9811 198.694 65.8477C198.551 65.7142 198.479 65.5449 198.479 65.3398ZM203.572 72.0977C203.162 72.0977 202.794 72.0326 202.469 71.9023C202.143 71.7689 201.867 71.585 201.639 71.3506C201.414 71.1162 201.242 70.8444 201.121 70.5352C201.001 70.2227 200.94 69.8906 200.94 69.5391V69.3438C200.94 68.9434 200.997 68.5771 201.111 68.2451C201.225 67.9131 201.388 67.625 201.6 67.3809C201.814 67.1367 202.075 66.9495 202.381 66.8193C202.687 66.6859 203.032 66.6191 203.416 66.6191C203.79 66.6191 204.122 66.681 204.412 66.8047C204.702 66.9284 204.944 67.1042 205.14 67.332C205.338 67.5599 205.488 67.8333 205.589 68.1523C205.69 68.4681 205.74 68.8197 205.74 69.207V69.793H201.541V68.8555H204.358V68.748C204.358 68.5527 204.323 68.3786 204.251 68.2256C204.183 68.0693 204.078 67.9456 203.938 67.8545C203.799 67.7633 203.619 67.7178 203.401 67.7178C203.216 67.7178 203.056 67.7585 202.923 67.8398C202.789 67.9212 202.68 68.0352 202.596 68.1816C202.514 68.3281 202.452 68.5007 202.41 68.6992C202.371 68.8945 202.352 69.1094 202.352 69.3438V69.5391C202.352 69.7507 202.381 69.946 202.439 70.125C202.501 70.304 202.588 70.4587 202.698 70.5889C202.812 70.7191 202.949 70.82 203.108 70.8916C203.271 70.9632 203.455 70.999 203.66 70.999C203.914 70.999 204.15 70.9502 204.368 70.8525C204.59 70.7516 204.78 70.6003 204.939 70.3984L205.623 71.1406C205.512 71.3001 205.361 71.4531 205.169 71.5996C204.98 71.7461 204.752 71.8665 204.485 71.9609C204.218 72.0521 203.914 72.0977 203.572 72.0977ZM207.918 67.8447V72H206.512V66.7168H207.83L207.918 67.8447ZM207.713 69.1729H207.332C207.332 68.7822 207.382 68.4307 207.483 68.1182C207.584 67.8024 207.726 67.5339 207.908 67.3125C208.09 67.0879 208.307 66.917 208.558 66.7998C208.812 66.6794 209.095 66.6191 209.407 66.6191C209.655 66.6191 209.881 66.6549 210.086 66.7266C210.291 66.7982 210.467 66.9121 210.613 67.0684C210.763 67.2246 210.877 67.4313 210.955 67.6885C211.036 67.9456 211.077 68.2598 211.077 68.6309V72H209.661V68.626C209.661 68.3916 209.629 68.2093 209.563 68.0791C209.498 67.9489 209.402 67.8577 209.275 67.8057C209.152 67.7503 208.999 67.7227 208.816 67.7227C208.628 67.7227 208.463 67.7601 208.323 67.835C208.187 67.9098 208.073 68.014 207.981 68.1475C207.894 68.2777 207.827 68.4307 207.781 68.6064C207.736 68.7822 207.713 68.971 207.713 69.1729ZM215.267 70.8477V64.5H216.683V72H215.408L215.267 70.8477ZM211.927 69.4219V69.3193C211.927 68.9157 211.972 68.5495 212.063 68.2207C212.155 67.8887 212.288 67.6038 212.464 67.3662C212.64 67.1286 212.856 66.9447 213.113 66.8145C213.37 66.6842 213.663 66.6191 213.992 66.6191C214.301 66.6191 214.572 66.6842 214.803 66.8145C215.037 66.9447 215.236 67.1302 215.398 67.3711C215.564 67.6087 215.698 67.8903 215.799 68.2158C215.9 68.5381 215.973 68.8913 216.019 69.2754V69.5C215.973 69.8678 215.9 70.2096 215.799 70.5254C215.698 70.8411 215.564 71.1178 215.398 71.3555C215.236 71.5898 215.037 71.7721 214.803 71.9023C214.568 72.0326 214.295 72.0977 213.982 72.0977C213.654 72.0977 213.361 72.0309 213.104 71.8975C212.85 71.764 212.635 71.5768 212.459 71.3359C212.286 71.0951 212.155 70.8118 212.063 70.4863C211.972 70.1608 211.927 69.806 211.927 69.4219ZM213.333 69.3193V69.4219C213.333 69.64 213.349 69.8434 213.382 70.0322C213.418 70.221 213.475 70.3887 213.553 70.5352C213.634 70.6784 213.738 70.7907 213.865 70.8721C213.995 70.9502 214.153 70.9893 214.339 70.9893C214.58 70.9893 214.778 70.9355 214.935 70.8281C215.091 70.7174 215.21 70.5661 215.291 70.374C215.376 70.182 215.424 69.9606 215.438 69.71V69.0703C215.428 68.8652 215.398 68.6813 215.35 68.5186C215.304 68.3525 215.236 68.2109 215.145 68.0938C215.057 67.9766 214.946 67.8854 214.812 67.8203C214.682 67.7552 214.528 67.7227 214.349 67.7227C214.166 67.7227 214.01 67.765 213.88 67.8496C213.75 67.931 213.644 68.0433 213.562 68.1865C213.484 68.3298 213.426 68.499 213.387 68.6943C213.351 68.8864 213.333 69.0947 213.333 69.3193ZM219.266 64.5V72H217.854V64.5H219.266ZM221.995 71.4043L223.396 66.7168H224.905L222.781 72.7959C222.736 72.9294 222.674 73.0726 222.596 73.2256C222.521 73.3786 222.418 73.5234 222.288 73.6602C222.161 73.8001 222 73.9141 221.805 74.002C221.613 74.0898 221.377 74.1338 221.097 74.1338C220.963 74.1338 220.854 74.1257 220.77 74.1094C220.685 74.0931 220.584 74.0703 220.467 74.041V73.0107C220.503 73.0107 220.54 73.0107 220.579 73.0107C220.618 73.014 220.656 73.0156 220.691 73.0156C220.877 73.0156 221.028 72.9945 221.146 72.9521C221.263 72.9098 221.357 72.8447 221.429 72.7568C221.5 72.6722 221.557 72.5615 221.6 72.4248L221.995 71.4043ZM221.409 66.7168L222.557 70.5449L222.757 72.0342L221.8 72.1367L219.9 66.7168H221.409ZM229.676 69.6416H231.136C231.106 70.1201 230.975 70.5449 230.74 70.916C230.509 71.2871 230.185 71.5768 229.769 71.7852C229.355 71.9935 228.857 72.0977 228.274 72.0977C227.819 72.0977 227.41 72.0195 227.049 71.8633C226.688 71.7038 226.378 71.4759 226.121 71.1797C225.867 70.8835 225.674 70.5254 225.54 70.1055C225.407 69.6855 225.34 69.2152 225.34 68.6943V68.2012C225.34 67.6803 225.408 67.21 225.545 66.79C225.685 66.3669 225.883 66.0072 226.141 65.7109C226.401 65.4147 226.712 65.1868 227.073 65.0273C227.435 64.8678 227.838 64.7881 228.284 64.7881C228.877 64.7881 229.376 64.8955 229.783 65.1104C230.193 65.3252 230.511 65.6214 230.735 65.999C230.963 66.3766 231.1 66.8063 231.146 67.2881H229.681C229.664 67.0016 229.607 66.7591 229.51 66.5605C229.412 66.3587 229.264 66.2074 229.065 66.1064C228.87 66.0023 228.61 65.9502 228.284 65.9502C228.04 65.9502 227.827 65.9958 227.645 66.0869C227.462 66.1781 227.309 66.3164 227.186 66.502C227.062 66.6875 226.969 66.9219 226.907 67.2051C226.849 67.485 226.819 67.8138 226.819 68.1914V68.6943C226.819 69.0622 226.847 69.3861 226.902 69.666C226.958 69.9427 227.042 70.1771 227.156 70.3691C227.273 70.5579 227.423 70.7012 227.605 70.7988C227.791 70.8932 228.014 70.9404 228.274 70.9404C228.58 70.9404 228.833 70.8916 229.031 70.7939C229.23 70.6963 229.381 70.5514 229.485 70.3594C229.593 70.1673 229.656 69.9281 229.676 69.6416ZM234.861 70.8086V68.4551C234.861 68.2858 234.834 68.141 234.778 68.0205C234.723 67.8968 234.637 67.8008 234.52 67.7324C234.406 67.6641 234.257 67.6299 234.075 67.6299C233.919 67.6299 233.784 67.6576 233.67 67.7129C233.556 67.765 233.468 67.8415 233.406 67.9424C233.344 68.04 233.313 68.1556 233.313 68.2891H231.907C231.907 68.0645 231.959 67.8512 232.063 67.6494C232.168 67.4476 232.319 67.2702 232.518 67.1172C232.716 66.9609 232.952 66.8389 233.226 66.751C233.502 66.6631 233.812 66.6191 234.153 66.6191C234.563 66.6191 234.928 66.6875 235.247 66.8242C235.566 66.9609 235.817 67.166 235.999 67.4395C236.185 67.7129 236.277 68.0547 236.277 68.4648V70.7256C236.277 71.0153 236.295 71.2529 236.331 71.4385C236.367 71.6208 236.419 71.7803 236.487 71.917V72H235.066C234.998 71.8568 234.946 71.6777 234.91 71.4629C234.878 71.2448 234.861 71.0267 234.861 70.8086ZM235.047 68.7822L235.057 69.5781H234.271C234.085 69.5781 233.924 69.5993 233.787 69.6416C233.65 69.6839 233.538 69.7441 233.45 69.8223C233.362 69.8971 233.297 69.985 233.255 70.0859C233.216 70.1868 233.196 70.2975 233.196 70.418C233.196 70.5384 233.224 70.6475 233.279 70.7451C233.335 70.8395 233.414 70.9144 233.519 70.9697C233.623 71.0218 233.745 71.0479 233.885 71.0479C234.096 71.0479 234.28 71.0055 234.437 70.9209C234.593 70.8363 234.713 70.7321 234.798 70.6084C234.886 70.4847 234.931 70.3675 234.935 70.2568L235.306 70.8525C235.254 70.986 235.182 71.1243 235.091 71.2676C235.003 71.4108 234.891 71.5459 234.754 71.6729C234.617 71.7965 234.453 71.8991 234.261 71.9805C234.069 72.0586 233.841 72.0977 233.577 72.0977C233.242 72.0977 232.938 72.0309 232.664 71.8975C232.394 71.7607 232.179 71.5736 232.02 71.3359C231.863 71.0951 231.785 70.8216 231.785 70.5156C231.785 70.2389 231.837 69.9932 231.941 69.7783C232.046 69.5635 232.199 69.3828 232.4 69.2363C232.605 69.0866 232.861 68.9743 233.167 68.8994C233.473 68.8213 233.828 68.7822 234.231 68.7822H235.047ZM238.768 67.7324V74.0312H237.361V66.7168H238.665L238.768 67.7324ZM242.112 69.2998V69.4023C242.112 69.7865 242.067 70.1429 241.976 70.4717C241.888 70.8005 241.757 71.0869 241.585 71.3311C241.412 71.5719 241.198 71.7607 240.94 71.8975C240.687 72.0309 240.394 72.0977 240.062 72.0977C239.739 72.0977 239.459 72.0326 239.222 71.9023C238.984 71.7721 238.784 71.5898 238.621 71.3555C238.462 71.1178 238.333 70.8428 238.235 70.5303C238.138 70.2178 238.063 69.8825 238.011 69.5244V69.2559C238.063 68.8717 238.138 68.5202 238.235 68.2012C238.333 67.8789 238.462 67.6006 238.621 67.3662C238.784 67.1286 238.982 66.9447 239.217 66.8145C239.454 66.6842 239.733 66.6191 240.052 66.6191C240.387 66.6191 240.682 66.6826 240.936 66.8096C241.193 66.9365 241.408 67.1188 241.58 67.3564C241.756 67.5941 241.888 67.8773 241.976 68.2061C242.067 68.5348 242.112 68.8994 242.112 69.2998ZM240.701 69.4023V69.2998C240.701 69.0752 240.682 68.8685 240.643 68.6797C240.607 68.4876 240.548 68.32 240.467 68.1768C240.389 68.0335 240.285 67.9229 240.154 67.8447C240.027 67.7633 239.873 67.7227 239.69 67.7227C239.498 67.7227 239.334 67.7536 239.197 67.8154C239.064 67.8773 238.955 67.9668 238.87 68.084C238.785 68.2012 238.722 68.3411 238.68 68.5039C238.637 68.6667 238.611 68.8506 238.602 69.0557V69.7344C238.618 69.9753 238.663 70.1917 238.738 70.3838C238.813 70.5726 238.929 70.7223 239.085 70.833C239.241 70.9437 239.446 70.999 239.7 70.999C239.886 70.999 240.042 70.9583 240.169 70.877C240.296 70.7923 240.398 70.6768 240.477 70.5303C240.558 70.3838 240.615 70.2145 240.647 70.0225C240.683 69.8304 240.701 69.6237 240.701 69.4023ZM245.574 66.7168V67.7129H242.498V66.7168H245.574ZM243.26 65.4131H244.666V70.4082C244.666 70.5612 244.686 70.6784 244.725 70.7598C244.767 70.8411 244.829 70.8981 244.91 70.9307C244.992 70.96 245.094 70.9746 245.218 70.9746C245.306 70.9746 245.384 70.9714 245.452 70.9648C245.524 70.9551 245.584 70.9453 245.633 70.9355L245.638 71.9707C245.517 72.0098 245.387 72.0407 245.247 72.0635C245.107 72.0863 244.952 72.0977 244.783 72.0977C244.474 72.0977 244.204 72.0472 243.973 71.9463C243.745 71.8421 243.569 71.6761 243.445 71.4482C243.322 71.2204 243.26 70.9209 243.26 70.5498V65.4131ZM248.558 70.999C248.73 70.999 248.883 70.9665 249.017 70.9014C249.15 70.833 249.254 70.7386 249.329 70.6182C249.407 70.4945 249.448 70.3496 249.451 70.1836H250.774C250.771 70.5547 250.672 70.8851 250.477 71.1748C250.281 71.4613 250.019 71.6875 249.69 71.8535C249.362 72.0163 248.994 72.0977 248.587 72.0977C248.177 72.0977 247.819 72.0293 247.513 71.8926C247.21 71.7559 246.958 71.5671 246.756 71.3262C246.554 71.082 246.403 70.7988 246.302 70.4766C246.201 70.151 246.15 69.8027 246.15 69.4316V69.29C246.15 68.9157 246.201 68.5674 246.302 68.2451C246.403 67.9196 246.554 67.6364 246.756 67.3955C246.958 67.1514 247.21 66.9609 247.513 66.8242C247.815 66.6875 248.17 66.6191 248.577 66.6191C249.01 66.6191 249.389 66.7021 249.715 66.8682C250.044 67.0342 250.301 67.2718 250.486 67.5811C250.675 67.887 250.771 68.25 250.774 68.6699H249.451C249.448 68.4941 249.41 68.3346 249.339 68.1914C249.271 68.0482 249.17 67.9342 249.036 67.8496C248.906 67.7617 248.745 67.7178 248.553 67.7178C248.348 67.7178 248.18 67.7617 248.05 67.8496C247.92 67.9342 247.819 68.0514 247.747 68.2012C247.675 68.3477 247.625 68.5153 247.596 68.7041C247.57 68.8896 247.557 69.085 247.557 69.29V69.4316C247.557 69.6367 247.57 69.8337 247.596 70.0225C247.622 70.2113 247.671 70.3789 247.742 70.5254C247.817 70.6719 247.92 70.7874 248.05 70.8721C248.18 70.9567 248.349 70.999 248.558 70.999ZM252.962 64.5V72H251.556V64.5H252.962ZM252.762 69.1729H252.376C252.379 68.805 252.428 68.4665 252.522 68.1572C252.617 67.8447 252.752 67.5745 252.928 67.3467C253.104 67.1156 253.313 66.9365 253.558 66.8096C253.805 66.6826 254.078 66.6191 254.378 66.6191C254.638 66.6191 254.874 66.6566 255.086 66.7314C255.301 66.8031 255.485 66.9202 255.638 67.083C255.794 67.2425 255.914 67.4525 255.999 67.7129C256.084 67.9733 256.126 68.2891 256.126 68.6602V72H254.71V68.6504C254.71 68.416 254.676 68.2321 254.607 68.0986C254.542 67.9619 254.446 67.8659 254.319 67.8105C254.196 67.752 254.043 67.7227 253.86 67.7227C253.659 67.7227 253.486 67.7601 253.343 67.835C253.203 67.9098 253.09 68.014 253.006 68.1475C252.921 68.2777 252.859 68.4307 252.82 68.6064C252.781 68.7822 252.762 68.971 252.762 69.1729ZM260.047 70.8086V68.4551C260.047 68.2858 260.019 68.141 259.964 68.0205C259.909 67.8968 259.822 67.8008 259.705 67.7324C259.591 67.6641 259.443 67.6299 259.261 67.6299C259.104 67.6299 258.969 67.6576 258.855 67.7129C258.742 67.765 258.654 67.8415 258.592 67.9424C258.53 68.04 258.499 68.1556 258.499 68.2891H257.093C257.093 68.0645 257.145 67.8512 257.249 67.6494C257.353 67.4476 257.505 67.2702 257.703 67.1172C257.902 66.9609 258.138 66.8389 258.411 66.751C258.688 66.6631 258.997 66.6191 259.339 66.6191C259.749 66.6191 260.114 66.6875 260.433 66.8242C260.752 66.9609 261.002 67.166 261.185 67.4395C261.37 67.7129 261.463 68.0547 261.463 68.4648V70.7256C261.463 71.0153 261.481 71.2529 261.517 71.4385C261.552 71.6208 261.604 71.7803 261.673 71.917V72H260.252C260.184 71.8568 260.132 71.6777 260.096 71.4629C260.063 71.2448 260.047 71.0267 260.047 70.8086ZM260.232 68.7822L260.242 69.5781H259.456C259.271 69.5781 259.109 69.5993 258.973 69.6416C258.836 69.6839 258.724 69.7441 258.636 69.8223C258.548 69.8971 258.483 69.985 258.44 70.0859C258.401 70.1868 258.382 70.2975 258.382 70.418C258.382 70.5384 258.41 70.6475 258.465 70.7451C258.52 70.8395 258.6 70.9144 258.704 70.9697C258.808 71.0218 258.93 71.0479 259.07 71.0479C259.282 71.0479 259.466 71.0055 259.622 70.9209C259.778 70.8363 259.899 70.7321 259.983 70.6084C260.071 70.4847 260.117 70.3675 260.12 70.2568L260.491 70.8525C260.439 70.986 260.368 71.1243 260.276 71.2676C260.188 71.4108 260.076 71.5459 259.939 71.6729C259.803 71.7965 259.638 71.8991 259.446 71.9805C259.254 72.0586 259.026 72.0977 258.763 72.0977C258.427 72.0977 258.123 72.0309 257.85 71.8975C257.579 71.7607 257.365 71.5736 257.205 71.3359C257.049 71.0951 256.971 70.8216 256.971 70.5156C256.971 70.2389 257.023 69.9932 257.127 69.7783C257.231 69.5635 257.384 69.3828 257.586 69.2363C257.791 69.0866 258.047 68.9743 258.353 68.8994C258.659 68.8213 259.013 68.7822 259.417 68.7822H260.232Z",fill:"#4272F9"}),(0,C.createElement)("g",{clipPath:"url(#clip0_37_936)"},(0,C.createElement)("path",{d:"M270.566 71.5456V66.3837H265.404L265.404 67.8686H268.021L264.803 71.0859L265.864 72.1466L269.081 68.9293V71.5456L270.566 71.5456Z",fill:"#4272F9"})),(0,C.createElement)("path",{d:"M60.3366 102.512C60.4361 102.471 60.5009 102.374 60.5 102.267C60.4971 102.16 60.4278 102.066 60.3264 102.032L59.0119 101.575L58.8112 100.196C58.7962 100.097 58.7261 100.015 58.6306 99.9853C58.5333 99.958 58.429 99.9884 58.3615 100.063L57.4591 101.126L56.0972 100.785C55.9927 100.759 55.8827 100.801 55.8226 100.89C55.7623 100.979 55.7644 101.097 55.8281 101.184L56.6827 102.362L55.8212 103.68C55.7563 103.767 55.7566 103.886 55.8214 103.973C55.886 104.059 55.9981 104.094 56.1005 104.061L57.5409 103.615L58.5115 104.77C58.5585 104.828 58.6302 104.862 58.7055 104.862C58.7359 104.863 58.7663 104.857 58.7941 104.844C58.8965 104.809 58.964 104.711 58.9609 104.603V103.029L60.3366 102.512ZM57.8883 98.068C57.9425 97.9754 57.9301 97.858 57.8577 97.7787L56.8156 96.597L57.4966 95.3098C57.5479 95.216 57.5342 95.0998 57.4627 95.0205C57.3907 94.9404 57.2767 94.9133 57.1764 94.9523L55.8859 95.4732L54.8406 94.5537C54.7651 94.486 54.6565 94.4696 54.5643 94.5119C54.4719 94.554 54.4135 94.6466 54.4149 94.748V96.1406L53.1788 96.7775C53.0829 96.8266 53.028 96.9304 53.0418 97.0373C53.0556 97.1442 53.1349 97.2309 53.2401 97.2542L54.6532 97.5948L54.8677 99.1544C54.88 99.261 54.9601 99.3475 55.0653 99.3689H55.1197C55.209 99.3694 55.2919 99.3228 55.3377 99.2463L56.1311 97.966L57.6225 98.2009C57.7306 98.2192 57.838 98.1654 57.8883 98.068ZM57.8235 107.211C57.9 107.135 57.9197 107.019 57.8729 106.922C57.8259 106.825 57.7228 106.769 57.6159 106.782L56.2299 106.918L55.4841 105.74C55.428 105.656 55.3289 105.611 55.2287 105.624C55.1301 105.641 55.0496 105.712 55.0211 105.808L54.6432 107.149L53.2812 107.415C53.176 107.436 53.0943 107.52 53.0767 107.626C53.0599 107.731 53.1102 107.836 53.2026 107.888L54.4694 108.604L54.2378 110.16C54.2223 110.267 54.2755 110.371 54.3705 110.422C54.4071 110.442 54.4482 110.453 54.4898 110.453C54.5525 110.452 54.6128 110.429 54.6601 110.388L55.7838 109.366L57.1458 110.013C57.2451 110.067 57.3676 110.051 57.4489 109.973C57.5251 109.896 57.5443 109.78 57.4966 109.683L56.8156 108.26L57.8235 107.211ZM52.2934 93.9307C52.3782 93.8665 52.4136 93.7561 52.382 93.6546C52.349 93.5527 52.2573 93.4815 52.1504 93.4741L50.7578 93.4095L50.1891 92.1394C50.1435 92.0539 50.0544 92 49.9575 92C49.8606 92 49.7715 92.0537 49.7259 92.1392L49.1573 93.4093L47.7647 93.457C47.6578 93.4644 47.5661 93.5359 47.5331 93.6375C47.5015 93.739 47.5369 93.8494 47.6217 93.9133L48.7692 94.8192L48.3162 96.3245C48.2858 96.4273 48.3229 96.5378 48.4089 96.6016C48.4948 96.6655 48.6115 96.6689 48.701 96.6104L49.9575 95.7625L51.2141 96.5967C51.2559 96.6261 51.306 96.6416 51.3571 96.6411C51.4402 96.6413 51.5181 96.6012 51.5663 96.5335C51.6143 96.4658 51.6267 96.3789 51.5989 96.3005L51.1459 94.8193L52.2934 93.9307ZM46.8452 97.0361C46.8585 96.9297 46.8041 96.8264 46.7088 96.7772L45.4727 96.1403V94.7477C45.4737 94.6465 45.415 94.5544 45.3231 94.5128C45.2321 94.471 45.1252 94.4872 45.0506 94.5537L44.002 95.4731L42.7114 94.9522C42.6124 94.9128 42.4989 94.9399 42.4285 95.0202C42.3549 95.0983 42.3397 95.2152 42.391 95.3095L43.072 96.5967L42.0299 97.7784C41.9606 97.8594 41.9489 97.9748 42.0005 98.0682C42.052 98.1615 42.1563 98.2128 42.2618 98.1972L43.7532 97.9622L44.5499 99.2461C44.5962 99.3221 44.6789 99.3684 44.7679 99.3686H44.8223C44.9273 99.3456 45.0074 99.2603 45.0233 99.1541L45.2345 97.5945L46.6511 97.2539C46.7544 97.2283 46.8314 97.1415 46.8452 97.0361ZM46.668 107.827C46.762 107.774 46.8124 107.668 46.7941 107.561C46.7784 107.456 46.6977 107.373 46.5931 107.354L45.2312 107.085L44.8497 105.746C44.8236 105.649 44.7419 105.577 44.6421 105.563C44.5426 105.549 44.4445 105.594 44.3901 105.678L43.6409 106.853L42.2585 106.717C42.1519 106.706 42.0498 106.763 42.003 106.86C41.9555 106.956 41.9733 107.072 42.0471 107.149L43.0688 108.195L42.3878 109.621C42.3441 109.719 42.3643 109.834 42.4389 109.911C42.5151 109.987 42.6315 110.006 42.7284 109.959L44.0904 109.315L45.2108 110.337C45.292 110.406 45.4072 110.421 45.5037 110.374C45.5985 110.322 45.6514 110.216 45.6365 110.108L45.4015 108.552L46.668 107.827ZM44.1447 103.983C44.2062 103.895 44.2062 103.778 44.1447 103.69L43.2832 102.372L44.1378 101.194C44.1974 101.105 44.1977 100.989 44.1381 100.901C44.0782 100.812 43.9697 100.77 43.8656 100.795L42.5037 101.136L41.6215 100.063C41.5559 99.9873 41.4519 99.9569 41.3557 99.9856C41.2595 100.014 41.1889 100.097 41.1754 100.196L40.9882 101.575L39.6704 102.031C39.5709 102.068 39.5034 102.16 39.5001 102.266C39.4972 102.374 39.5628 102.473 39.6635 102.512L41.0255 103.039V104.612C41.0224 104.721 41.0901 104.819 41.1925 104.854C41.2202 104.867 41.2506 104.873 41.2811 104.871C41.3561 104.871 41.4274 104.837 41.4751 104.779L42.4457 103.625L43.8861 104.071C43.9823 104.095 44.0834 104.06 44.1447 103.983Z",fill:"#EAB413"}),(0,C.createElement)("path",{d:"M52.3818 109.655C52.4134 109.756 52.378 109.867 52.2932 109.931L51.1457 110.819L51.5987 112.3C51.6265 112.379 51.6141 112.466 51.5661 112.534C51.5179 112.601 51.44 112.641 51.3569 112.641C51.3058 112.642 51.2557 112.626 51.2139 112.597L49.9573 111.762L48.7008 112.61C48.6113 112.669 48.4946 112.666 48.4087 112.602C48.3227 112.538 48.2856 112.427 48.316 112.324L48.769 110.819L47.6215 109.913C47.5367 109.849 47.5013 109.739 47.5329 109.638C47.5659 109.536 47.6576 109.464 47.7645 109.457L49.1571 109.409L49.7257 108.139C49.7714 108.054 49.8604 108 49.9573 108C50.0543 108 50.1433 108.054 50.1889 108.139L50.7576 109.41L52.1502 109.474C52.2571 109.481 52.3488 109.553 52.3818 109.655Z",fill:"#EAB413"}),(0,C.createElement)("path",{d:"M16.5918 118.543H17.5049L19.834 124.339L22.1582 118.543H23.0762L20.1855 125.652H19.4727L16.5918 118.543ZM16.2939 118.543H17.0996L17.2314 122.879V125.652H16.2939V118.543ZM22.5635 118.543H23.3691V125.652H22.4316V122.879L22.5635 118.543ZM28.0029 124.749V122.029C28.0029 121.821 27.9606 121.64 27.876 121.487C27.7946 121.331 27.6709 121.21 27.5049 121.126C27.3389 121.041 27.1338 120.999 26.8896 120.999C26.6618 120.999 26.4616 121.038 26.2891 121.116C26.1198 121.194 25.9863 121.297 25.8887 121.424C25.7943 121.55 25.7471 121.687 25.7471 121.834H24.8438C24.8438 121.645 24.8926 121.458 24.9902 121.272C25.0879 121.087 25.2279 120.919 25.4102 120.769C25.5957 120.616 25.8171 120.496 26.0742 120.408C26.3346 120.317 26.6243 120.271 26.9434 120.271C27.3275 120.271 27.666 120.336 27.959 120.466C28.2552 120.597 28.4863 120.794 28.6523 121.057C28.8216 121.318 28.9062 121.645 28.9062 122.039V124.5C28.9062 124.675 28.9209 124.863 28.9502 125.061C28.9827 125.26 29.0299 125.431 29.0918 125.574V125.652H28.1494C28.1038 125.548 28.068 125.41 28.042 125.237C28.016 125.061 28.0029 124.898 28.0029 124.749ZM28.1592 122.449L28.1689 123.084H27.2559C26.9987 123.084 26.7692 123.105 26.5674 123.147C26.3656 123.186 26.1963 123.246 26.0596 123.328C25.9229 123.409 25.8187 123.512 25.7471 123.635C25.6755 123.756 25.6396 123.897 25.6396 124.06C25.6396 124.226 25.6771 124.378 25.752 124.514C25.8268 124.651 25.9391 124.76 26.0889 124.841C26.2419 124.92 26.429 124.959 26.6504 124.959C26.9271 124.959 27.1712 124.9 27.3828 124.783C27.5944 124.666 27.762 124.522 27.8857 124.353C28.0127 124.184 28.0811 124.02 28.0908 123.86L28.4766 124.295C28.4538 124.431 28.3919 124.583 28.291 124.749C28.1901 124.915 28.055 125.074 27.8857 125.227C27.7197 125.377 27.5212 125.502 27.29 125.603C27.0622 125.701 26.805 125.75 26.5186 125.75C26.1605 125.75 25.8464 125.68 25.5762 125.54C25.3092 125.4 25.1009 125.213 24.9512 124.978C24.8047 124.741 24.7314 124.475 24.7314 124.182C24.7314 123.899 24.7868 123.65 24.8975 123.435C25.0081 123.217 25.1676 123.036 25.376 122.893C25.5843 122.747 25.835 122.636 26.1279 122.561C26.4209 122.486 26.748 122.449 27.1094 122.449H28.1592ZM33.6572 124.627V118.152H34.5654V125.652H33.7354L33.6572 124.627ZM30.1025 123.069V122.966C30.1025 122.563 30.1514 122.197 30.249 121.868C30.3499 121.536 30.4915 121.251 30.6738 121.013C30.8594 120.776 31.0791 120.593 31.333 120.466C31.5902 120.336 31.8766 120.271 32.1924 120.271C32.5244 120.271 32.8141 120.33 33.0615 120.447C33.3122 120.561 33.5238 120.729 33.6963 120.95C33.8721 121.168 34.0104 121.432 34.1113 121.741C34.2122 122.05 34.2822 122.4 34.3213 122.791V123.24C34.2855 123.627 34.2155 123.976 34.1113 124.285C34.0104 124.594 33.8721 124.858 33.6963 125.076C33.5238 125.294 33.3122 125.462 33.0615 125.579C32.8109 125.693 32.5179 125.75 32.1826 125.75C31.8734 125.75 31.5902 125.683 31.333 125.549C31.0791 125.416 30.8594 125.229 30.6738 124.988C30.4915 124.747 30.3499 124.464 30.249 124.138C30.1514 123.81 30.1025 123.453 30.1025 123.069ZM31.0107 122.966V123.069C31.0107 123.333 31.0368 123.58 31.0889 123.811C31.1442 124.042 31.2288 124.246 31.3428 124.422C31.4567 124.597 31.6016 124.736 31.7773 124.837C31.9531 124.934 32.1631 124.983 32.4072 124.983C32.7067 124.983 32.9525 124.92 33.1445 124.793C33.3398 124.666 33.4961 124.498 33.6133 124.29C33.7305 124.081 33.8216 123.855 33.8867 123.611V122.434C33.8477 122.255 33.7907 122.083 33.7158 121.917C33.6442 121.747 33.5498 121.598 33.4326 121.467C33.3187 121.334 33.1771 121.228 33.0078 121.15C32.8418 121.072 32.6449 121.033 32.417 121.033C32.1696 121.033 31.9564 121.085 31.7773 121.189C31.6016 121.29 31.4567 121.43 31.3428 121.609C31.2288 121.785 31.1442 121.99 31.0889 122.224C31.0368 122.455 31.0107 122.703 31.0107 122.966ZM38.1641 125.75C37.7962 125.75 37.4626 125.688 37.1631 125.564C36.8669 125.437 36.6113 125.26 36.3965 125.032C36.1849 124.804 36.0221 124.534 35.9082 124.221C35.7943 123.909 35.7373 123.567 35.7373 123.196V122.991C35.7373 122.561 35.8008 122.179 35.9277 121.843C36.0547 121.505 36.2272 121.218 36.4453 120.984C36.6634 120.75 36.9108 120.572 37.1875 120.452C37.4642 120.331 37.7507 120.271 38.0469 120.271C38.4245 120.271 38.75 120.336 39.0234 120.466C39.3001 120.597 39.5264 120.779 39.7021 121.013C39.8779 121.244 40.0081 121.518 40.0928 121.834C40.1774 122.146 40.2197 122.488 40.2197 122.859V123.264H36.2744V122.527H39.3164V122.459C39.3034 122.224 39.2546 121.996 39.1699 121.775C39.0885 121.554 38.9583 121.371 38.7793 121.228C38.6003 121.085 38.3561 121.013 38.0469 121.013C37.8418 121.013 37.653 121.057 37.4805 121.145C37.3079 121.23 37.1598 121.357 37.0361 121.526C36.9124 121.695 36.8164 121.902 36.748 122.146C36.6797 122.39 36.6455 122.672 36.6455 122.991V123.196C36.6455 123.447 36.6797 123.683 36.748 123.904C36.8197 124.122 36.9222 124.314 37.0557 124.48C37.1924 124.646 37.3568 124.776 37.5488 124.871C37.7441 124.965 37.9655 125.012 38.2129 125.012C38.5319 125.012 38.8021 124.947 39.0234 124.817C39.2448 124.687 39.4385 124.513 39.6045 124.295L40.1514 124.729C40.0374 124.902 39.8926 125.066 39.7168 125.222C39.541 125.379 39.3245 125.506 39.0674 125.603C38.8135 125.701 38.5124 125.75 38.1641 125.75ZM44.7363 120.369V125.652H43.8281V120.369H44.7363ZM43.7598 118.967C43.7598 118.821 43.8037 118.697 43.8916 118.596C43.9827 118.495 44.1162 118.445 44.292 118.445C44.4645 118.445 44.5964 118.495 44.6875 118.596C44.7819 118.697 44.8291 118.821 44.8291 118.967C44.8291 119.107 44.7819 119.228 44.6875 119.329C44.5964 119.426 44.4645 119.475 44.292 119.475C44.1162 119.475 43.9827 119.426 43.8916 119.329C43.8037 119.228 43.7598 119.107 43.7598 118.967ZM47.0898 121.497V125.652H46.1865V120.369H47.041L47.0898 121.497ZM46.875 122.81L46.499 122.796C46.5023 122.434 46.556 122.101 46.6602 121.795C46.7643 121.485 46.9108 121.217 47.0996 120.989C47.2884 120.761 47.513 120.585 47.7734 120.462C48.0371 120.335 48.3285 120.271 48.6475 120.271C48.9079 120.271 49.1423 120.307 49.3506 120.379C49.5589 120.447 49.7363 120.558 49.8828 120.711C50.0326 120.864 50.1465 121.062 50.2246 121.306C50.3027 121.547 50.3418 121.842 50.3418 122.19V125.652H49.4336V122.18C49.4336 121.904 49.3929 121.682 49.3115 121.516C49.2301 121.347 49.1113 121.225 48.9551 121.15C48.7988 121.072 48.6068 121.033 48.3789 121.033C48.1543 121.033 47.9492 121.08 47.7637 121.174C47.5814 121.269 47.4235 121.399 47.29 121.565C47.1598 121.731 47.0573 121.922 46.9824 122.136C46.9108 122.348 46.875 122.573 46.875 122.81ZM58.8477 124.885V125.652H55.083V124.885H58.8477ZM55.2734 118.543V125.652H54.3311V118.543H55.2734ZM58.3496 121.599V122.366H55.083V121.599H58.3496ZM58.7988 118.543V119.314H55.083V118.543H58.7988ZM63.0225 124.431V120.369H63.9307V125.652H63.0664L63.0225 124.431ZM63.1934 123.318L63.5693 123.308C63.5693 123.66 63.5319 123.985 63.457 124.285C63.3854 124.581 63.2682 124.838 63.1055 125.056C62.9427 125.274 62.7295 125.445 62.4658 125.569C62.2021 125.689 61.8815 125.75 61.5039 125.75C61.2467 125.75 61.0107 125.712 60.7959 125.637C60.5843 125.563 60.402 125.447 60.249 125.291C60.096 125.134 59.9772 124.931 59.8926 124.68C59.8112 124.43 59.7705 124.129 59.7705 123.777V120.369H60.6738V123.787C60.6738 124.024 60.6999 124.221 60.752 124.378C60.8073 124.531 60.8805 124.653 60.9717 124.744C61.0661 124.832 61.1702 124.894 61.2842 124.929C61.4014 124.965 61.5218 124.983 61.6455 124.983C62.0296 124.983 62.334 124.91 62.5586 124.763C62.7832 124.614 62.9443 124.413 63.042 124.163C63.1429 123.909 63.1934 123.627 63.1934 123.318ZM66.2109 121.199V125.652H65.3076V120.369H66.1865L66.2109 121.199ZM67.8613 120.34L67.8564 121.179C67.7816 121.163 67.71 121.153 67.6416 121.15C67.5765 121.144 67.5016 121.14 67.417 121.14C67.2087 121.14 67.0247 121.173 66.8652 121.238C66.7057 121.303 66.5706 121.394 66.46 121.511C66.3493 121.629 66.2614 121.769 66.1963 121.931C66.1344 122.091 66.0938 122.267 66.0742 122.459L65.8203 122.605C65.8203 122.286 65.8512 121.987 65.9131 121.707C65.9782 121.427 66.0775 121.179 66.2109 120.965C66.3444 120.746 66.5137 120.577 66.7188 120.457C66.9271 120.333 67.1745 120.271 67.4609 120.271C67.526 120.271 67.6009 120.279 67.6855 120.296C67.7702 120.309 67.8288 120.323 67.8613 120.34ZM68.3594 123.069V122.957C68.3594 122.576 68.4147 122.223 68.5254 121.897C68.6361 121.568 68.7956 121.284 69.0039 121.043C69.2122 120.799 69.4645 120.61 69.7607 120.476C70.057 120.34 70.389 120.271 70.7568 120.271C71.1279 120.271 71.4616 120.34 71.7578 120.476C72.0573 120.61 72.3112 120.799 72.5195 121.043C72.7311 121.284 72.8923 121.568 73.0029 121.897C73.1136 122.223 73.1689 122.576 73.1689 122.957V123.069C73.1689 123.45 73.1136 123.803 73.0029 124.129C72.8923 124.454 72.7311 124.739 72.5195 124.983C72.3112 125.224 72.0589 125.413 71.7627 125.549C71.4697 125.683 71.1377 125.75 70.7666 125.75C70.3955 125.75 70.0618 125.683 69.7656 125.549C69.4694 125.413 69.2155 125.224 69.0039 124.983C68.7956 124.739 68.6361 124.454 68.5254 124.129C68.4147 123.803 68.3594 123.45 68.3594 123.069ZM69.2627 122.957V123.069C69.2627 123.333 69.2936 123.582 69.3555 123.816C69.4173 124.047 69.5101 124.252 69.6338 124.431C69.7607 124.61 69.9186 124.752 70.1074 124.856C70.2962 124.957 70.516 125.008 70.7666 125.008C71.014 125.008 71.2305 124.957 71.416 124.856C71.6048 124.752 71.7611 124.61 71.8848 124.431C72.0085 124.252 72.1012 124.047 72.1631 123.816C72.2282 123.582 72.2607 123.333 72.2607 123.069V122.957C72.2607 122.696 72.2282 122.451 72.1631 122.219C72.1012 121.985 72.0068 121.778 71.8799 121.599C71.7562 121.417 71.5999 121.274 71.4111 121.17C71.2256 121.065 71.0075 121.013 70.7568 121.013C70.5094 121.013 70.2913 121.065 70.1025 121.17C69.917 121.274 69.7607 121.417 69.6338 121.599C69.5101 121.778 69.4173 121.985 69.3555 122.219C69.2936 122.451 69.2627 122.696 69.2627 122.957ZM75.2051 121.384V127.683H74.2969V120.369H75.127L75.2051 121.384ZM78.7646 122.966V123.069C78.7646 123.453 78.7191 123.81 78.6279 124.138C78.5368 124.464 78.4033 124.747 78.2275 124.988C78.055 125.229 77.8418 125.416 77.5879 125.549C77.334 125.683 77.0426 125.75 76.7139 125.75C76.3786 125.75 76.0824 125.694 75.8252 125.584C75.568 125.473 75.3499 125.312 75.1709 125.1C74.9919 124.889 74.8486 124.635 74.7412 124.339C74.637 124.042 74.5654 123.709 74.5264 123.338V122.791C74.5654 122.4 74.6387 122.05 74.7461 121.741C74.8535 121.432 74.9951 121.168 75.1709 120.95C75.3499 120.729 75.5664 120.561 75.8203 120.447C76.0742 120.33 76.3672 120.271 76.6992 120.271C77.0312 120.271 77.3258 120.336 77.583 120.466C77.8402 120.593 78.0566 120.776 78.2324 121.013C78.4082 121.251 78.54 121.536 78.6279 121.868C78.7191 122.197 78.7646 122.563 78.7646 122.966ZM77.8564 123.069V122.966C77.8564 122.703 77.8288 122.455 77.7734 122.224C77.7181 121.99 77.6318 121.785 77.5146 121.609C77.4007 121.43 77.2542 121.29 77.0752 121.189C76.8962 121.085 76.6829 121.033 76.4355 121.033C76.2077 121.033 76.0091 121.072 75.8398 121.15C75.6738 121.228 75.5322 121.334 75.415 121.467C75.2979 121.598 75.2018 121.747 75.127 121.917C75.0553 122.083 75.0016 122.255 74.9658 122.434V123.699C75.0309 123.927 75.1221 124.142 75.2393 124.343C75.3564 124.542 75.5127 124.703 75.708 124.827C75.9033 124.947 76.1491 125.008 76.4453 125.008C76.6895 125.008 76.8994 124.957 77.0752 124.856C77.2542 124.752 77.4007 124.61 77.5146 124.431C77.6318 124.252 77.7181 124.047 77.7734 123.816C77.8288 123.582 77.8564 123.333 77.8564 123.069ZM82.1094 125.75C81.7415 125.75 81.4079 125.688 81.1084 125.564C80.8122 125.437 80.5566 125.26 80.3418 125.032C80.1302 124.804 79.9674 124.534 79.8535 124.221C79.7396 123.909 79.6826 123.567 79.6826 123.196V122.991C79.6826 122.561 79.7461 122.179 79.873 121.843C80 121.505 80.1725 121.218 80.3906 120.984C80.6087 120.75 80.8561 120.572 81.1328 120.452C81.4095 120.331 81.696 120.271 81.9922 120.271C82.3698 120.271 82.6953 120.336 82.9688 120.466C83.2454 120.597 83.4717 120.779 83.6475 121.013C83.8232 121.244 83.9535 121.518 84.0381 121.834C84.1227 122.146 84.165 122.488 84.165 122.859V123.264H80.2197V122.527H83.2617V122.459C83.2487 122.224 83.1999 121.996 83.1152 121.775C83.0339 121.554 82.9036 121.371 82.7246 121.228C82.5456 121.085 82.3014 121.013 81.9922 121.013C81.7871 121.013 81.5983 121.057 81.4258 121.145C81.2533 121.23 81.1051 121.357 80.9814 121.526C80.8577 121.695 80.7617 121.902 80.6934 122.146C80.625 122.39 80.5908 122.672 80.5908 122.991V123.196C80.5908 123.447 80.625 123.683 80.6934 123.904C80.765 124.122 80.8675 124.314 81.001 124.48C81.1377 124.646 81.3021 124.776 81.4941 124.871C81.6895 124.965 81.9108 125.012 82.1582 125.012C82.4772 125.012 82.7474 124.947 82.9688 124.817C83.1901 124.687 83.3838 124.513 83.5498 124.295L84.0967 124.729C83.9827 124.902 83.8379 125.066 83.6621 125.222C83.4863 125.379 83.2699 125.506 83.0127 125.603C82.7588 125.701 82.4577 125.75 82.1094 125.75Z",fill:"#475569"}),(0,C.createElement)("path",{d:"M128.5 95.6396C128.5 94.6862 129.173 93.8654 130.108 93.6784L132.617 93.1767C136.5 92.3999 140.5 92.3999 144.383 93.1767L146.892 93.6784C147.827 93.8654 148.5 94.6862 148.5 95.6396V98.1115C148.5 104.172 145.076 109.712 139.655 112.422L138.947 112.776C138.666 112.917 138.334 112.917 138.053 112.776L137.345 112.422C131.924 109.712 128.5 104.172 128.5 98.1115V95.6396Z",fill:"#EAB413"}),(0,C.createElement)("path",{d:"M142.056 106H135.405C135.161 105.995 134.929 105.894 134.759 105.718C134.589 105.543 134.496 105.307 134.5 105.063V101.312C134.496 101.068 134.589 100.832 134.759 100.657C134.929 100.481 135.161 100.38 135.405 100.375H135.859V98.9691C135.847 98.1948 136.143 97.4474 136.681 96.8908C137.22 96.3342 137.957 96.0139 138.731 96C139.505 96.0141 140.242 96.3345 140.781 96.8911C141.319 97.4477 141.614 98.195 141.603 98.9691V100.375H142.056C142.3 100.38 142.532 100.481 142.702 100.657C142.871 100.833 142.964 101.068 142.961 101.312V105.062C142.965 105.306 142.871 105.542 142.702 105.718C142.532 105.894 142.3 105.995 142.056 106ZM138.731 97.5631C138.365 97.5699 138.016 97.7216 137.761 97.9851C137.506 98.2487 137.366 98.6025 137.371 98.9691V100.375H140.095V98.9691C140.1 98.602 139.96 98.2476 139.704 97.984C139.448 97.7204 139.098 97.569 138.731 97.5631Z",fill:"white"}),(0,C.createElement)("path",{d:"M107.562 122.46V125.062C107.475 125.193 107.335 125.339 107.143 125.502C106.951 125.661 106.685 125.801 106.347 125.922C106.011 126.039 105.578 126.098 105.048 126.098C104.615 126.098 104.216 126.023 103.852 125.873C103.49 125.72 103.176 125.499 102.909 125.209C102.646 124.916 102.44 124.561 102.294 124.145C102.151 123.725 102.079 123.249 102.079 122.719V122.167C102.079 121.636 102.141 121.163 102.265 120.746C102.392 120.329 102.577 119.976 102.821 119.687C103.065 119.394 103.365 119.172 103.72 119.022C104.075 118.869 104.481 118.793 104.94 118.793C105.484 118.793 105.938 118.887 106.303 119.076C106.671 119.262 106.957 119.519 107.162 119.848C107.37 120.176 107.504 120.551 107.562 120.971H106.62C106.578 120.714 106.493 120.479 106.366 120.268C106.243 120.056 106.065 119.887 105.834 119.76C105.603 119.63 105.305 119.564 104.94 119.564C104.612 119.564 104.327 119.625 104.086 119.745C103.845 119.866 103.646 120.038 103.49 120.263C103.334 120.487 103.217 120.759 103.139 121.078C103.064 121.397 103.026 121.757 103.026 122.157V122.719C103.026 123.129 103.074 123.495 103.168 123.817C103.266 124.14 103.404 124.415 103.583 124.643C103.762 124.867 103.975 125.038 104.223 125.155C104.473 125.272 104.75 125.331 105.053 125.331C105.388 125.331 105.66 125.303 105.868 125.248C106.076 125.189 106.239 125.121 106.356 125.043C106.474 124.962 106.563 124.885 106.625 124.813V123.222H104.979V122.46H107.562ZM111.049 126H109.564L109.574 125.233H111.049C111.557 125.233 111.98 125.128 112.318 124.916C112.657 124.701 112.911 124.402 113.08 124.018C113.253 123.63 113.339 123.178 113.339 122.66V122.226C113.339 121.819 113.29 121.457 113.192 121.142C113.095 120.823 112.951 120.554 112.763 120.336C112.574 120.115 112.343 119.947 112.069 119.833C111.799 119.719 111.488 119.662 111.137 119.662H109.535V118.891H111.137C111.602 118.891 112.027 118.969 112.411 119.125C112.795 119.278 113.126 119.501 113.402 119.794C113.682 120.084 113.897 120.435 114.047 120.849C114.197 121.259 114.271 121.721 114.271 122.235V122.66C114.271 123.174 114.197 123.638 114.047 124.052C113.897 124.462 113.681 124.812 113.397 125.102C113.118 125.391 112.779 125.614 112.382 125.771C111.988 125.924 111.544 126 111.049 126ZM110.067 118.891V126H109.125V118.891H110.067ZM118.31 123.212H116.41V122.445H118.31C118.677 122.445 118.975 122.387 119.203 122.27C119.431 122.152 119.597 121.99 119.701 121.781C119.809 121.573 119.862 121.335 119.862 121.068C119.862 120.824 119.809 120.595 119.701 120.38C119.597 120.165 119.431 119.993 119.203 119.862C118.975 119.729 118.677 119.662 118.31 119.662H116.63V126H115.688V118.891H118.31C118.847 118.891 119.301 118.983 119.672 119.169C120.043 119.354 120.325 119.612 120.517 119.94C120.709 120.266 120.805 120.639 120.805 121.059C120.805 121.514 120.709 121.903 120.517 122.226C120.325 122.548 120.043 122.794 119.672 122.963C119.301 123.129 118.847 123.212 118.31 123.212ZM121.996 118.891H124.35C124.883 118.891 125.334 118.972 125.702 119.135C126.073 119.298 126.355 119.538 126.547 119.857C126.742 120.173 126.84 120.562 126.84 121.024C126.84 121.35 126.773 121.648 126.64 121.918C126.509 122.185 126.321 122.413 126.073 122.602C125.829 122.787 125.536 122.925 125.194 123.017L124.931 123.119H122.719L122.709 122.353H124.379C124.717 122.353 124.999 122.294 125.224 122.177C125.448 122.056 125.618 121.895 125.731 121.693C125.845 121.492 125.902 121.269 125.902 121.024C125.902 120.751 125.849 120.512 125.741 120.307C125.634 120.102 125.465 119.944 125.233 119.833C125.006 119.719 124.711 119.662 124.35 119.662H122.938V126H121.996V118.891ZM126.151 126L124.423 122.777L125.404 122.772L127.157 125.941V126H126.151ZM134.931 123.739H135.868C135.819 124.188 135.691 124.59 135.482 124.945C135.274 125.3 134.979 125.582 134.599 125.79C134.218 125.995 133.743 126.098 133.173 126.098C132.756 126.098 132.377 126.02 132.035 125.863C131.697 125.707 131.405 125.486 131.161 125.199C130.917 124.91 130.728 124.563 130.595 124.159C130.465 123.752 130.399 123.3 130.399 122.802V122.094C130.399 121.596 130.465 121.145 130.595 120.741C130.728 120.334 130.919 119.986 131.166 119.696C131.417 119.407 131.718 119.184 132.069 119.027C132.421 118.871 132.816 118.793 133.256 118.793C133.793 118.793 134.247 118.894 134.618 119.096C134.989 119.298 135.277 119.577 135.482 119.936C135.691 120.29 135.819 120.702 135.868 121.171H134.931C134.885 120.839 134.8 120.554 134.677 120.316C134.553 120.076 134.377 119.89 134.149 119.76C133.922 119.63 133.624 119.564 133.256 119.564C132.94 119.564 132.662 119.625 132.421 119.745C132.183 119.866 131.983 120.036 131.82 120.258C131.661 120.479 131.54 120.744 131.459 121.054C131.378 121.363 131.337 121.706 131.337 122.084V122.802C131.337 123.15 131.373 123.477 131.444 123.783C131.519 124.089 131.632 124.358 131.781 124.589C131.931 124.82 132.121 125.002 132.353 125.136C132.584 125.266 132.857 125.331 133.173 125.331C133.573 125.331 133.892 125.268 134.13 125.141C134.368 125.014 134.547 124.831 134.667 124.594C134.791 124.356 134.879 124.071 134.931 123.739ZM136.776 123.417V123.305C136.776 122.924 136.832 122.571 136.942 122.245C137.053 121.916 137.213 121.632 137.421 121.391C137.629 121.146 137.882 120.958 138.178 120.824C138.474 120.688 138.806 120.619 139.174 120.619C139.545 120.619 139.879 120.688 140.175 120.824C140.474 120.958 140.728 121.146 140.937 121.391C141.148 121.632 141.309 121.916 141.42 122.245C141.531 122.571 141.586 122.924 141.586 123.305V123.417C141.586 123.798 141.531 124.151 141.42 124.477C141.309 124.802 141.148 125.087 140.937 125.331C140.728 125.572 140.476 125.761 140.18 125.897C139.887 126.031 139.555 126.098 139.184 126.098C138.812 126.098 138.479 126.031 138.183 125.897C137.886 125.761 137.632 125.572 137.421 125.331C137.213 125.087 137.053 124.802 136.942 124.477C136.832 124.151 136.776 123.798 136.776 123.417ZM137.68 123.305V123.417C137.68 123.681 137.711 123.93 137.772 124.164C137.834 124.395 137.927 124.6 138.051 124.779C138.178 124.958 138.336 125.1 138.524 125.204C138.713 125.305 138.933 125.355 139.184 125.355C139.431 125.355 139.647 125.305 139.833 125.204C140.022 125.1 140.178 124.958 140.302 124.779C140.425 124.6 140.518 124.395 140.58 124.164C140.645 123.93 140.678 123.681 140.678 123.417V123.305C140.678 123.044 140.645 122.799 140.58 122.567C140.518 122.333 140.424 122.126 140.297 121.947C140.173 121.765 140.017 121.622 139.828 121.518C139.643 121.413 139.424 121.361 139.174 121.361C138.926 121.361 138.708 121.413 138.52 121.518C138.334 121.622 138.178 121.765 138.051 121.947C137.927 122.126 137.834 122.333 137.772 122.567C137.711 122.799 137.68 123.044 137.68 123.305ZM143.617 121.767V126H142.709V120.717H143.568L143.617 121.767ZM143.432 123.158L143.012 123.144C143.015 122.782 143.062 122.449 143.153 122.143C143.244 121.833 143.38 121.565 143.559 121.337C143.738 121.109 143.961 120.933 144.228 120.81C144.494 120.683 144.804 120.619 145.155 120.619C145.403 120.619 145.631 120.655 145.839 120.727C146.047 120.795 146.228 120.904 146.381 121.054C146.534 121.203 146.653 121.396 146.737 121.63C146.822 121.864 146.864 122.147 146.864 122.479V126H145.961V122.523C145.961 122.247 145.914 122.025 145.819 121.859C145.728 121.693 145.598 121.573 145.429 121.498C145.259 121.42 145.061 121.381 144.833 121.381C144.566 121.381 144.343 121.428 144.164 121.522C143.985 121.617 143.842 121.747 143.734 121.913C143.627 122.079 143.549 122.27 143.5 122.484C143.454 122.696 143.432 122.921 143.432 123.158ZM146.854 122.66L146.249 122.846C146.252 122.556 146.299 122.278 146.391 122.011C146.485 121.744 146.62 121.506 146.796 121.298C146.975 121.09 147.195 120.925 147.455 120.805C147.715 120.681 148.013 120.619 148.349 120.619C148.632 120.619 148.882 120.657 149.101 120.731C149.322 120.806 149.507 120.922 149.657 121.078C149.81 121.231 149.926 121.428 150.004 121.669C150.082 121.91 150.121 122.196 150.121 122.528V126H149.213V122.519C149.213 122.222 149.166 121.993 149.071 121.83C148.98 121.664 148.85 121.549 148.681 121.483C148.515 121.415 148.316 121.381 148.085 121.381C147.886 121.381 147.711 121.415 147.558 121.483C147.405 121.552 147.276 121.646 147.172 121.767C147.068 121.884 146.988 122.019 146.933 122.172C146.881 122.325 146.854 122.488 146.854 122.66ZM152.392 121.732V128.031H151.483V120.717H152.313L152.392 121.732ZM155.951 123.314V123.417C155.951 123.801 155.906 124.158 155.814 124.486C155.723 124.812 155.59 125.095 155.414 125.336C155.242 125.577 155.028 125.764 154.774 125.897C154.521 126.031 154.229 126.098 153.9 126.098C153.565 126.098 153.269 126.042 153.012 125.932C152.755 125.821 152.536 125.66 152.357 125.448C152.178 125.237 152.035 124.983 151.928 124.687C151.824 124.39 151.752 124.057 151.713 123.686V123.139C151.752 122.748 151.825 122.398 151.933 122.089C152.04 121.78 152.182 121.516 152.357 121.298C152.536 121.076 152.753 120.909 153.007 120.795C153.261 120.678 153.554 120.619 153.886 120.619C154.218 120.619 154.512 120.684 154.77 120.814C155.027 120.941 155.243 121.124 155.419 121.361C155.595 121.599 155.727 121.884 155.814 122.216C155.906 122.545 155.951 122.911 155.951 123.314ZM155.043 123.417V123.314C155.043 123.051 155.015 122.803 154.96 122.572C154.905 122.338 154.818 122.133 154.701 121.957C154.587 121.778 154.441 121.638 154.262 121.537C154.083 121.433 153.869 121.381 153.622 121.381C153.394 121.381 153.196 121.42 153.026 121.498C152.86 121.576 152.719 121.682 152.602 121.815C152.484 121.946 152.388 122.095 152.313 122.265C152.242 122.431 152.188 122.603 152.152 122.782V124.047C152.217 124.275 152.309 124.49 152.426 124.691C152.543 124.89 152.699 125.051 152.895 125.175C153.09 125.295 153.336 125.355 153.632 125.355C153.876 125.355 154.086 125.305 154.262 125.204C154.441 125.1 154.587 124.958 154.701 124.779C154.818 124.6 154.905 124.395 154.96 124.164C155.015 123.93 155.043 123.681 155.043 123.417ZM158.085 118.5V126H157.177V118.5H158.085ZM160.517 120.717V126H159.608V120.717H160.517ZM159.54 119.315C159.54 119.169 159.584 119.045 159.672 118.944C159.763 118.843 159.896 118.793 160.072 118.793C160.245 118.793 160.377 118.843 160.468 118.944C160.562 119.045 160.609 119.169 160.609 119.315C160.609 119.455 160.562 119.576 160.468 119.677C160.377 119.774 160.245 119.823 160.072 119.823C159.896 119.823 159.763 119.774 159.672 119.677C159.584 119.576 159.54 119.455 159.54 119.315ZM165.082 125.097V122.377C165.082 122.169 165.04 121.988 164.955 121.835C164.874 121.679 164.75 121.558 164.584 121.474C164.418 121.389 164.213 121.347 163.969 121.347C163.741 121.347 163.541 121.386 163.368 121.464C163.199 121.542 163.065 121.645 162.968 121.771C162.873 121.898 162.826 122.035 162.826 122.182H161.923C161.923 121.993 161.972 121.806 162.069 121.62C162.167 121.435 162.307 121.267 162.489 121.117C162.675 120.964 162.896 120.844 163.153 120.756C163.414 120.665 163.703 120.619 164.022 120.619C164.407 120.619 164.745 120.684 165.038 120.814C165.334 120.945 165.565 121.142 165.731 121.405C165.901 121.666 165.985 121.993 165.985 122.387V124.848C165.985 125.023 166 125.211 166.029 125.409C166.062 125.608 166.109 125.779 166.171 125.922V126H165.229C165.183 125.896 165.147 125.757 165.121 125.585C165.095 125.409 165.082 125.246 165.082 125.097ZM165.238 122.797L165.248 123.432H164.335C164.078 123.432 163.848 123.453 163.646 123.495C163.445 123.534 163.275 123.594 163.139 123.676C163.002 123.757 162.898 123.86 162.826 123.983C162.755 124.104 162.719 124.245 162.719 124.408C162.719 124.574 162.756 124.726 162.831 124.862C162.906 124.999 163.018 125.108 163.168 125.189C163.321 125.268 163.508 125.307 163.729 125.307C164.006 125.307 164.25 125.248 164.462 125.131C164.674 125.014 164.841 124.87 164.965 124.701C165.092 124.532 165.16 124.368 165.17 124.208L165.556 124.643C165.533 124.779 165.471 124.931 165.37 125.097C165.269 125.263 165.134 125.422 164.965 125.575C164.799 125.725 164.6 125.85 164.369 125.951C164.141 126.049 163.884 126.098 163.598 126.098C163.24 126.098 162.925 126.028 162.655 125.888C162.388 125.748 162.18 125.561 162.03 125.326C161.884 125.089 161.811 124.823 161.811 124.53C161.811 124.247 161.866 123.998 161.977 123.783C162.087 123.565 162.247 123.384 162.455 123.241C162.663 123.095 162.914 122.984 163.207 122.909C163.5 122.834 163.827 122.797 164.188 122.797H165.238ZM168.31 121.845V126H167.406V120.717H168.261L168.31 121.845ZM168.095 123.158L167.719 123.144C167.722 122.782 167.776 122.449 167.88 122.143C167.984 121.833 168.131 121.565 168.319 121.337C168.508 121.109 168.733 120.933 168.993 120.81C169.257 120.683 169.548 120.619 169.867 120.619C170.128 120.619 170.362 120.655 170.57 120.727C170.779 120.795 170.956 120.906 171.103 121.059C171.252 121.212 171.366 121.41 171.444 121.654C171.522 121.895 171.562 122.19 171.562 122.538V126H170.653V122.528C170.653 122.252 170.613 122.03 170.531 121.864C170.45 121.695 170.331 121.573 170.175 121.498C170.019 121.42 169.826 121.381 169.599 121.381C169.374 121.381 169.169 121.428 168.983 121.522C168.801 121.617 168.643 121.747 168.51 121.913C168.38 122.079 168.277 122.27 168.202 122.484C168.131 122.696 168.095 122.921 168.095 123.158ZM175.146 120.717V121.41H172.289V120.717H175.146ZM173.256 119.433H174.159V124.691C174.159 124.87 174.187 125.006 174.242 125.097C174.298 125.188 174.369 125.248 174.457 125.277C174.545 125.307 174.639 125.321 174.74 125.321C174.815 125.321 174.893 125.315 174.975 125.302C175.059 125.285 175.123 125.272 175.165 125.263L175.17 126C175.098 126.023 175.004 126.044 174.887 126.063C174.773 126.086 174.634 126.098 174.472 126.098C174.25 126.098 174.047 126.054 173.861 125.966C173.676 125.878 173.528 125.731 173.417 125.526C173.31 125.318 173.256 125.038 173.256 124.687V119.433Z",fill:"#475569"}),(0,C.createElement)("circle",{cx:"238",cy:"102.5",r:"10.5",fill:"#EAB413"}),(0,C.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M239.318 95.3014C238.975 94.9581 238.509 94.7654 238.024 94.7654C237.539 94.7649 237.073 94.9575 236.73 95.3007C236.387 95.6439 236.194 96.1095 236.195 96.5947C236.195 97.0798 236.388 97.5451 236.731 97.8881C237.074 98.2312 237.539 98.4239 238.024 98.4239C238.509 98.4239 238.975 98.2311 239.318 97.8881C239.661 97.5451 239.853 97.0799 239.853 96.5947C239.853 96.1096 239.661 95.6444 239.318 95.3014ZM243.918 99.9939L240.722 99.9938H235.278V99.9939H232.119C231.668 99.9939 231.303 100.359 231.303 100.81C231.303 101.261 231.668 101.627 232.119 101.627H235.278V104.565L235.278 104.574L235.278 109.5C235.278 110.001 235.684 110.407 236.185 110.407C236.686 110.407 237.092 110.001 237.092 109.5L237.092 105.53H238H238.907V109.5C238.907 110.001 239.314 110.407 239.815 110.407C240.316 110.407 240.722 110.001 240.722 109.5V104.574L240.722 104.567V101.627H243.918C244.369 101.627 244.735 101.261 244.735 100.81C244.735 100.359 244.369 99.9939 243.918 99.9939Z",fill:"white"}),(0,C.createElement)("path",{d:"M196.804 123.212H194.904V122.445H196.804C197.172 122.445 197.469 122.387 197.697 122.27C197.925 122.152 198.091 121.99 198.195 121.781C198.303 121.573 198.356 121.335 198.356 121.068C198.356 120.824 198.303 120.595 198.195 120.38C198.091 120.165 197.925 119.993 197.697 119.862C197.469 119.729 197.172 119.662 196.804 119.662H195.124V126H194.182V118.891H196.804C197.341 118.891 197.795 118.983 198.166 119.169C198.537 119.354 198.819 119.612 199.011 119.94C199.203 120.266 199.299 120.639 199.299 121.059C199.299 121.514 199.203 121.903 199.011 122.226C198.819 122.548 198.537 122.794 198.166 122.963C197.795 123.129 197.341 123.212 196.804 123.212ZM201.257 121.547V126H200.354V120.717H201.232L201.257 121.547ZM202.907 120.688L202.902 121.527C202.827 121.511 202.756 121.501 202.688 121.498C202.622 121.492 202.548 121.488 202.463 121.488C202.255 121.488 202.071 121.521 201.911 121.586C201.752 121.651 201.617 121.742 201.506 121.859C201.395 121.977 201.307 122.117 201.242 122.279C201.18 122.439 201.14 122.615 201.12 122.807L200.866 122.953C200.866 122.634 200.897 122.335 200.959 122.055C201.024 121.775 201.123 121.527 201.257 121.312C201.39 121.094 201.56 120.925 201.765 120.805C201.973 120.681 202.22 120.619 202.507 120.619C202.572 120.619 202.647 120.627 202.731 120.644C202.816 120.657 202.875 120.671 202.907 120.688ZM203.405 123.417V123.305C203.405 122.924 203.461 122.571 203.571 122.245C203.682 121.916 203.841 121.632 204.05 121.391C204.258 121.146 204.51 120.958 204.807 120.824C205.103 120.688 205.435 120.619 205.803 120.619C206.174 120.619 206.507 120.688 206.804 120.824C207.103 120.958 207.357 121.146 207.565 121.391C207.777 121.632 207.938 121.916 208.049 122.245C208.16 122.571 208.215 122.924 208.215 123.305V123.417C208.215 123.798 208.16 124.151 208.049 124.477C207.938 124.802 207.777 125.087 207.565 125.331C207.357 125.572 207.105 125.761 206.809 125.897C206.516 126.031 206.184 126.098 205.812 126.098C205.441 126.098 205.108 126.031 204.812 125.897C204.515 125.761 204.261 125.572 204.05 125.331C203.841 125.087 203.682 124.802 203.571 124.477C203.461 124.151 203.405 123.798 203.405 123.417ZM204.309 123.305V123.417C204.309 123.681 204.34 123.93 204.401 124.164C204.463 124.395 204.556 124.6 204.68 124.779C204.807 124.958 204.965 125.1 205.153 125.204C205.342 125.305 205.562 125.355 205.812 125.355C206.06 125.355 206.276 125.305 206.462 125.204C206.651 125.1 206.807 124.958 206.931 124.779C207.054 124.6 207.147 124.395 207.209 124.164C207.274 123.93 207.307 123.681 207.307 123.417V123.305C207.307 123.044 207.274 122.799 207.209 122.567C207.147 122.333 207.053 122.126 206.926 121.947C206.802 121.765 206.646 121.622 206.457 121.518C206.271 121.413 206.053 121.361 205.803 121.361C205.555 121.361 205.337 121.413 205.148 121.518C204.963 121.622 204.807 121.765 204.68 121.947C204.556 122.126 204.463 122.333 204.401 122.567C204.34 122.799 204.309 123.044 204.309 123.305ZM210.876 125.185L212.321 120.717H213.244L211.345 126H210.739L210.876 125.185ZM209.67 120.717L211.159 125.209L211.262 126H210.656L208.742 120.717H209.67ZM216.237 126.098C215.869 126.098 215.536 126.036 215.236 125.912C214.94 125.785 214.685 125.608 214.47 125.38C214.258 125.152 214.095 124.882 213.981 124.569C213.868 124.257 213.811 123.915 213.811 123.544V123.339C213.811 122.909 213.874 122.527 214.001 122.191C214.128 121.853 214.3 121.566 214.519 121.332C214.737 121.098 214.984 120.92 215.261 120.8C215.537 120.679 215.824 120.619 216.12 120.619C216.498 120.619 216.823 120.684 217.097 120.814C217.373 120.945 217.6 121.127 217.775 121.361C217.951 121.592 218.081 121.866 218.166 122.182C218.251 122.494 218.293 122.836 218.293 123.207V123.612H214.348V122.875H217.39V122.807C217.377 122.572 217.328 122.344 217.243 122.123C217.162 121.902 217.032 121.719 216.853 121.576C216.674 121.433 216.429 121.361 216.12 121.361C215.915 121.361 215.726 121.405 215.554 121.493C215.381 121.578 215.233 121.705 215.109 121.874C214.986 122.043 214.89 122.25 214.821 122.494C214.753 122.738 214.719 123.02 214.719 123.339V123.544C214.719 123.795 214.753 124.031 214.821 124.252C214.893 124.47 214.995 124.662 215.129 124.828C215.266 124.994 215.43 125.124 215.622 125.219C215.817 125.313 216.039 125.36 216.286 125.36C216.605 125.36 216.875 125.295 217.097 125.165C217.318 125.035 217.512 124.861 217.678 124.643L218.225 125.077C218.111 125.25 217.966 125.414 217.79 125.57C217.614 125.727 217.398 125.854 217.141 125.951C216.887 126.049 216.586 126.098 216.237 126.098ZM220.251 121.845V126H219.348V120.717H220.202L220.251 121.845ZM220.036 123.158L219.66 123.144C219.663 122.782 219.717 122.449 219.821 122.143C219.925 121.833 220.072 121.565 220.261 121.337C220.45 121.109 220.674 120.933 220.935 120.81C221.198 120.683 221.49 120.619 221.809 120.619C222.069 120.619 222.303 120.655 222.512 120.727C222.72 120.795 222.897 120.906 223.044 121.059C223.194 121.212 223.308 121.41 223.386 121.654C223.464 121.895 223.503 122.19 223.503 122.538V126H222.595V122.528C222.595 122.252 222.554 122.03 222.473 121.864C222.391 121.695 222.272 121.573 222.116 121.498C221.96 121.42 221.768 121.381 221.54 121.381C221.315 121.381 221.11 121.428 220.925 121.522C220.743 121.617 220.585 121.747 220.451 121.913C220.321 122.079 220.218 122.27 220.144 122.484C220.072 122.696 220.036 122.921 220.036 123.158ZM230.124 119.521L227.771 126H226.809L229.519 118.891H230.139L230.124 119.521ZM232.097 126L229.738 119.521L229.724 118.891H230.344L233.063 126H232.097ZM231.975 123.368V124.14H227.98V123.368H231.975ZM235.993 125.355C236.208 125.355 236.407 125.312 236.589 125.224C236.771 125.136 236.921 125.015 237.038 124.862C237.155 124.706 237.222 124.529 237.238 124.33H238.098C238.081 124.643 237.976 124.934 237.78 125.204C237.588 125.471 237.336 125.688 237.023 125.854C236.711 126.016 236.368 126.098 235.993 126.098C235.596 126.098 235.249 126.028 234.953 125.888C234.66 125.748 234.416 125.556 234.221 125.312C234.029 125.067 233.884 124.787 233.786 124.472C233.692 124.153 233.645 123.816 233.645 123.461V123.256C233.645 122.901 233.692 122.566 233.786 122.25C233.884 121.931 234.029 121.649 234.221 121.405C234.416 121.161 234.66 120.969 234.953 120.829C235.249 120.689 235.596 120.619 235.993 120.619C236.407 120.619 236.768 120.704 237.077 120.873C237.386 121.039 237.629 121.267 237.805 121.557C237.984 121.843 238.081 122.169 238.098 122.533H237.238C237.222 122.315 237.16 122.118 237.053 121.942C236.949 121.767 236.805 121.627 236.623 121.522C236.444 121.415 236.234 121.361 235.993 121.361C235.716 121.361 235.484 121.417 235.295 121.527C235.109 121.635 234.961 121.781 234.851 121.967C234.743 122.149 234.665 122.353 234.616 122.577C234.571 122.799 234.548 123.025 234.548 123.256V123.461C234.548 123.692 234.571 123.92 234.616 124.145C234.662 124.369 234.738 124.573 234.846 124.755C234.956 124.937 235.104 125.084 235.29 125.194C235.479 125.302 235.713 125.355 235.993 125.355ZM241.228 125.355C241.442 125.355 241.641 125.312 241.823 125.224C242.006 125.136 242.155 125.015 242.272 124.862C242.39 124.706 242.456 124.529 242.473 124.33H243.332C243.316 124.643 243.21 124.934 243.015 125.204C242.823 125.471 242.57 125.688 242.258 125.854C241.945 126.016 241.602 126.098 241.228 126.098C240.83 126.098 240.484 126.028 240.188 125.888C239.895 125.748 239.65 125.556 239.455 125.312C239.263 125.067 239.118 124.787 239.021 124.472C238.926 124.153 238.879 123.816 238.879 123.461V123.256C238.879 122.901 238.926 122.566 239.021 122.25C239.118 121.931 239.263 121.649 239.455 121.405C239.65 121.161 239.895 120.969 240.188 120.829C240.484 120.689 240.83 120.619 241.228 120.619C241.641 120.619 242.002 120.704 242.312 120.873C242.621 121.039 242.863 121.267 243.039 121.557C243.218 121.843 243.316 122.169 243.332 122.533H242.473C242.456 122.315 242.395 122.118 242.287 121.942C242.183 121.767 242.04 121.627 241.857 121.522C241.678 121.415 241.468 121.361 241.228 121.361C240.951 121.361 240.718 121.417 240.529 121.527C240.344 121.635 240.196 121.781 240.085 121.967C239.978 122.149 239.899 122.353 239.851 122.577C239.805 122.799 239.782 123.025 239.782 123.256V123.461C239.782 123.692 239.805 123.92 239.851 124.145C239.896 124.369 239.973 124.573 240.08 124.755C240.191 124.937 240.339 125.084 240.524 125.194C240.713 125.302 240.948 125.355 241.228 125.355ZM246.54 126.098C246.172 126.098 245.839 126.036 245.539 125.912C245.243 125.785 244.987 125.608 244.772 125.38C244.561 125.152 244.398 124.882 244.284 124.569C244.17 124.257 244.113 123.915 244.113 123.544V123.339C244.113 122.909 244.177 122.527 244.304 122.191C244.431 121.853 244.603 121.566 244.821 121.332C245.039 121.098 245.287 120.92 245.563 120.8C245.84 120.679 246.127 120.619 246.423 120.619C246.8 120.619 247.126 120.684 247.399 120.814C247.676 120.945 247.902 121.127 248.078 121.361C248.254 121.592 248.384 121.866 248.469 122.182C248.553 122.494 248.596 122.836 248.596 123.207V123.612H244.65V122.875H247.692V122.807C247.679 122.572 247.631 122.344 247.546 122.123C247.465 121.902 247.334 121.719 247.155 121.576C246.976 121.433 246.732 121.361 246.423 121.361C246.218 121.361 246.029 121.405 245.856 121.493C245.684 121.578 245.536 121.705 245.412 121.874C245.288 122.043 245.192 122.25 245.124 122.494C245.056 122.738 245.021 123.02 245.021 123.339V123.544C245.021 123.795 245.056 124.031 245.124 124.252C245.196 124.47 245.298 124.662 245.432 124.828C245.568 124.994 245.733 125.124 245.925 125.219C246.12 125.313 246.341 125.36 246.589 125.36C246.908 125.36 247.178 125.295 247.399 125.165C247.621 125.035 247.814 124.861 247.98 124.643L248.527 125.077C248.413 125.25 248.269 125.414 248.093 125.57C247.917 125.727 247.701 125.854 247.443 125.951C247.189 126.049 246.888 126.098 246.54 126.098ZM252.727 124.599C252.727 124.468 252.697 124.348 252.639 124.237C252.583 124.123 252.468 124.021 252.292 123.93C252.119 123.835 251.859 123.754 251.511 123.686C251.218 123.624 250.952 123.55 250.715 123.466C250.48 123.381 250.28 123.279 250.114 123.158C249.951 123.038 249.826 122.896 249.738 122.733C249.65 122.571 249.606 122.38 249.606 122.162C249.606 121.954 249.652 121.757 249.743 121.571C249.838 121.386 249.969 121.221 250.139 121.078C250.311 120.935 250.518 120.823 250.759 120.741C251 120.66 251.268 120.619 251.564 120.619C251.988 120.619 252.349 120.694 252.648 120.844C252.948 120.993 253.177 121.194 253.337 121.444C253.496 121.692 253.576 121.967 253.576 122.27H252.673C252.673 122.123 252.629 121.981 252.541 121.845C252.456 121.705 252.331 121.589 252.165 121.498C252.002 121.407 251.802 121.361 251.564 121.361C251.314 121.361 251.11 121.4 250.954 121.479C250.801 121.553 250.689 121.649 250.617 121.767C250.549 121.884 250.515 122.007 250.515 122.138C250.515 122.235 250.531 122.323 250.563 122.401C250.599 122.476 250.661 122.546 250.749 122.611C250.837 122.673 250.961 122.732 251.12 122.787C251.28 122.842 251.483 122.898 251.73 122.953C252.163 123.051 252.52 123.168 252.8 123.305C253.08 123.441 253.288 123.609 253.425 123.808C253.562 124.006 253.63 124.247 253.63 124.53C253.63 124.761 253.581 124.973 253.483 125.165C253.389 125.357 253.251 125.523 253.068 125.663C252.889 125.8 252.674 125.907 252.424 125.985C252.176 126.06 251.898 126.098 251.589 126.098C251.123 126.098 250.729 126.015 250.407 125.849C250.085 125.683 249.841 125.468 249.675 125.204C249.509 124.94 249.426 124.662 249.426 124.369H250.334C250.347 124.617 250.419 124.813 250.549 124.96C250.679 125.103 250.839 125.206 251.027 125.268C251.216 125.326 251.403 125.355 251.589 125.355C251.836 125.355 252.043 125.323 252.209 125.258C252.378 125.193 252.507 125.103 252.595 124.989C252.683 124.875 252.727 124.745 252.727 124.599ZM257.893 124.599C257.893 124.468 257.863 124.348 257.805 124.237C257.749 124.123 257.634 124.021 257.458 123.93C257.285 123.835 257.025 123.754 256.677 123.686C256.384 123.624 256.118 123.55 255.881 123.466C255.646 123.381 255.446 123.279 255.28 123.158C255.118 123.038 254.992 122.896 254.904 122.733C254.816 122.571 254.772 122.38 254.772 122.162C254.772 121.954 254.818 121.757 254.909 121.571C255.004 121.386 255.135 121.221 255.305 121.078C255.477 120.935 255.684 120.823 255.925 120.741C256.166 120.66 256.434 120.619 256.73 120.619C257.154 120.619 257.515 120.694 257.814 120.844C258.114 120.993 258.343 121.194 258.503 121.444C258.662 121.692 258.742 121.967 258.742 122.27H257.839C257.839 122.123 257.795 121.981 257.707 121.845C257.622 121.705 257.497 121.589 257.331 121.498C257.168 121.407 256.968 121.361 256.73 121.361C256.48 121.361 256.276 121.4 256.12 121.479C255.967 121.553 255.855 121.649 255.783 121.767C255.715 121.884 255.681 122.007 255.681 122.138C255.681 122.235 255.697 122.323 255.729 122.401C255.765 122.476 255.827 122.546 255.915 122.611C256.003 122.673 256.127 122.732 256.286 122.787C256.446 122.842 256.649 122.898 256.896 122.953C257.329 123.051 257.686 123.168 257.966 123.305C258.246 123.441 258.454 123.609 258.591 123.808C258.728 124.006 258.796 124.247 258.796 124.53C258.796 124.761 258.747 124.973 258.649 125.165C258.555 125.357 258.417 125.523 258.234 125.663C258.055 125.8 257.84 125.907 257.59 125.985C257.342 126.06 257.064 126.098 256.755 126.098C256.289 126.098 255.896 126.015 255.573 125.849C255.251 125.683 255.007 125.468 254.841 125.204C254.675 124.94 254.592 124.662 254.592 124.369H255.5C255.513 124.617 255.585 124.813 255.715 124.96C255.845 125.103 256.005 125.206 256.193 125.268C256.382 125.326 256.569 125.355 256.755 125.355C257.002 125.355 257.209 125.323 257.375 125.258C257.544 125.193 257.673 125.103 257.761 124.989C257.849 124.875 257.893 124.745 257.893 124.599ZM260.964 120.717V126H260.056V120.717H260.964ZM259.987 119.315C259.987 119.169 260.031 119.045 260.119 118.944C260.21 118.843 260.344 118.793 260.52 118.793C260.692 118.793 260.824 118.843 260.915 118.944C261.009 119.045 261.057 119.169 261.057 119.315C261.057 119.455 261.009 119.576 260.915 119.677C260.824 119.774 260.692 119.823 260.52 119.823C260.344 119.823 260.21 119.774 260.119 119.677C260.031 119.576 259.987 119.455 259.987 119.315ZM262.409 118.5H263.317V124.975L263.239 126H262.409V118.5ZM266.887 123.314V123.417C266.887 123.801 266.841 124.158 266.75 124.486C266.659 124.812 266.525 125.095 266.35 125.336C266.174 125.577 265.959 125.764 265.705 125.897C265.451 126.031 265.16 126.098 264.831 126.098C264.496 126.098 264.201 126.041 263.947 125.927C263.697 125.81 263.485 125.642 263.312 125.424C263.14 125.206 263.002 124.942 262.897 124.633C262.797 124.324 262.727 123.975 262.688 123.588V123.139C262.727 122.748 262.797 122.398 262.897 122.089C263.002 121.78 263.14 121.516 263.312 121.298C263.485 121.076 263.697 120.909 263.947 120.795C264.198 120.678 264.489 120.619 264.821 120.619C265.153 120.619 265.448 120.684 265.705 120.814C265.962 120.941 266.177 121.124 266.35 121.361C266.525 121.599 266.659 121.884 266.75 122.216C266.841 122.545 266.887 122.911 266.887 123.314ZM265.979 123.417V123.314C265.979 123.051 265.954 122.803 265.905 122.572C265.856 122.338 265.778 122.133 265.671 121.957C265.563 121.778 265.422 121.638 265.246 121.537C265.07 121.433 264.854 121.381 264.597 121.381C264.369 121.381 264.17 121.42 264.001 121.498C263.835 121.576 263.693 121.682 263.576 121.815C263.459 121.946 263.363 122.095 263.288 122.265C263.216 122.431 263.163 122.603 263.127 122.782V123.959C263.179 124.187 263.264 124.407 263.381 124.618C263.501 124.826 263.661 124.997 263.859 125.131C264.061 125.264 264.31 125.331 264.606 125.331C264.851 125.331 265.059 125.282 265.231 125.185C265.407 125.084 265.549 124.945 265.656 124.77C265.767 124.594 265.848 124.39 265.9 124.159C265.952 123.928 265.979 123.681 265.979 123.417ZM269.011 120.717V126H268.103V120.717H269.011ZM268.034 119.315C268.034 119.169 268.078 119.045 268.166 118.944C268.257 118.843 268.391 118.793 268.566 118.793C268.739 118.793 268.871 118.843 268.962 118.944C269.056 119.045 269.104 119.169 269.104 119.315C269.104 119.455 269.056 119.576 268.962 119.677C268.871 119.774 268.739 119.823 268.566 119.823C268.391 119.823 268.257 119.774 268.166 119.677C268.078 119.576 268.034 119.455 268.034 119.315ZM271.442 118.5V126H270.534V118.5H271.442ZM273.874 120.717V126H272.966V120.717H273.874ZM272.897 119.315C272.897 119.169 272.941 119.045 273.029 118.944C273.12 118.843 273.254 118.793 273.43 118.793C273.602 118.793 273.734 118.843 273.825 118.944C273.92 119.045 273.967 119.169 273.967 119.315C273.967 119.455 273.92 119.576 273.825 119.677C273.734 119.774 273.602 119.823 273.43 119.823C273.254 119.823 273.12 119.774 273.029 119.677C272.941 119.576 272.897 119.455 272.897 119.315ZM277.536 120.717V121.41H274.68V120.717H277.536ZM275.646 119.433H276.55V124.691C276.55 124.87 276.577 125.006 276.633 125.097C276.688 125.188 276.76 125.248 276.848 125.277C276.936 125.307 277.03 125.321 277.131 125.321C277.206 125.321 277.284 125.315 277.365 125.302C277.45 125.285 277.513 125.272 277.556 125.263L277.561 126C277.489 126.023 277.395 126.044 277.277 126.063C277.163 126.086 277.025 126.098 276.862 126.098C276.641 126.098 276.438 126.054 276.252 125.966C276.066 125.878 275.918 125.731 275.808 125.526C275.7 125.318 275.646 125.038 275.646 124.687V119.433ZM280.08 125.453L281.55 120.717H282.517L280.397 126.815C280.349 126.946 280.284 127.086 280.202 127.235C280.124 127.388 280.023 127.533 279.899 127.67C279.776 127.807 279.626 127.917 279.45 128.002C279.278 128.09 279.071 128.134 278.83 128.134C278.758 128.134 278.667 128.124 278.557 128.104C278.446 128.085 278.368 128.069 278.322 128.056L278.317 127.323C278.343 127.326 278.384 127.33 278.439 127.333C278.498 127.34 278.539 127.343 278.562 127.343C278.767 127.343 278.941 127.315 279.084 127.26C279.227 127.208 279.348 127.118 279.445 126.991C279.546 126.868 279.632 126.697 279.704 126.479L280.08 125.453ZM279.001 120.717L280.373 124.818L280.607 125.771L279.958 126.103L278.015 120.717H279.001Z",fill:"#475569"}),(0,C.createElement)("defs",null,(0,C.createElement)("clipPath",{id:"clip0_37_936"},(0,C.createElement)("rect",{width:"10",height:"10",fill:"white",transform:"translate(263 64)"})))),a=window.wp.blockEditor,i=function({isSelected:e,attributes:t}){const V=(0,a.useBlockProps)();return t.isPreview?(0,C.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Z):(0,C.createElement)(C.Fragment,null,(0,C.createElement)("div",{...V},e?(0,C.createElement)("div",null,(0,C.createElement)(M,null)):Z),(0,C.createElement)(a.InspectorControls,null,(0,C.createElement)("div",{style:{padding:"20px"}},(0,C.createElement)(M,null))))},{CaptchaOptions:c,CaptchaBlockEdit:o,CaptchaBlockTip:d}=JetFBComponents,{__:s}=wp.i18n,h={name:"friendly",title:s("Friendly Captcha","jet-form-builder"),isActive:(C,e)=>C.provider===e.provider,description:s("Set the Friendly Captcha settings in the Captcha Container block to add an anti-bot solution that generates a unique crypto puzzle for each visitor.","jet-form-builder"),icon:(0,C.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("path",{d:"M49.7875 46.6163C50.1279 46.1814 50.0512 45.5529 49.6163 45.2125C49.1814 44.8721 48.5529 44.9487 48.2125 45.3837L45.0179 49.4657L43.7289 48.0932C43.3509 47.6906 42.718 47.6707 42.3154 48.0488C41.9128 48.4269 41.893 49.0597 42.2711 49.4623L43.959 51.2597C44.5884 51.9299 45.6671 51.8813 46.2337 51.1573L49.7875 46.6163Z",fill:"currentColor"}),(0,C.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M50.2929 14.9131C50.6834 14.5226 50.6847 13.8877 50.2786 13.5133C45.7446 9.33346 39.7941 7 33.603 7C20.0242 7 9 18.0242 9 31.603C9 45.1818 20.0242 56.206 33.603 56.206C35.5725 56.206 37.5176 55.9699 39.4005 55.5133C41.1615 57.0613 43.4711 58 46 58C51.5229 58 56 53.5229 56 48C56 42.4772 51.5229 38 46 38C40.4772 38 36 42.4772 36 48C36 48.2199 36.0071 48.4382 36.0211 48.6546C35.2246 48.7675 34.4168 48.8251 33.603 48.8251C24.0979 48.8251 16.3809 41.1081 16.3809 31.603C16.3809 22.0979 24.0979 14.3809 33.603 14.3809C37.8363 14.3809 41.9089 15.9394 45.0536 18.7388C45.4661 19.106 46.0975 19.1085 46.488 18.718L50.2929 14.9131ZM36.3489 50.6281C35.4448 50.7586 34.5273 50.8251 33.603 50.8251C29.115 50.8251 24.9843 49.284 21.7118 46.7025L19.3079 49.1064C23.2042 52.2932 28.1821 54.206 33.603 54.206C35.0402 54.206 36.4632 54.0692 37.8548 53.8026C37.1779 52.8543 36.6626 51.7827 36.3489 50.6281ZM33.603 9C38.9274 9 44.0581 10.8786 48.1089 14.2687L45.7072 16.6704C42.2994 13.9079 38.0299 12.3809 33.603 12.3809C22.9933 12.3809 14.3809 20.9933 14.3809 31.603C14.3809 37.0044 16.6131 41.8881 20.2046 45.3813L17.8147 47.7712C13.6112 43.6656 11 37.9366 11 31.603C11 19.1288 21.1288 9 33.603 9ZM38 48C38 43.5817 41.5817 40 46 40C50.4183 40 54 43.5817 54 48C54 52.4183 50.4183 56 46 56C41.5817 56 38 52.4183 38 48Z",fill:"currentColor"}),(0,C.createElement)("path",{d:"M26.2222 35.2935C28.2604 35.2935 29.9126 33.6412 29.9126 31.603C29.9126 29.5648 28.2604 27.9126 26.2222 27.9126C24.184 27.9126 22.5317 29.5648 22.5317 31.603C22.5317 33.6412 24.184 35.2935 26.2222 35.2935Z",fill:"currentColor"}),(0,C.createElement)("path",{d:"M40.9839 35.2935C43.0221 35.2935 44.6744 33.6412 44.6744 31.603C44.6744 29.5648 43.0221 27.9126 40.9839 27.9126C38.9457 27.9126 37.2935 29.5648 37.2935 31.603C37.2935 33.6412 38.9457 35.2935 40.9839 35.2935Z",fill:"currentColor"})),scope:["block","inserter"],attributes:{provider:"friendly"}},{registerPlugin:m}=wp.plugins,{registerBlockVariation:p}=wp.blocks;p("jet-forms/captcha-container",h),m("jf-friendly-captcha",{render:function(){return(0,C.createElement)(C.Fragment,null,(0,C.createElement)(c,{provider:"friendly"},(e=>(0,C.createElement)(C.Fragment,null,(0,C.createElement)(M,{...e}),(0,C.createElement)(d,null)))),(0,C.createElement)(o,{provider:"friendly"},(e=>(0,C.createElement)(i,{...e}))))}})})(); \ No newline at end of file diff --git a/modules/captcha/assets/build/friendly.captcha/frontend.asset.php b/modules/captcha/assets/build/friendly.captcha/frontend.asset.php index 9fe29c6b9..5b863ea05 100644 --- a/modules/captcha/assets/build/friendly.captcha/frontend.asset.php +++ b/modules/captcha/assets/build/friendly.captcha/frontend.asset.php @@ -1 +1 @@ - array(), 'version' => '0438334244a8b492601d'); + array(), 'version' => '8e50e07438c640962da8'); diff --git a/modules/captcha/assets/build/friendly.captcha/frontend.js b/modules/captcha/assets/build/friendly.captcha/frontend.js index 53bbd2f31..5836debde 100644 --- a/modules/captcha/assets/build/friendly.captcha/frontend.js +++ b/modules/captcha/assets/build/friendly.captcha/frontend.js @@ -1 +1 @@ -(()=>{"use strict";const t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",e="=".charCodeAt(0),r=new Uint8Array(256);for(let e=0;e<64;e++)r[t.charCodeAt(e)]=e;function i(e){const r=e.length;let i="";for(let o=0;o>>2),s+=t.charAt((3&r)<<4|n>>>4),s+=t.charAt((15&n)<<2|a>>>6),s+=t.charAt(63&a),i+=s}return r%3==2?i=i.substring(0,i.length-1)+"=":r%3==1&&(i=i.substring(0,i.length-2)+"=="),i}const o='',n='';function a(t,e,r,i,o,n,a,s=!1,A,l){return`
    \n\n
    \n ${o}\n ${a?``:""}\n ${s?'0%':""}\n
    \n
    FriendlyCaptcha ⇗\n${"-"===t?"":``}`}function s(t,e,r,i=!0,o=!1){return a(t,e.rtl,n,!0,`${e.text_error}
    ${r}`,o?".HEADLESS_ERROR":".ERROR",i?e.button_retry:void 0)}let A,l;async function c(t,e,r){let i=1e3;return fetch(t,e).catch(async o=>{if(0===r)throw o;return await new Promise(t=>setTimeout(t,i)),i*=4,c(t,e,r-1)})}"undefined"!=typeof navigator&&"string"==typeof navigator.userAgent&&(A=navigator,l=A.userAgent.toLowerCase());const g={text_init:" Aktiverer...",text_ready:"Jeg er ikke en robot",button_start:"Klikk for å starte verifiseringen",text_fetching:"Henter data",text_solving:"Sjekker at du er et menneske...",text_completed:"Jeg er et menneske",text_completed_sr:"Automatisk spam-sjekk fullført",text_expired:"Verifisering kunne ikke fullføres",button_restart:"Omstart",text_error:"Bekreftelsen mislyktes",button_retry:"Prøv på nytt",text_fetch_error:"Tilkoblingen mislyktes"},u={en:{text_init:"Initializing...",text_ready:"Anti-Robot Verification",button_start:"Click to start verification",text_fetching:"Fetching Challenge",text_solving:"Verifying you are human...",text_completed:"I am human",text_completed_sr:"Automatic spam check completed",text_expired:"Anti-Robot verification expired",button_restart:"Restart",text_error:"Verification failed",button_retry:"Retry",text_fetch_error:"Failed to connect to"},de:{text_init:"Initialisierung...",text_ready:"Anti-Roboter-Verifizierung",button_start:"Hier klicken",text_fetching:"Herausforderung laden...",text_solving:"Verifizierung, dass Sie ein Mensch sind...",text_completed:"Ich bin ein Mensch",text_completed_sr:"Automatische Spamprüfung abgeschlossen",text_expired:"Verifizierung abgelaufen",button_restart:"Erneut starten",text_error:"Verifizierung fehlgeschlagen",button_retry:"Erneut versuchen",text_fetch_error:"Verbindungsproblem mit"},nl:{text_init:"Initializeren...",text_ready:"Anti-robotverificatie",button_start:"Klik om te starten",text_fetching:"Aan het laden...",text_solving:"Anti-robotverificatie bezig...",text_completed:"Ik ben een mens",text_completed_sr:"Automatische anti-spamcheck voltooid",text_expired:"Verificatie verlopen",button_restart:"Opnieuw starten",text_error:"Verificatie mislukt",button_retry:"Opnieuw proberen",text_fetch_error:"Verbinding mislukt met"},fr:{text_init:"Chargement...",text_ready:"Vérification Anti-Robot",button_start:"Clique ici pour vérifier",text_fetching:"Chargement du défi",text_solving:"Nous vérifions que vous n'êtes pas un robot...",text_completed:"Je ne suis pas un robot",text_completed_sr:"Vérification automatique des spams terminée",text_expired:"Vérification anti-robot expirée",button_restart:"Redémarrer",text_error:"Échec de la vérification",button_retry:"Recommencer",text_fetch_error:"Problème de connexion avec"},it:{text_init:"Inizializzazione...",text_ready:"Verifica Anti-Robot",button_start:"Clicca per iniziare",text_fetching:"Caricamento...",text_solving:"Verificando che sei umano...",text_completed:"Non sono un robot",text_completed_sr:"Controllo automatico dello spam completato",text_expired:"Verifica Anti-Robot scaduta",button_restart:"Ricomincia",text_error:"Verifica fallita",button_retry:"Riprova",text_fetch_error:"Problema di connessione con"},pt:{text_init:"Inicializando...",text_ready:"Verificação Anti-Robô",button_start:"Clique para iniciar verificação",text_fetching:"Carregando...",text_solving:"Verificando se você é humano...",text_completed:"Eu sou humano",text_completed_sr:"Verificação automática de spam concluída",text_expired:"Verificação Anti-Robô expirada",button_restart:"Reiniciar",text_error:"Verificação falhou",button_retry:"Tentar novamente",text_fetch_error:"Falha de conexão com"},es:{text_init:"Inicializando...",text_ready:"Verificación Anti-Robot",button_start:"Haga clic para iniciar la verificación",text_fetching:"Cargando desafío",text_solving:"Verificando que eres humano...",text_completed:"Soy humano",text_completed_sr:"Verificación automática de spam completada",text_expired:"Verificación Anti-Robot expirada",button_restart:"Reiniciar",text_error:"Ha fallado la verificación",button_retry:"Intentar de nuevo",text_fetch_error:"Error al conectarse a"},ca:{text_init:"Inicialitzant...",text_ready:"Verificació Anti-Robot",button_start:"Fes clic per començar la verificació",text_fetching:"Carregant repte",text_solving:"Verificant que ets humà...",text_completed:"Soc humà",text_completed_sr:"Verificació automàtica de correu brossa completada",text_expired:"La verificació Anti-Robot ha expirat",button_restart:"Reiniciar",text_error:"Ha fallat la verificació",button_retry:"Tornar a provar",text_fetch_error:"Error connectant a"},ja:{text_init:"開始しています...",text_ready:"アンチロボット認証",button_start:"クリックして認証を開始",text_fetching:"ロードしています",text_solving:"認証中...",text_completed:"私はロボットではありません",text_completed_sr:"自動スパムチェックが完了しました",text_expired:"認証の期限が切れています",button_restart:"再度認証を行う",text_error:"認証にエラーが発生しました",button_retry:"再度認証を行う",text_fetch_error:"接続ができませんでした"},da:{text_init:"Aktiverer...",text_ready:"Jeg er ikke en robot",button_start:"Klik for at starte verifikationen",text_fetching:"Henter data",text_solving:"Kontrollerer at du er et menneske...",text_completed:"Jeg er et menneske.",text_completed_sr:"Automatisk spamkontrol gennemført",text_expired:"Verifikationen kunne ikke fuldføres",button_restart:"Genstart",text_error:"Bekræftelse mislykkedes",button_retry:"Prøv igen",text_fetch_error:"Forbindelsen mislykkedes"},ru:{text_init:"Инициализация...",text_ready:"АнтиРобот проверка",button_start:"Нажмите, чтобы начать проверку",text_fetching:"Получаю задачу",text_solving:"Проверяю, что вы человек...",text_completed:"Я человек",text_completed_sr:"Aвтоматическая проверка на спам завершена",text_expired:"Срок АнтиРоботной проверки истёк",button_restart:"Начать заново",text_error:"Ошибка проверки",button_retry:"Повторить ещё раз",text_fetch_error:"Ошибка подключения"},sv:{text_init:"Aktiverar...",text_ready:"Jag är inte en robot",button_start:"Klicka för att verifiera",text_fetching:"Hämtar data",text_solving:"Kontrollerar att du är människa...",text_completed:"Jag är en människa",text_completed_sr:"Automatisk spamkontroll slutförd",text_expired:"Anti-robot-verifieringen har löpt ut",button_restart:"Börja om",text_error:"Verifiering kunde inte slutföras",button_retry:"Omstart",text_fetch_error:"Verifiering misslyckades"},tr:{text_init:"Başlatılıyor...",text_ready:"Anti-Robot Doğrulaması",button_start:"Doğrulamayı başlatmak için tıklayın",text_fetching:"Yükleniyor",text_solving:"Robot olmadığınız doğrulanıyor...",text_completed:"Ben bir insanım",text_completed_sr:"Otomatik spam kontrolü tamamlandı",text_expired:"Anti-Robot doğrulamasının süresi doldu",button_restart:"Yeniden başlat",text_error:"Doğrulama başarısız oldu",button_retry:"Tekrar dene",text_fetch_error:"Bağlantı başarısız oldu"},el:{text_init:"Προετοιμασία...",text_ready:"Anti-Robot Επαλήθευση",button_start:" Κάντε κλικ για να ξεκινήσει η επαλήθευση",text_fetching:" Λήψη πρόκλησης",text_solving:" Επιβεβαίωση ανθρώπου...",text_completed:"Είμαι άνθρωπος",text_completed_sr:" Ο αυτόματος έλεγχος ανεπιθύμητου περιεχομένου ολοκληρώθηκε",text_expired:" Η επαλήθευση Anti-Robot έληξε",button_restart:" Επανεκκίνηση",text_error:" Η επαλήθευση απέτυχε",button_retry:" Δοκιμάστε ξανά",text_fetch_error:" Αποτυχία σύνδεσης με"},uk:{text_init:"Ініціалізація...",text_ready:"Антиробот верифікація",button_start:"Натисніть, щоб розпочати верифікацію",text_fetching:"З’єднання",text_solving:"Перевірка, що ви не робот...",text_completed:"Я не робот",text_completed_sr:"Автоматична перевірка спаму завершена",text_expired:"Час вичерпано",button_restart:"Почати знову",text_error:"Верифікація не вдалась",button_retry:"Спробувати знову",text_fetch_error:"Не вдалось з’єднатись"},bg:{text_init:"Инициализиране...",text_ready:"Анти-робот проверка",button_start:"Щракнете, за да започнете проверката",text_fetching:"Предизвикателство",text_solving:"Проверяваме дали си човек...",text_completed:"Аз съм човек",text_completed_sr:"Автоматичната проверка за спам е завършена",text_expired:"Анти-Робот проверката изтече",button_restart:"Рестартирайте",text_error:"Неуспешна проверка",button_retry:"Опитайте пак",text_fetch_error:"Неуспешно свързване с"},cs:{text_init:"Inicializace...",text_ready:"Ověření proti robotům",button_start:"Klikněte pro ověření",text_fetching:"Problém při načítání",text_solving:"Ověření, že jste člověk...",text_completed:"Jsem člověk",text_completed_sr:"Automatická kontrola spamu dokončena",text_expired:"Ověření proti robotům vypršelo",button_restart:"Restartovat",text_error:"Ověření se nezdařilo",button_retry:"Zkusit znovu",text_fetch_error:"Připojení se nezdařilo"},sk:{text_init:"Inicializácia...",text_ready:"Overenie proti robotom",button_start:"Kliknite pre overenie",text_fetching:"Problém pri načítaní",text_solving:"Overenie, že ste človek...",text_completed:"Som človek",text_completed_sr:"Automatická kontrola spamu dokončená",text_expired:"Overenie proti robotom vypršalo",button_restart:"Reštartovať",text_error:"Overenie sa nepodarilo",button_retry:"Skúsiť znova",text_fetch_error:"Pripojenie sa nepodarilo"},no:g,fi:{text_init:"Aktivoidaan...",text_ready:"En ole robotti",button_start:"Aloita vahvistus klikkaamalla",text_fetching:"Haetaan tietoja",text_solving:"Tarkistaa, että olet ihminen...",text_completed:"Olen ihminen",text_completed_sr:"Automaattinen roskapostin tarkistus suoritettu",text_expired:"Vahvistusta ei voitu suorittaa loppuun",button_restart:"Uudelleenkäynnistys",text_error:"Vahvistus epäonnistui",button_retry:"Yritä uudelleen",text_fetch_error:"Yhteys epäonnistui"},lv:{text_init:"Notiek inicializēšana...",text_ready:"Verifikācija, ka neesat robots",button_start:"Noklikšķiniet, lai sāktu verifikāciju",text_fetching:"Notiek drošības uzdevuma izgūšana",text_solving:"Notiek pārbaude, vai esat cilvēks...",text_completed:"Es esmu cilvēks",text_completed_sr:"Automātiska surogātpasta pārbaude pabeigta",text_expired:"Verifikācijas, ka neesat robots, derīgums beidzies",button_restart:"Restartēt",text_error:"Verifikācija neizdevās",button_retry:"Mēģināt vēlreiz",text_fetch_error:"Neizdevās izveidot savienojumu ar"},lt:{text_init:"Inicijuojama...",text_ready:"Patikrinimas, ar nesate robotas",button_start:"Spustelėkite patikrinimui pradėti",text_fetching:"Gavimo iššūkis",text_solving:"Tikrinama, ar esate žmogus...",text_completed:"Esu žmogus",text_completed_sr:"Automatinė patikra dėl pašto šiukšlių atlikta",text_expired:"Patikrinimas, ar nesate robotas, baigė galioti",button_restart:"Pradėti iš naujo",text_error:"Patikrinimas nepavyko",button_retry:"Kartoti",text_fetch_error:"Nepavyko prisijungti prie"},pl:{text_init:"Inicjowanie...",text_ready:"Weryfikacja antybotowa",button_start:"Kliknij, aby rozpocząć weryfikację",text_fetching:"Pobieranie",text_solving:"Weryfikacja, czy nie jesteś robotem...",text_completed:"Nie jestem robotem",text_completed_sr:"Zakończono automatyczne sprawdzanie spamu",text_expired:"Weryfikacja antybotowa wygasła",button_restart:"Uruchom ponownie",text_error:"Weryfikacja nie powiodła się",button_retry:"Spróbuj ponownie",text_fetch_error:"Nie udało się połączyć z"},et:{text_init:"Initsialiseerimine...",text_ready:"Robotivastane kinnitus",button_start:"Kinnitamisega alustamiseks klõpsake",text_fetching:"Väljakutse toomine",text_solving:"Kinnitatakse, et sa oled inimene...",text_completed:"Ma olen inimene",text_completed_sr:"Automaatne rämpsposti kontroll on lõpetatud",text_expired:"Robotivastane kinnitus aegus",button_restart:"Taaskäivita",text_error:"Kinnitamine nurjus",button_retry:"Proovi uuesti",text_fetch_error:"Ühenduse loomine nurjus"},hr:{text_init:"Početno postavljanje...",text_ready:"Provjera protiv robota",button_start:"Kliknite za početak provjere",text_fetching:"Dohvaćanje izazova",text_solving:"Provjeravamo jeste li čovjek...",text_completed:"Nisam robot",text_completed_sr:"Automatska provjera je završena",text_expired:"Vrijeme za provjeru protiv robota je isteklo",button_restart:"Osvježi",text_error:"Provjera nije uspjlela",button_retry:" Ponovo pokreni",text_fetch_error:"Nije moguće uspostaviti vezu"},sr:{text_init:"Pokretanje...",text_ready:"Anti-Robot Verifikacija",button_start:"Kliknite da biste započeli verifikaciju",text_fetching:"Učitavanje izazova",text_solving:"Verifikacija da ste čovek...",text_completed:"Ja sam čovek",text_completed_sr:"Automatska provera neželjene pošte je završena",text_expired:"Anti-Robot verifikacija je istekla",button_restart:"Ponovo pokrenuti",text_error:"Verifikacija nije uspela",button_retry:"Pokušajte ponovo",text_fetch_error:"Neuspelo povezivanje sa..."},sl:{text_init:"Inicializiranje...",text_ready:"Preverjanje robotov",button_start:"Kliknite za začetek preverjanja",text_fetching:"Prenašanje izziva",text_solving:"Preverjamo, ali ste človek",text_completed:"Nisem robot",text_completed_sr:"Avtomatsko preverjanje je zaključeno",text_expired:"Preverjanje robotov je poteklo",button_restart:"Osveži",text_error:"Preverjanje ni uspelo",button_retry:"Poskusi ponovno",text_fetch_error:"Povezave ni bilo mogoče vzpostaviti"},hu:{text_init:"Inicializálás...",text_ready:"Robotellenes ellenőrzés",button_start:"Kattintson az ellenőrzés megkezdéséhez",text_fetching:"Feladvány lekérése",text_solving:"Annak igazolása, hogy Ön nem robot...",text_completed:"Nem vagyok robot",text_completed_sr:"Automatikus spam ellenőrzés befejeződött",text_expired:"Robotellenes ellenőrzés lejárt",button_restart:"Újraindítás",text_error:"Az ellenőrzés nem sikerült",button_retry:"Próbálja újra",text_fetch_error:"Nem sikerült csatlakozni"},ro:{text_init:"Se inițializează...",text_ready:"Verificare anti-robot",button_start:"Click pentru a începe verificarea",text_fetching:"Downloading",text_solving:"Verificare că ești om...",text_completed:"Sunt om",text_completed_sr:"Verificarea automată a spam-ului a fost finalizată",text_expired:"Verificarea anti-robot a expirat",button_restart:"Restart",text_error:"Verificare eșuată",button_retry:"Reîncearcă",text_fetch_error:"Nu s-a putut conecta"},zh:{text_init:"初始化中……",text_ready:"人机验证",button_start:"点击开始",text_fetching:"正在加载",text_solving:"人机校验中……",text_completed:"我不是机器人",text_completed_sr:"人机验证完成",text_expired:"验证已过期",button_restart:"重新开始",text_error:"校验失败",button_retry:"重试",text_fetch_error:"无法连接到"},zh_tw:{text_init:"正在初始化……",text_ready:"反機器人驗證",button_start:"點擊開始驗證",text_fetching:"載入中",text_solving:"反機器人驗證中……",text_completed:"我不是機器人",text_completed_sr:"驗證完成",text_expired:"驗證超時",button_restart:"重新開始",text_error:"驗證失敗",button_retry:"重試",text_fetch_error:"無法連線到"},vi:{text_init:"Đang khởi tạo...",text_ready:"Xác minh chống Robot",button_start:"Bấm vào đây để xác minh",text_fetching:"Tìm nạp và xử lý thử thách",text_solving:"Xác minh bạn là người...",text_completed:"Bạn là con người",text_completed_sr:"Xác minh hoàn tất",text_expired:"Xác minh đã hết hạn",button_restart:"Khởi động lại",text_error:"Xác minh thất bại",button_retry:"Thử lại",text_fetch_error:"Không kết nối được"},he:{text_init:"בביצוע...",text_ready:"אימות אנוש",button_start:"צריך ללחוץ להתחלת האימות",text_fetching:"אתגר המענה בהכנה",text_solving:"מתבצע אימות אנוש...",text_completed:"אני לא רובוט",text_completed_sr:"בדיקת הספאם האוטומטית הסתיימה",text_expired:"פג תוקף אימות האנוש",button_restart:"להתחיל שוב",text_error:"אימות האנוש נכשל",button_retry:"לנסות שוב",text_fetch_error:"נכשל החיבור אל",rtl:!0},th:{text_init:"การเริ่มต้น...",text_ready:" การตรวจสอบต่อต้านหุ่นยนต์",button_start:"คลิกเพื่อเริ่มการตรวจสอบ",text_fetching:"การดึงความท้าทาย",text_solving:"ยืนยันว่าคุณเป็นมนุษย์...",text_completed:"ฉันเป็นมนุษย์",text_completed_sr:"การตรวจสอบสแปมอัตโนมัติเสร็จสมบูรณ์",text_expired:"การตรวจสอบ ต่อต้านหุ่นยนต์ หมดอายุ",button_restart:"รีสตาร์ท",text_error:"การยืนยันล้มเหลว",button_retry:"ลองใหม่",text_fetch_error:"ไม่สามารถเชื่อมต่อได้"},kr:{text_init:"초기화 중",text_ready:"Anti-Robot 검증",button_start:"검증을 위해 클릭해 주세요",text_fetching:"검증 준비 중",text_solving:"검증 중",text_completed:"검증이 완료되었습니다",text_completed_sr:"자동 스팸 확인 완료",text_expired:"Anti-Robot 검증 만료",button_restart:"다시 시작합니다",text_error:"검증 실패",button_retry:"다시 시도해 주세요",text_fetch_error:"연결하지 못했습니다"},ar:{text_init:"...التهيئة",text_ready:"يتم التحقيق",button_start:"إضغط هنا للتحقيق",text_fetching:"تهيئة التحدي",text_solving:"نتحقق من أنك لست روبوتًا...",text_completed:"أنا لست روبوتًا",text_completed_sr:"تم الانتهاء من التحقق التلقائي من البريد العشوائي",text_expired:"انتهت صلاحية التحقق",button_restart:"إعادة تشغيل",text_error:"فشل التحقق",button_retry:"ابدأ مرة أخرى",text_fetch_error:"مشكلة في الاتصال مع"},nb:g};function h(t,e){const r=new Uint8Array(3),i=new DataView(r.buffer);return i.setUint8(0,t),i.setUint16(1,e),r}let d;"undefined"!=typeof window&&(d=window.URL||window.webkitURL);class p{constructor(){this.workers=[],this.puzzleNumber=0,this.numPuzzles=0,this.threshold=0,this.startTime=0,this.progress=0,this.totalHashes=0,this.puzzleSolverInputs=[],this.puzzleIndex=0,this.solutionBuffer=new Uint8Array(0),this.solverType=1,this.readyPromise=new Promise(()=>{}),this.readyCount=0,this.startCount=0,this.progressCallback=()=>0,this.readyCallback=()=>0,this.startedCallback=()=>0,this.doneCallback=()=>0,this.errorCallback=()=>0}init(){let t;this.terminateWorkers(),this.progress=0,this.totalHashes=0,this.readyPromise=new Promise(e=>t=e),this.readyCount=0,this.startCount=0,this.workers=new Array(4);const e=new Blob(['!function(){"use strict";const A="=".charCodeAt(0),I=new Uint8Array(256);for(let A=0;A<64;A++)I["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(A)]=A;function g(A){const I={},g=A.exports,C=g.memory,Q=g.__alloc,t=g.__retain,B=g.__rtti_base||-1;return I.__allocArray=(A,I)=>{const g=function(A){return new Uint32Array(C.buffer)[(B+4>>>2)+2*A]}(A),e=31-Math.clz32(g>>>6&31),o=I.length,i=Q(o<>>2]=t(i),n[r+4>>>2]=i,n[r+8>>>2]=o<>>e)+A]=t(I[A]);else s.set(I,i>>>e);return r},I.__getUint8Array=A=>{const I=new Uint32Array(C.buffer),g=I[A+4>>>2];return new Uint8Array(C.buffer,g,I[g-4>>>2]>>>0)},function(A,I={}){const g=A.__argumentsLength?I=>{A.__argumentsLength.value=I}:A.__setArgumentsLength||A.__setargc||(()=>({}));for(const C in A){if(!Object.prototype.hasOwnProperty.call(A,C))continue;const Q=A[C],t=C.split(".")[0];"function"==typeof Q&&Q!==g?(I[t]=(...A)=>(g(A.length),Q(...A))).original=Q:I[t]=Q}return I}(g,I)}class C{constructor(A){this.b=new Uint8Array(128),this.h=new Uint32Array(16),this.t=0,this.c=0,this.v=new Uint32Array(32),this.m=new Uint32Array(32),this.outlen=A}}function Q(A,I){return A[I]^A[I+1]<<8^A[I+2]<<16^A[I+3]<<24}function t(A,I,g,C,Q,t,B,e){const o=I[B],i=I[B+1],r=I[e],n=I[e+1];let E,s,w,a,c=A[g],D=A[g+1],f=A[C],h=A[C+1],y=A[Q],l=A[Q+1],u=A[t],N=A[t+1];E=c+f,s=(c&f|(c|f)&~E)>>>31,c=E,D=D+h+s,E=c+o,s=(c&o|(c|o)&~E)>>>31,c=E,D=D+i+s,w=u^c,a=N^D,u=a,N=w,E=y+u,s=(y&u|(y|u)&~E)>>>31,y=E,l=l+N+s,w=f^y,a=h^l,f=w>>>24^a<<8,h=a>>>24^w<<8,E=c+f,s=(c&f|(c|f)&~E)>>>31,c=E,D=D+h+s,E=c+r,s=(c&r|(c|r)&~E)>>>31,c=E,D=D+n+s,w=u^c,a=N^D,u=w>>>16^a<<16,N=a>>>16^w<<16,E=y+u,s=(y&u|(y|u)&~E)>>>31,y=E,l=l+N+s,w=f^y,a=h^l,f=a>>>31^w<<1,h=w>>>31^a<<1,A[g]=c,A[g+1]=D,A[C]=f,A[C+1]=h,A[Q]=y,A[Q+1]=l,A[t]=u,A[t+1]=N}const B=[4089235720,1779033703,2227873595,3144134277,4271175723,1013904242,1595750129,2773480762,2917565137,1359893119,725511199,2600822924,4215389547,528734635,327033209,1541459225],e=[0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,28,20,8,16,18,30,26,12,2,24,0,4,22,14,10,6,22,16,24,0,10,4,30,26,20,28,6,12,14,2,18,8,14,18,6,2,26,24,22,28,4,12,10,20,8,0,30,16,18,0,10,14,4,8,20,30,28,2,22,24,12,16,6,26,4,24,12,20,0,22,16,6,8,26,14,10,30,28,2,18,24,10,2,30,28,26,8,20,0,14,12,6,18,4,16,22,26,22,14,28,24,2,6,18,10,0,30,8,16,12,4,20,12,30,28,18,22,6,0,16,24,4,26,14,2,8,20,10,20,4,16,8,14,12,2,10,30,22,18,28,6,24,26,0,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,28,20,8,16,18,30,26,12,2,24,0,4,22,14,10,6];function o(A,I){const g=A.v,C=A.m;for(let I=0;I<16;I++)g[I]=A.h[I],g[I+16]=B[I];g[24]=g[24]^A.t,g[25]=g[25]^A.t/4294967296,I&&(g[28]=~g[28],g[29]=~g[29]);for(let I=0;I<32;I++)C[I]=Q(A.b,4*I);for(let A=0;A<12;A++)t(g,C,0,8,16,24,e[16*A+0],e[16*A+1]),t(g,C,2,10,18,26,e[16*A+2],e[16*A+3]),t(g,C,4,12,20,28,e[16*A+4],e[16*A+5]),t(g,C,6,14,22,30,e[16*A+6],e[16*A+7]),t(g,C,0,10,20,30,e[16*A+8],e[16*A+9]),t(g,C,2,12,22,24,e[16*A+10],e[16*A+11]),t(g,C,4,14,16,26,e[16*A+12],e[16*A+13]),t(g,C,6,8,18,28,e[16*A+14],e[16*A+15]);for(let I=0;I<16;I++)A.h[I]=A.h[I]^g[I]^g[I+16]}function i(A,I){for(let I=0;I<16;I++)A.h[I]=B[I];A.b.set(I),A.h[0]^=16842752^A.outlen}async function r(){return(A,I,g=4294967295)=>{const Q=function(A,I,g){if(128!=A.length)throw Error("Invalid input");const Q=A.buffer,t=new DataView(Q),B=new C(32);B.t=128;const e=t.getUint32(124,!0),r=e+g;for(let g=e;gE=A));self.onerror=A=>{self.postMessage({type:"error",message:JSON.stringify(A)})},self.onmessage=async C=>{const Q=C.data;try{if("solver"===Q.type){if(Q.forceJS){n=1;const A=await r();E(A)}else try{n=2;const C=WebAssembly.compile(function(g){let C=3285;g.charCodeAt(4379)===A&&C--,g.charCodeAt(4378)===A&&C--;const Q=new Uint8Array(C);for(let A=0,C=0;A<4380;A+=4){const t=I[g.charCodeAt(A+0)],B=I[g.charCodeAt(A+1)],e=I[g.charCodeAt(A+2)],o=I[g.charCodeAt(A+3)];Q[C++]=t<<2|B>>4,Q[C++]=(15&B)<<4|e>>2,Q[C++]=(3&e)<<6|63&o}return Q}("AGFzbQEAAAABKghgAABgAn9/AGADf39/AX9gAX8AYAR/f39/AGAAAX9gAX8Bf2ACf38BfwINAQNlbnYFYWJvcnQABAMMCwcGAwAAAQIFAQIABQMBAAEGFgR/AUEAC38BQQALfwBBAwt/AEHgDAsHbgkGbWVtb3J5AgAHX19hbGxvYwABCF9fcmV0YWluAAIJX19yZWxlYXNlAAMJX19jb2xsZWN0AAQHX19yZXNldAAFC19fcnR0aV9iYXNlAwMNVWludDhBcnJheV9JRAMCDHNvbHZlQmxha2UyYgAKCAELCvQSC5IBAQV/IABB8P///wNLBEAACyMBQRBqIgQgAEEPakFwcSICQRAgAkEQSxsiBmoiAj8AIgVBEHQiA0sEQCAFIAIgA2tB//8DakGAgHxxQRB2IgMgBSADShtAAEEASARAIANAAEEASARAAAsLCyACJAEgBEEQayICIAY2AgAgAkEBNgIEIAIgATYCCCACIAA2AgwgBAsEACAACwMAAQsDAAELBgAjACQBC7sCAQF/AkAgAUUNACAAQQA6AAAgACABakEEayICQQA6AAMgAUECTQ0AIABBADoAASAAQQA6AAIgAkEAOgACIAJBADoAASABQQZNDQAgAEEAOgADIAJBADoAACABQQhNDQAgAEEAIABrQQNxIgJqIgBBADYCACAAIAEgAmtBfHEiAmpBHGsiAUEANgIYIAJBCE0NACAAQQA2AgQgAEEANgIIIAFBADYCECABQQA2AhQgAkEYTQ0AIABBADYCDCAAQQA2AhAgAEEANgIUIABBADYCGCABQQA2AgAgAUEANgIEIAFBADYCCCABQQA2AgwgACAAQQRxQRhqIgFqIQAgAiABayEBA0AgAUEgTwRAIABCADcDACAAQgA3AwggAEIANwMQIABCADcDGCABQSBrIQEgAEEgaiEADAELCwsLcgACfyAARQRAQQxBAhABIQALIAALQQA2AgAgAEEANgIEIABBADYCCCABQfD///8DIAJ2SwRAQcAKQfAKQRJBORAAAAsgASACdCIBQQAQASICIAEQBiAAKAIAGiAAIAI2AgAgACACNgIEIAAgATYCCCAAC88BAQJ/QaABQQAQASIAQQxBAxABQYABQQAQBzYCACAAQQxBBBABQQhBAxAHNgIEIABCADcDCCAAQQA2AhAgAEIANwMYIABC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")),Q=await async function(A){const I=await async function(A){const I={env:{abort(){throw Error("Wasm aborted")}}};return{exports:g(await WebAssembly.instantiate(A,I))}}(A),C=I.exports.__retain(I.exports.__allocArray(I.exports.Uint8Array_ID,new Uint8Array(128)));let Q=I.exports.__getUint8Array(C);return(A,g,t=4294967295)=>{Q.set(A);const B=I.exports.solveBlake2b(C,g,t);Q=I.exports.__getUint8Array(C);const e=I.exports.__getUint8Array(B);return I.exports.__release(B),[Q,e]}}(await C);E(Q)}catch(A){console.log("FriendlyCaptcha failed to initialize WebAssembly, falling back to Javascript solver: "+A.toString()),n=1;const I=await r();E(I)}self.postMessage({type:"ready",solver:n})}else if("start"===Q.type){const A=await s;self.postMessage({type:"started"});let I,g=0;for(let C=0;C<256;C++){Q.puzzleSolverInput[123]=C;const[t,B]=A(Q.puzzleSolverInput,Q.threshold);if(0!==B.length){I=t;break}console.warn("FC: Internal error or no solution found"),g+=Math.pow(2,32)-1}g+=new DataView(I.slice(-4).buffer).getUint32(0,!0),self.postMessage({type:"done",solution:I.slice(-8),h:g,puzzleIndex:Q.puzzleIndex,puzzleNumber:Q.puzzleNumber})}}catch(A){setTimeout((()=>{throw A}))}}}();'],{type:"text/javascript"});for(let r=0;rthis.errorCallback(t),this.workers[r].onmessage=e=>{const i=e.data;if(i)if("ready"===i.type)this.readyCount++,this.solverType=i.solver,this.readyCount==this.workers.length&&(t(),this.readyCallback());else if("started"===i.type)this.startCount++,1==this.startCount&&(this.startTime=Date.now(),this.startedCallback());else if("done"===i.type){if(i.puzzleNumber!==this.puzzleNumber)return;if(this.puzzleIndex0,readyCallback:()=>0,doneCallback:()=>0,errorCallback:()=>0,sitekey:t.dataset.sitekey||"",language:t.dataset.lang||"en",solutionFieldName:t.dataset.solutionFieldName||"frc-captcha-solution",styleNonce:null},e),this.e=t,this.e.friendlyChallengeWidget=this,this.loadLanguage(),t.innerText=this.lang.text_init,this.opts.skipStyleInjection||function(t=null){if(!document.querySelector("#frc-style")){const e=document.createElement("style");e.id="frc-style",e.innerHTML=".frc-captcha *{margin:0;padding:0;border:0;text-align:initial;border-radius:0;filter:none!important;transition:none!important;font-weight:400;font-size:14px;line-height:1.2;text-decoration:none;background-color:initial;color:#222}.frc-captcha{position:relative;min-width:250px;max-width:312px;border:1px solid #f4f4f4;padding-bottom:12px;background-color:#fff}.frc-captcha b{font-weight:700}.frc-container{display:flex;align-items:center;min-height:52px}.frc-icon{fill:#222;stroke:#222;flex-shrink:0;margin:8px 8px 0}.frc-icon.frc-warning{fill:#c00}.frc-success .frc-icon{animation:1s ease-in both frc-fade-in}.frc-content{white-space:nowrap;display:flex;flex-direction:column;margin:4px 6px 0 0;overflow-x:auto;flex-grow:1}.frc-banner{position:absolute;bottom:0;right:6px;line-height:1}.frc-banner *{font-size:10px;opacity:.8;text-decoration:none}.frc-progress{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:3px 0;height:4px;border:none;background-color:#eee;color:#222;width:100%;transition:.5s linear}.frc-progress::-webkit-progress-bar{background:#eee}.frc-progress::-webkit-progress-value{background:#222}.frc-progress::-moz-progress-bar{background:#222}.frc-button{cursor:pointer;padding:2px 6px;background-color:#f1f1f1;border:1px solid transparent;text-align:center;font-weight:600;text-transform:none}.frc-button:focus{border:1px solid #333}.frc-button:hover{background-color:#ddd}.frc-captcha-solution{display:none}.frc-err-url{text-decoration:underline;font-size:.9em}.frc-rtl{direction:rtl}.frc-rtl .frc-content{margin:4px 0 0 6px}.frc-banner.frc-rtl{left:6px;right:auto}.dark.frc-captcha{color:#fff;background-color:#222;border-color:#333}.dark.frc-captcha *{color:#fff}.dark.frc-captcha button{background-color:#444}.dark .frc-icon{fill:#fff;stroke:#fff}.dark .frc-progress{background-color:#444}.dark .frc-progress::-webkit-progress-bar{background:#444}.dark .frc-progress::-webkit-progress-value{background:#ddd}.dark .frc-progress::-moz-progress-bar{background:#ddd}@keyframes frc-fade-in{from{opacity:0}to{opacity:1}}",t&&e.setAttribute("nonce",t),document.head.appendChild(e)}}(this.opts.styleNonce),this.init("auto"===this.opts.startMode||"auto"===this.e.dataset.start)}init(t){var e;if(this.hasBeenDestroyed)console.error("FriendlyCaptcha widget has been destroyed using destroy(), it can not be used anymore.");else if(this.initWorkerGroup(),t)this.start();else if("none"!==this.e.dataset.start&&("focus"===this.opts.startMode||"focus"===this.e.dataset.start)){const t=function(t){for(;"FORM"!==t.tagName;)if(!(t=t.parentElement))return null;return t}(this.e);t?(e=()=>this.start(),t.addEventListener("focusin",e,{once:!0,passive:!0})):console.log("FriendlyCaptcha div seems not to be contained in a form, autostart will not work")}}loadLanguage(t){if(void 0!==t?this.opts.language=t:this.e.dataset.lang&&(this.opts.language=this.e.dataset.lang),"string"==typeof this.opts.language){let t=this.opts.language.toLowerCase(),e=u[t];void 0===e&&"-"===t[2]&&(t=t.substring(0,2),e=u[t]),void 0===e&&(console.error('FriendlyCaptcha: language "'+this.opts.language+'" not found.'),e=u.en),this.lang=e}else this.lang=Object.assign(Object.assign({},u.en),this.opts.language)}makeButtonStart(){const t=this.e.querySelector("button");t&&(t.addEventListener("click",t=>this.start(),{once:!0,passive:!0}),t.addEventListener("touchstart",t=>this.start(),{once:!0,passive:!0}))}onWorkerError(t){this.hasBeenStarted=!1,this.needsReInit=!0,this.expiryTimeout&&clearTimeout(this.expiryTimeout),console.error("[FRC]",t),this.e.innerHTML=s(this.opts.solutionFieldName,this.lang,"Background worker error "+t.message),this.makeButtonStart(),this.opts.forceJSFallback=!0}initWorkerGroup(){this.workerGroup.progressCallback=t=>{!function(t,e){const r=t.querySelector(".frc-progress"),i=(e.i+1)/e.n;r&&(r.value=i,r.innerText=(100*i).toFixed(1)+"%",r.title=e.i+1+"/"+e.n+" ("+(e.h/e.t*.001).toFixed(0)+"K/s)")}(this.e,t)},this.workerGroup.readyCallback=()=>{var t;this.e.innerHTML=a(this.opts.solutionFieldName,(t=this.lang).rtl,'',!0,t.text_ready,".UNSTARTED",t.button_start,!1),this.makeButtonStart(),this.opts.readyCallback()},this.workerGroup.startedCallback=()=>{var t;this.e.innerHTML=a(this.opts.solutionFieldName,(t=this.lang).rtl,o,!0,t.text_solving,".UNFINISHED",void 0,!0),this.opts.startedCallback()},this.workerGroup.doneCallback=t=>{const e=this.handleDone(t);this.opts.doneCallback(e);const r=this.e.dataset.callback;r&&window[r](e)},this.workerGroup.errorCallback=t=>{this.onWorkerError(t)},this.workerGroup.init(),this.workerGroup.setupSolver(this.opts.forceJSFallback)}expire(){var t;this.hasBeenStarted=!1,!1!==this.e.isConnected&&(this.e.innerHTML=a(this.opts.solutionFieldName,(t=this.lang).rtl,n,!0,t.text_expired,".EXPIRED",t.button_restart),this.makeButtonStart())}async start(){if(this.hasBeenDestroyed)return void console.error("Can not start FriendlyCaptcha widget which has been destroyed");if(this.hasBeenStarted)return void console.warn("Can not start FriendlyCaptcha widget which has already been started");const t=this.opts.sitekey||this.e.dataset.sitekey;if(!t)return console.error("FriendlyCaptcha: sitekey not set on frc-captcha element"),void(this.e.innerHTML=s(this.opts.solutionFieldName,this.lang,"Website problem: sitekey not set",!1));if(-1===l.indexOf("headless")&&-1===A.appVersion.indexOf("Headless")&&-1===l.indexOf("bot")&&-1===l.indexOf("crawl")&&!0!==A.webdriver&&A.language&&(void 0===A.languages||A.languages.length)){if(this.needsReInit)return this.needsReInit=!1,void this.init(!0);this.hasBeenStarted=!0;try{this.e.innerHTML=a(this.opts.solutionFieldName,(i=this.lang).rtl,o,!0,i.text_fetching,".FETCHING",void 0,!0),this.puzzle=function(t){const i=t.split("."),o=i[1],n=function(t){const i=t.length;let o=3*i>>>2;t.charCodeAt(i-1)===e&&o--,t.charCodeAt(i-2)===e&&o--;const n=new Uint8Array(o);for(let e=0,o=0;e>4,n[o++]=(15&a)<<4|s>>2,n[o++]=(3&s)<<6|63&A}return n}(o);return{signature:i[0],base64:o,buffer:n,n:n[14],threshold:(a=n[15],a>255?a=255:a<0&&(a=0),Math.pow(2,(255.999-a)/8)>>>0),expiry:3e5*n[13]};var a}(await async function(t,e,r){const i=t.split(",");for(let t=0;t${i[t]}`);throw o.rawError=e,o}throw Error("Internal error")}(this.opts.puzzleEndpoint,t,this.lang)),this.expiryTimeout&&clearTimeout(this.expiryTimeout),this.expiryTimeout=setTimeout(()=>this.expire(),this.puzzle.expiry-3e4)}catch(t){console.error("[FRC]",t),this.hasBeenStarted=!1,this.expiryTimeout&&clearTimeout(this.expiryTimeout),this.e.innerHTML=s(this.opts.solutionFieldName,this.lang,t.message),this.makeButtonStart();const e="error_getting_puzzle";this.opts.errorCallback({code:e,description:t.toString(),error:t});const r=this.e.dataset["callback-error"];return void(r&&window[r](this))}var i;await this.workerGroup.start(this.puzzle)}else this.e.innerHTML=s(this.opts.solutionFieldName,this.lang,"Browser check failed, try a different browser",!1,!0)}handleDone(t){this.valid=!0;const e=`${this.puzzle.signature}.${this.puzzle.base64}.${i(t.solution)}.${i(t.diagnostics)}`;return this.e.innerHTML=function(t,e,r,i){const o=`${i.t.toFixed(0)}s (${(i.h/i.t*.001).toFixed(0)}K/s)${1===i.solver?" JS Fallback":""}`;return a(t,e.rtl,`${e.text_completed_sr}`,!1,e.text_completed,r,void 0,!1,o,"frc-success")}(this.opts.solutionFieldName,this.lang,e,t),this.needsReInit=!0,e}destroy(){this.workerGroup.terminateWorkers(),this.needsReInit=!1,this.hasBeenStarted=!1,this.expiryTimeout&&clearTimeout(this.expiryTimeout),this.e&&(this.e.remove(),delete this.e),this.hasBeenDestroyed=!0}reset(){this.hasBeenDestroyed?console.error("FriendlyCaptcha widget has been destroyed, it can not be used anymore"):(this.workerGroup.terminateWorkers(),this.needsReInit=!1,this.hasBeenStarted=!1,this.expiryTimeout&&clearTimeout(this.expiryTimeout),this.init("auto"===this.opts.startMode||"auto"===this.e.dataset.start))}}const{applyFilters:x}=JetPlugins.hooks,{addAction:f}=JetPlugins.hooks;f("jet.fb.observe.after","jet-form-builder/friendly.captcha",function(t){var e;if(t.parent)return;const r=t.getInput("_captcha_token"),i=t.getSubmit().getFormId(),o=r?.nodes?.[0]?.nextElementSibling;let n=null!==(e=window?.JetFormBuilderCaptchaConfig?.[i])&&void 0!==e&&e;if(!o||!n)return;r.isVisible=()=>!0,n={...n,doneCallback(t){r.value.current=t,r.loading.end()},startedCallback:()=>r.loading.start(),errorCallback:()=>r.loading.end()},n=x("jet.fb.friendlyCaptcha.options",n,t);const a=new _(o,n);t.getSubmit().submitter?.status?.watch?.(()=>{a.reset(),r.onClear()})})})(); \ No newline at end of file +(()=>{"use strict";const t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",e="=".charCodeAt(0),r=new Uint8Array(256);for(let e=0;e<64;e++)r[t.charCodeAt(e)]=e;function i(e){const r=e.length;let i="";for(let o=0;o>>2),s+=t.charAt((3&r)<<4|n>>>4),s+=t.charAt((15&n)<<2|a>>>6),s+=t.charAt(63&a),i+=s}return r%3==2?i=i.substring(0,i.length-1)+"=":r%3==1&&(i=i.substring(0,i.length-2)+"=="),i}const o='',n='';function a(t,e,r,i,o,n,a,s=!1,A,l){return`
    \n\n
    \n ${o}\n ${a?``:""}\n ${s?'0%':""}\n
    \n
    FriendlyCaptcha ⇗\n${"-"===t?"":``}`}function s(t,e,r,i=!0,o=!1){return a(t,e.rtl,n,!0,`${e.text_error}
    ${r}`,o?".HEADLESS_ERROR":".ERROR",i?e.button_retry:void 0)}let A,l;async function c(t,e,r){let i=1e3;return fetch(t,e).catch((async o=>{if(0===r)throw o;return await new Promise((t=>setTimeout(t,i))),i*=4,c(t,e,r-1)}))}"undefined"!=typeof navigator&&"string"==typeof navigator.userAgent&&(A=navigator,l=A.userAgent.toLowerCase());const g={text_init:" Aktiverer...",text_ready:"Jeg er ikke en robot",button_start:"Klikk for å starte verifiseringen",text_fetching:"Henter data",text_solving:"Sjekker at du er et menneske...",text_completed:"Jeg er et menneske",text_completed_sr:"Automatisk spam-sjekk fullført",text_expired:"Verifisering kunne ikke fullføres",button_restart:"Omstart",text_error:"Bekreftelsen mislyktes",button_retry:"Prøv på nytt",text_fetch_error:"Tilkoblingen mislyktes"},u={en:{text_init:"Initializing...",text_ready:"Anti-Robot Verification",button_start:"Click to start verification",text_fetching:"Fetching Challenge",text_solving:"Verifying you are human...",text_completed:"I am human",text_completed_sr:"Automatic spam check completed",text_expired:"Anti-Robot verification expired",button_restart:"Restart",text_error:"Verification failed",button_retry:"Retry",text_fetch_error:"Failed to connect to"},de:{text_init:"Initialisierung...",text_ready:"Anti-Roboter-Verifizierung",button_start:"Hier klicken",text_fetching:"Herausforderung laden...",text_solving:"Verifizierung, dass Sie ein Mensch sind...",text_completed:"Ich bin ein Mensch",text_completed_sr:"Automatische Spamprüfung abgeschlossen",text_expired:"Verifizierung abgelaufen",button_restart:"Erneut starten",text_error:"Verifizierung fehlgeschlagen",button_retry:"Erneut versuchen",text_fetch_error:"Verbindungsproblem mit"},nl:{text_init:"Initializeren...",text_ready:"Anti-robotverificatie",button_start:"Klik om te starten",text_fetching:"Aan het laden...",text_solving:"Anti-robotverificatie bezig...",text_completed:"Ik ben een mens",text_completed_sr:"Automatische anti-spamcheck voltooid",text_expired:"Verificatie verlopen",button_restart:"Opnieuw starten",text_error:"Verificatie mislukt",button_retry:"Opnieuw proberen",text_fetch_error:"Verbinding mislukt met"},fr:{text_init:"Chargement...",text_ready:"Vérification Anti-Robot",button_start:"Clique ici pour vérifier",text_fetching:"Chargement du défi",text_solving:"Nous vérifions que vous n'êtes pas un robot...",text_completed:"Je ne suis pas un robot",text_completed_sr:"Vérification automatique des spams terminée",text_expired:"Vérification anti-robot expirée",button_restart:"Redémarrer",text_error:"Échec de la vérification",button_retry:"Recommencer",text_fetch_error:"Problème de connexion avec"},it:{text_init:"Inizializzazione...",text_ready:"Verifica Anti-Robot",button_start:"Clicca per iniziare",text_fetching:"Caricamento...",text_solving:"Verificando che sei umano...",text_completed:"Non sono un robot",text_completed_sr:"Controllo automatico dello spam completato",text_expired:"Verifica Anti-Robot scaduta",button_restart:"Ricomincia",text_error:"Verifica fallita",button_retry:"Riprova",text_fetch_error:"Problema di connessione con"},pt:{text_init:"Inicializando...",text_ready:"Verificação Anti-Robô",button_start:"Clique para iniciar verificação",text_fetching:"Carregando...",text_solving:"Verificando se você é humano...",text_completed:"Eu sou humano",text_completed_sr:"Verificação automática de spam concluída",text_expired:"Verificação Anti-Robô expirada",button_restart:"Reiniciar",text_error:"Verificação falhou",button_retry:"Tentar novamente",text_fetch_error:"Falha de conexão com"},es:{text_init:"Inicializando...",text_ready:"Verificación Anti-Robot",button_start:"Haga clic para iniciar la verificación",text_fetching:"Cargando desafío",text_solving:"Verificando que eres humano...",text_completed:"Soy humano",text_completed_sr:"Verificación automática de spam completada",text_expired:"Verificación Anti-Robot expirada",button_restart:"Reiniciar",text_error:"Ha fallado la verificación",button_retry:"Intentar de nuevo",text_fetch_error:"Error al conectarse a"},ca:{text_init:"Inicialitzant...",text_ready:"Verificació Anti-Robot",button_start:"Fes clic per començar la verificació",text_fetching:"Carregant repte",text_solving:"Verificant que ets humà...",text_completed:"Soc humà",text_completed_sr:"Verificació automàtica de correu brossa completada",text_expired:"La verificació Anti-Robot ha expirat",button_restart:"Reiniciar",text_error:"Ha fallat la verificació",button_retry:"Tornar a provar",text_fetch_error:"Error connectant a"},ja:{text_init:"開始しています...",text_ready:"アンチロボット認証",button_start:"クリックして認証を開始",text_fetching:"ロードしています",text_solving:"認証中...",text_completed:"私はロボットではありません",text_completed_sr:"自動スパムチェックが完了しました",text_expired:"認証の期限が切れています",button_restart:"再度認証を行う",text_error:"認証にエラーが発生しました",button_retry:"再度認証を行う",text_fetch_error:"接続ができませんでした"},da:{text_init:"Aktiverer...",text_ready:"Jeg er ikke en robot",button_start:"Klik for at starte verifikationen",text_fetching:"Henter data",text_solving:"Kontrollerer at du er et menneske...",text_completed:"Jeg er et menneske.",text_completed_sr:"Automatisk spamkontrol gennemført",text_expired:"Verifikationen kunne ikke fuldføres",button_restart:"Genstart",text_error:"Bekræftelse mislykkedes",button_retry:"Prøv igen",text_fetch_error:"Forbindelsen mislykkedes"},ru:{text_init:"Инициализация...",text_ready:"АнтиРобот проверка",button_start:"Нажмите, чтобы начать проверку",text_fetching:"Получаю задачу",text_solving:"Проверяю, что вы человек...",text_completed:"Я человек",text_completed_sr:"Aвтоматическая проверка на спам завершена",text_expired:"Срок АнтиРоботной проверки истёк",button_restart:"Начать заново",text_error:"Ошибка проверки",button_retry:"Повторить ещё раз",text_fetch_error:"Ошибка подключения"},sv:{text_init:"Aktiverar...",text_ready:"Jag är inte en robot",button_start:"Klicka för att verifiera",text_fetching:"Hämtar data",text_solving:"Kontrollerar att du är människa...",text_completed:"Jag är en människa",text_completed_sr:"Automatisk spamkontroll slutförd",text_expired:"Anti-robot-verifieringen har löpt ut",button_restart:"Börja om",text_error:"Verifiering kunde inte slutföras",button_retry:"Omstart",text_fetch_error:"Verifiering misslyckades"},tr:{text_init:"Başlatılıyor...",text_ready:"Anti-Robot Doğrulaması",button_start:"Doğrulamayı başlatmak için tıklayın",text_fetching:"Yükleniyor",text_solving:"Robot olmadığınız doğrulanıyor...",text_completed:"Ben bir insanım",text_completed_sr:"Otomatik spam kontrolü tamamlandı",text_expired:"Anti-Robot doğrulamasının süresi doldu",button_restart:"Yeniden başlat",text_error:"Doğrulama başarısız oldu",button_retry:"Tekrar dene",text_fetch_error:"Bağlantı başarısız oldu"},el:{text_init:"Προετοιμασία...",text_ready:"Anti-Robot Επαλήθευση",button_start:" Κάντε κλικ για να ξεκινήσει η επαλήθευση",text_fetching:" Λήψη πρόκλησης",text_solving:" Επιβεβαίωση ανθρώπου...",text_completed:"Είμαι άνθρωπος",text_completed_sr:" Ο αυτόματος έλεγχος ανεπιθύμητου περιεχομένου ολοκληρώθηκε",text_expired:" Η επαλήθευση Anti-Robot έληξε",button_restart:" Επανεκκίνηση",text_error:" Η επαλήθευση απέτυχε",button_retry:" Δοκιμάστε ξανά",text_fetch_error:" Αποτυχία σύνδεσης με"},uk:{text_init:"Ініціалізація...",text_ready:"Антиробот верифікація",button_start:"Натисніть, щоб розпочати верифікацію",text_fetching:"З’єднання",text_solving:"Перевірка, що ви не робот...",text_completed:"Я не робот",text_completed_sr:"Автоматична перевірка спаму завершена",text_expired:"Час вичерпано",button_restart:"Почати знову",text_error:"Верифікація не вдалась",button_retry:"Спробувати знову",text_fetch_error:"Не вдалось з’єднатись"},bg:{text_init:"Инициализиране...",text_ready:"Анти-робот проверка",button_start:"Щракнете, за да започнете проверката",text_fetching:"Предизвикателство",text_solving:"Проверяваме дали си човек...",text_completed:"Аз съм човек",text_completed_sr:"Автоматичната проверка за спам е завършена",text_expired:"Анти-Робот проверката изтече",button_restart:"Рестартирайте",text_error:"Неуспешна проверка",button_retry:"Опитайте пак",text_fetch_error:"Неуспешно свързване с"},cs:{text_init:"Inicializace...",text_ready:"Ověření proti robotům",button_start:"Klikněte pro ověření",text_fetching:"Problém při načítání",text_solving:"Ověření, že jste člověk...",text_completed:"Jsem člověk",text_completed_sr:"Automatická kontrola spamu dokončena",text_expired:"Ověření proti robotům vypršelo",button_restart:"Restartovat",text_error:"Ověření se nezdařilo",button_retry:"Zkusit znovu",text_fetch_error:"Připojení se nezdařilo"},sk:{text_init:"Inicializácia...",text_ready:"Overenie proti robotom",button_start:"Kliknite pre overenie",text_fetching:"Problém pri načítaní",text_solving:"Overenie, že ste človek...",text_completed:"Som človek",text_completed_sr:"Automatická kontrola spamu dokončená",text_expired:"Overenie proti robotom vypršalo",button_restart:"Reštartovať",text_error:"Overenie sa nepodarilo",button_retry:"Skúsiť znova",text_fetch_error:"Pripojenie sa nepodarilo"},no:g,fi:{text_init:"Aktivoidaan...",text_ready:"En ole robotti",button_start:"Aloita vahvistus klikkaamalla",text_fetching:"Haetaan tietoja",text_solving:"Tarkistaa, että olet ihminen...",text_completed:"Olen ihminen",text_completed_sr:"Automaattinen roskapostin tarkistus suoritettu",text_expired:"Vahvistusta ei voitu suorittaa loppuun",button_restart:"Uudelleenkäynnistys",text_error:"Vahvistus epäonnistui",button_retry:"Yritä uudelleen",text_fetch_error:"Yhteys epäonnistui"},lv:{text_init:"Notiek inicializēšana...",text_ready:"Verifikācija, ka neesat robots",button_start:"Noklikšķiniet, lai sāktu verifikāciju",text_fetching:"Notiek drošības uzdevuma izgūšana",text_solving:"Notiek pārbaude, vai esat cilvēks...",text_completed:"Es esmu cilvēks",text_completed_sr:"Automātiska surogātpasta pārbaude pabeigta",text_expired:"Verifikācijas, ka neesat robots, derīgums beidzies",button_restart:"Restartēt",text_error:"Verifikācija neizdevās",button_retry:"Mēģināt vēlreiz",text_fetch_error:"Neizdevās izveidot savienojumu ar"},lt:{text_init:"Inicijuojama...",text_ready:"Patikrinimas, ar nesate robotas",button_start:"Spustelėkite patikrinimui pradėti",text_fetching:"Gavimo iššūkis",text_solving:"Tikrinama, ar esate žmogus...",text_completed:"Esu žmogus",text_completed_sr:"Automatinė patikra dėl pašto šiukšlių atlikta",text_expired:"Patikrinimas, ar nesate robotas, baigė galioti",button_restart:"Pradėti iš naujo",text_error:"Patikrinimas nepavyko",button_retry:"Kartoti",text_fetch_error:"Nepavyko prisijungti prie"},pl:{text_init:"Inicjowanie...",text_ready:"Weryfikacja antybotowa",button_start:"Kliknij, aby rozpocząć weryfikację",text_fetching:"Pobieranie",text_solving:"Weryfikacja, czy nie jesteś robotem...",text_completed:"Nie jestem robotem",text_completed_sr:"Zakończono automatyczne sprawdzanie spamu",text_expired:"Weryfikacja antybotowa wygasła",button_restart:"Uruchom ponownie",text_error:"Weryfikacja nie powiodła się",button_retry:"Spróbuj ponownie",text_fetch_error:"Nie udało się połączyć z"},et:{text_init:"Initsialiseerimine...",text_ready:"Robotivastane kinnitus",button_start:"Kinnitamisega alustamiseks klõpsake",text_fetching:"Väljakutse toomine",text_solving:"Kinnitatakse, et sa oled inimene...",text_completed:"Ma olen inimene",text_completed_sr:"Automaatne rämpsposti kontroll on lõpetatud",text_expired:"Robotivastane kinnitus aegus",button_restart:"Taaskäivita",text_error:"Kinnitamine nurjus",button_retry:"Proovi uuesti",text_fetch_error:"Ühenduse loomine nurjus"},hr:{text_init:"Početno postavljanje...",text_ready:"Provjera protiv robota",button_start:"Kliknite za početak provjere",text_fetching:"Dohvaćanje izazova",text_solving:"Provjeravamo jeste li čovjek...",text_completed:"Nisam robot",text_completed_sr:"Automatska provjera je završena",text_expired:"Vrijeme za provjeru protiv robota je isteklo",button_restart:"Osvježi",text_error:"Provjera nije uspjlela",button_retry:" Ponovo pokreni",text_fetch_error:"Nije moguće uspostaviti vezu"},sr:{text_init:"Pokretanje...",text_ready:"Anti-Robot Verifikacija",button_start:"Kliknite da biste započeli verifikaciju",text_fetching:"Učitavanje izazova",text_solving:"Verifikacija da ste čovek...",text_completed:"Ja sam čovek",text_completed_sr:"Automatska provera neželjene pošte je završena",text_expired:"Anti-Robot verifikacija je istekla",button_restart:"Ponovo pokrenuti",text_error:"Verifikacija nije uspela",button_retry:"Pokušajte ponovo",text_fetch_error:"Neuspelo povezivanje sa..."},sl:{text_init:"Inicializiranje...",text_ready:"Preverjanje robotov",button_start:"Kliknite za začetek preverjanja",text_fetching:"Prenašanje izziva",text_solving:"Preverjamo, ali ste človek",text_completed:"Nisem robot",text_completed_sr:"Avtomatsko preverjanje je zaključeno",text_expired:"Preverjanje robotov je poteklo",button_restart:"Osveži",text_error:"Preverjanje ni uspelo",button_retry:"Poskusi ponovno",text_fetch_error:"Povezave ni bilo mogoče vzpostaviti"},hu:{text_init:"Inicializálás...",text_ready:"Robotellenes ellenőrzés",button_start:"Kattintson az ellenőrzés megkezdéséhez",text_fetching:"Feladvány lekérése",text_solving:"Annak igazolása, hogy Ön nem robot...",text_completed:"Nem vagyok robot",text_completed_sr:"Automatikus spam ellenőrzés befejeződött",text_expired:"Robotellenes ellenőrzés lejárt",button_restart:"Újraindítás",text_error:"Az ellenőrzés nem sikerült",button_retry:"Próbálja újra",text_fetch_error:"Nem sikerült csatlakozni"},ro:{text_init:"Se inițializează...",text_ready:"Verificare anti-robot",button_start:"Click pentru a începe verificarea",text_fetching:"Downloading",text_solving:"Verificare că ești om...",text_completed:"Sunt om",text_completed_sr:"Verificarea automată a spam-ului a fost finalizată",text_expired:"Verificarea anti-robot a expirat",button_restart:"Restart",text_error:"Verificare eșuată",button_retry:"Reîncearcă",text_fetch_error:"Nu s-a putut conecta"},zh:{text_init:"初始化中……",text_ready:"人机验证",button_start:"点击开始",text_fetching:"正在加载",text_solving:"人机校验中……",text_completed:"我不是机器人",text_completed_sr:"人机验证完成",text_expired:"验证已过期",button_restart:"重新开始",text_error:"校验失败",button_retry:"重试",text_fetch_error:"无法连接到"},zh_tw:{text_init:"正在初始化……",text_ready:"反機器人驗證",button_start:"點擊開始驗證",text_fetching:"載入中",text_solving:"反機器人驗證中……",text_completed:"我不是機器人",text_completed_sr:"驗證完成",text_expired:"驗證超時",button_restart:"重新開始",text_error:"驗證失敗",button_retry:"重試",text_fetch_error:"無法連線到"},vi:{text_init:"Đang khởi tạo...",text_ready:"Xác minh chống Robot",button_start:"Bấm vào đây để xác minh",text_fetching:"Tìm nạp và xử lý thử thách",text_solving:"Xác minh bạn là người...",text_completed:"Bạn là con người",text_completed_sr:"Xác minh hoàn tất",text_expired:"Xác minh đã hết hạn",button_restart:"Khởi động lại",text_error:"Xác minh thất bại",button_retry:"Thử lại",text_fetch_error:"Không kết nối được"},he:{text_init:"בביצוע...",text_ready:"אימות אנוש",button_start:"צריך ללחוץ להתחלת האימות",text_fetching:"אתגר המענה בהכנה",text_solving:"מתבצע אימות אנוש...",text_completed:"אני לא רובוט",text_completed_sr:"בדיקת הספאם האוטומטית הסתיימה",text_expired:"פג תוקף אימות האנוש",button_restart:"להתחיל שוב",text_error:"אימות האנוש נכשל",button_retry:"לנסות שוב",text_fetch_error:"נכשל החיבור אל",rtl:!0},th:{text_init:"การเริ่มต้น...",text_ready:" การตรวจสอบต่อต้านหุ่นยนต์",button_start:"คลิกเพื่อเริ่มการตรวจสอบ",text_fetching:"การดึงความท้าทาย",text_solving:"ยืนยันว่าคุณเป็นมนุษย์...",text_completed:"ฉันเป็นมนุษย์",text_completed_sr:"การตรวจสอบสแปมอัตโนมัติเสร็จสมบูรณ์",text_expired:"การตรวจสอบ ต่อต้านหุ่นยนต์ หมดอายุ",button_restart:"รีสตาร์ท",text_error:"การยืนยันล้มเหลว",button_retry:"ลองใหม่",text_fetch_error:"ไม่สามารถเชื่อมต่อได้"},kr:{text_init:"초기화 중",text_ready:"Anti-Robot 검증",button_start:"검증을 위해 클릭해 주세요",text_fetching:"검증 준비 중",text_solving:"검증 중",text_completed:"검증이 완료되었습니다",text_completed_sr:"자동 스팸 확인 완료",text_expired:"Anti-Robot 검증 만료",button_restart:"다시 시작합니다",text_error:"검증 실패",button_retry:"다시 시도해 주세요",text_fetch_error:"연결하지 못했습니다"},ar:{text_init:"...التهيئة",text_ready:"يتم التحقيق",button_start:"إضغط هنا للتحقيق",text_fetching:"تهيئة التحدي",text_solving:"نتحقق من أنك لست روبوتًا...",text_completed:"أنا لست روبوتًا",text_completed_sr:"تم الانتهاء من التحقق التلقائي من البريد العشوائي",text_expired:"انتهت صلاحية التحقق",button_restart:"إعادة تشغيل",text_error:"فشل التحقق",button_retry:"ابدأ مرة أخرى",text_fetch_error:"مشكلة في الاتصال مع"},nb:g};function h(t,e){const r=new Uint8Array(3),i=new DataView(r.buffer);return i.setUint8(0,t),i.setUint16(1,e),r}let d;"undefined"!=typeof window&&(d=window.URL||window.webkitURL);class p{constructor(){this.workers=[],this.puzzleNumber=0,this.numPuzzles=0,this.threshold=0,this.startTime=0,this.progress=0,this.totalHashes=0,this.puzzleSolverInputs=[],this.puzzleIndex=0,this.solutionBuffer=new Uint8Array(0),this.solverType=1,this.readyPromise=new Promise((()=>{})),this.readyCount=0,this.startCount=0,this.progressCallback=()=>0,this.readyCallback=()=>0,this.startedCallback=()=>0,this.doneCallback=()=>0,this.errorCallback=()=>0}init(){let t;this.terminateWorkers(),this.progress=0,this.totalHashes=0,this.readyPromise=new Promise((e=>t=e)),this.readyCount=0,this.startCount=0,this.workers=new Array(4);const e=new Blob(['!function(){"use strict";const A="=".charCodeAt(0),I=new Uint8Array(256);for(let A=0;A<64;A++)I["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(A)]=A;function g(A){const I={},g=A.exports,C=g.memory,Q=g.__alloc,t=g.__retain,B=g.__rtti_base||-1;return I.__allocArray=(A,I)=>{const g=function(A){return new Uint32Array(C.buffer)[(B+4>>>2)+2*A]}(A),e=31-Math.clz32(g>>>6&31),o=I.length,i=Q(o<>>2]=t(i),n[r+4>>>2]=i,n[r+8>>>2]=o<>>e)+A]=t(I[A]);else s.set(I,i>>>e);return r},I.__getUint8Array=A=>{const I=new Uint32Array(C.buffer),g=I[A+4>>>2];return new Uint8Array(C.buffer,g,I[g-4>>>2]>>>0)},function(A,I={}){const g=A.__argumentsLength?I=>{A.__argumentsLength.value=I}:A.__setArgumentsLength||A.__setargc||(()=>({}));for(const C in A){if(!Object.prototype.hasOwnProperty.call(A,C))continue;const Q=A[C],t=C.split(".")[0];"function"==typeof Q&&Q!==g?(I[t]=(...A)=>(g(A.length),Q(...A))).original=Q:I[t]=Q}return I}(g,I)}class C{constructor(A){this.b=new Uint8Array(128),this.h=new Uint32Array(16),this.t=0,this.c=0,this.v=new Uint32Array(32),this.m=new Uint32Array(32),this.outlen=A}}function Q(A,I){return A[I]^A[I+1]<<8^A[I+2]<<16^A[I+3]<<24}function t(A,I,g,C,Q,t,B,e){const o=I[B],i=I[B+1],r=I[e],n=I[e+1];let E,s,w,a,c=A[g],D=A[g+1],f=A[C],h=A[C+1],y=A[Q],l=A[Q+1],u=A[t],N=A[t+1];E=c+f,s=(c&f|(c|f)&~E)>>>31,c=E,D=D+h+s,E=c+o,s=(c&o|(c|o)&~E)>>>31,c=E,D=D+i+s,w=u^c,a=N^D,u=a,N=w,E=y+u,s=(y&u|(y|u)&~E)>>>31,y=E,l=l+N+s,w=f^y,a=h^l,f=w>>>24^a<<8,h=a>>>24^w<<8,E=c+f,s=(c&f|(c|f)&~E)>>>31,c=E,D=D+h+s,E=c+r,s=(c&r|(c|r)&~E)>>>31,c=E,D=D+n+s,w=u^c,a=N^D,u=w>>>16^a<<16,N=a>>>16^w<<16,E=y+u,s=(y&u|(y|u)&~E)>>>31,y=E,l=l+N+s,w=f^y,a=h^l,f=a>>>31^w<<1,h=w>>>31^a<<1,A[g]=c,A[g+1]=D,A[C]=f,A[C+1]=h,A[Q]=y,A[Q+1]=l,A[t]=u,A[t+1]=N}const B=[4089235720,1779033703,2227873595,3144134277,4271175723,1013904242,1595750129,2773480762,2917565137,1359893119,725511199,2600822924,4215389547,528734635,327033209,1541459225],e=[0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,28,20,8,16,18,30,26,12,2,24,0,4,22,14,10,6,22,16,24,0,10,4,30,26,20,28,6,12,14,2,18,8,14,18,6,2,26,24,22,28,4,12,10,20,8,0,30,16,18,0,10,14,4,8,20,30,28,2,22,24,12,16,6,26,4,24,12,20,0,22,16,6,8,26,14,10,30,28,2,18,24,10,2,30,28,26,8,20,0,14,12,6,18,4,16,22,26,22,14,28,24,2,6,18,10,0,30,8,16,12,4,20,12,30,28,18,22,6,0,16,24,4,26,14,2,8,20,10,20,4,16,8,14,12,2,10,30,22,18,28,6,24,26,0,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,28,20,8,16,18,30,26,12,2,24,0,4,22,14,10,6];function o(A,I){const g=A.v,C=A.m;for(let I=0;I<16;I++)g[I]=A.h[I],g[I+16]=B[I];g[24]=g[24]^A.t,g[25]=g[25]^A.t/4294967296,I&&(g[28]=~g[28],g[29]=~g[29]);for(let I=0;I<32;I++)C[I]=Q(A.b,4*I);for(let A=0;A<12;A++)t(g,C,0,8,16,24,e[16*A+0],e[16*A+1]),t(g,C,2,10,18,26,e[16*A+2],e[16*A+3]),t(g,C,4,12,20,28,e[16*A+4],e[16*A+5]),t(g,C,6,14,22,30,e[16*A+6],e[16*A+7]),t(g,C,0,10,20,30,e[16*A+8],e[16*A+9]),t(g,C,2,12,22,24,e[16*A+10],e[16*A+11]),t(g,C,4,14,16,26,e[16*A+12],e[16*A+13]),t(g,C,6,8,18,28,e[16*A+14],e[16*A+15]);for(let I=0;I<16;I++)A.h[I]=A.h[I]^g[I]^g[I+16]}function i(A,I){for(let I=0;I<16;I++)A.h[I]=B[I];A.b.set(I),A.h[0]^=16842752^A.outlen}async function r(){return(A,I,g=4294967295)=>{const Q=function(A,I,g){if(128!=A.length)throw Error("Invalid input");const Q=A.buffer,t=new DataView(Q),B=new C(32);B.t=128;const e=t.getUint32(124,!0),r=e+g;for(let g=e;gE=A));self.onerror=A=>{self.postMessage({type:"error",message:JSON.stringify(A)})},self.onmessage=async C=>{const Q=C.data;try{if("solver"===Q.type){if(Q.forceJS){n=1;const A=await r();E(A)}else try{n=2;const C=WebAssembly.compile(function(g){let C=3285;g.charCodeAt(4379)===A&&C--,g.charCodeAt(4378)===A&&C--;const Q=new Uint8Array(C);for(let A=0,C=0;A<4380;A+=4){const t=I[g.charCodeAt(A+0)],B=I[g.charCodeAt(A+1)],e=I[g.charCodeAt(A+2)],o=I[g.charCodeAt(A+3)];Q[C++]=t<<2|B>>4,Q[C++]=(15&B)<<4|e>>2,Q[C++]=(3&e)<<6|63&o}return Q}("AGFzbQEAAAABKghgAABgAn9/AGADf39/AX9gAX8AYAR/f39/AGAAAX9gAX8Bf2ACf38BfwINAQNlbnYFYWJvcnQABAMMCwcGAwAAAQIFAQIABQMBAAEGFgR/AUEAC38BQQALfwBBAwt/AEHgDAsHbgkGbWVtb3J5AgAHX19hbGxvYwABCF9fcmV0YWluAAIJX19yZWxlYXNlAAMJX19jb2xsZWN0AAQHX19yZXNldAAFC19fcnR0aV9iYXNlAwMNVWludDhBcnJheV9JRAMCDHNvbHZlQmxha2UyYgAKCAELCvQSC5IBAQV/IABB8P///wNLBEAACyMBQRBqIgQgAEEPakFwcSICQRAgAkEQSxsiBmoiAj8AIgVBEHQiA0sEQCAFIAIgA2tB//8DakGAgHxxQRB2IgMgBSADShtAAEEASARAIANAAEEASARAAAsLCyACJAEgBEEQayICIAY2AgAgAkEBNgIEIAIgATYCCCACIAA2AgwgBAsEACAACwMAAQsDAAELBgAjACQBC7sCAQF/AkAgAUUNACAAQQA6AAAgACABakEEayICQQA6AAMgAUECTQ0AIABBADoAASAAQQA6AAIgAkEAOgACIAJBADoAASABQQZNDQAgAEEAOgADIAJBADoAACABQQhNDQAgAEEAIABrQQNxIgJqIgBBADYCACAAIAEgAmtBfHEiAmpBHGsiAUEANgIYIAJBCE0NACAAQQA2AgQgAEEANgIIIAFBADYCECABQQA2AhQgAkEYTQ0AIABBADYCDCAAQQA2AhAgAEEANgIUIABBADYCGCABQQA2AgAgAUEANgIEIAFBADYCCCABQQA2AgwgACAAQQRxQRhqIgFqIQAgAiABayEBA0AgAUEgTwRAIABCADcDACAAQgA3AwggAEIANwMQIABCADcDGCABQSBrIQEgAEEgaiEADAELCwsLcgACfyAARQRAQQxBAhABIQALIAALQQA2AgAgAEEANgIEIABBADYCCCABQfD///8DIAJ2SwRAQcAKQfAKQRJBORAAAAsgASACdCIBQQAQASICIAEQBiAAKAIAGiAAIAI2AgAgACACNgIEIAAgATYCCCAAC88BAQJ/QaABQQAQASIAQQxBAxABQYABQQAQBzYCACAAQQxBBBABQQhBAxAHNgIEIABCADcDCCAAQQA2AhAgAEIANwMYIABC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")),Q=await async function(A){const I=await async function(A){const I={env:{abort(){throw Error("Wasm aborted")}}};return{exports:g(await WebAssembly.instantiate(A,I))}}(A),C=I.exports.__retain(I.exports.__allocArray(I.exports.Uint8Array_ID,new Uint8Array(128)));let Q=I.exports.__getUint8Array(C);return(A,g,t=4294967295)=>{Q.set(A);const B=I.exports.solveBlake2b(C,g,t);Q=I.exports.__getUint8Array(C);const e=I.exports.__getUint8Array(B);return I.exports.__release(B),[Q,e]}}(await C);E(Q)}catch(A){console.log("FriendlyCaptcha failed to initialize WebAssembly, falling back to Javascript solver: "+A.toString()),n=1;const I=await r();E(I)}self.postMessage({type:"ready",solver:n})}else if("start"===Q.type){const A=await s;self.postMessage({type:"started"});let I,g=0;for(let C=0;C<256;C++){Q.puzzleSolverInput[123]=C;const[t,B]=A(Q.puzzleSolverInput,Q.threshold);if(0!==B.length){I=t;break}console.warn("FC: Internal error or no solution found"),g+=Math.pow(2,32)-1}g+=new DataView(I.slice(-4).buffer).getUint32(0,!0),self.postMessage({type:"done",solution:I.slice(-8),h:g,puzzleIndex:Q.puzzleIndex,puzzleNumber:Q.puzzleNumber})}}catch(A){setTimeout((()=>{throw A}))}}}();'],{type:"text/javascript"});for(let r=0;rthis.errorCallback(t),this.workers[r].onmessage=e=>{const i=e.data;if(i)if("ready"===i.type)this.readyCount++,this.solverType=i.solver,this.readyCount==this.workers.length&&(t(),this.readyCallback());else if("started"===i.type)this.startCount++,1==this.startCount&&(this.startTime=Date.now(),this.startedCallback());else if("done"===i.type){if(i.puzzleNumber!==this.puzzleNumber)return;if(this.puzzleIndex0,readyCallback:()=>0,doneCallback:()=>0,errorCallback:()=>0,sitekey:t.dataset.sitekey||"",language:t.dataset.lang||"en",solutionFieldName:t.dataset.solutionFieldName||"frc-captcha-solution",styleNonce:null},e),this.e=t,this.e.friendlyChallengeWidget=this,this.loadLanguage(),t.innerText=this.lang.text_init,this.opts.skipStyleInjection||function(t=null){if(!document.querySelector("#frc-style")){const e=document.createElement("style");e.id="frc-style",e.innerHTML=".frc-captcha *{margin:0;padding:0;border:0;text-align:initial;border-radius:0;filter:none!important;transition:none!important;font-weight:400;font-size:14px;line-height:1.2;text-decoration:none;background-color:initial;color:#222}.frc-captcha{position:relative;min-width:250px;max-width:312px;border:1px solid #f4f4f4;padding-bottom:12px;background-color:#fff}.frc-captcha b{font-weight:700}.frc-container{display:flex;align-items:center;min-height:52px}.frc-icon{fill:#222;stroke:#222;flex-shrink:0;margin:8px 8px 0}.frc-icon.frc-warning{fill:#c00}.frc-success .frc-icon{animation:1s ease-in both frc-fade-in}.frc-content{white-space:nowrap;display:flex;flex-direction:column;margin:4px 6px 0 0;overflow-x:auto;flex-grow:1}.frc-banner{position:absolute;bottom:0;right:6px;line-height:1}.frc-banner *{font-size:10px;opacity:.8;text-decoration:none}.frc-progress{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:3px 0;height:4px;border:none;background-color:#eee;color:#222;width:100%;transition:.5s linear}.frc-progress::-webkit-progress-bar{background:#eee}.frc-progress::-webkit-progress-value{background:#222}.frc-progress::-moz-progress-bar{background:#222}.frc-button{cursor:pointer;padding:2px 6px;background-color:#f1f1f1;border:1px solid transparent;text-align:center;font-weight:600;text-transform:none}.frc-button:focus{border:1px solid #333}.frc-button:hover{background-color:#ddd}.frc-captcha-solution{display:none}.frc-err-url{text-decoration:underline;font-size:.9em}.frc-rtl{direction:rtl}.frc-rtl .frc-content{margin:4px 0 0 6px}.frc-banner.frc-rtl{left:6px;right:auto}.dark.frc-captcha{color:#fff;background-color:#222;border-color:#333}.dark.frc-captcha *{color:#fff}.dark.frc-captcha button{background-color:#444}.dark .frc-icon{fill:#fff;stroke:#fff}.dark .frc-progress{background-color:#444}.dark .frc-progress::-webkit-progress-bar{background:#444}.dark .frc-progress::-webkit-progress-value{background:#ddd}.dark .frc-progress::-moz-progress-bar{background:#ddd}@keyframes frc-fade-in{from{opacity:0}to{opacity:1}}",t&&e.setAttribute("nonce",t),document.head.appendChild(e)}}(this.opts.styleNonce),this.init("auto"===this.opts.startMode||"auto"===this.e.dataset.start)}init(t){var e;if(this.hasBeenDestroyed)console.error("FriendlyCaptcha widget has been destroyed using destroy(), it can not be used anymore.");else if(this.initWorkerGroup(),t)this.start();else if("none"!==this.e.dataset.start&&("focus"===this.opts.startMode||"focus"===this.e.dataset.start)){const t=function(t){for(;"FORM"!==t.tagName;)if(!(t=t.parentElement))return null;return t}(this.e);t?(e=()=>this.start(),t.addEventListener("focusin",e,{once:!0,passive:!0})):console.log("FriendlyCaptcha div seems not to be contained in a form, autostart will not work")}}loadLanguage(t){if(void 0!==t?this.opts.language=t:this.e.dataset.lang&&(this.opts.language=this.e.dataset.lang),"string"==typeof this.opts.language){let t=this.opts.language.toLowerCase(),e=u[t];void 0===e&&"-"===t[2]&&(t=t.substring(0,2),e=u[t]),void 0===e&&(console.error('FriendlyCaptcha: language "'+this.opts.language+'" not found.'),e=u.en),this.lang=e}else this.lang=Object.assign(Object.assign({},u.en),this.opts.language)}makeButtonStart(){const t=this.e.querySelector("button");t&&(t.addEventListener("click",(t=>this.start()),{once:!0,passive:!0}),t.addEventListener("touchstart",(t=>this.start()),{once:!0,passive:!0}))}onWorkerError(t){this.hasBeenStarted=!1,this.needsReInit=!0,this.expiryTimeout&&clearTimeout(this.expiryTimeout),console.error("[FRC]",t),this.e.innerHTML=s(this.opts.solutionFieldName,this.lang,"Background worker error "+t.message),this.makeButtonStart(),this.opts.forceJSFallback=!0}initWorkerGroup(){this.workerGroup.progressCallback=t=>{!function(t,e){const r=t.querySelector(".frc-progress"),i=(e.i+1)/e.n;r&&(r.value=i,r.innerText=(100*i).toFixed(1)+"%",r.title=e.i+1+"/"+e.n+" ("+(e.h/e.t*.001).toFixed(0)+"K/s)")}(this.e,t)},this.workerGroup.readyCallback=()=>{var t;this.e.innerHTML=a(this.opts.solutionFieldName,(t=this.lang).rtl,'',!0,t.text_ready,".UNSTARTED",t.button_start,!1),this.makeButtonStart(),this.opts.readyCallback()},this.workerGroup.startedCallback=()=>{var t;this.e.innerHTML=a(this.opts.solutionFieldName,(t=this.lang).rtl,o,!0,t.text_solving,".UNFINISHED",void 0,!0),this.opts.startedCallback()},this.workerGroup.doneCallback=t=>{const e=this.handleDone(t);this.opts.doneCallback(e);const r=this.e.dataset.callback;r&&window[r](e)},this.workerGroup.errorCallback=t=>{this.onWorkerError(t)},this.workerGroup.init(),this.workerGroup.setupSolver(this.opts.forceJSFallback)}expire(){var t;this.hasBeenStarted=!1,!1!==this.e.isConnected&&(this.e.innerHTML=a(this.opts.solutionFieldName,(t=this.lang).rtl,n,!0,t.text_expired,".EXPIRED",t.button_restart),this.makeButtonStart())}async start(){if(this.hasBeenDestroyed)return void console.error("Can not start FriendlyCaptcha widget which has been destroyed");if(this.hasBeenStarted)return void console.warn("Can not start FriendlyCaptcha widget which has already been started");const t=this.opts.sitekey||this.e.dataset.sitekey;if(!t)return console.error("FriendlyCaptcha: sitekey not set on frc-captcha element"),void(this.e.innerHTML=s(this.opts.solutionFieldName,this.lang,"Website problem: sitekey not set",!1));if(-1===l.indexOf("headless")&&-1===A.appVersion.indexOf("Headless")&&-1===l.indexOf("bot")&&-1===l.indexOf("crawl")&&!0!==A.webdriver&&A.language&&(void 0===A.languages||A.languages.length)){if(this.needsReInit)return this.needsReInit=!1,void this.init(!0);this.hasBeenStarted=!0;try{this.e.innerHTML=a(this.opts.solutionFieldName,(i=this.lang).rtl,o,!0,i.text_fetching,".FETCHING",void 0,!0),this.puzzle=function(t){const i=t.split("."),o=i[1],n=function(t){const i=t.length;let o=3*i>>>2;t.charCodeAt(i-1)===e&&o--,t.charCodeAt(i-2)===e&&o--;const n=new Uint8Array(o);for(let e=0,o=0;e>4,n[o++]=(15&a)<<4|s>>2,n[o++]=(3&s)<<6|63&A}return n}(o);return{signature:i[0],base64:o,buffer:n,n:n[14],threshold:(a=n[15],a>255?a=255:a<0&&(a=0),Math.pow(2,(255.999-a)/8)>>>0),expiry:3e5*n[13]};var a}(await async function(t,e,r){const i=t.split(",");for(let t=0;t${i[t]}`);throw o.rawError=e,o}throw Error("Internal error")}(this.opts.puzzleEndpoint,t,this.lang)),this.expiryTimeout&&clearTimeout(this.expiryTimeout),this.expiryTimeout=setTimeout((()=>this.expire()),this.puzzle.expiry-3e4)}catch(t){console.error("[FRC]",t),this.hasBeenStarted=!1,this.expiryTimeout&&clearTimeout(this.expiryTimeout),this.e.innerHTML=s(this.opts.solutionFieldName,this.lang,t.message),this.makeButtonStart();const e="error_getting_puzzle";this.opts.errorCallback({code:e,description:t.toString(),error:t});const r=this.e.dataset["callback-error"];return void(r&&window[r](this))}var i;await this.workerGroup.start(this.puzzle)}else this.e.innerHTML=s(this.opts.solutionFieldName,this.lang,"Browser check failed, try a different browser",!1,!0)}handleDone(t){this.valid=!0;const e=`${this.puzzle.signature}.${this.puzzle.base64}.${i(t.solution)}.${i(t.diagnostics)}`;return this.e.innerHTML=function(t,e,r,i){const o=`${i.t.toFixed(0)}s (${(i.h/i.t*.001).toFixed(0)}K/s)${1===i.solver?" JS Fallback":""}`;return a(t,e.rtl,`${e.text_completed_sr}`,!1,e.text_completed,r,void 0,!1,o,"frc-success")}(this.opts.solutionFieldName,this.lang,e,t),this.needsReInit=!0,e}destroy(){this.workerGroup.terminateWorkers(),this.needsReInit=!1,this.hasBeenStarted=!1,this.expiryTimeout&&clearTimeout(this.expiryTimeout),this.e&&(this.e.remove(),delete this.e),this.hasBeenDestroyed=!0}reset(){this.hasBeenDestroyed?console.error("FriendlyCaptcha widget has been destroyed, it can not be used anymore"):(this.workerGroup.terminateWorkers(),this.needsReInit=!1,this.hasBeenStarted=!1,this.expiryTimeout&&clearTimeout(this.expiryTimeout),this.init("auto"===this.opts.startMode||"auto"===this.e.dataset.start))}}const{applyFilters:x}=JetPlugins.hooks,{addAction:f}=JetPlugins.hooks;f("jet.fb.observe.after","jet-form-builder/friendly.captcha",(function(t){var e;if(t.parent)return;const r=t.getInput("_captcha_token"),i=t.getSubmit().getFormId(),o=r?.nodes?.[0]?.nextElementSibling;let n=null!==(e=window?.JetFormBuilderCaptchaConfig?.[i])&&void 0!==e&&e;if(!o||!n)return;r.isVisible=()=>!0,n={...n,doneCallback(t){r.value.current=t,r.loading.end()},startedCallback:()=>r.loading.start(),errorCallback:()=>r.loading.end()},n=x("jet.fb.friendlyCaptcha.options",n,t);const a=new _(o,n);t.getSubmit().submitter?.status?.watch?.((()=>{a.reset(),r.onClear()}))}))})(); \ No newline at end of file diff --git a/modules/captcha/assets/build/hcaptcha/editor.asset.php b/modules/captcha/assets/build/hcaptcha/editor.asset.php index a965d5809..499d9f88f 100644 --- a/modules/captcha/assets/build/hcaptcha/editor.asset.php +++ b/modules/captcha/assets/build/hcaptcha/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-block-editor', 'wp-components'), 'version' => '5d8190169e1ac776f5df'); + array('react', 'wp-block-editor', 'wp-components'), 'version' => '96c00dd424ffb70de989'); diff --git a/modules/captcha/assets/build/hcaptcha/editor.js b/modules/captcha/assets/build/hcaptcha/editor.js index 4cb5528f4..02602dd74 100644 --- a/modules/captcha/assets/build/hcaptcha/editor.js +++ b/modules/captcha/assets/build/hcaptcha/editor.js @@ -1 +1 @@ -(()=>{"use strict";const C=window.React,e=window.wp.components,{__:t}=wp.i18n,{ToggleControl:l,BaseHelp:a}=JetFBComponents,{useCaptchaProvider:V}=JetFBHooks,{useEffect:H}=wp.element,{globalTab:i}=JetFBActions,c=i({slug:"captcha-tab",element:"hcaptcha",empty:{}}),n=function(){const[i,n]=V(),r=i.use_global?c:i;return H(()=>{n({key:r.key,secret:r.secret,threshold:r.threshold})},[i.use_global]),(0,C.createElement)(C.Fragment,null,(0,C.createElement)(l,{checked:i.use_global,onChange:C=>n({use_global:C})},t("Use","jet-form-builder")+" ",(0,C.createElement)("a",{href:JetFormEditorData.global_settings_url+"#captcha-tab__hcaptcha"},t("Global Settings","jet-form-builder"))),(0,C.createElement)(e.TextControl,{label:t("Site Key:","jet-form-builder"),value:r.key,disabled:i.use_global,onChange:C=>n({key:C})}),(0,C.createElement)(a,null,t("You can find it on this page in the first column of Sitekey.","jet-form-builder")+" ",(0,C.createElement)(e.ExternalLink,{href:"https://dashboard.hcaptcha.com/sites"},t("Go to the dashboard of sites","jet-form-builder"))),(0,C.createElement)(e.TextControl,{label:t("Secret Key:","jet-form-builder"),value:r.secret,disabled:i.use_global,onChange:C=>n({secret:C})}),(0,C.createElement)(a,null,t("You can find it on the settings page, this will be the first field.","jet-form-builder")," ",(0,C.createElement)(e.ExternalLink,{href:"https://dashboard.hcaptcha.com/settings"},t("Go to the Settings page","jet-form-builder"))))},r=(0,C.createElement)("svg",{width:"268",height:"100",viewBox:"0 0 268 100",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("rect",{width:"268",height:"100",rx:"4",fill:"white"}),(0,C.createElement)("path",{d:"M27 56.95L20.05 50L17.6833 52.35L27 61.6666L47 41.6667L44.65 39.3167L27 56.95Z",fill:"#0DC167"}),(0,C.createElement)("path",{d:"M62.9375 43.625V55H61.4297V43.625H62.9375ZM74.4141 53.5547V49.2031C74.4141 48.8698 74.3464 48.5807 74.2109 48.3359C74.0807 48.0859 73.8828 47.8932 73.6172 47.7578C73.3516 47.6224 73.0234 47.5547 72.6328 47.5547C72.2682 47.5547 71.9479 47.6172 71.6719 47.7422C71.401 47.8672 71.1875 48.0312 71.0312 48.2344C70.8802 48.4375 70.8047 48.6562 70.8047 48.8906H69.3594C69.3594 48.5885 69.4375 48.2891 69.5938 47.9922C69.75 47.6953 69.974 47.4271 70.2656 47.1875C70.5625 46.9427 70.9167 46.75 71.3281 46.6094C71.7448 46.4635 72.2083 46.3906 72.7188 46.3906C73.3333 46.3906 73.875 46.4948 74.3438 46.7031C74.8177 46.9115 75.1875 47.2266 75.4531 47.6484C75.724 48.0651 75.8594 48.5885 75.8594 49.2188V53.1562C75.8594 53.4375 75.8828 53.737 75.9297 54.0547C75.9818 54.3724 76.0573 54.6458 76.1562 54.875V55H74.6484C74.5755 54.8333 74.5182 54.612 74.4766 54.3359C74.4349 54.0547 74.4141 53.7943 74.4141 53.5547ZM74.6641 49.875L74.6797 50.8906H73.2188C72.8073 50.8906 72.4401 50.9245 72.1172 50.9922C71.7943 51.0547 71.5234 51.151 71.3047 51.2812C71.0859 51.4115 70.9193 51.5755 70.8047 51.7734C70.6901 51.9661 70.6328 52.1927 70.6328 52.4531C70.6328 52.7188 70.6927 52.9609 70.8125 53.1797C70.9323 53.3984 71.112 53.5729 71.3516 53.7031C71.5964 53.8281 71.8958 53.8906 72.25 53.8906C72.6927 53.8906 73.0833 53.7969 73.4219 53.6094C73.7604 53.4219 74.0286 53.1927 74.2266 52.9219C74.4297 52.651 74.5391 52.388 74.5547 52.1328L75.1719 52.8281C75.1354 53.0469 75.0365 53.2891 74.875 53.5547C74.7135 53.8203 74.4974 54.0755 74.2266 54.3203C73.9609 54.5599 73.6432 54.7604 73.2734 54.9219C72.9089 55.0781 72.4974 55.1562 72.0391 55.1562C71.4661 55.1562 70.9635 55.0443 70.5312 54.8203C70.1042 54.5964 69.7708 54.2969 69.5312 53.9219C69.2969 53.5417 69.1797 53.1172 69.1797 52.6484C69.1797 52.1953 69.2682 51.7969 69.4453 51.4531C69.6224 51.1042 69.8776 50.8151 70.2109 50.5859C70.5443 50.3516 70.9453 50.1745 71.4141 50.0547C71.8828 49.9349 72.4062 49.875 72.9844 49.875H74.6641ZM79.5703 48.2266V55H78.1172V46.5469H79.4922L79.5703 48.2266ZM79.2734 50.4531L78.6016 50.4297C78.6068 49.8516 78.6823 49.3177 78.8281 48.8281C78.974 48.3333 79.1901 47.9036 79.4766 47.5391C79.763 47.1745 80.1198 46.8932 80.5469 46.6953C80.974 46.4922 81.4688 46.3906 82.0312 46.3906C82.4271 46.3906 82.7917 46.4479 83.125 46.5625C83.4583 46.6719 83.7474 46.8464 83.9922 47.0859C84.237 47.3255 84.4271 47.6328 84.5625 48.0078C84.6979 48.3828 84.7656 48.8359 84.7656 49.3672V55H83.3203V49.4375C83.3203 48.9948 83.2448 48.6406 83.0938 48.375C82.9479 48.1094 82.7396 47.9167 82.4688 47.7969C82.1979 47.6719 81.8802 47.6094 81.5156 47.6094C81.0885 47.6094 80.7318 47.6849 80.4453 47.8359C80.1589 47.987 79.9297 48.1953 79.7578 48.4609C79.5859 48.7266 79.4609 49.0312 79.3828 49.375C79.3099 49.7135 79.2734 50.0729 79.2734 50.4531ZM84.75 49.6562L83.7812 49.9531C83.7865 49.4896 83.862 49.0443 84.0078 48.6172C84.1589 48.1901 84.375 47.8099 84.6562 47.4766C84.9427 47.1432 85.2943 46.8802 85.7109 46.6875C86.1276 46.4896 86.6042 46.3906 87.1406 46.3906C87.5938 46.3906 87.9948 46.4505 88.3438 46.5703C88.6979 46.6901 88.9948 46.875 89.2344 47.125C89.4792 47.3698 89.6641 47.6849 89.7891 48.0703C89.9141 48.4557 89.9766 48.9141 89.9766 49.4453V55H88.5234V49.4297C88.5234 48.9557 88.4479 48.5885 88.2969 48.3281C88.151 48.0625 87.9427 47.8776 87.6719 47.7734C87.4062 47.6641 87.0885 47.6094 86.7188 47.6094C86.401 47.6094 86.1198 47.6641 85.875 47.7734C85.6302 47.8828 85.4245 48.0339 85.2578 48.2266C85.0911 48.4141 84.9635 48.6302 84.875 48.875C84.7917 49.1198 84.75 49.3802 84.75 49.6562ZM97.5781 43V55H96.1328V43H97.5781ZM97.2344 50.4531L96.6328 50.4297C96.638 49.8516 96.724 49.3177 96.8906 48.8281C97.0573 48.3333 97.2917 47.9036 97.5938 47.5391C97.8958 47.1745 98.2552 46.8932 98.6719 46.6953C99.0938 46.4922 99.5599 46.3906 100.07 46.3906C100.487 46.3906 100.862 46.4479 101.195 46.5625C101.529 46.6719 101.812 46.849 102.047 47.0938C102.286 47.3385 102.469 47.6562 102.594 48.0469C102.719 48.4323 102.781 48.9036 102.781 49.4609V55H101.328V49.4453C101.328 49.0026 101.263 48.6484 101.133 48.3828C101.003 48.112 100.812 47.9167 100.562 47.7969C100.312 47.6719 100.005 47.6094 99.6406 47.6094C99.2812 47.6094 98.9531 47.6849 98.6562 47.8359C98.3646 47.987 98.112 48.1953 97.8984 48.4609C97.6901 48.7266 97.526 49.0312 97.4062 49.375C97.2917 49.7135 97.2344 50.0729 97.2344 50.4531ZM110.117 53.0469V46.5469H111.57V55H110.188L110.117 53.0469ZM110.391 51.2656L110.992 51.25C110.992 51.8125 110.932 52.3333 110.812 52.8125C110.698 53.2865 110.51 53.6979 110.25 54.0469C109.99 54.3958 109.648 54.6693 109.227 54.8672C108.805 55.0599 108.292 55.1562 107.688 55.1562C107.276 55.1562 106.898 55.0964 106.555 54.9766C106.216 54.8568 105.924 54.6719 105.68 54.4219C105.435 54.1719 105.245 53.8464 105.109 53.4453C104.979 53.0443 104.914 52.5625 104.914 52V46.5469H106.359V52.0156C106.359 52.3958 106.401 52.7109 106.484 52.9609C106.573 53.2057 106.69 53.401 106.836 53.5469C106.987 53.6875 107.154 53.7865 107.336 53.8438C107.523 53.901 107.716 53.9297 107.914 53.9297C108.529 53.9297 109.016 53.8125 109.375 53.5781C109.734 53.3385 109.992 53.0182 110.148 52.6172C110.31 52.2109 110.391 51.7604 110.391 51.2656ZM115.211 48.2266V55H113.758V46.5469H115.133L115.211 48.2266ZM114.914 50.4531L114.242 50.4297C114.247 49.8516 114.323 49.3177 114.469 48.8281C114.615 48.3333 114.831 47.9036 115.117 47.5391C115.404 47.1745 115.76 46.8932 116.188 46.6953C116.615 46.4922 117.109 46.3906 117.672 46.3906C118.068 46.3906 118.432 46.4479 118.766 46.5625C119.099 46.6719 119.388 46.8464 119.633 47.0859C119.878 47.3255 120.068 47.6328 120.203 48.0078C120.339 48.3828 120.406 48.8359 120.406 49.3672V55H118.961V49.4375C118.961 48.9948 118.885 48.6406 118.734 48.375C118.589 48.1094 118.38 47.9167 118.109 47.7969C117.839 47.6719 117.521 47.6094 117.156 47.6094C116.729 47.6094 116.372 47.6849 116.086 47.8359C115.799 47.987 115.57 48.1953 115.398 48.4609C115.227 48.7266 115.102 49.0312 115.023 49.375C114.951 49.7135 114.914 50.0729 114.914 50.4531ZM120.391 49.6562L119.422 49.9531C119.427 49.4896 119.503 49.0443 119.648 48.6172C119.799 48.1901 120.016 47.8099 120.297 47.4766C120.583 47.1432 120.935 46.8802 121.352 46.6875C121.768 46.4896 122.245 46.3906 122.781 46.3906C123.234 46.3906 123.635 46.4505 123.984 46.5703C124.339 46.6901 124.635 46.875 124.875 47.125C125.12 47.3698 125.305 47.6849 125.43 48.0703C125.555 48.4557 125.617 48.9141 125.617 49.4453V55H124.164V49.4297C124.164 48.9557 124.089 48.5885 123.938 48.3281C123.792 48.0625 123.583 47.8776 123.312 47.7734C123.047 47.6641 122.729 47.6094 122.359 47.6094C122.042 47.6094 121.76 47.6641 121.516 47.7734C121.271 47.8828 121.065 48.0339 120.898 48.2266C120.732 48.4141 120.604 48.6302 120.516 48.875C120.432 49.1198 120.391 49.3802 120.391 49.6562ZM132.789 53.5547V49.2031C132.789 48.8698 132.721 48.5807 132.586 48.3359C132.456 48.0859 132.258 47.8932 131.992 47.7578C131.727 47.6224 131.398 47.5547 131.008 47.5547C130.643 47.5547 130.323 47.6172 130.047 47.7422C129.776 47.8672 129.562 48.0312 129.406 48.2344C129.255 48.4375 129.18 48.6562 129.18 48.8906H127.734C127.734 48.5885 127.812 48.2891 127.969 47.9922C128.125 47.6953 128.349 47.4271 128.641 47.1875C128.938 46.9427 129.292 46.75 129.703 46.6094C130.12 46.4635 130.583 46.3906 131.094 46.3906C131.708 46.3906 132.25 46.4948 132.719 46.7031C133.193 46.9115 133.562 47.2266 133.828 47.6484C134.099 48.0651 134.234 48.5885 134.234 49.2188V53.1562C134.234 53.4375 134.258 53.737 134.305 54.0547C134.357 54.3724 134.432 54.6458 134.531 54.875V55H133.023C132.951 54.8333 132.893 54.612 132.852 54.3359C132.81 54.0547 132.789 53.7943 132.789 53.5547ZM133.039 49.875L133.055 50.8906H131.594C131.182 50.8906 130.815 50.9245 130.492 50.9922C130.169 51.0547 129.898 51.151 129.68 51.2812C129.461 51.4115 129.294 51.5755 129.18 51.7734C129.065 51.9661 129.008 52.1927 129.008 52.4531C129.008 52.7188 129.068 52.9609 129.188 53.1797C129.307 53.3984 129.487 53.5729 129.727 53.7031C129.971 53.8281 130.271 53.8906 130.625 53.8906C131.068 53.8906 131.458 53.7969 131.797 53.6094C132.135 53.4219 132.404 53.1927 132.602 52.9219C132.805 52.651 132.914 52.388 132.93 52.1328L133.547 52.8281C133.51 53.0469 133.411 53.2891 133.25 53.5547C133.089 53.8203 132.872 54.0755 132.602 54.3203C132.336 54.5599 132.018 54.7604 131.648 54.9219C131.284 55.0781 130.872 55.1562 130.414 55.1562C129.841 55.1562 129.339 55.0443 128.906 54.8203C128.479 54.5964 128.146 54.2969 127.906 53.9219C127.672 53.5417 127.555 53.1172 127.555 52.6484C127.555 52.1953 127.643 51.7969 127.82 51.4531C127.997 51.1042 128.253 50.8151 128.586 50.5859C128.919 50.3516 129.32 50.1745 129.789 50.0547C130.258 49.9349 130.781 49.875 131.359 49.875H133.039ZM137.953 48.3516V55H136.508V46.5469H137.875L137.953 48.3516ZM137.609 50.4531L137.008 50.4297C137.013 49.8516 137.099 49.3177 137.266 48.8281C137.432 48.3333 137.667 47.9036 137.969 47.5391C138.271 47.1745 138.63 46.8932 139.047 46.6953C139.469 46.4922 139.935 46.3906 140.445 46.3906C140.862 46.3906 141.237 46.4479 141.57 46.5625C141.904 46.6719 142.188 46.849 142.422 47.0938C142.661 47.3385 142.844 47.6562 142.969 48.0469C143.094 48.4323 143.156 48.9036 143.156 49.4609V55H141.703V49.4453C141.703 49.0026 141.638 48.6484 141.508 48.3828C141.378 48.112 141.188 47.9167 140.938 47.7969C140.688 47.6719 140.38 47.6094 140.016 47.6094C139.656 47.6094 139.328 47.6849 139.031 47.8359C138.74 47.987 138.487 48.1953 138.273 48.4609C138.065 48.7266 137.901 49.0312 137.781 49.375C137.667 49.7135 137.609 50.0729 137.609 50.4531Z",fill:"#1E293B"}),(0,C.createElement)("path",{d:"M201.883 70.9274H199.984V67.6895C199.984 66.9395 199.89 66.2894 199.1 66.2894C198.31 66.2894 198.062 66.9895 198.062 67.901V70.9262H196.177V62.3015H198.062V64.3508C198.062 64.9758 198.05 65.6508 198.05 65.6508C198.345 65.1008 198.899 64.6508 199.76 64.6508C201.446 64.6508 201.883 65.7886 201.883 67.2887V70.9274ZM209.984 69.9023C209.571 70.3532 208.711 71.0774 207.048 71.0774C204.654 71.0774 202.779 69.4023 202.779 66.6267C202.779 63.8397 204.677 62.1765 207.047 62.1765C208.722 62.1765 209.63 62.9142 209.842 63.1515L209.254 64.827C209.101 64.6143 208.23 63.9253 207.155 63.9253C205.776 63.9253 204.714 64.9004 204.714 66.5894C204.714 68.2785 205.821 69.2396 207.155 69.2396C208.169 69.2396 208.9 68.8146 209.349 68.3268L209.984 69.9023ZM215.951 70.9274H214.148L214.111 70.2782C213.865 70.5409 213.392 71.0659 212.449 71.0659C211.424 71.0659 210.338 70.4782 210.338 69.1031C210.338 67.728 211.529 67.2653 212.602 67.2153L214.064 67.153V67.0157C214.064 66.3656 213.628 66.0279 212.873 66.0279C212.13 66.0279 211.387 66.3779 211.092 66.578L210.597 65.2779C211.092 65.0156 212.001 64.6528 213.085 64.6528C214.17 64.6528 214.795 64.9151 215.255 65.3656C215.703 65.8164 215.952 66.4157 215.952 67.4534L215.951 70.9274ZM214.076 68.2145L213.144 68.2768C212.567 68.3018 212.225 68.5637 212.225 69.0269C212.225 69.5019 212.59 69.7896 213.109 69.7896C213.616 69.7896 213.958 69.4396 214.076 69.2273V68.2145ZM220.868 71.0647C220.008 71.0647 219.393 70.727 219.029 70.152V73.1882H217.144V64.7643H218.936L218.924 65.5521H218.948C219.373 65.0143 219.998 64.6504 220.882 64.6504C222.557 64.6504 223.618 66.0382 223.618 67.8506C223.618 69.663 222.555 71.0647 220.868 71.0647ZM220.326 66.2283C219.524 66.2283 218.97 66.8784 218.97 67.8268C218.97 68.7752 219.524 69.4253 220.326 69.4253C221.14 69.4253 221.694 68.7752 221.694 67.8268C221.694 66.8784 221.14 66.2267 220.326 66.2267V66.2283ZM227.991 66.2894H226.706V68.5027C226.706 69.0277 226.776 69.1527 226.87 69.2654C226.952 69.3654 227.07 69.4154 227.318 69.4154C227.511 69.4109 227.703 69.3728 227.884 69.3027L227.978 70.8655C227.541 70.9951 227.089 71.0624 226.633 71.0655C225.961 71.0655 225.513 70.8528 225.218 70.4917C224.923 70.1306 224.805 69.6167 224.805 68.6789V66.2894H223.98V64.7766H224.805V63.1015H226.704V64.7766H227.989L227.991 66.2894ZM233.569 70.3274C233.51 70.3774 232.897 71.0651 231.352 71.0651C229.76 71.0651 228.286 69.915 228.286 67.8649C228.286 65.8021 229.784 64.652 231.376 64.652C232.861 64.652 233.533 65.3021 233.533 65.3021L233.121 66.8149C232.702 66.4598 232.172 66.2649 231.623 66.2648C230.821 66.2648 230.184 66.8526 230.184 67.8276C230.184 68.8027 230.762 69.4154 231.647 69.4154C232.531 69.4154 233.122 68.8154 233.122 68.8154L233.569 70.3274ZM240.067 70.9274H238.168V67.6895C238.168 66.9395 238.074 66.2894 237.284 66.2894C236.493 66.2894 236.246 66.9895 236.246 67.9022V70.9274H234.361V62.3015H236.246V64.3508C236.246 64.9758 236.234 65.6508 236.234 65.6508C236.529 65.1008 237.083 64.6508 237.944 64.6508C239.63 64.6508 240.067 65.7886 240.067 67.2887V70.9274ZM246.47 70.9274H244.667L244.631 70.2774C244.385 70.5401 243.912 71.0651 242.968 71.0651C241.944 71.0651 240.858 70.4774 240.858 69.1023C240.858 67.7272 242.049 67.2645 243.122 67.2145L244.584 67.1522V67.0149C244.584 66.3648 244.148 66.0271 243.393 66.0271C242.65 66.0271 241.907 66.3771 241.612 66.5771L241.116 65.2779C241.611 65.0156 242.519 64.6528 243.604 64.6528C244.689 64.6528 245.314 64.9151 245.774 65.3656C246.222 65.8164 246.471 66.4157 246.471 67.4534L246.47 70.9274ZM244.595 68.2145L243.663 68.2768C243.085 68.3018 242.743 68.5637 242.743 69.0269C242.743 69.5019 243.109 69.7896 243.628 69.7896C244.135 69.7896 244.477 69.4396 244.595 69.2273V68.2145Z",fill:"#4D4D4D"}),(0,C.createElement)("path",{opacity:"0.5",d:"M227.64 51.2725H233.72V57.3531H227.64V51.2725Z",fill:"#0074BF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M221.559 51.2725H227.64V57.3531H221.559V51.2725ZM215.478 51.2725H221.559V57.3531H215.478V51.2725Z",fill:"#0074BF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M209.397 51.2725H215.478V57.3531H209.397V51.2725Z",fill:"#0074BF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M233.721 45.1918H239.802V51.2725H233.721V45.1918Z",fill:"#0082BF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M227.64 45.1918H233.72V51.2725H227.64V45.1918Z",fill:"#0082BF"}),(0,C.createElement)("path",{d:"M221.559 45.1918H227.64V51.2725H221.559V45.1918ZM215.478 45.1918H221.559V51.2725H215.478V45.1918Z",fill:"#0082BF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M209.397 45.1918H215.478V51.2725H209.397V45.1918Z",fill:"#0082BF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M203.316 45.1919H209.397V51.2725H203.316V45.1919Z",fill:"#0082BF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M239.802 39.1102H245.883V45.1908H239.802V39.1102Z",fill:"#008FBF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M233.721 39.1102H239.802V45.1908H233.721V39.1102Z",fill:"#008FBF"}),(0,C.createElement)("path",{d:"M227.639 39.1102H233.72V45.1908H227.639V39.1102ZM221.559 39.1102H227.639V45.1908H221.559V39.1102ZM215.478 39.1102H221.559V45.1908H215.478V39.1102ZM209.397 39.1102H215.478V45.1908H209.397V39.1102Z",fill:"#008FBF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M203.316 39.1102H209.397V45.1908H203.316V39.1102Z",fill:"#008FBF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M197.235 39.1102H203.316V45.1908H197.235V39.1102Z",fill:"#008FBF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M239.802 33.0295H245.883V39.1101H239.802V33.0295Z",fill:"#009DBF"}),(0,C.createElement)("path",{d:"M233.721 33.0295H239.802V39.1101H233.721V33.0295ZM227.64 33.0295H233.72V39.1101H227.64V33.0295ZM221.559 33.0295H227.64V39.1101H221.559V33.0295ZM215.478 33.0295H221.559V39.1101H215.478V33.0295ZM209.398 33.0295H215.478V39.1101H209.398V33.0295ZM203.316 33.0295H209.397V39.1101H203.316V33.0295Z",fill:"#009DBF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M197.235 33.0295H203.316V39.1101H197.235V33.0295Z",fill:"#009DBF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M239.802 26.9489H245.883V33.0295H239.802V26.9489Z",fill:"#00ABBF"}),(0,C.createElement)("path",{d:"M233.721 26.9489H239.802V33.0295H233.721V26.9489ZM227.64 26.9489H233.72V33.0295H227.64V26.9489ZM221.559 26.9489H227.64V33.0295H221.559V26.9489ZM215.478 26.9489H221.559V33.0295H215.478V26.9489ZM209.398 26.9489H215.478V33.0295H209.398V26.9489ZM203.316 26.9489H209.397V33.0295H203.316V26.9489Z",fill:"#00ABBF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M197.235 26.9489H203.316V33.0295H197.235V26.9489Z",fill:"#00ABBF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M239.802 20.8682H245.883V26.9488H239.802V20.8682Z",fill:"#00B9BF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M233.721 20.8682H239.802V26.9488H233.721V20.8682Z",fill:"#00B9BF"}),(0,C.createElement)("path",{d:"M227.639 20.8682H233.72V26.9488H227.639V20.8682ZM221.559 20.8682H227.639V26.9488H221.559V20.8682ZM215.478 20.8682H221.559V26.9488H215.478V20.8682ZM209.397 20.8682H215.478V26.9488H209.397V20.8682Z",fill:"#00B9BF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M203.316 20.8682H209.397V26.9488H203.316V20.8682Z",fill:"#00B9BF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M197.235 20.8682H203.316V26.9488H197.235V20.8682Z",fill:"#00B9BF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M233.721 14.7866H239.802V20.8672H233.721V14.7866Z",fill:"#00C6BF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M227.64 14.7866H233.72V20.8672H227.64V14.7866Z",fill:"#00C6BF"}),(0,C.createElement)("path",{d:"M221.559 14.7866H227.64V20.8672H221.559V14.7866ZM215.478 14.7866H221.559V20.8672H215.478V14.7866Z",fill:"#00C6BF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M209.397 14.7866H215.478V20.8672H209.397V14.7866Z",fill:"#00C6BF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M203.316 14.7866H209.397V20.8672H203.316V14.7866Z",fill:"#00C6BF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M227.64 8.70587H233.72V14.7865H227.64V8.70587Z",fill:"#00D4BF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M221.559 8.70587H227.64V14.7865H221.559V8.70587ZM215.478 8.70587H221.559V14.7865H215.478V8.70587Z",fill:"#00D4BF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M209.397 8.70587H215.478V14.7865H209.397V8.70587Z",fill:"#00D4BF"}),(0,C.createElement)("path",{d:"M213.246 31.1112L214.941 27.319C215.558 26.3468 215.476 25.1556 214.8 24.4799C214.71 24.3899 214.611 24.31 214.503 24.2419C214.271 24.0996 214.011 24.0096 213.741 23.9781C213.471 23.9466 213.197 23.9743 212.939 24.0593C212.352 24.2418 211.851 24.6296 211.527 25.1516C211.527 25.1516 209.207 30.5636 208.344 32.9962C207.48 35.4289 207.825 39.8898 211.153 43.2251C214.683 46.7551 219.795 47.562 223.055 45.1152C223.191 45.0467 223.319 44.9631 223.437 44.8661L233.482 36.4778C233.97 36.0744 234.692 35.2433 234.044 34.2953C233.412 33.3704 232.213 33.9998 231.724 34.3124L225.943 38.5161C225.916 38.5385 225.885 38.5552 225.851 38.5651C225.817 38.5751 225.782 38.5781 225.747 38.5741C225.712 38.57 225.679 38.5589 225.648 38.5415C225.618 38.5241 225.591 38.5007 225.57 38.4728C225.423 38.2922 225.396 37.8142 225.627 37.6246L234.49 30.1037C235.255 29.4138 235.362 28.4113 234.742 27.7245C234.137 27.0517 233.176 27.0719 232.403 27.7678L224.424 34.0058C224.387 34.0363 224.344 34.0588 224.297 34.072C224.251 34.0851 224.202 34.0887 224.155 34.0825C224.107 34.0763 224.061 34.0604 224.019 34.0357C223.978 34.0111 223.942 33.9783 223.914 33.9393C223.757 33.7628 223.696 33.4612 223.874 33.2847L232.91 24.5152C233.253 24.1959 233.454 23.7538 233.471 23.286C233.487 22.8181 233.318 22.3628 232.999 22.02C232.841 21.8535 232.651 21.721 232.44 21.6307C232.228 21.5403 232.001 21.494 231.772 21.4945C231.299 21.4894 230.843 21.6706 230.503 21.9988L221.269 30.6725C221.049 30.8934 220.616 30.6725 220.563 30.4143C220.554 30.3681 220.556 30.3203 220.57 30.2752C220.584 30.23 220.608 30.1891 220.642 30.1561L227.71 22.1088C227.881 21.9494 228.018 21.7574 228.113 21.544C228.208 21.3306 228.259 21.1003 228.264 20.8667C228.268 20.6332 228.225 20.4011 228.138 20.1845C228.051 19.9678 227.921 19.7708 227.756 19.6054C227.591 19.4399 227.394 19.3093 227.178 19.2214C226.962 19.1334 226.73 19.0899 226.496 19.0934C226.262 19.0969 226.032 19.1473 225.818 19.2417C225.605 19.3361 225.412 19.4725 225.252 19.6428L214.534 31.4925C214.15 31.8767 213.584 31.8959 213.315 31.673C213.232 31.6071 213.178 31.5113 213.166 31.4062C213.153 31.3011 213.182 31.1951 213.246 31.1112Z",fill:"white"}),(0,C.createElement)("path",{d:"M187.682 83.4008H185.671V82.5891H187.682C188.072 82.5891 188.387 82.5271 188.628 82.403C188.869 82.2789 189.045 82.1066 189.156 81.886C189.269 81.6654 189.326 81.4138 189.326 81.1312C189.326 80.8727 189.269 80.6297 189.156 80.4022C189.045 80.1747 188.869 79.992 188.628 79.8542C188.387 79.7129 188.072 79.6422 187.682 79.6422H185.904V86.3529H184.906V78.8253H187.682C188.251 78.8253 188.732 78.9236 189.125 79.12C189.517 79.3165 189.816 79.5888 190.019 79.9369C190.222 80.2816 190.324 80.6762 190.324 81.1208C190.324 81.6034 190.222 82.0152 190.019 82.3565C189.816 82.6977 189.517 82.9579 189.125 83.1371C188.732 83.3129 188.251 83.4008 187.682 83.4008ZM192.397 81.6378V86.3529H191.441V80.7589H192.371L192.397 81.6378ZM194.145 80.7279L194.139 81.6172C194.06 81.5999 193.984 81.5896 193.912 81.5861C193.843 81.5792 193.764 81.5758 193.674 81.5758C193.454 81.5758 193.259 81.6103 193.09 81.6792C192.921 81.7481 192.778 81.8446 192.661 81.9687C192.544 82.0928 192.451 82.241 192.382 82.4133C192.316 82.5822 192.273 82.7683 192.252 82.9717L191.984 83.1268C191.984 82.789 192.016 82.4719 192.082 82.1755C192.151 81.8791 192.256 81.6172 192.397 81.3897C192.538 81.1587 192.718 80.9795 192.935 80.852C193.155 80.721 193.417 80.6555 193.721 80.6555C193.79 80.6555 193.869 80.6641 193.959 80.6814C194.048 80.6952 194.11 80.7107 194.145 80.7279ZM196.068 80.7589V86.3529H195.106V80.7589H196.068ZM195.034 79.2751C195.034 79.12 195.08 78.989 195.173 78.8822C195.27 78.7754 195.411 78.7219 195.597 78.7219C195.78 78.7219 195.92 78.7754 196.016 78.8822C196.116 78.989 196.166 79.12 196.166 79.2751C196.166 79.4233 196.116 79.5509 196.016 79.6577C195.92 79.7611 195.78 79.8128 195.597 79.8128C195.411 79.8128 195.27 79.7611 195.173 79.6577C195.08 79.5509 195.034 79.4233 195.034 79.2751ZM199.304 85.4895L200.835 80.7589H201.812L199.801 86.3529H199.16L199.304 85.4895ZM198.027 80.7589L199.604 85.5154L199.713 86.3529H199.072L197.045 80.7589H198.027ZM205.948 85.3964V82.5167C205.948 82.2961 205.903 82.1049 205.813 81.9429C205.727 81.7774 205.596 81.6499 205.42 81.5603C205.245 81.4707 205.028 81.4259 204.769 81.4259C204.528 81.4259 204.316 81.4672 204.133 81.5499C203.954 81.6327 203.813 81.7412 203.709 81.8757C203.609 82.0101 203.559 82.1548 203.559 82.3099H202.603C202.603 82.11 202.655 81.9118 202.758 81.7154C202.861 81.5189 203.01 81.3414 203.203 81.1829C203.399 81.0209 203.633 80.8933 203.906 80.8003C204.181 80.7038 204.488 80.6555 204.826 80.6555C205.233 80.6555 205.591 80.7245 205.901 80.8623C206.215 81.0002 206.46 81.2087 206.635 81.4879C206.815 81.7636 206.904 82.11 206.904 82.5271V85.1328C206.904 85.3189 206.92 85.5171 206.951 85.7273C206.985 85.9376 207.035 86.1185 207.101 86.2702V86.3529H206.103C206.055 86.2426 206.017 86.0961 205.989 85.9135C205.962 85.7273 205.948 85.555 205.948 85.3964ZM206.113 82.9614L206.124 83.6335H205.157C204.885 83.6335 204.642 83.6559 204.428 83.7007C204.214 83.742 204.035 83.8058 203.89 83.892C203.745 83.9781 203.635 84.0867 203.559 84.2177C203.483 84.3452 203.446 84.4951 203.446 84.6675C203.446 84.8433 203.485 85.0035 203.564 85.1483C203.644 85.293 203.763 85.4085 203.921 85.4947C204.083 85.5774 204.281 85.6188 204.516 85.6188C204.809 85.6188 205.067 85.5567 205.291 85.4326C205.515 85.3086 205.693 85.1569 205.824 84.9777C205.958 84.7984 206.031 84.6244 206.041 84.4555L206.449 84.9156C206.425 85.0604 206.36 85.2207 206.253 85.3964C206.146 85.5722 206.003 85.7411 205.824 85.9031C205.648 86.0617 205.438 86.1944 205.193 86.3012C204.952 86.4046 204.679 86.4563 204.376 86.4563C203.997 86.4563 203.664 86.3822 203.378 86.234C203.096 86.0858 202.875 85.8876 202.717 85.6394C202.561 85.3878 202.484 85.1069 202.484 84.7967C202.484 84.4969 202.543 84.2332 202.66 84.0057C202.777 83.7748 202.946 83.5835 203.166 83.4318C203.387 83.2767 203.652 83.1595 203.963 83.0803C204.273 83.001 204.619 82.9614 205.002 82.9614H206.113ZM210.647 85.6705C210.875 85.6705 211.085 85.6239 211.278 85.5309C211.471 85.4378 211.63 85.3103 211.754 85.1483C211.878 84.9828 211.949 84.795 211.966 84.5848H212.876C212.858 84.9156 212.746 85.2241 212.54 85.5102C212.336 85.7928 212.069 86.022 211.738 86.1978C211.407 86.3701 211.044 86.4563 210.647 86.4563C210.227 86.4563 209.86 86.3822 209.546 86.234C209.236 86.0858 208.977 85.8824 208.771 85.6239C208.567 85.3654 208.414 85.069 208.311 84.7347C208.211 84.3969 208.161 84.0402 208.161 83.6645V83.4473C208.161 83.0717 208.211 82.7166 208.311 82.3823C208.414 82.0445 208.567 81.7464 208.771 81.4879C208.977 81.2294 209.236 81.026 209.546 80.8778C209.86 80.7296 210.227 80.6555 210.647 80.6555C211.085 80.6555 211.468 80.7451 211.795 80.9244C212.123 81.1001 212.379 81.3414 212.565 81.6482C212.755 81.9515 212.858 82.2961 212.876 82.6822H211.966C211.949 82.4513 211.883 82.2427 211.769 82.0566C211.659 81.8705 211.507 81.7223 211.314 81.612C211.125 81.4982 210.902 81.4414 210.647 81.4414C210.354 81.4414 210.108 81.5 209.908 81.6172C209.712 81.7309 209.555 81.886 209.438 82.0825C209.324 82.2755 209.241 82.4909 209.189 82.7287C209.141 82.9631 209.117 83.2026 209.117 83.4473V83.6645C209.117 83.9092 209.141 84.1505 209.189 84.3883C209.238 84.6261 209.319 84.8415 209.432 85.0345C209.55 85.2276 209.706 85.3827 209.903 85.4998C210.103 85.6136 210.351 85.6705 210.647 85.6705ZM215.523 85.7739L217.079 80.7589H218.103L215.859 87.2163C215.807 87.3542 215.738 87.5024 215.652 87.6609C215.569 87.8229 215.462 87.9763 215.331 88.1211C215.2 88.2658 215.042 88.383 214.856 88.4726C214.673 88.5657 214.454 88.6122 214.199 88.6122C214.123 88.6122 214.027 88.6019 213.91 88.5812C213.793 88.5605 213.71 88.5433 213.662 88.5295L213.656 87.754C213.684 87.7574 213.727 87.7609 213.786 87.7643C213.848 87.7712 213.891 87.7747 213.915 87.7747C214.132 87.7747 214.316 87.7454 214.468 87.6868C214.62 87.6316 214.747 87.5368 214.851 87.4024C214.957 87.2714 215.049 87.0905 215.125 86.8596L215.523 85.7739ZM214.38 80.7589L215.833 85.1018L216.081 86.1099L215.393 86.4615L213.336 80.7589H214.38ZM223.583 82.7597V83.5456H221.06V82.7597H223.583ZM229.864 78.8253V86.3529H228.882V78.8253H229.864ZM232.284 78.8253V79.6422H226.468V78.8253H232.284ZM235.06 86.4563C234.671 86.4563 234.318 86.3908 234 86.2598C233.687 86.1254 233.416 85.9376 233.189 85.6963C232.965 85.455 232.792 85.169 232.672 84.8381C232.551 84.5072 232.491 84.1453 232.491 83.7524V83.5352C232.491 83.0803 232.558 82.6753 232.692 82.3203C232.827 81.9618 233.01 81.6585 233.24 81.4104C233.471 81.1622 233.733 80.9743 234.026 80.8468C234.319 80.7193 234.623 80.6555 234.936 80.6555C235.336 80.6555 235.681 80.7245 235.97 80.8623C236.263 81.0002 236.503 81.1932 236.689 81.4414C236.875 81.6861 237.013 81.9756 237.102 82.3099C237.192 82.6408 237.237 83.0027 237.237 83.3956V83.8248H233.06V83.0441H236.28V82.9717C236.267 82.7235 236.215 82.4823 236.125 82.2479C236.039 82.0135 235.901 81.8205 235.712 81.6689C235.522 81.5172 235.264 81.4414 234.936 81.4414C234.719 81.4414 234.519 81.4879 234.337 81.581C234.154 81.6706 233.997 81.805 233.866 81.9842C233.735 82.1635 233.633 82.3823 233.561 82.6408C233.489 82.8993 233.452 83.1975 233.452 83.5352V83.7524C233.452 84.0178 233.489 84.2677 233.561 84.502C233.637 84.733 233.745 84.9363 233.887 85.1121C234.031 85.2879 234.206 85.4257 234.409 85.5257C234.616 85.6257 234.85 85.6756 235.112 85.6756C235.45 85.6756 235.736 85.6067 235.97 85.4688C236.205 85.331 236.41 85.1466 236.585 84.9156L237.165 85.3758C237.044 85.5584 236.891 85.7325 236.704 85.8979C236.518 86.0634 236.289 86.1978 236.017 86.3012C235.748 86.4046 235.429 86.4563 235.06 86.4563ZM239.31 81.6378V86.3529H238.354V80.7589H239.284L239.31 81.6378ZM241.058 80.7279L241.052 81.6172C240.973 81.5999 240.897 81.5896 240.825 81.5861C240.756 81.5792 240.677 81.5758 240.587 81.5758C240.366 81.5758 240.172 81.6103 240.003 81.6792C239.834 81.7481 239.691 81.8446 239.574 81.9687C239.457 82.0928 239.364 82.241 239.295 82.4133C239.229 82.5822 239.186 82.7683 239.165 82.9717L238.896 83.1268C238.896 82.789 238.929 82.4719 238.995 82.1755C239.064 81.8791 239.169 81.6172 239.31 81.3897C239.451 81.1587 239.631 80.9795 239.848 80.852C240.068 80.721 240.33 80.6555 240.634 80.6555C240.703 80.6555 240.782 80.6641 240.871 80.6814C240.961 80.6952 241.023 80.7107 241.058 80.7279ZM242.893 81.8705V86.3529H241.931V80.7589H242.841L242.893 81.8705ZM242.696 83.3439L242.252 83.3284C242.255 82.9459 242.305 82.5926 242.402 82.2686C242.498 81.9411 242.641 81.6568 242.831 81.4155C243.02 81.1743 243.257 80.9881 243.539 80.8572C243.822 80.7227 244.149 80.6555 244.521 80.6555C244.783 80.6555 245.025 80.6934 245.245 80.7693C245.466 80.8416 245.657 80.9571 245.819 81.1157C245.981 81.2742 246.107 81.4776 246.197 81.7257C246.286 81.9739 246.331 82.2737 246.331 82.6253V86.3529H245.375V82.6718C245.375 82.3789 245.325 82.1445 245.225 81.9687C245.128 81.7929 244.99 81.6654 244.811 81.5861C244.632 81.5034 244.422 81.4621 244.18 81.4621C243.898 81.4621 243.662 81.512 243.472 81.612C243.282 81.7119 243.131 81.8498 243.017 82.0256C242.903 82.2014 242.821 82.403 242.769 82.6305C242.721 82.8545 242.696 83.0923 242.696 83.3439ZM246.321 82.8166L245.68 83.0131C245.683 82.7063 245.733 82.4116 245.83 82.129C245.929 81.8464 246.072 81.5947 246.259 81.3742C246.448 81.1536 246.681 80.9795 246.957 80.852C247.232 80.721 247.548 80.6555 247.903 80.6555C248.203 80.6555 248.468 80.6952 248.699 80.7744C248.933 80.8537 249.13 80.9761 249.288 81.1415C249.45 81.3035 249.573 81.512 249.655 81.7671C249.738 82.0221 249.779 82.3254 249.779 82.677V86.3529H248.818V82.6667C248.818 82.353 248.768 82.11 248.668 81.9377C248.571 81.7619 248.433 81.6396 248.254 81.5706C248.078 81.4982 247.868 81.4621 247.624 81.4621C247.413 81.4621 247.227 81.4982 247.065 81.5706C246.903 81.643 246.767 81.743 246.657 81.8705C246.546 81.9946 246.462 82.1376 246.403 82.2996C246.348 82.4616 246.321 82.6339 246.321 82.8166ZM254.484 84.8691C254.484 84.7312 254.453 84.6037 254.391 84.4865C254.332 84.3659 254.21 84.2573 254.024 84.1608C253.841 84.0609 253.566 83.9747 253.197 83.9023C252.887 83.8368 252.606 83.7593 252.354 83.6697C252.106 83.58 251.894 83.4715 251.718 83.3439C251.546 83.2164 251.413 83.0665 251.32 82.8942C251.227 82.7218 251.18 82.5202 251.18 82.2893C251.18 82.0687 251.229 81.8601 251.325 81.6637C251.425 81.4672 251.565 81.2932 251.744 81.1415C251.927 80.9899 252.146 80.8709 252.401 80.7848C252.656 80.6986 252.94 80.6555 253.254 80.6555C253.702 80.6555 254.084 80.7348 254.401 80.8933C254.719 81.0519 254.962 81.2639 255.13 81.5293C255.299 81.7912 255.384 82.0825 255.384 82.403H254.427C254.427 82.2479 254.381 82.098 254.288 81.9532C254.198 81.805 254.065 81.6826 253.89 81.5861C253.717 81.4896 253.505 81.4414 253.254 81.4414C252.988 81.4414 252.773 81.4827 252.607 81.5655C252.445 81.6447 252.327 81.7464 252.251 81.8705C252.178 81.9946 252.142 82.1255 252.142 82.2634C252.142 82.3668 252.159 82.4599 252.194 82.5426C252.232 82.6219 252.297 82.696 252.39 82.7649C252.483 82.8304 252.614 82.8924 252.783 82.951C252.952 83.0096 253.168 83.0682 253.429 83.1268C253.888 83.2302 254.265 83.3543 254.562 83.499C254.858 83.6438 255.079 83.8213 255.223 84.0316C255.368 84.2418 255.441 84.4969 255.441 84.7967C255.441 85.0414 255.389 85.2655 255.286 85.4688C255.186 85.6722 255.039 85.848 254.846 85.9962C254.656 86.1409 254.429 86.2547 254.164 86.3374C253.902 86.4167 253.607 86.4563 253.28 86.4563C252.787 86.4563 252.37 86.3684 252.028 86.1926C251.687 86.0169 251.429 85.7894 251.253 85.5102C251.077 85.231 250.989 84.9363 250.989 84.6261H251.951C251.965 84.8881 252.04 85.0966 252.178 85.2517C252.316 85.4033 252.485 85.5119 252.685 85.5774C252.885 85.6394 253.083 85.6705 253.28 85.6705C253.541 85.6705 253.76 85.636 253.936 85.5671C254.115 85.4981 254.251 85.4033 254.345 85.2827C254.438 85.1621 254.484 85.0242 254.484 84.8691Z",fill:"#334155"})),o=window.wp.blockEditor,p=function({isSelected:e,attributes:t}){const l=(0,o.useBlockProps)();return t.isPreview?(0,C.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},r):(0,C.createElement)(C.Fragment,null,(0,C.createElement)("div",{...l},e?(0,C.createElement)("div",null,(0,C.createElement)(n,null)):r),(0,C.createElement)(o.InspectorControls,null,(0,C.createElement)("div",{style:{padding:"20px"}},(0,C.createElement)(n,null))))},{CaptchaOptions:h,CaptchaBlockEdit:M,CaptchaBlockTip:Z}=JetFBComponents,{__:L}=wp.i18n,d={name:"hcaptcha",title:L("hCaptcha","jet-form-builder"),isActive:(C,e)=>C.provider===e.provider,description:L("Set the hCaptcha settings in the Captcha Container block to add anti-bot protection to your website.","jet-form-builder"),icon:(0,C.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("path",{d:"M19.9221 45.8709C20.2757 45.4466 20.2184 44.8161 19.7941 44.4625C19.3698 44.109 18.7393 44.1663 18.3857 44.5906L13.8944 49.9801L11.8995 47.9852C11.509 47.5946 10.8758 47.5946 10.4853 47.9852C10.0948 48.3757 10.0948 49.0089 10.4853 49.3994L12.8674 51.7815C13.4911 52.4052 14.5157 52.3587 15.0803 51.6811L19.9221 45.8709Z",fill:"currentColor"}),(0,C.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.75082 41.8091C5.86912 42.3111 6.0049 42.8167 6.15876 43.3232C5.419 44.7188 5 46.3104 5 48C5 53.5228 9.47715 58 15 58C16.3705 58 17.6766 57.7243 18.8659 57.2253C20.343 57.8385 21.8845 58.3034 23.4475 58.5872C27.9656 59.4075 32.8248 58.7321 36.7478 55.5251C40.1174 52.7705 44.7384 48.9438 48.5137 45.8085C50.4021 44.2403 52.0801 42.8441 53.286 41.8398C53.889 41.3377 54.374 40.9336 54.7083 40.6549L55.2201 40.2282C55.7727 39.7743 56.6058 38.9695 57.0825 37.8598C57.6174 36.6147 57.6538 35.0665 56.6243 33.5738C55.6927 32.2225 54.3871 31.822 53.246 31.8299L57.1077 28.58L57.1298 28.5602C59.2051 26.7055 59.7648 23.6115 57.7406 21.3871C56.7994 20.3503 55.5275 19.8112 54.1884 19.8367C53.5221 19.8494 52.8744 19.9999 52.2665 20.2625L54.2685 18.3359C56.3567 16.3875 56.4743 13.0553 54.5164 10.9668L54.5092 10.9591L54.5019 10.9515C52.4721 8.83174 49.107 8.92935 47.0976 10.8406L46.0814 11.7872C46.6606 9.98841 46.2417 7.91958 44.8308 6.51575C42.7924 4.48768 39.3658 4.5148 37.3663 6.62676L37.3536 6.64026L20.7998 24.7897L21.635 22.9358C22.3738 21.7158 22.7265 20.2198 22.5819 18.7808C22.4288 17.2581 21.6935 15.676 20.1254 14.691L20.1133 14.6834L20.1012 14.676C16.9682 12.7696 13.3972 14.5828 11.8958 16.9817C11.2205 18.0608 10.0838 20.7224 8.98585 23.4535C7.85213 26.2736 6.66003 29.4254 5.8577 31.6674C4.89326 34.3624 4.88235 38.1241 5.75082 41.8091ZM35.482 53.9766C42.2083 48.478 53.9452 38.6872 53.9452 38.6872C54.8424 37.9519 56.1697 36.4371 54.9778 34.7091C53.8155 33.0233 51.6132 34.1704 50.7142 34.7403L40.0885 42.4025C39.7234 42.7018 39.3467 42.3584 39.2475 42C39.1923 41.8002 39.1772 41.5605 39.2158 41.338C39.2224 41.3001 39.2305 41.2628 39.2403 41.2262C39.2881 41.0467 39.3748 40.8861 39.5083 40.7774L55.7971 27.0689C57.2041 25.8115 57.4006 23.9842 56.2606 22.7323C55.1483 21.5061 53.3817 21.5429 51.9617 22.8114L37.2968 34.1814C37.0114 34.4122 36.5756 34.3567 36.3588 34.0601C36.0781 33.7478 35.965 33.2207 36.2571 32.8958C36.2617 32.8908 36.2663 32.8858 36.271 32.8809L36.2807 32.8709L36.2846 32.867L52.8942 16.8827C54.1845 15.6889 54.26 13.6176 53.0573 12.3347C51.8386 11.062 49.7339 11.0862 48.4693 12.2961L31.4983 28.1058C31.4838 28.1202 31.4688 28.1335 31.4533 28.1459C31.423 28.1701 31.3911 28.1905 31.3578 28.2073C31.0944 28.3404 30.747 28.2509 30.5 28.0637C30.2204 27.8517 30.0554 27.446 30.3453 27.1645L43.3363 12.4965C44.6387 11.2918 44.6644 9.17148 43.4201 7.93354C42.1731 6.6928 40.0401 6.71164 38.8187 8.00175L19.119 29.6003C18.5763 30.1385 17.8366 30.2838 17.2985 30.1379C16.7763 29.9963 16.5 29.5 16.7518 28.9054L19.8661 21.9933C20.9821 20.25 20.9537 17.5731 19.0615 16.3845C17.1534 15.2235 14.7098 16.2553 13.5912 18.0427C12.4725 19.8301 9.32755 27.9072 7.74075 32.3413C6.95854 34.527 6.88674 37.808 7.66363 41.2045C9.4901 39.2336 12.101 38 15 38C20.5228 38 25 42.4771 25 48C25 51.2268 23.4716 54.0967 21.0992 55.9252C25.9727 57.541 31.3694 57.3386 35.482 53.9766ZM15 40C10.5817 40 7 43.5817 7 48C7 52.4182 10.5817 56 15 56C19.4183 56 23 52.4182 23 48C23 43.5817 19.4183 40 15 40Z",fill:"currentColor"})),scope:["block","inserter"],attributes:{provider:"hcaptcha"}},{registerPlugin:m}=wp.plugins,{registerBlockVariation:s}=wp.blocks;s("jet-forms/captcha-container",d),m("jf-hcaptcha",{render:function(){return(0,C.createElement)(C.Fragment,null,(0,C.createElement)(h,{provider:"hcaptcha"},e=>(0,C.createElement)(C.Fragment,null,(0,C.createElement)(n,{...e}),(0,C.createElement)(Z,null))),(0,C.createElement)(M,{provider:"hcaptcha"},e=>(0,C.createElement)(p,{...e})))}})})(); \ No newline at end of file +(()=>{"use strict";const C=window.React,e=window.wp.components,{__:t}=wp.i18n,{ToggleControl:l,BaseHelp:a}=JetFBComponents,{useCaptchaProvider:V}=JetFBHooks,{useEffect:H}=wp.element,{globalTab:i}=JetFBActions,c=i({slug:"captcha-tab",element:"hcaptcha",empty:{}}),n=function(){const[i,n]=V(),r=i.use_global?c:i;return H((()=>{n({key:r.key,secret:r.secret,threshold:r.threshold})}),[i.use_global]),(0,C.createElement)(C.Fragment,null,(0,C.createElement)(l,{checked:i.use_global,onChange:C=>n({use_global:C})},t("Use","jet-form-builder")+" ",(0,C.createElement)("a",{href:JetFormEditorData.global_settings_url+"#captcha-tab__hcaptcha"},t("Global Settings","jet-form-builder"))),(0,C.createElement)(e.TextControl,{label:t("Site Key:","jet-form-builder"),value:r.key,disabled:i.use_global,onChange:C=>n({key:C})}),(0,C.createElement)(a,null,t("You can find it on this page in the first column of Sitekey.","jet-form-builder")+" ",(0,C.createElement)(e.ExternalLink,{href:"https://dashboard.hcaptcha.com/sites"},t("Go to the dashboard of sites","jet-form-builder"))),(0,C.createElement)(e.TextControl,{label:t("Secret Key:","jet-form-builder"),value:r.secret,disabled:i.use_global,onChange:C=>n({secret:C})}),(0,C.createElement)(a,null,t("You can find it on the settings page, this will be the first field.","jet-form-builder")," ",(0,C.createElement)(e.ExternalLink,{href:"https://dashboard.hcaptcha.com/settings"},t("Go to the Settings page","jet-form-builder"))))},r=(0,C.createElement)("svg",{width:"268",height:"100",viewBox:"0 0 268 100",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("rect",{width:"268",height:"100",rx:"4",fill:"white"}),(0,C.createElement)("path",{d:"M27 56.95L20.05 50L17.6833 52.35L27 61.6666L47 41.6667L44.65 39.3167L27 56.95Z",fill:"#0DC167"}),(0,C.createElement)("path",{d:"M62.9375 43.625V55H61.4297V43.625H62.9375ZM74.4141 53.5547V49.2031C74.4141 48.8698 74.3464 48.5807 74.2109 48.3359C74.0807 48.0859 73.8828 47.8932 73.6172 47.7578C73.3516 47.6224 73.0234 47.5547 72.6328 47.5547C72.2682 47.5547 71.9479 47.6172 71.6719 47.7422C71.401 47.8672 71.1875 48.0312 71.0312 48.2344C70.8802 48.4375 70.8047 48.6562 70.8047 48.8906H69.3594C69.3594 48.5885 69.4375 48.2891 69.5938 47.9922C69.75 47.6953 69.974 47.4271 70.2656 47.1875C70.5625 46.9427 70.9167 46.75 71.3281 46.6094C71.7448 46.4635 72.2083 46.3906 72.7188 46.3906C73.3333 46.3906 73.875 46.4948 74.3438 46.7031C74.8177 46.9115 75.1875 47.2266 75.4531 47.6484C75.724 48.0651 75.8594 48.5885 75.8594 49.2188V53.1562C75.8594 53.4375 75.8828 53.737 75.9297 54.0547C75.9818 54.3724 76.0573 54.6458 76.1562 54.875V55H74.6484C74.5755 54.8333 74.5182 54.612 74.4766 54.3359C74.4349 54.0547 74.4141 53.7943 74.4141 53.5547ZM74.6641 49.875L74.6797 50.8906H73.2188C72.8073 50.8906 72.4401 50.9245 72.1172 50.9922C71.7943 51.0547 71.5234 51.151 71.3047 51.2812C71.0859 51.4115 70.9193 51.5755 70.8047 51.7734C70.6901 51.9661 70.6328 52.1927 70.6328 52.4531C70.6328 52.7188 70.6927 52.9609 70.8125 53.1797C70.9323 53.3984 71.112 53.5729 71.3516 53.7031C71.5964 53.8281 71.8958 53.8906 72.25 53.8906C72.6927 53.8906 73.0833 53.7969 73.4219 53.6094C73.7604 53.4219 74.0286 53.1927 74.2266 52.9219C74.4297 52.651 74.5391 52.388 74.5547 52.1328L75.1719 52.8281C75.1354 53.0469 75.0365 53.2891 74.875 53.5547C74.7135 53.8203 74.4974 54.0755 74.2266 54.3203C73.9609 54.5599 73.6432 54.7604 73.2734 54.9219C72.9089 55.0781 72.4974 55.1562 72.0391 55.1562C71.4661 55.1562 70.9635 55.0443 70.5312 54.8203C70.1042 54.5964 69.7708 54.2969 69.5312 53.9219C69.2969 53.5417 69.1797 53.1172 69.1797 52.6484C69.1797 52.1953 69.2682 51.7969 69.4453 51.4531C69.6224 51.1042 69.8776 50.8151 70.2109 50.5859C70.5443 50.3516 70.9453 50.1745 71.4141 50.0547C71.8828 49.9349 72.4062 49.875 72.9844 49.875H74.6641ZM79.5703 48.2266V55H78.1172V46.5469H79.4922L79.5703 48.2266ZM79.2734 50.4531L78.6016 50.4297C78.6068 49.8516 78.6823 49.3177 78.8281 48.8281C78.974 48.3333 79.1901 47.9036 79.4766 47.5391C79.763 47.1745 80.1198 46.8932 80.5469 46.6953C80.974 46.4922 81.4688 46.3906 82.0312 46.3906C82.4271 46.3906 82.7917 46.4479 83.125 46.5625C83.4583 46.6719 83.7474 46.8464 83.9922 47.0859C84.237 47.3255 84.4271 47.6328 84.5625 48.0078C84.6979 48.3828 84.7656 48.8359 84.7656 49.3672V55H83.3203V49.4375C83.3203 48.9948 83.2448 48.6406 83.0938 48.375C82.9479 48.1094 82.7396 47.9167 82.4688 47.7969C82.1979 47.6719 81.8802 47.6094 81.5156 47.6094C81.0885 47.6094 80.7318 47.6849 80.4453 47.8359C80.1589 47.987 79.9297 48.1953 79.7578 48.4609C79.5859 48.7266 79.4609 49.0312 79.3828 49.375C79.3099 49.7135 79.2734 50.0729 79.2734 50.4531ZM84.75 49.6562L83.7812 49.9531C83.7865 49.4896 83.862 49.0443 84.0078 48.6172C84.1589 48.1901 84.375 47.8099 84.6562 47.4766C84.9427 47.1432 85.2943 46.8802 85.7109 46.6875C86.1276 46.4896 86.6042 46.3906 87.1406 46.3906C87.5938 46.3906 87.9948 46.4505 88.3438 46.5703C88.6979 46.6901 88.9948 46.875 89.2344 47.125C89.4792 47.3698 89.6641 47.6849 89.7891 48.0703C89.9141 48.4557 89.9766 48.9141 89.9766 49.4453V55H88.5234V49.4297C88.5234 48.9557 88.4479 48.5885 88.2969 48.3281C88.151 48.0625 87.9427 47.8776 87.6719 47.7734C87.4062 47.6641 87.0885 47.6094 86.7188 47.6094C86.401 47.6094 86.1198 47.6641 85.875 47.7734C85.6302 47.8828 85.4245 48.0339 85.2578 48.2266C85.0911 48.4141 84.9635 48.6302 84.875 48.875C84.7917 49.1198 84.75 49.3802 84.75 49.6562ZM97.5781 43V55H96.1328V43H97.5781ZM97.2344 50.4531L96.6328 50.4297C96.638 49.8516 96.724 49.3177 96.8906 48.8281C97.0573 48.3333 97.2917 47.9036 97.5938 47.5391C97.8958 47.1745 98.2552 46.8932 98.6719 46.6953C99.0938 46.4922 99.5599 46.3906 100.07 46.3906C100.487 46.3906 100.862 46.4479 101.195 46.5625C101.529 46.6719 101.812 46.849 102.047 47.0938C102.286 47.3385 102.469 47.6562 102.594 48.0469C102.719 48.4323 102.781 48.9036 102.781 49.4609V55H101.328V49.4453C101.328 49.0026 101.263 48.6484 101.133 48.3828C101.003 48.112 100.812 47.9167 100.562 47.7969C100.312 47.6719 100.005 47.6094 99.6406 47.6094C99.2812 47.6094 98.9531 47.6849 98.6562 47.8359C98.3646 47.987 98.112 48.1953 97.8984 48.4609C97.6901 48.7266 97.526 49.0312 97.4062 49.375C97.2917 49.7135 97.2344 50.0729 97.2344 50.4531ZM110.117 53.0469V46.5469H111.57V55H110.188L110.117 53.0469ZM110.391 51.2656L110.992 51.25C110.992 51.8125 110.932 52.3333 110.812 52.8125C110.698 53.2865 110.51 53.6979 110.25 54.0469C109.99 54.3958 109.648 54.6693 109.227 54.8672C108.805 55.0599 108.292 55.1562 107.688 55.1562C107.276 55.1562 106.898 55.0964 106.555 54.9766C106.216 54.8568 105.924 54.6719 105.68 54.4219C105.435 54.1719 105.245 53.8464 105.109 53.4453C104.979 53.0443 104.914 52.5625 104.914 52V46.5469H106.359V52.0156C106.359 52.3958 106.401 52.7109 106.484 52.9609C106.573 53.2057 106.69 53.401 106.836 53.5469C106.987 53.6875 107.154 53.7865 107.336 53.8438C107.523 53.901 107.716 53.9297 107.914 53.9297C108.529 53.9297 109.016 53.8125 109.375 53.5781C109.734 53.3385 109.992 53.0182 110.148 52.6172C110.31 52.2109 110.391 51.7604 110.391 51.2656ZM115.211 48.2266V55H113.758V46.5469H115.133L115.211 48.2266ZM114.914 50.4531L114.242 50.4297C114.247 49.8516 114.323 49.3177 114.469 48.8281C114.615 48.3333 114.831 47.9036 115.117 47.5391C115.404 47.1745 115.76 46.8932 116.188 46.6953C116.615 46.4922 117.109 46.3906 117.672 46.3906C118.068 46.3906 118.432 46.4479 118.766 46.5625C119.099 46.6719 119.388 46.8464 119.633 47.0859C119.878 47.3255 120.068 47.6328 120.203 48.0078C120.339 48.3828 120.406 48.8359 120.406 49.3672V55H118.961V49.4375C118.961 48.9948 118.885 48.6406 118.734 48.375C118.589 48.1094 118.38 47.9167 118.109 47.7969C117.839 47.6719 117.521 47.6094 117.156 47.6094C116.729 47.6094 116.372 47.6849 116.086 47.8359C115.799 47.987 115.57 48.1953 115.398 48.4609C115.227 48.7266 115.102 49.0312 115.023 49.375C114.951 49.7135 114.914 50.0729 114.914 50.4531ZM120.391 49.6562L119.422 49.9531C119.427 49.4896 119.503 49.0443 119.648 48.6172C119.799 48.1901 120.016 47.8099 120.297 47.4766C120.583 47.1432 120.935 46.8802 121.352 46.6875C121.768 46.4896 122.245 46.3906 122.781 46.3906C123.234 46.3906 123.635 46.4505 123.984 46.5703C124.339 46.6901 124.635 46.875 124.875 47.125C125.12 47.3698 125.305 47.6849 125.43 48.0703C125.555 48.4557 125.617 48.9141 125.617 49.4453V55H124.164V49.4297C124.164 48.9557 124.089 48.5885 123.938 48.3281C123.792 48.0625 123.583 47.8776 123.312 47.7734C123.047 47.6641 122.729 47.6094 122.359 47.6094C122.042 47.6094 121.76 47.6641 121.516 47.7734C121.271 47.8828 121.065 48.0339 120.898 48.2266C120.732 48.4141 120.604 48.6302 120.516 48.875C120.432 49.1198 120.391 49.3802 120.391 49.6562ZM132.789 53.5547V49.2031C132.789 48.8698 132.721 48.5807 132.586 48.3359C132.456 48.0859 132.258 47.8932 131.992 47.7578C131.727 47.6224 131.398 47.5547 131.008 47.5547C130.643 47.5547 130.323 47.6172 130.047 47.7422C129.776 47.8672 129.562 48.0312 129.406 48.2344C129.255 48.4375 129.18 48.6562 129.18 48.8906H127.734C127.734 48.5885 127.812 48.2891 127.969 47.9922C128.125 47.6953 128.349 47.4271 128.641 47.1875C128.938 46.9427 129.292 46.75 129.703 46.6094C130.12 46.4635 130.583 46.3906 131.094 46.3906C131.708 46.3906 132.25 46.4948 132.719 46.7031C133.193 46.9115 133.562 47.2266 133.828 47.6484C134.099 48.0651 134.234 48.5885 134.234 49.2188V53.1562C134.234 53.4375 134.258 53.737 134.305 54.0547C134.357 54.3724 134.432 54.6458 134.531 54.875V55H133.023C132.951 54.8333 132.893 54.612 132.852 54.3359C132.81 54.0547 132.789 53.7943 132.789 53.5547ZM133.039 49.875L133.055 50.8906H131.594C131.182 50.8906 130.815 50.9245 130.492 50.9922C130.169 51.0547 129.898 51.151 129.68 51.2812C129.461 51.4115 129.294 51.5755 129.18 51.7734C129.065 51.9661 129.008 52.1927 129.008 52.4531C129.008 52.7188 129.068 52.9609 129.188 53.1797C129.307 53.3984 129.487 53.5729 129.727 53.7031C129.971 53.8281 130.271 53.8906 130.625 53.8906C131.068 53.8906 131.458 53.7969 131.797 53.6094C132.135 53.4219 132.404 53.1927 132.602 52.9219C132.805 52.651 132.914 52.388 132.93 52.1328L133.547 52.8281C133.51 53.0469 133.411 53.2891 133.25 53.5547C133.089 53.8203 132.872 54.0755 132.602 54.3203C132.336 54.5599 132.018 54.7604 131.648 54.9219C131.284 55.0781 130.872 55.1562 130.414 55.1562C129.841 55.1562 129.339 55.0443 128.906 54.8203C128.479 54.5964 128.146 54.2969 127.906 53.9219C127.672 53.5417 127.555 53.1172 127.555 52.6484C127.555 52.1953 127.643 51.7969 127.82 51.4531C127.997 51.1042 128.253 50.8151 128.586 50.5859C128.919 50.3516 129.32 50.1745 129.789 50.0547C130.258 49.9349 130.781 49.875 131.359 49.875H133.039ZM137.953 48.3516V55H136.508V46.5469H137.875L137.953 48.3516ZM137.609 50.4531L137.008 50.4297C137.013 49.8516 137.099 49.3177 137.266 48.8281C137.432 48.3333 137.667 47.9036 137.969 47.5391C138.271 47.1745 138.63 46.8932 139.047 46.6953C139.469 46.4922 139.935 46.3906 140.445 46.3906C140.862 46.3906 141.237 46.4479 141.57 46.5625C141.904 46.6719 142.188 46.849 142.422 47.0938C142.661 47.3385 142.844 47.6562 142.969 48.0469C143.094 48.4323 143.156 48.9036 143.156 49.4609V55H141.703V49.4453C141.703 49.0026 141.638 48.6484 141.508 48.3828C141.378 48.112 141.188 47.9167 140.938 47.7969C140.688 47.6719 140.38 47.6094 140.016 47.6094C139.656 47.6094 139.328 47.6849 139.031 47.8359C138.74 47.987 138.487 48.1953 138.273 48.4609C138.065 48.7266 137.901 49.0312 137.781 49.375C137.667 49.7135 137.609 50.0729 137.609 50.4531Z",fill:"#1E293B"}),(0,C.createElement)("path",{d:"M201.883 70.9274H199.984V67.6895C199.984 66.9395 199.89 66.2894 199.1 66.2894C198.31 66.2894 198.062 66.9895 198.062 67.901V70.9262H196.177V62.3015H198.062V64.3508C198.062 64.9758 198.05 65.6508 198.05 65.6508C198.345 65.1008 198.899 64.6508 199.76 64.6508C201.446 64.6508 201.883 65.7886 201.883 67.2887V70.9274ZM209.984 69.9023C209.571 70.3532 208.711 71.0774 207.048 71.0774C204.654 71.0774 202.779 69.4023 202.779 66.6267C202.779 63.8397 204.677 62.1765 207.047 62.1765C208.722 62.1765 209.63 62.9142 209.842 63.1515L209.254 64.827C209.101 64.6143 208.23 63.9253 207.155 63.9253C205.776 63.9253 204.714 64.9004 204.714 66.5894C204.714 68.2785 205.821 69.2396 207.155 69.2396C208.169 69.2396 208.9 68.8146 209.349 68.3268L209.984 69.9023ZM215.951 70.9274H214.148L214.111 70.2782C213.865 70.5409 213.392 71.0659 212.449 71.0659C211.424 71.0659 210.338 70.4782 210.338 69.1031C210.338 67.728 211.529 67.2653 212.602 67.2153L214.064 67.153V67.0157C214.064 66.3656 213.628 66.0279 212.873 66.0279C212.13 66.0279 211.387 66.3779 211.092 66.578L210.597 65.2779C211.092 65.0156 212.001 64.6528 213.085 64.6528C214.17 64.6528 214.795 64.9151 215.255 65.3656C215.703 65.8164 215.952 66.4157 215.952 67.4534L215.951 70.9274ZM214.076 68.2145L213.144 68.2768C212.567 68.3018 212.225 68.5637 212.225 69.0269C212.225 69.5019 212.59 69.7896 213.109 69.7896C213.616 69.7896 213.958 69.4396 214.076 69.2273V68.2145ZM220.868 71.0647C220.008 71.0647 219.393 70.727 219.029 70.152V73.1882H217.144V64.7643H218.936L218.924 65.5521H218.948C219.373 65.0143 219.998 64.6504 220.882 64.6504C222.557 64.6504 223.618 66.0382 223.618 67.8506C223.618 69.663 222.555 71.0647 220.868 71.0647ZM220.326 66.2283C219.524 66.2283 218.97 66.8784 218.97 67.8268C218.97 68.7752 219.524 69.4253 220.326 69.4253C221.14 69.4253 221.694 68.7752 221.694 67.8268C221.694 66.8784 221.14 66.2267 220.326 66.2267V66.2283ZM227.991 66.2894H226.706V68.5027C226.706 69.0277 226.776 69.1527 226.87 69.2654C226.952 69.3654 227.07 69.4154 227.318 69.4154C227.511 69.4109 227.703 69.3728 227.884 69.3027L227.978 70.8655C227.541 70.9951 227.089 71.0624 226.633 71.0655C225.961 71.0655 225.513 70.8528 225.218 70.4917C224.923 70.1306 224.805 69.6167 224.805 68.6789V66.2894H223.98V64.7766H224.805V63.1015H226.704V64.7766H227.989L227.991 66.2894ZM233.569 70.3274C233.51 70.3774 232.897 71.0651 231.352 71.0651C229.76 71.0651 228.286 69.915 228.286 67.8649C228.286 65.8021 229.784 64.652 231.376 64.652C232.861 64.652 233.533 65.3021 233.533 65.3021L233.121 66.8149C232.702 66.4598 232.172 66.2649 231.623 66.2648C230.821 66.2648 230.184 66.8526 230.184 67.8276C230.184 68.8027 230.762 69.4154 231.647 69.4154C232.531 69.4154 233.122 68.8154 233.122 68.8154L233.569 70.3274ZM240.067 70.9274H238.168V67.6895C238.168 66.9395 238.074 66.2894 237.284 66.2894C236.493 66.2894 236.246 66.9895 236.246 67.9022V70.9274H234.361V62.3015H236.246V64.3508C236.246 64.9758 236.234 65.6508 236.234 65.6508C236.529 65.1008 237.083 64.6508 237.944 64.6508C239.63 64.6508 240.067 65.7886 240.067 67.2887V70.9274ZM246.47 70.9274H244.667L244.631 70.2774C244.385 70.5401 243.912 71.0651 242.968 71.0651C241.944 71.0651 240.858 70.4774 240.858 69.1023C240.858 67.7272 242.049 67.2645 243.122 67.2145L244.584 67.1522V67.0149C244.584 66.3648 244.148 66.0271 243.393 66.0271C242.65 66.0271 241.907 66.3771 241.612 66.5771L241.116 65.2779C241.611 65.0156 242.519 64.6528 243.604 64.6528C244.689 64.6528 245.314 64.9151 245.774 65.3656C246.222 65.8164 246.471 66.4157 246.471 67.4534L246.47 70.9274ZM244.595 68.2145L243.663 68.2768C243.085 68.3018 242.743 68.5637 242.743 69.0269C242.743 69.5019 243.109 69.7896 243.628 69.7896C244.135 69.7896 244.477 69.4396 244.595 69.2273V68.2145Z",fill:"#4D4D4D"}),(0,C.createElement)("path",{opacity:"0.5",d:"M227.64 51.2725H233.72V57.3531H227.64V51.2725Z",fill:"#0074BF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M221.559 51.2725H227.64V57.3531H221.559V51.2725ZM215.478 51.2725H221.559V57.3531H215.478V51.2725Z",fill:"#0074BF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M209.397 51.2725H215.478V57.3531H209.397V51.2725Z",fill:"#0074BF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M233.721 45.1918H239.802V51.2725H233.721V45.1918Z",fill:"#0082BF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M227.64 45.1918H233.72V51.2725H227.64V45.1918Z",fill:"#0082BF"}),(0,C.createElement)("path",{d:"M221.559 45.1918H227.64V51.2725H221.559V45.1918ZM215.478 45.1918H221.559V51.2725H215.478V45.1918Z",fill:"#0082BF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M209.397 45.1918H215.478V51.2725H209.397V45.1918Z",fill:"#0082BF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M203.316 45.1919H209.397V51.2725H203.316V45.1919Z",fill:"#0082BF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M239.802 39.1102H245.883V45.1908H239.802V39.1102Z",fill:"#008FBF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M233.721 39.1102H239.802V45.1908H233.721V39.1102Z",fill:"#008FBF"}),(0,C.createElement)("path",{d:"M227.639 39.1102H233.72V45.1908H227.639V39.1102ZM221.559 39.1102H227.639V45.1908H221.559V39.1102ZM215.478 39.1102H221.559V45.1908H215.478V39.1102ZM209.397 39.1102H215.478V45.1908H209.397V39.1102Z",fill:"#008FBF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M203.316 39.1102H209.397V45.1908H203.316V39.1102Z",fill:"#008FBF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M197.235 39.1102H203.316V45.1908H197.235V39.1102Z",fill:"#008FBF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M239.802 33.0295H245.883V39.1101H239.802V33.0295Z",fill:"#009DBF"}),(0,C.createElement)("path",{d:"M233.721 33.0295H239.802V39.1101H233.721V33.0295ZM227.64 33.0295H233.72V39.1101H227.64V33.0295ZM221.559 33.0295H227.64V39.1101H221.559V33.0295ZM215.478 33.0295H221.559V39.1101H215.478V33.0295ZM209.398 33.0295H215.478V39.1101H209.398V33.0295ZM203.316 33.0295H209.397V39.1101H203.316V33.0295Z",fill:"#009DBF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M197.235 33.0295H203.316V39.1101H197.235V33.0295Z",fill:"#009DBF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M239.802 26.9489H245.883V33.0295H239.802V26.9489Z",fill:"#00ABBF"}),(0,C.createElement)("path",{d:"M233.721 26.9489H239.802V33.0295H233.721V26.9489ZM227.64 26.9489H233.72V33.0295H227.64V26.9489ZM221.559 26.9489H227.64V33.0295H221.559V26.9489ZM215.478 26.9489H221.559V33.0295H215.478V26.9489ZM209.398 26.9489H215.478V33.0295H209.398V26.9489ZM203.316 26.9489H209.397V33.0295H203.316V26.9489Z",fill:"#00ABBF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M197.235 26.9489H203.316V33.0295H197.235V26.9489Z",fill:"#00ABBF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M239.802 20.8682H245.883V26.9488H239.802V20.8682Z",fill:"#00B9BF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M233.721 20.8682H239.802V26.9488H233.721V20.8682Z",fill:"#00B9BF"}),(0,C.createElement)("path",{d:"M227.639 20.8682H233.72V26.9488H227.639V20.8682ZM221.559 20.8682H227.639V26.9488H221.559V20.8682ZM215.478 20.8682H221.559V26.9488H215.478V20.8682ZM209.397 20.8682H215.478V26.9488H209.397V20.8682Z",fill:"#00B9BF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M203.316 20.8682H209.397V26.9488H203.316V20.8682Z",fill:"#00B9BF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M197.235 20.8682H203.316V26.9488H197.235V20.8682Z",fill:"#00B9BF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M233.721 14.7866H239.802V20.8672H233.721V14.7866Z",fill:"#00C6BF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M227.64 14.7866H233.72V20.8672H227.64V14.7866Z",fill:"#00C6BF"}),(0,C.createElement)("path",{d:"M221.559 14.7866H227.64V20.8672H221.559V14.7866ZM215.478 14.7866H221.559V20.8672H215.478V14.7866Z",fill:"#00C6BF"}),(0,C.createElement)("path",{opacity:"0.8",d:"M209.397 14.7866H215.478V20.8672H209.397V14.7866Z",fill:"#00C6BF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M203.316 14.7866H209.397V20.8672H203.316V14.7866Z",fill:"#00C6BF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M227.64 8.70587H233.72V14.7865H227.64V8.70587Z",fill:"#00D4BF"}),(0,C.createElement)("path",{opacity:"0.7",d:"M221.559 8.70587H227.64V14.7865H221.559V8.70587ZM215.478 8.70587H221.559V14.7865H215.478V8.70587Z",fill:"#00D4BF"}),(0,C.createElement)("path",{opacity:"0.5",d:"M209.397 8.70587H215.478V14.7865H209.397V8.70587Z",fill:"#00D4BF"}),(0,C.createElement)("path",{d:"M213.246 31.1112L214.941 27.319C215.558 26.3468 215.476 25.1556 214.8 24.4799C214.71 24.3899 214.611 24.31 214.503 24.2419C214.271 24.0996 214.011 24.0096 213.741 23.9781C213.471 23.9466 213.197 23.9743 212.939 24.0593C212.352 24.2418 211.851 24.6296 211.527 25.1516C211.527 25.1516 209.207 30.5636 208.344 32.9962C207.48 35.4289 207.825 39.8898 211.153 43.2251C214.683 46.7551 219.795 47.562 223.055 45.1152C223.191 45.0467 223.319 44.9631 223.437 44.8661L233.482 36.4778C233.97 36.0744 234.692 35.2433 234.044 34.2953C233.412 33.3704 232.213 33.9998 231.724 34.3124L225.943 38.5161C225.916 38.5385 225.885 38.5552 225.851 38.5651C225.817 38.5751 225.782 38.5781 225.747 38.5741C225.712 38.57 225.679 38.5589 225.648 38.5415C225.618 38.5241 225.591 38.5007 225.57 38.4728C225.423 38.2922 225.396 37.8142 225.627 37.6246L234.49 30.1037C235.255 29.4138 235.362 28.4113 234.742 27.7245C234.137 27.0517 233.176 27.0719 232.403 27.7678L224.424 34.0058C224.387 34.0363 224.344 34.0588 224.297 34.072C224.251 34.0851 224.202 34.0887 224.155 34.0825C224.107 34.0763 224.061 34.0604 224.019 34.0357C223.978 34.0111 223.942 33.9783 223.914 33.9393C223.757 33.7628 223.696 33.4612 223.874 33.2847L232.91 24.5152C233.253 24.1959 233.454 23.7538 233.471 23.286C233.487 22.8181 233.318 22.3628 232.999 22.02C232.841 21.8535 232.651 21.721 232.44 21.6307C232.228 21.5403 232.001 21.494 231.772 21.4945C231.299 21.4894 230.843 21.6706 230.503 21.9988L221.269 30.6725C221.049 30.8934 220.616 30.6725 220.563 30.4143C220.554 30.3681 220.556 30.3203 220.57 30.2752C220.584 30.23 220.608 30.1891 220.642 30.1561L227.71 22.1088C227.881 21.9494 228.018 21.7574 228.113 21.544C228.208 21.3306 228.259 21.1003 228.264 20.8667C228.268 20.6332 228.225 20.4011 228.138 20.1845C228.051 19.9678 227.921 19.7708 227.756 19.6054C227.591 19.4399 227.394 19.3093 227.178 19.2214C226.962 19.1334 226.73 19.0899 226.496 19.0934C226.262 19.0969 226.032 19.1473 225.818 19.2417C225.605 19.3361 225.412 19.4725 225.252 19.6428L214.534 31.4925C214.15 31.8767 213.584 31.8959 213.315 31.673C213.232 31.6071 213.178 31.5113 213.166 31.4062C213.153 31.3011 213.182 31.1951 213.246 31.1112Z",fill:"white"}),(0,C.createElement)("path",{d:"M187.682 83.4008H185.671V82.5891H187.682C188.072 82.5891 188.387 82.5271 188.628 82.403C188.869 82.2789 189.045 82.1066 189.156 81.886C189.269 81.6654 189.326 81.4138 189.326 81.1312C189.326 80.8727 189.269 80.6297 189.156 80.4022C189.045 80.1747 188.869 79.992 188.628 79.8542C188.387 79.7129 188.072 79.6422 187.682 79.6422H185.904V86.3529H184.906V78.8253H187.682C188.251 78.8253 188.732 78.9236 189.125 79.12C189.517 79.3165 189.816 79.5888 190.019 79.9369C190.222 80.2816 190.324 80.6762 190.324 81.1208C190.324 81.6034 190.222 82.0152 190.019 82.3565C189.816 82.6977 189.517 82.9579 189.125 83.1371C188.732 83.3129 188.251 83.4008 187.682 83.4008ZM192.397 81.6378V86.3529H191.441V80.7589H192.371L192.397 81.6378ZM194.145 80.7279L194.139 81.6172C194.06 81.5999 193.984 81.5896 193.912 81.5861C193.843 81.5792 193.764 81.5758 193.674 81.5758C193.454 81.5758 193.259 81.6103 193.09 81.6792C192.921 81.7481 192.778 81.8446 192.661 81.9687C192.544 82.0928 192.451 82.241 192.382 82.4133C192.316 82.5822 192.273 82.7683 192.252 82.9717L191.984 83.1268C191.984 82.789 192.016 82.4719 192.082 82.1755C192.151 81.8791 192.256 81.6172 192.397 81.3897C192.538 81.1587 192.718 80.9795 192.935 80.852C193.155 80.721 193.417 80.6555 193.721 80.6555C193.79 80.6555 193.869 80.6641 193.959 80.6814C194.048 80.6952 194.11 80.7107 194.145 80.7279ZM196.068 80.7589V86.3529H195.106V80.7589H196.068ZM195.034 79.2751C195.034 79.12 195.08 78.989 195.173 78.8822C195.27 78.7754 195.411 78.7219 195.597 78.7219C195.78 78.7219 195.92 78.7754 196.016 78.8822C196.116 78.989 196.166 79.12 196.166 79.2751C196.166 79.4233 196.116 79.5509 196.016 79.6577C195.92 79.7611 195.78 79.8128 195.597 79.8128C195.411 79.8128 195.27 79.7611 195.173 79.6577C195.08 79.5509 195.034 79.4233 195.034 79.2751ZM199.304 85.4895L200.835 80.7589H201.812L199.801 86.3529H199.16L199.304 85.4895ZM198.027 80.7589L199.604 85.5154L199.713 86.3529H199.072L197.045 80.7589H198.027ZM205.948 85.3964V82.5167C205.948 82.2961 205.903 82.1049 205.813 81.9429C205.727 81.7774 205.596 81.6499 205.42 81.5603C205.245 81.4707 205.028 81.4259 204.769 81.4259C204.528 81.4259 204.316 81.4672 204.133 81.5499C203.954 81.6327 203.813 81.7412 203.709 81.8757C203.609 82.0101 203.559 82.1548 203.559 82.3099H202.603C202.603 82.11 202.655 81.9118 202.758 81.7154C202.861 81.5189 203.01 81.3414 203.203 81.1829C203.399 81.0209 203.633 80.8933 203.906 80.8003C204.181 80.7038 204.488 80.6555 204.826 80.6555C205.233 80.6555 205.591 80.7245 205.901 80.8623C206.215 81.0002 206.46 81.2087 206.635 81.4879C206.815 81.7636 206.904 82.11 206.904 82.5271V85.1328C206.904 85.3189 206.92 85.5171 206.951 85.7273C206.985 85.9376 207.035 86.1185 207.101 86.2702V86.3529H206.103C206.055 86.2426 206.017 86.0961 205.989 85.9135C205.962 85.7273 205.948 85.555 205.948 85.3964ZM206.113 82.9614L206.124 83.6335H205.157C204.885 83.6335 204.642 83.6559 204.428 83.7007C204.214 83.742 204.035 83.8058 203.89 83.892C203.745 83.9781 203.635 84.0867 203.559 84.2177C203.483 84.3452 203.446 84.4951 203.446 84.6675C203.446 84.8433 203.485 85.0035 203.564 85.1483C203.644 85.293 203.763 85.4085 203.921 85.4947C204.083 85.5774 204.281 85.6188 204.516 85.6188C204.809 85.6188 205.067 85.5567 205.291 85.4326C205.515 85.3086 205.693 85.1569 205.824 84.9777C205.958 84.7984 206.031 84.6244 206.041 84.4555L206.449 84.9156C206.425 85.0604 206.36 85.2207 206.253 85.3964C206.146 85.5722 206.003 85.7411 205.824 85.9031C205.648 86.0617 205.438 86.1944 205.193 86.3012C204.952 86.4046 204.679 86.4563 204.376 86.4563C203.997 86.4563 203.664 86.3822 203.378 86.234C203.096 86.0858 202.875 85.8876 202.717 85.6394C202.561 85.3878 202.484 85.1069 202.484 84.7967C202.484 84.4969 202.543 84.2332 202.66 84.0057C202.777 83.7748 202.946 83.5835 203.166 83.4318C203.387 83.2767 203.652 83.1595 203.963 83.0803C204.273 83.001 204.619 82.9614 205.002 82.9614H206.113ZM210.647 85.6705C210.875 85.6705 211.085 85.6239 211.278 85.5309C211.471 85.4378 211.63 85.3103 211.754 85.1483C211.878 84.9828 211.949 84.795 211.966 84.5848H212.876C212.858 84.9156 212.746 85.2241 212.54 85.5102C212.336 85.7928 212.069 86.022 211.738 86.1978C211.407 86.3701 211.044 86.4563 210.647 86.4563C210.227 86.4563 209.86 86.3822 209.546 86.234C209.236 86.0858 208.977 85.8824 208.771 85.6239C208.567 85.3654 208.414 85.069 208.311 84.7347C208.211 84.3969 208.161 84.0402 208.161 83.6645V83.4473C208.161 83.0717 208.211 82.7166 208.311 82.3823C208.414 82.0445 208.567 81.7464 208.771 81.4879C208.977 81.2294 209.236 81.026 209.546 80.8778C209.86 80.7296 210.227 80.6555 210.647 80.6555C211.085 80.6555 211.468 80.7451 211.795 80.9244C212.123 81.1001 212.379 81.3414 212.565 81.6482C212.755 81.9515 212.858 82.2961 212.876 82.6822H211.966C211.949 82.4513 211.883 82.2427 211.769 82.0566C211.659 81.8705 211.507 81.7223 211.314 81.612C211.125 81.4982 210.902 81.4414 210.647 81.4414C210.354 81.4414 210.108 81.5 209.908 81.6172C209.712 81.7309 209.555 81.886 209.438 82.0825C209.324 82.2755 209.241 82.4909 209.189 82.7287C209.141 82.9631 209.117 83.2026 209.117 83.4473V83.6645C209.117 83.9092 209.141 84.1505 209.189 84.3883C209.238 84.6261 209.319 84.8415 209.432 85.0345C209.55 85.2276 209.706 85.3827 209.903 85.4998C210.103 85.6136 210.351 85.6705 210.647 85.6705ZM215.523 85.7739L217.079 80.7589H218.103L215.859 87.2163C215.807 87.3542 215.738 87.5024 215.652 87.6609C215.569 87.8229 215.462 87.9763 215.331 88.1211C215.2 88.2658 215.042 88.383 214.856 88.4726C214.673 88.5657 214.454 88.6122 214.199 88.6122C214.123 88.6122 214.027 88.6019 213.91 88.5812C213.793 88.5605 213.71 88.5433 213.662 88.5295L213.656 87.754C213.684 87.7574 213.727 87.7609 213.786 87.7643C213.848 87.7712 213.891 87.7747 213.915 87.7747C214.132 87.7747 214.316 87.7454 214.468 87.6868C214.62 87.6316 214.747 87.5368 214.851 87.4024C214.957 87.2714 215.049 87.0905 215.125 86.8596L215.523 85.7739ZM214.38 80.7589L215.833 85.1018L216.081 86.1099L215.393 86.4615L213.336 80.7589H214.38ZM223.583 82.7597V83.5456H221.06V82.7597H223.583ZM229.864 78.8253V86.3529H228.882V78.8253H229.864ZM232.284 78.8253V79.6422H226.468V78.8253H232.284ZM235.06 86.4563C234.671 86.4563 234.318 86.3908 234 86.2598C233.687 86.1254 233.416 85.9376 233.189 85.6963C232.965 85.455 232.792 85.169 232.672 84.8381C232.551 84.5072 232.491 84.1453 232.491 83.7524V83.5352C232.491 83.0803 232.558 82.6753 232.692 82.3203C232.827 81.9618 233.01 81.6585 233.24 81.4104C233.471 81.1622 233.733 80.9743 234.026 80.8468C234.319 80.7193 234.623 80.6555 234.936 80.6555C235.336 80.6555 235.681 80.7245 235.97 80.8623C236.263 81.0002 236.503 81.1932 236.689 81.4414C236.875 81.6861 237.013 81.9756 237.102 82.3099C237.192 82.6408 237.237 83.0027 237.237 83.3956V83.8248H233.06V83.0441H236.28V82.9717C236.267 82.7235 236.215 82.4823 236.125 82.2479C236.039 82.0135 235.901 81.8205 235.712 81.6689C235.522 81.5172 235.264 81.4414 234.936 81.4414C234.719 81.4414 234.519 81.4879 234.337 81.581C234.154 81.6706 233.997 81.805 233.866 81.9842C233.735 82.1635 233.633 82.3823 233.561 82.6408C233.489 82.8993 233.452 83.1975 233.452 83.5352V83.7524C233.452 84.0178 233.489 84.2677 233.561 84.502C233.637 84.733 233.745 84.9363 233.887 85.1121C234.031 85.2879 234.206 85.4257 234.409 85.5257C234.616 85.6257 234.85 85.6756 235.112 85.6756C235.45 85.6756 235.736 85.6067 235.97 85.4688C236.205 85.331 236.41 85.1466 236.585 84.9156L237.165 85.3758C237.044 85.5584 236.891 85.7325 236.704 85.8979C236.518 86.0634 236.289 86.1978 236.017 86.3012C235.748 86.4046 235.429 86.4563 235.06 86.4563ZM239.31 81.6378V86.3529H238.354V80.7589H239.284L239.31 81.6378ZM241.058 80.7279L241.052 81.6172C240.973 81.5999 240.897 81.5896 240.825 81.5861C240.756 81.5792 240.677 81.5758 240.587 81.5758C240.366 81.5758 240.172 81.6103 240.003 81.6792C239.834 81.7481 239.691 81.8446 239.574 81.9687C239.457 82.0928 239.364 82.241 239.295 82.4133C239.229 82.5822 239.186 82.7683 239.165 82.9717L238.896 83.1268C238.896 82.789 238.929 82.4719 238.995 82.1755C239.064 81.8791 239.169 81.6172 239.31 81.3897C239.451 81.1587 239.631 80.9795 239.848 80.852C240.068 80.721 240.33 80.6555 240.634 80.6555C240.703 80.6555 240.782 80.6641 240.871 80.6814C240.961 80.6952 241.023 80.7107 241.058 80.7279ZM242.893 81.8705V86.3529H241.931V80.7589H242.841L242.893 81.8705ZM242.696 83.3439L242.252 83.3284C242.255 82.9459 242.305 82.5926 242.402 82.2686C242.498 81.9411 242.641 81.6568 242.831 81.4155C243.02 81.1743 243.257 80.9881 243.539 80.8572C243.822 80.7227 244.149 80.6555 244.521 80.6555C244.783 80.6555 245.025 80.6934 245.245 80.7693C245.466 80.8416 245.657 80.9571 245.819 81.1157C245.981 81.2742 246.107 81.4776 246.197 81.7257C246.286 81.9739 246.331 82.2737 246.331 82.6253V86.3529H245.375V82.6718C245.375 82.3789 245.325 82.1445 245.225 81.9687C245.128 81.7929 244.99 81.6654 244.811 81.5861C244.632 81.5034 244.422 81.4621 244.18 81.4621C243.898 81.4621 243.662 81.512 243.472 81.612C243.282 81.7119 243.131 81.8498 243.017 82.0256C242.903 82.2014 242.821 82.403 242.769 82.6305C242.721 82.8545 242.696 83.0923 242.696 83.3439ZM246.321 82.8166L245.68 83.0131C245.683 82.7063 245.733 82.4116 245.83 82.129C245.929 81.8464 246.072 81.5947 246.259 81.3742C246.448 81.1536 246.681 80.9795 246.957 80.852C247.232 80.721 247.548 80.6555 247.903 80.6555C248.203 80.6555 248.468 80.6952 248.699 80.7744C248.933 80.8537 249.13 80.9761 249.288 81.1415C249.45 81.3035 249.573 81.512 249.655 81.7671C249.738 82.0221 249.779 82.3254 249.779 82.677V86.3529H248.818V82.6667C248.818 82.353 248.768 82.11 248.668 81.9377C248.571 81.7619 248.433 81.6396 248.254 81.5706C248.078 81.4982 247.868 81.4621 247.624 81.4621C247.413 81.4621 247.227 81.4982 247.065 81.5706C246.903 81.643 246.767 81.743 246.657 81.8705C246.546 81.9946 246.462 82.1376 246.403 82.2996C246.348 82.4616 246.321 82.6339 246.321 82.8166ZM254.484 84.8691C254.484 84.7312 254.453 84.6037 254.391 84.4865C254.332 84.3659 254.21 84.2573 254.024 84.1608C253.841 84.0609 253.566 83.9747 253.197 83.9023C252.887 83.8368 252.606 83.7593 252.354 83.6697C252.106 83.58 251.894 83.4715 251.718 83.3439C251.546 83.2164 251.413 83.0665 251.32 82.8942C251.227 82.7218 251.18 82.5202 251.18 82.2893C251.18 82.0687 251.229 81.8601 251.325 81.6637C251.425 81.4672 251.565 81.2932 251.744 81.1415C251.927 80.9899 252.146 80.8709 252.401 80.7848C252.656 80.6986 252.94 80.6555 253.254 80.6555C253.702 80.6555 254.084 80.7348 254.401 80.8933C254.719 81.0519 254.962 81.2639 255.13 81.5293C255.299 81.7912 255.384 82.0825 255.384 82.403H254.427C254.427 82.2479 254.381 82.098 254.288 81.9532C254.198 81.805 254.065 81.6826 253.89 81.5861C253.717 81.4896 253.505 81.4414 253.254 81.4414C252.988 81.4414 252.773 81.4827 252.607 81.5655C252.445 81.6447 252.327 81.7464 252.251 81.8705C252.178 81.9946 252.142 82.1255 252.142 82.2634C252.142 82.3668 252.159 82.4599 252.194 82.5426C252.232 82.6219 252.297 82.696 252.39 82.7649C252.483 82.8304 252.614 82.8924 252.783 82.951C252.952 83.0096 253.168 83.0682 253.429 83.1268C253.888 83.2302 254.265 83.3543 254.562 83.499C254.858 83.6438 255.079 83.8213 255.223 84.0316C255.368 84.2418 255.441 84.4969 255.441 84.7967C255.441 85.0414 255.389 85.2655 255.286 85.4688C255.186 85.6722 255.039 85.848 254.846 85.9962C254.656 86.1409 254.429 86.2547 254.164 86.3374C253.902 86.4167 253.607 86.4563 253.28 86.4563C252.787 86.4563 252.37 86.3684 252.028 86.1926C251.687 86.0169 251.429 85.7894 251.253 85.5102C251.077 85.231 250.989 84.9363 250.989 84.6261H251.951C251.965 84.8881 252.04 85.0966 252.178 85.2517C252.316 85.4033 252.485 85.5119 252.685 85.5774C252.885 85.6394 253.083 85.6705 253.28 85.6705C253.541 85.6705 253.76 85.636 253.936 85.5671C254.115 85.4981 254.251 85.4033 254.345 85.2827C254.438 85.1621 254.484 85.0242 254.484 84.8691Z",fill:"#334155"})),o=window.wp.blockEditor,p=function({isSelected:e,attributes:t}){const l=(0,o.useBlockProps)();return t.isPreview?(0,C.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},r):(0,C.createElement)(C.Fragment,null,(0,C.createElement)("div",{...l},e?(0,C.createElement)("div",null,(0,C.createElement)(n,null)):r),(0,C.createElement)(o.InspectorControls,null,(0,C.createElement)("div",{style:{padding:"20px"}},(0,C.createElement)(n,null))))},{CaptchaOptions:h,CaptchaBlockEdit:M,CaptchaBlockTip:Z}=JetFBComponents,{__:L}=wp.i18n,d={name:"hcaptcha",title:L("hCaptcha","jet-form-builder"),isActive:(C,e)=>C.provider===e.provider,description:L("Set the hCaptcha settings in the Captcha Container block to add anti-bot protection to your website.","jet-form-builder"),icon:(0,C.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("path",{d:"M19.9221 45.8709C20.2757 45.4466 20.2184 44.8161 19.7941 44.4625C19.3698 44.109 18.7393 44.1663 18.3857 44.5906L13.8944 49.9801L11.8995 47.9852C11.509 47.5946 10.8758 47.5946 10.4853 47.9852C10.0948 48.3757 10.0948 49.0089 10.4853 49.3994L12.8674 51.7815C13.4911 52.4052 14.5157 52.3587 15.0803 51.6811L19.9221 45.8709Z",fill:"currentColor"}),(0,C.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.75082 41.8091C5.86912 42.3111 6.0049 42.8167 6.15876 43.3232C5.419 44.7188 5 46.3104 5 48C5 53.5228 9.47715 58 15 58C16.3705 58 17.6766 57.7243 18.8659 57.2253C20.343 57.8385 21.8845 58.3034 23.4475 58.5872C27.9656 59.4075 32.8248 58.7321 36.7478 55.5251C40.1174 52.7705 44.7384 48.9438 48.5137 45.8085C50.4021 44.2403 52.0801 42.8441 53.286 41.8398C53.889 41.3377 54.374 40.9336 54.7083 40.6549L55.2201 40.2282C55.7727 39.7743 56.6058 38.9695 57.0825 37.8598C57.6174 36.6147 57.6538 35.0665 56.6243 33.5738C55.6927 32.2225 54.3871 31.822 53.246 31.8299L57.1077 28.58L57.1298 28.5602C59.2051 26.7055 59.7648 23.6115 57.7406 21.3871C56.7994 20.3503 55.5275 19.8112 54.1884 19.8367C53.5221 19.8494 52.8744 19.9999 52.2665 20.2625L54.2685 18.3359C56.3567 16.3875 56.4743 13.0553 54.5164 10.9668L54.5092 10.9591L54.5019 10.9515C52.4721 8.83174 49.107 8.92935 47.0976 10.8406L46.0814 11.7872C46.6606 9.98841 46.2417 7.91958 44.8308 6.51575C42.7924 4.48768 39.3658 4.5148 37.3663 6.62676L37.3536 6.64026L20.7998 24.7897L21.635 22.9358C22.3738 21.7158 22.7265 20.2198 22.5819 18.7808C22.4288 17.2581 21.6935 15.676 20.1254 14.691L20.1133 14.6834L20.1012 14.676C16.9682 12.7696 13.3972 14.5828 11.8958 16.9817C11.2205 18.0608 10.0838 20.7224 8.98585 23.4535C7.85213 26.2736 6.66003 29.4254 5.8577 31.6674C4.89326 34.3624 4.88235 38.1241 5.75082 41.8091ZM35.482 53.9766C42.2083 48.478 53.9452 38.6872 53.9452 38.6872C54.8424 37.9519 56.1697 36.4371 54.9778 34.7091C53.8155 33.0233 51.6132 34.1704 50.7142 34.7403L40.0885 42.4025C39.7234 42.7018 39.3467 42.3584 39.2475 42C39.1923 41.8002 39.1772 41.5605 39.2158 41.338C39.2224 41.3001 39.2305 41.2628 39.2403 41.2262C39.2881 41.0467 39.3748 40.8861 39.5083 40.7774L55.7971 27.0689C57.2041 25.8115 57.4006 23.9842 56.2606 22.7323C55.1483 21.5061 53.3817 21.5429 51.9617 22.8114L37.2968 34.1814C37.0114 34.4122 36.5756 34.3567 36.3588 34.0601C36.0781 33.7478 35.965 33.2207 36.2571 32.8958C36.2617 32.8908 36.2663 32.8858 36.271 32.8809L36.2807 32.8709L36.2846 32.867L52.8942 16.8827C54.1845 15.6889 54.26 13.6176 53.0573 12.3347C51.8386 11.062 49.7339 11.0862 48.4693 12.2961L31.4983 28.1058C31.4838 28.1202 31.4688 28.1335 31.4533 28.1459C31.423 28.1701 31.3911 28.1905 31.3578 28.2073C31.0944 28.3404 30.747 28.2509 30.5 28.0637C30.2204 27.8517 30.0554 27.446 30.3453 27.1645L43.3363 12.4965C44.6387 11.2918 44.6644 9.17148 43.4201 7.93354C42.1731 6.6928 40.0401 6.71164 38.8187 8.00175L19.119 29.6003C18.5763 30.1385 17.8366 30.2838 17.2985 30.1379C16.7763 29.9963 16.5 29.5 16.7518 28.9054L19.8661 21.9933C20.9821 20.25 20.9537 17.5731 19.0615 16.3845C17.1534 15.2235 14.7098 16.2553 13.5912 18.0427C12.4725 19.8301 9.32755 27.9072 7.74075 32.3413C6.95854 34.527 6.88674 37.808 7.66363 41.2045C9.4901 39.2336 12.101 38 15 38C20.5228 38 25 42.4771 25 48C25 51.2268 23.4716 54.0967 21.0992 55.9252C25.9727 57.541 31.3694 57.3386 35.482 53.9766ZM15 40C10.5817 40 7 43.5817 7 48C7 52.4182 10.5817 56 15 56C19.4183 56 23 52.4182 23 48C23 43.5817 19.4183 40 15 40Z",fill:"currentColor"})),scope:["block","inserter"],attributes:{provider:"hcaptcha"}},{registerPlugin:m}=wp.plugins,{registerBlockVariation:s}=wp.blocks;s("jet-forms/captcha-container",d),m("jf-hcaptcha",{render:function(){return(0,C.createElement)(C.Fragment,null,(0,C.createElement)(h,{provider:"hcaptcha"},(e=>(0,C.createElement)(C.Fragment,null,(0,C.createElement)(n,{...e}),(0,C.createElement)(Z,null)))),(0,C.createElement)(M,{provider:"hcaptcha"},(e=>(0,C.createElement)(p,{...e}))))}})})(); \ No newline at end of file diff --git a/modules/captcha/assets/build/hcaptcha/frontend.asset.php b/modules/captcha/assets/build/hcaptcha/frontend.asset.php index c49fedffb..ff689a879 100644 --- a/modules/captcha/assets/build/hcaptcha/frontend.asset.php +++ b/modules/captcha/assets/build/hcaptcha/frontend.asset.php @@ -1 +1 @@ - array(), 'version' => '97053adb8b2840d17758'); + array(), 'version' => '508912be45b26e672b90'); diff --git a/modules/captcha/assets/build/hcaptcha/frontend.js b/modules/captcha/assets/build/hcaptcha/frontend.js index da7e5ec41..7d26718e3 100644 --- a/modules/captcha/assets/build/hcaptcha/frontend.js +++ b/modules/captcha/assets/build/hcaptcha/frontend.js @@ -1 +1 @@ -(()=>{"use strict";const{applyFilters:t}=JetPlugins.hooks,e=function(e){var n;if(e.parent)return;const o=e.getInput("_captcha_token"),a=e.getSubmit().getFormId(),r=o?.nodes?.[0]?.parentElement;let i=null!==(n=window?.JetFormBuilderCaptchaConfig?.[a])&&void 0!==n&&n;if(!r||!i)return;o.isVisible=()=>!0,i.callback=t=>{o.value.current=t},i=t("jet.fb.hCaptcha.options",i,e);const s=window.hcaptcha.render(r,i);e.getSubmit().submitter?.status?.watch?.(()=>{window.hcaptcha.reset(s),o.onClear()})};window.jfbHCaptchaOnLoad=function(){const{addAction:t}=JetPlugins.hooks;for(const t of Object.values(window.JetFormBuilder))t.hasOwnProperty("isObserved")&&e(t);t("jet.fb.observe.after","jet-form-builder/hCaptcha",e)}})(); \ No newline at end of file +(()=>{"use strict";const{applyFilters:t}=JetPlugins.hooks,e=function(e){var n;if(e.parent)return;const o=e.getInput("_captcha_token"),a=e.getSubmit().getFormId(),r=o?.nodes?.[0]?.parentElement;let i=null!==(n=window?.JetFormBuilderCaptchaConfig?.[a])&&void 0!==n&&n;if(!r||!i)return;o.isVisible=()=>!0,i.callback=t=>{o.value.current=t},i=t("jet.fb.hCaptcha.options",i,e);const s=window.hcaptcha.render(r,i);e.getSubmit().submitter?.status?.watch?.((()=>{window.hcaptcha.reset(s),o.onClear()}))};window.jfbHCaptchaOnLoad=function(){const{addAction:t}=JetPlugins.hooks;for(const t of Object.values(window.JetFormBuilder))t.hasOwnProperty("isObserved")&&e(t);t("jet.fb.observe.after","jet-form-builder/hCaptcha",e)}})(); \ No newline at end of file diff --git a/modules/captcha/assets/build/re-captcha-v3/editor.asset.php b/modules/captcha/assets/build/re-captcha-v3/editor.asset.php index 4ce05a736..209a6dc2a 100644 --- a/modules/captcha/assets/build/re-captcha-v3/editor.asset.php +++ b/modules/captcha/assets/build/re-captcha-v3/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-block-editor', 'wp-components', 'wp-i18n'), 'version' => 'e77312c639e51c86c017'); + array('react', 'wp-block-editor', 'wp-components', 'wp-i18n'), 'version' => '83117ed1a3e2977e136d'); diff --git a/modules/captcha/assets/build/re-captcha-v3/editor.js b/modules/captcha/assets/build/re-captcha-v3/editor.js index f72d7174a..05aca6e09 100644 --- a/modules/captcha/assets/build/re-captcha-v3/editor.js +++ b/modules/captcha/assets/build/re-captcha-v3/editor.js @@ -1 +1 @@ -(()=>{"use strict";const C=window.React,e=window.wp.components,t=window.wp.i18n,{ToggleControl:l,BaseHelp:r}=JetFBComponents,{useCaptchaProvider:a}=JetFBHooks,{useEffect:o}=wp.element,{globalTab:n}=JetFBActions,i=n({slug:"captcha-tab",element:"google",empty:{}}),c=function(){const[n,c]=a(),s=n.use_global?i:n;return o(()=>{c({key:s.key,secret:s.secret,threshold:s.threshold})},[n.use_global]),(0,C.createElement)(C.Fragment,null,(0,C.createElement)(l,{checked:n.use_global,onChange:C=>c({use_global:C})},(0,t.__)("Use","jet-form-builder")+" ",(0,C.createElement)("a",{href:JetFormEditorData.global_settings_url+"#captcha-tab__google"},(0,t.__)("Global Settings","jet-form-builder"))),(0,C.createElement)(e.TextControl,{label:(0,t.__)("Site Key:","jet-form-builder"),value:s.key,disabled:n.use_global,onChange:C=>c({key:C})}),(0,C.createElement)(e.TextControl,{label:(0,t.__)("Secret Key:","jet-form-builder"),value:s.secret,disabled:n.use_global,onChange:C=>c({secret:C})}),(0,C.createElement)(e.__experimentalNumberControl,{label:(0,t.__)("Score Threshold","jet-form-builder"),labelPosition:"top",value:s.threshold,disabled:n.use_global,min:0,max:1,step:.1,placeholder:"0.5",onChange:C=>c({threshold:C})}),(0,C.createElement)(r,{style:{margin:"1em 0"}},(0,t.__)("It should be a value between 0 and 1, default 0.5 (1.0 is very likely a good interaction, 0.0 is very likely a bot).","jet-form-builder")),(0,C.createElement)(e.ExternalLink,{href:"https://www.google.com/recaptcha/admin/create"},(0,t.__)("Register reCAPTCHA v3 keys here","jet-form-builder")))},s=(0,C.createElement)("svg",{width:"268",height:"70",viewBox:"0 0 268 70",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("g",{clipPath:"url(#clip0_2_3821)"},(0,C.createElement)("rect",{width:"268",height:"70",rx:"4",fill:"white"}),(0,C.createElement)("path",{d:"M54.6001 34.5153C54.5992 34.2342 54.5927 33.9546 54.5801 33.6764V17.814L50.1948 22.1993C46.6057 17.806 41.1457 15 35.03 15C28.6656 15 23.0115 18.0379 19.4373 22.7425L26.6253 30.0061C27.3298 28.7033 28.3305 27.5844 29.5371 26.7392C30.792 25.7599 32.5701 24.9592 35.0298 24.9592C35.3269 24.9592 35.5562 24.9939 35.7248 25.0594C38.7723 25.2999 41.4139 26.9818 42.9693 29.4228L37.8812 34.5109C44.3259 34.4856 51.6064 34.4708 54.5996 34.5142",fill:"#1C3AA9"}),(0,C.createElement)("path",{d:"M34.9154 15.0007C34.6344 15.0017 34.3548 15.0082 34.0766 15.0208H18.2141L22.5994 19.4061C18.2062 22.9952 15.4001 28.4552 15.4001 34.5709C15.4001 40.9353 18.4381 46.5894 23.1426 50.1636L30.4063 42.9755C29.1035 42.2711 27.9845 41.2704 27.1394 40.0638C26.1601 38.8088 25.3594 37.0308 25.3594 34.5711C25.3594 34.274 25.3941 34.0446 25.4595 33.8761C25.7 30.8286 27.3819 28.187 29.823 26.6316L34.911 31.7196C34.8858 25.275 34.8709 17.9945 34.9143 15.0013",fill:"#4285F4"}),(0,C.createElement)("path",{d:"M15.4009 34.5706C15.4018 34.8516 15.4083 35.1312 15.4209 35.4094V51.2719L19.8062 46.8866C23.3953 51.2798 28.8553 54.0859 34.971 54.0859C41.3354 54.0859 46.9895 51.048 50.5637 46.3434L43.3757 39.0797C42.6712 40.3825 41.6705 41.5015 40.4639 42.3466C39.209 43.3259 37.4309 44.1266 34.9712 44.1266C34.6741 44.1266 34.4448 44.0919 34.2762 44.0265C31.2287 43.786 28.5871 42.1041 27.0317 39.663L32.1198 34.575C25.6751 34.6002 18.3946 34.6151 15.4014 34.5717",fill:"#ABABAB"}),(0,C.createElement)("rect",{width:"198",height:"70",transform:"translate(70)",fill:"#4272F9"}),(0,C.createElement)("path",{d:"M82.8278 24.1719V34.25H81.3747V22.5469H82.7028L82.8278 24.1719ZM88.5231 26.7031V26.8672C88.5231 27.4818 88.4502 28.0521 88.3044 28.5781C88.1585 29.099 87.945 29.5521 87.6637 29.9375C87.3877 30.3229 87.0466 30.6224 86.6403 30.8359C86.2341 31.0495 85.7679 31.1562 85.2419 31.1562C84.7054 31.1562 84.2315 31.0677 83.82 30.8906C83.4085 30.7135 83.0596 30.4557 82.7731 30.1172C82.4867 29.7786 82.2575 29.3724 82.0856 28.8984C81.919 28.4245 81.8044 27.8906 81.7419 27.2969V26.4219C81.8044 25.7969 81.9216 25.237 82.0934 24.7422C82.2653 24.2474 82.4919 23.8255 82.7731 23.4766C83.0596 23.1224 83.4059 22.8542 83.8122 22.6719C84.2184 22.4844 84.6872 22.3906 85.2184 22.3906C85.7497 22.3906 86.221 22.4948 86.6325 22.7031C87.044 22.9062 87.3903 23.1979 87.6716 23.5781C87.9528 23.9583 88.1637 24.4141 88.3044 24.9453C88.4502 25.4714 88.5231 26.0573 88.5231 26.7031ZM87.07 26.8672V26.7031C87.07 26.2812 87.0257 25.8854 86.9372 25.5156C86.8486 25.1406 86.7106 24.8125 86.5231 24.5312C86.3408 24.2448 86.1065 24.0208 85.82 23.8594C85.5335 23.6927 85.1924 23.6094 84.7966 23.6094C84.432 23.6094 84.1143 23.6719 83.8434 23.7969C83.5778 23.9219 83.3512 24.0911 83.1637 24.3047C82.9762 24.513 82.8226 24.7526 82.7028 25.0234C82.5882 25.2891 82.5023 25.5651 82.445 25.8516V27.875C82.5492 28.2396 82.695 28.5833 82.8825 28.9062C83.07 29.224 83.32 29.4818 83.6325 29.6797C83.945 29.8724 84.3382 29.9688 84.8122 29.9688C85.2028 29.9688 85.5387 29.888 85.82 29.7266C86.1065 29.5599 86.3408 29.3333 86.5231 29.0469C86.7106 28.7604 86.8486 28.4323 86.9372 28.0625C87.0257 27.6875 87.07 27.2891 87.07 26.8672ZM91.6522 23.875V31H90.2069V22.5469H91.6131L91.6522 23.875ZM94.2928 22.5L94.285 23.8438C94.1652 23.8177 94.0506 23.8021 93.9412 23.7969C93.8371 23.7865 93.7173 23.7812 93.5819 23.7812C93.2485 23.7812 92.9543 23.8333 92.6991 23.9375C92.4439 24.0417 92.2277 24.1875 92.0506 24.375C91.8735 24.5625 91.7329 24.7865 91.6287 25.0469C91.5298 25.3021 91.4647 25.5833 91.4334 25.8906L91.0272 26.125C91.0272 25.6146 91.0767 25.1354 91.1756 24.6875C91.2798 24.2396 91.4386 23.8438 91.6522 23.5C91.8657 23.151 92.1366 22.8802 92.4647 22.6875C92.798 22.4896 93.1939 22.3906 93.6522 22.3906C93.7564 22.3906 93.8761 22.4036 94.0116 22.4297C94.147 22.4505 94.2407 22.474 94.2928 22.5ZM94.9297 26.8672V26.6875C94.9297 26.0781 95.0182 25.513 95.1953 24.9922C95.3724 24.4661 95.6276 24.0104 95.9609 23.625C96.2943 23.2344 96.6979 22.9323 97.1719 22.7188C97.6458 22.5 98.1771 22.3906 98.7656 22.3906C99.3594 22.3906 99.8932 22.5 100.367 22.7188C100.846 22.9323 101.253 23.2344 101.586 23.625C101.924 24.0104 102.182 24.4661 102.359 24.9922C102.536 25.513 102.625 26.0781 102.625 26.6875V26.8672C102.625 27.4766 102.536 28.0417 102.359 28.5625C102.182 29.0833 101.924 29.5391 101.586 29.9297C101.253 30.3151 100.849 30.6172 100.375 30.8359C99.9062 31.0495 99.375 31.1562 98.7812 31.1562C98.1875 31.1562 97.6536 31.0495 97.1797 30.8359C96.7057 30.6172 96.2995 30.3151 95.9609 29.9297C95.6276 29.5391 95.3724 29.0833 95.1953 28.5625C95.0182 28.0417 94.9297 27.4766 94.9297 26.8672ZM96.375 26.6875V26.8672C96.375 27.2891 96.4245 27.6875 96.5234 28.0625C96.6224 28.4323 96.7708 28.7604 96.9688 29.0469C97.1719 29.3333 97.4245 29.5599 97.7266 29.7266C98.0286 29.888 98.3802 29.9688 98.7812 29.9688C99.1771 29.9688 99.5234 29.888 99.8203 29.7266C100.122 29.5599 100.372 29.3333 100.57 29.0469C100.768 28.7604 100.917 28.4323 101.016 28.0625C101.12 27.6875 101.172 27.2891 101.172 26.8672V26.6875C101.172 26.2708 101.12 25.8776 101.016 25.5078C100.917 25.1328 100.766 24.8021 100.562 24.5156C100.365 24.224 100.115 23.9948 99.8125 23.8281C99.5156 23.6615 99.1667 23.5781 98.7656 23.5781C98.3698 23.5781 98.0208 23.6615 97.7188 23.8281C97.4219 23.9948 97.1719 24.224 96.9688 24.5156C96.7708 24.8021 96.6224 25.1328 96.5234 25.5078C96.4245 25.8776 96.375 26.2708 96.375 26.6875ZM107.817 22.5469V23.6562H103.246V22.5469H107.817ZM104.793 20.4922H106.238V28.9062C106.238 29.1927 106.283 29.4089 106.371 29.5547C106.46 29.7005 106.574 29.7969 106.715 29.8438C106.856 29.8906 107.007 29.9141 107.168 29.9141C107.288 29.9141 107.413 29.9036 107.543 29.8828C107.679 29.8568 107.78 29.8359 107.848 29.8203L107.856 31C107.741 31.0365 107.59 31.0703 107.403 31.1016C107.22 31.138 106.999 31.1562 106.738 31.1562C106.384 31.1562 106.059 31.0859 105.762 30.9453C105.465 30.8047 105.228 30.5703 105.051 30.2422C104.879 29.9089 104.793 29.4609 104.793 28.8984V20.4922ZM112.86 31.1562C112.271 31.1562 111.737 31.0573 111.258 30.8594C110.784 30.6562 110.375 30.3724 110.032 30.0078C109.693 29.6432 109.433 29.2109 109.25 28.7109C109.068 28.2109 108.977 27.6641 108.977 27.0703V26.7422C108.977 26.0547 109.078 25.4427 109.282 24.9062C109.485 24.3646 109.761 23.9062 110.11 23.5312C110.459 23.1562 110.854 22.8724 111.297 22.6797C111.74 22.487 112.198 22.3906 112.672 22.3906C113.276 22.3906 113.797 22.4948 114.235 22.7031C114.677 22.9115 115.039 23.2031 115.321 23.5781C115.602 23.9479 115.81 24.3854 115.946 24.8906C116.081 25.3906 116.149 25.9375 116.149 26.5312V27.1797H109.836V26H114.703V25.8906C114.683 25.5156 114.604 25.151 114.469 24.7969C114.339 24.4427 114.131 24.151 113.844 23.9219C113.558 23.6927 113.167 23.5781 112.672 23.5781C112.344 23.5781 112.042 23.6484 111.766 23.7891C111.49 23.9245 111.253 24.1276 111.055 24.3984C110.857 24.6693 110.703 25 110.594 25.3906C110.485 25.7812 110.43 26.2318 110.43 26.7422V27.0703C110.43 27.4714 110.485 27.849 110.594 28.2031C110.709 28.5521 110.873 28.8594 111.086 29.125C111.305 29.3906 111.568 29.599 111.875 29.75C112.188 29.901 112.542 29.9766 112.938 29.9766C113.448 29.9766 113.881 29.8724 114.235 29.6641C114.589 29.4557 114.899 29.1771 115.164 28.8281L116.039 29.5234C115.857 29.7995 115.625 30.0625 115.344 30.3125C115.063 30.5625 114.716 30.7656 114.305 30.9219C113.899 31.0781 113.417 31.1562 112.86 31.1562ZM121.059 29.9688C121.403 29.9688 121.721 29.8984 122.012 29.7578C122.304 29.6172 122.543 29.4245 122.731 29.1797C122.918 28.9297 123.025 28.6458 123.051 28.3281H124.426C124.4 28.8281 124.231 29.2943 123.918 29.7266C123.611 30.1536 123.208 30.5 122.708 30.7656C122.208 31.026 121.658 31.1562 121.059 31.1562C120.424 31.1562 119.869 31.0443 119.395 30.8203C118.926 30.5964 118.536 30.2891 118.223 29.8984C117.916 29.5078 117.684 29.0599 117.528 28.5547C117.377 28.0443 117.301 27.5052 117.301 26.9375V26.6094C117.301 26.0417 117.377 25.5052 117.528 25C117.684 24.4896 117.916 24.0391 118.223 23.6484C118.536 23.2578 118.926 22.9505 119.395 22.7266C119.869 22.5026 120.424 22.3906 121.059 22.3906C121.721 22.3906 122.299 22.526 122.793 22.7969C123.288 23.0625 123.676 23.4271 123.958 23.8906C124.244 24.349 124.4 24.8698 124.426 25.4531H123.051C123.025 25.1042 122.926 24.7891 122.754 24.5078C122.588 24.2266 122.359 24.0026 122.067 23.8359C121.78 23.6641 121.444 23.5781 121.059 23.5781C120.616 23.5781 120.244 23.6667 119.942 23.8438C119.645 24.0156 119.408 24.25 119.231 24.5469C119.059 24.8385 118.934 25.1641 118.856 25.5234C118.783 25.8776 118.747 26.2396 118.747 26.6094V26.9375C118.747 27.3073 118.783 27.6719 118.856 28.0312C118.929 28.3906 119.051 28.7161 119.223 29.0078C119.4 29.2995 119.637 29.5339 119.934 29.7109C120.236 29.8828 120.611 29.9688 121.059 29.9688ZM129.43 22.5469V23.6562H124.86V22.5469H129.43ZM126.407 20.4922H127.852V28.9062C127.852 29.1927 127.896 29.4089 127.985 29.5547C128.074 29.7005 128.188 29.7969 128.329 29.8438C128.469 29.8906 128.62 29.9141 128.782 29.9141C128.902 29.9141 129.027 29.9036 129.157 29.8828C129.292 29.8568 129.394 29.8359 129.462 29.8203L129.469 31C129.355 31.0365 129.204 31.0703 129.016 31.1016C128.834 31.138 128.613 31.1562 128.352 31.1562C127.998 31.1562 127.673 31.0859 127.376 30.9453C127.079 30.8047 126.842 30.5703 126.665 30.2422C126.493 29.9089 126.407 29.4609 126.407 28.8984V20.4922ZM134.473 31.1562C133.885 31.1562 133.351 31.0573 132.872 30.8594C132.398 30.6562 131.989 30.3724 131.645 30.0078C131.307 29.6432 131.046 29.2109 130.864 28.7109C130.682 28.2109 130.591 27.6641 130.591 27.0703V26.7422C130.591 26.0547 130.692 25.4427 130.895 24.9062C131.098 24.3646 131.374 23.9062 131.723 23.5312C132.072 23.1562 132.468 22.8724 132.911 22.6797C133.354 22.487 133.812 22.3906 134.286 22.3906C134.89 22.3906 135.411 22.4948 135.848 22.7031C136.291 22.9115 136.653 23.2031 136.934 23.5781C137.216 23.9479 137.424 24.3854 137.559 24.8906C137.695 25.3906 137.763 25.9375 137.763 26.5312V27.1797H131.45V26H136.317V25.8906C136.296 25.5156 136.218 25.151 136.083 24.7969C135.953 24.4427 135.744 24.151 135.458 23.9219C135.171 23.6927 134.781 23.5781 134.286 23.5781C133.958 23.5781 133.656 23.6484 133.38 23.7891C133.104 23.9245 132.867 24.1276 132.669 24.3984C132.471 24.6693 132.317 25 132.208 25.3906C132.098 25.7812 132.044 26.2318 132.044 26.7422V27.0703C132.044 27.4714 132.098 27.849 132.208 28.2031C132.322 28.5521 132.486 28.8594 132.7 29.125C132.919 29.3906 133.182 29.599 133.489 29.75C133.802 29.901 134.156 29.9766 134.552 29.9766C135.062 29.9766 135.494 29.8724 135.848 29.6641C136.203 29.4557 136.513 29.1771 136.778 28.8281L137.653 29.5234C137.471 29.7995 137.239 30.0625 136.958 30.3125C136.677 30.5625 136.33 30.7656 135.919 30.9219C135.513 31.0781 135.031 31.1562 134.473 31.1562ZM144.618 29.3594V19H146.071V31H144.743L144.618 29.3594ZM138.931 26.8672V26.7031C138.931 26.0573 139.009 25.4714 139.165 24.9453C139.326 24.4141 139.553 23.9583 139.845 23.5781C140.142 23.1979 140.493 22.9062 140.899 22.7031C141.311 22.4948 141.769 22.3906 142.274 22.3906C142.806 22.3906 143.269 22.4844 143.665 22.6719C144.066 22.8542 144.405 23.1224 144.681 23.4766C144.962 23.8255 145.183 24.2474 145.345 24.7422C145.506 25.237 145.618 25.7969 145.681 26.4219V27.1406C145.623 27.7604 145.511 28.3177 145.345 28.8125C145.183 29.3073 144.962 29.7292 144.681 30.0781C144.405 30.4271 144.066 30.6953 143.665 30.8828C143.264 31.0651 142.795 31.1562 142.259 31.1562C141.764 31.1562 141.311 31.0495 140.899 30.8359C140.493 30.6224 140.142 30.3229 139.845 29.9375C139.553 29.5521 139.326 29.099 139.165 28.5781C139.009 28.0521 138.931 27.4818 138.931 26.8672ZM140.384 26.7031V26.8672C140.384 27.2891 140.425 27.6849 140.509 28.0547C140.597 28.4245 140.733 28.75 140.915 29.0312C141.097 29.3125 141.329 29.5339 141.61 29.6953C141.892 29.8516 142.228 29.9297 142.618 29.9297C143.097 29.9297 143.491 29.8281 143.798 29.625C144.11 29.4219 144.36 29.1536 144.548 28.8203C144.735 28.487 144.881 28.125 144.985 27.7344V25.8516C144.923 25.5651 144.832 25.2891 144.712 25.0234C144.597 24.7526 144.446 24.513 144.259 24.3047C144.076 24.0911 143.85 23.9219 143.579 23.7969C143.313 23.6719 142.998 23.6094 142.634 23.6094C142.238 23.6094 141.897 23.6927 141.61 23.8594C141.329 24.0208 141.097 24.2448 140.915 24.5312C140.733 24.8125 140.597 25.1406 140.509 25.5156C140.425 25.8854 140.384 26.2812 140.384 26.7031ZM151.962 19H153.415V29.3594L153.29 31H151.962V19ZM159.126 26.7031V26.8672C159.126 27.4818 159.053 28.0521 158.908 28.5781C158.762 29.099 158.548 29.5521 158.267 29.9375C157.986 30.3229 157.642 30.6224 157.236 30.8359C156.829 31.0495 156.363 31.1562 155.837 31.1562C155.301 31.1562 154.829 31.0651 154.423 30.8828C154.022 30.6953 153.684 30.4271 153.408 30.0781C153.131 29.7292 152.91 29.3073 152.743 28.8125C152.582 28.3177 152.47 27.7604 152.408 27.1406V26.4219C152.47 25.7969 152.582 25.237 152.743 24.7422C152.91 24.2474 153.131 23.8255 153.408 23.4766C153.684 23.1224 154.022 22.8542 154.423 22.6719C154.824 22.4844 155.29 22.3906 155.822 22.3906C156.353 22.3906 156.824 22.4948 157.236 22.7031C157.647 22.9062 157.991 23.1979 158.267 23.5781C158.548 23.9583 158.762 24.4141 158.908 24.9453C159.053 25.4714 159.126 26.0573 159.126 26.7031ZM157.673 26.8672V26.7031C157.673 26.2812 157.634 25.8854 157.556 25.5156C157.478 25.1406 157.353 24.8125 157.181 24.5312C157.009 24.2448 156.783 24.0208 156.501 23.8594C156.22 23.6927 155.874 23.6094 155.462 23.6094C155.098 23.6094 154.78 23.6719 154.509 23.7969C154.243 23.9219 154.017 24.0911 153.829 24.3047C153.642 24.513 153.488 24.7526 153.368 25.0234C153.254 25.2891 153.168 25.5651 153.111 25.8516V27.7344C153.194 28.099 153.329 28.4505 153.517 28.7891C153.71 29.1224 153.965 29.3958 154.283 29.6094C154.605 29.8229 155.004 29.9297 155.478 29.9297C155.868 29.9297 156.202 29.8516 156.478 29.6953C156.759 29.5339 156.986 29.3125 157.158 29.0312C157.335 28.75 157.465 28.4245 157.548 28.0547C157.631 27.6849 157.673 27.2891 157.673 26.8672ZM163.076 30.125L165.427 22.5469H166.974L163.583 32.3047C163.505 32.513 163.401 32.737 163.271 32.9766C163.146 33.2214 162.984 33.4531 162.787 33.6719C162.589 33.8906 162.349 34.0677 162.068 34.2031C161.792 34.3438 161.461 34.4141 161.076 34.4141C160.961 34.4141 160.815 34.3984 160.638 34.3672C160.461 34.3359 160.336 34.3099 160.263 34.2891L160.255 33.1172C160.297 33.1224 160.362 33.1276 160.451 33.1328C160.544 33.1432 160.609 33.1484 160.646 33.1484C160.974 33.1484 161.253 33.1042 161.482 33.0156C161.711 32.9323 161.904 32.7891 162.06 32.5859C162.221 32.388 162.359 32.1146 162.474 31.7656L163.076 30.125ZM161.349 22.5469L163.544 29.1094L163.919 30.6328L162.88 31.1641L159.771 22.5469H161.349ZM173.373 23.875V31H171.927V22.5469H173.334L173.373 23.875ZM176.013 22.5L176.006 23.8438C175.886 23.8177 175.771 23.8021 175.662 23.7969C175.558 23.7865 175.438 23.7812 175.302 23.7812C174.969 23.7812 174.675 23.8333 174.42 23.9375C174.164 24.0417 173.948 24.1875 173.771 24.375C173.594 24.5625 173.454 24.7865 173.349 25.0469C173.25 25.3021 173.185 25.5833 173.154 25.8906L172.748 26.125C172.748 25.6146 172.797 25.1354 172.896 24.6875C173 24.2396 173.159 23.8438 173.373 23.5C173.586 23.151 173.857 22.8802 174.185 22.6875C174.519 22.4896 174.914 22.3906 175.373 22.3906C175.477 22.3906 175.597 22.4036 175.732 22.4297C175.868 22.4505 175.961 22.474 176.013 22.5ZM180.381 31.1562C179.792 31.1562 179.259 31.0573 178.779 30.8594C178.305 30.6562 177.897 30.3724 177.553 30.0078C177.214 29.6432 176.954 29.2109 176.772 28.7109C176.589 28.2109 176.498 27.6641 176.498 27.0703V26.7422C176.498 26.0547 176.6 25.4427 176.803 24.9062C177.006 24.3646 177.282 23.9062 177.631 23.5312C177.98 23.1562 178.376 22.8724 178.818 22.6797C179.261 22.487 179.719 22.3906 180.193 22.3906C180.798 22.3906 181.318 22.4948 181.756 22.7031C182.199 22.9115 182.561 23.2031 182.842 23.5781C183.123 23.9479 183.331 24.3854 183.467 24.8906C183.602 25.3906 183.67 25.9375 183.67 26.5312V27.1797H177.357V26H182.225V25.8906C182.204 25.5156 182.126 25.151 181.99 24.7969C181.86 24.4427 181.652 24.151 181.365 23.9219C181.079 23.6927 180.688 23.5781 180.193 23.5781C179.865 23.5781 179.563 23.6484 179.287 23.7891C179.011 23.9245 178.774 24.1276 178.576 24.3984C178.378 24.6693 178.225 25 178.115 25.3906C178.006 25.7812 177.951 26.2318 177.951 26.7422V27.0703C177.951 27.4714 178.006 27.849 178.115 28.2031C178.23 28.5521 178.394 28.8594 178.607 29.125C178.826 29.3906 179.089 29.599 179.397 29.75C179.709 29.901 180.063 29.9766 180.459 29.9766C180.969 29.9766 181.402 29.8724 181.756 29.6641C182.11 29.4557 182.42 29.1771 182.686 28.8281L183.561 29.5234C183.378 29.7995 183.147 30.0625 182.865 30.3125C182.584 30.5625 182.238 30.7656 181.826 30.9219C181.42 31.0781 180.938 31.1562 180.381 31.1562ZM192.123 27.3828H193.623C193.545 28.1016 193.34 28.7448 193.006 29.3125C192.673 29.8802 192.202 30.3307 191.592 30.6641C190.983 30.9922 190.222 31.1562 189.311 31.1562C188.644 31.1562 188.037 31.0312 187.491 30.7812C186.949 30.5312 186.483 30.1771 186.092 29.7188C185.702 29.2552 185.399 28.7005 185.186 28.0547C184.978 27.4036 184.873 26.6797 184.873 25.8828V24.75C184.873 23.9531 184.978 23.2318 185.186 22.5859C185.399 21.9349 185.704 21.3776 186.1 20.9141C186.501 20.4505 186.983 20.0938 187.545 19.8438C188.108 19.5938 188.741 19.4688 189.444 19.4688C190.303 19.4688 191.03 19.6302 191.623 19.9531C192.217 20.276 192.678 20.724 193.006 21.2969C193.34 21.8646 193.545 22.5234 193.623 23.2734H192.123C192.051 22.7422 191.915 22.2865 191.717 21.9062C191.519 21.5208 191.238 21.224 190.873 21.0156C190.509 20.8073 190.032 20.7031 189.444 20.7031C188.939 20.7031 188.493 20.7995 188.108 20.9922C187.728 21.1849 187.407 21.4583 187.147 21.8125C186.892 22.1667 186.699 22.5911 186.569 23.0859C186.439 23.5807 186.373 24.1302 186.373 24.7344V25.8828C186.373 26.4401 186.431 26.9635 186.545 27.4531C186.665 27.9427 186.845 28.3724 187.084 28.7422C187.324 29.112 187.629 29.4036 187.998 29.6172C188.368 29.8255 188.806 29.9297 189.311 29.9297C189.952 29.9297 190.462 29.8281 190.842 29.625C191.222 29.4219 191.509 29.1302 191.702 28.75C191.899 28.3698 192.04 27.9141 192.123 27.3828ZM199.569 20.6328L195.803 31H194.264L198.6 19.625H199.592L199.569 20.6328ZM202.725 31L198.952 20.6328L198.928 19.625H199.921L204.272 31H202.725ZM202.53 26.7891V28.0234H196.139V26.7891H202.53ZM209.671 26.5391H206.632V25.3125H209.671C210.259 25.3125 210.736 25.2188 211.101 25.0312C211.465 24.8438 211.731 24.5833 211.897 24.25C212.069 23.9167 212.155 23.5365 212.155 23.1094C212.155 22.7188 212.069 22.3516 211.897 22.0078C211.731 21.6641 211.465 21.388 211.101 21.1797C210.736 20.9661 210.259 20.8594 209.671 20.8594H206.983V31H205.476V19.625H209.671C210.53 19.625 211.257 19.7734 211.851 20.0703C212.444 20.3672 212.895 20.7786 213.202 21.3047C213.509 21.8255 213.663 22.4219 213.663 23.0938C213.663 23.8229 213.509 24.4453 213.202 24.9609C212.895 25.4766 212.444 25.8698 211.851 26.1406C211.257 26.4062 210.53 26.5391 209.671 26.5391ZM219.453 19.625V31H217.968V19.625H219.453ZM223.109 19.625V20.8594H214.32V19.625H223.109ZM231.125 27.3828H232.625C232.547 28.1016 232.341 28.7448 232.008 29.3125C231.674 29.8802 231.203 30.3307 230.593 30.6641C229.984 30.9922 229.224 31.1562 228.312 31.1562C227.646 31.1562 227.039 31.0312 226.492 30.7812C225.95 30.5312 225.484 30.1771 225.093 29.7188C224.703 29.2552 224.401 28.7005 224.187 28.0547C223.979 27.4036 223.875 26.6797 223.875 25.8828V24.75C223.875 23.9531 223.979 23.2318 224.187 22.5859C224.401 21.9349 224.705 21.3776 225.101 20.9141C225.502 20.4505 225.984 20.0938 226.547 19.8438C227.109 19.5938 227.742 19.4688 228.445 19.4688C229.304 19.4688 230.031 19.6302 230.625 19.9531C231.218 20.276 231.679 20.724 232.008 21.2969C232.341 21.8646 232.547 22.5234 232.625 23.2734H231.125C231.052 22.7422 230.916 22.2865 230.718 21.9062C230.521 21.5208 230.239 21.224 229.875 21.0156C229.51 20.8073 229.034 20.7031 228.445 20.7031C227.94 20.7031 227.494 20.7995 227.109 20.9922C226.729 21.1849 226.409 21.4583 226.148 21.8125C225.893 22.1667 225.7 22.5911 225.57 23.0859C225.44 23.5807 225.375 24.1302 225.375 24.7344V25.8828C225.375 26.4401 225.432 26.9635 225.547 27.4531C225.666 27.9427 225.846 28.3724 226.086 28.7422C226.325 29.112 226.63 29.4036 227 29.6172C227.369 29.8255 227.807 29.9297 228.312 29.9297C228.953 29.9297 229.463 29.8281 229.843 29.625C230.224 29.4219 230.51 29.1302 230.703 28.75C230.901 28.3698 231.041 27.9141 231.125 27.3828ZM241.789 24.5156V25.7422H235.633V24.5156H241.789ZM235.867 19.625V31H234.359V19.625H235.867ZM243.102 19.625V31H241.602V19.625H243.102ZM249.813 20.6328L246.047 31H244.508L248.844 19.625H249.836L249.813 20.6328ZM252.969 31L249.196 20.6328L249.172 19.625H250.164L254.516 31H252.969ZM252.774 26.7891V28.0234H246.383V26.7891H252.774Z",fill:"white"}),(0,C.createElement)("path",{d:"M83.7256 47.3486H81.875V46.377H83.7256C84.0479 46.377 84.3083 46.3249 84.5068 46.2207C84.7054 46.1165 84.8503 45.9733 84.9414 45.791C85.0358 45.6055 85.083 45.3939 85.083 45.1562C85.083 44.9316 85.0358 44.7217 84.9414 44.5264C84.8503 44.3278 84.7054 44.1683 84.5068 44.0479C84.3083 43.9274 84.0479 43.8672 83.7256 43.8672H82.251V50H81.0254V42.8906H83.7256C84.2757 42.8906 84.7428 42.9883 85.127 43.1836C85.5143 43.3757 85.8089 43.6426 86.0107 43.9844C86.2126 44.3229 86.3135 44.7103 86.3135 45.1465C86.3135 45.6055 86.2126 45.9993 86.0107 46.3281C85.8089 46.6569 85.5143 46.9092 85.127 47.085C84.7428 47.2607 84.2757 47.3486 83.7256 47.3486ZM88.4766 45.7227V50H87.2998V44.7168H88.4229L88.4766 45.7227ZM90.0928 44.6826L90.083 45.7764C90.0114 45.7633 89.9333 45.7536 89.8486 45.7471C89.7673 45.7406 89.6859 45.7373 89.6045 45.7373C89.4027 45.7373 89.2253 45.7666 89.0723 45.8252C88.9193 45.8805 88.7907 45.9619 88.6865 46.0693C88.5856 46.1735 88.5075 46.3005 88.4521 46.4502C88.3968 46.5999 88.3643 46.7676 88.3545 46.9531L88.0859 46.9727C88.0859 46.6406 88.1185 46.333 88.1836 46.0498C88.2487 45.7666 88.3464 45.5176 88.4766 45.3027C88.61 45.0879 88.776 44.9202 88.9746 44.7998C89.1764 44.6794 89.4092 44.6191 89.6729 44.6191C89.7445 44.6191 89.821 44.6257 89.9023 44.6387C89.987 44.6517 90.0505 44.6663 90.0928 44.6826ZM92.0898 44.7168V50H90.9082V44.7168H92.0898ZM90.8301 43.3301C90.8301 43.151 90.8887 43.0029 91.0059 42.8857C91.1263 42.7653 91.2923 42.7051 91.5039 42.7051C91.7122 42.7051 91.8766 42.7653 91.9971 42.8857C92.1175 43.0029 92.1777 43.151 92.1777 43.3301C92.1777 43.5059 92.1175 43.6523 91.9971 43.7695C91.8766 43.8867 91.7122 43.9453 91.5039 43.9453C91.2923 43.9453 91.1263 43.8867 91.0059 43.7695C90.8887 43.6523 90.8301 43.5059 90.8301 43.3301ZM95.0977 49.0674L96.3916 44.7168H97.6123L95.7764 50H95.0146L95.0977 49.0674ZM94.1064 44.7168L95.4248 49.0869L95.4883 50H94.7266L92.8809 44.7168H94.1064ZM101.24 48.9404V46.4209C101.24 46.2321 101.206 46.0693 101.138 45.9326C101.069 45.7959 100.965 45.6901 100.825 45.6152C100.688 45.5404 100.516 45.5029 100.308 45.5029C100.116 45.5029 99.9495 45.5355 99.8096 45.6006C99.6696 45.6657 99.5605 45.7536 99.4824 45.8643C99.4043 45.9749 99.3652 46.1003 99.3652 46.2402H98.1934C98.1934 46.0319 98.2438 45.8301 98.3447 45.6348C98.4456 45.4395 98.5921 45.2653 98.7842 45.1123C98.9762 44.9593 99.2057 44.8389 99.4727 44.751C99.7396 44.6631 100.039 44.6191 100.371 44.6191C100.768 44.6191 101.12 44.6859 101.426 44.8193C101.735 44.9528 101.978 45.1546 102.153 45.4248C102.332 45.6917 102.422 46.027 102.422 46.4307V48.7793C102.422 49.0202 102.438 49.2367 102.471 49.4287C102.507 49.6175 102.557 49.7819 102.622 49.9219V50H101.416C101.361 49.873 101.317 49.7119 101.284 49.5166C101.255 49.318 101.24 49.126 101.24 48.9404ZM101.411 46.7871L101.421 47.5146H100.576C100.358 47.5146 100.166 47.5358 100 47.5781C99.834 47.6172 99.6956 47.6758 99.585 47.7539C99.4743 47.832 99.3913 47.9264 99.3359 48.0371C99.2806 48.1478 99.2529 48.2731 99.2529 48.4131C99.2529 48.5531 99.2855 48.6816 99.3506 48.7988C99.4157 48.9128 99.5101 49.0023 99.6338 49.0674C99.7607 49.1325 99.9137 49.165 100.093 49.165C100.334 49.165 100.544 49.1162 100.723 49.0186C100.905 48.9176 101.048 48.7956 101.152 48.6523C101.257 48.5059 101.312 48.3675 101.318 48.2373L101.699 48.7598C101.66 48.8932 101.593 49.0365 101.499 49.1895C101.405 49.3424 101.281 49.4889 101.128 49.6289C100.978 49.7656 100.798 49.8779 100.586 49.9658C100.378 50.0537 100.137 50.0977 99.8633 50.0977C99.5182 50.0977 99.2106 50.0293 98.9404 49.8926C98.6702 49.7526 98.4587 49.5654 98.3057 49.3311C98.1527 49.0934 98.0762 48.8249 98.0762 48.5254C98.0762 48.2454 98.1283 47.998 98.2324 47.7832C98.3398 47.5651 98.4961 47.3828 98.7012 47.2363C98.9095 47.0898 99.1634 46.9792 99.4629 46.9043C99.7624 46.8262 100.104 46.7871 100.488 46.7871H101.411ZM105.811 49.1602C106.003 49.1602 106.175 49.1227 106.328 49.0479C106.484 48.9697 106.61 48.8623 106.704 48.7256C106.802 48.5889 106.855 48.431 106.865 48.252H107.974C107.967 48.5938 107.866 48.9046 107.671 49.1846C107.476 49.4645 107.217 49.6875 106.895 49.8535C106.572 50.0163 106.216 50.0977 105.825 50.0977C105.422 50.0977 105.07 50.0293 104.771 49.8926C104.471 49.7526 104.222 49.5605 104.023 49.3164C103.825 49.0723 103.675 48.7907 103.574 48.4717C103.477 48.1527 103.428 47.8109 103.428 47.4463V47.2754C103.428 46.9108 103.477 46.569 103.574 46.25C103.675 45.9277 103.825 45.6445 104.023 45.4004C104.222 45.1562 104.471 44.9658 104.771 44.8291C105.07 44.6891 105.42 44.6191 105.82 44.6191C106.243 44.6191 106.615 44.7038 106.934 44.873C107.253 45.0391 107.503 45.2718 107.686 45.5713C107.871 45.8675 107.967 46.2126 107.974 46.6064H106.865C106.855 46.4111 106.807 46.2354 106.719 46.0791C106.634 45.9196 106.514 45.7926 106.357 45.6982C106.204 45.6038 106.021 45.5566 105.806 45.5566C105.568 45.5566 105.371 45.6055 105.215 45.7031C105.059 45.7975 104.937 45.9277 104.849 46.0938C104.761 46.2565 104.697 46.4404 104.658 46.6455C104.622 46.8473 104.604 47.0573 104.604 47.2754V47.4463C104.604 47.6644 104.622 47.876 104.658 48.0811C104.694 48.2861 104.756 48.4701 104.844 48.6328C104.935 48.7923 105.059 48.9209 105.215 49.0186C105.371 49.113 105.57 49.1602 105.811 49.1602ZM110.41 49.4238L111.846 44.7168H113.105L110.986 50.8057C110.938 50.9359 110.874 51.0775 110.796 51.2305C110.718 51.3835 110.615 51.5283 110.488 51.665C110.365 51.805 110.21 51.9173 110.024 52.002C109.839 52.0898 109.614 52.1338 109.351 52.1338C109.246 52.1338 109.146 52.124 109.048 52.1045C108.953 52.0882 108.864 52.0703 108.779 52.0508L108.774 51.1523C108.807 51.1556 108.846 51.1589 108.892 51.1621C108.94 51.1654 108.979 51.167 109.009 51.167C109.204 51.167 109.367 51.1426 109.497 51.0938C109.627 51.0482 109.733 50.9733 109.814 50.8691C109.899 50.765 109.971 50.625 110.029 50.4492L110.41 49.4238ZM109.6 44.7168L110.854 48.6719L111.064 49.9121L110.249 50.1221L108.33 44.7168H109.6ZM118.638 46.4941V47.4316H116.055V46.4941H118.638ZM124.966 42.8906V50H123.75V42.8906H124.966ZM127.197 42.8906V43.8672H121.538V42.8906H127.197ZM129.878 50.0977C129.487 50.0977 129.134 50.0342 128.818 49.9072C128.506 49.777 128.239 49.5964 128.018 49.3652C127.799 49.1341 127.632 48.8623 127.515 48.5498C127.397 48.2373 127.339 47.9004 127.339 47.5391V47.3438C127.339 46.9303 127.399 46.556 127.52 46.2207C127.64 45.8854 127.808 45.599 128.022 45.3613C128.237 45.1204 128.491 44.9365 128.784 44.8096C129.077 44.6826 129.395 44.6191 129.736 44.6191C130.114 44.6191 130.444 44.6826 130.728 44.8096C131.011 44.9365 131.245 45.1156 131.431 45.3467C131.619 45.5745 131.759 45.8464 131.851 46.1621C131.945 46.4779 131.992 46.8262 131.992 47.207V47.71H127.91V46.8652H130.83V46.7725C130.824 46.5609 130.781 46.3623 130.703 46.1768C130.628 45.9912 130.513 45.8415 130.356 45.7275C130.2 45.6136 129.992 45.5566 129.731 45.5566C129.536 45.5566 129.362 45.599 129.209 45.6836C129.059 45.765 128.934 45.8838 128.833 46.04C128.732 46.1963 128.654 46.3851 128.599 46.6064C128.547 46.8245 128.521 47.0703 128.521 47.3438V47.5391C128.521 47.7702 128.551 47.985 128.613 48.1836C128.678 48.3789 128.773 48.5498 128.896 48.6963C129.02 48.8428 129.17 48.9583 129.346 49.043C129.521 49.1243 129.722 49.165 129.946 49.165C130.229 49.165 130.482 49.1081 130.703 48.9941C130.924 48.8802 131.117 48.7191 131.279 48.5107L131.899 49.1113C131.785 49.2773 131.637 49.4368 131.455 49.5898C131.273 49.7396 131.05 49.8617 130.786 49.9561C130.526 50.0505 130.223 50.0977 129.878 50.0977ZM134.092 45.7227V50H132.915V44.7168H134.038L134.092 45.7227ZM135.708 44.6826L135.698 45.7764C135.627 45.7633 135.549 45.7536 135.464 45.7471C135.382 45.7406 135.301 45.7373 135.22 45.7373C135.018 45.7373 134.84 45.7666 134.688 45.8252C134.535 45.8805 134.406 45.9619 134.302 46.0693C134.201 46.1735 134.123 46.3005 134.067 46.4502C134.012 46.5999 133.979 46.7676 133.97 46.9531L133.701 46.9727C133.701 46.6406 133.734 46.333 133.799 46.0498C133.864 45.7666 133.962 45.5176 134.092 45.3027C134.225 45.0879 134.391 44.9202 134.59 44.7998C134.792 44.6794 135.024 44.6191 135.288 44.6191C135.36 44.6191 135.436 44.6257 135.518 44.6387C135.602 44.6517 135.666 44.6663 135.708 44.6826ZM137.622 45.791V50H136.445V44.7168H137.554L137.622 45.791ZM137.432 47.1631L137.031 47.1582C137.031 46.7936 137.077 46.4567 137.168 46.1475C137.259 45.8382 137.393 45.5697 137.568 45.3418C137.744 45.1107 137.962 44.9333 138.223 44.8096C138.486 44.6826 138.791 44.6191 139.136 44.6191C139.377 44.6191 139.596 44.6549 139.795 44.7266C139.997 44.7949 140.171 44.904 140.317 45.0537C140.467 45.2035 140.581 45.3955 140.659 45.6299C140.741 45.8643 140.781 46.1475 140.781 46.4795V50H139.604V46.582C139.604 46.3249 139.565 46.123 139.487 45.9766C139.412 45.8301 139.303 45.7259 139.16 45.6641C139.02 45.599 138.853 45.5664 138.657 45.5664C138.436 45.5664 138.247 45.6087 138.091 45.6934C137.938 45.778 137.812 45.8936 137.715 46.04C137.617 46.1865 137.546 46.3558 137.5 46.5479C137.454 46.7399 137.432 46.945 137.432 47.1631ZM140.708 46.8506L140.156 46.9727C140.156 46.6536 140.2 46.3525 140.288 46.0693C140.379 45.7829 140.511 45.5322 140.684 45.3174C140.859 45.0993 141.076 44.9284 141.333 44.8047C141.59 44.681 141.885 44.6191 142.217 44.6191C142.487 44.6191 142.728 44.6566 142.939 44.7314C143.154 44.8031 143.337 44.917 143.486 45.0732C143.636 45.2295 143.75 45.4329 143.828 45.6836C143.906 45.931 143.945 46.2305 143.945 46.582V50H142.764V46.5771C142.764 46.3102 142.725 46.1035 142.646 45.957C142.572 45.8105 142.464 45.7096 142.324 45.6543C142.184 45.5957 142.017 45.5664 141.821 45.5664C141.639 45.5664 141.478 45.6006 141.338 45.6689C141.201 45.734 141.086 45.8268 140.991 45.9473C140.897 46.0645 140.825 46.1995 140.776 46.3525C140.731 46.5055 140.708 46.6715 140.708 46.8506ZM148.12 48.5693C148.12 48.4521 148.091 48.3464 148.032 48.252C147.974 48.1543 147.861 48.0664 147.695 47.9883C147.533 47.9102 147.292 47.8385 146.973 47.7734C146.693 47.7116 146.436 47.6383 146.201 47.5537C145.97 47.4658 145.771 47.36 145.605 47.2363C145.439 47.1126 145.311 46.9661 145.22 46.7969C145.129 46.6276 145.083 46.4323 145.083 46.2109C145.083 45.9961 145.13 45.7926 145.225 45.6006C145.319 45.4085 145.454 45.2393 145.63 45.0928C145.806 44.9463 146.019 44.8307 146.27 44.7461C146.523 44.6615 146.807 44.6191 147.119 44.6191C147.562 44.6191 147.941 44.694 148.257 44.8438C148.576 44.9902 148.82 45.1904 148.989 45.4443C149.159 45.695 149.243 45.9782 149.243 46.2939H148.066C148.066 46.154 148.031 46.0238 147.959 45.9033C147.891 45.7796 147.786 45.6803 147.646 45.6055C147.507 45.5273 147.331 45.4883 147.119 45.4883C146.917 45.4883 146.75 45.5208 146.616 45.5859C146.486 45.6478 146.388 45.7292 146.323 45.8301C146.261 45.931 146.23 46.0417 146.23 46.1621C146.23 46.25 146.247 46.3298 146.279 46.4014C146.315 46.4697 146.374 46.5332 146.455 46.5918C146.536 46.6471 146.647 46.6992 146.787 46.748C146.93 46.7969 147.109 46.8441 147.324 46.8896C147.728 46.9743 148.075 47.0833 148.364 47.2168C148.657 47.347 148.882 47.5163 149.038 47.7246C149.194 47.9297 149.272 48.1901 149.272 48.5059C149.272 48.7402 149.222 48.9551 149.121 49.1504C149.023 49.3424 148.88 49.5101 148.691 49.6533C148.503 49.7933 148.276 49.9023 148.013 49.9805C147.752 50.0586 147.459 50.0977 147.134 50.0977C146.655 50.0977 146.25 50.013 145.918 49.8438C145.586 49.6712 145.334 49.4515 145.161 49.1846C144.992 48.9144 144.907 48.6344 144.907 48.3447H146.045C146.058 48.5628 146.118 48.737 146.226 48.8672C146.336 48.9941 146.473 49.0869 146.636 49.1455C146.802 49.2008 146.973 49.2285 147.148 49.2285C147.36 49.2285 147.537 49.2008 147.681 49.1455C147.824 49.0869 147.933 49.0088 148.008 48.9111C148.083 48.8102 148.12 48.6963 148.12 48.5693Z",fill:"white"})),(0,C.createElement)("defs",null,(0,C.createElement)("clipPath",{id:"clip0_2_3821"},(0,C.createElement)("rect",{width:"268",height:"70",rx:"4",fill:"white"})))),V=window.wp.blockEditor,{useCaptchaProvider:H}=JetFBHooks,{ToggleControl:d,BaseHelp:m}=JetFBComponents,{globalTab:h}=JetFBActions,L=h({slug:"captcha-tab",element:"google",empty:{}}),g=function({isSelected:l,attributes:r}){const a=(0,V.useBlockProps)(),[o,n]=H(),i=o.use_global?L:o;return r.isPreview?(0,C.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},s):(0,C.createElement)(C.Fragment,null,(0,C.createElement)("div",{...a},l?(0,C.createElement)("div",null,(0,C.createElement)(d,{checked:o.use_global,onChange:C=>n({use_global:C})},(0,t.__)("Use","jet-form-builder")+" ",(0,C.createElement)("a",{href:JetFormEditorData.global_settings_url+"#captcha-tab__google"},(0,t.__)("Global Settings","jet-form-builder"))),(0,C.createElement)(e.TextControl,{label:(0,t.__)("Site Key:","jet-form-builder"),value:i.key,disabled:o.use_global,onChange:C=>n({key:C})}),(0,C.createElement)(e.TextControl,{label:(0,t.__)("Secret Key:","jet-form-builder"),value:i.secret,disabled:o.use_global,onChange:C=>n({secret:C})}),(0,C.createElement)(e.__experimentalNumberControl,{label:(0,t.__)("Score Threshold","jet-form-builder"),labelPosition:"top",value:i.threshold,disabled:o.use_global,min:0,max:1,step:.1,placeholder:"0.5",onChange:C=>n({threshold:C})}),(0,C.createElement)(m,null,(0,t.__)("It should be a value between 0 and 1, default 0.5 (1.0 is very likely a good interaction, 0.0 is very likely a bot).","jet-form-builder"),(0,C.createElement)("br",null),(0,C.createElement)(e.ExternalLink,{href:"https://www.google.com/recaptcha/admin/create"},(0,t.__)("Register reCAPTCHA v3 keys here","jet-form-builder")))):s),(0,C.createElement)(V.InspectorControls,null,(0,C.createElement)("div",{style:{padding:"20px"}},(0,C.createElement)(c,null))))},{CaptchaOptions:u,CaptchaBlockEdit:b}=JetFBComponents,{__:M}=wp.i18n,p={name:"google",title:M("reCaptcha","jet-form-builder"),isActive:(C,e)=>C.provider===e.provider,description:M("Set the reCaptcha settings in the Captcha Container block to enable web hosts to distinguish between human and automated website access.","jet-form-builder"),icon:(0,C.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("path",{d:"M50.9219 43.871C51.2755 43.4467 51.2181 42.8161 50.7939 42.4625C50.3696 42.109 49.739 42.1663 49.3854 42.5906L44.8942 47.9801L42.8992 45.9852C42.5087 45.5947 41.8755 45.5947 41.485 45.9852C41.0945 46.3757 41.0945 47.0089 41.485 47.3994L43.8671 49.7815C44.4908 50.4052 45.5154 50.3587 46.0801 49.6811L50.9219 43.871Z",fill:"currentColor"}),(0,C.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31.3934 20.9546C35.1005 20.9087 39.1075 23.2 41.0897 26.311L36.6899 30.7108C36.0599 31.3408 36.5061 32.4179 37.397 32.4179H54.0255C54.5778 32.4179 55.0255 31.9702 55.0255 31.4179V14.7917C55.0255 13.9007 53.9484 13.4546 53.3184 14.0845L49.7621 17.6409C45.4542 12.3679 38.9009 9 31.5606 9C25.6407 9 19.7134 9.0244 13.7914 9.02503C12.9005 9.02512 12.4543 10.1023 13.0843 10.7322L16.6407 14.2886C14.0776 16.3825 8.00073 22.5 8.00073 32.4911C8.02024 38.3671 8.02476 44.2444 8.02476 50.121C8.02476 51.0119 9.1019 51.4581 9.73186 50.8281L13.2882 47.2718C19.4998 55 30.8842 58.0108 40.288 54.2093C41.9073 55.3381 43.8762 56 45.9997 56C51.5226 56 55.9997 51.5229 55.9997 46C55.9997 40.4772 51.5226 36 45.9997 36C41.6072 36 37.8761 38.8321 36.5329 42.77C31.4133 45.314 25.0427 43.4389 21.9606 38.6017L26.3509 34.2114C26.9822 33.5801 26.5329 32.5006 25.6401 32.5037C23.737 32.5102 21.8125 32.5155 19.9533 32.519C19.945 28.7424 22.1595 24.9689 25.3107 22.961L29.701 27.3513C30.3323 27.9826 31.4118 27.5333 31.4087 26.6405C31.4022 24.7377 31.3969 22.8135 31.3934 20.9546ZM53.0255 17.2059L49.6124 20.6189C44.5338 14.4024 38.9998 11.0072 31.4037 11.0072C31.3902 13.0876 31.3871 15.8664 31.3905 18.9545C36.7567 18.8957 40.9998 22 43.639 26.5901L39.8112 30.4179H53.0255V17.2059ZM19.6187 14.4382L16.205 11.0246C20.6037 11.0233 25.0036 11.0193 29.4035 11.0072C29.3828 14.2398 29.3869 19.182 29.4012 24.223L25.5898 20.4117C21.4998 22 17.9533 27.5 17.9533 32.5219L9.99976 32.5088C9.99366 24.909 13.9998 18.5 19.6187 14.4382ZM36.0348 45.1567C35.8057 47.9002 36.7368 50.6706 38.5879 52.7131C29.0923 56.0344 18.4998 52 13.4378 44.2937L10.0248 47.7068V34.509C13.2609 34.5295 18.1944 34.5255 23.2226 34.5112L19.4113 38.3226C21.9998 44 29.4201 47.5654 36.0348 45.1567ZM45.9997 38C41.5815 38 37.9998 41.5817 37.9998 46C37.9998 50.4183 41.5815 54 45.9997 54C50.418 54 53.9997 50.4183 53.9997 46C53.9997 41.5817 50.418 38 45.9997 38Z",fill:"currentColor"})),scope:["block","inserter"],attributes:{provider:"google"}},{registerPlugin:Z}=wp.plugins,{registerBlockVariation:_}=wp.blocks;_("jet-forms/captcha-container",p),Z("jf-re-captcha-v3",{render:function(){return(0,C.createElement)(C.Fragment,null,(0,C.createElement)(u,{provider:"google"},e=>(0,C.createElement)(c,{...e})),(0,C.createElement)(b,{provider:"google"},e=>(0,C.createElement)(g,{...e})))}})})(); \ No newline at end of file +(()=>{"use strict";const C=window.React,e=window.wp.components,t=window.wp.i18n,{ToggleControl:l,BaseHelp:r}=JetFBComponents,{useCaptchaProvider:a}=JetFBHooks,{useEffect:o}=wp.element,{globalTab:n}=JetFBActions,i=n({slug:"captcha-tab",element:"google",empty:{}}),c=function(){const[n,c]=a(),s=n.use_global?i:n;return o((()=>{c({key:s.key,secret:s.secret,threshold:s.threshold})}),[n.use_global]),(0,C.createElement)(C.Fragment,null,(0,C.createElement)(l,{checked:n.use_global,onChange:C=>c({use_global:C})},(0,t.__)("Use","jet-form-builder")+" ",(0,C.createElement)("a",{href:JetFormEditorData.global_settings_url+"#captcha-tab__google"},(0,t.__)("Global Settings","jet-form-builder"))),(0,C.createElement)(e.TextControl,{label:(0,t.__)("Site Key:","jet-form-builder"),value:s.key,disabled:n.use_global,onChange:C=>c({key:C})}),(0,C.createElement)(e.TextControl,{label:(0,t.__)("Secret Key:","jet-form-builder"),value:s.secret,disabled:n.use_global,onChange:C=>c({secret:C})}),(0,C.createElement)(e.__experimentalNumberControl,{label:(0,t.__)("Score Threshold","jet-form-builder"),labelPosition:"top",value:s.threshold,disabled:n.use_global,min:0,max:1,step:.1,placeholder:"0.5",onChange:C=>c({threshold:C})}),(0,C.createElement)(r,{style:{margin:"1em 0"}},(0,t.__)("It should be a value between 0 and 1, default 0.5 (1.0 is very likely a good interaction, 0.0 is very likely a bot).","jet-form-builder")),(0,C.createElement)(e.ExternalLink,{href:"https://www.google.com/recaptcha/admin/create"},(0,t.__)("Register reCAPTCHA v3 keys here","jet-form-builder")))},s=(0,C.createElement)("svg",{width:"268",height:"70",viewBox:"0 0 268 70",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("g",{clipPath:"url(#clip0_2_3821)"},(0,C.createElement)("rect",{width:"268",height:"70",rx:"4",fill:"white"}),(0,C.createElement)("path",{d:"M54.6001 34.5153C54.5992 34.2342 54.5927 33.9546 54.5801 33.6764V17.814L50.1948 22.1993C46.6057 17.806 41.1457 15 35.03 15C28.6656 15 23.0115 18.0379 19.4373 22.7425L26.6253 30.0061C27.3298 28.7033 28.3305 27.5844 29.5371 26.7392C30.792 25.7599 32.5701 24.9592 35.0298 24.9592C35.3269 24.9592 35.5562 24.9939 35.7248 25.0594C38.7723 25.2999 41.4139 26.9818 42.9693 29.4228L37.8812 34.5109C44.3259 34.4856 51.6064 34.4708 54.5996 34.5142",fill:"#1C3AA9"}),(0,C.createElement)("path",{d:"M34.9154 15.0007C34.6344 15.0017 34.3548 15.0082 34.0766 15.0208H18.2141L22.5994 19.4061C18.2062 22.9952 15.4001 28.4552 15.4001 34.5709C15.4001 40.9353 18.4381 46.5894 23.1426 50.1636L30.4063 42.9755C29.1035 42.2711 27.9845 41.2704 27.1394 40.0638C26.1601 38.8088 25.3594 37.0308 25.3594 34.5711C25.3594 34.274 25.3941 34.0446 25.4595 33.8761C25.7 30.8286 27.3819 28.187 29.823 26.6316L34.911 31.7196C34.8858 25.275 34.8709 17.9945 34.9143 15.0013",fill:"#4285F4"}),(0,C.createElement)("path",{d:"M15.4009 34.5706C15.4018 34.8516 15.4083 35.1312 15.4209 35.4094V51.2719L19.8062 46.8866C23.3953 51.2798 28.8553 54.0859 34.971 54.0859C41.3354 54.0859 46.9895 51.048 50.5637 46.3434L43.3757 39.0797C42.6712 40.3825 41.6705 41.5015 40.4639 42.3466C39.209 43.3259 37.4309 44.1266 34.9712 44.1266C34.6741 44.1266 34.4448 44.0919 34.2762 44.0265C31.2287 43.786 28.5871 42.1041 27.0317 39.663L32.1198 34.575C25.6751 34.6002 18.3946 34.6151 15.4014 34.5717",fill:"#ABABAB"}),(0,C.createElement)("rect",{width:"198",height:"70",transform:"translate(70)",fill:"#4272F9"}),(0,C.createElement)("path",{d:"M82.8278 24.1719V34.25H81.3747V22.5469H82.7028L82.8278 24.1719ZM88.5231 26.7031V26.8672C88.5231 27.4818 88.4502 28.0521 88.3044 28.5781C88.1585 29.099 87.945 29.5521 87.6637 29.9375C87.3877 30.3229 87.0466 30.6224 86.6403 30.8359C86.2341 31.0495 85.7679 31.1562 85.2419 31.1562C84.7054 31.1562 84.2315 31.0677 83.82 30.8906C83.4085 30.7135 83.0596 30.4557 82.7731 30.1172C82.4867 29.7786 82.2575 29.3724 82.0856 28.8984C81.919 28.4245 81.8044 27.8906 81.7419 27.2969V26.4219C81.8044 25.7969 81.9216 25.237 82.0934 24.7422C82.2653 24.2474 82.4919 23.8255 82.7731 23.4766C83.0596 23.1224 83.4059 22.8542 83.8122 22.6719C84.2184 22.4844 84.6872 22.3906 85.2184 22.3906C85.7497 22.3906 86.221 22.4948 86.6325 22.7031C87.044 22.9062 87.3903 23.1979 87.6716 23.5781C87.9528 23.9583 88.1637 24.4141 88.3044 24.9453C88.4502 25.4714 88.5231 26.0573 88.5231 26.7031ZM87.07 26.8672V26.7031C87.07 26.2812 87.0257 25.8854 86.9372 25.5156C86.8486 25.1406 86.7106 24.8125 86.5231 24.5312C86.3408 24.2448 86.1065 24.0208 85.82 23.8594C85.5335 23.6927 85.1924 23.6094 84.7966 23.6094C84.432 23.6094 84.1143 23.6719 83.8434 23.7969C83.5778 23.9219 83.3512 24.0911 83.1637 24.3047C82.9762 24.513 82.8226 24.7526 82.7028 25.0234C82.5882 25.2891 82.5023 25.5651 82.445 25.8516V27.875C82.5492 28.2396 82.695 28.5833 82.8825 28.9062C83.07 29.224 83.32 29.4818 83.6325 29.6797C83.945 29.8724 84.3382 29.9688 84.8122 29.9688C85.2028 29.9688 85.5387 29.888 85.82 29.7266C86.1065 29.5599 86.3408 29.3333 86.5231 29.0469C86.7106 28.7604 86.8486 28.4323 86.9372 28.0625C87.0257 27.6875 87.07 27.2891 87.07 26.8672ZM91.6522 23.875V31H90.2069V22.5469H91.6131L91.6522 23.875ZM94.2928 22.5L94.285 23.8438C94.1652 23.8177 94.0506 23.8021 93.9412 23.7969C93.8371 23.7865 93.7173 23.7812 93.5819 23.7812C93.2485 23.7812 92.9543 23.8333 92.6991 23.9375C92.4439 24.0417 92.2277 24.1875 92.0506 24.375C91.8735 24.5625 91.7329 24.7865 91.6287 25.0469C91.5298 25.3021 91.4647 25.5833 91.4334 25.8906L91.0272 26.125C91.0272 25.6146 91.0767 25.1354 91.1756 24.6875C91.2798 24.2396 91.4386 23.8438 91.6522 23.5C91.8657 23.151 92.1366 22.8802 92.4647 22.6875C92.798 22.4896 93.1939 22.3906 93.6522 22.3906C93.7564 22.3906 93.8761 22.4036 94.0116 22.4297C94.147 22.4505 94.2407 22.474 94.2928 22.5ZM94.9297 26.8672V26.6875C94.9297 26.0781 95.0182 25.513 95.1953 24.9922C95.3724 24.4661 95.6276 24.0104 95.9609 23.625C96.2943 23.2344 96.6979 22.9323 97.1719 22.7188C97.6458 22.5 98.1771 22.3906 98.7656 22.3906C99.3594 22.3906 99.8932 22.5 100.367 22.7188C100.846 22.9323 101.253 23.2344 101.586 23.625C101.924 24.0104 102.182 24.4661 102.359 24.9922C102.536 25.513 102.625 26.0781 102.625 26.6875V26.8672C102.625 27.4766 102.536 28.0417 102.359 28.5625C102.182 29.0833 101.924 29.5391 101.586 29.9297C101.253 30.3151 100.849 30.6172 100.375 30.8359C99.9062 31.0495 99.375 31.1562 98.7812 31.1562C98.1875 31.1562 97.6536 31.0495 97.1797 30.8359C96.7057 30.6172 96.2995 30.3151 95.9609 29.9297C95.6276 29.5391 95.3724 29.0833 95.1953 28.5625C95.0182 28.0417 94.9297 27.4766 94.9297 26.8672ZM96.375 26.6875V26.8672C96.375 27.2891 96.4245 27.6875 96.5234 28.0625C96.6224 28.4323 96.7708 28.7604 96.9688 29.0469C97.1719 29.3333 97.4245 29.5599 97.7266 29.7266C98.0286 29.888 98.3802 29.9688 98.7812 29.9688C99.1771 29.9688 99.5234 29.888 99.8203 29.7266C100.122 29.5599 100.372 29.3333 100.57 29.0469C100.768 28.7604 100.917 28.4323 101.016 28.0625C101.12 27.6875 101.172 27.2891 101.172 26.8672V26.6875C101.172 26.2708 101.12 25.8776 101.016 25.5078C100.917 25.1328 100.766 24.8021 100.562 24.5156C100.365 24.224 100.115 23.9948 99.8125 23.8281C99.5156 23.6615 99.1667 23.5781 98.7656 23.5781C98.3698 23.5781 98.0208 23.6615 97.7188 23.8281C97.4219 23.9948 97.1719 24.224 96.9688 24.5156C96.7708 24.8021 96.6224 25.1328 96.5234 25.5078C96.4245 25.8776 96.375 26.2708 96.375 26.6875ZM107.817 22.5469V23.6562H103.246V22.5469H107.817ZM104.793 20.4922H106.238V28.9062C106.238 29.1927 106.283 29.4089 106.371 29.5547C106.46 29.7005 106.574 29.7969 106.715 29.8438C106.856 29.8906 107.007 29.9141 107.168 29.9141C107.288 29.9141 107.413 29.9036 107.543 29.8828C107.679 29.8568 107.78 29.8359 107.848 29.8203L107.856 31C107.741 31.0365 107.59 31.0703 107.403 31.1016C107.22 31.138 106.999 31.1562 106.738 31.1562C106.384 31.1562 106.059 31.0859 105.762 30.9453C105.465 30.8047 105.228 30.5703 105.051 30.2422C104.879 29.9089 104.793 29.4609 104.793 28.8984V20.4922ZM112.86 31.1562C112.271 31.1562 111.737 31.0573 111.258 30.8594C110.784 30.6562 110.375 30.3724 110.032 30.0078C109.693 29.6432 109.433 29.2109 109.25 28.7109C109.068 28.2109 108.977 27.6641 108.977 27.0703V26.7422C108.977 26.0547 109.078 25.4427 109.282 24.9062C109.485 24.3646 109.761 23.9062 110.11 23.5312C110.459 23.1562 110.854 22.8724 111.297 22.6797C111.74 22.487 112.198 22.3906 112.672 22.3906C113.276 22.3906 113.797 22.4948 114.235 22.7031C114.677 22.9115 115.039 23.2031 115.321 23.5781C115.602 23.9479 115.81 24.3854 115.946 24.8906C116.081 25.3906 116.149 25.9375 116.149 26.5312V27.1797H109.836V26H114.703V25.8906C114.683 25.5156 114.604 25.151 114.469 24.7969C114.339 24.4427 114.131 24.151 113.844 23.9219C113.558 23.6927 113.167 23.5781 112.672 23.5781C112.344 23.5781 112.042 23.6484 111.766 23.7891C111.49 23.9245 111.253 24.1276 111.055 24.3984C110.857 24.6693 110.703 25 110.594 25.3906C110.485 25.7812 110.43 26.2318 110.43 26.7422V27.0703C110.43 27.4714 110.485 27.849 110.594 28.2031C110.709 28.5521 110.873 28.8594 111.086 29.125C111.305 29.3906 111.568 29.599 111.875 29.75C112.188 29.901 112.542 29.9766 112.938 29.9766C113.448 29.9766 113.881 29.8724 114.235 29.6641C114.589 29.4557 114.899 29.1771 115.164 28.8281L116.039 29.5234C115.857 29.7995 115.625 30.0625 115.344 30.3125C115.063 30.5625 114.716 30.7656 114.305 30.9219C113.899 31.0781 113.417 31.1562 112.86 31.1562ZM121.059 29.9688C121.403 29.9688 121.721 29.8984 122.012 29.7578C122.304 29.6172 122.543 29.4245 122.731 29.1797C122.918 28.9297 123.025 28.6458 123.051 28.3281H124.426C124.4 28.8281 124.231 29.2943 123.918 29.7266C123.611 30.1536 123.208 30.5 122.708 30.7656C122.208 31.026 121.658 31.1562 121.059 31.1562C120.424 31.1562 119.869 31.0443 119.395 30.8203C118.926 30.5964 118.536 30.2891 118.223 29.8984C117.916 29.5078 117.684 29.0599 117.528 28.5547C117.377 28.0443 117.301 27.5052 117.301 26.9375V26.6094C117.301 26.0417 117.377 25.5052 117.528 25C117.684 24.4896 117.916 24.0391 118.223 23.6484C118.536 23.2578 118.926 22.9505 119.395 22.7266C119.869 22.5026 120.424 22.3906 121.059 22.3906C121.721 22.3906 122.299 22.526 122.793 22.7969C123.288 23.0625 123.676 23.4271 123.958 23.8906C124.244 24.349 124.4 24.8698 124.426 25.4531H123.051C123.025 25.1042 122.926 24.7891 122.754 24.5078C122.588 24.2266 122.359 24.0026 122.067 23.8359C121.78 23.6641 121.444 23.5781 121.059 23.5781C120.616 23.5781 120.244 23.6667 119.942 23.8438C119.645 24.0156 119.408 24.25 119.231 24.5469C119.059 24.8385 118.934 25.1641 118.856 25.5234C118.783 25.8776 118.747 26.2396 118.747 26.6094V26.9375C118.747 27.3073 118.783 27.6719 118.856 28.0312C118.929 28.3906 119.051 28.7161 119.223 29.0078C119.4 29.2995 119.637 29.5339 119.934 29.7109C120.236 29.8828 120.611 29.9688 121.059 29.9688ZM129.43 22.5469V23.6562H124.86V22.5469H129.43ZM126.407 20.4922H127.852V28.9062C127.852 29.1927 127.896 29.4089 127.985 29.5547C128.074 29.7005 128.188 29.7969 128.329 29.8438C128.469 29.8906 128.62 29.9141 128.782 29.9141C128.902 29.9141 129.027 29.9036 129.157 29.8828C129.292 29.8568 129.394 29.8359 129.462 29.8203L129.469 31C129.355 31.0365 129.204 31.0703 129.016 31.1016C128.834 31.138 128.613 31.1562 128.352 31.1562C127.998 31.1562 127.673 31.0859 127.376 30.9453C127.079 30.8047 126.842 30.5703 126.665 30.2422C126.493 29.9089 126.407 29.4609 126.407 28.8984V20.4922ZM134.473 31.1562C133.885 31.1562 133.351 31.0573 132.872 30.8594C132.398 30.6562 131.989 30.3724 131.645 30.0078C131.307 29.6432 131.046 29.2109 130.864 28.7109C130.682 28.2109 130.591 27.6641 130.591 27.0703V26.7422C130.591 26.0547 130.692 25.4427 130.895 24.9062C131.098 24.3646 131.374 23.9062 131.723 23.5312C132.072 23.1562 132.468 22.8724 132.911 22.6797C133.354 22.487 133.812 22.3906 134.286 22.3906C134.89 22.3906 135.411 22.4948 135.848 22.7031C136.291 22.9115 136.653 23.2031 136.934 23.5781C137.216 23.9479 137.424 24.3854 137.559 24.8906C137.695 25.3906 137.763 25.9375 137.763 26.5312V27.1797H131.45V26H136.317V25.8906C136.296 25.5156 136.218 25.151 136.083 24.7969C135.953 24.4427 135.744 24.151 135.458 23.9219C135.171 23.6927 134.781 23.5781 134.286 23.5781C133.958 23.5781 133.656 23.6484 133.38 23.7891C133.104 23.9245 132.867 24.1276 132.669 24.3984C132.471 24.6693 132.317 25 132.208 25.3906C132.098 25.7812 132.044 26.2318 132.044 26.7422V27.0703C132.044 27.4714 132.098 27.849 132.208 28.2031C132.322 28.5521 132.486 28.8594 132.7 29.125C132.919 29.3906 133.182 29.599 133.489 29.75C133.802 29.901 134.156 29.9766 134.552 29.9766C135.062 29.9766 135.494 29.8724 135.848 29.6641C136.203 29.4557 136.513 29.1771 136.778 28.8281L137.653 29.5234C137.471 29.7995 137.239 30.0625 136.958 30.3125C136.677 30.5625 136.33 30.7656 135.919 30.9219C135.513 31.0781 135.031 31.1562 134.473 31.1562ZM144.618 29.3594V19H146.071V31H144.743L144.618 29.3594ZM138.931 26.8672V26.7031C138.931 26.0573 139.009 25.4714 139.165 24.9453C139.326 24.4141 139.553 23.9583 139.845 23.5781C140.142 23.1979 140.493 22.9062 140.899 22.7031C141.311 22.4948 141.769 22.3906 142.274 22.3906C142.806 22.3906 143.269 22.4844 143.665 22.6719C144.066 22.8542 144.405 23.1224 144.681 23.4766C144.962 23.8255 145.183 24.2474 145.345 24.7422C145.506 25.237 145.618 25.7969 145.681 26.4219V27.1406C145.623 27.7604 145.511 28.3177 145.345 28.8125C145.183 29.3073 144.962 29.7292 144.681 30.0781C144.405 30.4271 144.066 30.6953 143.665 30.8828C143.264 31.0651 142.795 31.1562 142.259 31.1562C141.764 31.1562 141.311 31.0495 140.899 30.8359C140.493 30.6224 140.142 30.3229 139.845 29.9375C139.553 29.5521 139.326 29.099 139.165 28.5781C139.009 28.0521 138.931 27.4818 138.931 26.8672ZM140.384 26.7031V26.8672C140.384 27.2891 140.425 27.6849 140.509 28.0547C140.597 28.4245 140.733 28.75 140.915 29.0312C141.097 29.3125 141.329 29.5339 141.61 29.6953C141.892 29.8516 142.228 29.9297 142.618 29.9297C143.097 29.9297 143.491 29.8281 143.798 29.625C144.11 29.4219 144.36 29.1536 144.548 28.8203C144.735 28.487 144.881 28.125 144.985 27.7344V25.8516C144.923 25.5651 144.832 25.2891 144.712 25.0234C144.597 24.7526 144.446 24.513 144.259 24.3047C144.076 24.0911 143.85 23.9219 143.579 23.7969C143.313 23.6719 142.998 23.6094 142.634 23.6094C142.238 23.6094 141.897 23.6927 141.61 23.8594C141.329 24.0208 141.097 24.2448 140.915 24.5312C140.733 24.8125 140.597 25.1406 140.509 25.5156C140.425 25.8854 140.384 26.2812 140.384 26.7031ZM151.962 19H153.415V29.3594L153.29 31H151.962V19ZM159.126 26.7031V26.8672C159.126 27.4818 159.053 28.0521 158.908 28.5781C158.762 29.099 158.548 29.5521 158.267 29.9375C157.986 30.3229 157.642 30.6224 157.236 30.8359C156.829 31.0495 156.363 31.1562 155.837 31.1562C155.301 31.1562 154.829 31.0651 154.423 30.8828C154.022 30.6953 153.684 30.4271 153.408 30.0781C153.131 29.7292 152.91 29.3073 152.743 28.8125C152.582 28.3177 152.47 27.7604 152.408 27.1406V26.4219C152.47 25.7969 152.582 25.237 152.743 24.7422C152.91 24.2474 153.131 23.8255 153.408 23.4766C153.684 23.1224 154.022 22.8542 154.423 22.6719C154.824 22.4844 155.29 22.3906 155.822 22.3906C156.353 22.3906 156.824 22.4948 157.236 22.7031C157.647 22.9062 157.991 23.1979 158.267 23.5781C158.548 23.9583 158.762 24.4141 158.908 24.9453C159.053 25.4714 159.126 26.0573 159.126 26.7031ZM157.673 26.8672V26.7031C157.673 26.2812 157.634 25.8854 157.556 25.5156C157.478 25.1406 157.353 24.8125 157.181 24.5312C157.009 24.2448 156.783 24.0208 156.501 23.8594C156.22 23.6927 155.874 23.6094 155.462 23.6094C155.098 23.6094 154.78 23.6719 154.509 23.7969C154.243 23.9219 154.017 24.0911 153.829 24.3047C153.642 24.513 153.488 24.7526 153.368 25.0234C153.254 25.2891 153.168 25.5651 153.111 25.8516V27.7344C153.194 28.099 153.329 28.4505 153.517 28.7891C153.71 29.1224 153.965 29.3958 154.283 29.6094C154.605 29.8229 155.004 29.9297 155.478 29.9297C155.868 29.9297 156.202 29.8516 156.478 29.6953C156.759 29.5339 156.986 29.3125 157.158 29.0312C157.335 28.75 157.465 28.4245 157.548 28.0547C157.631 27.6849 157.673 27.2891 157.673 26.8672ZM163.076 30.125L165.427 22.5469H166.974L163.583 32.3047C163.505 32.513 163.401 32.737 163.271 32.9766C163.146 33.2214 162.984 33.4531 162.787 33.6719C162.589 33.8906 162.349 34.0677 162.068 34.2031C161.792 34.3438 161.461 34.4141 161.076 34.4141C160.961 34.4141 160.815 34.3984 160.638 34.3672C160.461 34.3359 160.336 34.3099 160.263 34.2891L160.255 33.1172C160.297 33.1224 160.362 33.1276 160.451 33.1328C160.544 33.1432 160.609 33.1484 160.646 33.1484C160.974 33.1484 161.253 33.1042 161.482 33.0156C161.711 32.9323 161.904 32.7891 162.06 32.5859C162.221 32.388 162.359 32.1146 162.474 31.7656L163.076 30.125ZM161.349 22.5469L163.544 29.1094L163.919 30.6328L162.88 31.1641L159.771 22.5469H161.349ZM173.373 23.875V31H171.927V22.5469H173.334L173.373 23.875ZM176.013 22.5L176.006 23.8438C175.886 23.8177 175.771 23.8021 175.662 23.7969C175.558 23.7865 175.438 23.7812 175.302 23.7812C174.969 23.7812 174.675 23.8333 174.42 23.9375C174.164 24.0417 173.948 24.1875 173.771 24.375C173.594 24.5625 173.454 24.7865 173.349 25.0469C173.25 25.3021 173.185 25.5833 173.154 25.8906L172.748 26.125C172.748 25.6146 172.797 25.1354 172.896 24.6875C173 24.2396 173.159 23.8438 173.373 23.5C173.586 23.151 173.857 22.8802 174.185 22.6875C174.519 22.4896 174.914 22.3906 175.373 22.3906C175.477 22.3906 175.597 22.4036 175.732 22.4297C175.868 22.4505 175.961 22.474 176.013 22.5ZM180.381 31.1562C179.792 31.1562 179.259 31.0573 178.779 30.8594C178.305 30.6562 177.897 30.3724 177.553 30.0078C177.214 29.6432 176.954 29.2109 176.772 28.7109C176.589 28.2109 176.498 27.6641 176.498 27.0703V26.7422C176.498 26.0547 176.6 25.4427 176.803 24.9062C177.006 24.3646 177.282 23.9062 177.631 23.5312C177.98 23.1562 178.376 22.8724 178.818 22.6797C179.261 22.487 179.719 22.3906 180.193 22.3906C180.798 22.3906 181.318 22.4948 181.756 22.7031C182.199 22.9115 182.561 23.2031 182.842 23.5781C183.123 23.9479 183.331 24.3854 183.467 24.8906C183.602 25.3906 183.67 25.9375 183.67 26.5312V27.1797H177.357V26H182.225V25.8906C182.204 25.5156 182.126 25.151 181.99 24.7969C181.86 24.4427 181.652 24.151 181.365 23.9219C181.079 23.6927 180.688 23.5781 180.193 23.5781C179.865 23.5781 179.563 23.6484 179.287 23.7891C179.011 23.9245 178.774 24.1276 178.576 24.3984C178.378 24.6693 178.225 25 178.115 25.3906C178.006 25.7812 177.951 26.2318 177.951 26.7422V27.0703C177.951 27.4714 178.006 27.849 178.115 28.2031C178.23 28.5521 178.394 28.8594 178.607 29.125C178.826 29.3906 179.089 29.599 179.397 29.75C179.709 29.901 180.063 29.9766 180.459 29.9766C180.969 29.9766 181.402 29.8724 181.756 29.6641C182.11 29.4557 182.42 29.1771 182.686 28.8281L183.561 29.5234C183.378 29.7995 183.147 30.0625 182.865 30.3125C182.584 30.5625 182.238 30.7656 181.826 30.9219C181.42 31.0781 180.938 31.1562 180.381 31.1562ZM192.123 27.3828H193.623C193.545 28.1016 193.34 28.7448 193.006 29.3125C192.673 29.8802 192.202 30.3307 191.592 30.6641C190.983 30.9922 190.222 31.1562 189.311 31.1562C188.644 31.1562 188.037 31.0312 187.491 30.7812C186.949 30.5312 186.483 30.1771 186.092 29.7188C185.702 29.2552 185.399 28.7005 185.186 28.0547C184.978 27.4036 184.873 26.6797 184.873 25.8828V24.75C184.873 23.9531 184.978 23.2318 185.186 22.5859C185.399 21.9349 185.704 21.3776 186.1 20.9141C186.501 20.4505 186.983 20.0938 187.545 19.8438C188.108 19.5938 188.741 19.4688 189.444 19.4688C190.303 19.4688 191.03 19.6302 191.623 19.9531C192.217 20.276 192.678 20.724 193.006 21.2969C193.34 21.8646 193.545 22.5234 193.623 23.2734H192.123C192.051 22.7422 191.915 22.2865 191.717 21.9062C191.519 21.5208 191.238 21.224 190.873 21.0156C190.509 20.8073 190.032 20.7031 189.444 20.7031C188.939 20.7031 188.493 20.7995 188.108 20.9922C187.728 21.1849 187.407 21.4583 187.147 21.8125C186.892 22.1667 186.699 22.5911 186.569 23.0859C186.439 23.5807 186.373 24.1302 186.373 24.7344V25.8828C186.373 26.4401 186.431 26.9635 186.545 27.4531C186.665 27.9427 186.845 28.3724 187.084 28.7422C187.324 29.112 187.629 29.4036 187.998 29.6172C188.368 29.8255 188.806 29.9297 189.311 29.9297C189.952 29.9297 190.462 29.8281 190.842 29.625C191.222 29.4219 191.509 29.1302 191.702 28.75C191.899 28.3698 192.04 27.9141 192.123 27.3828ZM199.569 20.6328L195.803 31H194.264L198.6 19.625H199.592L199.569 20.6328ZM202.725 31L198.952 20.6328L198.928 19.625H199.921L204.272 31H202.725ZM202.53 26.7891V28.0234H196.139V26.7891H202.53ZM209.671 26.5391H206.632V25.3125H209.671C210.259 25.3125 210.736 25.2188 211.101 25.0312C211.465 24.8438 211.731 24.5833 211.897 24.25C212.069 23.9167 212.155 23.5365 212.155 23.1094C212.155 22.7188 212.069 22.3516 211.897 22.0078C211.731 21.6641 211.465 21.388 211.101 21.1797C210.736 20.9661 210.259 20.8594 209.671 20.8594H206.983V31H205.476V19.625H209.671C210.53 19.625 211.257 19.7734 211.851 20.0703C212.444 20.3672 212.895 20.7786 213.202 21.3047C213.509 21.8255 213.663 22.4219 213.663 23.0938C213.663 23.8229 213.509 24.4453 213.202 24.9609C212.895 25.4766 212.444 25.8698 211.851 26.1406C211.257 26.4062 210.53 26.5391 209.671 26.5391ZM219.453 19.625V31H217.968V19.625H219.453ZM223.109 19.625V20.8594H214.32V19.625H223.109ZM231.125 27.3828H232.625C232.547 28.1016 232.341 28.7448 232.008 29.3125C231.674 29.8802 231.203 30.3307 230.593 30.6641C229.984 30.9922 229.224 31.1562 228.312 31.1562C227.646 31.1562 227.039 31.0312 226.492 30.7812C225.95 30.5312 225.484 30.1771 225.093 29.7188C224.703 29.2552 224.401 28.7005 224.187 28.0547C223.979 27.4036 223.875 26.6797 223.875 25.8828V24.75C223.875 23.9531 223.979 23.2318 224.187 22.5859C224.401 21.9349 224.705 21.3776 225.101 20.9141C225.502 20.4505 225.984 20.0938 226.547 19.8438C227.109 19.5938 227.742 19.4688 228.445 19.4688C229.304 19.4688 230.031 19.6302 230.625 19.9531C231.218 20.276 231.679 20.724 232.008 21.2969C232.341 21.8646 232.547 22.5234 232.625 23.2734H231.125C231.052 22.7422 230.916 22.2865 230.718 21.9062C230.521 21.5208 230.239 21.224 229.875 21.0156C229.51 20.8073 229.034 20.7031 228.445 20.7031C227.94 20.7031 227.494 20.7995 227.109 20.9922C226.729 21.1849 226.409 21.4583 226.148 21.8125C225.893 22.1667 225.7 22.5911 225.57 23.0859C225.44 23.5807 225.375 24.1302 225.375 24.7344V25.8828C225.375 26.4401 225.432 26.9635 225.547 27.4531C225.666 27.9427 225.846 28.3724 226.086 28.7422C226.325 29.112 226.63 29.4036 227 29.6172C227.369 29.8255 227.807 29.9297 228.312 29.9297C228.953 29.9297 229.463 29.8281 229.843 29.625C230.224 29.4219 230.51 29.1302 230.703 28.75C230.901 28.3698 231.041 27.9141 231.125 27.3828ZM241.789 24.5156V25.7422H235.633V24.5156H241.789ZM235.867 19.625V31H234.359V19.625H235.867ZM243.102 19.625V31H241.602V19.625H243.102ZM249.813 20.6328L246.047 31H244.508L248.844 19.625H249.836L249.813 20.6328ZM252.969 31L249.196 20.6328L249.172 19.625H250.164L254.516 31H252.969ZM252.774 26.7891V28.0234H246.383V26.7891H252.774Z",fill:"white"}),(0,C.createElement)("path",{d:"M83.7256 47.3486H81.875V46.377H83.7256C84.0479 46.377 84.3083 46.3249 84.5068 46.2207C84.7054 46.1165 84.8503 45.9733 84.9414 45.791C85.0358 45.6055 85.083 45.3939 85.083 45.1562C85.083 44.9316 85.0358 44.7217 84.9414 44.5264C84.8503 44.3278 84.7054 44.1683 84.5068 44.0479C84.3083 43.9274 84.0479 43.8672 83.7256 43.8672H82.251V50H81.0254V42.8906H83.7256C84.2757 42.8906 84.7428 42.9883 85.127 43.1836C85.5143 43.3757 85.8089 43.6426 86.0107 43.9844C86.2126 44.3229 86.3135 44.7103 86.3135 45.1465C86.3135 45.6055 86.2126 45.9993 86.0107 46.3281C85.8089 46.6569 85.5143 46.9092 85.127 47.085C84.7428 47.2607 84.2757 47.3486 83.7256 47.3486ZM88.4766 45.7227V50H87.2998V44.7168H88.4229L88.4766 45.7227ZM90.0928 44.6826L90.083 45.7764C90.0114 45.7633 89.9333 45.7536 89.8486 45.7471C89.7673 45.7406 89.6859 45.7373 89.6045 45.7373C89.4027 45.7373 89.2253 45.7666 89.0723 45.8252C88.9193 45.8805 88.7907 45.9619 88.6865 46.0693C88.5856 46.1735 88.5075 46.3005 88.4521 46.4502C88.3968 46.5999 88.3643 46.7676 88.3545 46.9531L88.0859 46.9727C88.0859 46.6406 88.1185 46.333 88.1836 46.0498C88.2487 45.7666 88.3464 45.5176 88.4766 45.3027C88.61 45.0879 88.776 44.9202 88.9746 44.7998C89.1764 44.6794 89.4092 44.6191 89.6729 44.6191C89.7445 44.6191 89.821 44.6257 89.9023 44.6387C89.987 44.6517 90.0505 44.6663 90.0928 44.6826ZM92.0898 44.7168V50H90.9082V44.7168H92.0898ZM90.8301 43.3301C90.8301 43.151 90.8887 43.0029 91.0059 42.8857C91.1263 42.7653 91.2923 42.7051 91.5039 42.7051C91.7122 42.7051 91.8766 42.7653 91.9971 42.8857C92.1175 43.0029 92.1777 43.151 92.1777 43.3301C92.1777 43.5059 92.1175 43.6523 91.9971 43.7695C91.8766 43.8867 91.7122 43.9453 91.5039 43.9453C91.2923 43.9453 91.1263 43.8867 91.0059 43.7695C90.8887 43.6523 90.8301 43.5059 90.8301 43.3301ZM95.0977 49.0674L96.3916 44.7168H97.6123L95.7764 50H95.0146L95.0977 49.0674ZM94.1064 44.7168L95.4248 49.0869L95.4883 50H94.7266L92.8809 44.7168H94.1064ZM101.24 48.9404V46.4209C101.24 46.2321 101.206 46.0693 101.138 45.9326C101.069 45.7959 100.965 45.6901 100.825 45.6152C100.688 45.5404 100.516 45.5029 100.308 45.5029C100.116 45.5029 99.9495 45.5355 99.8096 45.6006C99.6696 45.6657 99.5605 45.7536 99.4824 45.8643C99.4043 45.9749 99.3652 46.1003 99.3652 46.2402H98.1934C98.1934 46.0319 98.2438 45.8301 98.3447 45.6348C98.4456 45.4395 98.5921 45.2653 98.7842 45.1123C98.9762 44.9593 99.2057 44.8389 99.4727 44.751C99.7396 44.6631 100.039 44.6191 100.371 44.6191C100.768 44.6191 101.12 44.6859 101.426 44.8193C101.735 44.9528 101.978 45.1546 102.153 45.4248C102.332 45.6917 102.422 46.027 102.422 46.4307V48.7793C102.422 49.0202 102.438 49.2367 102.471 49.4287C102.507 49.6175 102.557 49.7819 102.622 49.9219V50H101.416C101.361 49.873 101.317 49.7119 101.284 49.5166C101.255 49.318 101.24 49.126 101.24 48.9404ZM101.411 46.7871L101.421 47.5146H100.576C100.358 47.5146 100.166 47.5358 100 47.5781C99.834 47.6172 99.6956 47.6758 99.585 47.7539C99.4743 47.832 99.3913 47.9264 99.3359 48.0371C99.2806 48.1478 99.2529 48.2731 99.2529 48.4131C99.2529 48.5531 99.2855 48.6816 99.3506 48.7988C99.4157 48.9128 99.5101 49.0023 99.6338 49.0674C99.7607 49.1325 99.9137 49.165 100.093 49.165C100.334 49.165 100.544 49.1162 100.723 49.0186C100.905 48.9176 101.048 48.7956 101.152 48.6523C101.257 48.5059 101.312 48.3675 101.318 48.2373L101.699 48.7598C101.66 48.8932 101.593 49.0365 101.499 49.1895C101.405 49.3424 101.281 49.4889 101.128 49.6289C100.978 49.7656 100.798 49.8779 100.586 49.9658C100.378 50.0537 100.137 50.0977 99.8633 50.0977C99.5182 50.0977 99.2106 50.0293 98.9404 49.8926C98.6702 49.7526 98.4587 49.5654 98.3057 49.3311C98.1527 49.0934 98.0762 48.8249 98.0762 48.5254C98.0762 48.2454 98.1283 47.998 98.2324 47.7832C98.3398 47.5651 98.4961 47.3828 98.7012 47.2363C98.9095 47.0898 99.1634 46.9792 99.4629 46.9043C99.7624 46.8262 100.104 46.7871 100.488 46.7871H101.411ZM105.811 49.1602C106.003 49.1602 106.175 49.1227 106.328 49.0479C106.484 48.9697 106.61 48.8623 106.704 48.7256C106.802 48.5889 106.855 48.431 106.865 48.252H107.974C107.967 48.5938 107.866 48.9046 107.671 49.1846C107.476 49.4645 107.217 49.6875 106.895 49.8535C106.572 50.0163 106.216 50.0977 105.825 50.0977C105.422 50.0977 105.07 50.0293 104.771 49.8926C104.471 49.7526 104.222 49.5605 104.023 49.3164C103.825 49.0723 103.675 48.7907 103.574 48.4717C103.477 48.1527 103.428 47.8109 103.428 47.4463V47.2754C103.428 46.9108 103.477 46.569 103.574 46.25C103.675 45.9277 103.825 45.6445 104.023 45.4004C104.222 45.1562 104.471 44.9658 104.771 44.8291C105.07 44.6891 105.42 44.6191 105.82 44.6191C106.243 44.6191 106.615 44.7038 106.934 44.873C107.253 45.0391 107.503 45.2718 107.686 45.5713C107.871 45.8675 107.967 46.2126 107.974 46.6064H106.865C106.855 46.4111 106.807 46.2354 106.719 46.0791C106.634 45.9196 106.514 45.7926 106.357 45.6982C106.204 45.6038 106.021 45.5566 105.806 45.5566C105.568 45.5566 105.371 45.6055 105.215 45.7031C105.059 45.7975 104.937 45.9277 104.849 46.0938C104.761 46.2565 104.697 46.4404 104.658 46.6455C104.622 46.8473 104.604 47.0573 104.604 47.2754V47.4463C104.604 47.6644 104.622 47.876 104.658 48.0811C104.694 48.2861 104.756 48.4701 104.844 48.6328C104.935 48.7923 105.059 48.9209 105.215 49.0186C105.371 49.113 105.57 49.1602 105.811 49.1602ZM110.41 49.4238L111.846 44.7168H113.105L110.986 50.8057C110.938 50.9359 110.874 51.0775 110.796 51.2305C110.718 51.3835 110.615 51.5283 110.488 51.665C110.365 51.805 110.21 51.9173 110.024 52.002C109.839 52.0898 109.614 52.1338 109.351 52.1338C109.246 52.1338 109.146 52.124 109.048 52.1045C108.953 52.0882 108.864 52.0703 108.779 52.0508L108.774 51.1523C108.807 51.1556 108.846 51.1589 108.892 51.1621C108.94 51.1654 108.979 51.167 109.009 51.167C109.204 51.167 109.367 51.1426 109.497 51.0938C109.627 51.0482 109.733 50.9733 109.814 50.8691C109.899 50.765 109.971 50.625 110.029 50.4492L110.41 49.4238ZM109.6 44.7168L110.854 48.6719L111.064 49.9121L110.249 50.1221L108.33 44.7168H109.6ZM118.638 46.4941V47.4316H116.055V46.4941H118.638ZM124.966 42.8906V50H123.75V42.8906H124.966ZM127.197 42.8906V43.8672H121.538V42.8906H127.197ZM129.878 50.0977C129.487 50.0977 129.134 50.0342 128.818 49.9072C128.506 49.777 128.239 49.5964 128.018 49.3652C127.799 49.1341 127.632 48.8623 127.515 48.5498C127.397 48.2373 127.339 47.9004 127.339 47.5391V47.3438C127.339 46.9303 127.399 46.556 127.52 46.2207C127.64 45.8854 127.808 45.599 128.022 45.3613C128.237 45.1204 128.491 44.9365 128.784 44.8096C129.077 44.6826 129.395 44.6191 129.736 44.6191C130.114 44.6191 130.444 44.6826 130.728 44.8096C131.011 44.9365 131.245 45.1156 131.431 45.3467C131.619 45.5745 131.759 45.8464 131.851 46.1621C131.945 46.4779 131.992 46.8262 131.992 47.207V47.71H127.91V46.8652H130.83V46.7725C130.824 46.5609 130.781 46.3623 130.703 46.1768C130.628 45.9912 130.513 45.8415 130.356 45.7275C130.2 45.6136 129.992 45.5566 129.731 45.5566C129.536 45.5566 129.362 45.599 129.209 45.6836C129.059 45.765 128.934 45.8838 128.833 46.04C128.732 46.1963 128.654 46.3851 128.599 46.6064C128.547 46.8245 128.521 47.0703 128.521 47.3438V47.5391C128.521 47.7702 128.551 47.985 128.613 48.1836C128.678 48.3789 128.773 48.5498 128.896 48.6963C129.02 48.8428 129.17 48.9583 129.346 49.043C129.521 49.1243 129.722 49.165 129.946 49.165C130.229 49.165 130.482 49.1081 130.703 48.9941C130.924 48.8802 131.117 48.7191 131.279 48.5107L131.899 49.1113C131.785 49.2773 131.637 49.4368 131.455 49.5898C131.273 49.7396 131.05 49.8617 130.786 49.9561C130.526 50.0505 130.223 50.0977 129.878 50.0977ZM134.092 45.7227V50H132.915V44.7168H134.038L134.092 45.7227ZM135.708 44.6826L135.698 45.7764C135.627 45.7633 135.549 45.7536 135.464 45.7471C135.382 45.7406 135.301 45.7373 135.22 45.7373C135.018 45.7373 134.84 45.7666 134.688 45.8252C134.535 45.8805 134.406 45.9619 134.302 46.0693C134.201 46.1735 134.123 46.3005 134.067 46.4502C134.012 46.5999 133.979 46.7676 133.97 46.9531L133.701 46.9727C133.701 46.6406 133.734 46.333 133.799 46.0498C133.864 45.7666 133.962 45.5176 134.092 45.3027C134.225 45.0879 134.391 44.9202 134.59 44.7998C134.792 44.6794 135.024 44.6191 135.288 44.6191C135.36 44.6191 135.436 44.6257 135.518 44.6387C135.602 44.6517 135.666 44.6663 135.708 44.6826ZM137.622 45.791V50H136.445V44.7168H137.554L137.622 45.791ZM137.432 47.1631L137.031 47.1582C137.031 46.7936 137.077 46.4567 137.168 46.1475C137.259 45.8382 137.393 45.5697 137.568 45.3418C137.744 45.1107 137.962 44.9333 138.223 44.8096C138.486 44.6826 138.791 44.6191 139.136 44.6191C139.377 44.6191 139.596 44.6549 139.795 44.7266C139.997 44.7949 140.171 44.904 140.317 45.0537C140.467 45.2035 140.581 45.3955 140.659 45.6299C140.741 45.8643 140.781 46.1475 140.781 46.4795V50H139.604V46.582C139.604 46.3249 139.565 46.123 139.487 45.9766C139.412 45.8301 139.303 45.7259 139.16 45.6641C139.02 45.599 138.853 45.5664 138.657 45.5664C138.436 45.5664 138.247 45.6087 138.091 45.6934C137.938 45.778 137.812 45.8936 137.715 46.04C137.617 46.1865 137.546 46.3558 137.5 46.5479C137.454 46.7399 137.432 46.945 137.432 47.1631ZM140.708 46.8506L140.156 46.9727C140.156 46.6536 140.2 46.3525 140.288 46.0693C140.379 45.7829 140.511 45.5322 140.684 45.3174C140.859 45.0993 141.076 44.9284 141.333 44.8047C141.59 44.681 141.885 44.6191 142.217 44.6191C142.487 44.6191 142.728 44.6566 142.939 44.7314C143.154 44.8031 143.337 44.917 143.486 45.0732C143.636 45.2295 143.75 45.4329 143.828 45.6836C143.906 45.931 143.945 46.2305 143.945 46.582V50H142.764V46.5771C142.764 46.3102 142.725 46.1035 142.646 45.957C142.572 45.8105 142.464 45.7096 142.324 45.6543C142.184 45.5957 142.017 45.5664 141.821 45.5664C141.639 45.5664 141.478 45.6006 141.338 45.6689C141.201 45.734 141.086 45.8268 140.991 45.9473C140.897 46.0645 140.825 46.1995 140.776 46.3525C140.731 46.5055 140.708 46.6715 140.708 46.8506ZM148.12 48.5693C148.12 48.4521 148.091 48.3464 148.032 48.252C147.974 48.1543 147.861 48.0664 147.695 47.9883C147.533 47.9102 147.292 47.8385 146.973 47.7734C146.693 47.7116 146.436 47.6383 146.201 47.5537C145.97 47.4658 145.771 47.36 145.605 47.2363C145.439 47.1126 145.311 46.9661 145.22 46.7969C145.129 46.6276 145.083 46.4323 145.083 46.2109C145.083 45.9961 145.13 45.7926 145.225 45.6006C145.319 45.4085 145.454 45.2393 145.63 45.0928C145.806 44.9463 146.019 44.8307 146.27 44.7461C146.523 44.6615 146.807 44.6191 147.119 44.6191C147.562 44.6191 147.941 44.694 148.257 44.8438C148.576 44.9902 148.82 45.1904 148.989 45.4443C149.159 45.695 149.243 45.9782 149.243 46.2939H148.066C148.066 46.154 148.031 46.0238 147.959 45.9033C147.891 45.7796 147.786 45.6803 147.646 45.6055C147.507 45.5273 147.331 45.4883 147.119 45.4883C146.917 45.4883 146.75 45.5208 146.616 45.5859C146.486 45.6478 146.388 45.7292 146.323 45.8301C146.261 45.931 146.23 46.0417 146.23 46.1621C146.23 46.25 146.247 46.3298 146.279 46.4014C146.315 46.4697 146.374 46.5332 146.455 46.5918C146.536 46.6471 146.647 46.6992 146.787 46.748C146.93 46.7969 147.109 46.8441 147.324 46.8896C147.728 46.9743 148.075 47.0833 148.364 47.2168C148.657 47.347 148.882 47.5163 149.038 47.7246C149.194 47.9297 149.272 48.1901 149.272 48.5059C149.272 48.7402 149.222 48.9551 149.121 49.1504C149.023 49.3424 148.88 49.5101 148.691 49.6533C148.503 49.7933 148.276 49.9023 148.013 49.9805C147.752 50.0586 147.459 50.0977 147.134 50.0977C146.655 50.0977 146.25 50.013 145.918 49.8438C145.586 49.6712 145.334 49.4515 145.161 49.1846C144.992 48.9144 144.907 48.6344 144.907 48.3447H146.045C146.058 48.5628 146.118 48.737 146.226 48.8672C146.336 48.9941 146.473 49.0869 146.636 49.1455C146.802 49.2008 146.973 49.2285 147.148 49.2285C147.36 49.2285 147.537 49.2008 147.681 49.1455C147.824 49.0869 147.933 49.0088 148.008 48.9111C148.083 48.8102 148.12 48.6963 148.12 48.5693Z",fill:"white"})),(0,C.createElement)("defs",null,(0,C.createElement)("clipPath",{id:"clip0_2_3821"},(0,C.createElement)("rect",{width:"268",height:"70",rx:"4",fill:"white"})))),V=window.wp.blockEditor,{useCaptchaProvider:H}=JetFBHooks,{ToggleControl:d,BaseHelp:m}=JetFBComponents,{globalTab:h}=JetFBActions,L=h({slug:"captcha-tab",element:"google",empty:{}}),g=function({isSelected:l,attributes:r}){const a=(0,V.useBlockProps)(),[o,n]=H(),i=o.use_global?L:o;return r.isPreview?(0,C.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},s):(0,C.createElement)(C.Fragment,null,(0,C.createElement)("div",{...a},l?(0,C.createElement)("div",null,(0,C.createElement)(d,{checked:o.use_global,onChange:C=>n({use_global:C})},(0,t.__)("Use","jet-form-builder")+" ",(0,C.createElement)("a",{href:JetFormEditorData.global_settings_url+"#captcha-tab__google"},(0,t.__)("Global Settings","jet-form-builder"))),(0,C.createElement)(e.TextControl,{label:(0,t.__)("Site Key:","jet-form-builder"),value:i.key,disabled:o.use_global,onChange:C=>n({key:C})}),(0,C.createElement)(e.TextControl,{label:(0,t.__)("Secret Key:","jet-form-builder"),value:i.secret,disabled:o.use_global,onChange:C=>n({secret:C})}),(0,C.createElement)(e.__experimentalNumberControl,{label:(0,t.__)("Score Threshold","jet-form-builder"),labelPosition:"top",value:i.threshold,disabled:o.use_global,min:0,max:1,step:.1,placeholder:"0.5",onChange:C=>n({threshold:C})}),(0,C.createElement)(m,null,(0,t.__)("It should be a value between 0 and 1, default 0.5 (1.0 is very likely a good interaction, 0.0 is very likely a bot).","jet-form-builder"),(0,C.createElement)("br",null),(0,C.createElement)(e.ExternalLink,{href:"https://www.google.com/recaptcha/admin/create"},(0,t.__)("Register reCAPTCHA v3 keys here","jet-form-builder")))):s),(0,C.createElement)(V.InspectorControls,null,(0,C.createElement)("div",{style:{padding:"20px"}},(0,C.createElement)(c,null))))},{CaptchaOptions:u,CaptchaBlockEdit:b}=JetFBComponents,{__:M}=wp.i18n,p={name:"google",title:M("reCaptcha","jet-form-builder"),isActive:(C,e)=>C.provider===e.provider,description:M("Set the reCaptcha settings in the Captcha Container block to enable web hosts to distinguish between human and automated website access.","jet-form-builder"),icon:(0,C.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("path",{d:"M50.9219 43.871C51.2755 43.4467 51.2181 42.8161 50.7939 42.4625C50.3696 42.109 49.739 42.1663 49.3854 42.5906L44.8942 47.9801L42.8992 45.9852C42.5087 45.5947 41.8755 45.5947 41.485 45.9852C41.0945 46.3757 41.0945 47.0089 41.485 47.3994L43.8671 49.7815C44.4908 50.4052 45.5154 50.3587 46.0801 49.6811L50.9219 43.871Z",fill:"currentColor"}),(0,C.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31.3934 20.9546C35.1005 20.9087 39.1075 23.2 41.0897 26.311L36.6899 30.7108C36.0599 31.3408 36.5061 32.4179 37.397 32.4179H54.0255C54.5778 32.4179 55.0255 31.9702 55.0255 31.4179V14.7917C55.0255 13.9007 53.9484 13.4546 53.3184 14.0845L49.7621 17.6409C45.4542 12.3679 38.9009 9 31.5606 9C25.6407 9 19.7134 9.0244 13.7914 9.02503C12.9005 9.02512 12.4543 10.1023 13.0843 10.7322L16.6407 14.2886C14.0776 16.3825 8.00073 22.5 8.00073 32.4911C8.02024 38.3671 8.02476 44.2444 8.02476 50.121C8.02476 51.0119 9.1019 51.4581 9.73186 50.8281L13.2882 47.2718C19.4998 55 30.8842 58.0108 40.288 54.2093C41.9073 55.3381 43.8762 56 45.9997 56C51.5226 56 55.9997 51.5229 55.9997 46C55.9997 40.4772 51.5226 36 45.9997 36C41.6072 36 37.8761 38.8321 36.5329 42.77C31.4133 45.314 25.0427 43.4389 21.9606 38.6017L26.3509 34.2114C26.9822 33.5801 26.5329 32.5006 25.6401 32.5037C23.737 32.5102 21.8125 32.5155 19.9533 32.519C19.945 28.7424 22.1595 24.9689 25.3107 22.961L29.701 27.3513C30.3323 27.9826 31.4118 27.5333 31.4087 26.6405C31.4022 24.7377 31.3969 22.8135 31.3934 20.9546ZM53.0255 17.2059L49.6124 20.6189C44.5338 14.4024 38.9998 11.0072 31.4037 11.0072C31.3902 13.0876 31.3871 15.8664 31.3905 18.9545C36.7567 18.8957 40.9998 22 43.639 26.5901L39.8112 30.4179H53.0255V17.2059ZM19.6187 14.4382L16.205 11.0246C20.6037 11.0233 25.0036 11.0193 29.4035 11.0072C29.3828 14.2398 29.3869 19.182 29.4012 24.223L25.5898 20.4117C21.4998 22 17.9533 27.5 17.9533 32.5219L9.99976 32.5088C9.99366 24.909 13.9998 18.5 19.6187 14.4382ZM36.0348 45.1567C35.8057 47.9002 36.7368 50.6706 38.5879 52.7131C29.0923 56.0344 18.4998 52 13.4378 44.2937L10.0248 47.7068V34.509C13.2609 34.5295 18.1944 34.5255 23.2226 34.5112L19.4113 38.3226C21.9998 44 29.4201 47.5654 36.0348 45.1567ZM45.9997 38C41.5815 38 37.9998 41.5817 37.9998 46C37.9998 50.4183 41.5815 54 45.9997 54C50.418 54 53.9997 50.4183 53.9997 46C53.9997 41.5817 50.418 38 45.9997 38Z",fill:"currentColor"})),scope:["block","inserter"],attributes:{provider:"google"}},{registerPlugin:Z}=wp.plugins,{registerBlockVariation:_}=wp.blocks;_("jet-forms/captcha-container",p),Z("jf-re-captcha-v3",{render:function(){return(0,C.createElement)(C.Fragment,null,(0,C.createElement)(u,{provider:"google"},(e=>(0,C.createElement)(c,{...e}))),(0,C.createElement)(b,{provider:"google"},(e=>(0,C.createElement)(g,{...e}))))}})})(); \ No newline at end of file diff --git a/modules/captcha/assets/build/re-captcha-v3/frontend.asset.php b/modules/captcha/assets/build/re-captcha-v3/frontend.asset.php index 5c2dd951a..47f48d0cd 100644 --- a/modules/captcha/assets/build/re-captcha-v3/frontend.asset.php +++ b/modules/captcha/assets/build/re-captcha-v3/frontend.asset.php @@ -1 +1 @@ - array(), 'version' => 'a9b15810583bd71b8224'); + array(), 'version' => 'c6b1f16a6df38db4e1d8'); diff --git a/modules/captcha/assets/build/re-captcha-v3/frontend.js b/modules/captcha/assets/build/re-captcha-v3/frontend.js index 0e909b56e..d2e05066a 100644 --- a/modules/captcha/assets/build/re-captcha-v3/frontend.js +++ b/modules/captcha/assets/build/re-captcha-v3/frontend.js @@ -1 +1 @@ -!function(e){const t=function(e,{key:t},r){let o=document.querySelector("script#jet-form-builder-recaptcha-js");const c=e.querySelector('[name="_captcha_token"]'),a=+e.dataset.formId;o||(o=document.createElement("script"),o.id="jet-form-builder-recaptcha-js",o.src="https://www.google.com/recaptcha/api.js?render="+t,c.parentNode.insertBefore(o,c)),window.grecaptcha?window.grecaptcha.execute(t,{action:"jet_form_builder_captcha__"+a}).then(function(e){c.value=e,r()}):r()},r=function(e,t,r){const o=+e.dataset.formId,c=window.JetFormBuilderCaptchaConfig?.[o]||{};if(!Object.values(c)?.length)return t();window.JetFormBuilderCaptcha(e,c,t,r)};e(function(){let e;e=window.JetFormBuilderAbstract?window.JetPlugins.hooks.addFilter:wp.hooks.addFilter,window.JetFormBuilderCaptcha||(window.JetFormBuilderCaptcha=t),e("jet.fb.submit.ajax.promises","jet-form-builder-recaptcha",function(e,t){return e.push(new Promise((e,o)=>{r(t[0],e,o)})),e}),e("jet.fb.submit.reload.promises","jet-form-builder-recaptcha",function(e,t){return e.push(new Promise((e,o)=>{r(t.target,e,o)})),e})})}(jQuery); \ No newline at end of file +!function(e){const t=function(e,{key:t},r){let o=document.querySelector("script#jet-form-builder-recaptcha-js");const c=e.querySelector('[name="_captcha_token"]'),a=+e.dataset.formId;o||(o=document.createElement("script"),o.id="jet-form-builder-recaptcha-js",o.src="https://www.google.com/recaptcha/api.js?render="+t,c.parentNode.insertBefore(o,c)),window.grecaptcha?window.grecaptcha.execute(t,{action:"jet_form_builder_captcha__"+a}).then((function(e){c.value=e,r()})):r()},r=function(e,t,r){const o=+e.dataset.formId,c=window.JetFormBuilderCaptchaConfig?.[o]||{};if(!Object.values(c)?.length)return t();window.JetFormBuilderCaptcha(e,c,t,r)};e((function(){let e;e=window.JetFormBuilderAbstract?window.JetPlugins.hooks.addFilter:wp.hooks.addFilter,window.JetFormBuilderCaptcha||(window.JetFormBuilderCaptcha=t),e("jet.fb.submit.ajax.promises","jet-form-builder-recaptcha",(function(e,t){return e.push(new Promise(((e,o)=>{r(t[0],e,o)}))),e})),e("jet.fb.submit.reload.promises","jet-form-builder-recaptcha",(function(e,t){return e.push(new Promise(((e,o)=>{r(t.target,e,o)}))),e}))}))}(jQuery); \ No newline at end of file diff --git a/modules/captcha/assets/build/turnstile/editor.asset.php b/modules/captcha/assets/build/turnstile/editor.asset.php index c807c983f..79883648e 100644 --- a/modules/captcha/assets/build/turnstile/editor.asset.php +++ b/modules/captcha/assets/build/turnstile/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-block-editor', 'wp-components', 'wp-i18n'), 'version' => 'a56c5763f7976f26a7a3'); + array('react', 'wp-block-editor', 'wp-components', 'wp-i18n'), 'version' => 'f219eb1407395fb613a5'); diff --git a/modules/captcha/assets/build/turnstile/editor.js b/modules/captcha/assets/build/turnstile/editor.js index f5f1b5b4c..e50739f1a 100644 --- a/modules/captcha/assets/build/turnstile/editor.js +++ b/modules/captcha/assets/build/turnstile/editor.js @@ -1 +1 @@ -(()=>{"use strict";const C=window.React,e=window.wp.components,t=window.wp.i18n,{ToggleControl:l,BaseHelp:r}=JetFBComponents,{useCaptchaProvider:n}=JetFBHooks,{useEffect:a}=wp.element,i=JetFBActions.globalTab({slug:"captcha-tab",element:"turnstile",empty:{}}),o=function(){const[o,c]=n(),H=o.use_global?i:o;return a(()=>{c({key:H.key,secret:H.secret,threshold:H.threshold})},[o.use_global]),(0,C.createElement)(C.Fragment,null,(0,C.createElement)(l,{checked:o.use_global,onChange:C=>c({use_global:C})},(0,t.__)("Use","jet-form-builder")+" ",(0,C.createElement)("a",{href:JetFormEditorData.global_settings_url+"#captcha-tab__turnstile"},(0,t.__)("Global Settings","jet-form-builder"))),(0,C.createElement)(e.TextControl,{label:(0,t.__)("Site Key:","jet-form-builder"),value:H.key,help:(0,t.__)("Read the hint to the Secret Key field","jet-form-builder"),disabled:o.use_global,onChange:C=>c({key:C})}),(0,C.createElement)(e.TextControl,{label:(0,t.__)("Secret Key:","jet-form-builder"),value:H.secret,help:(0,t.__)("You can find both keys on your Turnstile Site settings page","jet-form-builder"),disabled:o.use_global,onChange:C=>c({secret:C})}),(0,C.createElement)(r,null,(0,t.__)("Didn't find it? Here is","jet-form-builder")+" ",(0,C.createElement)(e.ExternalLink,{href:"https://developers.cloudflare.com/turnstile/get-started/#get-a-sitekey-and-secret-key"},(0,t.__)("a more detailed description","jet-form-builder"))))},c=(0,C.createElement)("svg",{width:"268",height:"92",viewBox:"0 0 268 92",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("rect",{width:"268",height:"92",rx:"4",fill:"white"}),(0,C.createElement)("path",{d:"M36 28.5C26.34 28.5 18.5 36.34 18.5 46C18.5 55.66 26.34 63.5 36 63.5C45.66 63.5 53.5 55.66 53.5 46C53.5 36.34 45.66 28.5 36 28.5ZM32.5 54.75L23.75 46L26.2175 43.5325L32.5 49.7975L45.7825 36.515L48.25 39L32.5 54.75Z",fill:"#0DC167"}),(0,C.createElement)("path",{d:"M70.6826 49.2656C70.6826 48.9668 70.6357 48.7031 70.542 48.4746C70.4541 48.2402 70.2959 48.0293 70.0674 47.8418C69.8447 47.6543 69.5342 47.4756 69.1357 47.3057C68.7432 47.1357 68.2451 46.9629 67.6416 46.7871C67.0088 46.5996 66.4375 46.3916 65.9277 46.1631C65.418 45.9287 64.9814 45.6621 64.6182 45.3633C64.2549 45.0645 63.9766 44.7217 63.7832 44.335C63.5898 43.9482 63.4932 43.5059 63.4932 43.0078C63.4932 42.5098 63.5957 42.0498 63.8008 41.6279C64.0059 41.2061 64.2988 40.8398 64.6797 40.5293C65.0664 40.2129 65.5264 39.9668 66.0596 39.791C66.5928 39.6152 67.1875 39.5273 67.8438 39.5273C68.8047 39.5273 69.6191 39.7119 70.2871 40.0811C70.9609 40.4443 71.4736 40.9219 71.8252 41.5137C72.1768 42.0996 72.3525 42.7266 72.3525 43.3945H70.665C70.665 42.9141 70.5625 42.4893 70.3574 42.1201C70.1523 41.7451 69.8418 41.4521 69.4258 41.2412C69.0098 41.0244 68.4824 40.916 67.8438 40.916C67.2402 40.916 66.7422 41.0068 66.3496 41.1885C65.957 41.3701 65.6641 41.6162 65.4707 41.9268C65.2832 42.2373 65.1895 42.5918 65.1895 42.9902C65.1895 43.2598 65.2451 43.5059 65.3564 43.7285C65.4736 43.9453 65.6523 44.1475 65.8926 44.335C66.1387 44.5225 66.4492 44.6953 66.8242 44.8535C67.2051 45.0117 67.6592 45.1641 68.1865 45.3105C68.9131 45.5156 69.54 45.7441 70.0674 45.9961C70.5947 46.248 71.0283 46.5322 71.3682 46.8486C71.7139 47.1592 71.9688 47.5137 72.1328 47.9121C72.3027 48.3047 72.3877 48.75 72.3877 49.248C72.3877 49.7695 72.2822 50.2412 72.0713 50.6631C71.8604 51.085 71.5586 51.4453 71.166 51.7441C70.7734 52.043 70.3018 52.2744 69.751 52.4385C69.2061 52.5967 68.5967 52.6758 67.9229 52.6758C67.3311 52.6758 66.748 52.5938 66.1738 52.4297C65.6055 52.2656 65.0869 52.0195 64.6182 51.6914C64.1553 51.3633 63.7832 50.959 63.502 50.4785C63.2266 49.9922 63.0889 49.4297 63.0889 48.791H64.7764C64.7764 49.2305 64.8613 49.6084 65.0312 49.9248C65.2012 50.2354 65.4326 50.4932 65.7256 50.6982C66.0244 50.9033 66.3613 51.0557 66.7363 51.1553C67.1172 51.249 67.5127 51.2959 67.9229 51.2959C68.5146 51.2959 69.0156 51.2139 69.4258 51.0498C69.8359 50.8857 70.1465 50.6514 70.3574 50.3467C70.5742 50.042 70.6826 49.6816 70.6826 49.2656ZM80.1221 50.3027V42.9902H81.7568V52.5H80.2012L80.1221 50.3027ZM80.4297 48.2988L81.1064 48.2812C81.1064 48.9141 81.0391 49.5 80.9043 50.0391C80.7754 50.5723 80.5645 51.0352 80.2715 51.4277C79.9785 51.8203 79.5947 52.1279 79.1201 52.3506C78.6455 52.5674 78.0684 52.6758 77.3887 52.6758C76.9258 52.6758 76.501 52.6084 76.1143 52.4736C75.7334 52.3389 75.4053 52.1309 75.1299 51.8496C74.8545 51.5684 74.6406 51.2021 74.4883 50.751C74.3418 50.2998 74.2686 49.7578 74.2686 49.125V42.9902H75.8945V49.1426C75.8945 49.5703 75.9414 49.9248 76.0352 50.2061C76.1348 50.4814 76.2666 50.7012 76.4307 50.8652C76.6006 51.0234 76.7881 51.1348 76.9932 51.1992C77.2041 51.2637 77.4209 51.2959 77.6436 51.2959C78.335 51.2959 78.8828 51.1641 79.2871 50.9004C79.6914 50.6309 79.9814 50.2705 80.1572 49.8193C80.3389 49.3623 80.4297 48.8555 80.4297 48.2988ZM88.041 51.3398C88.4277 51.3398 88.7852 51.2607 89.1133 51.1025C89.4414 50.9443 89.7109 50.7275 89.9219 50.4521C90.1328 50.1709 90.2529 49.8516 90.2822 49.4941H91.8291C91.7998 50.0566 91.6094 50.5811 91.2578 51.0674C90.9121 51.5479 90.458 51.9375 89.8955 52.2363C89.333 52.5293 88.7148 52.6758 88.041 52.6758C87.3262 52.6758 86.7021 52.5498 86.1689 52.2979C85.6416 52.0459 85.2021 51.7002 84.8506 51.2607C84.5049 50.8213 84.2441 50.3174 84.0684 49.749C83.8984 49.1748 83.8135 48.5684 83.8135 47.9297V47.5605C83.8135 46.9219 83.8984 46.3184 84.0684 45.75C84.2441 45.1758 84.5049 44.6689 84.8506 44.2295C85.2021 43.79 85.6416 43.4443 86.1689 43.1924C86.7021 42.9404 87.3262 42.8145 88.041 42.8145C88.7852 42.8145 89.4355 42.9668 89.9922 43.2715C90.5488 43.5703 90.9854 43.9805 91.3018 44.502C91.624 45.0176 91.7998 45.6035 91.8291 46.2598H90.2822C90.2529 45.8672 90.1416 45.5127 89.9482 45.1963C89.7607 44.8799 89.5029 44.6279 89.1748 44.4404C88.8525 44.2471 88.4746 44.1504 88.041 44.1504C87.543 44.1504 87.124 44.25 86.7842 44.4492C86.4502 44.6426 86.1836 44.9062 85.9844 45.2402C85.791 45.5684 85.6504 45.9346 85.5625 46.3389C85.4805 46.7373 85.4395 47.1445 85.4395 47.5605V47.9297C85.4395 48.3457 85.4805 48.7559 85.5625 49.1602C85.6445 49.5645 85.7822 49.9307 85.9756 50.2588C86.1748 50.5869 86.4414 50.8506 86.7754 51.0498C87.1152 51.2432 87.5371 51.3398 88.041 51.3398ZM97.4629 51.3398C97.8496 51.3398 98.207 51.2607 98.5352 51.1025C98.8633 50.9443 99.1328 50.7275 99.3438 50.4521C99.5547 50.1709 99.6748 49.8516 99.7041 49.4941H101.251C101.222 50.0566 101.031 50.5811 100.68 51.0674C100.334 51.5479 99.8799 51.9375 99.3174 52.2363C98.7549 52.5293 98.1367 52.6758 97.4629 52.6758C96.748 52.6758 96.124 52.5498 95.5908 52.2979C95.0635 52.0459 94.624 51.7002 94.2725 51.2607C93.9268 50.8213 93.666 50.3174 93.4902 49.749C93.3203 49.1748 93.2354 48.5684 93.2354 47.9297V47.5605C93.2354 46.9219 93.3203 46.3184 93.4902 45.75C93.666 45.1758 93.9268 44.6689 94.2725 44.2295C94.624 43.79 95.0635 43.4443 95.5908 43.1924C96.124 42.9404 96.748 42.8145 97.4629 42.8145C98.207 42.8145 98.8574 42.9668 99.4141 43.2715C99.9707 43.5703 100.407 43.9805 100.724 44.502C101.046 45.0176 101.222 45.6035 101.251 46.2598H99.7041C99.6748 45.8672 99.5635 45.5127 99.3701 45.1963C99.1826 44.8799 98.9248 44.6279 98.5967 44.4404C98.2744 44.2471 97.8965 44.1504 97.4629 44.1504C96.9648 44.1504 96.5459 44.25 96.2061 44.4492C95.8721 44.6426 95.6055 44.9062 95.4062 45.2402C95.2129 45.5684 95.0723 45.9346 94.9844 46.3389C94.9023 46.7373 94.8613 47.1445 94.8613 47.5605V47.9297C94.8613 48.3457 94.9023 48.7559 94.9844 49.1602C95.0664 49.5645 95.2041 49.9307 95.3975 50.2588C95.5967 50.5869 95.8633 50.8506 96.1973 51.0498C96.5371 51.2432 96.959 51.3398 97.4629 51.3398ZM107.025 52.6758C106.363 52.6758 105.763 52.5645 105.224 52.3418C104.69 52.1133 104.23 51.7939 103.844 51.3838C103.463 50.9736 103.17 50.4873 102.965 49.9248C102.76 49.3623 102.657 48.7471 102.657 48.0791V47.71C102.657 46.9365 102.771 46.248 103 45.6445C103.229 45.0352 103.539 44.5195 103.932 44.0977C104.324 43.6758 104.77 43.3564 105.268 43.1396C105.766 42.9229 106.281 42.8145 106.814 42.8145C107.494 42.8145 108.08 42.9316 108.572 43.166C109.07 43.4004 109.478 43.7285 109.794 44.1504C110.11 44.5664 110.345 45.0586 110.497 45.627C110.649 46.1895 110.726 46.8047 110.726 47.4727V48.2021H103.624V46.875H109.1V46.752C109.076 46.3301 108.988 45.9199 108.836 45.5215C108.689 45.123 108.455 44.7949 108.133 44.5371C107.811 44.2793 107.371 44.1504 106.814 44.1504C106.445 44.1504 106.105 44.2295 105.795 44.3877C105.484 44.54 105.218 44.7686 104.995 45.0732C104.772 45.3779 104.6 45.75 104.477 46.1895C104.354 46.6289 104.292 47.1357 104.292 47.71V48.0791C104.292 48.5303 104.354 48.9551 104.477 49.3535C104.605 49.7461 104.79 50.0918 105.03 50.3906C105.276 50.6895 105.572 50.9238 105.918 51.0938C106.27 51.2637 106.668 51.3486 107.113 51.3486C107.688 51.3486 108.174 51.2314 108.572 50.9971C108.971 50.7627 109.319 50.4492 109.618 50.0566L110.603 50.8389C110.397 51.1494 110.137 51.4453 109.82 51.7266C109.504 52.0078 109.114 52.2363 108.651 52.4121C108.194 52.5879 107.652 52.6758 107.025 52.6758ZM118.161 49.9775C118.161 49.7432 118.108 49.5264 118.003 49.3271C117.903 49.1221 117.695 48.9375 117.379 48.7734C117.068 48.6035 116.6 48.457 115.973 48.334C115.445 48.2227 114.968 48.0908 114.54 47.9385C114.118 47.7861 113.758 47.6016 113.459 47.3848C113.166 47.168 112.94 46.9131 112.782 46.6201C112.624 46.3271 112.545 45.9844 112.545 45.5918C112.545 45.2168 112.627 44.8623 112.791 44.5283C112.961 44.1943 113.198 43.8984 113.503 43.6406C113.813 43.3828 114.186 43.1807 114.619 43.0342C115.053 42.8877 115.536 42.8145 116.069 42.8145C116.831 42.8145 117.481 42.9492 118.021 43.2188C118.56 43.4883 118.973 43.8486 119.26 44.2998C119.547 44.7451 119.69 45.2402 119.69 45.7852H118.064C118.064 45.5215 117.985 45.2666 117.827 45.0205C117.675 44.7686 117.449 44.5605 117.15 44.3965C116.857 44.2324 116.497 44.1504 116.069 44.1504C115.618 44.1504 115.252 44.2207 114.971 44.3613C114.695 44.4961 114.493 44.6689 114.364 44.8799C114.241 45.0908 114.18 45.3135 114.18 45.5479C114.18 45.7236 114.209 45.8818 114.268 46.0225C114.332 46.1572 114.443 46.2832 114.602 46.4004C114.76 46.5117 114.982 46.6172 115.27 46.7168C115.557 46.8164 115.923 46.916 116.368 47.0156C117.147 47.1914 117.789 47.4023 118.293 47.6484C118.797 47.8945 119.172 48.1963 119.418 48.5537C119.664 48.9111 119.787 49.3447 119.787 49.8545C119.787 50.2705 119.699 50.6514 119.523 50.9971C119.354 51.3428 119.104 51.6416 118.776 51.8936C118.454 52.1396 118.067 52.333 117.616 52.4736C117.171 52.6084 116.67 52.6758 116.113 52.6758C115.275 52.6758 114.566 52.5264 113.986 52.2275C113.406 51.9287 112.967 51.542 112.668 51.0674C112.369 50.5928 112.22 50.0918 112.22 49.5645H113.854C113.878 50.0098 114.007 50.3643 114.241 50.6279C114.476 50.8857 114.763 51.0703 115.103 51.1816C115.442 51.2871 115.779 51.3398 116.113 51.3398C116.559 51.3398 116.931 51.2812 117.229 51.1641C117.534 51.0469 117.766 50.8857 117.924 50.6807C118.082 50.4756 118.161 50.2412 118.161 49.9775ZM127.46 49.9775C127.46 49.7432 127.407 49.5264 127.302 49.3271C127.202 49.1221 126.994 48.9375 126.678 48.7734C126.367 48.6035 125.898 48.457 125.271 48.334C124.744 48.2227 124.267 48.0908 123.839 47.9385C123.417 47.7861 123.057 47.6016 122.758 47.3848C122.465 47.168 122.239 46.9131 122.081 46.6201C121.923 46.3271 121.844 45.9844 121.844 45.5918C121.844 45.2168 121.926 44.8623 122.09 44.5283C122.26 44.1943 122.497 43.8984 122.802 43.6406C123.112 43.3828 123.484 43.1807 123.918 43.0342C124.352 42.8877 124.835 42.8145 125.368 42.8145C126.13 42.8145 126.78 42.9492 127.319 43.2188C127.858 43.4883 128.271 43.8486 128.559 44.2998C128.846 44.7451 128.989 45.2402 128.989 45.7852H127.363C127.363 45.5215 127.284 45.2666 127.126 45.0205C126.974 44.7686 126.748 44.5605 126.449 44.3965C126.156 44.2324 125.796 44.1504 125.368 44.1504C124.917 44.1504 124.551 44.2207 124.27 44.3613C123.994 44.4961 123.792 44.6689 123.663 44.8799C123.54 45.0908 123.479 45.3135 123.479 45.5479C123.479 45.7236 123.508 45.8818 123.566 46.0225C123.631 46.1572 123.742 46.2832 123.9 46.4004C124.059 46.5117 124.281 46.6172 124.568 46.7168C124.855 46.8164 125.222 46.916 125.667 47.0156C126.446 47.1914 127.088 47.4023 127.592 47.6484C128.096 47.8945 128.471 48.1963 128.717 48.5537C128.963 48.9111 129.086 49.3447 129.086 49.8545C129.086 50.2705 128.998 50.6514 128.822 50.9971C128.652 51.3428 128.403 51.6416 128.075 51.8936C127.753 52.1396 127.366 52.333 126.915 52.4736C126.47 52.6084 125.969 52.6758 125.412 52.6758C124.574 52.6758 123.865 52.5264 123.285 52.2275C122.705 51.9287 122.266 51.542 121.967 51.0674C121.668 50.5928 121.519 50.0918 121.519 49.5645H123.153C123.177 50.0098 123.306 50.3643 123.54 50.6279C123.774 50.8857 124.062 51.0703 124.401 51.1816C124.741 51.2871 125.078 51.3398 125.412 51.3398C125.857 51.3398 126.229 51.2812 126.528 51.1641C126.833 51.0469 127.064 50.8857 127.223 50.6807C127.381 50.4756 127.46 50.2412 127.46 49.9775ZM133.155 39.7031L133.041 48.8877H131.573L131.45 39.7031H133.155ZM131.397 51.6826C131.397 51.4189 131.477 51.1963 131.635 51.0146C131.799 50.833 132.039 50.7422 132.355 50.7422C132.666 50.7422 132.903 50.833 133.067 51.0146C133.237 51.1963 133.322 51.4189 133.322 51.6826C133.322 51.9346 133.237 52.1514 133.067 52.333C132.903 52.5146 132.666 52.6055 132.355 52.6055C132.039 52.6055 131.799 52.5146 131.635 52.333C131.477 52.1514 131.397 51.9346 131.397 51.6826Z",fill:"#0F172A"}),(0,C.createElement)("path",{d:"M187.67 65.8589H185.771V65.0923H187.67C188.038 65.0923 188.336 65.0338 188.563 64.9166C188.791 64.7994 188.957 64.6366 189.062 64.4283C189.169 64.22 189.223 63.9823 189.223 63.7154C189.223 63.4713 189.169 63.2418 189.062 63.0269C188.957 62.8121 188.791 62.6395 188.563 62.5093C188.336 62.3759 188.038 62.3091 187.67 62.3091H185.99V68.647H185.048V61.5377H187.67C188.207 61.5377 188.661 61.6304 189.032 61.816C189.403 62.0015 189.685 62.2587 189.877 62.5875C190.069 62.913 190.165 63.2857 190.165 63.7056C190.165 64.1614 190.069 64.5504 189.877 64.8726C189.685 65.1949 189.403 65.4407 189.032 65.6099C188.661 65.7759 188.207 65.8589 187.67 65.8589ZM192.123 64.1939V68.647H191.22V63.3638H192.099L192.123 64.1939ZM193.773 63.3345L193.769 64.1744C193.694 64.1581 193.622 64.1483 193.554 64.1451C193.489 64.1386 193.414 64.1353 193.329 64.1353C193.121 64.1353 192.937 64.1679 192.777 64.233C192.618 64.2981 192.483 64.3892 192.372 64.5064C192.261 64.6236 192.174 64.7636 192.108 64.9263C192.047 65.0858 192.006 65.2616 191.986 65.4537L191.732 65.6002C191.732 65.2811 191.763 64.9817 191.825 64.7017C191.89 64.4218 191.99 64.1744 192.123 63.9595C192.257 63.7414 192.426 63.5722 192.631 63.4517C192.839 63.328 193.087 63.2662 193.373 63.2662C193.438 63.2662 193.513 63.2743 193.598 63.2906C193.682 63.3036 193.741 63.3183 193.773 63.3345ZM195.59 63.3638V68.647H194.682V63.3638H195.59ZM194.613 61.9625C194.613 61.816 194.657 61.6923 194.745 61.5914C194.836 61.4905 194.97 61.44 195.146 61.44C195.318 61.44 195.45 61.4905 195.541 61.5914C195.635 61.6923 195.683 61.816 195.683 61.9625C195.683 62.1024 195.635 62.2229 195.541 62.3238C195.45 62.4214 195.318 62.4703 195.146 62.4703C194.97 62.4703 194.836 62.4214 194.745 62.3238C194.657 62.2229 194.613 62.1024 194.613 61.9625ZM198.646 67.8316L200.092 63.3638H201.015L199.115 68.647H198.51L198.646 67.8316ZM197.44 63.3638L198.93 67.856L199.032 68.647H198.427L196.513 63.3638H197.44ZM204.921 67.7437V65.024C204.921 64.8157 204.879 64.635 204.794 64.482C204.713 64.3257 204.589 64.2053 204.423 64.1207C204.257 64.036 204.052 63.9937 203.808 63.9937C203.58 63.9937 203.38 64.0328 203.207 64.1109C203.038 64.189 202.904 64.2916 202.807 64.4185C202.712 64.5455 202.665 64.6822 202.665 64.8287H201.762C201.762 64.6399 201.811 64.4527 201.908 64.2672C202.006 64.0816 202.146 63.914 202.328 63.7642C202.514 63.6112 202.735 63.4908 202.992 63.4029C203.253 63.3117 203.542 63.2662 203.861 63.2662C204.245 63.2662 204.584 63.3313 204.877 63.4615C205.173 63.5917 205.404 63.7886 205.57 64.0523C205.74 64.3127 205.824 64.6399 205.824 65.0338V67.4947C205.824 67.6705 205.839 67.8576 205.868 68.0562C205.901 68.2548 205.948 68.4257 206.01 68.5689V68.647H205.067C205.022 68.5429 204.986 68.4045 204.96 68.232C204.934 68.0562 204.921 67.8935 204.921 67.7437ZM205.077 65.4439L205.087 66.0787H204.174C203.917 66.0787 203.687 66.0998 203.485 66.1422C203.284 66.1812 203.114 66.2414 202.978 66.3228C202.841 66.4042 202.737 66.5067 202.665 66.6304C202.593 66.7509 202.558 66.8925 202.558 67.0552C202.558 67.2213 202.595 67.3726 202.67 67.5093C202.745 67.6461 202.857 67.7551 203.007 67.8365C203.16 67.9146 203.347 67.9537 203.568 67.9537C203.845 67.9537 204.089 67.8951 204.301 67.7779C204.512 67.6607 204.68 67.5175 204.804 67.3482C204.931 67.1789 204.999 67.0145 205.009 66.855L205.395 67.2896C205.372 67.4263 205.31 67.5777 205.209 67.7437C205.108 67.9097 204.973 68.0692 204.804 68.2222C204.638 68.372 204.439 68.4973 204.208 68.5982C203.98 68.6959 203.723 68.7447 203.437 68.7447C203.078 68.7447 202.764 68.6747 202.494 68.5347C202.227 68.3948 202.019 68.2076 201.869 67.9732C201.723 67.7356 201.649 67.4703 201.649 67.1773C201.649 66.8941 201.705 66.6451 201.815 66.4302C201.926 66.2121 202.086 66.0315 202.294 65.8882C202.502 65.7418 202.753 65.6311 203.046 65.5562C203.339 65.4813 203.666 65.4439 204.027 65.4439H205.077ZM209.359 68.0025C209.574 68.0025 209.773 67.9586 209.955 67.8707C210.137 67.7828 210.287 67.6623 210.404 67.5093C210.521 67.3531 210.588 67.1757 210.604 66.9771H211.464C211.448 67.2896 211.342 67.581 211.146 67.8511C210.954 68.1181 210.702 68.3345 210.39 68.5005C210.077 68.6633 209.734 68.7447 209.359 68.7447C208.962 68.7447 208.616 68.6747 208.319 68.5347C208.026 68.3948 207.782 68.2027 207.587 67.9586C207.395 67.7144 207.25 67.4345 207.152 67.1187C207.058 66.7997 207.011 66.4628 207.011 66.108V65.9029C207.011 65.5481 207.058 65.2128 207.152 64.897C207.25 64.578 207.395 64.2964 207.587 64.0523C207.782 63.8082 208.026 63.6161 208.319 63.4761C208.616 63.3362 208.962 63.2662 209.359 63.2662C209.773 63.2662 210.134 63.3508 210.443 63.5201C210.753 63.6861 210.995 63.914 211.171 64.2037C211.35 64.4901 211.448 64.8157 211.464 65.1802H210.604C210.588 64.9621 210.526 64.7652 210.419 64.5894C210.315 64.4136 210.172 64.2737 209.989 64.1695C209.81 64.0621 209.6 64.0084 209.359 64.0084C209.083 64.0084 208.85 64.0637 208.661 64.1744C208.476 64.2818 208.327 64.4283 208.217 64.6138C208.109 64.7961 208.031 64.9996 207.982 65.2242C207.937 65.4455 207.914 65.6718 207.914 65.9029V66.108C207.914 66.3391 207.937 66.567 207.982 66.7916C208.028 67.0162 208.104 67.2196 208.212 67.4019C208.323 67.5842 208.471 67.7307 208.656 67.8414C208.845 67.9488 209.079 68.0025 209.359 68.0025ZM213.964 68.1002L215.434 63.3638H216.4L214.281 69.4625C214.232 69.5927 214.167 69.7326 214.086 69.8824C214.008 70.0354 213.907 70.1802 213.783 70.317C213.66 70.4537 213.51 70.5644 213.334 70.649C213.161 70.7369 212.955 70.7808 212.714 70.7808C212.642 70.7808 212.551 70.7711 212.44 70.7515C212.33 70.732 212.252 70.7157 212.206 70.7027L212.201 69.9703C212.227 69.9735 212.268 69.9768 212.323 69.98C212.382 69.9866 212.423 69.9898 212.445 69.9898C212.65 69.9898 212.825 69.9621 212.968 69.9068C213.111 69.8547 213.231 69.7652 213.329 69.6382C213.43 69.5145 213.516 69.3436 213.588 69.1255L213.964 68.1002ZM212.885 63.3638L214.257 67.4654L214.491 68.4175L213.842 68.7496L211.898 63.3638H212.885ZM219.687 65.0728V64.8726C219.687 64.5927 219.774 64.3616 219.95 64.1793C220.129 63.997 220.372 63.9058 220.678 63.9058C220.987 63.9058 221.231 63.997 221.41 64.1793C221.589 64.3616 221.679 64.5927 221.679 64.8726V65.0728C221.679 65.3495 221.589 65.579 221.41 65.7613C221.234 65.9403 220.992 66.0298 220.683 66.0298C220.377 66.0298 220.134 65.9403 219.955 65.7613C219.776 65.579 219.687 65.3495 219.687 65.0728ZM228.124 61.5377V68.647H227.196V61.5377H228.124ZM230.409 61.5377V62.3091H224.916V61.5377H230.409ZM233.031 68.7447C232.663 68.7447 232.33 68.6828 232.03 68.5591C231.734 68.4322 231.479 68.2548 231.264 68.0269C231.052 67.7991 230.889 67.5289 230.775 67.2164C230.661 66.9039 230.604 66.5621 230.604 66.191V65.9859C230.604 65.5562 230.668 65.1737 230.795 64.8384C230.922 64.4999 231.094 64.2134 231.312 63.9791C231.531 63.7447 231.778 63.5673 232.055 63.4468C232.331 63.3264 232.618 63.2662 232.914 63.2662C233.292 63.2662 233.617 63.3313 233.891 63.4615C234.167 63.5917 234.394 63.774 234.569 64.0084C234.745 64.2395 234.875 64.5129 234.96 64.8287C235.045 65.1412 235.087 65.483 235.087 65.8541V66.2593H231.142V65.522H234.184V65.4537C234.171 65.2193 234.122 64.9914 234.037 64.7701C233.956 64.5487 233.826 64.3664 233.646 64.2232C233.467 64.08 233.223 64.0084 232.914 64.0084C232.709 64.0084 232.52 64.0523 232.348 64.1402C232.175 64.2248 232.027 64.3518 231.903 64.5211C231.78 64.6903 231.684 64.897 231.615 65.1412C231.547 65.3853 231.513 65.6669 231.513 65.9859V66.191C231.513 66.4416 231.547 66.6776 231.615 66.899C231.687 67.1171 231.789 67.3091 231.923 67.4752C232.06 67.6412 232.224 67.7714 232.416 67.8658C232.611 67.9602 232.833 68.0074 233.08 68.0074C233.399 68.0074 233.669 67.9423 233.891 67.8121C234.112 67.6819 234.306 67.5077 234.472 67.2896L235.019 67.7242C234.905 67.8967 234.76 68.0611 234.584 68.2173C234.408 68.3736 234.192 68.5005 233.935 68.5982C233.681 68.6959 233.38 68.7447 233.031 68.7447ZM237.045 64.1939V68.647H236.142V63.3638H237.021L237.045 64.1939ZM238.695 63.3345L238.69 64.1744C238.616 64.1581 238.544 64.1483 238.476 64.1451C238.41 64.1386 238.336 64.1353 238.251 64.1353C238.043 64.1353 237.859 64.1679 237.699 64.233C237.54 64.2981 237.405 64.3892 237.294 64.5064C237.183 64.6236 237.095 64.7636 237.03 64.9263C236.968 65.0858 236.928 65.2616 236.908 65.4537L236.654 65.6002C236.654 65.2811 236.685 64.9817 236.747 64.7017C236.812 64.4218 236.911 64.1744 237.045 63.9595C237.178 63.7414 237.348 63.5722 237.553 63.4517C237.761 63.328 238.008 63.2662 238.295 63.2662C238.36 63.2662 238.435 63.2743 238.52 63.2906C238.604 63.3036 238.663 63.3183 238.695 63.3345ZM240.429 64.4136V68.647H239.521V63.3638H240.38L240.429 64.4136ZM240.243 65.8052L239.823 65.7906C239.826 65.4293 239.874 65.0956 239.965 64.7896C240.056 64.4804 240.191 64.2118 240.37 63.9839C240.549 63.7561 240.772 63.5803 241.039 63.4566C241.306 63.3297 241.615 63.2662 241.967 63.2662C242.214 63.2662 242.442 63.302 242.65 63.3736C242.859 63.442 243.039 63.551 243.192 63.7007C243.345 63.8505 243.464 64.0425 243.549 64.2769C243.633 64.5113 243.676 64.7945 243.676 65.1265V68.647H242.772V65.1705C242.772 64.8938 242.725 64.6724 242.631 64.5064C242.54 64.3404 242.41 64.22 242.24 64.1451C242.071 64.067 241.872 64.0279 241.645 64.0279C241.378 64.0279 241.155 64.0751 240.976 64.1695C240.797 64.2639 240.653 64.3941 240.546 64.5601C240.438 64.7261 240.36 64.9166 240.312 65.1314C240.266 65.343 240.243 65.5676 240.243 65.8052ZM243.666 65.3072L243.061 65.4927C243.064 65.203 243.111 64.9247 243.202 64.6578C243.297 64.3908 243.432 64.1532 243.607 63.9449C243.786 63.7366 244.006 63.5722 244.267 63.4517C244.527 63.328 244.825 63.2662 245.16 63.2662C245.443 63.2662 245.694 63.3036 245.912 63.3785C246.133 63.4533 246.319 63.5689 246.469 63.7252C246.622 63.8782 246.737 64.0751 246.815 64.316C246.894 64.5569 246.933 64.8433 246.933 65.1754V68.647H246.024V65.1656C246.024 64.8694 245.977 64.6399 245.883 64.4771C245.792 64.3111 245.661 64.1955 245.492 64.1304C245.326 64.0621 245.128 64.0279 244.896 64.0279C244.698 64.0279 244.522 64.0621 244.369 64.1304C244.216 64.1988 244.088 64.2932 243.983 64.4136C243.879 64.5308 243.799 64.6659 243.744 64.8189C243.692 64.9719 243.666 65.1347 243.666 65.3072ZM251.376 67.2457C251.376 67.1155 251.347 66.995 251.288 66.8843C251.233 66.7704 251.117 66.6679 250.941 66.5767C250.769 66.4823 250.508 66.4009 250.16 66.3326C249.867 66.2707 249.602 66.1975 249.364 66.1129C249.13 66.0282 248.93 65.9257 248.764 65.8052C248.601 65.6848 248.476 65.5432 248.388 65.3804C248.3 65.2177 248.256 65.0272 248.256 64.8091C248.256 64.6008 248.301 64.4039 248.393 64.2183C248.487 64.0328 248.619 63.8684 248.788 63.7252C248.961 63.5819 249.167 63.4696 249.408 63.3882C249.649 63.3069 249.918 63.2662 250.214 63.2662C250.637 63.2662 250.998 63.341 251.298 63.4908C251.597 63.6405 251.827 63.8407 251.986 64.0914C252.146 64.3388 252.226 64.6138 252.226 64.9166H251.322C251.322 64.7701 251.278 64.6285 251.19 64.4918C251.106 64.3518 250.98 64.2362 250.814 64.1451C250.652 64.0539 250.451 64.0084 250.214 64.0084C249.963 64.0084 249.76 64.0474 249.604 64.1255C249.451 64.2004 249.338 64.2964 249.267 64.4136C249.198 64.5308 249.164 64.6545 249.164 64.7847C249.164 64.8824 249.18 64.9703 249.213 65.0484C249.249 65.1233 249.311 65.1933 249.398 65.2584C249.486 65.3202 249.61 65.3788 249.77 65.4341C249.929 65.4895 250.132 65.5448 250.38 65.6002C250.813 65.6978 251.169 65.815 251.449 65.9517C251.729 66.0884 251.938 66.2561 252.074 66.4547C252.211 66.6532 252.279 66.8941 252.279 67.1773C252.279 67.4084 252.23 67.62 252.133 67.8121C252.038 68.0041 251.9 68.1701 251.718 68.3101C251.539 68.4468 251.324 68.5543 251.073 68.6324C250.826 68.7073 250.548 68.7447 250.238 68.7447C249.773 68.7447 249.379 68.6617 249.057 68.4957C248.734 68.3297 248.49 68.1148 248.324 67.8511C248.158 67.5875 248.075 67.3091 248.075 67.0162H248.983C248.996 67.2636 249.068 67.4605 249.198 67.607C249.328 67.7502 249.488 67.8528 249.677 67.9146C249.866 67.9732 250.053 68.0025 250.238 68.0025C250.486 68.0025 250.692 67.97 250.858 67.9048C251.028 67.8397 251.156 67.7502 251.244 67.6363C251.332 67.5224 251.376 67.3922 251.376 67.2457Z",fill:"#334155"}),(0,C.createElement)("path",{d:"M174.67 48.1075H176.627V53.4379H180.025V55.1437H174.67V48.1075Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M182.045 51.6444V51.6193C182.045 49.6 183.675 47.957 185.845 47.957C188.015 47.957 189.62 49.5749 189.62 51.5942V51.6193C189.62 53.6386 187.99 55.2816 185.82 55.2816C183.65 55.2816 182.045 53.6637 182.045 51.6444ZM187.638 51.6444V51.6193C187.638 50.6034 186.911 49.7254 185.832 49.7254C184.766 49.7254 184.051 50.5908 184.051 51.6068V51.6318C184.051 52.6478 184.779 53.5257 185.845 53.5257C186.923 53.5257 187.638 52.6603 187.638 51.6444Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M192.016 52.0583V48.1075H193.997V52.0206C193.997 53.0366 194.512 53.5132 195.289 53.5132C196.067 53.5132 196.581 53.0491 196.581 52.0708V48.1075H198.563V52.0081C198.563 54.2782 197.271 55.2691 195.264 55.2691C193.27 55.2691 192.016 54.2657 192.016 52.0583Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M201.548 48.1075H204.257C206.766 48.1075 208.233 49.5498 208.233 51.5817V51.6068C208.233 53.6386 206.753 55.1437 204.22 55.1437H201.548V48.1075ZM204.295 53.4128C205.461 53.4128 206.239 52.7732 206.239 51.6318V51.6068C206.239 50.478 205.461 49.8258 204.295 49.8258H203.505V53.4003H204.295V53.4128Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M211.067 48.1075H216.699V49.8132H213.011V51.0173H216.347V52.6352H213.011V55.1437H211.067V48.1075Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M219.408 48.1075H221.352V53.4379H224.763V55.1437H219.408V48.1075Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M229.856 48.0573H231.737L234.735 55.1437H232.64L232.126 53.8894H229.417L228.915 55.1437H226.871L229.856 48.0573ZM231.574 52.3718L230.796 50.3776L230.006 52.3718H231.574Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M237.243 48.1075H240.567C241.645 48.1075 242.385 48.3834 242.862 48.8726C243.276 49.2739 243.489 49.8132 243.489 50.5156V50.5407C243.489 51.6193 242.912 52.3342 242.047 52.6979L243.727 55.1562H241.47L240.053 53.024H239.2V55.1562H237.243V48.1075ZM240.479 51.4813C241.144 51.4813 241.52 51.1552 241.52 50.6535V50.6285C241.52 50.0766 241.119 49.8007 240.467 49.8007H239.187V51.4813H240.479Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M246.298 48.1075H251.955V49.7631H248.23V50.8291H251.604V52.3718H248.23V53.4881H252.005V55.1437H246.298V48.1075Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M170.406 52.4721C170.13 53.0867 169.553 53.5257 168.8 53.5257C167.734 53.5257 167.007 52.6352 167.007 51.6318V51.6067C167.007 50.5908 167.722 49.7254 168.788 49.7254C169.59 49.7254 170.205 50.2145 170.456 50.8918H172.513C172.187 49.2112 170.707 47.9695 168.8 47.9695C166.63 47.9695 165 49.6125 165 51.6318V51.6569C165 53.6762 166.605 55.2941 168.775 55.2941C170.631 55.2941 172.086 54.0901 172.463 52.4847L170.406 52.4721Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M249.647 36.8822L244.266 33.7968L243.338 33.3954L221.326 33.546V44.7211H249.647V36.8822Z",fill:"white"}),(0,C.createElement)("path",{d:"M239.852 43.6926C240.115 42.7896 240.015 41.9618 239.576 41.3472C239.175 40.7828 238.497 40.4567 237.682 40.4191L222.243 40.2184C222.142 40.2184 222.054 40.1682 222.004 40.093C221.954 40.0177 221.942 39.9174 221.967 39.8171C222.017 39.6666 222.167 39.5537 222.33 39.5411L237.908 39.3405C239.751 39.2527 241.758 37.7601 242.461 35.929L243.351 33.6087C243.389 33.5083 243.401 33.408 243.376 33.3077C242.373 28.7674 238.322 25.381 233.48 25.381C229.015 25.381 225.228 28.2657 223.873 32.2667C222.995 31.6145 221.879 31.2633 220.675 31.3762C218.53 31.5894 216.812 33.3077 216.599 35.4524C216.548 36.0042 216.586 36.5435 216.711 37.0452C213.212 37.1456 210.415 40.0052 210.415 43.5296C210.415 43.8431 210.44 44.1567 210.478 44.4702C210.503 44.6207 210.628 44.7336 210.779 44.7336H239.275C239.438 44.7336 239.588 44.6207 239.639 44.4577L239.852 43.6926Z",fill:"#F38020"}),(0,C.createElement)("path",{d:"M244.768 33.7717C244.63 33.7717 244.48 33.7717 244.342 33.7843C244.241 33.7843 244.154 33.8595 244.116 33.9599L243.514 36.0544C243.251 36.9574 243.351 37.7852 243.79 38.3998C244.191 38.9642 244.868 39.2903 245.684 39.3279L248.97 39.5286C249.07 39.5286 249.158 39.5788 249.208 39.654C249.258 39.7293 249.271 39.8422 249.246 39.9299C249.196 40.0805 249.045 40.1933 248.882 40.2059L245.458 40.4066C243.602 40.4943 241.607 41.9869 240.905 43.818L240.654 44.4577C240.604 44.5831 240.692 44.7085 240.83 44.7085H252.594C252.732 44.7085 252.858 44.6207 252.895 44.4828C253.096 43.7553 253.209 42.9902 253.209 42.2001C253.209 37.5595 249.421 33.7717 244.768 33.7717Z",fill:"#FAAE40"})),H=window.wp.blockEditor,s=function({isSelected:e,attributes:t}){const l=(0,H.useBlockProps)();return t.isPreview?(0,C.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},c):(0,C.createElement)(C.Fragment,null,(0,C.createElement)("div",{...l},e?(0,C.createElement)("div",null,(0,C.createElement)(o,null)):c),(0,C.createElement)(H.InspectorControls,null,(0,C.createElement)("div",{style:{padding:"20px"}},(0,C.createElement)(o,null))))},{CaptchaOptions:V,CaptchaBlockEdit:d,CaptchaBlockTip:m}=JetFBComponents,{__:p}=wp.i18n,u={name:"turnstile",title:p("Turnstile","jet-form-builder"),isActive:(C,e)=>C.provider===e.provider,description:p("Set the Turnstile Captcha settings in the Captcha Container block to make user verification via WordPress form possible.","jet-form-builder"),icon:(0,C.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("path",{d:"M40.6149 37.2125C41.0498 37.5529 41.1264 38.1814 40.7861 38.6163L37.2322 43.1573C36.6656 43.8813 35.5869 43.9299 34.9576 43.2597L33.2696 41.4623C32.8915 41.0598 32.9114 40.4269 33.314 40.0488C33.7166 39.6708 34.3494 39.6906 34.7275 40.0932L36.0164 41.4657L39.211 37.3837C39.5514 36.9488 40.1799 36.8721 40.6149 37.2125Z",fill:"currentColor"}),(0,C.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M46.5407 43H56.6089C58.8874 43 61.1208 41.7827 61.6499 39.5182C63.5363 31.4454 57.0428 22.976 48.5207 23.4547C46.5416 17.3331 40.672 13 33.9134 13C28.0351 13 22.8286 16.2782 20.2704 21.1603C15.1969 19.6577 9.9458 23.5648 9.66997 28.8454C4.89227 29.8298 1.64218 34.4522 2.03161 39.2536C2.22701 41.6627 4.58295 43 6.94884 43H27.4564C28.7306 47.0571 32.5209 50 36.9985 50C41.4762 50 45.2665 47.0571 46.5407 43ZM47.0924 25.5381C45.4986 19.5 40.5887 15 33.9134 15C28.0257 15 23.4986 18.5 21.2789 23.5448C14.9986 21.5 11.9986 24.5 11.5867 30.4925C6.99857 31 3.62854 34.203 4.02507 39.0919C4.13652 40.466 5.78252 41 6.94884 41H27.0479C27.0153 40.6711 26.9985 40.3375 26.9985 40C26.9985 34.4772 31.4757 30 36.9985 30C42.5214 30 46.9985 34.4772 46.9985 40C46.9985 40.3375 46.9818 40.6711 46.9492 41H56.6089C58.3083 41 59.4552 40.1211 59.7024 39.0631C61.4652 31.5192 54.8741 24.2771 47.0924 25.5381ZM36.9985 32C32.5803 32 28.9985 35.5817 28.9985 40C28.9985 44.4183 32.5803 48 36.9985 48C41.4168 48 44.9985 44.4183 44.9985 40C44.9985 35.5817 41.4168 32 36.9985 32Z",fill:"currentColor"})),scope:["block","inserter"],attributes:{provider:"turnstile"}},{registerPlugin:L}=wp.plugins,{registerBlockVariation:h}=wp.blocks;h("jet-forms/captcha-container",u),L("jf-turnstile",{render:function(){return(0,C.createElement)(C.Fragment,null,(0,C.createElement)(V,{provider:"turnstile"},e=>(0,C.createElement)(C.Fragment,null,(0,C.createElement)(o,{...e}),(0,C.createElement)(m,null))),(0,C.createElement)(d,{provider:"turnstile"},e=>(0,C.createElement)(s,{...e})))}})})(); \ No newline at end of file +(()=>{"use strict";const C=window.React,e=window.wp.components,t=window.wp.i18n,{ToggleControl:l,BaseHelp:r}=JetFBComponents,{useCaptchaProvider:n}=JetFBHooks,{useEffect:a}=wp.element,i=JetFBActions.globalTab({slug:"captcha-tab",element:"turnstile",empty:{}}),o=function(){const[o,c]=n(),H=o.use_global?i:o;return a((()=>{c({key:H.key,secret:H.secret,threshold:H.threshold})}),[o.use_global]),(0,C.createElement)(C.Fragment,null,(0,C.createElement)(l,{checked:o.use_global,onChange:C=>c({use_global:C})},(0,t.__)("Use","jet-form-builder")+" ",(0,C.createElement)("a",{href:JetFormEditorData.global_settings_url+"#captcha-tab__turnstile"},(0,t.__)("Global Settings","jet-form-builder"))),(0,C.createElement)(e.TextControl,{label:(0,t.__)("Site Key:","jet-form-builder"),value:H.key,help:(0,t.__)("Read the hint to the Secret Key field","jet-form-builder"),disabled:o.use_global,onChange:C=>c({key:C})}),(0,C.createElement)(e.TextControl,{label:(0,t.__)("Secret Key:","jet-form-builder"),value:H.secret,help:(0,t.__)("You can find both keys on your Turnstile Site settings page","jet-form-builder"),disabled:o.use_global,onChange:C=>c({secret:C})}),(0,C.createElement)(r,null,(0,t.__)("Didn't find it? Here is","jet-form-builder")+" ",(0,C.createElement)(e.ExternalLink,{href:"https://developers.cloudflare.com/turnstile/get-started/#get-a-sitekey-and-secret-key"},(0,t.__)("a more detailed description","jet-form-builder"))))},c=(0,C.createElement)("svg",{width:"268",height:"92",viewBox:"0 0 268 92",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("rect",{width:"268",height:"92",rx:"4",fill:"white"}),(0,C.createElement)("path",{d:"M36 28.5C26.34 28.5 18.5 36.34 18.5 46C18.5 55.66 26.34 63.5 36 63.5C45.66 63.5 53.5 55.66 53.5 46C53.5 36.34 45.66 28.5 36 28.5ZM32.5 54.75L23.75 46L26.2175 43.5325L32.5 49.7975L45.7825 36.515L48.25 39L32.5 54.75Z",fill:"#0DC167"}),(0,C.createElement)("path",{d:"M70.6826 49.2656C70.6826 48.9668 70.6357 48.7031 70.542 48.4746C70.4541 48.2402 70.2959 48.0293 70.0674 47.8418C69.8447 47.6543 69.5342 47.4756 69.1357 47.3057C68.7432 47.1357 68.2451 46.9629 67.6416 46.7871C67.0088 46.5996 66.4375 46.3916 65.9277 46.1631C65.418 45.9287 64.9814 45.6621 64.6182 45.3633C64.2549 45.0645 63.9766 44.7217 63.7832 44.335C63.5898 43.9482 63.4932 43.5059 63.4932 43.0078C63.4932 42.5098 63.5957 42.0498 63.8008 41.6279C64.0059 41.2061 64.2988 40.8398 64.6797 40.5293C65.0664 40.2129 65.5264 39.9668 66.0596 39.791C66.5928 39.6152 67.1875 39.5273 67.8438 39.5273C68.8047 39.5273 69.6191 39.7119 70.2871 40.0811C70.9609 40.4443 71.4736 40.9219 71.8252 41.5137C72.1768 42.0996 72.3525 42.7266 72.3525 43.3945H70.665C70.665 42.9141 70.5625 42.4893 70.3574 42.1201C70.1523 41.7451 69.8418 41.4521 69.4258 41.2412C69.0098 41.0244 68.4824 40.916 67.8438 40.916C67.2402 40.916 66.7422 41.0068 66.3496 41.1885C65.957 41.3701 65.6641 41.6162 65.4707 41.9268C65.2832 42.2373 65.1895 42.5918 65.1895 42.9902C65.1895 43.2598 65.2451 43.5059 65.3564 43.7285C65.4736 43.9453 65.6523 44.1475 65.8926 44.335C66.1387 44.5225 66.4492 44.6953 66.8242 44.8535C67.2051 45.0117 67.6592 45.1641 68.1865 45.3105C68.9131 45.5156 69.54 45.7441 70.0674 45.9961C70.5947 46.248 71.0283 46.5322 71.3682 46.8486C71.7139 47.1592 71.9688 47.5137 72.1328 47.9121C72.3027 48.3047 72.3877 48.75 72.3877 49.248C72.3877 49.7695 72.2822 50.2412 72.0713 50.6631C71.8604 51.085 71.5586 51.4453 71.166 51.7441C70.7734 52.043 70.3018 52.2744 69.751 52.4385C69.2061 52.5967 68.5967 52.6758 67.9229 52.6758C67.3311 52.6758 66.748 52.5938 66.1738 52.4297C65.6055 52.2656 65.0869 52.0195 64.6182 51.6914C64.1553 51.3633 63.7832 50.959 63.502 50.4785C63.2266 49.9922 63.0889 49.4297 63.0889 48.791H64.7764C64.7764 49.2305 64.8613 49.6084 65.0312 49.9248C65.2012 50.2354 65.4326 50.4932 65.7256 50.6982C66.0244 50.9033 66.3613 51.0557 66.7363 51.1553C67.1172 51.249 67.5127 51.2959 67.9229 51.2959C68.5146 51.2959 69.0156 51.2139 69.4258 51.0498C69.8359 50.8857 70.1465 50.6514 70.3574 50.3467C70.5742 50.042 70.6826 49.6816 70.6826 49.2656ZM80.1221 50.3027V42.9902H81.7568V52.5H80.2012L80.1221 50.3027ZM80.4297 48.2988L81.1064 48.2812C81.1064 48.9141 81.0391 49.5 80.9043 50.0391C80.7754 50.5723 80.5645 51.0352 80.2715 51.4277C79.9785 51.8203 79.5947 52.1279 79.1201 52.3506C78.6455 52.5674 78.0684 52.6758 77.3887 52.6758C76.9258 52.6758 76.501 52.6084 76.1143 52.4736C75.7334 52.3389 75.4053 52.1309 75.1299 51.8496C74.8545 51.5684 74.6406 51.2021 74.4883 50.751C74.3418 50.2998 74.2686 49.7578 74.2686 49.125V42.9902H75.8945V49.1426C75.8945 49.5703 75.9414 49.9248 76.0352 50.2061C76.1348 50.4814 76.2666 50.7012 76.4307 50.8652C76.6006 51.0234 76.7881 51.1348 76.9932 51.1992C77.2041 51.2637 77.4209 51.2959 77.6436 51.2959C78.335 51.2959 78.8828 51.1641 79.2871 50.9004C79.6914 50.6309 79.9814 50.2705 80.1572 49.8193C80.3389 49.3623 80.4297 48.8555 80.4297 48.2988ZM88.041 51.3398C88.4277 51.3398 88.7852 51.2607 89.1133 51.1025C89.4414 50.9443 89.7109 50.7275 89.9219 50.4521C90.1328 50.1709 90.2529 49.8516 90.2822 49.4941H91.8291C91.7998 50.0566 91.6094 50.5811 91.2578 51.0674C90.9121 51.5479 90.458 51.9375 89.8955 52.2363C89.333 52.5293 88.7148 52.6758 88.041 52.6758C87.3262 52.6758 86.7021 52.5498 86.1689 52.2979C85.6416 52.0459 85.2021 51.7002 84.8506 51.2607C84.5049 50.8213 84.2441 50.3174 84.0684 49.749C83.8984 49.1748 83.8135 48.5684 83.8135 47.9297V47.5605C83.8135 46.9219 83.8984 46.3184 84.0684 45.75C84.2441 45.1758 84.5049 44.6689 84.8506 44.2295C85.2021 43.79 85.6416 43.4443 86.1689 43.1924C86.7021 42.9404 87.3262 42.8145 88.041 42.8145C88.7852 42.8145 89.4355 42.9668 89.9922 43.2715C90.5488 43.5703 90.9854 43.9805 91.3018 44.502C91.624 45.0176 91.7998 45.6035 91.8291 46.2598H90.2822C90.2529 45.8672 90.1416 45.5127 89.9482 45.1963C89.7607 44.8799 89.5029 44.6279 89.1748 44.4404C88.8525 44.2471 88.4746 44.1504 88.041 44.1504C87.543 44.1504 87.124 44.25 86.7842 44.4492C86.4502 44.6426 86.1836 44.9062 85.9844 45.2402C85.791 45.5684 85.6504 45.9346 85.5625 46.3389C85.4805 46.7373 85.4395 47.1445 85.4395 47.5605V47.9297C85.4395 48.3457 85.4805 48.7559 85.5625 49.1602C85.6445 49.5645 85.7822 49.9307 85.9756 50.2588C86.1748 50.5869 86.4414 50.8506 86.7754 51.0498C87.1152 51.2432 87.5371 51.3398 88.041 51.3398ZM97.4629 51.3398C97.8496 51.3398 98.207 51.2607 98.5352 51.1025C98.8633 50.9443 99.1328 50.7275 99.3438 50.4521C99.5547 50.1709 99.6748 49.8516 99.7041 49.4941H101.251C101.222 50.0566 101.031 50.5811 100.68 51.0674C100.334 51.5479 99.8799 51.9375 99.3174 52.2363C98.7549 52.5293 98.1367 52.6758 97.4629 52.6758C96.748 52.6758 96.124 52.5498 95.5908 52.2979C95.0635 52.0459 94.624 51.7002 94.2725 51.2607C93.9268 50.8213 93.666 50.3174 93.4902 49.749C93.3203 49.1748 93.2354 48.5684 93.2354 47.9297V47.5605C93.2354 46.9219 93.3203 46.3184 93.4902 45.75C93.666 45.1758 93.9268 44.6689 94.2725 44.2295C94.624 43.79 95.0635 43.4443 95.5908 43.1924C96.124 42.9404 96.748 42.8145 97.4629 42.8145C98.207 42.8145 98.8574 42.9668 99.4141 43.2715C99.9707 43.5703 100.407 43.9805 100.724 44.502C101.046 45.0176 101.222 45.6035 101.251 46.2598H99.7041C99.6748 45.8672 99.5635 45.5127 99.3701 45.1963C99.1826 44.8799 98.9248 44.6279 98.5967 44.4404C98.2744 44.2471 97.8965 44.1504 97.4629 44.1504C96.9648 44.1504 96.5459 44.25 96.2061 44.4492C95.8721 44.6426 95.6055 44.9062 95.4062 45.2402C95.2129 45.5684 95.0723 45.9346 94.9844 46.3389C94.9023 46.7373 94.8613 47.1445 94.8613 47.5605V47.9297C94.8613 48.3457 94.9023 48.7559 94.9844 49.1602C95.0664 49.5645 95.2041 49.9307 95.3975 50.2588C95.5967 50.5869 95.8633 50.8506 96.1973 51.0498C96.5371 51.2432 96.959 51.3398 97.4629 51.3398ZM107.025 52.6758C106.363 52.6758 105.763 52.5645 105.224 52.3418C104.69 52.1133 104.23 51.7939 103.844 51.3838C103.463 50.9736 103.17 50.4873 102.965 49.9248C102.76 49.3623 102.657 48.7471 102.657 48.0791V47.71C102.657 46.9365 102.771 46.248 103 45.6445C103.229 45.0352 103.539 44.5195 103.932 44.0977C104.324 43.6758 104.77 43.3564 105.268 43.1396C105.766 42.9229 106.281 42.8145 106.814 42.8145C107.494 42.8145 108.08 42.9316 108.572 43.166C109.07 43.4004 109.478 43.7285 109.794 44.1504C110.11 44.5664 110.345 45.0586 110.497 45.627C110.649 46.1895 110.726 46.8047 110.726 47.4727V48.2021H103.624V46.875H109.1V46.752C109.076 46.3301 108.988 45.9199 108.836 45.5215C108.689 45.123 108.455 44.7949 108.133 44.5371C107.811 44.2793 107.371 44.1504 106.814 44.1504C106.445 44.1504 106.105 44.2295 105.795 44.3877C105.484 44.54 105.218 44.7686 104.995 45.0732C104.772 45.3779 104.6 45.75 104.477 46.1895C104.354 46.6289 104.292 47.1357 104.292 47.71V48.0791C104.292 48.5303 104.354 48.9551 104.477 49.3535C104.605 49.7461 104.79 50.0918 105.03 50.3906C105.276 50.6895 105.572 50.9238 105.918 51.0938C106.27 51.2637 106.668 51.3486 107.113 51.3486C107.688 51.3486 108.174 51.2314 108.572 50.9971C108.971 50.7627 109.319 50.4492 109.618 50.0566L110.603 50.8389C110.397 51.1494 110.137 51.4453 109.82 51.7266C109.504 52.0078 109.114 52.2363 108.651 52.4121C108.194 52.5879 107.652 52.6758 107.025 52.6758ZM118.161 49.9775C118.161 49.7432 118.108 49.5264 118.003 49.3271C117.903 49.1221 117.695 48.9375 117.379 48.7734C117.068 48.6035 116.6 48.457 115.973 48.334C115.445 48.2227 114.968 48.0908 114.54 47.9385C114.118 47.7861 113.758 47.6016 113.459 47.3848C113.166 47.168 112.94 46.9131 112.782 46.6201C112.624 46.3271 112.545 45.9844 112.545 45.5918C112.545 45.2168 112.627 44.8623 112.791 44.5283C112.961 44.1943 113.198 43.8984 113.503 43.6406C113.813 43.3828 114.186 43.1807 114.619 43.0342C115.053 42.8877 115.536 42.8145 116.069 42.8145C116.831 42.8145 117.481 42.9492 118.021 43.2188C118.56 43.4883 118.973 43.8486 119.26 44.2998C119.547 44.7451 119.69 45.2402 119.69 45.7852H118.064C118.064 45.5215 117.985 45.2666 117.827 45.0205C117.675 44.7686 117.449 44.5605 117.15 44.3965C116.857 44.2324 116.497 44.1504 116.069 44.1504C115.618 44.1504 115.252 44.2207 114.971 44.3613C114.695 44.4961 114.493 44.6689 114.364 44.8799C114.241 45.0908 114.18 45.3135 114.18 45.5479C114.18 45.7236 114.209 45.8818 114.268 46.0225C114.332 46.1572 114.443 46.2832 114.602 46.4004C114.76 46.5117 114.982 46.6172 115.27 46.7168C115.557 46.8164 115.923 46.916 116.368 47.0156C117.147 47.1914 117.789 47.4023 118.293 47.6484C118.797 47.8945 119.172 48.1963 119.418 48.5537C119.664 48.9111 119.787 49.3447 119.787 49.8545C119.787 50.2705 119.699 50.6514 119.523 50.9971C119.354 51.3428 119.104 51.6416 118.776 51.8936C118.454 52.1396 118.067 52.333 117.616 52.4736C117.171 52.6084 116.67 52.6758 116.113 52.6758C115.275 52.6758 114.566 52.5264 113.986 52.2275C113.406 51.9287 112.967 51.542 112.668 51.0674C112.369 50.5928 112.22 50.0918 112.22 49.5645H113.854C113.878 50.0098 114.007 50.3643 114.241 50.6279C114.476 50.8857 114.763 51.0703 115.103 51.1816C115.442 51.2871 115.779 51.3398 116.113 51.3398C116.559 51.3398 116.931 51.2812 117.229 51.1641C117.534 51.0469 117.766 50.8857 117.924 50.6807C118.082 50.4756 118.161 50.2412 118.161 49.9775ZM127.46 49.9775C127.46 49.7432 127.407 49.5264 127.302 49.3271C127.202 49.1221 126.994 48.9375 126.678 48.7734C126.367 48.6035 125.898 48.457 125.271 48.334C124.744 48.2227 124.267 48.0908 123.839 47.9385C123.417 47.7861 123.057 47.6016 122.758 47.3848C122.465 47.168 122.239 46.9131 122.081 46.6201C121.923 46.3271 121.844 45.9844 121.844 45.5918C121.844 45.2168 121.926 44.8623 122.09 44.5283C122.26 44.1943 122.497 43.8984 122.802 43.6406C123.112 43.3828 123.484 43.1807 123.918 43.0342C124.352 42.8877 124.835 42.8145 125.368 42.8145C126.13 42.8145 126.78 42.9492 127.319 43.2188C127.858 43.4883 128.271 43.8486 128.559 44.2998C128.846 44.7451 128.989 45.2402 128.989 45.7852H127.363C127.363 45.5215 127.284 45.2666 127.126 45.0205C126.974 44.7686 126.748 44.5605 126.449 44.3965C126.156 44.2324 125.796 44.1504 125.368 44.1504C124.917 44.1504 124.551 44.2207 124.27 44.3613C123.994 44.4961 123.792 44.6689 123.663 44.8799C123.54 45.0908 123.479 45.3135 123.479 45.5479C123.479 45.7236 123.508 45.8818 123.566 46.0225C123.631 46.1572 123.742 46.2832 123.9 46.4004C124.059 46.5117 124.281 46.6172 124.568 46.7168C124.855 46.8164 125.222 46.916 125.667 47.0156C126.446 47.1914 127.088 47.4023 127.592 47.6484C128.096 47.8945 128.471 48.1963 128.717 48.5537C128.963 48.9111 129.086 49.3447 129.086 49.8545C129.086 50.2705 128.998 50.6514 128.822 50.9971C128.652 51.3428 128.403 51.6416 128.075 51.8936C127.753 52.1396 127.366 52.333 126.915 52.4736C126.47 52.6084 125.969 52.6758 125.412 52.6758C124.574 52.6758 123.865 52.5264 123.285 52.2275C122.705 51.9287 122.266 51.542 121.967 51.0674C121.668 50.5928 121.519 50.0918 121.519 49.5645H123.153C123.177 50.0098 123.306 50.3643 123.54 50.6279C123.774 50.8857 124.062 51.0703 124.401 51.1816C124.741 51.2871 125.078 51.3398 125.412 51.3398C125.857 51.3398 126.229 51.2812 126.528 51.1641C126.833 51.0469 127.064 50.8857 127.223 50.6807C127.381 50.4756 127.46 50.2412 127.46 49.9775ZM133.155 39.7031L133.041 48.8877H131.573L131.45 39.7031H133.155ZM131.397 51.6826C131.397 51.4189 131.477 51.1963 131.635 51.0146C131.799 50.833 132.039 50.7422 132.355 50.7422C132.666 50.7422 132.903 50.833 133.067 51.0146C133.237 51.1963 133.322 51.4189 133.322 51.6826C133.322 51.9346 133.237 52.1514 133.067 52.333C132.903 52.5146 132.666 52.6055 132.355 52.6055C132.039 52.6055 131.799 52.5146 131.635 52.333C131.477 52.1514 131.397 51.9346 131.397 51.6826Z",fill:"#0F172A"}),(0,C.createElement)("path",{d:"M187.67 65.8589H185.771V65.0923H187.67C188.038 65.0923 188.336 65.0338 188.563 64.9166C188.791 64.7994 188.957 64.6366 189.062 64.4283C189.169 64.22 189.223 63.9823 189.223 63.7154C189.223 63.4713 189.169 63.2418 189.062 63.0269C188.957 62.8121 188.791 62.6395 188.563 62.5093C188.336 62.3759 188.038 62.3091 187.67 62.3091H185.99V68.647H185.048V61.5377H187.67C188.207 61.5377 188.661 61.6304 189.032 61.816C189.403 62.0015 189.685 62.2587 189.877 62.5875C190.069 62.913 190.165 63.2857 190.165 63.7056C190.165 64.1614 190.069 64.5504 189.877 64.8726C189.685 65.1949 189.403 65.4407 189.032 65.6099C188.661 65.7759 188.207 65.8589 187.67 65.8589ZM192.123 64.1939V68.647H191.22V63.3638H192.099L192.123 64.1939ZM193.773 63.3345L193.769 64.1744C193.694 64.1581 193.622 64.1483 193.554 64.1451C193.489 64.1386 193.414 64.1353 193.329 64.1353C193.121 64.1353 192.937 64.1679 192.777 64.233C192.618 64.2981 192.483 64.3892 192.372 64.5064C192.261 64.6236 192.174 64.7636 192.108 64.9263C192.047 65.0858 192.006 65.2616 191.986 65.4537L191.732 65.6002C191.732 65.2811 191.763 64.9817 191.825 64.7017C191.89 64.4218 191.99 64.1744 192.123 63.9595C192.257 63.7414 192.426 63.5722 192.631 63.4517C192.839 63.328 193.087 63.2662 193.373 63.2662C193.438 63.2662 193.513 63.2743 193.598 63.2906C193.682 63.3036 193.741 63.3183 193.773 63.3345ZM195.59 63.3638V68.647H194.682V63.3638H195.59ZM194.613 61.9625C194.613 61.816 194.657 61.6923 194.745 61.5914C194.836 61.4905 194.97 61.44 195.146 61.44C195.318 61.44 195.45 61.4905 195.541 61.5914C195.635 61.6923 195.683 61.816 195.683 61.9625C195.683 62.1024 195.635 62.2229 195.541 62.3238C195.45 62.4214 195.318 62.4703 195.146 62.4703C194.97 62.4703 194.836 62.4214 194.745 62.3238C194.657 62.2229 194.613 62.1024 194.613 61.9625ZM198.646 67.8316L200.092 63.3638H201.015L199.115 68.647H198.51L198.646 67.8316ZM197.44 63.3638L198.93 67.856L199.032 68.647H198.427L196.513 63.3638H197.44ZM204.921 67.7437V65.024C204.921 64.8157 204.879 64.635 204.794 64.482C204.713 64.3257 204.589 64.2053 204.423 64.1207C204.257 64.036 204.052 63.9937 203.808 63.9937C203.58 63.9937 203.38 64.0328 203.207 64.1109C203.038 64.189 202.904 64.2916 202.807 64.4185C202.712 64.5455 202.665 64.6822 202.665 64.8287H201.762C201.762 64.6399 201.811 64.4527 201.908 64.2672C202.006 64.0816 202.146 63.914 202.328 63.7642C202.514 63.6112 202.735 63.4908 202.992 63.4029C203.253 63.3117 203.542 63.2662 203.861 63.2662C204.245 63.2662 204.584 63.3313 204.877 63.4615C205.173 63.5917 205.404 63.7886 205.57 64.0523C205.74 64.3127 205.824 64.6399 205.824 65.0338V67.4947C205.824 67.6705 205.839 67.8576 205.868 68.0562C205.901 68.2548 205.948 68.4257 206.01 68.5689V68.647H205.067C205.022 68.5429 204.986 68.4045 204.96 68.232C204.934 68.0562 204.921 67.8935 204.921 67.7437ZM205.077 65.4439L205.087 66.0787H204.174C203.917 66.0787 203.687 66.0998 203.485 66.1422C203.284 66.1812 203.114 66.2414 202.978 66.3228C202.841 66.4042 202.737 66.5067 202.665 66.6304C202.593 66.7509 202.558 66.8925 202.558 67.0552C202.558 67.2213 202.595 67.3726 202.67 67.5093C202.745 67.6461 202.857 67.7551 203.007 67.8365C203.16 67.9146 203.347 67.9537 203.568 67.9537C203.845 67.9537 204.089 67.8951 204.301 67.7779C204.512 67.6607 204.68 67.5175 204.804 67.3482C204.931 67.1789 204.999 67.0145 205.009 66.855L205.395 67.2896C205.372 67.4263 205.31 67.5777 205.209 67.7437C205.108 67.9097 204.973 68.0692 204.804 68.2222C204.638 68.372 204.439 68.4973 204.208 68.5982C203.98 68.6959 203.723 68.7447 203.437 68.7447C203.078 68.7447 202.764 68.6747 202.494 68.5347C202.227 68.3948 202.019 68.2076 201.869 67.9732C201.723 67.7356 201.649 67.4703 201.649 67.1773C201.649 66.8941 201.705 66.6451 201.815 66.4302C201.926 66.2121 202.086 66.0315 202.294 65.8882C202.502 65.7418 202.753 65.6311 203.046 65.5562C203.339 65.4813 203.666 65.4439 204.027 65.4439H205.077ZM209.359 68.0025C209.574 68.0025 209.773 67.9586 209.955 67.8707C210.137 67.7828 210.287 67.6623 210.404 67.5093C210.521 67.3531 210.588 67.1757 210.604 66.9771H211.464C211.448 67.2896 211.342 67.581 211.146 67.8511C210.954 68.1181 210.702 68.3345 210.39 68.5005C210.077 68.6633 209.734 68.7447 209.359 68.7447C208.962 68.7447 208.616 68.6747 208.319 68.5347C208.026 68.3948 207.782 68.2027 207.587 67.9586C207.395 67.7144 207.25 67.4345 207.152 67.1187C207.058 66.7997 207.011 66.4628 207.011 66.108V65.9029C207.011 65.5481 207.058 65.2128 207.152 64.897C207.25 64.578 207.395 64.2964 207.587 64.0523C207.782 63.8082 208.026 63.6161 208.319 63.4761C208.616 63.3362 208.962 63.2662 209.359 63.2662C209.773 63.2662 210.134 63.3508 210.443 63.5201C210.753 63.6861 210.995 63.914 211.171 64.2037C211.35 64.4901 211.448 64.8157 211.464 65.1802H210.604C210.588 64.9621 210.526 64.7652 210.419 64.5894C210.315 64.4136 210.172 64.2737 209.989 64.1695C209.81 64.0621 209.6 64.0084 209.359 64.0084C209.083 64.0084 208.85 64.0637 208.661 64.1744C208.476 64.2818 208.327 64.4283 208.217 64.6138C208.109 64.7961 208.031 64.9996 207.982 65.2242C207.937 65.4455 207.914 65.6718 207.914 65.9029V66.108C207.914 66.3391 207.937 66.567 207.982 66.7916C208.028 67.0162 208.104 67.2196 208.212 67.4019C208.323 67.5842 208.471 67.7307 208.656 67.8414C208.845 67.9488 209.079 68.0025 209.359 68.0025ZM213.964 68.1002L215.434 63.3638H216.4L214.281 69.4625C214.232 69.5927 214.167 69.7326 214.086 69.8824C214.008 70.0354 213.907 70.1802 213.783 70.317C213.66 70.4537 213.51 70.5644 213.334 70.649C213.161 70.7369 212.955 70.7808 212.714 70.7808C212.642 70.7808 212.551 70.7711 212.44 70.7515C212.33 70.732 212.252 70.7157 212.206 70.7027L212.201 69.9703C212.227 69.9735 212.268 69.9768 212.323 69.98C212.382 69.9866 212.423 69.9898 212.445 69.9898C212.65 69.9898 212.825 69.9621 212.968 69.9068C213.111 69.8547 213.231 69.7652 213.329 69.6382C213.43 69.5145 213.516 69.3436 213.588 69.1255L213.964 68.1002ZM212.885 63.3638L214.257 67.4654L214.491 68.4175L213.842 68.7496L211.898 63.3638H212.885ZM219.687 65.0728V64.8726C219.687 64.5927 219.774 64.3616 219.95 64.1793C220.129 63.997 220.372 63.9058 220.678 63.9058C220.987 63.9058 221.231 63.997 221.41 64.1793C221.589 64.3616 221.679 64.5927 221.679 64.8726V65.0728C221.679 65.3495 221.589 65.579 221.41 65.7613C221.234 65.9403 220.992 66.0298 220.683 66.0298C220.377 66.0298 220.134 65.9403 219.955 65.7613C219.776 65.579 219.687 65.3495 219.687 65.0728ZM228.124 61.5377V68.647H227.196V61.5377H228.124ZM230.409 61.5377V62.3091H224.916V61.5377H230.409ZM233.031 68.7447C232.663 68.7447 232.33 68.6828 232.03 68.5591C231.734 68.4322 231.479 68.2548 231.264 68.0269C231.052 67.7991 230.889 67.5289 230.775 67.2164C230.661 66.9039 230.604 66.5621 230.604 66.191V65.9859C230.604 65.5562 230.668 65.1737 230.795 64.8384C230.922 64.4999 231.094 64.2134 231.312 63.9791C231.531 63.7447 231.778 63.5673 232.055 63.4468C232.331 63.3264 232.618 63.2662 232.914 63.2662C233.292 63.2662 233.617 63.3313 233.891 63.4615C234.167 63.5917 234.394 63.774 234.569 64.0084C234.745 64.2395 234.875 64.5129 234.96 64.8287C235.045 65.1412 235.087 65.483 235.087 65.8541V66.2593H231.142V65.522H234.184V65.4537C234.171 65.2193 234.122 64.9914 234.037 64.7701C233.956 64.5487 233.826 64.3664 233.646 64.2232C233.467 64.08 233.223 64.0084 232.914 64.0084C232.709 64.0084 232.52 64.0523 232.348 64.1402C232.175 64.2248 232.027 64.3518 231.903 64.5211C231.78 64.6903 231.684 64.897 231.615 65.1412C231.547 65.3853 231.513 65.6669 231.513 65.9859V66.191C231.513 66.4416 231.547 66.6776 231.615 66.899C231.687 67.1171 231.789 67.3091 231.923 67.4752C232.06 67.6412 232.224 67.7714 232.416 67.8658C232.611 67.9602 232.833 68.0074 233.08 68.0074C233.399 68.0074 233.669 67.9423 233.891 67.8121C234.112 67.6819 234.306 67.5077 234.472 67.2896L235.019 67.7242C234.905 67.8967 234.76 68.0611 234.584 68.2173C234.408 68.3736 234.192 68.5005 233.935 68.5982C233.681 68.6959 233.38 68.7447 233.031 68.7447ZM237.045 64.1939V68.647H236.142V63.3638H237.021L237.045 64.1939ZM238.695 63.3345L238.69 64.1744C238.616 64.1581 238.544 64.1483 238.476 64.1451C238.41 64.1386 238.336 64.1353 238.251 64.1353C238.043 64.1353 237.859 64.1679 237.699 64.233C237.54 64.2981 237.405 64.3892 237.294 64.5064C237.183 64.6236 237.095 64.7636 237.03 64.9263C236.968 65.0858 236.928 65.2616 236.908 65.4537L236.654 65.6002C236.654 65.2811 236.685 64.9817 236.747 64.7017C236.812 64.4218 236.911 64.1744 237.045 63.9595C237.178 63.7414 237.348 63.5722 237.553 63.4517C237.761 63.328 238.008 63.2662 238.295 63.2662C238.36 63.2662 238.435 63.2743 238.52 63.2906C238.604 63.3036 238.663 63.3183 238.695 63.3345ZM240.429 64.4136V68.647H239.521V63.3638H240.38L240.429 64.4136ZM240.243 65.8052L239.823 65.7906C239.826 65.4293 239.874 65.0956 239.965 64.7896C240.056 64.4804 240.191 64.2118 240.37 63.9839C240.549 63.7561 240.772 63.5803 241.039 63.4566C241.306 63.3297 241.615 63.2662 241.967 63.2662C242.214 63.2662 242.442 63.302 242.65 63.3736C242.859 63.442 243.039 63.551 243.192 63.7007C243.345 63.8505 243.464 64.0425 243.549 64.2769C243.633 64.5113 243.676 64.7945 243.676 65.1265V68.647H242.772V65.1705C242.772 64.8938 242.725 64.6724 242.631 64.5064C242.54 64.3404 242.41 64.22 242.24 64.1451C242.071 64.067 241.872 64.0279 241.645 64.0279C241.378 64.0279 241.155 64.0751 240.976 64.1695C240.797 64.2639 240.653 64.3941 240.546 64.5601C240.438 64.7261 240.36 64.9166 240.312 65.1314C240.266 65.343 240.243 65.5676 240.243 65.8052ZM243.666 65.3072L243.061 65.4927C243.064 65.203 243.111 64.9247 243.202 64.6578C243.297 64.3908 243.432 64.1532 243.607 63.9449C243.786 63.7366 244.006 63.5722 244.267 63.4517C244.527 63.328 244.825 63.2662 245.16 63.2662C245.443 63.2662 245.694 63.3036 245.912 63.3785C246.133 63.4533 246.319 63.5689 246.469 63.7252C246.622 63.8782 246.737 64.0751 246.815 64.316C246.894 64.5569 246.933 64.8433 246.933 65.1754V68.647H246.024V65.1656C246.024 64.8694 245.977 64.6399 245.883 64.4771C245.792 64.3111 245.661 64.1955 245.492 64.1304C245.326 64.0621 245.128 64.0279 244.896 64.0279C244.698 64.0279 244.522 64.0621 244.369 64.1304C244.216 64.1988 244.088 64.2932 243.983 64.4136C243.879 64.5308 243.799 64.6659 243.744 64.8189C243.692 64.9719 243.666 65.1347 243.666 65.3072ZM251.376 67.2457C251.376 67.1155 251.347 66.995 251.288 66.8843C251.233 66.7704 251.117 66.6679 250.941 66.5767C250.769 66.4823 250.508 66.4009 250.16 66.3326C249.867 66.2707 249.602 66.1975 249.364 66.1129C249.13 66.0282 248.93 65.9257 248.764 65.8052C248.601 65.6848 248.476 65.5432 248.388 65.3804C248.3 65.2177 248.256 65.0272 248.256 64.8091C248.256 64.6008 248.301 64.4039 248.393 64.2183C248.487 64.0328 248.619 63.8684 248.788 63.7252C248.961 63.5819 249.167 63.4696 249.408 63.3882C249.649 63.3069 249.918 63.2662 250.214 63.2662C250.637 63.2662 250.998 63.341 251.298 63.4908C251.597 63.6405 251.827 63.8407 251.986 64.0914C252.146 64.3388 252.226 64.6138 252.226 64.9166H251.322C251.322 64.7701 251.278 64.6285 251.19 64.4918C251.106 64.3518 250.98 64.2362 250.814 64.1451C250.652 64.0539 250.451 64.0084 250.214 64.0084C249.963 64.0084 249.76 64.0474 249.604 64.1255C249.451 64.2004 249.338 64.2964 249.267 64.4136C249.198 64.5308 249.164 64.6545 249.164 64.7847C249.164 64.8824 249.18 64.9703 249.213 65.0484C249.249 65.1233 249.311 65.1933 249.398 65.2584C249.486 65.3202 249.61 65.3788 249.77 65.4341C249.929 65.4895 250.132 65.5448 250.38 65.6002C250.813 65.6978 251.169 65.815 251.449 65.9517C251.729 66.0884 251.938 66.2561 252.074 66.4547C252.211 66.6532 252.279 66.8941 252.279 67.1773C252.279 67.4084 252.23 67.62 252.133 67.8121C252.038 68.0041 251.9 68.1701 251.718 68.3101C251.539 68.4468 251.324 68.5543 251.073 68.6324C250.826 68.7073 250.548 68.7447 250.238 68.7447C249.773 68.7447 249.379 68.6617 249.057 68.4957C248.734 68.3297 248.49 68.1148 248.324 67.8511C248.158 67.5875 248.075 67.3091 248.075 67.0162H248.983C248.996 67.2636 249.068 67.4605 249.198 67.607C249.328 67.7502 249.488 67.8528 249.677 67.9146C249.866 67.9732 250.053 68.0025 250.238 68.0025C250.486 68.0025 250.692 67.97 250.858 67.9048C251.028 67.8397 251.156 67.7502 251.244 67.6363C251.332 67.5224 251.376 67.3922 251.376 67.2457Z",fill:"#334155"}),(0,C.createElement)("path",{d:"M174.67 48.1075H176.627V53.4379H180.025V55.1437H174.67V48.1075Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M182.045 51.6444V51.6193C182.045 49.6 183.675 47.957 185.845 47.957C188.015 47.957 189.62 49.5749 189.62 51.5942V51.6193C189.62 53.6386 187.99 55.2816 185.82 55.2816C183.65 55.2816 182.045 53.6637 182.045 51.6444ZM187.638 51.6444V51.6193C187.638 50.6034 186.911 49.7254 185.832 49.7254C184.766 49.7254 184.051 50.5908 184.051 51.6068V51.6318C184.051 52.6478 184.779 53.5257 185.845 53.5257C186.923 53.5257 187.638 52.6603 187.638 51.6444Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M192.016 52.0583V48.1075H193.997V52.0206C193.997 53.0366 194.512 53.5132 195.289 53.5132C196.067 53.5132 196.581 53.0491 196.581 52.0708V48.1075H198.563V52.0081C198.563 54.2782 197.271 55.2691 195.264 55.2691C193.27 55.2691 192.016 54.2657 192.016 52.0583Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M201.548 48.1075H204.257C206.766 48.1075 208.233 49.5498 208.233 51.5817V51.6068C208.233 53.6386 206.753 55.1437 204.22 55.1437H201.548V48.1075ZM204.295 53.4128C205.461 53.4128 206.239 52.7732 206.239 51.6318V51.6068C206.239 50.478 205.461 49.8258 204.295 49.8258H203.505V53.4003H204.295V53.4128Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M211.067 48.1075H216.699V49.8132H213.011V51.0173H216.347V52.6352H213.011V55.1437H211.067V48.1075Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M219.408 48.1075H221.352V53.4379H224.763V55.1437H219.408V48.1075Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M229.856 48.0573H231.737L234.735 55.1437H232.64L232.126 53.8894H229.417L228.915 55.1437H226.871L229.856 48.0573ZM231.574 52.3718L230.796 50.3776L230.006 52.3718H231.574Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M237.243 48.1075H240.567C241.645 48.1075 242.385 48.3834 242.862 48.8726C243.276 49.2739 243.489 49.8132 243.489 50.5156V50.5407C243.489 51.6193 242.912 52.3342 242.047 52.6979L243.727 55.1562H241.47L240.053 53.024H239.2V55.1562H237.243V48.1075ZM240.479 51.4813C241.144 51.4813 241.52 51.1552 241.52 50.6535V50.6285C241.52 50.0766 241.119 49.8007 240.467 49.8007H239.187V51.4813H240.479Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M246.298 48.1075H251.955V49.7631H248.23V50.8291H251.604V52.3718H248.23V53.4881H252.005V55.1437H246.298V48.1075Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M170.406 52.4721C170.13 53.0867 169.553 53.5257 168.8 53.5257C167.734 53.5257 167.007 52.6352 167.007 51.6318V51.6067C167.007 50.5908 167.722 49.7254 168.788 49.7254C169.59 49.7254 170.205 50.2145 170.456 50.8918H172.513C172.187 49.2112 170.707 47.9695 168.8 47.9695C166.63 47.9695 165 49.6125 165 51.6318V51.6569C165 53.6762 166.605 55.2941 168.775 55.2941C170.631 55.2941 172.086 54.0901 172.463 52.4847L170.406 52.4721Z",fill:"#404041"}),(0,C.createElement)("path",{d:"M249.647 36.8822L244.266 33.7968L243.338 33.3954L221.326 33.546V44.7211H249.647V36.8822Z",fill:"white"}),(0,C.createElement)("path",{d:"M239.852 43.6926C240.115 42.7896 240.015 41.9618 239.576 41.3472C239.175 40.7828 238.497 40.4567 237.682 40.4191L222.243 40.2184C222.142 40.2184 222.054 40.1682 222.004 40.093C221.954 40.0177 221.942 39.9174 221.967 39.8171C222.017 39.6666 222.167 39.5537 222.33 39.5411L237.908 39.3405C239.751 39.2527 241.758 37.7601 242.461 35.929L243.351 33.6087C243.389 33.5083 243.401 33.408 243.376 33.3077C242.373 28.7674 238.322 25.381 233.48 25.381C229.015 25.381 225.228 28.2657 223.873 32.2667C222.995 31.6145 221.879 31.2633 220.675 31.3762C218.53 31.5894 216.812 33.3077 216.599 35.4524C216.548 36.0042 216.586 36.5435 216.711 37.0452C213.212 37.1456 210.415 40.0052 210.415 43.5296C210.415 43.8431 210.44 44.1567 210.478 44.4702C210.503 44.6207 210.628 44.7336 210.779 44.7336H239.275C239.438 44.7336 239.588 44.6207 239.639 44.4577L239.852 43.6926Z",fill:"#F38020"}),(0,C.createElement)("path",{d:"M244.768 33.7717C244.63 33.7717 244.48 33.7717 244.342 33.7843C244.241 33.7843 244.154 33.8595 244.116 33.9599L243.514 36.0544C243.251 36.9574 243.351 37.7852 243.79 38.3998C244.191 38.9642 244.868 39.2903 245.684 39.3279L248.97 39.5286C249.07 39.5286 249.158 39.5788 249.208 39.654C249.258 39.7293 249.271 39.8422 249.246 39.9299C249.196 40.0805 249.045 40.1933 248.882 40.2059L245.458 40.4066C243.602 40.4943 241.607 41.9869 240.905 43.818L240.654 44.4577C240.604 44.5831 240.692 44.7085 240.83 44.7085H252.594C252.732 44.7085 252.858 44.6207 252.895 44.4828C253.096 43.7553 253.209 42.9902 253.209 42.2001C253.209 37.5595 249.421 33.7717 244.768 33.7717Z",fill:"#FAAE40"})),H=window.wp.blockEditor,s=function({isSelected:e,attributes:t}){const l=(0,H.useBlockProps)();return t.isPreview?(0,C.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},c):(0,C.createElement)(C.Fragment,null,(0,C.createElement)("div",{...l},e?(0,C.createElement)("div",null,(0,C.createElement)(o,null)):c),(0,C.createElement)(H.InspectorControls,null,(0,C.createElement)("div",{style:{padding:"20px"}},(0,C.createElement)(o,null))))},{CaptchaOptions:V,CaptchaBlockEdit:d,CaptchaBlockTip:m}=JetFBComponents,{__:p}=wp.i18n,u={name:"turnstile",title:p("Turnstile","jet-form-builder"),isActive:(C,e)=>C.provider===e.provider,description:p("Set the Turnstile Captcha settings in the Captcha Container block to make user verification via WordPress form possible.","jet-form-builder"),icon:(0,C.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("path",{d:"M40.6149 37.2125C41.0498 37.5529 41.1264 38.1814 40.7861 38.6163L37.2322 43.1573C36.6656 43.8813 35.5869 43.9299 34.9576 43.2597L33.2696 41.4623C32.8915 41.0598 32.9114 40.4269 33.314 40.0488C33.7166 39.6708 34.3494 39.6906 34.7275 40.0932L36.0164 41.4657L39.211 37.3837C39.5514 36.9488 40.1799 36.8721 40.6149 37.2125Z",fill:"currentColor"}),(0,C.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M46.5407 43H56.6089C58.8874 43 61.1208 41.7827 61.6499 39.5182C63.5363 31.4454 57.0428 22.976 48.5207 23.4547C46.5416 17.3331 40.672 13 33.9134 13C28.0351 13 22.8286 16.2782 20.2704 21.1603C15.1969 19.6577 9.9458 23.5648 9.66997 28.8454C4.89227 29.8298 1.64218 34.4522 2.03161 39.2536C2.22701 41.6627 4.58295 43 6.94884 43H27.4564C28.7306 47.0571 32.5209 50 36.9985 50C41.4762 50 45.2665 47.0571 46.5407 43ZM47.0924 25.5381C45.4986 19.5 40.5887 15 33.9134 15C28.0257 15 23.4986 18.5 21.2789 23.5448C14.9986 21.5 11.9986 24.5 11.5867 30.4925C6.99857 31 3.62854 34.203 4.02507 39.0919C4.13652 40.466 5.78252 41 6.94884 41H27.0479C27.0153 40.6711 26.9985 40.3375 26.9985 40C26.9985 34.4772 31.4757 30 36.9985 30C42.5214 30 46.9985 34.4772 46.9985 40C46.9985 40.3375 46.9818 40.6711 46.9492 41H56.6089C58.3083 41 59.4552 40.1211 59.7024 39.0631C61.4652 31.5192 54.8741 24.2771 47.0924 25.5381ZM36.9985 32C32.5803 32 28.9985 35.5817 28.9985 40C28.9985 44.4183 32.5803 48 36.9985 48C41.4168 48 44.9985 44.4183 44.9985 40C44.9985 35.5817 41.4168 32 36.9985 32Z",fill:"currentColor"})),scope:["block","inserter"],attributes:{provider:"turnstile"}},{registerPlugin:L}=wp.plugins,{registerBlockVariation:h}=wp.blocks;h("jet-forms/captcha-container",u),L("jf-turnstile",{render:function(){return(0,C.createElement)(C.Fragment,null,(0,C.createElement)(V,{provider:"turnstile"},(e=>(0,C.createElement)(C.Fragment,null,(0,C.createElement)(o,{...e}),(0,C.createElement)(m,null)))),(0,C.createElement)(d,{provider:"turnstile"},(e=>(0,C.createElement)(s,{...e}))))}})})(); \ No newline at end of file diff --git a/modules/captcha/assets/build/turnstile/frontend.asset.php b/modules/captcha/assets/build/turnstile/frontend.asset.php index 31557addb..da5c45eae 100644 --- a/modules/captcha/assets/build/turnstile/frontend.asset.php +++ b/modules/captcha/assets/build/turnstile/frontend.asset.php @@ -1 +1 @@ - array(), 'version' => 'c904ebdced926f654018'); + array(), 'version' => '3a2348c4b69dbbf0ba83'); diff --git a/modules/captcha/assets/build/turnstile/frontend.js b/modules/captcha/assets/build/turnstile/frontend.js index c15b174a3..bb0430cb0 100644 --- a/modules/captcha/assets/build/turnstile/frontend.js +++ b/modules/captcha/assets/build/turnstile/frontend.js @@ -1 +1 @@ -(()=>{"use strict";const{applyFilters:t}=JetPlugins.hooks,e=function(e){var n;if(e.parent)return;const o=e.getInput("_captcha_token"),r=e.getSubmit().getFormId(),s=o?.nodes?.[0]?.parentElement;let i=null!==(n=window?.JetFormBuilderCaptchaConfig?.[r])&&void 0!==n&&n;if(!s||!i)return;o.isVisible=()=>!0,i.callback=t=>{o?.nodes?.length&&o.nodes.forEach(e=>{e&&"_captcha_token"===e.name&&(e.value=t)}),o.value.current=t},i=t("jet.fb.turnstile.options",i,e);const a=window.turnstile.render(s,i);e.getSubmit().submitter?.status?.watch?.(()=>{window.turnstile.reset(a),o?.nodes?.length&&o.nodes.forEach(t=>{t&&"_captcha_token"===t.name&&(t.value="")}),o.onClear()})};window.jfbTurnstileOnLoad=function(){const{addAction:t}=JetPlugins.hooks;for(const t of Object.values(window.JetFormBuilder))t.hasOwnProperty("isObserved")&&e(t);t("jet.fb.observe.after","jet-form-builder/turnstile",e)}})(); \ No newline at end of file +(()=>{"use strict";const{applyFilters:t}=JetPlugins.hooks,e=function(e){var n;if(e.parent)return;const o=e.getInput("_captcha_token"),r=e.getSubmit().getFormId(),s=o?.nodes?.[0]?.parentElement;let i=null!==(n=window?.JetFormBuilderCaptchaConfig?.[r])&&void 0!==n&&n;if(!s||!i)return;o.isVisible=()=>!0,i.callback=t=>{o?.nodes?.length&&o.nodes.forEach((e=>{e&&"_captcha_token"===e.name&&(e.value=t)})),o.value.current=t},i=t("jet.fb.turnstile.options",i,e);const a=window.turnstile.render(s,i);e.getSubmit().submitter?.status?.watch?.((()=>{window.turnstile.reset(a),o?.nodes?.length&&o.nodes.forEach((t=>{t&&"_captcha_token"===t.name&&(t.value="")})),o.onClear()}))};window.jfbTurnstileOnLoad=function(){const{addAction:t}=JetPlugins.hooks;for(const t of Object.values(window.JetFormBuilder))t.hasOwnProperty("isObserved")&&e(t);t("jet.fb.observe.after","jet-form-builder/turnstile",e)}})(); \ No newline at end of file diff --git a/modules/components/assets/build/index.asset.php b/modules/components/assets/build/index.asset.php index 10f388914..81a8eb535 100644 --- a/modules/components/assets/build/index.asset.php +++ b/modules/components/assets/build/index.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-compose', 'wp-element', 'wp-i18n'), 'version' => '1785280729549981cc35'); + array('react', 'wp-components', 'wp-compose', 'wp-element', 'wp-i18n'), 'version' => '7c9cdd7ffd33b1a9eb0f'); diff --git a/modules/components/assets/build/index.js b/modules/components/assets/build/index.js index 0cef0e260..6cff1d7a9 100644 --- a/modules/components/assets/build/index.js +++ b/modules/components/assets/build/index.js @@ -1,2 +1,2 @@ /*! For license information please see index.js.LICENSE.txt */ -(()=>{var e={379(e,t,n){"use strict";n.r(t)},55(e,t,n){"use strict";n.r(t)},2(e,t,n){"use strict";n.r(t)},885(e,t,n){"use strict";n.r(t)},250(e,t,n){"use strict";n.r(t)},21(e,t,n){"use strict";n.r(t)},627(e,t,n){"use strict";n.r(t)},884(e,t,n){"use strict";n.r(t)},843(e,t,n){"use strict";n.r(t)},8(e,t,n){"use strict";n.r(t)},582(e,t,n){"use strict";n.r(t)},722(e,t,n){"use strict";n.r(t)},980(e,t,n){"use strict";n.r(t)},471(e,t,n){"use strict";n.r(t)},971(e,t,n){"use strict";n.r(t)},209(e,t,n){"use strict";n.r(t)},804(e,t,n){"use strict";n.r(t)},32(e,t,n){"use strict";n.r(t)},22(e,t,n){"use strict";n.r(t)},791(e,t,n){"use strict";n.r(t)},676(e,t,n){"use strict";n.r(t)},404(e,t,n){"use strict";n.r(t)},156(e,t,n){"use strict";n.r(t)},998(e,t,n){var o=n(337),r=n(189),i=n(609),a=n(872);function l(e){return e&&e.__esModule?e.default:e}function s(e,t,n,o){Object.defineProperty(e,t,{get:n,set:o,enumerable:!0,configurable:!0})}function c(e){null!==e.parentElement&&e.parentElement.removeChild(e)}function u(e){e.forEach(e=>c(e.element))}function d(e){e.forEach(e=>{!function(e,t,n){const o=e.children[n]||null;e.insertBefore(t,o)}(e.parentElement,e.element,e.oldIndex)})}function p(e,t){const n=m(e),o={parentElement:e.from};let r=[];switch(n){case"normal":r=[{element:e.item,newIndex:e.newIndex,oldIndex:e.oldIndex,parentElement:e.from}];break;case"swap":r=[{element:e.item,oldIndex:e.oldIndex,newIndex:e.newIndex,...o},{element:e.swapItem,oldIndex:e.newIndex,newIndex:e.oldIndex,...o}];break;case"multidrag":r=e.oldIndicies.map((t,n)=>({element:t.multiDragElement,oldIndex:t.index,newIndex:e.newIndicies[n].index,...o}))}const i=function(e,t){return e.map(e=>({...e,item:t[e.oldIndex]})).sort((e,t)=>e.oldIndex-t.oldIndex)}(r,t);return i}function h(e,t){const n=[...t];return e.concat().reverse().forEach(e=>n.splice(e.oldIndex,1)),n}function f(e,t,n,o){const r=[...t];return e.forEach(e=>{const t=o&&n&&o(e.item,n);r.splice(e.newIndex,0,t||e.item)}),r}function m(e){return e.oldIndicies&&e.oldIndicies.length>0?"multidrag":e.swapItem?"swap":"normal"}s(e.exports,"Sortable",()=>$882b6d93070905b3$re_export$Sortable),s(e.exports,"Direction",()=>$882b6d93070905b3$re_export$Direction),s(e.exports,"DOMRect",()=>$882b6d93070905b3$re_export$DOMRect),s(e.exports,"GroupOptions",()=>$882b6d93070905b3$re_export$GroupOptions),s(e.exports,"MoveEvent",()=>$882b6d93070905b3$re_export$MoveEvent),s(e.exports,"Options",()=>$882b6d93070905b3$re_export$Options),s(e.exports,"PullResult",()=>$882b6d93070905b3$re_export$PullResult),s(e.exports,"PutResult",()=>$882b6d93070905b3$re_export$PutResult),s(e.exports,"SortableEvent",()=>$882b6d93070905b3$re_export$SortableEvent),s(e.exports,"SortableOptions",()=>$882b6d93070905b3$re_export$SortableOptions),s(e.exports,"Utils",()=>$882b6d93070905b3$re_export$Utils),s(e.exports,"ReactSortable",()=>v);const g={dragging:null};class v extends i.Component{static defaultProps={clone:e=>e};constructor(e){super(e),this.ref=(0,i.createRef)();const t=[...e.list].map(e=>Object.assign(e,{chosen:!1,selected:!1}));e.setList(t,this.sortable,g),l(a)(!e.plugins,'\nPlugins prop is no longer supported.\nInstead, mount it with "Sortable.mount(new MultiDrag())"\nPlease read the updated README.md at https://github.com/SortableJS/react-sortablejs.\n ')}componentDidMount(){if(null===this.ref.current)return;const e=this.makeOptions();l(o).create(this.ref.current,e)}componentDidUpdate(e){e.disabled!==this.props.disabled&&this.sortable&&this.sortable.option("disabled",this.props.disabled)}render(){const{tag:e,style:t,className:n,id:o}=this.props,r={style:t,className:n,id:o},a=e&&null!==e?e:"div";return(0,i.createElement)(a,{ref:this.ref,...r},this.getChildren())}getChildren(){const{children:e,dataIdAttr:t,selectedClass:n="sortable-selected",chosenClass:o="sortable-chosen",dragClass:a="sortable-drag",fallbackClass:s="sortable-falback",ghostClass:c="sortable-ghost",swapClass:u="sortable-swap-highlight",filter:d="sortable-filter",list:p}=this.props;if(!e||null==e)return null;const h=t||"data-id";return i.Children.map(e,(e,t)=>{if(void 0===e)return;const a=p[t]||{},{className:s}=e.props,c="string"==typeof d&&{[d.replace(".","")]:!!a.filtered},u=l(r)(s,{[n]:a.selected,[o]:a.chosen,...c});return(0,i.cloneElement)(e,{[h]:e.key,className:u})})}get sortable(){const e=this.ref.current;if(null===e)return null;const t=Object.keys(e).find(e=>e.includes("Sortable"));return t?e[t]:null}makeOptions(){const e=function(e){const{list:t,setList:n,children:o,tag:r,style:i,className:a,clone:l,onAdd:s,onChange:c,onChoose:u,onClone:d,onEnd:p,onFilter:h,onRemove:f,onSort:m,onStart:g,onUnchoose:v,onUpdate:b,onMove:y,onSpill:w,onSelect:S,onDeselect:E,...x}=e;return x}(this.props);return["onAdd","onChoose","onDeselect","onEnd","onRemove","onSelect","onSpill","onStart","onUnchoose","onUpdate"].forEach(t=>e[t]=this.prepareOnHandlerPropAndDOM(t)),["onChange","onClone","onFilter","onSort"].forEach(t=>e[t]=this.prepareOnHandlerProp(t)),{...e,onMove:(e,t)=>{const{onMove:n}=this.props,o=e.willInsertAfter||-1;if(!n)return o;const r=n(e,t,this.sortable,g);return void 0!==r&&r}}}prepareOnHandlerPropAndDOM(e){return t=>{this.callOnHandlerProp(t,e),this[e](t)}}prepareOnHandlerProp(e){return t=>{this.callOnHandlerProp(t,e)}}callOnHandlerProp(e,t){const n=this.props[t];n&&n(e,this.sortable,g)}onAdd(e){const{list:t,setList:n,clone:o}=this.props,r=p(e,[...g.dragging.props.list]);u(r),n(f(r,t,e,o).map(e=>Object.assign(e,{selected:!1})),this.sortable,g)}onRemove(e){const{list:t,setList:n}=this.props,o=m(e),r=p(e,t);d(r);let i=[...t];if("clone"!==e.pullMode)i=h(r,i);else{let t=r;switch(o){case"multidrag":t=r.map((t,n)=>({...t,element:e.clones[n]}));break;case"normal":t=r.map(t=>({...t,element:e.clone}));break;default:l(a)(!0,`mode "${o}" cannot clone. Please remove "props.clone" from when using the "${o}" plugin`)}u(t),r.forEach(t=>{const n=t.oldIndex,o=this.props.clone(t.item,e);i.splice(n,1,o)})}i=i.map(e=>Object.assign(e,{selected:!1})),n(i,this.sortable,g)}onUpdate(e){const{list:t,setList:n}=this.props,o=p(e,t);return u(o),d(o),n(function(e,t){return f(e,h(e,t))}(o,t),this.sortable,g)}onStart(){g.dragging=this}onEnd(){g.dragging=null}onChoose(e){const{list:t,setList:n}=this.props;n(t.map((t,n)=>{let o=t;return n===e.oldIndex&&(o=Object.assign(t,{chosen:!0})),o}),this.sortable,g)}onUnchoose(e){const{list:t,setList:n}=this.props;n(t.map((t,n)=>{let o=t;return n===e.oldIndex&&(o=Object.assign(o,{chosen:!1})),o}),this.sortable,g)}onSpill(e){const{removeOnSpill:t,revertOnSpill:n}=this.props;t&&!n&&c(e.item)}onSelect(e){const{list:t,setList:n}=this.props,o=t.map(e=>Object.assign(e,{selected:!1}));e.newIndicies.forEach(t=>{const n=t.index;if(-1===n)return console.log(`"${e.type}" had indice of "${t.index}", which is probably -1 and doesn't usually happen here.`),void console.log(e);o[n].selected=!0}),n(o,this.sortable,g)}onDeselect(e){const{list:t,setList:n}=this.props,o=t.map(e=>Object.assign(e,{selected:!1}));e.newIndicies.forEach(e=>{const t=e.index;-1!==t&&(o[t].selected=!0)}),n(o,this.sortable,g)}}var b,y;b=e.exports,y={},Object.keys(y).forEach(function(e){"default"===e||"__esModule"===e||b.hasOwnProperty(e)||Object.defineProperty(b,e,{enumerable:!0,get:function(){return y[e]}})})},189(e,t){var n;!function(){"use strict";var o={}.hasOwnProperty;function r(){for(var e=[],t=0;te.length)&&(t=e.length);for(var n=0,o=Array(t);nwt,Sortable:()=>Xe,Swap:()=>ct,default:()=>xt});var u=c(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i),d=c(/Edge/i),p=c(/firefox/i),h=c(/safari/i)&&!c(/chrome/i)&&!c(/android/i),f=c(/iP(ad|od|hone)/i),m=c(/chrome/i)&&c(/android/i),g={capture:!1,passive:!1};function v(e,t,n){e.addEventListener(t,n,!u&&g)}function b(e,t,n){e.removeEventListener(t,n,!u&&g)}function y(e,t){if(t){if(">"===t[0]&&(t=t.substring(1)),e)try{if(e.matches)return e.matches(t);if(e.msMatchesSelector)return e.msMatchesSelector(t);if(e.webkitMatchesSelector)return e.webkitMatchesSelector(t)}catch(e){return!1}return!1}}function w(e){return e.host&&e!==document&&e.host.nodeType&&e.host!==e?e.host:e.parentNode}function S(e,t,n,o){if(e){n=n||document;do{if(null!=t&&(">"===t[0]?e.parentNode===n&&y(e,t):y(e,t))||o&&e===n)return e;if(e===n)break}while(e=w(e))}return null}var E,x=/\s+/g;function D(e,t,n){if(e&&t)if(e.classList)e.classList[n?"add":"remove"](t);else{var o=(" "+e.className+" ").replace(x," ").replace(" "+t+" "," ");e.className=(o+(n?" "+t:"")).replace(x," ")}}function C(e,t,n){var o=e&&e.style;if(o){if(void 0===n)return document.defaultView&&document.defaultView.getComputedStyle?n=document.defaultView.getComputedStyle(e,""):e.currentStyle&&(n=e.currentStyle),void 0===t?n:n[t];t in o||-1!==t.indexOf("webkit")||(t="-webkit-"+t),o[t]=n+("string"==typeof n?"":"px")}}function _(e,t){var n="";if("string"==typeof e)n=e;else do{var o=C(e,"transform");o&&"none"!==o&&(n=o+" "+n)}while(!t&&(e=e.parentNode));var r=window.DOMMatrix||window.WebKitCSSMatrix||window.CSSMatrix||window.MSCSSMatrix;return r&&new r(n)}function O(e,t,n){if(e){var o=e.getElementsByTagName(t),r=0,i=o.length;if(n)for(;r=i:r<=i))return o;if(o===T())break;o=R(o,!1)}return!1}function k(e,t,n,o){for(var r=0,i=0,a=e.children;i2&&void 0!==arguments[2]?arguments[2]:{},o=n.evt,r=function(e,t){if(null==e)return{};var n,o,r=function(e,t){if(null==e)return{};var n={};for(var o in e)if({}.hasOwnProperty.call(e,o)){if(-1!==t.indexOf(o))continue;n[o]=e[o]}return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;o=o&&"none"===n[Me]||i&&"none"===n[Me]&&s+c>o)?"vertical":"horizontal"},je=function(e){function t(e,n){return function(o,r,i,a){var l=o.options.group.name&&r.options.group.name&&o.options.group.name===r.options.group.name;if(null==e&&(n||l))return!0;if(null==e||!1===e)return!1;if(n&&"clone"===e)return e;if("function"==typeof e)return t(e(o,r,i,a),n)(o,r,i,a);var s=(n?o:r).options.group.name;return!0===e||"string"==typeof e&&e===s||e.join&&e.indexOf(s)>-1}}var n={},o=e.group;o&&"object"==s(o)||(o={name:o}),n.name=o.name,n.checkPull=t(o.pull,!0),n.checkPut=t(o.put),n.revertClone=o.revertClone,e.group=n},Fe=function(){!Ne&&Q&&C(Q,"display","none")},Le=function(){!Ne&&Q&&C(Q,"display","")};Ae&&!m&&document.addEventListener("click",function(e){if(xe)return e.preventDefault(),e.stopPropagation&&e.stopPropagation(),e.stopImmediatePropagation&&e.stopImmediatePropagation(),xe=!1,!1},!0);var Be=function(e){if(J){e=e.touches?e.touches[0]:e;var t=(r=e.clientX,i=e.clientY,De.some(function(e){var t=e[$].options.emptyInsertThreshold;if(t&&!M(e)){var n=I(e),o=r>=n.left-t&&r<=n.right+t,l=i>=n.top-t&&i<=n.bottom+t;return o&&l?a=e:void 0}}),a);if(t){var n={};for(var o in e)e.hasOwnProperty(o)&&(n[o]=e[o]);n.target=n.rootEl=t,n.preventDefault=void 0,n.stopPropagation=void 0,t[$]._onDragOver(n)}}var r,i,a},He=function(e){J&&J.parentNode[$]._isOutsideThisEl(e.target)};function Xe(e,t){if(!e||!e.nodeType||1!==e.nodeType)throw"Sortable: `el` must be an HTMLElement, not ".concat({}.toString.call(e));this.el=e,this.options=t=i({},t),e[$]=this;var n,o,r={group:null,sort:!0,disabled:!1,store:null,handle:null,draggable:/^[uo]l$/i.test(e.nodeName)?">li":">*",swapThreshold:1,invertSwap:!1,invertedSwapThreshold:null,removeCloneOnHide:!0,direction:function(){return Re(e,this.options)},ghostClass:"sortable-ghost",chosenClass:"sortable-chosen",dragClass:"sortable-drag",ignore:"a, img",filter:null,preventOnFilter:!0,animation:0,easing:null,setData:function(e,t){e.setData("Text",t.textContent)},dropBubble:!1,dragoverBubble:!1,dataIdAttr:"data-id",delay:0,delayOnTouchOnly:!1,touchStartThreshold:(Number.parseInt?Number:window).parseInt(window.devicePixelRatio,10)||1,forceFallback:!1,fallbackClass:"sortable-fallback",fallbackOnBody:!1,fallbackTolerance:0,fallbackOffset:{x:0,y:0},supportPointer:!1!==Xe.supportPointer&&"PointerEvent"in window&&(!h||f),emptyInsertThreshold:5};for(var a in U.initializePlugins(this,e,r),r)!(a in t)&&(t[a]=r[a]);for(var s in je(t),this)"_"===s.charAt(0)&&"function"==typeof this[s]&&(this[s]=this[s].bind(this));this.nativeDraggable=!t.forceFallback&&Pe,this.nativeDraggable&&(this.options.touchStartThreshold=1),t.supportPointer?v(e,"pointerdown",this._onTapStart):(v(e,"mousedown",this._onTapStart),v(e,"touchstart",this._onTapStart)),this.nativeDraggable&&(v(e,"dragover",this),v(e,"dragenter",this)),De.push(this.el),t.store&&t.store.get&&this.sort(t.store.get(this)||[]),i(this,(o=[],{captureAnimationState:function(){o=[],this.options.animation&&[].slice.call(this.el.children).forEach(function(e){if("none"!==C(e,"display")&&e!==Xe.ghost){o.push({target:e,rect:I(e)});var t=l({},o[o.length-1].rect);if(e.thisAnimationDuration){var n=_(e,!0);n&&(t.top-=n.f,t.left-=n.e)}e.fromRect=t}})},addAnimationState:function(e){o.push(e)},removeAnimationState:function(e){o.splice(function(e,t){for(var n in e)if(e.hasOwnProperty(n))for(var o in t)if(t.hasOwnProperty(o)&&t[o]===e[n][o])return Number(n);return-1}(o,{target:e}),1)},animateAll:function(e){var t=this;if(!this.options.animation)return clearTimeout(n),void("function"==typeof e&&e());var r=!1,i=0;o.forEach(function(e){var n=0,o=e.target,a=o.fromRect,l=I(o),s=o.prevFromRect,c=o.prevToRect,u=e.rect,d=_(o,!0);d&&(l.top-=d.f,l.left-=d.e),o.toRect=l,o.thisAnimationDuration&&j(s,l)&&!j(a,l)&&(u.top-l.top)/(u.left-l.left)===(a.top-l.top)/(a.left-l.left)&&(n=function(e,t,n,o){return Math.sqrt(Math.pow(t.top-e.top,2)+Math.pow(t.left-e.left,2))/Math.sqrt(Math.pow(t.top-n.top,2)+Math.pow(t.left-n.left,2))*o.animation}(u,s,c,t.options)),j(l,a)||(o.prevFromRect=a,o.prevToRect=l,n||(n=t.options.animation),t.animate(o,u,l,n)),n&&(r=!0,i=Math.max(i,n),clearTimeout(o.animationResetTimer),o.animationResetTimer=setTimeout(function(){o.animationTime=0,o.prevFromRect=null,o.fromRect=null,o.prevToRect=null,o.thisAnimationDuration=null},n),o.thisAnimationDuration=n)}),clearTimeout(n),r?n=setTimeout(function(){"function"==typeof e&&e()},i):"function"==typeof e&&e(),o=[]},animate:function(e,t,n,o){if(o){C(e,"transition",""),C(e,"transform","");var r=_(this.el),i=r&&r.a,a=r&&r.d,l=(t.left-n.left)/(i||1),s=(t.top-n.top)/(a||1);e.animatingX=!!l,e.animatingY=!!s,C(e,"transform","translate3d("+l+"px,"+s+"px,0)"),this.forRepaintDummy=function(e){return e.offsetWidth}(e),C(e,"transition","transform "+o+"ms"+(this.options.easing?" "+this.options.easing:"")),C(e,"transform","translate3d(0,0,0)"),"number"==typeof e.animated&&clearTimeout(e.animated),e.animated=setTimeout(function(){C(e,"transition",""),C(e,"transform",""),e.animated=!1,e.animatingX=!1,e.animatingY=!1},o)}}}))}function Ye(e,t,n,o,r,i,a,l){var s,c,p=e[$],h=p.options.onMove;return!window.CustomEvent||u||d?(s=document.createEvent("Event")).initEvent("move",!0,!0):s=new CustomEvent("move",{bubbles:!0,cancelable:!0}),s.to=t,s.from=e,s.dragged=n,s.draggedRect=o,s.related=r||t,s.relatedRect=i||I(t),s.willInsertAfter=l,s.originalEvent=a,e.dispatchEvent(s),h&&(c=h.call(p,s,a)),c}function $e(e){e.draggable=!1}function ze(){Te=!1}function We(e){for(var t=e.tagName+e.className+e.src+e.href+e.textContent,n=t.length,o=0;n--;)o+=t.charCodeAt(n);return o.toString(36)}function Ue(e){return setTimeout(e,0)}function qe(e){return clearTimeout(e)}Xe.prototype={constructor:Xe,_isOutsideThisEl:function(e){this.el.contains(e)||e===this.el||(be=null)},_getDirection:function(e,t){return"function"==typeof this.options.direction?this.options.direction.call(this,e,t,J):this.options.direction},_onTapStart:function(e){if(e.cancelable){var t=this,n=this.el,o=this.options,r=o.preventOnFilter,i=e.type,a=e.touches&&e.touches[0]||e.pointerType&&"touch"===e.pointerType&&e,l=(a||e).target,s=e.target.shadowRoot&&(e.path&&e.path[0]||e.composedPath&&e.composedPath()[0])||l,c=o.filter;if(function(e){Ie.length=0;for(var t=e.getElementsByTagName("input"),n=t.length;n--;){var o=t[n];o.checked&&Ie.push(o)}}(n),!J&&!(/mousedown|pointerdown/.test(i)&&0!==e.button||o.disabled)&&!s.isContentEditable&&(this.nativeDraggable||!h||!l||"SELECT"!==l.tagName.toUpperCase())&&!((l=S(l,o.draggable,n,!1))&&l.animated||ne===l)){if(ie=P(l),le=P(l,o.draggable),"function"==typeof c){if(c.call(this,e,l,this))return V({sortable:t,rootEl:s,name:"filter",targetEl:l,toEl:n,fromEl:n}),G("filter",t,{evt:e}),void(r&&e.preventDefault())}else if(c&&(c=c.split(",").some(function(o){if(o=S(s,o.trim(),n,!1))return V({sortable:t,rootEl:o,name:"filter",targetEl:l,fromEl:n,toEl:n}),G("filter",t,{evt:e}),!0})))return void(r&&e.preventDefault());o.handle&&!S(s,o.handle,n,!1)||this._prepareDragStart(e,a,l)}}},_prepareDragStart:function(e,t,n){var o,r=this,i=r.el,a=r.options,l=i.ownerDocument;if(n&&!J&&n.parentNode===i){var s=I(n);if(ee=i,Z=(J=n).parentNode,te=J.nextSibling,ne=n,ce=a.group,Xe.dragged=J,de={target:J,clientX:(t||e).clientX,clientY:(t||e).clientY},me=de.clientX-s.left,ge=de.clientY-s.top,this._lastX=(t||e).clientX,this._lastY=(t||e).clientY,J.style["will-change"]="all",o=function(){G("delayEnded",r,{evt:e}),Xe.eventCanceled?r._onDrop():(r._disableDelayedDragEvents(),!p&&r.nativeDraggable&&(J.draggable=!0),r._triggerDragStart(e,t),V({sortable:r,name:"choose",originalEvent:e}),D(J,a.chosenClass,!0))},a.ignore.split(",").forEach(function(e){O(J,e.trim(),$e)}),v(l,"dragover",Be),v(l,"mousemove",Be),v(l,"touchmove",Be),a.supportPointer?(v(l,"pointerup",r._onDrop),!this.nativeDraggable&&v(l,"pointercancel",r._onDrop)):(v(l,"mouseup",r._onDrop),v(l,"touchend",r._onDrop),v(l,"touchcancel",r._onDrop)),p&&this.nativeDraggable&&(this.options.touchStartThreshold=4,J.draggable=!0),G("delayStart",this,{evt:e}),!a.delay||a.delayOnTouchOnly&&!t||this.nativeDraggable&&(d||u))o();else{if(Xe.eventCanceled)return void this._onDrop();a.supportPointer?(v(l,"pointerup",r._disableDelayedDrag),v(l,"pointercancel",r._disableDelayedDrag)):(v(l,"mouseup",r._disableDelayedDrag),v(l,"touchend",r._disableDelayedDrag),v(l,"touchcancel",r._disableDelayedDrag)),v(l,"mousemove",r._delayedDragTouchMoveHandler),v(l,"touchmove",r._delayedDragTouchMoveHandler),a.supportPointer&&v(l,"pointermove",r._delayedDragTouchMoveHandler),r._dragStartTimer=setTimeout(o,a.delay)}}},_delayedDragTouchMoveHandler:function(e){var t=e.touches?e.touches[0]:e;Math.max(Math.abs(t.clientX-this._lastX),Math.abs(t.clientY-this._lastY))>=Math.floor(this.options.touchStartThreshold/(this.nativeDraggable&&window.devicePixelRatio||1))&&this._disableDelayedDrag()},_disableDelayedDrag:function(){J&&$e(J),clearTimeout(this._dragStartTimer),this._disableDelayedDragEvents()},_disableDelayedDragEvents:function(){var e=this.el.ownerDocument;b(e,"mouseup",this._disableDelayedDrag),b(e,"touchend",this._disableDelayedDrag),b(e,"touchcancel",this._disableDelayedDrag),b(e,"pointerup",this._disableDelayedDrag),b(e,"pointercancel",this._disableDelayedDrag),b(e,"mousemove",this._delayedDragTouchMoveHandler),b(e,"touchmove",this._delayedDragTouchMoveHandler),b(e,"pointermove",this._delayedDragTouchMoveHandler)},_triggerDragStart:function(e,t){t=t||"touch"==e.pointerType&&e,!this.nativeDraggable||t?this.options.supportPointer?v(document,"pointermove",this._onTouchMove):v(document,t?"touchmove":"mousemove",this._onTouchMove):(v(J,"dragend",this),v(ee,"dragstart",this._onDragStart));try{document.selection?Ue(function(){document.selection.empty()}):window.getSelection().removeAllRanges()}catch(e){}},_dragStarted:function(e,t){if(Ee=!1,ee&&J){G("dragStarted",this,{evt:t}),this.nativeDraggable&&v(document,"dragover",He);var n=this.options;!e&&D(J,n.dragClass,!1),D(J,n.ghostClass,!0),Xe.active=this,e&&this._appendGhost(),V({sortable:this,name:"start",originalEvent:t})}else this._nulling()},_emulateDragOver:function(){if(pe){this._lastX=pe.clientX,this._lastY=pe.clientY,Fe();for(var e=document.elementFromPoint(pe.clientX,pe.clientY),t=e;e&&e.shadowRoot&&(e=e.shadowRoot.elementFromPoint(pe.clientX,pe.clientY))!==t;)t=e;if(J.parentNode[$]._isOutsideThisEl(e),t)do{if(t[$]&&t[$]._onDragOver({clientX:pe.clientX,clientY:pe.clientY,target:e,rootEl:t})&&!this.options.dragoverBubble)break;e=t}while(t=w(t));Le()}},_onTouchMove:function(e){if(de){var t=this.options,n=t.fallbackTolerance,o=t.fallbackOffset,r=e.touches?e.touches[0]:e,i=Q&&_(Q,!0),a=Q&&i&&i.a,l=Q&&i&&i.d,s=ke&&Se&&N(Se),c=(r.clientX-de.clientX+o.x)/(a||1)+(s?s[0]-Oe[0]:0)/(a||1),u=(r.clientY-de.clientY+o.y)/(l||1)+(s?s[1]-Oe[1]:0)/(l||1);if(!Xe.active&&!Ee){if(n&&Math.max(Math.abs(r.clientX-this._lastX),Math.abs(r.clientY-this._lastY))r.right+10||e.clientY>o.bottom&&e.clientX>o.left:e.clientY>r.bottom+10||e.clientX>o.right&&e.clientY>o.top}(e,r,this)&&!g.animated){if(g===J)return X(!1);if(g&&i===e.target&&(a=g),a&&(n=I(a)),!1!==Ye(ee,i,J,t,a,n,e,!!a))return H(),g&&g.nextSibling?i.insertBefore(J,g.nextSibling):i.appendChild(J),Z=i,z(),X(!0)}else if(g&&function(e,t,n){var o=I(k(n.el,0,n.options,!0)),r=Y(n.el,n.options,Q);return t?e.clientXu+c*i/2:sd-we)return-ye}else if(s>u+c*(1-r)/2&&sd-c*i/2)?s>u+c/2?1:-1:0}(e,a,n,r,x?1:s.swapThreshold,null==s.invertedSwapThreshold?s.swapThreshold:s.invertedSwapThreshold,_e,be===a),0!==b){var N=P(J);do{N-=b,w=Z.children[N]}while(w&&("none"===C(w,"display")||w===Q))}if(0===b||w===a)return X(!1);be=a,ye=b;var R=a.nextElementSibling,j=!1,F=Ye(ee,i,J,t,a,n,e,j=1===b);if(!1!==F)return 1!==F&&-1!==F||(j=1===F),Te=!0,setTimeout(ze,30),H(),j&&!R?i.appendChild(J):a.parentNode.insertBefore(J,j?R:a),O&&L(O,0,T-O.scrollTop),Z=J.parentNode,void 0===y||_e||(we=Math.abs(y-I(a)[_])),z(),X(!0)}if(i.contains(J))return X(!1)}return!1}function B(s,c){G(s,f,l({evt:e,isOwner:d,axis:r?"vertical":"horizontal",revert:o,dragRect:t,targetRect:n,canSort:p,fromSortable:h,target:a,completed:X,onMove:function(n,o){return Ye(ee,i,J,t,n,I(n),e,o)},changed:z},c))}function H(){B("dragOverAnimationCapture"),f.captureAnimationState(),f!==h&&h.captureAnimationState()}function X(t){return B("dragOverCompleted",{insertion:t}),t&&(d?u._hideClone():u._showClone(f),f!==h&&(D(J,ue?ue.options.ghostClass:u.options.ghostClass,!1),D(J,s.ghostClass,!0)),ue!==f&&f!==Xe.active?ue=f:f===Xe.active&&ue&&(ue=null),h===f&&(f._ignoreWhileAnimating=a),f.animateAll(function(){B("dragOverAnimationComplete"),f._ignoreWhileAnimating=null}),f!==h&&(h.animateAll(),h._ignoreWhileAnimating=null)),(a===J&&!J.animated||a===i&&!a.animated)&&(be=null),s.dragoverBubble||e.rootEl||a===document||(J.parentNode[$]._isOutsideThisEl(e.target),!t&&Be(e)),!s.dragoverBubble&&e.stopPropagation&&e.stopPropagation(),m=!0}function z(){ae=P(J),se=P(J,s.draggable),V({sortable:f,name:"change",toEl:i,newIndex:ae,newDraggableIndex:se,originalEvent:e})}},_ignoreWhileAnimating:null,_offMoveEvents:function(){b(document,"mousemove",this._onTouchMove),b(document,"touchmove",this._onTouchMove),b(document,"pointermove",this._onTouchMove),b(document,"dragover",Be),b(document,"mousemove",Be),b(document,"touchmove",Be)},_offUpEvents:function(){var e=this.el.ownerDocument;b(e,"mouseup",this._onDrop),b(e,"touchend",this._onDrop),b(e,"pointerup",this._onDrop),b(e,"pointercancel",this._onDrop),b(e,"touchcancel",this._onDrop),b(document,"selectstart",this)},_onDrop:function(e){var t=this.el,n=this.options;ae=P(J),se=P(J,n.draggable),G("drop",this,{evt:e}),Z=J&&J.parentNode,ae=P(J),se=P(J,n.draggable),Xe.eventCanceled||(Ee=!1,_e=!1,Ce=!1,clearInterval(this._loopId),clearTimeout(this._dragStartTimer),qe(this.cloneId),qe(this._dragStartId),this.nativeDraggable&&(b(document,"drop",this),b(t,"dragstart",this._onDragStart)),this._offMoveEvents(),this._offUpEvents(),h&&C(document.body,"user-select",""),C(J,"transform",""),e&&(ve&&(e.cancelable&&e.preventDefault(),!n.dropBubble&&e.stopPropagation()),Q&&Q.parentNode&&Q.parentNode.removeChild(Q),(ee===Z||ue&&"clone"!==ue.lastPutMode)&&oe&&oe.parentNode&&oe.parentNode.removeChild(oe),J&&(this.nativeDraggable&&b(J,"dragend",this),$e(J),J.style["will-change"]="",ve&&!Ee&&D(J,ue?ue.options.ghostClass:this.options.ghostClass,!1),D(J,this.options.chosenClass,!1),V({sortable:this,name:"unchoose",toEl:Z,newIndex:null,newDraggableIndex:null,originalEvent:e}),ee!==Z?(ae>=0&&(V({rootEl:Z,name:"add",toEl:Z,fromEl:ee,originalEvent:e}),V({sortable:this,name:"remove",toEl:Z,originalEvent:e}),V({rootEl:Z,name:"sort",toEl:Z,fromEl:ee,originalEvent:e}),V({sortable:this,name:"sort",toEl:Z,originalEvent:e})),ue&&ue.save()):ae!==ie&&ae>=0&&(V({sortable:this,name:"update",toEl:Z,originalEvent:e}),V({sortable:this,name:"sort",toEl:Z,originalEvent:e})),Xe.active&&(null!=ae&&-1!==ae||(ae=ie,se=le),V({sortable:this,name:"end",toEl:Z,originalEvent:e}),this.save())))),this._nulling()},_nulling:function(){G("nulling",this),ee=J=Z=Q=te=oe=ne=re=de=pe=ve=ae=se=ie=le=be=ye=ue=ce=Xe.dragged=Xe.ghost=Xe.clone=Xe.active=null;var e=this.el;Ie.forEach(function(t){e.contains(t)&&(t.checked=!0)}),Ie.length=he=fe=0},handleEvent:function(e){switch(e.type){case"drop":case"dragend":this._onDrop(e);break;case"dragenter":case"dragover":J&&(this._onDragOver(e),function(e){e.dataTransfer&&(e.dataTransfer.dropEffect="move"),e.cancelable&&e.preventDefault()}(e));break;case"selectstart":e.preventDefault()}},toArray:function(){for(var e,t=[],n=this.el.children,o=0,r=n.length,i=this.options;o1&&(mt.forEach(function(e){o.addAnimationState({target:e,rect:bt?I(e):r}),X(e),e.fromRect=r,t.removeAnimationState(e)}),bt=!1,function(e,t){mt.forEach(function(n,o){var r=t.children[n.sortableIndex+(e?Number(o):0)];r?t.insertBefore(n,r):t.appendChild(n)})}(!this.options.removeCloneOnHide,n))},dragOverCompleted:function(e){var t=e.sortable,n=e.isOwner,o=e.insertion,r=e.activeSortable,i=e.parentEl,a=e.putSortable,l=this.options;if(o){if(n&&r._hideClone(),vt=!1,l.animation&&mt.length>1&&(bt||!n&&!r.options.sort&&!a)){var s=I(pt,!1,!0,!0);mt.forEach(function(e){e!==pt&&(H(e,s),i.appendChild(e))}),bt=!0}if(!n)if(bt||Et(),mt.length>1){var c=ft;r._showClone(t),r.options.animation&&!ft&&c&>.forEach(function(e){r.addAnimationState({target:e,rect:ht}),e.fromRect=ht,e.thisAnimationDuration=null})}else r._showClone(t)}},dragOverAnimationCapture:function(e){var t=e.dragRect,n=e.isOwner,o=e.activeSortable;if(mt.forEach(function(e){e.thisAnimationDuration=null}),o.options.animation&&!n&&o.multiDrag.isMultiDrag){ht=i({},t);var r=_(pt,!0);ht.top-=r.f,ht.left-=r.e}},dragOverAnimationComplete:function(){bt&&(bt=!1,Et())},drop:function(e){var t=e.originalEvent,n=e.rootEl,o=e.parentEl,r=e.sortable,i=e.dispatchSortableEvent,a=e.oldIndex,l=e.putSortable,s=l||this.sortable;if(t){var c=this.options,u=o.children;if(!yt)if(c.multiDragKey&&!this.multiDragKeyDown&&this._deselectMultiDrag(),D(pt,c.selectedClass,!~mt.indexOf(pt)),~mt.indexOf(pt))mt.splice(mt.indexOf(pt),1),ut=null,q({sortable:r,rootEl:n,name:"deselect",targetEl:pt,originalEvent:t});else{if(mt.push(pt),q({sortable:r,rootEl:n,name:"select",targetEl:pt,originalEvent:t}),t.shiftKey&&ut&&r.el.contains(ut)){var d=P(ut),p=P(pt);~d&&~p&&d!==p&&function(){var e,i;p>d?(i=d,e=p):(i=p,e=d+1);for(var a=c.filter;i1){var h=I(pt),f=P(pt,":not(."+this.options.selectedClass+")");if(!vt&&c.animation&&(pt.thisAnimationDuration=null),s.captureAnimationState(),!vt&&(c.animation&&(pt.fromRect=h,mt.forEach(function(e){if(e.thisAnimationDuration=null,e!==pt){var t=bt?I(e):h;e.fromRect=t,s.addAnimationState({target:e,rect:t})}})),Et(),mt.forEach(function(e){u[f]?o.insertBefore(e,u[f]):o.appendChild(e),f++}),a===P(pt))){var m=!1;mt.forEach(function(e){e.sortableIndex===P(e)||(m=!0)}),m&&(i("update"),i("sort"))}mt.forEach(function(e){X(e)}),s.animateAll()}dt=s}(n===o||l&&"clone"!==l.lastPutMode)&>.forEach(function(e){e.parentNode&&e.parentNode.removeChild(e)})}},nullingGlobal:function(){this.isMultiDrag=yt=!1,gt.length=0},destroyGlobal:function(){this._deselectMultiDrag(),b(document,"pointerup",this._deselectMultiDrag),b(document,"mouseup",this._deselectMultiDrag),b(document,"touchend",this._deselectMultiDrag),b(document,"keydown",this._checkKeyDown),b(document,"keyup",this._checkKeyUp)},_deselectMultiDrag:function(e){if(!(void 0!==yt&&yt||dt!==this.sortable||e&&S(e.target,this.options.draggable,this.sortable.el,!1)||e&&0!==e.button))for(;mt.length;){var t=mt[0];D(t,this.options.selectedClass,!1),mt.shift(),q({sortable:this.sortable,rootEl:this.sortable.el,name:"deselect",targetEl:t,originalEvent:e})}},_checkKeyDown:function(e){e.key===this.options.multiDragKey&&(this.multiDragKeyDown=!0)},_checkKeyUp:function(e){e.key===this.options.multiDragKey&&(this.multiDragKeyDown=!1)}},i(e,{pluginName:"multiDrag",utils:{select:function(e){var t=e.parentNode[$];t&&t.options.multiDrag&&!~mt.indexOf(e)&&(dt&&dt!==t&&(dt.multiDrag._deselectMultiDrag(),dt=t),D(e,t.options.selectedClass,!0),mt.push(e))},deselect:function(e){var t=e.parentNode[$],n=mt.indexOf(e);t&&t.options.multiDrag&&~n&&(D(e,t.options.selectedClass,!1),mt.splice(n,1))}},eventProperties:function(){var e,t=this,n=[],r=[];return mt.forEach(function(e){var o;n.push({multiDragElement:e,index:e.sortableIndex}),o=bt&&e!==pt?-1:bt?P(e,":not(."+t.options.selectedClass+")"):P(e),r.push({multiDragElement:e,index:o})}),{items:(e=mt,function(e){if(Array.isArray(e))return o(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return o(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?o(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),clones:[].concat(gt),oldIndicies:n,newIndicies:r}},optionListeners:{multiDragKey:function(e){return"ctrl"===(e=e.toLowerCase())?e="Control":e.length>1&&(e=e.charAt(0).toUpperCase()+e.substr(1)),e}}})}function St(e,t){gt.forEach(function(n,o){var r=t.children[n.sortableIndex+(e?Number(o):0)];r?t.insertBefore(n,r):t.appendChild(n)})}function Et(){mt.forEach(function(e){e!==pt&&e.parentNode&&e.parentNode.removeChild(e)})}Xe.mount(new function(){function e(){for(var e in this.defaults={scroll:!0,forceAutoScrollFallback:!1,scrollSensitivity:30,scrollSpeed:10,bubbleScroll:!0},this)"_"===e.charAt(0)&&"function"==typeof this[e]&&(this[e]=this[e].bind(this))}return e.prototype={dragStarted:function(e){var t=e.originalEvent;this.sortable.nativeDraggable?v(document,"dragover",this._handleAutoScroll):this.options.supportPointer?v(document,"pointermove",this._handleFallbackAutoScroll):t.touches?v(document,"touchmove",this._handleFallbackAutoScroll):v(document,"mousemove",this._handleFallbackAutoScroll)},dragOverCompleted:function(e){var t=e.originalEvent;this.options.dragOverBubble||t.rootEl||this._handleAutoScroll(t)},drop:function(){this.sortable.nativeDraggable?b(document,"dragover",this._handleAutoScroll):(b(document,"pointermove",this._handleFallbackAutoScroll),b(document,"touchmove",this._handleFallbackAutoScroll),b(document,"mousemove",this._handleFallbackAutoScroll)),ot(),nt(),clearTimeout(E),E=void 0},nulling:function(){Ze=Ge=Ke=tt=Qe=Ve=Je=null,et.length=0},_handleFallbackAutoScroll:function(e){this._handleAutoScroll(e,!0)},_handleAutoScroll:function(e,t){var n=this,o=(e.touches?e.touches[0]:e).clientX,r=(e.touches?e.touches[0]:e).clientY,i=document.elementFromPoint(o,r);if(Ze=e,t||this.options.forceAutoScrollFallback||d||u||h){it(e,this.options,i,t);var a=R(i,!0);!tt||Qe&&o===Ve&&r===Je||(Qe&&ot(),Qe=setInterval(function(){var i=R(document.elementFromPoint(o,r),!0);i!==a&&(a=i,nt()),it(e,n.options,i,t)},10),Ve=o,Je=r)}else{if(!this.options.bubbleScroll||R(i,!0)===T())return void nt();it(e,this.options,R(i,!1),!1)}}},i(e,{pluginName:"scroll",initializeByDefault:!0})}),Xe.mount(st,lt);const xt=Xe},872(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>o});function o(e,t){if(!e)throw new Error("Invariant failed")}},609(e){"use strict";e.exports=window.React}},t={};function n(o){var r=t[o];if(void 0!==r)return r.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,n),i.exports}n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};(()=>{"use strict";function e(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}n.r(o),n.d(o,{ClearBaseControlStyle:()=>y,ControlWithErrorStyle:()=>x,FormLabeledTokenField:()=>Y,Help:()=>g,IconText:()=>T,Label:()=>u,LabelWithActions:()=>m,ModalFooterStyle:()=>H,PopoverStandard:()=>U,RequiredLabel:()=>d,ResponsiveModal:()=>b,RowControl:()=>E,RowControlEnd:()=>A,RowControlEndStyle:()=>D,RowControlStart:()=>k,RowControlStartStyle:()=>p,Sortable:()=>v,StickyModalActions:()=>B,StyledButtonControl:()=>F,StyledCardBodyControl:()=>j,StyledComboboxControl:()=>R,StyledFlexControl:()=>P,StyledFormTokenFieldControl:()=>L,StyledSelectControl:()=>M,StyledTextControl:()=>N,TableListStyle:()=>$,WideLine:()=>X,useTriggerPopover:()=>W});var t=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,r=e(function(e){return t.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),i=n(609),a=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)})});const o=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&o.push(t[e]);return o.push(...n),o.join(" ")},l=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{n[t]=e[t]}),n},s=(e,t)=>{},c=function(e){let t="";return n=>{const o=(o,c)=>{const{as:u=e,class:d=t}=o;var p;const h=function(e,t){const n=l(t,["as","class"]);if(!e){const e="function"==typeof r?{default:r}:r;Object.keys(n).forEach(t=>{e.default(t)||delete n[t]})}return n}(void 0===n.propsAsIs?!("string"==typeof u&&-1===u.indexOf("-")&&(p=u[0],p.toUpperCase()!==p)):n.propsAsIs,o);h.ref=c,h.className=n.atomic?a(n.class,h.className||d):a(h.className||d,n.class);const{vars:f}=n;if(f){const e={};for(const t in f){const r=f[t],i=r[0],a=r[1]||"",l="function"==typeof i?i(o):i;s(0,n.name),e[`--${t}`]=`${l}${a}`}const t=h.style||{},r=Object.keys(t);r.length>0&&r.forEach(n=>{e[n]=t[n]}),h.style=e}return e.__wyw_meta&&e!==u?(h.as=u,(0,i.createElement)(e,h)):(0,i.createElement)(u,h)},c=i.forwardRef?(0,i.forwardRef)(o):e=>{const t=l(e,["innerRef"]);return o(t,e.innerRef)};return c.displayName=n.name,c.__wyw_meta={className:n.class||t,extends:e},c}};const u=c("label")({name:"Label",class:"lnj4cxf",propsAsIs:!1});n(250);const d=c(u)({name:"RequiredLabel",class:"rta9zu",propsAsIs:!0,vars:{"rta9zu-0":[({size:e=1.5})=>e+"em"]}});n(627);const p="r8cg2q0";n(471);const h=window.wp.components;function f({children:e,className:t,...n}){return(0,i.createElement)(h.Flex,{justify:"flex-start",className:a(p,t),...n},e)}const m=c(f)({name:"LabelWithActions",class:"lm6imcb",propsAsIs:!0});n(21);const g=c("p")({name:"Help",class:"h1u00eq1",propsAsIs:!1});n(2);const v=n(998).ReactSortable,b=c(h.Modal)({name:"ResponsiveModal",class:"rnqs1ii",propsAsIs:!0});n(582);const y="cswoqso";n(379);const w=window.wp.compose,S=window.wp.element,E=c((0,S.forwardRef)(function e({children:t,className:n,createId:o=!0,controlSize:r=3,...a},l){const s=(0,w.useInstanceId)(e,"jfb-control",o?"":"1");return(0,i.createElement)(h.Flex,{ref:l,className:[n,y].join(" "),gap:2,align:"flex-start",...a},"function"==typeof t?t({id:s}):t)}))({name:"RowControl",class:"rv9blu0",propsAsIs:!0,vars:{"rv9blu0-0":[({controlSize:e=3})=>e]}});n(722);const x="cuape64";n(55);const D="rxii470";n(980);const C=(0,S.forwardRef)(function({icon:e,size:t=24,...n},o){return(0,S.cloneElement)(e,{width:t,height:t,...n,ref:o})}),_=c(h.Flex)({name:"StyledFlex",class:"s82flgq",propsAsIs:!0}),O=(0,i.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none"},(0,i.createElement)("path",{d:"M12 16.99V17M12 7V14M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),T=function({children:e,icon:t,...n}){return(0,i.createElement)(_,{justify:"flex-start",...n},(0,i.createElement)(C,{size:24,icon:null!=t?t:O}),e)};n(885);const I=window.wp.i18n,A=function({children:e,hasError:t=!1,showDefaultNotice:n=!0,errorText:o="",className:r,...l}){const s=(0,I.__)("Please fill this required field","jet-form-builder");let c="";return o.length&&(c=(0,I.__)(o,"jet-form-builder")),(0,i.createElement)(h.Flex,{className:a(D,t&&x,r),direction:"column",...l},t&&n&&(0,i.createElement)(T,null,c.length?c:s),e)},k=function({className:e,...t}){return(0,i.createElement)("div",{className:a(e,p),...t})},M=c(h.SelectControl)({name:"StyledSelectControl",class:"s1c2yukw",propsAsIs:!0});n(791);const P=c(h.Flex)({name:"StyledFlexControl",class:"smynwlj",propsAsIs:!0});n(32);const N=c(h.TextControl)({name:"StyledTextControl",class:"sanpaay",propsAsIs:!0});n(676);const R=c(h.ComboboxControl)({name:"StyledComboboxControl",class:"s1ucdx31",propsAsIs:!0});n(804);const j=c(h.CardBody)({name:"StyledCardBodyControl",class:"s11rga5u",propsAsIs:!0});n(209);const F=c(h.Button)({name:"StyledButtonControl",class:"s1slln9b",propsAsIs:!0});n(971);const L=c(h.FormTokenField)({name:"StyledFormTokenFieldControl",class:"s1c0necn",propsAsIs:!0});n(22),n(843);const B=function({className:e="",...t}){return(0,i.createElement)(h.Flex,{justify:"flex-start",className:("sh0lqos "+e).trim(),...t})},H="madeb2s";n(884);const X=c("hr")({name:"WideLine",class:"w1m59y8q",propsAsIs:!1});n(156);const Y=function({suggestions:e=[],value:t=[],valueProp:n="value",labelProp:o="label",__experimentalValidateInput:r=e=>!0,...a}){const[l,s]=(0,S.useMemo)(()=>{const t={},r={};for(const l of e){var i,a;const e=null!==(i=l[n])&&void 0!==i?i:"",s=null!==(a=l[o])&&void 0!==a?a:"";t[e]=s,r[s]=e}return[t,r]},[]),c=(0,S.useMemo)(()=>e.map(e=>e[o]||"").filter(e=>e&&!t.includes(s[e])),[t]);return(0,i.createElement)(L,{displayTransform:e=>{var t;return null!==(t=l[e])&&void 0!==t?t:e},saveTransform:e=>{var t;return null!==(t=s[e])&&void 0!==t?t:e},suggestions:c,value:t,__experimentalValidateInput:e=>{var t;return r(null!==(t=s[e])&&void 0!==t?t:e)},...a})},$={Container:"c5pz5n1",Wrap:"wmfgvut",Label:"l1hoyu1i",WhiteSpaceNormal:"w11rzgzd",Card:"cf32tkz",Th:"t8jbc7u",ThItem:"twa9inx",Td:"tkkz475",TdItem:"t1evp1yb"};function z(){const[e,t]=(0,S.useState)(!1),n=(0,S.useRef)(),o={anchor:n.current,onFocusOutside:e=>{e.relatedTarget!==n.current&&t(!1)},onClose:()=>t(!1)};return{ref:n,setShowPopover:t,showPopover:e,popoverProps:o}}n(404),window.JetFBHooks=window.JetFBHooks||{},window.JetFBHooks.useTriggerPopover=z;const W=z,U=c(h.Popover)({name:"PopoverStandard",class:"pp9mjqr",propsAsIs:!0});n(8)})(),(window.jfb=window.jfb||{}).components=o})(); \ No newline at end of file +(()=>{var e={2:(e,t,n)=>{"use strict";n.r(t)},8:(e,t,n)=>{"use strict";n.r(t)},21:(e,t,n)=>{"use strict";n.r(t)},22:(e,t,n)=>{"use strict";n.r(t)},32:(e,t,n)=>{"use strict";n.r(t)},55:(e,t,n)=>{"use strict";n.r(t)},156:(e,t,n)=>{"use strict";n.r(t)},189:(e,t)=>{var n;!function(){"use strict";var o={}.hasOwnProperty;function r(){for(var e=[],t=0;t{"use strict";n.r(t)},250:(e,t,n)=>{"use strict";n.r(t)},337:(e,t,n)=>{"use strict";function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,o)}return n}function r(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,o=new Array(t);nwt,Sortable:()=>Xe,Swap:()=>ct,default:()=>xt});var u=c(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i),d=c(/Edge/i),p=c(/firefox/i),h=c(/safari/i)&&!c(/chrome/i)&&!c(/android/i),f=c(/iP(ad|od|hone)/i),m=c(/chrome/i)&&c(/android/i),g={capture:!1,passive:!1};function v(e,t,n){e.addEventListener(t,n,!u&&g)}function b(e,t,n){e.removeEventListener(t,n,!u&&g)}function y(e,t){if(t){if(">"===t[0]&&(t=t.substring(1)),e)try{if(e.matches)return e.matches(t);if(e.msMatchesSelector)return e.msMatchesSelector(t);if(e.webkitMatchesSelector)return e.webkitMatchesSelector(t)}catch(e){return!1}return!1}}function w(e){return e.host&&e!==document&&e.host.nodeType?e.host:e.parentNode}function E(e,t,n,o){if(e){n=n||document;do{if(null!=t&&(">"===t[0]?e.parentNode===n&&y(e,t):y(e,t))||o&&e===n)return e;if(e===n)break}while(e=w(e))}return null}var S,x=/\s+/g;function D(e,t,n){if(e&&t)if(e.classList)e.classList[n?"add":"remove"](t);else{var o=(" "+e.className+" ").replace(x," ").replace(" "+t+" "," ");e.className=(o+(n?" "+t:"")).replace(x," ")}}function C(e,t,n){var o=e&&e.style;if(o){if(void 0===n)return document.defaultView&&document.defaultView.getComputedStyle?n=document.defaultView.getComputedStyle(e,""):e.currentStyle&&(n=e.currentStyle),void 0===t?n:n[t];t in o||-1!==t.indexOf("webkit")||(t="-webkit-"+t),o[t]=n+("string"==typeof n?"":"px")}}function _(e,t){var n="";if("string"==typeof e)n=e;else do{var o=C(e,"transform");o&&"none"!==o&&(n=o+" "+n)}while(!t&&(e=e.parentNode));var r=window.DOMMatrix||window.WebKitCSSMatrix||window.CSSMatrix||window.MSCSSMatrix;return r&&new r(n)}function O(e,t,n){if(e){var o=e.getElementsByTagName(t),r=0,i=o.length;if(n)for(;r=i:r<=i))return o;if(o===I())break;o=R(o,!1)}return!1}function k(e,t,n,o){for(var r=0,i=0,a=e.children;i2&&void 0!==arguments[2]?arguments[2]:{},o=n.evt,i=function(e,t){if(null==e)return{};var n,o,r=function(e,t){if(null==e)return{};var n,o,r={},i=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;o=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}(n,K);U.pluginEvent.bind(Xe)(e,t,r({dragEl:J,parentEl:Z,ghostEl:Q,rootEl:ee,nextEl:te,lastDownEl:ne,cloneEl:oe,cloneHidden:re,dragStarted:ve,putSortable:ue,activeSortable:Xe.active,originalEvent:o,oldIndex:ie,oldDraggableIndex:le,newIndex:ae,newDraggableIndex:se,hideGhostForTarget:Fe,unhideGhostForTarget:Le,cloneNowHidden:function(){re=!0},cloneNowShown:function(){re=!1},dispatchSortableEvent:function(e){V({sortable:t,name:e,originalEvent:o})}},i))};function V(e){q(r({putSortable:ue,cloneEl:oe,targetEl:J,rootEl:ee,oldIndex:ie,oldDraggableIndex:le,newIndex:ae,newDraggableIndex:se},e))}var J,Z,Q,ee,te,ne,oe,re,ie,ae,le,se,ce,ue,de,pe,he,fe,me,ge,ve,be,ye,we,Ee,Se=!1,xe=!1,De=[],Ce=!1,_e=!1,Oe=[],Ie=!1,Te=[],Ae="undefined"!=typeof document,ke=f,Me=d||u?"cssFloat":"float",Pe=Ae&&!m&&!f&&"draggable"in document.createElement("div"),Ne=function(){if(Ae){if(u)return!1;var e=document.createElement("x");return e.style.cssText="pointer-events:auto","auto"===e.style.pointerEvents}}(),Re=function(e,t){var n=C(e),o=parseInt(n.width)-parseInt(n.paddingLeft)-parseInt(n.paddingRight)-parseInt(n.borderLeftWidth)-parseInt(n.borderRightWidth),r=k(e,0,t),i=k(e,1,t),a=r&&C(r),l=i&&C(i),s=a&&parseInt(a.marginLeft)+parseInt(a.marginRight)+T(r).width,c=l&&parseInt(l.marginLeft)+parseInt(l.marginRight)+T(i).width;if("flex"===n.display)return"column"===n.flexDirection||"column-reverse"===n.flexDirection?"vertical":"horizontal";if("grid"===n.display)return n.gridTemplateColumns.split(" ").length<=1?"vertical":"horizontal";if(r&&a.float&&"none"!==a.float){var u="left"===a.float?"left":"right";return!i||"both"!==l.clear&&l.clear!==u?"horizontal":"vertical"}return r&&("block"===a.display||"flex"===a.display||"table"===a.display||"grid"===a.display||s>=o&&"none"===n[Me]||i&&"none"===n[Me]&&s+c>o)?"vertical":"horizontal"},je=function(e){function t(e,n){return function(o,r,i,a){var l=o.options.group.name&&r.options.group.name&&o.options.group.name===r.options.group.name;if(null==e&&(n||l))return!0;if(null==e||!1===e)return!1;if(n&&"clone"===e)return e;if("function"==typeof e)return t(e(o,r,i,a),n)(o,r,i,a);var s=(n?o:r).options.group.name;return!0===e||"string"==typeof e&&e===s||e.join&&e.indexOf(s)>-1}}var n={},o=e.group;o&&"object"==i(o)||(o={name:o}),n.name=o.name,n.checkPull=t(o.pull,!0),n.checkPut=t(o.put),n.revertClone=o.revertClone,e.group=n},Fe=function(){!Ne&&Q&&C(Q,"display","none")},Le=function(){!Ne&&Q&&C(Q,"display","")};Ae&&!m&&document.addEventListener("click",(function(e){if(xe)return e.preventDefault(),e.stopPropagation&&e.stopPropagation(),e.stopImmediatePropagation&&e.stopImmediatePropagation(),xe=!1,!1}),!0);var Be=function(e){if(J){e=e.touches?e.touches[0]:e;var t=(r=e.clientX,i=e.clientY,De.some((function(e){var t=e[$].options.emptyInsertThreshold;if(t&&!M(e)){var n=T(e),o=r>=n.left-t&&r<=n.right+t,l=i>=n.top-t&&i<=n.bottom+t;return o&&l?a=e:void 0}})),a);if(t){var n={};for(var o in e)e.hasOwnProperty(o)&&(n[o]=e[o]);n.target=n.rootEl=t,n.preventDefault=void 0,n.stopPropagation=void 0,t[$]._onDragOver(n)}}var r,i,a},He=function(e){J&&J.parentNode[$]._isOutsideThisEl(e.target)};function Xe(e,t){if(!e||!e.nodeType||1!==e.nodeType)throw"Sortable: `el` must be an HTMLElement, not ".concat({}.toString.call(e));this.el=e,this.options=t=l({},t),e[$]=this;var n,o,i={group:null,sort:!0,disabled:!1,store:null,handle:null,draggable:/^[uo]l$/i.test(e.nodeName)?">li":">*",swapThreshold:1,invertSwap:!1,invertedSwapThreshold:null,removeCloneOnHide:!0,direction:function(){return Re(e,this.options)},ghostClass:"sortable-ghost",chosenClass:"sortable-chosen",dragClass:"sortable-drag",ignore:"a, img",filter:null,preventOnFilter:!0,animation:0,easing:null,setData:function(e,t){e.setData("Text",t.textContent)},dropBubble:!1,dragoverBubble:!1,dataIdAttr:"data-id",delay:0,delayOnTouchOnly:!1,touchStartThreshold:(Number.parseInt?Number:window).parseInt(window.devicePixelRatio,10)||1,forceFallback:!1,fallbackClass:"sortable-fallback",fallbackOnBody:!1,fallbackTolerance:0,fallbackOffset:{x:0,y:0},supportPointer:!1!==Xe.supportPointer&&"PointerEvent"in window&&(!h||f),emptyInsertThreshold:5};for(var a in U.initializePlugins(this,e,i),i)!(a in t)&&(t[a]=i[a]);for(var s in je(t),this)"_"===s.charAt(0)&&"function"==typeof this[s]&&(this[s]=this[s].bind(this));this.nativeDraggable=!t.forceFallback&&Pe,this.nativeDraggable&&(this.options.touchStartThreshold=1),t.supportPointer?v(e,"pointerdown",this._onTapStart):(v(e,"mousedown",this._onTapStart),v(e,"touchstart",this._onTapStart)),this.nativeDraggable&&(v(e,"dragover",this),v(e,"dragenter",this)),De.push(this.el),t.store&&t.store.get&&this.sort(t.store.get(this)||[]),l(this,(o=[],{captureAnimationState:function(){o=[],this.options.animation&&[].slice.call(this.el.children).forEach((function(e){if("none"!==C(e,"display")&&e!==Xe.ghost){o.push({target:e,rect:T(e)});var t=r({},o[o.length-1].rect);if(e.thisAnimationDuration){var n=_(e,!0);n&&(t.top-=n.f,t.left-=n.e)}e.fromRect=t}}))},addAnimationState:function(e){o.push(e)},removeAnimationState:function(e){o.splice(function(e,t){for(var n in e)if(e.hasOwnProperty(n))for(var o in t)if(t.hasOwnProperty(o)&&t[o]===e[n][o])return Number(n);return-1}(o,{target:e}),1)},animateAll:function(e){var t=this;if(!this.options.animation)return clearTimeout(n),void("function"==typeof e&&e());var r=!1,i=0;o.forEach((function(e){var n=0,o=e.target,a=o.fromRect,l=T(o),s=o.prevFromRect,c=o.prevToRect,u=e.rect,d=_(o,!0);d&&(l.top-=d.f,l.left-=d.e),o.toRect=l,o.thisAnimationDuration&&j(s,l)&&!j(a,l)&&(u.top-l.top)/(u.left-l.left)===(a.top-l.top)/(a.left-l.left)&&(n=function(e,t,n,o){return Math.sqrt(Math.pow(t.top-e.top,2)+Math.pow(t.left-e.left,2))/Math.sqrt(Math.pow(t.top-n.top,2)+Math.pow(t.left-n.left,2))*o.animation}(u,s,c,t.options)),j(l,a)||(o.prevFromRect=a,o.prevToRect=l,n||(n=t.options.animation),t.animate(o,u,l,n)),n&&(r=!0,i=Math.max(i,n),clearTimeout(o.animationResetTimer),o.animationResetTimer=setTimeout((function(){o.animationTime=0,o.prevFromRect=null,o.fromRect=null,o.prevToRect=null,o.thisAnimationDuration=null}),n),o.thisAnimationDuration=n)})),clearTimeout(n),r?n=setTimeout((function(){"function"==typeof e&&e()}),i):"function"==typeof e&&e(),o=[]},animate:function(e,t,n,o){if(o){C(e,"transition",""),C(e,"transform","");var r=_(this.el),i=r&&r.a,a=r&&r.d,l=(t.left-n.left)/(i||1),s=(t.top-n.top)/(a||1);e.animatingX=!!l,e.animatingY=!!s,C(e,"transform","translate3d("+l+"px,"+s+"px,0)"),this.forRepaintDummy=function(e){return e.offsetWidth}(e),C(e,"transition","transform "+o+"ms"+(this.options.easing?" "+this.options.easing:"")),C(e,"transform","translate3d(0,0,0)"),"number"==typeof e.animated&&clearTimeout(e.animated),e.animated=setTimeout((function(){C(e,"transition",""),C(e,"transform",""),e.animated=!1,e.animatingX=!1,e.animatingY=!1}),o)}}}))}function Ye(e,t,n,o,r,i,a,l){var s,c,p=e[$],h=p.options.onMove;return!window.CustomEvent||u||d?(s=document.createEvent("Event")).initEvent("move",!0,!0):s=new CustomEvent("move",{bubbles:!0,cancelable:!0}),s.to=t,s.from=e,s.dragged=n,s.draggedRect=o,s.related=r||t,s.relatedRect=i||T(t),s.willInsertAfter=l,s.originalEvent=a,e.dispatchEvent(s),h&&(c=h.call(p,s,a)),c}function $e(e){e.draggable=!1}function ze(){Ie=!1}function We(e){for(var t=e.tagName+e.className+e.src+e.href+e.textContent,n=t.length,o=0;n--;)o+=t.charCodeAt(n);return o.toString(36)}function Ue(e){return setTimeout(e,0)}function qe(e){return clearTimeout(e)}Xe.prototype={constructor:Xe,_isOutsideThisEl:function(e){this.el.contains(e)||e===this.el||(be=null)},_getDirection:function(e,t){return"function"==typeof this.options.direction?this.options.direction.call(this,e,t,J):this.options.direction},_onTapStart:function(e){if(e.cancelable){var t=this,n=this.el,o=this.options,r=o.preventOnFilter,i=e.type,a=e.touches&&e.touches[0]||e.pointerType&&"touch"===e.pointerType&&e,l=(a||e).target,s=e.target.shadowRoot&&(e.path&&e.path[0]||e.composedPath&&e.composedPath()[0])||l,c=o.filter;if(function(e){Te.length=0;for(var t=e.getElementsByTagName("input"),n=t.length;n--;){var o=t[n];o.checked&&Te.push(o)}}(n),!J&&!(/mousedown|pointerdown/.test(i)&&0!==e.button||o.disabled)&&!s.isContentEditable&&(this.nativeDraggable||!h||!l||"SELECT"!==l.tagName.toUpperCase())&&!((l=E(l,o.draggable,n,!1))&&l.animated||ne===l)){if(ie=P(l),le=P(l,o.draggable),"function"==typeof c){if(c.call(this,e,l,this))return V({sortable:t,rootEl:s,name:"filter",targetEl:l,toEl:n,fromEl:n}),G("filter",t,{evt:e}),void(r&&e.preventDefault())}else if(c&&(c=c.split(",").some((function(o){if(o=E(s,o.trim(),n,!1))return V({sortable:t,rootEl:o,name:"filter",targetEl:l,fromEl:n,toEl:n}),G("filter",t,{evt:e}),!0}))))return void(r&&e.preventDefault());o.handle&&!E(s,o.handle,n,!1)||this._prepareDragStart(e,a,l)}}},_prepareDragStart:function(e,t,n){var o,r=this,i=r.el,a=r.options,l=i.ownerDocument;if(n&&!J&&n.parentNode===i){var s=T(n);if(ee=i,Z=(J=n).parentNode,te=J.nextSibling,ne=n,ce=a.group,Xe.dragged=J,de={target:J,clientX:(t||e).clientX,clientY:(t||e).clientY},me=de.clientX-s.left,ge=de.clientY-s.top,this._lastX=(t||e).clientX,this._lastY=(t||e).clientY,J.style["will-change"]="all",o=function(){G("delayEnded",r,{evt:e}),Xe.eventCanceled?r._onDrop():(r._disableDelayedDragEvents(),!p&&r.nativeDraggable&&(J.draggable=!0),r._triggerDragStart(e,t),V({sortable:r,name:"choose",originalEvent:e}),D(J,a.chosenClass,!0))},a.ignore.split(",").forEach((function(e){O(J,e.trim(),$e)})),v(l,"dragover",Be),v(l,"mousemove",Be),v(l,"touchmove",Be),a.supportPointer?(v(l,"pointerup",r._onDrop),!this.nativeDraggable&&v(l,"pointercancel",r._onDrop)):(v(l,"mouseup",r._onDrop),v(l,"touchend",r._onDrop),v(l,"touchcancel",r._onDrop)),p&&this.nativeDraggable&&(this.options.touchStartThreshold=4,J.draggable=!0),G("delayStart",this,{evt:e}),!a.delay||a.delayOnTouchOnly&&!t||this.nativeDraggable&&(d||u))o();else{if(Xe.eventCanceled)return void this._onDrop();a.supportPointer?(v(l,"pointerup",r._disableDelayedDrag),v(l,"pointercancel",r._disableDelayedDrag)):(v(l,"mouseup",r._disableDelayedDrag),v(l,"touchend",r._disableDelayedDrag),v(l,"touchcancel",r._disableDelayedDrag)),v(l,"mousemove",r._delayedDragTouchMoveHandler),v(l,"touchmove",r._delayedDragTouchMoveHandler),a.supportPointer&&v(l,"pointermove",r._delayedDragTouchMoveHandler),r._dragStartTimer=setTimeout(o,a.delay)}}},_delayedDragTouchMoveHandler:function(e){var t=e.touches?e.touches[0]:e;Math.max(Math.abs(t.clientX-this._lastX),Math.abs(t.clientY-this._lastY))>=Math.floor(this.options.touchStartThreshold/(this.nativeDraggable&&window.devicePixelRatio||1))&&this._disableDelayedDrag()},_disableDelayedDrag:function(){J&&$e(J),clearTimeout(this._dragStartTimer),this._disableDelayedDragEvents()},_disableDelayedDragEvents:function(){var e=this.el.ownerDocument;b(e,"mouseup",this._disableDelayedDrag),b(e,"touchend",this._disableDelayedDrag),b(e,"touchcancel",this._disableDelayedDrag),b(e,"pointerup",this._disableDelayedDrag),b(e,"pointercancel",this._disableDelayedDrag),b(e,"mousemove",this._delayedDragTouchMoveHandler),b(e,"touchmove",this._delayedDragTouchMoveHandler),b(e,"pointermove",this._delayedDragTouchMoveHandler)},_triggerDragStart:function(e,t){t=t||"touch"==e.pointerType&&e,!this.nativeDraggable||t?this.options.supportPointer?v(document,"pointermove",this._onTouchMove):v(document,t?"touchmove":"mousemove",this._onTouchMove):(v(J,"dragend",this),v(ee,"dragstart",this._onDragStart));try{document.selection?Ue((function(){document.selection.empty()})):window.getSelection().removeAllRanges()}catch(e){}},_dragStarted:function(e,t){if(Se=!1,ee&&J){G("dragStarted",this,{evt:t}),this.nativeDraggable&&v(document,"dragover",He);var n=this.options;!e&&D(J,n.dragClass,!1),D(J,n.ghostClass,!0),Xe.active=this,e&&this._appendGhost(),V({sortable:this,name:"start",originalEvent:t})}else this._nulling()},_emulateDragOver:function(){if(pe){this._lastX=pe.clientX,this._lastY=pe.clientY,Fe();for(var e=document.elementFromPoint(pe.clientX,pe.clientY),t=e;e&&e.shadowRoot&&(e=e.shadowRoot.elementFromPoint(pe.clientX,pe.clientY))!==t;)t=e;if(J.parentNode[$]._isOutsideThisEl(e),t)do{if(t[$]&&t[$]._onDragOver({clientX:pe.clientX,clientY:pe.clientY,target:e,rootEl:t})&&!this.options.dragoverBubble)break;e=t}while(t=w(t));Le()}},_onTouchMove:function(e){if(de){var t=this.options,n=t.fallbackTolerance,o=t.fallbackOffset,r=e.touches?e.touches[0]:e,i=Q&&_(Q,!0),a=Q&&i&&i.a,l=Q&&i&&i.d,s=ke&&Ee&&N(Ee),c=(r.clientX-de.clientX+o.x)/(a||1)+(s?s[0]-Oe[0]:0)/(a||1),u=(r.clientY-de.clientY+o.y)/(l||1)+(s?s[1]-Oe[1]:0)/(l||1);if(!Xe.active&&!Se){if(n&&Math.max(Math.abs(r.clientX-this._lastX),Math.abs(r.clientY-this._lastY))r.right+10||e.clientY>o.bottom&&e.clientX>o.left:e.clientY>r.bottom+10||e.clientX>o.right&&e.clientY>o.top}(e,i,this)&&!g.animated){if(g===J)return X(!1);if(g&&a===e.target&&(l=g),l&&(n=T(l)),!1!==Ye(ee,a,J,t,l,n,e,!!l))return H(),g&&g.nextSibling?a.insertBefore(J,g.nextSibling):a.appendChild(J),Z=a,z(),X(!0)}else if(g&&function(e,t,n){var o=T(k(n.el,0,n.options,!0)),r=Y(n.el,n.options,Q);return t?e.clientXu+c*i/2:sd-we)return-ye}else if(s>u+c*(1-r)/2&&sd-c*i/2)?s>u+c/2?1:-1:0}(e,l,n,i,x?1:s.swapThreshold,null==s.invertedSwapThreshold?s.swapThreshold:s.invertedSwapThreshold,_e,be===l),0!==b){var N=P(J);do{N-=b,w=Z.children[N]}while(w&&("none"===C(w,"display")||w===Q))}if(0===b||w===l)return X(!1);be=l,ye=b;var R=l.nextElementSibling,j=!1,F=Ye(ee,a,J,t,l,n,e,j=1===b);if(!1!==F)return 1!==F&&-1!==F||(j=1===F),Ie=!0,setTimeout(ze,30),H(),j&&!R?a.appendChild(J):l.parentNode.insertBefore(J,j?R:l),O&&L(O,0,I-O.scrollTop),Z=J.parentNode,void 0===y||_e||(we=Math.abs(y-T(l)[_])),z(),X(!0)}if(a.contains(J))return X(!1)}return!1}function B(s,c){G(s,f,r({evt:e,isOwner:d,axis:i?"vertical":"horizontal",revert:o,dragRect:t,targetRect:n,canSort:p,fromSortable:h,target:l,completed:X,onMove:function(n,o){return Ye(ee,a,J,t,n,T(n),e,o)},changed:z},c))}function H(){B("dragOverAnimationCapture"),f.captureAnimationState(),f!==h&&h.captureAnimationState()}function X(t){return B("dragOverCompleted",{insertion:t}),t&&(d?u._hideClone():u._showClone(f),f!==h&&(D(J,ue?ue.options.ghostClass:u.options.ghostClass,!1),D(J,s.ghostClass,!0)),ue!==f&&f!==Xe.active?ue=f:f===Xe.active&&ue&&(ue=null),h===f&&(f._ignoreWhileAnimating=l),f.animateAll((function(){B("dragOverAnimationComplete"),f._ignoreWhileAnimating=null})),f!==h&&(h.animateAll(),h._ignoreWhileAnimating=null)),(l===J&&!J.animated||l===a&&!l.animated)&&(be=null),s.dragoverBubble||e.rootEl||l===document||(J.parentNode[$]._isOutsideThisEl(e.target),!t&&Be(e)),!s.dragoverBubble&&e.stopPropagation&&e.stopPropagation(),m=!0}function z(){ae=P(J),se=P(J,s.draggable),V({sortable:f,name:"change",toEl:a,newIndex:ae,newDraggableIndex:se,originalEvent:e})}},_ignoreWhileAnimating:null,_offMoveEvents:function(){b(document,"mousemove",this._onTouchMove),b(document,"touchmove",this._onTouchMove),b(document,"pointermove",this._onTouchMove),b(document,"dragover",Be),b(document,"mousemove",Be),b(document,"touchmove",Be)},_offUpEvents:function(){var e=this.el.ownerDocument;b(e,"mouseup",this._onDrop),b(e,"touchend",this._onDrop),b(e,"pointerup",this._onDrop),b(e,"pointercancel",this._onDrop),b(e,"touchcancel",this._onDrop),b(document,"selectstart",this)},_onDrop:function(e){var t=this.el,n=this.options;ae=P(J),se=P(J,n.draggable),G("drop",this,{evt:e}),Z=J&&J.parentNode,ae=P(J),se=P(J,n.draggable),Xe.eventCanceled||(Se=!1,_e=!1,Ce=!1,clearInterval(this._loopId),clearTimeout(this._dragStartTimer),qe(this.cloneId),qe(this._dragStartId),this.nativeDraggable&&(b(document,"drop",this),b(t,"dragstart",this._onDragStart)),this._offMoveEvents(),this._offUpEvents(),h&&C(document.body,"user-select",""),C(J,"transform",""),e&&(ve&&(e.cancelable&&e.preventDefault(),!n.dropBubble&&e.stopPropagation()),Q&&Q.parentNode&&Q.parentNode.removeChild(Q),(ee===Z||ue&&"clone"!==ue.lastPutMode)&&oe&&oe.parentNode&&oe.parentNode.removeChild(oe),J&&(this.nativeDraggable&&b(J,"dragend",this),$e(J),J.style["will-change"]="",ve&&!Se&&D(J,ue?ue.options.ghostClass:this.options.ghostClass,!1),D(J,this.options.chosenClass,!1),V({sortable:this,name:"unchoose",toEl:Z,newIndex:null,newDraggableIndex:null,originalEvent:e}),ee!==Z?(ae>=0&&(V({rootEl:Z,name:"add",toEl:Z,fromEl:ee,originalEvent:e}),V({sortable:this,name:"remove",toEl:Z,originalEvent:e}),V({rootEl:Z,name:"sort",toEl:Z,fromEl:ee,originalEvent:e}),V({sortable:this,name:"sort",toEl:Z,originalEvent:e})),ue&&ue.save()):ae!==ie&&ae>=0&&(V({sortable:this,name:"update",toEl:Z,originalEvent:e}),V({sortable:this,name:"sort",toEl:Z,originalEvent:e})),Xe.active&&(null!=ae&&-1!==ae||(ae=ie,se=le),V({sortable:this,name:"end",toEl:Z,originalEvent:e}),this.save())))),this._nulling()},_nulling:function(){G("nulling",this),ee=J=Z=Q=te=oe=ne=re=de=pe=ve=ae=se=ie=le=be=ye=ue=ce=Xe.dragged=Xe.ghost=Xe.clone=Xe.active=null,Te.forEach((function(e){e.checked=!0})),Te.length=he=fe=0},handleEvent:function(e){switch(e.type){case"drop":case"dragend":this._onDrop(e);break;case"dragenter":case"dragover":J&&(this._onDragOver(e),function(e){e.dataTransfer&&(e.dataTransfer.dropEffect="move"),e.cancelable&&e.preventDefault()}(e));break;case"selectstart":e.preventDefault()}},toArray:function(){for(var e,t=[],n=this.el.children,o=0,r=n.length,i=this.options;o1&&(mt.forEach((function(e){o.addAnimationState({target:e,rect:bt?T(e):r}),X(e),e.fromRect=r,t.removeAnimationState(e)})),bt=!1,function(e,t){mt.forEach((function(n,o){var r=t.children[n.sortableIndex+(e?Number(o):0)];r?t.insertBefore(n,r):t.appendChild(n)}))}(!this.options.removeCloneOnHide,n))},dragOverCompleted:function(e){var t=e.sortable,n=e.isOwner,o=e.insertion,r=e.activeSortable,i=e.parentEl,a=e.putSortable,l=this.options;if(o){if(n&&r._hideClone(),vt=!1,l.animation&&mt.length>1&&(bt||!n&&!r.options.sort&&!a)){var s=T(pt,!1,!0,!0);mt.forEach((function(e){e!==pt&&(H(e,s),i.appendChild(e))})),bt=!0}if(!n)if(bt||St(),mt.length>1){var c=ft;r._showClone(t),r.options.animation&&!ft&&c&>.forEach((function(e){r.addAnimationState({target:e,rect:ht}),e.fromRect=ht,e.thisAnimationDuration=null}))}else r._showClone(t)}},dragOverAnimationCapture:function(e){var t=e.dragRect,n=e.isOwner,o=e.activeSortable;if(mt.forEach((function(e){e.thisAnimationDuration=null})),o.options.animation&&!n&&o.multiDrag.isMultiDrag){ht=l({},t);var r=_(pt,!0);ht.top-=r.f,ht.left-=r.e}},dragOverAnimationComplete:function(){bt&&(bt=!1,St())},drop:function(e){var t=e.originalEvent,n=e.rootEl,o=e.parentEl,r=e.sortable,i=e.dispatchSortableEvent,a=e.oldIndex,l=e.putSortable,s=l||this.sortable;if(t){var c=this.options,u=o.children;if(!yt)if(c.multiDragKey&&!this.multiDragKeyDown&&this._deselectMultiDrag(),D(pt,c.selectedClass,!~mt.indexOf(pt)),~mt.indexOf(pt))mt.splice(mt.indexOf(pt),1),ut=null,q({sortable:r,rootEl:n,name:"deselect",targetEl:pt,originalEvent:t});else{if(mt.push(pt),q({sortable:r,rootEl:n,name:"select",targetEl:pt,originalEvent:t}),t.shiftKey&&ut&&r.el.contains(ut)){var d=P(ut),p=P(pt);~d&&~p&&d!==p&&function(){var e,i;p>d?(i=d,e=p):(i=p,e=d+1);for(var a=c.filter;i1){var h=T(pt),f=P(pt,":not(."+this.options.selectedClass+")");if(!vt&&c.animation&&(pt.thisAnimationDuration=null),s.captureAnimationState(),!vt&&(c.animation&&(pt.fromRect=h,mt.forEach((function(e){if(e.thisAnimationDuration=null,e!==pt){var t=bt?T(e):h;e.fromRect=t,s.addAnimationState({target:e,rect:t})}}))),St(),mt.forEach((function(e){u[f]?o.insertBefore(e,u[f]):o.appendChild(e),f++})),a===P(pt))){var m=!1;mt.forEach((function(e){e.sortableIndex===P(e)||(m=!0)})),m&&(i("update"),i("sort"))}mt.forEach((function(e){X(e)})),s.animateAll()}dt=s}(n===o||l&&"clone"!==l.lastPutMode)&>.forEach((function(e){e.parentNode&&e.parentNode.removeChild(e)}))}},nullingGlobal:function(){this.isMultiDrag=yt=!1,gt.length=0},destroyGlobal:function(){this._deselectMultiDrag(),b(document,"pointerup",this._deselectMultiDrag),b(document,"mouseup",this._deselectMultiDrag),b(document,"touchend",this._deselectMultiDrag),b(document,"keydown",this._checkKeyDown),b(document,"keyup",this._checkKeyUp)},_deselectMultiDrag:function(e){if(!(void 0!==yt&&yt||dt!==this.sortable||e&&E(e.target,this.options.draggable,this.sortable.el,!1)||e&&0!==e.button))for(;mt.length;){var t=mt[0];D(t,this.options.selectedClass,!1),mt.shift(),q({sortable:this.sortable,rootEl:this.sortable.el,name:"deselect",targetEl:t,originalEvent:e})}},_checkKeyDown:function(e){e.key===this.options.multiDragKey&&(this.multiDragKeyDown=!0)},_checkKeyUp:function(e){e.key===this.options.multiDragKey&&(this.multiDragKeyDown=!1)}},l(e,{pluginName:"multiDrag",utils:{select:function(e){var t=e.parentNode[$];t&&t.options.multiDrag&&!~mt.indexOf(e)&&(dt&&dt!==t&&(dt.multiDrag._deselectMultiDrag(),dt=t),D(e,t.options.selectedClass,!0),mt.push(e))},deselect:function(e){var t=e.parentNode[$],n=mt.indexOf(e);t&&t.options.multiDrag&&~n&&(D(e,t.options.selectedClass,!1),mt.splice(n,1))}},eventProperties:function(){var e,t=this,n=[],o=[];return mt.forEach((function(e){var r;n.push({multiDragElement:e,index:e.sortableIndex}),r=bt&&e!==pt?-1:bt?P(e,":not(."+t.options.selectedClass+")"):P(e),o.push({multiDragElement:e,index:r})})),{items:(e=mt,function(e){if(Array.isArray(e))return s(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),clones:[].concat(gt),oldIndicies:n,newIndicies:o}},optionListeners:{multiDragKey:function(e){return"ctrl"===(e=e.toLowerCase())?e="Control":e.length>1&&(e=e.charAt(0).toUpperCase()+e.substr(1)),e}}})}function Et(e,t){gt.forEach((function(n,o){var r=t.children[n.sortableIndex+(e?Number(o):0)];r?t.insertBefore(n,r):t.appendChild(n)}))}function St(){mt.forEach((function(e){e!==pt&&e.parentNode&&e.parentNode.removeChild(e)}))}Xe.mount(new function(){function e(){for(var e in this.defaults={scroll:!0,forceAutoScrollFallback:!1,scrollSensitivity:30,scrollSpeed:10,bubbleScroll:!0},this)"_"===e.charAt(0)&&"function"==typeof this[e]&&(this[e]=this[e].bind(this))}return e.prototype={dragStarted:function(e){var t=e.originalEvent;this.sortable.nativeDraggable?v(document,"dragover",this._handleAutoScroll):this.options.supportPointer?v(document,"pointermove",this._handleFallbackAutoScroll):t.touches?v(document,"touchmove",this._handleFallbackAutoScroll):v(document,"mousemove",this._handleFallbackAutoScroll)},dragOverCompleted:function(e){var t=e.originalEvent;this.options.dragOverBubble||t.rootEl||this._handleAutoScroll(t)},drop:function(){this.sortable.nativeDraggable?b(document,"dragover",this._handleAutoScroll):(b(document,"pointermove",this._handleFallbackAutoScroll),b(document,"touchmove",this._handleFallbackAutoScroll),b(document,"mousemove",this._handleFallbackAutoScroll)),ot(),nt(),clearTimeout(S),S=void 0},nulling:function(){Ze=Ge=Ke=tt=Qe=Ve=Je=null,et.length=0},_handleFallbackAutoScroll:function(e){this._handleAutoScroll(e,!0)},_handleAutoScroll:function(e,t){var n=this,o=(e.touches?e.touches[0]:e).clientX,r=(e.touches?e.touches[0]:e).clientY,i=document.elementFromPoint(o,r);if(Ze=e,t||this.options.forceAutoScrollFallback||d||u||h){it(e,this.options,i,t);var a=R(i,!0);!tt||Qe&&o===Ve&&r===Je||(Qe&&ot(),Qe=setInterval((function(){var i=R(document.elementFromPoint(o,r),!0);i!==a&&(a=i,nt()),it(e,n.options,i,t)}),10),Ve=o,Je=r)}else{if(!this.options.bubbleScroll||R(i,!0)===I())return void nt();it(e,this.options,R(i,!1),!1)}}},l(e,{pluginName:"scroll",initializeByDefault:!0})}),Xe.mount(st,lt);const xt=Xe},379:(e,t,n)=>{"use strict";n.r(t)},404:(e,t,n)=>{"use strict";n.r(t)},471:(e,t,n)=>{"use strict";n.r(t)},582:(e,t,n)=>{"use strict";n.r(t)},609:e=>{"use strict";e.exports=window.React},627:(e,t,n)=>{"use strict";n.r(t)},676:(e,t,n)=>{"use strict";n.r(t)},722:(e,t,n)=>{"use strict";n.r(t)},791:(e,t,n)=>{"use strict";n.r(t)},804:(e,t,n)=>{"use strict";n.r(t)},843:(e,t,n)=>{"use strict";n.r(t)},872:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var o=!0,r="Invariant failed";function i(e,t){if(!e){if(o)throw new Error(r);var n="function"==typeof t?t():t;throw new Error(n?r+": "+n:r)}}},884:(e,t,n)=>{"use strict";n.r(t)},885:(e,t,n)=>{"use strict";n.r(t)},971:(e,t,n)=>{"use strict";n.r(t)},980:(e,t,n)=>{"use strict";n.r(t)},998:(e,t,n)=>{var o=n(337),r=n(189),i=n(609),a=n(872);function l(e){return e&&e.__esModule?e.default:e}function s(e,t,n,o){Object.defineProperty(e,t,{get:n,set:o,enumerable:!0,configurable:!0})}function c(e){null!==e.parentElement&&e.parentElement.removeChild(e)}function u(e){e.forEach((e=>c(e.element)))}function d(e){e.forEach((e=>{!function(e,t,n){const o=e.children[n]||null;e.insertBefore(t,o)}(e.parentElement,e.element,e.oldIndex)}))}function p(e,t){const n=m(e),o={parentElement:e.from};let r=[];switch(n){case"normal":r=[{element:e.item,newIndex:e.newIndex,oldIndex:e.oldIndex,parentElement:e.from}];break;case"swap":r=[{element:e.item,oldIndex:e.oldIndex,newIndex:e.newIndex,...o},{element:e.swapItem,oldIndex:e.newIndex,newIndex:e.oldIndex,...o}];break;case"multidrag":r=e.oldIndicies.map(((t,n)=>({element:t.multiDragElement,oldIndex:t.index,newIndex:e.newIndicies[n].index,...o})))}const i=function(e,t){return e.map((e=>({...e,item:t[e.oldIndex]}))).sort(((e,t)=>e.oldIndex-t.oldIndex))}(r,t);return i}function h(e,t){const n=[...t];return e.concat().reverse().forEach((e=>n.splice(e.oldIndex,1))),n}function f(e,t,n,o){const r=[...t];return e.forEach((e=>{const t=o&&n&&o(e.item,n);r.splice(e.newIndex,0,t||e.item)})),r}function m(e){return e.oldIndicies&&e.oldIndicies.length>0?"multidrag":e.swapItem?"swap":"normal"}s(e.exports,"Sortable",(()=>$882b6d93070905b3$re_export$Sortable)),s(e.exports,"Direction",(()=>$882b6d93070905b3$re_export$Direction)),s(e.exports,"DOMRect",(()=>$882b6d93070905b3$re_export$DOMRect)),s(e.exports,"GroupOptions",(()=>$882b6d93070905b3$re_export$GroupOptions)),s(e.exports,"MoveEvent",(()=>$882b6d93070905b3$re_export$MoveEvent)),s(e.exports,"Options",(()=>$882b6d93070905b3$re_export$Options)),s(e.exports,"PullResult",(()=>$882b6d93070905b3$re_export$PullResult)),s(e.exports,"PutResult",(()=>$882b6d93070905b3$re_export$PutResult)),s(e.exports,"SortableEvent",(()=>$882b6d93070905b3$re_export$SortableEvent)),s(e.exports,"SortableOptions",(()=>$882b6d93070905b3$re_export$SortableOptions)),s(e.exports,"Utils",(()=>$882b6d93070905b3$re_export$Utils)),s(e.exports,"ReactSortable",(()=>v));const g={dragging:null};class v extends i.Component{static defaultProps={clone:e=>e};constructor(e){super(e),this.ref=(0,i.createRef)();const t=[...e.list].map((e=>Object.assign(e,{chosen:!1,selected:!1})));e.setList(t,this.sortable,g),l(a)(!e.plugins,'\nPlugins prop is no longer supported.\nInstead, mount it with "Sortable.mount(new MultiDrag())"\nPlease read the updated README.md at https://github.com/SortableJS/react-sortablejs.\n ')}componentDidMount(){if(null===this.ref.current)return;const e=this.makeOptions();l(o).create(this.ref.current,e)}componentDidUpdate(e){e.disabled!==this.props.disabled&&this.sortable&&this.sortable.option("disabled",this.props.disabled)}render(){const{tag:e,style:t,className:n,id:o}=this.props,r={style:t,className:n,id:o},a=e&&null!==e?e:"div";return(0,i.createElement)(a,{ref:this.ref,...r},this.getChildren())}getChildren(){const{children:e,dataIdAttr:t,selectedClass:n="sortable-selected",chosenClass:o="sortable-chosen",dragClass:a="sortable-drag",fallbackClass:s="sortable-falback",ghostClass:c="sortable-ghost",swapClass:u="sortable-swap-highlight",filter:d="sortable-filter",list:p}=this.props;if(!e||null==e)return null;const h=t||"data-id";return i.Children.map(e,((e,t)=>{if(void 0===e)return;const a=p[t]||{},{className:s}=e.props,c="string"==typeof d&&{[d.replace(".","")]:!!a.filtered},u=l(r)(s,{[n]:a.selected,[o]:a.chosen,...c});return(0,i.cloneElement)(e,{[h]:e.key,className:u})}))}get sortable(){const e=this.ref.current;if(null===e)return null;const t=Object.keys(e).find((e=>e.includes("Sortable")));return t?e[t]:null}makeOptions(){const e=function(e){const{list:t,setList:n,children:o,tag:r,style:i,className:a,clone:l,onAdd:s,onChange:c,onChoose:u,onClone:d,onEnd:p,onFilter:h,onRemove:f,onSort:m,onStart:g,onUnchoose:v,onUpdate:b,onMove:y,onSpill:w,onSelect:E,onDeselect:S,...x}=e;return x}(this.props);return["onAdd","onChoose","onDeselect","onEnd","onRemove","onSelect","onSpill","onStart","onUnchoose","onUpdate"].forEach((t=>e[t]=this.prepareOnHandlerPropAndDOM(t))),["onChange","onClone","onFilter","onSort"].forEach((t=>e[t]=this.prepareOnHandlerProp(t))),{...e,onMove:(e,t)=>{const{onMove:n}=this.props,o=e.willInsertAfter||-1;if(!n)return o;const r=n(e,t,this.sortable,g);return void 0!==r&&r}}}prepareOnHandlerPropAndDOM(e){return t=>{this.callOnHandlerProp(t,e),this[e](t)}}prepareOnHandlerProp(e){return t=>{this.callOnHandlerProp(t,e)}}callOnHandlerProp(e,t){const n=this.props[t];n&&n(e,this.sortable,g)}onAdd(e){const{list:t,setList:n,clone:o}=this.props,r=p(e,[...g.dragging.props.list]);u(r),n(f(r,t,e,o).map((e=>Object.assign(e,{selected:!1}))),this.sortable,g)}onRemove(e){const{list:t,setList:n}=this.props,o=m(e),r=p(e,t);d(r);let i=[...t];if("clone"!==e.pullMode)i=h(r,i);else{let t=r;switch(o){case"multidrag":t=r.map(((t,n)=>({...t,element:e.clones[n]})));break;case"normal":t=r.map((t=>({...t,element:e.clone})));break;default:l(a)(!0,`mode "${o}" cannot clone. Please remove "props.clone" from when using the "${o}" plugin`)}u(t),r.forEach((t=>{const n=t.oldIndex,o=this.props.clone(t.item,e);i.splice(n,1,o)}))}i=i.map((e=>Object.assign(e,{selected:!1}))),n(i,this.sortable,g)}onUpdate(e){const{list:t,setList:n}=this.props,o=p(e,t);return u(o),d(o),n(function(e,t){return f(e,h(e,t))}(o,t),this.sortable,g)}onStart(){g.dragging=this}onEnd(){g.dragging=null}onChoose(e){const{list:t,setList:n}=this.props;n(t.map(((t,n)=>{let o=t;return n===e.oldIndex&&(o=Object.assign(t,{chosen:!0})),o})),this.sortable,g)}onUnchoose(e){const{list:t,setList:n}=this.props;n(t.map(((t,n)=>{let o=t;return n===e.oldIndex&&(o=Object.assign(o,{chosen:!1})),o})),this.sortable,g)}onSpill(e){const{removeOnSpill:t,revertOnSpill:n}=this.props;t&&!n&&c(e.item)}onSelect(e){const{list:t,setList:n}=this.props,o=t.map((e=>Object.assign(e,{selected:!1})));e.newIndicies.forEach((t=>{const n=t.index;if(-1===n)return console.log(`"${e.type}" had indice of "${t.index}", which is probably -1 and doesn't usually happen here.`),void console.log(e);o[n].selected=!0})),n(o,this.sortable,g)}onDeselect(e){const{list:t,setList:n}=this.props,o=t.map((e=>Object.assign(e,{selected:!1})));e.newIndicies.forEach((e=>{const t=e.index;-1!==t&&(o[t].selected=!0)})),n(o,this.sortable,g)}}var b,y;b=e.exports,y={},Object.keys(y).forEach((function(e){"default"===e||"__esModule"===e||b.hasOwnProperty(e)||Object.defineProperty(b,e,{enumerable:!0,get:function(){return y[e]}})}))}},t={};function n(o){var r=t[o];if(void 0!==r)return r.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,n),i.exports}n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};(()=>{"use strict";function e(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}n.r(o),n.d(o,{ClearBaseControlStyle:()=>b,ControlWithErrorStyle:()=>S,FormLabeledTokenField:()=>X,Help:()=>m,IconText:()=>O,Label:()=>c,LabelWithActions:()=>f,ModalFooterStyle:()=>B,PopoverStandard:()=>W,RequiredLabel:()=>u,ResponsiveModal:()=>v,RowControl:()=>E,RowControlEnd:()=>T,RowControlEndStyle:()=>x,RowControlStart:()=>A,RowControlStartStyle:()=>d,Sortable:()=>g,StickyModalActions:()=>L,StyledButtonControl:()=>j,StyledCardBodyControl:()=>R,StyledComboboxControl:()=>N,StyledFlexControl:()=>M,StyledFormTokenFieldControl:()=>F,StyledSelectControl:()=>k,StyledTextControl:()=>P,TableListStyle:()=>Y,WideLine:()=>H,useTriggerPopover:()=>z});var t=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,r=e((function(e){return t.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),i=n(609),a=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)}))}));const o=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&o.push(t[e]);return o.push(...n),o.join(" ")},l=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach((t=>{n[t]=e[t]})),n},s=function(e){let t="";return n=>{const o=(o,s)=>{const{as:c=e,class:u=t}=o;var d;const p=function(e,t){const n=l(t,["as","class"]);if(!e){const e="function"==typeof r?{default:r}:r;Object.keys(n).forEach((t=>{e.default(t)||delete n[t]}))}return n}(void 0===n.propsAsIs?!("string"==typeof c&&-1===c.indexOf("-")&&(d=c[0],d.toUpperCase()!==d)):n.propsAsIs,o);p.ref=s,p.className=n.atomic?a(n.class,p.className||u):a(p.className||u,n.class);const{vars:h}=n;if(h){const e={};for(const t in h){const r=h[t],i=r[0],a=r[1]||"",l="function"==typeof i?i(o):i;n.name,e[`--${t}`]=`${l}${a}`}const t=p.style||{},r=Object.keys(t);r.length>0&&r.forEach((n=>{e[n]=t[n]})),p.style=e}return e.__wyw_meta&&e!==c?(p.as=c,(0,i.createElement)(e,p)):(0,i.createElement)(c,p)},s=i.forwardRef?(0,i.forwardRef)(o):e=>{const t=l(e,["innerRef"]);return o(t,e.innerRef)};return s.displayName=n.name,s.__wyw_meta={className:n.class||t,extends:e},s}};const c=s("label")({name:"Label",class:"lnj4cxf",propsAsIs:!1});n(250);const u=s(c)({name:"RequiredLabel",class:"rta9zu",propsAsIs:!0,vars:{"rta9zu-0":[({size:e=1.5})=>e+"em"]}});n(627);const d="r8cg2q0";n(471);const p=window.wp.components;function h({children:e,className:t,...n}){return(0,i.createElement)(p.Flex,{justify:"flex-start",className:a(d,t),...n},e)}const f=s(h)({name:"LabelWithActions",class:"lm6imcb",propsAsIs:!0});n(21);const m=s("p")({name:"Help",class:"h1u00eq1",propsAsIs:!1});n(2);const g=n(998).ReactSortable,v=s(p.Modal)({name:"ResponsiveModal",class:"rnqs1ii",propsAsIs:!0});n(582);const b="cswoqso";n(379);const y=window.wp.compose,w=window.wp.element,E=s((0,w.forwardRef)((function e({children:t,className:n,createId:o=!0,controlSize:r=3,...a},l){const s=(0,y.useInstanceId)(e,"jfb-control",o?"":"1");return(0,i.createElement)(p.Flex,{ref:l,className:[n,b].join(" "),gap:2,align:"flex-start",...a},"function"==typeof t?t({id:s}):t)})))({name:"RowControl",class:"rv9blu0",propsAsIs:!0,vars:{"rv9blu0-0":[({controlSize:e=3})=>e]}});n(722);const S="cuape64";n(55);const x="rxii470";n(980);const D=(0,w.forwardRef)((function({icon:e,size:t=24,...n},o){return(0,w.cloneElement)(e,{width:t,height:t,...n,ref:o})})),C=s(p.Flex)({name:"StyledFlex",class:"s82flgq",propsAsIs:!0}),_=(0,i.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none"},(0,i.createElement)("path",{d:"M12 16.99V17M12 7V14M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),O=function({children:e,icon:t,...n}){return(0,i.createElement)(C,{justify:"flex-start",...n},(0,i.createElement)(D,{size:24,icon:null!=t?t:_}),e)};n(885);const I=window.wp.i18n,T=function({children:e,hasError:t=!1,showDefaultNotice:n=!0,errorText:o="",className:r,...l}){const s=(0,I.__)("Please fill this required field","jet-form-builder");let c="";return o.length&&(c=(0,I.__)(o,"jet-form-builder")),(0,i.createElement)(p.Flex,{className:a(x,t&&S,r),direction:"column",...l},t&&n&&(0,i.createElement)(O,null,c.length?c:s),e)},A=function({className:e,...t}){return(0,i.createElement)("div",{className:a(e,d),...t})},k=s(p.SelectControl)({name:"StyledSelectControl",class:"s1c2yukw",propsAsIs:!0});n(791);const M=s(p.Flex)({name:"StyledFlexControl",class:"smynwlj",propsAsIs:!0});n(32);const P=s(p.TextControl)({name:"StyledTextControl",class:"sanpaay",propsAsIs:!0});n(676);const N=s(p.ComboboxControl)({name:"StyledComboboxControl",class:"s1ucdx31",propsAsIs:!0});n(804);const R=s(p.CardBody)({name:"StyledCardBodyControl",class:"s11rga5u",propsAsIs:!0});n(209);const j=s(p.Button)({name:"StyledButtonControl",class:"s1slln9b",propsAsIs:!0});n(971);const F=s(p.FormTokenField)({name:"StyledFormTokenFieldControl",class:"s1c0necn",propsAsIs:!0});n(22),n(843);const L=function({className:e="",...t}){return(0,i.createElement)(p.Flex,{justify:"flex-start",className:("sh0lqos "+e).trim(),...t})},B="madeb2s";n(884);const H=s("hr")({name:"WideLine",class:"w1m59y8q",propsAsIs:!1});n(156);const X=function({suggestions:e=[],value:t=[],valueProp:n="value",labelProp:o="label",__experimentalValidateInput:r=e=>!0,...a}){const[l,s]=(0,w.useMemo)((()=>{const t={},r={};for(const l of e){var i,a;const e=null!==(i=l[n])&&void 0!==i?i:"",s=null!==(a=l[o])&&void 0!==a?a:"";t[e]=s,r[s]=e}return[t,r]}),[]),c=(0,w.useMemo)((()=>e.map((e=>e[o]||"")).filter((e=>e&&!t.includes(s[e])))),[t]);return(0,i.createElement)(F,{displayTransform:e=>{var t;return null!==(t=l[e])&&void 0!==t?t:e},saveTransform:e=>{var t;return null!==(t=s[e])&&void 0!==t?t:e},suggestions:c,value:t,__experimentalValidateInput:e=>{var t;return r(null!==(t=s[e])&&void 0!==t?t:e)},...a})},Y={Container:"c5pz5n1",Wrap:"wmfgvut",Label:"l1hoyu1i",WhiteSpaceNormal:"w11rzgzd",Card:"cf32tkz",Th:"t8jbc7u",ThItem:"twa9inx",Td:"tkkz475",TdItem:"t1evp1yb"};function $(){const[e,t]=(0,w.useState)(!1),n=(0,w.useRef)(),o={anchor:n.current,onFocusOutside:e=>{e.relatedTarget!==n.current&&t(!1)},onClose:()=>t(!1)};return{ref:n,setShowPopover:t,showPopover:e,popoverProps:o}}n(404),window.JetFBHooks=window.JetFBHooks||{},window.JetFBHooks.useTriggerPopover=$;const z=$,W=s(p.Popover)({name:"PopoverStandard",class:"pp9mjqr",propsAsIs:!0});n(8)})(),(window.jfb=window.jfb||{}).components=o})(); \ No newline at end of file diff --git a/modules/data/assets/build/index.asset.php b/modules/data/assets/build/index.asset.php index 7610bf74a..5163dbd08 100644 --- a/modules/data/assets/build/index.asset.php +++ b/modules/data/assets/build/index.asset.php @@ -1 +1 @@ - array('wp-data', 'wp-element'), 'version' => '403b6777deec009f4a5b'); + array('wp-data', 'wp-element'), 'version' => '529b7b528fdf9550dad9'); diff --git a/modules/data/assets/build/index.js b/modules/data/assets/build/index.js index 9ec8636c4..85a0a8814 100644 --- a/modules/data/assets/build/index.js +++ b/modules/data/assets/build/index.js @@ -1 +1 @@ -(()=>{"use strict";var e={d:(t,o)=>{for(var n in o)e.o(o,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:o[n]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{useMetaState:()=>c,useSiteOption:()=>n,useSiteOptionJSON:()=>i});const o=window.wp.data,n=function(e){const{editEntityRecord:t}=(0,o.useDispatch)("core"),{setting:n,isResolving:i}=(0,o.useSelect)(t=>({setting:t("core").getEditedEntityRecord("root","site")[e],isResolving:t("core").isResolving("getEditedEntityRecord",["root","site"])}),[e]);return{value:n,onChange:o=>{i||t("root","site",void 0,{[e]:o})},isResolving:i}},i=function(e){const{value:t,onChange:o,...i}=n(e);return{value:i.isResolving?{}:t?JSON.parse(t):{},onChange:e=>o(JSON.stringify({...e})),...i}},r=window.wp.element;var s;function u(e,t="{}",n=[]){const i=(0,o.useSelect)(o=>(o("core/editor").getEditedPostAttribute("meta")||{})[e]||t,n),s=(0,r.useRef)(null),u=(0,r.useRef)(null),c=(0,r.useMemo)(()=>{if(u.current===i)return s.current;const e=JSON.parse(i);return s.current=e,u.current=i,e},[i]),{editPost:d}=(0,o.useDispatch)("core/editor");return[c,o=>{let n="function"==typeof o?o(c):o;"object"==typeof n&&null!==n||(n=JSON.parse(t)),d({meta:{[e]:JSON.stringify(n)}})}]}window.JetFBHooks=null!==(s=window.JetFBHooks)&&void 0!==s?s:{},window.JetFBHooks.useMetaState=u;const c=u;(window.jfb=window.jfb||{}).data=t})(); \ No newline at end of file +(()=>{"use strict";var e={d:(t,o)=>{for(var n in o)e.o(o,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:o[n]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{useMetaState:()=>c,useSiteOption:()=>n,useSiteOptionJSON:()=>i});const o=window.wp.data,n=function(e){const{editEntityRecord:t}=(0,o.useDispatch)("core"),{setting:n,isResolving:i}=(0,o.useSelect)((t=>({setting:t("core").getEditedEntityRecord("root","site")[e],isResolving:t("core").isResolving("getEditedEntityRecord",["root","site"])})),[e]);return{value:n,onChange:o=>{i||t("root","site",void 0,{[e]:o})},isResolving:i}},i=function(e){const{value:t,onChange:o,...i}=n(e);return{value:i.isResolving?{}:t?JSON.parse(t):{},onChange:e=>o(JSON.stringify({...e})),...i}},r=window.wp.element;var s;function u(e,t="{}",n=[]){const i=(0,o.useSelect)((o=>(o("core/editor").getEditedPostAttribute("meta")||{})[e]||t),n),s=(0,r.useRef)(null),u=(0,r.useRef)(null),c=(0,r.useMemo)((()=>{if(u.current===i)return s.current;const e=JSON.parse(i);return s.current=e,u.current=i,e}),[i]),{editPost:d}=(0,o.useDispatch)("core/editor");return[c,o=>{let n="function"==typeof o?o(c):o;"object"==typeof n&&null!==n||(n=JSON.parse(t)),d({meta:{[e]:JSON.stringify(n)}})}]}window.JetFBHooks=null!==(s=window.JetFBHooks)&&void 0!==s?s:{},window.JetFBHooks.useMetaState=u;const c=u;(window.jfb=window.jfb||{}).data=t})(); \ No newline at end of file diff --git a/modules/form-record/assets/build/admin/pages/jfb-records-single.asset.php b/modules/form-record/assets/build/admin/pages/jfb-records-single.asset.php index 434745c4b..235ae2f70 100644 --- a/modules/form-record/assets/build/admin/pages/jfb-records-single.asset.php +++ b/modules/form-record/assets/build/admin/pages/jfb-records-single.asset.php @@ -1 +1 @@ - array(), 'version' => '4dacbdc1fed80f6ecc84'); + array(), 'version' => 'd6ac79545e3e5d8d063e'); diff --git a/modules/form-record/assets/build/admin/pages/jfb-records-single.js b/modules/form-record/assets/build/admin/pages/jfb-records-single.js index 949e318a1..de7ba5bed 100644 --- a/modules/form-record/assets/build/admin/pages/jfb-records-single.js +++ b/modules/form-record/assets/build/admin/pages/jfb-records-single.js @@ -1 +1 @@ -(()=>{var e={979(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(168),a=n.n(r),o=n(814),s=n.n(o)()(a());s.push([e.id,"#form-fields-wrapper .jfb-pagination{padding:.8em 0}#form-fields-wrapper .cell--field_type{flex:.3}#form-fields-wrapper .cell--name{flex:.5}#actions-log .cell--created_at{flex:.5}@media print{div#wpadminbar,div#adminmenumain,.wrap>*:not(h1.wp-heading-inline,.jet-form-builder-page #poststuff),.jfb-post-box,.jfb-pagination{display:none}div#wpcontent{margin-left:unset;margin-right:unset}html.wp-toolbar{padding-top:unset}#form-fields-wrapper,#general-values-wrapper{display:block}}",""]);const i=s},126(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(168),a=n.n(r),o=n(814),s=n.n(o)()(a());s.push([e.id,".field-type-template--icon>svg{width:24px;height:24px}",""]);const i=s},997(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(168),a=n.n(r),o=n(814),s=n.n(o)()(a());s.push([e.id,"\n.field-name-template {\n\tdisplay: flex;\n\tgap: 0.5em;\n\tflex-direction: column;\n}\n",""]);const i=s},814(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n}).join("")},t.i=function(e,n,r,a,o){"string"==typeof e&&(e=[[null,e,void 0]]);var s={};if(r)for(var i=0;i0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=o),n&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=n):c[2]=n),a&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=a):c[4]="".concat(a)),t.push(c))}},t}},168(e){"use strict";e.exports=function(e){return e[1]}},657(e,t,n){var r=n(979);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(233).A)("21d21dfd",r,!1,{})},276(e,t,n){var r=n(126);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(233).A)("4a3f156a",r,!1,{})},99(e,t,n){var r=n(997);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(233).A)("9680ebce",r,!1,{})},233(e,t,n){"use strict";function r(e,t){for(var n=[],r={},a=0;am});var a="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!a)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},s=a&&(document.head||document.getElementsByTagName("head")[0]),i=null,l=0,d=!1,c=function(){},u=null,p="data-vue-ssr-id",f="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function m(e,t,n,a){d=n,u=a||{};var s=r(e,t);return v(s),function(t){for(var n=[],a=0;an.parts.length&&(r.parts.length=n.parts.length)}else{var s=[];for(a=0;a{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("FormBuilderPage",[n("AlertsList"),e._v(" "),n("PostBoxGrid",{scopedSlots:e._u([{key:"after-form-fields",fn:function(){return[n("TablePagination",{attrs:{scope:"form-fields"}})]},proxy:!0},{key:"after-user-journey",fn:function(){return[n("TablePagination",{attrs:{scope:"user-journey"}})]},proxy:!0}])})],1)};e._withStripped=!0;const{PostBoxGrid:t,TablePagination:r,FormBuilderPage:a,AlertsList:o}=JetFBComponents,{PromiseWrapper:s}=JetFBMixins,{apiFetch:i}=wp,l={name:"jfb-records-single",components:{AlertsList:o,PostBoxGrid:t,TablePagination:r,FormBuilderPage:a},mixins:[s],created(){jfbEventBus.$on("alert-click-update",({button:e})=>{this.installMigrations(e)})},methods:{installMigrations(e){const{rest:t}=e;i(t).then(e=>{jfbEventBus.$CXNotice.add({message:e.message,type:"success",duration:4e3}),window.location.reload()}).catch(e=>{jfbEventBus.$CXNotice.add({message:e.message,type:"error",duration:4e3})})}}};function d(e,t,n,r,a,o,s,i){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),o&&(d._scopeId="data-v-"+o),s?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),a&&a.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(s)},d._ssrRegister=l):a&&(l=i?function(){a.call(this,(d.functional?this.parent:this).$root.$options.shadowRoot)}:a),l)if(d.functional){d._injectStyles=l;var c=d.render;d.render=function(e,t){return l.call(t),c(e,t)}}else{var u=d.beforeCreate;d.beforeCreate=u?[].concat(u,l):[l]}return{exports:e,options:d}}n(657);const c=d(l,e,[],!1,null,null,null).exports;var u=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{staticClass:"field-type-template"},[n("span",{staticClass:"field-type-template--icon",attrs:{title:e.value.title},domProps:{innerHTML:e._s(e.value.icon)}})])};u._withStripped=!0;n(276);const p={item:d({name:"field_type--item",props:["value","full-entry","entry-id"]},u,[],!1,null,null,null).exports};var f=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"field-name-template"},[e.value.label?n("span",{staticClass:"field-name-template--label"},[n("b",[e._v(e._s(e.value.label))])]):e._e(),e._v(" "),n("span",{staticClass:"field-name-template--name"},[n("code",[e._v(e._s(e.value.name))])])])};f._withStripped=!0;n(99);const m={item:d({name:"name--item",props:["value","full-entry","entry-id"]},f,[],!1,null,null,null).exports},{addFilter:v}=wp.hooks;v("jet.fb.admin.table.form-fields","jet-form-builder",e=>(e.push(p,m),e));const{BaseStore:h,SingleMetaBoxesPlugin:g,NoticesPlugin:y}=JetFBStore,{renderCurrentPage:_}=window.JetFBActions;_(c,{store:new Vuex.Store({...h,plugins:[g,y]})})})()})(); \ No newline at end of file +(()=>{var e={99:(e,t,n)=>{var r=n(997);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(233).A)("9680ebce",r,!1,{})},126:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(168),a=n.n(r),o=n(814),s=n.n(o)()(a());s.push([e.id,".field-type-template--icon>svg{width:24px;height:24px}",""]);const i=s},168:e=>{"use strict";e.exports=function(e){return e[1]}},233:(e,t,n)=>{"use strict";function r(e,t){for(var n=[],r={},a=0;am});var a="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!a)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},s=a&&(document.head||document.getElementsByTagName("head")[0]),i=null,l=0,d=!1,c=function(){},u=null,p="data-vue-ssr-id",f="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function m(e,t,n,a){d=n,u=a||{};var s=r(e,t);return v(s),function(t){for(var n=[],a=0;an.parts.length&&(r.parts.length=n.parts.length)}else{var s=[];for(a=0;a{var r=n(126);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(233).A)("4a3f156a",r,!1,{})},657:(e,t,n)=>{var r=n(979);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(233).A)("21d21dfd",r,!1,{})},814:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,r,a,o){"string"==typeof e&&(e=[[null,e,void 0]]);var s={};if(r)for(var i=0;i0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=o),n&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=n):c[2]=n),a&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=a):c[4]="".concat(a)),t.push(c))}},t}},979:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(168),a=n.n(r),o=n(814),s=n.n(o)()(a());s.push([e.id,"#form-fields-wrapper .jfb-pagination{padding:.8em 0}#form-fields-wrapper .cell--field_type{flex:.3}#form-fields-wrapper .cell--name{flex:.5}#actions-log .cell--created_at{flex:.5}@media print{div#wpadminbar,div#adminmenumain,.wrap>*:not(h1.wp-heading-inline,.jet-form-builder-page #poststuff),.jfb-post-box,.jfb-pagination{display:none}div#wpcontent{margin-left:unset;margin-right:unset}html.wp-toolbar{padding-top:unset}#form-fields-wrapper,#general-values-wrapper{display:block}}",""]);const i=s},997:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(168),a=n.n(r),o=n(814),s=n.n(o)()(a());s.push([e.id,"\n.field-name-template {\n\tdisplay: flex;\n\tgap: 0.5em;\n\tflex-direction: column;\n}\n",""]);const i=s}},t={};function n(r){var a=t[r];if(void 0!==a)return a.exports;var o=t[r]={id:r,exports:{}};return e[r](o,o.exports,n),o.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("FormBuilderPage",[n("AlertsList"),e._v(" "),n("PostBoxGrid",{scopedSlots:e._u([{key:"after-form-fields",fn:function(){return[n("TablePagination",{attrs:{scope:"form-fields"}})]},proxy:!0},{key:"after-user-journey",fn:function(){return[n("TablePagination",{attrs:{scope:"user-journey"}})]},proxy:!0}])})],1)};e._withStripped=!0;const{PostBoxGrid:t,TablePagination:r,FormBuilderPage:a,AlertsList:o}=JetFBComponents,{PromiseWrapper:s}=JetFBMixins,{apiFetch:i}=wp,l={name:"jfb-records-single",components:{AlertsList:o,PostBoxGrid:t,TablePagination:r,FormBuilderPage:a},mixins:[s],created(){jfbEventBus.$on("alert-click-update",(({button:e})=>{this.installMigrations(e)}))},methods:{installMigrations(e){const{rest:t}=e;i(t).then((e=>{jfbEventBus.$CXNotice.add({message:e.message,type:"success",duration:4e3}),window.location.reload()})).catch((e=>{jfbEventBus.$CXNotice.add({message:e.message,type:"error",duration:4e3})}))}}};function d(e,t,n,r,a,o,s,i){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),o&&(d._scopeId="data-v-"+o),s?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),a&&a.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(s)},d._ssrRegister=l):a&&(l=i?function(){a.call(this,(d.functional?this.parent:this).$root.$options.shadowRoot)}:a),l)if(d.functional){d._injectStyles=l;var c=d.render;d.render=function(e,t){return l.call(t),c(e,t)}}else{var u=d.beforeCreate;d.beforeCreate=u?[].concat(u,l):[l]}return{exports:e,options:d}}n(657);const c=d(l,e,[],!1,null,null,null).exports;var u=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",{staticClass:"field-type-template"},[n("span",{staticClass:"field-type-template--icon",attrs:{title:e.value.title},domProps:{innerHTML:e._s(e.value.icon)}})])};u._withStripped=!0;n(276);const p={item:d({name:"field_type--item",props:["value","full-entry","entry-id"]},u,[],!1,null,null,null).exports};var f=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"field-name-template"},[e.value.label?n("span",{staticClass:"field-name-template--label"},[n("b",[e._v(e._s(e.value.label))])]):e._e(),e._v(" "),n("span",{staticClass:"field-name-template--name"},[n("code",[e._v(e._s(e.value.name))])])])};f._withStripped=!0;n(99);const m={item:d({name:"name--item",props:["value","full-entry","entry-id"]},f,[],!1,null,null,null).exports},{addFilter:v}=wp.hooks;v("jet.fb.admin.table.form-fields","jet-form-builder",(e=>(e.push(p,m),e)));const{BaseStore:h,SingleMetaBoxesPlugin:g,NoticesPlugin:y}=JetFBStore,{renderCurrentPage:_}=window.JetFBActions;_(c,{store:new Vuex.Store({...h,plugins:[g,y]})})})()})(); \ No newline at end of file diff --git a/modules/form-record/assets/build/admin/pages/jfb-records.asset.php b/modules/form-record/assets/build/admin/pages/jfb-records.asset.php index 179cc9c13..6968440b4 100644 --- a/modules/form-record/assets/build/admin/pages/jfb-records.asset.php +++ b/modules/form-record/assets/build/admin/pages/jfb-records.asset.php @@ -1 +1 @@ - array(), 'version' => '0ee09576839fe3276356'); + array(), 'version' => '9320e2e8fb84b6ea8847'); diff --git a/modules/form-record/assets/build/admin/pages/jfb-records.js b/modules/form-record/assets/build/admin/pages/jfb-records.js index d52a42f3e..bbeb694ad 100644 --- a/modules/form-record/assets/build/admin/pages/jfb-records.js +++ b/modules/form-record/assets/build/admin/pages/jfb-records.js @@ -1 +1 @@ -(()=>{var e={323(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>l});var s=r(168),n=r.n(s),o=r(814),i=r.n(o)()(n());i.push([e.id,".cx-vue-list-table .list-table-item--not-viewed{background-color:#f7fdff}",""]);const l=i},977(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>l});var s=r(168),n=r.n(s),o=r(814),i=r.n(o)()(n());i.push([e.id,".jfb-dates-wrapper{display:flex;gap:1em}.cx-vui-popup.export-popup .cx-vui-popup__body{width:65vw}.cx-vui-popup.export-popup .cx-vui-popup__footer{justify-content:space-between}.cx-vui-popup.export-popup .footer-counter{display:flex;gap:1em}",""]);const l=i},740(e,t,r){"use strict";r.r(t),r.d(t,{default:()=>l});var s=r(168),n=r.n(s),o=r(814),i=r.n(o)()(n());i.push([e.id,".wrapper[data-v-0424b051]{display:flex;gap:1em;align-items:center}",""]);const l=i},814(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var r="",s=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),s&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),s&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r}).join("")},t.i=function(e,r,s,n,o){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(s)for(var l=0;l0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=o),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),n&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=n):d[4]="".concat(n)),t.push(d))}},t}},168(e){"use strict";e.exports=function(e){return e[1]}},293(e,t,r){var s=r(323);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[e.id,s,""]]),s.locals&&(e.exports=s.locals),(0,r(233).A)("7c3c32d4",s,!1,{})},79(e,t,r){var s=r(977);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[e.id,s,""]]),s.locals&&(e.exports=s.locals),(0,r(233).A)("2cca456e",s,!1,{})},806(e,t,r){var s=r(740);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[e.id,s,""]]),s.locals&&(e.exports=s.locals),(0,r(233).A)("547b2aec",s,!1,{})},233(e,t,r){"use strict";function s(e,t){for(var r=[],s={},n=0;nm});var n="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!n)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},i=n&&(document.head||document.getElementsByTagName("head")[0]),l=null,a=0,u=!1,d=function(){},c=null,p="data-vue-ssr-id",f="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function m(e,t,r,n){u=r,c=n||{};var i=s(e,t);return v(i),function(t){for(var r=[],n=0;nr.parts.length&&(s.parts.length=r.parts.length)}else{var i=[];for(n=0;n{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var s in t)r.o(t,s)&&!r.o(e,s)&&Object.defineProperty(e,s,{enumerable:!0,get:t[s]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("FormBuilderPage",{attrs:{title:e.__("JetFormBuilder Form Records","jet-form-builder")},scopedSlots:e._u([{key:"heading-after",fn:function(){return[r("ExportEntriesButton")]},proxy:!0}])},[e._v(" "),r("ActionsWithFilters",{scopedSlots:e._u([{key:"filters",fn:function(){return[r("FormFilter"),e._v(" "),r("StatusFilter"),e._v(" "),r("DatesFilter")]},proxy:!0},{key:"buttons",fn:function(){return[r("ClearFiltersButton")]},proxy:!0}])}),e._v(" "),r("TablePagination"),e._v(" "),r("EntriesTable"),e._v(" "),r("TablePagination")],1)};e._withStripped=!0;var t=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("CxVuiSelect",{attrs:{value:e.filter.selected},on:{input:e.onChangeFilter}},[r("option",{attrs:{value:""}},[e._v(e._s(e.__("All forms","jet-form-builder")))]),e._v(" "),e._l(e.filter.options||[],function(t){return r("option",{domProps:{value:t.value}},[e._v("\n\t\t"+e._s(t.label)+"\n\t")])})],2)};t._withStripped=!0;const{mapState:s,mapGetters:n,mapMutations:o,mapActions:i}=Vuex,{FilterMixin:l,i18n:a}=JetFBMixins,{ColumnWrapper:u,CxVuiSelect:d}=JetFBComponents;function c(e,t,r,s,n,o,i,l){var a,u="function"==typeof e?e.options:e;if(t&&(u.render=t,u.staticRenderFns=r,u._compiled=!0),s&&(u.functional=!0),o&&(u._scopeId="data-v-"+o),i?(a=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},u._ssrRegister=a):n&&(a=l?function(){n.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:n),a)if(u.functional){u._injectStyles=a;var d=u.render;u.render=function(e,t){return a.call(t),d(e,t)}}else{var c=u.beforeCreate;u.beforeCreate=c?[].concat(c,a):[a]}return{exports:e,options:u}}const p=c({name:"FormFilter",components:{ColumnWrapper:u,CxVuiSelect:d},data:()=>({filter_id:"form"}),mixins:[l,a]},t,[],!1,null,null,null).exports;var f=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",{staticStyle:{display:"inline-block"}},[r("cx-vui-button",{attrs:{"button-style":"link-accent",size:"mini"},on:{click:e.onClick},scopedSlots:e._u([{key:"label",fn:function(){return[r("span",{staticClass:"dashicons dashicons-database-export"}),e._v("\n\t\t\t"+e._s(e.__("Export","jet-form-builder"))+"\n\t\t")]},proxy:!0}])}),e._v(" "),e.showPopup?r("CxVuiPopup",{attrs:{"class-names":{"export-popup":!0,"sticky-footer":!0}},on:{close:function(t){e.showPopup=!1}},scopedSlots:e._u([{key:"title",fn:function(){return[e._v(e._s(e.__("1. Select Form:","jet-form-builder")))]},proxy:!0},{key:"content",fn:function(){return[r("RowWrapper",{attrs:{"element-id":"form","class-names":{"size--1-x-2":!0,"padding-side-unset":!0}},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Choose form","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[r("CxVuiSelect",{attrs:{value:e.selectedForm,"class-names":{fullwidth:!0}},on:{input:e.setForm}},[r("option",{attrs:{disabled:"",value:""}},[e._v("\n\t\t\t\t\t\t\t"+e._s(e.__("You need to select form","jet-form-builder"))+"\n\t\t\t\t\t\t")]),e._v(" "),e._l(e.formFilter.options||[],function(t){return r("option",{domProps:{value:t.value}},[e._v("\n\t\t\t\t\t\t\t"+e._s(t.label)+"\n\t\t\t\t\t\t")])})],2)]},proxy:!0}],null,!1,1377539951)}),e._v(" "),e.selectedForm?[r("h3",[e._v(e._s(e.__("2. Select data to export:","jet-form-builder")))]),e._v(" "),r("Delimiter"),e._v(" "),r("RowWrapper",{attrs:{"element-id":"fields","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:e.fieldState},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Choose fields","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[r("CxVuiFSelect",{attrs:{"options-list":e.currentFields,multiple:!0,value:e.selectedFields,placeholder:e.placeholder,disabled:e.isLoading("fields")||1===e.currentFields.length},on:{change:e.updateSelectedFields}})]},proxy:!0},{key:"actions",fn:function(){return[r("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:e.currentFieldsValues.length===e.selectedFields.length},on:{click:e.selectAllFields},scopedSlots:e._u([{key:"label",fn:function(){return[e._v("\n\t\t\t\t\t\t\t\t"+e._s(e.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t\t")]},proxy:!0}],null,!1,1960295587)}),e._v(" "),r("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!e.selectedFields.length},on:{click:e.clearAllFields},scopedSlots:e._u([{key:"label",fn:function(){return[e._v("\n\t\t\t\t\t\t\t\t"+e._s(e.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t\t")]},proxy:!0}],null,!1,860686534)})]},proxy:!0}],null,!1,3370655477)}),e._v(" "),r("Delimiter"),e._v(" "),r("RowWrapper",{attrs:{"element-id":"extra","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:e.extraState},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Additional information","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[r("CxVuiFSelect",{attrs:{"wrapper-css":["jfb-padding-b-unset"],"options-list":e.extra,multiple:!0,value:e.selectedExtra},on:{change:e.updateSelectedExtra}})]},proxy:!0},{key:"actions",fn:function(){return[r("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:e.extraValues.length===e.selectedExtra.length},on:{click:e.selectAllExtra},scopedSlots:e._u([{key:"label",fn:function(){return[e._v("\n\t\t\t\t\t\t\t\t"+e._s(e.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t\t")]},proxy:!0}],null,!1,1960295587)}),e._v(" "),r("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!e.removableSelectedExtra.length},on:{click:e.clearAllExtra},scopedSlots:e._u([{key:"label",fn:function(){return[e._v("\n\t\t\t\t\t\t\t\t"+e._s(e.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t\t")]},proxy:!0}],null,!1,860686534)})]},proxy:!0}],null,!1,1796410779)}),e._v(" "),r("h3",[e._v(e._s(e.__("3. Filter records:","jet-form-builder")))]),e._v(" "),r("Delimiter"),e._v(" "),r("RowWrapper",{attrs:{"element-id":"status","class-names":{"size--1-x-2":!0,"padding-side-unset":!0}},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Status","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[r("CxVuiSelect",{attrs:{value:e.status,"class-names":{fullwidth:!0}},on:{input:e.setStatus}},e._l(e.statusFilter.options,function(t){return r("option",{domProps:{value:t.value}},[e._v("\n\t\t\t\t\t\t\t\t"+e._s(t.label)+"\n\t\t\t\t\t\t\t")])}),0)]},proxy:!0}],null,!1,427993892)}),e._v(" "),r("Delimiter"),e._v(" "),r("div",{staticClass:"jfb-dates-wrapper"},[r("ColumnWrapper",{attrs:{"element-id":"date_from","class-names":{"padding-side-unset":!0}},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Date from","jet-form-builder")))]},proxy:!0}],null,!1,1592935509)},[e._v(" "),r("CxVuiDate",{attrs:{value:e.dateFrom,"max-date":"now"},on:{input:e.setDateFrom}})],1),e._v(" "),r("ColumnWrapper",{attrs:{"element-id":"date_to","class-names":{"padding-side-unset":!0}},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Date to","jet-form-builder")))]},proxy:!0}],null,!1,1583817400)},[e._v(" "),r("CxVuiDate",{attrs:{value:e.dateTo,"max-date":"now"},on:{input:e.setDateTo}})],1)],1)]:e._e()]},proxy:!0},{key:"footer",fn:function(){return[r("div",{staticClass:"footer-buttons"},[r("cx-vui-button",{attrs:{"button-style":"accent",size:"mini",disabled:!e.canBeExported},on:{click:e.startExport},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Export","jet-form-builder")))]},proxy:!0}],null,!1,2420192243)}),e._v(" "),r("cx-vui-button",{attrs:{size:"mini"},on:{click:function(t){e.showPopup=!1}},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Cancel","jet-form-builder")))]},proxy:!0}],null,!1,298029969)})],1),e._v(" "),r("div",{staticClass:"footer-counter"},[r("div",{staticClass:"footer-counter--message"},[e._v("\n\t\t\t\t\t"+e._s(e.countMessage)+"\n\t\t\t\t")]),e._v(" "),r("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:e.isLoading("count"),loading:e.isLoading("count")},on:{click:e.onClickUpdateCount},scopedSlots:e._u([{key:"label",fn:function(){return[e._v("\n\t\t\t\t\t\t"+e._s(e.__("Update","jet-form-builder"))+"\n\t\t\t\t\t")]},proxy:!0}],null,!1,168407598)})],1)]},proxy:!0}],null,!1,4224920487)}):e._e()],1)};f._withStripped=!0;const{__:m,sprintf:v}=wp.i18n,{i18n:_,ScopeStoreMixin:x,GetIncoming:h}=JetFBMixins,{mapState:b,mapGetters:g,mapMutations:F,mapActions:y}=Vuex,{RowWrapper:C,ColumnWrapper:S,CxVuiPopup:w,CxVuiFSelect:E,CxVuiDate:j,Delimiter:k,CxVuiSelect:B}=JetFBComponents,{export_url:A}=window.JetFBPageConfig,{addQueryArgs:P}=JetFBActions,D={name:"ExportEntriesButton",components:{RowWrapper:C,ColumnWrapper:S,CxVuiPopup:w,CxVuiFSelect:E,CxVuiDate:j,Delimiter:k,CxVuiSelect:B},props:{label:{type:String}},data:()=>({showPopup:!1}),mixins:[x,_],computed:{...g(["export/selectedForm","export/currentFields","export/selectedFields","export/isLoading","export/currentFieldsValues","export/extra","export/extraValues","export/selectedExtra","export/statusesList","export/status","export/dateFrom","export/dateTo","export/removableSelectedExtra","export/filtersObj","export/count"]),formFilter(){return this.getter("getFilter","form")},statusFilter(){return this.getter("getFilter","status")},currentFields(){return jfbEventBus.reactiveCounter,this["export/currentFields"]},selectedFields(){var e;return jfbEventBus.reactiveCounter,null!==(e=this["export/selectedFields"])&&void 0!==e?e:[]},selectedForm(){var e;return jfbEventBus.reactiveCounter,null!==(e=this["export/selectedForm"])&&void 0!==e?e:""},currentFieldsValues(){return jfbEventBus.reactiveCounter,this["export/currentFieldsValues"]},placeholder(){return this.selectedFields.length>0?"":m("Please select one or many fields","jet-form-builder")},extra(){return jfbEventBus.reactiveCounter,this["export/extra"]},extraValues(){return jfbEventBus.reactiveCounter,this["export/extraValues"]},selectedExtra(){return jfbEventBus.reactiveCounter,this["export/selectedExtra"]},status(){return jfbEventBus.reactiveCounter,this["export/status"]},statusesList(){return jfbEventBus.reactiveCounter,this["export/statusesList"]},dateFrom(){return jfbEventBus.reactiveCounter,this["export/dateFrom"]},dateTo(){return jfbEventBus.reactiveCounter,this["export/dateTo"]},removableSelectedExtra(){return jfbEventBus.reactiveCounter,this["export/removableSelectedExtra"]},countMessage(){return v(m("%d items can be exported","jet-form-builder"),this.count)},count(){return jfbEventBus.reactiveCounter,this["export/count"]},isEmptyProperties(){return!this.selectedFields?.length&&!this.selectedExtra?.length},canBeExported(){return this.selectedForm&&!this.isLoading()&&!this.isEmptyProperties&&this.count>0},fieldState(){return this.isLoading("fields")?{type:"loading",message:m("Loading...","jet-form-builder")}:this.isEmptyProperties?{type:"warning-danger",message:m("Please fill this field","jet-form-builder")}:""},extraState(){return this.isEmptyProperties?{type:"warning-danger",message:m("Please fill this field","jet-form-builder")}:""},filtersObj(){return jfbEventBus.reactiveCounter,this["export/filtersObj"]},iframeSrc(){return P({fields:this.selectedFields,extra:this.selectedExtra,filters:this.filtersObj},A)}},methods:{...F("export",["setForm","updateSelectedFields","updateSelectedExtra","setStatus","setDateFrom","setDateTo"]),...y("export",["resolveFields","selectAllFields","clearAllFields","selectAllExtra","clearAllExtra","resolveCount"]),onClick(){this.showPopup=!0,this.resolveFields()},onClickUpdateCount(){this.resolveCount()},startExport(){window.location=this.iframeSrc},isLoading(e){return this["export/isLoading"](e)}}};r(79);const V=c(D,f,[],!1,null,null,null).exports;var T=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",{staticClass:"wrapper"},[r("DateFromFilter"),e._v("\n\t—\n\t"),r("DateToFilter")],1)};T._withStripped=!0;var M=function(){var e=this,t=e.$createElement;return(e._self._c||t)("input",{staticClass:"cx-vui-input size-fullwidth",attrs:{type:"date",max:e.now},domProps:{value:e.filter.selected},on:{input:function(t){return e.onChangeFilter(t.target.value)}}})};M._withStripped=!0;const{ColumnWrapper:N}=JetFBComponents,{i18n:L,FilterMixin:W}=JetFBMixins;let O=new Date(Date.now()-864e4).toJSON();[O]=O.split("T");const J=c({name:"DateFromFilter",components:{ColumnWrapper:N},data:()=>({filter_id:"date_from",now:O}),mixins:[L,W]},M,[],!1,null,null,null).exports;var R=function(){var e=this,t=e.$createElement;return(e._self._c||t)("input",{staticClass:"cx-vui-input size-fullwidth",attrs:{type:"date",max:e.now},domProps:{value:e.filter.selected},on:{input:function(t){return e.onChangeFilter(t.target.value)}}})};R._withStripped=!0;const{RowWrapper:U,ColumnWrapper:z}=JetFBComponents,{i18n:I,FilterMixin:$}=JetFBMixins;let G=new Date(Date.now()-864e4).toJSON();[G]=G.split("T");const Q={name:"DatesFilter",components:{DateToFilter:c({name:"DateToFilter",components:{ColumnWrapper:z},data:()=>({filter_id:"date_to",now:G}),mixins:[I,$]},R,[],!1,null,null,null).exports,DateFromFilter:J}};r(806);const X=c(Q,T,[],!1,null,"0424b051",null).exports;var q=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("CxVuiSelect",{attrs:{value:e.filter.selected},on:{input:e.onChangeFilter}},e._l(e.filter.options||[],function(t){return r("option",{domProps:{value:t.value}},[e._v("\n\t\t"+e._s(t.label)+"\n\t")])}),0)};q._withStripped=!0;const{__:H}=wp.i18n,{mapState:K,mapGetters:Y,mapMutations:Z,mapActions:ee}=Vuex,{FilterMixin:te,i18n:re}=JetFBMixins,{ColumnWrapper:se,CxVuiSelect:ne}=JetFBComponents,oe=c({name:"StatusFilter",components:{ColumnWrapper:se,CxVuiSelect:ne},data:()=>({filter_id:"status"}),created(){this.setCurrentFilter({options:[{value:"",label:H("All statuses","jet-form-builder")},{value:"success",label:H("Only successful ones","jet-form-builder")},{value:"failed",label:H("Only failed ones","jet-form-builder")}]})},mixins:[te,re]},q,[],!1,null,null,null).exports,{TablePagination:ie,EntriesTable:le,FormBuilderPage:ae,ActionsWithFilters:ue,ClearFiltersButton:de}=JetFBComponents,{i18n:ce,PromiseWrapper:pe}=JetFBMixins,{CHOOSE_ACTION:fe,CLICK_ACTION:me}=JetFBConst,{apiFetch:ve}=wp,{mapMutations:_e,mapState:xe,mapActions:he,mapGetters:be}=Vuex,ge={name:"jfb-records",components:{StatusFilter:oe,DatesFilter:X,TablePagination:ie,EntriesTable:le,ActionsWithFilters:ue,FormBuilderPage:ae,FormFilter:p,ClearFiltersButton:de,ExportEntriesButton:V},mixins:[ce,pe],created(){this.setActionPromises({action:"delete",promise:this.promiseWrapper(this.deleteAction.bind(this))}),this.setActionPromises({action:"mark_viewed",promise:this.promiseWrapper(this.viewAction.bind(this))}),this.setActionPromises({action:"mark_not_viewed",promise:this.promiseWrapper(this.viewAction.bind(this))})},methods:{..._e(["toggleDoingAction"]),..._e("scope-default",["setList","setActionPromises","setBeforeAction"]),...he("scope-default",["updateList","apiFetch"]),deleteAction({resolve:e,reject:t}){this.apiFetch().then(t=>{this.updateList(t),e(t.message)}).catch(t)},viewAction({resolve:e,reject:t}){this.apiFetch().then(t=>{this.setList(t.list),e(t.message)}).catch(t)}}};r(293);const Fe=c(ge,e,[],!1,null,null,null).exports,{__:ye}=wp.i18n,{load_fields_endpoint:Ce,counter_endpoint:Se}=window.JetFBPageConfig,{resolveRestUrl:we,addQueryArgs:Ee}=JetFBActions,je={extra:e=>e.extra,extraValues:e=>je.extra(e).map(({value:e})=>e),selectedExtra:e=>e.selectedExtra,selectedForm:e=>e.form,currentFields:e=>{var t;return null!==(t=e.fields?.[e.form])&&void 0!==t?t:[]},currentFieldsValues:e=>je.currentFields(e).map(({value:e})=>e),selectedFields:e=>e.selectedFields||[],isLoading:e=>t=>{var r;return t?null!==(r=e.loading?.[t])&&void 0!==r&&r:Object.values(e.loading).some(Boolean)},status:e=>e.status,statusesList:e=>e.statusesList,dateFrom:e=>e.date_from,dateTo:e=>e.date_to,removableSelectedExtra:e=>e.extra.filter(({value:t,nonRemovable:r})=>e.selectedExtra.includes(t)&&!r),count:e=>e.count,filtersObj:e=>({form:e.form,status:e.status,date_from:e.date_from,date_to:e.date_to})},ke=[{value:"id",label:ye("ID (primary)","jet-form-builder")},{value:"form_id",label:ye("Form ID","jet-form-builder")},{value:"user_id",label:ye("User ID","jet-form-builder")},{value:"from_content_id",label:ye("From content ID","jet-form-builder")},{value:"from_content_type",label:ye("From content type","jet-form-builder")},{value:"status",label:ye("Status","jet-form-builder")},{value:"ip_address",label:ye("IP address","jet-form-builder")},{value:"user_agent",label:ye("User agent","jet-form-builder")},{value:"referrer",label:ye("Referrer","jet-form-builder")},{value:"submit_type",label:ye("Submit type","jet-form-builder")},{value:"is_viewed",label:ye("Is viewed","jet-form-builder")},{value:"created_at",label:ye("Created","jet-form-builder")},{value:"updated_at",label:ye("Updated","jet-form-builder")}],Be={namespaced:!0,state:()=>({form:"",selectedFields:[],selectedExtra:ke.map(({value:e})=>e),status:"",date_from:"",date_to:"",fields:{},extra:ke,loading:{},count:0}),mutations:{setForm(e,t){e.form=t},setFields(e,t){e.fields={...e.fields,[e.form]:t}},setStatus(e,t){e.status=t},setDateFrom(e,t){e.date_from=t},setDateTo(e,t){e.date_to=t},updateSelectedFields(e,t){e.selectedFields=t},updateSelectedExtra(e,t){e.selectedExtra=t},toggleLoading(e,t){var r;e.loading={...e.loading,[t]:!(null!==(r=e.loading?.[t])&&void 0!==r&&r)}},setCount(e,t){e.count=t}},getters:je,actions:{handleFilters({commit:e,state:t,rootGetters:r}){const s=r["scope-default/getFilter"],n=s("form"),o=s("date_from"),i=s("date_to"),l=s("status");n.selected!==t.form&&e("setForm",n.selected),o.selected!==t.date_from&&e("setDateFrom",o.selected),i.selected!==t.date_to&&e("setDateTo",i.selected),l.selected!==t.status&&e("setStatus",l.selected)},async resolveFields({state:e,commit:t,dispatch:r}){if(e.fields.hasOwnProperty(e.form)||Number.isNaN(Number(e.form))||!e.form)return!0;let s;t("toggleLoading","fields");try{s=await r("fetchFormFields")}finally{t("toggleLoading","fields")}t("setFields",s.fields)},fetchFormFields({commit:e,state:t}){if(Number.isNaN(Number(t.form)))throw new Error("empty_form");const r=we(Ce.url,{id:t.form});return wp.apiFetch({...Ce,url:r})},selectAllFields({commit:e,getters:t}){e("updateSelectedFields",t.currentFieldsValues)},clearAllFields({commit:e}){e("updateSelectedFields",[])},selectAllExtra({commit:e,getters:t}){e("updateSelectedExtra",t.extraValues)},clearAllExtra({commit:e,getters:t}){e("updateSelectedExtra",t.extra.filter(({nonRemovable:e})=>e).map(({value:e})=>e))},async resolveCount({state:e,commit:t,dispatch:r}){let s;t("toggleLoading","count");try{s=await r("fetchRecordsCount")}finally{t("toggleLoading","count")}t("setCount",s.total)},fetchRecordsCount({state:e,getters:t}){if(Number.isNaN(Number(e.form)))return{total:0};const r=Ee({filters:t.filtersObj},Se.url);return wp.apiFetch({...Se,url:r})}}},Ae=Be,{BaseStore:Pe,TableModulePlugin:De,TableSeedPlugin:Ve,MessagesPlugin:Te}=JetFBStore,{renderCurrentPage:Me}=window.JetFBActions;Me(Fe,{store:new Vuex.Store({...Pe,plugins:[De(),Ve(),Te,function(e){e.registerModule("export",Ae),e.subscribe((t,r)=>{const s=t.type.split("/");switch(s.at(-1)){case"setFilter":case"clearSelectedFilters":return void e.dispatch("export/handleFilters")}if("export"===s[0])switch(s.at(-1)){case"setStatus":case"setDateFrom":case"setDateTo":e.dispatch("export/resolveCount").then(()=>{});break;case"setForm":e.dispatch("export/resolveCount").then(()=>{}),e.commit("export/updateSelectedFields",[]),e.dispatch("export/resolveFields").then(()=>{e.dispatch("export/selectAllFields")})}})}]})})})()})(); \ No newline at end of file +(()=>{var e={79:(e,t,r)=>{var s=r(977);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[e.id,s,""]]),s.locals&&(e.exports=s.locals),(0,r(233).A)("2cca456e",s,!1,{})},168:e=>{"use strict";e.exports=function(e){return e[1]}},233:(e,t,r)=>{"use strict";function s(e,t){for(var r=[],s={},n=0;nm});var n="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!n)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},i=n&&(document.head||document.getElementsByTagName("head")[0]),l=null,a=0,u=!1,d=function(){},c=null,p="data-vue-ssr-id",f="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function m(e,t,r,n){u=r,c=n||{};var i=s(e,t);return v(i),function(t){for(var r=[],n=0;nr.parts.length&&(s.parts.length=r.parts.length)}else{var i=[];for(n=0;n{var s=r(323);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[e.id,s,""]]),s.locals&&(e.exports=s.locals),(0,r(233).A)("7c3c32d4",s,!1,{})},323:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>l});var s=r(168),n=r.n(s),o=r(814),i=r.n(o)()(n());i.push([e.id,".cx-vue-list-table .list-table-item--not-viewed{background-color:#f7fdff}",""]);const l=i},740:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>l});var s=r(168),n=r.n(s),o=r(814),i=r.n(o)()(n());i.push([e.id,".wrapper[data-v-0424b051]{display:flex;gap:1em;align-items:center}",""]);const l=i},806:(e,t,r)=>{var s=r(740);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[e.id,s,""]]),s.locals&&(e.exports=s.locals),(0,r(233).A)("547b2aec",s,!1,{})},814:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var r="",s=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),s&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),s&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r})).join("")},t.i=function(e,r,s,n,o){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(s)for(var l=0;l0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=o),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),n&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=n):d[4]="".concat(n)),t.push(d))}},t}},977:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>l});var s=r(168),n=r.n(s),o=r(814),i=r.n(o)()(n());i.push([e.id,".jfb-dates-wrapper{display:flex;gap:1em}.cx-vui-popup.export-popup .cx-vui-popup__body{width:65vw}.cx-vui-popup.export-popup .cx-vui-popup__footer{justify-content:space-between}.cx-vui-popup.export-popup .footer-counter{display:flex;gap:1em}",""]);const l=i}},t={};function r(s){var n=t[s];if(void 0!==n)return n.exports;var o=t[s]={id:s,exports:{}};return e[s](o,o.exports,r),o.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var s in t)r.o(t,s)&&!r.o(e,s)&&Object.defineProperty(e,s,{enumerable:!0,get:t[s]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("FormBuilderPage",{attrs:{title:e.__("JetFormBuilder Form Records","jet-form-builder")},scopedSlots:e._u([{key:"heading-after",fn:function(){return[r("ExportEntriesButton")]},proxy:!0}])},[e._v(" "),r("ActionsWithFilters",{scopedSlots:e._u([{key:"filters",fn:function(){return[r("FormFilter"),e._v(" "),r("StatusFilter"),e._v(" "),r("DatesFilter")]},proxy:!0},{key:"buttons",fn:function(){return[r("ClearFiltersButton")]},proxy:!0}])}),e._v(" "),r("TablePagination"),e._v(" "),r("EntriesTable"),e._v(" "),r("TablePagination")],1)};e._withStripped=!0;var t=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("CxVuiSelect",{attrs:{value:e.filter.selected},on:{input:e.onChangeFilter}},[r("option",{attrs:{value:""}},[e._v(e._s(e.__("All forms","jet-form-builder")))]),e._v(" "),e._l(e.filter.options||[],(function(t){return r("option",{domProps:{value:t.value}},[e._v("\n\t\t"+e._s(t.label)+"\n\t")])}))],2)};t._withStripped=!0;const{mapState:s,mapGetters:n,mapMutations:o,mapActions:i}=Vuex,{FilterMixin:l,i18n:a}=JetFBMixins,{ColumnWrapper:u,CxVuiSelect:d}=JetFBComponents;function c(e,t,r,s,n,o,i,l){var a,u="function"==typeof e?e.options:e;if(t&&(u.render=t,u.staticRenderFns=r,u._compiled=!0),s&&(u.functional=!0),o&&(u._scopeId="data-v-"+o),i?(a=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},u._ssrRegister=a):n&&(a=l?function(){n.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:n),a)if(u.functional){u._injectStyles=a;var d=u.render;u.render=function(e,t){return a.call(t),d(e,t)}}else{var c=u.beforeCreate;u.beforeCreate=c?[].concat(c,a):[a]}return{exports:e,options:u}}const p=c({name:"FormFilter",components:{ColumnWrapper:u,CxVuiSelect:d},data:()=>({filter_id:"form"}),mixins:[l,a]},t,[],!1,null,null,null).exports;var f=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",{staticStyle:{display:"inline-block"}},[r("cx-vui-button",{attrs:{"button-style":"link-accent",size:"mini"},on:{click:e.onClick},scopedSlots:e._u([{key:"label",fn:function(){return[r("span",{staticClass:"dashicons dashicons-database-export"}),e._v("\n\t\t\t"+e._s(e.__("Export","jet-form-builder"))+"\n\t\t")]},proxy:!0}])}),e._v(" "),e.showPopup?r("CxVuiPopup",{attrs:{"class-names":{"export-popup":!0,"sticky-footer":!0}},on:{close:function(t){e.showPopup=!1}},scopedSlots:e._u([{key:"title",fn:function(){return[e._v(e._s(e.__("1. Select Form:","jet-form-builder")))]},proxy:!0},{key:"content",fn:function(){return[r("RowWrapper",{attrs:{"element-id":"form","class-names":{"size--1-x-2":!0,"padding-side-unset":!0}},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Choose form","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[r("CxVuiSelect",{attrs:{value:e.selectedForm,"class-names":{fullwidth:!0}},on:{input:e.setForm}},[r("option",{attrs:{disabled:"",value:""}},[e._v("\n\t\t\t\t\t\t\t"+e._s(e.__("You need to select form","jet-form-builder"))+"\n\t\t\t\t\t\t")]),e._v(" "),e._l(e.formFilter.options||[],(function(t){return r("option",{domProps:{value:t.value}},[e._v("\n\t\t\t\t\t\t\t"+e._s(t.label)+"\n\t\t\t\t\t\t")])}))],2)]},proxy:!0}],null,!1,1377539951)}),e._v(" "),e.selectedForm?[r("h3",[e._v(e._s(e.__("2. Select data to export:","jet-form-builder")))]),e._v(" "),r("Delimiter"),e._v(" "),r("RowWrapper",{attrs:{"element-id":"fields","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:e.fieldState},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Choose fields","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[r("CxVuiFSelect",{attrs:{"options-list":e.currentFields,multiple:!0,value:e.selectedFields,placeholder:e.placeholder,disabled:e.isLoading("fields")||1===e.currentFields.length},on:{change:e.updateSelectedFields}})]},proxy:!0},{key:"actions",fn:function(){return[r("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:e.currentFieldsValues.length===e.selectedFields.length},on:{click:e.selectAllFields},scopedSlots:e._u([{key:"label",fn:function(){return[e._v("\n\t\t\t\t\t\t\t\t"+e._s(e.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t\t")]},proxy:!0}],null,!1,1960295587)}),e._v(" "),r("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!e.selectedFields.length},on:{click:e.clearAllFields},scopedSlots:e._u([{key:"label",fn:function(){return[e._v("\n\t\t\t\t\t\t\t\t"+e._s(e.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t\t")]},proxy:!0}],null,!1,860686534)})]},proxy:!0}],null,!1,3370655477)}),e._v(" "),r("Delimiter"),e._v(" "),r("RowWrapper",{attrs:{"element-id":"extra","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:e.extraState},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Additional information","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[r("CxVuiFSelect",{attrs:{"wrapper-css":["jfb-padding-b-unset"],"options-list":e.extra,multiple:!0,value:e.selectedExtra},on:{change:e.updateSelectedExtra}})]},proxy:!0},{key:"actions",fn:function(){return[r("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:e.extraValues.length===e.selectedExtra.length},on:{click:e.selectAllExtra},scopedSlots:e._u([{key:"label",fn:function(){return[e._v("\n\t\t\t\t\t\t\t\t"+e._s(e.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t\t")]},proxy:!0}],null,!1,1960295587)}),e._v(" "),r("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!e.removableSelectedExtra.length},on:{click:e.clearAllExtra},scopedSlots:e._u([{key:"label",fn:function(){return[e._v("\n\t\t\t\t\t\t\t\t"+e._s(e.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t\t")]},proxy:!0}],null,!1,860686534)})]},proxy:!0}],null,!1,1796410779)}),e._v(" "),r("h3",[e._v(e._s(e.__("3. Filter records:","jet-form-builder")))]),e._v(" "),r("Delimiter"),e._v(" "),r("RowWrapper",{attrs:{"element-id":"status","class-names":{"size--1-x-2":!0,"padding-side-unset":!0}},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Status","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[r("CxVuiSelect",{attrs:{value:e.status,"class-names":{fullwidth:!0}},on:{input:e.setStatus}},e._l(e.statusFilter.options,(function(t){return r("option",{domProps:{value:t.value}},[e._v("\n\t\t\t\t\t\t\t\t"+e._s(t.label)+"\n\t\t\t\t\t\t\t")])})),0)]},proxy:!0}],null,!1,427993892)}),e._v(" "),r("Delimiter"),e._v(" "),r("div",{staticClass:"jfb-dates-wrapper"},[r("ColumnWrapper",{attrs:{"element-id":"date_from","class-names":{"padding-side-unset":!0}},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Date from","jet-form-builder")))]},proxy:!0}],null,!1,1592935509)},[e._v(" "),r("CxVuiDate",{attrs:{value:e.dateFrom,"max-date":"now"},on:{input:e.setDateFrom}})],1),e._v(" "),r("ColumnWrapper",{attrs:{"element-id":"date_to","class-names":{"padding-side-unset":!0}},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Date to","jet-form-builder")))]},proxy:!0}],null,!1,1583817400)},[e._v(" "),r("CxVuiDate",{attrs:{value:e.dateTo,"max-date":"now"},on:{input:e.setDateTo}})],1)],1)]:e._e()]},proxy:!0},{key:"footer",fn:function(){return[r("div",{staticClass:"footer-buttons"},[r("cx-vui-button",{attrs:{"button-style":"accent",size:"mini",disabled:!e.canBeExported},on:{click:e.startExport},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Export","jet-form-builder")))]},proxy:!0}],null,!1,2420192243)}),e._v(" "),r("cx-vui-button",{attrs:{size:"mini"},on:{click:function(t){e.showPopup=!1}},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.__("Cancel","jet-form-builder")))]},proxy:!0}],null,!1,298029969)})],1),e._v(" "),r("div",{staticClass:"footer-counter"},[r("div",{staticClass:"footer-counter--message"},[e._v("\n\t\t\t\t\t"+e._s(e.countMessage)+"\n\t\t\t\t")]),e._v(" "),r("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:e.isLoading("count"),loading:e.isLoading("count")},on:{click:e.onClickUpdateCount},scopedSlots:e._u([{key:"label",fn:function(){return[e._v("\n\t\t\t\t\t\t"+e._s(e.__("Update","jet-form-builder"))+"\n\t\t\t\t\t")]},proxy:!0}],null,!1,168407598)})],1)]},proxy:!0}],null,!1,4224920487)}):e._e()],1)};f._withStripped=!0;const{__:m,sprintf:v}=wp.i18n,{i18n:_,ScopeStoreMixin:x,GetIncoming:h}=JetFBMixins,{mapState:b,mapGetters:g,mapMutations:F,mapActions:y}=Vuex,{RowWrapper:C,ColumnWrapper:S,CxVuiPopup:w,CxVuiFSelect:E,CxVuiDate:j,Delimiter:k,CxVuiSelect:B}=JetFBComponents,{export_url:A}=window.JetFBPageConfig,{addQueryArgs:P}=JetFBActions,D={name:"ExportEntriesButton",components:{RowWrapper:C,ColumnWrapper:S,CxVuiPopup:w,CxVuiFSelect:E,CxVuiDate:j,Delimiter:k,CxVuiSelect:B},props:{label:{type:String}},data:()=>({showPopup:!1}),mixins:[x,_],computed:{...g(["export/selectedForm","export/currentFields","export/selectedFields","export/isLoading","export/currentFieldsValues","export/extra","export/extraValues","export/selectedExtra","export/statusesList","export/status","export/dateFrom","export/dateTo","export/removableSelectedExtra","export/filtersObj","export/count"]),formFilter(){return this.getter("getFilter","form")},statusFilter(){return this.getter("getFilter","status")},currentFields(){return jfbEventBus.reactiveCounter,this["export/currentFields"]},selectedFields(){var e;return jfbEventBus.reactiveCounter,null!==(e=this["export/selectedFields"])&&void 0!==e?e:[]},selectedForm(){var e;return jfbEventBus.reactiveCounter,null!==(e=this["export/selectedForm"])&&void 0!==e?e:""},currentFieldsValues(){return jfbEventBus.reactiveCounter,this["export/currentFieldsValues"]},placeholder(){return this.selectedFields.length>0?"":m("Please select one or many fields","jet-form-builder")},extra(){return jfbEventBus.reactiveCounter,this["export/extra"]},extraValues(){return jfbEventBus.reactiveCounter,this["export/extraValues"]},selectedExtra(){return jfbEventBus.reactiveCounter,this["export/selectedExtra"]},status(){return jfbEventBus.reactiveCounter,this["export/status"]},statusesList(){return jfbEventBus.reactiveCounter,this["export/statusesList"]},dateFrom(){return jfbEventBus.reactiveCounter,this["export/dateFrom"]},dateTo(){return jfbEventBus.reactiveCounter,this["export/dateTo"]},removableSelectedExtra(){return jfbEventBus.reactiveCounter,this["export/removableSelectedExtra"]},countMessage(){return v(m("%d items can be exported","jet-form-builder"),this.count)},count(){return jfbEventBus.reactiveCounter,this["export/count"]},isEmptyProperties(){return!this.selectedFields?.length&&!this.selectedExtra?.length},canBeExported(){return this.selectedForm&&!this.isLoading()&&!this.isEmptyProperties&&this.count>0},fieldState(){return this.isLoading("fields")?{type:"loading",message:m("Loading...","jet-form-builder")}:this.isEmptyProperties?{type:"warning-danger",message:m("Please fill this field","jet-form-builder")}:""},extraState(){return this.isEmptyProperties?{type:"warning-danger",message:m("Please fill this field","jet-form-builder")}:""},filtersObj(){return jfbEventBus.reactiveCounter,this["export/filtersObj"]},iframeSrc(){return P({fields:this.selectedFields,extra:this.selectedExtra,filters:this.filtersObj},A)}},methods:{...F("export",["setForm","updateSelectedFields","updateSelectedExtra","setStatus","setDateFrom","setDateTo"]),...y("export",["resolveFields","selectAllFields","clearAllFields","selectAllExtra","clearAllExtra","resolveCount"]),onClick(){this.showPopup=!0,this.resolveFields()},onClickUpdateCount(){this.resolveCount()},startExport(){window.location=this.iframeSrc},isLoading(e){return this["export/isLoading"](e)}}};r(79);const V=c(D,f,[],!1,null,null,null).exports;var T=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",{staticClass:"wrapper"},[r("DateFromFilter"),e._v("\n\t—\n\t"),r("DateToFilter")],1)};T._withStripped=!0;var M=function(){var e=this,t=e.$createElement;return(e._self._c||t)("input",{staticClass:"cx-vui-input size-fullwidth",attrs:{type:"date",max:e.now},domProps:{value:e.filter.selected},on:{input:function(t){return e.onChangeFilter(t.target.value)}}})};M._withStripped=!0;const{ColumnWrapper:N}=JetFBComponents,{i18n:L,FilterMixin:W}=JetFBMixins;let O=new Date(Date.now()-864e4).toJSON();[O]=O.split("T");const J=c({name:"DateFromFilter",components:{ColumnWrapper:N},data:()=>({filter_id:"date_from",now:O}),mixins:[L,W]},M,[],!1,null,null,null).exports;var R=function(){var e=this,t=e.$createElement;return(e._self._c||t)("input",{staticClass:"cx-vui-input size-fullwidth",attrs:{type:"date",max:e.now},domProps:{value:e.filter.selected},on:{input:function(t){return e.onChangeFilter(t.target.value)}}})};R._withStripped=!0;const{RowWrapper:U,ColumnWrapper:z}=JetFBComponents,{i18n:I,FilterMixin:$}=JetFBMixins;let G=new Date(Date.now()-864e4).toJSON();[G]=G.split("T");const Q={name:"DatesFilter",components:{DateToFilter:c({name:"DateToFilter",components:{ColumnWrapper:z},data:()=>({filter_id:"date_to",now:G}),mixins:[I,$]},R,[],!1,null,null,null).exports,DateFromFilter:J}};r(806);const X=c(Q,T,[],!1,null,"0424b051",null).exports;var q=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("CxVuiSelect",{attrs:{value:e.filter.selected},on:{input:e.onChangeFilter}},e._l(e.filter.options||[],(function(t){return r("option",{domProps:{value:t.value}},[e._v("\n\t\t"+e._s(t.label)+"\n\t")])})),0)};q._withStripped=!0;const{__:H}=wp.i18n,{mapState:K,mapGetters:Y,mapMutations:Z,mapActions:ee}=Vuex,{FilterMixin:te,i18n:re}=JetFBMixins,{ColumnWrapper:se,CxVuiSelect:ne}=JetFBComponents,oe=c({name:"StatusFilter",components:{ColumnWrapper:se,CxVuiSelect:ne},data:()=>({filter_id:"status"}),created(){this.setCurrentFilter({options:[{value:"",label:H("All statuses","jet-form-builder")},{value:"success",label:H("Only successful ones","jet-form-builder")},{value:"failed",label:H("Only failed ones","jet-form-builder")}]})},mixins:[te,re]},q,[],!1,null,null,null).exports,{TablePagination:ie,EntriesTable:le,FormBuilderPage:ae,ActionsWithFilters:ue,ClearFiltersButton:de}=JetFBComponents,{i18n:ce,PromiseWrapper:pe}=JetFBMixins,{CHOOSE_ACTION:fe,CLICK_ACTION:me}=JetFBConst,{apiFetch:ve}=wp,{mapMutations:_e,mapState:xe,mapActions:he,mapGetters:be}=Vuex,ge={name:"jfb-records",components:{StatusFilter:oe,DatesFilter:X,TablePagination:ie,EntriesTable:le,ActionsWithFilters:ue,FormBuilderPage:ae,FormFilter:p,ClearFiltersButton:de,ExportEntriesButton:V},mixins:[ce,pe],created(){this.setActionPromises({action:"delete",promise:this.promiseWrapper(this.deleteAction.bind(this))}),this.setActionPromises({action:"mark_viewed",promise:this.promiseWrapper(this.viewAction.bind(this))}),this.setActionPromises({action:"mark_not_viewed",promise:this.promiseWrapper(this.viewAction.bind(this))})},methods:{..._e(["toggleDoingAction"]),..._e("scope-default",["setList","setActionPromises","setBeforeAction"]),...he("scope-default",["updateList","apiFetch"]),deleteAction({resolve:e,reject:t}){this.apiFetch().then((t=>{this.updateList(t),e(t.message)})).catch(t)},viewAction({resolve:e,reject:t}){this.apiFetch().then((t=>{this.setList(t.list),e(t.message)})).catch(t)}}};r(293);const Fe=c(ge,e,[],!1,null,null,null).exports,{__:ye}=wp.i18n,{load_fields_endpoint:Ce,counter_endpoint:Se}=window.JetFBPageConfig,{resolveRestUrl:we,addQueryArgs:Ee}=JetFBActions,je={extra:e=>e.extra,extraValues:e=>je.extra(e).map((({value:e})=>e)),selectedExtra:e=>e.selectedExtra,selectedForm:e=>e.form,currentFields:e=>{var t;return null!==(t=e.fields?.[e.form])&&void 0!==t?t:[]},currentFieldsValues:e=>je.currentFields(e).map((({value:e})=>e)),selectedFields:e=>e.selectedFields||[],isLoading:e=>t=>{var r;return t?null!==(r=e.loading?.[t])&&void 0!==r&&r:Object.values(e.loading).some(Boolean)},status:e=>e.status,statusesList:e=>e.statusesList,dateFrom:e=>e.date_from,dateTo:e=>e.date_to,removableSelectedExtra:e=>e.extra.filter((({value:t,nonRemovable:r})=>e.selectedExtra.includes(t)&&!r)),count:e=>e.count,filtersObj:e=>({form:e.form,status:e.status,date_from:e.date_from,date_to:e.date_to})},ke=[{value:"id",label:ye("ID (primary)","jet-form-builder")},{value:"form_id",label:ye("Form ID","jet-form-builder")},{value:"user_id",label:ye("User ID","jet-form-builder")},{value:"from_content_id",label:ye("From content ID","jet-form-builder")},{value:"from_content_type",label:ye("From content type","jet-form-builder")},{value:"status",label:ye("Status","jet-form-builder")},{value:"ip_address",label:ye("IP address","jet-form-builder")},{value:"user_agent",label:ye("User agent","jet-form-builder")},{value:"referrer",label:ye("Referrer","jet-form-builder")},{value:"submit_type",label:ye("Submit type","jet-form-builder")},{value:"is_viewed",label:ye("Is viewed","jet-form-builder")},{value:"created_at",label:ye("Created","jet-form-builder")},{value:"updated_at",label:ye("Updated","jet-form-builder")}],Be={namespaced:!0,state:()=>({form:"",selectedFields:[],selectedExtra:ke.map((({value:e})=>e)),status:"",date_from:"",date_to:"",fields:{},extra:ke,loading:{},count:0}),mutations:{setForm(e,t){e.form=t},setFields(e,t){e.fields={...e.fields,[e.form]:t}},setStatus(e,t){e.status=t},setDateFrom(e,t){e.date_from=t},setDateTo(e,t){e.date_to=t},updateSelectedFields(e,t){e.selectedFields=t},updateSelectedExtra(e,t){e.selectedExtra=t},toggleLoading(e,t){var r;e.loading={...e.loading,[t]:!(null!==(r=e.loading?.[t])&&void 0!==r&&r)}},setCount(e,t){e.count=t}},getters:je,actions:{handleFilters({commit:e,state:t,rootGetters:r}){const s=r["scope-default/getFilter"],n=s("form"),o=s("date_from"),i=s("date_to"),l=s("status");n.selected!==t.form&&e("setForm",n.selected),o.selected!==t.date_from&&e("setDateFrom",o.selected),i.selected!==t.date_to&&e("setDateTo",i.selected),l.selected!==t.status&&e("setStatus",l.selected)},async resolveFields({state:e,commit:t,dispatch:r}){if(e.fields.hasOwnProperty(e.form)||Number.isNaN(Number(e.form))||!e.form)return!0;let s;t("toggleLoading","fields");try{s=await r("fetchFormFields")}finally{t("toggleLoading","fields")}t("setFields",s.fields)},fetchFormFields({commit:e,state:t}){if(Number.isNaN(Number(t.form)))throw new Error("empty_form");const r=we(Ce.url,{id:t.form});return wp.apiFetch({...Ce,url:r})},selectAllFields({commit:e,getters:t}){e("updateSelectedFields",t.currentFieldsValues)},clearAllFields({commit:e}){e("updateSelectedFields",[])},selectAllExtra({commit:e,getters:t}){e("updateSelectedExtra",t.extraValues)},clearAllExtra({commit:e,getters:t}){e("updateSelectedExtra",t.extra.filter((({nonRemovable:e})=>e)).map((({value:e})=>e)))},async resolveCount({state:e,commit:t,dispatch:r}){let s;t("toggleLoading","count");try{s=await r("fetchRecordsCount")}finally{t("toggleLoading","count")}t("setCount",s.total)},fetchRecordsCount({state:e,getters:t}){if(Number.isNaN(Number(e.form)))return{total:0};const r=Ee({filters:t.filtersObj},Se.url);return wp.apiFetch({...Se,url:r})}}},Ae=Be,{BaseStore:Pe,TableModulePlugin:De,TableSeedPlugin:Ve,MessagesPlugin:Te}=JetFBStore,{renderCurrentPage:Me}=window.JetFBActions;Me(Fe,{store:new Vuex.Store({...Pe,plugins:[De(),Ve(),Te,function(e){e.registerModule("export",Ae),e.subscribe(((t,r)=>{const s=t.type.split("/");switch(s.at(-1)){case"setFilter":case"clearSelectedFilters":return void e.dispatch("export/handleFilters")}if("export"===s[0])switch(s.at(-1)){case"setStatus":case"setDateFrom":case"setDateTo":e.dispatch("export/resolveCount").then((()=>{}));break;case"setForm":e.dispatch("export/resolveCount").then((()=>{})),e.commit("export/updateSelectedFields",[]),e.dispatch("export/resolveFields").then((()=>{e.dispatch("export/selectAllFields")}))}}))}]})})})()})(); \ No newline at end of file diff --git a/modules/form-record/assets/build/admin/pages/record-print.asset.php b/modules/form-record/assets/build/admin/pages/record-print.asset.php index a3d10edd0..c83efb64b 100644 --- a/modules/form-record/assets/build/admin/pages/record-print.asset.php +++ b/modules/form-record/assets/build/admin/pages/record-print.asset.php @@ -1 +1 @@ - array(), 'version' => '9d3664d4a14db6cf2e9c'); + array(), 'version' => 'ced58f22a73713d4984e'); diff --git a/modules/form-record/assets/build/admin/pages/record-print.js b/modules/form-record/assets/build/admin/pages/record-print.js index 272a2ace4..52df2d79e 100644 --- a/modules/form-record/assets/build/admin/pages/record-print.js +++ b/modules/form-record/assets/build/admin/pages/record-print.js @@ -1 +1 @@ -(()=>{var e={636(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(168),o=n.n(r),a=n(814),s=n.n(a)()(o());s.push([e.id,"#form-fields-wrapper .cell--name{flex:.4}.jet-form-builder-page pre{white-space:normal}",""]);const i=s},997(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(168),o=n.n(r),a=n(814),s=n.n(a)()(o());s.push([e.id,"\n.field-name-template {\n\tdisplay: flex;\n\tgap: 0.5em;\n\tflex-direction: column;\n}\n",""]);const i=s},814(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n}).join("")},t.i=function(e,n,r,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var s={};if(r)for(var i=0;i0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=a),n&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=n):c[2]=n),o&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=o):c[4]="".concat(o)),t.push(c))}},t}},168(e){"use strict";e.exports=function(e){return e[1]}},306(e,t,n){var r=n(636);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(233).A)("dc7cf10a",r,!1,{})},99(e,t,n){var r=n(997);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(233).A)("9680ebce",r,!1,{})},233(e,t,n){"use strict";function r(e,t){for(var n=[],r={},o=0;ov});var o="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!o)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var a={},s=o&&(document.head||document.getElementsByTagName("head")[0]),i=null,l=0,d=!1,c=function(){},u=null,p="data-vue-ssr-id",f="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function v(e,t,n,o){d=n,u=o||{};var s=r(e,t);return h(s),function(t){for(var n=[],o=0;on.parts.length&&(r.parts.length=n.parts.length)}else{var s=[];for(o=0;o{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("FormBuilderPage",{scopedSlots:e._u([{key:"heading-after",fn:function(){return[n("PrintButton")]},proxy:!0}])},[e._v(" "),n("PostBoxGrid")],1)};e._withStripped=!0;const{PostBoxGrid:t,FormBuilderPage:r,PrintButton:o}=JetFBComponents,{apiFetch:a}=wp,s={name:"record-print",components:{PostBoxGrid:t,FormBuilderPage:r,PrintButton:o}};function i(e,t,n,r,o,a,s,i){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),s?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),o&&o.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(s)},d._ssrRegister=l):o&&(l=i?function(){o.call(this,(d.functional?this.parent:this).$root.$options.shadowRoot)}:o),l)if(d.functional){d._injectStyles=l;var c=d.render;d.render=function(e,t){return l.call(t),c(e,t)}}else{var u=d.beforeCreate;d.beforeCreate=u?[].concat(u,l):[l]}return{exports:e,options:d}}n(306);const l=i(s,e,[],!1,null,null,null).exports;var d=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"field-name-template"},[e.value.label?n("span",{staticClass:"field-name-template--label"},[n("b",[e._v(e._s(e.value.label))])]):e._e(),e._v(" "),n("span",{staticClass:"field-name-template--name"},[n("code",[e._v(e._s(e.value.name))])])])};d._withStripped=!0;n(99);const c={item:i({name:"name--item",props:["value","full-entry","entry-id"]},d,[],!1,null,null,null).exports},{addFilter:u}=wp.hooks;u("jet.fb.admin.table.form-fields","jet-form-builder/record-print",e=>(e.push(c),e));const{BaseStore:p,SingleMetaBoxesPlugin:f}=JetFBStore,{renderCurrentPage:v}=window.JetFBActions;v(l,{store:new Vuex.Store({...p,plugins:[f]})})})()})(); \ No newline at end of file +(()=>{var e={99:(e,t,n)=>{var r=n(997);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(233).A)("9680ebce",r,!1,{})},168:e=>{"use strict";e.exports=function(e){return e[1]}},233:(e,t,n)=>{"use strict";function r(e,t){for(var n=[],r={},o=0;ov});var o="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!o)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var a={},s=o&&(document.head||document.getElementsByTagName("head")[0]),i=null,l=0,d=!1,c=function(){},u=null,p="data-vue-ssr-id",f="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function v(e,t,n,o){d=n,u=o||{};var s=r(e,t);return h(s),function(t){for(var n=[],o=0;on.parts.length&&(r.parts.length=n.parts.length)}else{var s=[];for(o=0;o{var r=n(636);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(233).A)("dc7cf10a",r,!1,{})},636:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(168),o=n.n(r),a=n(814),s=n.n(a)()(o());s.push([e.id,"#form-fields-wrapper .cell--name{flex:.4}.jet-form-builder-page pre{white-space:normal}",""]);const i=s},814:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,r,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var s={};if(r)for(var i=0;i0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=a),n&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=n):c[2]=n),o&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=o):c[4]="".concat(o)),t.push(c))}},t}},997:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(168),o=n.n(r),a=n(814),s=n.n(a)()(o());s.push([e.id,"\n.field-name-template {\n\tdisplay: flex;\n\tgap: 0.5em;\n\tflex-direction: column;\n}\n",""]);const i=s}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var a=t[r]={id:r,exports:{}};return e[r](a,a.exports,n),a.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("FormBuilderPage",{scopedSlots:e._u([{key:"heading-after",fn:function(){return[n("PrintButton")]},proxy:!0}])},[e._v(" "),n("PostBoxGrid")],1)};e._withStripped=!0;const{PostBoxGrid:t,FormBuilderPage:r,PrintButton:o}=JetFBComponents,{apiFetch:a}=wp,s={name:"record-print",components:{PostBoxGrid:t,FormBuilderPage:r,PrintButton:o}};function i(e,t,n,r,o,a,s,i){var l,d="function"==typeof e?e.options:e;if(t&&(d.render=t,d.staticRenderFns=n,d._compiled=!0),r&&(d.functional=!0),a&&(d._scopeId="data-v-"+a),s?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),o&&o.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(s)},d._ssrRegister=l):o&&(l=i?function(){o.call(this,(d.functional?this.parent:this).$root.$options.shadowRoot)}:o),l)if(d.functional){d._injectStyles=l;var c=d.render;d.render=function(e,t){return l.call(t),c(e,t)}}else{var u=d.beforeCreate;d.beforeCreate=u?[].concat(u,l):[l]}return{exports:e,options:d}}n(306);const l=i(s,e,[],!1,null,null,null).exports;var d=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"field-name-template"},[e.value.label?n("span",{staticClass:"field-name-template--label"},[n("b",[e._v(e._s(e.value.label))])]):e._e(),e._v(" "),n("span",{staticClass:"field-name-template--name"},[n("code",[e._v(e._s(e.value.name))])])])};d._withStripped=!0;n(99);const c={item:i({name:"name--item",props:["value","full-entry","entry-id"]},d,[],!1,null,null,null).exports},{addFilter:u}=wp.hooks;u("jet.fb.admin.table.form-fields","jet-form-builder/record-print",(e=>(e.push(c),e)));const{BaseStore:p,SingleMetaBoxesPlugin:f}=JetFBStore,{renderCurrentPage:v}=window.JetFBActions;v(l,{store:new Vuex.Store({...p,plugins:[f]})})})()})(); \ No newline at end of file diff --git a/modules/gateways/assets/build/admin/pages/jfb-payments-single.asset.php b/modules/gateways/assets/build/admin/pages/jfb-payments-single.asset.php index 9ef277f05..fb72c714d 100644 --- a/modules/gateways/assets/build/admin/pages/jfb-payments-single.asset.php +++ b/modules/gateways/assets/build/admin/pages/jfb-payments-single.asset.php @@ -1 +1 @@ - array(), 'version' => '9c204f4f6820fa03877e'); + array(), 'version' => 'f1b3e0ce05ec27b49a2b'); diff --git a/modules/gateways/assets/build/admin/pages/jfb-payments-single.js b/modules/gateways/assets/build/admin/pages/jfb-payments-single.js index b167f1c0d..379a09680 100644 --- a/modules/gateways/assets/build/admin/pages/jfb-payments-single.js +++ b/modules/gateways/assets/build/admin/pages/jfb-payments-single.js @@ -1 +1 @@ -(()=>{"use strict";var e=function(){var e=this.$createElement,t=this._self._c||e;return t("FormBuilderPage",[t("PostBoxGrid")],1)};e._withStripped=!0;const{PostBoxGrid:t,FormBuilderPage:r}=JetFBComponents,{mapGetters:n,mapMutations:o,mapActions:s}=Vuex;var a=function(e,t){var r,n=e;if(t&&(n.render=t,n.staticRenderFns=[],n._compiled=!0),r)if(n.functional){n._injectStyles=r;var o=n.render;n.render=function(e,t){return r.call(t),o(e,t)}}else{var s=n.beforeCreate;n.beforeCreate=s?[].concat(s,r):[r]}return{exports:e,options:n}}({name:"jfb-payments-single",components:{PostBoxGrid:t,FormBuilderPage:r},created(){jfbEventBus.$on("payment-details-delete",()=>{this["scope-payment-details/actions/defaultDelete"]()})},methods:{...s(["scope-payment-details/actions/defaultDelete"])}},e);const i=a.exports,{BaseStore:c,SingleMetaBoxesPlugin:l}=JetFBStore,{renderCurrentPage:d}=window.JetFBActions;d(i,{store:new Vuex.Store({...c,plugins:[l]})})})(); \ No newline at end of file +(()=>{"use strict";var e=function(){var e=this.$createElement,t=this._self._c||e;return t("FormBuilderPage",[t("PostBoxGrid")],1)};e._withStripped=!0;const{PostBoxGrid:t,FormBuilderPage:r}=JetFBComponents,{mapGetters:n,mapMutations:o,mapActions:s}=Vuex;var a=function(e,t){var r,n=e;if(t&&(n.render=t,n.staticRenderFns=[],n._compiled=!0),r)if(n.functional){n._injectStyles=r;var o=n.render;n.render=function(e,t){return r.call(t),o(e,t)}}else{var s=n.beforeCreate;n.beforeCreate=s?[].concat(s,r):[r]}return{exports:e,options:n}}({name:"jfb-payments-single",components:{PostBoxGrid:t,FormBuilderPage:r},created(){jfbEventBus.$on("payment-details-delete",(()=>{this["scope-payment-details/actions/defaultDelete"]()}))},methods:{...s(["scope-payment-details/actions/defaultDelete"])}},e);const i=a.exports,{BaseStore:c,SingleMetaBoxesPlugin:l}=JetFBStore,{renderCurrentPage:d}=window.JetFBActions;d(i,{store:new Vuex.Store({...c,plugins:[l]})})})(); \ No newline at end of file diff --git a/modules/gateways/assets/build/editor.asset.php b/modules/gateways/assets/build/editor.asset.php index 849b28f5f..5f94213da 100644 --- a/modules/gateways/assets/build/editor.asset.php +++ b/modules/gateways/assets/build/editor.asset.php @@ -1 +1 @@ - array('react'), 'version' => '3b999eb237cd2a994483'); + array('react'), 'version' => '5c11c00615488ee96497'); diff --git a/modules/gateways/assets/build/editor.js b/modules/gateways/assets/build/editor.js index e1bcdd52c..5807b83a5 100644 --- a/modules/gateways/assets/build/editor.js +++ b/modules/gateways/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";const e=window.React,{compose:t}=wp.compose,{withSelect:a,withDispatch:n}=wp.data,{__:l}=wp.i18n,{TextControl:o,SelectControl:s,withNotices:i}=wp.components,{useEffect:r}=wp.element,{renderGateway:c}=JetFBActions,{withSelectGateways:m,withDispatchGateways:u}=JetFBHooks,{ToggleControl:w}=JetFBComponents,d=t(a(m),n(u),i)(function({setGatewayRequest:t,gatewaySpecific:a,setGatewaySpecific:n,gatewayScenario:i,setGatewayScenario:m,getSpecificOrGlobal:u,additionalSourceGateway:d,specificGatewayLabel:y,noticeOperations:p,noticeUI:g}){const{id:_="PAY_NOW"}=i;return r(()=>{t({id:_})},[_]),r(()=>{t({id:_})},[]),(0,e.createElement)(e.Fragment,null,g,(0,e.createElement)(w,{checked:a.use_global,onChange:e=>n({use_global:e})},l("Use","jet-form-builder")+" ",(0,e.createElement)("a",{href:JetFormEditorData.global_settings_url+"#payments-gateways__paypal"},l("Global Settings","jet-form-builder"))),(0,e.createElement)(o,{label:y("client_id"),key:"paypal_client_id_setting",value:u("client_id"),onChange:e=>n({client_id:e}),disabled:a.use_global}),(0,e.createElement)(o,{label:y("secret"),key:"paypal_secret_setting",value:u("secret"),onChange:e=>n({secret:e}),disabled:a.use_global}),(0,e.createElement)(s,{labelPosition:"side",label:y("gateway_type"),value:_,onChange:e=>{m({id:e})},options:d.scenarios}),c("paypal",{noticeOperations:p},_))}),{compose:y}=wp.compose,{withSelect:p,withDispatch:g}=wp.data,{TextControl:_,SelectControl:f,BaseControl:b,RadioControl:h}=wp.components,{withSelectFormFields:E,withSelectGateways:v,withDispatchGateways:S,withSelectActionsByType:G}=JetFBHooks,{GatewayFetchButton:C}=JetFBComponents,k=y(p((...e)=>({...E([],"--")(...e),...v(...e)})),g((...e)=>({...S(...e)})))(function({gatewayGeneral:t,gatewaySpecific:a,setGateway:n,setGatewaySpecific:l,formFields:o,getSpecificOrGlobal:s,loadingGateway:i,scenarioSource:r,noticeOperations:c,scenarioLabel:m,globalGatewayLabel:u}){return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(b,{label:m("fetch_button_label")},(0,e.createElement)("div",{className:"jet-user-fields-map__list"},!i.success&&!i.loading&&(0,e.createElement)("span",{className:"description-controls"},m("fetch_button_help")),(0,e.createElement)(C,{initialLabel:m("fetch_button"),label:m("fetch_button_retry"),apiArgs:{...r.fetch,data:{client_id:s("client_id"),secret:s("secret")}},onFail:e=>{c.removeNotice(t.gateway),c.createNotice({status:"error",content:e.message,id:t.gateway})}}))),i.success&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)(_,{label:m("currency"),key:"paypal_currency_code_setting",value:a.currency,onChange:e=>l({currency:e})}),(0,e.createElement)(f,{label:u("price_field"),key:"form_fields_price_field",value:t.price_field,labelPosition:"side",onChange:e=>{n({price_field:e})},options:o})))}),{gatewayAttr:j,renderGateway:F,renderGatewayWithPlaceholder:N}=JetFBActions,{__:B}=wp.i18n,{TextareaControl:A,BaseControl:J}=wp.components,{withSelect:D,withDispatch:x}=wp.data,{compose:O}=wp.compose,{withSelectGateways:R,withDispatchGateways:T}=JetFBHooks,I=j(),L=j("labels"),H=O(D((...e)=>({...R(...e)})),x(T))(function({gatewayGeneral:t,setGatewayInner:a,loadingGateway:n,gatewayRequest:l,CURRENT_SCENARIO:o,currentScenario:s}){const i=(e,t,n)=>{a({key:e,value:{[t]:n}})},r=(e,a,n=!1)=>t[e]&&t[e][a]?t[e][a]:n,c=(e,t)=>{i("messages",e,t)},m=e=>r("messages",e,I.messages[e]),u=(0,e.createElement)(e.Fragment,null,N(t.gateway,{gatewayGeneral:t,CURRENT_SCENARIO:o,currentScenario:s},"macrosList",(0,e.createElement)(J,{key:"payment_result_macros_base_control"},(0,e.createElement)("h4",null,B("Available macros list: ","jet-form-builder"),(0,e.createElement)("br",null),B("%gateway_amount% - payment amount returned from gateway template;","jet-form-builder"),(0,e.createElement)("br",null),B("%gateway_status% - payment status returned from payment gateway;","jet-form-builder"),(0,e.createElement)("br",null),B('%field_name% - replace "field_name" with any field name from the form;',"jet-form-builder"),(0,e.createElement)("br",null)))),(0,e.createElement)(A,{key:"payment_result_message_success",label:L("message_success"),value:m("success"),onChange:e=>c("success",e)}),(0,e.createElement)(A,{key:"payment_result_message_failed",label:L("message_failed"),value:m("failed"),onChange:e=>c("failed",e)}));return(0,e.createElement)(e.Fragment,null,F(t.gateway,{setValueInObject:i,getNotifications:r}),(-1===l.id||n.success||!l.id.includes(t.gateway))&&u)}),{Button:M,ToggleControl:P,Notice:U,__experimentalItemGroup:q,__experimentalItem:W}=wp.components,{withDispatch:z,withSelect:V,useSelect:Y,dispatch:$}=wp.data,{useState:K,useEffect:Q}=wp.element,{__:X}=wp.i18n,{compose:Z}=wp.compose,{createBlock:ee}=wp.blocks,{ActionModal:te}=JetFBComponents,{withDispatchGateways:ae,withSelectGateways:ne,useMetaState:le}=JetFBHooks,oe=window.JetFormEditorData.gateways,se="manual",ie="jet-forms/multi-gateway",re=(e,t)=>{for(const a of e){if(a.name===t)return!0;if(a.innerBlocks?.length&&re(a.innerBlocks,t))return!0}return!1},ce=Z(z(ae),V(ne))(function(t){var a;const{setGateway:n,setGatewayScenario:l,clearGateway:o,clearScenario:s,gatewayGeneral:i,gatewayScenario:r}=t,[c,m]=le("_jf_gateways"),[u,w]=K(!1),[d,y]=K(null!==(a=c?.gateway)&&void 0!==a?a:"none"),[p,g]=K(null),_=c?.mode===se,f=Y(e=>{const t=e("core/block-editor");return!!t?.getBlocks&&re(t.getBlocks(),ie)},[]),b=()=>{$("core/block-editor").insertBlocks(ee(ie))};Q(()=>{var e;y(_?se:null!==(e=c?.gateway)&&void 0!==e?e:"none")},[c?.gateway,c?.mode]),Q(()=>{if(!u)return o(),void s();const e=p||c?.gateway;e&&"none"!==e&&(_&&!p||(n({...c,gateway:e}),l(c?.[e]?.scenario)))},[u,p]);const h=(e=!1)=>{!1!==e&&m(e),w(!1),g(null)},E=[{label:"None",value:"none"},...oe.list,{label:"Manual",value:se}],v={row:{display:"flex",alignItems:"center",justifyContent:"space-between",width:"100%"},item:{display:"flex",minHeight:"50px",flexDirection:"column",justifyContent:"center"},toggle:{paddingTop:"10px",paddingLeft:"20px",flexDirection:"column"},notice:{marginTop:"10px"},notice__btn:{marginLeft:"0"}};return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(q,{className:"jfb-gateways",isBordered:!0,isSeparated:!0},E.map(t=>{const a=d===t.value,n="none"!==t.value&&t.value!==se&&(_||a),l=_&&"none"!==t.value&&t.value!==se;return(0,e.createElement)(W,{key:t.value,className:"jfb-gateways__item",style:v.item},(0,e.createElement)("div",{className:"jfb-gateways__row",style:v.row},(0,e.createElement)("label",{className:"jfb-gateways__option"},(0,e.createElement)("input",{type:"radio",name:"jfb_gateway",value:t.value,checked:a,onChange:()=>{y(t.value),t.value!==se?m({...c,mode:"single",gateway:t.value}):m({...c,mode:se})}}),(0,e.createElement)("span",{className:"jfb-gateways__label"},t.label)),(0,e.createElement)("div",{className:"jfb-gateways__actions"},n?(0,e.createElement)(M,{onClick:()=>{g(t.value),w(!0)},icon:"admin-tools",isSecondary:!0,size:"small"},X("Edit","jet-form-builder")):(0,e.createElement)("span",{className:"jfb-gateways__edit-spacer","aria-hidden":"true"}))),l&&(0,e.createElement)("div",{className:"jfb-gateways__toggle",style:v.toggle},(0,e.createElement)(P,{label:X("Show on frontend","jet-form-builder"),checked:!!c?.[t.value]?.show_on_front,onChange:e=>{m({...c,[t.value]:{...c?.[t.value]||{},show_on_front:e}})}})),t.value===se&&_&&!f&&(0,e.createElement)("div",{className:"jfb-gateways__notice",style:v.notice},(0,e.createElement)(U,{status:"warning",isDismissible:!1},(0,e.createElement)("div",null,X("To display gateways on the frontend in Manual mode, add the Multi Gateway block to the form.","jet-form-builder")),(0,e.createElement)(M,{isSecondary:!0,onClick:b,size:"small",style:v.notice__btn},X("Add block","jet-form-builder")))))})),u&&(0,e.createElement)(te,{classNames:["width-60"],onRequestClose:()=>h(),onCancelClick:()=>h(),onUpdateClick:()=>h({...i,[i.gateway]:{...i[i.gateway]||{},scenario:r}}),title:`Edit ${S=p||c?.gateway,oe.list.find(e=>e.value===S)?.label||S} Settings`},(0,e.createElement)(H,null)));var S}),{__:me}=wp.i18n,ue={base:{name:"jf-gateways-panel",title:me("Gateways Settings","jet-form-builder")},settings:{render:ce,icon:"money-alt"}},{registerGateway:we}=JetFBActions,{addFilter:de,applyFilters:ye}=wp.hooks,pe="paypal";function ge(){return window?.JetFormEditorData?.gateways?.validation||{}}JetFBActions.isGatewayValid=function(e,t){if("string"==typeof t)try{t=JSON.parse(t||"{}")}catch(e){t={}}const a=ge()?.required_map||{},n=a?.[e];if(!Array.isArray(n)||!n.length)return!1;const l=t?.[e]||{};if(l.use_global){const t=ge()?.global_valid||{};return!!t?.[e]}return n.every(e=>{const t=l?.[e];return"string"==typeof t?""!==t.trim():!!t})},we(pe,d),we(pe,k,"PAY_NOW"),de("jet.fb.register.plugin.jf-validation-panel.after","jet-form-builder/gateways",function(e){return e.push(ue),e})})(); \ No newline at end of file +(()=>{"use strict";const e=window.React,{compose:t}=wp.compose,{withSelect:a,withDispatch:n}=wp.data,{__:l}=wp.i18n,{TextControl:o,SelectControl:s,withNotices:i}=wp.components,{useEffect:r}=wp.element,{renderGateway:c}=JetFBActions,{withSelectGateways:m,withDispatchGateways:u}=JetFBHooks,{ToggleControl:w}=JetFBComponents,d=t(a(m),n(u),i)((function({setGatewayRequest:t,gatewaySpecific:a,setGatewaySpecific:n,gatewayScenario:i,setGatewayScenario:m,getSpecificOrGlobal:u,additionalSourceGateway:d,specificGatewayLabel:y,noticeOperations:p,noticeUI:g}){const{id:_="PAY_NOW"}=i;return r((()=>{t({id:_})}),[_]),r((()=>{t({id:_})}),[]),(0,e.createElement)(e.Fragment,null,g,(0,e.createElement)(w,{checked:a.use_global,onChange:e=>n({use_global:e})},l("Use","jet-form-builder")+" ",(0,e.createElement)("a",{href:JetFormEditorData.global_settings_url+"#payments-gateways__paypal"},l("Global Settings","jet-form-builder"))),(0,e.createElement)(o,{label:y("client_id"),key:"paypal_client_id_setting",value:u("client_id"),onChange:e=>n({client_id:e}),disabled:a.use_global}),(0,e.createElement)(o,{label:y("secret"),key:"paypal_secret_setting",value:u("secret"),onChange:e=>n({secret:e}),disabled:a.use_global}),(0,e.createElement)(s,{labelPosition:"side",label:y("gateway_type"),value:_,onChange:e=>{m({id:e})},options:d.scenarios}),c("paypal",{noticeOperations:p},_))})),{compose:y}=wp.compose,{withSelect:p,withDispatch:g}=wp.data,{TextControl:_,SelectControl:f,BaseControl:b,RadioControl:h}=wp.components,{withSelectFormFields:E,withSelectGateways:v,withDispatchGateways:S,withSelectActionsByType:G}=JetFBHooks,{GatewayFetchButton:C}=JetFBComponents,k=y(p(((...e)=>({...E([],"--")(...e),...v(...e)}))),g(((...e)=>({...S(...e)}))))((function({gatewayGeneral:t,gatewaySpecific:a,setGateway:n,setGatewaySpecific:l,formFields:o,getSpecificOrGlobal:s,loadingGateway:i,scenarioSource:r,noticeOperations:c,scenarioLabel:m,globalGatewayLabel:u}){return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(b,{label:m("fetch_button_label")},(0,e.createElement)("div",{className:"jet-user-fields-map__list"},!i.success&&!i.loading&&(0,e.createElement)("span",{className:"description-controls"},m("fetch_button_help")),(0,e.createElement)(C,{initialLabel:m("fetch_button"),label:m("fetch_button_retry"),apiArgs:{...r.fetch,data:{client_id:s("client_id"),secret:s("secret")}},onFail:e=>{c.removeNotice(t.gateway),c.createNotice({status:"error",content:e.message,id:t.gateway})}}))),i.success&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)(_,{label:m("currency"),key:"paypal_currency_code_setting",value:a.currency,onChange:e=>l({currency:e})}),(0,e.createElement)(f,{label:u("price_field"),key:"form_fields_price_field",value:t.price_field,labelPosition:"side",onChange:e=>{n({price_field:e})},options:o})))})),{gatewayAttr:j,renderGateway:F,renderGatewayWithPlaceholder:N}=JetFBActions,{__:B}=wp.i18n,{TextareaControl:A,BaseControl:J}=wp.components,{withSelect:D,withDispatch:x}=wp.data,{compose:O}=wp.compose,{withSelectGateways:R,withDispatchGateways:T}=JetFBHooks,I=j(),L=j("labels"),H=O(D(((...e)=>({...R(...e)}))),x(T))((function({gatewayGeneral:t,setGatewayInner:a,loadingGateway:n,gatewayRequest:l,CURRENT_SCENARIO:o,currentScenario:s}){const i=(e,t,n)=>{a({key:e,value:{[t]:n}})},r=(e,a,n=!1)=>t[e]&&t[e][a]?t[e][a]:n,c=(e,t)=>{i("messages",e,t)},m=e=>r("messages",e,I.messages[e]),u=(0,e.createElement)(e.Fragment,null,N(t.gateway,{gatewayGeneral:t,CURRENT_SCENARIO:o,currentScenario:s},"macrosList",(0,e.createElement)(J,{key:"payment_result_macros_base_control"},(0,e.createElement)("h4",null,B("Available macros list: ","jet-form-builder"),(0,e.createElement)("br",null),B("%gateway_amount% - payment amount returned from gateway template;","jet-form-builder"),(0,e.createElement)("br",null),B("%gateway_status% - payment status returned from payment gateway;","jet-form-builder"),(0,e.createElement)("br",null),B('%field_name% - replace "field_name" with any field name from the form;',"jet-form-builder"),(0,e.createElement)("br",null)))),(0,e.createElement)(A,{key:"payment_result_message_success",label:L("message_success"),value:m("success"),onChange:e=>c("success",e)}),(0,e.createElement)(A,{key:"payment_result_message_failed",label:L("message_failed"),value:m("failed"),onChange:e=>c("failed",e)}));return(0,e.createElement)(e.Fragment,null,F(t.gateway,{setValueInObject:i,getNotifications:r}),(-1===l.id||n.success||!l.id.includes(t.gateway))&&u)})),{Button:M,ToggleControl:P,Notice:U,__experimentalItemGroup:q,__experimentalItem:W}=wp.components,{withDispatch:z,withSelect:V,useSelect:Y,dispatch:$}=wp.data,{useState:K,useEffect:Q}=wp.element,{__:X}=wp.i18n,{compose:Z}=wp.compose,{createBlock:ee}=wp.blocks,{ActionModal:te}=JetFBComponents,{withDispatchGateways:ae,withSelectGateways:ne,useMetaState:le}=JetFBHooks,oe=window.JetFormEditorData.gateways,se="manual",ie="jet-forms/multi-gateway",re=(e,t)=>{for(const a of e){if(a.name===t)return!0;if(a.innerBlocks?.length&&re(a.innerBlocks,t))return!0}return!1},ce=Z(z(ae),V(ne))((function(t){var a;const{setGateway:n,setGatewayScenario:l,clearGateway:o,clearScenario:s,gatewayGeneral:i,gatewayScenario:r}=t,[c,m]=le("_jf_gateways"),[u,w]=K(!1),[d,y]=K(null!==(a=c?.gateway)&&void 0!==a?a:"none"),[p,g]=K(null),_=c?.mode===se,f=Y((e=>{const t=e("core/block-editor");return!!t?.getBlocks&&re(t.getBlocks(),ie)}),[]),b=()=>{$("core/block-editor").insertBlocks(ee(ie))};Q((()=>{var e;y(_?se:null!==(e=c?.gateway)&&void 0!==e?e:"none")}),[c?.gateway,c?.mode]),Q((()=>{if(!u)return o(),void s();const e=p||c?.gateway;e&&"none"!==e&&(_&&!p||(n({...c,gateway:e}),l(c?.[e]?.scenario)))}),[u,p]);const h=(e=!1)=>{!1!==e&&m(e),w(!1),g(null)},E=[{label:"None",value:"none"},...oe.list,{label:"Manual",value:se}],v={row:{display:"flex",alignItems:"center",justifyContent:"space-between",width:"100%"},item:{display:"flex",minHeight:"50px",flexDirection:"column",justifyContent:"center"},toggle:{paddingTop:"10px",paddingLeft:"20px",flexDirection:"column"},notice:{marginTop:"10px"},notice__btn:{marginLeft:"0"}};return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(q,{className:"jfb-gateways",isBordered:!0,isSeparated:!0},E.map((t=>{const a=d===t.value,n="none"!==t.value&&t.value!==se&&(_||a),l=_&&"none"!==t.value&&t.value!==se;return(0,e.createElement)(W,{key:t.value,className:"jfb-gateways__item",style:v.item},(0,e.createElement)("div",{className:"jfb-gateways__row",style:v.row},(0,e.createElement)("label",{className:"jfb-gateways__option"},(0,e.createElement)("input",{type:"radio",name:"jfb_gateway",value:t.value,checked:a,onChange:()=>{y(t.value),t.value!==se?m({...c,mode:"single",gateway:t.value}):m({...c,mode:se})}}),(0,e.createElement)("span",{className:"jfb-gateways__label"},t.label)),(0,e.createElement)("div",{className:"jfb-gateways__actions"},n?(0,e.createElement)(M,{onClick:()=>{g(t.value),w(!0)},icon:"admin-tools",isSecondary:!0,size:"small"},X("Edit","jet-form-builder")):(0,e.createElement)("span",{className:"jfb-gateways__edit-spacer","aria-hidden":"true"}))),l&&(0,e.createElement)("div",{className:"jfb-gateways__toggle",style:v.toggle},(0,e.createElement)(P,{label:X("Show on frontend","jet-form-builder"),checked:!!c?.[t.value]?.show_on_front,onChange:e=>{m({...c,[t.value]:{...c?.[t.value]||{},show_on_front:e}})}})),t.value===se&&_&&!f&&(0,e.createElement)("div",{className:"jfb-gateways__notice",style:v.notice},(0,e.createElement)(U,{status:"warning",isDismissible:!1},(0,e.createElement)("div",null,X("To display gateways on the frontend in Manual mode, add the Multi Gateway block to the form.","jet-form-builder")),(0,e.createElement)(M,{isSecondary:!0,onClick:b,size:"small",style:v.notice__btn},X("Add block","jet-form-builder")))))}))),u&&(0,e.createElement)(te,{classNames:["width-60"],onRequestClose:()=>h(),onCancelClick:()=>h(),onUpdateClick:()=>h({...i,[i.gateway]:{...i[i.gateway]||{},scenario:r}}),title:`Edit ${S=p||c?.gateway,oe.list.find((e=>e.value===S))?.label||S} Settings`},(0,e.createElement)(H,null)));var S})),{__:me}=wp.i18n,ue={base:{name:"jf-gateways-panel",title:me("Gateways Settings","jet-form-builder")},settings:{render:ce,icon:"money-alt"}},{registerGateway:we}=JetFBActions,{addFilter:de,applyFilters:ye}=wp.hooks,pe="paypal";function ge(){return window?.JetFormEditorData?.gateways?.validation||{}}JetFBActions.isGatewayValid=function(e,t){if("string"==typeof t)try{t=JSON.parse(t||"{}")}catch(e){t={}}const a=ge()?.required_map||{},n=a?.[e];if(!Array.isArray(n)||!n.length)return!1;const l=t?.[e]||{};if(l.use_global){const t=ge()?.global_valid||{};return!!t?.[e]}return n.every((e=>{const t=l?.[e];return"string"==typeof t?""!==t.trim():!!t}))},we(pe,d),we(pe,k,"PAY_NOW"),de("jet.fb.register.plugin.jf-validation-panel.after","jet-form-builder/gateways",(function(e){return e.push(ue),e}))})(); \ No newline at end of file diff --git a/modules/html-parser/assets/build/admin-ui.asset.php b/modules/html-parser/assets/build/admin-ui.asset.php index 8f118eafb..35a86ad7d 100644 --- a/modules/html-parser/assets/build/admin-ui.asset.php +++ b/modules/html-parser/assets/build/admin-ui.asset.php @@ -1 +1 @@ - array('react', 'wp-api-fetch', 'wp-components', 'wp-dom-ready', 'wp-element', 'wp-i18n'), 'version' => '464d8ccc24ec333aa3d5'); + array('react', 'wp-api-fetch', 'wp-components', 'wp-dom-ready', 'wp-element', 'wp-i18n'), 'version' => 'ae0b6ce7deed980c99de'); diff --git a/modules/html-parser/assets/build/admin-ui.js b/modules/html-parser/assets/build/admin-ui.js index 3de5e5f96..e6bf42a31 100644 --- a/modules/html-parser/assets/build/admin-ui.js +++ b/modules/html-parser/assets/build/admin-ui.js @@ -1 +1 @@ -(()=>{"use strict";var t={n:e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return t.d(r,{a:r}),r},d:(e,r)=>{for(var n in r)t.o(r,n)&&!t.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:r[n]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e)};const e=window.wp.element,r=window.wp.domReady;var n=t.n(r);const o=window.React,l=window.wp.components,a=window.wp.i18n,i=window.wp.apiFetch;var s=t.n(i);function m({name:t,attributes:e}){return`\x3c!-- wp:${t} ${JSON.stringify(e)} /--\x3e`}const{parseHTMLtoBlocks:c}=JetFormBuilderParser;function d({clearHTML:t,rawHTML:r,setShowModal:n}){const[i,d]=(0,e.useState)(!1);return(0,o.createElement)(l.Flex,{justify:"space-between"},(0,o.createElement)(l.Button,{variant:"secondary",onClick:t},(0,a.__)("Back","jet-form-builder")),(0,o.createElement)(l.Button,{variant:"primary",onClick:async()=>{d(!0);try{const t=c(r);if(!t.length)return console.error((0,a.__)("JFB: Could not parse blocks","jet-form-builder"),r),void d(!1);const e=function(t){return t.map(m).join("\n\n")}(t),n=await s()({method:"POST",path:"/wp/v2/jet-form-builder",data:{title:(0,a.__)("Imported HTML Form","jet-form-builder")+" "+(new Date).toLocaleString("sv-SE").replace("T"," "),content:e,status:"publish"}});window.location.href=(t=>{const e=new URL(JetFormBuilderAdmin.edit_url);return e.searchParams.set("post",t),e.href})(n.id)}catch(t){console.error("Failed to create form:",t),d(!1)}},isBusy:i,disabled:i},(0,a.__)("Create Form","jet-form-builder")))}const{parseHTMLtoBlocks:u,getFormInnerFields:p}=JetFormBuilderParser;function f({setShowModal:t}){const[r,n]=(0,e.useState)(""),[i,s]=(0,e.useState)(""),[m,c]=(0,e.useState)(!1),[u,f]=(0,e.useState)("");return(0,o.createElement)(l.Modal,{style:{width:"60vw"},onRequestClose:()=>t(!1),title:(0,a.__)("Import HTML Form","jet-form-builder"),className:"jfb-html-parser-modal"},u&&(0,o.createElement)(l.Notice,{status:"error",isDismissible:!0,onRemove:()=>f("")},u),Boolean(i.length)?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{dangerouslySetInnerHTML:{__html:i},style:{padding:"2em 1em",backgroundColor:"#f6f7f7",marginBottom:"1em"}}),(0,o.createElement)(d,{clearHTML:()=>s(""),formHTML:i,rawHTML:r,setShowModal:t})):(0,o.createElement)(o.Fragment,null,(0,o.createElement)(l.TextareaControl,{label:(0,a.__)("Paste your HTML here","jet-form-builder"),value:r,onChange:n,rows:7}),(0,o.createElement)("ul",{style:{listStyle:"disc",paddingInlineStart:"1em"}},(0,o.createElement)("li",null,(0,a.__)("You can use any HTML code that contains form elements, but only headings, form controls, and buttons will be parsed.","jet-form-builder")),(0,o.createElement)("li",null,(0,a.__)("All the code you paste here will be parsed into a single Form, even if it contains more than one
    tag.","jet-form-builder")),(0,o.createElement)("li",null,(0,a.__)("The parser can only understand form elements and structure; it can't parse styling or behavior.","jet-form-builder"))),(0,o.createElement)(l.Flex,{justify:"flex-end",style:{marginTop:"1em"}},(0,o.createElement)(l.Button,{isPrimary:!0,isBusy:m,disabled:m||!r.trim().length,onClick:()=>{c(!0),f("");try{const t=p(r);s(`\n\t\t\t
    \n\t\t\t\t\n\t\t\t\t${t}\n\t\t\t
    \n\t\t\t`)}catch(t){console.error(t),f(t?.message||(0,a.__)("Failed to parse HTML.","jet-form-builder"))}finally{c(!1)}}},m?(0,a.__)("Parsing...","jet-form-builder"):(0,a.__)("Parse HTML","jet-form-builder")))))}function b(){const[t,r]=(0,e.useState)(!1);return(0,o.createElement)(e.Fragment,null,(0,o.createElement)("a",{href:"#",className:"page-title-action",onClick:t=>{t.preventDefault(),r(!0)}},(0,a.__)("Import from HTML","jet-form-builder")),t&&(0,o.createElement)(f,{setShowModal:r}))}n()(()=>{const t=document.querySelector('.page-title-action[href*="post-new.php"]');if(!t)return;const r=document.createElement("div");r.style.display="inline-flex",r.style.marginLeft="4px",t.after(r),(0,e.createRoot)(r).render(wp.element.createElement(b))})})(); \ No newline at end of file +(()=>{"use strict";var t={n:e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return t.d(r,{a:r}),r},d:(e,r)=>{for(var n in r)t.o(r,n)&&!t.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:r[n]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e)};const e=window.wp.element,r=window.wp.domReady;var n=t.n(r);const o=window.React,l=window.wp.components,a=window.wp.i18n,i=window.wp.apiFetch;var s=t.n(i);function m({name:t,attributes:e}){return`\x3c!-- wp:${t} ${JSON.stringify(e)} /--\x3e`}const{parseHTMLtoBlocks:c}=JetFormBuilderParser;function d({clearHTML:t,rawHTML:r,setShowModal:n}){const[i,d]=(0,e.useState)(!1);return(0,o.createElement)(l.Flex,{justify:"space-between"},(0,o.createElement)(l.Button,{variant:"secondary",onClick:t},(0,a.__)("Back","jet-form-builder")),(0,o.createElement)(l.Button,{variant:"primary",onClick:async()=>{d(!0);try{const t=c(r);if(!t.length)return console.error((0,a.__)("JFB: Could not parse blocks","jet-form-builder"),r),void d(!1);const e=function(t){return t.map(m).join("\n\n")}(t),n=await s()({method:"POST",path:"/wp/v2/jet-form-builder",data:{title:(0,a.__)("Imported HTML Form","jet-form-builder")+" "+(new Date).toLocaleString("sv-SE").replace("T"," "),content:e,status:"publish"}});window.location.href=(t=>{const e=new URL(JetFormBuilderAdmin.edit_url);return e.searchParams.set("post",t),e.href})(n.id)}catch(t){console.error("Failed to create form:",t),d(!1)}},isBusy:i,disabled:i},(0,a.__)("Create Form","jet-form-builder")))}const{parseHTMLtoBlocks:u,getFormInnerFields:p}=JetFormBuilderParser;function f({setShowModal:t}){const[r,n]=(0,e.useState)(""),[i,s]=(0,e.useState)(""),[m,c]=(0,e.useState)(!1),[u,f]=(0,e.useState)("");return(0,o.createElement)(l.Modal,{style:{width:"60vw"},onRequestClose:()=>t(!1),title:(0,a.__)("Import HTML Form","jet-form-builder"),className:"jfb-html-parser-modal"},u&&(0,o.createElement)(l.Notice,{status:"error",isDismissible:!0,onRemove:()=>f("")},u),Boolean(i.length)?(0,o.createElement)(o.Fragment,null,(0,o.createElement)("div",{dangerouslySetInnerHTML:{__html:i},style:{padding:"2em 1em",backgroundColor:"#f6f7f7",marginBottom:"1em"}}),(0,o.createElement)(d,{clearHTML:()=>s(""),formHTML:i,rawHTML:r,setShowModal:t})):(0,o.createElement)(o.Fragment,null,(0,o.createElement)(l.TextareaControl,{label:(0,a.__)("Paste your HTML here","jet-form-builder"),value:r,onChange:n,rows:7}),(0,o.createElement)("ul",{style:{listStyle:"disc",paddingInlineStart:"1em"}},(0,o.createElement)("li",null,(0,a.__)("You can use any HTML code that contains form elements, but only headings, form controls, and buttons will be parsed.","jet-form-builder")),(0,o.createElement)("li",null,(0,a.__)("All the code you paste here will be parsed into a single Form, even if it contains more than one tag.","jet-form-builder")),(0,o.createElement)("li",null,(0,a.__)("The parser can only understand form elements and structure; it can't parse styling or behavior.","jet-form-builder"))),(0,o.createElement)(l.Flex,{justify:"flex-end",style:{marginTop:"1em"}},(0,o.createElement)(l.Button,{isPrimary:!0,isBusy:m,disabled:m||!r.trim().length,onClick:()=>{c(!0),f("");try{const t=p(r);s(`\n\t\t\t
    \n\t\t\t\t\n\t\t\t\t${t}\n\t\t\t
    \n\t\t\t`)}catch(t){console.error(t),f(t?.message||(0,a.__)("Failed to parse HTML.","jet-form-builder"))}finally{c(!1)}}},m?(0,a.__)("Parsing...","jet-form-builder"):(0,a.__)("Parse HTML","jet-form-builder")))))}function b(){const[t,r]=(0,e.useState)(!1);return(0,o.createElement)(e.Fragment,null,(0,o.createElement)("a",{href:"#",className:"page-title-action",onClick:t=>{t.preventDefault(),r(!0)}},(0,a.__)("Import from HTML","jet-form-builder")),t&&(0,o.createElement)(f,{setShowModal:r}))}n()((()=>{const t=document.querySelector('.page-title-action[href*="post-new.php"]');if(!t)return;const r=document.createElement("div");r.style.display="inline-flex",r.style.marginLeft="4px",t.after(r),(0,e.createRoot)(r).render(wp.element.createElement(b))}))})(); \ No newline at end of file diff --git a/modules/html-parser/assets/build/parser.asset.php b/modules/html-parser/assets/build/parser.asset.php index ab1132e95..116fd0c29 100644 --- a/modules/html-parser/assets/build/parser.asset.php +++ b/modules/html-parser/assets/build/parser.asset.php @@ -1 +1 @@ - array(), 'version' => 'ae91b12853b22c487bf1'); + array(), 'version' => '5688eb8ce1330f0c2256'); diff --git a/modules/html-parser/assets/build/parser.js b/modules/html-parser/assets/build/parser.js index ad18f0366..67b575c58 100644 --- a/modules/html-parser/assets/build/parser.js +++ b/modules/html-parser/assets/build/parser.js @@ -1,2 +1,2 @@ /*! For license information please see parser.js.LICENSE.txt */ -(()=>{var e={9465(e){"use strict";var t=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===r}(e)}(e)},r="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function i(e,t){return!1!==t.clone&&t.isMergeableObject(e)?A((r=e,Array.isArray(r)?[]:{}),e,t):e;var r}function n(e,t,r){return e.concat(t).map(function(e){return i(e,r)})}function s(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter(function(t){return Object.propertyIsEnumerable.call(e,t)}):[]}(e))}function o(e,t){try{return t in e}catch(e){return!1}}function A(e,r,a){(a=a||{}).arrayMerge=a.arrayMerge||n,a.isMergeableObject=a.isMergeableObject||t,a.cloneUnlessOtherwiseSpecified=i;var c=Array.isArray(r);return c===Array.isArray(e)?c?a.arrayMerge(e,r,a):function(e,t,r){var n={};return r.isMergeableObject(e)&&s(e).forEach(function(t){n[t]=i(e[t],r)}),s(t).forEach(function(s){(function(e,t){return o(e,t)&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))})(e,s)||(o(e,s)&&r.isMergeableObject(t[s])?n[s]=function(e,t){if(!t.customMerge)return A;var r=t.customMerge(e);return"function"==typeof r?r:A}(s,r)(e[s],t[s],r):n[s]=i(t[s],r))}),n}(e,r,a):i(r,a)}A.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce(function(e,r){return A(e,r,t)},{})};var a=A;e.exports=a},9899(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.attributeNames=t.elementNames=void 0,t.elementNames=new Map(["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(function(e){return[e.toLowerCase(),e]})),t.attributeNames=new Map(["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(function(e){return[e.toLowerCase(),e]}))},1047(e,t,r){"use strict";var i=this&&this.__assign||function(){return i=Object.assign||function(e){for(var t,r=1,i=arguments.length;r");case A.Comment:return"\x3c!--".concat(e.data,"--\x3e");case A.CDATA:return function(e){return"")}(e);case A.Script:case A.Style:case A.Tag:return function(e,t){var r;"foreign"===t.xmlMode&&(e.name=null!==(r=c.elementNames.get(e.name))&&void 0!==r?r:e.name,e.parent&&g.has(e.parent.name)&&(t=i(i({},t),{xmlMode:!1}))),!t.xmlMode&&f.has(e.name)&&(t=i(i({},t),{xmlMode:"foreign"}));var n="<".concat(e.name),s=function(e,t){var r;if(e){var i=!1===(null!==(r=t.encodeEntities)&&void 0!==r?r:t.decodeEntities)?u:t.xmlMode||"utf8"!==t.encodeEntities?a.encodeXML:a.escapeAttribute;return Object.keys(e).map(function(r){var n,s,o=null!==(n=e[r])&&void 0!==n?n:"";return"foreign"===t.xmlMode&&(r=null!==(s=c.attributeNames.get(r))&&void 0!==s?s:r),t.emptyAttrs||t.xmlMode||""!==o?"".concat(r,'="').concat(i(o),'"'):r}).join(" ")}}(e.attribs,t);return s&&(n+=" ".concat(s)),0===e.children.length&&(t.xmlMode?!1!==t.selfClosingTags:t.selfClosingTags&&h.has(e.name))?(t.xmlMode||(n+=" "),n+="/>"):(n+=">",e.children.length>0&&(n+=d(e.children,t)),!t.xmlMode&&h.has(e.name)||(n+=""))),n}(e,t);case A.Text:return function(e,t){var r,i=e.data||"";return!1===(null!==(r=t.encodeEntities)&&void 0!==r?r:t.decodeEntities)||!t.xmlMode&&e.parent&&l.has(e.parent.name)||(i=t.xmlMode||"utf8"!==t.encodeEntities?(0,a.encodeXML)(i):(0,a.escapeText)(i)),i}(e,t)}}t.render=d,t.default=d;var g=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignObject","desc","title"]),f=new Set(["svg","math"])},8788(e,t){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.Doctype=t.CDATA=t.Tag=t.Style=t.Script=t.Comment=t.Directive=t.Text=t.Root=t.isTag=t.ElementType=void 0,function(e){e.Root="root",e.Text="text",e.Directive="directive",e.Comment="comment",e.Script="script",e.Style="style",e.Tag="tag",e.CDATA="cdata",e.Doctype="doctype"}(r=t.ElementType||(t.ElementType={})),t.isTag=function(e){return e.type===r.Tag||e.type===r.Script||e.type===r.Style},t.Root=r.Root,t.Text=r.Text,t.Directive=r.Directive,t.Comment=r.Comment,t.Script=r.Script,t.Style=r.Style,t.Tag=r.Tag,t.CDATA=r.CDATA,t.Doctype=r.Doctype},4576(e,t,r){"use strict";var i=this&&this.__createBinding||(Object.create?function(e,t,r,i){void 0===i&&(i=r);var n=Object.getOwnPropertyDescriptor(t,r);n&&!("get"in n?!t.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,i,n)}:function(e,t,r,i){void 0===i&&(i=r),e[i]=t[r]}),n=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||i(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),t.DomHandler=void 0;var s=r(8788),o=r(3838);n(r(3838),t);var A={withStartIndices:!1,withEndIndices:!1,xmlMode:!1},a=function(){function e(e,t,r){this.dom=[],this.root=new o.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null,"function"==typeof t&&(r=t,t=A),"object"==typeof e&&(t=e,e=void 0),this.callback=null!=e?e:null,this.options=null!=t?t:A,this.elementCB=null!=r?r:null}return e.prototype.onparserinit=function(e){this.parser=e},e.prototype.onreset=function(){this.dom=[],this.root=new o.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null},e.prototype.onend=function(){this.done||(this.done=!0,this.parser=null,this.handleCallback(null))},e.prototype.onerror=function(e){this.handleCallback(e)},e.prototype.onclosetag=function(){this.lastNode=null;var e=this.tagStack.pop();this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),this.elementCB&&this.elementCB(e)},e.prototype.onopentag=function(e,t){var r=this.options.xmlMode?s.ElementType.Tag:void 0,i=new o.Element(e,t,void 0,r);this.addNode(i),this.tagStack.push(i)},e.prototype.ontext=function(e){var t=this.lastNode;if(t&&t.type===s.ElementType.Text)t.data+=e,this.options.withEndIndices&&(t.endIndex=this.parser.endIndex);else{var r=new o.Text(e);this.addNode(r),this.lastNode=r}},e.prototype.oncomment=function(e){if(this.lastNode&&this.lastNode.type===s.ElementType.Comment)this.lastNode.data+=e;else{var t=new o.Comment(e);this.addNode(t),this.lastNode=t}},e.prototype.oncommentend=function(){this.lastNode=null},e.prototype.oncdatastart=function(){var e=new o.Text(""),t=new o.CDATA([e]);this.addNode(t),e.parent=t,this.lastNode=e},e.prototype.oncdataend=function(){this.lastNode=null},e.prototype.onprocessinginstruction=function(e,t){var r=new o.ProcessingInstruction(e,t);this.addNode(r)},e.prototype.handleCallback=function(e){if("function"==typeof this.callback)this.callback(e,this.dom);else if(e)throw e},e.prototype.addNode=function(e){var t=this.tagStack[this.tagStack.length-1],r=t.children[t.children.length-1];this.options.withStartIndices&&(e.startIndex=this.parser.startIndex),this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),t.children.push(e),r&&(e.prev=r,r.next=e),e.parent=t,this.lastNode=null},e}();t.DomHandler=a,t.default=a},3838(e,t,r){"use strict";var i,n=this&&this.__extends||(i=function(e,t){return i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},i(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}i(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),s=this&&this.__assign||function(){return s=Object.assign||function(e){for(var t,r=1,i=arguments.length;r0?this.children[this.children.length-1]:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"childNodes",{get:function(){return this.children},set:function(e){this.children=e},enumerable:!1,configurable:!0}),t}(A);t.NodeWithChildren=h;var d=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=o.ElementType.CDATA,t}return n(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 4},enumerable:!1,configurable:!0}),t}(h);t.CDATA=d;var p=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=o.ElementType.Root,t}return n(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 9},enumerable:!1,configurable:!0}),t}(h);t.Document=p;var g=function(e){function t(t,r,i,n){void 0===i&&(i=[]),void 0===n&&(n="script"===t?o.ElementType.Script:"style"===t?o.ElementType.Style:o.ElementType.Tag);var s=e.call(this,i)||this;return s.name=t,s.attribs=r,s.type=n,s}return n(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"tagName",{get:function(){return this.name},set:function(e){this.name=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"attributes",{get:function(){var e=this;return Object.keys(this.attribs).map(function(t){var r,i;return{name:t,value:e.attribs[t],namespace:null===(r=e["x-attribsNamespace"])||void 0===r?void 0:r[t],prefix:null===(i=e["x-attribsPrefix"])||void 0===i?void 0:i[t]}})},enumerable:!1,configurable:!0}),t}(h);function f(e){return(0,o.isTag)(e)}function m(e){return e.type===o.ElementType.CDATA}function b(e){return e.type===o.ElementType.Text}function y(e){return e.type===o.ElementType.Comment}function w(e){return e.type===o.ElementType.Directive}function C(e){return e.type===o.ElementType.Root}function I(e,t){var r;if(void 0===t&&(t=!1),b(e))r=new c(e.data);else if(y(e))r=new l(e.data);else if(f(e)){var i=t?B(e.children):[],n=new g(e.name,s({},e.attribs),i);i.forEach(function(e){return e.parent=n}),null!=e.namespace&&(n.namespace=e.namespace),e["x-attribsNamespace"]&&(n["x-attribsNamespace"]=s({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(n["x-attribsPrefix"]=s({},e["x-attribsPrefix"])),r=n}else if(m(e)){i=t?B(e.children):[];var o=new d(i);i.forEach(function(e){return e.parent=o}),r=o}else if(C(e)){i=t?B(e.children):[];var A=new p(i);i.forEach(function(e){return e.parent=A}),e["x-mode"]&&(A["x-mode"]=e["x-mode"]),r=A}else{if(!w(e))throw new Error("Not implemented yet: ".concat(e.type));var a=new u(e.name,e.data);null!=e["x-name"]&&(a["x-name"]=e["x-name"],a["x-publicId"]=e["x-publicId"],a["x-systemId"]=e["x-systemId"]),r=a}return r.startIndex=e.startIndex,r.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(r.sourceCodeLocation=e.sourceCodeLocation),r}function B(e){for(var t=e.map(function(e){return I(e,!0)}),r=1;r=0;){var r=e[t];if(t>0&&e.lastIndexOf(r,t-1)>=0)e.splice(t,1);else for(var i=r.parent;i;i=i.parent)if(e.includes(i)){e.splice(t,1);break}}return e},t.compareDocumentPosition=s,t.uniqueSort=function(e){return(e=e.filter(function(e,t,r){return!r.includes(e,t+1)})).sort(function(e,t){var r=s(e,t);return r&i.PRECEDING?-1:r&i.FOLLOWING?1:0}),e};var i,n=r(4576);function s(e,t){var r=[],s=[];if(e===t)return 0;for(var o=(0,n.hasChildren)(e)?e:e.parent;o;)r.unshift(o),o=o.parent;for(o=(0,n.hasChildren)(t)?t:t.parent;o;)s.unshift(o),o=o.parent;for(var A=Math.min(r.length,s.length),a=0;al.indexOf(h)?c===t?i.FOLLOWING|i.CONTAINED_BY:i.FOLLOWING:c===e?i.PRECEDING|i.CONTAINS:i.PRECEDING}!function(e){e[e.DISCONNECTED=1]="DISCONNECTED",e[e.PRECEDING=2]="PRECEDING",e[e.FOLLOWING=4]="FOLLOWING",e[e.CONTAINS=8]="CONTAINS",e[e.CONTAINED_BY=16]="CONTAINED_BY"}(i||(t.DocumentPosition=i={}))},2133(e,t,r){"use strict";var i=this&&this.__createBinding||(Object.create?function(e,t,r,i){void 0===i&&(i=r);var n=Object.getOwnPropertyDescriptor(t,r);n&&!("get"in n?!t.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,i,n)}:function(e,t,r,i){void 0===i&&(i=r),e[i]=t[r]}),n=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||i(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),t.hasChildren=t.isDocument=t.isComment=t.isText=t.isCDATA=t.isTag=void 0,n(r(3380),t),n(r(7427),t),n(r(2472),t),n(r(6841),t),n(r(5622),t),n(r(3632),t),n(r(9332),t);var s=r(4576);Object.defineProperty(t,"isTag",{enumerable:!0,get:function(){return s.isTag}}),Object.defineProperty(t,"isCDATA",{enumerable:!0,get:function(){return s.isCDATA}}),Object.defineProperty(t,"isText",{enumerable:!0,get:function(){return s.isText}}),Object.defineProperty(t,"isComment",{enumerable:!0,get:function(){return s.isComment}}),Object.defineProperty(t,"isDocument",{enumerable:!0,get:function(){return s.isDocument}}),Object.defineProperty(t,"hasChildren",{enumerable:!0,get:function(){return s.hasChildren}})},5622(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.testElement=function(e,t){var r=a(e);return!r||r(t)},t.getElements=function(e,t,r,i){void 0===i&&(i=1/0);var s=a(e);return s?(0,n.filter)(s,t,r,i):[]},t.getElementById=function(e,t,r){return void 0===r&&(r=!0),Array.isArray(t)||(t=[t]),(0,n.findOne)(o("id",e),t,r)},t.getElementsByTagName=function(e,t,r,i){return void 0===r&&(r=!0),void 0===i&&(i=1/0),(0,n.filter)(s.tag_name(e),t,r,i)},t.getElementsByClassName=function(e,t,r,i){return void 0===r&&(r=!0),void 0===i&&(i=1/0),(0,n.filter)(o("class",e),t,r,i)},t.getElementsByTagType=function(e,t,r,i){return void 0===r&&(r=!0),void 0===i&&(i=1/0),(0,n.filter)(s.tag_type(e),t,r,i)};var i=r(4576),n=r(6841),s={tag_name:function(e){return"function"==typeof e?function(t){return(0,i.isTag)(t)&&e(t.name)}:"*"===e?i.isTag:function(t){return(0,i.isTag)(t)&&t.name===e}},tag_type:function(e){return"function"==typeof e?function(t){return e(t.type)}:function(t){return t.type===e}},tag_contains:function(e){return"function"==typeof e?function(t){return(0,i.isText)(t)&&e(t.data)}:function(t){return(0,i.isText)(t)&&t.data===e}}};function o(e,t){return"function"==typeof t?function(r){return(0,i.isTag)(r)&&t(r.attribs[e])}:function(r){return(0,i.isTag)(r)&&r.attribs[e]===t}}function A(e,t){return function(r){return e(r)||t(r)}}function a(e){var t=Object.keys(e).map(function(t){var r=e[t];return Object.prototype.hasOwnProperty.call(s,t)?s[t](r):o(t,r)});return 0===t.length?null:t.reduce(A)}},2472(e,t){"use strict";function r(e){if(e.prev&&(e.prev.next=e.next),e.next&&(e.next.prev=e.prev),e.parent){var t=e.parent.children,r=t.lastIndexOf(e);r>=0&&t.splice(r,1)}e.next=null,e.prev=null,e.parent=null}Object.defineProperty(t,"__esModule",{value:!0}),t.removeElement=r,t.replaceElement=function(e,t){var r=t.prev=e.prev;r&&(r.next=t);var i=t.next=e.next;i&&(i.prev=t);var n=t.parent=e.parent;if(n){var s=n.children;s[s.lastIndexOf(e)]=t,e.parent=null}},t.appendChild=function(e,t){if(r(t),t.next=null,t.parent=e,e.children.push(t)>1){var i=e.children[e.children.length-2];i.next=t,t.prev=i}else t.prev=null},t.append=function(e,t){r(t);var i=e.parent,n=e.next;if(t.next=n,t.prev=e,e.next=t,t.parent=i,n){if(n.prev=t,i){var s=i.children;s.splice(s.lastIndexOf(n),0,t)}}else i&&i.children.push(t)},t.prependChild=function(e,t){if(r(t),t.parent=e,t.prev=null,1!==e.children.unshift(t)){var i=e.children[1];i.prev=t,t.next=i}else t.next=null},t.prepend=function(e,t){r(t);var i=e.parent;if(i){var n=i.children;n.splice(n.indexOf(e),0,t)}e.prev&&(e.prev.next=t),t.parent=i,t.prev=e.prev,t.next=e,e.prev=t}},6841(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.filter=function(e,t,r,i){return void 0===r&&(r=!0),void 0===i&&(i=1/0),n(e,Array.isArray(t)?t:[t],r,i)},t.find=n,t.findOneChild=function(e,t){return t.find(e)},t.findOne=function e(t,r,n){void 0===n&&(n=!0);for(var s=Array.isArray(r)?r:[r],o=0;o0){var a=e(t,A.children,!0);if(a)return a}}return null},t.existsOne=function e(t,r){return(Array.isArray(r)?r:[r]).some(function(r){return(0,i.isTag)(r)&&t(r)||(0,i.hasChildren)(r)&&e(t,r.children)})},t.findAll=function(e,t){for(var r=[],n=[Array.isArray(t)?t:[t]],s=[0];;)if(s[0]>=n[0].length){if(1===n.length)return r;n.shift(),s.shift()}else{var o=n[0][s[0]++];(0,i.isTag)(o)&&e(o)&&r.push(o),(0,i.hasChildren)(o)&&o.children.length>0&&(s.unshift(0),n.unshift(o.children))}};var i=r(4576);function n(e,t,r,n){for(var s=[],o=[Array.isArray(t)?t:[t]],A=[0];;)if(A[0]>=o[0].length){if(1===A.length)return s;o.shift(),A.shift()}else{var a=o[0][A[0]++];if(e(a)&&(s.push(a),--n<=0))return s;r&&(0,i.hasChildren)(a)&&a.children.length>0&&(A.unshift(0),o.unshift(a.children))}}},3380(e,t,r){"use strict";var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.getOuterHTML=A,t.getInnerHTML=function(e,t){return(0,n.hasChildren)(e)?e.children.map(function(e){return A(e,t)}).join(""):""},t.getText=function e(t){return Array.isArray(t)?t.map(e).join(""):(0,n.isTag)(t)?"br"===t.name?"\n":e(t.children):(0,n.isCDATA)(t)?e(t.children):(0,n.isText)(t)?t.data:""},t.textContent=function e(t){return Array.isArray(t)?t.map(e).join(""):(0,n.hasChildren)(t)&&!(0,n.isComment)(t)?e(t.children):(0,n.isText)(t)?t.data:""},t.innerText=function e(t){return Array.isArray(t)?t.map(e).join(""):(0,n.hasChildren)(t)&&(t.type===o.ElementType.Tag||(0,n.isCDATA)(t))?e(t.children):(0,n.isText)(t)?t.data:""};var n=r(4576),s=i(r(1047)),o=r(8788);function A(e,t){return(0,s.default)(e,t)}},7427(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getChildren=n,t.getParent=s,t.getSiblings=function(e){var t=s(e);if(null!=t)return n(t);for(var r=[e],i=e.prev,o=e.next;null!=i;)r.unshift(i),i=i.prev;for(;null!=o;)r.push(o),o=o.next;return r},t.getAttributeValue=function(e,t){var r;return null===(r=e.attribs)||void 0===r?void 0:r[t]},t.hasAttrib=function(e,t){return null!=e.attribs&&Object.prototype.hasOwnProperty.call(e.attribs,t)&&null!=e.attribs[t]},t.getName=function(e){return e.name},t.nextElementSibling=function(e){for(var t=e.next;null!==t&&!(0,i.isTag)(t);)t=t.next;return t},t.prevElementSibling=function(e){for(var t=e.prev;null!==t&&!(0,i.isTag)(t);)t=t.prev;return t};var i=r(4576);function n(e){return(0,i.hasChildren)(e)?e.children:[]}function s(e){return e.parent||null}},6861(e,t,r){"use strict";var i=this&&this.__createBinding||(Object.create?function(e,t,r,i){void 0===i&&(i=r);var n=Object.getOwnPropertyDescriptor(t,r);n&&!("get"in n?!t.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,i,n)}:function(e,t,r,i){void 0===i&&(i=r),e[i]=t[r]}),n=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),s=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)"default"!==r&&Object.prototype.hasOwnProperty.call(e,r)&&i(t,e,r);return n(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.decodeXML=t.decodeHTMLStrict=t.decodeHTMLAttribute=t.decodeHTML=t.determineBranch=t.EntityDecoder=t.DecodingMode=t.BinTrieFlags=t.fromCodePoint=t.replaceCodePoint=t.decodeCodePoint=t.xmlDecodeTree=t.htmlDecodeTree=void 0;var A=o(r(3708));t.htmlDecodeTree=A.default;var a=o(r(12));t.xmlDecodeTree=a.default;var c=s(r(887));t.decodeCodePoint=c.default;var l,u,h,d,p=r(887);function g(e){return e>=l.ZERO&&e<=l.NINE}function f(e){return e>=l.UPPER_A&&e<=l.UPPER_F||e>=l.LOWER_A&&e<=l.LOWER_F}function m(e){return e===l.EQUALS||function(e){return e>=l.UPPER_A&&e<=l.UPPER_Z||e>=l.LOWER_A&&e<=l.LOWER_Z||g(e)}(e)}Object.defineProperty(t,"replaceCodePoint",{enumerable:!0,get:function(){return p.replaceCodePoint}}),Object.defineProperty(t,"fromCodePoint",{enumerable:!0,get:function(){return p.fromCodePoint}}),function(e){e[e.NUM=35]="NUM",e[e.SEMI=59]="SEMI",e[e.EQUALS=61]="EQUALS",e[e.ZERO=48]="ZERO",e[e.NINE=57]="NINE",e[e.LOWER_A=97]="LOWER_A",e[e.LOWER_F=102]="LOWER_F",e[e.LOWER_X=120]="LOWER_X",e[e.LOWER_Z=122]="LOWER_Z",e[e.UPPER_A=65]="UPPER_A",e[e.UPPER_F=70]="UPPER_F",e[e.UPPER_Z=90]="UPPER_Z"}(l||(l={})),function(e){e[e.VALUE_LENGTH=49152]="VALUE_LENGTH",e[e.BRANCH_LENGTH=16256]="BRANCH_LENGTH",e[e.JUMP_TABLE=127]="JUMP_TABLE"}(u=t.BinTrieFlags||(t.BinTrieFlags={})),function(e){e[e.EntityStart=0]="EntityStart",e[e.NumericStart=1]="NumericStart",e[e.NumericDecimal=2]="NumericDecimal",e[e.NumericHex=3]="NumericHex",e[e.NamedEntity=4]="NamedEntity"}(h||(h={})),function(e){e[e.Legacy=0]="Legacy",e[e.Strict=1]="Strict",e[e.Attribute=2]="Attribute"}(d=t.DecodingMode||(t.DecodingMode={}));var b=function(){function e(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=h.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=d.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=h.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case h.EntityStart:return e.charCodeAt(t)===l.NUM?(this.state=h.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1)):(this.state=h.NamedEntity,this.stateNamedEntity(e,t));case h.NumericStart:return this.stateNumericStart(e,t);case h.NumericDecimal:return this.stateNumericDecimal(e,t);case h.NumericHex:return this.stateNumericHex(e,t);case h.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===l.LOWER_X?(this.state=h.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=h.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,r,i){if(t!==r){var n=r-t;this.result=this.result*Math.pow(i,n)+parseInt(e.substr(t,n),i),this.consumed+=n}},e.prototype.stateNumericHex=function(e,t){for(var r=t;t>14;t>14)){if(s===l.SEMI)return this.emitNamedEntityData(this.treeIndex,n,this.consumed+this.excess);this.decodeMode!==d.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,r=(this.decodeTree[t]&u.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,r){var i=this.decodeTree;return this.emitCodePoint(1===t?i[e]&~u.VALUE_LENGTH:i[e+1],r),3===t&&this.emitCodePoint(i[e+2],r),r},e.prototype.end=function(){var e;switch(this.state){case h.NamedEntity:return 0===this.result||this.decodeMode===d.Attribute&&this.result!==this.treeIndex?0:this.emitNotTerminatedNamedEntity();case h.NumericDecimal:return this.emitNumericEntity(0,2);case h.NumericHex:return this.emitNumericEntity(0,3);case h.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case h.EntityStart:return 0}},e}();function y(e){var t="",r=new b(e,function(e){return t+=(0,c.fromCodePoint)(e)});return function(e,i){for(var n=0,s=0;(s=e.indexOf("&",s))>=0;){t+=e.slice(n,s),r.startEntity(i);var o=r.write(e,s+1);if(o<0){n=s+r.end();break}n=s+o,s=0===o?n+1:n}var A=t+e.slice(n);return t="",A}}function w(e,t,r,i){var n=(t&u.BRANCH_LENGTH)>>7,s=t&u.JUMP_TABLE;if(0===n)return 0!==s&&i===s?r:-1;if(s){var o=i-s;return o<0||o>=n?-1:e[r+o]-1}for(var A=r,a=A+n-1;A<=a;){var c=A+a>>>1,l=e[c];if(li))return e[c+n];a=c-1}}return-1}t.EntityDecoder=b,t.determineBranch=w;var C=y(A.default),I=y(a.default);t.decodeHTML=function(e,t){return void 0===t&&(t=d.Legacy),C(e,t)},t.decodeHTMLAttribute=function(e){return C(e,d.Attribute)},t.decodeHTMLStrict=function(e){return C(e,d.Strict)},t.decodeXML=function(e){return I(e,d.Strict)}},887(e,t){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.replaceCodePoint=t.fromCodePoint=void 0;var i=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function n(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=i.get(e))&&void 0!==t?t:e}t.fromCodePoint=null!==(r=String.fromCodePoint)&&void 0!==r?r:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+String.fromCharCode(e)},t.replaceCodePoint=n,t.default=function(e){return(0,t.fromCodePoint)(n(e))}},9061(e,t,r){"use strict";var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.encodeNonAsciiHTML=t.encodeHTML=void 0;var n=i(r(349)),s=r(2312),o=/[\t\n!-,./:-@[-`\f{-}$\x80-\uFFFF]/g;function A(e,t){for(var r,i="",o=0;null!==(r=e.exec(t));){var A=r.index;i+=t.substring(o,A);var a=t.charCodeAt(A),c=n.default.get(a);if("object"==typeof c){if(A+1$\x80-\uFFFF]/g;var r=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function i(e){for(var i,n="",s=0;null!==(i=t.xmlReplacer.exec(e));){var o=i.index,A=e.charCodeAt(o),a=r.get(A);void 0!==a?(n+=e.substring(s,o)+a,s=o+1):(n+="".concat(e.substring(s,o),"&#x").concat((0,t.getCodePoint)(e,o).toString(16),";"),s=t.xmlReplacer.lastIndex+=Number(55296==(64512&A)))}return n+e.substr(s)}function n(e,t){return function(r){for(var i,n=0,s="";i=e.exec(r);)n!==i.index&&(s+=r.substring(n,i.index)),s+=t.get(i[0].charCodeAt(0)),n=i.index+1;return s+r.substring(n)}}t.getCodePoint=null!=String.prototype.codePointAt?function(e,t){return e.codePointAt(t)}:function(e,t){return 55296==(64512&e.charCodeAt(t))?1024*(e.charCodeAt(t)-55296)+e.charCodeAt(t+1)-56320+65536:e.charCodeAt(t)},t.encodeXML=i,t.escape=i,t.escapeUTF8=n(/[&<>'"]/g,r),t.escapeAttribute=n(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),t.escapeText=n(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]]))},3708(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀𝒵௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀𝔟g΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀𝔫ȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀𝔬ͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roð໻tré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)}))},12(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=new Uint16Array("Ȁaglq\tɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)}))},349(e,t){"use strict";function r(e){for(var t=1;t{if("string"!=typeof e)throw new TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}},3663(e,t){"use strict";function r(e){return"[object Object]"===Object.prototype.toString.call(e)}t.isPlainObject=function(e){var t,i;return!1!==r(e)&&(void 0===(t=e.constructor)||!1!==r(i=t.prototype)&&!1!==i.hasOwnProperty("isPrototypeOf"))}},9369(e,t){var r,i;void 0===(i="function"==typeof(r=function(){return function(e){function t(e){return" "===e||"\t"===e||"\n"===e||"\f"===e||"\r"===e}function r(t){var r,i=t.exec(e.substring(g));if(i)return r=i[0],g+=r.length,r}for(var i,n,s,o,A,a=e.length,c=/^[ \t\n\r\u000c]+/,l=/^[, \t\n\r\u000c]+/,u=/^[^ \t\n\r\u000c]+/,h=/[,]+$/,d=/^\d+$/,p=/^-?(?:[0-9]+|[0-9]*\.[0-9]+)(?:[eE][+-]?[0-9]+)?$/,g=0,f=[];;){if(r(l),g>=a)return f;i=r(u),n=[],","===i.slice(-1)?(i=i.replace(h,""),b()):m()}function m(){for(r(c),s="",o="in descriptor";;){if(A=e.charAt(g),"in descriptor"===o)if(t(A))s&&(n.push(s),s="",o="after descriptor");else{if(","===A)return g+=1,s&&n.push(s),void b();if("("===A)s+=A,o="in parens";else{if(""===A)return s&&n.push(s),void b();s+=A}}else if("in parens"===o)if(")"===A)s+=A,o="in descriptor";else{if(""===A)return n.push(s),void b();s+=A}else if("after descriptor"===o)if(t(A));else{if(""===A)return void b();o="in descriptor",g-=1}g+=1}}function b(){var t,r,s,o,A,a,c,l,u,h=!1,g={};for(o=0;o(e.nodes&&(e.nodes=h(e.nodes)),delete e.source,e))}function d(e){if(e[l]=!1,e.proxyOf.nodes)for(let t of e.proxyOf.nodes)d(t)}class p extends c{get first(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}append(...e){for(let t of e){let e=this.normalize(t,this.last);for(let t of e)this.proxyOf.nodes.push(t)}return this.markDirty(),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let t of this.nodes)t.cleanRaws(e)}each(e){if(!this.proxyOf.nodes)return;let t,r,i=this.getIterator();for(;this.indexes[i]"proxyOf"===t?e:e[t]?"each"===t||"string"==typeof t&&t.startsWith("walk")?(...r)=>e[t](...r.map(e=>"function"==typeof e?(t,r)=>e(t.toProxy(),r):e)):"every"===t||"some"===t?r=>e[t]((e,...t)=>r(e.toProxy(),...t)):"root"===t?()=>e.root().toProxy():"nodes"===t?e.nodes.map(e=>e.toProxy()):"first"===t||"last"===t?e[t].toProxy():e[t]:e[t],set:(e,t,r)=>(e[t]===r||(e[t]=r,"name"!==t&&"params"!==t&&"selector"!==t||e.markDirty()),!0)}}index(e){return"number"==typeof e?e:(e.proxyOf&&(e=e.proxyOf),this.proxyOf.nodes.indexOf(e))}insertAfter(e,t){let r,i=this.index(e),n=this.normalize(t,this.proxyOf.nodes[i]).reverse();i=this.index(e);for(let e of n)this.proxyOf.nodes.splice(i+1,0,e);for(let e in this.indexes)r=this.indexes[e],i(e[u]||p.rebuild(e),(e=e.proxyOf).parent&&e.parent.removeChild(e),e[l]&&d(e),e.raws||(e.raws={}),void 0===e.raws.before&&t&&void 0!==t.raws.before&&(e.raws.before=t.raws.before.replace(/\S/g,"")),e.parent=this.proxyOf,e))}prepend(...e){e=e.reverse();for(let t of e){let e=this.normalize(t,this.first,"prepend").reverse();for(let t of e)this.proxyOf.nodes.unshift(t);for(let t in this.indexes)this.indexes[t]=this.indexes[t]+e.length}return this.markDirty(),this}push(e){return e.parent=this,this.proxyOf.nodes.push(e),this}removeAll(){for(let e of this.proxyOf.nodes)e.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}removeChild(e){let t;e=this.index(e),this.proxyOf.nodes[e].parent=void 0,this.proxyOf.nodes.splice(e,1);for(let r in this.indexes)t=this.indexes[r],t>=e&&(this.indexes[r]=t-1);return this.markDirty(),this}replaceValues(e,t,r){return r||(r=t,t={}),this.walkDecls(i=>{t.props&&!t.props.includes(i.prop)||t.fast&&!i.value.includes(t.fast)||(i.value=i.value.replace(e,r))}),this.markDirty(),this}some(e){return this.nodes.some(e)}walk(e){return this.each((t,r)=>{let i;try{i=e(t,r)}catch(e){throw t.addToError(e)}return!1!==i&&t.walk&&(i=t.walk(e)),i})}walkAtRules(e,t){return t?e instanceof RegExp?this.walk((r,i)=>{if("atrule"===r.type&&e.test(r.name))return t(r,i)}):this.walk((r,i)=>{if("atrule"===r.type&&r.name===e)return t(r,i)}):(t=e,this.walk((e,r)=>{if("atrule"===e.type)return t(e,r)}))}walkComments(e){return this.walk((t,r)=>{if("comment"===t.type)return e(t,r)})}walkDecls(e,t){return t?e instanceof RegExp?this.walk((r,i)=>{if("decl"===r.type&&e.test(r.prop))return t(r,i)}):this.walk((r,i)=>{if("decl"===r.type&&r.prop===e)return t(r,i)}):(t=e,this.walk((e,r)=>{if("decl"===e.type)return t(e,r)}))}walkRules(e,t){return t?e instanceof RegExp?this.walk((r,i)=>{if("rule"===r.type&&e.test(r.selector))return t(r,i)}):this.walk((r,i)=>{if("rule"===r.type&&r.selector===e)return t(r,i)}):(t=e,this.walk((e,r)=>{if("rule"===e.type)return t(e,r)}))}}p.registerParse=e=>{n=e},p.registerRule=e=>{o=e},p.registerAtRule=e=>{i=e},p.registerRoot=e=>{s=e},e.exports=p,p.default=p,p.rebuild=e=>{"atrule"===e.type?Object.setPrototypeOf(e,i.prototype):"rule"===e.type?Object.setPrototypeOf(e,o.prototype):"decl"===e.type?Object.setPrototypeOf(e,a.prototype):"comment"===e.type?Object.setPrototypeOf(e,A.prototype):"root"===e.type&&Object.setPrototypeOf(e,s.prototype),e[u]=!0,e.nodes&&e.nodes.forEach(e=>{p.rebuild(e)})}},259(e,t,r){"use strict";let i=r(4318),n=r(6973);class s extends Error{constructor(e,t,r,i,n,o){super(e),this.name="CssSyntaxError",this.reason=e,n&&(this.file=n),i&&(this.source=i),o&&(this.plugin=o),void 0!==t&&void 0!==r&&("number"==typeof t?(this.line=t,this.column=r):(this.line=t.line,this.column=t.column,this.endLine=r.line,this.endColumn=r.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,s)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(e){if(!this.source)return"";let t=this.source;null==e&&(e=i.isColorSupported);let r=e=>e,s=e=>e,o=e=>e;if(e){let{bold:e,gray:t,red:A}=i.createColors(!0);s=t=>e(A(t)),r=e=>t(e),n&&(o=e=>n(e))}let A=t.split(/\r?\n/),a=Math.max(this.line-3,0),c=Math.min(this.line+2,A.length),l=String(c).length;return A.slice(a,c).map((e,t)=>{let i=a+1+t,n=" "+(" "+i).slice(-l)+" | ";if(i===this.line){if(e.length>160){let t=20,i=Math.max(0,this.column-t),A=Math.max(this.column+t,this.endColumn+t),a=e.slice(i,A),c=r(n.replace(/\d/g," "))+e.slice(0,Math.min(this.column-1,t-1)).replace(/[^\t]/g," ");return s(">")+r(n)+o(a)+"\n "+c+s("^")}let t=r(n.replace(/\d/g," "))+e.slice(0,this.column-1).replace(/[^\t]/g," ");return s(">")+r(n)+o(e)+"\n "+t+s("^")}return" "+r(n)+o(e)}).join("\n")}toString(){let e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e}}e.exports=s,s.default=s},1281(e,t,r){"use strict";let i=r(5621);class n extends i{get variable(){return this.prop.startsWith("--")||"$"===this.prop[0]}constructor(e){e&&void 0!==e.value&&"string"!=typeof e.value&&(e={...e,value:String(e.value)}),super(e),this.type="decl"}}e.exports=n,n.default=n},2648(e,t,r){"use strict";let i,n,s=r(9062);class o extends s{constructor(e){super({type:"document",...e}),this.nodes||(this.nodes=[])}toResult(e={}){return new i(new n,this,e).stringify()}}o.registerLazyResult=e=>{i=e},o.registerProcessor=e=>{n=e},e.exports=o,o.default=o},6251(e,t,r){"use strict";let i=r(5571),n=r(1176),s=r(1281),o=r(6173),A=r(5923),a=r(9901),c=r(9463);function l(e,t){if(Array.isArray(e))return e.map(e=>l(e));let{inputs:r,...u}=e;if(r){t=[];for(let e of r){let r={...e,__proto__:o.prototype};r.map&&(r.map={...r.map,__proto__:A.prototype}),t.push(r)}}if(u.nodes&&(u.nodes=e.nodes.map(e=>l(e,t))),u.source){let{inputId:e,...r}=u.source;u.source=r,null!=e&&(u.source.input=t[e])}if("root"===u.type)return new a(u);if("decl"===u.type)return new s(u);if("rule"===u.type)return new c(u);if("comment"===u.type)return new n(u);if("atrule"===u.type)return new i(u);throw new Error("Unknown node type: "+e.type)}e.exports=l,l.default=l},6173(e,t,r){"use strict";let{nanoid:i}=r(6703),{isAbsolute:n,resolve:s}=r(8818),{SourceMapConsumer:o,SourceMapGenerator:A}=r(5887),{fileURLToPath:a,pathToFileURL:c}=r(1866),l=r(259),u=r(5923),h=r(6973),d=Symbol("lineToIndexCache"),p=Boolean(o&&A),g=Boolean(s&&n);function f(e){if(e[d])return e[d];let t=e.css.split("\n"),r=new Array(t.length),i=0;for(let e=0,n=t.length;e"),this.map&&(this.map.file=this.from)}error(e,t,r,i={}){let n,s,o,A,a;if(t&&"object"==typeof t){let e=t,i=r;if("number"==typeof e.offset){A=e.offset;let i=this.fromOffset(A);t=i.line,r=i.col}else t=e.line,r=e.column,A=this.fromLineAndColumn(t,r);if("number"==typeof i.offset){o=i.offset;let e=this.fromOffset(o);s=e.line,n=e.col}else s=i.line,n=i.column,o=this.fromLineAndColumn(i.line,i.column)}else if(r)A=this.fromLineAndColumn(t,r);else{A=t;let e=this.fromOffset(A);t=e.line,r=e.col}let u=this.origin(t,r,s,n);return a=u?new l(e,void 0===u.endLine?u.line:{column:u.column,line:u.line},void 0===u.endLine?u.column:{column:u.endColumn,line:u.endLine},u.source,u.file,i.plugin):new l(e,void 0===s?t:{column:r,line:t},void 0===s?r:{column:n,line:s},this.css,this.file,i.plugin),a.input={column:r,endColumn:n,endLine:s,endOffset:o,line:t,offset:A,source:this.css},this.file&&(c&&(a.input.url=c(this.file).toString()),a.input.file=this.file),a}fromLineAndColumn(e,t){return f(this)[e-1]+t-1}fromOffset(e){let t=f(this),r=0;if(e>=t[t.length-1])r=t.length-1;else{let i,n=t.length-2;for(;r>1),e=t[i+1])){r=i;break}r=i+1}}return{col:e-t[r]+1,line:r+1}}mapResolve(e){return/^\w+:\/\//.test(e)?e:s(this.map.consumer().sourceRoot||this.map.root||".",e)}origin(e,t,r,i){if(!this.map)return!1;let s,o,A=this.map.consumer(),l=A.originalPositionFor({column:t,line:e});if(!l.source)return!1;"number"==typeof r&&(s=A.originalPositionFor({column:i,line:r})),o=n(l.source)?c(l.source):new URL(l.source,this.map.consumer().sourceRoot||c(this.map.mapFile));let u={column:l.column,endColumn:s&&s.column,endLine:s&&s.line,line:l.line,url:o.toString()};if("file:"===o.protocol){if(!a)throw new Error("file: protocol is not available in this PostCSS build");u.file=a(o)}let h=A.sourceContentFor(l.source);return h&&(u.source=h),u}toJSON(){let e={};for(let t of["hasBOM","css","file","id"])null!=this[t]&&(e[t]=this[t]);return this.map&&(e.map={...this.map},e.map.consumerCache&&(e.map.consumerCache=void 0)),e}}e.exports=m,m.default=m,h&&h.registerInput&&h.registerInput(m)},4333(e,t,r){"use strict";let i=r(9062),n=r(2648),s=r(6099),o=r(3922),A=r(780),a=r(9901),c=r(9068),{isClean:l,my:u}=r(6644);r(3471);const h={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},d={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},p={Once:!0,postcssPlugin:!0,prepare:!0};function g(e){return"object"==typeof e&&"function"==typeof e.then}function f(e){let t=!1,r=h[e.type];return"decl"===e.type?t=e.prop.toLowerCase():"atrule"===e.type&&(t=e.name.toLowerCase()),t&&e.append?[r,r+"-"+t,0,r+"Exit",r+"Exit-"+t]:t?[r,r+"-"+t,r+"Exit",r+"Exit-"+t]:e.append?[r,0,r+"Exit"]:[r,r+"Exit"]}function m(e){let t;return t="document"===e.type?["Document",0,"DocumentExit"]:"root"===e.type?["Root",0,"RootExit"]:f(e),{eventIndex:0,events:t,iterator:0,node:e,visitorIndex:0,visitors:[]}}function b(e){return e[l]=!1,e.nodes&&e.nodes.forEach(e=>b(e)),e}let y={};class w{get content(){return this.stringify().content}get css(){return this.stringify().css}get map(){return this.stringify().map}get messages(){return this.sync().messages}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){return this.sync().root}get[Symbol.toStringTag](){return"LazyResult"}constructor(e,t,r){let n;if(this.stringified=!1,this.processed=!1,"object"!=typeof t||null===t||"root"!==t.type&&"document"!==t.type)if(t instanceof w||t instanceof A)n=b(t.root),t.map&&(void 0===r.map&&(r.map={}),r.map.inline||(r.map.inline=!1),r.map.prev=t.map);else{let e=o;r.syntax&&(e=r.syntax.parse),r.parser&&(e=r.parser),e.parse&&(e=e.parse);try{n=e(t,r)}catch(e){this.processed=!0,this.error=e}n&&!n[u]&&i.rebuild(n)}else n=b(t);this.result=new A(e,n,r),this.helpers={...y,postcss:y,result:this.result},this.plugins=this.processor.plugins.map(e=>"object"==typeof e&&e.prepare?{...e,...e.prepare(this.result)}:e)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(e,t){let r=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,"CssSyntaxError"!==e.name||e.plugin?r.postcssVersion:(e.plugin=r.postcssPlugin,e.setMessage())}catch(e){console&&console.error&&console.error(e)}return e}prepareVisitors(){this.listeners={};let e=(e,t,r)=>{this.listeners[t]||(this.listeners[t]=[]),this.listeners[t].push([e,r])};for(let t of this.plugins)if("object"==typeof t)for(let r in t){if(!d[r]&&/^[A-Z]/.test(r))throw new Error(`Unknown event ${r} in ${t.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!p[r])if("object"==typeof t[r])for(let i in t[r])e(t,"*"===i?r:r+"-"+i.toLowerCase(),t[r][i]);else"function"==typeof t[r]&&e(t,r,t[r])}this.hasListener=Object.keys(this.listeners).length>0}async runAsync(){this.plugin=0;for(let e=0;e0;){let e=this.visitTick(t);if(g(e))try{await e}catch(e){let r=t[t.length-1].node;throw this.handleError(e,r)}}}if(this.listeners.OnceExit)for(let[t,r]of this.listeners.OnceExit){this.result.lastPlugin=t;try{if("document"===e.type){let t=e.nodes.map(e=>r(e,this.helpers));await Promise.all(t)}else await r(e,this.helpers)}catch(e){throw this.handleError(e)}}}return this.processed=!0,this.stringify()}runOnRoot(e){this.result.lastPlugin=e;try{if("object"==typeof e&&e.Once){if("document"===this.result.root.type){let t=this.result.root.nodes.map(t=>e.Once(t,this.helpers));return g(t[0])?Promise.all(t):t}return e.Once(this.result.root,this.helpers)}if("function"==typeof e)return e(this.result.root,this.result)}catch(e){throw this.handleError(e)}}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let e=this.result.opts,t=c;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);let r=new s(t,this.result.root,this.result.opts).generate();return this.result.css=r[0],this.result.map=r[1],this.result}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let e of this.plugins)if(g(this.runOnRoot(e)))throw this.getAsyncError();if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[l];)e[l]=!0,this.walkSync(e);if(this.listeners.OnceExit)if("document"===e.type)for(let t of e.nodes)this.visitSync(this.listeners.OnceExit,t);else this.visitSync(this.listeners.OnceExit,e)}return this.result}then(e,t){return this.async().then(e,t)}toString(){return this.css}visitSync(e,t){for(let[r,i]of e){let e;this.result.lastPlugin=r;try{e=i(t,this.helpers)}catch(e){throw this.handleError(e,t.proxyOf)}if("root"!==t.type&&"document"!==t.type&&!t.parent)return!0;if(g(e))throw this.getAsyncError()}}visitTick(e){let t=e[e.length-1],{node:r,visitors:i}=t;if("root"!==r.type&&"document"!==r.type&&!r.parent)return void e.pop();if(i.length>0&&t.visitorIndex{e[l]||this.walkSync(e)});else{let t=this.listeners[r];if(t&&this.visitSync(t,e.toProxy()))return}}warnings(){return this.sync().warnings()}}w.registerPostcss=e=>{y=e},e.exports=w,w.default=w,a.registerLazyResult(w),n.registerLazyResult(w)},5653(e){"use strict";let t={comma:e=>t.split(e,[","],!0),space:e=>t.split(e,[" ","\n","\t"]),split(e,t,r){let i=[],n="",s=!1,o=0,A=!1,a="",c=!1;for(let r of e)c?c=!1:"\\"===r?c=!0:A?r===a&&(A=!1):'"'===r||"'"===r?(A=!0,a=r):"("===r?o+=1:")"===r?o>0&&(o-=1):0===o&&t.includes(r)&&(s=!0),s?(""!==n&&i.push(n.trim()),n="",s=!1):n+=r;return(r||""!==n)&&i.push(n.trim()),i}};e.exports=t,t.default=t},6099(e,t,r){"use strict";let{dirname:i,relative:n,resolve:s,sep:o}=r(8818),{SourceMapConsumer:A,SourceMapGenerator:a}=r(5887),{pathToFileURL:c}=r(1866),l=r(6173),u=Boolean(A&&a),h=Boolean(i&&s&&n&&o);e.exports=class{constructor(e,t,r,i){this.stringify=e,this.mapOpts=r.map||{},this.root=t,this.opts=r,this.css=i,this.originalCSS=i,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}addAnnotation(){let e;e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:"function"==typeof this.mapOpts.annotation?this.mapOpts.annotation(this.opts.to,this.root):this.outputFile()+".map";let t="\n";this.css.includes("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"}applyPrevMaps(){for(let e of this.previous()){let t,r=this.toUrl(this.path(e.file)),n=e.root||i(e.file);!1===this.mapOpts.sourcesContent?(t=new A(e.text),t.sourcesContent&&(t.sourcesContent=null)):t=e.consumer(),this.map.applySourceMap(t,r,this.toUrl(this.path(n)))}}clearAnnotation(){if(!1!==this.mapOpts.annotation)if(this.root){let e;for(let t=this.root.nodes.length-1;t>=0;t--)e=this.root.nodes[t],"comment"===e.type&&e.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(t)}else if(this.css){let e;for(;-1!==(e=this.css.lastIndexOf("/*#"));){let t=this.css.indexOf("*/",e+3);if(-1===t)break;for(;e>0&&"\n"===this.css[e-1];)e--;this.css=this.css.slice(0,e)+this.css.slice(t+2)}}}generate(){if(this.clearAnnotation(),h&&u&&this.isMap())return this.generateMap();{let e="";return this.stringify(this.root,t=>{e+=t}),[e]}}generateMap(){if(this.root)this.generateString();else if(1===this.previous().length){let e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=a.fromSourceMap(e,{ignoreInvalidMapping:!0})}else this.map=new a({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):""});return this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline()?[this.css]:[this.css,this.map]}generateString(){this.css="",this.map=new a({file:this.outputFile(),ignoreInvalidMapping:!0});let e,t,r=1,i=1,n="",s={generated:{column:0,line:0},original:{column:0,line:0},source:""};this.stringify(this.root,(o,A,a)=>{if(this.css+=o,A&&"end"!==a&&(s.generated.line=r,s.generated.column=i-1,A.source&&A.source.start?(s.source=this.sourcePath(A),s.original.line=A.source.start.line,s.original.column=A.source.start.column-1,this.map.addMapping(s)):(s.source=n,s.original.line=1,s.original.column=0,this.map.addMapping(s))),t=o.match(/\n/g),t?(r+=t.length,e=o.lastIndexOf("\n"),i=o.length-e):i+=o.length,A&&"start"!==a){let e=A.parent||{raws:{}};("decl"===A.type||"atrule"===A.type&&!A.nodes)&&A===e.last&&!e.raws.semicolon||(A.source&&A.source.end?(s.source=this.sourcePath(A),s.original.line=A.source.end.line,s.original.column=A.source.end.column-1,s.generated.line=r,s.generated.column=i-2,this.map.addMapping(s)):(s.source=n,s.original.line=1,s.original.column=0,s.generated.line=r,s.generated.column=i-1,this.map.addMapping(s)))}})}isAnnotation(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some(e=>e.annotation))}isInline(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;let e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some(e=>e.inline))}isMap(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0}isSourcesContent(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some(e=>e.withContent())}outputFile(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}path(e){if(this.mapOpts.absolute)return e;if(60===e.charCodeAt(0))return e;if(/^\w+:\/\//.test(e))return e;let t=this.memoizedPaths.get(e);if(t)return t;let r=this.opts.to?i(this.opts.to):".";"string"==typeof this.mapOpts.annotation&&(r=i(s(r,this.mapOpts.annotation)));let o=n(r,e);return this.memoizedPaths.set(e,o),o}previous(){if(!this.previousMaps)if(this.previousMaps=[],this.root)this.root.walk(e=>{if(e.source&&e.source.input.map){let t=e.source.input.map;this.previousMaps.includes(t)||this.previousMaps.push(t)}});else{let e=new l(this.originalCSS,this.opts);e.map&&this.previousMaps.push(e.map)}return this.previousMaps}setSourcesContent(){let e={};if(this.root)this.root.walk(t=>{if(t.source){let r=t.source.input.from;if(r&&!e[r]){e[r]=!0;let i=this.usesFileUrls?this.toFileUrl(r):this.toUrl(this.path(r));this.map.setSourceContent(i,t.source.input.css)}}});else if(this.css){let e=this.opts.from?this.toUrl(this.path(this.opts.from)):"";this.map.setSourceContent(e,this.css)}}sourcePath(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}toBase64(e){return Buffer?Buffer.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}toFileUrl(e){let t=this.memoizedFileURLs.get(e);if(t)return t;if(c){let t=c(e).toString();return this.memoizedFileURLs.set(e,t),t}throw new Error("`map.absolute` option is not available in this PostCSS build")}toUrl(e){let t=this.memoizedURLs.get(e);if(t)return t;"\\"===o&&(e=e.replace(/\\/g,"/"));let r=encodeURI(e).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(e,r),r}}},1210(e,t,r){"use strict";let i=r(6099),n=r(3922),s=r(780),o=r(9068);r(3471);class A{get content(){return this.result.css}get css(){return this.result.css}get map(){return this.result.map}get messages(){return[]}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){if(this._root)return this._root;let e,t=n;try{e=t(this._css,this._opts)}catch(e){this.error=e}if(this.error)throw this.error;return this._root=e,e}get[Symbol.toStringTag](){return"NoWorkResult"}constructor(e,t,r){t=t.toString(),this.stringified=!1,this._processor=e,this._css=t,this._opts=r,this._map=void 0;let n=o;this.result=new s(this._processor,void 0,this._opts),this.result.css=t;let A=this;Object.defineProperty(this.result,"root",{get:()=>A.root});let a=new i(n,void 0,this._opts,t);if(a.isMap()){let[e,t]=a.generate();e&&(this.result.css=e),t&&(this.result.map=t)}else a.clearAnnotation(),this.result.css=a.css}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}sync(){if(this.error)throw this.error;return this.result}then(e,t){return this.async().then(e,t)}toString(){return this._css}warnings(){return[]}}e.exports=A,A.default=A},5621(e,t,r){"use strict";let i=r(259),n=r(2803),s=r(9068),{isClean:o,my:A}=r(6644);function a(e,t){let r=new e.constructor;for(let i in e){if(!Object.prototype.hasOwnProperty.call(e,i))continue;if("proxyCache"===i)continue;let n=e[i],s=typeof n;"parent"===i&&"object"===s?t&&(r[i]=t):"source"===i?r[i]=n:Array.isArray(n)?r[i]=n.map(e=>a(e,r)):("object"===s&&null!==n&&(n=a(n)),r[i]=n)}return r}function c(e,t){if(t&&void 0!==t.offset)return t.offset;let r=1,i=1,n=0;for(let s=0;s"proxyOf"===t?e:"root"===t?()=>e.root().toProxy():e[t],set:(e,t,r)=>(e[t]===r||(e[t]=r,"prop"!==t&&"value"!==t&&"name"!==t&&"params"!==t&&"important"!==t&&"text"!==t||e.markDirty()),!0)}}markClean(){this[o]=!0}markDirty(){if(this[o]){this[o]=!1;let e=this;for(;e=e.parent;)e[o]=!1}}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}positionBy(e={}){let t=this.source.start;if(e.index)t=this.positionInside(e.index);else if(e.word){let r="document"in this.source.input?this.source.input.document:this.source.input.css,i=r.slice(c(r,this.source.start),c(r,this.source.end)).indexOf(e.word);-1!==i&&(t=this.positionInside(i))}return t}positionInside(e){let t=this.source.start.column,r=this.source.start.line,i="document"in this.source.input?this.source.input.document:this.source.input.css,n=c(i,this.source.start),s=n+e;for(let e=n;e"object"==typeof e&&e.toJSON?e.toJSON(null,t):e);else if("object"==typeof i&&i.toJSON)r[e]=i.toJSON(null,t);else if("source"===e){if(null==i)continue;let s=t.get(i.input);null==s&&(s=n,t.set(i.input,n),n++),r[e]={end:i.end,inputId:s,start:i.start}}else r[e]=i}return i&&(r.inputs=[...t.keys()].map(e=>e.toJSON())),r}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}toString(e=s){e.stringify&&(e=e.stringify);let t="";return e(this,e=>{t+=e}),t}warn(e,t,r={}){let i={node:this};for(let e in r)i[e]=r[e];return e.warn(t,i)}}e.exports=l,l.default=l},3922(e,t,r){"use strict";let i=r(9062),n=r(6173),s=r(5266);function o(e,t){let r=new n(e,t),i=new s(r);try{i.parse()}catch(e){throw e}return i.root}e.exports=o,o.default=o,i.registerParse(o)},5266(e,t,r){"use strict";let i=r(5571),n=r(1176),s=r(1281),o=r(9901),A=r(9463),a=r(6120);const c={empty:!0,space:!0};e.exports=class{constructor(e){this.input=e,this.root=new o,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:e,start:{column:1,line:1,offset:0}}}atrule(e){let t,r,n,s=new i;s.name=e[1].slice(1),""===s.name&&this.unnamedAtrule(s,e),this.init(s,e[2]);let o=!1,A=!1,a=[],c=[];for(;!this.tokenizer.endOfFile();){if(t=(e=this.tokenizer.nextToken())[0],"("===t||"["===t?c.push("("===t?")":"]"):"{"===t&&c.length>0?c.push("}"):t===c[c.length-1]&&c.pop(),0===c.length){if(";"===t){s.source.end=this.getPosition(e[2]),s.source.end.offset++,this.semicolon=!0;break}if("{"===t){A=!0;break}if("}"===t){if(a.length>0){for(n=a.length-1,r=a[n];r&&"space"===r[0];)r=a[--n];r&&(s.source.end=this.getPosition(r[3]||r[2]),s.source.end.offset++)}this.end(e);break}a.push(e)}else a.push(e);if(this.tokenizer.endOfFile()){o=!0;break}}s.raws.between=this.spacesAndCommentsFromEnd(a),a.length?(s.raws.afterName=this.spacesAndCommentsFromStart(a),this.raw(s,"params",a),o&&(e=a[a.length-1],s.source.end=this.getPosition(e[3]||e[2]),s.source.end.offset++,this.spaces=s.raws.between,s.raws.between="")):(s.raws.afterName="",s.params=""),A&&(s.nodes=[],this.current=s)}checkMissedSemicolon(e){let t=this.colon(e);if(!1===t)return;let r,i=0;for(let n=t-1;n>=0&&(r=e[n],"space"===r[0]||(i+=1,2!==i));n--);throw this.input.error("Missed semicolon","word"===r[0]?r[3]+1:r[2])}colon(e){let t,r,i,n=0;for(let[s,o]of e.entries()){if(r=o,i=r[0],"("===i&&(n+=1),")"===i&&(n-=1),0===n&&":"===i){if(t){if("word"===t[0]&&"progid"===t[1])continue;return s}this.doubleColon(r)}t=r}return!1}comment(e){let t=new n;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++;let r=e[1].slice(2,-2);if(r.trim()){let e=r.match(/^(\s*)([^]*\S)(\s*)$/);t.text=e[2],t.raws.left=e[1],t.raws.right=e[3]}else t.text="",t.raws.left=r,t.raws.right=""}createTokenizer(){this.tokenizer=a(this.input)}decl(e,t){let r=new s;this.init(r,e[0][2]);let i,n=e[e.length-1];for(";"===n[0]&&(this.semicolon=!0,e.pop()),r.source.end=this.getPosition(n[3]||n[2]||function(e){for(let t=e.length-1;t>=0;t--){let r=e[t],i=r[3]||r[2];if(i)return i}}(e)),r.source.end.offset++;"word"!==e[0][0];)1===e.length&&this.unknownWord(e),r.raws.before+=e.shift()[1];for(r.source.start=this.getPosition(e[0][2]),r.prop="";e.length;){let t=e[0][0];if(":"===t||"space"===t||"comment"===t)break;r.prop+=e.shift()[1]}for(r.raws.between="";e.length;){if(i=e.shift(),":"===i[0]){r.raws.between+=i[1];break}"word"===i[0]&&/\w/.test(i[1])&&this.unknownWord([i]),r.raws.between+=i[1]}"_"!==r.prop[0]&&"*"!==r.prop[0]||(r.raws.before+=r.prop[0],r.prop=r.prop.slice(1));let o,A=[];for(;e.length&&(o=e[0][0],"space"===o||"comment"===o);)A.push(e.shift());this.precheckMissedSemicolon(e);for(let t=e.length-1;t>=0;t--){if(i=e[t],"!important"===i[1].toLowerCase()){r.important=!0;let i=this.stringFrom(e,t);i=this.spacesFromEnd(e)+i," !important"!==i&&(r.raws.important=i);break}if("important"===i[1].toLowerCase()){let i=e.slice(0),n="";for(let e=t;e>0;e--){let t=i[e][0];if(n.trim().startsWith("!")&&"space"!==t)break;n=i.pop()[1]+n}n.trim().startsWith("!")&&(r.important=!0,r.raws.important=n,e=i)}if("space"!==i[0]&&"comment"!==i[0])break}e.some(e=>"space"!==e[0]&&"comment"!==e[0])&&(r.raws.between+=A.map(e=>e[1]).join(""),A=[]),this.raw(r,"value",A.concat(e),t),r.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}emptyRule(e){let t=new A;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}end(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}freeSemicolon(e){if(this.spaces+=e[1],this.current.nodes){let t=this.current.nodes[this.current.nodes.length-1];t&&"rule"===t.type&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="",t.source.end=this.getPosition(e[2]),t.source.end.offset+=t.raws.ownSemicolon.length)}}getPosition(e){let t=this.input.fromOffset(e);return{column:t.col,line:t.line,offset:e}}init(e,t){this.current.push(e),e.source={input:this.input,start:this.getPosition(t)},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)}other(e){let t=!1,r=null,i=!1,n=null,s=[],o=e[1].startsWith("--"),A=[],a=e;for(;a;){if(r=a[0],A.push(a),"("===r||"["===r)n||(n=a),s.push("("===r?")":"]");else if(o&&i&&"{"===r)n||(n=a),s.push("}");else if(0===s.length){if(";"===r){if(i)return void this.decl(A,o);break}if("{"===r)return void this.rule(A);if("}"===r){this.tokenizer.back(A.pop()),t=!0;break}":"===r&&(i=!0)}else r===s[s.length-1]&&(s.pop(),0===s.length&&(n=null));a=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),s.length>0&&this.unclosedBracket(n),t&&i){if(!o)for(;A.length&&(a=A[A.length-1][0],"space"===a||"comment"===a);)this.tokenizer.back(A.pop());this.decl(A,o)}else this.unknownWord(A)}parse(){let e;for(;!this.tokenizer.endOfFile();)switch(e=this.tokenizer.nextToken(),e[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()}precheckMissedSemicolon(){}raw(e,t,r,i){let n,s,o,A,a=r.length,l="",u=!0;for(let e=0;ee+t[1],"");e.raws[t]={raw:i,value:l}}e[t]=l}rule(e){e.pop();let t=new A;this.init(t,e[0][2]),t.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(t,"selector",e),this.current=t}spacesAndCommentsFromEnd(e){let t,r="";for(;e.length&&(t=e[e.length-1][0],"space"===t||"comment"===t);)r=e.pop()[1]+r;return r}spacesAndCommentsFromStart(e){let t,r="";for(;e.length&&(t=e[0][0],"space"===t||"comment"===t);)r+=e.shift()[1];return r}spacesFromEnd(e){let t,r="";for(;e.length&&(t=e[e.length-1][0],"space"===t);)r=e.pop()[1]+r;return r}stringFrom(e,t){let r="";for(let i=t;i(r||(r=n()),r)}),n.process=function(e,t,r){return C([n(r)]).process(e,t)},n},C.stringify=y,C.parse=p,C.fromJSON=c,C.list=h,C.comment=e=>new n(e),C.atRule=e=>new i(e),C.decl=e=>new A(e),C.rule=e=>new b(e),C.root=e=>new m(e),C.document=e=>new a(e),C.CssSyntaxError=o,C.Declaration=A,C.Container=s,C.Processor=g,C.Document=a,C.Comment=n,C.Warning=w,C.AtRule=i,C.Result=f,C.Input=l,C.Rule=b,C.Root=m,C.Node=d,u.registerPostcss(C),e.exports=C,C.default=C},5923(e,t,r){"use strict";let{existsSync:i,readFileSync:n}=r(874),{dirname:s,join:o}=r(8818),{SourceMapConsumer:A,SourceMapGenerator:a}=r(5887);class c{constructor(e,t){if(!1===t.map)return;this.loadAnnotation(e),this.inline=this.startWith(this.annotation,"data:");let r=t.map?t.map.prev:void 0,i=this.loadMap(t.from,r);!this.mapFile&&t.from&&(this.mapFile=t.from),this.mapFile&&(this.root=s(this.mapFile)),i&&(this.text=i)}consumer(){return this.consumerCache||(this.consumerCache=new A(this.text)),this.consumerCache}decodeInline(e){let t=e.match(/^data:application\/json;charset=utf-?8,/)||e.match(/^data:application\/json,/);if(t)return decodeURIComponent(e.substr(t[0].length));let r=e.match(/^data:application\/json;charset=utf-?8;base64,/)||e.match(/^data:application\/json;base64,/);if(r)return i=e.substr(r[0].length),Buffer?Buffer.from(i,"base64").toString():window.atob(i);var i;let n=e.slice(22);throw n=n.slice(0,n.indexOf(",")),new Error("Unsupported source map encoding "+n)}getAnnotationURL(e){return e.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}isMap(e){return"object"==typeof e&&("string"==typeof e.mappings||"string"==typeof e._mappings||Array.isArray(e.sections))}loadAnnotation(e){let t=e.match(/\/\*\s*# sourceMappingURL=/g);if(!t)return;let r=e.lastIndexOf(t.pop()),i=e.indexOf("*/",r);r>-1&&i>-1&&(this.annotation=this.getAnnotationURL(e.substring(r,i)))}loadFile(e){if(this.root=s(e),i(e))return this.mapFile=e,n(e,"utf-8").toString().trim()}loadMap(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"!=typeof t){if(t instanceof A)return a.fromSourceMap(t).toString();if(t instanceof a)return t.toString();if(this.isMap(t))return JSON.stringify(t);throw new Error("Unsupported previous source map format: "+t.toString())}{let r=t(e);if(r){let e=this.loadFile(r);if(!e)throw new Error("Unable to load previous source map: "+r.toString());return e}}}else{if(this.inline)return this.decodeInline(this.annotation);if(this.annotation){let t=this.annotation;return e&&(t=o(s(e),t)),this.loadFile(t)}}}startWith(e,t){return!!e&&e.substr(0,t.length)===t}withContent(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}}e.exports=c,c.default=c},3149(e,t,r){"use strict";let i=r(2648),n=r(4333),s=r(1210),o=r(9901);class A{constructor(e=[]){this.version="8.5.9",this.plugins=this.normalize(e)}normalize(e){let t=[];for(let r of e)if(!0===r.postcss?r=r():r.postcss&&(r=r.postcss),"object"==typeof r&&Array.isArray(r.plugins))t=t.concat(r.plugins);else if("object"==typeof r&&r.postcssPlugin)t.push(r);else if("function"==typeof r)t.push(r);else if("object"!=typeof r||!r.parse&&!r.stringify)throw new Error(r+" is not a PostCSS plugin");return t}process(e,t={}){return this.plugins.length||t.parser||t.stringifier||t.syntax?new n(this,e,t):new s(this,e,t)}use(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}}e.exports=A,A.default=A,o.registerProcessor(A),i.registerProcessor(A)},780(e,t,r){"use strict";let i=r(1173);class n{get content(){return this.css}constructor(e,t,r){this.processor=e,this.messages=[],this.root=t,this.opts=r,this.css="",this.map=void 0}toString(){return this.css}warn(e,t={}){t.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);let r=new i(e,t);return this.messages.push(r),r}warnings(){return this.messages.filter(e=>"warning"===e.type)}}e.exports=n,n.default=n},9901(e,t,r){"use strict";let i,n,s=r(9062);class o extends s{constructor(e){super(e),this.type="root",this.nodes||(this.nodes=[])}normalize(e,t,r){let i=super.normalize(e);if(t)if("prepend"===r)this.nodes.length>1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)for(let e of i)e.raws.before=t.raws.before;return i}removeChild(e,t){let r=this.index(e);return!t&&0===r&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[r].raws.before),super.removeChild(e)}toResult(e={}){return new i(new n,this,e).stringify()}}o.registerLazyResult=e=>{i=e},o.registerProcessor=e=>{n=e},e.exports=o,o.default=o,s.registerRoot(o)},9463(e,t,r){"use strict";let i=r(9062),n=r(5653);class s extends i{get selectors(){return n.comma(this.selector)}set selectors(e){let t=this.selector?this.selector.match(/,\s*/):null,r=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(r)}constructor(e){super(e),this.type="rule",this.nodes||(this.nodes=[])}}e.exports=s,s.default=s,i.registerRule(s)},2803(e){"use strict";const t={after:"\n",beforeClose:"\n",beforeComment:"\n",beforeDecl:"\n",beforeOpen:" ",beforeRule:"\n",colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1};class r{constructor(e){this.builder=e}atrule(e,t){let r="@"+e.name,i=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?r+=e.raws.afterName:i&&(r+=" "),e.nodes)this.block(e,r+i);else{let n=(e.raws.between||"")+(t?";":"");this.builder(r+i+n,e)}}beforeAfter(e,t){let r;r="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");let i=e.parent,n=0;for(;i&&"root"!==i.type;)n+=1,i=i.parent;if(r.includes("\n")){let t=this.raw(e,null,"indent");if(t.length)for(let e=0;e0&&"comment"===e.nodes[t].type;)t-=1;let r=this.raw(e,"semicolon");for(let i=0;i{if(n=e.raws[r],void 0!==n)return!1})}var A;return void 0===n&&(n=t[i]),o.rawCache[i]=n,n}rawBeforeClose(e){let t;return e.walk(e=>{if(e.nodes&&e.nodes.length>0&&void 0!==e.raws.after)return t=e.raws.after,t.includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}rawBeforeComment(e,t){let r;return e.walkComments(e=>{if(void 0!==e.raws.before)return r=e.raws.before,r.includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeDecl"):r&&(r=r.replace(/\S/g,"")),r}rawBeforeDecl(e,t){let r;return e.walkDecls(e=>{if(void 0!==e.raws.before)return r=e.raws.before,r.includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeRule"):r&&(r=r.replace(/\S/g,"")),r}rawBeforeOpen(e){let t;return e.walk(e=>{if("decl"!==e.type&&(t=e.raws.between,void 0!==t))return!1}),t}rawBeforeRule(e){let t;return e.walk(r=>{if(r.nodes&&(r.parent!==e||e.first!==r)&&void 0!==r.raws.before)return t=r.raws.before,t.includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}rawColon(e){let t;return e.walkDecls(e=>{if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1}),t}rawEmptyBody(e){let t;return e.walk(e=>{if(e.nodes&&0===e.nodes.length&&(t=e.raws.after,void 0!==t))return!1}),t}rawIndent(e){if(e.raws.indent)return e.raws.indent;let t;return e.walk(r=>{let i=r.parent;if(i&&i!==e&&i.parent&&i.parent===e&&void 0!==r.raws.before){let e=r.raws.before.split("\n");return t=e[e.length-1],t=t.replace(/\S/g,""),!1}}),t}rawSemicolon(e){let t;return e.walk(e=>{if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&(t=e.raws.semicolon,void 0!==t))return!1}),t}rawValue(e,t){let r=e[t],i=e.raws[t];return i&&i.value===r?i.raw:r}root(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}rule(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}stringify(e,t){if(!this[e.type])throw new Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}}e.exports=r,r.default=r},9068(e,t,r){"use strict";let i=r(2803);function n(e,t){new i(t).stringify(e)}e.exports=n,n.default=n},6644(e){"use strict";e.exports.isClean=Symbol("isClean"),e.exports.my=Symbol("my")},6120(e){"use strict";const t="'".charCodeAt(0),r='"'.charCodeAt(0),i="\\".charCodeAt(0),n="/".charCodeAt(0),s="\n".charCodeAt(0),o=" ".charCodeAt(0),A="\f".charCodeAt(0),a="\t".charCodeAt(0),c="\r".charCodeAt(0),l="[".charCodeAt(0),u="]".charCodeAt(0),h="(".charCodeAt(0),d=")".charCodeAt(0),p="{".charCodeAt(0),g="}".charCodeAt(0),f=";".charCodeAt(0),m="*".charCodeAt(0),b=":".charCodeAt(0),y="@".charCodeAt(0),w=/[\t\n\f\r "#'()/;[\\\]{}]/g,C=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,I=/.[\r\n"'(/\\]/,B=/[\da-f]/i;e.exports=function(e,v={}){let x,E,D,S,F,k,Q,N,O,G,T=e.css.valueOf(),M=v.ignoreErrors,K=T.length,R=0,W=[],Y=[];function H(t){throw e.error("Unclosed "+t,R)}return{back:function(e){Y.push(e)},endOfFile:function(){return 0===Y.length&&R>=K},nextToken:function(e){if(Y.length)return Y.pop();if(R>=K)return;let v=!!e&&e.ignoreUnclosed;switch(x=T.charCodeAt(R),x){case s:case o:case a:case c:case A:S=R;do{S+=1,x=T.charCodeAt(S)}while(x===o||x===s||x===a||x===c||x===A);k=["space",T.slice(R,S)],R=S-1;break;case l:case u:case p:case g:case b:case f:case d:{let e=String.fromCharCode(x);k=[e,e,R];break}case h:if(G=W.length?W.pop()[1]:"",O=T.charCodeAt(R+1),"url"===G&&O!==t&&O!==r&&O!==o&&O!==s&&O!==a&&O!==A&&O!==c){S=R;do{if(Q=!1,S=T.indexOf(")",S+1),-1===S){if(M||v){S=R;break}H("bracket")}for(N=S;T.charCodeAt(N-1)===i;)N-=1,Q=!Q}while(Q);k=["brackets",T.slice(R,S+1),R,S],R=S}else S=T.indexOf(")",R+1),E=T.slice(R,S+1),-1===S||I.test(E)?k=["(","(",R]:(k=["brackets",E,R,S],R=S);break;case t:case r:F=x===t?"'":'"',S=R;do{if(Q=!1,S=T.indexOf(F,S+1),-1===S){if(M||v){S=R+1;break}H("string")}for(N=S;T.charCodeAt(N-1)===i;)N-=1,Q=!Q}while(Q);k=["string",T.slice(R,S+1),R,S],R=S;break;case y:w.lastIndex=R+1,w.test(T),S=0===w.lastIndex?T.length-1:w.lastIndex-2,k=["at-word",T.slice(R,S+1),R,S],R=S;break;case i:for(S=R,D=!0;T.charCodeAt(S+1)===i;)S+=1,D=!D;if(x=T.charCodeAt(S+1),D&&x!==n&&x!==o&&x!==s&&x!==a&&x!==c&&x!==A&&(S+=1,B.test(T.charAt(S)))){for(;B.test(T.charAt(S+1));)S+=1;T.charCodeAt(S+1)===o&&(S+=1)}k=["word",T.slice(R,S+1),R,S],R=S;break;default:x===n&&T.charCodeAt(R+1)===m?(S=T.indexOf("*/",R+2)+1,0===S&&(M||v?S=T.length:H("comment")),k=["comment",T.slice(R,S+1),R,S],R=S):(C.lastIndex=R+1,C.test(T),S=0===C.lastIndex?T.length-1:C.lastIndex-2,k=["word",T.slice(R,S+1),R,S],W.push(k),R=S)}return R++,k},position:function(){return R}}}},3471(e){"use strict";let t={};e.exports=function(e){t[e]||(t[e]=!0,"undefined"!=typeof console&&console.warn&&console.warn(e))}},1173(e){"use strict";class t{constructor(e,t={}){if(this.type="warning",this.text=e,t.node&&t.node.source){let e=t.node.rangeBy(t);this.line=e.start.line,this.column=e.start.column,this.endLine=e.end.line,this.endColumn=e.end.column}for(let e in t)this[e]=t[e]}toString(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}e.exports=t,t.default=t},8059(e,t,r){const i=r(5129),n=r(3407),{isPlainObject:s}=r(3663),o=r(9465),A=r(9369),{parse:a}=r(9044),c=["img","audio","video","picture","svg","object","map","iframe","embed"],l=["script","style"];function u(e,t){e&&Object.keys(e).forEach(function(r){t(e[r],r)})}function h(e,t){return{}.hasOwnProperty.call(e,t)}function d(e,t){const r=[];return u(e,function(e){t(e)&&r.push(e)}),r}e.exports=g;const p=/^[^\0\t\n\f\r /<=>]+$/;function g(e,t,r){if(null==e)return"";"number"==typeof e&&(e=e.toString());let m="",b="";function y(e,t){const r=this;this.tag=e,this.attribs=t||{},this.tagPosition=m.length,this.text="",this.openingTagLength=0,this.mediaChildren=[],this.updateParentNodeText=function(){k.length&&(k[k.length-1].text+=r.text)},this.updateParentNodeMediaChildren=function(){k.length&&c.includes(this.tag)&&k[k.length-1].mediaChildren.push(this.tag)}}(t=Object.assign({},g.defaults,t)).parser=Object.assign({},f,t.parser);const w=function(e){return!1===t.allowedTags||(t.allowedTags||[]).indexOf(e)>-1};l.forEach(function(e){w(e)&&!t.allowVulnerableTags&&console.warn(`\n\n⚠️ Your \`allowedTags\` option includes, \`${e}\`, which is inherently\nvulnerable to XSS attacks. Please remove it from \`allowedTags\`.\nOr, to disable this warning, add the \`allowVulnerableTags\` option\nand ensure you are accounting for this risk.\n\n`)});const C=t.nonTextTags||["script","style","textarea","option"];let I,B;t.allowedAttributes&&(I={},B={},u(t.allowedAttributes,function(e,t){I[t]=[];const r=[];e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(n(e).replace(/\\\*/g,".*")):I[t].push(e)}),r.length&&(B[t]=new RegExp("^("+r.join("|")+")$"))}));const v={},x={},E={};u(t.allowedClasses,function(e,t){if(I&&(h(I,t)||(I[t]=[]),I[t].push("class")),v[t]=e,Array.isArray(e)){const r=[];v[t]=[],E[t]=[],e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(n(e).replace(/\\\*/g,".*")):e instanceof RegExp?E[t].push(e):v[t].push(e)}),r.length&&(x[t]=new RegExp("^("+r.join("|")+")$"))}});const D={};let S,F,k,Q,N,O,G;u(t.transformTags,function(e,t){let r;"function"==typeof e?r=e:"string"==typeof e&&(r=g.simpleTransform(e)),"*"===t?S=r:D[t]=r});let T=!1;K();const M=new i.Parser({onopentag:function(e,r){if(t.onOpenTag&&t.onOpenTag(e,r),t.enforceHtmlBoundary&&"html"===e&&K(),O)return void G++;const i=new y(e,r);k.push(i);let n=!1;const c=!!i.text;let l;if(h(D,e)&&(l=D[e](e,r),i.attribs=r=l.attribs,void 0!==l.text&&(i.innerText=l.text),e!==l.tagName&&(i.name=e=l.tagName,N[F]=l.tagName)),S&&(l=S(e,r),i.attribs=r=l.attribs,e!==l.tagName&&(i.name=e=l.tagName,N[F]=l.tagName)),(!w(e)||"recursiveEscape"===t.disallowedTagsMode&&!function(e){for(const t in e)if(h(e,t))return!1;return!0}(Q)||null!=t.nestingLimit&&F>=t.nestingLimit)&&(n=!0,Q[F]=!0,"discard"!==t.disallowedTagsMode&&"completelyDiscard"!==t.disallowedTagsMode||-1!==C.indexOf(e)&&(O=!0,G=1)),F++,n){if("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode){if(i.innerText&&!c){const r=R(i.innerText);t.textFilter?m+=t.textFilter(r,e):m+=r,T=!0}return}b=m,m=""}m+="<"+e,"script"===e&&(t.allowedScriptHostnames||t.allowedScriptDomains)&&(i.innerText=""),n&&("escape"===t.disallowedTagsMode||"recursiveEscape"===t.disallowedTagsMode)&&t.preserveEscapedAttributes?u(r,function(e,t){m+=" "+t+'="'+R(e||"",!0)+'"'}):(!I||h(I,e)||I["*"])&&u(r,function(r,n){if(!p.test(n))return void delete i.attribs[n];if(""===r&&!t.allowedEmptyAttributes.includes(n)&&(t.nonBooleanAttributes.includes(n)||t.nonBooleanAttributes.includes("*")))return void delete i.attribs[n];let c=!1;if(!I||h(I,e)&&-1!==I[e].indexOf(n)||I["*"]&&-1!==I["*"].indexOf(n)||h(B,e)&&B[e].test(n)||B["*"]&&B["*"].test(n))c=!0;else if(I&&I[e])for(const t of I[e])if(s(t)&&t.name&&t.name===n){c=!0;let e="";if(!0===t.multiple){const i=r.split(" ");for(const r of i)-1!==t.values.indexOf(r)&&(""===e?e=r:e+=" "+r)}else t.values.indexOf(r)>=0&&(e=r);r=e}if(c){if(-1!==t.allowedSchemesAppliedToAttributes.indexOf(n)&&W(e,r))return void delete i.attribs[n];if("script"===e&&"src"===n){let e=!0;try{const i=Y(r);if(t.allowedScriptHostnames||t.allowedScriptDomains){const r=(t.allowedScriptHostnames||[]).find(function(e){return e===i.url.hostname}),n=(t.allowedScriptDomains||[]).find(function(e){return i.url.hostname===e||i.url.hostname.endsWith(`.${e}`)});e=r||n}}catch(t){e=!1}if(!e)return void delete i.attribs[n]}if("iframe"===e&&"src"===n){let e=!0;try{const i=Y(r);if(i.isRelativeUrl)e=h(t,"allowIframeRelativeUrls")?t.allowIframeRelativeUrls:!t.allowedIframeHostnames&&!t.allowedIframeDomains;else if(t.allowedIframeHostnames||t.allowedIframeDomains){const r=(t.allowedIframeHostnames||[]).find(function(e){return e===i.url.hostname}),n=(t.allowedIframeDomains||[]).find(function(e){return i.url.hostname===e||i.url.hostname.endsWith(`.${e}`)});e=r||n}}catch(t){e=!1}if(!e)return void delete i.attribs[n]}if("srcset"===n)try{let e=A(r);if(e.forEach(function(e){W("srcset",e.url)&&(e.evil=!0)}),e=d(e,function(e){return!e.evil}),!e.length)return void delete i.attribs[n];r=d(e,function(e){return!e.evil}).map(function(e){if(!e.url)throw new Error("URL missing");return e.url+(e.w?` ${e.w}w`:"")+(e.h?` ${e.h}h`:"")+(e.d?` ${e.d}x`:"")}).join(", "),i.attribs[n]=r}catch(e){return void delete i.attribs[n]}if("class"===n){const t=v[e],s=v["*"],A=x[e],a=E[e],c=E["*"],h=[A,x["*"]].concat(a,c).filter(function(e){return e});if(!(l=r,u=t&&s?o(t,s):t||s,g=h,r=u?(l=l.split(/\s+/)).filter(function(e){return-1!==u.indexOf(e)||g.some(function(t){return t.test(e)})}).join(" "):l).length)return void delete i.attribs[n]}if("style"===n)if(t.parseStyleAttributes)try{if(r=function(e){return e.nodes[0].nodes.reduce(function(e,t){return e.push(`${t.prop}:${t.value}${t.important?" !important":""}`),e},[]).join(";")}(function(e,t){if(!t)return e;const r=e.nodes[0];let i;return i=t[r.selector]&&t["*"]?o(t[r.selector],t["*"]):t[r.selector]||t["*"],i&&(e.nodes[0].nodes=r.nodes.reduce(function(e){return function(t,r){return h(e,r.prop)&&e[r.prop].some(function(e){return e.test(r.value)})&&t.push(r),t}}(i),[])),e}(a(e+" {"+r+"}",{map:!1}),t.allowedStyles)),0===r.length)return void delete i.attribs[n]}catch(t){return"undefined"!=typeof window&&console.warn('Failed to parse "'+e+" {"+r+"}\", If you're running this in a browser, we recommend to disable style parsing: options.parseStyleAttributes: false, since this only works in a node environment due to a postcss dependency, More info: https://github.com/apostrophecms/sanitize-html/issues/547"),void delete i.attribs[n]}else if(t.allowedStyles)throw new Error("allowedStyles option cannot be used together with parseStyleAttributes: false.");m+=" "+n,r&&r.length?m+='="'+R(r,!0)+'"':t.allowedEmptyAttributes.includes(n)&&(m+='=""')}else delete i.attribs[n];var l,u,g}),-1!==t.selfClosing.indexOf(e)?m+=" />":(m+=">",!i.innerText||c||t.textFilter||(m+=R(i.innerText),T=!0)),n&&(m=b+R(m),b=""),i.openingTagLength=m.length-i.tagPosition},ontext:function(e){if(O)return;const r=k[k.length-1];let i;if(r&&(i=r.tag,e=void 0!==r.innerText?r.innerText:e),"completelyDiscard"!==t.disallowedTagsMode||w(i))if("discard"!==t.disallowedTagsMode&&"completelyDiscard"!==t.disallowedTagsMode||"script"!==i&&"style"!==i)if("discard"!==t.disallowedTagsMode&&"completelyDiscard"!==t.disallowedTagsMode||-1===C.indexOf(i)){if(!T){const r=R(e,!1);t.textFilter?m+=t.textFilter(r,i):m+=r}}else m+=e;else m+=e;else e="";k.length&&(k[k.length-1].text+=e)},onclosetag:function(e,r){if(t.onCloseTag&&t.onCloseTag(e,r),O){if(G--,G)return;O=!1}const i=k.pop();if(!i)return;if(i.tag!==e)return void k.push(i);O=!!t.enforceHtmlBoundary&&"html"===e,F--;const n=Q[F];if(n){if(delete Q[F],"discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)return void i.updateParentNodeText();b=m,m=""}if(N[F]&&(e=N[F],delete N[F]),t.exclusiveFilter){const e=t.exclusiveFilter(i);if("excludeTag"===e)return n&&(m=b,b=""),void(m=m.substring(0,i.tagPosition)+m.substring(i.tagPosition+i.openingTagLength));if(e)return void(m=m.substring(0,i.tagPosition))}i.updateParentNodeMediaChildren(),i.updateParentNodeText(),-1!==t.selfClosing.indexOf(e)||r&&!w(e)&&["escape","recursiveEscape"].indexOf(t.disallowedTagsMode)>=0?n&&(m=b,b=""):(m+="",n&&(m=b+R(m),b=""),T=!1)}},t.parser);if(M.write(e),M.end(),"escape"===t.disallowedTagsMode||"recursiveEscape"===t.disallowedTagsMode){const t=M.endIndex;if(null!=t&&t>=0&&t0&&""===m&&(m=R(e))}return m;function K(){m="",F=0,k=[],Q={},N={},O=!1,G=0}function R(e,r){return"string"!=typeof e&&(e+=""),t.parser.decodeEntities&&(e=e.replace(/&/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,"""))),e=e.replace(/&(?![a-zA-Z0-9#]{1,20};)/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,""")),e}function W(e,r){for(r=r.replace(/[\x00-\x20]+/g,"");;){const e=r.indexOf("\x3c!--");if(-1===e)break;const t=r.indexOf("--\x3e",e+4);if(-1===t)break;r=r.substring(0,e)+r.substring(t+3)}const i=r.match(/^([a-zA-Z][a-zA-Z0-9.\-+]*):/);if(!i)return!!r.match(/^[/\\]{2}/)&&!t.allowProtocolRelative;const n=i[1].toLowerCase();return h(t.allowedSchemesByTag,e)?-1===t.allowedSchemesByTag[e].indexOf(n):!t.allowedSchemes||-1===t.allowedSchemes.indexOf(n)}function Y(e){if((e=e.replace(/^(\w+:)?\s*[\\/]\s*[\\/]/,"$1//")).startsWith("relative:"))throw new Error("relative: exploit attempt");let t="relative://relative-site";for(let e=0;e<100;e++)t+=`/${e}`;const r=new URL(e,t);return{isRelativeUrl:r&&"relative-site"===r.hostname&&"relative:"===r.protocol,url:r}}}const f={decodeEntities:!0};g.defaults={allowedTags:["address","article","aside","footer","header","h1","h2","h3","h4","h5","h6","hgroup","main","nav","section","blockquote","dd","div","dl","dt","figcaption","figure","hr","li","menu","ol","p","pre","ul","a","abbr","b","bdi","bdo","br","cite","code","data","dfn","em","i","kbd","mark","q","rb","rp","rt","rtc","ruby","s","samp","small","span","strong","sub","sup","time","u","var","wbr","caption","col","colgroup","table","tbody","td","tfoot","th","thead","tr"],nonBooleanAttributes:["abbr","accept","accept-charset","accesskey","action","allow","alt","as","autocapitalize","autocomplete","blocking","charset","cite","class","color","cols","colspan","content","contenteditable","coords","crossorigin","data","datetime","decoding","dir","dirname","download","draggable","enctype","enterkeyhint","fetchpriority","for","form","formaction","formenctype","formmethod","formtarget","headers","height","hidden","high","href","hreflang","http-equiv","id","imagesizes","imagesrcset","inputmode","integrity","is","itemid","itemprop","itemref","itemtype","kind","label","lang","list","loading","low","max","maxlength","media","method","min","minlength","name","nonce","optimum","pattern","ping","placeholder","popover","popovertarget","popovertargetaction","poster","preload","referrerpolicy","rel","rows","rowspan","sandbox","scope","shape","size","sizes","slot","span","spellcheck","src","srcdoc","srclang","srcset","start","step","style","tabindex","target","title","translate","type","usemap","value","width","wrap","onauxclick","onafterprint","onbeforematch","onbeforeprint","onbeforeunload","onbeforetoggle","onblur","oncancel","oncanplay","oncanplaythrough","onchange","onclick","onclose","oncontextlost","oncontextmenu","oncontextrestored","oncopy","oncuechange","oncut","ondblclick","ondrag","ondragend","ondragenter","ondragleave","ondragover","ondragstart","ondrop","ondurationchange","onemptied","onended","onerror","onfocus","onformdata","onhashchange","oninput","oninvalid","onkeydown","onkeypress","onkeyup","onlanguagechange","onload","onloadeddata","onloadedmetadata","onloadstart","onmessage","onmessageerror","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onoffline","ononline","onpagehide","onpageshow","onpaste","onpause","onplay","onplaying","onpopstate","onprogress","onratechange","onreset","onresize","onrejectionhandled","onscroll","onscrollend","onsecuritypolicyviolation","onseeked","onseeking","onselect","onslotchange","onstalled","onstorage","onsubmit","onsuspend","ontimeupdate","ontoggle","onunhandledrejection","onunload","onvolumechange","onwaiting","onwheel"],disallowedTagsMode:"discard",allowedAttributes:{a:["href","name","target"],img:["src","srcset","alt","title","width","height","loading"]},allowedEmptyAttributes:["alt"],selfClosing:["img","br","hr","area","base","basefont","input","link","meta"],allowedSchemes:["http","https","ftp","mailto","tel"],allowedSchemesByTag:{},allowedSchemesAppliedToAttributes:["href","src","cite"],allowProtocolRelative:!0,enforceHtmlBoundary:!1,parseStyleAttributes:!0,preserveEscapedAttributes:!1},g.simpleTransform=function(e,t,r){return r=void 0===r||r,t=t||{},function(i,n){let s;if(r)for(s in t)n[s]=t[s];else n=t;return{tagName:e,attribs:n}}}},6973(){},874(){},8818(){},5887(){},1866(){},7366(e,t,r){"use strict";var i,n=this&&this.__createBinding||(Object.create?function(e,t,r,i){void 0===i&&(i=r);var n=Object.getOwnPropertyDescriptor(t,r);n&&!("get"in n?!t.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,i,n)}:function(e,t,r,i){void 0===i&&(i=r),e[i]=t[r]}),s=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),o=this&&this.__importStar||(i=function(e){return i=Object.getOwnPropertyNames||function(e){var t=[];for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[t.length]=r);return t},i(e)},function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r=i(e),o=0;o0&&s.has(this.stack[0]);){const e=this.stack.shift();null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,e,!0)}this.isVoidElement(e)||(this.stack.unshift(e),this.htmlMode&&(f.has(e)?this.foreignContext.unshift(!0):m.has(e)&&this.foreignContext.unshift(!1))),null===(n=(i=this.cbs).onopentagname)||void 0===n||n.call(i,e),this.cbs.onopentag&&(this.attribs={})}endOpenTag(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&(null===(r=(t=this.cbs).onopentag)||void 0===r||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}onopentagend(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}onclosetag(e,t){var r,i,n,s,o,A,a,c;this.endIndex=t;let l=this.getSlice(e,t);if(this.lowerCaseTagNames&&(l=l.toLowerCase()),this.htmlMode&&(f.has(l)||m.has(l))&&this.foreignContext.shift(),this.isVoidElement(l))this.htmlMode&&"br"===l&&(null===(s=(n=this.cbs).onopentagname)||void 0===s||s.call(n,"br"),null===(A=(o=this.cbs).onopentag)||void 0===A||A.call(o,"br",{},!0),null===(c=(a=this.cbs).onclosetag)||void 0===c||c.call(a,"br",!1));else{const e=this.stack.indexOf(l);if(-1!==e)for(let t=0;t<=e;t++){const n=this.stack.shift();null===(i=(r=this.cbs).onclosetag)||void 0===i||i.call(r,n,t!==e)}else this.htmlMode&&"p"===l&&(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}onselfclosingtag(e){this.endIndex=e,this.recognizeSelfClosing||this.foreignContext[0]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}closeCurrentTag(e){var t,r;const i=this.tagname;this.endOpenTag(e),this.stack[0]===i&&(null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,i,!e),this.stack.shift())}onattribname(e,t){this.startIndex=e;const r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r}onattribdata(e,t){this.attribvalue+=this.getSlice(e,t)}onattribentity(e){this.attribvalue+=(0,a.fromCodePoint)(e)}onattribend(e,t){var r,i;this.endIndex=t,null===(i=(r=this.cbs).onattribute)||void 0===i||i.call(r,this.attribname,this.attribvalue,e===A.QuoteType.Double?'"':e===A.QuoteType.Single?"'":e===A.QuoteType.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}getInstructionName(e){const t=e.search(b);let r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r}ondeclaration(e,t){this.endIndex=t;const r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){const e=this.getInstructionName(r);this.cbs.onprocessinginstruction(`!${e}`,`!${r}`)}this.startIndex=t+1}onprocessinginstruction(e,t){this.endIndex=t;const r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){const e=this.getInstructionName(r);this.cbs.onprocessinginstruction(`?${e}`,`?${r}`)}this.startIndex=t+1}oncomment(e,t,r){var i,n,s,o;this.endIndex=t,null===(n=(i=this.cbs).oncomment)||void 0===n||n.call(i,this.getSlice(e,t-r)),null===(o=(s=this.cbs).oncommentend)||void 0===o||o.call(s),this.startIndex=t+1}oncdata(e,t,r){var i,n,s,o,A,a,c,l,u,h;this.endIndex=t;const d=this.getSlice(e,t-r);!this.htmlMode||this.options.recognizeCDATA?(null===(n=(i=this.cbs).oncdatastart)||void 0===n||n.call(i),null===(o=(s=this.cbs).ontext)||void 0===o||o.call(s,d),null===(a=(A=this.cbs).oncdataend)||void 0===a||a.call(A)):(null===(l=(c=this.cbs).oncomment)||void 0===l||l.call(c,`[CDATA[${d}]]`),null===(h=(u=this.cbs).oncommentend)||void 0===h||h.call(u)),this.startIndex=t+1}onend(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(let e=0;e=this.buffers[0].length;)this.shiftBuffer();let r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);for(;t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r}shiftBuffer(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}write(e){var t,r;this.ended?null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,new Error(".write() after done!")):(this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++))}end(e){var t,r;this.ended?null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,new Error(".end() after done!")):(e&&this.write(e),this.ended=!0,this.tokenizer.end())}pause(){this.tokenizer.pause()}resume(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndexthis.emitCodePoint(e,t))}reset(){this.state=s.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=s.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}write(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}end(){this.running&&this.finish()}pause(){this.running=!1}resume(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=s.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===n.Amp&&this.startEntity()}stateSpecialStartSequence(e){const t=this.sequenceIndex===this.currentSequence.length;if(t?a(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t)return void this.sequenceIndex++}else this.isSpecial=!1;this.sequenceIndex=0,this.state=s.InTagName,this.stateInTagName(e)}stateInSpecialTag(e){if(this.sequenceIndex===this.currentSequence.length){if(e===n.Gt||A(e)){const t=this.index-this.currentSequence.length;if(this.sectionStart=n.LowerA&&e<=n.LowerZ||e>=n.UpperA&&e<=n.UpperZ}(e)}startSpecial(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=s.SpecialStartSequence}stateBeforeTagName(e){if(e===n.ExclamationMark)this.state=s.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===n.Questionmark)this.state=s.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){const t=32|e;this.sectionStart=this.index,this.xmlMode?this.state=s.InTagName:t===c.ScriptEnd[2]?this.state=s.BeforeSpecialS:t===c.TitleEnd[2]||t===c.XmpEnd[2]?this.state=s.BeforeSpecialT:this.state=s.InTagName}else e===n.Slash?this.state=s.BeforeClosingTagName:(this.state=s.Text,this.stateText(e))}stateInTagName(e){a(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=s.BeforeAttributeName,this.stateBeforeAttributeName(e))}stateBeforeClosingTagName(e){A(e)||(e===n.Gt?this.state=s.Text:(this.state=this.isTagStartChar(e)?s.InClosingTagName:s.InSpecialComment,this.sectionStart=this.index))}stateInClosingTagName(e){(e===n.Gt||A(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=s.AfterClosingTagName,this.stateAfterClosingTagName(e))}stateAfterClosingTagName(e){(e===n.Gt||this.fastForwardTo(n.Gt))&&(this.state=s.Text,this.sectionStart=this.index+1)}stateBeforeAttributeName(e){e===n.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=s.InSpecialTag,this.sequenceIndex=0):this.state=s.Text,this.sectionStart=this.index+1):e===n.Slash?this.state=s.InSelfClosingTag:A(e)||(this.state=s.InAttributeName,this.sectionStart=this.index)}stateInSelfClosingTag(e){e===n.Gt?(this.cbs.onselfclosingtag(this.index),this.state=s.Text,this.sectionStart=this.index+1,this.isSpecial=!1):A(e)||(this.state=s.BeforeAttributeName,this.stateBeforeAttributeName(e))}stateInAttributeName(e){(e===n.Eq||a(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=this.index,this.state=s.AfterAttributeName,this.stateAfterAttributeName(e))}stateAfterAttributeName(e){e===n.Eq?this.state=s.BeforeAttributeValue:e===n.Slash||e===n.Gt?(this.cbs.onattribend(o.NoValue,this.sectionStart),this.sectionStart=-1,this.state=s.BeforeAttributeName,this.stateBeforeAttributeName(e)):A(e)||(this.cbs.onattribend(o.NoValue,this.sectionStart),this.state=s.InAttributeName,this.sectionStart=this.index)}stateBeforeAttributeValue(e){e===n.DoubleQuote?(this.state=s.InAttributeValueDq,this.sectionStart=this.index+1):e===n.SingleQuote?(this.state=s.InAttributeValueSq,this.sectionStart=this.index+1):A(e)||(this.sectionStart=this.index,this.state=s.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}handleInAttributeValue(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===n.DoubleQuote?o.Double:o.Single,this.index+1),this.state=s.BeforeAttributeName):this.decodeEntities&&e===n.Amp&&this.startEntity()}stateInAttributeValueDoubleQuotes(e){this.handleInAttributeValue(e,n.DoubleQuote)}stateInAttributeValueSingleQuotes(e){this.handleInAttributeValue(e,n.SingleQuote)}stateInAttributeValueNoQuotes(e){A(e)||e===n.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(o.Unquoted,this.index),this.state=s.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===n.Amp&&this.startEntity()}stateBeforeDeclaration(e){e===n.OpeningSquareBracket?(this.state=s.CDATASequence,this.sequenceIndex=0):this.state=e===n.Dash?s.BeforeComment:s.InDeclaration}stateInDeclaration(e){(e===n.Gt||this.fastForwardTo(n.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=s.Text,this.sectionStart=this.index+1)}stateInProcessingInstruction(e){(e===n.Gt||this.fastForwardTo(n.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=s.Text,this.sectionStart=this.index+1)}stateBeforeComment(e){e===n.Dash?(this.state=s.InCommentLike,this.currentSequence=c.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=s.InDeclaration}stateInSpecialComment(e){(e===n.Gt||this.fastForwardTo(n.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=s.Text,this.sectionStart=this.index+1)}stateBeforeSpecialS(e){const t=32|e;t===c.ScriptEnd[3]?this.startSpecial(c.ScriptEnd,4):t===c.StyleEnd[3]?this.startSpecial(c.StyleEnd,4):(this.state=s.InTagName,this.stateInTagName(e))}stateBeforeSpecialT(e){switch(32|e){case c.TitleEnd[3]:this.startSpecial(c.TitleEnd,4);break;case c.TextareaEnd[3]:this.startSpecial(c.TextareaEnd,4);break;case c.XmpEnd[3]:this.startSpecial(c.XmpEnd,4);break;default:this.state=s.InTagName,this.stateInTagName(e)}}startEntity(){this.baseState=this.state,this.state=s.InEntity,this.entityStart=this.index,this.entityDecoder.startEntity(this.xmlMode?i.DecodingMode.Strict:this.baseState===s.Text||this.baseState===s.InSpecialTag?i.DecodingMode.Legacy:i.DecodingMode.Attribute)}stateInEntity(){const e=this.index-this.offset,t=this.entityDecoder.write(this.buffer,e);if(t>=0)this.state=this.baseState,0===t&&(this.index-=1);else{if(e=e||(this.state===s.InCommentLike?this.currentSequence===c.CdataEnd?this.cbs.oncdata(this.sectionStart,e,0):this.cbs.oncomment(this.sectionStart,e,0):this.state===s.InTagName||this.state===s.BeforeAttributeName||this.state===s.BeforeAttributeValue||this.state===s.AfterAttributeName||this.state===s.InAttributeName||this.state===s.InAttributeValueSq||this.state===s.InAttributeValueDq||this.state===s.InAttributeValueNq||this.state===s.InClosingTagName||this.cbs.ontext(this.sectionStart,e))}emitCodePoint(e,t){this.baseState!==s.Text&&this.baseState!==s.InSpecialTag?(this.sectionStarte(t,i.root),t,r);return new a.Parser(i,t)},t.createDomStream=function(e,t,r){const i=new l.DomHandler(e,t,r);return new a.Parser(i,t)},t.parseFeed=function(e,t=m){return(0,g.getFeed)(d(e,t))};const a=r(7366);var c=r(7366);Object.defineProperty(t,"Parser",{enumerable:!0,get:function(){return c.Parser}});const l=r(4576);var u=r(4576);function h(e,t){const r=new l.DomHandler(void 0,t);return new a.Parser(r,t).end(e),r.root}function d(e,t){return h(e,t).children}Object.defineProperty(t,"DomHandler",{enumerable:!0,get:function(){return u.DomHandler}}),Object.defineProperty(t,"DefaultHandler",{enumerable:!0,get:function(){return u.DomHandler}});var p=r(220);Object.defineProperty(t,"Tokenizer",{enumerable:!0,get:function(){return A(p).default}}),Object.defineProperty(t,"QuoteType",{enumerable:!0,get:function(){return p.QuoteType}}),t.ElementType=o(r(8788));const g=r(2133);var f=r(2133);Object.defineProperty(t,"getFeed",{enumerable:!0,get:function(){return f.getFeed}});const m={xmlMode:!0};t.DomUtils=o(r(2133))},3998(e,t){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.fromCodePoint=void 0,t.replaceCodePoint=n,t.decodeCodePoint=function(e){return(0,t.fromCodePoint)(n(e))};const i=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function n(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=i.get(e))&&void 0!==t?t:e}t.fromCodePoint=null!==(r=String.fromCodePoint)&&void 0!==r?r:e=>{let t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e),t}},2914(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.xmlDecodeTree=t.htmlDecodeTree=t.replaceCodePoint=t.fromCodePoint=t.decodeCodePoint=t.EntityDecoder=t.DecodingMode=void 0,t.determineBranch=g,t.decodeHTML=function(e,t=c.Legacy){return f(e,t)},t.decodeHTMLAttribute=function(e){return f(e,c.Attribute)},t.decodeHTMLStrict=function(e){return f(e,c.Strict)},t.decodeXML=function(e){return m(e,c.Strict)};const i=r(3998),n=r(6567),s=r(4377),o=r(6570);var A,a,c;function l(e){return e>=A.ZERO&&e<=A.NINE}function u(e){return e>=A.UPPER_A&&e<=A.UPPER_F||e>=A.LOWER_A&&e<=A.LOWER_F}function h(e){return e===A.EQUALS||function(e){return e>=A.UPPER_A&&e<=A.UPPER_Z||e>=A.LOWER_A&&e<=A.LOWER_Z||l(e)}(e)}!function(e){e[e.NUM=35]="NUM",e[e.SEMI=59]="SEMI",e[e.EQUALS=61]="EQUALS",e[e.ZERO=48]="ZERO",e[e.NINE=57]="NINE",e[e.LOWER_A=97]="LOWER_A",e[e.LOWER_F=102]="LOWER_F",e[e.LOWER_X=120]="LOWER_X",e[e.LOWER_Z=122]="LOWER_Z",e[e.UPPER_A=65]="UPPER_A",e[e.UPPER_F=70]="UPPER_F",e[e.UPPER_Z=90]="UPPER_Z"}(A||(A={})),function(e){e[e.EntityStart=0]="EntityStart",e[e.NumericStart=1]="NumericStart",e[e.NumericDecimal=2]="NumericDecimal",e[e.NumericHex=3]="NumericHex",e[e.NamedEntity=4]="NamedEntity"}(a||(a={})),function(e){e[e.Legacy=0]="Legacy",e[e.Strict=1]="Strict",e[e.Attribute=2]="Attribute"}(c||(t.DecodingMode=c={}));class d{constructor(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=a.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=c.Strict,this.runConsumed=0}startEntity(e){this.decodeMode=e,this.state=a.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1,this.runConsumed=0}write(e,t){switch(this.state){case a.EntityStart:return e.charCodeAt(t)===A.NUM?(this.state=a.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1)):(this.state=a.NamedEntity,this.stateNamedEntity(e,t));case a.NumericStart:return this.stateNumericStart(e,t);case a.NumericDecimal:return this.stateNumericDecimal(e,t);case a.NumericHex:return this.stateNumericHex(e,t);case a.NamedEntity:return this.stateNamedEntity(e,t)}}stateNumericStart(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===A.LOWER_X?(this.state=a.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=a.NumericDecimal,this.stateNumericDecimal(e,t))}stateNumericHex(e,t){for(;t>14;for(;t>7;if(0===this.runConsumed){const r=i&o.BinTrieFlags.JUMP_TABLE;if(e.charCodeAt(t)!==r)return 0===this.result?0:this.emitNotTerminatedNamedEntity();t++,this.excess++,this.runConsumed++}for(;this.runConsumed=e.length)return-1;const i=this.runConsumed-1,n=r[this.treeIndex+1+(i>>1)],s=i%2==0?255&n:n>>8&255;if(e.charCodeAt(t)!==s)return this.runConsumed=0,0===this.result?0:this.emitNotTerminatedNamedEntity();t++,this.excess++,this.runConsumed++}this.runConsumed=0,this.treeIndex+=1+(s>>1),i=r[this.treeIndex],n=(i&o.BinTrieFlags.VALUE_LENGTH)>>14}if(t>=e.length)break;const s=e.charCodeAt(t);if(s===A.SEMI&&0!==n&&0!==(i&o.BinTrieFlags.FLAG13))return this.emitNamedEntityData(this.treeIndex,n,this.consumed+this.excess);if(this.treeIndex=g(r,i,this.treeIndex+Math.max(1,n),s),this.treeIndex<0)return 0===this.result||this.decodeMode===c.Attribute&&(0===n||h(s))?0:this.emitNotTerminatedNamedEntity();if(i=r[this.treeIndex],n=(i&o.BinTrieFlags.VALUE_LENGTH)>>14,0!==n){if(s===A.SEMI)return this.emitNamedEntityData(this.treeIndex,n,this.consumed+this.excess);this.decodeMode!==c.Strict&&0===(i&o.BinTrieFlags.FLAG13)&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}t++,this.excess++}return-1}emitNotTerminatedNamedEntity(){var e;const{result:t,decodeTree:r}=this,i=(r[t]&o.BinTrieFlags.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,i,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData(e,t,r){const{decodeTree:i}=this;return this.emitCodePoint(1===t?i[e]&~(o.BinTrieFlags.VALUE_LENGTH|o.BinTrieFlags.FLAG13):i[e+1],r),3===t&&this.emitCodePoint(i[e+2],r),r}end(){var e;switch(this.state){case a.NamedEntity:return 0===this.result||this.decodeMode===c.Attribute&&this.result!==this.treeIndex?0:this.emitNotTerminatedNamedEntity();case a.NumericDecimal:return this.emitNumericEntity(0,2);case a.NumericHex:return this.emitNumericEntity(0,3);case a.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case a.EntityStart:return 0}}}function p(e){let t="";const r=new d(e,e=>t+=(0,i.fromCodePoint)(e));return function(e,i){let n=0,s=0;for(;(s=e.indexOf("&",s))>=0;){t+=e.slice(n,s),r.startEntity(i);const o=r.write(e,s+1);if(o<0){n=s+r.end();break}n=s+o,s=0===o?n+1:n}const o=t+e.slice(n);return t="",o}}function g(e,t,r,i){const n=(t&o.BinTrieFlags.BRANCH_LENGTH)>>7,s=t&o.BinTrieFlags.JUMP_TABLE;if(0===n)return 0!==s&&i===s?r:-1;if(s){const t=i-s;return t<0||t>=n?-1:e[r+t]-1}const A=n+1>>1;let a=0,c=n-1;for(;a<=c;){const t=a+c>>>1,n=e[r+(t>>1)]>>8*(1&t)&255;if(ni))return e[r+A+t];c=t-1}}return-1}t.EntityDecoder=d;const f=p(n.htmlDecodeTree),m=p(s.xmlDecodeTree);var b=r(3998);Object.defineProperty(t,"decodeCodePoint",{enumerable:!0,get:function(){return b.decodeCodePoint}}),Object.defineProperty(t,"fromCodePoint",{enumerable:!0,get:function(){return b.fromCodePoint}}),Object.defineProperty(t,"replaceCodePoint",{enumerable:!0,get:function(){return b.replaceCodePoint}});var y=r(6567);Object.defineProperty(t,"htmlDecodeTree",{enumerable:!0,get:function(){return y.htmlDecodeTree}});var w=r(4377);Object.defineProperty(t,"xmlDecodeTree",{enumerable:!0,get:function(){return w.xmlDecodeTree}})},6567(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.htmlDecodeTree=void 0;const i=r(6310);t.htmlDecodeTree=(0,i.decodeBase64)("QR08ALkAAgH6AYsDNQR2BO0EPgXZBQEGLAbdBxMISQrvCmQLfQurDKQNLw4fD4YPpA+6D/IPAAAAAAAAAAAAAAAAKhBMEY8TmxUWF2EYLBkxGuAa3RsJHDscWR8YIC8jSCSIJcMl6ie3Ku8rEC0CLjoupS7kLgAIRU1hYmNmZ2xtbm9wcnN0dVQAWgBeAGUAaQBzAHcAfgCBAIQAhwCSAJoAoACsALMAbABpAGcAO4DGAMZAUAA7gCYAJkBjAHUAdABlADuAwQDBQHIiZXZlAAJhAAFpeW0AcgByAGMAO4DCAMJAEGRyAADgNdgE3XIAYQB2AGUAO4DAAMBA8CFoYZFj4SFjcgBhZAAAoFMqAAFncIsAjgBvAG4ABGFmAADgNdg43fAlbHlGdW5jdGlvbgCgYSBpAG4AZwA7gMUAxUAAAWNzpACoAHIAAOA12Jzc6SFnbgCgVCJpAGwAZABlADuAwwDDQG0AbAA7gMQAxEAABGFjZWZvcnN1xQDYANoA7QDxAPYA+QD8AAABY3LJAM8AayNzbGFzaAAAoBYidgHTANUAAKDnKmUAZAAAoAYjeQARZIABY3J0AOAA5QDrAGEidXNlAACgNSLuI291bGxpcwCgLCFhAJJjcgAA4DXYBd1wAGYAAOA12Dnd5SF2ZdhiYwDyAOoAbSJwZXEAAKBOIgAHSE9hY2RlZmhpbG9yc3UXARoBHwE6AVIBVQFiAWQBZgGCAakB6QHtAfIBYwB5ACdkUABZADuAqQCpQIABY3B5ACUBKAE1AfUhdGUGYWmg0iJ0KGFsRGlmZmVyZW50aWFsRAAAoEUhbCJleXMAAKAtIQACYWVpb0EBRAFKAU0B8iFvbgxhZABpAGwAO4DHAMdAcgBjAAhhbiJpbnQAAKAwIm8AdAAKYQABZG5ZAV0BaSJsbGEAuGB0I2VyRG90ALdg8gA5AWkAp2NyImNsZQAAAkRNUFRwAXQBeQF9AW8AdAAAoJkiaSJudXMAAKCWIuwhdXMAoJUiaSJtZXMAAKCXIm8AAAFjc4cBlAFrKndpc2VDb250b3VySW50ZWdyYWwAAKAyImUjQ3VybHkAAAFEUZwBpAFvJXVibGVRdW90ZQAAoB0gdSJvdGUAAKAZIAACbG5wdbABtgHNAdgBbwBuAGWgNyIAoHQqgAFnaXQAvAHBAcUB8iJ1ZW50AKBhIm4AdAAAoC8i7yV1ckludGVncmFsAKAuIgABZnLRAdMBAKACIe8iZHVjdACgECJuLnRlckNsb2Nrd2lzZUNvbnRvdXJJbnRlZ3JhbAAAoDMi7yFzcwCgLypjAHIAAOA12J7ccABDoNMiYQBwAACgTSKABURKU1phY2VmaW9zAAsCEgIVAhgCGwIsAjQCOQI9AnMCfwNvoEUh9CJyYWhkAKARKWMAeQACZGMAeQAFZGMAeQAPZIABZ3JzACECJQIoAuchZXIAoCEgcgAAoKEhaAB2AACg5CoAAWF5MAIzAvIhb24OYRRkbAB0oAciYQCUY3IAAOA12AfdAAFhZkECawIAAWNtRQJnAvIjaXRpY2FsAAJBREdUUAJUAl8CYwJjInV0ZQC0YG8AdAFZAloC2WJiJGxlQWN1dGUA3WJyImF2ZQBgYGkibGRlANxi7yFuZACgxCJmJWVyZW50aWFsRAAAoEYhcAR9AgAAAAAAAIECjgIAABoDZgAA4DXYO91EoagAhQKJAm8AdAAAoNwgcSJ1YWwAAKBQIuIhbGUAA0NETFJVVpkCqAK1Au8C/wIRA28AbgB0AG8AdQByAEkAbgB0AGUAZwByAGEA7ADEAW8AdAKvAgAAAACwAqhgbiNBcnJvdwAAoNMhAAFlb7kC0AJmAHQAgAFBUlQAwQLGAs0CciJyb3cAAKDQIekkZ2h0QXJyb3cAoNQhZQDlACsCbgBnAAABTFLWAugC5SFmdAABQVLcAuECciJyb3cAAKD4J+kkZ2h0QXJyb3cAoPon6SRnaHRBcnJvdwCg+SdpImdodAAAAUFU9gL7AnIicm93AACg0iFlAGUAAKCoInAAQQIGAwAAAAALA3Iicm93AACg0SFvJHduQXJyb3cAAKDVIWUlcnRpY2FsQmFyAACgJSJuAAADQUJMUlRhJAM2AzoDWgNxA3oDciJyb3cAAKGTIUJVLAMwA2EAcgAAoBMpcCNBcnJvdwAAoPUhciJldmUAEWPlIWZ00gJDAwAASwMAAFIDaSVnaHRWZWN0b3IAAKBQKWUkZVZlY3RvcgAAoF4p5SJjdG9yQqC9IWEAcgAAoFYpaSJnaHQA1AFiAwAAaQNlJGVWZWN0b3IAAKBfKeUiY3RvckKgwSFhAHIAAKBXKWUAZQBBoKQiciJyb3cAAKCnIXIAcgBvAPcAtAIAAWN0gwOHA3IA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YwAAoN8i4SFycnCgtiEAoD0pgKIqImJjZG9zACsVMBU6FT4VQRVyImNhcAAAoEgqAAFhdTQVNxVwAACgRipwAACgSipvAHQAAKCNInIAAKBFKgDgKiIA/gACYWxydksVURVuFXMVcgByAG2gtyEAoDwpeQCAAWV2dwBYFWUVaRVxAHACXxUAAAAAYxVyAGUA4wAXFXUA4wAZFWUAZQAAoM4iZSJkZ2UAAKDPImUAbgA7gKQApEBlI2Fycm93AAABbHJ7FX8V5SFmdACgtiFpImdodAAAoLchZQDkAG0VAAFjaYsVkRVvAG4AaQBuAPQAkwFuAHQAAKAxImwiY3R5AACgLSOACUFIYWJjZGVmaGlqbG9yc3R1d3oAuBW7Fb8V1RXgFegV+RUKFhUWHxZUFlcWZRbFFtsW7xb7FgUXChdyAPIAtAJhAHIAAKBlKQACZ2xyc8YVyhXOFdAV5yFlcgCgICDlIXRoAKA4IfIA9QxoAHagECAAoKMiawHZFd4VYSJyb3cAAKAPKWEA4wBfAgABYXnkFecV8iFvbg9hNGQAoUYhYW/tFfQVAAFnciEC8RVyAACgyiF0InNlcQAAoHcqgAFnbG0A/xUCFgUWO4CwALBAdABhALRjcCJ0eXYAAKCxKQABaXIOFhIW8yFodACgfykA4DXYId1hAHIAAAFschsWHRYAoMMhAKDCIYACYWVnc3YAKBauAjYWOhY+Fm0AAKHEIm9zLhY0Fm4AZABzoMQi9SFpdACgZiZhIm1tYQDdY2kAbgAAoPIiAKH3AGlvQxZRFmQAZQAAgfcAO29KFksW90BuI3RpbWVzAACgxyJuAPgAUBZjAHkAUmRjAG8CXhYAAAAAYhZyAG4AAKAeI28AcAAAoA0jgAJscHR1dwBuFnEWdRaSFp4W7CFhciRgZgAA4DXYVd0AotkCZW1wc30WhBaJFo0WcQBkoFAibwB0AACgUSJpIm51cwAAoDgi7CF1cwCgFCLxInVhcmUAoKEiYgBsAGUAYgBhAHIAdwBlAGQAZwDlANcAbgCAAWFkaAClFqoWtBZyAHIAbwD3APUMbwB3AG4AYQByAHIAbwB3APMA8xVhI3Jwb29uAAABbHK8FsAWZQBmAPQAHBZpAGcAaAD0AB4WYgHJFs8WawBhAHIAbwD3AJILbwLUFgAAAADYFnIAbgAAoB8jbwBwAACgDCOAAWNvdADhFukW7BYAAXJ55RboFgDgNdi53FVkbAAAoPYp8iFvaxFhAAFkcvMW9xZvAHQAAKDxImkA5qC/JVsSAAFhaP8WAhdyAPIANQNhAPIA1wvhIm5nbGUAoKYpAAFjaQ4XEBd5AF9k5yJyYXJyAKD/JwAJRGFjZGVmZ2xtbm9wcXJzdHV4MRc4F0YXWxcyBF4XaRd5F40XrBe0F78X2RcVGCEYLRg1GEAYAAFEbzUXgRZvAPQA+BUAAWNzPBdCF3UAdABlADuA6QDpQPQhZXIAoG4qAAJhaW95TRdQF1YXWhfyIW9uG2FyAGOgViI7gOoA6kDsIW9uAKBVIk1kbwB0ABdhAAFEcmIXZhdvAHQAAKBSIgDgNdgi3XKhmipuF3QXYQB2AGUAO4DoAOhAZKCWKm8AdAAAoJgqgKGZKmlscwCAF4UXhxfuInRlcnMAoOcjAKATIWSglSpvAHQAAKCXKoABYXBzAJMXlheiF2MAcgATYXQAeQBzogUinxcAAAAAoRdlAHQAAKAFInAAMaADIDMBqRerFwCgBCAAoAUgAAFnc7AXsRdLYXAAAKACIAABZ3C4F7sXbwBuABlhZgAA4DXYVt2AAWFscwDFF8sXzxdyAHOg1SJsAACg4yl1AHMAAKBxKmkAAKG1A2x21RfYF28AbgC1Y/VjAAJjc3V24BfoF/0XEBgAAWlv5BdWF3IAYwAAoFYiaQLuFwAAAADwF+0ADQThIW50AAFnbPUX+Rd0AHIAAKCWKuUhc3MAoJUqgAFhZWkAAxgGGAoYbABzAD1gcwB0AACgXyJ2AESgYSJEAACgeCrwImFyc2wAoOUpAAFEYRkYHRhvAHQAAKBTInIAcgAAoHEpgAFjZGkAJxgqGO0XcgAAoC8hbwD0AIwCAAFhaDEYMhi3YzuA8ADwQAABbXI5GD0YbAA7gOsA60BvAACgrCCAAWNpcABGGEgYSxhsACFgcwD0ACwEAAFlb08YVxhjAHQAYQB0AGkAbwDuABoEbgBlAG4AdABpAGEAbADlADME4Ql1GAAAgRgAAIMYiBgAAAAAoRilGAAAqhgAALsYvhjRGAAA1xgnGWwAbABpAG4AZwBkAG8AdABzAGUA8QBlF3kARGRtImFsZQAAoEAmgAFpbHIAjRiRGJ0Y7CFpZwCgA/tpApcYAAAAAJoYZwAAoAD7aQBnAACgBPsA4DXYI93sIWlnAKAB++whaWcA4GYAagCAAWFsdACvGLIYthh0AACgbSZpAGcAAKAC+24AcwAAoLElbwBmAJJh8AHCGAAAxhhmAADgNdhX3QABYWvJGMwYbADsAGsEdqDUIgCg2SphI3J0aW50AACgDSoAAWFv2hgiGQABY3PeGB8ZsQPnGP0YBRkSGRUZAAAdGbID7xjyGPQY9xj5GAAA+xg7gL0AvUAAoFMhO4C8ALxAAKBVIQCgWSEAoFshswEBGQAAAxkAoFQhAKBWIbQCCxkOGQAAAAAQGTuAvgC+QACgVyEAoFwhNQAAoFghtgEZGQAAGxkAoFohAKBdITgAAKBeIWwAAKBEIHcAbgAAoCIjYwByAADgNdi73IAIRWFiY2RlZmdpamxub3JzdHYARhlKGVoZXhlmGWkZkhmWGZkZnRmgGa0ZxhnLGc8Z4BkjGmygZyIAoIwqgAFjbXAAUBlTGVgZ9SF0ZfVhbQBhAOSgswM6FgCghipyImV2ZQAfYQABaXliGWUZcgBjAB1hM2RvAHQAIWGAoWUibHFzAMYEcBl6GfGhZSLOBAAAdhlsAGEAbgD0AN8EgKF+KmNkbACBGYQZjBljAACgqSpvAHQAb6CAKmyggioAoIQqZeDbIgD+cwAAoJQqcgAA4DXYJN3noGsirATtIWVsAKA3IWMAeQBTZIChdyJFYWoApxmpGasZAKCSKgCgpSoAoKQqAAJFYWVztBm2Gb0ZwhkAoGkicABwoIoq8iFveACgiipxoIgq8aCIKrUZaQBtAACg5yJwAGYAAOA12FjdYQB2AOUAYwIAAWNp0xnWGXIAAKAKIW0AAKFzImVs3BneGQCgjioAoJAqAIM+ADtjZGxxco0E6xn0GfgZ/BkBGgABY2nvGfEZAKCnKnIAAKB6Km8AdAAAoNci0CFhcgCglSl1ImVzdAAAoHwqgAJhZGVscwAKGvQZFhrVBCAa8AEPGgAAFBpwAHIAbwD4AFkZcgAAoHgpcQAAAWxxxAQbGmwAZQBzAPMASRlpAO0A5AQAAWVuJxouGnIjdG5lcXEAAOBpIgD+xQAsGgAFQWFiY2Vma29zeUAaQxpmGmoabRqDGocalhrCGtMacgDyAMwCAAJpbG1yShpOGlAaVBpyAHMA8ABxD2YAvWBpAGwA9AASBQABZHJYGlsaYwB5AEpkAKGUIWN3YBpkGmkAcgAAoEgpAKCtIWEAcgAAoA8h6SFyYyVhgAFhbHIAcxp7Gn8a8iF0c3WgZSZpAHQAAKBlJuwhaXAAoCYg4yFvbgCguSJyAADgNdgl3XMAAAFld4wakRphInJvdwAAoCUpYSJyb3cAAKAmKYACYW1vcHIAnxqjGqcauhq+GnIAcgAAoP8h9CFodACgOyJrAAABbHKsGrMaZSRmdGFycm93AACgqSHpJGdodGFycm93AKCqIWYAAOA12Fnd4iFhcgCgFSCAAWNsdADIGswa0BpyAADgNdi93GEAcwDoAGka8iFvaydhAAFicNca2xr1IWxsAKBDIOghZW4AoBAg4Qr2GgAA/RoAAAgbExsaGwAAIRs7GwAAAAA+G2IbmRuVG6sbAACyG80b0htjAHUAdABlADuA7QDtQAChYyBpeQEbBhtyAGMAO4DuAO5AOGQAAWN4CxsNG3kANWRjAGwAO4ChAKFAAAFmcssCFhsA4DXYJt1yAGEAdgBlADuA7ADsQIChSCFpbm8AJxsyGzYbAAFpbisbLxtuAHQAAKAMKnQAAKAtIuYhaW4AoNwpdABhAACgKSHsIWlnM2GAAWFvcABDG1sbXhuAAWNndABJG0sbWRtyACthgAFlbHAAcQVRG1UbaQBuAOUAyAVhAHIA9AByBWgAMWFmAACgtyJlAGQAtWEAoggiY2ZvdGkbbRt1G3kb4SFyZQCgBSFpAG4AdKAeImkAZQAAoN0pZABvAPQAWxsAoisiY2VscIEbhRuPG5QbYQBsAACguiIAAWdyiRuNG2UAcgDzACMQ4wCCG2EicmhrAACgFyryIW9kAKA8KgACY2dwdJ8boRukG6gbeQBRZG8AbgAvYWYAAOA12FrdYQC5Y3UAZQBzAHQAO4C/AL9AAAFjabUbuRtyAADgNdi+3G4AAKIIIkVkc3bCG8QbyBvQAwCg+SJvAHQAAKD1Inag9CIAoPMiaaBiIOwhZGUpYesB1hsAANkbYwB5AFZkbAA7gO8A70AAA2NmbW9zdeYb7hvyG/Ub+hsFHAABaXnqG+0bcgBjADVhOWRyAADgNdgn3eEhdGg3YnAAZgAA4DXYW93jAf8bAAADHHIAAOA12L/c8iFjeVhk6yFjeVRkAARhY2ZnaGpvcxUcGhwiHCYcKhwtHDAcNRzwIXBhdqC6A/BjAAFleR4cIRzkIWls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ZmdobG1vcHJzdHV3CiwNLBEsHSwnLDEsQCxLLFIsYix6LIQsjyzLLOgs7Sz/LAotcgDyAAkDYQByAACgYykAAWNyFSwbLHUAdABlADuA+gD6QPIACQ1yAOMBIywAACUseQBeZHYAZQBtYQABaXkrLDAscgBjADuA+wD7QENkgAFhYmgANyw6LD0scgDyANEO7CFhY3FhYQDyAOAOAAFpckQsSCzzIWh0AKB+KQDgNdgy3XIAYQB2AGUAO4D5APlAYQFWLF8scgAAAWxyWixcLACgvyEAoL4hbABrAACggCUAAWN0Zix2LG8CbCwAAAAAcyxyAG4AZaAcI3IAAKAcI28AcAAAoA8jcgBpAACg+CUAAWFsfiyBLGMAcgBrYTuAqACoQAABZ3CILIssbwBuAHNhZgAA4DXYZt0AA2FkaGxzdZksniynLLgsuyzFLHIAcgBvAPcACQ1vAHcAbgBhAHIAcgBvAPcA2A5hI3Jwb29uAAABbHKvLLMsZQBmAPQAWyxpAGcAaAD0AF0sdQDzAKYOaQAAocUDaGzBLMIs0mNvAG4AxWPwI2Fycm93cwCgyCGAAWNpdADRLOEs5CxvAtcsAAAAAN4scgBuAGWgHSNyAACgHSNvAHAAAKAOI24AZwBvYXIAaQAAoPklYwByAADgNdjK3IABZGlyAPMs9yz6LG8AdAAAoPAi7CFkZWlhaQBmoLUlAKC0JQABYW0DLQYtcgDyAMosbAA7gPwA/EDhIm5nbGUAoKcpgAdBQkRhY2RlZmxub3Byc3oAJy0qLTAtNC2bLZ0toS2/LcMtxy3TLdgt3C3gLfwtcgDyABADYQByAHag6CoAoOkqYQBzAOgA/gIAAW5yOC08LechcnQAoJwpgANla25wcnN0AJkpSC1NLVQtXi1iLYItYQBwAHAA4QAaHG8AdABoAGkAbgDnAKEXgAFoaXIAoSmzJFotbwBwAPQAdCVooJUh7wD4JgABaXVmLWotZwBtAOEAuygAAWJwbi14LXMjZXRuZXEAceCKIgD+AODLKgD+cyNldG5lcQBx4IsiAP4A4MwqAP4AAWhyhi2KLWUAdADhABIraSNhbmdsZQAAAWxyki2WLeUhZnQAoLIiaSJnaHQAAKCzInkAMmThIXNoAKCiIoABZWxyAKcttC24LWKiKCKuLQAAAACyLWEAcgAAoLsicQAAoFoi7CFpcACg7iIAAWJ0vC1eD2EA8gBfD3IAAOA12DPddAByAOkAlS1zAHUAAAFicM0t0C0A4IIi0iAA4IMi0iBwAGYAAOA12GfdcgBvAPAAWQt0AHIA6QCaLQABY3XkLegtcgAA4DXYy9wAAWJw7C30LW4AAAFFZXUt8S0A4IoiAP5uAAABRWV/LfktAOCLIgD+6SJnemFnAKCaKYADY2Vmb3BycwANLhAuJS4pLiMuLi40LukhcmN1YQABZGkULiEuAAFiZxguHC5hAHIAAKBfKmUAcaAnIgCgWSLlIXJwAKAYIXIAAOA12DTdcABmAADgNdho3WWgQCJhAHQA6ABqD2MAcgAA4DXYzNzjCuQRUC4AAFQuAABYLmIuAAAAAGMubS5wLnQuAAAAAIguki4AAJouJxIqEnQAcgDpAB0ScgAA4DXYNd0AAUFhWy5eLnIA8gDnAnIA8gCTB75jAAFBYWYuaS5yAPIA4AJyAPIAjAdhAPAAeh5pAHMAAKD7IoABZHB0APgReS6DLgABZmx9LoAuAOA12GnddQDzAP8RaQBtAOUABBIAAUFhiy6OLnIA8gDuAnIA8gCaBwABY3GVLgoScgAA4DXYzdwAAXB0nS6hLmwAdQDzACUScgDpACASAARhY2VmaW9zdbEuvC7ELsguzC7PLtQu2S5jAAABdXm2LrsudABlADuA/QD9QE9kAAFpecAuwy5yAGMAd2FLZG4AO4ClAKVAcgAA4DXYNt1jAHkAV2RwAGYAAOA12GrdYwByAADgNdjO3AABY23dLt8ueQBOZGwAO4D/AP9AAAVhY2RlZmhpb3N38y73Lv8uAi8MLxAvEy8YLx0vIi9jInV0ZQB6YQABYXn7Lv4u8iFvbn5hN2RvAHQAfGEAAWV0Bi8KL3QAcgDmAB8QYQC2Y3IAAOA12DfdYwB5ADZk5yJyYXJyAKDdIXAAZgAA4DXYa91jAHIAAOA12M/cAAFqbiYvKC8AoA0gagAAoAwg")},4377(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.xmlDecodeTree=void 0;const i=r(6310);t.xmlDecodeTree=(0,i.decodeBase64)("AAJhZ2xxBwARABMAFQBtAg0AAAAAAA8AcAAmYG8AcwAnYHQAPmB0ADxg9SFvdCJg")},6570(e,t){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.BinTrieFlags=void 0,function(e){e[e.VALUE_LENGTH=49152]="VALUE_LENGTH",e[e.FLAG13=8192]="FLAG13",e[e.BRANCH_LENGTH=8064]="BRANCH_LENGTH",e[e.JUMP_TABLE=127]="JUMP_TABLE"}(r||(t.BinTrieFlags=r={}))},6310(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.decodeBase64=function(e){const t="function"==typeof atob?atob(e):"function"==typeof Buffer.from?Buffer.from(e,"base64").toString("binary"):new Buffer(e,"base64").toString("binary"),r=-2&t.length,i=new Uint16Array(r/2);for(let e=0,n=0;e{let t="",r=0|e;for(;r--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[64*Math.random()|0];return t},customAlphabet:(e,t=21)=>(r=t)=>{let i="",n=0|r;for(;n--;)i+=e[Math.random()*e.length|0];return i}}}},t={};function r(i){var n=t[i];if(void 0!==n)return n.exports;var s=t[i]={exports:{}};return e[i].call(s.exports,s,s.exports,r),s.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var i in t)r.o(t,i)&&!r.o(e,i)&&Object.defineProperty(e,i,{enumerable:!0,get:t[i]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{"use strict";const e=function(e){let t=e.closest("label");return e.id&&!t&&(t=e.getRootNode().querySelector(`label[for="${e.id}"]`)),t?(t.querySelectorAll("input, select, textarea").forEach(e=>e.remove()),t.innerHTML):""},t=function(e){const t=e.closest("fieldset")?.querySelector?.("legend");return t?(t.querySelectorAll("input, select, textarea").forEach(e=>e.remove()),t.innerHTML):""},i=function(t){const r={name:t.name,class_name:t.className,default:t.value,label:e(t),required:t.required};return t.hasAttribute("min")&&(r.min=t.min),t.hasAttribute("max")&&(r.max=t.max),r},n=function(t){return"#text"===t?.nextSibling?.nodeName?t.nextSibling.nodeValue:e(t)},{mimes:s}=window.JetFormBuilderParserConfig,o={email:A,tel:A,url:A,password:A,text:A,color:function*(t){const r={name:t.name,class_name:t.className,default:t.value,label:e(t),required:t.required};yield{name:"jet-forms/color-picker-field",attributes:r,innerBlocks:[]}},radio:function*(r){if(r.jfbObserved)return;const i=r.getRootNode(),s=Array.from(i.querySelectorAll(`input[type="radio"][name="${r.name}"]`));s.forEach(e=>{e.jfbObserved=!0});const o={name:r.name,class_name:r.className,field_options:[],label:t(r)||e(r),required:r.required};for(const e of s)o.field_options.push({value:e.value,label:n(e)}),e.checked&&(o.default=e.value);yield{name:"jet-forms/radio-field",attributes:o,innerBlocks:[]}},checkbox:function*(r){if(r.jfbObserved)return;const i=r.getRootNode(),s=Array.from(i.querySelectorAll(`input[type="checkbox"][name="${r.name}"]`));s.forEach(e=>{e.jfbObserved=!0});const o={name:r.name,class_name:r.className,field_options:[],label:t(r)||e(r),required:r.required};for(const e of s)o.field_options.push({value:e.value,label:n(e)}),e.checked&&(o.default=e.value);yield{name:"jet-forms/checkbox-field",attributes:o,innerBlocks:[]}},date:function*(e){yield{name:"jet-forms/date-field",attributes:i(e),innerBlocks:[]}},datetime:a,"datetime-local":a,time:function*(e){yield{name:"jet-forms/time-field",attributes:i(e),innerBlocks:[]}},file:function*(t){const r={name:t.name,class_name:t.className,label:e(t),required:t.required,allowed_mimes:[]};r.allowed_mimes=t.accept.split(",").map(e=>function(e){let t=!1;for(const r in s){if(!s.hasOwnProperty(r))continue;const i=new RegExp(".("+r+")$","i");e.match(i)&&(t=s[r])}return t}(e.trim())),yield{name:"jet-forms/media-field",attributes:r,innerBlocks:[]}},hidden:function*(e){yield{name:"jet-forms/hidden-field",attributes:{name:e.name,class_name:e.className,default:e.value},innerBlocks:[]}},number:function*(e){const t=i(e);t.placeholder=e.placeholder,e.hasAttribute("step")&&(t.step=e.step),yield{name:"jet-forms/number-field",attributes:t,innerBlocks:[]}},range:function*(e){const t=i(e);e.hasAttribute("step")&&(t.step=e.step),yield{name:"jet-forms/range-field",attributes:t,innerBlocks:[]}},submit:function*(e){yield{name:"jet-forms/submit-field",attributes:{label:e.value||"Submit",class_name:e.className},innerBlocks:[]}}};function*A(t){const r={field_type:t.type,name:t.name,class_name:t.className,default:t.value,label:e(t),required:t.required,placeholder:t.placeholder};t.hasAttribute("maxlength")&&(r.maxlength=t.maxLength),t.hasAttribute("minlength")&&(r.minlength=t.minLength),yield{name:"jet-forms/text-field",attributes:r,innerBlocks:[]}}function*a(e){yield{name:"jet-forms/datetime-field",attributes:i(e),innerBlocks:[]}}const{applyFilters:c}=JetPlugins.hooks,l={INPUT:function*(e){if(e.type=e.type||"text",!o.hasOwnProperty(e.type))return;const t=o[e.type];yield*t(e)},SELECT:function*(t){const r={name:t.name,class_name:t.className,label:e(t),required:t.required,field_options:[]},i=Object.entries(t.options);for(const[e,t]of i)0!==+e||t.value?(r.field_options.push({value:t.value,label:t.label}),t.selected&&(r.default=t.value)):r.placeholder=t.label;yield{name:"jet-forms/select-field",attributes:r,innerBlocks:[]}},TEXTAREA:function*(t){const r={name:t.name,class_name:t.className,label:e(t),required:t.required,placeholder:t.placeholder};t.hasAttribute("maxlength")&&(r.maxlength=t.maxLength),t.hasAttribute("minlength")&&(r.minlength=t.minLength),yield{name:"jet-forms/textarea-field",attributes:r,innerBlocks:[]}},BUTTON:function*(e){!e.type||e.type&&"submit"!==e.type||(yield{name:"jet-forms/submit-field",attributes:{label:e.innerHTML.trim(),class_name:e.className},innerBlocks:[]})}};var u=r(8059),h=r.n(u);document.createElement("div");window.JetFormBuilderParser={parseHTMLtoBlocks:function(e){const t=document.createElement("div");t.innerHTML=e;const r=[],i=t.querySelectorAll("input, textarea, select, button");for(const e of i){const t=c("jet.fb.parse.node",!1,e);if(Array.isArray(t)){r.push(...t);continue}const i=l[e.nodeName];r.push(...Array.from(i(e)))}return r},resolveLabel:e,getFormInnerFields:function(e){const t=h()(e,{allowedTags:["form","input","select","option","textarea","button","fieldset","legend","label","div","h1","h2","h3","h4","h5","h6","span","p","br"],allowedAttributes:!1}),r=document.createElement("div");r.innerHTML=t;const i=r.querySelector("form");return i?i.innerHTML:""}}})()})(); \ No newline at end of file +(()=>{var e={12:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=new Uint16Array("Ȁaglq\tɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map((function(e){return e.charCodeAt(0)})))},259:(e,t,r)=>{"use strict";let n=r(4318),i=r(6973);class s extends Error{constructor(e,t,r,n,i,o){super(e),this.name="CssSyntaxError",this.reason=e,i&&(this.file=i),n&&(this.source=n),o&&(this.plugin=o),void 0!==t&&void 0!==r&&("number"==typeof t?(this.line=t,this.column=r):(this.line=t.line,this.column=t.column,this.endLine=r.line,this.endColumn=r.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,s)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(e){if(!this.source)return"";let t=this.source;null==e&&(e=n.isColorSupported);let r=e=>e,s=e=>e,o=e=>e;if(e){let{bold:e,gray:t,red:a}=n.createColors(!0);s=t=>e(a(t)),r=e=>t(e),i&&(o=e=>i(e))}let a=t.split(/\r?\n/),l=Math.max(this.line-3,0),c=Math.min(this.line+2,a.length),u=String(c).length;return a.slice(l,c).map(((e,t)=>{let n=l+1+t,i=" "+(" "+n).slice(-u)+" | ";if(n===this.line){if(e.length>160){let t=20,n=Math.max(0,this.column-t),a=Math.max(this.column+t,this.endColumn+t),l=e.slice(n,a),c=r(i.replace(/\d/g," "))+e.slice(0,Math.min(this.column-1,t-1)).replace(/[^\t]/g," ");return s(">")+r(i)+o(l)+"\n "+c+s("^")}let t=r(i.replace(/\d/g," "))+e.slice(0,this.column-1).replace(/[^\t]/g," ");return s(">")+r(i)+o(e)+"\n "+t+s("^")}return" "+r(i)+o(e)})).join("\n")}toString(){let e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e}}e.exports=s,s.default=s},349:(e,t)=>{"use strict";function r(e){for(var t=1;t{"use strict";let n=r(1173);class i{get content(){return this.css}constructor(e,t,r){this.processor=e,this.messages=[],this.root=t,this.opts=r,this.css="",this.map=void 0}toString(){return this.css}warn(e,t={}){t.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);let r=new n(e,t);return this.messages.push(r),r}warnings(){return this.messages.filter((e=>"warning"===e.type))}}e.exports=i,i.default=i},874:()=>{},887:(e,t)=>{"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.replaceCodePoint=t.fromCodePoint=void 0;var n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function i(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}t.fromCodePoint=null!==(r=String.fromCodePoint)&&void 0!==r?r:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+String.fromCharCode(e)},t.replaceCodePoint=i,t.default=function(e){return(0,t.fromCodePoint)(i(e))}},1047:function(e,t,r){"use strict";var n=this&&this.__assign||function(){return n=Object.assign||function(e){for(var t,r=1,n=arguments.length;r");case a.Comment:return"\x3c!--".concat(e.data,"--\x3e");case a.CDATA:return function(e){return"")}(e);case a.Script:case a.Style:case a.Tag:return function(e,t){var r;"foreign"===t.xmlMode&&(e.name=null!==(r=c.elementNames.get(e.name))&&void 0!==r?r:e.name,e.parent&&m.has(e.parent.name)&&(t=n(n({},t),{xmlMode:!1}))),!t.xmlMode&&g.has(e.name)&&(t=n(n({},t),{xmlMode:"foreign"}));var i="<".concat(e.name),s=function(e,t){var r;if(e){var n=!1===(null!==(r=t.encodeEntities)&&void 0!==r?r:t.decodeEntities)?h:t.xmlMode||"utf8"!==t.encodeEntities?l.encodeXML:l.escapeAttribute;return Object.keys(e).map((function(r){var i,s,o=null!==(i=e[r])&&void 0!==i?i:"";return"foreign"===t.xmlMode&&(r=null!==(s=c.attributeNames.get(r))&&void 0!==s?s:r),t.emptyAttrs||t.xmlMode||""!==o?"".concat(r,'="').concat(n(o),'"'):r})).join(" ")}}(e.attribs,t);return s&&(i+=" ".concat(s)),0===e.children.length&&(t.xmlMode?!1!==t.selfClosingTags:t.selfClosingTags&&d.has(e.name))?(t.xmlMode||(i+=" "),i+="/>"):(i+=">",e.children.length>0&&(i+=p(e.children,t)),!t.xmlMode&&d.has(e.name)||(i+=""))),i}(e,t);case a.Text:return function(e,t){var r,n=e.data||"";return!1===(null!==(r=t.encodeEntities)&&void 0!==r?r:t.decodeEntities)||!t.xmlMode&&e.parent&&u.has(e.parent.name)||(n=t.xmlMode||"utf8"!==t.encodeEntities?(0,l.encodeXML)(n):(0,l.escapeText)(n)),n}(e,t)}}t.render=p,t.default=p;var m=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignObject","desc","title"]),g=new Set(["svg","math"])},1173:e=>{"use strict";class t{constructor(e,t={}){if(this.type="warning",this.text=e,t.node&&t.node.source){let e=t.node.rangeBy(t);this.line=e.start.line,this.column=e.start.column,this.endLine=e.end.line,this.endColumn=e.end.column}for(let e in t)this[e]=t[e]}toString(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}e.exports=t,t.default=t},1176:(e,t,r)=>{"use strict";let n=r(5621);class i extends n{constructor(e){super(e),this.type="comment"}}e.exports=i,i.default=i},1210:(e,t,r)=>{"use strict";let n=r(6099),i=r(3922);const s=r(780);let o=r(9068);r(3471);class a{get content(){return this.result.css}get css(){return this.result.css}get map(){return this.result.map}get messages(){return[]}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){if(this._root)return this._root;let e,t=i;try{e=t(this._css,this._opts)}catch(e){this.error=e}if(this.error)throw this.error;return this._root=e,e}get[Symbol.toStringTag](){return"NoWorkResult"}constructor(e,t,r){let i;t=t.toString(),this.stringified=!1,this._processor=e,this._css=t,this._opts=r,this._map=void 0;let a=o;this.result=new s(this._processor,i,this._opts),this.result.css=t;let l=this;Object.defineProperty(this.result,"root",{get:()=>l.root});let c=new n(a,i,this._opts,t);if(c.isMap()){let[e,t]=c.generate();e&&(this.result.css=e),t&&(this.result.map=t)}else c.clearAnnotation(),this.result.css=c.css}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}sync(){if(this.error)throw this.error;return this.result}then(e,t){return this.async().then(e,t)}toString(){return this._css}warnings(){return[]}}e.exports=a,a.default=a},1281:(e,t,r)=>{"use strict";let n=r(5621);class i extends n{get variable(){return this.prop.startsWith("--")||"$"===this.prop[0]}constructor(e){e&&void 0!==e.value&&"string"!=typeof e.value&&(e={...e,value:String(e.value)}),super(e),this.type="decl"}}e.exports=i,i.default=i},1866:()=>{},2133:function(e,t,r){"use strict";var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),t.hasChildren=t.isDocument=t.isComment=t.isText=t.isCDATA=t.isTag=void 0,i(r(3380),t),i(r(7427),t),i(r(2472),t),i(r(6841),t),i(r(5622),t),i(r(3632),t),i(r(9332),t);var s=r(4576);Object.defineProperty(t,"isTag",{enumerable:!0,get:function(){return s.isTag}}),Object.defineProperty(t,"isCDATA",{enumerable:!0,get:function(){return s.isCDATA}}),Object.defineProperty(t,"isText",{enumerable:!0,get:function(){return s.isText}}),Object.defineProperty(t,"isComment",{enumerable:!0,get:function(){return s.isComment}}),Object.defineProperty(t,"isDocument",{enumerable:!0,get:function(){return s.isDocument}}),Object.defineProperty(t,"hasChildren",{enumerable:!0,get:function(){return s.hasChildren}})},2312:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.escapeText=t.escapeAttribute=t.escapeUTF8=t.escape=t.encodeXML=t.getCodePoint=t.xmlReplacer=void 0,t.xmlReplacer=/["&'<>$\x80-\uFFFF]/g;var r=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function n(e){for(var n,i="",s=0;null!==(n=t.xmlReplacer.exec(e));){var o=n.index,a=e.charCodeAt(o),l=r.get(a);void 0!==l?(i+=e.substring(s,o)+l,s=o+1):(i+="".concat(e.substring(s,o),"&#x").concat((0,t.getCodePoint)(e,o).toString(16),";"),s=t.xmlReplacer.lastIndex+=Number(55296==(64512&a)))}return i+e.substr(s)}function i(e,t){return function(r){for(var n,i=0,s="";n=e.exec(r);)i!==n.index&&(s+=r.substring(i,n.index)),s+=t.get(n[0].charCodeAt(0)),i=n.index+1;return s+r.substring(i)}}t.getCodePoint=null!=String.prototype.codePointAt?function(e,t){return e.codePointAt(t)}:function(e,t){return 55296==(64512&e.charCodeAt(t))?1024*(e.charCodeAt(t)-55296)+e.charCodeAt(t+1)-56320+65536:e.charCodeAt(t)},t.encodeXML=n,t.escape=n,t.escapeUTF8=i(/[&<>'"]/g,r),t.escapeAttribute=i(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),t.escapeText=i(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]]))},2472:(e,t)=>{"use strict";function r(e){if(e.prev&&(e.prev.next=e.next),e.next&&(e.next.prev=e.prev),e.parent){var t=e.parent.children,r=t.lastIndexOf(e);r>=0&&t.splice(r,1)}e.next=null,e.prev=null,e.parent=null}Object.defineProperty(t,"__esModule",{value:!0}),t.removeElement=r,t.replaceElement=function(e,t){var r=t.prev=e.prev;r&&(r.next=t);var n=t.next=e.next;n&&(n.prev=t);var i=t.parent=e.parent;if(i){var s=i.children;s[s.lastIndexOf(e)]=t,e.parent=null}},t.appendChild=function(e,t){if(r(t),t.next=null,t.parent=e,e.children.push(t)>1){var n=e.children[e.children.length-2];n.next=t,t.prev=n}else t.prev=null},t.append=function(e,t){r(t);var n=e.parent,i=e.next;if(t.next=i,t.prev=e,e.next=t,t.parent=n,i){if(i.prev=t,n){var s=n.children;s.splice(s.lastIndexOf(i),0,t)}}else n&&n.children.push(t)},t.prependChild=function(e,t){if(r(t),t.parent=e,t.prev=null,1!==e.children.unshift(t)){var n=e.children[1];n.prev=t,t.next=n}else t.next=null},t.prepend=function(e,t){r(t);var n=e.parent;if(n){var i=n.children;i.splice(i.indexOf(e),0,t)}e.prev&&(e.prev.next=t),t.parent=n,t.prev=e.prev,t.next=e,e.prev=t}},2648:(e,t,r)=>{"use strict";let n,i,s=r(9062);class o extends s{constructor(e){super({type:"document",...e}),this.nodes||(this.nodes=[])}toResult(e={}){return new n(new i,this,e).stringify()}}o.registerLazyResult=e=>{n=e},o.registerProcessor=e=>{i=e},e.exports=o,o.default=o},2803:e=>{"use strict";const t={after:"\n",beforeClose:"\n",beforeComment:"\n",beforeDecl:"\n",beforeOpen:" ",beforeRule:"\n",colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1};class r{constructor(e){this.builder=e}atrule(e,t){let r="@"+e.name,n=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?r+=e.raws.afterName:n&&(r+=" "),e.nodes)this.block(e,r+n);else{let i=(e.raws.between||"")+(t?";":"");this.builder(r+n+i,e)}}beforeAfter(e,t){let r;r="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");let n=e.parent,i=0;for(;n&&"root"!==n.type;)i+=1,n=n.parent;if(r.includes("\n")){let t=this.raw(e,null,"indent");if(t.length)for(let e=0;e0&&"comment"===e.nodes[t].type;)t-=1;let r=this.raw(e,"semicolon");for(let n=0;n{if(i=e.raws[r],void 0!==i)return!1}))}var a;return void 0===i&&(i=t[n]),o.rawCache[n]=i,i}rawBeforeClose(e){let t;return e.walk((e=>{if(e.nodes&&e.nodes.length>0&&void 0!==e.raws.after)return t=e.raws.after,t.includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1})),t&&(t=t.replace(/\S/g,"")),t}rawBeforeComment(e,t){let r;return e.walkComments((e=>{if(void 0!==e.raws.before)return r=e.raws.before,r.includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1})),void 0===r?r=this.raw(t,null,"beforeDecl"):r&&(r=r.replace(/\S/g,"")),r}rawBeforeDecl(e,t){let r;return e.walkDecls((e=>{if(void 0!==e.raws.before)return r=e.raws.before,r.includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1})),void 0===r?r=this.raw(t,null,"beforeRule"):r&&(r=r.replace(/\S/g,"")),r}rawBeforeOpen(e){let t;return e.walk((e=>{if("decl"!==e.type&&(t=e.raws.between,void 0!==t))return!1})),t}rawBeforeRule(e){let t;return e.walk((r=>{if(r.nodes&&(r.parent!==e||e.first!==r)&&void 0!==r.raws.before)return t=r.raws.before,t.includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1})),t&&(t=t.replace(/\S/g,"")),t}rawColon(e){let t;return e.walkDecls((e=>{if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1})),t}rawEmptyBody(e){let t;return e.walk((e=>{if(e.nodes&&0===e.nodes.length&&(t=e.raws.after,void 0!==t))return!1})),t}rawIndent(e){if(e.raws.indent)return e.raws.indent;let t;return e.walk((r=>{let n=r.parent;if(n&&n!==e&&n.parent&&n.parent===e&&void 0!==r.raws.before){let e=r.raws.before.split("\n");return t=e[e.length-1],t=t.replace(/\S/g,""),!1}})),t}rawSemicolon(e){let t;return e.walk((e=>{if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&(t=e.raws.semicolon,void 0!==t))return!1})),t}rawValue(e,t){let r=e[t],n=e.raws[t];return n&&n.value===r?n.raw:r}root(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}rule(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}stringify(e,t){if(!this[e.type])throw new Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}}e.exports=r,r.default=r},2957:function(e,t,r){"use strict";var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),s=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)"default"!==r&&Object.prototype.hasOwnProperty.call(e,r)&&n(t,e,r);return i(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Parser=void 0;var o=s(r(6181)),a=r(6861),l=new Set(["input","option","optgroup","select","button","datalist","textarea"]),c=new Set(["p"]),u=new Set(["thead","tbody"]),h=new Set(["dd","dt"]),d=new Set(["rt","rp"]),p=new Map([["tr",new Set(["tr","th","td"])],["th",new Set(["th"])],["td",new Set(["thead","th","td"])],["body",new Set(["head","link","script"])],["li",new Set(["li"])],["p",c],["h1",c],["h2",c],["h3",c],["h4",c],["h5",c],["h6",c],["select",l],["input",l],["output",l],["button",l],["datalist",l],["textarea",l],["option",new Set(["option"])],["optgroup",new Set(["optgroup","option"])],["dd",h],["dt",h],["address",c],["article",c],["aside",c],["blockquote",c],["details",c],["div",c],["dl",c],["fieldset",c],["figcaption",c],["figure",c],["footer",c],["form",c],["header",c],["hr",c],["main",c],["nav",c],["ol",c],["pre",c],["section",c],["table",c],["ul",c],["rt",d],["rp",d],["tbody",u],["tfoot",u]]),f=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]),m=new Set(["math","svg"]),g=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignobject","desc","title"]),b=/\s|\//,y=function(){function e(e,t){var r,n,i,s,a;void 0===t&&(t={}),this.options=t,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=e?e:{},this.lowerCaseTagNames=null!==(r=t.lowerCaseTags)&&void 0!==r?r:!t.xmlMode,this.lowerCaseAttributeNames=null!==(n=t.lowerCaseAttributeNames)&&void 0!==n?n:!t.xmlMode,this.tokenizer=new(null!==(i=t.Tokenizer)&&void 0!==i?i:o.default)(this.options,this),null===(a=(s=this.cbs).onparserinit)||void 0===a||a.call(s,this)}return e.prototype.ontext=function(e,t){var r,n,i=this.getSlice(e,t);this.endIndex=t-1,null===(n=(r=this.cbs).ontext)||void 0===n||n.call(r,i),this.startIndex=t},e.prototype.ontextentity=function(e){var t,r,n=this.tokenizer.getSectionStart();this.endIndex=n-1,null===(r=(t=this.cbs).ontext)||void 0===r||r.call(t,(0,a.fromCodePoint)(e)),this.startIndex=n},e.prototype.isVoidElement=function(e){return!this.options.xmlMode&&f.has(e)},e.prototype.onopentagname=function(e,t){this.endIndex=t;var r=this.getSlice(e,t);this.lowerCaseTagNames&&(r=r.toLowerCase()),this.emitOpenTag(r)},e.prototype.emitOpenTag=function(e){var t,r,n,i;this.openTagStart=this.startIndex,this.tagname=e;var s=!this.options.xmlMode&&p.get(e);if(s)for(;this.stack.length>0&&s.has(this.stack[this.stack.length-1]);){var o=this.stack.pop();null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,o,!0)}this.isVoidElement(e)||(this.stack.push(e),m.has(e)?this.foreignContext.push(!0):g.has(e)&&this.foreignContext.push(!1)),null===(i=(n=this.cbs).onopentagname)||void 0===i||i.call(n,e),this.cbs.onopentag&&(this.attribs={})},e.prototype.endOpenTag=function(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&(null===(r=(t=this.cbs).onopentag)||void 0===r||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""},e.prototype.onopentagend=function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1},e.prototype.onclosetag=function(e,t){var r,n,i,s,o,a;this.endIndex=t;var l=this.getSlice(e,t);if(this.lowerCaseTagNames&&(l=l.toLowerCase()),(m.has(l)||g.has(l))&&this.foreignContext.pop(),this.isVoidElement(l))this.options.xmlMode||"br"!==l||(null===(n=(r=this.cbs).onopentagname)||void 0===n||n.call(r,"br"),null===(s=(i=this.cbs).onopentag)||void 0===s||s.call(i,"br",{},!0),null===(a=(o=this.cbs).onclosetag)||void 0===a||a.call(o,"br",!1));else{var c=this.stack.lastIndexOf(l);if(-1!==c)if(this.cbs.onclosetag)for(var u=this.stack.length-c;u--;)this.cbs.onclosetag(this.stack.pop(),0!==u);else this.stack.length=c;else this.options.xmlMode||"p"!==l||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1},e.prototype.onselfclosingtag=function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)},e.prototype.closeCurrentTag=function(e){var t,r,n=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===n&&(null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,n,!e),this.stack.pop())},e.prototype.onattribname=function(e,t){this.startIndex=e;var r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r},e.prototype.onattribdata=function(e,t){this.attribvalue+=this.getSlice(e,t)},e.prototype.onattribentity=function(e){this.attribvalue+=(0,a.fromCodePoint)(e)},e.prototype.onattribend=function(e,t){var r,n;this.endIndex=t,null===(n=(r=this.cbs).onattribute)||void 0===n||n.call(r,this.attribname,this.attribvalue,e===o.QuoteType.Double?'"':e===o.QuoteType.Single?"'":e===o.QuoteType.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""},e.prototype.getInstructionName=function(e){var t=e.search(b),r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r},e.prototype.ondeclaration=function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("!".concat(n),"!".concat(r))}this.startIndex=t+1},e.prototype.onprocessinginstruction=function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("?".concat(n),"?".concat(r))}this.startIndex=t+1},e.prototype.oncomment=function(e,t,r){var n,i,s,o;this.endIndex=t,null===(i=(n=this.cbs).oncomment)||void 0===i||i.call(n,this.getSlice(e,t-r)),null===(o=(s=this.cbs).oncommentend)||void 0===o||o.call(s),this.startIndex=t+1},e.prototype.oncdata=function(e,t,r){var n,i,s,o,a,l,c,u,h,d;this.endIndex=t;var p=this.getSlice(e,t-r);this.options.xmlMode||this.options.recognizeCDATA?(null===(i=(n=this.cbs).oncdatastart)||void 0===i||i.call(n),null===(o=(s=this.cbs).ontext)||void 0===o||o.call(s,p),null===(l=(a=this.cbs).oncdataend)||void 0===l||l.call(a)):(null===(u=(c=this.cbs).oncomment)||void 0===u||u.call(c,"[CDATA[".concat(p,"]]")),null===(d=(h=this.cbs).oncommentend)||void 0===d||d.call(h)),this.startIndex=t+1},e.prototype.onend=function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var r=this.stack.length;r>0;this.cbs.onclosetag(this.stack[--r],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)},e.prototype.reset=function(){var e,t,r,n;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(n=(r=this.cbs).onparserinit)||void 0===n||n.call(r,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1},e.prototype.parseComplete=function(e){this.reset(),this.end(e)},e.prototype.getSlice=function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r},e.prototype.shiftBuffer=function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()},e.prototype.write=function(e){var t,r;this.ended?null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,new Error(".write() after done!")):(this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++))},e.prototype.end=function(e){var t,r;this.ended?null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,new Error(".end() after done!")):(e&&this.write(e),this.ended=!0,this.tokenizer.end())},e.prototype.pause=function(){this.tokenizer.pause()},e.prototype.resume=function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.decodeXMLStrict=t.decodeHTML5Strict=t.decodeHTML4Strict=t.decodeHTML5=t.decodeHTML4=t.decodeHTMLAttribute=t.decodeHTMLStrict=t.decodeHTML=t.decodeXML=t.DecodingMode=t.EntityDecoder=t.encodeHTML5=t.encodeHTML4=t.encodeNonAsciiHTML=t.encodeHTML=t.escapeText=t.escapeAttribute=t.escapeUTF8=t.escape=t.encodeXML=t.encode=t.decodeStrict=t.decode=t.EncodingMode=t.EntityLevel=void 0;var n,i,s=r(6861),o=r(9061),a=r(2312);function l(e,t){if(void 0===t&&(t=n.XML),("number"==typeof t?t:t.level)===n.HTML){var r="object"==typeof t?t.mode:void 0;return(0,s.decodeHTML)(e,r)}return(0,s.decodeXML)(e)}!function(e){e[e.XML=0]="XML",e[e.HTML=1]="HTML"}(n=t.EntityLevel||(t.EntityLevel={})),function(e){e[e.UTF8=0]="UTF8",e[e.ASCII=1]="ASCII",e[e.Extensive=2]="Extensive",e[e.Attribute=3]="Attribute",e[e.Text=4]="Text"}(i=t.EncodingMode||(t.EncodingMode={})),t.decode=l,t.decodeStrict=function(e,t){var r;void 0===t&&(t=n.XML);var i="number"==typeof t?{level:t}:t;return null!==(r=i.mode)&&void 0!==r||(i.mode=s.DecodingMode.Strict),l(e,i)},t.encode=function(e,t){void 0===t&&(t=n.XML);var r="number"==typeof t?{level:t}:t;return r.mode===i.UTF8?(0,a.escapeUTF8)(e):r.mode===i.Attribute?(0,a.escapeAttribute)(e):r.mode===i.Text?(0,a.escapeText)(e):r.level===n.HTML?r.mode===i.ASCII?(0,o.encodeNonAsciiHTML)(e):(0,o.encodeHTML)(e):(0,a.encodeXML)(e)};var c=r(2312);Object.defineProperty(t,"encodeXML",{enumerable:!0,get:function(){return c.encodeXML}}),Object.defineProperty(t,"escape",{enumerable:!0,get:function(){return c.escape}}),Object.defineProperty(t,"escapeUTF8",{enumerable:!0,get:function(){return c.escapeUTF8}}),Object.defineProperty(t,"escapeAttribute",{enumerable:!0,get:function(){return c.escapeAttribute}}),Object.defineProperty(t,"escapeText",{enumerable:!0,get:function(){return c.escapeText}});var u=r(9061);Object.defineProperty(t,"encodeHTML",{enumerable:!0,get:function(){return u.encodeHTML}}),Object.defineProperty(t,"encodeNonAsciiHTML",{enumerable:!0,get:function(){return u.encodeNonAsciiHTML}}),Object.defineProperty(t,"encodeHTML4",{enumerable:!0,get:function(){return u.encodeHTML}}),Object.defineProperty(t,"encodeHTML5",{enumerable:!0,get:function(){return u.encodeHTML}});var h=r(6861);Object.defineProperty(t,"EntityDecoder",{enumerable:!0,get:function(){return h.EntityDecoder}}),Object.defineProperty(t,"DecodingMode",{enumerable:!0,get:function(){return h.DecodingMode}}),Object.defineProperty(t,"decodeXML",{enumerable:!0,get:function(){return h.decodeXML}}),Object.defineProperty(t,"decodeHTML",{enumerable:!0,get:function(){return h.decodeHTML}}),Object.defineProperty(t,"decodeHTMLStrict",{enumerable:!0,get:function(){return h.decodeHTMLStrict}}),Object.defineProperty(t,"decodeHTMLAttribute",{enumerable:!0,get:function(){return h.decodeHTMLAttribute}}),Object.defineProperty(t,"decodeHTML4",{enumerable:!0,get:function(){return h.decodeHTML}}),Object.defineProperty(t,"decodeHTML5",{enumerable:!0,get:function(){return h.decodeHTML}}),Object.defineProperty(t,"decodeHTML4Strict",{enumerable:!0,get:function(){return h.decodeHTMLStrict}}),Object.defineProperty(t,"decodeHTML5Strict",{enumerable:!0,get:function(){return h.decodeHTMLStrict}}),Object.defineProperty(t,"decodeXMLStrict",{enumerable:!0,get:function(){return h.decodeXML}})},3149:(e,t,r)=>{"use strict";let n=r(2648),i=r(4333),s=r(1210),o=r(9901);class a{constructor(e=[]){this.version="8.5.5",this.plugins=this.normalize(e)}normalize(e){let t=[];for(let r of e)if(!0===r.postcss?r=r():r.postcss&&(r=r.postcss),"object"==typeof r&&Array.isArray(r.plugins))t=t.concat(r.plugins);else if("object"==typeof r&&r.postcssPlugin)t.push(r);else if("function"==typeof r)t.push(r);else if("object"!=typeof r||!r.parse&&!r.stringify)throw new Error(r+" is not a PostCSS plugin");return t}process(e,t={}){return this.plugins.length||t.parser||t.stringifier||t.syntax?new i(this,e,t):new s(this,e,t)}use(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}}e.exports=a,a.default=a,o.registerProcessor(a),n.registerProcessor(a)},3380:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.getOuterHTML=a,t.getInnerHTML=function(e,t){return(0,i.hasChildren)(e)?e.children.map((function(e){return a(e,t)})).join(""):""},t.getText=function e(t){return Array.isArray(t)?t.map(e).join(""):(0,i.isTag)(t)?"br"===t.name?"\n":e(t.children):(0,i.isCDATA)(t)?e(t.children):(0,i.isText)(t)?t.data:""},t.textContent=function e(t){return Array.isArray(t)?t.map(e).join(""):(0,i.hasChildren)(t)&&!(0,i.isComment)(t)?e(t.children):(0,i.isText)(t)?t.data:""},t.innerText=function e(t){return Array.isArray(t)?t.map(e).join(""):(0,i.hasChildren)(t)&&(t.type===o.ElementType.Tag||(0,i.isCDATA)(t))?e(t.children):(0,i.isText)(t)?t.data:""};var i=r(4576),s=n(r(1047)),o=r(8788);function a(e,t){return(0,s.default)(e,t)}},3407:e=>{"use strict";e.exports=e=>{if("string"!=typeof e)throw new TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}},3471:e=>{"use strict";let t={};e.exports=function(e){t[e]||(t[e]=!0,"undefined"!=typeof console&&console.warn&&console.warn(e))}},3632:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DocumentPosition=void 0,t.removeSubsets=function(e){for(var t=e.length;--t>=0;){var r=e[t];if(t>0&&e.lastIndexOf(r,t-1)>=0)e.splice(t,1);else for(var n=r.parent;n;n=n.parent)if(e.includes(n)){e.splice(t,1);break}}return e},t.compareDocumentPosition=s,t.uniqueSort=function(e){return(e=e.filter((function(e,t,r){return!r.includes(e,t+1)}))).sort((function(e,t){var r=s(e,t);return r&n.PRECEDING?-1:r&n.FOLLOWING?1:0})),e};var n,i=r(4576);function s(e,t){var r=[],s=[];if(e===t)return 0;for(var o=(0,i.hasChildren)(e)?e:e.parent;o;)r.unshift(o),o=o.parent;for(o=(0,i.hasChildren)(t)?t:t.parent;o;)s.unshift(o),o=o.parent;for(var a=Math.min(r.length,s.length),l=0;lu.indexOf(d)?c===t?n.FOLLOWING|n.CONTAINED_BY:n.FOLLOWING:c===e?n.PRECEDING|n.CONTAINS:n.PRECEDING}!function(e){e[e.DISCONNECTED=1]="DISCONNECTED",e[e.PRECEDING=2]="PRECEDING",e[e.FOLLOWING=4]="FOLLOWING",e[e.CONTAINS=8]="CONTAINS",e[e.CONTAINED_BY=16]="CONTAINED_BY"}(n||(t.DocumentPosition=n={}))},3663:(e,t)=>{"use strict";function r(e){return"[object Object]"===Object.prototype.toString.call(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.isPlainObject=function(e){var t,n;return!1!==r(e)&&(void 0===(t=e.constructor)||!1!==r(n=t.prototype)&&!1!==n.hasOwnProperty("isPrototypeOf"))}},3708:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀𝒵௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀𝔟g΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀𝔫ȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀𝔬ͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roð໻tré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map((function(e){return e.charCodeAt(0)})))},3838:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),s=this&&this.__assign||function(){return s=Object.assign||function(e){for(var t,r=1,n=arguments.length;r0?this.children[this.children.length-1]:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"childNodes",{get:function(){return this.children},set:function(e){this.children=e},enumerable:!1,configurable:!0}),t}(a);t.NodeWithChildren=d;var p=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=o.ElementType.CDATA,t}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 4},enumerable:!1,configurable:!0}),t}(d);t.CDATA=p;var f=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=o.ElementType.Root,t}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 9},enumerable:!1,configurable:!0}),t}(d);t.Document=f;var m=function(e){function t(t,r,n,i){void 0===n&&(n=[]),void 0===i&&(i="script"===t?o.ElementType.Script:"style"===t?o.ElementType.Style:o.ElementType.Tag);var s=e.call(this,n)||this;return s.name=t,s.attribs=r,s.type=i,s}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"tagName",{get:function(){return this.name},set:function(e){this.name=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"attributes",{get:function(){var e=this;return Object.keys(this.attribs).map((function(t){var r,n;return{name:t,value:e.attribs[t],namespace:null===(r=e["x-attribsNamespace"])||void 0===r?void 0:r[t],prefix:null===(n=e["x-attribsPrefix"])||void 0===n?void 0:n[t]}}))},enumerable:!1,configurable:!0}),t}(d);function g(e){return(0,o.isTag)(e)}function b(e){return e.type===o.ElementType.CDATA}function y(e){return e.type===o.ElementType.Text}function v(e){return e.type===o.ElementType.Comment}function w(e){return e.type===o.ElementType.Directive}function x(e){return e.type===o.ElementType.Root}function S(e,t){var r;if(void 0===t&&(t=!1),y(e))r=new c(e.data);else if(v(e))r=new u(e.data);else if(g(e)){var n=t?T(e.children):[],i=new m(e.name,s({},e.attribs),n);n.forEach((function(e){return e.parent=i})),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=s({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=s({},e["x-attribsPrefix"])),r=i}else if(b(e)){n=t?T(e.children):[];var o=new p(n);n.forEach((function(e){return e.parent=o})),r=o}else if(x(e)){n=t?T(e.children):[];var a=new f(n);n.forEach((function(e){return e.parent=a})),e["x-mode"]&&(a["x-mode"]=e["x-mode"]),r=a}else{if(!w(e))throw new Error("Not implemented yet: ".concat(e.type));var l=new h(e.name,e.data);null!=e["x-name"]&&(l["x-name"]=e["x-name"],l["x-publicId"]=e["x-publicId"],l["x-systemId"]=e["x-systemId"]),r=l}return r.startIndex=e.startIndex,r.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(r.sourceCodeLocation=e.sourceCodeLocation),r}function T(e){for(var t=e.map((function(e){return S(e,!0)})),r=1;r{"use strict";let n=r(9062),i=r(6173),s=r(5266);function o(e,t){let r=new i(e,t),n=new s(r);try{n.parse()}catch(e){throw e}return n.root}e.exports=o,o.default=o,n.registerParse(o)},4318:e=>{var t=String,r=function(){return{isColorSupported:!1,reset:t,bold:t,dim:t,italic:t,underline:t,inverse:t,hidden:t,strikethrough:t,black:t,red:t,green:t,yellow:t,blue:t,magenta:t,cyan:t,white:t,gray:t,bgBlack:t,bgRed:t,bgGreen:t,bgYellow:t,bgBlue:t,bgMagenta:t,bgCyan:t,bgWhite:t,blackBright:t,redBright:t,greenBright:t,yellowBright:t,blueBright:t,magentaBright:t,cyanBright:t,whiteBright:t,bgBlackBright:t,bgRedBright:t,bgGreenBright:t,bgYellowBright:t,bgBlueBright:t,bgMagentaBright:t,bgCyanBright:t,bgWhiteBright:t}};e.exports=r(),e.exports.createColors=r},4333:(e,t,r)=>{"use strict";let n=r(9062),i=r(2648),s=r(6099),o=r(3922),a=r(780),l=r(9901),c=r(9068),{isClean:u,my:h}=r(6644);r(3471);const d={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},p={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},f={Once:!0,postcssPlugin:!0,prepare:!0};function m(e){return"object"==typeof e&&"function"==typeof e.then}function g(e){let t=!1,r=d[e.type];return"decl"===e.type?t=e.prop.toLowerCase():"atrule"===e.type&&(t=e.name.toLowerCase()),t&&e.append?[r,r+"-"+t,0,r+"Exit",r+"Exit-"+t]:t?[r,r+"-"+t,r+"Exit",r+"Exit-"+t]:e.append?[r,0,r+"Exit"]:[r,r+"Exit"]}function b(e){let t;return t="document"===e.type?["Document",0,"DocumentExit"]:"root"===e.type?["Root",0,"RootExit"]:g(e),{eventIndex:0,events:t,iterator:0,node:e,visitorIndex:0,visitors:[]}}function y(e){return e[u]=!1,e.nodes&&e.nodes.forEach((e=>y(e))),e}let v={};class w{get content(){return this.stringify().content}get css(){return this.stringify().css}get map(){return this.stringify().map}get messages(){return this.sync().messages}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){return this.sync().root}get[Symbol.toStringTag](){return"LazyResult"}constructor(e,t,r){let i;if(this.stringified=!1,this.processed=!1,"object"!=typeof t||null===t||"root"!==t.type&&"document"!==t.type)if(t instanceof w||t instanceof a)i=y(t.root),t.map&&(void 0===r.map&&(r.map={}),r.map.inline||(r.map.inline=!1),r.map.prev=t.map);else{let e=o;r.syntax&&(e=r.syntax.parse),r.parser&&(e=r.parser),e.parse&&(e=e.parse);try{i=e(t,r)}catch(e){this.processed=!0,this.error=e}i&&!i[h]&&n.rebuild(i)}else i=y(t);this.result=new a(e,i,r),this.helpers={...v,postcss:v,result:this.result},this.plugins=this.processor.plugins.map((e=>"object"==typeof e&&e.prepare?{...e,...e.prepare(this.result)}:e))}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(e,t){let r=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,"CssSyntaxError"!==e.name||e.plugin?r.postcssVersion:(e.plugin=r.postcssPlugin,e.setMessage())}catch(e){console&&console.error&&console.error(e)}return e}prepareVisitors(){this.listeners={};let e=(e,t,r)=>{this.listeners[t]||(this.listeners[t]=[]),this.listeners[t].push([e,r])};for(let t of this.plugins)if("object"==typeof t)for(let r in t){if(!p[r]&&/^[A-Z]/.test(r))throw new Error(`Unknown event ${r} in ${t.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!f[r])if("object"==typeof t[r])for(let n in t[r])e(t,"*"===n?r:r+"-"+n.toLowerCase(),t[r][n]);else"function"==typeof t[r]&&e(t,r,t[r])}this.hasListener=Object.keys(this.listeners).length>0}async runAsync(){this.plugin=0;for(let e=0;e0;){let e=this.visitTick(t);if(m(e))try{await e}catch(e){let r=t[t.length-1].node;throw this.handleError(e,r)}}}if(this.listeners.OnceExit)for(let[t,r]of this.listeners.OnceExit){this.result.lastPlugin=t;try{if("document"===e.type){let t=e.nodes.map((e=>r(e,this.helpers)));await Promise.all(t)}else await r(e,this.helpers)}catch(e){throw this.handleError(e)}}}return this.processed=!0,this.stringify()}runOnRoot(e){this.result.lastPlugin=e;try{if("object"==typeof e&&e.Once){if("document"===this.result.root.type){let t=this.result.root.nodes.map((t=>e.Once(t,this.helpers)));return m(t[0])?Promise.all(t):t}return e.Once(this.result.root,this.helpers)}if("function"==typeof e)return e(this.result.root,this.result)}catch(e){throw this.handleError(e)}}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let e=this.result.opts,t=c;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);let r=new s(t,this.result.root,this.result.opts).generate();return this.result.css=r[0],this.result.map=r[1],this.result}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let e of this.plugins)if(m(this.runOnRoot(e)))throw this.getAsyncError();if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[u];)e[u]=!0,this.walkSync(e);if(this.listeners.OnceExit)if("document"===e.type)for(let t of e.nodes)this.visitSync(this.listeners.OnceExit,t);else this.visitSync(this.listeners.OnceExit,e)}return this.result}then(e,t){return this.async().then(e,t)}toString(){return this.css}visitSync(e,t){for(let[r,n]of e){let e;this.result.lastPlugin=r;try{e=n(t,this.helpers)}catch(e){throw this.handleError(e,t.proxyOf)}if("root"!==t.type&&"document"!==t.type&&!t.parent)return!0;if(m(e))throw this.getAsyncError()}}visitTick(e){let t=e[e.length-1],{node:r,visitors:n}=t;if("root"!==r.type&&"document"!==r.type&&!r.parent)return void e.pop();if(n.length>0&&t.visitorIndex{e[u]||this.walkSync(e)}));else{let t=this.listeners[r];if(t&&this.visitSync(t,e.toProxy()))return}}warnings(){return this.sync().warnings()}}w.registerPostcss=e=>{v=e},e.exports=w,w.default=w,l.registerLazyResult(w),i.registerLazyResult(w)},4576:function(e,t,r){"use strict";var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),t.DomHandler=void 0;var s=r(8788),o=r(3838);i(r(3838),t);var a={withStartIndices:!1,withEndIndices:!1,xmlMode:!1},l=function(){function e(e,t,r){this.dom=[],this.root=new o.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null,"function"==typeof t&&(r=t,t=a),"object"==typeof e&&(t=e,e=void 0),this.callback=null!=e?e:null,this.options=null!=t?t:a,this.elementCB=null!=r?r:null}return e.prototype.onparserinit=function(e){this.parser=e},e.prototype.onreset=function(){this.dom=[],this.root=new o.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null},e.prototype.onend=function(){this.done||(this.done=!0,this.parser=null,this.handleCallback(null))},e.prototype.onerror=function(e){this.handleCallback(e)},e.prototype.onclosetag=function(){this.lastNode=null;var e=this.tagStack.pop();this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),this.elementCB&&this.elementCB(e)},e.prototype.onopentag=function(e,t){var r=this.options.xmlMode?s.ElementType.Tag:void 0,n=new o.Element(e,t,void 0,r);this.addNode(n),this.tagStack.push(n)},e.prototype.ontext=function(e){var t=this.lastNode;if(t&&t.type===s.ElementType.Text)t.data+=e,this.options.withEndIndices&&(t.endIndex=this.parser.endIndex);else{var r=new o.Text(e);this.addNode(r),this.lastNode=r}},e.prototype.oncomment=function(e){if(this.lastNode&&this.lastNode.type===s.ElementType.Comment)this.lastNode.data+=e;else{var t=new o.Comment(e);this.addNode(t),this.lastNode=t}},e.prototype.oncommentend=function(){this.lastNode=null},e.prototype.oncdatastart=function(){var e=new o.Text(""),t=new o.CDATA([e]);this.addNode(t),e.parent=t,this.lastNode=e},e.prototype.oncdataend=function(){this.lastNode=null},e.prototype.onprocessinginstruction=function(e,t){var r=new o.ProcessingInstruction(e,t);this.addNode(r)},e.prototype.handleCallback=function(e){if("function"==typeof this.callback)this.callback(e,this.dom);else if(e)throw e},e.prototype.addNode=function(e){var t=this.tagStack[this.tagStack.length-1],r=t.children[t.children.length-1];this.options.withStartIndices&&(e.startIndex=this.parser.startIndex),this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),t.children.push(e),r&&(e.prev=r,r.next=e),e.parent=t,this.lastNode=null},e}();t.DomHandler=l,t.default=l},5266:(e,t,r)=>{"use strict";let n=r(5571),i=r(1176),s=r(1281),o=r(9901),a=r(9463),l=r(6120);const c={empty:!0,space:!0};e.exports=class{constructor(e){this.input=e,this.root=new o,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:e,start:{column:1,line:1,offset:0}}}atrule(e){let t,r,i,s=new n;s.name=e[1].slice(1),""===s.name&&this.unnamedAtrule(s,e),this.init(s,e[2]);let o=!1,a=!1,l=[],c=[];for(;!this.tokenizer.endOfFile();){if(t=(e=this.tokenizer.nextToken())[0],"("===t||"["===t?c.push("("===t?")":"]"):"{"===t&&c.length>0?c.push("}"):t===c[c.length-1]&&c.pop(),0===c.length){if(";"===t){s.source.end=this.getPosition(e[2]),s.source.end.offset++,this.semicolon=!0;break}if("{"===t){a=!0;break}if("}"===t){if(l.length>0){for(i=l.length-1,r=l[i];r&&"space"===r[0];)r=l[--i];r&&(s.source.end=this.getPosition(r[3]||r[2]),s.source.end.offset++)}this.end(e);break}l.push(e)}else l.push(e);if(this.tokenizer.endOfFile()){o=!0;break}}s.raws.between=this.spacesAndCommentsFromEnd(l),l.length?(s.raws.afterName=this.spacesAndCommentsFromStart(l),this.raw(s,"params",l),o&&(e=l[l.length-1],s.source.end=this.getPosition(e[3]||e[2]),s.source.end.offset++,this.spaces=s.raws.between,s.raws.between="")):(s.raws.afterName="",s.params=""),a&&(s.nodes=[],this.current=s)}checkMissedSemicolon(e){let t=this.colon(e);if(!1===t)return;let r,n=0;for(let i=t-1;i>=0&&(r=e[i],"space"===r[0]||(n+=1,2!==n));i--);throw this.input.error("Missed semicolon","word"===r[0]?r[3]+1:r[2])}colon(e){let t,r,n,i=0;for(let[s,o]of e.entries()){if(r=o,n=r[0],"("===n&&(i+=1),")"===n&&(i-=1),0===i&&":"===n){if(t){if("word"===t[0]&&"progid"===t[1])continue;return s}this.doubleColon(r)}t=r}return!1}comment(e){let t=new i;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++;let r=e[1].slice(2,-2);if(/^\s*$/.test(r))t.text="",t.raws.left=r,t.raws.right="";else{let e=r.match(/^(\s*)([^]*\S)(\s*)$/);t.text=e[2],t.raws.left=e[1],t.raws.right=e[3]}}createTokenizer(){this.tokenizer=l(this.input)}decl(e,t){let r=new s;this.init(r,e[0][2]);let n,i=e[e.length-1];for(";"===i[0]&&(this.semicolon=!0,e.pop()),r.source.end=this.getPosition(i[3]||i[2]||function(e){for(let t=e.length-1;t>=0;t--){let r=e[t],n=r[3]||r[2];if(n)return n}}(e)),r.source.end.offset++;"word"!==e[0][0];)1===e.length&&this.unknownWord(e),r.raws.before+=e.shift()[1];for(r.source.start=this.getPosition(e[0][2]),r.prop="";e.length;){let t=e[0][0];if(":"===t||"space"===t||"comment"===t)break;r.prop+=e.shift()[1]}for(r.raws.between="";e.length;){if(n=e.shift(),":"===n[0]){r.raws.between+=n[1];break}"word"===n[0]&&/\w/.test(n[1])&&this.unknownWord([n]),r.raws.between+=n[1]}"_"!==r.prop[0]&&"*"!==r.prop[0]||(r.raws.before+=r.prop[0],r.prop=r.prop.slice(1));let o,a=[];for(;e.length&&(o=e[0][0],"space"===o||"comment"===o);)a.push(e.shift());this.precheckMissedSemicolon(e);for(let t=e.length-1;t>=0;t--){if(n=e[t],"!important"===n[1].toLowerCase()){r.important=!0;let n=this.stringFrom(e,t);n=this.spacesFromEnd(e)+n," !important"!==n&&(r.raws.important=n);break}if("important"===n[1].toLowerCase()){let n=e.slice(0),i="";for(let e=t;e>0;e--){let t=n[e][0];if(i.trim().startsWith("!")&&"space"!==t)break;i=n.pop()[1]+i}i.trim().startsWith("!")&&(r.important=!0,r.raws.important=i,e=n)}if("space"!==n[0]&&"comment"!==n[0])break}e.some((e=>"space"!==e[0]&&"comment"!==e[0]))&&(r.raws.between+=a.map((e=>e[1])).join(""),a=[]),this.raw(r,"value",a.concat(e),t),r.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}emptyRule(e){let t=new a;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}end(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}freeSemicolon(e){if(this.spaces+=e[1],this.current.nodes){let t=this.current.nodes[this.current.nodes.length-1];t&&"rule"===t.type&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="",t.source.end=this.getPosition(e[2]),t.source.end.offset+=t.raws.ownSemicolon.length)}}getPosition(e){let t=this.input.fromOffset(e);return{column:t.col,line:t.line,offset:e}}init(e,t){this.current.push(e),e.source={input:this.input,start:this.getPosition(t)},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)}other(e){let t=!1,r=null,n=!1,i=null,s=[],o=e[1].startsWith("--"),a=[],l=e;for(;l;){if(r=l[0],a.push(l),"("===r||"["===r)i||(i=l),s.push("("===r?")":"]");else if(o&&n&&"{"===r)i||(i=l),s.push("}");else if(0===s.length){if(";"===r){if(n)return void this.decl(a,o);break}if("{"===r)return void this.rule(a);if("}"===r){this.tokenizer.back(a.pop()),t=!0;break}":"===r&&(n=!0)}else r===s[s.length-1]&&(s.pop(),0===s.length&&(i=null));l=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),s.length>0&&this.unclosedBracket(i),t&&n){if(!o)for(;a.length&&(l=a[a.length-1][0],"space"===l||"comment"===l);)this.tokenizer.back(a.pop());this.decl(a,o)}else this.unknownWord(a)}parse(){let e;for(;!this.tokenizer.endOfFile();)switch(e=this.tokenizer.nextToken(),e[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()}precheckMissedSemicolon(){}raw(e,t,r,n){let i,s,o,a,l=r.length,u="",h=!0;for(let e=0;ee+t[1]),"");e.raws[t]={raw:n,value:u}}e[t]=u}rule(e){e.pop();let t=new a;this.init(t,e[0][2]),t.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(t,"selector",e),this.current=t}spacesAndCommentsFromEnd(e){let t,r="";for(;e.length&&(t=e[e.length-1][0],"space"===t||"comment"===t);)r=e.pop()[1]+r;return r}spacesAndCommentsFromStart(e){let t,r="";for(;e.length&&(t=e[0][0],"space"===t||"comment"===t);)r+=e.shift()[1];return r}spacesFromEnd(e){let t,r="";for(;e.length&&(t=e[e.length-1][0],"space"===t);)r=e.pop()[1]+r;return r}stringFrom(e,t){let r="";for(let n=t;n{"use strict";let n=r(9062);class i extends n{constructor(e){super(e),this.type="atrule"}append(...e){return this.proxyOf.nodes||(this.nodes=[]),super.append(...e)}prepend(...e){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...e)}}e.exports=i,i.default=i,n.registerAtRule(i)},5621:(e,t,r)=>{"use strict";let n=r(259),i=r(2803),s=r(9068),{isClean:o,my:a}=r(6644);function l(e,t){let r=new e.constructor;for(let n in e){if(!Object.prototype.hasOwnProperty.call(e,n))continue;if("proxyCache"===n)continue;let i=e[n],s=typeof i;"parent"===n&&"object"===s?t&&(r[n]=t):"source"===n?r[n]=i:Array.isArray(i)?r[n]=i.map((e=>l(e,r))):("object"===s&&null!==i&&(i=l(i)),r[n]=i)}return r}function c(e,t){if(t&&void 0!==t.offset)return t.offset;let r=1,n=1,i=0;for(let s=0;s"proxyOf"===t?e:"root"===t?()=>e.root().toProxy():e[t],set:(e,t,r)=>(e[t]===r||(e[t]=r,"prop"!==t&&"value"!==t&&"name"!==t&&"params"!==t&&"important"!==t&&"text"!==t||e.markDirty()),!0)}}markClean(){this[o]=!0}markDirty(){if(this[o]){this[o]=!1;let e=this;for(;e=e.parent;)e[o]=!1}}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}positionBy(e={}){let t=this.source.start;if(e.index)t=this.positionInside(e.index);else if(e.word){let r="document"in this.source.input?this.source.input.document:this.source.input.css,n=r.slice(c(r,this.source.start),c(r,this.source.end)).indexOf(e.word);-1!==n&&(t=this.positionInside(n))}return t}positionInside(e){let t=this.source.start.column,r=this.source.start.line,n="document"in this.source.input?this.source.input.document:this.source.input.css,i=c(n,this.source.start),s=i+e;for(let e=i;e"object"==typeof e&&e.toJSON?e.toJSON(null,t):e));else if("object"==typeof n&&n.toJSON)r[e]=n.toJSON(null,t);else if("source"===e){if(null==n)continue;let s=t.get(n.input);null==s&&(s=i,t.set(n.input,i),i++),r[e]={end:n.end,inputId:s,start:n.start}}else r[e]=n}return n&&(r.inputs=[...t.keys()].map((e=>e.toJSON()))),r}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}toString(e=s){e.stringify&&(e=e.stringify);let t="";return e(this,(e=>{t+=e})),t}warn(e,t,r={}){let n={node:this};for(let e in r)n[e]=r[e];return e.warn(t,n)}}e.exports=u,u.default=u},5622:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.testElement=function(e,t){var r=l(e);return!r||r(t)},t.getElements=function(e,t,r,n){void 0===n&&(n=1/0);var s=l(e);return s?(0,i.filter)(s,t,r,n):[]},t.getElementById=function(e,t,r){return void 0===r&&(r=!0),Array.isArray(t)||(t=[t]),(0,i.findOne)(o("id",e),t,r)},t.getElementsByTagName=function(e,t,r,n){return void 0===r&&(r=!0),void 0===n&&(n=1/0),(0,i.filter)(s.tag_name(e),t,r,n)},t.getElementsByClassName=function(e,t,r,n){return void 0===r&&(r=!0),void 0===n&&(n=1/0),(0,i.filter)(o("class",e),t,r,n)},t.getElementsByTagType=function(e,t,r,n){return void 0===r&&(r=!0),void 0===n&&(n=1/0),(0,i.filter)(s.tag_type(e),t,r,n)};var n=r(4576),i=r(6841),s={tag_name:function(e){return"function"==typeof e?function(t){return(0,n.isTag)(t)&&e(t.name)}:"*"===e?n.isTag:function(t){return(0,n.isTag)(t)&&t.name===e}},tag_type:function(e){return"function"==typeof e?function(t){return e(t.type)}:function(t){return t.type===e}},tag_contains:function(e){return"function"==typeof e?function(t){return(0,n.isText)(t)&&e(t.data)}:function(t){return(0,n.isText)(t)&&t.data===e}}};function o(e,t){return"function"==typeof t?function(r){return(0,n.isTag)(r)&&t(r.attribs[e])}:function(r){return(0,n.isTag)(r)&&r.attribs[e]===t}}function a(e,t){return function(r){return e(r)||t(r)}}function l(e){var t=Object.keys(e).map((function(t){var r=e[t];return Object.prototype.hasOwnProperty.call(s,t)?s[t](r):o(t,r)}));return 0===t.length?null:t.reduce(a)}},5653:e=>{"use strict";let t={comma:e=>t.split(e,[","],!0),space:e=>t.split(e,[" ","\n","\t"]),split(e,t,r){let n=[],i="",s=!1,o=0,a=!1,l="",c=!1;for(let r of e)c?c=!1:"\\"===r?c=!0:a?r===l&&(a=!1):'"'===r||"'"===r?(a=!0,l=r):"("===r?o+=1:")"===r?o>0&&(o-=1):0===o&&t.includes(r)&&(s=!0),s?(""!==i&&n.push(i.trim()),i="",s=!1):i+=r;return(r||""!==i)&&n.push(i.trim()),n}};e.exports=t,t.default=t},5887:()=>{},5923:(e,t,r)=>{"use strict";let{existsSync:n,readFileSync:i}=r(874),{dirname:s,join:o}=r(8818),{SourceMapConsumer:a,SourceMapGenerator:l}=r(5887);class c{constructor(e,t){if(!1===t.map)return;this.loadAnnotation(e),this.inline=this.startWith(this.annotation,"data:");let r=t.map?t.map.prev:void 0,n=this.loadMap(t.from,r);!this.mapFile&&t.from&&(this.mapFile=t.from),this.mapFile&&(this.root=s(this.mapFile)),n&&(this.text=n)}consumer(){return this.consumerCache||(this.consumerCache=new a(this.text)),this.consumerCache}decodeInline(e){let t=e.match(/^data:application\/json;charset=utf-?8,/)||e.match(/^data:application\/json,/);if(t)return decodeURIComponent(e.substr(t[0].length));let r=e.match(/^data:application\/json;charset=utf-?8;base64,/)||e.match(/^data:application\/json;base64,/);if(r)return n=e.substr(r[0].length),Buffer?Buffer.from(n,"base64").toString():window.atob(n);var n;let i=e.match(/data:application\/json;([^,]+),/)[1];throw new Error("Unsupported source map encoding "+i)}getAnnotationURL(e){return e.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}isMap(e){return"object"==typeof e&&("string"==typeof e.mappings||"string"==typeof e._mappings||Array.isArray(e.sections))}loadAnnotation(e){let t=e.match(/\/\*\s*# sourceMappingURL=/g);if(!t)return;let r=e.lastIndexOf(t.pop()),n=e.indexOf("*/",r);r>-1&&n>-1&&(this.annotation=this.getAnnotationURL(e.substring(r,n)))}loadFile(e){if(this.root=s(e),n(e))return this.mapFile=e,i(e,"utf-8").toString().trim()}loadMap(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"!=typeof t){if(t instanceof a)return l.fromSourceMap(t).toString();if(t instanceof l)return t.toString();if(this.isMap(t))return JSON.stringify(t);throw new Error("Unsupported previous source map format: "+t.toString())}{let r=t(e);if(r){let e=this.loadFile(r);if(!e)throw new Error("Unable to load previous source map: "+r.toString());return e}}}else{if(this.inline)return this.decodeInline(this.annotation);if(this.annotation){let t=this.annotation;return e&&(t=o(s(e),t)),this.loadFile(t)}}}startWith(e,t){return!!e&&e.substr(0,t.length)===t}withContent(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}}e.exports=c,c.default=c},6099:(e,t,r)=>{"use strict";let{dirname:n,relative:i,resolve:s,sep:o}=r(8818),{SourceMapConsumer:a,SourceMapGenerator:l}=r(5887),{pathToFileURL:c}=r(1866),u=r(6173),h=Boolean(a&&l),d=Boolean(n&&s&&i&&o);e.exports=class{constructor(e,t,r,n){this.stringify=e,this.mapOpts=r.map||{},this.root=t,this.opts=r,this.css=n,this.originalCSS=n,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}addAnnotation(){let e;e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:"function"==typeof this.mapOpts.annotation?this.mapOpts.annotation(this.opts.to,this.root):this.outputFile()+".map";let t="\n";this.css.includes("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"}applyPrevMaps(){for(let e of this.previous()){let t,r=this.toUrl(this.path(e.file)),i=e.root||n(e.file);!1===this.mapOpts.sourcesContent?(t=new a(e.text),t.sourcesContent&&(t.sourcesContent=null)):t=e.consumer(),this.map.applySourceMap(t,r,this.toUrl(this.path(i)))}}clearAnnotation(){if(!1!==this.mapOpts.annotation)if(this.root){let e;for(let t=this.root.nodes.length-1;t>=0;t--)e=this.root.nodes[t],"comment"===e.type&&e.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(t)}else this.css&&(this.css=this.css.replace(/\n*\/\*#[\S\s]*?\*\/$/gm,""))}generate(){if(this.clearAnnotation(),d&&h&&this.isMap())return this.generateMap();{let e="";return this.stringify(this.root,(t=>{e+=t})),[e]}}generateMap(){if(this.root)this.generateString();else if(1===this.previous().length){let e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=l.fromSourceMap(e,{ignoreInvalidMapping:!0})}else this.map=new l({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):""});return this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline()?[this.css]:[this.css,this.map]}generateString(){this.css="",this.map=new l({file:this.outputFile(),ignoreInvalidMapping:!0});let e,t,r=1,n=1,i="",s={generated:{column:0,line:0},original:{column:0,line:0},source:""};this.stringify(this.root,((o,a,l)=>{if(this.css+=o,a&&"end"!==l&&(s.generated.line=r,s.generated.column=n-1,a.source&&a.source.start?(s.source=this.sourcePath(a),s.original.line=a.source.start.line,s.original.column=a.source.start.column-1,this.map.addMapping(s)):(s.source=i,s.original.line=1,s.original.column=0,this.map.addMapping(s))),t=o.match(/\n/g),t?(r+=t.length,e=o.lastIndexOf("\n"),n=o.length-e):n+=o.length,a&&"start"!==l){let e=a.parent||{raws:{}};("decl"===a.type||"atrule"===a.type&&!a.nodes)&&a===e.last&&!e.raws.semicolon||(a.source&&a.source.end?(s.source=this.sourcePath(a),s.original.line=a.source.end.line,s.original.column=a.source.end.column-1,s.generated.line=r,s.generated.column=n-2,this.map.addMapping(s)):(s.source=i,s.original.line=1,s.original.column=0,s.generated.line=r,s.generated.column=n-1,this.map.addMapping(s)))}}))}isAnnotation(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some((e=>e.annotation)))}isInline(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;let e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some((e=>e.inline)))}isMap(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0}isSourcesContent(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some((e=>e.withContent()))}outputFile(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}path(e){if(this.mapOpts.absolute)return e;if(60===e.charCodeAt(0))return e;if(/^\w+:\/\//.test(e))return e;let t=this.memoizedPaths.get(e);if(t)return t;let r=this.opts.to?n(this.opts.to):".";"string"==typeof this.mapOpts.annotation&&(r=n(s(r,this.mapOpts.annotation)));let o=i(r,e);return this.memoizedPaths.set(e,o),o}previous(){if(!this.previousMaps)if(this.previousMaps=[],this.root)this.root.walk((e=>{if(e.source&&e.source.input.map){let t=e.source.input.map;this.previousMaps.includes(t)||this.previousMaps.push(t)}}));else{let e=new u(this.originalCSS,this.opts);e.map&&this.previousMaps.push(e.map)}return this.previousMaps}setSourcesContent(){let e={};if(this.root)this.root.walk((t=>{if(t.source){let r=t.source.input.from;if(r&&!e[r]){e[r]=!0;let n=this.usesFileUrls?this.toFileUrl(r):this.toUrl(this.path(r));this.map.setSourceContent(n,t.source.input.css)}}}));else if(this.css){let e=this.opts.from?this.toUrl(this.path(this.opts.from)):"";this.map.setSourceContent(e,this.css)}}sourcePath(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}toBase64(e){return Buffer?Buffer.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}toFileUrl(e){let t=this.memoizedFileURLs.get(e);if(t)return t;if(c){let t=c(e).toString();return this.memoizedFileURLs.set(e,t),t}throw new Error("`map.absolute` option is not available in this PostCSS build")}toUrl(e){let t=this.memoizedURLs.get(e);if(t)return t;"\\"===o&&(e=e.replace(/\\/g,"/"));let r=encodeURI(e).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(e,r),r}}},6120:e=>{"use strict";const t="'".charCodeAt(0),r='"'.charCodeAt(0),n="\\".charCodeAt(0),i="/".charCodeAt(0),s="\n".charCodeAt(0),o=" ".charCodeAt(0),a="\f".charCodeAt(0),l="\t".charCodeAt(0),c="\r".charCodeAt(0),u="[".charCodeAt(0),h="]".charCodeAt(0),d="(".charCodeAt(0),p=")".charCodeAt(0),f="{".charCodeAt(0),m="}".charCodeAt(0),g=";".charCodeAt(0),b="*".charCodeAt(0),y=":".charCodeAt(0),v="@".charCodeAt(0),w=/[\t\n\f\r "#'()/;[\\\]{}]/g,x=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,S=/.[\r\n"'(/\\]/,T=/[\da-f]/i;e.exports=function(e,A={}){let E,C,k,O,N,I,P,D,L,q,M=e.css.valueOf(),B=A.ignoreErrors,j=M.length,R=0,_=[],U=[];function H(t){throw e.error("Unclosed "+t,R)}return{back:function(e){U.push(e)},endOfFile:function(){return 0===U.length&&R>=j},nextToken:function(e){if(U.length)return U.pop();if(R>=j)return;let A=!!e&&e.ignoreUnclosed;switch(E=M.charCodeAt(R),E){case s:case o:case l:case c:case a:O=R;do{O+=1,E=M.charCodeAt(O)}while(E===o||E===s||E===l||E===c||E===a);I=["space",M.slice(R,O)],R=O-1;break;case u:case h:case f:case m:case y:case g:case p:{let e=String.fromCharCode(E);I=[e,e,R];break}case d:if(q=_.length?_.pop()[1]:"",L=M.charCodeAt(R+1),"url"===q&&L!==t&&L!==r&&L!==o&&L!==s&&L!==l&&L!==a&&L!==c){O=R;do{if(P=!1,O=M.indexOf(")",O+1),-1===O){if(B||A){O=R;break}H("bracket")}for(D=O;M.charCodeAt(D-1)===n;)D-=1,P=!P}while(P);I=["brackets",M.slice(R,O+1),R,O],R=O}else O=M.indexOf(")",R+1),C=M.slice(R,O+1),-1===O||S.test(C)?I=["(","(",R]:(I=["brackets",C,R,O],R=O);break;case t:case r:N=E===t?"'":'"',O=R;do{if(P=!1,O=M.indexOf(N,O+1),-1===O){if(B||A){O=R+1;break}H("string")}for(D=O;M.charCodeAt(D-1)===n;)D-=1,P=!P}while(P);I=["string",M.slice(R,O+1),R,O],R=O;break;case v:w.lastIndex=R+1,w.test(M),O=0===w.lastIndex?M.length-1:w.lastIndex-2,I=["at-word",M.slice(R,O+1),R,O],R=O;break;case n:for(O=R,k=!0;M.charCodeAt(O+1)===n;)O+=1,k=!k;if(E=M.charCodeAt(O+1),k&&E!==i&&E!==o&&E!==s&&E!==l&&E!==c&&E!==a&&(O+=1,T.test(M.charAt(O)))){for(;T.test(M.charAt(O+1));)O+=1;M.charCodeAt(O+1)===o&&(O+=1)}I=["word",M.slice(R,O+1),R,O],R=O;break;default:E===i&&M.charCodeAt(R+1)===b?(O=M.indexOf("*/",R+2)+1,0===O&&(B||A?O=M.length:H("comment")),I=["comment",M.slice(R,O+1),R,O],R=O):(x.lastIndex=R+1,x.test(M),O=0===x.lastIndex?M.length-1:x.lastIndex-2,I=["word",M.slice(R,O+1),R,O],_.push(I),R=O)}return R++,I},position:function(){return R}}}},6173:(e,t,r)=>{"use strict";let{nanoid:n}=r(6703),{isAbsolute:i,resolve:s}=r(8818),{SourceMapConsumer:o,SourceMapGenerator:a}=r(5887),{fileURLToPath:l,pathToFileURL:c}=r(1866),u=r(259),h=r(5923),d=r(6973),p=Symbol("lineToIndexCache"),f=Boolean(o&&a),m=Boolean(s&&i);function g(e){if(e[p])return e[p];let t=e.css.split("\n"),r=new Array(t.length),n=0;for(let e=0,i=t.length;e"),this.map&&(this.map.file=this.from)}error(e,t,r,n={}){let i,s,o,a,l;if(t&&"object"==typeof t){let e=t,n=r;if("number"==typeof e.offset){a=e.offset;let n=this.fromOffset(a);t=n.line,r=n.col}else t=e.line,r=e.column,a=this.fromLineAndColumn(t,r);if("number"==typeof n.offset){o=n.offset;let e=this.fromOffset(o);s=e.line,i=e.col}else s=n.line,i=n.column,o=this.fromLineAndColumn(n.line,n.column)}else if(r)a=this.fromLineAndColumn(t,r);else{a=t;let e=this.fromOffset(a);t=e.line,r=e.col}let h=this.origin(t,r,s,i);return l=h?new u(e,void 0===h.endLine?h.line:{column:h.column,line:h.line},void 0===h.endLine?h.column:{column:h.endColumn,line:h.endLine},h.source,h.file,n.plugin):new u(e,void 0===s?t:{column:r,line:t},void 0===s?r:{column:i,line:s},this.css,this.file,n.plugin),l.input={column:r,endColumn:i,endLine:s,endOffset:o,line:t,offset:a,source:this.css},this.file&&(c&&(l.input.url=c(this.file).toString()),l.input.file=this.file),l}fromLineAndColumn(e,t){return g(this)[e-1]+t-1}fromOffset(e){let t=g(this),r=0;if(e>=t[t.length-1])r=t.length-1;else{let n,i=t.length-2;for(;r>1),e=t[n+1])){r=n;break}r=n+1}}return{col:e-t[r]+1,line:r+1}}mapResolve(e){return/^\w+:\/\//.test(e)?e:s(this.map.consumer().sourceRoot||this.map.root||".",e)}origin(e,t,r,n){if(!this.map)return!1;let s,o,a=this.map.consumer(),u=a.originalPositionFor({column:t,line:e});if(!u.source)return!1;"number"==typeof r&&(s=a.originalPositionFor({column:n,line:r})),o=i(u.source)?c(u.source):new URL(u.source,this.map.consumer().sourceRoot||c(this.map.mapFile));let h={column:u.column,endColumn:s&&s.column,endLine:s&&s.line,line:u.line,url:o.toString()};if("file:"===o.protocol){if(!l)throw new Error("file: protocol is not available in this PostCSS build");h.file=l(o)}let d=a.sourceContentFor(u.source);return d&&(h.source=d),h}toJSON(){let e={};for(let t of["hasBOM","css","file","id"])null!=this[t]&&(e[t]=this[t]);return this.map&&(e.map={...this.map},e.map.consumerCache&&(e.map.consumerCache=void 0)),e}}e.exports=b,b.default=b,d&&d.registerInput&&d.registerInput(b)},6181:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.QuoteType=void 0;var n,i,s,o=r(6861);function a(e){return e===n.Space||e===n.NewLine||e===n.Tab||e===n.FormFeed||e===n.CarriageReturn}function l(e){return e===n.Slash||e===n.Gt||a(e)}function c(e){return e>=n.Zero&&e<=n.Nine}!function(e){e[e.Tab=9]="Tab",e[e.NewLine=10]="NewLine",e[e.FormFeed=12]="FormFeed",e[e.CarriageReturn=13]="CarriageReturn",e[e.Space=32]="Space",e[e.ExclamationMark=33]="ExclamationMark",e[e.Number=35]="Number",e[e.Amp=38]="Amp",e[e.SingleQuote=39]="SingleQuote",e[e.DoubleQuote=34]="DoubleQuote",e[e.Dash=45]="Dash",e[e.Slash=47]="Slash",e[e.Zero=48]="Zero",e[e.Nine=57]="Nine",e[e.Semi=59]="Semi",e[e.Lt=60]="Lt",e[e.Eq=61]="Eq",e[e.Gt=62]="Gt",e[e.Questionmark=63]="Questionmark",e[e.UpperA=65]="UpperA",e[e.LowerA=97]="LowerA",e[e.UpperF=70]="UpperF",e[e.LowerF=102]="LowerF",e[e.UpperZ=90]="UpperZ",e[e.LowerZ=122]="LowerZ",e[e.LowerX=120]="LowerX",e[e.OpeningSquareBracket=91]="OpeningSquareBracket"}(n||(n={})),function(e){e[e.Text=1]="Text",e[e.BeforeTagName=2]="BeforeTagName",e[e.InTagName=3]="InTagName",e[e.InSelfClosingTag=4]="InSelfClosingTag",e[e.BeforeClosingTagName=5]="BeforeClosingTagName",e[e.InClosingTagName=6]="InClosingTagName",e[e.AfterClosingTagName=7]="AfterClosingTagName",e[e.BeforeAttributeName=8]="BeforeAttributeName",e[e.InAttributeName=9]="InAttributeName",e[e.AfterAttributeName=10]="AfterAttributeName",e[e.BeforeAttributeValue=11]="BeforeAttributeValue",e[e.InAttributeValueDq=12]="InAttributeValueDq",e[e.InAttributeValueSq=13]="InAttributeValueSq",e[e.InAttributeValueNq=14]="InAttributeValueNq",e[e.BeforeDeclaration=15]="BeforeDeclaration",e[e.InDeclaration=16]="InDeclaration",e[e.InProcessingInstruction=17]="InProcessingInstruction",e[e.BeforeComment=18]="BeforeComment",e[e.CDATASequence=19]="CDATASequence",e[e.InSpecialComment=20]="InSpecialComment",e[e.InCommentLike=21]="InCommentLike",e[e.BeforeSpecialS=22]="BeforeSpecialS",e[e.SpecialStartSequence=23]="SpecialStartSequence",e[e.InSpecialTag=24]="InSpecialTag",e[e.BeforeEntity=25]="BeforeEntity",e[e.BeforeNumericEntity=26]="BeforeNumericEntity",e[e.InNamedEntity=27]="InNamedEntity",e[e.InNumericEntity=28]="InNumericEntity",e[e.InHexEntity=29]="InHexEntity"}(i||(i={})),function(e){e[e.NoValue=0]="NoValue",e[e.Unquoted=1]="Unquoted",e[e.Single=2]="Single",e[e.Double=3]="Double"}(s=t.QuoteType||(t.QuoteType={}));var u={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},h=function(){function e(e,t){var r=e.xmlMode,n=void 0!==r&&r,s=e.decodeEntities,a=void 0===s||s;this.cbs=t,this.state=i.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=i.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=n,this.decodeEntities=a,this.entityTrie=n?o.xmlDecodeTree:o.htmlDecodeTree}return e.prototype.reset=function(){this.state=i.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=i.Text,this.currentSequence=void 0,this.running=!0,this.offset=0},e.prototype.write=function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()},e.prototype.end=function(){this.running&&this.finish()},e.prototype.pause=function(){this.running=!1},e.prototype.resume=function(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=i.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===n.Amp&&(this.state=i.BeforeEntity)},e.prototype.stateSpecialStartSequence=function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?l(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t)return void this.sequenceIndex++}else this.isSpecial=!1;this.sequenceIndex=0,this.state=i.InTagName,this.stateInTagName(e)},e.prototype.stateInSpecialTag=function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===n.Gt||a(e)){var t=this.index-this.currentSequence.length;if(this.sectionStart=n.LowerA&&e<=n.LowerZ||e>=n.UpperA&&e<=n.UpperZ}(e)},e.prototype.startSpecial=function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=i.SpecialStartSequence},e.prototype.stateBeforeTagName=function(e){if(e===n.ExclamationMark)this.state=i.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===n.Questionmark)this.state=i.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var t=32|e;this.sectionStart=this.index,this.xmlMode||t!==u.TitleEnd[2]?this.state=this.xmlMode||t!==u.ScriptEnd[2]?i.InTagName:i.BeforeSpecialS:this.startSpecial(u.TitleEnd,3)}else e===n.Slash?this.state=i.BeforeClosingTagName:(this.state=i.Text,this.stateText(e))},e.prototype.stateInTagName=function(e){l(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=i.BeforeAttributeName,this.stateBeforeAttributeName(e))},e.prototype.stateBeforeClosingTagName=function(e){a(e)||(e===n.Gt?this.state=i.Text:(this.state=this.isTagStartChar(e)?i.InClosingTagName:i.InSpecialComment,this.sectionStart=this.index))},e.prototype.stateInClosingTagName=function(e){(e===n.Gt||a(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=i.AfterClosingTagName,this.stateAfterClosingTagName(e))},e.prototype.stateAfterClosingTagName=function(e){(e===n.Gt||this.fastForwardTo(n.Gt))&&(this.state=i.Text,this.baseState=i.Text,this.sectionStart=this.index+1)},e.prototype.stateBeforeAttributeName=function(e){e===n.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=i.InSpecialTag,this.sequenceIndex=0):this.state=i.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===n.Slash?this.state=i.InSelfClosingTag:a(e)||(this.state=i.InAttributeName,this.sectionStart=this.index)},e.prototype.stateInSelfClosingTag=function(e){e===n.Gt?(this.cbs.onselfclosingtag(this.index),this.state=i.Text,this.baseState=i.Text,this.sectionStart=this.index+1,this.isSpecial=!1):a(e)||(this.state=i.BeforeAttributeName,this.stateBeforeAttributeName(e))},e.prototype.stateInAttributeName=function(e){(e===n.Eq||l(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=i.AfterAttributeName,this.stateAfterAttributeName(e))},e.prototype.stateAfterAttributeName=function(e){e===n.Eq?this.state=i.BeforeAttributeValue:e===n.Slash||e===n.Gt?(this.cbs.onattribend(s.NoValue,this.index),this.state=i.BeforeAttributeName,this.stateBeforeAttributeName(e)):a(e)||(this.cbs.onattribend(s.NoValue,this.index),this.state=i.InAttributeName,this.sectionStart=this.index)},e.prototype.stateBeforeAttributeValue=function(e){e===n.DoubleQuote?(this.state=i.InAttributeValueDq,this.sectionStart=this.index+1):e===n.SingleQuote?(this.state=i.InAttributeValueSq,this.sectionStart=this.index+1):a(e)||(this.sectionStart=this.index,this.state=i.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))},e.prototype.handleInAttributeValue=function(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===n.DoubleQuote?s.Double:s.Single,this.index),this.state=i.BeforeAttributeName):this.decodeEntities&&e===n.Amp&&(this.baseState=this.state,this.state=i.BeforeEntity)},e.prototype.stateInAttributeValueDoubleQuotes=function(e){this.handleInAttributeValue(e,n.DoubleQuote)},e.prototype.stateInAttributeValueSingleQuotes=function(e){this.handleInAttributeValue(e,n.SingleQuote)},e.prototype.stateInAttributeValueNoQuotes=function(e){a(e)||e===n.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(s.Unquoted,this.index),this.state=i.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===n.Amp&&(this.baseState=this.state,this.state=i.BeforeEntity)},e.prototype.stateBeforeDeclaration=function(e){e===n.OpeningSquareBracket?(this.state=i.CDATASequence,this.sequenceIndex=0):this.state=e===n.Dash?i.BeforeComment:i.InDeclaration},e.prototype.stateInDeclaration=function(e){(e===n.Gt||this.fastForwardTo(n.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=i.Text,this.sectionStart=this.index+1)},e.prototype.stateInProcessingInstruction=function(e){(e===n.Gt||this.fastForwardTo(n.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=i.Text,this.sectionStart=this.index+1)},e.prototype.stateBeforeComment=function(e){e===n.Dash?(this.state=i.InCommentLike,this.currentSequence=u.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=i.InDeclaration},e.prototype.stateInSpecialComment=function(e){(e===n.Gt||this.fastForwardTo(n.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=i.Text,this.sectionStart=this.index+1)},e.prototype.stateBeforeSpecialS=function(e){var t=32|e;t===u.ScriptEnd[3]?this.startSpecial(u.ScriptEnd,4):t===u.StyleEnd[3]?this.startSpecial(u.StyleEnd,4):(this.state=i.InTagName,this.stateInTagName(e))},e.prototype.stateBeforeEntity=function(e){this.entityExcess=1,this.entityResult=0,e===n.Number?this.state=i.BeforeNumericEntity:e===n.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=i.InNamedEntity,this.stateInNamedEntity(e))},e.prototype.stateInNamedEntity=function(e){if(this.entityExcess+=1,this.trieIndex=(0,o.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0)return this.emitNamedEntity(),void this.index--;this.trieCurrent=this.entityTrie[this.trieIndex];var t=this.trieCurrent&o.BinTrieFlags.VALUE_LENGTH;if(t){var r=(t>>14)-1;if(this.allowLegacyEntity()||e===n.Semi){var i=this.index-this.entityExcess+1;i>this.sectionStart&&this.emitPartial(this.sectionStart,i),this.entityResult=this.trieIndex,this.trieIndex+=r,this.entityExcess=0,this.sectionStart=this.index+1,0===r&&this.emitNamedEntity()}else this.trieIndex+=r}},e.prototype.emitNamedEntity=function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&o.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~o.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}},e.prototype.stateBeforeNumericEntity=function(e){(32|e)===n.LowerX?(this.entityExcess++,this.state=i.InHexEntity):(this.state=i.InNumericEntity,this.stateInNumericEntity(e))},e.prototype.emitNumericEntity=function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===i.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,o.replaceCodePoint)(this.entityResult))),this.state=this.baseState},e.prototype.stateInNumericEntity=function(e){e===n.Semi?this.emitNumericEntity(!0):c(e)?(this.entityResult=10*this.entityResult+(e-n.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)},e.prototype.stateInHexEntity=function(e){e===n.Semi?this.emitNumericEntity(!0):c(e)?(this.entityResult=16*this.entityResult+(e-n.Zero),this.entityExcess++):function(e){return e>=n.UpperA&&e<=n.UpperF||e>=n.LowerA&&e<=n.LowerF}(e)?(this.entityResult=16*this.entityResult+((32|e)-n.LowerA+10),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)},e.prototype.allowLegacyEntity=function(){return!this.xmlMode&&(this.baseState===i.Text||this.baseState===i.InSpecialTag)},e.prototype.cleanup=function(){this.running&&this.sectionStart!==this.index&&(this.state===i.Text||this.state===i.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):this.state!==i.InAttributeValueDq&&this.state!==i.InAttributeValueSq&&this.state!==i.InAttributeValueNq||(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))},e.prototype.shouldContinue=function(){return this.index{"use strict";let n=r(5571),i=r(1176),s=r(1281),o=r(6173),a=r(5923),l=r(9901),c=r(9463);function u(e,t){if(Array.isArray(e))return e.map((e=>u(e)));let{inputs:r,...h}=e;if(r){t=[];for(let e of r){let r={...e,__proto__:o.prototype};r.map&&(r.map={...r.map,__proto__:a.prototype}),t.push(r)}}if(h.nodes&&(h.nodes=e.nodes.map((e=>u(e,t)))),h.source){let{inputId:e,...r}=h.source;h.source=r,null!=e&&(h.source.input=t[e])}if("root"===h.type)return new l(h);if("decl"===h.type)return new s(h);if("rule"===h.type)return new c(h);if("comment"===h.type)return new i(h);if("atrule"===h.type)return new n(h);throw new Error("Unknown node type: "+e.type)}e.exports=u,u.default=u},6644:e=>{"use strict";e.exports.isClean=Symbol("isClean"),e.exports.my=Symbol("my")},6703:e=>{e.exports={nanoid:(e=21)=>{let t="",r=0|e;for(;r--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[64*Math.random()|0];return t},customAlphabet:(e,t=21)=>(r=t)=>{let n="",i=0|r;for(;i--;)n+=e[Math.random()*e.length|0];return n}}},6841:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.filter=function(e,t,r,n){return void 0===r&&(r=!0),void 0===n&&(n=1/0),i(e,Array.isArray(t)?t:[t],r,n)},t.find=i,t.findOneChild=function(e,t){return t.find(e)},t.findOne=function e(t,r,i){void 0===i&&(i=!0);for(var s=Array.isArray(r)?r:[r],o=0;o0){var l=e(t,a.children,!0);if(l)return l}}return null},t.existsOne=function e(t,r){return(Array.isArray(r)?r:[r]).some((function(r){return(0,n.isTag)(r)&&t(r)||(0,n.hasChildren)(r)&&e(t,r.children)}))},t.findAll=function(e,t){for(var r=[],i=[Array.isArray(t)?t:[t]],s=[0];;)if(s[0]>=i[0].length){if(1===i.length)return r;i.shift(),s.shift()}else{var o=i[0][s[0]++];(0,n.isTag)(o)&&e(o)&&r.push(o),(0,n.hasChildren)(o)&&o.children.length>0&&(s.unshift(0),i.unshift(o.children))}};var n=r(4576);function i(e,t,r,i){for(var s=[],o=[Array.isArray(t)?t:[t]],a=[0];;)if(a[0]>=o[0].length){if(1===a.length)return s;o.shift(),a.shift()}else{var l=o[0][a[0]++];if(e(l)&&(s.push(l),--i<=0))return s;r&&(0,n.hasChildren)(l)&&l.children.length>0&&(a.unshift(0),o.unshift(l.children))}}},6861:function(e,t,r){"use strict";var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),s=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)"default"!==r&&Object.prototype.hasOwnProperty.call(e,r)&&n(t,e,r);return i(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.decodeXML=t.decodeHTMLStrict=t.decodeHTMLAttribute=t.decodeHTML=t.determineBranch=t.EntityDecoder=t.DecodingMode=t.BinTrieFlags=t.fromCodePoint=t.replaceCodePoint=t.decodeCodePoint=t.xmlDecodeTree=t.htmlDecodeTree=void 0;var a=o(r(3708));t.htmlDecodeTree=a.default;var l=o(r(12));t.xmlDecodeTree=l.default;var c=s(r(887));t.decodeCodePoint=c.default;var u,h,d,p,f=r(887);function m(e){return e>=u.ZERO&&e<=u.NINE}Object.defineProperty(t,"replaceCodePoint",{enumerable:!0,get:function(){return f.replaceCodePoint}}),Object.defineProperty(t,"fromCodePoint",{enumerable:!0,get:function(){return f.fromCodePoint}}),function(e){e[e.NUM=35]="NUM",e[e.SEMI=59]="SEMI",e[e.EQUALS=61]="EQUALS",e[e.ZERO=48]="ZERO",e[e.NINE=57]="NINE",e[e.LOWER_A=97]="LOWER_A",e[e.LOWER_F=102]="LOWER_F",e[e.LOWER_X=120]="LOWER_X",e[e.LOWER_Z=122]="LOWER_Z",e[e.UPPER_A=65]="UPPER_A",e[e.UPPER_F=70]="UPPER_F",e[e.UPPER_Z=90]="UPPER_Z"}(u||(u={})),function(e){e[e.VALUE_LENGTH=49152]="VALUE_LENGTH",e[e.BRANCH_LENGTH=16256]="BRANCH_LENGTH",e[e.JUMP_TABLE=127]="JUMP_TABLE"}(h=t.BinTrieFlags||(t.BinTrieFlags={})),function(e){e[e.EntityStart=0]="EntityStart",e[e.NumericStart=1]="NumericStart",e[e.NumericDecimal=2]="NumericDecimal",e[e.NumericHex=3]="NumericHex",e[e.NamedEntity=4]="NamedEntity"}(d||(d={})),function(e){e[e.Legacy=0]="Legacy",e[e.Strict=1]="Strict",e[e.Attribute=2]="Attribute"}(p=t.DecodingMode||(t.DecodingMode={}));var g=function(){function e(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=d.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=p.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=d.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case d.EntityStart:return e.charCodeAt(t)===u.NUM?(this.state=d.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1)):(this.state=d.NamedEntity,this.stateNamedEntity(e,t));case d.NumericStart:return this.stateNumericStart(e,t);case d.NumericDecimal:return this.stateNumericDecimal(e,t);case d.NumericHex:return this.stateNumericHex(e,t);case d.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===u.LOWER_X?(this.state=d.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=d.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var r,n=t;t=u.UPPER_A&&r<=u.UPPER_F||r>=u.LOWER_A&&r<=u.LOWER_F)))return this.addToNumericResult(e,n,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,n,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var r=t;t>14;t=u.UPPER_A&&e<=u.UPPER_Z||e>=u.LOWER_A&&e<=u.LOWER_Z||m(e)}(o)))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&h.VALUE_LENGTH)>>14)){if(s===u.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==p.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}var o;return-1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,r=(this.decodeTree[t]&h.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~h.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r},e.prototype.end=function(){var e;switch(this.state){case d.NamedEntity:return 0===this.result||this.decodeMode===p.Attribute&&this.result!==this.treeIndex?0:this.emitNotTerminatedNamedEntity();case d.NumericDecimal:return this.emitNumericEntity(0,2);case d.NumericHex:return this.emitNumericEntity(0,3);case d.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case d.EntityStart:return 0}},e}();function b(e){var t="",r=new g(e,(function(e){return t+=(0,c.fromCodePoint)(e)}));return function(e,n){for(var i=0,s=0;(s=e.indexOf("&",s))>=0;){t+=e.slice(i,s),r.startEntity(n);var o=r.write(e,s+1);if(o<0){i=s+r.end();break}i=s+o,s=0===o?i+1:i}var a=t+e.slice(i);return t="",a}}function y(e,t,r,n){var i=(t&h.BRANCH_LENGTH)>>7,s=t&h.JUMP_TABLE;if(0===i)return 0!==s&&n===s?r:-1;if(s){var o=n-s;return o<0||o>=i?-1:e[r+o]-1}for(var a=r,l=a+i-1;a<=l;){var c=a+l>>>1,u=e[c];if(un))return e[c+i];l=c-1}}return-1}t.EntityDecoder=g,t.determineBranch=y;var v=b(a.default),w=b(l.default);t.decodeHTML=function(e,t){return void 0===t&&(t=p.Legacy),v(e,t)},t.decodeHTMLAttribute=function(e){return v(e,p.Attribute)},t.decodeHTMLStrict=function(e){return v(e,p.Strict)},t.decodeXML=function(e){return w(e,p.Strict)}},6973:()=>{},7427:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getChildren=i,t.getParent=s,t.getSiblings=function(e){var t=s(e);if(null!=t)return i(t);for(var r=[e],n=e.prev,o=e.next;null!=n;)r.unshift(n),n=n.prev;for(;null!=o;)r.push(o),o=o.next;return r},t.getAttributeValue=function(e,t){var r;return null===(r=e.attribs)||void 0===r?void 0:r[t]},t.hasAttrib=function(e,t){return null!=e.attribs&&Object.prototype.hasOwnProperty.call(e.attribs,t)&&null!=e.attribs[t]},t.getName=function(e){return e.name},t.nextElementSibling=function(e){for(var t=e.next;null!==t&&!(0,n.isTag)(t);)t=t.next;return t},t.prevElementSibling=function(e){for(var t=e.prev;null!==t&&!(0,n.isTag)(t);)t=t.prev;return t};var n=r(4576);function i(e){return(0,n.hasChildren)(e)?e.children:[]}function s(e){return e.parent||null}},8059:(e,t,r)=>{const n=r(616),i=r(3407),{isPlainObject:s}=r(3663),o=r(9465),a=r(9369),{parse:l}=r(9044),c=["img","audio","video","picture","svg","object","map","iframe","embed"],u=["script","style"];function h(e,t){e&&Object.keys(e).forEach((function(r){t(e[r],r)}))}function d(e,t){return{}.hasOwnProperty.call(e,t)}function p(e,t){const r=[];return h(e,(function(e){t(e)&&r.push(e)})),r}e.exports=m;const f=/^[^\0\t\n\f\r /<=>]+$/;function m(e,t,r){if(null==e)return"";"number"==typeof e&&(e=e.toString());let b="",y="";function v(e,t){const r=this;this.tag=e,this.attribs=t||{},this.tagPosition=b.length,this.text="",this.openingTagLength=0,this.mediaChildren=[],this.updateParentNodeText=function(){I.length&&(I[I.length-1].text+=r.text)},this.updateParentNodeMediaChildren=function(){I.length&&c.includes(this.tag)&&I[I.length-1].mediaChildren.push(this.tag)}}(t=Object.assign({},m.defaults,t)).parser=Object.assign({},g,t.parser);const w=function(e){return!1===t.allowedTags||(t.allowedTags||[]).indexOf(e)>-1};u.forEach((function(e){w(e)&&!t.allowVulnerableTags&&console.warn(`\n\n⚠️ Your \`allowedTags\` option includes, \`${e}\`, which is inherently\nvulnerable to XSS attacks. Please remove it from \`allowedTags\`.\nOr, to disable this warning, add the \`allowVulnerableTags\` option\nand ensure you are accounting for this risk.\n\n`)}));const x=t.nonTextTags||["script","style","textarea","option"];let S,T;t.allowedAttributes&&(S={},T={},h(t.allowedAttributes,(function(e,t){S[t]=[];const r=[];e.forEach((function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(i(e).replace(/\\\*/g,".*")):S[t].push(e)})),r.length&&(T[t]=new RegExp("^("+r.join("|")+")$"))})));const A={},E={},C={};h(t.allowedClasses,(function(e,t){if(S&&(d(S,t)||(S[t]=[]),S[t].push("class")),A[t]=e,Array.isArray(e)){const r=[];A[t]=[],C[t]=[],e.forEach((function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(i(e).replace(/\\\*/g,".*")):e instanceof RegExp?C[t].push(e):A[t].push(e)})),r.length&&(E[t]=new RegExp("^("+r.join("|")+")$"))}}));const k={};let O,N,I,P,D,L,q;h(t.transformTags,(function(e,t){let r;"function"==typeof e?r=e:"string"==typeof e&&(r=m.simpleTransform(e)),"*"===t?O=r:k[t]=r}));let M=!1;j();const B=new n.Parser({onopentag:function(e,r){if(t.onOpenTag&&t.onOpenTag(e,r),t.enforceHtmlBoundary&&"html"===e&&j(),L)return void q++;const n=new v(e,r);I.push(n);let i=!1;const c=!!n.text;let u;if(d(k,e)&&(u=k[e](e,r),n.attribs=r=u.attribs,void 0!==u.text&&(n.innerText=u.text),e!==u.tagName&&(n.name=e=u.tagName,D[N]=u.tagName)),O&&(u=O(e,r),n.attribs=r=u.attribs,e!==u.tagName&&(n.name=e=u.tagName,D[N]=u.tagName)),(!w(e)||"recursiveEscape"===t.disallowedTagsMode&&!function(e){for(const t in e)if(d(e,t))return!1;return!0}(P)||null!=t.nestingLimit&&N>=t.nestingLimit)&&(i=!0,P[N]=!0,"discard"!==t.disallowedTagsMode&&"completelyDiscard"!==t.disallowedTagsMode||-1!==x.indexOf(e)&&(L=!0,q=1)),N++,i){if("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode){if(n.innerText&&!c){const r=R(n.innerText);t.textFilter?b+=t.textFilter(r,e):b+=r,M=!0}return}y=b,b=""}b+="<"+e,"script"===e&&(t.allowedScriptHostnames||t.allowedScriptDomains)&&(n.innerText=""),i&&("escape"===t.disallowedTagsMode||"recursiveEscape"===t.disallowedTagsMode)&&t.preserveEscapedAttributes?h(r,(function(e,t){b+=" "+t+'="'+R(e||"",!0)+'"'})):(!S||d(S,e)||S["*"])&&h(r,(function(r,i){if(!f.test(i))return void delete n.attribs[i];if(""===r&&!t.allowedEmptyAttributes.includes(i)&&(t.nonBooleanAttributes.includes(i)||t.nonBooleanAttributes.includes("*")))return void delete n.attribs[i];let c=!1;if(!S||d(S,e)&&-1!==S[e].indexOf(i)||S["*"]&&-1!==S["*"].indexOf(i)||d(T,e)&&T[e].test(i)||T["*"]&&T["*"].test(i))c=!0;else if(S&&S[e])for(const t of S[e])if(s(t)&&t.name&&t.name===i){c=!0;let e="";if(!0===t.multiple){const n=r.split(" ");for(const r of n)-1!==t.values.indexOf(r)&&(""===e?e=r:e+=" "+r)}else t.values.indexOf(r)>=0&&(e=r);r=e}if(c){if(-1!==t.allowedSchemesAppliedToAttributes.indexOf(i)&&_(e,r))return void delete n.attribs[i];if("script"===e&&"src"===i){let e=!0;try{const n=U(r);if(t.allowedScriptHostnames||t.allowedScriptDomains){const r=(t.allowedScriptHostnames||[]).find((function(e){return e===n.url.hostname})),i=(t.allowedScriptDomains||[]).find((function(e){return n.url.hostname===e||n.url.hostname.endsWith(`.${e}`)}));e=r||i}}catch(t){e=!1}if(!e)return void delete n.attribs[i]}if("iframe"===e&&"src"===i){let e=!0;try{const n=U(r);if(n.isRelativeUrl)e=d(t,"allowIframeRelativeUrls")?t.allowIframeRelativeUrls:!t.allowedIframeHostnames&&!t.allowedIframeDomains;else if(t.allowedIframeHostnames||t.allowedIframeDomains){const r=(t.allowedIframeHostnames||[]).find((function(e){return e===n.url.hostname})),i=(t.allowedIframeDomains||[]).find((function(e){return n.url.hostname===e||n.url.hostname.endsWith(`.${e}`)}));e=r||i}}catch(t){e=!1}if(!e)return void delete n.attribs[i]}if("srcset"===i)try{let e=a(r);if(e.forEach((function(e){_("srcset",e.url)&&(e.evil=!0)})),e=p(e,(function(e){return!e.evil})),!e.length)return void delete n.attribs[i];r=p(e,(function(e){return!e.evil})).map((function(e){if(!e.url)throw new Error("URL missing");return e.url+(e.w?` ${e.w}w`:"")+(e.h?` ${e.h}h`:"")+(e.d?` ${e.d}x`:"")})).join(", "),n.attribs[i]=r}catch(e){return void delete n.attribs[i]}if("class"===i){const t=A[e],s=A["*"],a=E[e],l=C[e],c=C["*"],d=[a,E["*"]].concat(l,c).filter((function(e){return e}));if(!(u=r,h=t&&s?o(t,s):t||s,m=d,r=h?(u=u.split(/\s+/)).filter((function(e){return-1!==h.indexOf(e)||m.some((function(t){return t.test(e)}))})).join(" "):u).length)return void delete n.attribs[i]}if("style"===i)if(t.parseStyleAttributes)try{if(r=function(e){return e.nodes[0].nodes.reduce((function(e,t){return e.push(`${t.prop}:${t.value}${t.important?" !important":""}`),e}),[]).join(";")}(function(e,t){if(!t)return e;const r=e.nodes[0];let n;return n=t[r.selector]&&t["*"]?o(t[r.selector],t["*"]):t[r.selector]||t["*"],n&&(e.nodes[0].nodes=r.nodes.reduce(function(e){return function(t,r){return d(e,r.prop)&&e[r.prop].some((function(e){return e.test(r.value)}))&&t.push(r),t}}(n),[])),e}(l(e+" {"+r+"}",{map:!1}),t.allowedStyles)),0===r.length)return void delete n.attribs[i]}catch(t){return"undefined"!=typeof window&&console.warn('Failed to parse "'+e+" {"+r+"}\", If you're running this in a browser, we recommend to disable style parsing: options.parseStyleAttributes: false, since this only works in a node environment due to a postcss dependency, More info: https://github.com/apostrophecms/sanitize-html/issues/547"),void delete n.attribs[i]}else if(t.allowedStyles)throw new Error("allowedStyles option cannot be used together with parseStyleAttributes: false.");b+=" "+i,r&&r.length?b+='="'+R(r,!0)+'"':t.allowedEmptyAttributes.includes(i)&&(b+='=""')}else delete n.attribs[i];var u,h,m})),-1!==t.selfClosing.indexOf(e)?b+=" />":(b+=">",!n.innerText||c||t.textFilter||(b+=R(n.innerText),M=!0)),i&&(b=y+R(b),y=""),n.openingTagLength=b.length-n.tagPosition},ontext:function(e){if(L)return;const r=I[I.length-1];let n;if(r&&(n=r.tag,e=void 0!==r.innerText?r.innerText:e),"completelyDiscard"!==t.disallowedTagsMode||w(n))if("discard"!==t.disallowedTagsMode&&"completelyDiscard"!==t.disallowedTagsMode||"script"!==n&&"style"!==n){if(!M){const r=R(e,!1);t.textFilter?b+=t.textFilter(r,n):b+=r}}else b+=e;else e="";I.length&&(I[I.length-1].text+=e)},onclosetag:function(e,r){if(t.onCloseTag&&t.onCloseTag(e,r),L){if(q--,q)return;L=!1}const n=I.pop();if(!n)return;if(n.tag!==e)return void I.push(n);L=!!t.enforceHtmlBoundary&&"html"===e,N--;const i=P[N];if(i){if(delete P[N],"discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)return void n.updateParentNodeText();y=b,b=""}if(D[N]&&(e=D[N],delete D[N]),t.exclusiveFilter){const e=t.exclusiveFilter(n);if("excludeTag"===e)return i&&(b=y,y=""),void(b=b.substring(0,n.tagPosition)+b.substring(n.tagPosition+n.openingTagLength));if(e)return void(b=b.substring(0,n.tagPosition))}n.updateParentNodeMediaChildren(),n.updateParentNodeText(),-1!==t.selfClosing.indexOf(e)||r&&!w(e)&&["escape","recursiveEscape"].indexOf(t.disallowedTagsMode)>=0?i&&(b=y,y=""):(b+="",i&&(b=y+R(b),y=""),M=!1)}},t.parser);return B.write(e),B.end(),b;function j(){b="",N=0,I=[],P={},D={},L=!1,q=0}function R(e,r){return"string"!=typeof e&&(e+=""),t.parser.decodeEntities&&(e=e.replace(/&/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,"""))),e=e.replace(/&(?![a-zA-Z0-9#]{1,20};)/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,""")),e}function _(e,r){for(r=r.replace(/[\x00-\x20]+/g,"");;){const e=r.indexOf("\x3c!--");if(-1===e)break;const t=r.indexOf("--\x3e",e+4);if(-1===t)break;r=r.substring(0,e)+r.substring(t+3)}const n=r.match(/^([a-zA-Z][a-zA-Z0-9.\-+]*):/);if(!n)return!!r.match(/^[/\\]{2}/)&&!t.allowProtocolRelative;const i=n[1].toLowerCase();return d(t.allowedSchemesByTag,e)?-1===t.allowedSchemesByTag[e].indexOf(i):!t.allowedSchemes||-1===t.allowedSchemes.indexOf(i)}function U(e){if((e=e.replace(/^(\w+:)?\s*[\\/]\s*[\\/]/,"$1//")).startsWith("relative:"))throw new Error("relative: exploit attempt");let t="relative://relative-site";for(let e=0;e<100;e++)t+=`/${e}`;const r=new URL(e,t);return{isRelativeUrl:r&&"relative-site"===r.hostname&&"relative:"===r.protocol,url:r}}}const g={decodeEntities:!0};m.defaults={allowedTags:["address","article","aside","footer","header","h1","h2","h3","h4","h5","h6","hgroup","main","nav","section","blockquote","dd","div","dl","dt","figcaption","figure","hr","li","menu","ol","p","pre","ul","a","abbr","b","bdi","bdo","br","cite","code","data","dfn","em","i","kbd","mark","q","rb","rp","rt","rtc","ruby","s","samp","small","span","strong","sub","sup","time","u","var","wbr","caption","col","colgroup","table","tbody","td","tfoot","th","thead","tr"],nonBooleanAttributes:["abbr","accept","accept-charset","accesskey","action","allow","alt","as","autocapitalize","autocomplete","blocking","charset","cite","class","color","cols","colspan","content","contenteditable","coords","crossorigin","data","datetime","decoding","dir","dirname","download","draggable","enctype","enterkeyhint","fetchpriority","for","form","formaction","formenctype","formmethod","formtarget","headers","height","hidden","high","href","hreflang","http-equiv","id","imagesizes","imagesrcset","inputmode","integrity","is","itemid","itemprop","itemref","itemtype","kind","label","lang","list","loading","low","max","maxlength","media","method","min","minlength","name","nonce","optimum","pattern","ping","placeholder","popover","popovertarget","popovertargetaction","poster","preload","referrerpolicy","rel","rows","rowspan","sandbox","scope","shape","size","sizes","slot","span","spellcheck","src","srcdoc","srclang","srcset","start","step","style","tabindex","target","title","translate","type","usemap","value","width","wrap","onauxclick","onafterprint","onbeforematch","onbeforeprint","onbeforeunload","onbeforetoggle","onblur","oncancel","oncanplay","oncanplaythrough","onchange","onclick","onclose","oncontextlost","oncontextmenu","oncontextrestored","oncopy","oncuechange","oncut","ondblclick","ondrag","ondragend","ondragenter","ondragleave","ondragover","ondragstart","ondrop","ondurationchange","onemptied","onended","onerror","onfocus","onformdata","onhashchange","oninput","oninvalid","onkeydown","onkeypress","onkeyup","onlanguagechange","onload","onloadeddata","onloadedmetadata","onloadstart","onmessage","onmessageerror","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onoffline","ononline","onpagehide","onpageshow","onpaste","onpause","onplay","onplaying","onpopstate","onprogress","onratechange","onreset","onresize","onrejectionhandled","onscroll","onscrollend","onsecuritypolicyviolation","onseeked","onseeking","onselect","onslotchange","onstalled","onstorage","onsubmit","onsuspend","ontimeupdate","ontoggle","onunhandledrejection","onunload","onvolumechange","onwaiting","onwheel"],disallowedTagsMode:"discard",allowedAttributes:{a:["href","name","target"],img:["src","srcset","alt","title","width","height","loading"]},allowedEmptyAttributes:["alt"],selfClosing:["img","br","hr","area","base","basefont","input","link","meta"],allowedSchemes:["http","https","ftp","mailto","tel"],allowedSchemesByTag:{},allowedSchemesAppliedToAttributes:["href","src","cite"],allowProtocolRelative:!0,enforceHtmlBoundary:!1,parseStyleAttributes:!0,preserveEscapedAttributes:!1},m.simpleTransform=function(e,t,r){return r=void 0===r||r,t=t||{},function(n,i){let s;if(r)for(s in t)i[s]=t[s];else i=t;return{tagName:e,attribs:i}}}},8788:(e,t)=>{"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.Doctype=t.CDATA=t.Tag=t.Style=t.Script=t.Comment=t.Directive=t.Text=t.Root=t.isTag=t.ElementType=void 0,function(e){e.Root="root",e.Text="text",e.Directive="directive",e.Comment="comment",e.Script="script",e.Style="style",e.Tag="tag",e.CDATA="cdata",e.Doctype="doctype"}(r=t.ElementType||(t.ElementType={})),t.isTag=function(e){return e.type===r.Tag||e.type===r.Script||e.type===r.Style},t.Root=r.Root,t.Text=r.Text,t.Directive=r.Directive,t.Comment=r.Comment,t.Script=r.Script,t.Style=r.Style,t.Tag=r.Tag,t.CDATA=r.CDATA,t.Doctype=r.Doctype},8818:()=>{},9044:(e,t,r)=>{"use strict";let n=r(5571),i=r(1176),s=r(9062),o=r(259),a=r(1281),l=r(2648),c=r(6251),u=r(6173),h=r(4333),d=r(5653),p=r(5621),f=r(3922),m=r(3149),g=r(780),b=r(9901),y=r(9463),v=r(9068),w=r(1173);function x(...e){return 1===e.length&&Array.isArray(e[0])&&(e=e[0]),new m(e)}x.plugin=function(e,t){let r,n=!1;function i(...r){console&&console.warn&&!n&&(n=!0,console.warn(e+": postcss.plugin was deprecated. Migration guide:\nhttps://evilmartians.com/chronicles/postcss-8-plugin-migration"),process.env.LANG&&process.env.LANG.startsWith("cn")&&console.warn(e+": 里面 postcss.plugin 被弃用. 迁移指南:\nhttps://www.w3ctech.com/topic/2226"));let i=t(...r);return i.postcssPlugin=e,i.postcssVersion=(new m).version,i}return Object.defineProperty(i,"postcss",{get:()=>(r||(r=i()),r)}),i.process=function(e,t,r){return x([i(r)]).process(e,t)},i},x.stringify=v,x.parse=f,x.fromJSON=c,x.list=d,x.comment=e=>new i(e),x.atRule=e=>new n(e),x.decl=e=>new a(e),x.rule=e=>new y(e),x.root=e=>new b(e),x.document=e=>new l(e),x.CssSyntaxError=o,x.Declaration=a,x.Container=s,x.Processor=m,x.Document=l,x.Comment=i,x.Warning=w,x.AtRule=n,x.Result=g,x.Input=u,x.Rule=y,x.Root=b,x.Node=p,h.registerPostcss(x),e.exports=x,x.default=x},9061:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.encodeNonAsciiHTML=t.encodeHTML=void 0;var i=n(r(349)),s=r(2312),o=/[\t\n!-,./:-@[-`\f{-}$\x80-\uFFFF]/g;function a(e,t){for(var r,n="",o=0;null!==(r=e.exec(t));){var a=r.index;n+=t.substring(o,a);var l=t.charCodeAt(a),c=i.default.get(l);if("object"==typeof c){if(a+1{"use strict";let n,i,s,o,a=r(1176),l=r(1281),c=r(5621),{isClean:u,my:h}=r(6644);function d(e){return e.map((e=>(e.nodes&&(e.nodes=d(e.nodes)),delete e.source,e)))}function p(e){if(e[u]=!1,e.proxyOf.nodes)for(let t of e.proxyOf.nodes)p(t)}class f extends c{get first(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}append(...e){for(let t of e){let e=this.normalize(t,this.last);for(let t of e)this.proxyOf.nodes.push(t)}return this.markDirty(),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let t of this.nodes)t.cleanRaws(e)}each(e){if(!this.proxyOf.nodes)return;let t,r,n=this.getIterator();for(;this.indexes[n]"proxyOf"===t?e:e[t]?"each"===t||"string"==typeof t&&t.startsWith("walk")?(...r)=>e[t](...r.map((e=>"function"==typeof e?(t,r)=>e(t.toProxy(),r):e))):"every"===t||"some"===t?r=>e[t](((e,...t)=>r(e.toProxy(),...t))):"root"===t?()=>e.root().toProxy():"nodes"===t?e.nodes.map((e=>e.toProxy())):"first"===t||"last"===t?e[t].toProxy():e[t]:e[t],set:(e,t,r)=>(e[t]===r||(e[t]=r,"name"!==t&&"params"!==t&&"selector"!==t||e.markDirty()),!0)}}index(e){return"number"==typeof e?e:(e.proxyOf&&(e=e.proxyOf),this.proxyOf.nodes.indexOf(e))}insertAfter(e,t){let r,n=this.index(e),i=this.normalize(t,this.proxyOf.nodes[n]).reverse();n=this.index(e);for(let e of i)this.proxyOf.nodes.splice(n+1,0,e);for(let e in this.indexes)r=this.indexes[e],n(e[h]||f.rebuild(e),(e=e.proxyOf).parent&&e.parent.removeChild(e),e[u]&&p(e),e.raws||(e.raws={}),void 0===e.raws.before&&t&&void 0!==t.raws.before&&(e.raws.before=t.raws.before.replace(/\S/g,"")),e.parent=this.proxyOf,e)))}prepend(...e){e=e.reverse();for(let t of e){let e=this.normalize(t,this.first,"prepend").reverse();for(let t of e)this.proxyOf.nodes.unshift(t);for(let t in this.indexes)this.indexes[t]=this.indexes[t]+e.length}return this.markDirty(),this}push(e){return e.parent=this,this.proxyOf.nodes.push(e),this}removeAll(){for(let e of this.proxyOf.nodes)e.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}removeChild(e){let t;e=this.index(e),this.proxyOf.nodes[e].parent=void 0,this.proxyOf.nodes.splice(e,1);for(let r in this.indexes)t=this.indexes[r],t>=e&&(this.indexes[r]=t-1);return this.markDirty(),this}replaceValues(e,t,r){return r||(r=t,t={}),this.walkDecls((n=>{t.props&&!t.props.includes(n.prop)||t.fast&&!n.value.includes(t.fast)||(n.value=n.value.replace(e,r))})),this.markDirty(),this}some(e){return this.nodes.some(e)}walk(e){return this.each(((t,r)=>{let n;try{n=e(t,r)}catch(e){throw t.addToError(e)}return!1!==n&&t.walk&&(n=t.walk(e)),n}))}walkAtRules(e,t){return t?e instanceof RegExp?this.walk(((r,n)=>{if("atrule"===r.type&&e.test(r.name))return t(r,n)})):this.walk(((r,n)=>{if("atrule"===r.type&&r.name===e)return t(r,n)})):(t=e,this.walk(((e,r)=>{if("atrule"===e.type)return t(e,r)})))}walkComments(e){return this.walk(((t,r)=>{if("comment"===t.type)return e(t,r)}))}walkDecls(e,t){return t?e instanceof RegExp?this.walk(((r,n)=>{if("decl"===r.type&&e.test(r.prop))return t(r,n)})):this.walk(((r,n)=>{if("decl"===r.type&&r.prop===e)return t(r,n)})):(t=e,this.walk(((e,r)=>{if("decl"===e.type)return t(e,r)})))}walkRules(e,t){return t?e instanceof RegExp?this.walk(((r,n)=>{if("rule"===r.type&&e.test(r.selector))return t(r,n)})):this.walk(((r,n)=>{if("rule"===r.type&&r.selector===e)return t(r,n)})):(t=e,this.walk(((e,r)=>{if("rule"===e.type)return t(e,r)})))}}f.registerParse=e=>{i=e},f.registerRule=e=>{o=e},f.registerAtRule=e=>{n=e},f.registerRoot=e=>{s=e},e.exports=f,f.default=f,f.rebuild=e=>{"atrule"===e.type?Object.setPrototypeOf(e,n.prototype):"rule"===e.type?Object.setPrototypeOf(e,o.prototype):"decl"===e.type?Object.setPrototypeOf(e,l.prototype):"comment"===e.type?Object.setPrototypeOf(e,a.prototype):"root"===e.type&&Object.setPrototypeOf(e,s.prototype),e[h]=!0,e.nodes&&e.nodes.forEach((e=>{f.rebuild(e)}))}},9068:(e,t,r)=>{"use strict";let n=r(2803);function i(e,t){new n(t).stringify(e)}e.exports=i,i.default=i},9332:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getFeed=function(e){var t=l(h,e);return t?"feed"===t.name?function(e){var t,r=e.children,n={type:"atom",items:(0,i.getElementsByTagName)("entry",r).map((function(e){var t,r=e.children,n={media:a(r)};u(n,"id","id",r),u(n,"title","title",r);var i=null===(t=l("link",r))||void 0===t?void 0:t.attribs.href;i&&(n.link=i);var s=c("summary",r)||c("content",r);s&&(n.description=s);var o=c("updated",r);return o&&(n.pubDate=new Date(o)),n}))};u(n,"id","id",r),u(n,"title","title",r);var s=null===(t=l("link",r))||void 0===t?void 0:t.attribs.href;s&&(n.link=s),u(n,"description","subtitle",r);var o=c("updated",r);return o&&(n.updated=new Date(o)),u(n,"author","email",r,!0),n}(t):function(e){var t,r,n=null!==(r=null===(t=l("channel",e.children))||void 0===t?void 0:t.children)&&void 0!==r?r:[],s={type:e.name.substr(0,3),id:"",items:(0,i.getElementsByTagName)("item",e.children).map((function(e){var t=e.children,r={media:a(t)};u(r,"id","guid",t),u(r,"title","title",t),u(r,"link","link",t),u(r,"description","description",t);var n=c("pubDate",t)||c("dc:date",t);return n&&(r.pubDate=new Date(n)),r}))};u(s,"title","title",n),u(s,"link","link",n),u(s,"description","description",n);var o=c("lastBuildDate",n);return o&&(s.updated=new Date(o)),u(s,"author","managingEditor",n,!0),s}(t):null};var n=r(3380),i=r(5622),s=["url","type","lang"],o=["fileSize","bitrate","framerate","samplingrate","channels","duration","height","width"];function a(e){return(0,i.getElementsByTagName)("media:content",e).map((function(e){for(var t=e.attribs,r={medium:t.medium,isDefault:!!t.isDefault},n=0,i=s;n=l)return g;n=r(h),i=[],","===n.slice(-1)?(n=n.replace(d,""),y()):b()}function b(){for(r(c),s="",o="in descriptor";;){if(a=e.charAt(m),"in descriptor"===o)if(t(a))s&&(i.push(s),s="",o="after descriptor");else{if(","===a)return m+=1,s&&i.push(s),void y();if("("===a)s+=a,o="in parens";else{if(""===a)return s&&i.push(s),void y();s+=a}}else if("in parens"===o)if(")"===a)s+=a,o="in descriptor";else{if(""===a)return i.push(s),void y();s+=a}else if("after descriptor"===o)if(t(a));else{if(""===a)return void y();o="in descriptor",m-=1}m+=1}}function y(){var t,r,s,o,a,l,c,u,h,d=!1,m={};for(o=0;o{"use strict";let n=r(9062),i=r(5653);class s extends n{get selectors(){return i.comma(this.selector)}set selectors(e){let t=this.selector?this.selector.match(/,\s*/):null,r=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(r)}constructor(e){super(e),this.type="rule",this.nodes||(this.nodes=[])}}e.exports=s,s.default=s,n.registerRule(s)},9465:e=>{"use strict";var t=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===r}(e)}(e)},r="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function n(e,t){return!1!==t.clone&&t.isMergeableObject(e)?a((r=e,Array.isArray(r)?[]:{}),e,t):e;var r}function i(e,t,r){return e.concat(t).map((function(e){return n(e,r)}))}function s(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return Object.propertyIsEnumerable.call(e,t)})):[]}(e))}function o(e,t){try{return t in e}catch(e){return!1}}function a(e,r,l){(l=l||{}).arrayMerge=l.arrayMerge||i,l.isMergeableObject=l.isMergeableObject||t,l.cloneUnlessOtherwiseSpecified=n;var c=Array.isArray(r);return c===Array.isArray(e)?c?l.arrayMerge(e,r,l):function(e,t,r){var i={};return r.isMergeableObject(e)&&s(e).forEach((function(t){i[t]=n(e[t],r)})),s(t).forEach((function(s){(function(e,t){return o(e,t)&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))})(e,s)||(o(e,s)&&r.isMergeableObject(t[s])?i[s]=function(e,t){if(!t.customMerge)return a;var r=t.customMerge(e);return"function"==typeof r?r:a}(s,r)(e[s],t[s],r):i[s]=n(t[s],r))})),i}(e,r,l):n(r,l)}a.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,r){return a(e,r,t)}),{})};var l=a;e.exports=l},9899:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.attributeNames=t.elementNames=void 0,t.elementNames=new Map(["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map((function(e){return[e.toLowerCase(),e]}))),t.attributeNames=new Map(["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map((function(e){return[e.toLowerCase(),e]})))},9901:(e,t,r)=>{"use strict";let n,i,s=r(9062);class o extends s{constructor(e){super(e),this.type="root",this.nodes||(this.nodes=[])}normalize(e,t,r){let n=super.normalize(e);if(t)if("prepend"===r)this.nodes.length>1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)for(let e of n)e.raws.before=t.raws.before;return n}removeChild(e,t){let r=this.index(e);return!t&&0===r&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[r].raws.before),super.removeChild(e)}toResult(e={}){return new n(new i,this,e).stringify()}}o.registerLazyResult=e=>{n=e},o.registerProcessor=e=>{i=e},e.exports=o,o.default=o,s.registerRoot(o)}},t={};function r(n){var i=t[n];if(void 0!==i)return i.exports;var s=t[n]={exports:{}};return e[n].call(s.exports,s,s.exports,r),s.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{"use strict";const e=function(e){let t=e.closest("label");return e.id&&!t&&(t=e.getRootNode().querySelector(`label[for="${e.id}"]`)),t?(t.querySelectorAll("input, select, textarea").forEach((e=>e.remove())),t.innerHTML):""},t=function(e){const t=e.closest("fieldset")?.querySelector?.("legend");return t?(t.querySelectorAll("input, select, textarea").forEach((e=>e.remove())),t.innerHTML):""},n=function(t){const r={name:t.name,class_name:t.className,default:t.value,label:e(t),required:t.required};return t.hasAttribute("min")&&(r.min=t.min),t.hasAttribute("max")&&(r.max=t.max),r},i=function(t){return"#text"===t?.nextSibling?.nodeName?t.nextSibling.nodeValue:e(t)},{mimes:s}=window.JetFormBuilderParserConfig,o={email:a,tel:a,url:a,password:a,text:a,color:function*(t){const r={name:t.name,class_name:t.className,default:t.value,label:e(t),required:t.required};yield{name:"jet-forms/color-picker-field",attributes:r,innerBlocks:[]}},radio:function*(r){if(r.jfbObserved)return;const n=r.getRootNode(),s=Array.from(n.querySelectorAll(`input[type="radio"][name="${r.name}"]`));s.forEach((e=>{e.jfbObserved=!0}));const o={name:r.name,class_name:r.className,field_options:[],label:t(r)||e(r),required:r.required};for(const e of s)o.field_options.push({value:e.value,label:i(e)}),e.checked&&(o.default=e.value);yield{name:"jet-forms/radio-field",attributes:o,innerBlocks:[]}},checkbox:function*(r){if(r.jfbObserved)return;const n=r.getRootNode(),s=Array.from(n.querySelectorAll(`input[type="checkbox"][name="${r.name}"]`));s.forEach((e=>{e.jfbObserved=!0}));const o={name:r.name,class_name:r.className,field_options:[],label:t(r)||e(r),required:r.required};for(const e of s)o.field_options.push({value:e.value,label:i(e)}),e.checked&&(o.default=e.value);yield{name:"jet-forms/checkbox-field",attributes:o,innerBlocks:[]}},date:function*(e){yield{name:"jet-forms/date-field",attributes:n(e),innerBlocks:[]}},datetime:l,"datetime-local":l,time:function*(e){yield{name:"jet-forms/time-field",attributes:n(e),innerBlocks:[]}},file:function*(t){const r={name:t.name,class_name:t.className,label:e(t),required:t.required,allowed_mimes:[]};r.allowed_mimes=t.accept.split(",").map((e=>function(e){let t=!1;for(const r in s){if(!s.hasOwnProperty(r))continue;const n=new RegExp(".("+r+")$","i");e.match(n)&&(t=s[r])}return t}(e.trim()))),yield{name:"jet-forms/media-field",attributes:r,innerBlocks:[]}},hidden:function*(e){yield{name:"jet-forms/hidden-field",attributes:{name:e.name,class_name:e.className,default:e.value},innerBlocks:[]}},number:function*(e){const t=n(e);t.placeholder=e.placeholder,e.hasAttribute("step")&&(t.step=e.step),yield{name:"jet-forms/number-field",attributes:t,innerBlocks:[]}},range:function*(e){const t=n(e);e.hasAttribute("step")&&(t.step=e.step),yield{name:"jet-forms/range-field",attributes:t,innerBlocks:[]}},submit:function*(e){yield{name:"jet-forms/submit-field",attributes:{label:e.value||"Submit",class_name:e.className},innerBlocks:[]}}};function*a(t){const r={field_type:t.type,name:t.name,class_name:t.className,default:t.value,label:e(t),required:t.required,placeholder:t.placeholder};t.hasAttribute("maxlength")&&(r.maxlength=t.maxLength),t.hasAttribute("minlength")&&(r.minlength=t.minLength),yield{name:"jet-forms/text-field",attributes:r,innerBlocks:[]}}function*l(e){yield{name:"jet-forms/datetime-field",attributes:n(e),innerBlocks:[]}}const{applyFilters:c}=JetPlugins.hooks,u={INPUT:function*(e){if(e.type=e.type||"text",!o.hasOwnProperty(e.type))return;const t=o[e.type];yield*t(e)},SELECT:function*(t){const r={name:t.name,class_name:t.className,label:e(t),required:t.required,field_options:[]},n=Object.entries(t.options);for(const[e,t]of n)0!==+e||t.value?(r.field_options.push({value:t.value,label:t.label}),t.selected&&(r.default=t.value)):r.placeholder=t.label;yield{name:"jet-forms/select-field",attributes:r,innerBlocks:[]}},TEXTAREA:function*(t){const r={name:t.name,class_name:t.className,label:e(t),required:t.required,placeholder:t.placeholder};t.hasAttribute("maxlength")&&(r.maxlength=t.maxLength),t.hasAttribute("minlength")&&(r.minlength=t.minLength),yield{name:"jet-forms/textarea-field",attributes:r,innerBlocks:[]}},BUTTON:function*(e){!e.type||e.type&&"submit"!==e.type||(yield{name:"jet-forms/submit-field",attributes:{label:e.innerHTML.trim(),class_name:e.className},innerBlocks:[]})}};var h=r(8059),d=r.n(h);document.createElement("div");window.JetFormBuilderParser={parseHTMLtoBlocks:function(e){const t=document.createElement("div");t.innerHTML=e;const r=[],n=t.querySelectorAll("input, textarea, select, button");for(const e of n){const t=c("jet.fb.parse.node",!1,e);if(Array.isArray(t)){r.push(...t);continue}const n=u[e.nodeName];r.push(...Array.from(n(e)))}return r},resolveLabel:e,getFormInnerFields:function(e){const t=d()(e,{allowedTags:["form","input","select","option","textarea","button","fieldset","legend","label","div","h1","h2","h3","h4","h5","h6","span","p","br"],allowedAttributes:!1}),r=document.createElement("div");r.innerHTML=t;const n=r.querySelector("form");return n?n.innerHTML:""}}})()})(); \ No newline at end of file diff --git a/modules/jet-plugins/assets/build/index.js b/modules/jet-plugins/assets/build/index.js index 722f3a12f..84aa7f6f9 100644 --- a/modules/jet-plugins/assets/build/index.js +++ b/modules/jet-plugins/assets/build/index.js @@ -1 +1 @@ -(()=>{"use strict";const t=function(t){return"string"!=typeof t||""===t?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(t)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)},n=function(t){return"string"!=typeof t||""===t?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(t)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(t)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)},e=function(e,o){return function(i,r,s,c=10){const l=e[o];if(!n(i))return;if(!t(r))return;if("function"!=typeof s)return void console.error("The hook callback must be a function.");if("number"!=typeof c)return void console.error("If specified, the hook priority must be a number.");const a={callback:s,priority:c,namespace:r};if(l[i]){const t=l[i].handlers;let n;for(n=t.length;n>0&&!(c>=t[n-1].priority);n--);n===t.length?t[n]=a:t.splice(n,0,a),l.__current.forEach(t=>{t.name===i&&t.currentIndex>=n&&t.currentIndex++})}else l[i]={handlers:[a],runs:0};"hookAdded"!==i&&e.doAction("hookAdded",i,r,s,c)}},o=function(e,o,i=!1){return function(r,s){const c=e[o];if(!n(r))return;if(!i&&!t(s))return;if(!c[r])return 0;let l=0;if(i)l=c[r].handlers.length,c[r]={runs:c[r].runs,handlers:[]};else{const t=c[r].handlers;for(let n=t.length-1;n>=0;n--)t[n].namespace===s&&(t.splice(n,1),l++,c.__current.forEach(t=>{t.name===r&&t.currentIndex>=n&&t.currentIndex--}))}return"hookRemoved"!==r&&e.doAction("hookRemoved",r,s),l}},i=function(t,n){return function(e,o){const i=t[n];return void 0!==o?e in i&&i[e].handlers.some(t=>t.namespace===o):e in i}},r=function(t,n,e=!1){return function(o,...i){const r=t[n];r[o]||(r[o]={handlers:[],runs:0}),r[o].runs++;const s=r[o].handlers;if(!s||!s.length)return e?i[0]:void 0;const c={name:o,currentIndex:0};for(r.__current.push(c);c.currentIndex{this.initBlock(n)})}}isBlockRequiresInit(t){let n=void 0===t.dataset.jetInited;const e=this.getBlockName(t);return n&&this.blocksConditions[e]&&(n=this.blocksConditions[e](t)),n}initBlock(t,n){n=n||!1;const e=this.hookNameFromBlock(t);if(e&&this.hasHandlers(e)){let o=n;o||(o=this.isBlockRequiresInit(t)),o&&(this.hooks.doAction(e,jQuery(t)),t.dataset.jetInited=!0)}}hasHandlers(t){return!!this.hooks.actions[t]&&!(!this.hooks.actions[t].handlers||!this.hooks.actions[t].handlers.length)}registerBlockHandlers(t){const n=this.getBlockName(t.block);this.hooks.addAction(this.hookNameFromBlock(n),`${this.globalNamespace}/${t.block}`,t.callback),t.condition&&"function"==typeof t.condition&&(this.blocksConditions[n]=t.condition)}bulkBlocksInit(t){for(var n=0;n{"use strict";const t=function(t){return"string"!=typeof t||""===t?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(t)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)},n=function(t){return"string"!=typeof t||""===t?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(t)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(t)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)},e=function(e,o){return function(i,r,s,c=10){const l=e[o];if(!n(i))return;if(!t(r))return;if("function"!=typeof s)return void console.error("The hook callback must be a function.");if("number"!=typeof c)return void console.error("If specified, the hook priority must be a number.");const a={callback:s,priority:c,namespace:r};if(l[i]){const t=l[i].handlers;let n;for(n=t.length;n>0&&!(c>=t[n-1].priority);n--);n===t.length?t[n]=a:t.splice(n,0,a),l.__current.forEach((t=>{t.name===i&&t.currentIndex>=n&&t.currentIndex++}))}else l[i]={handlers:[a],runs:0};"hookAdded"!==i&&e.doAction("hookAdded",i,r,s,c)}},o=function(e,o,i=!1){return function(r,s){const c=e[o];if(!n(r))return;if(!i&&!t(s))return;if(!c[r])return 0;let l=0;if(i)l=c[r].handlers.length,c[r]={runs:c[r].runs,handlers:[]};else{const t=c[r].handlers;for(let n=t.length-1;n>=0;n--)t[n].namespace===s&&(t.splice(n,1),l++,c.__current.forEach((t=>{t.name===r&&t.currentIndex>=n&&t.currentIndex--})))}return"hookRemoved"!==r&&e.doAction("hookRemoved",r,s),l}},i=function(t,n){return function(e,o){const i=t[n];return void 0!==o?e in i&&i[e].handlers.some((t=>t.namespace===o)):e in i}},r=function(t,n,e=!1){return function(o,...i){const r=t[n];r[o]||(r[o]={handlers:[],runs:0}),r[o].runs++;const s=r[o].handlers;if(!s||!s.length)return e?i[0]:void 0;const c={name:o,currentIndex:0};for(r.__current.push(c);c.currentIndex{this.initBlock(n)}))}}isBlockRequiresInit(t){let n=void 0===t.dataset.jetInited;const e=this.getBlockName(t);return n&&this.blocksConditions[e]&&(n=this.blocksConditions[e](t)),n}initBlock(t,n){n=n||!1;const e=this.hookNameFromBlock(t);if(e&&this.hasHandlers(e)){let o=n;o||(o=this.isBlockRequiresInit(t)),o&&(this.hooks.doAction(e,jQuery(t)),t.dataset.jetInited=!0)}}hasHandlers(t){return!!this.hooks.actions[t]&&!(!this.hooks.actions[t].handlers||!this.hooks.actions[t].handlers.length)}registerBlockHandlers(t){const n=this.getBlockName(t.block);this.hooks.addAction(this.hookNameFromBlock(n),`${this.globalNamespace}/${t.block}`,t.callback),t.condition&&"function"==typeof t.condition&&(this.blocksConditions[n]=t.condition)}bulkBlocksInit(t){for(var n=0;n array('react'), 'version' => 'd24b8482b83548207b91'); + array('react'), 'version' => '856abe8ef84cd5768721'); diff --git a/modules/jet-style/assets/build/editor.js b/modules/jet-style/assets/build/editor.js index 52a704c67..31e9b753c 100644 --- a/modules/jet-style/assets/build/editor.js +++ b/modules/jet-style/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";const{useBlockEditContext:e}=wp.blockEditor,{useSelect:t}=wp.data,o=function(){const{clientId:o,name:n}=e();return t(e=>{const{supports:t}=e("core/blocks").getBlockType(n);return t.hasOwnProperty("jetStyle")?t.jetStyle:{}},[o])},{get:n}=window._;function l(){this.cssVar="",this.path=[]}l.prototype={isSupported:e=>!0,compileDeclarations(e,t,o){const l=n(e,this.path);l&&(t[this.cssVar]=l)},compileClassNames(e,t){if(!this.hasHoverPath()||!n(t,this.path))return;const o=this.path.slice(1);e.push("has-hover-"+o.join("-"))},hasHoverPath(){return this.path[0].includes(":hover")},setCssVar(e){return this.cssVar=e,this},setPath(e){return this.path=e,this}};const s=l,{get:r}=window._,{isEmpty:a}=JetFBActions,i=["top","right","bottom","left"];function c(){s.call(this),this.isSupported=function(e){return"border"===e.at(-1)},this.compileDeclarations=function(e,t,o){const n=r(e,this.path);if(a(n))return;const l=this.hasHoverPath();["style","width","color"].forEach(e=>{const s=this.getSideValue(n,"top",e);s&&(t[this.getTopVar(e)]=s);const r=this.getSideValue(n,"right",e);r&&(t[this.getRightVar(e)]=r);const a=this.getSideValue(n,"bottom",e);a&&(t[this.getBottomVar(e)]=a);const i=this.getSideValue(n,"left",e);i&&(t[this.getLeftVar(e)]=i),l&&[s,r,a,i].filter(Boolean).length&&o.push(`has-hover-border-${e}`)})},this.compileClassNames=()=>{}}c.prototype=Object.create(s.prototype),c.prototype.getTopVar=function(e){return`${this.cssVar}-top-${e}`},c.prototype.getRightVar=function(e){return`${this.cssVar}-right-${e}`},c.prototype.getBottomVar=function(e){return`${this.cssVar}-bottom-${e}`},c.prototype.getLeftVar=function(e){return`${this.cssVar}-left-${e}`},c.prototype.isLinked=function(e){const[t]=Object.keys(e);return i.includes(t)},c.prototype.getSideValue=function(e,t,o){if(!i.includes(t))return"";let n="";var l,s;return n=this.isLinked(e)?null!==(l=e[t]?.[o])&&void 0!==l?l:"":null!==(s=e[o])&&void 0!==s?s:"",n.trim()};const u=c,{get:p}=window._,{isEmpty:d}=JetFBActions;function h(){s.call(this),this.isSupported=function(e){return"border"===e.at(1)&&"radius"===e.at(-1)},this.compileDeclarations=function(e,t,o){const n=p(e,this.path);if(d(n))return;const l=this.getTopLeft(n);l&&(t[`${this.cssVar}-top-left`]=l);const s=this.getTopRight(n);s&&(t[`${this.cssVar}-top-right`]=s);const r=this.getBottomRight(n);r&&(t[`${this.cssVar}-bottom-right`]=r);const a=this.getBottomLeft(n);a&&(t[`${this.cssVar}-bottom-left`]=a)}}h.prototype=Object.create(s.prototype),h.prototype.isLinked=function(e){const[t]=Object.keys(e);return["topLeft","topRight","bottomLeft","bottomRight"].includes(t)},h.prototype.getTopLeft=function(e){return this.isLinked(e)?e?.topLeft:e},h.prototype.getTopRight=function(e){return this.isLinked(e)?e?.topRight:e},h.prototype.getBottomLeft=function(e){return this.isLinked(e)?e?.bottomLeft:e},h.prototype.getBottomRight=function(e){return this.isLinked(e)?e?.bottomRight:e};const m=h,{get:f}=window._,{isEmpty:b}=JetFBActions,y=["top","right","bottom","left"];function g(){s.call(this),this.isSupported=function(e){return["padding","margin"].includes(e.at(-1))},this.compileDeclarations=function(e,t){const o=f(e,this.path);if(!b(o))for(const e of y)t[`${this.cssVar}-${e}`]=this.getSideValue(e,o).trim()},this.compileClassNames=()=>{}}g.prototype=Object.create(s.prototype),g.prototype.getSideValue=function(e,t){var o;return"string"==typeof t?t:null!==(o=t[e])&&void 0!==o?o:""};const V=[new g,new m,new u,new s];function w(e){for(const t of V)if(t.isSupported(e))return t;throw new Error("Something went wrong")}const{useMemo:C}=wp.element,{useBlockAttributes:S}=JetFBHooks,{set:B}=JetFBActions,E=function(e,t){var o;const n=null!==(o=e?.style)&&void 0!==o?o:{},{get:l}=window._;return[l(n,t),e=>B(JSON.parse(JSON.stringify(n)),t,e)]},{useBlockAttributes:k}=JetFBHooks,_=window.React,{createContext:F}=wp.element,I=F({setCssVars:null}),{useBlockEditContext:x}=wp.blockEditor,{__:v}=wp.i18n;let{__experimentalToolsPanel:A,ToolsPanel:P}=wp.components;const{useCallback:j}=wp.element,{useInstanceId:O}=wp.compose;P=P||A;const{useBlockAttributes:J}=JetFBHooks,{createContext:T}=wp.element,D=T({panelId:null,resetAllFilter:null,onDeselect:null,hasValue:null,cssValue:null,updateCss:null,path:null}),{useContext:L,useMemo:R,useCallback:$}=wp.element,{useBlockAttributes:N}=JetFBHooks,H=function({cssVar:e,defaultValue:t,children:n}){const{panelId:l}=L(I),s=(d=e,null!==(h=o()[d])&&void 0!==h?h:[]),[r,a]=N(),[i,c]=R(()=>E(r,s),[r]),u=$(e=>{const t=c(e);a({...r,style:t})},[r]),p=(e,o)=>{const[,n]=E(e,s);return{...e,style:n(null!=o?o:t)}};var d,h;return(0,_.createElement)(D.Provider,{value:{panelId:l,onDeselect:function(e){a(p(r,e))},hasValue:function(){const[e]=E(r,s);return e!==t},cssValue:i,updateCss:u,resetAllFilter:p,path:s}},n)};let{__experimentalToolsPanelItem:G,ToolsPanelItem:M}=wp.components;M=M||G;const{useContext:U}=wp.element;function z(e){const{panelId:t,resetAllFilter:o,onDeselect:n,hasValue:l}=U(D);return(0,_.createElement)(M,{panelId:t,resetAllFilter:o,onDeselect:n,hasValue:l,...e})}const W=function({cssVar:e,defaultValue:t,...o}){return(0,_.createElement)(H,{cssVar:e,defaultValue:t},(0,_.createElement)(z,{...o}))};let{__experimentalColorGradientSettingsDropdown:q,ColorGradientSettingsDropdown:K,__experimentalUseMultipleOriginColorsAndGradients:Q,useMultipleOriginColorsAndGradients:X}=wp.blockEditor;const{useContext:Y}=wp.element,{__:Z}=wp.i18n;function ee({label:e}){const{panelId:t,resetAllFilter:o,cssValue:n,updateCss:l}=Y(D),s=X(),r=[{colorValue:n,onColorChange:l,label:null!=e?e:Z("Color","jet-form-builder"),resetAllFilter:o}];return(0,_.createElement)(K,{__experimentalIsRenderedInSidebar:!0,settings:r,panelId:t,...s,gradients:[],disableCustomGradients:!0})}K=K||q,X=X||Q;const{useContext:te}=wp.element;let{__experimentalBorderBoxControl:oe,BorderBoxControl:ne,__experimentalToolsPanelItem:le,ToolsPanelItem:se}=wp.components;se=se||le,ne=ne||oe;let{__experimentalUseMultipleOriginColorsAndGradients:re,useMultipleOriginColorsAndGradients:ae}=wp.blockEditor;function ie({enableAlpha:e=!1,enableStyle:t=!0,label:o="",labelForControl:n=""}){const{cssValue:l,updateCss:s,onDeselect:r,hasValue:a,...i}=te(D),{colors:c}=ae();return(0,_.createElement)(se,{label:o,onDeselect:function(){const e=l?.hasOwnProperty?.("radius")?{radius:l.radius}:{};r(e)},hasValue:function(){if("object"!=typeof l)return!1;const[e]=Object.keys(l);return["top","left","right","bottom","color","width","style"].includes(e)},...i},(0,_.createElement)(ne,{label:n,colors:c,onChange:e=>{const t=l?.hasOwnProperty?.("radius")?{...e,radius:l.radius}:e;s(t)},enableAlpha:e,enableStyle:t,popoverOffset:40,popoverPlacement:"left-start",value:l,__experimentalIsRenderedInSidebar:!0}))}ae=ae||re;const{useContext:ce}=wp.element;let{__experimentalBorderRadiusControl:ue,BorderRadiusControl:pe}=wp.blockEditor;function de(){const{cssValue:e,updateCss:t}=ce(D);return(0,_.createElement)(pe,{values:e,onChange:t})}pe=pe||ue;const{useContext:he}=wp.element;let{__experimentalBoxControl:me,BoxControl:fe,__experimentalToolsPanelItem:be,ToolsPanelItem:ye}=wp.components;function ge({label:e="",labelForControl:t,sides:o=y}){const{cssValue:n,updateCss:l,onDeselect:s,hasValue:r,...a}=he(D);return(0,_.createElement)(ye,{label:e,onDeselect:s,hasValue:function(){if("object"!=typeof n)return!1;const[e]=Object.keys(n);return y.includes(e)},...a},(0,_.createElement)(fe,{label:null!=t?t:e,onChange:l,sides:o,value:n}))}ye=ye||be,fe=fe||me;const{getSupport:Ve}=JetFBActions,{useContext:we}=wp.element;let{__experimentalToolsPanelItem:Ce,ToolsPanelItem:Se}=wp.components;Se=Se||Ce;const{HeightControl:Be}=wp.blockEditor,{isEmpty:Ee}=JetFBActions;function ke({label:e="",labelForControl:t}){const{cssValue:o,updateCss:n,onDeselect:l,hasValue:s,...r}=we(D);return(0,_.createElement)(Se,{label:e,onDeselect:l,hasValue:()=>!Ee(o),...r},(0,_.createElement)(Be,{label:null!=t?t:e,onChange:n,value:o}))}const{addFilter:_e}=wp.hooks;_e("blocks.registerBlockType","jet-form-builder/jet-style-support",function(e,t){return!Ve(e,"jetStyle")||e.attributes.hasOwnProperty("style")||(e.attributes={...e.attributes,style:{type:"object",default:{}}}),e}),window.JetFBComponents={...window.JetFBComponents,StylePanel:function e({label:t,children:o,...n}){const{clientId:l}=x(),s=O(e),[r,a]=J(),i=j(e=>{let t=JSON.parse(JSON.stringify(r));e.forEach(e=>{t=e(t)}),a(t)},[l,r]);return(0,_.createElement)(P,{label:null!=t?t:v("Style panel","jet-form-builder"),resetAll:i,panelId:s+l,...n},(0,_.createElement)(I.Provider,{value:{panelId:s+l}},o))},StylePanelItem:W,StyleColorItem:function({cssVar:e,...t}){return(0,_.createElement)(H,{cssVar:e},(0,_.createElement)(ee,{...t}))},StyleColorItemsWrapper:function({children:e}){return(0,_.createElement)("div",{className:"color-block-support-panel__inner-wrapper"},e)},StyleBorderItem:function({cssVar:e,enableAlpha:t=!1,enableStyle:o=!0,label:n="Border",labelForControl:l=!1,defaultValue:s,...r}){return(0,_.createElement)(H,{cssVar:e,defaultValue:s},(0,_.createElement)(ie,{enableAlpha:t,enableStyle:o,label:n,labelForControl:l?n:"",...r}))},StyleBorderRadiusItem:function({cssVar:e,...t}){return(0,_.createElement)(W,{cssVar:e,...t},(0,_.createElement)(de,null))},StyleBox:function({cssVar:e,label:t="",labelForControl:o,sides:n=y,...l}){return(0,_.createElement)(H,{cssVar:e,defaultValue:{}},(0,_.createElement)(ge,{label:t,labelForControl:o,sides:n,...l}))},StyleSize:function({cssVar:e,label:t="",labelForControl:o,...n}){return(0,_.createElement)(H,{cssVar:e,defaultValue:""},(0,_.createElement)(ke,{label:t,labelForControl:o,...n}))}},window.JetFBHooks={...window.JetFBHooks,useJetStyle:function({style:e,className:t,...n}={}){const l=o(),[s]=S(),r=C(()=>function(e,t){const o={},n=[];for(const[l,s]of Object.entries(t)){const t=w(s).setCssVar(l).setPath(s);t.compileDeclarations(e,o,n),t.compileClassNames(n,e)}return{style:o,className:n.join(" ")}}(s?.style,l),[s?.style,l]);return{style:{...r.style,...null!=e?e:{}},className:[t,r.className].filter(Boolean).join(" "),...n}},useJetStyleSupports:o,useStyle:function(e){var t;const[n,l]=k(),s=null!==(t=o()[e])&&void 0!==t?t:[];if(!s.length)return["",()=>{}];const[r,a]=E(n,s);return[r,e=>l({style:a(e)})]}}})(); \ No newline at end of file +(()=>{"use strict";const{useBlockEditContext:e}=wp.blockEditor,{useSelect:t}=wp.data,o=function(){const{clientId:o,name:n}=e();return t((e=>{const{supports:t}=e("core/blocks").getBlockType(n);return t.hasOwnProperty("jetStyle")?t.jetStyle:{}}),[o])},{get:n}=window._;function l(){this.cssVar="",this.path=[]}l.prototype={isSupported:e=>!0,compileDeclarations(e,t,o){const l=n(e,this.path);l&&(t[this.cssVar]=l)},compileClassNames(e,t){if(!this.hasHoverPath()||!n(t,this.path))return;const o=this.path.slice(1);e.push("has-hover-"+o.join("-"))},hasHoverPath(){return this.path[0].includes(":hover")},setCssVar(e){return this.cssVar=e,this},setPath(e){return this.path=e,this}};const s=l,{get:r}=window._,{isEmpty:a}=JetFBActions,i=["top","right","bottom","left"];function c(){s.call(this),this.isSupported=function(e){return"border"===e.at(-1)},this.compileDeclarations=function(e,t,o){const n=r(e,this.path);if(a(n))return;const l=this.hasHoverPath();["style","width","color"].forEach((e=>{const s=this.getSideValue(n,"top",e);s&&(t[this.getTopVar(e)]=s);const r=this.getSideValue(n,"right",e);r&&(t[this.getRightVar(e)]=r);const a=this.getSideValue(n,"bottom",e);a&&(t[this.getBottomVar(e)]=a);const i=this.getSideValue(n,"left",e);i&&(t[this.getLeftVar(e)]=i),l&&[s,r,a,i].filter(Boolean).length&&o.push(`has-hover-border-${e}`)}))},this.compileClassNames=()=>{}}c.prototype=Object.create(s.prototype),c.prototype.getTopVar=function(e){return`${this.cssVar}-top-${e}`},c.prototype.getRightVar=function(e){return`${this.cssVar}-right-${e}`},c.prototype.getBottomVar=function(e){return`${this.cssVar}-bottom-${e}`},c.prototype.getLeftVar=function(e){return`${this.cssVar}-left-${e}`},c.prototype.isLinked=function(e){const[t]=Object.keys(e);return i.includes(t)},c.prototype.getSideValue=function(e,t,o){if(!i.includes(t))return"";let n="";var l,s;return n=this.isLinked(e)?null!==(l=e[t]?.[o])&&void 0!==l?l:"":null!==(s=e[o])&&void 0!==s?s:"",n.trim()};const u=c,{get:p}=window._,{isEmpty:d}=JetFBActions;function h(){s.call(this),this.isSupported=function(e){return"border"===e.at(1)&&"radius"===e.at(-1)},this.compileDeclarations=function(e,t,o){const n=p(e,this.path);if(d(n))return;const l=this.getTopLeft(n);l&&(t[`${this.cssVar}-top-left`]=l);const s=this.getTopRight(n);s&&(t[`${this.cssVar}-top-right`]=s);const r=this.getBottomRight(n);r&&(t[`${this.cssVar}-bottom-right`]=r);const a=this.getBottomLeft(n);a&&(t[`${this.cssVar}-bottom-left`]=a)}}h.prototype=Object.create(s.prototype),h.prototype.isLinked=function(e){const[t]=Object.keys(e);return["topLeft","topRight","bottomLeft","bottomRight"].includes(t)},h.prototype.getTopLeft=function(e){return this.isLinked(e)?e?.topLeft:e},h.prototype.getTopRight=function(e){return this.isLinked(e)?e?.topRight:e},h.prototype.getBottomLeft=function(e){return this.isLinked(e)?e?.bottomLeft:e},h.prototype.getBottomRight=function(e){return this.isLinked(e)?e?.bottomRight:e};const m=h,{get:f}=window._,{isEmpty:b}=JetFBActions,y=["top","right","bottom","left"];function g(){s.call(this),this.isSupported=function(e){return["padding","margin"].includes(e.at(-1))},this.compileDeclarations=function(e,t){const o=f(e,this.path);if(!b(o))for(const e of y)t[`${this.cssVar}-${e}`]=this.getSideValue(e,o).trim()},this.compileClassNames=()=>{}}g.prototype=Object.create(s.prototype),g.prototype.getSideValue=function(e,t){var o;return"string"==typeof t?t:null!==(o=t[e])&&void 0!==o?o:""};const V=[new g,new m,new u,new s];function w(e){for(const t of V)if(t.isSupported(e))return t;throw new Error("Something went wrong")}const{useMemo:C}=wp.element,{useBlockAttributes:S}=JetFBHooks,{set:B}=JetFBActions,E=function(e,t){var o;const n=null!==(o=e?.style)&&void 0!==o?o:{},{get:l}=window._;return[l(n,t),e=>B(JSON.parse(JSON.stringify(n)),t,e)]},{useBlockAttributes:k}=JetFBHooks,_=window.React,{createContext:F}=wp.element,I=F({setCssVars:null}),{useBlockEditContext:x}=wp.blockEditor,{__:v}=wp.i18n;let{__experimentalToolsPanel:A,ToolsPanel:P}=wp.components;const{useCallback:j}=wp.element,{useInstanceId:O}=wp.compose;P=P||A;const{useBlockAttributes:J}=JetFBHooks,{createContext:T}=wp.element,D=T({panelId:null,resetAllFilter:null,onDeselect:null,hasValue:null,cssValue:null,updateCss:null,path:null}),{useContext:L,useMemo:R,useCallback:$}=wp.element,{useBlockAttributes:N}=JetFBHooks,H=function({cssVar:e,defaultValue:t,children:n}){const{panelId:l}=L(I),s=(d=e,null!==(h=o()[d])&&void 0!==h?h:[]),[r,a]=N(),[i,c]=R((()=>E(r,s)),[r]),u=$((e=>{const t=c(e);a({...r,style:t})}),[r]),p=(e,o)=>{const[,n]=E(e,s);return{...e,style:n(null!=o?o:t)}};var d,h;return(0,_.createElement)(D.Provider,{value:{panelId:l,onDeselect:function(e){a(p(r,e))},hasValue:function(){const[e]=E(r,s);return e!==t},cssValue:i,updateCss:u,resetAllFilter:p,path:s}},n)};let{__experimentalToolsPanelItem:G,ToolsPanelItem:M}=wp.components;M=M||G;const{useContext:U}=wp.element;function z(e){const{panelId:t,resetAllFilter:o,onDeselect:n,hasValue:l}=U(D);return(0,_.createElement)(M,{panelId:t,resetAllFilter:o,onDeselect:n,hasValue:l,...e})}const W=function({cssVar:e,defaultValue:t,...o}){return(0,_.createElement)(H,{cssVar:e,defaultValue:t},(0,_.createElement)(z,{...o}))};let{__experimentalColorGradientSettingsDropdown:q,ColorGradientSettingsDropdown:K,__experimentalUseMultipleOriginColorsAndGradients:Q,useMultipleOriginColorsAndGradients:X}=wp.blockEditor;const{useContext:Y}=wp.element,{__:Z}=wp.i18n;function ee({label:e}){const{panelId:t,resetAllFilter:o,cssValue:n,updateCss:l}=Y(D),s=X(),r=[{colorValue:n,onColorChange:l,label:null!=e?e:Z("Color","jet-form-builder"),resetAllFilter:o}];return(0,_.createElement)(K,{__experimentalIsRenderedInSidebar:!0,settings:r,panelId:t,...s,gradients:[],disableCustomGradients:!0})}K=K||q,X=X||Q;const{useContext:te}=wp.element;let{__experimentalBorderBoxControl:oe,BorderBoxControl:ne,__experimentalToolsPanelItem:le,ToolsPanelItem:se}=wp.components;se=se||le,ne=ne||oe;let{__experimentalUseMultipleOriginColorsAndGradients:re,useMultipleOriginColorsAndGradients:ae}=wp.blockEditor;function ie({enableAlpha:e=!1,enableStyle:t=!0,label:o="",labelForControl:n=""}){const{cssValue:l,updateCss:s,onDeselect:r,hasValue:a,...i}=te(D),{colors:c}=ae();return(0,_.createElement)(se,{label:o,onDeselect:function(){const e=l?.hasOwnProperty?.("radius")?{radius:l.radius}:{};r(e)},hasValue:function(){if("object"!=typeof l)return!1;const[e]=Object.keys(l);return["top","left","right","bottom","color","width","style"].includes(e)},...i},(0,_.createElement)(ne,{label:n,colors:c,onChange:e=>{const t=l?.hasOwnProperty?.("radius")?{...e,radius:l.radius}:e;s(t)},enableAlpha:e,enableStyle:t,popoverOffset:40,popoverPlacement:"left-start",value:l,__experimentalIsRenderedInSidebar:!0}))}ae=ae||re;const{useContext:ce}=wp.element;let{__experimentalBorderRadiusControl:ue,BorderRadiusControl:pe}=wp.blockEditor;function de(){const{cssValue:e,updateCss:t}=ce(D);return(0,_.createElement)(pe,{values:e,onChange:t})}pe=pe||ue;const{useContext:he}=wp.element;let{__experimentalBoxControl:me,BoxControl:fe,__experimentalToolsPanelItem:be,ToolsPanelItem:ye}=wp.components;function ge({label:e="",labelForControl:t,sides:o=y}){const{cssValue:n,updateCss:l,onDeselect:s,hasValue:r,...a}=he(D);return(0,_.createElement)(ye,{label:e,onDeselect:s,hasValue:function(){if("object"!=typeof n)return!1;const[e]=Object.keys(n);return y.includes(e)},...a},(0,_.createElement)(fe,{label:null!=t?t:e,onChange:l,sides:o,value:n}))}ye=ye||be,fe=fe||me;const{getSupport:Ve}=JetFBActions,{useContext:we}=wp.element;let{__experimentalToolsPanelItem:Ce,ToolsPanelItem:Se}=wp.components;Se=Se||Ce;const{HeightControl:Be}=wp.blockEditor,{isEmpty:Ee}=JetFBActions;function ke({label:e="",labelForControl:t}){const{cssValue:o,updateCss:n,onDeselect:l,hasValue:s,...r}=we(D);return(0,_.createElement)(Se,{label:e,onDeselect:l,hasValue:()=>!Ee(o),...r},(0,_.createElement)(Be,{label:null!=t?t:e,onChange:n,value:o}))}const{addFilter:_e}=wp.hooks;_e("blocks.registerBlockType","jet-form-builder/jet-style-support",(function(e,t){return!Ve(e,"jetStyle")||e.attributes.hasOwnProperty("style")||(e.attributes={...e.attributes,style:{type:"object",default:{}}}),e})),window.JetFBComponents={...window.JetFBComponents,StylePanel:function e({label:t,children:o,...n}){const{clientId:l}=x(),s=O(e),[r,a]=J(),i=j((e=>{let t=JSON.parse(JSON.stringify(r));e.forEach((e=>{t=e(t)})),a(t)}),[l,r]);return(0,_.createElement)(P,{label:null!=t?t:v("Style panel","jet-form-builder"),resetAll:i,panelId:s+l,...n},(0,_.createElement)(I.Provider,{value:{panelId:s+l}},o))},StylePanelItem:W,StyleColorItem:function({cssVar:e,...t}){return(0,_.createElement)(H,{cssVar:e},(0,_.createElement)(ee,{...t}))},StyleColorItemsWrapper:function({children:e}){return(0,_.createElement)("div",{className:"color-block-support-panel__inner-wrapper"},e)},StyleBorderItem:function({cssVar:e,enableAlpha:t=!1,enableStyle:o=!0,label:n="Border",labelForControl:l=!1,defaultValue:s,...r}){return(0,_.createElement)(H,{cssVar:e,defaultValue:s},(0,_.createElement)(ie,{enableAlpha:t,enableStyle:o,label:n,labelForControl:l?n:"",...r}))},StyleBorderRadiusItem:function({cssVar:e,...t}){return(0,_.createElement)(W,{cssVar:e,...t},(0,_.createElement)(de,null))},StyleBox:function({cssVar:e,label:t="",labelForControl:o,sides:n=y,...l}){return(0,_.createElement)(H,{cssVar:e,defaultValue:{}},(0,_.createElement)(ge,{label:t,labelForControl:o,sides:n,...l}))},StyleSize:function({cssVar:e,label:t="",labelForControl:o,...n}){return(0,_.createElement)(H,{cssVar:e,defaultValue:""},(0,_.createElement)(ke,{label:t,labelForControl:o,...n}))}},window.JetFBHooks={...window.JetFBHooks,useJetStyle:function({style:e,className:t,...n}={}){const l=o(),[s]=S(),r=C((()=>function(e,t){const o={},n=[];for(const[l,s]of Object.entries(t)){const t=w(s).setCssVar(l).setPath(s);t.compileDeclarations(e,o,n),t.compileClassNames(n,e)}return{style:o,className:n.join(" ")}}(s?.style,l)),[s?.style,l]);return{style:{...r.style,...null!=e?e:{}},className:[t,r.className].filter(Boolean).join(" "),...n}},useJetStyleSupports:o,useStyle:function(e){var t;const[n,l]=k(),s=null!==(t=o()[e])&&void 0!==t?t:[];if(!s.length)return["",()=>{}];const[r,a]=E(n,s);return[r,e=>l({style:a(e)})]}}})(); \ No newline at end of file diff --git a/modules/macros-inserter/assets/build/editor.asset.php b/modules/macros-inserter/assets/build/editor.asset.php index 47aa951f2..c90c66690 100644 --- a/modules/macros-inserter/assets/build/editor.asset.php +++ b/modules/macros-inserter/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-block-editor', 'wp-element', 'wp-hooks'), 'version' => 'c527ddca1e703a2e696b'); + array('react', 'wp-block-editor', 'wp-element', 'wp-hooks'), 'version' => '0358a84aef00932a4605'); diff --git a/modules/macros-inserter/assets/build/editor.js b/modules/macros-inserter/assets/build/editor.js index ea3de9fb9..1b4a677cb 100644 --- a/modules/macros-inserter/assets/build/editor.js +++ b/modules/macros-inserter/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={d:(t,r)=>{for(var l in r)e.o(r,l)&&!e.o(t,l)&&Object.defineProperty(t,l,{enumerable:!0,get:r[l]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{default:()=>c,metadata:()=>l,name:()=>a,settings:()=>d});const r=window.React,l=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"jet-forms/macros-inserter","title":"Fields Preview","description":"Build a custom preview of filled form data with HTML, CSS, and macros that display field values.","category":"jet-form-builder-fields","supports":{"html":false},"attributes":{"content":{"type":"string","source":"html","selector":"div","default":""}},"editorScript":"jet-fb-macros-inserter-editor","editorStyle":["wp-codemirror","jet-fb-macros-inserter-editor"]}'),n=window.wp.element,o=window.wp.blockEditor,i="option-label",a=l.name,d={icon:(0,r.createElement)("svg",{width:"46",height:"50",viewBox:"0 0 46 50",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M34 37C36.7614 37 39 39.2386 39 42C39 44.7614 36.7614 47 34 47C31.2386 47 29 44.7614 29 42C29 39.2386 31.2386 37 34 37ZM34 39C32.3431 39 31 40.3431 31 42C31 43.6569 32.3431 45 34 45C35.6568 45 37 43.6568 37 42C37 40.3431 35.6568 39 34 39Z",fill:"#0F172A"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17 34C18.6569 34 20 35.3431 20 37C20 38.6569 18.6569 40 17 40H9C7.34315 40 6 38.6569 6 37C6 35.3431 7.34315 34 9 34H17ZM9 36C8.44772 36 8 36.4477 8 37C8 37.5523 8.44772 38 9 38H17C17.5523 38 18 37.5523 18 37C18 36.4477 17.5523 36 17 36H9Z",fill:"#0F172A"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M27 24C28.6569 24 30 25.3431 30 27C30 28.6569 28.6569 30 27 30H9C7.34315 30 6 28.6569 6 27C6 25.3431 7.34315 24 9 24H27ZM9 26C8.44772 26 8 26.4477 8 27C8 27.5523 8.44772 28 9 28H27C27.5523 28 28 27.5523 28 27C28 26.4477 27.5523 26 27 26H9Z",fill:"#0F172A"}),(0,r.createElement)("path",{d:"M17 20C17.5523 20 18 20.4477 18 21C18 21.5523 17.5523 22 17 22H7.5C6.94772 22 6.5 21.5523 6.5 21C6.5 20.4477 6.94772 20 7.5 20H17Z",fill:"#0F172A"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M27 10C28.6569 10 30 11.3431 30 13C30 14.6569 28.6569 16 27 16H9C7.34315 16 6 14.6569 6 13C6 11.3431 7.34315 10 9 10H27ZM9 12C8.44772 12 8 12.4477 8 13C8 13.5523 8.44772 14 9 14H27C27.5523 14 28 13.5523 28 13C28 12.4477 27.5523 12 27 12H9Z",fill:"#0F172A"}),(0,r.createElement)("path",{d:"M17 6C17.5523 6 18 6.44772 18 7C18 7.55228 17.5523 8 17 8H7.5C6.94772 8 6.5 7.55228 6.5 7C6.5 6.44772 6.94772 6 7.5 6H17Z",fill:"#0F172A"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32 0C34.2091 0 36 1.79086 36 4V34.1797L38 34.7109C42.6608 36.3599 46 40 46 42C46 45 40.6274 50 34 50C31.5909 50 29.1601 49.1756 27.1221 48H4C1.79086 48 0 46.2091 0 44V4C0 1.79086 1.79086 0 4 0H32ZM34 36C31.1823 36 28.5936 37.0692 26.7129 38.4766C25.7753 39.1782 25.0602 39.9301 24.5957 40.6113C24.1088 41.3255 24 41.8063 24 42C24 42.1937 24.1088 42.6745 24.5957 43.3887C25.0602 44.0699 25.7753 44.8218 26.7129 45.5234C28.5936 46.9308 31.1823 48 34 48C36.8177 48 39.4064 46.9308 41.2871 45.5234C42.2247 44.8218 42.9398 44.0699 43.4043 43.3887C43.8433 42.7448 43.9745 42.2906 43.9961 42.0654C43.9861 42.0342 43.9677 41.9803 43.9326 41.9023C43.841 41.6985 43.68 41.4166 43.4336 41.0742C42.9417 40.3909 42.1912 39.5818 41.2305 38.8076C39.289 37.2431 36.7186 36 34 36ZM4 2C2.89543 2 2 2.89543 2 4V44C2 45.1046 2.89543 46 4 46H24.3799C22.9152 44.6521 22 43.2041 22 42.0654C22.0002 39.131 28.0665 34 34 34V4C34 2.89543 33.1046 2 32 2H4Z",fill:"#0F172A"})),edit:function({attributes:e,setAttributes:t}){var l;const a=(0,o.useBlockProps)(),d=window?.JetFBComponents?.MacrosFields,c=(0,n.useRef)(null),s=(0,n.useRef)(null);return(0,n.useEffect)(()=>{var r;if(!c.current)return;if(!window?.wp?.codeEditor?.initialize)return;const l=wp.codeEditor.initialize(c.current,{codemirror:{mode:"htmlmixed",lineNumbers:!0,lineWrapping:!0,indentUnit:2,tabSize:2}}),n=l?.codemirror;if(!n)return;s.current=n,n.setValue(null!==(r=e?.content)&&void 0!==r?r:"");const o=()=>{t({content:n.getValue()})};return n.on("change",o),()=>{try{n.off("change",o)}catch(e){}s.current=null}},[]),(0,r.createElement)(n.Fragment,null,d?(0,r.createElement)(o.BlockControls,{group:"other"},(0,r.createElement)(d,{withCurrent:!0,onClick:(e,t,r)=>{var l,n;l=s.current,n=function(e,t,r){const l=String(e).replace(/^%|%$/g,"").trim();let n="";return t?.is_repeater_child&&(n="this field can be used only inside repeater - "+t.repeater_name),`${n}`}(e,t,r),l&&(l.focus(),l.replaceSelection(n,"end"))}})):null,(0,r.createElement)("div",{...a},(0,r.createElement)("textarea",{ref:c,defaultValue:null!==(l=e?.content)&&void 0!==l?l:"",rows:5,placeholder:"Use the toolbar to insert macros. You can also write custom HTML here…",style:{width:"100%",fontFamily:"monospace",boxSizing:"border-box"}})))},save:function({attributes:e}){var t;return(0,r.createElement)("div",null,(0,r.createElement)(n.RawHTML,null,null!==(t=e?.content)&&void 0!==t?t:""))}},c={metadata:l,name:a,settings:d};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/macros-inserter",e=>(e.push(t),e))})(); \ No newline at end of file +(()=>{"use strict";var e={d:(t,r)=>{for(var l in r)e.o(r,l)&&!e.o(t,l)&&Object.defineProperty(t,l,{enumerable:!0,get:r[l]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{default:()=>c,metadata:()=>l,name:()=>a,settings:()=>d});const r=window.React,l=JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"jet-forms/macros-inserter","title":"Fields Preview","description":"Build a custom preview of filled form data with HTML, CSS, and macros that display field values.","category":"jet-form-builder-fields","supports":{"html":false},"attributes":{"content":{"type":"string","source":"html","selector":"div","default":""}},"editorScript":"jet-fb-macros-inserter-editor","editorStyle":["wp-codemirror","jet-fb-macros-inserter-editor"]}'),n=window.wp.element,o=window.wp.blockEditor,i="option-label",a=l.name,d={icon:(0,r.createElement)("svg",{width:"46",height:"50",viewBox:"0 0 46 50",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M34 37C36.7614 37 39 39.2386 39 42C39 44.7614 36.7614 47 34 47C31.2386 47 29 44.7614 29 42C29 39.2386 31.2386 37 34 37ZM34 39C32.3431 39 31 40.3431 31 42C31 43.6569 32.3431 45 34 45C35.6568 45 37 43.6568 37 42C37 40.3431 35.6568 39 34 39Z",fill:"#0F172A"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17 34C18.6569 34 20 35.3431 20 37C20 38.6569 18.6569 40 17 40H9C7.34315 40 6 38.6569 6 37C6 35.3431 7.34315 34 9 34H17ZM9 36C8.44772 36 8 36.4477 8 37C8 37.5523 8.44772 38 9 38H17C17.5523 38 18 37.5523 18 37C18 36.4477 17.5523 36 17 36H9Z",fill:"#0F172A"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M27 24C28.6569 24 30 25.3431 30 27C30 28.6569 28.6569 30 27 30H9C7.34315 30 6 28.6569 6 27C6 25.3431 7.34315 24 9 24H27ZM9 26C8.44772 26 8 26.4477 8 27C8 27.5523 8.44772 28 9 28H27C27.5523 28 28 27.5523 28 27C28 26.4477 27.5523 26 27 26H9Z",fill:"#0F172A"}),(0,r.createElement)("path",{d:"M17 20C17.5523 20 18 20.4477 18 21C18 21.5523 17.5523 22 17 22H7.5C6.94772 22 6.5 21.5523 6.5 21C6.5 20.4477 6.94772 20 7.5 20H17Z",fill:"#0F172A"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M27 10C28.6569 10 30 11.3431 30 13C30 14.6569 28.6569 16 27 16H9C7.34315 16 6 14.6569 6 13C6 11.3431 7.34315 10 9 10H27ZM9 12C8.44772 12 8 12.4477 8 13C8 13.5523 8.44772 14 9 14H27C27.5523 14 28 13.5523 28 13C28 12.4477 27.5523 12 27 12H9Z",fill:"#0F172A"}),(0,r.createElement)("path",{d:"M17 6C17.5523 6 18 6.44772 18 7C18 7.55228 17.5523 8 17 8H7.5C6.94772 8 6.5 7.55228 6.5 7C6.5 6.44772 6.94772 6 7.5 6H17Z",fill:"#0F172A"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32 0C34.2091 0 36 1.79086 36 4V34.1797L38 34.7109C42.6608 36.3599 46 40 46 42C46 45 40.6274 50 34 50C31.5909 50 29.1601 49.1756 27.1221 48H4C1.79086 48 0 46.2091 0 44V4C0 1.79086 1.79086 0 4 0H32ZM34 36C31.1823 36 28.5936 37.0692 26.7129 38.4766C25.7753 39.1782 25.0602 39.9301 24.5957 40.6113C24.1088 41.3255 24 41.8063 24 42C24 42.1937 24.1088 42.6745 24.5957 43.3887C25.0602 44.0699 25.7753 44.8218 26.7129 45.5234C28.5936 46.9308 31.1823 48 34 48C36.8177 48 39.4064 46.9308 41.2871 45.5234C42.2247 44.8218 42.9398 44.0699 43.4043 43.3887C43.8433 42.7448 43.9745 42.2906 43.9961 42.0654C43.9861 42.0342 43.9677 41.9803 43.9326 41.9023C43.841 41.6985 43.68 41.4166 43.4336 41.0742C42.9417 40.3909 42.1912 39.5818 41.2305 38.8076C39.289 37.2431 36.7186 36 34 36ZM4 2C2.89543 2 2 2.89543 2 4V44C2 45.1046 2.89543 46 4 46H24.3799C22.9152 44.6521 22 43.2041 22 42.0654C22.0002 39.131 28.0665 34 34 34V4C34 2.89543 33.1046 2 32 2H4Z",fill:"#0F172A"})),edit:function({attributes:e,setAttributes:t}){var l;const a=(0,o.useBlockProps)(),d=window?.JetFBComponents?.MacrosFields,c=(0,n.useRef)(null),s=(0,n.useRef)(null);return(0,n.useEffect)((()=>{var r;if(!c.current)return;if(!window?.wp?.codeEditor?.initialize)return;const l=wp.codeEditor.initialize(c.current,{codemirror:{mode:"htmlmixed",lineNumbers:!0,lineWrapping:!0,indentUnit:2,tabSize:2}}),n=l?.codemirror;if(!n)return;s.current=n,n.setValue(null!==(r=e?.content)&&void 0!==r?r:"");const o=()=>{t({content:n.getValue()})};return n.on("change",o),()=>{try{n.off("change",o)}catch(e){}s.current=null}}),[]),(0,r.createElement)(n.Fragment,null,d?(0,r.createElement)(o.BlockControls,{group:"other"},(0,r.createElement)(d,{withCurrent:!0,onClick:(e,t,r)=>{var l,n;l=s.current,n=function(e,t,r){const l=String(e).replace(/^%|%$/g,"").trim();let n="";return t?.is_repeater_child&&(n="this field can be used only inside repeater - "+t.repeater_name),`${n}`}(e,t,r),l&&(l.focus(),l.replaceSelection(n,"end"))}})):null,(0,r.createElement)("div",{...a},(0,r.createElement)("textarea",{ref:c,defaultValue:null!==(l=e?.content)&&void 0!==l?l:"",rows:5,placeholder:"Use the toolbar to insert macros. You can also write custom HTML here…",style:{width:"100%",fontFamily:"monospace",boxSizing:"border-box"}})))},save:function({attributes:e}){var t;return(0,r.createElement)("div",null,(0,r.createElement)(n.RawHTML,null,null!==(t=e?.content)&&void 0!==t?t:""))}},c={metadata:l,name:a,settings:d};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/macros-inserter",(e=>(e.push(t),e)))})(); \ No newline at end of file diff --git a/modules/multi-gateway/assets/build/editor.asset.php b/modules/multi-gateway/assets/build/editor.asset.php index cd051b257..e622cb444 100644 --- a/modules/multi-gateway/assets/build/editor.asset.php +++ b/modules/multi-gateway/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-hooks'), 'version' => 'a018bfb66ef9b6708ff3'); + array('react', 'wp-hooks'), 'version' => '12d28bf3922dc0dac237'); diff --git a/modules/multi-gateway/assets/build/editor.js b/modules/multi-gateway/assets/build/editor.js index 430cd64b4..03f2b3c95 100644 --- a/modules/multi-gateway/assets/build/editor.js +++ b/modules/multi-gateway/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={d:(t,a)=>{for(var l in a)e.o(a,l)&&!e.o(t,l)&&Object.defineProperty(t,l,{enumerable:!0,get:a[l]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{metadata:()=>c,name:()=>f,settings:()=>g});const a=window.React,{useBlockProps:l,RichText:i}=wp.blockEditor,{__:o}=wp.i18n,{Tooltip:n}=wp.components,{useMetaState:s}=JetFBHooks,r=window?.JetFormEditorData?.gateways,d=e=>r?.list?.find(t=>t.value===e)?.label||e,c=JSON.parse('{"apiVersion":3,"name":"jet-forms/multi-gateway","title":"Payment Gateway","description":"Field allowing users to choose a payment method on the front end.","category":"jet-form-builder-fields","textdomain":"jet-form-builder","keywords":["jetformbuilder","gateway","payment"],"icon":"","supports":{"html":false,"multiple":false},"attributes":{"isPreview":{"type":"boolean","default":false},"title":{"type":"string","default":""},"description":{"type":"string","default":""},"gatewaysSettings":{"type":"object","default":{}}},"viewScript":"jet-fb-multi-gateway","style":"jet-fb-multi-gateway"}'),{__:m}=wp.i18n,{createBlock:p}=wp.blocks,{name:f,icon:u=""}=c;c.attributes.isPreview={type:"boolean",default:!1};const g={icon:(0,a.createElement)("span",{dangerouslySetInnerHTML:{__html:u}}),description:m("Field allowing users to choose a payment method on the front end.","jet-form-builder"),edit:function({attributes:e,setAttributes:t}){const c=l(),[m]=s("_jf_gateways");let p=[];if("manual"===(m?.mode||"single"))p=(r?.list||[]).map(({value:e})=>e).filter(e=>!!m?.[e]?.show_on_front);else{const e=m?.gateway;e&&"none"!==e&&(p=[e])}const f=e.gatewaysSettings||{},u=(e,a,l)=>{t({gatewaysSettings:{...f,[e]:{...f[e]||{},[a]:l}}})},g={};return p.forEach(e=>{g[e]="function"!=typeof JetFBActions?.isGatewayValid||JetFBActions.isGatewayValid(e,m)}),(0,a.createElement)("div",{...c},(0,a.createElement)("div",{className:"jfb-multi-gateway"},(0,a.createElement)(i,{tagName:"h3",className:"jfb-multi-gateway__title",value:e.title||"",placeholder:"Optional: add a heading for payment options…",onChange:e=>t({title:e})}),(0,a.createElement)(i,{tagName:"p",className:"jfb-multi-gateway__desc",value:e.description||"",placeholder:"Optional: add a short description for this step…",onChange:e=>t({description:e})}),p.length?(0,a.createElement)("div",{className:"jfb-multi-gateway__list"},p.map((e,t)=>{const l=f?.[e]||{},s="string"==typeof l.label?l.label:d(e),r="string"==typeof l.description?l.description:"",c=g[e];return(0,a.createElement)("label",{key:e,className:`\n\t\t\t\t\t\t\t\t\t\tjfb-multi-gateway__item\n\t\t\t\t\t\t\t\t\t\t${c?"":"jfb-multi-gateway__item--invalid"}\n\t\t\t\t\t\t\t\t\t`,onClickCapture:e=>{e.target?.closest?.('[contenteditable="true"]')&&(e.preventDefault(),e.stopPropagation())}},(0,a.createElement)("input",{type:"radio",className:"jet-form-builder__field",checked:0===t,readOnly:!0}),(0,a.createElement)("div",{className:"jfb-multi-gateway__content",onMouseDown:e=>{e.target?.closest?.('[contenteditable="true"]')||e.preventDefault()}},(0,a.createElement)("div",{className:"jfb-multi-gateway__label-row"},(0,a.createElement)(i,{tagName:"div",className:"jfb-multi-gateway__label",value:s,placeholder:d(e),onChange:t=>u(e,"label",t)}),!c&&(0,a.createElement)(n,{text:o("This gateway is not configured. Please use the Edit button in the Gateways settings to set up this gateway.","jet-form-builder")},(0,a.createElement)("span",{className:"jfb-multi-gateway__warning",onMouseDown:e=>e.preventDefault()},(0,a.createElement)("span",{className:"dashicons dashicons-warning"})))),(0,a.createElement)("div",{className:"jfb-multi-gateway__description"},(0,a.createElement)("div",null,(0,a.createElement)(i,{tagName:"span",value:r,placeholder:"You can add description here",onChange:t=>u(e,"description",t)})))))})):(0,a.createElement)("div",{className:"jfb-multi-gateway__empty"},"No gateways selected")))},example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>p("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/checkbox-field","jet-forms/radio-field","jet-forms/select-field"],transform:e=>p(f,{...e}),priority:0}]}};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/multi-gateway",function(e){return e.push(t),e})})(); \ No newline at end of file +(()=>{"use strict";var e={d:(t,a)=>{for(var l in a)e.o(a,l)&&!e.o(t,l)&&Object.defineProperty(t,l,{enumerable:!0,get:a[l]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{metadata:()=>c,name:()=>f,settings:()=>g});const a=window.React,{useBlockProps:l,RichText:i}=wp.blockEditor,{__:o}=wp.i18n,{Tooltip:n}=wp.components,{useMetaState:s}=JetFBHooks,r=window?.JetFormEditorData?.gateways,d=e=>r?.list?.find((t=>t.value===e))?.label||e,c=JSON.parse('{"apiVersion":3,"name":"jet-forms/multi-gateway","title":"Payment Gateway","description":"Field allowing users to choose a payment method on the front end.","category":"jet-form-builder-fields","textdomain":"jet-form-builder","keywords":["jetformbuilder","gateway","payment"],"icon":"","supports":{"html":false,"multiple":false},"attributes":{"isPreview":{"type":"boolean","default":false},"title":{"type":"string","default":""},"description":{"type":"string","default":""},"gatewaysSettings":{"type":"object","default":{}}},"viewScript":"jet-fb-multi-gateway","style":"jet-fb-multi-gateway"}'),{__:m}=wp.i18n,{createBlock:p}=wp.blocks,{name:f,icon:u=""}=c;c.attributes.isPreview={type:"boolean",default:!1};const g={icon:(0,a.createElement)("span",{dangerouslySetInnerHTML:{__html:u}}),description:m("Field allowing users to choose a payment method on the front end.","jet-form-builder"),edit:function({attributes:e,setAttributes:t}){const c=l(),[m]=s("_jf_gateways");let p=[];if("manual"===(m?.mode||"single"))p=(r?.list||[]).map((({value:e})=>e)).filter((e=>!!m?.[e]?.show_on_front));else{const e=m?.gateway;e&&"none"!==e&&(p=[e])}const f=e.gatewaysSettings||{},u=(e,a,l)=>{t({gatewaysSettings:{...f,[e]:{...f[e]||{},[a]:l}}})},g={};return p.forEach((e=>{g[e]="function"!=typeof JetFBActions?.isGatewayValid||JetFBActions.isGatewayValid(e,m)})),(0,a.createElement)("div",{...c},(0,a.createElement)("div",{className:"jfb-multi-gateway"},(0,a.createElement)(i,{tagName:"h3",className:"jfb-multi-gateway__title",value:e.title||"",placeholder:"Optional: add a heading for payment options…",onChange:e=>t({title:e})}),(0,a.createElement)(i,{tagName:"p",className:"jfb-multi-gateway__desc",value:e.description||"",placeholder:"Optional: add a short description for this step…",onChange:e=>t({description:e})}),p.length?(0,a.createElement)("div",{className:"jfb-multi-gateway__list"},p.map(((e,t)=>{const l=f?.[e]||{},s="string"==typeof l.label?l.label:d(e),r="string"==typeof l.description?l.description:"",c=g[e];return(0,a.createElement)("label",{key:e,className:`\n\t\t\t\t\t\t\t\t\t\tjfb-multi-gateway__item\n\t\t\t\t\t\t\t\t\t\t${c?"":"jfb-multi-gateway__item--invalid"}\n\t\t\t\t\t\t\t\t\t`,onClickCapture:e=>{e.target?.closest?.('[contenteditable="true"]')&&(e.preventDefault(),e.stopPropagation())}},(0,a.createElement)("input",{type:"radio",className:"jet-form-builder__field",checked:0===t,readOnly:!0}),(0,a.createElement)("div",{className:"jfb-multi-gateway__content",onMouseDown:e=>{e.target?.closest?.('[contenteditable="true"]')||e.preventDefault()}},(0,a.createElement)("div",{className:"jfb-multi-gateway__label-row"},(0,a.createElement)(i,{tagName:"div",className:"jfb-multi-gateway__label",value:s,placeholder:d(e),onChange:t=>u(e,"label",t)}),!c&&(0,a.createElement)(n,{text:o("This gateway is not configured. Please use the Edit button in the Gateways settings to set up this gateway.","jet-form-builder")},(0,a.createElement)("span",{className:"jfb-multi-gateway__warning",onMouseDown:e=>e.preventDefault()},(0,a.createElement)("span",{className:"dashicons dashicons-warning"})))),(0,a.createElement)("div",{className:"jfb-multi-gateway__description"},(0,a.createElement)("div",null,(0,a.createElement)(i,{tagName:"span",value:r,placeholder:"You can add description here",onChange:t=>u(e,"description",t)})))))}))):(0,a.createElement)("div",{className:"jfb-multi-gateway__empty"},"No gateways selected")))},example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>p("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/checkbox-field","jet-forms/radio-field","jet-forms/select-field"],transform:e=>p(f,{...e}),priority:0}]}};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/multi-gateway",(function(e){return e.push(t),e}))})(); \ No newline at end of file diff --git a/modules/onboarding/assets/build/editor.asset.php b/modules/onboarding/assets/build/editor.asset.php index 7cf132a3b..cb32f382a 100644 --- a/modules/onboarding/assets/build/editor.asset.php +++ b/modules/onboarding/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-primitives'), 'version' => '2b1e735cab4c1207a1d2'); + array('react', 'wp-components', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-primitives'), 'version' => '33408e8eb838eb424e59'); diff --git a/modules/onboarding/assets/build/editor.js b/modules/onboarding/assets/build/editor.js index f9d561ec0..80c4b106b 100644 --- a/modules/onboarding/assets/build/editor.js +++ b/modules/onboarding/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={695(e,C,t){t.d(C,{A:()=>i});var r=t(168),n=t.n(r),o=t(433),l=t.n(o)()(n());l.push([e.id,'div[id="jfb-use-form:sidebar"]{display:none}button[aria-controls="jfb-use-form:sidebar"]>svg{transform:rotateY(180deg)}',""]);const i=l},363(e,C,t){t.d(C,{A:()=>i});var r=t(168),n=t.n(r),o=t(433),l=t.n(o)()(n());l.push([e.id,'.wp-block-jet-forms-welcome li.is-pro{position:relative;opacity:0.5}.wp-block-jet-forms-welcome li.is-pro .block-editor-block-variation-picker__variation::after{content:"PRO";position:absolute;top:0.4em;right:0.4em;background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));padding:0 0.2em;border-radius:0.5em;color:var(--wp-components-color-accent-inverted,#fff);border:1px solid var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));font-size:0.9em}.wp-block-jet-forms-welcome .block-editor-block-variation-picker__variations{gap:0.4em}.wp-block-jet-forms-welcome .block-editor-block-variation-picker__variations>li{width:-moz-min-content;width:min-content;margin:0.6em 0}.wp-block-jet-forms-welcome .block-editor-block-variation-picker__variations>li .components-button{padding:1.5em}',""]);const i=l},433(e){e.exports=function(e){var C=[];return C.toString=function(){return this.map(function(C){var t="",r=void 0!==C[5];return C[4]&&(t+="@supports (".concat(C[4],") {")),C[2]&&(t+="@media ".concat(C[2]," {")),r&&(t+="@layer".concat(C[5].length>0?" ".concat(C[5]):""," {")),t+=e(C),r&&(t+="}"),C[2]&&(t+="}"),C[4]&&(t+="}"),t}).join("")},C.i=function(e,t,r,n,o){"string"==typeof e&&(e=[[null,e,void 0]]);var l={};if(r)for(var i=0;i0?" ".concat(s[5]):""," {").concat(s[1],"}")),s[5]=o),t&&(s[2]?(s[1]="@media ".concat(s[2]," {").concat(s[1],"}"),s[2]=t):s[2]=t),n&&(s[4]?(s[1]="@supports (".concat(s[4],") {").concat(s[1],"}"),s[4]=n):s[4]="".concat(n)),C.push(s))}},C}},168(e){e.exports=function(e){return e[1]}},673(e){var C=[];function t(e){for(var t=-1,r=0;r0?" ".concat(t.layer):""," {")),r+=t.css,n&&(r+="}"),t.media&&(r+="}"),t.supports&&(r+="}");var o=t.sourceMap;o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),C.styleTagTransform(r,e,C.options)}(C,e,t)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(C)}}}},626(e){e.exports=function(e,C){if(C.styleSheet)C.styleSheet.cssText=e;else{for(;C.firstChild;)C.removeChild(C.firstChild);C.appendChild(document.createTextNode(e))}}}},C={};function t(r){var n=C[r];if(void 0!==n)return n.exports;var o=C[r]={id:r,exports:{}};return e[r](o,o.exports,t),o.exports}t.n=e=>{var C=e&&e.__esModule?()=>e.default:()=>e;return t.d(C,{a:C}),C},t.d=(e,C)=>{for(var r in C)t.o(C,r)&&!t.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:C[r]})},t.o=(e,C)=>Object.prototype.hasOwnProperty.call(e,C),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.nc=void 0;var r={};t.r(r),t.d(r,{metadata:()=>V,name:()=>B,settings:()=>P});const n=window.React,o=(0,n.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,n.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,n.createElement)("rect",{x:"12",y:"12",width:"86",height:"120",rx:"4",fill:"white"}),(0,n.createElement)("rect",{x:"25",y:"25",width:"60",height:"60",rx:"4",fill:"#F1F5F9"}),(0,n.createElement)("path",{d:"M47.8 41C47.3582 41 47 41.4477 47 42C47 42.5523 47.3582 43 47.8 43H62.2C62.6418 43 63 42.5523 63 42C63 41.4477 62.6418 41 62.2 41H47.8Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M43 50C43 48.3431 44.3431 47 46 47H64C65.6569 47 67 48.3431 67 50C67 51.6569 65.6569 53 64 53H46C44.3431 53 43 51.6569 43 50ZM46 49C45.4477 49 45 49.4477 45 50C45 50.5523 45.4477 51 46 51H64C64.5523 51 65 50.5523 65 50C65 49.4477 64.5523 49 64 49H46Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M46 55C44.3431 55 43 56.3431 43 58C43 59.6569 44.3431 61 46 61H64C65.6569 61 67 59.6569 67 58C67 56.3431 65.6569 55 64 55H46ZM45 58C45 57.4477 45.4477 57 46 57H64C64.5523 57 65 57.4477 65 58C65 58.5523 64.5523 59 64 59H46C45.4477 59 45 58.5523 45 58Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M49 66C49 64.3431 50.3431 63 52 63H58C59.6569 63 61 64.3431 61 66C61 67.6569 59.6569 69 58 69H52C50.3431 69 49 67.6569 49 66ZM52 65C51.4477 65 51 65.4477 51 66C51 66.5523 51.4477 67 52 67H58C58.5523 67 59 66.5523 59 66C59 65.4477 58.5523 65 58 65H52Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M39 39C39 36.7909 40.7909 35 43 35H67C69.2091 35 71 36.7909 71 39V71C71 73.2091 69.2091 75 67 75H43C40.7909 75 39 73.2091 39 71V39ZM43 37H67C68.1046 37 69 37.8954 69 39V71C69 72.1046 68.1046 73 67 73H43C41.8954 73 41 72.1046 41 71V39C41 37.8954 41.8954 37 43 37Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M25.207 99.2871H26.332C26.2734 99.8262 26.1191 100.309 25.8691 100.734C25.6191 101.16 25.2656 101.498 24.8086 101.748C24.3516 101.994 23.7812 102.117 23.0977 102.117C22.5977 102.117 22.1426 102.023 21.7324 101.836C21.3262 101.648 20.9766 101.383 20.6836 101.039C20.3906 100.691 20.1641 100.275 20.0039 99.791C19.8477 99.3027 19.7695 98.7598 19.7695 98.1621V97.3125C19.7695 96.7148 19.8477 96.1738 20.0039 95.6895C20.1641 95.2012 20.3926 94.7832 20.6895 94.4355C20.9902 94.0879 21.3516 93.8203 21.7734 93.6328C22.1953 93.4453 22.6699 93.3516 23.1973 93.3516C23.8418 93.3516 24.3867 93.4727 24.832 93.7148C25.2773 93.957 25.623 94.293 25.8691 94.7227C26.1191 95.1484 26.2734 95.6426 26.332 96.2051H25.207C25.1523 95.8066 25.0508 95.4648 24.9023 95.1797C24.7539 94.8906 24.543 94.668 24.2695 94.5117C23.9961 94.3555 23.6387 94.2773 23.1973 94.2773C22.8184 94.2773 22.4844 94.3496 22.1953 94.4941C21.9102 94.6387 21.6699 94.8438 21.4746 95.1094C21.2832 95.375 21.1387 95.6934 21.041 96.0645C20.9434 96.4355 20.8945 96.8477 20.8945 97.3008V98.1621C20.8945 98.5801 20.9375 98.9727 21.0234 99.3398C21.1133 99.707 21.248 100.029 21.4277 100.307C21.6074 100.584 21.8359 100.803 22.1133 100.963C22.3906 101.119 22.7188 101.197 23.0977 101.197C23.5781 101.197 23.9609 101.121 24.2461 100.969C24.5312 100.816 24.7461 100.598 24.8906 100.312C25.0391 100.027 25.1445 99.6855 25.207 99.2871ZM27.4219 98.9004V98.7656C27.4219 98.3086 27.4883 97.8848 27.6211 97.4941C27.7539 97.0996 27.9453 96.7578 28.1953 96.4688C28.4453 96.1758 28.748 95.9492 29.1035 95.7891C29.459 95.625 29.8574 95.543 30.2988 95.543C30.7441 95.543 31.1445 95.625 31.5 95.7891C31.8594 95.9492 32.1641 96.1758 32.4141 96.4688C32.668 96.7578 32.8613 97.0996 32.9941 97.4941C33.127 97.8848 33.1934 98.3086 33.1934 98.7656V98.9004C33.1934 99.3574 33.127 99.7812 32.9941 100.172C32.8613 100.562 32.668 100.904 32.4141 101.197C32.1641 101.486 31.8613 101.713 31.5059 101.877C31.1543 102.037 30.7559 102.117 30.3105 102.117C29.8652 102.117 29.4648 102.037 29.1094 101.877C28.7539 101.713 28.4492 101.486 28.1953 101.197C27.9453 100.904 27.7539 100.562 27.6211 100.172C27.4883 99.7812 27.4219 99.3574 27.4219 98.9004ZM28.5059 98.7656V98.9004C28.5059 99.2168 28.543 99.5156 28.6172 99.7969C28.6914 100.074 28.8027 100.32 28.9512 100.535C29.1035 100.75 29.293 100.92 29.5195 101.045C29.7461 101.166 30.0098 101.227 30.3105 101.227C30.6074 101.227 30.8672 101.166 31.0898 101.045C31.3164 100.92 31.5039 100.75 31.6523 100.535C31.8008 100.32 31.9121 100.074 31.9863 99.7969C32.0645 99.5156 32.1035 99.2168 32.1035 98.9004V98.7656C32.1035 98.4531 32.0645 98.1582 31.9863 97.8809C31.9121 97.5996 31.7988 97.3516 31.6465 97.1367C31.498 96.918 31.3105 96.7461 31.084 96.6211C30.8613 96.4961 30.5996 96.4336 30.2988 96.4336C30.002 96.4336 29.7402 96.4961 29.5137 96.6211C29.291 96.7461 29.1035 96.918 28.9512 97.1367C28.8027 97.3516 28.6914 97.5996 28.6172 97.8809C28.543 98.1582 28.5059 98.4531 28.5059 98.7656ZM35.6367 97.0137V102H34.5527V95.6602H35.5781L35.6367 97.0137ZM35.3789 98.5898L34.9277 98.5723C34.9316 98.1387 34.9961 97.7383 35.1211 97.3711C35.2461 97 35.4219 96.6777 35.6484 96.4043C35.875 96.1309 36.1445 95.9199 36.457 95.7715C36.7734 95.6191 37.123 95.543 37.5059 95.543C37.8184 95.543 38.0996 95.5859 38.3496 95.6719C38.5996 95.7539 38.8125 95.8867 38.9883 96.0703C39.168 96.2539 39.3047 96.4922 39.3984 96.7852C39.4922 97.0742 39.5391 97.4277 39.5391 97.8457V102H38.4492V97.834C38.4492 97.502 38.4004 97.2363 38.3027 97.0371C38.2051 96.834 38.0625 96.6875 37.875 96.5977C37.6875 96.5039 37.457 96.457 37.1836 96.457C36.9141 96.457 36.668 96.5137 36.4453 96.627C36.2266 96.7402 36.0371 96.8965 35.877 97.0957C35.7207 97.2949 35.5977 97.5234 35.5078 97.7812C35.4219 98.0352 35.3789 98.3047 35.3789 98.5898ZM43.8398 95.6602V96.4922H40.4121V95.6602H43.8398ZM41.5723 94.1191H42.6562V100.43C42.6562 100.645 42.6895 100.807 42.7559 100.916C42.8223 101.025 42.9082 101.098 43.0137 101.133C43.1191 101.168 43.2324 101.186 43.3535 101.186C43.4434 101.186 43.5371 101.178 43.6348 101.162C43.7363 101.143 43.8125 101.127 43.8633 101.115L43.8691 102C43.7832 102.027 43.6699 102.053 43.5293 102.076C43.3926 102.104 43.2266 102.117 43.0312 102.117C42.7656 102.117 42.5215 102.064 42.2988 101.959C42.0762 101.854 41.8984 101.678 41.7656 101.432C41.6367 101.182 41.5723 100.846 41.5723 100.424V94.1191ZM48.8496 100.916V97.6523C48.8496 97.4023 48.7988 97.1855 48.6973 97.002C48.5996 96.8145 48.4512 96.6699 48.252 96.5684C48.0527 96.4668 47.8066 96.416 47.5137 96.416C47.2402 96.416 47 96.4629 46.793 96.5566C46.5898 96.6504 46.4297 96.7734 46.3125 96.9258C46.1992 97.0781 46.1426 97.2422 46.1426 97.418H45.0586C45.0586 97.1914 45.1172 96.9668 45.2344 96.7441C45.3516 96.5215 45.5195 96.3203 45.7383 96.1406C45.9609 95.957 46.2266 95.8125 46.5352 95.707C46.8477 95.5977 47.1953 95.543 47.5781 95.543C48.0391 95.543 48.4453 95.6211 48.7969 95.7773C49.1523 95.9336 49.4297 96.1699 49.6289 96.4863C49.832 96.7988 49.9336 97.1914 49.9336 97.6641V100.617C49.9336 100.828 49.9512 101.053 49.9863 101.291C50.0254 101.529 50.082 101.734 50.1562 101.906V102H49.0254C48.9707 101.875 48.9277 101.709 48.8965 101.502C48.8652 101.291 48.8496 101.096 48.8496 100.916ZM49.0371 98.1562L49.0488 98.918H47.9531C47.6445 98.918 47.3691 98.9434 47.127 98.9941C46.8848 99.041 46.6816 99.1133 46.5176 99.2109C46.3535 99.3086 46.2285 99.4316 46.1426 99.5801C46.0566 99.7246 46.0137 99.8945 46.0137 100.09C46.0137 100.289 46.0586 100.471 46.1484 100.635C46.2383 100.799 46.373 100.93 46.5527 101.027C46.7363 101.121 46.9609 101.168 47.2266 101.168C47.5586 101.168 47.8516 101.098 48.1055 100.957C48.3594 100.816 48.5605 100.645 48.709 100.441C48.8613 100.238 48.9434 100.041 48.9551 99.8496L49.418 100.371C49.3906 100.535 49.3164 100.717 49.1953 100.916C49.0742 101.115 48.9121 101.307 48.709 101.49C48.5098 101.67 48.2715 101.82 47.9941 101.941C47.7207 102.059 47.4121 102.117 47.0684 102.117C46.6387 102.117 46.2617 102.033 45.9375 101.865C45.6172 101.697 45.3672 101.473 45.1875 101.191C45.0117 100.906 44.9238 100.588 44.9238 100.236C44.9238 99.8965 44.9902 99.5977 45.123 99.3398C45.2559 99.0781 45.4473 98.8613 45.6973 98.6895C45.9473 98.5137 46.248 98.3809 46.5996 98.291C46.9512 98.2012 47.3438 98.1562 47.7773 98.1562H49.0371ZM54.1758 101.227C54.4336 101.227 54.6719 101.174 54.8906 101.068C55.1094 100.963 55.2891 100.818 55.4297 100.635C55.5703 100.447 55.6504 100.234 55.6699 99.9961H56.7012C56.6816 100.371 56.5547 100.721 56.3203 101.045C56.0898 101.365 55.7871 101.625 55.4121 101.824C55.0371 102.02 54.625 102.117 54.1758 102.117C53.6992 102.117 53.2832 102.033 52.9277 101.865C52.5762 101.697 52.2832 101.467 52.0488 101.174C51.8184 100.881 51.6445 100.545 51.5273 100.166C51.4141 99.7832 51.3574 99.3789 51.3574 98.9531V98.707C51.3574 98.2812 51.4141 97.8789 51.5273 97.5C51.6445 97.1172 51.8184 96.7793 52.0488 96.4863C52.2832 96.1934 52.5762 95.9629 52.9277 95.7949C53.2832 95.627 53.6992 95.543 54.1758 95.543C54.6719 95.543 55.1055 95.6445 55.4766 95.8477C55.8477 96.0469 56.1387 96.3203 56.3496 96.668C56.5645 97.0117 56.6816 97.4023 56.7012 97.8398H55.6699C55.6504 97.5781 55.5762 97.3418 55.4473 97.1309C55.3223 96.9199 55.1504 96.752 54.9316 96.627C54.7168 96.498 54.4648 96.4336 54.1758 96.4336C53.8438 96.4336 53.5645 96.5 53.3379 96.6328C53.1152 96.7617 52.9375 96.9375 52.8047 97.1602C52.6758 97.3789 52.582 97.623 52.5234 97.8926C52.4688 98.1582 52.4414 98.4297 52.4414 98.707V98.9531C52.4414 99.2305 52.4688 99.5039 52.5234 99.7734C52.5781 100.043 52.6699 100.287 52.7988 100.506C52.9316 100.725 53.1094 100.9 53.332 101.033C53.5586 101.162 53.8398 101.227 54.1758 101.227ZM60.5742 95.6602V96.4922H57.1465V95.6602H60.5742ZM58.3066 94.1191H59.3906V100.43C59.3906 100.645 59.4238 100.807 59.4902 100.916C59.5566 101.025 59.6426 101.098 59.748 101.133C59.8535 101.168 59.9668 101.186 60.0879 101.186C60.1777 101.186 60.2715 101.178 60.3691 101.162C60.4707 101.143 60.5469 101.127 60.5977 101.115L60.6035 102C60.5176 102.027 60.4043 102.053 60.2637 102.076C60.127 102.104 59.9609 102.117 59.7656 102.117C59.5 102.117 59.2559 102.064 59.0332 101.959C58.8105 101.854 58.6328 101.678 58.5 101.432C58.3711 101.182 58.3066 100.846 58.3066 100.424V94.1191ZM66.1172 93.4688V102H64.9863V93.4688H66.1172ZM69.6914 97.3066V98.2324H65.8711V97.3066H69.6914ZM70.2715 93.4688V94.3945H65.8711V93.4688H70.2715ZM71.0391 98.9004V98.7656C71.0391 98.3086 71.1055 97.8848 71.2383 97.4941C71.3711 97.0996 71.5625 96.7578 71.8125 96.4688C72.0625 96.1758 72.3652 95.9492 72.7207 95.7891C73.0762 95.625 73.4746 95.543 73.916 95.543C74.3613 95.543 74.7617 95.625 75.1172 95.7891C75.4766 95.9492 75.7812 96.1758 76.0312 96.4688C76.2852 96.7578 76.4785 97.0996 76.6113 97.4941C76.7441 97.8848 76.8105 98.3086 76.8105 98.7656V98.9004C76.8105 99.3574 76.7441 99.7812 76.6113 100.172C76.4785 100.562 76.2852 100.904 76.0312 101.197C75.7812 101.486 75.4785 101.713 75.123 101.877C74.7715 102.037 74.373 102.117 73.9277 102.117C73.4824 102.117 73.082 102.037 72.7266 101.877C72.3711 101.713 72.0664 101.486 71.8125 101.197C71.5625 100.904 71.3711 100.562 71.2383 100.172C71.1055 99.7812 71.0391 99.3574 71.0391 98.9004ZM72.123 98.7656V98.9004C72.123 99.2168 72.1602 99.5156 72.2344 99.7969C72.3086 100.074 72.4199 100.32 72.5684 100.535C72.7207 100.75 72.9102 100.92 73.1367 101.045C73.3633 101.166 73.627 101.227 73.9277 101.227C74.2246 101.227 74.4844 101.166 74.707 101.045C74.9336 100.92 75.1211 100.75 75.2695 100.535C75.418 100.32 75.5293 100.074 75.6035 99.7969C75.6816 99.5156 75.7207 99.2168 75.7207 98.9004V98.7656C75.7207 98.4531 75.6816 98.1582 75.6035 97.8809C75.5293 97.5996 75.416 97.3516 75.2637 97.1367C75.1152 96.918 74.9277 96.7461 74.7012 96.6211C74.4785 96.4961 74.2168 96.4336 73.916 96.4336C73.6191 96.4336 73.3574 96.4961 73.1309 96.6211C72.9082 96.7461 72.7207 96.918 72.5684 97.1367C72.4199 97.3516 72.3086 97.5996 72.2344 97.8809C72.1602 98.1582 72.123 98.4531 72.123 98.7656ZM79.2539 96.6562V102H78.1699V95.6602H79.2246L79.2539 96.6562ZM81.2344 95.625L81.2285 96.6328C81.1387 96.6133 81.0527 96.6016 80.9707 96.5977C80.8926 96.5898 80.8027 96.5859 80.7012 96.5859C80.4512 96.5859 80.2305 96.625 80.0391 96.7031C79.8477 96.7812 79.6855 96.8906 79.5527 97.0312C79.4199 97.1719 79.3145 97.3398 79.2363 97.5352C79.1621 97.7266 79.1133 97.9375 79.0898 98.168L78.7852 98.3438C78.7852 97.9609 78.8223 97.6016 78.8965 97.2656C78.9746 96.9297 79.0938 96.6328 79.2539 96.375C79.4141 96.1133 79.6172 95.9102 79.8633 95.7656C80.1133 95.6172 80.4102 95.543 80.7539 95.543C80.832 95.543 80.9219 95.5527 81.0234 95.5723C81.125 95.5879 81.1953 95.6055 81.2344 95.625ZM83.3145 96.9199V102H82.2246V95.6602H83.2559L83.3145 96.9199ZM83.0918 98.5898L82.5879 98.5723C82.5918 98.1387 82.6484 97.7383 82.7578 97.3711C82.8672 97 83.0293 96.6777 83.2441 96.4043C83.459 96.1309 83.7266 95.9199 84.0469 95.7715C84.3672 95.6191 84.7383 95.543 85.1602 95.543C85.457 95.543 85.7305 95.5859 85.9805 95.6719C86.2305 95.7539 86.4473 95.8848 86.6309 96.0645C86.8145 96.2441 86.957 96.4746 87.0586 96.7559C87.1602 97.0371 87.2109 97.377 87.2109 97.7754V102H86.127V97.8281C86.127 97.4961 86.0703 97.2305 85.957 97.0312C85.8477 96.832 85.6914 96.6875 85.4883 96.5977C85.2852 96.5039 85.0469 96.457 84.7734 96.457C84.4531 96.457 84.1855 96.5137 83.9707 96.627C83.7559 96.7402 83.584 96.8965 83.4551 97.0957C83.3262 97.2949 83.2324 97.5234 83.1738 97.7812C83.1191 98.0352 83.0918 98.3047 83.0918 98.5898ZM87.1992 97.9922L86.4727 98.2148C86.4766 97.8672 86.5332 97.5332 86.6426 97.2129C86.7559 96.8926 86.918 96.6074 87.1289 96.3574C87.3438 96.1074 87.6074 95.9102 87.9199 95.7656C88.2324 95.6172 88.5898 95.543 88.9922 95.543C89.332 95.543 89.6328 95.5879 89.8945 95.6777C90.1602 95.7676 90.3828 95.9062 90.5625 96.0938C90.7461 96.2773 90.8848 96.5137 90.9785 96.8027C91.0723 97.0918 91.1191 97.4355 91.1191 97.834V102H90.0293V97.8223C90.0293 97.4668 89.9727 97.1914 89.8594 96.9961C89.75 96.7969 89.5938 96.6582 89.3906 96.5801C89.1914 96.498 88.9531 96.457 88.6758 96.457C88.4375 96.457 88.2266 96.498 88.043 96.5801C87.8594 96.6621 87.7051 96.7754 87.5801 96.9199C87.4551 97.0605 87.3594 97.2227 87.293 97.4062C87.2305 97.5898 87.1992 97.7852 87.1992 97.9922Z",fill:"#0F172A"}),(0,n.createElement)("rect",{x:"19",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"25",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"107",y:"13",width:"84",height:"118",rx:"3",fill:"white",stroke:"#4272F9",strokeWidth:"2"}),(0,n.createElement)("rect",{x:"119",y:"25",width:"60",height:"60",rx:"4",fill:"#F1F5F9"}),(0,n.createElement)("path",{d:"M136 46.0444C135.448 46.0444 135 46.4954 135 47.0517C135 47.6081 135.448 48.0591 136 48.0591H156C156.552 48.0591 157 47.6081 157 47.0517C157 46.4954 156.552 46.0444 156 46.0444H136Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M135 51.0813C135 50.5249 135.448 50.0739 136 50.0739H156C156.552 50.0739 157 50.5249 157 51.0813C157 51.6377 156.552 52.0887 156 52.0887H136C135.448 52.0887 135 51.6377 135 51.0813Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M136 54.1035C135.448 54.1035 135 54.5545 135 55.1109C135 55.6672 135.448 56.1183 136 56.1183H151C151.552 56.1183 152 55.6672 152 55.1109C152 54.5545 151.552 54.1035 151 54.1035H136Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M131 44.0296C131 41.8041 132.791 40 135 40H157C159.209 40 161 41.8041 161 44.0296V55.1109H163C165.209 55.1109 167 56.915 167 59.1404V65.1848C167 67.4103 165.209 69.2144 163 69.2144H162.286L159.866 71.839C159.669 72.0537 159.331 72.0537 159.134 71.839L156.714 69.2144H151C148.791 69.2144 147 67.4103 147 65.1848V62.1626H144.214L140.866 65.7947C140.669 66.0093 140.331 66.0093 140.134 65.7947L136.786 62.1626H135C132.791 62.1626 131 60.3585 131 58.1331V44.0296ZM137.658 60.1478L140.5 63.2312L143.342 60.1478H157C158.105 60.1478 159 59.2458 159 58.1331V44.0296C159 42.9168 158.105 42.0148 157 42.0148H135C133.895 42.0148 133 42.9168 133 44.0296V58.1331C133 59.2458 133.895 60.1478 135 60.1478H137.658ZM149 62.1626V65.1848C149 66.2975 149.895 67.1996 151 67.1996H157.586L159.5 69.2756L161.414 67.1996H163C164.105 67.1996 165 66.2975 165 65.1848V59.1404C165 58.0277 164.105 57.1257 163 57.1257H161V58.1331C161 60.3585 159.209 62.1626 157 62.1626H149Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M125.436 93.4688V102H124.305V93.4688H125.436ZM129.01 97.3066V98.2324H125.189V97.3066H129.01ZM129.59 93.4688V94.3945H125.189V93.4688H129.59ZM133.275 102.117C132.834 102.117 132.434 102.043 132.074 101.895C131.719 101.742 131.412 101.529 131.154 101.256C130.9 100.982 130.705 100.658 130.568 100.283C130.432 99.9082 130.363 99.498 130.363 99.0527V98.8066C130.363 98.291 130.439 97.832 130.592 97.4297C130.744 97.0234 130.951 96.6797 131.213 96.3984C131.475 96.1172 131.771 95.9043 132.104 95.7598C132.436 95.6152 132.779 95.543 133.135 95.543C133.588 95.543 133.979 95.6211 134.307 95.7773C134.639 95.9336 134.91 96.1523 135.121 96.4336C135.332 96.7109 135.488 97.0391 135.59 97.418C135.691 97.793 135.742 98.2031 135.742 98.6484V99.1348H131.008V98.25H134.658V98.168C134.643 97.8867 134.584 97.6133 134.482 97.3477C134.385 97.082 134.229 96.8633 134.014 96.6914C133.799 96.5195 133.506 96.4336 133.135 96.4336C132.889 96.4336 132.662 96.4863 132.455 96.5918C132.248 96.6934 132.07 96.8457 131.922 97.0488C131.773 97.252 131.658 97.5 131.576 97.793C131.494 98.0859 131.453 98.4238 131.453 98.8066V99.0527C131.453 99.3535 131.494 99.6367 131.576 99.9023C131.662 100.164 131.785 100.395 131.945 100.594C132.109 100.793 132.307 100.949 132.537 101.062C132.771 101.176 133.037 101.232 133.334 101.232C133.717 101.232 134.041 101.154 134.307 100.998C134.572 100.842 134.805 100.633 135.004 100.371L135.66 100.893C135.523 101.1 135.35 101.297 135.139 101.484C134.928 101.672 134.668 101.824 134.359 101.941C134.055 102.059 133.693 102.117 133.275 102.117ZM139.639 102.117C139.197 102.117 138.797 102.043 138.438 101.895C138.082 101.742 137.775 101.529 137.518 101.256C137.264 100.982 137.068 100.658 136.932 100.283C136.795 99.9082 136.727 99.498 136.727 99.0527V98.8066C136.727 98.291 136.803 97.832 136.955 97.4297C137.107 97.0234 137.314 96.6797 137.576 96.3984C137.838 96.1172 138.135 95.9043 138.467 95.7598C138.799 95.6152 139.143 95.543 139.498 95.543C139.951 95.543 140.342 95.6211 140.67 95.7773C141.002 95.9336 141.273 96.1523 141.484 96.4336C141.695 96.7109 141.852 97.0391 141.953 97.418C142.055 97.793 142.105 98.2031 142.105 98.6484V99.1348H137.371V98.25H141.021V98.168C141.006 97.8867 140.947 97.6133 140.846 97.3477C140.748 97.082 140.592 96.8633 140.377 96.6914C140.162 96.5195 139.869 96.4336 139.498 96.4336C139.252 96.4336 139.025 96.4863 138.818 96.5918C138.611 96.6934 138.434 96.8457 138.285 97.0488C138.137 97.252 138.021 97.5 137.939 97.793C137.857 98.0859 137.816 98.4238 137.816 98.8066V99.0527C137.816 99.3535 137.857 99.6367 137.939 99.9023C138.025 100.164 138.148 100.395 138.309 100.594C138.473 100.793 138.67 100.949 138.9 101.062C139.135 101.176 139.4 101.232 139.697 101.232C140.08 101.232 140.404 101.154 140.67 100.998C140.936 100.842 141.168 100.633 141.367 100.371L142.023 100.893C141.887 101.1 141.713 101.297 141.502 101.484C141.291 101.672 141.031 101.824 140.723 101.941C140.418 102.059 140.057 102.117 139.639 102.117ZM147.367 100.77V93H148.457V102H147.461L147.367 100.77ZM143.102 98.9004V98.7773C143.102 98.293 143.16 97.8535 143.277 97.459C143.398 97.0605 143.568 96.7188 143.787 96.4336C144.01 96.1484 144.273 95.9297 144.578 95.7773C144.887 95.6211 145.23 95.543 145.609 95.543C146.008 95.543 146.355 95.6133 146.652 95.7539C146.953 95.8906 147.207 96.0918 147.414 96.3574C147.625 96.6191 147.791 96.9355 147.912 97.3066C148.033 97.6777 148.117 98.0977 148.164 98.5664V99.1055C148.121 99.5703 148.037 99.9883 147.912 100.359C147.791 100.73 147.625 101.047 147.414 101.309C147.207 101.57 146.953 101.771 146.652 101.912C146.352 102.049 146 102.117 145.598 102.117C145.227 102.117 144.887 102.037 144.578 101.877C144.273 101.717 144.01 101.492 143.787 101.203C143.568 100.914 143.398 100.574 143.277 100.184C143.16 99.7891 143.102 99.3613 143.102 98.9004ZM144.191 98.7773V98.9004C144.191 99.2168 144.223 99.5137 144.285 99.791C144.352 100.068 144.453 100.312 144.59 100.523C144.727 100.734 144.9 100.9 145.111 101.021C145.322 101.139 145.574 101.197 145.867 101.197C146.227 101.197 146.521 101.121 146.752 100.969C146.986 100.816 147.174 100.615 147.314 100.365C147.455 100.115 147.564 99.8438 147.643 99.5508V98.1387C147.596 97.9238 147.527 97.7168 147.438 97.5176C147.352 97.3145 147.238 97.1348 147.098 96.9785C146.961 96.8184 146.791 96.6914 146.588 96.5977C146.389 96.5039 146.152 96.457 145.879 96.457C145.582 96.457 145.326 96.5195 145.111 96.6445C144.9 96.7656 144.727 96.9336 144.59 97.1484C144.453 97.3594 144.352 97.6055 144.285 97.8867C144.223 98.1641 144.191 98.4609 144.191 98.7773ZM153.35 98.0098H151.188L151.176 97.1016H153.139C153.463 97.1016 153.746 97.0469 153.988 96.9375C154.23 96.8281 154.418 96.6719 154.551 96.4688C154.688 96.2617 154.756 96.0156 154.756 95.7305C154.756 95.418 154.695 95.1641 154.574 94.9688C154.457 94.7695 154.275 94.625 154.029 94.5352C153.787 94.4414 153.479 94.3945 153.104 94.3945H151.439V102H150.309V93.4688H153.104C153.541 93.4688 153.932 93.5137 154.275 93.6035C154.619 93.6895 154.91 93.8262 155.148 94.0137C155.391 94.1973 155.574 94.4316 155.699 94.7168C155.824 95.002 155.887 95.3438 155.887 95.7422C155.887 96.0938 155.797 96.4121 155.617 96.6973C155.438 96.9785 155.188 97.209 154.867 97.3887C154.551 97.5684 154.18 97.6836 153.754 97.7344L153.35 98.0098ZM153.297 102H150.742L151.381 101.08H153.297C153.656 101.08 153.961 101.018 154.211 100.893C154.465 100.768 154.658 100.592 154.791 100.365C154.924 100.135 154.99 99.8633 154.99 99.5508C154.99 99.2344 154.934 98.9609 154.82 98.7305C154.707 98.5 154.529 98.3223 154.287 98.1973C154.045 98.0723 153.732 98.0098 153.35 98.0098H151.738L151.75 97.1016H153.953L154.193 97.4297C154.604 97.4648 154.951 97.582 155.236 97.7812C155.521 97.9766 155.738 98.2266 155.887 98.5312C156.039 98.8359 156.115 99.1719 156.115 99.5391C156.115 100.07 155.998 100.52 155.764 100.887C155.533 101.25 155.207 101.527 154.785 101.719C154.363 101.906 153.867 102 153.297 102ZM161.359 100.916V97.6523C161.359 97.4023 161.309 97.1855 161.207 97.002C161.109 96.8145 160.961 96.6699 160.762 96.5684C160.562 96.4668 160.316 96.416 160.023 96.416C159.75 96.416 159.51 96.4629 159.303 96.5566C159.1 96.6504 158.939 96.7734 158.822 96.9258C158.709 97.0781 158.652 97.2422 158.652 97.418H157.568C157.568 97.1914 157.627 96.9668 157.744 96.7441C157.861 96.5215 158.029 96.3203 158.248 96.1406C158.471 95.957 158.736 95.8125 159.045 95.707C159.357 95.5977 159.705 95.543 160.088 95.543C160.549 95.543 160.955 95.6211 161.307 95.7773C161.662 95.9336 161.939 96.1699 162.139 96.4863C162.342 96.7988 162.443 97.1914 162.443 97.6641V100.617C162.443 100.828 162.461 101.053 162.496 101.291C162.535 101.529 162.592 101.734 162.666 101.906V102H161.535C161.48 101.875 161.438 101.709 161.406 101.502C161.375 101.291 161.359 101.096 161.359 100.916ZM161.547 98.1562L161.559 98.918H160.463C160.154 98.918 159.879 98.9434 159.637 98.9941C159.395 99.041 159.191 99.1133 159.027 99.2109C158.863 99.3086 158.738 99.4316 158.652 99.5801C158.566 99.7246 158.523 99.8945 158.523 100.09C158.523 100.289 158.568 100.471 158.658 100.635C158.748 100.799 158.883 100.93 159.062 101.027C159.246 101.121 159.471 101.168 159.736 101.168C160.068 101.168 160.361 101.098 160.615 100.957C160.869 100.816 161.07 100.645 161.219 100.441C161.371 100.238 161.453 100.041 161.465 99.8496L161.928 100.371C161.9 100.535 161.826 100.717 161.705 100.916C161.584 101.115 161.422 101.307 161.219 101.49C161.02 101.67 160.781 101.82 160.504 101.941C160.23 102.059 159.922 102.117 159.578 102.117C159.148 102.117 158.771 102.033 158.447 101.865C158.127 101.697 157.877 101.473 157.697 101.191C157.521 100.906 157.434 100.588 157.434 100.236C157.434 99.8965 157.5 99.5977 157.633 99.3398C157.766 99.0781 157.957 98.8613 158.207 98.6895C158.457 98.5137 158.758 98.3809 159.109 98.291C159.461 98.2012 159.854 98.1562 160.287 98.1562H161.547ZM166.686 101.227C166.943 101.227 167.182 101.174 167.4 101.068C167.619 100.963 167.799 100.818 167.939 100.635C168.08 100.447 168.16 100.234 168.18 99.9961H169.211C169.191 100.371 169.064 100.721 168.83 101.045C168.6 101.365 168.297 101.625 167.922 101.824C167.547 102.02 167.135 102.117 166.686 102.117C166.209 102.117 165.793 102.033 165.438 101.865C165.086 101.697 164.793 101.467 164.559 101.174C164.328 100.881 164.154 100.545 164.037 100.166C163.924 99.7832 163.867 99.3789 163.867 98.9531V98.707C163.867 98.2812 163.924 97.8789 164.037 97.5C164.154 97.1172 164.328 96.7793 164.559 96.4863C164.793 96.1934 165.086 95.9629 165.438 95.7949C165.793 95.627 166.209 95.543 166.686 95.543C167.182 95.543 167.615 95.6445 167.986 95.8477C168.357 96.0469 168.648 96.3203 168.859 96.668C169.074 97.0117 169.191 97.4023 169.211 97.8398H168.18C168.16 97.5781 168.086 97.3418 167.957 97.1309C167.832 96.9199 167.66 96.752 167.441 96.627C167.227 96.498 166.975 96.4336 166.686 96.4336C166.354 96.4336 166.074 96.5 165.848 96.6328C165.625 96.7617 165.447 96.9375 165.314 97.1602C165.186 97.3789 165.092 97.623 165.033 97.8926C164.979 98.1582 164.951 98.4297 164.951 98.707V98.9531C164.951 99.2305 164.979 99.5039 165.033 99.7734C165.088 100.043 165.18 100.287 165.309 100.506C165.441 100.725 165.619 100.9 165.842 101.033C166.068 101.162 166.35 101.227 166.686 101.227ZM171.52 93V102H170.43V93H171.52ZM175.393 95.6602L172.627 98.6191L171.08 100.225L170.992 99.0703L172.1 97.7461L174.068 95.6602H175.393ZM174.402 102L172.141 98.9766L172.703 98.0098L175.68 102H174.402Z",fill:"#0F172A"}),(0,n.createElement)("rect",{x:"113",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"119",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"200",y:"12",width:"86",height:"120",rx:"4",fill:"white"}),(0,n.createElement)("rect",{x:"213",y:"25",width:"60",height:"60",rx:"4",fill:"#F1F5F9"}),(0,n.createElement)("path",{d:"M231 46.0074C231 45.451 231.448 45 232 45H246C246.552 45 247 45.451 247 46.0074C247 46.5638 246.552 47.0148 246 47.0148H232C231.448 47.0148 231 46.5638 231 46.0074Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M232 49.0296C231.448 49.0296 231 49.4806 231 50.037C231 50.5933 231.448 51.0444 232 51.0444H246C246.552 51.0444 247 50.5933 247 50.037C247 49.4806 246.552 49.0296 246 49.0296H232Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M232 53.0591C231.448 53.0591 231 53.5102 231 54.0665C231 54.6229 231.448 55.0739 232 55.0739H241C241.552 55.0739 242 54.6229 242 54.0665C242 53.5102 241.552 53.0591 241 53.0591H232Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M231 57.9926C231 57.4362 231.448 56.9852 232 56.9852H238C238.552 56.9852 239 57.4362 239 57.9926C239 58.549 238.552 59 238 59H232C231.448 59 231 58.549 231 57.9926Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M249 59C249 58.4477 249.448 58 250 58C250.552 58 251 58.4477 251 59V61H253C253.552 61 254 61.4477 254 62C254 62.5523 253.552 63 253 63H251V65C251 65.5523 250.552 66 250 66C249.448 66 249 65.5523 249 65V63H247C246.448 63 246 62.5523 246 62C246 61.4477 246.448 61 247 61H249V59Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M251 43V53.0549C255.5 53.5524 259 57.3674 259 62C259 66.9706 254.971 71 250 71C247.857 71 245.888 70.2508 244.343 69H231C228.791 69 227 67.2091 227 65V43C227 40.7909 228.791 39 231 39H247C249.209 39 251 40.7909 251 43ZM231 41H247C248.105 41 249 41.8954 249 43V53.0549C244.5 53.5524 241 57.3674 241 62C241 63.8501 241.558 65.5699 242.516 67H231C229.895 67 229 66.1046 229 65V43C229 41.8954 229.895 41 231 41ZM257 62C257 65.866 253.866 69 250 69C246.134 69 243 65.866 243 62C243 58.134 246.134 55 250 55C253.866 55 257 58.134 257 62Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M216.611 93.4688V102H215.48V93.4688H216.611ZM219.588 97.0137V102H218.504V95.6602H219.529L219.588 97.0137ZM219.33 98.5898L218.879 98.5723C218.883 98.1387 218.947 97.7383 219.072 97.3711C219.197 97 219.373 96.6777 219.6 96.4043C219.826 96.1309 220.096 95.9199 220.408 95.7715C220.725 95.6191 221.074 95.543 221.457 95.543C221.77 95.543 222.051 95.5859 222.301 95.6719C222.551 95.7539 222.764 95.8867 222.939 96.0703C223.119 96.2539 223.256 96.4922 223.35 96.7852C223.443 97.0742 223.49 97.4277 223.49 97.8457V102H222.4V97.834C222.4 97.502 222.352 97.2363 222.254 97.0371C222.156 96.834 222.014 96.6875 221.826 96.5977C221.639 96.5039 221.408 96.457 221.135 96.457C220.865 96.457 220.619 96.5137 220.396 96.627C220.178 96.7402 219.988 96.8965 219.828 97.0957C219.672 97.2949 219.549 97.5234 219.459 97.7812C219.373 98.0352 219.33 98.3047 219.33 98.5898ZM228.828 100.318C228.828 100.162 228.793 100.018 228.723 99.8848C228.656 99.748 228.518 99.625 228.307 99.5156C228.1 99.4023 227.787 99.3047 227.369 99.2227C227.018 99.1484 226.699 99.0605 226.414 98.959C226.133 98.8574 225.893 98.7344 225.693 98.5898C225.498 98.4453 225.348 98.2754 225.242 98.0801C225.137 97.8848 225.084 97.6562 225.084 97.3945C225.084 97.1445 225.139 96.9082 225.248 96.6855C225.361 96.4629 225.52 96.2656 225.723 96.0938C225.93 95.9219 226.178 95.7871 226.467 95.6895C226.756 95.5918 227.078 95.543 227.434 95.543C227.941 95.543 228.375 95.6328 228.734 95.8125C229.094 95.9922 229.369 96.2324 229.561 96.5332C229.752 96.8301 229.848 97.1602 229.848 97.5234H228.764C228.764 97.3477 228.711 97.1777 228.605 97.0137C228.504 96.8457 228.354 96.707 228.154 96.5977C227.959 96.4883 227.719 96.4336 227.434 96.4336C227.133 96.4336 226.889 96.4805 226.701 96.5742C226.518 96.6641 226.383 96.7793 226.297 96.9199C226.215 97.0605 226.174 97.209 226.174 97.3652C226.174 97.4824 226.193 97.5879 226.232 97.6816C226.275 97.7715 226.35 97.8555 226.455 97.9336C226.561 98.0078 226.709 98.0781 226.9 98.1445C227.092 98.2109 227.336 98.2773 227.633 98.3438C228.152 98.4609 228.58 98.6016 228.916 98.7656C229.252 98.9297 229.502 99.1309 229.666 99.3691C229.83 99.6074 229.912 99.8965 229.912 100.236C229.912 100.514 229.854 100.768 229.736 100.998C229.623 101.229 229.457 101.428 229.238 101.596C229.023 101.76 228.766 101.889 228.465 101.982C228.168 102.072 227.834 102.117 227.463 102.117C226.904 102.117 226.432 102.018 226.045 101.818C225.658 101.619 225.365 101.361 225.166 101.045C224.967 100.729 224.867 100.395 224.867 100.043H225.957C225.973 100.34 226.059 100.576 226.215 100.752C226.371 100.924 226.562 101.047 226.789 101.121C227.016 101.191 227.24 101.227 227.463 101.227C227.76 101.227 228.008 101.188 228.207 101.109C228.41 101.031 228.564 100.924 228.67 100.787C228.775 100.65 228.828 100.494 228.828 100.318ZM233.967 102.117C233.525 102.117 233.125 102.043 232.766 101.895C232.41 101.742 232.104 101.529 231.846 101.256C231.592 100.982 231.396 100.658 231.26 100.283C231.123 99.9082 231.055 99.498 231.055 99.0527V98.8066C231.055 98.291 231.131 97.832 231.283 97.4297C231.436 97.0234 231.643 96.6797 231.904 96.3984C232.166 96.1172 232.463 95.9043 232.795 95.7598C233.127 95.6152 233.471 95.543 233.826 95.543C234.279 95.543 234.67 95.6211 234.998 95.7773C235.33 95.9336 235.602 96.1523 235.812 96.4336C236.023 96.7109 236.18 97.0391 236.281 97.418C236.383 97.793 236.434 98.2031 236.434 98.6484V99.1348H231.699V98.25H235.35V98.168C235.334 97.8867 235.275 97.6133 235.174 97.3477C235.076 97.082 234.92 96.8633 234.705 96.6914C234.49 96.5195 234.197 96.4336 233.826 96.4336C233.58 96.4336 233.354 96.4863 233.146 96.5918C232.939 96.6934 232.762 96.8457 232.613 97.0488C232.465 97.252 232.35 97.5 232.268 97.793C232.186 98.0859 232.145 98.4238 232.145 98.8066V99.0527C232.145 99.3535 232.186 99.6367 232.268 99.9023C232.354 100.164 232.477 100.395 232.637 100.594C232.801 100.793 232.998 100.949 233.229 101.062C233.463 101.176 233.729 101.232 234.025 101.232C234.408 101.232 234.732 101.154 234.998 100.998C235.264 100.842 235.496 100.633 235.695 100.371L236.352 100.893C236.215 101.1 236.041 101.297 235.83 101.484C235.619 101.672 235.359 101.824 235.051 101.941C234.746 102.059 234.385 102.117 233.967 102.117ZM238.783 96.6562V102H237.699V95.6602H238.754L238.783 96.6562ZM240.764 95.625L240.758 96.6328C240.668 96.6133 240.582 96.6016 240.5 96.5977C240.422 96.5898 240.332 96.5859 240.23 96.5859C239.98 96.5859 239.76 96.625 239.568 96.7031C239.377 96.7812 239.215 96.8906 239.082 97.0312C238.949 97.1719 238.844 97.3398 238.766 97.5352C238.691 97.7266 238.643 97.9375 238.619 98.168L238.314 98.3438C238.314 97.9609 238.352 97.6016 238.426 97.2656C238.504 96.9297 238.623 96.6328 238.783 96.375C238.943 96.1133 239.146 95.9102 239.393 95.7656C239.643 95.6172 239.939 95.543 240.283 95.543C240.361 95.543 240.451 95.5527 240.553 95.5723C240.654 95.5879 240.725 95.6055 240.764 95.625ZM244.713 95.6602V96.4922H241.285V95.6602H244.713ZM242.445 94.1191H243.529V100.43C243.529 100.645 243.562 100.807 243.629 100.916C243.695 101.025 243.781 101.098 243.887 101.133C243.992 101.168 244.105 101.186 244.227 101.186C244.316 101.186 244.41 101.178 244.508 101.162C244.609 101.143 244.686 101.127 244.736 101.115L244.742 102C244.656 102.027 244.543 102.053 244.402 102.076C244.266 102.104 244.1 102.117 243.904 102.117C243.639 102.117 243.395 102.064 243.172 101.959C242.949 101.854 242.771 101.678 242.639 101.432C242.51 101.182 242.445 100.846 242.445 100.424V94.1191ZM252.271 98.6543H249.992V97.7344H252.271C252.713 97.7344 253.07 97.6641 253.344 97.5234C253.617 97.3828 253.816 97.1875 253.941 96.9375C254.07 96.6875 254.135 96.4023 254.135 96.082C254.135 95.7891 254.07 95.5137 253.941 95.2559C253.816 94.998 253.617 94.791 253.344 94.6348C253.07 94.4746 252.713 94.3945 252.271 94.3945H250.256V102H249.125V93.4688H252.271C252.916 93.4688 253.461 93.5801 253.906 93.8027C254.352 94.0254 254.689 94.334 254.92 94.7285C255.15 95.1191 255.266 95.5664 255.266 96.0703C255.266 96.6172 255.15 97.084 254.92 97.4707C254.689 97.8574 254.352 98.1523 253.906 98.3555C253.461 98.5547 252.916 98.6543 252.271 98.6543ZM256.162 98.9004V98.7656C256.162 98.3086 256.229 97.8848 256.361 97.4941C256.494 97.0996 256.686 96.7578 256.936 96.4688C257.186 96.1758 257.488 95.9492 257.844 95.7891C258.199 95.625 258.598 95.543 259.039 95.543C259.484 95.543 259.885 95.625 260.24 95.7891C260.6 95.9492 260.904 96.1758 261.154 96.4688C261.408 96.7578 261.602 97.0996 261.734 97.4941C261.867 97.8848 261.934 98.3086 261.934 98.7656V98.9004C261.934 99.3574 261.867 99.7812 261.734 100.172C261.602 100.562 261.408 100.904 261.154 101.197C260.904 101.486 260.602 101.713 260.246 101.877C259.895 102.037 259.496 102.117 259.051 102.117C258.605 102.117 258.205 102.037 257.85 101.877C257.494 101.713 257.189 101.486 256.936 101.197C256.686 100.904 256.494 100.562 256.361 100.172C256.229 99.7812 256.162 99.3574 256.162 98.9004ZM257.246 98.7656V98.9004C257.246 99.2168 257.283 99.5156 257.357 99.7969C257.432 100.074 257.543 100.32 257.691 100.535C257.844 100.75 258.033 100.92 258.26 101.045C258.486 101.166 258.75 101.227 259.051 101.227C259.348 101.227 259.607 101.166 259.83 101.045C260.057 100.92 260.244 100.75 260.393 100.535C260.541 100.32 260.652 100.074 260.727 99.7969C260.805 99.5156 260.844 99.2168 260.844 98.9004V98.7656C260.844 98.4531 260.805 98.1582 260.727 97.8809C260.652 97.5996 260.539 97.3516 260.387 97.1367C260.238 96.918 260.051 96.7461 259.824 96.6211C259.602 96.4961 259.34 96.4336 259.039 96.4336C258.742 96.4336 258.48 96.4961 258.254 96.6211C258.031 96.7461 257.844 96.918 257.691 97.1367C257.543 97.3516 257.432 97.5996 257.357 97.8809C257.283 98.1582 257.246 98.4531 257.246 98.7656ZM266.984 100.318C266.984 100.162 266.949 100.018 266.879 99.8848C266.812 99.748 266.674 99.625 266.463 99.5156C266.256 99.4023 265.943 99.3047 265.525 99.2227C265.174 99.1484 264.855 99.0605 264.57 98.959C264.289 98.8574 264.049 98.7344 263.85 98.5898C263.654 98.4453 263.504 98.2754 263.398 98.0801C263.293 97.8848 263.24 97.6562 263.24 97.3945C263.24 97.1445 263.295 96.9082 263.404 96.6855C263.518 96.4629 263.676 96.2656 263.879 96.0938C264.086 95.9219 264.334 95.7871 264.623 95.6895C264.912 95.5918 265.234 95.543 265.59 95.543C266.098 95.543 266.531 95.6328 266.891 95.8125C267.25 95.9922 267.525 96.2324 267.717 96.5332C267.908 96.8301 268.004 97.1602 268.004 97.5234H266.92C266.92 97.3477 266.867 97.1777 266.762 97.0137C266.66 96.8457 266.51 96.707 266.311 96.5977C266.115 96.4883 265.875 96.4336 265.59 96.4336C265.289 96.4336 265.045 96.4805 264.857 96.5742C264.674 96.6641 264.539 96.7793 264.453 96.9199C264.371 97.0605 264.33 97.209 264.33 97.3652C264.33 97.4824 264.35 97.5879 264.389 97.6816C264.432 97.7715 264.506 97.8555 264.611 97.9336C264.717 98.0078 264.865 98.0781 265.057 98.1445C265.248 98.2109 265.492 98.2773 265.789 98.3438C266.309 98.4609 266.736 98.6016 267.072 98.7656C267.408 98.9297 267.658 99.1309 267.822 99.3691C267.986 99.6074 268.068 99.8965 268.068 100.236C268.068 100.514 268.01 100.768 267.893 100.998C267.779 101.229 267.613 101.428 267.395 101.596C267.18 101.76 266.922 101.889 266.621 101.982C266.324 102.072 265.99 102.117 265.619 102.117C265.061 102.117 264.588 102.018 264.201 101.818C263.814 101.619 263.521 101.361 263.322 101.045C263.123 100.729 263.023 100.395 263.023 100.043H264.113C264.129 100.34 264.215 100.576 264.371 100.752C264.527 100.924 264.719 101.047 264.945 101.121C265.172 101.191 265.396 101.227 265.619 101.227C265.916 101.227 266.164 101.188 266.363 101.109C266.566 101.031 266.721 100.924 266.826 100.787C266.932 100.65 266.984 100.494 266.984 100.318ZM272.146 95.6602V96.4922H268.719V95.6602H272.146ZM269.879 94.1191H270.963V100.43C270.963 100.645 270.996 100.807 271.062 100.916C271.129 101.025 271.215 101.098 271.32 101.133C271.426 101.168 271.539 101.186 271.66 101.186C271.75 101.186 271.844 101.178 271.941 101.162C272.043 101.143 272.119 101.127 272.17 101.115L272.176 102C272.09 102.027 271.977 102.053 271.836 102.076C271.699 102.104 271.533 102.117 271.338 102.117C271.072 102.117 270.828 102.064 270.605 101.959C270.383 101.854 270.205 101.678 270.072 101.432C269.943 101.182 269.879 100.846 269.879 100.424V94.1191Z",fill:"#0F172A"}),(0,n.createElement)("rect",{x:"207",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"213",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"})),{__:l}=wp.i18n,{cloneElement:i,Children:a}=wp.element,{Placeholder:c,Flex:s,ExternalLink:d,Tooltip:u}=wp.components,{useBlockProps:m}=wp.blockEditor,{useSelect:p,useDispatch:f}=wp.data,{PatternInserterButton:h,ToggleControl:H}=JetFBComponents,v=(0,n.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",style:{color:"rgb(117, 117, 117)"}},(0,n.createElement)("path",{fill:"currentColor",d:"M12 4.75a7.25 7.25 0 100 14.5 7.25 7.25 0 000-14.5zM3.25 12a8.75 8.75 0 1117.5 0 8.75 8.75 0 01-17.5 0zM12 8.75a1.5 1.5 0 01.167 2.99c-.465.052-.917.44-.917 1.01V14h1.5v-.845A3 3 0 109 10.25h1.5a1.5 1.5 0 011.5-1.5zM11.25 15v1.5h1.5V15h-1.5z"})),V=JSON.parse('{"apiVersion":3,"name":"jet-forms/welcome","title":"Welcome","category":"jet-form-builder-elements","icon":"\\n\\n\\n\\n\\n\\n\\n\\n","keywords":["jetformbuilder","start","welcome"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"attributes":{}}');var w=t(673),M=t.n(w),b=t(598),g=t.n(b),E=t(262),Z=t.n(E),L=t(657),y=t.n(L),x=t(357),j=t.n(x),k=t(626),_=t.n(k),F=t(363),A={};A.styleTagTransform=_(),A.setAttributes=y(),A.insert=Z().bind(null,"head"),A.domAPI=g(),A.insertStyleElement=j(),M()(F.A,A),F.A&&F.A.locals&&F.A.locals;const{name:B,icon:S}=V,{__:D}=wp.i18n;V.attributes.isPreview={type:"boolean",default:!1};const P={icon:(0,n.createElement)("span",{dangerouslySetInnerHTML:{__html:S}}),description:D("Use the Welcome block to quickly fetch all pre-made Form Patterns, start building from scratch, generate via AI, save form records, etc.","jet-form-builder"),example:{attributes:{isPreview:!0}},edit:function({attributes:e}){const C=m(),t=p(e=>e("jet-forms/patterns").getTypes().map(({view:e,...C})=>(0,n.createElement)(e,{pattern:C})),[]),r=p(e=>e("jet-forms/patterns").getSetting("saveRecord")),{updateSettings:V}=f("jet-forms/patterns");return e.isPreview?(0,n.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},o):(console.log(t),(0,n.createElement)("div",{...C},(0,n.createElement)(c,{icon:"admin-tools",label:l("Select form pattern","jet-form-builder"),instructions:l("You can select one of predefined layout, or build custom","jet-form-builder")},(0,n.createElement)("ul",{className:"block-editor-block-variation-picker__variations jet-fb",role:"list","aria-label":l("Form patterns","jet-form-builder")},a.map(t,i)),(0,n.createElement)(s,{className:"block-editor-block-variation-picker__skip",justify:"space-between"},(0,n.createElement)(s,{justify:"flex-start",style:{width:"auto"}},(0,n.createElement)(h,{patternName:"default",variant:"secondary",style:{margin:"unset"}},l("Start from scratch","jet-form-builder")),(0,n.createElement)(d,{href:"https://jetformbuilder.com/features/creating-a-form/"},l("Learn more about creating forms","jet-form-builder"))),(0,n.createElement)("div",{className:"jfb-block-variation-picker-toggle"},(0,n.createElement)(H,{checked:r,onChange:e=>V({saveRecord:e}),flexLabelProps:{align:"center"}},(0,n.createElement)(s,null,l("Save form records","jet-form-builder"),(0,n.createElement)(u,{text:l('Adds "Save Form Record" action to store\n\tall form submissions into database',"jet-form-builder"),delay:200},v))))))))}},T=window.wp.data,R=window.wp.domReady;var I=t.n(R);const N=window.wp.element,O=window.wp.components,z=window.wp.primitives,U=(0,n.createElement)(z.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(z.Path,{d:"M19.5 4.5h-7V6h4.44l-5.97 5.97 1.06 1.06L18 7.06v4.44h1.5v-7Zm-13 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3H17v3a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h3V5.5h-3Z"})),q=window.wp.i18n,J=document.createElement("div");J.classList.add("jfb-preview-wrapper"),(0,N.createRoot)(J).render((0,n.createElement)(function(){const[e,C]=(0,N.useState)(!1),t=(0,T.useSelect)(e=>{const C=e("core/editor");return C.isSavingPost()||C.isAutosavingPost()},[]),{autosave:r}=(0,T.useDispatch)("core/editor"),o=(0,N.useRef)(!1);return(0,N.useEffect)(()=>{e&&(!o.current&&t&&(o.current=!0),o.current&&!t&&(e.location.reload(),o.current=!1))},[t]),(0,n.createElement)(O.Button,{icon:U,onClick:()=>{!e||e?.closed?r().then(()=>{C(window.open(window.JFBOnboardingConfig.previewURL))}):r().finally(()=>{e.focus()})},label:(0,q.__)("Preview the form","jet-form-builder")})},null));I()(()=>{const e=(0,T.subscribe)(()=>function(e){const C=document.querySelector(".edit-post-header__settings, .editor-header__settings");if(!C)return null;e(),C.insertBefore(J,C.querySelector(".editor-post-publish-button__button"))}(e))});const G=window.wp.plugins,W=window.wp.editor,Y=(0,n.createElement)(z.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(z.Path,{d:"M6.6 6L5.4 7l4.5 5-4.5 5 1.1 1 5.5-6-5.4-6zm6 0l-1.1 1 4.5 5-4.5 5 1.1 1 5.5-6-5.5-6z"})),K=window.jfb.useForm,{useMetaState:Q}=JetFBHooks;var X=t(695),$={};$.styleTagTransform=_(),$.setAttributes=y(),$.insert=Z().bind(null,"head"),$.domAPI=g(),$.insertStyleElement=j(),M()(X.A,$),X.A&&X.A.locals&&X.A.locals,(0,G.registerPlugin)("jfb-use-form",{render:function(){const{closeGeneralSidebar:e}=(0,T.useDispatch)("core/edit-post"),C=(0,T.useSelect)(e=>e(W.store).getEditedPostAttribute("id"),[]),[t]=Q("_jf_args");return(0,n.createElement)(W.PluginSidebar,{icon:Y,name:"sidebar",title:(0,q.__)("Use the form","jet-form-builder")},(0,n.createElement)(K.ResponsiveModal,{title:(0,q.__)("Use the form","jet-form-builder"),onRequestClose:e},(0,n.createElement)(K.FormAttributesContext.Provider,{value:{formId:C,args:t,shouldUpdateForm:!0}},(0,n.createElement)(K.UseFormRoot,null))))}}),(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/welcome-block",function(e){return e.push(r),e})})(); \ No newline at end of file +(()=>{"use strict";var e={168:e=>{e.exports=function(e){return e[1]}},262:e=>{var C={};e.exports=function(e,t){var r=function(e){if(void 0===C[e]){var t=document.querySelector(e);if(window.HTMLIFrameElement&&t instanceof window.HTMLIFrameElement)try{t=t.contentDocument.head}catch(e){t=null}C[e]=t}return C[e]}(e);if(!r)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");r.appendChild(t)}},357:e=>{e.exports=function(e){var C=document.createElement("style");return e.setAttributes(C,e.attributes),e.insert(C,e.options),C}},363:(e,C,t)=>{t.d(C,{A:()=>i});var r=t(168),n=t.n(r),o=t(433),l=t.n(o)()(n());l.push([e.id,'.wp-block-jet-forms-welcome li.is-pro{position:relative;opacity:0.5}.wp-block-jet-forms-welcome li.is-pro .block-editor-block-variation-picker__variation::after{content:"PRO";position:absolute;top:0.4em;right:0.4em;background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));padding:0 0.2em;border-radius:0.5em;color:var(--wp-components-color-accent-inverted,#fff);border:1px solid var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));font-size:0.9em}.wp-block-jet-forms-welcome .block-editor-block-variation-picker__variations{gap:0.4em}.wp-block-jet-forms-welcome .block-editor-block-variation-picker__variations>li{width:-moz-min-content;width:min-content;margin:0.6em 0}.wp-block-jet-forms-welcome .block-editor-block-variation-picker__variations>li .components-button{padding:1.5em}',""]);const i=l},433:e=>{e.exports=function(e){var C=[];return C.toString=function(){return this.map((function(C){var t="",r=void 0!==C[5];return C[4]&&(t+="@supports (".concat(C[4],") {")),C[2]&&(t+="@media ".concat(C[2]," {")),r&&(t+="@layer".concat(C[5].length>0?" ".concat(C[5]):""," {")),t+=e(C),r&&(t+="}"),C[2]&&(t+="}"),C[4]&&(t+="}"),t})).join("")},C.i=function(e,t,r,n,o){"string"==typeof e&&(e=[[null,e,void 0]]);var l={};if(r)for(var i=0;i0?" ".concat(s[5]):""," {").concat(s[1],"}")),s[5]=o),t&&(s[2]?(s[1]="@media ".concat(s[2]," {").concat(s[1],"}"),s[2]=t):s[2]=t),n&&(s[4]?(s[1]="@supports (".concat(s[4],") {").concat(s[1],"}"),s[4]=n):s[4]="".concat(n)),C.push(s))}},C}},598:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var C=e.insertStyleElement(e);return{update:function(t){!function(e,C,t){var r="";t.supports&&(r+="@supports (".concat(t.supports,") {")),t.media&&(r+="@media ".concat(t.media," {"));var n=void 0!==t.layer;n&&(r+="@layer".concat(t.layer.length>0?" ".concat(t.layer):""," {")),r+=t.css,n&&(r+="}"),t.media&&(r+="}"),t.supports&&(r+="}");var o=t.sourceMap;o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),C.styleTagTransform(r,e,C.options)}(C,e,t)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(C)}}}},626:e=>{e.exports=function(e,C){if(C.styleSheet)C.styleSheet.cssText=e;else{for(;C.firstChild;)C.removeChild(C.firstChild);C.appendChild(document.createTextNode(e))}}},657:(e,C,t)=>{e.exports=function(e){var C=t.nc;C&&e.setAttribute("nonce",C)}},673:e=>{var C=[];function t(e){for(var t=-1,r=0;r{t.d(C,{A:()=>i});var r=t(168),n=t.n(r),o=t(433),l=t.n(o)()(n());l.push([e.id,'div[id="jfb-use-form:sidebar"]{display:none}button[aria-controls="jfb-use-form:sidebar"]>svg{transform:rotateY(180deg)}',""]);const i=l}},C={};function t(r){var n=C[r];if(void 0!==n)return n.exports;var o=C[r]={id:r,exports:{}};return e[r](o,o.exports,t),o.exports}t.n=e=>{var C=e&&e.__esModule?()=>e.default:()=>e;return t.d(C,{a:C}),C},t.d=(e,C)=>{for(var r in C)t.o(C,r)&&!t.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:C[r]})},t.o=(e,C)=>Object.prototype.hasOwnProperty.call(e,C),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.nc=void 0;var r={};t.r(r),t.d(r,{metadata:()=>V,name:()=>B,settings:()=>P});const n=window.React,o=(0,n.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,n.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,n.createElement)("rect",{x:"12",y:"12",width:"86",height:"120",rx:"4",fill:"white"}),(0,n.createElement)("rect",{x:"25",y:"25",width:"60",height:"60",rx:"4",fill:"#F1F5F9"}),(0,n.createElement)("path",{d:"M47.8 41C47.3582 41 47 41.4477 47 42C47 42.5523 47.3582 43 47.8 43H62.2C62.6418 43 63 42.5523 63 42C63 41.4477 62.6418 41 62.2 41H47.8Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M43 50C43 48.3431 44.3431 47 46 47H64C65.6569 47 67 48.3431 67 50C67 51.6569 65.6569 53 64 53H46C44.3431 53 43 51.6569 43 50ZM46 49C45.4477 49 45 49.4477 45 50C45 50.5523 45.4477 51 46 51H64C64.5523 51 65 50.5523 65 50C65 49.4477 64.5523 49 64 49H46Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M46 55C44.3431 55 43 56.3431 43 58C43 59.6569 44.3431 61 46 61H64C65.6569 61 67 59.6569 67 58C67 56.3431 65.6569 55 64 55H46ZM45 58C45 57.4477 45.4477 57 46 57H64C64.5523 57 65 57.4477 65 58C65 58.5523 64.5523 59 64 59H46C45.4477 59 45 58.5523 45 58Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M49 66C49 64.3431 50.3431 63 52 63H58C59.6569 63 61 64.3431 61 66C61 67.6569 59.6569 69 58 69H52C50.3431 69 49 67.6569 49 66ZM52 65C51.4477 65 51 65.4477 51 66C51 66.5523 51.4477 67 52 67H58C58.5523 67 59 66.5523 59 66C59 65.4477 58.5523 65 58 65H52Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M39 39C39 36.7909 40.7909 35 43 35H67C69.2091 35 71 36.7909 71 39V71C71 73.2091 69.2091 75 67 75H43C40.7909 75 39 73.2091 39 71V39ZM43 37H67C68.1046 37 69 37.8954 69 39V71C69 72.1046 68.1046 73 67 73H43C41.8954 73 41 72.1046 41 71V39C41 37.8954 41.8954 37 43 37Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M25.207 99.2871H26.332C26.2734 99.8262 26.1191 100.309 25.8691 100.734C25.6191 101.16 25.2656 101.498 24.8086 101.748C24.3516 101.994 23.7812 102.117 23.0977 102.117C22.5977 102.117 22.1426 102.023 21.7324 101.836C21.3262 101.648 20.9766 101.383 20.6836 101.039C20.3906 100.691 20.1641 100.275 20.0039 99.791C19.8477 99.3027 19.7695 98.7598 19.7695 98.1621V97.3125C19.7695 96.7148 19.8477 96.1738 20.0039 95.6895C20.1641 95.2012 20.3926 94.7832 20.6895 94.4355C20.9902 94.0879 21.3516 93.8203 21.7734 93.6328C22.1953 93.4453 22.6699 93.3516 23.1973 93.3516C23.8418 93.3516 24.3867 93.4727 24.832 93.7148C25.2773 93.957 25.623 94.293 25.8691 94.7227C26.1191 95.1484 26.2734 95.6426 26.332 96.2051H25.207C25.1523 95.8066 25.0508 95.4648 24.9023 95.1797C24.7539 94.8906 24.543 94.668 24.2695 94.5117C23.9961 94.3555 23.6387 94.2773 23.1973 94.2773C22.8184 94.2773 22.4844 94.3496 22.1953 94.4941C21.9102 94.6387 21.6699 94.8438 21.4746 95.1094C21.2832 95.375 21.1387 95.6934 21.041 96.0645C20.9434 96.4355 20.8945 96.8477 20.8945 97.3008V98.1621C20.8945 98.5801 20.9375 98.9727 21.0234 99.3398C21.1133 99.707 21.248 100.029 21.4277 100.307C21.6074 100.584 21.8359 100.803 22.1133 100.963C22.3906 101.119 22.7188 101.197 23.0977 101.197C23.5781 101.197 23.9609 101.121 24.2461 100.969C24.5312 100.816 24.7461 100.598 24.8906 100.312C25.0391 100.027 25.1445 99.6855 25.207 99.2871ZM27.4219 98.9004V98.7656C27.4219 98.3086 27.4883 97.8848 27.6211 97.4941C27.7539 97.0996 27.9453 96.7578 28.1953 96.4688C28.4453 96.1758 28.748 95.9492 29.1035 95.7891C29.459 95.625 29.8574 95.543 30.2988 95.543C30.7441 95.543 31.1445 95.625 31.5 95.7891C31.8594 95.9492 32.1641 96.1758 32.4141 96.4688C32.668 96.7578 32.8613 97.0996 32.9941 97.4941C33.127 97.8848 33.1934 98.3086 33.1934 98.7656V98.9004C33.1934 99.3574 33.127 99.7812 32.9941 100.172C32.8613 100.562 32.668 100.904 32.4141 101.197C32.1641 101.486 31.8613 101.713 31.5059 101.877C31.1543 102.037 30.7559 102.117 30.3105 102.117C29.8652 102.117 29.4648 102.037 29.1094 101.877C28.7539 101.713 28.4492 101.486 28.1953 101.197C27.9453 100.904 27.7539 100.562 27.6211 100.172C27.4883 99.7812 27.4219 99.3574 27.4219 98.9004ZM28.5059 98.7656V98.9004C28.5059 99.2168 28.543 99.5156 28.6172 99.7969C28.6914 100.074 28.8027 100.32 28.9512 100.535C29.1035 100.75 29.293 100.92 29.5195 101.045C29.7461 101.166 30.0098 101.227 30.3105 101.227C30.6074 101.227 30.8672 101.166 31.0898 101.045C31.3164 100.92 31.5039 100.75 31.6523 100.535C31.8008 100.32 31.9121 100.074 31.9863 99.7969C32.0645 99.5156 32.1035 99.2168 32.1035 98.9004V98.7656C32.1035 98.4531 32.0645 98.1582 31.9863 97.8809C31.9121 97.5996 31.7988 97.3516 31.6465 97.1367C31.498 96.918 31.3105 96.7461 31.084 96.6211C30.8613 96.4961 30.5996 96.4336 30.2988 96.4336C30.002 96.4336 29.7402 96.4961 29.5137 96.6211C29.291 96.7461 29.1035 96.918 28.9512 97.1367C28.8027 97.3516 28.6914 97.5996 28.6172 97.8809C28.543 98.1582 28.5059 98.4531 28.5059 98.7656ZM35.6367 97.0137V102H34.5527V95.6602H35.5781L35.6367 97.0137ZM35.3789 98.5898L34.9277 98.5723C34.9316 98.1387 34.9961 97.7383 35.1211 97.3711C35.2461 97 35.4219 96.6777 35.6484 96.4043C35.875 96.1309 36.1445 95.9199 36.457 95.7715C36.7734 95.6191 37.123 95.543 37.5059 95.543C37.8184 95.543 38.0996 95.5859 38.3496 95.6719C38.5996 95.7539 38.8125 95.8867 38.9883 96.0703C39.168 96.2539 39.3047 96.4922 39.3984 96.7852C39.4922 97.0742 39.5391 97.4277 39.5391 97.8457V102H38.4492V97.834C38.4492 97.502 38.4004 97.2363 38.3027 97.0371C38.2051 96.834 38.0625 96.6875 37.875 96.5977C37.6875 96.5039 37.457 96.457 37.1836 96.457C36.9141 96.457 36.668 96.5137 36.4453 96.627C36.2266 96.7402 36.0371 96.8965 35.877 97.0957C35.7207 97.2949 35.5977 97.5234 35.5078 97.7812C35.4219 98.0352 35.3789 98.3047 35.3789 98.5898ZM43.8398 95.6602V96.4922H40.4121V95.6602H43.8398ZM41.5723 94.1191H42.6562V100.43C42.6562 100.645 42.6895 100.807 42.7559 100.916C42.8223 101.025 42.9082 101.098 43.0137 101.133C43.1191 101.168 43.2324 101.186 43.3535 101.186C43.4434 101.186 43.5371 101.178 43.6348 101.162C43.7363 101.143 43.8125 101.127 43.8633 101.115L43.8691 102C43.7832 102.027 43.6699 102.053 43.5293 102.076C43.3926 102.104 43.2266 102.117 43.0312 102.117C42.7656 102.117 42.5215 102.064 42.2988 101.959C42.0762 101.854 41.8984 101.678 41.7656 101.432C41.6367 101.182 41.5723 100.846 41.5723 100.424V94.1191ZM48.8496 100.916V97.6523C48.8496 97.4023 48.7988 97.1855 48.6973 97.002C48.5996 96.8145 48.4512 96.6699 48.252 96.5684C48.0527 96.4668 47.8066 96.416 47.5137 96.416C47.2402 96.416 47 96.4629 46.793 96.5566C46.5898 96.6504 46.4297 96.7734 46.3125 96.9258C46.1992 97.0781 46.1426 97.2422 46.1426 97.418H45.0586C45.0586 97.1914 45.1172 96.9668 45.2344 96.7441C45.3516 96.5215 45.5195 96.3203 45.7383 96.1406C45.9609 95.957 46.2266 95.8125 46.5352 95.707C46.8477 95.5977 47.1953 95.543 47.5781 95.543C48.0391 95.543 48.4453 95.6211 48.7969 95.7773C49.1523 95.9336 49.4297 96.1699 49.6289 96.4863C49.832 96.7988 49.9336 97.1914 49.9336 97.6641V100.617C49.9336 100.828 49.9512 101.053 49.9863 101.291C50.0254 101.529 50.082 101.734 50.1562 101.906V102H49.0254C48.9707 101.875 48.9277 101.709 48.8965 101.502C48.8652 101.291 48.8496 101.096 48.8496 100.916ZM49.0371 98.1562L49.0488 98.918H47.9531C47.6445 98.918 47.3691 98.9434 47.127 98.9941C46.8848 99.041 46.6816 99.1133 46.5176 99.2109C46.3535 99.3086 46.2285 99.4316 46.1426 99.5801C46.0566 99.7246 46.0137 99.8945 46.0137 100.09C46.0137 100.289 46.0586 100.471 46.1484 100.635C46.2383 100.799 46.373 100.93 46.5527 101.027C46.7363 101.121 46.9609 101.168 47.2266 101.168C47.5586 101.168 47.8516 101.098 48.1055 100.957C48.3594 100.816 48.5605 100.645 48.709 100.441C48.8613 100.238 48.9434 100.041 48.9551 99.8496L49.418 100.371C49.3906 100.535 49.3164 100.717 49.1953 100.916C49.0742 101.115 48.9121 101.307 48.709 101.49C48.5098 101.67 48.2715 101.82 47.9941 101.941C47.7207 102.059 47.4121 102.117 47.0684 102.117C46.6387 102.117 46.2617 102.033 45.9375 101.865C45.6172 101.697 45.3672 101.473 45.1875 101.191C45.0117 100.906 44.9238 100.588 44.9238 100.236C44.9238 99.8965 44.9902 99.5977 45.123 99.3398C45.2559 99.0781 45.4473 98.8613 45.6973 98.6895C45.9473 98.5137 46.248 98.3809 46.5996 98.291C46.9512 98.2012 47.3438 98.1562 47.7773 98.1562H49.0371ZM54.1758 101.227C54.4336 101.227 54.6719 101.174 54.8906 101.068C55.1094 100.963 55.2891 100.818 55.4297 100.635C55.5703 100.447 55.6504 100.234 55.6699 99.9961H56.7012C56.6816 100.371 56.5547 100.721 56.3203 101.045C56.0898 101.365 55.7871 101.625 55.4121 101.824C55.0371 102.02 54.625 102.117 54.1758 102.117C53.6992 102.117 53.2832 102.033 52.9277 101.865C52.5762 101.697 52.2832 101.467 52.0488 101.174C51.8184 100.881 51.6445 100.545 51.5273 100.166C51.4141 99.7832 51.3574 99.3789 51.3574 98.9531V98.707C51.3574 98.2812 51.4141 97.8789 51.5273 97.5C51.6445 97.1172 51.8184 96.7793 52.0488 96.4863C52.2832 96.1934 52.5762 95.9629 52.9277 95.7949C53.2832 95.627 53.6992 95.543 54.1758 95.543C54.6719 95.543 55.1055 95.6445 55.4766 95.8477C55.8477 96.0469 56.1387 96.3203 56.3496 96.668C56.5645 97.0117 56.6816 97.4023 56.7012 97.8398H55.6699C55.6504 97.5781 55.5762 97.3418 55.4473 97.1309C55.3223 96.9199 55.1504 96.752 54.9316 96.627C54.7168 96.498 54.4648 96.4336 54.1758 96.4336C53.8438 96.4336 53.5645 96.5 53.3379 96.6328C53.1152 96.7617 52.9375 96.9375 52.8047 97.1602C52.6758 97.3789 52.582 97.623 52.5234 97.8926C52.4688 98.1582 52.4414 98.4297 52.4414 98.707V98.9531C52.4414 99.2305 52.4688 99.5039 52.5234 99.7734C52.5781 100.043 52.6699 100.287 52.7988 100.506C52.9316 100.725 53.1094 100.9 53.332 101.033C53.5586 101.162 53.8398 101.227 54.1758 101.227ZM60.5742 95.6602V96.4922H57.1465V95.6602H60.5742ZM58.3066 94.1191H59.3906V100.43C59.3906 100.645 59.4238 100.807 59.4902 100.916C59.5566 101.025 59.6426 101.098 59.748 101.133C59.8535 101.168 59.9668 101.186 60.0879 101.186C60.1777 101.186 60.2715 101.178 60.3691 101.162C60.4707 101.143 60.5469 101.127 60.5977 101.115L60.6035 102C60.5176 102.027 60.4043 102.053 60.2637 102.076C60.127 102.104 59.9609 102.117 59.7656 102.117C59.5 102.117 59.2559 102.064 59.0332 101.959C58.8105 101.854 58.6328 101.678 58.5 101.432C58.3711 101.182 58.3066 100.846 58.3066 100.424V94.1191ZM66.1172 93.4688V102H64.9863V93.4688H66.1172ZM69.6914 97.3066V98.2324H65.8711V97.3066H69.6914ZM70.2715 93.4688V94.3945H65.8711V93.4688H70.2715ZM71.0391 98.9004V98.7656C71.0391 98.3086 71.1055 97.8848 71.2383 97.4941C71.3711 97.0996 71.5625 96.7578 71.8125 96.4688C72.0625 96.1758 72.3652 95.9492 72.7207 95.7891C73.0762 95.625 73.4746 95.543 73.916 95.543C74.3613 95.543 74.7617 95.625 75.1172 95.7891C75.4766 95.9492 75.7812 96.1758 76.0312 96.4688C76.2852 96.7578 76.4785 97.0996 76.6113 97.4941C76.7441 97.8848 76.8105 98.3086 76.8105 98.7656V98.9004C76.8105 99.3574 76.7441 99.7812 76.6113 100.172C76.4785 100.562 76.2852 100.904 76.0312 101.197C75.7812 101.486 75.4785 101.713 75.123 101.877C74.7715 102.037 74.373 102.117 73.9277 102.117C73.4824 102.117 73.082 102.037 72.7266 101.877C72.3711 101.713 72.0664 101.486 71.8125 101.197C71.5625 100.904 71.3711 100.562 71.2383 100.172C71.1055 99.7812 71.0391 99.3574 71.0391 98.9004ZM72.123 98.7656V98.9004C72.123 99.2168 72.1602 99.5156 72.2344 99.7969C72.3086 100.074 72.4199 100.32 72.5684 100.535C72.7207 100.75 72.9102 100.92 73.1367 101.045C73.3633 101.166 73.627 101.227 73.9277 101.227C74.2246 101.227 74.4844 101.166 74.707 101.045C74.9336 100.92 75.1211 100.75 75.2695 100.535C75.418 100.32 75.5293 100.074 75.6035 99.7969C75.6816 99.5156 75.7207 99.2168 75.7207 98.9004V98.7656C75.7207 98.4531 75.6816 98.1582 75.6035 97.8809C75.5293 97.5996 75.416 97.3516 75.2637 97.1367C75.1152 96.918 74.9277 96.7461 74.7012 96.6211C74.4785 96.4961 74.2168 96.4336 73.916 96.4336C73.6191 96.4336 73.3574 96.4961 73.1309 96.6211C72.9082 96.7461 72.7207 96.918 72.5684 97.1367C72.4199 97.3516 72.3086 97.5996 72.2344 97.8809C72.1602 98.1582 72.123 98.4531 72.123 98.7656ZM79.2539 96.6562V102H78.1699V95.6602H79.2246L79.2539 96.6562ZM81.2344 95.625L81.2285 96.6328C81.1387 96.6133 81.0527 96.6016 80.9707 96.5977C80.8926 96.5898 80.8027 96.5859 80.7012 96.5859C80.4512 96.5859 80.2305 96.625 80.0391 96.7031C79.8477 96.7812 79.6855 96.8906 79.5527 97.0312C79.4199 97.1719 79.3145 97.3398 79.2363 97.5352C79.1621 97.7266 79.1133 97.9375 79.0898 98.168L78.7852 98.3438C78.7852 97.9609 78.8223 97.6016 78.8965 97.2656C78.9746 96.9297 79.0938 96.6328 79.2539 96.375C79.4141 96.1133 79.6172 95.9102 79.8633 95.7656C80.1133 95.6172 80.4102 95.543 80.7539 95.543C80.832 95.543 80.9219 95.5527 81.0234 95.5723C81.125 95.5879 81.1953 95.6055 81.2344 95.625ZM83.3145 96.9199V102H82.2246V95.6602H83.2559L83.3145 96.9199ZM83.0918 98.5898L82.5879 98.5723C82.5918 98.1387 82.6484 97.7383 82.7578 97.3711C82.8672 97 83.0293 96.6777 83.2441 96.4043C83.459 96.1309 83.7266 95.9199 84.0469 95.7715C84.3672 95.6191 84.7383 95.543 85.1602 95.543C85.457 95.543 85.7305 95.5859 85.9805 95.6719C86.2305 95.7539 86.4473 95.8848 86.6309 96.0645C86.8145 96.2441 86.957 96.4746 87.0586 96.7559C87.1602 97.0371 87.2109 97.377 87.2109 97.7754V102H86.127V97.8281C86.127 97.4961 86.0703 97.2305 85.957 97.0312C85.8477 96.832 85.6914 96.6875 85.4883 96.5977C85.2852 96.5039 85.0469 96.457 84.7734 96.457C84.4531 96.457 84.1855 96.5137 83.9707 96.627C83.7559 96.7402 83.584 96.8965 83.4551 97.0957C83.3262 97.2949 83.2324 97.5234 83.1738 97.7812C83.1191 98.0352 83.0918 98.3047 83.0918 98.5898ZM87.1992 97.9922L86.4727 98.2148C86.4766 97.8672 86.5332 97.5332 86.6426 97.2129C86.7559 96.8926 86.918 96.6074 87.1289 96.3574C87.3438 96.1074 87.6074 95.9102 87.9199 95.7656C88.2324 95.6172 88.5898 95.543 88.9922 95.543C89.332 95.543 89.6328 95.5879 89.8945 95.6777C90.1602 95.7676 90.3828 95.9062 90.5625 96.0938C90.7461 96.2773 90.8848 96.5137 90.9785 96.8027C91.0723 97.0918 91.1191 97.4355 91.1191 97.834V102H90.0293V97.8223C90.0293 97.4668 89.9727 97.1914 89.8594 96.9961C89.75 96.7969 89.5938 96.6582 89.3906 96.5801C89.1914 96.498 88.9531 96.457 88.6758 96.457C88.4375 96.457 88.2266 96.498 88.043 96.5801C87.8594 96.6621 87.7051 96.7754 87.5801 96.9199C87.4551 97.0605 87.3594 97.2227 87.293 97.4062C87.2305 97.5898 87.1992 97.7852 87.1992 97.9922Z",fill:"#0F172A"}),(0,n.createElement)("rect",{x:"19",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"25",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"107",y:"13",width:"84",height:"118",rx:"3",fill:"white",stroke:"#4272F9",strokeWidth:"2"}),(0,n.createElement)("rect",{x:"119",y:"25",width:"60",height:"60",rx:"4",fill:"#F1F5F9"}),(0,n.createElement)("path",{d:"M136 46.0444C135.448 46.0444 135 46.4954 135 47.0517C135 47.6081 135.448 48.0591 136 48.0591H156C156.552 48.0591 157 47.6081 157 47.0517C157 46.4954 156.552 46.0444 156 46.0444H136Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M135 51.0813C135 50.5249 135.448 50.0739 136 50.0739H156C156.552 50.0739 157 50.5249 157 51.0813C157 51.6377 156.552 52.0887 156 52.0887H136C135.448 52.0887 135 51.6377 135 51.0813Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M136 54.1035C135.448 54.1035 135 54.5545 135 55.1109C135 55.6672 135.448 56.1183 136 56.1183H151C151.552 56.1183 152 55.6672 152 55.1109C152 54.5545 151.552 54.1035 151 54.1035H136Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M131 44.0296C131 41.8041 132.791 40 135 40H157C159.209 40 161 41.8041 161 44.0296V55.1109H163C165.209 55.1109 167 56.915 167 59.1404V65.1848C167 67.4103 165.209 69.2144 163 69.2144H162.286L159.866 71.839C159.669 72.0537 159.331 72.0537 159.134 71.839L156.714 69.2144H151C148.791 69.2144 147 67.4103 147 65.1848V62.1626H144.214L140.866 65.7947C140.669 66.0093 140.331 66.0093 140.134 65.7947L136.786 62.1626H135C132.791 62.1626 131 60.3585 131 58.1331V44.0296ZM137.658 60.1478L140.5 63.2312L143.342 60.1478H157C158.105 60.1478 159 59.2458 159 58.1331V44.0296C159 42.9168 158.105 42.0148 157 42.0148H135C133.895 42.0148 133 42.9168 133 44.0296V58.1331C133 59.2458 133.895 60.1478 135 60.1478H137.658ZM149 62.1626V65.1848C149 66.2975 149.895 67.1996 151 67.1996H157.586L159.5 69.2756L161.414 67.1996H163C164.105 67.1996 165 66.2975 165 65.1848V59.1404C165 58.0277 164.105 57.1257 163 57.1257H161V58.1331C161 60.3585 159.209 62.1626 157 62.1626H149Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M125.436 93.4688V102H124.305V93.4688H125.436ZM129.01 97.3066V98.2324H125.189V97.3066H129.01ZM129.59 93.4688V94.3945H125.189V93.4688H129.59ZM133.275 102.117C132.834 102.117 132.434 102.043 132.074 101.895C131.719 101.742 131.412 101.529 131.154 101.256C130.9 100.982 130.705 100.658 130.568 100.283C130.432 99.9082 130.363 99.498 130.363 99.0527V98.8066C130.363 98.291 130.439 97.832 130.592 97.4297C130.744 97.0234 130.951 96.6797 131.213 96.3984C131.475 96.1172 131.771 95.9043 132.104 95.7598C132.436 95.6152 132.779 95.543 133.135 95.543C133.588 95.543 133.979 95.6211 134.307 95.7773C134.639 95.9336 134.91 96.1523 135.121 96.4336C135.332 96.7109 135.488 97.0391 135.59 97.418C135.691 97.793 135.742 98.2031 135.742 98.6484V99.1348H131.008V98.25H134.658V98.168C134.643 97.8867 134.584 97.6133 134.482 97.3477C134.385 97.082 134.229 96.8633 134.014 96.6914C133.799 96.5195 133.506 96.4336 133.135 96.4336C132.889 96.4336 132.662 96.4863 132.455 96.5918C132.248 96.6934 132.07 96.8457 131.922 97.0488C131.773 97.252 131.658 97.5 131.576 97.793C131.494 98.0859 131.453 98.4238 131.453 98.8066V99.0527C131.453 99.3535 131.494 99.6367 131.576 99.9023C131.662 100.164 131.785 100.395 131.945 100.594C132.109 100.793 132.307 100.949 132.537 101.062C132.771 101.176 133.037 101.232 133.334 101.232C133.717 101.232 134.041 101.154 134.307 100.998C134.572 100.842 134.805 100.633 135.004 100.371L135.66 100.893C135.523 101.1 135.35 101.297 135.139 101.484C134.928 101.672 134.668 101.824 134.359 101.941C134.055 102.059 133.693 102.117 133.275 102.117ZM139.639 102.117C139.197 102.117 138.797 102.043 138.438 101.895C138.082 101.742 137.775 101.529 137.518 101.256C137.264 100.982 137.068 100.658 136.932 100.283C136.795 99.9082 136.727 99.498 136.727 99.0527V98.8066C136.727 98.291 136.803 97.832 136.955 97.4297C137.107 97.0234 137.314 96.6797 137.576 96.3984C137.838 96.1172 138.135 95.9043 138.467 95.7598C138.799 95.6152 139.143 95.543 139.498 95.543C139.951 95.543 140.342 95.6211 140.67 95.7773C141.002 95.9336 141.273 96.1523 141.484 96.4336C141.695 96.7109 141.852 97.0391 141.953 97.418C142.055 97.793 142.105 98.2031 142.105 98.6484V99.1348H137.371V98.25H141.021V98.168C141.006 97.8867 140.947 97.6133 140.846 97.3477C140.748 97.082 140.592 96.8633 140.377 96.6914C140.162 96.5195 139.869 96.4336 139.498 96.4336C139.252 96.4336 139.025 96.4863 138.818 96.5918C138.611 96.6934 138.434 96.8457 138.285 97.0488C138.137 97.252 138.021 97.5 137.939 97.793C137.857 98.0859 137.816 98.4238 137.816 98.8066V99.0527C137.816 99.3535 137.857 99.6367 137.939 99.9023C138.025 100.164 138.148 100.395 138.309 100.594C138.473 100.793 138.67 100.949 138.9 101.062C139.135 101.176 139.4 101.232 139.697 101.232C140.08 101.232 140.404 101.154 140.67 100.998C140.936 100.842 141.168 100.633 141.367 100.371L142.023 100.893C141.887 101.1 141.713 101.297 141.502 101.484C141.291 101.672 141.031 101.824 140.723 101.941C140.418 102.059 140.057 102.117 139.639 102.117ZM147.367 100.77V93H148.457V102H147.461L147.367 100.77ZM143.102 98.9004V98.7773C143.102 98.293 143.16 97.8535 143.277 97.459C143.398 97.0605 143.568 96.7188 143.787 96.4336C144.01 96.1484 144.273 95.9297 144.578 95.7773C144.887 95.6211 145.23 95.543 145.609 95.543C146.008 95.543 146.355 95.6133 146.652 95.7539C146.953 95.8906 147.207 96.0918 147.414 96.3574C147.625 96.6191 147.791 96.9355 147.912 97.3066C148.033 97.6777 148.117 98.0977 148.164 98.5664V99.1055C148.121 99.5703 148.037 99.9883 147.912 100.359C147.791 100.73 147.625 101.047 147.414 101.309C147.207 101.57 146.953 101.771 146.652 101.912C146.352 102.049 146 102.117 145.598 102.117C145.227 102.117 144.887 102.037 144.578 101.877C144.273 101.717 144.01 101.492 143.787 101.203C143.568 100.914 143.398 100.574 143.277 100.184C143.16 99.7891 143.102 99.3613 143.102 98.9004ZM144.191 98.7773V98.9004C144.191 99.2168 144.223 99.5137 144.285 99.791C144.352 100.068 144.453 100.312 144.59 100.523C144.727 100.734 144.9 100.9 145.111 101.021C145.322 101.139 145.574 101.197 145.867 101.197C146.227 101.197 146.521 101.121 146.752 100.969C146.986 100.816 147.174 100.615 147.314 100.365C147.455 100.115 147.564 99.8438 147.643 99.5508V98.1387C147.596 97.9238 147.527 97.7168 147.438 97.5176C147.352 97.3145 147.238 97.1348 147.098 96.9785C146.961 96.8184 146.791 96.6914 146.588 96.5977C146.389 96.5039 146.152 96.457 145.879 96.457C145.582 96.457 145.326 96.5195 145.111 96.6445C144.9 96.7656 144.727 96.9336 144.59 97.1484C144.453 97.3594 144.352 97.6055 144.285 97.8867C144.223 98.1641 144.191 98.4609 144.191 98.7773ZM153.35 98.0098H151.188L151.176 97.1016H153.139C153.463 97.1016 153.746 97.0469 153.988 96.9375C154.23 96.8281 154.418 96.6719 154.551 96.4688C154.688 96.2617 154.756 96.0156 154.756 95.7305C154.756 95.418 154.695 95.1641 154.574 94.9688C154.457 94.7695 154.275 94.625 154.029 94.5352C153.787 94.4414 153.479 94.3945 153.104 94.3945H151.439V102H150.309V93.4688H153.104C153.541 93.4688 153.932 93.5137 154.275 93.6035C154.619 93.6895 154.91 93.8262 155.148 94.0137C155.391 94.1973 155.574 94.4316 155.699 94.7168C155.824 95.002 155.887 95.3438 155.887 95.7422C155.887 96.0938 155.797 96.4121 155.617 96.6973C155.438 96.9785 155.188 97.209 154.867 97.3887C154.551 97.5684 154.18 97.6836 153.754 97.7344L153.35 98.0098ZM153.297 102H150.742L151.381 101.08H153.297C153.656 101.08 153.961 101.018 154.211 100.893C154.465 100.768 154.658 100.592 154.791 100.365C154.924 100.135 154.99 99.8633 154.99 99.5508C154.99 99.2344 154.934 98.9609 154.82 98.7305C154.707 98.5 154.529 98.3223 154.287 98.1973C154.045 98.0723 153.732 98.0098 153.35 98.0098H151.738L151.75 97.1016H153.953L154.193 97.4297C154.604 97.4648 154.951 97.582 155.236 97.7812C155.521 97.9766 155.738 98.2266 155.887 98.5312C156.039 98.8359 156.115 99.1719 156.115 99.5391C156.115 100.07 155.998 100.52 155.764 100.887C155.533 101.25 155.207 101.527 154.785 101.719C154.363 101.906 153.867 102 153.297 102ZM161.359 100.916V97.6523C161.359 97.4023 161.309 97.1855 161.207 97.002C161.109 96.8145 160.961 96.6699 160.762 96.5684C160.562 96.4668 160.316 96.416 160.023 96.416C159.75 96.416 159.51 96.4629 159.303 96.5566C159.1 96.6504 158.939 96.7734 158.822 96.9258C158.709 97.0781 158.652 97.2422 158.652 97.418H157.568C157.568 97.1914 157.627 96.9668 157.744 96.7441C157.861 96.5215 158.029 96.3203 158.248 96.1406C158.471 95.957 158.736 95.8125 159.045 95.707C159.357 95.5977 159.705 95.543 160.088 95.543C160.549 95.543 160.955 95.6211 161.307 95.7773C161.662 95.9336 161.939 96.1699 162.139 96.4863C162.342 96.7988 162.443 97.1914 162.443 97.6641V100.617C162.443 100.828 162.461 101.053 162.496 101.291C162.535 101.529 162.592 101.734 162.666 101.906V102H161.535C161.48 101.875 161.438 101.709 161.406 101.502C161.375 101.291 161.359 101.096 161.359 100.916ZM161.547 98.1562L161.559 98.918H160.463C160.154 98.918 159.879 98.9434 159.637 98.9941C159.395 99.041 159.191 99.1133 159.027 99.2109C158.863 99.3086 158.738 99.4316 158.652 99.5801C158.566 99.7246 158.523 99.8945 158.523 100.09C158.523 100.289 158.568 100.471 158.658 100.635C158.748 100.799 158.883 100.93 159.062 101.027C159.246 101.121 159.471 101.168 159.736 101.168C160.068 101.168 160.361 101.098 160.615 100.957C160.869 100.816 161.07 100.645 161.219 100.441C161.371 100.238 161.453 100.041 161.465 99.8496L161.928 100.371C161.9 100.535 161.826 100.717 161.705 100.916C161.584 101.115 161.422 101.307 161.219 101.49C161.02 101.67 160.781 101.82 160.504 101.941C160.23 102.059 159.922 102.117 159.578 102.117C159.148 102.117 158.771 102.033 158.447 101.865C158.127 101.697 157.877 101.473 157.697 101.191C157.521 100.906 157.434 100.588 157.434 100.236C157.434 99.8965 157.5 99.5977 157.633 99.3398C157.766 99.0781 157.957 98.8613 158.207 98.6895C158.457 98.5137 158.758 98.3809 159.109 98.291C159.461 98.2012 159.854 98.1562 160.287 98.1562H161.547ZM166.686 101.227C166.943 101.227 167.182 101.174 167.4 101.068C167.619 100.963 167.799 100.818 167.939 100.635C168.08 100.447 168.16 100.234 168.18 99.9961H169.211C169.191 100.371 169.064 100.721 168.83 101.045C168.6 101.365 168.297 101.625 167.922 101.824C167.547 102.02 167.135 102.117 166.686 102.117C166.209 102.117 165.793 102.033 165.438 101.865C165.086 101.697 164.793 101.467 164.559 101.174C164.328 100.881 164.154 100.545 164.037 100.166C163.924 99.7832 163.867 99.3789 163.867 98.9531V98.707C163.867 98.2812 163.924 97.8789 164.037 97.5C164.154 97.1172 164.328 96.7793 164.559 96.4863C164.793 96.1934 165.086 95.9629 165.438 95.7949C165.793 95.627 166.209 95.543 166.686 95.543C167.182 95.543 167.615 95.6445 167.986 95.8477C168.357 96.0469 168.648 96.3203 168.859 96.668C169.074 97.0117 169.191 97.4023 169.211 97.8398H168.18C168.16 97.5781 168.086 97.3418 167.957 97.1309C167.832 96.9199 167.66 96.752 167.441 96.627C167.227 96.498 166.975 96.4336 166.686 96.4336C166.354 96.4336 166.074 96.5 165.848 96.6328C165.625 96.7617 165.447 96.9375 165.314 97.1602C165.186 97.3789 165.092 97.623 165.033 97.8926C164.979 98.1582 164.951 98.4297 164.951 98.707V98.9531C164.951 99.2305 164.979 99.5039 165.033 99.7734C165.088 100.043 165.18 100.287 165.309 100.506C165.441 100.725 165.619 100.9 165.842 101.033C166.068 101.162 166.35 101.227 166.686 101.227ZM171.52 93V102H170.43V93H171.52ZM175.393 95.6602L172.627 98.6191L171.08 100.225L170.992 99.0703L172.1 97.7461L174.068 95.6602H175.393ZM174.402 102L172.141 98.9766L172.703 98.0098L175.68 102H174.402Z",fill:"#0F172A"}),(0,n.createElement)("rect",{x:"113",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"119",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"200",y:"12",width:"86",height:"120",rx:"4",fill:"white"}),(0,n.createElement)("rect",{x:"213",y:"25",width:"60",height:"60",rx:"4",fill:"#F1F5F9"}),(0,n.createElement)("path",{d:"M231 46.0074C231 45.451 231.448 45 232 45H246C246.552 45 247 45.451 247 46.0074C247 46.5638 246.552 47.0148 246 47.0148H232C231.448 47.0148 231 46.5638 231 46.0074Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M232 49.0296C231.448 49.0296 231 49.4806 231 50.037C231 50.5933 231.448 51.0444 232 51.0444H246C246.552 51.0444 247 50.5933 247 50.037C247 49.4806 246.552 49.0296 246 49.0296H232Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M232 53.0591C231.448 53.0591 231 53.5102 231 54.0665C231 54.6229 231.448 55.0739 232 55.0739H241C241.552 55.0739 242 54.6229 242 54.0665C242 53.5102 241.552 53.0591 241 53.0591H232Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M231 57.9926C231 57.4362 231.448 56.9852 232 56.9852H238C238.552 56.9852 239 57.4362 239 57.9926C239 58.549 238.552 59 238 59H232C231.448 59 231 58.549 231 57.9926Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M249 59C249 58.4477 249.448 58 250 58C250.552 58 251 58.4477 251 59V61H253C253.552 61 254 61.4477 254 62C254 62.5523 253.552 63 253 63H251V65C251 65.5523 250.552 66 250 66C249.448 66 249 65.5523 249 65V63H247C246.448 63 246 62.5523 246 62C246 61.4477 246.448 61 247 61H249V59Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M251 43V53.0549C255.5 53.5524 259 57.3674 259 62C259 66.9706 254.971 71 250 71C247.857 71 245.888 70.2508 244.343 69H231C228.791 69 227 67.2091 227 65V43C227 40.7909 228.791 39 231 39H247C249.209 39 251 40.7909 251 43ZM231 41H247C248.105 41 249 41.8954 249 43V53.0549C244.5 53.5524 241 57.3674 241 62C241 63.8501 241.558 65.5699 242.516 67H231C229.895 67 229 66.1046 229 65V43C229 41.8954 229.895 41 231 41ZM257 62C257 65.866 253.866 69 250 69C246.134 69 243 65.866 243 62C243 58.134 246.134 55 250 55C253.866 55 257 58.134 257 62Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M216.611 93.4688V102H215.48V93.4688H216.611ZM219.588 97.0137V102H218.504V95.6602H219.529L219.588 97.0137ZM219.33 98.5898L218.879 98.5723C218.883 98.1387 218.947 97.7383 219.072 97.3711C219.197 97 219.373 96.6777 219.6 96.4043C219.826 96.1309 220.096 95.9199 220.408 95.7715C220.725 95.6191 221.074 95.543 221.457 95.543C221.77 95.543 222.051 95.5859 222.301 95.6719C222.551 95.7539 222.764 95.8867 222.939 96.0703C223.119 96.2539 223.256 96.4922 223.35 96.7852C223.443 97.0742 223.49 97.4277 223.49 97.8457V102H222.4V97.834C222.4 97.502 222.352 97.2363 222.254 97.0371C222.156 96.834 222.014 96.6875 221.826 96.5977C221.639 96.5039 221.408 96.457 221.135 96.457C220.865 96.457 220.619 96.5137 220.396 96.627C220.178 96.7402 219.988 96.8965 219.828 97.0957C219.672 97.2949 219.549 97.5234 219.459 97.7812C219.373 98.0352 219.33 98.3047 219.33 98.5898ZM228.828 100.318C228.828 100.162 228.793 100.018 228.723 99.8848C228.656 99.748 228.518 99.625 228.307 99.5156C228.1 99.4023 227.787 99.3047 227.369 99.2227C227.018 99.1484 226.699 99.0605 226.414 98.959C226.133 98.8574 225.893 98.7344 225.693 98.5898C225.498 98.4453 225.348 98.2754 225.242 98.0801C225.137 97.8848 225.084 97.6562 225.084 97.3945C225.084 97.1445 225.139 96.9082 225.248 96.6855C225.361 96.4629 225.52 96.2656 225.723 96.0938C225.93 95.9219 226.178 95.7871 226.467 95.6895C226.756 95.5918 227.078 95.543 227.434 95.543C227.941 95.543 228.375 95.6328 228.734 95.8125C229.094 95.9922 229.369 96.2324 229.561 96.5332C229.752 96.8301 229.848 97.1602 229.848 97.5234H228.764C228.764 97.3477 228.711 97.1777 228.605 97.0137C228.504 96.8457 228.354 96.707 228.154 96.5977C227.959 96.4883 227.719 96.4336 227.434 96.4336C227.133 96.4336 226.889 96.4805 226.701 96.5742C226.518 96.6641 226.383 96.7793 226.297 96.9199C226.215 97.0605 226.174 97.209 226.174 97.3652C226.174 97.4824 226.193 97.5879 226.232 97.6816C226.275 97.7715 226.35 97.8555 226.455 97.9336C226.561 98.0078 226.709 98.0781 226.9 98.1445C227.092 98.2109 227.336 98.2773 227.633 98.3438C228.152 98.4609 228.58 98.6016 228.916 98.7656C229.252 98.9297 229.502 99.1309 229.666 99.3691C229.83 99.6074 229.912 99.8965 229.912 100.236C229.912 100.514 229.854 100.768 229.736 100.998C229.623 101.229 229.457 101.428 229.238 101.596C229.023 101.76 228.766 101.889 228.465 101.982C228.168 102.072 227.834 102.117 227.463 102.117C226.904 102.117 226.432 102.018 226.045 101.818C225.658 101.619 225.365 101.361 225.166 101.045C224.967 100.729 224.867 100.395 224.867 100.043H225.957C225.973 100.34 226.059 100.576 226.215 100.752C226.371 100.924 226.562 101.047 226.789 101.121C227.016 101.191 227.24 101.227 227.463 101.227C227.76 101.227 228.008 101.188 228.207 101.109C228.41 101.031 228.564 100.924 228.67 100.787C228.775 100.65 228.828 100.494 228.828 100.318ZM233.967 102.117C233.525 102.117 233.125 102.043 232.766 101.895C232.41 101.742 232.104 101.529 231.846 101.256C231.592 100.982 231.396 100.658 231.26 100.283C231.123 99.9082 231.055 99.498 231.055 99.0527V98.8066C231.055 98.291 231.131 97.832 231.283 97.4297C231.436 97.0234 231.643 96.6797 231.904 96.3984C232.166 96.1172 232.463 95.9043 232.795 95.7598C233.127 95.6152 233.471 95.543 233.826 95.543C234.279 95.543 234.67 95.6211 234.998 95.7773C235.33 95.9336 235.602 96.1523 235.812 96.4336C236.023 96.7109 236.18 97.0391 236.281 97.418C236.383 97.793 236.434 98.2031 236.434 98.6484V99.1348H231.699V98.25H235.35V98.168C235.334 97.8867 235.275 97.6133 235.174 97.3477C235.076 97.082 234.92 96.8633 234.705 96.6914C234.49 96.5195 234.197 96.4336 233.826 96.4336C233.58 96.4336 233.354 96.4863 233.146 96.5918C232.939 96.6934 232.762 96.8457 232.613 97.0488C232.465 97.252 232.35 97.5 232.268 97.793C232.186 98.0859 232.145 98.4238 232.145 98.8066V99.0527C232.145 99.3535 232.186 99.6367 232.268 99.9023C232.354 100.164 232.477 100.395 232.637 100.594C232.801 100.793 232.998 100.949 233.229 101.062C233.463 101.176 233.729 101.232 234.025 101.232C234.408 101.232 234.732 101.154 234.998 100.998C235.264 100.842 235.496 100.633 235.695 100.371L236.352 100.893C236.215 101.1 236.041 101.297 235.83 101.484C235.619 101.672 235.359 101.824 235.051 101.941C234.746 102.059 234.385 102.117 233.967 102.117ZM238.783 96.6562V102H237.699V95.6602H238.754L238.783 96.6562ZM240.764 95.625L240.758 96.6328C240.668 96.6133 240.582 96.6016 240.5 96.5977C240.422 96.5898 240.332 96.5859 240.23 96.5859C239.98 96.5859 239.76 96.625 239.568 96.7031C239.377 96.7812 239.215 96.8906 239.082 97.0312C238.949 97.1719 238.844 97.3398 238.766 97.5352C238.691 97.7266 238.643 97.9375 238.619 98.168L238.314 98.3438C238.314 97.9609 238.352 97.6016 238.426 97.2656C238.504 96.9297 238.623 96.6328 238.783 96.375C238.943 96.1133 239.146 95.9102 239.393 95.7656C239.643 95.6172 239.939 95.543 240.283 95.543C240.361 95.543 240.451 95.5527 240.553 95.5723C240.654 95.5879 240.725 95.6055 240.764 95.625ZM244.713 95.6602V96.4922H241.285V95.6602H244.713ZM242.445 94.1191H243.529V100.43C243.529 100.645 243.562 100.807 243.629 100.916C243.695 101.025 243.781 101.098 243.887 101.133C243.992 101.168 244.105 101.186 244.227 101.186C244.316 101.186 244.41 101.178 244.508 101.162C244.609 101.143 244.686 101.127 244.736 101.115L244.742 102C244.656 102.027 244.543 102.053 244.402 102.076C244.266 102.104 244.1 102.117 243.904 102.117C243.639 102.117 243.395 102.064 243.172 101.959C242.949 101.854 242.771 101.678 242.639 101.432C242.51 101.182 242.445 100.846 242.445 100.424V94.1191ZM252.271 98.6543H249.992V97.7344H252.271C252.713 97.7344 253.07 97.6641 253.344 97.5234C253.617 97.3828 253.816 97.1875 253.941 96.9375C254.07 96.6875 254.135 96.4023 254.135 96.082C254.135 95.7891 254.07 95.5137 253.941 95.2559C253.816 94.998 253.617 94.791 253.344 94.6348C253.07 94.4746 252.713 94.3945 252.271 94.3945H250.256V102H249.125V93.4688H252.271C252.916 93.4688 253.461 93.5801 253.906 93.8027C254.352 94.0254 254.689 94.334 254.92 94.7285C255.15 95.1191 255.266 95.5664 255.266 96.0703C255.266 96.6172 255.15 97.084 254.92 97.4707C254.689 97.8574 254.352 98.1523 253.906 98.3555C253.461 98.5547 252.916 98.6543 252.271 98.6543ZM256.162 98.9004V98.7656C256.162 98.3086 256.229 97.8848 256.361 97.4941C256.494 97.0996 256.686 96.7578 256.936 96.4688C257.186 96.1758 257.488 95.9492 257.844 95.7891C258.199 95.625 258.598 95.543 259.039 95.543C259.484 95.543 259.885 95.625 260.24 95.7891C260.6 95.9492 260.904 96.1758 261.154 96.4688C261.408 96.7578 261.602 97.0996 261.734 97.4941C261.867 97.8848 261.934 98.3086 261.934 98.7656V98.9004C261.934 99.3574 261.867 99.7812 261.734 100.172C261.602 100.562 261.408 100.904 261.154 101.197C260.904 101.486 260.602 101.713 260.246 101.877C259.895 102.037 259.496 102.117 259.051 102.117C258.605 102.117 258.205 102.037 257.85 101.877C257.494 101.713 257.189 101.486 256.936 101.197C256.686 100.904 256.494 100.562 256.361 100.172C256.229 99.7812 256.162 99.3574 256.162 98.9004ZM257.246 98.7656V98.9004C257.246 99.2168 257.283 99.5156 257.357 99.7969C257.432 100.074 257.543 100.32 257.691 100.535C257.844 100.75 258.033 100.92 258.26 101.045C258.486 101.166 258.75 101.227 259.051 101.227C259.348 101.227 259.607 101.166 259.83 101.045C260.057 100.92 260.244 100.75 260.393 100.535C260.541 100.32 260.652 100.074 260.727 99.7969C260.805 99.5156 260.844 99.2168 260.844 98.9004V98.7656C260.844 98.4531 260.805 98.1582 260.727 97.8809C260.652 97.5996 260.539 97.3516 260.387 97.1367C260.238 96.918 260.051 96.7461 259.824 96.6211C259.602 96.4961 259.34 96.4336 259.039 96.4336C258.742 96.4336 258.48 96.4961 258.254 96.6211C258.031 96.7461 257.844 96.918 257.691 97.1367C257.543 97.3516 257.432 97.5996 257.357 97.8809C257.283 98.1582 257.246 98.4531 257.246 98.7656ZM266.984 100.318C266.984 100.162 266.949 100.018 266.879 99.8848C266.812 99.748 266.674 99.625 266.463 99.5156C266.256 99.4023 265.943 99.3047 265.525 99.2227C265.174 99.1484 264.855 99.0605 264.57 98.959C264.289 98.8574 264.049 98.7344 263.85 98.5898C263.654 98.4453 263.504 98.2754 263.398 98.0801C263.293 97.8848 263.24 97.6562 263.24 97.3945C263.24 97.1445 263.295 96.9082 263.404 96.6855C263.518 96.4629 263.676 96.2656 263.879 96.0938C264.086 95.9219 264.334 95.7871 264.623 95.6895C264.912 95.5918 265.234 95.543 265.59 95.543C266.098 95.543 266.531 95.6328 266.891 95.8125C267.25 95.9922 267.525 96.2324 267.717 96.5332C267.908 96.8301 268.004 97.1602 268.004 97.5234H266.92C266.92 97.3477 266.867 97.1777 266.762 97.0137C266.66 96.8457 266.51 96.707 266.311 96.5977C266.115 96.4883 265.875 96.4336 265.59 96.4336C265.289 96.4336 265.045 96.4805 264.857 96.5742C264.674 96.6641 264.539 96.7793 264.453 96.9199C264.371 97.0605 264.33 97.209 264.33 97.3652C264.33 97.4824 264.35 97.5879 264.389 97.6816C264.432 97.7715 264.506 97.8555 264.611 97.9336C264.717 98.0078 264.865 98.0781 265.057 98.1445C265.248 98.2109 265.492 98.2773 265.789 98.3438C266.309 98.4609 266.736 98.6016 267.072 98.7656C267.408 98.9297 267.658 99.1309 267.822 99.3691C267.986 99.6074 268.068 99.8965 268.068 100.236C268.068 100.514 268.01 100.768 267.893 100.998C267.779 101.229 267.613 101.428 267.395 101.596C267.18 101.76 266.922 101.889 266.621 101.982C266.324 102.072 265.99 102.117 265.619 102.117C265.061 102.117 264.588 102.018 264.201 101.818C263.814 101.619 263.521 101.361 263.322 101.045C263.123 100.729 263.023 100.395 263.023 100.043H264.113C264.129 100.34 264.215 100.576 264.371 100.752C264.527 100.924 264.719 101.047 264.945 101.121C265.172 101.191 265.396 101.227 265.619 101.227C265.916 101.227 266.164 101.188 266.363 101.109C266.566 101.031 266.721 100.924 266.826 100.787C266.932 100.65 266.984 100.494 266.984 100.318ZM272.146 95.6602V96.4922H268.719V95.6602H272.146ZM269.879 94.1191H270.963V100.43C270.963 100.645 270.996 100.807 271.062 100.916C271.129 101.025 271.215 101.098 271.32 101.133C271.426 101.168 271.539 101.186 271.66 101.186C271.75 101.186 271.844 101.178 271.941 101.162C272.043 101.143 272.119 101.127 272.17 101.115L272.176 102C272.09 102.027 271.977 102.053 271.836 102.076C271.699 102.104 271.533 102.117 271.338 102.117C271.072 102.117 270.828 102.064 270.605 101.959C270.383 101.854 270.205 101.678 270.072 101.432C269.943 101.182 269.879 100.846 269.879 100.424V94.1191Z",fill:"#0F172A"}),(0,n.createElement)("rect",{x:"207",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"213",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"})),{__:l}=wp.i18n,{cloneElement:i,Children:a}=wp.element,{Placeholder:c,Flex:s,ExternalLink:d,Tooltip:u}=wp.components,{useBlockProps:m}=wp.blockEditor,{useSelect:p,useDispatch:f}=wp.data,{PatternInserterButton:h,ToggleControl:H}=JetFBComponents,v=(0,n.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",style:{color:"rgb(117, 117, 117)"}},(0,n.createElement)("path",{fill:"currentColor",d:"M12 4.75a7.25 7.25 0 100 14.5 7.25 7.25 0 000-14.5zM3.25 12a8.75 8.75 0 1117.5 0 8.75 8.75 0 01-17.5 0zM12 8.75a1.5 1.5 0 01.167 2.99c-.465.052-.917.44-.917 1.01V14h1.5v-.845A3 3 0 109 10.25h1.5a1.5 1.5 0 011.5-1.5zM11.25 15v1.5h1.5V15h-1.5z"})),V=JSON.parse('{"apiVersion":3,"name":"jet-forms/welcome","title":"Welcome","category":"jet-form-builder-elements","icon":"\\n\\n\\n\\n\\n\\n\\n\\n","keywords":["jetformbuilder","start","welcome"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"attributes":{}}');var w=t(673),M=t.n(w),b=t(598),g=t.n(b),E=t(262),Z=t.n(E),L=t(657),y=t.n(L),x=t(357),j=t.n(x),k=t(626),_=t.n(k),F=t(363),A={};A.styleTagTransform=_(),A.setAttributes=y(),A.insert=Z().bind(null,"head"),A.domAPI=g(),A.insertStyleElement=j(),M()(F.A,A),F.A&&F.A.locals&&F.A.locals;const{name:B,icon:S}=V,{__:D}=wp.i18n;V.attributes.isPreview={type:"boolean",default:!1};const P={icon:(0,n.createElement)("span",{dangerouslySetInnerHTML:{__html:S}}),description:D("Use the Welcome block to quickly fetch all pre-made Form Patterns, start building from scratch, generate via AI, save form records, etc.","jet-form-builder"),example:{attributes:{isPreview:!0}},edit:function({attributes:e}){const C=m(),t=p((e=>e("jet-forms/patterns").getTypes().map((({view:e,...C})=>(0,n.createElement)(e,{pattern:C})))),[]),r=p((e=>e("jet-forms/patterns").getSetting("saveRecord"))),{updateSettings:V}=f("jet-forms/patterns");return e.isPreview?(0,n.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},o):(console.log(t),(0,n.createElement)("div",{...C},(0,n.createElement)(c,{icon:"admin-tools",label:l("Select form pattern","jet-form-builder"),instructions:l("You can select one of predefined layout, or build custom","jet-form-builder")},(0,n.createElement)("ul",{className:"block-editor-block-variation-picker__variations jet-fb",role:"list","aria-label":l("Form patterns","jet-form-builder")},a.map(t,i)),(0,n.createElement)(s,{className:"block-editor-block-variation-picker__skip",justify:"space-between"},(0,n.createElement)(s,{justify:"flex-start",style:{width:"auto"}},(0,n.createElement)(h,{patternName:"default",variant:"secondary",style:{margin:"unset"}},l("Start from scratch","jet-form-builder")),(0,n.createElement)(d,{href:"https://jetformbuilder.com/features/creating-a-form/"},l("Learn more about creating forms","jet-form-builder"))),(0,n.createElement)("div",{className:"jfb-block-variation-picker-toggle"},(0,n.createElement)(H,{checked:r,onChange:e=>V({saveRecord:e}),flexLabelProps:{align:"center"}},(0,n.createElement)(s,null,l("Save form records","jet-form-builder"),(0,n.createElement)(u,{text:l('Adds "Save Form Record" action to store\n\tall form submissions into database',"jet-form-builder"),delay:200},v))))))))}},T=window.wp.data,R=window.wp.domReady;var I=t.n(R);const N=window.wp.element,O=window.wp.components,z=window.wp.primitives,U=(0,n.createElement)(z.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(z.Path,{d:"M19.5 4.5h-7V6h4.44l-5.97 5.97 1.06 1.06L18 7.06v4.44h1.5v-7Zm-13 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3H17v3a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h3V5.5h-3Z"})),q=window.wp.i18n,J=document.createElement("div");J.classList.add("jfb-preview-wrapper"),(0,N.createRoot)(J).render((0,n.createElement)((function(){const[e,C]=(0,N.useState)(!1),t=(0,T.useSelect)((e=>{const C=e("core/editor");return C.isSavingPost()||C.isAutosavingPost()}),[]),{autosave:r}=(0,T.useDispatch)("core/editor"),o=(0,N.useRef)(!1);return(0,N.useEffect)((()=>{e&&(!o.current&&t&&(o.current=!0),o.current&&!t&&(e.location.reload(),o.current=!1))}),[t]),(0,n.createElement)(O.Button,{icon:U,onClick:()=>{!e||e?.closed?r().then((()=>{C(window.open(window.JFBOnboardingConfig.previewURL))})):r().finally((()=>{e.focus()}))},label:(0,q.__)("Preview the form","jet-form-builder")})}),null));I()((()=>{const e=(0,T.subscribe)((()=>function(e){const C=document.querySelector(".edit-post-header__settings, .editor-header__settings");if(!C)return null;e(),C.insertBefore(J,C.querySelector(".editor-post-publish-button__button"))}(e)))}));const G=window.wp.plugins,W=window.wp.editor,Y=(0,n.createElement)(z.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(z.Path,{d:"M6.6 6L5.4 7l4.5 5-4.5 5 1.1 1 5.5-6-5.4-6zm6 0l-1.1 1 4.5 5-4.5 5 1.1 1 5.5-6-5.5-6z"})),K=window.jfb.useForm,{useMetaState:Q}=JetFBHooks;var X=t(695),$={};$.styleTagTransform=_(),$.setAttributes=y(),$.insert=Z().bind(null,"head"),$.domAPI=g(),$.insertStyleElement=j(),M()(X.A,$),X.A&&X.A.locals&&X.A.locals,(0,G.registerPlugin)("jfb-use-form",{render:function(){const{closeGeneralSidebar:e}=(0,T.useDispatch)("core/edit-post"),C=(0,T.useSelect)((e=>e(W.store).getEditedPostAttribute("id")),[]),[t]=Q("_jf_args");return(0,n.createElement)(W.PluginSidebar,{icon:Y,name:"sidebar",title:(0,q.__)("Use the form","jet-form-builder")},(0,n.createElement)(K.ResponsiveModal,{title:(0,q.__)("Use the form","jet-form-builder"),onRequestClose:e},(0,n.createElement)(K.FormAttributesContext.Provider,{value:{formId:C,args:t,shouldUpdateForm:!0}},(0,n.createElement)(K.UseFormRoot,null))))}}),(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/welcome-block",(function(e){return e.push(r),e}))})(); \ No newline at end of file diff --git a/modules/onboarding/assets/build/editor.package.asset.php b/modules/onboarding/assets/build/editor.package.asset.php index ca6798c88..1eb202f36 100644 --- a/modules/onboarding/assets/build/editor.package.asset.php +++ b/modules/onboarding/assets/build/editor.package.asset.php @@ -1 +1 @@ - array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-i18n'), 'version' => '898e52f970790aa968e7'); + array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-i18n'), 'version' => 'e2a40b1ee8ecfec8462d'); diff --git a/modules/onboarding/assets/build/editor.package.js b/modules/onboarding/assets/build/editor.package.js index 4fd09cfe8..b4017140d 100644 --- a/modules/onboarding/assets/build/editor.package.js +++ b/modules/onboarding/assets/build/editor.package.js @@ -1 +1 @@ -(()=>{"use strict";var e=e=>{(Object.getOwnPropertyDescriptor(e,"name")||{}).writable||Object.defineProperty(e,"name",{value:"default",configurable:!0})};const t="jet-forms/patterns",n="REGISTER",i="UNREGISTER",l="UPDATE_SETTING",o={getTypeIndex:(e,t)=>e.types.findIndex(e=>e.name===t),getTypes:e=>e.types.filter(({name:e})=>"default"!==e),getType(e,t){const n=o.getTypeIndex(e,t);return e.types[n]},getSetting:(e,t)=>e.settings[t],getSettings:e=>e.settings},r={...o},a=window.React,{useBlockEditContext:C}=wp.blockEditor,{useSelect:s}=wp.data,c=function(){const e=C();return s(t=>t("core/block-editor").getBlocks().filter(t=>t.clientId!==e.clientId),[e.isSelected,e.clientId])},d=window.wp.blockEditor,m=window.wp.blocks,p=window.wp.data,u=window.wp.i18n,{convertFlow:f}=JetFBActions,{useActions:w}=JetFBHooks,v=function({name:e,onApply:n=()=>{}}){const{clientId:i}=(0,d.useBlockEditContext)(),l=c(),{editPost:o}=(0,p.useDispatch)("core/editor"),{createInfoNotice:r}=(0,p.useDispatch)(wp.notices.store),[a,C]=w(),{removeBlocks:s,replaceBlocks:v,insertBlocks:b}=(0,p.useDispatch)("core/block-editor"),H=(0,p.useSelect)(n=>n(t).getType(e),[]),g=(0,p.useSelect)(e=>e(t).getSetting("saveRecord"),[]),h=()=>{var e;return r(null!==(e=H?.applyText)&&void 0!==e?e:(0,u.__)("New blocks and actions have been added","jet-form-builder"),{type:"snackbar"})};function L(e={}){var t,n;e={...H,...e},i?v([i],(0,m.createBlocksFromInnerBlocksTemplate)(null!==(t=e?.blocks)&&void 0!==t?t:[]),0):b((0,m.createBlocksFromInnerBlocksTemplate)(null!==(n=e?.blocks)&&void 0!==n?n:[]));const{actions:l,blocks:r,name:a,icon:C,title:s,description:c,view:d,applyText:p,...u}=e;Object.keys(u).length&&o(u)}return{pattern:H,insert:function(e={}){var t;L(e),e={...H,...e},s(l.map(({clientId:e})=>e));const i=f(null!==(t=e?.actions)&&void 0!==t?t:[]);g&&i.add("save_record"),C(i.list),h(),n()},append:function(e={}){var t;L(e),e={...H,...e};const i=f(null!==(t=e?.actions)&&void 0!==t?t:[]);g&&i.add("save_record"),C([...a,...i.list]),h(),n()},blocks:l}},b=window.jfb.components,H=window.wp.components,g=function({patternName:e,withPatternIcon:t=!1,onClick:n=!1,onApply:i=()=>{},...l}){const{ref:o,showPopover:r,setShowPopover:C,popoverProps:s}=(0,b.useTriggerPopover)(),d=c(),{pattern:m,insert:p,append:f}=v({name:e,onApply:i});return(0,a.createElement)(a.Fragment,null,(0,a.createElement)(H.Button,{ref:o,icon:t&&m.icon,iconSize:"48",onClick:()=>{"function"!=typeof n?d.length?C(e=>!e):p():n()},label:m.description||m.title,...l}),r&&(0,a.createElement)(b.PopoverStandard,{position:"top-start",noArrow:!1,isAlternate:!0,...s},(0,a.createElement)("span",null,(0,u.__)("I want to","jet-form-builder"))," ",(0,a.createElement)(H.Button,{isLink:!0,isDestructive:!0,onClick:()=>p()},(0,u.__)("replace","jet-form-builder"))," / ",(0,a.createElement)(H.Button,{isLink:!0,onClick:()=>f()},(0,u.__)("append","jet-form-builder"))," ",(0,a.createElement)("span",null,(0,u.__)("form settings and blocks","jet-form-builder"))))},h=function({pattern:e}){return(0,a.createElement)("li",null,(0,a.createElement)(g,{key:e.name,variant:"secondary",patternName:e.name,withPatternIcon:!0,iconSize:32,className:"block-editor-block-variation-picker__variation"}),(0,a.createElement)("span",{className:"block-editor-block-variation-picker__variation-label"},e.title))},L={[n](e,t){Array.isArray(t.items)||(t.items=[t.items]);for(let n of t.items){if(!n.hasOwnProperty("name"))continue;const t=r.getTypeIndex(e,n.name);if(-1===t)n?.view||(n.view=h),e.types.push({...n});else{const i={...e.types[t],...n};i?.view||(i.view=h),e.types[t]=i}}return e},[i](e,t){const{types:n}=t;return e.types=e.types.filter(({name:e})=>!n.includes(e)),e},[l](e,t){const{settings:n}=t;return{...e,settings:{...e.settings,...n}}}};e(k);const _={types:[],settings:{saveRecord:!0}};function k(e=_,t){const n=L[t?.type];return n?n(e,t):e}const E={register:e=>({type:n,items:e}),unRegister:e=>({type:i,types:e}),updateSettings:e=>({type:l,settings:e})},{createReduxStore:y}=wp.data,V=y(t,{reducer:k,actions:E,selectors:r}),{__:j}=wp.i18n,M={name:"insert_post",title:j("Insert Post","jet-form-builder"),icon:(0,a.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M12 15.0074C12 14.451 12.4477 14 13 14H27C27.5523 14 28 14.451 28 15.0074C28 15.5638 27.5523 16.0148 27 16.0148H13C12.4477 16.0148 12 15.5638 12 15.0074Z"}),(0,a.createElement)("path",{d:"M13 18.0296C12.4477 18.0296 12 18.4806 12 19.037C12 19.5933 12.4477 20.0444 13 20.0444H27C27.5523 20.0444 28 19.5933 28 19.037C28 18.4806 27.5523 18.0296 27 18.0296H13Z"}),(0,a.createElement)("path",{d:"M13 22.0591C12.4477 22.0591 12 22.5102 12 23.0665C12 23.6229 12.4477 24.0739 13 24.0739H22C22.5523 24.0739 23 23.6229 23 23.0665C23 22.5102 22.5523 22.0591 22 22.0591H13Z"}),(0,a.createElement)("path",{d:"M12 26.9926C12 26.4362 12.4477 25.9852 13 25.9852H19C19.5523 25.9852 20 26.4362 20 26.9926C20 27.549 19.5523 28 19 28H13C12.4477 28 12 27.549 12 26.9926Z"}),(0,a.createElement)("path",{d:"M30 28C30 27.4477 30.4477 27 31 27C31.5523 27 32 27.4477 32 28V30H34C34.5523 30 35 30.4477 35 31C35 31.5523 34.5523 32 34 32H32V34C32 34.5523 31.5523 35 31 35C30.4477 35 30 34.5523 30 34V32H28C27.4477 32 27 31.5523 27 31C27 30.4477 27.4477 30 28 30H30V28Z"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32 12V22.0549C36.5 22.5524 40 26.3674 40 31C40 35.9706 35.9706 40 31 40C28.8567 40 26.8884 39.2508 25.3427 38H12C9.79086 38 8 36.2091 8 34V12C8 9.79086 9.79086 8 12 8H28C30.2091 8 32 9.79086 32 12ZM12 10H28C29.1046 10 30 10.8954 30 12V22.0549C25.5 22.5524 22 26.3674 22 31C22 32.8501 22.5583 34.5699 23.5155 36H12C10.8954 36 10 35.1046 10 34V12C10 10.8954 10.8954 10 12 10ZM38 31C38 34.866 34.866 38 31 38C27.134 38 24 34.866 24 31C24 27.134 27.134 24 31 24C34.866 24 38 27.134 38 31Z"})),actions:[{type:"insert_post",settings:{fields_map:{title:"post_title",excerpt:"post_excerpt",content:"post_content"},post_type:"post"}}],blocks:[["jet-forms/text-field",{name:"title",label:"Post Title"}],["jet-forms/textarea-field",{name:"excerpt",label:"Post Excerpt"}],["jet-forms/wysiwyg-field",{name:"content",label:"Post Content"}],["jet-forms/submit-field"]],applyText:j("4 blocks and Insert/Update Post action have been added","jet-form-builder")},{__:Z}=wp.i18n,x={name:"default",title:Z("From scratch","jet-form-builder"),blocks:[["jet-forms/hidden-field",{name:"post_id",field_value:"post_id"}],["jet-forms/text-field",{name:"text_field",label:"Text"}],["jet-forms/submit-field"]],actions:[],applyText:Z("3 block has been added","jet-form-builder")},{__:R}=wp.i18n,P={name:"feedback",title:R("Feedback","jet-form-builder"),icon:(0,a.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M11 14.0444C10.4477 14.0444 10 14.4954 10 15.0517C10 15.6081 10.4477 16.0591 11 16.0591H31C31.5523 16.0591 32 15.6081 32 15.0517C32 14.4954 31.5523 14.0444 31 14.0444H11Z"}),(0,a.createElement)("path",{d:"M10 19.0813C10 18.5249 10.4477 18.0739 11 18.0739H31C31.5523 18.0739 32 18.5249 32 19.0813C32 19.6377 31.5523 20.0887 31 20.0887H11C10.4477 20.0887 10 19.6377 10 19.0813Z"}),(0,a.createElement)("path",{d:"M11 22.1035C10.4477 22.1035 10 22.5545 10 23.1109C10 23.6672 10.4477 24.1183 11 24.1183H26C26.5523 24.1183 27 23.6672 27 23.1109C27 22.5545 26.5523 22.1035 26 22.1035H11Z"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 12.0296C6 9.8041 7.79086 8 10 8H32C34.2091 8 36 9.8041 36 12.0296V23.1109H38C40.2091 23.1109 42 24.915 42 27.1404V33.1848C42 35.4103 40.2091 37.2144 38 37.2144H37.2857L34.8664 39.839C34.6686 40.0537 34.3314 40.0537 34.1336 39.839L31.7143 37.2144H26C23.7909 37.2144 22 35.4103 22 33.1848V30.1626H19.2143L15.8664 33.7947C15.6686 34.0093 15.3314 34.0093 15.1336 33.7947L11.7857 30.1626H10C7.79086 30.1626 6 28.3585 6 26.1331V12.0296ZM12.6579 28.1478L15.5 31.2312L18.3421 28.1478H32C33.1046 28.1478 34 27.2458 34 26.1331V12.0296C34 10.9168 33.1046 10.0148 32 10.0148H10C8.89543 10.0148 8 10.9168 8 12.0296V26.1331C8 27.2458 8.89543 28.1478 10 28.1478H12.6579ZM24 30.1626V33.1848C24 34.2975 24.8954 35.1996 26 35.1996H32.5864L34.5 37.2756L36.4136 35.1996H38C39.1046 35.1996 40 34.2975 40 33.1848V27.1404C40 26.0277 39.1046 25.1257 38 25.1257H36V26.1331C36 28.3585 34.2091 30.1626 32 30.1626H24Z"})),actions:[{type:"send_email",settings:{mail_to:"form",from_field:"email",subject:"User feedback",content:"Name: %name% - %rating%
    %how_improve%"}}],blocks:[["jet-forms/text-field",{name:"name",label:"Name",required:!0}],["jet-forms/text-field",{name:"email",label:"Email",field_type:"email",required:!0}],["jet-forms/radio-field",{name:"rating",label:"Please rate our website",required:!0}],["jet-forms/textarea-field",{name:"how_improve",label:"How would you suggest to improve it?"}],["jet-forms/submit-field"]],applyText:R("5 blocks and Send Email action have been added","jet-form-builder")},{__:B}=wp.i18n,T={name:"register_user",title:B("Register User","jet-form-builder"),icon:(0,a.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M32 28C31.4477 28 31 28.4477 31 29V31H29C28.4477 31 28 31.4477 28 32C28 32.5523 28.4477 33 29 33H31V35C31 35.5523 31.4477 36 32 36C32.5523 36 33 35.5523 33 35V33H35C35.5523 33 36 32.5523 36 32C36 31.4477 35.5523 31 35 31H33V29C33 28.4477 32.5523 28 32 28Z"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M25.3027 27.6227C24.9834 27.5003 24.8026 27.3845 24.7072 27.2891C24.2501 26.8318 24.0892 26.4008 24.0318 25.8957C27.1814 25.2836 29 21.9956 29 18.9926L29 18.8929C29.0001 17.4806 29.0001 16.4097 28.8614 15.577C28.7049 14.6375 28.3659 13.9425 27.7072 13.2837C26.8574 12.4335 25.4526 11.6321 24.8214 11.2916L24.0627 9.01449C23.8609 8.409 23.2786 7.96465 22.5863 8.00277C21.946 8.03803 20.5966 8.16364 19.1161 8.62065C17.645 9.07477 15.9523 9.88447 14.7317 11.3498C12.9813 13.451 12.9894 15.7657 12.9986 18.4079C12.9993 18.601 13 18.796 13 18.9926C13 21.9956 14.8186 25.2836 17.9682 25.8957C17.9108 26.4008 17.7499 26.8318 17.2928 27.2891C17.2043 27.3776 17.002 27.5046 16.5958 27.6447C16.2031 27.7802 15.7235 27.8946 15.158 28.0203C15.0625 28.0415 14.9645 28.063 14.8643 28.085C13.8394 28.31 12.5881 28.5846 11.5526 29.1025C10.512 29.6231 9.6057 30.2018 8.96901 30.998C8.30377 31.8298 8 32.8117 8 33.9984V36.4996C8 37.328 8.67157 37.9996 9.5 37.9996H26.7079C28.1182 39.2446 29.9709 40 32 40C36.4183 40 40 36.4183 40 32C40 27.5817 36.4183 24 32 24C29.1974 24 26.7315 25.4411 25.3027 27.6227ZM22.2927 10.0294C21.6709 10.0858 20.719 10.219 19.706 10.5317C18.428 10.9262 17.1445 11.578 16.2683 12.6299C14.9968 14.1564 14.9979 15.7494 14.9998 18.6379L15 18.9926C15 21.5216 16.5799 23.7403 18.6143 23.9731C19.3063 24.0523 20.0196 24.6348 19.995 25.5226C19.9682 26.488 19.7931 27.6167 18.7072 28.7031C18.2957 29.1148 17.748 29.3629 17.248 29.5354C16.7344 29.7126 16.1515 29.8483 15.592 29.9726L15.3351 30.0295C14.254 30.2685 13.2475 30.491 12.4474 30.8912C11.488 31.3711 10.8943 31.7927 10.531 32.2471C10.1962 32.6657 10 33.1844 10 33.9984V35.9996H25.07C24.3895 34.823 24 33.457 24 32C24 31.0991 24.1489 30.233 24.4235 29.4249C24.0212 29.2562 23.6187 29.0292 23.2928 28.7031C22.2069 27.6167 22.0318 26.488 22.005 25.5226C21.9804 24.6348 22.6937 24.0523 23.3857 23.9731C25.4201 23.7403 27 21.5216 27 18.9926C27 17.4531 26.9966 16.554 26.8886 15.9056C26.7951 15.3445 26.6341 15.0391 26.2928 14.6976C25.5989 14.0034 24.2493 13.2497 23.7174 12.9694C23.3781 12.7907 23.1115 12.4865 22.9858 12.1095L22.2927 10.0294ZM32 38C35.3137 38 38 35.3137 38 32C38 28.6863 35.3137 26 32 26C28.6863 26 26 28.6863 26 32C26 35.3137 28.6863 38 32 38Z"})),actions:[{type:"verification",settings:{mail_to:"email"}},{type:"register_user",settings:{fields_map:{email:"email",login:"login",password:"_jfb_verification_token",confirm_password:"_jfb_verification_token"},log_in:!0}}],blocks:[["jet-forms/text-field",{name:"email",label:"Email",field_type:"email"}],["jet-forms/text-field",{name:"login",label:"Login"}],["jet-forms/submit-field"]],applyText:B("3 blocks and Register User with Verification action have been added","jet-form-builder")},S=function({pattern:e}){var t;const{ref:n,showPopover:i,setShowPopover:l,popoverProps:o}=(0,b.useTriggerPopover)();return(0,a.createElement)("li",{className:"is-pro"},(0,a.createElement)(H.Button,{ref:n,icon:e.icon,onClick:()=>l(e=>!e),label:e.description||e.title,variant:"secondary",iconSize:32,className:"block-editor-block-variation-picker__variation"}),(0,a.createElement)("span",{className:"block-editor-block-variation-picker__variation-label"},e.title),i&&(0,a.createElement)(b.PopoverStandard,{position:"top-start",noArrow:!1,isAlternate:!0,...o},(0,a.createElement)("span",null,(0,u.__)("This is paid addon. You can buy it here:","jet-form-builder"))," ",(0,a.createElement)(H.ExternalLink,{href:null!==(t=e.link)&&void 0!==t?t:"https://jetformbuilder.com/pricing/"},"jetformbuilder.com")))},{__:I}=wp.i18n,{resetPassPattern:F}=JetFormEditorData.utmLinks,N={name:"reset_password",title:I("Reset Password","jet-form-builder"),icon:(0,a.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M39.8519 14.213C39.3098 16.3883 37.3431 18 35 18C32.2386 18 30 15.7614 30 13C30 10.2386 32.2386 8 35 8C36.6357 8 38.088 8.78545 39.0002 9.99976H38C37.4477 9.99976 37 10.4475 37 10.9998C37 11.552 37.4477 11.9998 38 11.9998H40.9777L41 12C41.5178 12 41.9436 11.6065 41.9948 11.1022C41.9983 11.0686 42 11.0343 42 10.9998V8C42 7.44772 41.5523 7 41 7C40.4477 7 40 7.44772 40 8V8.10102C38.7295 6.80447 36.9587 6 35 6C31.134 6 28 9.13401 28 13C28 16.866 31.134 20 35 20C38.2804 20 41.0337 17.7436 41.7926 14.6982L39.8519 14.213Z"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20 33.874C21.7252 33.4299 23 31.8638 23 30C23 27.7909 21.2091 26 19 26C16.7909 26 15 27.7909 15 30C15 31.8638 16.2748 33.4299 18 33.874V37C18 37.5523 18.4477 38 19 38C19.5523 38 20 37.5523 20 37V33.874ZM21 30C21 31.1046 20.1046 32 19 32C17.8954 32 17 31.1046 17 30C17 28.8954 17.8954 28 19 28C20.1046 28 21 28.8954 21 30Z"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M28 22C30.2091 22 32 23.7909 32 26V38C32 40.2091 30.2091 42 28 42H10C7.79086 42 6 40.2091 6 38V26C6 23.7909 7.79086 22 10 22V19C10 14.0294 14.0294 10 19 10C23.9706 10 28 14.0294 28 19V22ZM26 19V22H24V19C24 16.2386 21.7614 14 19 14C16.2386 14 14 16.2386 14 19V22H12V19C12 15.134 15.134 12 19 12C22.866 12 26 15.134 26 19ZM22 19V22H16V19C16 17.3431 17.3431 16 19 16C20.6569 16 22 17.3431 22 19ZM30 26C30 24.8954 29.1046 24 28 24H10C8.89543 24 8 24.8954 8 26V38C8 39.1046 8.89543 40 10 40H28C29.1046 40 30 39.1046 30 38V26Z"})),blocks:[],actions:[],view:S,link:F},{__:A}=wp.i18n,{userLoginPattern:D}=JetFormEditorData.utmLinks,J={name:"user_login",title:A("User Login","jet-form-builder"),icon:(0,a.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M34 33C34 33.7532 33.5837 34.4091 32.9686 34.7502C32.9891 34.8301 33 34.9138 33 35V36C33 36.5523 32.5523 37 32 37C31.4477 37 31 36.5523 31 36V35C31 34.9138 31.0109 34.8301 31.0314 34.7502C30.4163 34.4091 30 33.7532 30 33C30 31.8954 30.8954 31 32 31C33.1046 31 34 31.8954 34 33ZM32 33.7692C32.4248 33.7692 32.7692 33.4248 32.7692 33C32.7692 32.5752 32.4248 32.2308 32 32.2308C31.5752 32.2308 31.2308 32.5752 31.2308 33C31.2308 33.4248 31.5752 33.7692 32 33.7692Z"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M26.6739 28C26.193 27.8933 25.7793 27.7911 25.4313 27.6698C25.0307 27.53 24.8148 27.3967 24.7072 27.2891C24.2501 26.8318 24.0892 26.4008 24.0318 25.8957C27.1814 25.2836 29 21.9956 29 18.9926L29 18.8929C29.0001 17.4806 29.0001 16.4097 28.8614 15.577C28.7049 14.6375 28.3659 13.9425 27.7072 13.2837C26.8574 12.4335 25.4526 11.6321 24.8214 11.2916L24.0627 9.01449C23.8609 8.409 23.2786 7.96465 22.5863 8.00277C21.946 8.03803 20.5966 8.16364 19.1161 8.62065C17.645 9.07477 15.9523 9.88447 14.7317 11.3498C12.9813 13.451 12.9894 15.7657 12.9986 18.4079C12.9993 18.601 13 18.796 13 18.9926C13 21.9956 14.8186 25.2836 17.9682 25.8957C17.9108 26.4008 17.7499 26.8318 17.2928 27.2891C17.2043 27.3776 17.002 27.5046 16.5958 27.6447C16.2031 27.7802 15.7235 27.8946 15.158 28.0203C15.0625 28.0415 14.9645 28.063 14.8643 28.085C13.8394 28.31 12.5881 28.5846 11.5526 29.1025C10.512 29.6231 9.6057 30.2018 8.96901 30.998C8.30377 31.8298 8 32.8117 8 33.9984V36.4996C8 37.328 8.67157 37.9996 9.5 37.9996H24C24 39.1042 24.8954 40 26 40H38C39.1046 40 40 39.1046 40 38V30C40 28.8954 39.1046 28 38 28H36V27C36 24.7909 34.2091 23 32 23C29.7909 23 28 24.7909 28 27V28H26.6739ZM22.2927 10.0294C21.6709 10.0858 20.719 10.219 19.706 10.5317C18.428 10.9262 17.1445 11.578 16.2683 12.6299C14.9968 14.1564 14.9979 15.7494 14.9998 18.6379L15 18.9926C15 21.5216 16.5799 23.7403 18.6143 23.9731C19.3063 24.0523 20.0196 24.6348 19.995 25.5226C19.9682 26.488 19.7931 27.6167 18.7072 28.7031C18.2957 29.1148 17.748 29.3629 17.248 29.5354C16.7344 29.7126 16.1515 29.8483 15.592 29.9726L15.3351 30.0295C14.254 30.2685 13.2475 30.491 12.4474 30.8912C11.488 31.3711 10.8943 31.7927 10.531 32.2471C10.1962 32.6657 10 33.1844 10 33.9984V35.9996H24V30C24 29.75 24.0459 29.5108 24.1296 29.2902C23.829 29.1393 23.5391 28.9495 23.2928 28.7031C22.2069 27.6167 22.0318 26.488 22.005 25.5226C21.9804 24.6348 22.6937 24.0523 23.3857 23.9731C25.4201 23.7403 27 21.5216 27 18.9926C27 17.4531 26.9966 16.554 26.8886 15.9056C26.7951 15.3445 26.6341 15.0391 26.2928 14.6976C25.5989 14.0034 24.2493 13.2497 23.7174 12.9694C23.3781 12.7907 23.1115 12.4865 22.9858 12.1095L22.2927 10.0294ZM34 28V27C34 25.8954 33.1046 25 32 25C30.8954 25 30 25.8954 30 27V28H34ZM38 30V38H26V30H38Z"})),blocks:[],actions:[],view:S,link:D},{__:U}=wp.i18n,O={name:"donation",title:U("Paypal donation","jet-form-builder"),icon:(0,a.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M12 19.0075C12 18.4511 12.4477 18.0001 13 18.0001H27C27.5523 18.0001 28 18.4511 28 19.0075C28 19.5639 27.5523 20.0149 27 20.0149H13C12.4477 20.0149 12 19.5639 12 19.0075Z"}),(0,a.createElement)("path",{d:"M13 22.0297C12.4477 22.0297 12 22.4807 12 23.0371C12 23.5934 12.4477 24.0445 13 24.0445H21C21.5523 24.0445 22 23.5934 22 23.0371C22 22.4807 21.5523 22.0297 21 22.0297H13Z"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M38.4179 29.1868C39.3793 28.4563 40 27.3006 40 26V12C40 9.79086 38.2091 8 36 8H12C9.79086 8 8 9.79086 8 12V26C8 28.2091 9.79086 30 12 30H25.0524L24.2057 34.8272C24.0984 35.4393 24.5693 36 25.1907 36H27.683L27.1995 38.8318C27.0952 39.4425 27.5657 40.0001 28.1852 40.0001H31.7299C32.2172 40.0001 32.6335 39.6489 32.7156 39.1687L33.1342 36.7206C33.8865 36.6923 35.6504 36.5206 36.3404 36.1613L36.3467 36.158C37.0997 35.7624 37.7221 35.1918 38.1818 34.4654C38.6527 33.7235 38.9002 32.8945 38.9776 32.0383L38.9782 32.031C39.046 31.2507 38.96 30.4605 38.6605 29.7069C38.5903 29.5269 38.5093 29.3533 38.4179 29.1868ZM36 10H12C10.9003 10 10.0079 10.8875 10.0001 11.9854H37.9999C37.9921 10.8875 37.0997 10 36 10ZM38 14.0001H10V26C10 27.1046 10.8954 28 12 28H25.4032L26.3102 22.8287C26.3943 22.3497 26.8107 22.0006 27.297 22.0015L32.3783 22.0106L32.4074 22.0115C33.3187 22.0392 34.229 22.2741 35.0217 22.8279C35.7602 23.336 36.3027 24.0245 36.6306 24.8434C36.9553 25.6382 37.0506 26.4763 36.976 27.3126L36.9754 27.3196C36.9656 27.4252 36.9534 27.5302 36.9386 27.6347C36.975 27.6572 37.0113 27.6803 37.0473 27.7042C37.6189 27.3521 38 26.7206 38 26V14.0001ZM31.5153 30.2977C31.6096 30.2967 31.7023 30.2929 31.7934 30.2864C32.303 30.2501 32.7625 30.1282 33.1718 29.9207L33.185 29.9139L33.1958 29.9083C33.6942 29.6486 34.0939 29.287 34.3948 28.8236L34.399 28.8171L34.4054 28.8073C34.675 28.3888 34.8485 27.9035 34.9258 27.3514L34.9262 27.3487C34.9359 27.2791 34.9441 27.2084 34.9508 27.1367C34.9829 26.7767 34.9672 26.4385 34.9036 26.122L34.898 26.0948C34.861 25.9187 34.8091 25.7495 34.7423 25.587C34.6085 25.2504 34.4168 24.9627 34.1672 24.7238L34.1505 24.708C34.0589 24.622 33.9597 24.5424 33.8528 24.4693C33.4548 24.1894 32.9596 24.0388 32.3673 24.0175L32.3448 24.0168L28.1664 24.0099L26.5 34H28L28.6711 30.2978H31.4275C31.4475 30.298 31.4674 30.298 31.4872 30.2979L31.5153 30.2977ZM30.3948 32.4614L30.4224 32.3041C31.347 32.3071 33.2687 32.1271 34.1009 31.7052L34.1072 31.702C34.9281 31.2822 35.6047 30.6781 36.1051 29.9083C36.1524 29.8358 36.1976 29.7625 36.2409 29.6884L36.2496 29.6968L36.264 29.7108C36.4793 29.9225 36.6447 30.1775 36.7601 30.4758C36.8178 30.6198 36.8625 30.7698 36.8945 30.9258L36.8993 30.9499C36.9541 31.2304 36.9676 31.5301 36.9399 31.8492C36.9342 31.9127 36.9271 31.9753 36.9188 32.037L36.9184 32.0394C36.8517 32.5286 36.7021 32.9587 36.4695 33.3297L36.464 33.3383L36.4604 33.3441C36.2008 33.7548 35.856 34.0752 35.426 34.3054L35.4167 34.3103L35.4053 34.3163C35.1352 34.457 34.8398 34.5533 34.5189 34.6052C34.3844 34.6269 34.2454 34.6409 34.102 34.647C34.0605 34.6488 34.0186 34.6499 33.9763 34.6504L33.9522 34.6506C33.9351 34.6507 33.9179 34.6507 33.9007 34.6506L31.6059 34.647L31 37.9999H29.5L30.3948 32.4614Z"})),actions:[],blocks:[["jet-forms/number-field",{name:"amount",label:"Amount"}],["jet-forms/submit-field"]],meta:{_jf_gateways:'{"gateway":"paypal","paypal":{"use_global":true,"currency":"USD","scenario":{"id":"PAY_NOW"}},"price_field":"price"}'},applyText:U("2 blocks and PayPal Gateway have been added","jet-form-builder")},{__:G}=wp.i18n,q={name:"contact",title:G("Contact form","jet-form-builder"),icon:(0,a.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M16.8 10C16.3582 10 16 10.4477 16 11C16 11.5523 16.3582 12 16.8 12H31.2C31.6418 12 32 11.5523 32 11C32 10.4477 31.6418 10 31.2 10H16.8Z"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 19C12 17.3431 13.3431 16 15 16H33C34.6569 16 36 17.3431 36 19C36 20.6569 34.6569 22 33 22H15C13.3431 22 12 20.6569 12 19ZM15 18C14.4477 18 14 18.4477 14 19C14 19.5523 14.4477 20 15 20H33C33.5523 20 34 19.5523 34 19C34 18.4477 33.5523 18 33 18H15Z"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15 24C13.3431 24 12 25.3431 12 27C12 28.6569 13.3431 30 15 30H33C34.6569 30 36 28.6569 36 27C36 25.3431 34.6569 24 33 24H15ZM14 27C14 26.4477 14.4477 26 15 26H33C33.5523 26 34 26.4477 34 27C34 27.5523 33.5523 28 33 28H15C14.4477 28 14 27.5523 14 27Z"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18 35C18 33.3431 19.3431 32 21 32H27C28.6569 32 30 33.3431 30 35C30 36.6569 28.6569 38 27 38H21C19.3431 38 18 36.6569 18 35ZM21 34C20.4477 34 20 34.4477 20 35C20 35.5523 20.4477 36 21 36H27C27.5523 36 28 35.5523 28 35C28 34.4477 27.5523 34 27 34H21Z"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 8C8 5.79086 9.79086 4 12 4H36C38.2091 4 40 5.79086 40 8V40C40 42.2091 38.2091 44 36 44H12C9.79086 44 8 42.2091 8 40V8ZM12 6H36C37.1046 6 38 6.89543 38 8V40C38 41.1046 37.1046 42 36 42H12C10.8954 42 10 41.1046 10 40V8C10 6.89543 10.8954 6 12 6Z"})),actions:[{type:"send_email",settings:{mail_to:"form",from_field:"email",subject:"%subject%",content:"%message%"}}],blocks:[["jet-forms/text-field",{name:"email",label:"Email",field_type:"email"}],["jet-forms/text-field",{name:"subject",label:"Subject"}],["jet-forms/wysiwyg-field",{name:"message",label:"Message"}],["jet-forms/submit-field"]],applyText:G("4 blocks and Send Email action have been added","jet-form-builder")},{__:z}=wp.i18n,Y={name:"newsletter",title:z("Newsletter Signup Form","jet-form-builder"),icon:(0,a.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,a.createElement)("path",{d:"M29.7071 14.7071C30.0976 14.3166 30.0976 13.6834 29.7071 13.2929C29.3166 12.9024 28.6834 12.9024 28.2929 13.2929L23 18.5858L19.7071 15.2929C19.3166 14.9024 18.6834 14.9024 18.2929 15.2929C17.9024 15.6834 17.9024 16.3166 18.2929 16.7071L21.9393 20.3536C22.5251 20.9393 23.4749 20.9393 24.0607 20.3536L29.7071 14.7071Z"}),(0,a.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.4701 21.7063L14 18.2511V11C14 9.34315 15.3431 8 17 8H31C32.6569 8 34 9.34315 34 11V18.2511L39.5299 21.7063C39.8223 21.889 40 22.2095 40 22.5544V37C40 38.6569 38.6569 40 37 40H11C9.34315 40 8 38.6569 8 37V22.5544C8 22.2095 8.17766 21.889 8.4701 21.7063ZM17 10H31C31.5523 10 32 10.4477 32 11V25.6793L29.2193 27.6258L25.4551 23.6332C24.6657 22.7958 23.3341 22.7958 22.5446 23.6332L18.7806 27.6257L16 25.6793V11C16 10.4477 16.4477 10 17 10ZM17.394 29.0965L10 23.9207V36.9393L17.394 29.0965ZM14 20.6094L11.2298 22.3402L14 24.2793V20.6094ZM34 24.2793V20.6094L36.7701 22.3402L34 24.2793ZM30.6059 29.0966L38 23.9207V36.9395L30.6059 29.0966ZM10.991 38H37.009L37 38H11L10.991 38ZM11.759 37.9891H36.2408L23.9999 25.0051L11.759 37.9891Z"})),actions:[{type:"mailchimp"}],blocks:[["core/columns",{},[["core/column",{},[["jet-forms/text-field",{name:"email",field_type:"email",placeholder:"Enter you email"}]]],["core/column",{},[["jet-forms/submit-field"]]]]]],applyText:z("2 form fields and Mailchimp action have been added","jet-form-builder")};var W,K;(0,p.register)(V),(0,p.dispatch)(t).register([x,q,P,Y,M,T,O,N,J]),window.JetFBComponents={...null!==(W=window.JetFBComponents)&&void 0!==W?W:{},PatternInserterButton:g},window.JetFBHooks={...null!==(K=window.JetFBHooks)&&void 0!==K?K:{},usePattern:v}})(); \ No newline at end of file +(()=>{"use strict";const e="jet-forms/patterns",t="REGISTER",n="UNREGISTER",i="UPDATE_SETTING",l={getTypeIndex:(e,t)=>e.types.findIndex((e=>e.name===t)),getTypes:e=>e.types.filter((({name:e})=>"default"!==e)),getType(e,t){const n=l.getTypeIndex(e,t);return e.types[n]},getSetting:(e,t)=>e.settings[t],getSettings:e=>e.settings},o={...l},r=window.React,{useBlockEditContext:a}=wp.blockEditor,{useSelect:C}=wp.data,s=function(){const e=a();return C((t=>t("core/block-editor").getBlocks().filter((t=>t.clientId!==e.clientId))),[e.isSelected,e.clientId])},c=window.wp.blockEditor,d=window.wp.blocks,m=window.wp.data,p=window.wp.i18n,{convertFlow:u}=JetFBActions,{useActions:f}=JetFBHooks,w=function({name:t,onApply:n=()=>{}}){const{clientId:i}=(0,c.useBlockEditContext)(),l=s(),{editPost:o}=(0,m.useDispatch)("core/editor"),{createInfoNotice:r}=(0,m.useDispatch)(wp.notices.store),[a,C]=f(),{removeBlocks:w,replaceBlocks:v,insertBlocks:b}=(0,m.useDispatch)("core/block-editor"),H=(0,m.useSelect)((n=>n(e).getType(t)),[]),g=(0,m.useSelect)((t=>t(e).getSetting("saveRecord")),[]),h=()=>{var e;return r(null!==(e=H?.applyText)&&void 0!==e?e:(0,p.__)("New blocks and actions have been added","jet-form-builder"),{type:"snackbar"})};function L(e={}){var t,n;e={...H,...e},i?v([i],(0,d.createBlocksFromInnerBlocksTemplate)(null!==(t=e?.blocks)&&void 0!==t?t:[]),0):b((0,d.createBlocksFromInnerBlocksTemplate)(null!==(n=e?.blocks)&&void 0!==n?n:[]));const{actions:l,blocks:r,name:a,icon:C,title:s,description:c,view:m,applyText:p,...u}=e;Object.keys(u).length&&o(u)}return{pattern:H,insert:function(e={}){var t;L(e),e={...H,...e},w(l.map((({clientId:e})=>e)));const i=u(null!==(t=e?.actions)&&void 0!==t?t:[]);g&&i.add("save_record"),C(i.list),h(),n()},append:function(e={}){var t;L(e),e={...H,...e};const i=u(null!==(t=e?.actions)&&void 0!==t?t:[]);g&&i.add("save_record"),C([...a,...i.list]),h(),n()},blocks:l}},v=window.jfb.components,b=window.wp.components,H=function({patternName:e,withPatternIcon:t=!1,onClick:n=!1,onApply:i=()=>{},...l}){const{ref:o,showPopover:a,setShowPopover:C,popoverProps:c}=(0,v.useTriggerPopover)(),d=s(),{pattern:m,insert:u,append:f}=w({name:e,onApply:i});return(0,r.createElement)(r.Fragment,null,(0,r.createElement)(b.Button,{ref:o,icon:t&&m.icon,iconSize:"48",onClick:()=>{"function"!=typeof n?d.length?C((e=>!e)):u():n()},label:m.description||m.title,...l}),a&&(0,r.createElement)(v.PopoverStandard,{position:"top-start",noArrow:!1,isAlternate:!0,...c},(0,r.createElement)("span",null,(0,p.__)("I want to","jet-form-builder"))," ",(0,r.createElement)(b.Button,{isLink:!0,isDestructive:!0,onClick:()=>u()},(0,p.__)("replace","jet-form-builder"))," / ",(0,r.createElement)(b.Button,{isLink:!0,onClick:()=>f()},(0,p.__)("append","jet-form-builder"))," ",(0,r.createElement)("span",null,(0,p.__)("form settings and blocks","jet-form-builder"))))},g=function({pattern:e}){return(0,r.createElement)("li",null,(0,r.createElement)(H,{key:e.name,variant:"secondary",patternName:e.name,withPatternIcon:!0,iconSize:32,className:"block-editor-block-variation-picker__variation"}),(0,r.createElement)("span",{className:"block-editor-block-variation-picker__variation-label"},e.title))},h={[t](e,t){Array.isArray(t.items)||(t.items=[t.items]);for(let n of t.items){if(!n.hasOwnProperty("name"))continue;const t=o.getTypeIndex(e,n.name);if(-1===t)n?.view||(n.view=g),e.types.push({...n});else{const i={...e.types[t],...n};i?.view||(i.view=g),e.types[t]=i}}return e},[n](e,t){const{types:n}=t;return e.types=e.types.filter((({name:e})=>!n.includes(e))),e},[i](e,t){const{settings:n}=t;return{...e,settings:{...e.settings,...n}}}},L={types:[],settings:{saveRecord:!0}},_={register:e=>({type:t,items:e}),unRegister:e=>({type:n,types:e}),updateSettings:e=>({type:i,settings:e})},{createReduxStore:k}=wp.data,E=k(e,{reducer:function(e=L,t){const n=h[t?.type];return n?n(e,t):e},actions:_,selectors:o}),{__:V}=wp.i18n,y={name:"insert_post",title:V("Insert Post","jet-form-builder"),icon:(0,r.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,r.createElement)("path",{d:"M12 15.0074C12 14.451 12.4477 14 13 14H27C27.5523 14 28 14.451 28 15.0074C28 15.5638 27.5523 16.0148 27 16.0148H13C12.4477 16.0148 12 15.5638 12 15.0074Z"}),(0,r.createElement)("path",{d:"M13 18.0296C12.4477 18.0296 12 18.4806 12 19.037C12 19.5933 12.4477 20.0444 13 20.0444H27C27.5523 20.0444 28 19.5933 28 19.037C28 18.4806 27.5523 18.0296 27 18.0296H13Z"}),(0,r.createElement)("path",{d:"M13 22.0591C12.4477 22.0591 12 22.5102 12 23.0665C12 23.6229 12.4477 24.0739 13 24.0739H22C22.5523 24.0739 23 23.6229 23 23.0665C23 22.5102 22.5523 22.0591 22 22.0591H13Z"}),(0,r.createElement)("path",{d:"M12 26.9926C12 26.4362 12.4477 25.9852 13 25.9852H19C19.5523 25.9852 20 26.4362 20 26.9926C20 27.549 19.5523 28 19 28H13C12.4477 28 12 27.549 12 26.9926Z"}),(0,r.createElement)("path",{d:"M30 28C30 27.4477 30.4477 27 31 27C31.5523 27 32 27.4477 32 28V30H34C34.5523 30 35 30.4477 35 31C35 31.5523 34.5523 32 34 32H32V34C32 34.5523 31.5523 35 31 35C30.4477 35 30 34.5523 30 34V32H28C27.4477 32 27 31.5523 27 31C27 30.4477 27.4477 30 28 30H30V28Z"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32 12V22.0549C36.5 22.5524 40 26.3674 40 31C40 35.9706 35.9706 40 31 40C28.8567 40 26.8884 39.2508 25.3427 38H12C9.79086 38 8 36.2091 8 34V12C8 9.79086 9.79086 8 12 8H28C30.2091 8 32 9.79086 32 12ZM12 10H28C29.1046 10 30 10.8954 30 12V22.0549C25.5 22.5524 22 26.3674 22 31C22 32.8501 22.5583 34.5699 23.5155 36H12C10.8954 36 10 35.1046 10 34V12C10 10.8954 10.8954 10 12 10ZM38 31C38 34.866 34.866 38 31 38C27.134 38 24 34.866 24 31C24 27.134 27.134 24 31 24C34.866 24 38 27.134 38 31Z"})),actions:[{type:"insert_post",settings:{fields_map:{title:"post_title",excerpt:"post_excerpt",content:"post_content"},post_type:"post"}}],blocks:[["jet-forms/text-field",{name:"title",label:"Post Title"}],["jet-forms/textarea-field",{name:"excerpt",label:"Post Excerpt"}],["jet-forms/wysiwyg-field",{name:"content",label:"Post Content"}],["jet-forms/submit-field"]],applyText:V("4 blocks and Insert/Update Post action have been added","jet-form-builder")},{__:j}=wp.i18n,M={name:"default",title:j("From scratch","jet-form-builder"),blocks:[["jet-forms/hidden-field",{name:"post_id",field_value:"post_id"}],["jet-forms/text-field",{name:"text_field",label:"Text"}],["jet-forms/submit-field"]],actions:[],applyText:j("3 block has been added","jet-form-builder")},{__:Z}=wp.i18n,x={name:"feedback",title:Z("Feedback","jet-form-builder"),icon:(0,r.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,r.createElement)("path",{d:"M11 14.0444C10.4477 14.0444 10 14.4954 10 15.0517C10 15.6081 10.4477 16.0591 11 16.0591H31C31.5523 16.0591 32 15.6081 32 15.0517C32 14.4954 31.5523 14.0444 31 14.0444H11Z"}),(0,r.createElement)("path",{d:"M10 19.0813C10 18.5249 10.4477 18.0739 11 18.0739H31C31.5523 18.0739 32 18.5249 32 19.0813C32 19.6377 31.5523 20.0887 31 20.0887H11C10.4477 20.0887 10 19.6377 10 19.0813Z"}),(0,r.createElement)("path",{d:"M11 22.1035C10.4477 22.1035 10 22.5545 10 23.1109C10 23.6672 10.4477 24.1183 11 24.1183H26C26.5523 24.1183 27 23.6672 27 23.1109C27 22.5545 26.5523 22.1035 26 22.1035H11Z"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 12.0296C6 9.8041 7.79086 8 10 8H32C34.2091 8 36 9.8041 36 12.0296V23.1109H38C40.2091 23.1109 42 24.915 42 27.1404V33.1848C42 35.4103 40.2091 37.2144 38 37.2144H37.2857L34.8664 39.839C34.6686 40.0537 34.3314 40.0537 34.1336 39.839L31.7143 37.2144H26C23.7909 37.2144 22 35.4103 22 33.1848V30.1626H19.2143L15.8664 33.7947C15.6686 34.0093 15.3314 34.0093 15.1336 33.7947L11.7857 30.1626H10C7.79086 30.1626 6 28.3585 6 26.1331V12.0296ZM12.6579 28.1478L15.5 31.2312L18.3421 28.1478H32C33.1046 28.1478 34 27.2458 34 26.1331V12.0296C34 10.9168 33.1046 10.0148 32 10.0148H10C8.89543 10.0148 8 10.9168 8 12.0296V26.1331C8 27.2458 8.89543 28.1478 10 28.1478H12.6579ZM24 30.1626V33.1848C24 34.2975 24.8954 35.1996 26 35.1996H32.5864L34.5 37.2756L36.4136 35.1996H38C39.1046 35.1996 40 34.2975 40 33.1848V27.1404C40 26.0277 39.1046 25.1257 38 25.1257H36V26.1331C36 28.3585 34.2091 30.1626 32 30.1626H24Z"})),actions:[{type:"send_email",settings:{mail_to:"form",from_field:"email",subject:"User feedback",content:"Name: %name% - %rating%
    %how_improve%"}}],blocks:[["jet-forms/text-field",{name:"name",label:"Name",required:!0}],["jet-forms/text-field",{name:"email",label:"Email",field_type:"email",required:!0}],["jet-forms/radio-field",{name:"rating",label:"Please rate our website",required:!0}],["jet-forms/textarea-field",{name:"how_improve",label:"How would you suggest to improve it?"}],["jet-forms/submit-field"]],applyText:Z("5 blocks and Send Email action have been added","jet-form-builder")},{__:R}=wp.i18n,P={name:"register_user",title:R("Register User","jet-form-builder"),icon:(0,r.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,r.createElement)("path",{d:"M32 28C31.4477 28 31 28.4477 31 29V31H29C28.4477 31 28 31.4477 28 32C28 32.5523 28.4477 33 29 33H31V35C31 35.5523 31.4477 36 32 36C32.5523 36 33 35.5523 33 35V33H35C35.5523 33 36 32.5523 36 32C36 31.4477 35.5523 31 35 31H33V29C33 28.4477 32.5523 28 32 28Z"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M25.3027 27.6227C24.9834 27.5003 24.8026 27.3845 24.7072 27.2891C24.2501 26.8318 24.0892 26.4008 24.0318 25.8957C27.1814 25.2836 29 21.9956 29 18.9926L29 18.8929C29.0001 17.4806 29.0001 16.4097 28.8614 15.577C28.7049 14.6375 28.3659 13.9425 27.7072 13.2837C26.8574 12.4335 25.4526 11.6321 24.8214 11.2916L24.0627 9.01449C23.8609 8.409 23.2786 7.96465 22.5863 8.00277C21.946 8.03803 20.5966 8.16364 19.1161 8.62065C17.645 9.07477 15.9523 9.88447 14.7317 11.3498C12.9813 13.451 12.9894 15.7657 12.9986 18.4079C12.9993 18.601 13 18.796 13 18.9926C13 21.9956 14.8186 25.2836 17.9682 25.8957C17.9108 26.4008 17.7499 26.8318 17.2928 27.2891C17.2043 27.3776 17.002 27.5046 16.5958 27.6447C16.2031 27.7802 15.7235 27.8946 15.158 28.0203C15.0625 28.0415 14.9645 28.063 14.8643 28.085C13.8394 28.31 12.5881 28.5846 11.5526 29.1025C10.512 29.6231 9.6057 30.2018 8.96901 30.998C8.30377 31.8298 8 32.8117 8 33.9984V36.4996C8 37.328 8.67157 37.9996 9.5 37.9996H26.7079C28.1182 39.2446 29.9709 40 32 40C36.4183 40 40 36.4183 40 32C40 27.5817 36.4183 24 32 24C29.1974 24 26.7315 25.4411 25.3027 27.6227ZM22.2927 10.0294C21.6709 10.0858 20.719 10.219 19.706 10.5317C18.428 10.9262 17.1445 11.578 16.2683 12.6299C14.9968 14.1564 14.9979 15.7494 14.9998 18.6379L15 18.9926C15 21.5216 16.5799 23.7403 18.6143 23.9731C19.3063 24.0523 20.0196 24.6348 19.995 25.5226C19.9682 26.488 19.7931 27.6167 18.7072 28.7031C18.2957 29.1148 17.748 29.3629 17.248 29.5354C16.7344 29.7126 16.1515 29.8483 15.592 29.9726L15.3351 30.0295C14.254 30.2685 13.2475 30.491 12.4474 30.8912C11.488 31.3711 10.8943 31.7927 10.531 32.2471C10.1962 32.6657 10 33.1844 10 33.9984V35.9996H25.07C24.3895 34.823 24 33.457 24 32C24 31.0991 24.1489 30.233 24.4235 29.4249C24.0212 29.2562 23.6187 29.0292 23.2928 28.7031C22.2069 27.6167 22.0318 26.488 22.005 25.5226C21.9804 24.6348 22.6937 24.0523 23.3857 23.9731C25.4201 23.7403 27 21.5216 27 18.9926C27 17.4531 26.9966 16.554 26.8886 15.9056C26.7951 15.3445 26.6341 15.0391 26.2928 14.6976C25.5989 14.0034 24.2493 13.2497 23.7174 12.9694C23.3781 12.7907 23.1115 12.4865 22.9858 12.1095L22.2927 10.0294ZM32 38C35.3137 38 38 35.3137 38 32C38 28.6863 35.3137 26 32 26C28.6863 26 26 28.6863 26 32C26 35.3137 28.6863 38 32 38Z"})),actions:[{type:"verification",settings:{mail_to:"email"}},{type:"register_user",settings:{fields_map:{email:"email",login:"login",password:"_jfb_verification_token",confirm_password:"_jfb_verification_token"},log_in:!0}}],blocks:[["jet-forms/text-field",{name:"email",label:"Email",field_type:"email"}],["jet-forms/text-field",{name:"login",label:"Login"}],["jet-forms/submit-field"]],applyText:R("3 blocks and Register User with Verification action have been added","jet-form-builder")},B=function({pattern:e}){var t;const{ref:n,showPopover:i,setShowPopover:l,popoverProps:o}=(0,v.useTriggerPopover)();return(0,r.createElement)("li",{className:"is-pro"},(0,r.createElement)(b.Button,{ref:n,icon:e.icon,onClick:()=>l((e=>!e)),label:e.description||e.title,variant:"secondary",iconSize:32,className:"block-editor-block-variation-picker__variation"}),(0,r.createElement)("span",{className:"block-editor-block-variation-picker__variation-label"},e.title),i&&(0,r.createElement)(v.PopoverStandard,{position:"top-start",noArrow:!1,isAlternate:!0,...o},(0,r.createElement)("span",null,(0,p.__)("This is paid addon. You can buy it here:","jet-form-builder"))," ",(0,r.createElement)(b.ExternalLink,{href:null!==(t=e.link)&&void 0!==t?t:"https://jetformbuilder.com/pricing/"},"jetformbuilder.com")))},{__:T}=wp.i18n,{resetPassPattern:S}=JetFormEditorData.utmLinks,I={name:"reset_password",title:T("Reset Password","jet-form-builder"),icon:(0,r.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,r.createElement)("path",{d:"M39.8519 14.213C39.3098 16.3883 37.3431 18 35 18C32.2386 18 30 15.7614 30 13C30 10.2386 32.2386 8 35 8C36.6357 8 38.088 8.78545 39.0002 9.99976H38C37.4477 9.99976 37 10.4475 37 10.9998C37 11.552 37.4477 11.9998 38 11.9998H40.9777L41 12C41.5178 12 41.9436 11.6065 41.9948 11.1022C41.9983 11.0686 42 11.0343 42 10.9998V8C42 7.44772 41.5523 7 41 7C40.4477 7 40 7.44772 40 8V8.10102C38.7295 6.80447 36.9587 6 35 6C31.134 6 28 9.13401 28 13C28 16.866 31.134 20 35 20C38.2804 20 41.0337 17.7436 41.7926 14.6982L39.8519 14.213Z"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20 33.874C21.7252 33.4299 23 31.8638 23 30C23 27.7909 21.2091 26 19 26C16.7909 26 15 27.7909 15 30C15 31.8638 16.2748 33.4299 18 33.874V37C18 37.5523 18.4477 38 19 38C19.5523 38 20 37.5523 20 37V33.874ZM21 30C21 31.1046 20.1046 32 19 32C17.8954 32 17 31.1046 17 30C17 28.8954 17.8954 28 19 28C20.1046 28 21 28.8954 21 30Z"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M28 22C30.2091 22 32 23.7909 32 26V38C32 40.2091 30.2091 42 28 42H10C7.79086 42 6 40.2091 6 38V26C6 23.7909 7.79086 22 10 22V19C10 14.0294 14.0294 10 19 10C23.9706 10 28 14.0294 28 19V22ZM26 19V22H24V19C24 16.2386 21.7614 14 19 14C16.2386 14 14 16.2386 14 19V22H12V19C12 15.134 15.134 12 19 12C22.866 12 26 15.134 26 19ZM22 19V22H16V19C16 17.3431 17.3431 16 19 16C20.6569 16 22 17.3431 22 19ZM30 26C30 24.8954 29.1046 24 28 24H10C8.89543 24 8 24.8954 8 26V38C8 39.1046 8.89543 40 10 40H28C29.1046 40 30 39.1046 30 38V26Z"})),blocks:[],actions:[],view:B,link:S},{__:F}=wp.i18n,{userLoginPattern:N}=JetFormEditorData.utmLinks,A={name:"user_login",title:F("User Login","jet-form-builder"),icon:(0,r.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M34 33C34 33.7532 33.5837 34.4091 32.9686 34.7502C32.9891 34.8301 33 34.9138 33 35V36C33 36.5523 32.5523 37 32 37C31.4477 37 31 36.5523 31 36V35C31 34.9138 31.0109 34.8301 31.0314 34.7502C30.4163 34.4091 30 33.7532 30 33C30 31.8954 30.8954 31 32 31C33.1046 31 34 31.8954 34 33ZM32 33.7692C32.4248 33.7692 32.7692 33.4248 32.7692 33C32.7692 32.5752 32.4248 32.2308 32 32.2308C31.5752 32.2308 31.2308 32.5752 31.2308 33C31.2308 33.4248 31.5752 33.7692 32 33.7692Z"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M26.6739 28C26.193 27.8933 25.7793 27.7911 25.4313 27.6698C25.0307 27.53 24.8148 27.3967 24.7072 27.2891C24.2501 26.8318 24.0892 26.4008 24.0318 25.8957C27.1814 25.2836 29 21.9956 29 18.9926L29 18.8929C29.0001 17.4806 29.0001 16.4097 28.8614 15.577C28.7049 14.6375 28.3659 13.9425 27.7072 13.2837C26.8574 12.4335 25.4526 11.6321 24.8214 11.2916L24.0627 9.01449C23.8609 8.409 23.2786 7.96465 22.5863 8.00277C21.946 8.03803 20.5966 8.16364 19.1161 8.62065C17.645 9.07477 15.9523 9.88447 14.7317 11.3498C12.9813 13.451 12.9894 15.7657 12.9986 18.4079C12.9993 18.601 13 18.796 13 18.9926C13 21.9956 14.8186 25.2836 17.9682 25.8957C17.9108 26.4008 17.7499 26.8318 17.2928 27.2891C17.2043 27.3776 17.002 27.5046 16.5958 27.6447C16.2031 27.7802 15.7235 27.8946 15.158 28.0203C15.0625 28.0415 14.9645 28.063 14.8643 28.085C13.8394 28.31 12.5881 28.5846 11.5526 29.1025C10.512 29.6231 9.6057 30.2018 8.96901 30.998C8.30377 31.8298 8 32.8117 8 33.9984V36.4996C8 37.328 8.67157 37.9996 9.5 37.9996H24C24 39.1042 24.8954 40 26 40H38C39.1046 40 40 39.1046 40 38V30C40 28.8954 39.1046 28 38 28H36V27C36 24.7909 34.2091 23 32 23C29.7909 23 28 24.7909 28 27V28H26.6739ZM22.2927 10.0294C21.6709 10.0858 20.719 10.219 19.706 10.5317C18.428 10.9262 17.1445 11.578 16.2683 12.6299C14.9968 14.1564 14.9979 15.7494 14.9998 18.6379L15 18.9926C15 21.5216 16.5799 23.7403 18.6143 23.9731C19.3063 24.0523 20.0196 24.6348 19.995 25.5226C19.9682 26.488 19.7931 27.6167 18.7072 28.7031C18.2957 29.1148 17.748 29.3629 17.248 29.5354C16.7344 29.7126 16.1515 29.8483 15.592 29.9726L15.3351 30.0295C14.254 30.2685 13.2475 30.491 12.4474 30.8912C11.488 31.3711 10.8943 31.7927 10.531 32.2471C10.1962 32.6657 10 33.1844 10 33.9984V35.9996H24V30C24 29.75 24.0459 29.5108 24.1296 29.2902C23.829 29.1393 23.5391 28.9495 23.2928 28.7031C22.2069 27.6167 22.0318 26.488 22.005 25.5226C21.9804 24.6348 22.6937 24.0523 23.3857 23.9731C25.4201 23.7403 27 21.5216 27 18.9926C27 17.4531 26.9966 16.554 26.8886 15.9056C26.7951 15.3445 26.6341 15.0391 26.2928 14.6976C25.5989 14.0034 24.2493 13.2497 23.7174 12.9694C23.3781 12.7907 23.1115 12.4865 22.9858 12.1095L22.2927 10.0294ZM34 28V27C34 25.8954 33.1046 25 32 25C30.8954 25 30 25.8954 30 27V28H34ZM38 30V38H26V30H38Z"})),blocks:[],actions:[],view:B,link:N},{__:D}=wp.i18n,J={name:"donation",title:D("Paypal donation","jet-form-builder"),icon:(0,r.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,r.createElement)("path",{d:"M12 19.0075C12 18.4511 12.4477 18.0001 13 18.0001H27C27.5523 18.0001 28 18.4511 28 19.0075C28 19.5639 27.5523 20.0149 27 20.0149H13C12.4477 20.0149 12 19.5639 12 19.0075Z"}),(0,r.createElement)("path",{d:"M13 22.0297C12.4477 22.0297 12 22.4807 12 23.0371C12 23.5934 12.4477 24.0445 13 24.0445H21C21.5523 24.0445 22 23.5934 22 23.0371C22 22.4807 21.5523 22.0297 21 22.0297H13Z"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M38.4179 29.1868C39.3793 28.4563 40 27.3006 40 26V12C40 9.79086 38.2091 8 36 8H12C9.79086 8 8 9.79086 8 12V26C8 28.2091 9.79086 30 12 30H25.0524L24.2057 34.8272C24.0984 35.4393 24.5693 36 25.1907 36H27.683L27.1995 38.8318C27.0952 39.4425 27.5657 40.0001 28.1852 40.0001H31.7299C32.2172 40.0001 32.6335 39.6489 32.7156 39.1687L33.1342 36.7206C33.8865 36.6923 35.6504 36.5206 36.3404 36.1613L36.3467 36.158C37.0997 35.7624 37.7221 35.1918 38.1818 34.4654C38.6527 33.7235 38.9002 32.8945 38.9776 32.0383L38.9782 32.031C39.046 31.2507 38.96 30.4605 38.6605 29.7069C38.5903 29.5269 38.5093 29.3533 38.4179 29.1868ZM36 10H12C10.9003 10 10.0079 10.8875 10.0001 11.9854H37.9999C37.9921 10.8875 37.0997 10 36 10ZM38 14.0001H10V26C10 27.1046 10.8954 28 12 28H25.4032L26.3102 22.8287C26.3943 22.3497 26.8107 22.0006 27.297 22.0015L32.3783 22.0106L32.4074 22.0115C33.3187 22.0392 34.229 22.2741 35.0217 22.8279C35.7602 23.336 36.3027 24.0245 36.6306 24.8434C36.9553 25.6382 37.0506 26.4763 36.976 27.3126L36.9754 27.3196C36.9656 27.4252 36.9534 27.5302 36.9386 27.6347C36.975 27.6572 37.0113 27.6803 37.0473 27.7042C37.6189 27.3521 38 26.7206 38 26V14.0001ZM31.5153 30.2977C31.6096 30.2967 31.7023 30.2929 31.7934 30.2864C32.303 30.2501 32.7625 30.1282 33.1718 29.9207L33.185 29.9139L33.1958 29.9083C33.6942 29.6486 34.0939 29.287 34.3948 28.8236L34.399 28.8171L34.4054 28.8073C34.675 28.3888 34.8485 27.9035 34.9258 27.3514L34.9262 27.3487C34.9359 27.2791 34.9441 27.2084 34.9508 27.1367C34.9829 26.7767 34.9672 26.4385 34.9036 26.122L34.898 26.0948C34.861 25.9187 34.8091 25.7495 34.7423 25.587C34.6085 25.2504 34.4168 24.9627 34.1672 24.7238L34.1505 24.708C34.0589 24.622 33.9597 24.5424 33.8528 24.4693C33.4548 24.1894 32.9596 24.0388 32.3673 24.0175L32.3448 24.0168L28.1664 24.0099L26.5 34H28L28.6711 30.2978H31.4275C31.4475 30.298 31.4674 30.298 31.4872 30.2979L31.5153 30.2977ZM30.3948 32.4614L30.4224 32.3041C31.347 32.3071 33.2687 32.1271 34.1009 31.7052L34.1072 31.702C34.9281 31.2822 35.6047 30.6781 36.1051 29.9083C36.1524 29.8358 36.1976 29.7625 36.2409 29.6884L36.2496 29.6968L36.264 29.7108C36.4793 29.9225 36.6447 30.1775 36.7601 30.4758C36.8178 30.6198 36.8625 30.7698 36.8945 30.9258L36.8993 30.9499C36.9541 31.2304 36.9676 31.5301 36.9399 31.8492C36.9342 31.9127 36.9271 31.9753 36.9188 32.037L36.9184 32.0394C36.8517 32.5286 36.7021 32.9587 36.4695 33.3297L36.464 33.3383L36.4604 33.3441C36.2008 33.7548 35.856 34.0752 35.426 34.3054L35.4167 34.3103L35.4053 34.3163C35.1352 34.457 34.8398 34.5533 34.5189 34.6052C34.3844 34.6269 34.2454 34.6409 34.102 34.647C34.0605 34.6488 34.0186 34.6499 33.9763 34.6504L33.9522 34.6506C33.9351 34.6507 33.9179 34.6507 33.9007 34.6506L31.6059 34.647L31 37.9999H29.5L30.3948 32.4614Z"})),actions:[],blocks:[["jet-forms/number-field",{name:"amount",label:"Amount"}],["jet-forms/submit-field"]],meta:{_jf_gateways:'{"gateway":"paypal","paypal":{"use_global":true,"currency":"USD","scenario":{"id":"PAY_NOW"}},"price_field":"price"}'},applyText:D("2 blocks and PayPal Gateway have been added","jet-form-builder")},{__:U}=wp.i18n,G={name:"contact",title:U("Contact form","jet-form-builder"),icon:(0,r.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,r.createElement)("path",{d:"M16.8 10C16.3582 10 16 10.4477 16 11C16 11.5523 16.3582 12 16.8 12H31.2C31.6418 12 32 11.5523 32 11C32 10.4477 31.6418 10 31.2 10H16.8Z"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 19C12 17.3431 13.3431 16 15 16H33C34.6569 16 36 17.3431 36 19C36 20.6569 34.6569 22 33 22H15C13.3431 22 12 20.6569 12 19ZM15 18C14.4477 18 14 18.4477 14 19C14 19.5523 14.4477 20 15 20H33C33.5523 20 34 19.5523 34 19C34 18.4477 33.5523 18 33 18H15Z"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15 24C13.3431 24 12 25.3431 12 27C12 28.6569 13.3431 30 15 30H33C34.6569 30 36 28.6569 36 27C36 25.3431 34.6569 24 33 24H15ZM14 27C14 26.4477 14.4477 26 15 26H33C33.5523 26 34 26.4477 34 27C34 27.5523 33.5523 28 33 28H15C14.4477 28 14 27.5523 14 27Z"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18 35C18 33.3431 19.3431 32 21 32H27C28.6569 32 30 33.3431 30 35C30 36.6569 28.6569 38 27 38H21C19.3431 38 18 36.6569 18 35ZM21 34C20.4477 34 20 34.4477 20 35C20 35.5523 20.4477 36 21 36H27C27.5523 36 28 35.5523 28 35C28 34.4477 27.5523 34 27 34H21Z"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 8C8 5.79086 9.79086 4 12 4H36C38.2091 4 40 5.79086 40 8V40C40 42.2091 38.2091 44 36 44H12C9.79086 44 8 42.2091 8 40V8ZM12 6H36C37.1046 6 38 6.89543 38 8V40C38 41.1046 37.1046 42 36 42H12C10.8954 42 10 41.1046 10 40V8C10 6.89543 10.8954 6 12 6Z"})),actions:[{type:"send_email",settings:{mail_to:"form",from_field:"email",subject:"%subject%",content:"%message%"}}],blocks:[["jet-forms/text-field",{name:"email",label:"Email",field_type:"email"}],["jet-forms/text-field",{name:"subject",label:"Subject"}],["jet-forms/wysiwyg-field",{name:"message",label:"Message"}],["jet-forms/submit-field"]],applyText:U("4 blocks and Send Email action have been added","jet-form-builder")},{__:q}=wp.i18n,z={name:"newsletter",title:q("Newsletter Signup Form","jet-form-builder"),icon:(0,r.createElement)("svg",{width:"48",height:"48",viewBox:"0 0 48 48",fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"},(0,r.createElement)("path",{d:"M29.7071 14.7071C30.0976 14.3166 30.0976 13.6834 29.7071 13.2929C29.3166 12.9024 28.6834 12.9024 28.2929 13.2929L23 18.5858L19.7071 15.2929C19.3166 14.9024 18.6834 14.9024 18.2929 15.2929C17.9024 15.6834 17.9024 16.3166 18.2929 16.7071L21.9393 20.3536C22.5251 20.9393 23.4749 20.9393 24.0607 20.3536L29.7071 14.7071Z"}),(0,r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.4701 21.7063L14 18.2511V11C14 9.34315 15.3431 8 17 8H31C32.6569 8 34 9.34315 34 11V18.2511L39.5299 21.7063C39.8223 21.889 40 22.2095 40 22.5544V37C40 38.6569 38.6569 40 37 40H11C9.34315 40 8 38.6569 8 37V22.5544C8 22.2095 8.17766 21.889 8.4701 21.7063ZM17 10H31C31.5523 10 32 10.4477 32 11V25.6793L29.2193 27.6258L25.4551 23.6332C24.6657 22.7958 23.3341 22.7958 22.5446 23.6332L18.7806 27.6257L16 25.6793V11C16 10.4477 16.4477 10 17 10ZM17.394 29.0965L10 23.9207V36.9393L17.394 29.0965ZM14 20.6094L11.2298 22.3402L14 24.2793V20.6094ZM34 24.2793V20.6094L36.7701 22.3402L34 24.2793ZM30.6059 29.0966L38 23.9207V36.9395L30.6059 29.0966ZM10.991 38H37.009L37 38H11L10.991 38ZM11.759 37.9891H36.2408L23.9999 25.0051L11.759 37.9891Z"})),actions:[{type:"mailchimp"}],blocks:[["core/columns",{},[["core/column",{},[["jet-forms/text-field",{name:"email",field_type:"email",placeholder:"Enter you email"}]]],["core/column",{},[["jet-forms/submit-field"]]]]]],applyText:q("2 form fields and Mailchimp action have been added","jet-form-builder")};var O,Y;(0,m.register)(E),(0,m.dispatch)(e).register([M,G,x,z,y,P,J,I,A]),window.JetFBComponents={...null!==(O=window.JetFBComponents)&&void 0!==O?O:{},PatternInserterButton:H},window.JetFBHooks={...null!==(Y=window.JetFBHooks)&&void 0!==Y?Y:{},usePattern:w}})(); \ No newline at end of file diff --git a/modules/onboarding/assets/build/preview.frontend.asset.php b/modules/onboarding/assets/build/preview.frontend.asset.php index 41cf2d78a..6b9aa574a 100644 --- a/modules/onboarding/assets/build/preview.frontend.asset.php +++ b/modules/onboarding/assets/build/preview.frontend.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => '199c91a398c07de13c85'); + array('react', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => '365094521d4249be810d'); diff --git a/modules/onboarding/assets/build/preview.frontend.js b/modules/onboarding/assets/build/preview.frontend.js index 4f42296f2..f5f2acd1d 100644 --- a/modules/onboarding/assets/build/preview.frontend.js +++ b/modules/onboarding/assets/build/preview.frontend.js @@ -1 +1 @@ -(()=>{"use strict";var e={996(e,t,r){r.d(t,{A:()=>s});var n=r(168),o=r.n(n),a=r(433),i=r.n(a)()(o());i.push([e.id,"header.page-header,header.entry-header,.jfb-use-form-container{align-items:center;display:flex;justify-content:flex-start;flex-wrap:wrap;gap:2em}header.page-header h1,header.entry-header h1,.jfb-use-form-container h1{flex:0;text-wrap:nowrap}header.page-header .jfb-use-form-wrapper,header.entry-header .jfb-use-form-wrapper,.jfb-use-form-container .jfb-use-form-wrapper{flex:1}",""]);const s=i},433(e){e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r}).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var s=0;s0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=a),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),o&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=o):d[4]="".concat(o)),t.push(d))}},t}},168(e){e.exports=function(e){return e[1]}},673(e){var t=[];function r(e){for(var r=-1,n=0;n0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(n,e,t.options)}(t,e,r)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},626(e){e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.nc=void 0;const n=window.React,o=window.wp.element,a=window.wp.components,i=window.wp.i18n,s=window.wp.primitives,c=(0,n.createElement)(s.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(s.Path,{d:"M6.6 6L5.4 7l4.5 5-4.5 5 1.1 1 5.5-6-5.4-6zm6 0l-1.1 1 4.5 5-4.5 5 1.1 1 5.5-6-5.5-6z"})),u=window.jfb.useForm,d=window.wp.url,l=window.wp.data,p=+(0,d.getQueryArg)(window.location.href,"p"),f=document.createElement("div");f.classList.add("jfb-use-form-wrapper"),(0,o.createRoot)(f).render((0,n.createElement)(function(){const[e,t]=(0,o.useState)(!1),r=(0,l.useSelect)(e=>{const t=e("core").getEntityRecord("postType","jet-form-builder",p);return t?.meta?JSON.parse(t.meta._jf_args):{}},[]);return(0,n.createElement)(a.SlotFillProvider,null,(0,n.createElement)(a.Button,{variant:"secondary",icon:c,onClick:()=>t(!0)},(0,i.__)("Use the form","jet-form-builder")),e&&(0,n.createElement)(u.ResponsiveModal,{title:(0,i.__)("Use the form","jet-form-builder"),onRequestClose:()=>t(!1)},(0,n.createElement)(u.FormAttributesContext.Provider,{value:{formId:p,args:r,shouldUpdateForm:!1}},(0,n.createElement)(u.UseFormRoot,null))))},null));var m=r(673),v=r.n(m),h=r(598),w=r.n(h),y=r(262),b=r.n(y),g=r(657),x=r.n(g),j=r(357),E=r.n(j),S=r(626),A=r.n(S),C=r(996),M={};M.styleTagTransform=A(),M.setAttributes=x(),M.insert=b().bind(null,"head"),M.domAPI=w(),M.insertStyleElement=E(),v()(C.A,M),C.A&&C.A.locals&&C.A.locals;const{addAction:T}=JetPlugins.hooks;T("jet.fb.observe.after","jet-form-builder/use-form",function(e){if(e.parent)return;const t=e.rootNode.ownerDocument,r=t.querySelector("header.page-header, header.entry-header");if(r)return void r.append(f);const n=t.querySelector(".wp-block-post-title");if(n){const e=document.createElement("div");return e.classList.add("jfb-use-form-container"),n.parentElement.insertBefore(e,n),e.append(n),void e.append(f)}e.rootNode.parentElement.insertBefore(f,e.rootNode)})})(); \ No newline at end of file +(()=>{"use strict";var e={168:e=>{e.exports=function(e){return e[1]}},262:e=>{var t={};e.exports=function(e,r){var n=function(e){if(void 0===t[e]){var r=document.querySelector(e);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(e){r=null}t[e]=r}return t[e]}(e);if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");n.appendChild(r)}},357:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},433:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r})).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var s=0;s0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=a),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),o&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=o):d[4]="".concat(o)),t.push(d))}},t}},598:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(r){!function(e,t,r){var n="";r.supports&&(n+="@supports (".concat(r.supports,") {")),r.media&&(n+="@media ".concat(r.media," {"));var o=void 0!==r.layer;o&&(n+="@layer".concat(r.layer.length>0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(n,e,t.options)}(t,e,r)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},626:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},657:(e,t,r)=>{e.exports=function(e){var t=r.nc;t&&e.setAttribute("nonce",t)}},673:e=>{var t=[];function r(e){for(var r=-1,n=0;n{r.d(t,{A:()=>s});var n=r(168),o=r.n(n),a=r(433),i=r.n(a)()(o());i.push([e.id,"header.page-header,header.entry-header,.jfb-use-form-container{align-items:center;display:flex;justify-content:flex-start;flex-wrap:wrap;gap:2em}header.page-header h1,header.entry-header h1,.jfb-use-form-container h1{flex:0;text-wrap:nowrap}header.page-header .jfb-use-form-wrapper,header.entry-header .jfb-use-form-wrapper,.jfb-use-form-container .jfb-use-form-wrapper{flex:1}",""]);const s=i}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.nc=void 0;const n=window.React,o=window.wp.element,a=window.wp.components,i=window.wp.i18n,s=window.wp.primitives,c=(0,n.createElement)(s.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(s.Path,{d:"M6.6 6L5.4 7l4.5 5-4.5 5 1.1 1 5.5-6-5.4-6zm6 0l-1.1 1 4.5 5-4.5 5 1.1 1 5.5-6-5.5-6z"})),u=window.jfb.useForm,d=window.wp.url,l=window.wp.data,p=+(0,d.getQueryArg)(window.location.href,"p"),f=document.createElement("div");f.classList.add("jfb-use-form-wrapper"),(0,o.createRoot)(f).render((0,n.createElement)((function(){const[e,t]=(0,o.useState)(!1),r=(0,l.useSelect)((e=>{const t=e("core").getEntityRecord("postType","jet-form-builder",p);return t?.meta?JSON.parse(t.meta._jf_args):{}}),[]);return(0,n.createElement)(a.SlotFillProvider,null,(0,n.createElement)(a.Button,{variant:"secondary",icon:c,onClick:()=>t(!0)},(0,i.__)("Use the form","jet-form-builder")),e&&(0,n.createElement)(u.ResponsiveModal,{title:(0,i.__)("Use the form","jet-form-builder"),onRequestClose:()=>t(!1)},(0,n.createElement)(u.FormAttributesContext.Provider,{value:{formId:p,args:r,shouldUpdateForm:!1}},(0,n.createElement)(u.UseFormRoot,null))))}),null));var m=r(673),v=r.n(m),h=r(598),w=r.n(h),y=r(262),b=r.n(y),g=r(657),x=r.n(g),j=r(357),E=r.n(j),S=r(626),A=r.n(S),C=r(996),M={};M.styleTagTransform=A(),M.setAttributes=x(),M.insert=b().bind(null,"head"),M.domAPI=w(),M.insertStyleElement=E(),v()(C.A,M),C.A&&C.A.locals&&C.A.locals;const{addAction:T}=JetPlugins.hooks;T("jet.fb.observe.after","jet-form-builder/use-form",(function(e){if(e.parent)return;const t=e.rootNode.ownerDocument,r=t.querySelector("header.page-header, header.entry-header");if(r)return void r.append(f);const n=t.querySelector(".wp-block-post-title");if(n){const e=document.createElement("div");return e.classList.add("jfb-use-form-container"),n.parentElement.insertBefore(e,n),e.append(n),void e.append(f)}e.rootNode.parentElement.insertBefore(f,e.rootNode)}))})(); \ No newline at end of file diff --git a/modules/onboarding/use-form/assets/build/index.asset.php b/modules/onboarding/use-form/assets/build/index.asset.php index 9001606c8..3288d3b99 100644 --- a/modules/onboarding/use-form/assets/build/index.asset.php +++ b/modules/onboarding/use-form/assets/build/index.asset.php @@ -1 +1 @@ - array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '8a8b109210a92aabb4e9'); + array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '514307281cdc54606b0e'); diff --git a/modules/onboarding/use-form/assets/build/index.js b/modules/onboarding/use-form/assets/build/index.js index 2c1a413a5..801b48dee 100644 --- a/modules/onboarding/use-form/assets/build/index.js +++ b/modules/onboarding/use-form/assets/build/index.js @@ -1 +1 @@ -(()=>{"use strict";var e={213(e,t,r){r.d(t,{A:()=>s});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".v1r6eq2m{border:0;margin:0 auto;display:var(--v1r6eq2m-0);width:100%;aspect-ratio:16/9}\n",""]);const s=i},994(e,t,r){r.d(t,{A:()=>s});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".d14lelsy{margin:unset;font-size:13px}\n",""]);const s=i},314(e,t,r){r.d(t,{A:()=>s});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".n18kmlcf{margin:inherit;margin-bottom:1em}\n",""]);const s=i},114(e,t,r){r.d(t,{A:()=>s});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,"@media (min-width:900px){.r1sjigux.r1sjigux{width:70vw}}@media (min-width:1200px){.r1sjigux.r1sjigux{width:55vw}}\n",""]);const s=i},638(e,t,r){r.d(t,{A:()=>s});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".s1x5f7i9{margin:unset;font-size:18px}\n",""]);const s=i},186(e){e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r}).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=a),r&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=r):u[2]=r),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),t.push(u))}},t}},721(e){e.exports=function(e){return e[1]}},804(e,t,r){r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),s=r(811),l=r.n(s),c=r(272),u=r.n(c),d=r(332),p=r.n(d),m=r(745),f=r.n(m),g=r(213),h={};h.styleTagTransform=f(),h.setAttributes=u(),h.insert=l().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0},747(e,t,r){r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),s=r(811),l=r.n(s),c=r(272),u=r.n(c),d=r(332),p=r.n(d),m=r(745),f=r.n(m),g=r(994),h={};h.styleTagTransform=f(),h.setAttributes=u(),h.insert=l().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0},935(e,t,r){r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),s=r(811),l=r.n(s),c=r(272),u=r.n(c),d=r(332),p=r.n(d),m=r(745),f=r.n(m),g=r(314),h={};h.styleTagTransform=f(),h.setAttributes=u(),h.insert=l().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0},152(e,t,r){r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),s=r(811),l=r.n(s),c=r(272),u=r.n(c),d=r(332),p=r.n(d),m=r(745),f=r.n(m),g=r(114),h={};h.styleTagTransform=f(),h.setAttributes=u(),h.insert=l().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0},733(e,t,r){r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),s=r(811),l=r.n(s),c=r(272),u=r.n(c),d=r(332),p=r.n(d),m=r(745),f=r.n(m),g=r(638),h={};h.styleTagTransform=f(),h.setAttributes=u(),h.insert=l().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0},264(e){var t=[];function r(e){for(var r=-1,n=0;n0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(n,e,t.options)}(t,e,r)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},745(e){e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nc=void 0;var n={};r.r(n),r.d(n,{BuilderHelpSlotFill:()=>J,Description:()=>Q,FormAttributesContext:()=>le,ResponsiveModal:()=>ye,UseFormRoot:()=>he,usePluginUseSettings:()=>de});var o={};r.r(o),r.d(o,{getBuilder:()=>h,getBuilderIndex:()=>f,getBuilders:()=>g,getCurrentBuilder:()=>m,getError:()=>b,getSetting:()=>y,getSettings:()=>v,isExecuting:()=>w});var a={};r.r(a),r.d(a,{createNewPage:()=>F,finishExecution:()=>U,makeFetch:()=>R,maybeSaveForm:()=>O,registerBuilders:()=>P,setError:()=>B,startExecution:()=>M,unRegisterBuilders:()=>C,updateSelectedPage:()=>_,updateSettings:()=>I,useForm:()=>j});const i=window.wp.data,s="jet-forms/use-form",l="REGISTER_BUIlDER",c="UNREGISTER_BUILDER",u="UPDATE_SETTING",d="SET_ERROR",p="TOGGLE_EXECUTION";function m(e){return h(e,e.settings?.builder||"blocks")}function f(e,t){return e.builders.findIndex(e=>e.name===t)}function g(e){return e.builders}function h(e,t){const r=f(e,t);return e.builders[r]}function y(e,t){return e.settings[t]}function v(e){return e.settings}function b(e){var t;return null!==(t=e?.error)&&void 0!==t&&t}function w(e,t="default"){var r;return null!==(r=e?.isExecuting?.[t])&&void 0!==r&&r}const E={src:"https://www.youtube.com/embed/LBO8E7W4AF0"},x={[l](e,t){Array.isArray(t.items)||(t.items=[t.items]);for(let n of t.items){if(!n.hasOwnProperty("name"))continue;const t=f(e,n.name);var r;-1===t?(null!==(r=n.embed)&&void 0!==r||(n.embed={...E}),e.builders.push({...n})):e.builders[t]={...e.builders[t],...n}}return e},[c](e,t){const{names:r}=t;return e.builders=e.builders.filter(({name:e})=>!r.includes(e)),e},[u](e,t){const{settings:r}=t;return{...e,settings:{...e.settings,...r}}}};Object.defineProperty(A,"name",{value:"default",configurable:!0});const S={builders:[],settings:{}};function A(e=S,t){var r,n;const o=x[t?.type];if(o)return o(e,t);switch(t?.type){case d:return{...e,error:t.error};case p:return{...e,isExecuting:{...null!==(r=e.isExecuting)&&void 0!==r?r:{},[t.actionSlug]:!(null!==(n=e.isExecuting?.[t.actionSlug])&&void 0!==n&&n)}}}return e}const k=window.wp.apiFetch;var T=r.n(k);function P(e){return{type:l,items:e}}function C(e){return{type:c,names:e}}function I(e){return{type:u,settings:e}}const j=e=>async({dispatch:t,select:r})=>{const n="new"===r.getSetting("pageType")?await t.createNewPage(e):await t.updateSelectedPage(e);n?.redirect&&window.open(n.redirect)},F=({formId:e=0,shouldUpdateForm:t=!0})=>async({dispatch:r,select:n})=>{const o=n.getSetting("pageTitle"),a=n.getSetting("builder"),i={path:`jet-form-builder/v1/use-form/${e}`,method:"POST",data:{builder:a,pageTitle:o}};return t&&r.maybeSaveForm(),await r.makeFetch(i)},_=({formId:e=0,shouldUpdateForm:t=!0})=>async({dispatch:r,select:n})=>{const o=n.getSetting("pageId"),a=n.getSetting("builder"),i={path:`jet-form-builder/v1/use-form/${e}`,method:"POST",data:{builder:a,pageId:o}};return t&&r.maybeSaveForm(),await r.makeFetch(i)},R=e=>async({dispatch:t,registry:r})=>{let n;t.startExecution();try{n=await T()(e)}catch(e){return void t.setError(e)}finally{t.finishExecution()}return n},O=()=>({registry:e})=>{const t=e.select("core/editor").isSavingPost(),r=e.select("core/editor").isEditedPostSaveable(),n=e.select("core/editor").isPostSavingLocked(),o=e.select("core/editor").hasNonPostEntityChanges(),a=e.select("core/editor").isSavingNonPostEntityChanges(),i=e.select("core/editor").isEditedPostPublishable();if((t||!r||n||!i)&&(!o||a))return;const{savePost:s,editPost:l}=e.dispatch("core/editor");"publish"!==e.select("core/editor").getEditedPostAttribute("status")&&l({status:"draft"}),s()},B=e=>({type:d,error:e}),M=(e="default")=>({dispatch:t})=>{t.setError({}),t({type:p,actionSlug:e})},U=(e="default")=>({type:p,actionSlug:e}),H=(0,i.createReduxStore)(s,{reducer:A,actions:a,selectors:o}),L=window.React,N=window.wp.components,D=window.wp.i18n;function V(e){var t=Object.create(null);return function(r){return void 0===t[r]&&(t[r]=e(r)),t[r]}}var z=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,q=V(function(e){return z.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),W=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},r=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,r]=e.split("_");t[r]=e}else r.push(e)})});const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...r),n.join(" ")},G=(e,t)=>{const r={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{r[t]=e[t]}),r},X=(e,t)=>{},$=function(e){let t="";return r=>{const n=(n,o)=>{const{as:a=e,class:i=t}=n;var s;const l=function(e,t){const r=G(t,["as","class"]);if(!e){const e="function"==typeof q?{default:q}:q;Object.keys(r).forEach(t=>{e.default(t)||delete r[t]})}return r}(void 0===r.propsAsIs?!("string"==typeof a&&-1===a.indexOf("-")&&(s=a[0],s.toUpperCase()!==s)):r.propsAsIs,n);l.ref=o,l.className=r.atomic?W(r.class,l.className||i):W(l.className||i,r.class);const{vars:c}=r;if(c){const e={};for(const t in c){const o=c[t],a=o[0],i=o[1]||"",s="function"==typeof a?a(n):a;X(0,r.name),e[`--${t}`]=`${s}${i}`}const t=l.style||{},o=Object.keys(t);o.length>0&&o.forEach(r=>{e[r]=t[r]}),l.style=e}return e.__wyw_meta&&e!==a?(l.as=a,(0,L.createElement)(e,l)):(0,L.createElement)(a,l)},o=L.forwardRef?(0,L.forwardRef)(n):e=>{const t=G(e,["innerRef"]);return n(t,e.innerRef)};return o.displayName=r.name,o.__wyw_meta={className:r.class||t,extends:e},o}};const Y=$(N.Notice)({name:"NoticeWithoutMargin",class:"n18kmlcf",propsAsIs:!0});r(935);const Z=function(){const e=(0,i.useSelect)(e=>e("jet-forms/use-form").getError(),[]),{setError:t}=(0,i.useDispatch)("jet-forms/use-form");return Boolean(e?.message)&&(0,L.createElement)(Y,{status:"error",onDismiss:()=>t({})},e.message)},J=(0,N.createSlotFill)("JFBBuilderHelp"),K=$("h3")({name:"SecondaryTitle",class:"s1x5f7i9",propsAsIs:!1});r(733);const Q=$("p")({name:"Description",class:"d14lelsy",propsAsIs:!1});r(747);const ee=function(){const e=(0,i.useSelect)(e=>e("jet-forms/use-form").getBuilders(),[]);return(0,L.createElement)(N.Flex,{direction:"column",gap:3},(0,L.createElement)(Z,null),(0,L.createElement)(K,null,(0,D.__)("1. How you want to use the form?","jet-form-builder")),(0,L.createElement)(Q,null,(0,D.__)("Please select the method how you planning to use the form - as element of page builder, as block or a plain shortcode","jet-form-builder")),(0,L.createElement)(N.Flex,{justify:"flex-start",wrap:!0},e.map(({name:e,view:t})=>(0,L.createElement)(t,{key:e,name:e}))),(0,L.createElement)(J.Slot,null))},te=window.wp.primitives,re=(0,L.createElement)(te.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,L.createElement)(te.Path,{d:"m19 7-3-3-8.5 8.5-1 4 4-1L19 7Zm-7 11.5H5V20h7v-1.5Z"})),ne=(0,L.createElement)(te.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,L.createElement)(te.Path,{d:"M11 12.5V17.5H12.5V12.5H17.5V11H12.5V6H11V11H6V12.5H11Z"})),oe=window.wp.element,ae=$("iframe")({name:"VideoIframe",class:"v1r6eq2m",propsAsIs:!1,vars:{"v1r6eq2m-0":[({showVideo:e})=>e?"block":"none"]}}),ie=function(){const e=(0,i.useSelect)(e=>e("jet-forms/use-form").getCurrentBuilder(),[]),[t,r]=(0,oe.useState)(!1);return(0,L.createElement)(L.Fragment,null,(0,L.createElement)("div",null,(0,L.createElement)(N.Button,{variant:"link",onClick:()=>r(e=>!e)},t?(0,D.__)("Hide video instructions","jet-form-builder"):(0,D.__)("Show video instructions","jet-form-builder"))),(0,L.createElement)(ae,{src:e.embed.src,allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",referrerPolicy:"strict-origin-when-cross-origin",allowFullScreen:!0,showVideo:t}))};r(804);const se=window.wp.coreData,le=(0,oe.createContext)({formId:0,args:{},shouldUpdateForm:!0}),ce=function({disabled:e=!1}){const{useForm:t}=(0,i.useDispatch)("jet-forms/use-form"),{formId:r,shouldUpdateForm:n}=(0,oe.useContext)(le),o=(0,i.useSelect)(e=>e("jet-forms/use-form").isExecuting(),[]);return(0,L.createElement)(N.Button,{variant:"primary",onClick:()=>t({formId:r,shouldUpdateForm:n}),isBusy:o,disabled:o||e},(0,D.__)("Use the form","jet-form-builder"))},ue=window.wp.compose,de=function(){const{updateSettings:e}=(0,i.useDispatch)(s);return[(0,i.useSelect)(e=>e(s).getSettings(),[]),e]},pe=window.jfb.components,me=function(){var e;const[t,r]=de(),[n,o,a]=(0,ue.useDebouncedInput)(""),i=(0,se.useEntityRecords)("postType","page",{per_page:20,search:a}),s=null!==(e=i.records?.map?.(e=>({value:e.id,label:e.title.raw})))&&void 0!==e?e:[];return(0,L.createElement)(L.Fragment,null,(0,L.createElement)(pe.Label,null,(0,D.__)("Select a page","jet-form-builder")),(0,L.createElement)(pe.StyledFlexControl,{align:"flex-start"},(0,L.createElement)(N.FlexBlock,null,(0,L.createElement)(pe.StyledComboboxControl,{options:s,value:t.pageId,onChange:e=>r({pageId:e}),onFilterValueChange:o})),(0,L.createElement)(ce,{disabled:!Boolean(n.length)&&!t.pageId})))},fe=function(){const[e,t]=de();return(0,L.createElement)(L.Fragment,null,(0,L.createElement)(pe.Label,null,(0,D.__)("Page title","jet-form-builder")),(0,L.createElement)(pe.StyledFlexControl,{align:"flex-start"},(0,L.createElement)(N.FlexBlock,null,(0,L.createElement)(pe.StyledTextControl,{value:e.pageTitle,onChange:e=>t({pageTitle:e})})),(0,L.createElement)(ce,{disabled:!Boolean(e?.pageTitle?.length)})))},ge=function(){const[e,t]=de();return(0,L.createElement)(N.Flex,{direction:"column",gap:3},(0,L.createElement)(K,null,(0,D.__)("2. Where you want to use the form?","jet-form-builder")),(0,L.createElement)(Q,null,(0,D.__)("Where you want to place the form","jet-form-builder")),(0,L.createElement)(N.Flex,{direction:"column",gap:3},(0,L.createElement)(N.Flex,{justify:"flex-start",wrap:!0,gap:3},(0,L.createElement)(N.Button,{onClick:()=>t({pageType:"select"}),icon:re,variant:"select"===e.pageType?"primary":"secondary"},(0,D.__)("Select page to add the form","jet-form-builder")),(0,L.createElement)(Q,null,(0,D.__)("or","jet-form-builder")),(0,L.createElement)(N.Button,{onClick:()=>t({pageType:"new"}),icon:ne,variant:"new"===e.pageType?"primary":"secondary"},(0,D.__)("Create new page","jet-form-builder"))),"select"===e.pageType&&(0,L.createElement)(me,null),"new"===e.pageType&&(0,L.createElement)(fe,null),(0,L.createElement)(ie,null)))},he=function(){return(0,L.createElement)(N.Flex,{direction:"column",gap:8},(0,L.createElement)("div",null,(0,L.createElement)(ee,null)),(0,L.createElement)("div",null,(0,L.createElement)(ge,null)))},ye=$(N.Modal)({name:"ResponsiveModal",class:"r1sjigux",propsAsIs:!0});r(152),(0,i.register)(H),(window.jfb=window.jfb||{}).useForm=n})(); \ No newline at end of file +(()=>{"use strict";var e={114:(e,t,r)=>{r.d(t,{A:()=>s});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,"@media (min-width:900px){.r1sjigux.r1sjigux{width:70vw}}@media (min-width:1200px){.r1sjigux.r1sjigux{width:55vw}}\n",""]);const s=i},152:(e,t,r)=>{r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),s=r(811),l=r.n(s),c=r(272),u=r.n(c),d=r(332),p=r.n(d),m=r(745),f=r.n(m),g=r(114),h={};h.styleTagTransform=f(),h.setAttributes=u(),h.insert=l().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0},186:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r})).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var s=0;s0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=a),r&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=r):u[2]=r),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),t.push(u))}},t}},213:(e,t,r)=>{r.d(t,{A:()=>s});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".v1r6eq2m{border:0;margin:0 auto;display:var(--v1r6eq2m-0);width:100%;aspect-ratio:16/9}\n",""]);const s=i},264:e=>{var t=[];function r(e){for(var r=-1,n=0;n{e.exports=function(e){var t=r.nc;t&&e.setAttribute("nonce",t)}},314:(e,t,r)=>{r.d(t,{A:()=>s});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".n18kmlcf{margin:inherit;margin-bottom:1em}\n",""]);const s=i},332:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},449:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(r){!function(e,t,r){var n="";r.supports&&(n+="@supports (".concat(r.supports,") {")),r.media&&(n+="@media ".concat(r.media," {"));var o=void 0!==r.layer;o&&(n+="@layer".concat(r.layer.length>0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(n,e,t.options)}(t,e,r)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},638:(e,t,r)=>{r.d(t,{A:()=>s});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".s1x5f7i9{margin:unset;font-size:18px}\n",""]);const s=i},721:e=>{e.exports=function(e){return e[1]}},733:(e,t,r)=>{r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),s=r(811),l=r.n(s),c=r(272),u=r.n(c),d=r(332),p=r.n(d),m=r(745),f=r.n(m),g=r(638),h={};h.styleTagTransform=f(),h.setAttributes=u(),h.insert=l().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0},745:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},747:(e,t,r)=>{r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),s=r(811),l=r.n(s),c=r(272),u=r.n(c),d=r(332),p=r.n(d),m=r(745),f=r.n(m),g=r(994),h={};h.styleTagTransform=f(),h.setAttributes=u(),h.insert=l().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0},804:(e,t,r)=>{r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),s=r(811),l=r.n(s),c=r(272),u=r.n(c),d=r(332),p=r.n(d),m=r(745),f=r.n(m),g=r(213),h={};h.styleTagTransform=f(),h.setAttributes=u(),h.insert=l().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0},811:e=>{var t={};e.exports=function(e,r){var n=function(e){if(void 0===t[e]){var r=document.querySelector(e);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(e){r=null}t[e]=r}return t[e]}(e);if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");n.appendChild(r)}},935:(e,t,r)=>{r.r(t),r.d(t,{default:()=>y});var n=r(264),o=r.n(n),a=r(449),i=r.n(a),s=r(811),l=r.n(s),c=r(272),u=r.n(c),d=r(332),p=r.n(d),m=r(745),f=r.n(m),g=r(314),h={};h.styleTagTransform=f(),h.setAttributes=u(),h.insert=l().bind(null,"head"),h.domAPI=i(),h.insertStyleElement=p(),o()(g.A,h);const y=g.A&&g.A.locals?g.A.locals:void 0},994:(e,t,r)=>{r.d(t,{A:()=>s});var n=r(721),o=r.n(n),a=r(186),i=r.n(a)()(o());i.push([e.id,".d14lelsy{margin:unset;font-size:13px}\n",""]);const s=i}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nc=void 0;var n={};r.r(n),r.d(n,{BuilderHelpSlotFill:()=>Y,Description:()=>J,FormAttributesContext:()=>ie,ResponsiveModal:()=>ge,UseFormRoot:()=>fe,usePluginUseSettings:()=>ce});var o={};r.r(o),r.d(o,{getBuilder:()=>h,getBuilderIndex:()=>f,getBuilders:()=>g,getCurrentBuilder:()=>m,getError:()=>b,getSetting:()=>y,getSettings:()=>v,isExecuting:()=>w});var a={};r.r(a),r.d(a,{createNewPage:()=>j,finishExecution:()=>M,makeFetch:()=>_,maybeSaveForm:()=>R,registerBuilders:()=>T,setError:()=>O,startExecution:()=>B,unRegisterBuilders:()=>P,updateSelectedPage:()=>F,updateSettings:()=>C,useForm:()=>I});const i=window.wp.data,s="jet-forms/use-form",l="REGISTER_BUIlDER",c="UNREGISTER_BUILDER",u="UPDATE_SETTING",d="SET_ERROR",p="TOGGLE_EXECUTION";function m(e){return h(e,e.settings?.builder||"blocks")}function f(e,t){return e.builders.findIndex((e=>e.name===t))}function g(e){return e.builders}function h(e,t){const r=f(e,t);return e.builders[r]}function y(e,t){return e.settings[t]}function v(e){return e.settings}function b(e){var t;return null!==(t=e?.error)&&void 0!==t&&t}function w(e,t="default"){var r;return null!==(r=e?.isExecuting?.[t])&&void 0!==r&&r}const E={src:"https://www.youtube.com/embed/LBO8E7W4AF0"},x={[l](e,t){Array.isArray(t.items)||(t.items=[t.items]);for(let n of t.items){if(!n.hasOwnProperty("name"))continue;const t=f(e,n.name);var r;-1===t?(null!==(r=n.embed)&&void 0!==r||(n.embed={...E}),e.builders.push({...n})):e.builders[t]={...e.builders[t],...n}}return e},[c](e,t){const{names:r}=t;return e.builders=e.builders.filter((({name:e})=>!r.includes(e))),e},[u](e,t){const{settings:r}=t;return{...e,settings:{...e.settings,...r}}}},S={builders:[],settings:{}},A=window.wp.apiFetch;var k=r.n(A);function T(e){return{type:l,items:e}}function P(e){return{type:c,names:e}}function C(e){return{type:u,settings:e}}const I=e=>async({dispatch:t,select:r})=>{const n="new"===r.getSetting("pageType")?await t.createNewPage(e):await t.updateSelectedPage(e);n?.redirect&&window.open(n.redirect)},j=({formId:e=0,shouldUpdateForm:t=!0})=>async({dispatch:r,select:n})=>{const o=n.getSetting("pageTitle"),a=n.getSetting("builder"),i={path:`jet-form-builder/v1/use-form/${e}`,method:"POST",data:{builder:a,pageTitle:o}};return t&&r.maybeSaveForm(),await r.makeFetch(i)},F=({formId:e=0,shouldUpdateForm:t=!0})=>async({dispatch:r,select:n})=>{const o=n.getSetting("pageId"),a=n.getSetting("builder"),i={path:`jet-form-builder/v1/use-form/${e}`,method:"POST",data:{builder:a,pageId:o}};return t&&r.maybeSaveForm(),await r.makeFetch(i)},_=e=>async({dispatch:t,registry:r})=>{let n;t.startExecution();try{n=await k()(e)}catch(e){return void t.setError(e)}finally{t.finishExecution()}return n},R=()=>({registry:e})=>{const t=e.select("core/editor").isSavingPost(),r=e.select("core/editor").isEditedPostSaveable(),n=e.select("core/editor").isPostSavingLocked(),o=e.select("core/editor").hasNonPostEntityChanges(),a=e.select("core/editor").isSavingNonPostEntityChanges(),i=e.select("core/editor").isEditedPostPublishable();if((t||!r||n||!i)&&(!o||a))return;const{savePost:s,editPost:l}=e.dispatch("core/editor");"publish"!==e.select("core/editor").getEditedPostAttribute("status")&&l({status:"draft"}),s()},O=e=>({type:d,error:e}),B=(e="default")=>({dispatch:t})=>{t.setError({}),t({type:p,actionSlug:e})},M=(e="default")=>({type:p,actionSlug:e}),U=(0,i.createReduxStore)(s,{reducer:function(e=S,t){var r,n;const o=x[t?.type];if(o)return o(e,t);switch(t?.type){case d:return{...e,error:t.error};case p:return{...e,isExecuting:{...null!==(r=e.isExecuting)&&void 0!==r?r:{},[t.actionSlug]:!(null!==(n=e.isExecuting?.[t.actionSlug])&&void 0!==n&&n)}}}return e},actions:a,selectors:o}),H=window.React,L=window.wp.components,N=window.wp.i18n;function D(e){var t=Object.create(null);return function(r){return void 0===t[r]&&(t[r]=e(r)),t[r]}}var V=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,z=D((function(e){return V.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),q=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},r=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,r]=e.split("_");t[r]=e}else r.push(e)}))}));const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...r),n.join(" ")},W=(e,t)=>{const r={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach((t=>{r[t]=e[t]})),r},G=function(e){let t="";return r=>{const n=(n,o)=>{const{as:a=e,class:i=t}=n;var s;const l=function(e,t){const r=W(t,["as","class"]);if(!e){const e="function"==typeof z?{default:z}:z;Object.keys(r).forEach((t=>{e.default(t)||delete r[t]}))}return r}(void 0===r.propsAsIs?!("string"==typeof a&&-1===a.indexOf("-")&&(s=a[0],s.toUpperCase()!==s)):r.propsAsIs,n);l.ref=o,l.className=r.atomic?q(r.class,l.className||i):q(l.className||i,r.class);const{vars:c}=r;if(c){const e={};for(const t in c){const o=c[t],a=o[0],i=o[1]||"",s="function"==typeof a?a(n):a;r.name,e[`--${t}`]=`${s}${i}`}const t=l.style||{},o=Object.keys(t);o.length>0&&o.forEach((r=>{e[r]=t[r]})),l.style=e}return e.__wyw_meta&&e!==a?(l.as=a,(0,H.createElement)(e,l)):(0,H.createElement)(a,l)},o=H.forwardRef?(0,H.forwardRef)(n):e=>{const t=W(e,["innerRef"]);return n(t,e.innerRef)};return o.displayName=r.name,o.__wyw_meta={className:r.class||t,extends:e},o}};const X=G(L.Notice)({name:"NoticeWithoutMargin",class:"n18kmlcf",propsAsIs:!0});r(935);const $=function(){const e=(0,i.useSelect)((e=>e("jet-forms/use-form").getError()),[]),{setError:t}=(0,i.useDispatch)("jet-forms/use-form");return Boolean(e?.message)&&(0,H.createElement)(X,{status:"error",onDismiss:()=>t({})},e.message)},Y=(0,L.createSlotFill)("JFBBuilderHelp"),Z=G("h3")({name:"SecondaryTitle",class:"s1x5f7i9",propsAsIs:!1});r(733);const J=G("p")({name:"Description",class:"d14lelsy",propsAsIs:!1});r(747);const K=function(){const e=(0,i.useSelect)((e=>e("jet-forms/use-form").getBuilders()),[]);return(0,H.createElement)(L.Flex,{direction:"column",gap:3},(0,H.createElement)($,null),(0,H.createElement)(Z,null,(0,N.__)("1. How you want to use the form?","jet-form-builder")),(0,H.createElement)(J,null,(0,N.__)("Please select the method how you planning to use the form - as element of page builder, as block or a plain shortcode","jet-form-builder")),(0,H.createElement)(L.Flex,{justify:"flex-start",wrap:!0},e.map((({name:e,view:t})=>(0,H.createElement)(t,{key:e,name:e})))),(0,H.createElement)(Y.Slot,null))},Q=window.wp.primitives,ee=(0,H.createElement)(Q.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,H.createElement)(Q.Path,{d:"m19 7-3-3-8.5 8.5-1 4 4-1L19 7Zm-7 11.5H5V20h7v-1.5Z"})),te=(0,H.createElement)(Q.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,H.createElement)(Q.Path,{d:"M11 12.5V17.5H12.5V12.5H17.5V11H12.5V6H11V11H6V12.5H11Z"})),re=window.wp.element,ne=G("iframe")({name:"VideoIframe",class:"v1r6eq2m",propsAsIs:!1,vars:{"v1r6eq2m-0":[({showVideo:e})=>e?"block":"none"]}}),oe=function(){const e=(0,i.useSelect)((e=>e("jet-forms/use-form").getCurrentBuilder()),[]),[t,r]=(0,re.useState)(!1);return(0,H.createElement)(H.Fragment,null,(0,H.createElement)("div",null,(0,H.createElement)(L.Button,{variant:"link",onClick:()=>r((e=>!e))},t?(0,N.__)("Hide video instructions","jet-form-builder"):(0,N.__)("Show video instructions","jet-form-builder"))),(0,H.createElement)(ne,{src:e.embed.src,allow:"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",referrerPolicy:"strict-origin-when-cross-origin",allowFullScreen:!0,showVideo:t}))};r(804);const ae=window.wp.coreData,ie=(0,re.createContext)({formId:0,args:{},shouldUpdateForm:!0}),se=function({disabled:e=!1}){const{useForm:t}=(0,i.useDispatch)("jet-forms/use-form"),{formId:r,shouldUpdateForm:n}=(0,re.useContext)(ie),o=(0,i.useSelect)((e=>e("jet-forms/use-form").isExecuting()),[]);return(0,H.createElement)(L.Button,{variant:"primary",onClick:()=>t({formId:r,shouldUpdateForm:n}),isBusy:o,disabled:o||e},(0,N.__)("Use the form","jet-form-builder"))},le=window.wp.compose,ce=function(){const{updateSettings:e}=(0,i.useDispatch)(s);return[(0,i.useSelect)((e=>e(s).getSettings()),[]),e]},ue=window.jfb.components,de=function(){var e;const[t,r]=ce(),[n,o,a]=(0,le.useDebouncedInput)(""),i=(0,ae.useEntityRecords)("postType","page",{per_page:20,search:a}),s=null!==(e=i.records?.map?.((e=>({value:e.id,label:e.title.raw}))))&&void 0!==e?e:[];return(0,H.createElement)(H.Fragment,null,(0,H.createElement)(ue.Label,null,(0,N.__)("Select a page","jet-form-builder")),(0,H.createElement)(ue.StyledFlexControl,{align:"flex-start"},(0,H.createElement)(L.FlexBlock,null,(0,H.createElement)(ue.StyledComboboxControl,{options:s,value:t.pageId,onChange:e=>r({pageId:e}),onFilterValueChange:o})),(0,H.createElement)(se,{disabled:!Boolean(n.length)&&!t.pageId})))},pe=function(){const[e,t]=ce();return(0,H.createElement)(H.Fragment,null,(0,H.createElement)(ue.Label,null,(0,N.__)("Page title","jet-form-builder")),(0,H.createElement)(ue.StyledFlexControl,{align:"flex-start"},(0,H.createElement)(L.FlexBlock,null,(0,H.createElement)(ue.StyledTextControl,{value:e.pageTitle,onChange:e=>t({pageTitle:e})})),(0,H.createElement)(se,{disabled:!Boolean(e?.pageTitle?.length)})))},me=function(){const[e,t]=ce();return(0,H.createElement)(L.Flex,{direction:"column",gap:3},(0,H.createElement)(Z,null,(0,N.__)("2. Where you want to use the form?","jet-form-builder")),(0,H.createElement)(J,null,(0,N.__)("Where you want to place the form","jet-form-builder")),(0,H.createElement)(L.Flex,{direction:"column",gap:3},(0,H.createElement)(L.Flex,{justify:"flex-start",wrap:!0,gap:3},(0,H.createElement)(L.Button,{onClick:()=>t({pageType:"select"}),icon:ee,variant:"select"===e.pageType?"primary":"secondary"},(0,N.__)("Select page to add the form","jet-form-builder")),(0,H.createElement)(J,null,(0,N.__)("or","jet-form-builder")),(0,H.createElement)(L.Button,{onClick:()=>t({pageType:"new"}),icon:te,variant:"new"===e.pageType?"primary":"secondary"},(0,N.__)("Create new page","jet-form-builder"))),"select"===e.pageType&&(0,H.createElement)(de,null),"new"===e.pageType&&(0,H.createElement)(pe,null),(0,H.createElement)(oe,null)))},fe=function(){return(0,H.createElement)(L.Flex,{direction:"column",gap:8},(0,H.createElement)("div",null,(0,H.createElement)(K,null)),(0,H.createElement)("div",null,(0,H.createElement)(me,null)))},ge=G(L.Modal)({name:"ResponsiveModal",class:"r1sjigux",propsAsIs:!0});r(152),(0,i.register)(U),(window.jfb=window.jfb||{}).useForm=n})(); \ No newline at end of file diff --git a/modules/option-field/assets/build/auto-update.asset.php b/modules/option-field/assets/build/auto-update.asset.php index 9b3ef2efe..36ca6f501 100644 --- a/modules/option-field/assets/build/auto-update.asset.php +++ b/modules/option-field/assets/build/auto-update.asset.php @@ -1 +1 @@ - array(), 'version' => '252e9de461e3a30980a8'); + array(), 'version' => '7e8707cf73e0eb334c73'); diff --git a/modules/option-field/assets/build/auto-update.js b/modules/option-field/assets/build/auto-update.js index 8cde49bf8..e1deeb4df 100644 --- a/modules/option-field/assets/build/auto-update.js +++ b/modules/option-field/assets/build/auto-update.js @@ -1 +1 @@ -(()=>{var e={563(){const{addFilter:e}=wp.hooks;e("jet.fb.select_autocomplete.options","jet-form-builder/auto-update-context",function(e,t){if(!t)return e;const n=t[0]||t;if(!n||!n.dataset||"1"!==n.dataset.jfbAutoUpdate)return e;if(!e.ajax)return e;const r=n.closest("form");if(!r)return e;const a=function(e){const t=e.dataset.listenTo;if(!t)return[];if("1"===e.dataset.listenToMultiple)try{return JSON.parse(t)}catch(e){return[]}return[t]}(n);if(!a.length)return e;const i=e.ajax.data;return e.ajax.data=function(e){const t="function"==typeof i?i(e):e,n=function(e,t){const n={};return e.forEach(e=>{const r=t.querySelector(`[data-field-name="${e}"]`)||t.querySelector(`[name="${e}"]`)||t.querySelector(`[name="${e}[]"]`)||t.querySelector(`[name*="[${e}]"]`);if(!r)return;const a=r.getAttribute("name")||r.querySelector("[name]")?.getAttribute("name")||e;let i=null;if(window.JetFormBuilderMain?.inputData&&(i=window.JetFormBuilderMain.inputData.findInput?.(a,t)||window.JetFormBuilderMain.inputData.findInput?.(e,t)||window.JetFormBuilderMain.inputData.getInput?.(a,t)||window.JetFormBuilderMain.inputData.getInput?.(e,t),!i&&window.JetFormBuilderMain.inputData.getAll)){const n=window.JetFormBuilderMain.inputData.getAll(t)||[];i=n.find(e=>e.name===a)||n.find(t=>t.name===e)}if(i)return void(n[e]=i.value.current);const o=r.matches("select[multiple]")?r:r.querySelector("select[multiple]");n[e]=o?Array.from(o.selectedOptions).map(e=>e.value):r.value||""}),n}(a,r);return t.context=JSON.stringify(n),t},e})}},t={};function n(r){var a=t[r];if(void 0!==a)return a.exports;var i=t[r]={exports:{}};return e[r](i,i.exports,n),i.exports}(()=>{"use strict";const e=class{constructor(){this.cache=new Map,this.defaultTimeout=60}generateKey(e,t,n=""){const r=Object.keys(t).sort().reduce((e,n)=>(e[n]=t[n],e),{});return`${e}:${n}:${JSON.stringify(r)}`}has(e,t,n=this.defaultTimeout,r=""){if(0===n)return!1;const a=this.generateKey(e,t,r),i=this.cache.get(a);return!!i&&!((Date.now()-i.timestamp)/1e3>n&&(this.cache.delete(a),1))}get(e,t,n=this.defaultTimeout,r=""){if(!this.has(e,t,n,r))return null;const a=this.generateKey(e,t,r),i=this.cache.get(a);return i?i.options:null}set(e,t,n,r=""){const a=this.generateKey(e,t,r);this.cache.set(a,{options:n,timestamp:Date.now()})}clear(e,t,n=""){const r=this.generateKey(e,t,n);this.cache.delete(r)}clearByField(e){const t=`:${e}:`;this.cache.forEach((e,n)=>{n.includes(t)&&this.cache.delete(n)})}clearAll(){this.cache.clear()}getStats(){return{size:this.cache.size,keys:Array.from(this.cache.keys())}}cleanExpired(e=3600){const t=Date.now(),n=[];return this.cache.forEach((r,a)=>{(t-r.timestamp)/1e3>e&&n.push(a)}),n.forEach(e=>this.cache.delete(e)),n.length}},t=class{updateOptions(e,t,n=null){const r=this.getFieldType(e);switch(r){case"select":this.updateSelectOptions(e,t,n);break;case"checkbox":case"radio":this.updateChoiceOptions(e,t,r,n)}}getFieldType(e){if("SELECT"===e.tagName)return"select";const t=e.dataset.fieldType;if(t){if("checkbox-field"===t)return"checkbox";if("radio-field"===t)return"radio";if("select-field"===t)return"select"}const n=e.querySelector('input[type="checkbox"], input[type="radio"]');return n?n.type:"unknown"}updateSelectOptions(e,t,n=null){const r=e.classList.contains("jet-select-autocomplete"),a=r&&e.hasAttribute("data-ajax--url"),i=r?jQuery(e):null,o=Boolean(i?.data("select2"));if(a&&o)return void i.val(null).trigger("change");const l=e.multiple;let s=l?Array.from(e.selectedOptions).map(e=>e.value):[e.value];if(!s.some(Boolean)){const t=this.getStoredFieldValue(e,"select",n);s=this.normalizeValues(t)}s.some(Boolean);const u=[];let c="";const d=e.options[0],p=Boolean(d&&""===d.value&&(d.disabled||""!==d.textContent.trim()))?d.cloneNode(!0):null;e.innerHTML="",p&&e.appendChild(p),t.forEach(t=>{const n=document.createElement("option");n.value=t.value||t.val||"",n.textContent=t.label||t.value||"",c||""===n.value||(c=n.value),s.includes(n.value)&&(n.selected=!0,u.push(n.value)),t.calculate&&(n.dataset.calculate=t.calculate),e.appendChild(n)});const h=u.length>0;if(l?Array.from(e.options).forEach(e=>{e.selected=u.includes(e.value)}):h?e.value=u[0]:!p&&e.options.length?(e.selectedIndex=0,e.options[0]&&(e.options[0].selected=!0),c&&(e.value=c)):p?e.value="":e.selectedIndex=-1,r&&o){i.select2("destroy");const t=wp.hooks.applyFilters("jet.fb.select_autocomplete.options",{dropdownParent:i.parent(),width:"100%"},i);if(i.select2(t),l)i.val(u).trigger("change");else if(h)i.val(u[0]).trigger("change");else if(!p&&e.options.length){const t=c||e.options[0].value;Array.from(e.options).forEach(e=>{e.selected=e.value===t}),e.value=t,i.val(t).trigger("change")}else i.val(null).trigger("change")}e.dispatchEvent(new Event("change",{bubbles:!0}))}updateChoiceOptions(e,t,n,r=null){const a=e.getAttribute("data-field-name");if(!a)return;let i=Array.from(e.querySelectorAll(`input[type="${n}"]:checked`)).map(e=>e.value);if(!i.length){const t=this.getStoredFieldValue(e,n,r);i=this.normalizeValues(t)}e.querySelectorAll(":scope > .jet-form-builder__field-wrap:not(.custom-option)").forEach(e=>e.remove());const o="checkbox"===n?`${a}[]`:a,l="checkbox"===n?"for-checkbox":"for-radio",s="checkbox"===n?"jet-form-builder__field-wrap checkboxes-wrap checkradio-wrap":"jet-form-builder__field-wrap radio-wrap checkradio-wrap",u=e.querySelector(":scope > .custom-option"),c="checkbox"===n?"jet-form-builder__field checkboxes-field checkradio-field":"jet-form-builder__field radio-field checkradio-field",d=document.createDocumentFragment();let p=!1;if(t.forEach(e=>{const t=e.value||e.val||"",r=e.label||t,u=i.includes(t),h=document.createElement("input");h.type=n,h.name=o,h.value=t,h.className=c,h.setAttribute("data-field-name",a),h.checked=u,e.calculate&&(h.dataset.calculate=e.calculate);const f=document.createElement("div");if(f.className=s,e.html){p=!0;const t=document.createElement("div");for(t.innerHTML=e.html;t.firstChild;)f.appendChild(t.firstChild)}const m=document.createElement("span");m.textContent=r;const g=document.createElement("label");g.className=`jet-form-builder__field-label ${l}`,g.appendChild(h),g.appendChild(m),f.appendChild(g),d.appendChild(f)}),u?e.insertBefore(d,u):e.appendChild(d),p){const t=jQuery(e);window.JetEngine&&window.JetEngine.initElementsHandlers?window.JetEngine.initElementsHandlers(t):window.JetPlugins&&window.JetPlugins.init(t)}if(!this.reInitField(e,r)){const t=e.querySelector(`input[type="${n}"]`);t&&t.dispatchEvent(new Event("change",{bubbles:!0}))}}normalizeValues(e){return Array.isArray(e)?e.filter(e=>null!=e&&""!==e).map(String):null==e||""===e?[]:[String(e)]}getPreservedFieldValue(e){const t=e?.dataset?.jfbAuPreservedValue;if(!t)return null;delete e.dataset.jfbAuPreservedValue;try{return JSON.parse(t)}catch(e){return t}}getStoredFieldValue(e,t,n){var r;const a=this.getPreservedFieldValue(e);if(null!==a)return a;if(!n||!window.JetFormBuilderMain?.inputData)return null;const i=e.getAttribute("data-field-name")||"",o=this.resolveActualInputName(e,t)||i;let l=window.JetFormBuilderMain.inputData.findInput?.(o,n)||window.JetFormBuilderMain.inputData.getInput?.(o,n);if(!l&&i&&(l=window.JetFormBuilderMain.inputData.findInput?.(i,n)||window.JetFormBuilderMain.inputData.getInput?.(i,n)),!l&&window.JetFormBuilderMain.inputData.getAll){const e=window.JetFormBuilderMain.inputData.getAll(n)||[];l=e.find(e=>e.name===o)||e.find(e=>e.name===i)||e.find(e=>i&&(e.name?.endsWith(`[${i}]`)||e.name?.endsWith(`[${i}][]`)))}return null!==(r=l?.value?.current)&&void 0!==r?r:null}resolveActualInputName(e,t){if("select"===t)return e.getAttribute("name")||e.dataset.fieldName||"";const n=e.querySelector(`input[type="${t}"]`);return n?.getAttribute("name")||e.dataset.fieldName||""}reInitField(e,t){if(!t)return!1;if(e.closest(".jet-form-builder-repeater__row"))return!1;const n=e.hasAttribute("data-jfb-sync")?e:e.querySelector("[data-jfb-sync]");if(!n)return!1;const r=t.dataset.formId,a=r&&window.JetFormBuilder?window.JetFormBuilder[r]:null;return!(!a||!a.observeInput||(a.observeInput(n,!0),0))}getStateWrapper(e){return e.classList.contains("checkradio-wrap")?e:e.closest(".jet-form-builder__field-wrap")||e.parentElement}setLoadingState(e,t){const n=this.getStateWrapper(e);if(n)if(t){if(n.classList.add("jfb-auto-update-loading"),!n.querySelector(".jfb-auto-update-spinner")){const e=document.createElement("span");e.className="jfb-auto-update-spinner",e.setAttribute("aria-label","Loading options..."),n.appendChild(e)}}else{n.classList.remove("jfb-auto-update-loading");const e=n.querySelector(".jfb-auto-update-spinner");e&&e.remove()}}setErrorState(e,t){const n=this.getStateWrapper(e);if(!n)return;n.classList.add("jfb-auto-update-error");let r=n.querySelector(".jfb-auto-update-error-message");r||(r=document.createElement("div"),r.className="jfb-auto-update-error-message",n.appendChild(r)),r.textContent=t,setTimeout(()=>{this.clearErrorState(e)},5e3)}clearErrorState(e){const t=this.getStateWrapper(e);if(!t)return;t.classList.remove("jfb-auto-update-error");const n=t.querySelector(".jfb-auto-update-error-message");n&&n.remove()}},r=class{constructor(){this.cacheManager=new e,this.optionsUpdater=new t,this.watchers=new Map,this.autoUpdateFields=new Map,this.abortControllers=new Map,this.debounceTimers=new Map,this.buttonListeners=new Map,this.lastContextHashes=new Map,this.preservedRepeaterValues=new Map,this.debounceDelay=300,this.loadingCounts=new Map}initForm(e){e.querySelectorAll('[data-jfb-auto-update="1"]').forEach(t=>{this.initField(t,e)})}buildFieldKey(e,t){const n=t.closest(".jet-form-builder-repeater__row");return this.buildWatcherKey(e,n)}initField(e,t,n={}){const r=this.parseFieldConfig(e);if(!r)return;const a=this.buildFieldKey(r.fieldName,e);if(e.hasAttribute("data-jfb-au-init"))return;e.setAttribute("data-jfb-au-init","1"),r.fieldKey=a,this.autoUpdateFields.set(a,{element:e,config:r});const i=this.consumePreservedRepeaterValue(a);if(void 0!==i&&(e.dataset.jfbAuPreservedValue=JSON.stringify(i)),r.updateOnButton&&this.watchButton(r.updateOnButton,a,t),r.listenTo&&Array.isArray(r.listenTo)&&r.listenTo.forEach(e=>{this.watchField(e,a,t)}),!r.updateOnButton&&r.listenTo){if(this.shouldSkipDynamicInitRefresh(e,r,t,n))return;if(r.requireAllFilled){const n=this.collectContext(r,t);r.listenTo.every(e=>{const t=n[e];return this.isContextValueFilled(t)})?this.debouncedUpdate(a,t):this.shouldClearOnEmptyContext(r)?this.optionsUpdater.updateOptions(e,[],t):this.debouncedUpdate(a,t)}else this.debouncedUpdate(a,t)}}shouldSkipDynamicInitRefresh(e,t,n,r={}){if(!r?.isDynamicInit)return!1;const a=e.closest(".jet-form-builder-repeater__row");if(!a||!Array.isArray(t.listenTo)||!t.listenTo.length)return!1;if(!t.listenTo.every(e=>!this.findElementInScope(e,a,a)))return!1;const i=this.readCurrentTargetValue(e);if(!this.isContextValueFilled(i))return!1;const o=this.serializeContext(this.collectContext(t,n)),l=this.buildContextMemoryKey(t);return this.lastContextHashes.get(l)===o}readCurrentTargetValue(e){if(e.matches("select"))return e.multiple?Array.from(e.selectedOptions).map(e=>e.value):e.value||"";const t=e.querySelector?.("select");if(t)return t.multiple?Array.from(t.selectedOptions).map(e=>e.value):t.value||"";const n=Array.from(e.querySelectorAll?.('input[type="checkbox"], input[type="radio"]')||[]);if(!n.length)return"";const r=n.filter(e=>e.checked);return r.length?r.every(e=>"checkbox"===e.type)?r.map(e=>e.value):r[0]?.value||"":""}buildContextMemoryKey(e){return[e.formId||0,e.generatorId||"",e.fieldName||"",Array.isArray(e.listenTo)?e.listenTo.join("|"):""].join("::")}serializeContext(e){const t={};return Object.keys(e||{}).sort().forEach(n=>{t[n]=e[n]}),JSON.stringify(t)}preserveRepeaterValuesBeforeRemoval(e){const t=e.closest(".jet-form-builder-repeater__row"),n=e.closest('[data-repeater="1"]'),r=n?.querySelector(".jet-form-builder-repeater__items")||n;if(!t||!n||!r)return;const a=Array.from(r.querySelectorAll(":scope > .jet-form-builder-repeater__row")),i=a.indexOf(t),o=n.dataset.fieldName||"repeater";i<0||this.autoUpdateFields.forEach(e=>{const r=e?.element,l=e?.config,s=r?.closest(".jet-form-builder-repeater__row");if(!(r&&l&&s&&s!==t&&n.contains(s)))return;const u=a.indexOf(s);if(u<0)return;const c=this.readValueFromSourceElement(r);if(!this.isContextValueFilled(c))return;const d=`${o}[${u>i?u-1:u}].${l.fieldName}`;this.preservedRepeaterValues.set(d,c)})}consumePreservedRepeaterValue(e){if(!this.preservedRepeaterValues.has(e))return;const t=this.preservedRepeaterValues.get(e);return this.preservedRepeaterValues.delete(e),t}parseFieldConfig(e){const t=e.dataset.generatorId,n=e.dataset.fieldName;if(!t||!n)return null;let r=e.dataset.listenTo||null;return r&&("1"===e.dataset.listenToMultiple?(r=this.parseJSON(r),Array.isArray(r)||(r=null)):r=[r]),{generatorId:t,fieldName:n,listenTo:r,requireAllFilled:"1"===e.dataset.requireAllFilled,emptyContextAction:e.dataset.emptyContextAction||"clear",updateOnButton:e.dataset.updateOnButton||null,updateOnButtonClass:e.dataset.updateOnButtonClass||"",cacheTimeout:parseInt(e.dataset.cacheTimeout)||60,formId:parseInt(e.dataset.formId)||0}}parseJSON(e){try{return JSON.parse(e)}catch(e){return null}}createInputWrapperFromDOM(e,t,n=null){let r=n;if(r||(r=t.querySelector(`[data-field-name="${e}"]`)),r||(r=t.querySelector(`[name="${e}"]`)),!r)return null;const a={name:e,node:r,value:{current:r.value||"",watchers:[],watch:e=>{const t=()=>{a.value.current=r.value||"",e(a.value.current)};return r.addEventListener("change",t),r.addEventListener("input",t),()=>{r.removeEventListener("change",t),r.removeEventListener("input",t)}}}};return a}findElementInScope(e,t,n){const r=t?[t,n]:[n];for(const t of r){let n=t.querySelector(`[data-field-name="${e}"]`)||t.querySelector(`[name="${e}"]`)||t.querySelector(`[name="${e}[]"]`)||t.querySelector(`[name*="[${e}]"]`);if(n)return n}return null}buildWatcherKey(e,t){if(!t)return e;const n=t.parentElement,r=n?Array.from(n.children).indexOf(t):0;return`${t.closest('[data-repeater="1"]')?.dataset?.fieldName||"repeater"}[${r}].${e}`}watchField(e,t,n){const r=this.autoUpdateFields.get(t),a=r?.element||null,i=a?a.closest(".jet-form-builder-repeater__row"):null,o=this.findElementInScope(e,i,n),l=!!o&&this.shouldUseDomWatch(o);let s=null;if(o&&!l&&window.JetFormBuilderMain?.inputData){const t=this.resolveActualName(o,e);if(window.JetFormBuilderMain.inputData.findInput&&(s=window.JetFormBuilderMain.inputData.findInput(t,n)||window.JetFormBuilderMain.inputData.findInput(e,n)),!s&&window.JetFormBuilderMain.inputData.getInput&&(s=window.JetFormBuilderMain.inputData.getInput(t,n)||window.JetFormBuilderMain.inputData.getInput(e,n)),!s&&window.JetFormBuilderMain.inputData.getAll){const r=window.JetFormBuilderMain.inputData.getAll(n);r&&(s=r.find(e=>e.name===t)||r.find(t=>t.name===e))}}else if(!o&&(window.JetFormBuilderMain?.inputData?.findInput&&(s=window.JetFormBuilderMain.inputData.findInput(e,n)),!s&&window.JetFormBuilderMain?.inputData?.getInput&&(s=window.JetFormBuilderMain.inputData.getInput(e,n)),!s&&window.JetFormBuilderMain?.inputData?.getAll)){const t=window.JetFormBuilderMain.inputData.getAll(n);t&&(s=t.find(t=>t.name===e))}if(!s){const t=o||this.findElementInScope(e,null,n);t&&(s=this.createInputWrapperFromDOM(this.resolveActualName(t,e),n,t))}if(!s)return;const u=this.buildWatcherKey(e,i);let c=this.watchers.get(u);if(!c){let t;if(l){let r=null;const a=t=>{const a=t?.target;if(!a||a.nodeType!==Node.ELEMENT_NODE)return;const o=()=>{const t=this.findElementInScope(e,i,n);if(!t)return;if(!this.isEventFromSourceField(a,t))return;const o=this.readValueFromSourceElement(t),l=JSON.stringify(o);l!==r&&(r=l,this.handleFieldChange(u,n))};"click"!==t.type?o():setTimeout(o,0)};n.addEventListener("change",a,!0),n.addEventListener("input",a,!0),n.addEventListener("click",a,!0);const l=this.isAutocompleteSourceElement(o),s=this.isCalculatedSourceElement(o);let c=null,d=null,p=null,h=null,f=null,m=null;if(window.jQuery&&(l||s)){const t=this.findElementInScope(e,i,n),a=l?t?.matches("select")?t:t?.querySelector("select"):t?.matches("input.jet-form-builder__calculated-field-input")?t:t?.querySelector("input.jet-form-builder__calculated-field-input");if(a&&(c=window.jQuery(a),l&&(d=()=>{const e=this.readValueFromSourceElement(a),t=JSON.stringify(e);t!==r&&(r=t,this.handleFieldChange(u,n))},c.on("select2:select select2:unselect",d)),s)){h=a,p=()=>{const e=this.readValueFromSourceElement(a),t=JSON.stringify(e);t!==r&&(r=t,this.handleFieldChange(u,n))},c.on("change",p),m=p,a.addEventListener("change",m),a.addEventListener("input",m);const e=a.closest(".jet-form-builder__calculated-field"),t=e?.querySelector(".jet-form-builder__calculated-field-val");t&&window.MutationObserver&&(f=new MutationObserver(()=>{p()}),f.observe(t,{childList:!0,characterData:!0,subtree:!0}))}}t=()=>{n.removeEventListener("change",a,!0),n.removeEventListener("input",a,!0),n.removeEventListener("click",a,!0),c&&d&&c.off("select2:select select2:unselect",d),c&&p&&c.off("change",p),h&&m&&(h.removeEventListener("change",m),h.removeEventListener("input",m)),f&&f.disconnect()}}else t=s.value.watch(()=>{this.handleFieldChange(u,n)});c={unwatch:t,dependents:[]},this.watchers.set(u,c)}c.dependents.includes(t)||c.dependents.push(t)}watchAllFields(e,t){var n;(null!==(n=window.JetFormBuilderMain?.inputData?.getAll(t))&&void 0!==n?n:[]).forEach(n=>{const r=n.name;r!==e&&this.watchField(r,e,t)})}watchButton(e,t,n){const r=this.autoUpdateFields.get(t),a=r?.config?.updateOnButtonClass||"",i=`${e}::${a}::${t}`;if(this.buttonListeners.has(i))return;const o=r?.element||null,l=o?.closest(".jet-form-builder-page")||null,s=[];if(l){const t=parseInt(l.dataset.page)||0;"next"===e&&t>1?s.push(`.jet-form-builder-page[data-page="${t-1}"] .jet-form-builder__action-button-wrapper[data-type="${e}"]`):"prev"===e&&t>0&&s.push(`.jet-form-builder-page[data-page="${t+1}"] .jet-form-builder__action-button-wrapper[data-type="${e}"]`),s.push(`.jet-form-builder-page[data-page="${l.dataset.page}"] .jet-form-builder__action-button-wrapper[data-type="${e}"]`)}s.push(`.jet-form-builder__action-button-wrapper[data-type="${e}"]`);const u=this.findActionButtonWrapper(s,a,n),c=u?u.querySelector("button"):null;if(!c)return;let d=!1;const p=async e=>{if(e.isTrusted)if(d)e.preventDefault();else{e.preventDefault(),d=!0;try{await this.updateField(t,n)}catch(e){}finally{d=!1,c.click()}}};c.addEventListener("click",p),this.buttonListeners.set(i,{element:c,handler:p})}normalizeButtonClassNames(e){return(e||"").split(/\s+/).map(e=>e.trim().replace(/^\./,"")).filter(Boolean)}findActionButtonWrapper(e,t,n){const r=this.normalizeButtonClassNames(t);if(r.length)for(const t of e){const e=Array.from(n.querySelectorAll(t)).find(e=>{const t=e.querySelector("button");return!!t&&r.every(e=>t.classList.contains(e))});if(e)return e}for(const t of e){const e=n.querySelector(t);if(e)return e}return null}handleFieldChange(e,t){const n=this.watchers.get(e);n&&n.dependents.length&&n.dependents.forEach(e=>{const n=this.autoUpdateFields.get(e),r=n?.config;if(!r?.updateOnButton){if(r?.requireAllFilled){const a=this.collectContext(r,t);if(!r.listenTo.every(e=>{const t=a[e];return this.isContextValueFilled(t)}))return void(this.shouldClearOnEmptyContext(r)?(this.abortPreviousRequest(e),this.optionsUpdater.updateOptions(n.element,[],t)):this.debouncedUpdate(e,t))}this.debouncedUpdate(e,t)}})}debouncedUpdate(e,t){clearTimeout(this.debounceTimers.get(e));const n=setTimeout(()=>{this.updateField(e,t),this.debounceTimers.delete(e)},this.debounceDelay);this.debounceTimers.set(e,n)}getLockState(e){var t;const n=e?.dataset?.formId;return n&&window.JetFormBuilder?.[n]&&null!==(t=window.JetFormBuilder[n]?.getSubmit?.()?.lockState)&&void 0!==t?t:null}lockFormLoading(e){var t;const n=e?.dataset?.formId;if(!n)return;const r=(null!==(t=this.loadingCounts.get(n))&&void 0!==t?t:0)+1;this.loadingCounts.set(n,r),1===r&&this.getLockState(e)?.start()}unlockFormLoading(e){var t;const n=e?.dataset?.formId;if(!n)return;const r=Math.max(0,(null!==(t=this.loadingCounts.get(n))&&void 0!==t?t:0)-1);this.loadingCounts.set(n,r),0===r&&this.getLockState(e)?.end()}async updateField(e,t){const n=this.autoUpdateFields.get(e);if(!n)return;const{element:r,config:a}=n,i=this.collectContext(a,t),o=this.buildContextMemoryKey(a),l=this.serializeContext(i);this.lastContextHashes.set(o,l);const s=this.cacheManager.get(a.generatorId,i,a.cacheTimeout,a.fieldName);if(s)return void this.optionsUpdater.updateOptions(r,s,t);this.abortPreviousRequest(e);const u=new AbortController;this.abortControllers.set(e,u);try{this.optionsUpdater.setLoadingState(r,!0),this.lockFormLoading(t);const e=await this.fetchOptions(a,i,u.signal);this.cacheManager.set(a.generatorId,i,e,a.fieldName),this.optionsUpdater.updateOptions(r,e,t)}catch(e){"AbortError"!==e.name&&(console.error("[JFB Auto-Update] Update failed:",e),this.optionsUpdater.setErrorState(r,e.message))}finally{this.optionsUpdater.setLoadingState(r,!1),this.unlockFormLoading(t),this.abortControllers.delete(e)}}collectContext(e,t){const n={},r=e.fieldKey||e.fieldName,a=this.autoUpdateFields.get(r),i=a?.element||null,o=i?i.closest(".jet-form-builder-repeater__row"):null;return e.listenTo&&Array.isArray(e.listenTo)&&e.listenTo.forEach(e=>{const r=this.findElementInScope(e,o,t);if(r){const a=this.resolveActualName(r,e);let i=null;if(window.JetFormBuilderMain?.inputData&&(i=window.JetFormBuilderMain.inputData.findInput?.(a,t)||window.JetFormBuilderMain.inputData.findInput?.(e,t)||window.JetFormBuilderMain.inputData.getInput?.(a,t)||window.JetFormBuilderMain.inputData.getInput?.(e,t),!i&&window.JetFormBuilderMain.inputData.getAll)){const n=window.JetFormBuilderMain.inputData.getAll(t)||[];i=n.find(e=>e.name===a)||n.find(t=>t.name===e)}const o=this.shouldUseDomWatch(r);n[e]=!o&&i?i.value.current:this.readValueFromSourceElement(r)}}),n}resolveActualName(e,t){return e.getAttribute("name")||e.querySelector("[name]")?.getAttribute("name")||t}readValueFromSourceElement(e){const t=e.getAttribute("name")||e.querySelector("[name]")?.getAttribute("name")||null,n=e.closest(".jet-form-builder-repeater__row")||e.closest("form")||document;if(t){const e=Array.from(n.querySelectorAll(`input[type="checkbox"][name="${CSS.escape(t)}"]`));if(e.length)return e.filter(e=>e.checked).map(e=>e.value);const r=Array.from(n.querySelectorAll(`input[type="radio"][name="${CSS.escape(t)}"]`));if(r.length){const e=r.find(e=>e.checked);return e?e.value:""}}const r=e.matches('input[type="checkbox"]')?[e]:Array.from(e.querySelectorAll('input[type="checkbox"]'));if(r.length)return r.filter(e=>e.checked).map(e=>e.value);const a=e.matches('input[type="radio"]')?[e]:Array.from(e.querySelectorAll('input[type="radio"]'));if(a.length){const e=a.find(e=>e.checked);return e?e.value:""}const i=e.matches("select[multiple]")?e:e.querySelector("select[multiple]");return i?Array.from(i.selectedOptions).map(e=>e.value):e.value||""}isMultiChoiceSourceElement(e){return!!e&&(!!e.matches('input[type="checkbox"], input[type="radio"], select[multiple]')||Boolean(e.querySelector('input[type="checkbox"], input[type="radio"], select[multiple]')))}isAutocompleteSourceElement(e){return!!e&&(e.matches("select.jet-select-autocomplete")||Boolean(e.querySelector("select.jet-select-autocomplete")))}isCalculatedSourceElement(e){return!!e&&(e.matches("input.jet-form-builder__calculated-field-input")||Boolean(e.querySelector("input.jet-form-builder__calculated-field-input"))||Boolean(e.closest(".jet-form-builder__calculated-field")))}shouldUseDomWatch(e){return this.isMultiChoiceSourceElement(e)||this.isAutocompleteSourceElement(e)||this.isCalculatedSourceElement(e)}isEventFromSourceField(e,t){if(t.contains(e)||t===e)return!0;const n=this.resolveEventTargetName(e,t.closest("form")||document),r=t.getAttribute("name")||t.querySelector("[name]")?.getAttribute("name")||null;return Boolean(n&&r&&n===r)}resolveEventTargetName(e,t){if(!e)return null;if(e.getAttribute&&e.getAttribute("name"))return e.getAttribute("name");const n=e.closest?.("input, select, textarea");if(n?.getAttribute("name"))return n.getAttribute("name");const r=e.closest?.("label");if(!r)return null;const a=r.querySelector("input, select, textarea");if(a?.getAttribute("name"))return a.getAttribute("name");const i=r.getAttribute("for");if(!i)return null;const o=t.querySelector(`#${CSS.escape(i)}`);return o?.getAttribute("name")||null}isContextValueFilled(e){return Array.isArray(e)?e.some(e=>null!=e&&""!==e):null!=e&&""!==e}shouldClearOnEmptyContext(e){return!!(Array.isArray(e?.listenTo)&&e.listenTo.length>1)||"clear"===(e?.emptyContextAction||"clear")}getUpdateEndpoint(){const e=window.JFBOptionFieldAutoUpdate?.endpoint;if(e)return e;const t=window.wpApiSettings?.root;return t?`${t.replace(/\/+$/,"")}/jet-form-builder/v1/generator-update`:"/wp-json/jet-form-builder/v1/generator-update"}async fetchOptions(e,t,n){const r=new URLSearchParams(window.location.search).get("jfb_preview_nonce")||"",a={"Content-Type":"application/json"};window.wpApiSettings?.nonce&&(a["X-WP-Nonce"]=window.wpApiSettings.nonce);const i=await fetch(this.getUpdateEndpoint(),{method:"POST",headers:a,body:JSON.stringify({form_id:e.formId,field_name:e.fieldName,generator_id:e.generatorId,context:t,preview_nonce:r}),signal:n});if(!i.ok)throw new Error(`HTTP error! status: ${i.status}`);const o=await i.json();if(!o.success)throw new Error(o.message||"Unknown error");return o.options||[]}abortPreviousRequest(e){const t=this.abortControllers.get(e);t&&(t.abort(),this.abortControllers.delete(e))}destroy(){this.watchers.forEach(e=>e.unwatch?.()),this.debounceTimers.forEach(e=>clearTimeout(e)),this.abortControllers.forEach(e=>e.abort()),this.buttonListeners.forEach(({element:e,handler:t})=>e.removeEventListener("click",t)),this.watchers.clear(),this.autoUpdateFields.clear(),this.abortControllers.clear(),this.debounceTimers.clear(),this.buttonListeners.clear(),this.cacheManager.clearAll()}};n(563);let a=null;function i(){return a||(a=new r),a}function o(e){e&&(e instanceof jQuery&&(e=e[0]),e?.querySelectorAll&&i().initForm(e))}const l=new Set;function s(e=100){if(void 0===window.JetFormBuilderMain)return e<=0?void console.warn("[JFB Auto-Update] JetFormBuilderMain is not available. Auto-update was not initialized."):(e%20==0&&console.warn("[JFB Auto-Update] JetFormBuilderMain not available, retrying..."),void setTimeout(()=>s(e-1),100));document.addEventListener("jet-form-builder/conditional-block/block-toggle-hidden-dom",e=>{const{block:t,result:n}=e.detail||{};if(!t||n)return;const r=i();if(!r.watchers.size)return;const a=new Set;if(t.dataset?.fieldName&&a.add(t.dataset.fieldName),(t.querySelectorAll?t.querySelectorAll("[data-field-name]"):[]).forEach(e=>{a.add(e.getAttribute("data-field-name"))}),!a.size)return;const o=new Set;if(r.watchers.forEach((e,t)=>{[...a].some(e=>t===e||t.endsWith(`.${e}`))&&e.dependents.forEach(e=>{o.add(e),[...a].forEach(t=>{l.delete(`${t}:${e}`)})})}),!o.size)return;let s=null;for(const e of o){const t=r.autoUpdateFields.get(e);if(t?.element&&(s=t.element.closest("form"),s))break}s&&o.forEach(e=>{r.debouncedUpdate(e,s)})}),jQuery(document).on("jet-form-builder/after-init",(e,t)=>{const n=t[0]?.querySelector("form.jet-form-builder");n&&(o(n),function(e){if(!e||!window.MutationObserver)return;if(e instanceof jQuery&&(e=e[0]),!e?.querySelectorAll)return;if(e.hasAttribute("data-jfb-au-observed"))return;e.setAttribute("data-jfb-au-observed","1"),e.addEventListener("click",t=>{const n=t.target?.closest?.(".jet-form-builder-repeater__remove");n&&i().preserveRepeaterValuesBeforeRemoval(n,e)},!0);const t=new MutationObserver(t=>{t.forEach(t=>{t.removedNodes.forEach(e=>{e.nodeType===Node.ELEMENT_NODE&&function(e){const t=[];if(("1"===e.dataset?.repeaterRow||e.classList?.contains("jet-form-builder-repeater__row"))&&t.push(e),e.querySelectorAll&&e.querySelectorAll(".jet-form-builder-repeater__row").forEach(e=>t.push(e)),!t.length)return;const n=i();t.forEach(e=>{const t=[];n.autoUpdateFields.forEach((n,r)=>{const a=n?.element;a&&e.contains(a)&&t.push(r)}),t.forEach(e=>{n.autoUpdateFields.delete(e)});const r=[];n.watchers.forEach((e,n)=>{e.dependents.some(e=>t.includes(e))&&(e.dependents=e.dependents.filter(e=>!t.includes(e)),e.dependents.length||(e.unwatch&&e.unwatch(),r.push(n)))}),r.forEach(e=>{n.watchers.delete(e)})})}(e)}),t.addedNodes.forEach(t=>{if(t.nodeType!==Node.ELEMENT_NODE)return;const n=[];t.hasAttribute&&t.getAttribute("data-field-name")&&n.push(t),t.querySelectorAll&&t.querySelectorAll("[data-field-name]").forEach(e=>n.push(e)),n.forEach(t=>{const n=t.getAttribute("data-field-name");t.hasAttribute("data-jfb-auto-update")&&i().initField(t,e,{isDynamicInit:!0}),function(e,t){const n=i();n.autoUpdateFields.forEach((r,a)=>{const{config:i}=r;if(i.listenTo&&Array.isArray(i.listenTo)&&i.listenTo.includes(e)){const r=`${e}:${a}`;if(l.has(r))return;l.add(r),n.watchField(e,a,t),function(e,t){return e.every(e=>{const n=t.querySelector(`[data-field-name="${e}"]`)||t.querySelector(`[name="${e}"]`);return n&&n.value})}(i.listenTo,t)&&n.debouncedUpdate(a,t)}})}(n,e)})})})});t.observe(e,{childList:!0,subtree:!0})}(n))})}"loading"===document.readyState?document.addEventListener("DOMContentLoaded",s):s(),window.JFBAutoUpdate={getWatcher:i,initAutoUpdate:o}})()})(); \ No newline at end of file +(()=>{var e={563:()=>{const{addFilter:e}=wp.hooks;e("jet.fb.select_autocomplete.options","jet-form-builder/auto-update-context",(function(e,t){if(!t)return e;const n=t[0]||t;if(!n||!n.dataset||"1"!==n.dataset.jfbAutoUpdate)return e;if(!e.ajax)return e;const r=n.closest("form");if(!r)return e;const a=function(e){const t=e.dataset.listenTo;if(!t)return[];if("1"===e.dataset.listenToMultiple)try{return JSON.parse(t)}catch(e){return[]}return[t]}(n);if(!a.length)return e;const i=e.ajax.data;return e.ajax.data=function(e){const t="function"==typeof i?i(e):e,n=function(e,t){const n={};return e.forEach((e=>{const r=t.querySelector(`[data-field-name="${e}"]`)||t.querySelector(`[name="${e}"]`)||t.querySelector(`[name="${e}[]"]`)||t.querySelector(`[name*="[${e}]"]`);if(!r)return;const a=r.getAttribute("name")||r.querySelector("[name]")?.getAttribute("name")||e;let i=null;if(window.JetFormBuilderMain?.inputData&&(i=window.JetFormBuilderMain.inputData.findInput?.(a,t)||window.JetFormBuilderMain.inputData.findInput?.(e,t)||window.JetFormBuilderMain.inputData.getInput?.(a,t)||window.JetFormBuilderMain.inputData.getInput?.(e,t),!i&&window.JetFormBuilderMain.inputData.getAll)){const n=window.JetFormBuilderMain.inputData.getAll(t)||[];i=n.find((e=>e.name===a))||n.find((t=>t.name===e))}if(i)return void(n[e]=i.value.current);const o=r.matches("select[multiple]")?r:r.querySelector("select[multiple]");n[e]=o?Array.from(o.selectedOptions).map((e=>e.value)):r.value||""})),n}(a,r);return t.context=JSON.stringify(n),t},e}))}},t={};function n(r){var a=t[r];if(void 0!==a)return a.exports;var i=t[r]={exports:{}};return e[r](i,i.exports,n),i.exports}(()=>{"use strict";const e=class{constructor(){this.cache=new Map,this.defaultTimeout=60}generateKey(e,t,n=""){const r=Object.keys(t).sort().reduce(((e,n)=>(e[n]=t[n],e)),{});return`${e}:${n}:${JSON.stringify(r)}`}has(e,t,n=this.defaultTimeout,r=""){if(0===n)return!1;const a=this.generateKey(e,t,r),i=this.cache.get(a);return!!i&&!((Date.now()-i.timestamp)/1e3>n&&(this.cache.delete(a),1))}get(e,t,n=this.defaultTimeout,r=""){if(!this.has(e,t,n,r))return null;const a=this.generateKey(e,t,r),i=this.cache.get(a);return i?i.options:null}set(e,t,n,r=""){const a=this.generateKey(e,t,r);this.cache.set(a,{options:n,timestamp:Date.now()})}clear(e,t,n=""){const r=this.generateKey(e,t,n);this.cache.delete(r)}clearByField(e){const t=`:${e}:`;this.cache.forEach(((e,n)=>{n.includes(t)&&this.cache.delete(n)}))}clearAll(){this.cache.clear()}getStats(){return{size:this.cache.size,keys:Array.from(this.cache.keys())}}cleanExpired(e=3600){const t=Date.now(),n=[];return this.cache.forEach(((r,a)=>{(t-r.timestamp)/1e3>e&&n.push(a)})),n.forEach((e=>this.cache.delete(e))),n.length}},t=class{updateOptions(e,t,n=null){const r=this.getFieldType(e);switch(r){case"select":this.updateSelectOptions(e,t,n);break;case"checkbox":case"radio":this.updateChoiceOptions(e,t,r,n)}}getFieldType(e){if("SELECT"===e.tagName)return"select";const t=e.dataset.fieldType;if(t){if("checkbox-field"===t)return"checkbox";if("radio-field"===t)return"radio";if("select-field"===t)return"select"}const n=e.querySelector('input[type="checkbox"], input[type="radio"]');return n?n.type:"unknown"}updateSelectOptions(e,t,n=null){const r=e.classList.contains("jet-select-autocomplete"),a=r&&e.hasAttribute("data-ajax--url"),i=r?jQuery(e):null,o=Boolean(i?.data("select2"));if(a&&o)return void i.val(null).trigger("change");const l=e.multiple;let s=l?Array.from(e.selectedOptions).map((e=>e.value)):[e.value];if(!s.some(Boolean)){const t=this.getStoredFieldValue(e,"select",n);s=this.normalizeValues(t)}s.some(Boolean);const u=[];let c="";const d=e.options[0],p=Boolean(d&&""===d.value&&(d.disabled||""!==d.textContent.trim()))?d.cloneNode(!0):null;e.innerHTML="",p&&e.appendChild(p),t.forEach((t=>{const n=document.createElement("option");n.value=t.value||t.val||"",n.textContent=t.label||t.value||"",c||""===n.value||(c=n.value),s.includes(n.value)&&(n.selected=!0,u.push(n.value)),t.calculate&&(n.dataset.calculate=t.calculate),e.appendChild(n)}));const h=u.length>0;if(l?Array.from(e.options).forEach((e=>{e.selected=u.includes(e.value)})):h?e.value=u[0]:!p&&e.options.length?(e.selectedIndex=0,e.options[0]&&(e.options[0].selected=!0),c&&(e.value=c)):p?e.value="":e.selectedIndex=-1,r&&o){i.select2("destroy");const t=wp.hooks.applyFilters("jet.fb.select_autocomplete.options",{dropdownParent:i.parent(),width:"100%"},i);if(i.select2(t),l)i.val(u).trigger("change");else if(h)i.val(u[0]).trigger("change");else if(!p&&e.options.length){const t=c||e.options[0].value;Array.from(e.options).forEach((e=>{e.selected=e.value===t})),e.value=t,i.val(t).trigger("change")}else i.val(null).trigger("change")}e.dispatchEvent(new Event("change",{bubbles:!0}))}updateChoiceOptions(e,t,n,r=null){const a=e.getAttribute("data-field-name");if(!a)return;let i=Array.from(e.querySelectorAll(`input[type="${n}"]:checked`)).map((e=>e.value));if(!i.length){const t=this.getStoredFieldValue(e,n,r);i=this.normalizeValues(t)}e.querySelectorAll(":scope > .jet-form-builder__field-wrap:not(.custom-option)").forEach((e=>e.remove()));const o="checkbox"===n?`${a}[]`:a,l="checkbox"===n?"for-checkbox":"for-radio",s="checkbox"===n?"jet-form-builder__field-wrap checkboxes-wrap checkradio-wrap":"jet-form-builder__field-wrap radio-wrap checkradio-wrap",u=e.querySelector(":scope > .custom-option"),c="checkbox"===n?"jet-form-builder__field checkboxes-field checkradio-field":"jet-form-builder__field radio-field checkradio-field",d=document.createDocumentFragment();let p=!1;if(t.forEach((e=>{const t=e.value||e.val||"",r=e.label||t,u=i.includes(t),h=document.createElement("input");h.type=n,h.name=o,h.value=t,h.className=c,h.setAttribute("data-field-name",a),h.checked=u,e.calculate&&(h.dataset.calculate=e.calculate);const f=document.createElement("div");if(f.className=s,e.html){p=!0;const t=document.createElement("div");for(t.innerHTML=e.html;t.firstChild;)f.appendChild(t.firstChild)}const m=document.createElement("span");m.textContent=r;const g=document.createElement("label");g.className=`jet-form-builder__field-label ${l}`,g.appendChild(h),g.appendChild(m),f.appendChild(g),d.appendChild(f)})),u?e.insertBefore(d,u):e.appendChild(d),p){const t=jQuery(e);window.JetEngine&&window.JetEngine.initElementsHandlers?window.JetEngine.initElementsHandlers(t):window.JetPlugins&&window.JetPlugins.init(t)}if(!this.reInitField(e,r)){const t=e.querySelector(`input[type="${n}"]`);t&&t.dispatchEvent(new Event("change",{bubbles:!0}))}}normalizeValues(e){return Array.isArray(e)?e.filter((e=>null!=e&&""!==e)).map(String):null==e||""===e?[]:[String(e)]}getPreservedFieldValue(e){const t=e?.dataset?.jfbAuPreservedValue;if(!t)return null;delete e.dataset.jfbAuPreservedValue;try{return JSON.parse(t)}catch(e){return t}}getStoredFieldValue(e,t,n){var r;const a=this.getPreservedFieldValue(e);if(null!==a)return a;if(!n||!window.JetFormBuilderMain?.inputData)return null;const i=e.getAttribute("data-field-name")||"",o=this.resolveActualInputName(e,t)||i;let l=window.JetFormBuilderMain.inputData.findInput?.(o,n)||window.JetFormBuilderMain.inputData.getInput?.(o,n);if(!l&&i&&(l=window.JetFormBuilderMain.inputData.findInput?.(i,n)||window.JetFormBuilderMain.inputData.getInput?.(i,n)),!l&&window.JetFormBuilderMain.inputData.getAll){const e=window.JetFormBuilderMain.inputData.getAll(n)||[];l=e.find((e=>e.name===o))||e.find((e=>e.name===i))||e.find((e=>i&&(e.name?.endsWith(`[${i}]`)||e.name?.endsWith(`[${i}][]`))))}return null!==(r=l?.value?.current)&&void 0!==r?r:null}resolveActualInputName(e,t){if("select"===t)return e.getAttribute("name")||e.dataset.fieldName||"";const n=e.querySelector(`input[type="${t}"]`);return n?.getAttribute("name")||e.dataset.fieldName||""}reInitField(e,t){if(!t)return!1;if(e.closest(".jet-form-builder-repeater__row"))return!1;const n=e.hasAttribute("data-jfb-sync")?e:e.querySelector("[data-jfb-sync]");if(!n)return!1;const r=t.dataset.formId,a=r&&window.JetFormBuilder?window.JetFormBuilder[r]:null;return!(!a||!a.observeInput||(a.observeInput(n,!0),0))}getStateWrapper(e){return e.classList.contains("checkradio-wrap")?e:e.closest(".jet-form-builder__field-wrap")||e.parentElement}setLoadingState(e,t){const n=this.getStateWrapper(e);if(n)if(t){if(n.classList.add("jfb-auto-update-loading"),!n.querySelector(".jfb-auto-update-spinner")){const e=document.createElement("span");e.className="jfb-auto-update-spinner",e.setAttribute("aria-label","Loading options..."),n.appendChild(e)}}else{n.classList.remove("jfb-auto-update-loading");const e=n.querySelector(".jfb-auto-update-spinner");e&&e.remove()}}setErrorState(e,t){const n=this.getStateWrapper(e);if(!n)return;n.classList.add("jfb-auto-update-error");let r=n.querySelector(".jfb-auto-update-error-message");r||(r=document.createElement("div"),r.className="jfb-auto-update-error-message",n.appendChild(r)),r.textContent=t,setTimeout((()=>{this.clearErrorState(e)}),5e3)}clearErrorState(e){const t=this.getStateWrapper(e);if(!t)return;t.classList.remove("jfb-auto-update-error");const n=t.querySelector(".jfb-auto-update-error-message");n&&n.remove()}},r=class{constructor(){this.cacheManager=new e,this.optionsUpdater=new t,this.watchers=new Map,this.autoUpdateFields=new Map,this.abortControllers=new Map,this.debounceTimers=new Map,this.buttonListeners=new Map,this.lastContextHashes=new Map,this.preservedRepeaterValues=new Map,this.debounceDelay=300,this.loadingCounts=new Map}initForm(e){e.querySelectorAll('[data-jfb-auto-update="1"]').forEach((t=>{this.initField(t,e)}))}buildFieldKey(e,t){const n=t.closest(".jet-form-builder-repeater__row");return this.buildWatcherKey(e,n)}initField(e,t,n={}){const r=this.parseFieldConfig(e);if(!r)return;const a=this.buildFieldKey(r.fieldName,e);if(e.hasAttribute("data-jfb-au-init"))return;e.setAttribute("data-jfb-au-init","1"),r.fieldKey=a,this.autoUpdateFields.set(a,{element:e,config:r});const i=this.consumePreservedRepeaterValue(a);if(void 0!==i&&(e.dataset.jfbAuPreservedValue=JSON.stringify(i)),r.updateOnButton&&this.watchButton(r.updateOnButton,a,t),r.listenTo&&Array.isArray(r.listenTo)&&r.listenTo.forEach((e=>{this.watchField(e,a,t)})),!r.updateOnButton&&r.listenTo){if(this.shouldSkipDynamicInitRefresh(e,r,t,n))return;if(r.requireAllFilled){const n=this.collectContext(r,t);r.listenTo.every((e=>{const t=n[e];return this.isContextValueFilled(t)}))?this.debouncedUpdate(a,t):this.shouldClearOnEmptyContext(r)?this.optionsUpdater.updateOptions(e,[],t):this.debouncedUpdate(a,t)}else this.debouncedUpdate(a,t)}}shouldSkipDynamicInitRefresh(e,t,n,r={}){if(!r?.isDynamicInit)return!1;const a=e.closest(".jet-form-builder-repeater__row");if(!a||!Array.isArray(t.listenTo)||!t.listenTo.length)return!1;if(!t.listenTo.every((e=>!this.findElementInScope(e,a,a))))return!1;const i=this.readCurrentTargetValue(e);if(!this.isContextValueFilled(i))return!1;const o=this.serializeContext(this.collectContext(t,n)),l=this.buildContextMemoryKey(t);return this.lastContextHashes.get(l)===o}readCurrentTargetValue(e){if(e.matches("select"))return e.multiple?Array.from(e.selectedOptions).map((e=>e.value)):e.value||"";const t=e.querySelector?.("select");if(t)return t.multiple?Array.from(t.selectedOptions).map((e=>e.value)):t.value||"";const n=Array.from(e.querySelectorAll?.('input[type="checkbox"], input[type="radio"]')||[]);if(!n.length)return"";const r=n.filter((e=>e.checked));return r.length?r.every((e=>"checkbox"===e.type))?r.map((e=>e.value)):r[0]?.value||"":""}buildContextMemoryKey(e){return[e.formId||0,e.generatorId||"",e.fieldName||"",Array.isArray(e.listenTo)?e.listenTo.join("|"):""].join("::")}serializeContext(e){const t={};return Object.keys(e||{}).sort().forEach((n=>{t[n]=e[n]})),JSON.stringify(t)}preserveRepeaterValuesBeforeRemoval(e){const t=e.closest(".jet-form-builder-repeater__row"),n=e.closest('[data-repeater="1"]'),r=n?.querySelector(".jet-form-builder-repeater__items")||n;if(!t||!n||!r)return;const a=Array.from(r.querySelectorAll(":scope > .jet-form-builder-repeater__row")),i=a.indexOf(t),o=n.dataset.fieldName||"repeater";i<0||this.autoUpdateFields.forEach((e=>{const r=e?.element,l=e?.config,s=r?.closest(".jet-form-builder-repeater__row");if(!(r&&l&&s&&s!==t&&n.contains(s)))return;const u=a.indexOf(s);if(u<0)return;const c=this.readValueFromSourceElement(r);if(!this.isContextValueFilled(c))return;const d=`${o}[${u>i?u-1:u}].${l.fieldName}`;this.preservedRepeaterValues.set(d,c)}))}consumePreservedRepeaterValue(e){if(!this.preservedRepeaterValues.has(e))return;const t=this.preservedRepeaterValues.get(e);return this.preservedRepeaterValues.delete(e),t}parseFieldConfig(e){const t=e.dataset.generatorId,n=e.dataset.fieldName;if(!t||!n)return null;let r=e.dataset.listenTo||null;return r&&("1"===e.dataset.listenToMultiple?(r=this.parseJSON(r),Array.isArray(r)||(r=null)):r=[r]),{generatorId:t,fieldName:n,listenTo:r,requireAllFilled:"1"===e.dataset.requireAllFilled,emptyContextAction:e.dataset.emptyContextAction||"clear",updateOnButton:e.dataset.updateOnButton||null,updateOnButtonClass:e.dataset.updateOnButtonClass||"",cacheTimeout:parseInt(e.dataset.cacheTimeout)||60,formId:parseInt(e.dataset.formId)||0}}parseJSON(e){try{return JSON.parse(e)}catch(e){return null}}createInputWrapperFromDOM(e,t,n=null){let r=n;if(r||(r=t.querySelector(`[data-field-name="${e}"]`)),r||(r=t.querySelector(`[name="${e}"]`)),!r)return null;const a={name:e,node:r,value:{current:r.value||"",watchers:[],watch:e=>{const t=()=>{a.value.current=r.value||"",e(a.value.current)};return r.addEventListener("change",t),r.addEventListener("input",t),()=>{r.removeEventListener("change",t),r.removeEventListener("input",t)}}}};return a}findElementInScope(e,t,n){const r=t?[t,n]:[n];for(const t of r){let n=t.querySelector(`[data-field-name="${e}"]`)||t.querySelector(`[name="${e}"]`)||t.querySelector(`[name="${e}[]"]`)||t.querySelector(`[name*="[${e}]"]`);if(n)return n}return null}buildWatcherKey(e,t){if(!t)return e;const n=t.parentElement,r=n?Array.from(n.children).indexOf(t):0;return`${t.closest('[data-repeater="1"]')?.dataset?.fieldName||"repeater"}[${r}].${e}`}watchField(e,t,n){const r=this.autoUpdateFields.get(t),a=r?.element||null,i=a?a.closest(".jet-form-builder-repeater__row"):null,o=this.findElementInScope(e,i,n),l=!!o&&this.shouldUseDomWatch(o);let s=null;if(o&&!l&&window.JetFormBuilderMain?.inputData){const t=this.resolveActualName(o,e);if(window.JetFormBuilderMain.inputData.findInput&&(s=window.JetFormBuilderMain.inputData.findInput(t,n)||window.JetFormBuilderMain.inputData.findInput(e,n)),!s&&window.JetFormBuilderMain.inputData.getInput&&(s=window.JetFormBuilderMain.inputData.getInput(t,n)||window.JetFormBuilderMain.inputData.getInput(e,n)),!s&&window.JetFormBuilderMain.inputData.getAll){const r=window.JetFormBuilderMain.inputData.getAll(n);r&&(s=r.find((e=>e.name===t))||r.find((t=>t.name===e)))}}else if(!o&&(window.JetFormBuilderMain?.inputData?.findInput&&(s=window.JetFormBuilderMain.inputData.findInput(e,n)),!s&&window.JetFormBuilderMain?.inputData?.getInput&&(s=window.JetFormBuilderMain.inputData.getInput(e,n)),!s&&window.JetFormBuilderMain?.inputData?.getAll)){const t=window.JetFormBuilderMain.inputData.getAll(n);t&&(s=t.find((t=>t.name===e)))}if(!s){const t=o||this.findElementInScope(e,null,n);t&&(s=this.createInputWrapperFromDOM(this.resolveActualName(t,e),n,t))}if(!s)return;const u=this.buildWatcherKey(e,i);let c=this.watchers.get(u);if(!c){let t;if(l){let r=null;const a=t=>{const a=t?.target;if(!a||a.nodeType!==Node.ELEMENT_NODE)return;const o=()=>{const t=this.findElementInScope(e,i,n);if(!t)return;if(!this.isEventFromSourceField(a,t))return;const o=this.readValueFromSourceElement(t),l=JSON.stringify(o);l!==r&&(r=l,this.handleFieldChange(u,n))};"click"!==t.type?o():setTimeout(o,0)};n.addEventListener("change",a,!0),n.addEventListener("input",a,!0),n.addEventListener("click",a,!0);const l=this.isAutocompleteSourceElement(o),s=this.isCalculatedSourceElement(o);let c=null,d=null,p=null,h=null,f=null,m=null;if(window.jQuery&&(l||s)){const t=this.findElementInScope(e,i,n),a=l?t?.matches("select")?t:t?.querySelector("select"):t?.matches("input.jet-form-builder__calculated-field-input")?t:t?.querySelector("input.jet-form-builder__calculated-field-input");if(a&&(c=window.jQuery(a),l&&(d=()=>{const e=this.readValueFromSourceElement(a),t=JSON.stringify(e);t!==r&&(r=t,this.handleFieldChange(u,n))},c.on("select2:select select2:unselect",d)),s)){h=a,p=()=>{const e=this.readValueFromSourceElement(a),t=JSON.stringify(e);t!==r&&(r=t,this.handleFieldChange(u,n))},c.on("change",p),m=p,a.addEventListener("change",m),a.addEventListener("input",m);const e=a.closest(".jet-form-builder__calculated-field"),t=e?.querySelector(".jet-form-builder__calculated-field-val");t&&window.MutationObserver&&(f=new MutationObserver((()=>{p()})),f.observe(t,{childList:!0,characterData:!0,subtree:!0}))}}t=()=>{n.removeEventListener("change",a,!0),n.removeEventListener("input",a,!0),n.removeEventListener("click",a,!0),c&&d&&c.off("select2:select select2:unselect",d),c&&p&&c.off("change",p),h&&m&&(h.removeEventListener("change",m),h.removeEventListener("input",m)),f&&f.disconnect()}}else t=s.value.watch((()=>{this.handleFieldChange(u,n)}));c={unwatch:t,dependents:[]},this.watchers.set(u,c)}c.dependents.includes(t)||c.dependents.push(t)}watchAllFields(e,t){var n;(null!==(n=window.JetFormBuilderMain?.inputData?.getAll(t))&&void 0!==n?n:[]).forEach((n=>{const r=n.name;r!==e&&this.watchField(r,e,t)}))}watchButton(e,t,n){const r=this.autoUpdateFields.get(t),a=r?.config?.updateOnButtonClass||"",i=`${e}::${a}::${t}`;if(this.buttonListeners.has(i))return;const o=r?.element||null,l=o?.closest(".jet-form-builder-page")||null,s=[];if(l){const t=parseInt(l.dataset.page)||0;"next"===e&&t>1?s.push(`.jet-form-builder-page[data-page="${t-1}"] .jet-form-builder__action-button-wrapper[data-type="${e}"]`):"prev"===e&&t>0&&s.push(`.jet-form-builder-page[data-page="${t+1}"] .jet-form-builder__action-button-wrapper[data-type="${e}"]`),s.push(`.jet-form-builder-page[data-page="${l.dataset.page}"] .jet-form-builder__action-button-wrapper[data-type="${e}"]`)}s.push(`.jet-form-builder__action-button-wrapper[data-type="${e}"]`);const u=this.findActionButtonWrapper(s,a,n),c=u?u.querySelector("button"):null;if(!c)return;let d=!1;const p=async e=>{if(e.isTrusted)if(d)e.preventDefault();else{e.preventDefault(),d=!0;try{await this.updateField(t,n)}catch(e){}finally{d=!1,c.click()}}};c.addEventListener("click",p),this.buttonListeners.set(i,{element:c,handler:p})}normalizeButtonClassNames(e){return(e||"").split(/\s+/).map((e=>e.trim().replace(/^\./,""))).filter(Boolean)}findActionButtonWrapper(e,t,n){const r=this.normalizeButtonClassNames(t);if(r.length)for(const t of e){const e=Array.from(n.querySelectorAll(t)).find((e=>{const t=e.querySelector("button");return!!t&&r.every((e=>t.classList.contains(e)))}));if(e)return e}for(const t of e){const e=n.querySelector(t);if(e)return e}return null}handleFieldChange(e,t){const n=this.watchers.get(e);n&&n.dependents.length&&n.dependents.forEach((e=>{const n=this.autoUpdateFields.get(e),r=n?.config;if(!r?.updateOnButton){if(r?.requireAllFilled){const a=this.collectContext(r,t);if(!r.listenTo.every((e=>{const t=a[e];return this.isContextValueFilled(t)})))return void(this.shouldClearOnEmptyContext(r)?(this.abortPreviousRequest(e),this.optionsUpdater.updateOptions(n.element,[],t)):this.debouncedUpdate(e,t))}this.debouncedUpdate(e,t)}}))}debouncedUpdate(e,t){clearTimeout(this.debounceTimers.get(e));const n=setTimeout((()=>{this.updateField(e,t),this.debounceTimers.delete(e)}),this.debounceDelay);this.debounceTimers.set(e,n)}getLockState(e){var t;const n=e?.dataset?.formId;return n&&window.JetFormBuilder?.[n]&&null!==(t=window.JetFormBuilder[n]?.getSubmit?.()?.lockState)&&void 0!==t?t:null}lockFormLoading(e){var t;const n=e?.dataset?.formId;if(!n)return;const r=(null!==(t=this.loadingCounts.get(n))&&void 0!==t?t:0)+1;this.loadingCounts.set(n,r),1===r&&this.getLockState(e)?.start()}unlockFormLoading(e){var t;const n=e?.dataset?.formId;if(!n)return;const r=Math.max(0,(null!==(t=this.loadingCounts.get(n))&&void 0!==t?t:0)-1);this.loadingCounts.set(n,r),0===r&&this.getLockState(e)?.end()}async updateField(e,t){const n=this.autoUpdateFields.get(e);if(!n)return;const{element:r,config:a}=n,i=this.collectContext(a,t),o=this.buildContextMemoryKey(a),l=this.serializeContext(i);this.lastContextHashes.set(o,l);const s=this.cacheManager.get(a.generatorId,i,a.cacheTimeout,a.fieldName);if(s)return void this.optionsUpdater.updateOptions(r,s,t);this.abortPreviousRequest(e);const u=new AbortController;this.abortControllers.set(e,u);try{this.optionsUpdater.setLoadingState(r,!0),this.lockFormLoading(t);const e=await this.fetchOptions(a,i,u.signal);this.cacheManager.set(a.generatorId,i,e,a.fieldName),this.optionsUpdater.updateOptions(r,e,t)}catch(e){"AbortError"!==e.name&&(console.error("[JFB Auto-Update] Update failed:",e),this.optionsUpdater.setErrorState(r,e.message))}finally{this.optionsUpdater.setLoadingState(r,!1),this.unlockFormLoading(t),this.abortControllers.delete(e)}}collectContext(e,t){const n={},r=e.fieldKey||e.fieldName,a=this.autoUpdateFields.get(r),i=a?.element||null,o=i?i.closest(".jet-form-builder-repeater__row"):null;return e.listenTo&&Array.isArray(e.listenTo)&&e.listenTo.forEach((e=>{const r=this.findElementInScope(e,o,t);if(r){const a=this.resolveActualName(r,e);let i=null;if(window.JetFormBuilderMain?.inputData&&(i=window.JetFormBuilderMain.inputData.findInput?.(a,t)||window.JetFormBuilderMain.inputData.findInput?.(e,t)||window.JetFormBuilderMain.inputData.getInput?.(a,t)||window.JetFormBuilderMain.inputData.getInput?.(e,t),!i&&window.JetFormBuilderMain.inputData.getAll)){const n=window.JetFormBuilderMain.inputData.getAll(t)||[];i=n.find((e=>e.name===a))||n.find((t=>t.name===e))}const o=this.shouldUseDomWatch(r);n[e]=!o&&i?i.value.current:this.readValueFromSourceElement(r)}})),n}resolveActualName(e,t){return e.getAttribute("name")||e.querySelector("[name]")?.getAttribute("name")||t}readValueFromSourceElement(e){const t=e.getAttribute("name")||e.querySelector("[name]")?.getAttribute("name")||null,n=e.closest(".jet-form-builder-repeater__row")||e.closest("form")||document;if(t){const e=Array.from(n.querySelectorAll(`input[type="checkbox"][name="${CSS.escape(t)}"]`));if(e.length)return e.filter((e=>e.checked)).map((e=>e.value));const r=Array.from(n.querySelectorAll(`input[type="radio"][name="${CSS.escape(t)}"]`));if(r.length){const e=r.find((e=>e.checked));return e?e.value:""}}const r=e.matches('input[type="checkbox"]')?[e]:Array.from(e.querySelectorAll('input[type="checkbox"]'));if(r.length)return r.filter((e=>e.checked)).map((e=>e.value));const a=e.matches('input[type="radio"]')?[e]:Array.from(e.querySelectorAll('input[type="radio"]'));if(a.length){const e=a.find((e=>e.checked));return e?e.value:""}const i=e.matches("select[multiple]")?e:e.querySelector("select[multiple]");return i?Array.from(i.selectedOptions).map((e=>e.value)):e.value||""}isMultiChoiceSourceElement(e){return!!e&&(!!e.matches('input[type="checkbox"], input[type="radio"], select[multiple]')||Boolean(e.querySelector('input[type="checkbox"], input[type="radio"], select[multiple]')))}isAutocompleteSourceElement(e){return!!e&&(e.matches("select.jet-select-autocomplete")||Boolean(e.querySelector("select.jet-select-autocomplete")))}isCalculatedSourceElement(e){return!!e&&(e.matches("input.jet-form-builder__calculated-field-input")||Boolean(e.querySelector("input.jet-form-builder__calculated-field-input"))||Boolean(e.closest(".jet-form-builder__calculated-field")))}shouldUseDomWatch(e){return this.isMultiChoiceSourceElement(e)||this.isAutocompleteSourceElement(e)||this.isCalculatedSourceElement(e)}isEventFromSourceField(e,t){if(t.contains(e)||t===e)return!0;const n=this.resolveEventTargetName(e,t.closest("form")||document),r=t.getAttribute("name")||t.querySelector("[name]")?.getAttribute("name")||null;return Boolean(n&&r&&n===r)}resolveEventTargetName(e,t){if(!e)return null;if(e.getAttribute&&e.getAttribute("name"))return e.getAttribute("name");const n=e.closest?.("input, select, textarea");if(n?.getAttribute("name"))return n.getAttribute("name");const r=e.closest?.("label");if(!r)return null;const a=r.querySelector("input, select, textarea");if(a?.getAttribute("name"))return a.getAttribute("name");const i=r.getAttribute("for");if(!i)return null;const o=t.querySelector(`#${CSS.escape(i)}`);return o?.getAttribute("name")||null}isContextValueFilled(e){return Array.isArray(e)?e.some((e=>null!=e&&""!==e)):null!=e&&""!==e}shouldClearOnEmptyContext(e){return!!(Array.isArray(e?.listenTo)&&e.listenTo.length>1)||"clear"===(e?.emptyContextAction||"clear")}getUpdateEndpoint(){const e=window.JFBOptionFieldAutoUpdate?.endpoint;if(e)return e;const t=window.wpApiSettings?.root;return t?`${t.replace(/\/+$/,"")}/jet-form-builder/v1/generator-update`:"/wp-json/jet-form-builder/v1/generator-update"}async fetchOptions(e,t,n){const r=new URLSearchParams(window.location.search).get("jfb_preview_nonce")||"",a={"Content-Type":"application/json"};window.wpApiSettings?.nonce&&(a["X-WP-Nonce"]=window.wpApiSettings.nonce);const i=await fetch(this.getUpdateEndpoint(),{method:"POST",headers:a,body:JSON.stringify({form_id:e.formId,field_name:e.fieldName,generator_id:e.generatorId,context:t,preview_nonce:r}),signal:n});if(!i.ok)throw new Error(`HTTP error! status: ${i.status}`);const o=await i.json();if(!o.success)throw new Error(o.message||"Unknown error");return o.options||[]}abortPreviousRequest(e){const t=this.abortControllers.get(e);t&&(t.abort(),this.abortControllers.delete(e))}destroy(){this.watchers.forEach((e=>e.unwatch?.())),this.debounceTimers.forEach((e=>clearTimeout(e))),this.abortControllers.forEach((e=>e.abort())),this.buttonListeners.forEach((({element:e,handler:t})=>e.removeEventListener("click",t))),this.watchers.clear(),this.autoUpdateFields.clear(),this.abortControllers.clear(),this.debounceTimers.clear(),this.buttonListeners.clear(),this.cacheManager.clearAll()}};n(563);let a=null;function i(){return a||(a=new r),a}function o(e){e&&(e instanceof jQuery&&(e=e[0]),e?.querySelectorAll&&i().initForm(e))}const l=new Set;function s(e=100){if(void 0===window.JetFormBuilderMain)return e<=0?void console.warn("[JFB Auto-Update] JetFormBuilderMain is not available. Auto-update was not initialized."):(e%20==0&&console.warn("[JFB Auto-Update] JetFormBuilderMain not available, retrying..."),void setTimeout((()=>s(e-1)),100));document.addEventListener("jet-form-builder/conditional-block/block-toggle-hidden-dom",(e=>{const{block:t,result:n}=e.detail||{};if(!t||n)return;const r=i();if(!r.watchers.size)return;const a=new Set;if(t.dataset?.fieldName&&a.add(t.dataset.fieldName),(t.querySelectorAll?t.querySelectorAll("[data-field-name]"):[]).forEach((e=>{a.add(e.getAttribute("data-field-name"))})),!a.size)return;const o=new Set;if(r.watchers.forEach(((e,t)=>{[...a].some((e=>t===e||t.endsWith(`.${e}`)))&&e.dependents.forEach((e=>{o.add(e),[...a].forEach((t=>{l.delete(`${t}:${e}`)}))}))})),!o.size)return;let s=null;for(const e of o){const t=r.autoUpdateFields.get(e);if(t?.element&&(s=t.element.closest("form"),s))break}s&&o.forEach((e=>{r.debouncedUpdate(e,s)}))})),jQuery(document).on("jet-form-builder/after-init",((e,t)=>{const n=t[0]?.querySelector("form.jet-form-builder");n&&(o(n),function(e){if(!e||!window.MutationObserver)return;if(e instanceof jQuery&&(e=e[0]),!e?.querySelectorAll)return;if(e.hasAttribute("data-jfb-au-observed"))return;e.setAttribute("data-jfb-au-observed","1"),e.addEventListener("click",(t=>{const n=t.target?.closest?.(".jet-form-builder-repeater__remove");n&&i().preserveRepeaterValuesBeforeRemoval(n,e)}),!0);const t=new MutationObserver((t=>{t.forEach((t=>{t.removedNodes.forEach((e=>{e.nodeType===Node.ELEMENT_NODE&&function(e){const t=[];if(("1"===e.dataset?.repeaterRow||e.classList?.contains("jet-form-builder-repeater__row"))&&t.push(e),e.querySelectorAll&&e.querySelectorAll(".jet-form-builder-repeater__row").forEach((e=>t.push(e))),!t.length)return;const n=i();t.forEach((e=>{const t=[];n.autoUpdateFields.forEach(((n,r)=>{const a=n?.element;a&&e.contains(a)&&t.push(r)})),t.forEach((e=>{n.autoUpdateFields.delete(e)}));const r=[];n.watchers.forEach(((e,n)=>{e.dependents.some((e=>t.includes(e)))&&(e.dependents=e.dependents.filter((e=>!t.includes(e))),e.dependents.length||(e.unwatch&&e.unwatch(),r.push(n)))})),r.forEach((e=>{n.watchers.delete(e)}))}))}(e)})),t.addedNodes.forEach((t=>{if(t.nodeType!==Node.ELEMENT_NODE)return;const n=[];t.hasAttribute&&t.getAttribute("data-field-name")&&n.push(t),t.querySelectorAll&&t.querySelectorAll("[data-field-name]").forEach((e=>n.push(e))),n.forEach((t=>{const n=t.getAttribute("data-field-name");t.hasAttribute("data-jfb-auto-update")&&i().initField(t,e,{isDynamicInit:!0}),function(e,t){const n=i();n.autoUpdateFields.forEach(((r,a)=>{const{config:i}=r;if(i.listenTo&&Array.isArray(i.listenTo)&&i.listenTo.includes(e)){const r=`${e}:${a}`;if(l.has(r))return;l.add(r),n.watchField(e,a,t),function(e,t){return e.every((e=>{const n=t.querySelector(`[data-field-name="${e}"]`)||t.querySelector(`[name="${e}"]`);return n&&n.value}))}(i.listenTo,t)&&n.debouncedUpdate(a,t)}}))}(n,e)}))}))}))}));t.observe(e,{childList:!0,subtree:!0})}(n))}))}"loading"===document.readyState?document.addEventListener("DOMContentLoaded",s):s(),window.JFBAutoUpdate={getWatcher:i,initAutoUpdate:o}})()})(); \ No newline at end of file diff --git a/modules/option-field/assets/build/checkbox.asset.php b/modules/option-field/assets/build/checkbox.asset.php index 3e5cc51ef..dc61dbb53 100644 --- a/modules/option-field/assets/build/checkbox.asset.php +++ b/modules/option-field/assets/build/checkbox.asset.php @@ -1 +1 @@ - array(), 'version' => '0a3ef3c1811be5626bbd'); + array(), 'version' => 'bfa87341074316440bdf'); diff --git a/modules/option-field/assets/build/checkbox.js b/modules/option-field/assets/build/checkbox.js index 51a408bc1..cb2872936 100644 --- a/modules/option-field/assets/build/checkbox.js +++ b/modules/option-field/assets/build/checkbox.js @@ -1 +1 @@ -(()=>{var t={554(){const{CalculatedFormula:t}=JetFormBuilderAbstract,{addAction:e}=JetPlugins.hooks,r="__JFB_OPTION_FIELD_DEFAULT_VALUE_OBSERVER__";function n(t){if("string"!=typeof t||t.length<2)return t;const e=t.charAt(0),r=t.charAt(t.length-1);return"'"===e&&"'"===r||'"'===e&&'"'===r?t.slice(1,-1):t}function o(t){return Array.isArray(t)?t.some(o):"string"==typeof t&&t.includes("%")}function s(t){return!(""===t||null===t||Array.isArray(t)&&!t.length)}function i(e,r){const i=Array.isArray(r)?r:[r],a=[],u=new Array(i.length);i.forEach((c,l)=>{const d=new t(e);d.observe(function(t){if("string"!=typeof t)return t;const e=t.trim();return!o(e)||function(t){if("string"!=typeof t||t.length<2)return!1;const e=t.charAt(0),r=t.charAt(t.length-1);return"'"===e&&"'"===r||'"'===e&&'"'===r}(e)?e:`'${e.replace(/'/g,"\\'")}'`}(c)),d.setResult=()=>{const t=d.calculate();s(t)&&(u[l]=t,Object.keys(u).length===i.length&&u.every(s)&&(function(t,e){if(Array.isArray(e))return void t.value.setIfEmpty(e.map(t=>n(""+t)));const r=n(""+e);if(!t.isArray())return function(t){if(t.isArray()||"select"!==t.inputType)return!1;const[e]=t.nodes;if(!e||"select-one"!==e.type||e.multiple||!e.options?.length)return!1;const r=Array.from(e.options),[n]=r;return!!n&&!r.some(t=>""===t.value)&&!r.some(t=>t.defaultSelected)&&0===e.selectedIndex&&e.value===n.value}(t)?void(t.value.current=r):void t.value.setIfEmpty(r);const o=function(t){if("string"!=typeof t)return t;const e=t.trim();try{const r=JSON.parse(e);return Array.isArray(r)?r:t}catch(r){if(e.startsWith("[")&&e.endsWith("]")&&e.includes("'"))try{const r=e.replace(/'((?:\\'|[^'])*)'/g,(t,e)=>`"${e.replace(/"/g,'\\"')}"`),n=JSON.parse(r);return Array.isArray(n)?n:t}catch(e){return t}return t}}(r);t.value.setIfEmpty(Array.isArray(o)?o.map(t=>n(""+t)):[r])}(e,Array.isArray(r)?u:u[0]),a.forEach(t=>t.clearWatchers())))},d.setResult(),a.push(d)})}function a(t){var e,r,n;const[s]=t.nodes,a=null!==(e=t.wrapper)&&void 0!==e?e:s,u=null!==(r=null!==(n=a?.dataset?.defaultVal)&&void 0!==n?n:s?.dataset?.defaultVal)&&void 0!==r?r:"",c=function(t){if("string"!=typeof t)return t;const e=t.trim();try{const t=JSON.parse(e);return Array.isArray(t)?t:e}catch(t){if(e.startsWith("[")&&e.endsWith("]")&&e.includes("'"))try{const t=e.replace(/'((?:\\'|[^'])*)'/g,(t,e)=>`"${e.replace(/"/g,'\\"')}"`),r=JSON.parse(t);return Array.isArray(r)?r:e}catch(t){return e}return e}}(u);(function(t,e){if(Array.isArray(e))return e.length>0;if("string"!=typeof t)return o(e);const r=t.trim();return o(e)||r.startsWith("[")&&r.endsWith("]")})(u,c)&&i(t,c)}window[r]||(window[r]=!0,e("jet.fb.observe.after","jet-form-builder/option-field-default-value",function(t){for(const e of t.getInputs()){const[t]=e.nodes;t&&["select","radio","checkbox"].includes(e.inputType)&&a(e)}}))}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var s=e[n]={exports:{}};return t[n](s,s.exports,r),s.exports}(()=>{"use strict";const t=function(t){return t.nextElementSibling.querySelector("input.text-field")},e=function(t,e,r){var n;if(t.checked=e?.includes(t.value),!t.checked)return;if(r.calcValue+=parseFloat(null!==(n=t.dataset?.calculate)&&void 0!==n?n:t.value),!r.isArray())return;const o=e.indexOf(t.value);e.splice(o,1)},{isEmpty:n}=JetFormBuilderFunctions,{InputData:o,ReactiveHook:s}=JetFormBuilderAbstract,{getParsedName:i}=JetFormBuilderFunctions;function a(){o.call(this),this.wrapper=null,this.isResetCalcValue=!1}a.prototype=Object.create(o.prototype),a.prototype.wrapper=null,a.prototype.isSupported=function(t){return t.classList.contains("checkradio-wrap")&&t.querySelector(".checkboxes-wrap")},a.prototype.addListeners=function(){this.enterKey=new s,this.wrapper.addEventListener("change",this.onChangeValue.bind(this)),this.wrapper.addEventListener("keydown",this.handleEnterKey.bind(this)),this.wrapper.addEventListener("focusout",t=>{[...this.nodes].includes(t?.relatedTarget)||t?.relatedTarget?.closest?.(".jet-form-builder__field-wrap.custom-option")||this.reportOnBlur()}),this.addNewButton&&this.wrapper.addEventListener("click",t=>{t?.target&&!this.addNewButton.isEqualNode(t.target)||(this.silenceSet([...this.value.current,!0]),this.getCustomNodes().at(-1).closest(".jet-form-builder__field-wrap").querySelector("span input.jet-form-builder__field").focus())}),this.isArray()&&this.sanitize(t=>function(t,e){return Array.isArray(t)?(!e?.keepCommas&&1===t.length&&t[0]&&1!=t[0]&&String(t[0]).includes(",")&&(t=(t=String(t[0]).split(",")).map(t=>"true"===t?"":"false"===t?null:t)),t):[t].filter(Boolean)}(t,this)),this.callable=null,this.sanitize(r=>function(r,o){o.calcValue=0;const s=o.isArray()?[...r]:r;for(const t of o.nodes)!t.dataset.custom&&e(t,s,o);if(!o.addNewButton)return r;const i=o.getCustomNodes();if(!i.length||s.length){for(let e=Math.max(i.length,s.length)-1;e>=0;e--){let r=i[e];const a=s[e];if(null==a){r&&r.closest(".custom-option").remove();continue}if(void 0===r){if(!1===a)continue;o.addCustomOption(),r=o.nodes[o.nodes.length-1]}const u=t(r);u.disabled=!1===a,u.disabled||n(a)||!0===a||(o.calcValue+=1),u.value!==a&&"boolean"!=typeof a&&(u.value=a)}return r.filter(t=>null!==t)}for(let t=Math.max(i.length,s.length)-1;t>=0;t--)if(i[t]){let e=i[t];void 0===s[t]&&e.closest(".custom-option").remove()}}(r,this))},a.prototype.onChangeValue=function(t){this.value.current=this.getActiveValue()},a.prototype.setValue=function(){this.value.current=this.getActiveValue(),this.value.applySanitizers(this.value.current)},a.prototype.setNode=function(t){t.jfbSync=this,this.nodes=t.getElementsByClassName("jet-form-builder__field checkboxes-field"),this.rawName=this.nodes[0].name,this.name=i(this.rawName),this.inputType="checkbox",this.wrapper=t,this.addNewButton=t.querySelector(".jet-form-builder__field-wrap.custom-option .add-custom-option")},a.prototype.getActiveValue=function(){var t;const e=[];this.keepCommas=!1;for(const t of this.nodes)t.checked&&"1"===t.dataset.keepCommas&&(this.keepCommas=!0),this.processValueFormSingleChoice(t,e);return this.isArray()?e:null!==(t=e?.[0])&&void 0!==t?t:""},a.prototype.processValueFormSingleChoice=function(e,r){if(!e.dataset.custom&&!e.checked)return;if(!e.dataset.custom)return void r.push(e.value);const n=t(e);e.checked||n.value?n.value||!e.checked?n.value&&r.push(!!e.checked&&n.value):r.push(!0):r.push(null)},a.prototype.isArray=function(){return Boolean(this.addNewButton)||this.nodes.item&&this.nodes.item(0)?.name?.includes?.("[]")},a.prototype.addCustomOption=function(){const t=this.addNewButton.closest(".custom-option");return this.wrapper.insertBefore(this.getCustomOptionNode(),t)},a.prototype.getCustomOptionNode=function(){if(!this.addNewButton)return!1;const t=this.addNewButton.querySelector("template"),e=document.createElement("template");return e.innerHTML=t.innerHTML.trim(),e.content.firstChild},a.prototype.getCustomNodes=function(){return[...this.nodes].filter(t=>t.dataset.custom&&t.nextElementSibling)};const u=a;r(554);const{addFilter:c}=JetPlugins.hooks;window.JetFormBuilderAbstract={...window.JetFormBuilderAbstract,CheckboxData:u},c("jet.fb.inputs","jet-form-builder/checkbox-field",function(t){return[u,...t]})})()})(); \ No newline at end of file +(()=>{var t={554:()=>{const{CalculatedFormula:t}=JetFormBuilderAbstract,{addAction:e}=JetPlugins.hooks,r="__JFB_OPTION_FIELD_DEFAULT_VALUE_OBSERVER__";function n(t){if("string"!=typeof t||t.length<2)return t;const e=t.charAt(0),r=t.charAt(t.length-1);return"'"===e&&"'"===r||'"'===e&&'"'===r?t.slice(1,-1):t}function o(t){return Array.isArray(t)?t.some(o):"string"==typeof t&&t.includes("%")}function s(t){return!(""===t||null===t||Array.isArray(t)&&!t.length)}function i(e,r){const i=Array.isArray(r)?r:[r],a=[],u=new Array(i.length);i.forEach(((c,l)=>{const d=new t(e);d.observe(function(t){if("string"!=typeof t)return t;const e=t.trim();return!o(e)||function(t){if("string"!=typeof t||t.length<2)return!1;const e=t.charAt(0),r=t.charAt(t.length-1);return"'"===e&&"'"===r||'"'===e&&'"'===r}(e)?e:`'${e.replace(/'/g,"\\'")}'`}(c)),d.setResult=()=>{const t=d.calculate();s(t)&&(u[l]=t,Object.keys(u).length===i.length&&u.every(s)&&(function(t,e){if(Array.isArray(e))return void t.value.setIfEmpty(e.map((t=>n(""+t))));const r=n(""+e);if(!t.isArray())return function(t){if(t.isArray()||"select"!==t.inputType)return!1;const[e]=t.nodes;if(!e||"select-one"!==e.type||e.multiple||!e.options?.length)return!1;const r=Array.from(e.options),[n]=r;return!!n&&!r.some((t=>""===t.value))&&!r.some((t=>t.defaultSelected))&&0===e.selectedIndex&&e.value===n.value}(t)?void(t.value.current=r):void t.value.setIfEmpty(r);const o=function(t){if("string"!=typeof t)return t;const e=t.trim();try{const r=JSON.parse(e);return Array.isArray(r)?r:t}catch(r){if(e.startsWith("[")&&e.endsWith("]")&&e.includes("'"))try{const r=e.replace(/'((?:\\'|[^'])*)'/g,((t,e)=>`"${e.replace(/"/g,'\\"')}"`)),n=JSON.parse(r);return Array.isArray(n)?n:t}catch(e){return t}return t}}(r);t.value.setIfEmpty(Array.isArray(o)?o.map((t=>n(""+t))):[r])}(e,Array.isArray(r)?u:u[0]),a.forEach((t=>t.clearWatchers()))))},d.setResult(),a.push(d)}))}function a(t){var e,r,n;const[s]=t.nodes,a=null!==(e=t.wrapper)&&void 0!==e?e:s,u=null!==(r=null!==(n=a?.dataset?.defaultVal)&&void 0!==n?n:s?.dataset?.defaultVal)&&void 0!==r?r:"",c=function(t){if("string"!=typeof t)return t;const e=t.trim();try{const t=JSON.parse(e);return Array.isArray(t)?t:e}catch(t){if(e.startsWith("[")&&e.endsWith("]")&&e.includes("'"))try{const t=e.replace(/'((?:\\'|[^'])*)'/g,((t,e)=>`"${e.replace(/"/g,'\\"')}"`)),r=JSON.parse(t);return Array.isArray(r)?r:e}catch(t){return e}return e}}(u);(function(t,e){if(Array.isArray(e))return e.length>0;if("string"!=typeof t)return o(e);const r=t.trim();return o(e)||r.startsWith("[")&&r.endsWith("]")})(u,c)&&i(t,c)}window[r]||(window[r]=!0,e("jet.fb.observe.after","jet-form-builder/option-field-default-value",(function(t){for(const e of t.getInputs()){const[t]=e.nodes;t&&["select","radio","checkbox"].includes(e.inputType)&&a(e)}})))}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var s=e[n]={exports:{}};return t[n](s,s.exports,r),s.exports}(()=>{"use strict";const t=function(t){return t.nextElementSibling.querySelector("input.text-field")},e=function(t,e,r){var n;if(t.checked=e?.includes(t.value),!t.checked)return;if(r.calcValue+=parseFloat(null!==(n=t.dataset?.calculate)&&void 0!==n?n:t.value),!r.isArray())return;const o=e.indexOf(t.value);e.splice(o,1)},{isEmpty:n}=JetFormBuilderFunctions,{InputData:o,ReactiveHook:s}=JetFormBuilderAbstract,{getParsedName:i}=JetFormBuilderFunctions;function a(){o.call(this),this.wrapper=null,this.isResetCalcValue=!1}a.prototype=Object.create(o.prototype),a.prototype.wrapper=null,a.prototype.isSupported=function(t){return t.classList.contains("checkradio-wrap")&&t.querySelector(".checkboxes-wrap")},a.prototype.addListeners=function(){this.enterKey=new s,this.wrapper.addEventListener("change",this.onChangeValue.bind(this)),this.wrapper.addEventListener("keydown",this.handleEnterKey.bind(this)),this.wrapper.addEventListener("focusout",(t=>{[...this.nodes].includes(t?.relatedTarget)||t?.relatedTarget?.closest?.(".jet-form-builder__field-wrap.custom-option")||this.reportOnBlur()})),this.addNewButton&&this.wrapper.addEventListener("click",(t=>{t?.target&&!this.addNewButton.isEqualNode(t.target)||(this.silenceSet([...this.value.current,!0]),this.getCustomNodes().at(-1).closest(".jet-form-builder__field-wrap").querySelector("span input.jet-form-builder__field").focus())})),this.isArray()&&this.sanitize((t=>function(t,e){return Array.isArray(t)?(!e?.keepCommas&&1===t.length&&t[0]&&1!=t[0]&&String(t[0]).includes(",")&&(t=(t=String(t[0]).split(",")).map((t=>"true"===t?"":"false"===t?null:t))),t):[t].filter(Boolean)}(t,this))),this.callable=null,this.sanitize((r=>function(r,o){o.calcValue=0;const s=o.isArray()?[...r]:r;for(const t of o.nodes)!t.dataset.custom&&e(t,s,o);if(!o.addNewButton)return r;const i=o.getCustomNodes();if(!i.length||s.length){for(let e=Math.max(i.length,s.length)-1;e>=0;e--){let r=i[e];const a=s[e];if(null==a){r&&r.closest(".custom-option").remove();continue}if(void 0===r){if(!1===a)continue;o.addCustomOption(),r=o.nodes[o.nodes.length-1]}const u=t(r);u.disabled=!1===a,u.disabled||n(a)||!0===a||(o.calcValue+=1),u.value!==a&&"boolean"!=typeof a&&(u.value=a)}return r.filter((t=>null!==t))}for(let t=Math.max(i.length,s.length)-1;t>=0;t--)if(i[t]){let e=i[t];void 0===s[t]&&e.closest(".custom-option").remove()}}(r,this)))},a.prototype.onChangeValue=function(t){this.value.current=this.getActiveValue()},a.prototype.setValue=function(){this.value.current=this.getActiveValue(),this.value.applySanitizers(this.value.current)},a.prototype.setNode=function(t){t.jfbSync=this,this.nodes=t.getElementsByClassName("jet-form-builder__field checkboxes-field"),this.rawName=this.nodes[0].name,this.name=i(this.rawName),this.inputType="checkbox",this.wrapper=t,this.addNewButton=t.querySelector(".jet-form-builder__field-wrap.custom-option .add-custom-option")},a.prototype.getActiveValue=function(){var t;const e=[];this.keepCommas=!1;for(const t of this.nodes)t.checked&&"1"===t.dataset.keepCommas&&(this.keepCommas=!0),this.processValueFormSingleChoice(t,e);return this.isArray()?e:null!==(t=e?.[0])&&void 0!==t?t:""},a.prototype.processValueFormSingleChoice=function(e,r){if(!e.dataset.custom&&!e.checked)return;if(!e.dataset.custom)return void r.push(e.value);const n=t(e);e.checked||n.value?n.value||!e.checked?n.value&&r.push(!!e.checked&&n.value):r.push(!0):r.push(null)},a.prototype.isArray=function(){return Boolean(this.addNewButton)||this.nodes.item&&this.nodes.item(0)?.name?.includes?.("[]")},a.prototype.addCustomOption=function(){const t=this.addNewButton.closest(".custom-option");return this.wrapper.insertBefore(this.getCustomOptionNode(),t)},a.prototype.getCustomOptionNode=function(){if(!this.addNewButton)return!1;const t=this.addNewButton.querySelector("template"),e=document.createElement("template");return e.innerHTML=t.innerHTML.trim(),e.content.firstChild},a.prototype.getCustomNodes=function(){return[...this.nodes].filter((t=>t.dataset.custom&&t.nextElementSibling))};const u=a;r(554);const{addFilter:c}=JetPlugins.hooks;window.JetFormBuilderAbstract={...window.JetFormBuilderAbstract,CheckboxData:u},c("jet.fb.inputs","jet-form-builder/checkbox-field",(function(t){return[u,...t]}))})()})(); \ No newline at end of file diff --git a/modules/option-field/assets/build/custom.options.restrictions.asset.php b/modules/option-field/assets/build/custom.options.restrictions.asset.php index 47f60d7d6..6761e9046 100644 --- a/modules/option-field/assets/build/custom.options.restrictions.asset.php +++ b/modules/option-field/assets/build/custom.options.restrictions.asset.php @@ -1 +1 @@ - array(), 'version' => '296eab4487be0ff32f48'); + array(), 'version' => '12a4a3d824bf1ea974d1'); diff --git a/modules/option-field/assets/build/custom.options.restrictions.js b/modules/option-field/assets/build/custom.options.restrictions.js index 806b83c90..f38b841f4 100644 --- a/modules/option-field/assets/build/custom.options.restrictions.js +++ b/modules/option-field/assets/build/custom.options.restrictions.js @@ -1 +1 @@ -(()=>{"use strict";const{isEmpty:t}=JetFormBuilderFunctions,e=e=>"boolean"!=typeof e&&!t(e),i=function(t){const i=t.getValue();return t.isArray()?i.some(e):e(i)},{AdvancedRestriction:r=function(){}}=JetFormBuilderAbstract;function n(){r.call(this),this.type="required",this.isSupported=function(t,e){return e.input.isRequired&&["radio","checkbox"].includes(e.input.inputType)},this.validate=function(){return i(this.reporting.input)},this.getMessage=function(){return this.getMessageBySlug("empty")}}n.prototype=Object.create(r.prototype);const o=n,{Restriction:u}=JetFormBuilderAbstract;function s(){u.call(this),this.type="required",this.isSupported=function(t,e){return e.input.isRequired&&["radio","checkbox"].includes(e.input.inputType)},this.validate=function(){return i(this.reporting.input)}}s.prototype=Object.create(u.prototype);const c=s,{addFilter:p}=JetPlugins.hooks;p("jet.fb.restrictions","jet-form-builder/with-custom-options",function(t){return t.push(o),t}),p("jet.fb.restrictions.default","jet-form-builder/with-custom-options",function(t){return t.push(c),t})})(); \ No newline at end of file +(()=>{"use strict";const{isEmpty:t}=JetFormBuilderFunctions,e=e=>"boolean"!=typeof e&&!t(e),i=function(t){const i=t.getValue();return t.isArray()?i.some(e):e(i)},{AdvancedRestriction:r=function(){}}=JetFormBuilderAbstract;function n(){r.call(this),this.type="required",this.isSupported=function(t,e){return e.input.isRequired&&["radio","checkbox"].includes(e.input.inputType)},this.validate=function(){return i(this.reporting.input)},this.getMessage=function(){return this.getMessageBySlug("empty")}}n.prototype=Object.create(r.prototype);const o=n,{Restriction:u}=JetFormBuilderAbstract;function s(){u.call(this),this.type="required",this.isSupported=function(t,e){return e.input.isRequired&&["radio","checkbox"].includes(e.input.inputType)},this.validate=function(){return i(this.reporting.input)}}s.prototype=Object.create(u.prototype);const c=s,{addFilter:p}=JetPlugins.hooks;p("jet.fb.restrictions","jet-form-builder/with-custom-options",(function(t){return t.push(o),t})),p("jet.fb.restrictions.default","jet-form-builder/with-custom-options",(function(t){return t.push(c),t}))})(); \ No newline at end of file diff --git a/modules/option-field/assets/build/editor.asset.php b/modules/option-field/assets/build/editor.asset.php index cf5d1753f..fd0029719 100644 --- a/modules/option-field/assets/build/editor.asset.php +++ b/modules/option-field/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => '8bcb39c21ad76e5d7e0d'); + array('react', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => 'c79932671644d80bca49'); diff --git a/modules/option-field/assets/build/editor.js b/modules/option-field/assets/build/editor.js index 737d34198..fd5379ea8 100644 --- a/modules/option-field/assets/build/editor.js +++ b/modules/option-field/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={25(e,C,t){t.r(C)},103(e,C,t){t.r(C)}},C={};function t(l){var r=C[l];if(void 0!==r)return r.exports;var n=C[l]={exports:{}};return e[l](n,n.exports,t),n.exports}t.d=(e,C)=>{for(var l in C)t.o(C,l)&&!t.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:C[l]})},t.o=(e,C)=>Object.prototype.hasOwnProperty.call(e,C),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var l={};t.r(l),t.d(l,{metadata:()=>WC,name:()=>XC,settings:()=>QC});var r={};t.r(r),t.d(r,{metadata:()=>vt,name:()=>Lt,settings:()=>kt});var n={};t.r(n),t.d(n,{metadata:()=>Ut,name:()=>zt,settings:()=>Xt});const o=window.React,a=(0,o.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M22.1641 24.835H23.4766C23.4082 25.4639 23.2282 26.0267 22.9365 26.5234C22.6449 27.0202 22.2324 27.4144 21.6992 27.7061C21.166 27.9932 20.5007 28.1367 19.7031 28.1367C19.1198 28.1367 18.5889 28.0273 18.1104 27.8086C17.6364 27.5898 17.2285 27.2799 16.8867 26.8789C16.5449 26.4733 16.2806 25.988 16.0938 25.4229C15.9115 24.8532 15.8203 24.2197 15.8203 23.5225V22.5312C15.8203 21.834 15.9115 21.2028 16.0938 20.6377C16.2806 20.068 16.5472 19.5804 16.8936 19.1748C17.2445 18.7692 17.666 18.457 18.1582 18.2383C18.6504 18.0195 19.2041 17.9102 19.8193 17.9102C20.5713 17.9102 21.207 18.0514 21.7266 18.334C22.2461 18.6165 22.6494 19.0085 22.9365 19.5098C23.2282 20.0065 23.4082 20.583 23.4766 21.2393H22.1641C22.1003 20.7744 21.9818 20.3757 21.8086 20.043C21.6354 19.7057 21.3893 19.446 21.0703 19.2637C20.7513 19.0814 20.3343 18.9902 19.8193 18.9902C19.3773 18.9902 18.9876 19.0745 18.6504 19.2432C18.3177 19.4118 18.0374 19.651 17.8096 19.9609C17.5863 20.2708 17.4176 20.6423 17.3037 21.0752C17.1898 21.5081 17.1328 21.9889 17.1328 22.5176V23.5225C17.1328 24.0101 17.1829 24.4681 17.2832 24.8965C17.388 25.3249 17.5452 25.7008 17.7549 26.0244C17.9645 26.348 18.2311 26.6032 18.5547 26.79C18.8783 26.9723 19.2611 27.0635 19.7031 27.0635C20.2637 27.0635 20.7103 26.9746 21.043 26.7969C21.3757 26.6191 21.6263 26.3639 21.7949 26.0312C21.9681 25.6986 22.0911 25.2998 22.1641 24.835ZM26.3477 17.5V28H25.083V17.5H26.3477ZM26.0469 24.0215L25.5205 24.001C25.5251 23.4951 25.6003 23.028 25.7461 22.5996C25.8919 22.1667 26.097 21.7907 26.3613 21.4717C26.6257 21.1527 26.9401 20.9066 27.3047 20.7334C27.6738 20.5557 28.0817 20.4668 28.5283 20.4668C28.8929 20.4668 29.221 20.5169 29.5127 20.6172C29.8044 20.7129 30.0527 20.8678 30.2578 21.082C30.4674 21.2962 30.627 21.5742 30.7363 21.916C30.8457 22.2533 30.9004 22.6657 30.9004 23.1533V28H29.6289V23.1396C29.6289 22.7523 29.5719 22.4424 29.458 22.21C29.3441 21.973 29.1777 21.8021 28.959 21.6973C28.7402 21.5879 28.4714 21.5332 28.1523 21.5332C27.8379 21.5332 27.5508 21.5993 27.291 21.7314C27.0358 21.8636 26.8148 22.0459 26.6279 22.2783C26.4456 22.5107 26.3021 22.7773 26.1973 23.0781C26.097 23.3743 26.0469 23.6888 26.0469 24.0215ZM32.459 24.3838V24.2266C32.459 23.6934 32.5365 23.1989 32.6914 22.7432C32.8464 22.2829 33.0697 21.8841 33.3613 21.5469C33.653 21.2051 34.0062 20.9408 34.4209 20.7539C34.8356 20.5625 35.3005 20.4668 35.8154 20.4668C36.335 20.4668 36.8021 20.5625 37.2168 20.7539C37.6361 20.9408 37.9915 21.2051 38.2832 21.5469C38.5794 21.8841 38.805 22.2829 38.96 22.7432C39.1149 23.1989 39.1924 23.6934 39.1924 24.2266V24.3838C39.1924 24.917 39.1149 25.4115 38.96 25.8672C38.805 26.3229 38.5794 26.7217 38.2832 27.0635C37.9915 27.4007 37.6383 27.665 37.2236 27.8564C36.8135 28.0433 36.3486 28.1367 35.8291 28.1367C35.3096 28.1367 34.8424 28.0433 34.4277 27.8564C34.013 27.665 33.6576 27.4007 33.3613 27.0635C33.0697 26.7217 32.8464 26.3229 32.6914 25.8672C32.5365 25.4115 32.459 24.917 32.459 24.3838ZM33.7236 24.2266V24.3838C33.7236 24.7529 33.7669 25.1016 33.8535 25.4297C33.9401 25.7533 34.07 26.0404 34.2432 26.291C34.4209 26.5417 34.6419 26.7399 34.9062 26.8857C35.1706 27.027 35.4782 27.0977 35.8291 27.0977C36.1755 27.0977 36.4785 27.027 36.7383 26.8857C37.0026 26.7399 37.2214 26.5417 37.3945 26.291C37.5677 26.0404 37.6976 25.7533 37.7842 25.4297C37.8753 25.1016 37.9209 24.7529 37.9209 24.3838V24.2266C37.9209 23.862 37.8753 23.5179 37.7842 23.1943C37.6976 22.8662 37.5654 22.5768 37.3877 22.3262C37.2145 22.071 36.9958 21.8704 36.7314 21.7246C36.4717 21.5788 36.1663 21.5059 35.8154 21.5059C35.4691 21.5059 35.1637 21.5788 34.8994 21.7246C34.6396 21.8704 34.4209 22.071 34.2432 22.3262C34.07 22.5768 33.9401 22.8662 33.8535 23.1943C33.7669 23.5179 33.7236 23.862 33.7236 24.2266ZM40.4434 24.3838V24.2266C40.4434 23.6934 40.5208 23.1989 40.6758 22.7432C40.8307 22.2829 41.054 21.8841 41.3457 21.5469C41.6374 21.2051 41.9906 20.9408 42.4053 20.7539C42.82 20.5625 43.2848 20.4668 43.7998 20.4668C44.3193 20.4668 44.7865 20.5625 45.2012 20.7539C45.6204 20.9408 45.9759 21.2051 46.2676 21.5469C46.5638 21.8841 46.7894 22.2829 46.9443 22.7432C47.0993 23.1989 47.1768 23.6934 47.1768 24.2266V24.3838C47.1768 24.917 47.0993 25.4115 46.9443 25.8672C46.7894 26.3229 46.5638 26.7217 46.2676 27.0635C45.9759 27.4007 45.6227 27.665 45.208 27.8564C44.7979 28.0433 44.333 28.1367 43.8135 28.1367C43.2939 28.1367 42.8268 28.0433 42.4121 27.8564C41.9974 27.665 41.6419 27.4007 41.3457 27.0635C41.054 26.7217 40.8307 26.3229 40.6758 25.8672C40.5208 25.4115 40.4434 24.917 40.4434 24.3838ZM41.708 24.2266V24.3838C41.708 24.7529 41.7513 25.1016 41.8379 25.4297C41.9245 25.7533 42.0544 26.0404 42.2275 26.291C42.4053 26.5417 42.6263 26.7399 42.8906 26.8857C43.1549 27.027 43.4626 27.0977 43.8135 27.0977C44.1598 27.0977 44.4629 27.027 44.7227 26.8857C44.987 26.7399 45.2057 26.5417 45.3789 26.291C45.5521 26.0404 45.682 25.7533 45.7686 25.4297C45.8597 25.1016 45.9053 24.7529 45.9053 24.3838V24.2266C45.9053 23.862 45.8597 23.5179 45.7686 23.1943C45.682 22.8662 45.5498 22.5768 45.3721 22.3262C45.1989 22.071 44.9801 21.8704 44.7158 21.7246C44.4561 21.5788 44.1507 21.5059 43.7998 21.5059C43.4535 21.5059 43.1481 21.5788 42.8838 21.7246C42.624 21.8704 42.4053 22.071 42.2275 22.3262C42.0544 22.5768 41.9245 22.8662 41.8379 23.1943C41.7513 23.5179 41.708 23.862 41.708 24.2266ZM53.0693 26.0381C53.0693 25.8558 53.0283 25.6872 52.9463 25.5322C52.8688 25.3727 52.707 25.2292 52.4609 25.1016C52.2194 24.9694 51.8548 24.8555 51.3672 24.7598C50.957 24.6732 50.5856 24.5706 50.2529 24.4521C49.9248 24.3337 49.6445 24.1901 49.4121 24.0215C49.1842 23.8529 49.0088 23.6546 48.8857 23.4268C48.7627 23.1989 48.7012 22.9323 48.7012 22.627C48.7012 22.3353 48.765 22.0596 48.8926 21.7998C49.0247 21.54 49.2093 21.3099 49.4463 21.1094C49.6878 20.9089 49.9772 20.7516 50.3145 20.6377C50.6517 20.5238 51.0277 20.4668 51.4424 20.4668C52.0348 20.4668 52.5407 20.5716 52.96 20.7812C53.3792 20.9909 53.7005 21.2712 53.9238 21.6221C54.1471 21.9684 54.2588 22.3535 54.2588 22.7773H52.9941C52.9941 22.5723 52.9326 22.374 52.8096 22.1826C52.6911 21.9867 52.5156 21.8249 52.2832 21.6973C52.0553 21.5697 51.7751 21.5059 51.4424 21.5059C51.0915 21.5059 50.8066 21.5605 50.5879 21.6699C50.3737 21.7747 50.2165 21.9092 50.1162 22.0732C50.0205 22.2373 49.9727 22.4105 49.9727 22.5928C49.9727 22.7295 49.9954 22.8525 50.041 22.9619C50.0911 23.0667 50.1777 23.1647 50.3008 23.2559C50.4238 23.3424 50.597 23.4245 50.8203 23.502C51.0436 23.5794 51.3285 23.6569 51.6748 23.7344C52.2809 23.8711 52.7799 24.0352 53.1719 24.2266C53.5638 24.418 53.8555 24.6527 54.0469 24.9307C54.2383 25.2087 54.334 25.5459 54.334 25.9424C54.334 26.266 54.2656 26.5622 54.1289 26.8311C53.9967 27.0999 53.8031 27.3324 53.5479 27.5283C53.2972 27.7197 52.9964 27.8701 52.6455 27.9795C52.2992 28.0843 51.9095 28.1367 51.4766 28.1367C50.8249 28.1367 50.2734 28.0205 49.8223 27.7881C49.3711 27.5557 49.0293 27.2549 48.7969 26.8857C48.5645 26.5166 48.4482 26.127 48.4482 25.7168H49.7197C49.738 26.0632 49.8382 26.3389 50.0205 26.5439C50.2028 26.7445 50.4261 26.888 50.6904 26.9746C50.9548 27.0566 51.2168 27.0977 51.4766 27.0977C51.8229 27.0977 52.1123 27.0521 52.3447 26.9609C52.5817 26.8698 52.7617 26.7445 52.8848 26.585C53.0078 26.4255 53.0693 26.2432 53.0693 26.0381ZM59.0645 28.1367C58.5495 28.1367 58.0824 28.0501 57.6631 27.877C57.2484 27.6992 56.8906 27.4508 56.5898 27.1318C56.2936 26.8128 56.0658 26.4346 55.9062 25.9971C55.7467 25.5596 55.667 25.0811 55.667 24.5615V24.2744C55.667 23.6729 55.7559 23.1374 55.9336 22.668C56.1113 22.194 56.3529 21.793 56.6582 21.4648C56.9635 21.1367 57.3099 20.8883 57.6973 20.7197C58.0846 20.5511 58.4857 20.4668 58.9004 20.4668C59.429 20.4668 59.8848 20.5579 60.2676 20.7402C60.6549 20.9225 60.9717 21.1777 61.2178 21.5059C61.4639 21.8294 61.6462 22.2122 61.7646 22.6543C61.8831 23.0918 61.9424 23.5703 61.9424 24.0898V24.6572H56.4189V23.625H60.6777V23.5293C60.6595 23.2012 60.5911 22.8822 60.4727 22.5723C60.3587 22.2624 60.1764 22.0072 59.9258 21.8066C59.6751 21.6061 59.3333 21.5059 58.9004 21.5059C58.6133 21.5059 58.349 21.5674 58.1074 21.6904C57.8659 21.8089 57.6585 21.9867 57.4854 22.2236C57.3122 22.4606 57.1777 22.75 57.082 23.0918C56.9863 23.4336 56.9385 23.8278 56.9385 24.2744V24.5615C56.9385 24.9124 56.9863 25.2428 57.082 25.5527C57.1823 25.8581 57.3258 26.127 57.5127 26.3594C57.7041 26.5918 57.9342 26.7741 58.2031 26.9062C58.4766 27.0384 58.7865 27.1045 59.1328 27.1045C59.5794 27.1045 59.9577 27.0133 60.2676 26.8311C60.5775 26.6488 60.8486 26.4049 61.0811 26.0996L61.8467 26.708C61.6872 26.9495 61.4844 27.1797 61.2383 27.3984C60.9922 27.6172 60.6891 27.7949 60.3291 27.9316C59.9736 28.0684 59.5521 28.1367 59.0645 28.1367ZM68.9697 27.2344L71.0273 20.6035H72.3809L69.4141 29.1416C69.3457 29.3239 69.2546 29.5199 69.1406 29.7295C69.0312 29.9437 68.89 30.1465 68.7168 30.3379C68.5436 30.5293 68.334 30.6842 68.0879 30.8027C67.8464 30.9258 67.557 30.9873 67.2197 30.9873C67.1195 30.9873 66.9919 30.9736 66.8369 30.9463C66.682 30.9189 66.5726 30.8962 66.5088 30.8779L66.502 29.8525C66.5384 29.8571 66.5954 29.8617 66.6729 29.8662C66.7549 29.8753 66.8118 29.8799 66.8438 29.8799C67.1309 29.8799 67.3747 29.8411 67.5752 29.7637C67.7757 29.6908 67.9443 29.5654 68.0811 29.3877C68.2223 29.2145 68.3431 28.9753 68.4434 28.6699L68.9697 27.2344ZM67.459 20.6035L69.3799 26.3457L69.708 27.6787L68.7988 28.1436L66.0781 20.6035H67.459ZM73.0781 24.3838V24.2266C73.0781 23.6934 73.1556 23.1989 73.3105 22.7432C73.4655 22.2829 73.6888 21.8841 73.9805 21.5469C74.2721 21.2051 74.6253 20.9408 75.04 20.7539C75.4548 20.5625 75.9196 20.4668 76.4346 20.4668C76.9541 20.4668 77.4212 20.5625 77.8359 20.7539C78.2552 20.9408 78.6107 21.2051 78.9023 21.5469C79.1986 21.8841 79.4242 22.2829 79.5791 22.7432C79.734 23.1989 79.8115 23.6934 79.8115 24.2266V24.3838C79.8115 24.917 79.734 25.4115 79.5791 25.8672C79.4242 26.3229 79.1986 26.7217 78.9023 27.0635C78.6107 27.4007 78.2575 27.665 77.8428 27.8564C77.4326 28.0433 76.9678 28.1367 76.4482 28.1367C75.9287 28.1367 75.4616 28.0433 75.0469 27.8564C74.6322 27.665 74.2767 27.4007 73.9805 27.0635C73.6888 26.7217 73.4655 26.3229 73.3105 25.8672C73.1556 25.4115 73.0781 24.917 73.0781 24.3838ZM74.3428 24.2266V24.3838C74.3428 24.7529 74.3861 25.1016 74.4727 25.4297C74.5592 25.7533 74.6891 26.0404 74.8623 26.291C75.04 26.5417 75.2611 26.7399 75.5254 26.8857C75.7897 27.027 76.0973 27.0977 76.4482 27.0977C76.7946 27.0977 77.0977 27.027 77.3574 26.8857C77.6217 26.7399 77.8405 26.5417 78.0137 26.291C78.1868 26.0404 78.3167 25.7533 78.4033 25.4297C78.4945 25.1016 78.54 24.7529 78.54 24.3838V24.2266C78.54 23.862 78.4945 23.5179 78.4033 23.1943C78.3167 22.8662 78.1846 22.5768 78.0068 22.3262C77.8337 22.071 77.6149 21.8704 77.3506 21.7246C77.0908 21.5788 76.7855 21.5059 76.4346 21.5059C76.0882 21.5059 75.7829 21.5788 75.5186 21.7246C75.2588 21.8704 75.04 22.071 74.8623 22.3262C74.6891 22.5768 74.5592 22.8662 74.4727 23.1943C74.3861 23.5179 74.3428 23.862 74.3428 24.2266ZM85.9229 26.291V20.6035H87.1943V28H85.9844L85.9229 26.291ZM86.1621 24.7324L86.6885 24.7188C86.6885 25.2109 86.6361 25.6667 86.5312 26.0859C86.431 26.5007 86.2669 26.8607 86.0391 27.166C85.8112 27.4714 85.5127 27.7106 85.1436 27.8838C84.7744 28.0524 84.3255 28.1367 83.7969 28.1367C83.4368 28.1367 83.1064 28.0843 82.8057 27.9795C82.5094 27.8747 82.2542 27.7129 82.04 27.4941C81.8258 27.2754 81.6595 26.9906 81.541 26.6396C81.4271 26.2887 81.3701 25.8672 81.3701 25.375V20.6035H82.6348V25.3887C82.6348 25.7214 82.6712 25.9971 82.7441 26.2158C82.8216 26.43 82.9242 26.6009 83.0518 26.7285C83.1839 26.8516 83.3298 26.9382 83.4893 26.9883C83.6533 27.0384 83.8219 27.0635 83.9951 27.0635C84.5329 27.0635 84.959 26.9609 85.2734 26.7559C85.5879 26.5462 85.8135 26.266 85.9502 25.915C86.0915 25.5596 86.1621 25.1654 86.1621 24.7324ZM90.3867 21.7656V28H89.1221V20.6035H90.3525L90.3867 21.7656ZM92.6973 20.5625L92.6904 21.7383C92.5856 21.7155 92.4854 21.7018 92.3896 21.6973C92.2985 21.6882 92.1937 21.6836 92.0752 21.6836C91.7835 21.6836 91.526 21.7292 91.3027 21.8203C91.0794 21.9115 90.8903 22.0391 90.7354 22.2031C90.5804 22.3672 90.4574 22.5632 90.3662 22.791C90.2796 23.0143 90.2227 23.2604 90.1953 23.5293L89.8398 23.7344C89.8398 23.2878 89.8831 22.8685 89.9697 22.4766C90.0609 22.0846 90.1999 21.7383 90.3867 21.4375C90.5736 21.1322 90.8105 20.8952 91.0977 20.7266C91.3893 20.5534 91.7357 20.4668 92.1367 20.4668C92.2279 20.4668 92.3327 20.4782 92.4512 20.501C92.5697 20.5192 92.6517 20.5397 92.6973 20.5625ZM101.646 26.0381C101.646 25.8558 101.604 25.6872 101.522 25.5322C101.445 25.3727 101.283 25.2292 101.037 25.1016C100.796 24.9694 100.431 24.8555 99.9434 24.7598C99.5332 24.6732 99.1618 24.5706 98.8291 24.4521C98.501 24.3337 98.2207 24.1901 97.9883 24.0215C97.7604 23.8529 97.585 23.6546 97.4619 23.4268C97.3389 23.1989 97.2773 22.9323 97.2773 22.627C97.2773 22.3353 97.3411 22.0596 97.4688 21.7998C97.6009 21.54 97.7855 21.3099 98.0225 21.1094C98.264 20.9089 98.5534 20.7516 98.8906 20.6377C99.2279 20.5238 99.6038 20.4668 100.019 20.4668C100.611 20.4668 101.117 20.5716 101.536 20.7812C101.955 20.9909 102.277 21.2712 102.5 21.6221C102.723 21.9684 102.835 22.3535 102.835 22.7773H101.57C101.57 22.5723 101.509 22.374 101.386 22.1826C101.267 21.9867 101.092 21.8249 100.859 21.6973C100.632 21.5697 100.351 21.5059 100.019 21.5059C99.6676 21.5059 99.3828 21.5605 99.1641 21.6699C98.9499 21.7747 98.7926 21.9092 98.6924 22.0732C98.5967 22.2373 98.5488 22.4105 98.5488 22.5928C98.5488 22.7295 98.5716 22.8525 98.6172 22.9619C98.6673 23.0667 98.7539 23.1647 98.877 23.2559C99 23.3424 99.1732 23.4245 99.3965 23.502C99.6198 23.5794 99.9046 23.6569 100.251 23.7344C100.857 23.8711 101.356 24.0352 101.748 24.2266C102.14 24.418 102.432 24.6527 102.623 24.9307C102.814 25.2087 102.91 25.5459 102.91 25.9424C102.91 26.266 102.842 26.5622 102.705 26.8311C102.573 27.0999 102.379 27.3324 102.124 27.5283C101.873 27.7197 101.573 27.8701 101.222 27.9795C100.875 28.0843 100.486 28.1367 100.053 28.1367C99.401 28.1367 98.8496 28.0205 98.3984 27.7881C97.9473 27.5557 97.6055 27.2549 97.373 26.8857C97.1406 26.5166 97.0244 26.127 97.0244 25.7168H98.2959C98.3141 26.0632 98.4144 26.3389 98.5967 26.5439C98.779 26.7445 99.0023 26.888 99.2666 26.9746C99.5309 27.0566 99.793 27.0977 100.053 27.0977C100.399 27.0977 100.688 27.0521 100.921 26.9609C101.158 26.8698 101.338 26.7445 101.461 26.585C101.584 26.4255 101.646 26.2432 101.646 26.0381ZM107.668 20.6035V21.5742H103.669V20.6035H107.668ZM105.022 18.8057H106.287V26.168C106.287 26.4186 106.326 26.6077 106.403 26.7354C106.481 26.863 106.581 26.9473 106.704 26.9883C106.827 27.0293 106.959 27.0498 107.101 27.0498C107.205 27.0498 107.315 27.0407 107.429 27.0225C107.547 26.9997 107.636 26.9814 107.695 26.9678L107.702 28C107.602 28.0319 107.47 28.0615 107.306 28.0889C107.146 28.1208 106.952 28.1367 106.725 28.1367C106.415 28.1367 106.13 28.0752 105.87 27.9521C105.61 27.8291 105.403 27.624 105.248 27.3369C105.098 27.0452 105.022 26.6533 105.022 26.1611V18.8057ZM113.513 26.7354V22.9277C113.513 22.6361 113.453 22.3831 113.335 22.1689C113.221 21.9502 113.048 21.7816 112.815 21.6631C112.583 21.5446 112.296 21.4854 111.954 21.4854C111.635 21.4854 111.355 21.54 111.113 21.6494C110.876 21.7588 110.689 21.9023 110.553 22.0801C110.421 22.2578 110.354 22.4492 110.354 22.6543H109.09C109.09 22.39 109.158 22.1279 109.295 21.8682C109.432 21.6084 109.628 21.3737 109.883 21.1641C110.143 20.9499 110.452 20.7812 110.812 20.6582C111.177 20.5306 111.583 20.4668 112.029 20.4668C112.567 20.4668 113.041 20.5579 113.451 20.7402C113.866 20.9225 114.189 21.1982 114.422 21.5674C114.659 21.932 114.777 22.39 114.777 22.9414V26.3867C114.777 26.6328 114.798 26.8949 114.839 27.1729C114.884 27.4508 114.951 27.6901 115.037 27.8906V28H113.718C113.654 27.8542 113.604 27.6605 113.567 27.4189C113.531 27.1729 113.513 26.945 113.513 26.7354ZM113.731 23.5156L113.745 24.4043H112.467C112.107 24.4043 111.785 24.4339 111.503 24.4932C111.22 24.5479 110.983 24.6322 110.792 24.7461C110.601 24.86 110.455 25.0036 110.354 25.1768C110.254 25.3454 110.204 25.5436 110.204 25.7715C110.204 26.0039 110.257 26.2158 110.361 26.4072C110.466 26.5986 110.623 26.7513 110.833 26.8652C111.047 26.9746 111.309 27.0293 111.619 27.0293C112.007 27.0293 112.348 26.9473 112.645 26.7832C112.941 26.6191 113.175 26.4186 113.349 26.1816C113.526 25.9447 113.622 25.7145 113.636 25.4912L114.176 26.0996C114.144 26.291 114.057 26.5029 113.916 26.7354C113.775 26.9678 113.586 27.1911 113.349 27.4053C113.116 27.6149 112.838 27.7904 112.515 27.9316C112.196 28.0684 111.836 28.1367 111.435 28.1367C110.933 28.1367 110.493 28.0387 110.115 27.8428C109.742 27.6468 109.45 27.3848 109.24 27.0566C109.035 26.724 108.933 26.3525 108.933 25.9424C108.933 25.5459 109.01 25.1973 109.165 24.8965C109.32 24.5911 109.543 24.3382 109.835 24.1377C110.127 23.9326 110.478 23.7777 110.888 23.6729C111.298 23.568 111.756 23.5156 112.262 23.5156H113.731ZM118.735 27.2344L120.793 20.6035H122.146L119.18 29.1416C119.111 29.3239 119.02 29.5199 118.906 29.7295C118.797 29.9437 118.656 30.1465 118.482 30.3379C118.309 30.5293 118.1 30.6842 117.854 30.8027C117.612 30.9258 117.323 30.9873 116.985 30.9873C116.885 30.9873 116.757 30.9736 116.603 30.9463C116.448 30.9189 116.338 30.8962 116.274 30.8779L116.268 29.8525C116.304 29.8571 116.361 29.8617 116.438 29.8662C116.521 29.8753 116.577 29.8799 116.609 29.8799C116.896 29.8799 117.14 29.8411 117.341 29.7637C117.541 29.6908 117.71 29.5654 117.847 29.3877C117.988 29.2145 118.109 28.9753 118.209 28.6699L118.735 27.2344ZM117.225 20.6035L119.146 26.3457L119.474 27.6787L118.564 28.1436L115.844 20.6035H117.225Z",fill:"#64748B"}),(0,o.createElement)("rect",{x:"16",y:"37",width:"266",height:"28",rx:"3",fill:"white"}),(0,o.createElement)("path",{d:"M29.4941 47.0767L26.4346 55.5H25.1841L28.707 46.2578H29.5132L29.4941 47.0767ZM32.0586 55.5L28.9927 47.0767L28.9736 46.2578H29.7798L33.3154 55.5H32.0586ZM31.8999 52.0786V53.0815H26.7075V52.0786H31.8999ZM37.1367 48.6318V49.5332H33.4233V48.6318H37.1367ZM34.6802 46.9624H35.8545V53.7988C35.8545 54.0316 35.8905 54.2072 35.9624 54.3257C36.0343 54.4442 36.1274 54.5225 36.2417 54.5605C36.356 54.5986 36.4787 54.6177 36.6099 54.6177C36.7072 54.6177 36.8088 54.6092 36.9146 54.5923C37.0246 54.5711 37.1071 54.5542 37.1621 54.5415L37.1685 55.5C37.0754 55.5296 36.9526 55.5571 36.8003 55.5825C36.6522 55.6121 36.4723 55.627 36.2607 55.627C35.973 55.627 35.7085 55.5698 35.4673 55.4556C35.2261 55.3413 35.0335 55.1509 34.8896 54.8843C34.75 54.6134 34.6802 54.2495 34.6802 53.7925V46.9624ZM44.6143 48.6318V49.5332H40.9009V48.6318H44.6143ZM42.1577 46.9624H43.332V53.7988C43.332 54.0316 43.368 54.2072 43.4399 54.3257C43.5119 54.4442 43.605 54.5225 43.7192 54.5605C43.8335 54.5986 43.9562 54.6177 44.0874 54.6177C44.1847 54.6177 44.2863 54.6092 44.3921 54.5923C44.5021 54.5711 44.5846 54.5542 44.6396 54.5415L44.646 55.5C44.5529 55.5296 44.4302 55.5571 44.2778 55.5825C44.1297 55.6121 43.9499 55.627 43.7383 55.627C43.4505 55.627 43.186 55.5698 42.9448 55.4556C42.7036 55.3413 42.5111 55.1509 42.3672 54.8843C42.2275 54.6134 42.1577 54.2495 42.1577 53.7925V46.9624ZM47.166 45.75V55.5H45.9917V45.75H47.166ZM46.8867 51.8057L46.3979 51.7866C46.4022 51.3169 46.472 50.8831 46.6074 50.4854C46.7428 50.0833 46.9333 49.7342 47.1787 49.438C47.4242 49.1418 47.7161 48.9132 48.0547 48.7524C48.3975 48.5874 48.7762 48.5049 49.1909 48.5049C49.5295 48.5049 49.8341 48.5514 50.105 48.6445C50.3758 48.7334 50.6064 48.8773 50.7969 49.0762C50.9915 49.2751 51.1396 49.5332 51.2412 49.8506C51.3428 50.1637 51.3936 50.5467 51.3936 50.9995V55.5H50.2129V50.9868C50.2129 50.6271 50.16 50.3394 50.0542 50.1235C49.9484 49.9035 49.7939 49.7448 49.5908 49.6475C49.3877 49.5459 49.138 49.4951 48.8418 49.4951C48.5498 49.4951 48.2832 49.5565 48.042 49.6792C47.805 49.8019 47.5998 49.9712 47.4263 50.187C47.257 50.4028 47.1237 50.6504 47.0264 50.9297C46.9333 51.2048 46.8867 51.4967 46.8867 51.8057ZM56.002 55.627C55.5238 55.627 55.09 55.5465 54.7007 55.3857C54.3156 55.2207 53.9834 54.9901 53.7041 54.6938C53.429 54.3976 53.2174 54.0464 53.0693 53.6401C52.9212 53.2339 52.8472 52.7896 52.8472 52.3071V52.0405C52.8472 51.4819 52.9297 50.9847 53.0947 50.5488C53.2598 50.1087 53.484 49.7363 53.7676 49.4316C54.0511 49.127 54.3727 48.8963 54.7324 48.7397C55.0921 48.5832 55.4645 48.5049 55.8496 48.5049C56.3405 48.5049 56.7637 48.5895 57.1191 48.7588C57.4788 48.9281 57.7729 49.165 58.0015 49.4697C58.23 49.7702 58.3993 50.1257 58.5093 50.5361C58.6193 50.9424 58.6743 51.3867 58.6743 51.8691V52.396H53.5454V51.4375H57.5V51.3486C57.4831 51.0439 57.4196 50.7477 57.3096 50.46C57.2038 50.1722 57.0345 49.9352 56.8018 49.749C56.569 49.5628 56.2516 49.4697 55.8496 49.4697C55.583 49.4697 55.3376 49.5269 55.1133 49.6411C54.889 49.7511 54.6965 49.9162 54.5356 50.1362C54.3748 50.3563 54.25 50.625 54.1611 50.9424C54.0723 51.2598 54.0278 51.6258 54.0278 52.0405V52.3071C54.0278 52.633 54.0723 52.9398 54.1611 53.2275C54.2542 53.5111 54.3875 53.7607 54.561 53.9766C54.7388 54.1924 54.9525 54.3617 55.2021 54.4844C55.4561 54.6071 55.7438 54.6685 56.0654 54.6685C56.4801 54.6685 56.8314 54.5838 57.1191 54.4146C57.4069 54.2453 57.6587 54.0189 57.8745 53.7354L58.5854 54.3003C58.4373 54.5246 58.249 54.7383 58.0205 54.9414C57.792 55.1445 57.5106 55.3096 57.1763 55.4365C56.8462 55.5635 56.4548 55.627 56.002 55.627ZM63.2637 45.75H64.4443V54.167L64.3428 55.5H63.2637V45.75ZM69.0845 52.0088V52.1421C69.0845 52.6414 69.0252 53.1048 68.9067 53.5322C68.7882 53.9554 68.6147 54.3236 68.3862 54.6367C68.1577 54.9499 67.8784 55.1932 67.5483 55.3667C67.2183 55.5402 66.8395 55.627 66.4121 55.627C65.9762 55.627 65.5933 55.5529 65.2632 55.4048C64.9373 55.2524 64.6623 55.0345 64.438 54.751C64.2137 54.4674 64.0339 54.1247 63.8984 53.7227C63.7673 53.3206 63.6763 52.8678 63.6255 52.3643V51.7803C63.6763 51.2725 63.7673 50.8175 63.8984 50.4155C64.0339 50.0135 64.2137 49.6707 64.438 49.3872C64.6623 49.0994 64.9373 48.8815 65.2632 48.7334C65.589 48.5811 65.9678 48.5049 66.3994 48.5049C66.8311 48.5049 67.214 48.5895 67.5483 48.7588C67.8826 48.9238 68.1619 49.1608 68.3862 49.4697C68.6147 49.7786 68.7882 50.1489 68.9067 50.5806C69.0252 51.008 69.0845 51.484 69.0845 52.0088ZM67.9038 52.1421V52.0088C67.9038 51.666 67.8721 51.3444 67.8086 51.0439C67.7451 50.7393 67.6436 50.4727 67.5039 50.2441C67.3643 50.0114 67.1802 49.8294 66.9517 49.6982C66.7231 49.5628 66.4417 49.4951 66.1074 49.4951C65.8112 49.4951 65.5531 49.5459 65.333 49.6475C65.1172 49.749 64.9331 49.8866 64.7808 50.0601C64.6284 50.2293 64.5036 50.424 64.4062 50.644C64.3132 50.8599 64.2433 51.0841 64.1968 51.3169V52.8467C64.2645 53.1429 64.3745 53.4285 64.5269 53.7036C64.6834 53.9744 64.8908 54.1966 65.1489 54.3701C65.4113 54.5436 65.735 54.6304 66.1201 54.6304C66.4375 54.6304 66.7083 54.5669 66.9326 54.4399C67.1611 54.3088 67.3452 54.1289 67.4849 53.9004C67.6287 53.6719 67.7345 53.4074 67.8022 53.1069C67.87 52.8065 67.9038 52.4849 67.9038 52.1421ZM73.4199 55.627C72.9417 55.627 72.508 55.5465 72.1187 55.3857C71.7336 55.2207 71.4014 54.9901 71.1221 54.6938C70.847 54.3976 70.6354 54.0464 70.4873 53.6401C70.3392 53.2339 70.2651 52.7896 70.2651 52.3071V52.0405C70.2651 51.4819 70.3477 50.9847 70.5127 50.5488C70.6777 50.1087 70.902 49.7363 71.1855 49.4316C71.4691 49.127 71.7907 48.8963 72.1504 48.7397C72.5101 48.5832 72.8825 48.5049 73.2676 48.5049C73.7585 48.5049 74.1816 48.5895 74.5371 48.7588C74.8968 48.9281 75.1909 49.165 75.4194 49.4697C75.6479 49.7702 75.8172 50.1257 75.9272 50.5361C76.0373 50.9424 76.0923 51.3867 76.0923 51.8691V52.396H70.9634V51.4375H74.918V51.3486C74.901 51.0439 74.8376 50.7477 74.7275 50.46C74.6217 50.1722 74.4525 49.9352 74.2197 49.749C73.987 49.5628 73.6696 49.4697 73.2676 49.4697C73.001 49.4697 72.7555 49.5269 72.5312 49.6411C72.307 49.7511 72.1144 49.9162 71.9536 50.1362C71.7928 50.3563 71.668 50.625 71.5791 50.9424C71.4902 51.2598 71.4458 51.6258 71.4458 52.0405V52.3071C71.4458 52.633 71.4902 52.9398 71.5791 53.2275C71.6722 53.5111 71.8055 53.7607 71.979 53.9766C72.1567 54.1924 72.3704 54.3617 72.6201 54.4844C72.874 54.6071 73.1618 54.6685 73.4834 54.6685C73.8981 54.6685 74.2493 54.5838 74.5371 54.4146C74.8249 54.2453 75.0767 54.0189 75.2925 53.7354L76.0034 54.3003C75.8553 54.5246 75.667 54.7383 75.4385 54.9414C75.21 55.1445 74.9285 55.3096 74.5942 55.4365C74.2642 55.5635 73.8727 55.627 73.4199 55.627ZM81.5132 54.3257V50.79C81.5132 50.5192 81.4582 50.2843 81.3481 50.0854C81.2424 49.8823 81.0815 49.7257 80.8657 49.6157C80.6499 49.5057 80.3833 49.4507 80.0659 49.4507C79.7697 49.4507 79.5094 49.5015 79.2852 49.603C79.0651 49.7046 78.8916 49.8379 78.7646 50.0029C78.6419 50.168 78.5806 50.3457 78.5806 50.5361H77.4062C77.4062 50.2907 77.4697 50.0474 77.5967 49.8062C77.7236 49.5649 77.9056 49.347 78.1426 49.1523C78.3838 48.9535 78.6715 48.7969 79.0059 48.6826C79.3444 48.5641 79.721 48.5049 80.1357 48.5049C80.6351 48.5049 81.0752 48.5895 81.4561 48.7588C81.8411 48.9281 82.1416 49.1841 82.3574 49.5269C82.5775 49.8654 82.6875 50.2907 82.6875 50.8027V54.002C82.6875 54.2305 82.7065 54.4738 82.7446 54.7319C82.7869 54.9901 82.8483 55.2122 82.9287 55.3984V55.5H81.7036C81.6444 55.3646 81.5978 55.1847 81.564 54.9604C81.5301 54.7319 81.5132 54.5203 81.5132 54.3257ZM81.7163 51.3359L81.729 52.1611H80.542C80.2077 52.1611 79.9093 52.1886 79.647 52.2437C79.3846 52.2944 79.1646 52.3727 78.9868 52.4785C78.8091 52.5843 78.6737 52.7176 78.5806 52.8784C78.4875 53.035 78.4409 53.2191 78.4409 53.4307C78.4409 53.6465 78.4896 53.8433 78.5869 54.021C78.6842 54.1987 78.8302 54.3405 79.0249 54.4463C79.2238 54.5479 79.4671 54.5986 79.7549 54.5986C80.1146 54.5986 80.432 54.5225 80.707 54.3701C80.9821 54.2178 81.2 54.0316 81.3608 53.8115C81.5259 53.5915 81.6147 53.3778 81.6274 53.1704L82.1289 53.7354C82.0993 53.9131 82.0189 54.1099 81.8877 54.3257C81.7565 54.5415 81.5809 54.7489 81.3608 54.9478C81.145 55.1424 80.8869 55.3053 80.5864 55.4365C80.2902 55.5635 79.9559 55.627 79.5835 55.627C79.118 55.627 78.7096 55.536 78.3584 55.354C78.0114 55.172 77.7406 54.9287 77.5459 54.624C77.3555 54.3151 77.2603 53.9702 77.2603 53.5894C77.2603 53.2212 77.3322 52.8975 77.4761 52.6182C77.62 52.3346 77.8273 52.0998 78.0981 51.9136C78.369 51.7231 78.6948 51.5793 79.0757 51.4819C79.4565 51.3846 79.8818 51.3359 80.3516 51.3359H81.7163ZM87.2832 54.6621C87.5625 54.6621 87.8206 54.605 88.0576 54.4907C88.2946 54.3765 88.4893 54.2199 88.6416 54.021C88.7939 53.8179 88.8807 53.5872 88.9019 53.3291H90.019C89.9979 53.7354 89.8604 54.1141 89.6064 54.4653C89.3568 54.8123 89.0288 55.0938 88.6226 55.3096C88.2163 55.5212 87.7699 55.627 87.2832 55.627C86.7669 55.627 86.3162 55.536 85.9312 55.354C85.5503 55.172 85.2329 54.9224 84.979 54.605C84.7293 54.2876 84.541 53.9237 84.4141 53.5132C84.2913 53.0985 84.23 52.6605 84.23 52.1992V51.9326C84.23 51.4714 84.2913 51.0355 84.4141 50.625C84.541 50.2103 84.7293 49.8442 84.979 49.5269C85.2329 49.2095 85.5503 48.9598 85.9312 48.7778C86.3162 48.5959 86.7669 48.5049 87.2832 48.5049C87.8206 48.5049 88.2904 48.6149 88.6924 48.835C89.0944 49.0508 89.4097 49.347 89.6382 49.7236C89.8709 50.096 89.9979 50.5192 90.019 50.9932H88.9019C88.8807 50.7096 88.8003 50.4536 88.6606 50.2251C88.5252 49.9966 88.339 49.8146 88.1021 49.6792C87.8693 49.5396 87.5964 49.4697 87.2832 49.4697C86.9235 49.4697 86.6209 49.5417 86.3755 49.6855C86.1343 49.8252 85.9417 50.0156 85.7979 50.2568C85.6582 50.4938 85.5566 50.7583 85.4932 51.0503C85.4339 51.3381 85.4043 51.6322 85.4043 51.9326V52.1992C85.4043 52.4997 85.4339 52.7959 85.4932 53.0879C85.5524 53.3799 85.6519 53.6444 85.7915 53.8813C85.9354 54.1183 86.1279 54.3088 86.3691 54.4526C86.6146 54.5923 86.9193 54.6621 87.2832 54.6621ZM92.5137 45.75V55.5H91.3394V45.75H92.5137ZM92.2344 51.8057L91.7456 51.7866C91.7498 51.3169 91.8197 50.8831 91.9551 50.4854C92.0905 50.0833 92.2809 49.7342 92.5264 49.438C92.7718 49.1418 93.0638 48.9132 93.4023 48.7524C93.7451 48.5874 94.1239 48.5049 94.5386 48.5049C94.8771 48.5049 95.1818 48.5514 95.4526 48.6445C95.7235 48.7334 95.9541 48.8773 96.1445 49.0762C96.3392 49.2751 96.4873 49.5332 96.5889 49.8506C96.6904 50.1637 96.7412 50.5467 96.7412 50.9995V55.5H95.5605V50.9868C95.5605 50.6271 95.5076 50.3394 95.4019 50.1235C95.2961 49.9035 95.1416 49.7448 94.9385 49.6475C94.7354 49.5459 94.4857 49.4951 94.1895 49.4951C93.8975 49.4951 93.6309 49.5565 93.3896 49.6792C93.1527 49.8019 92.9474 49.9712 92.7739 50.187C92.6047 50.4028 92.4714 50.6504 92.374 50.9297C92.2809 51.2048 92.2344 51.4967 92.2344 51.8057Z",fill:"#0F172A"}),(0,o.createElement)("g",{clipPath:"url(#clip0_76_1273)"},(0,o.createElement)("path",{d:"M256 49L261 54L266 49H256Z",fill:"#64748B"})),(0,o.createElement)("rect",{x:"16",y:"37",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,o.createElement)("path",{d:"M15 69C15 66.7909 16.7909 65 19 65H279C281.209 65 283 66.7909 283 69V91.3333H15V69Z",fill:"#4272F9"}),(0,o.createElement)("path",{d:"M29.4941 74.2434L26.4346 82.6667H25.1841L28.707 73.4246H29.5132L29.4941 74.2434ZM32.0586 82.6667L28.9927 74.2434L28.9736 73.4246H29.7798L33.3154 82.6667H32.0586ZM31.8999 79.2454V80.2483H26.7075V79.2454H31.8999ZM37.1367 75.7986V76.7H33.4233V75.7986H37.1367ZM34.6802 74.1292H35.8545V80.9656C35.8545 81.1983 35.8905 81.3739 35.9624 81.4924C36.0343 81.6109 36.1274 81.6892 36.2417 81.7273C36.356 81.7654 36.4787 81.7844 36.6099 81.7844C36.7072 81.7844 36.8088 81.776 36.9146 81.759C37.0246 81.7379 37.1071 81.7209 37.1621 81.7083L37.1685 82.6667C37.0754 82.6964 36.9526 82.7239 36.8003 82.7493C36.6522 82.7789 36.4723 82.7937 36.2607 82.7937C35.973 82.7937 35.7085 82.7366 35.4673 82.6223C35.2261 82.5081 35.0335 82.3176 34.8896 82.051C34.75 81.7802 34.6802 81.4163 34.6802 80.9592V74.1292ZM44.6143 75.7986V76.7H40.9009V75.7986H44.6143ZM42.1577 74.1292H43.332V80.9656C43.332 81.1983 43.368 81.3739 43.4399 81.4924C43.5119 81.6109 43.605 81.6892 43.7192 81.7273C43.8335 81.7654 43.9562 81.7844 44.0874 81.7844C44.1847 81.7844 44.2863 81.776 44.3921 81.759C44.5021 81.7379 44.5846 81.7209 44.6396 81.7083L44.646 82.6667C44.5529 82.6964 44.4302 82.7239 44.2778 82.7493C44.1297 82.7789 43.9499 82.7937 43.7383 82.7937C43.4505 82.7937 43.186 82.7366 42.9448 82.6223C42.7036 82.5081 42.5111 82.3176 42.3672 82.051C42.2275 81.7802 42.1577 81.4163 42.1577 80.9592V74.1292ZM47.166 72.9167V82.6667H45.9917V72.9167H47.166ZM46.8867 78.9724L46.3979 78.9534C46.4022 78.4836 46.472 78.0499 46.6074 77.6521C46.7428 77.2501 46.9333 76.901 47.1787 76.6047C47.4242 76.3085 47.7161 76.08 48.0547 75.9192C48.3975 75.7542 48.7762 75.6716 49.1909 75.6716C49.5295 75.6716 49.8341 75.7182 50.105 75.8113C50.3758 75.9001 50.6064 76.044 50.7969 76.2429C50.9915 76.4418 51.1396 76.7 51.2412 77.0173C51.3428 77.3305 51.3936 77.7135 51.3936 78.1663V82.6667H50.2129V78.1536C50.2129 77.7939 50.16 77.5061 50.0542 77.2903C49.9484 77.0702 49.7939 76.9115 49.5908 76.8142C49.3877 76.7126 49.138 76.6619 48.8418 76.6619C48.5498 76.6619 48.2832 76.7232 48.042 76.8459C47.805 76.9687 47.5998 77.1379 47.4263 77.3538C47.257 77.5696 47.1237 77.8171 47.0264 78.0964C46.9333 78.3715 46.8867 78.6635 46.8867 78.9724ZM56.002 82.7937C55.5238 82.7937 55.09 82.7133 54.7007 82.5525C54.3156 82.3875 53.9834 82.1568 53.7041 81.8606C53.429 81.5644 53.2174 81.2131 53.0693 80.8069C52.9212 80.4006 52.8472 79.9563 52.8472 79.4739V79.2073C52.8472 78.6487 52.9297 78.1514 53.0947 77.7156C53.2598 77.2755 53.484 76.9031 53.7676 76.5984C54.0511 76.2937 54.3727 76.0631 54.7324 75.9065C55.0921 75.7499 55.4645 75.6716 55.8496 75.6716C56.3405 75.6716 56.7637 75.7563 57.1191 75.9255C57.4788 76.0948 57.7729 76.3318 58.0015 76.6365C58.23 76.9369 58.3993 77.2924 58.5093 77.7029C58.6193 78.1091 58.6743 78.5535 58.6743 79.0359V79.5627H53.5454V78.6042H57.5V78.5154C57.4831 78.2107 57.4196 77.9145 57.3096 77.6267C57.2038 77.3389 57.0345 77.102 56.8018 76.9158C56.569 76.7296 56.2516 76.6365 55.8496 76.6365C55.583 76.6365 55.3376 76.6936 55.1133 76.8079C54.889 76.9179 54.6965 77.0829 54.5356 77.303C54.3748 77.523 54.25 77.7917 54.1611 78.1091C54.0723 78.4265 54.0278 78.7926 54.0278 79.2073V79.4739C54.0278 79.7997 54.0723 80.1065 54.1611 80.3943C54.2542 80.6778 54.3875 80.9275 54.561 81.1433C54.7388 81.3591 54.9525 81.5284 55.2021 81.6511C55.4561 81.7738 55.7438 81.8352 56.0654 81.8352C56.4801 81.8352 56.8314 81.7506 57.1191 81.5813C57.4069 81.412 57.6587 81.1856 57.8745 80.9021L58.5854 81.467C58.4373 81.6913 58.249 81.905 58.0205 82.1082C57.792 82.3113 57.5106 82.4763 57.1763 82.6033C56.8462 82.7302 56.4548 82.7937 56.002 82.7937ZM63.2637 72.9167H64.4443V81.3337L64.3428 82.6667H63.2637V72.9167ZM69.0845 79.1755V79.3088C69.0845 79.8082 69.0252 80.2716 68.9067 80.699C68.7882 81.1222 68.6147 81.4903 68.3862 81.8035C68.1577 82.1166 67.8784 82.3599 67.5483 82.5334C67.2183 82.7069 66.8395 82.7937 66.4121 82.7937C65.9762 82.7937 65.5933 82.7196 65.2632 82.5715C64.9373 82.4192 64.6623 82.2013 64.438 81.9177C64.2137 81.6342 64.0339 81.2914 63.8984 80.8894C63.7673 80.4874 63.6763 80.0346 63.6255 79.531V78.947C63.6763 78.4392 63.7673 77.9843 63.8984 77.5823C64.0339 77.1803 64.2137 76.8375 64.438 76.554C64.6623 76.2662 64.9373 76.0483 65.2632 75.9001C65.589 75.7478 65.9678 75.6716 66.3994 75.6716C66.8311 75.6716 67.214 75.7563 67.5483 75.9255C67.8826 76.0906 68.1619 76.3276 68.3862 76.6365C68.6147 76.9454 68.7882 77.3157 68.9067 77.7473C69.0252 78.1747 69.0845 78.6508 69.0845 79.1755ZM67.9038 79.3088V79.1755C67.9038 78.8328 67.8721 78.5111 67.8086 78.2107C67.7451 77.906 67.6436 77.6394 67.5039 77.4109C67.3643 77.1781 67.1802 76.9962 66.9517 76.865C66.7231 76.7296 66.4417 76.6619 66.1074 76.6619C65.8112 76.6619 65.5531 76.7126 65.333 76.8142C65.1172 76.9158 64.9331 77.0533 64.7808 77.2268C64.6284 77.3961 64.5036 77.5907 64.4062 77.8108C64.3132 78.0266 64.2433 78.2509 64.1968 78.4836V80.0134C64.2645 80.3097 64.3745 80.5953 64.5269 80.8704C64.6834 81.1412 64.8908 81.3634 65.1489 81.5369C65.4113 81.7104 65.735 81.7971 66.1201 81.7971C66.4375 81.7971 66.7083 81.7336 66.9326 81.6067C67.1611 81.4755 67.3452 81.2957 67.4849 81.0671C67.6287 80.8386 67.7345 80.5741 67.8022 80.2737C67.87 79.9732 67.9038 79.6516 67.9038 79.3088ZM73.4199 82.7937C72.9417 82.7937 72.508 82.7133 72.1187 82.5525C71.7336 82.3875 71.4014 82.1568 71.1221 81.8606C70.847 81.5644 70.6354 81.2131 70.4873 80.8069C70.3392 80.4006 70.2651 79.9563 70.2651 79.4739V79.2073C70.2651 78.6487 70.3477 78.1514 70.5127 77.7156C70.6777 77.2755 70.902 76.9031 71.1855 76.5984C71.4691 76.2937 71.7907 76.0631 72.1504 75.9065C72.5101 75.7499 72.8825 75.6716 73.2676 75.6716C73.7585 75.6716 74.1816 75.7563 74.5371 75.9255C74.8968 76.0948 75.1909 76.3318 75.4194 76.6365C75.6479 76.9369 75.8172 77.2924 75.9272 77.7029C76.0373 78.1091 76.0923 78.5535 76.0923 79.0359V79.5627H70.9634V78.6042H74.918V78.5154C74.901 78.2107 74.8376 77.9145 74.7275 77.6267C74.6217 77.3389 74.4525 77.102 74.2197 76.9158C73.987 76.7296 73.6696 76.6365 73.2676 76.6365C73.001 76.6365 72.7555 76.6936 72.5312 76.8079C72.307 76.9179 72.1144 77.0829 71.9536 77.303C71.7928 77.523 71.668 77.7917 71.5791 78.1091C71.4902 78.4265 71.4458 78.7926 71.4458 79.2073V79.4739C71.4458 79.7997 71.4902 80.1065 71.5791 80.3943C71.6722 80.6778 71.8055 80.9275 71.979 81.1433C72.1567 81.3591 72.3704 81.5284 72.6201 81.6511C72.874 81.7738 73.1618 81.8352 73.4834 81.8352C73.8981 81.8352 74.2493 81.7506 74.5371 81.5813C74.8249 81.412 75.0767 81.1856 75.2925 80.9021L76.0034 81.467C75.8553 81.6913 75.667 81.905 75.4385 82.1082C75.21 82.3113 74.9285 82.4763 74.5942 82.6033C74.2642 82.7302 73.8727 82.7937 73.4199 82.7937ZM81.5132 81.4924V77.9568C81.5132 77.686 81.4582 77.4511 81.3481 77.2522C81.2424 77.0491 81.0815 76.8925 80.8657 76.7825C80.6499 76.6724 80.3833 76.6174 80.0659 76.6174C79.7697 76.6174 79.5094 76.6682 79.2852 76.7698C79.0651 76.8713 78.8916 77.0046 78.7646 77.1697C78.6419 77.3347 78.5806 77.5125 78.5806 77.7029H77.4062C77.4062 77.4574 77.4697 77.2141 77.5967 76.9729C77.7236 76.7317 77.9056 76.5138 78.1426 76.3191C78.3838 76.1202 78.6715 75.9636 79.0059 75.8494C79.3444 75.7309 79.721 75.6716 80.1357 75.6716C80.6351 75.6716 81.0752 75.7563 81.4561 75.9255C81.8411 76.0948 82.1416 76.3508 82.3574 76.6936C82.5775 77.0321 82.6875 77.4574 82.6875 77.9695V81.1687C82.6875 81.3972 82.7065 81.6405 82.7446 81.8987C82.7869 82.1568 82.8483 82.379 82.9287 82.5652V82.6667H81.7036C81.6444 82.5313 81.5978 82.3515 81.564 82.1272C81.5301 81.8987 81.5132 81.6871 81.5132 81.4924ZM81.7163 78.5027L81.729 79.3279H80.542C80.2077 79.3279 79.9093 79.3554 79.647 79.4104C79.3846 79.4612 79.1646 79.5395 78.9868 79.6453C78.8091 79.7511 78.6737 79.8844 78.5806 80.0452C78.4875 80.2017 78.4409 80.3858 78.4409 80.5974C78.4409 80.8132 78.4896 81.01 78.5869 81.1877C78.6842 81.3655 78.8302 81.5072 79.0249 81.613C79.2238 81.7146 79.4671 81.7654 79.7549 81.7654C80.1146 81.7654 80.432 81.6892 80.707 81.5369C80.9821 81.3845 81.2 81.1983 81.3608 80.9783C81.5259 80.7582 81.6147 80.5445 81.6274 80.3372L82.1289 80.9021C82.0993 81.0798 82.0189 81.2766 81.8877 81.4924C81.7565 81.7083 81.5809 81.9156 81.3608 82.1145C81.145 82.3092 80.8869 82.4721 80.5864 82.6033C80.2902 82.7302 79.9559 82.7937 79.5835 82.7937C79.118 82.7937 78.7096 82.7027 78.3584 82.5208C78.0114 82.3388 77.7406 82.0955 77.5459 81.7908C77.3555 81.4819 77.2603 81.137 77.2603 80.7561C77.2603 80.3879 77.3322 80.0642 77.4761 79.7849C77.62 79.5014 77.8273 79.2665 78.0981 79.0803C78.369 78.8899 78.6948 78.746 79.0757 78.6487C79.4565 78.5514 79.8818 78.5027 80.3516 78.5027H81.7163ZM87.2832 81.8289C87.5625 81.8289 87.8206 81.7717 88.0576 81.6575C88.2946 81.5432 88.4893 81.3866 88.6416 81.1877C88.7939 80.9846 88.8807 80.754 88.9019 80.4958H90.019C89.9979 80.9021 89.8604 81.2808 89.6064 81.6321C89.3568 81.9791 89.0288 82.2605 88.6226 82.4763C88.2163 82.6879 87.7699 82.7937 87.2832 82.7937C86.7669 82.7937 86.3162 82.7027 85.9312 82.5208C85.5503 82.3388 85.2329 82.0891 84.979 81.7717C84.7293 81.4543 84.541 81.0904 84.4141 80.6799C84.2913 80.2652 84.23 79.8272 84.23 79.366V79.0994C84.23 78.6381 84.2913 78.2022 84.4141 77.7917C84.541 77.377 84.7293 77.011 84.979 76.6936C85.2329 76.3762 85.5503 76.1265 85.9312 75.9446C86.3162 75.7626 86.7669 75.6716 87.2832 75.6716C87.8206 75.6716 88.2904 75.7817 88.6924 76.0017C89.0944 76.2175 89.4097 76.5138 89.6382 76.8904C89.8709 77.2628 89.9979 77.686 90.019 78.1599H88.9019C88.8807 77.8764 88.8003 77.6204 88.6606 77.3918C88.5252 77.1633 88.339 76.9814 88.1021 76.8459C87.8693 76.7063 87.5964 76.6365 87.2832 76.6365C86.9235 76.6365 86.6209 76.7084 86.3755 76.8523C86.1343 76.9919 85.9417 77.1824 85.7979 77.4236C85.6582 77.6606 85.5566 77.925 85.4932 78.217C85.4339 78.5048 85.4043 78.7989 85.4043 79.0994V79.366C85.4043 79.6664 85.4339 79.9626 85.4932 80.2546C85.5524 80.5466 85.6519 80.8111 85.7915 81.0481C85.9354 81.2851 86.1279 81.4755 86.3691 81.6194C86.6146 81.759 86.9193 81.8289 87.2832 81.8289ZM92.5137 72.9167V82.6667H91.3394V72.9167H92.5137ZM92.2344 78.9724L91.7456 78.9534C91.7498 78.4836 91.8197 78.0499 91.9551 77.6521C92.0905 77.2501 92.2809 76.901 92.5264 76.6047C92.7718 76.3085 93.0638 76.08 93.4023 75.9192C93.7451 75.7542 94.1239 75.6716 94.5386 75.6716C94.8771 75.6716 95.1818 75.7182 95.4526 75.8113C95.7235 75.9001 95.9541 76.044 96.1445 76.2429C96.3392 76.4418 96.4873 76.7 96.5889 77.0173C96.6904 77.3305 96.7412 77.7135 96.7412 78.1663V82.6667H95.5605V78.1536C95.5605 77.7939 95.5076 77.5061 95.4019 77.2903C95.2961 77.0702 95.1416 76.9115 94.9385 76.8142C94.7354 76.7126 94.4857 76.6619 94.1895 76.6619C93.8975 76.6619 93.6309 76.7232 93.3896 76.8459C93.1527 76.9687 92.9474 77.1379 92.7739 77.3538C92.6047 77.5696 92.4714 77.8171 92.374 78.0964C92.2809 78.3715 92.2344 78.6635 92.2344 78.9724Z",fill:"white"}),(0,o.createElement)("rect",{width:"268",height:"26.3333",transform:"translate(15 91.3333)",fill:"white"}),(0,o.createElement)("path",{d:"M27.2534 104.601L26.314 104.36L26.7773 99.7578H31.519V100.843H27.7739L27.4946 103.357C27.6639 103.26 27.8776 103.169 28.1357 103.084C28.3981 102.999 28.6986 102.957 29.0371 102.957C29.4645 102.957 29.8475 103.031 30.186 103.179C30.5246 103.323 30.8123 103.53 31.0493 103.801C31.2905 104.072 31.4746 104.398 31.6016 104.779C31.7285 105.16 31.792 105.585 31.792 106.055C31.792 106.499 31.7306 106.907 31.6079 107.28C31.4894 107.652 31.3096 107.978 31.0684 108.257C30.8271 108.532 30.5225 108.746 30.1543 108.898C29.7904 109.051 29.3608 109.127 28.8657 109.127C28.4933 109.127 28.14 109.076 27.8057 108.975C27.4756 108.869 27.1794 108.71 26.917 108.499C26.6589 108.283 26.4473 108.016 26.2822 107.699C26.1214 107.377 26.0199 107 25.9775 106.569H27.0947C27.1455 106.916 27.2471 107.208 27.3994 107.445C27.5518 107.682 27.7507 107.862 27.9961 107.984C28.2458 108.103 28.5356 108.162 28.8657 108.162C29.145 108.162 29.3926 108.113 29.6084 108.016C29.8242 107.919 30.0062 107.779 30.1543 107.597C30.3024 107.415 30.4146 107.195 30.4907 106.937C30.5711 106.679 30.6113 106.389 30.6113 106.067C30.6113 105.775 30.5711 105.505 30.4907 105.255C30.4103 105.005 30.2897 104.787 30.1289 104.601C29.9723 104.415 29.7798 104.271 29.5513 104.169C29.3228 104.064 29.0604 104.011 28.7642 104.011C28.3706 104.011 28.0723 104.064 27.8691 104.169C27.6702 104.275 27.465 104.419 27.2534 104.601ZM37.6001 103.497V109H36.4194V102.132H37.5366L37.6001 103.497ZM37.3589 105.306L36.813 105.287C36.8172 104.817 36.8786 104.383 36.9971 103.985C37.1156 103.583 37.2912 103.234 37.5239 102.938C37.7567 102.642 38.0465 102.413 38.3936 102.252C38.7406 102.087 39.1426 102.005 39.5996 102.005C39.9212 102.005 40.2174 102.051 40.4883 102.145C40.7591 102.233 40.994 102.375 41.1929 102.57C41.3918 102.764 41.5462 103.014 41.6562 103.319C41.7663 103.624 41.8213 103.992 41.8213 104.423V109H40.647V104.48C40.647 104.121 40.5856 103.833 40.4629 103.617C40.3444 103.401 40.1751 103.245 39.9551 103.147C39.735 103.046 39.4769 102.995 39.1807 102.995C38.8337 102.995 38.5438 103.056 38.311 103.179C38.0783 103.302 37.8921 103.471 37.7524 103.687C37.6128 103.903 37.5112 104.15 37.4478 104.43C37.3885 104.705 37.3589 104.997 37.3589 105.306ZM41.8086 104.658L41.0215 104.899C41.0257 104.523 41.0871 104.161 41.2056 103.814C41.3283 103.467 41.5039 103.158 41.7324 102.887C41.9652 102.616 42.2508 102.403 42.5894 102.246C42.9279 102.085 43.3151 102.005 43.751 102.005C44.1191 102.005 44.445 102.054 44.7285 102.151C45.0163 102.248 45.2575 102.398 45.4521 102.602C45.651 102.8 45.8013 103.056 45.9028 103.37C46.0044 103.683 46.0552 104.055 46.0552 104.487V109H44.8745V104.474C44.8745 104.089 44.8132 103.791 44.6904 103.579C44.5719 103.363 44.4027 103.213 44.1826 103.128C43.9668 103.04 43.7087 102.995 43.4082 102.995C43.1501 102.995 42.9215 103.04 42.7227 103.128C42.5238 103.217 42.3566 103.34 42.2212 103.497C42.0858 103.649 41.9821 103.825 41.9102 104.023C41.8424 104.222 41.8086 104.434 41.8086 104.658ZM49.1084 102.132V109H47.9277V102.132H49.1084ZM47.8389 100.31C47.8389 100.12 47.896 99.9588 48.0103 99.8276C48.1287 99.6965 48.3022 99.6309 48.5308 99.6309C48.755 99.6309 48.9264 99.6965 49.0449 99.8276C49.1676 99.9588 49.229 100.12 49.229 100.31C49.229 100.492 49.1676 100.649 49.0449 100.78C48.9264 100.907 48.755 100.97 48.5308 100.97C48.3022 100.97 48.1287 100.907 48.0103 100.78C47.896 100.649 47.8389 100.492 47.8389 100.31ZM52.168 103.598V109H50.9937V102.132H52.1045L52.168 103.598ZM51.8887 105.306L51.3999 105.287C51.4041 104.817 51.474 104.383 51.6094 103.985C51.7448 103.583 51.9352 103.234 52.1807 102.938C52.4261 102.642 52.7181 102.413 53.0566 102.252C53.3994 102.087 53.7782 102.005 54.1929 102.005C54.5314 102.005 54.8361 102.051 55.1069 102.145C55.3778 102.233 55.6084 102.377 55.7988 102.576C55.9935 102.775 56.1416 103.033 56.2432 103.351C56.3447 103.664 56.3955 104.047 56.3955 104.5V109H55.2148V104.487C55.2148 104.127 55.1619 103.839 55.0562 103.624C54.9504 103.403 54.7959 103.245 54.5928 103.147C54.3896 103.046 54.14 102.995 53.8438 102.995C53.5518 102.995 53.2852 103.056 53.0439 103.179C52.807 103.302 52.6017 103.471 52.4282 103.687C52.259 103.903 52.1257 104.15 52.0283 104.43C51.9352 104.705 51.8887 104.997 51.8887 105.306ZM62.3813 107.413V102.132H63.562V109H62.4385L62.3813 107.413ZM62.6035 105.966L63.0923 105.953C63.0923 106.41 63.0436 106.833 62.9463 107.223C62.8532 107.608 62.7008 107.942 62.4893 108.226C62.2777 108.509 62.0005 108.731 61.6577 108.892C61.3149 109.049 60.8981 109.127 60.4072 109.127C60.0729 109.127 59.7661 109.078 59.4868 108.981C59.2118 108.884 58.9748 108.733 58.7759 108.53C58.577 108.327 58.4225 108.063 58.3125 107.737C58.2067 107.411 58.1538 107.02 58.1538 106.562V102.132H59.3281V106.575C59.3281 106.884 59.362 107.14 59.4297 107.343C59.5016 107.542 59.5968 107.701 59.7153 107.819C59.8381 107.934 59.9735 108.014 60.1216 108.061C60.2739 108.107 60.4305 108.13 60.5913 108.13C61.0907 108.13 61.4863 108.035 61.7783 107.845C62.0703 107.65 62.2798 107.39 62.4067 107.064C62.5379 106.734 62.6035 106.368 62.6035 105.966ZM68.2275 102.132V103.033H64.5142V102.132H68.2275ZM65.771 100.462H66.9453V107.299C66.9453 107.532 66.9813 107.707 67.0532 107.826C67.1252 107.944 67.2183 108.022 67.3325 108.061C67.4468 108.099 67.5695 108.118 67.7007 108.118C67.798 108.118 67.8996 108.109 68.0054 108.092C68.1154 108.071 68.1979 108.054 68.2529 108.042L68.2593 109C68.1662 109.03 68.0435 109.057 67.8911 109.083C67.743 109.112 67.5632 109.127 67.3516 109.127C67.0638 109.127 66.7993 109.07 66.5581 108.956C66.3169 108.841 66.1243 108.651 65.9805 108.384C65.8408 108.113 65.771 107.75 65.771 107.292V100.462ZM72.4551 109.127C71.9769 109.127 71.5431 109.047 71.1538 108.886C70.7687 108.721 70.4365 108.49 70.1572 108.194C69.8822 107.898 69.6706 107.546 69.5225 107.14C69.3743 106.734 69.3003 106.29 69.3003 105.807V105.541C69.3003 104.982 69.3828 104.485 69.5479 104.049C69.7129 103.609 69.9372 103.236 70.2207 102.932C70.5042 102.627 70.8258 102.396 71.1855 102.24C71.5452 102.083 71.9176 102.005 72.3027 102.005C72.7936 102.005 73.2168 102.09 73.5723 102.259C73.932 102.428 74.2261 102.665 74.4546 102.97C74.6831 103.27 74.8524 103.626 74.9624 104.036C75.0724 104.442 75.1274 104.887 75.1274 105.369V105.896H69.9985V104.938H73.9531V104.849C73.9362 104.544 73.8727 104.248 73.7627 103.96C73.6569 103.672 73.4876 103.435 73.2549 103.249C73.0221 103.063 72.7048 102.97 72.3027 102.97C72.0361 102.97 71.7907 103.027 71.5664 103.141C71.3421 103.251 71.1496 103.416 70.9888 103.636C70.828 103.856 70.7031 104.125 70.6143 104.442C70.5254 104.76 70.481 105.126 70.481 105.541V105.807C70.481 106.133 70.5254 106.44 70.6143 106.728C70.7074 107.011 70.8407 107.261 71.0142 107.477C71.1919 107.692 71.4056 107.862 71.6553 107.984C71.9092 108.107 72.1969 108.168 72.5186 108.168C72.9333 108.168 73.2845 108.084 73.5723 107.915C73.86 107.745 74.1118 107.519 74.3276 107.235L75.0386 107.8C74.8905 108.025 74.7021 108.238 74.4736 108.441C74.2451 108.645 73.9637 108.81 73.6294 108.937C73.2993 109.063 72.9079 109.127 72.4551 109.127ZM80.4976 107.178C80.4976 107.009 80.4595 106.852 80.3833 106.708C80.3114 106.56 80.1611 106.427 79.9326 106.309C79.7083 106.186 79.3698 106.08 78.917 105.991C78.5361 105.911 78.1912 105.816 77.8823 105.706C77.5776 105.596 77.3174 105.462 77.1016 105.306C76.89 105.149 76.7271 104.965 76.6128 104.753C76.4985 104.542 76.4414 104.294 76.4414 104.011C76.4414 103.74 76.5007 103.484 76.6191 103.243C76.7419 103.001 76.9132 102.788 77.1333 102.602C77.3576 102.415 77.6263 102.269 77.9395 102.164C78.2526 102.058 78.6017 102.005 78.9868 102.005C79.5369 102.005 80.0067 102.102 80.396 102.297C80.7853 102.492 81.0837 102.752 81.291 103.078C81.4984 103.399 81.6021 103.757 81.6021 104.15H80.4277C80.4277 103.96 80.3706 103.776 80.2563 103.598C80.1463 103.416 79.9834 103.266 79.7676 103.147C79.556 103.029 79.2957 102.97 78.9868 102.97C78.661 102.97 78.3965 103.021 78.1934 103.122C77.9945 103.219 77.8485 103.344 77.7554 103.497C77.6665 103.649 77.6221 103.81 77.6221 103.979C77.6221 104.106 77.6432 104.22 77.6855 104.322C77.7321 104.419 77.8125 104.51 77.9268 104.595C78.041 104.675 78.2018 104.751 78.4092 104.823C78.6165 104.895 78.881 104.967 79.2026 105.039C79.7655 105.166 80.2288 105.318 80.5928 105.496C80.9567 105.674 81.2275 105.892 81.4053 106.15C81.583 106.408 81.6719 106.721 81.6719 107.089C81.6719 107.39 81.6084 107.665 81.4814 107.915C81.3587 108.164 81.1789 108.38 80.9419 108.562C80.7091 108.74 80.4299 108.879 80.104 108.981C79.7824 109.078 79.4206 109.127 79.0186 109.127C78.4134 109.127 77.9014 109.019 77.4824 108.803C77.0635 108.587 76.7461 108.308 76.5303 107.965C76.3145 107.623 76.2065 107.261 76.2065 106.88H77.3872C77.4041 107.201 77.4972 107.458 77.6665 107.648C77.8358 107.834 78.0431 107.967 78.2886 108.048C78.534 108.124 78.7773 108.162 79.0186 108.162C79.3402 108.162 79.6089 108.12 79.8247 108.035C80.0448 107.951 80.2119 107.834 80.3262 107.686C80.4404 107.538 80.4976 107.369 80.4976 107.178ZM89.3145 102.132V103.033H85.6011V102.132H89.3145ZM86.8579 100.462H88.0322V107.299C88.0322 107.532 88.0682 107.707 88.1401 107.826C88.2121 107.944 88.3052 108.022 88.4194 108.061C88.5337 108.099 88.6564 108.118 88.7876 108.118C88.8849 108.118 88.9865 108.109 89.0923 108.092C89.2023 108.071 89.2848 108.054 89.3398 108.042L89.3462 109C89.2531 109.03 89.1304 109.057 88.978 109.083C88.8299 109.112 88.6501 109.127 88.4385 109.127C88.1507 109.127 87.8862 109.07 87.645 108.956C87.4038 108.841 87.2113 108.651 87.0674 108.384C86.9277 108.113 86.8579 107.75 86.8579 107.292V100.462ZM90.2539 105.642V105.496C90.2539 105.001 90.3258 104.542 90.4697 104.119C90.6136 103.691 90.821 103.321 91.0918 103.008C91.3626 102.69 91.6906 102.445 92.0757 102.271C92.4608 102.094 92.8924 102.005 93.3706 102.005C93.853 102.005 94.2868 102.094 94.6719 102.271C95.0612 102.445 95.3913 102.69 95.6621 103.008C95.9372 103.321 96.1466 103.691 96.2905 104.119C96.4344 104.542 96.5063 105.001 96.5063 105.496V105.642C96.5063 106.137 96.4344 106.596 96.2905 107.02C96.1466 107.443 95.9372 107.813 95.6621 108.13C95.3913 108.444 95.0633 108.689 94.6782 108.867C94.2974 109.04 93.8657 109.127 93.3833 109.127C92.9009 109.127 92.4671 109.04 92.082 108.867C91.6969 108.689 91.3669 108.444 91.0918 108.13C90.821 107.813 90.6136 107.443 90.4697 107.02C90.3258 106.596 90.2539 106.137 90.2539 105.642ZM91.4282 105.496V105.642C91.4282 105.985 91.4684 106.309 91.5488 106.613C91.6292 106.914 91.7498 107.18 91.9106 107.413C92.0757 107.646 92.2809 107.83 92.5264 107.965C92.7718 108.097 93.0575 108.162 93.3833 108.162C93.7049 108.162 93.9863 108.097 94.2275 107.965C94.473 107.83 94.6761 107.646 94.8369 107.413C94.9977 107.18 95.1183 106.914 95.1987 106.613C95.2834 106.309 95.3257 105.985 95.3257 105.642V105.496C95.3257 105.158 95.2834 104.838 95.1987 104.538C95.1183 104.233 94.9956 103.964 94.8306 103.731C94.6698 103.494 94.4666 103.308 94.2212 103.173C93.98 103.037 93.6965 102.97 93.3706 102.97C93.049 102.97 92.7655 103.037 92.52 103.173C92.2788 103.308 92.0757 103.494 91.9106 103.731C91.7498 103.964 91.6292 104.233 91.5488 104.538C91.4684 104.838 91.4282 105.158 91.4282 105.496ZM104.079 102.132V103.033H100.366V102.132H104.079ZM101.623 100.462H102.797V107.299C102.797 107.532 102.833 107.707 102.905 107.826C102.977 107.944 103.07 108.022 103.184 108.061C103.298 108.099 103.421 108.118 103.552 108.118C103.65 108.118 103.751 108.109 103.857 108.092C103.967 108.071 104.049 108.054 104.104 108.042L104.111 109C104.018 109.03 103.895 109.057 103.743 109.083C103.595 109.112 103.415 109.127 103.203 109.127C102.915 109.127 102.651 109.07 102.41 108.956C102.168 108.841 101.976 108.651 101.832 108.384C101.692 108.113 101.623 107.75 101.623 107.292V100.462ZM106.631 99.25V109H105.457V99.25H106.631ZM106.352 105.306L105.863 105.287C105.867 104.817 105.937 104.383 106.072 103.985C106.208 103.583 106.398 103.234 106.644 102.938C106.889 102.642 107.181 102.413 107.52 102.252C107.862 102.087 108.241 102.005 108.656 102.005C108.994 102.005 109.299 102.051 109.57 102.145C109.841 102.233 110.071 102.377 110.262 102.576C110.456 102.775 110.604 103.033 110.706 103.351C110.808 103.664 110.858 104.047 110.858 104.5V109H109.678V104.487C109.678 104.127 109.625 103.839 109.519 103.624C109.413 103.403 109.259 103.245 109.056 103.147C108.853 103.046 108.603 102.995 108.307 102.995C108.015 102.995 107.748 103.056 107.507 103.179C107.27 103.302 107.065 103.471 106.891 103.687C106.722 103.903 106.589 104.15 106.491 104.43C106.398 104.705 106.352 104.997 106.352 105.306ZM115.467 109.127C114.989 109.127 114.555 109.047 114.166 108.886C113.78 108.721 113.448 108.49 113.169 108.194C112.894 107.898 112.682 107.546 112.534 107.14C112.386 106.734 112.312 106.29 112.312 105.807V105.541C112.312 104.982 112.395 104.485 112.56 104.049C112.725 103.609 112.949 103.236 113.232 102.932C113.516 102.627 113.838 102.396 114.197 102.24C114.557 102.083 114.929 102.005 115.314 102.005C115.805 102.005 116.229 102.09 116.584 102.259C116.944 102.428 117.238 102.665 117.466 102.97C117.695 103.27 117.864 103.626 117.974 104.036C118.084 104.442 118.139 104.887 118.139 105.369V105.896H113.01V104.938H116.965V104.849C116.948 104.544 116.884 104.248 116.774 103.96C116.669 103.672 116.499 103.435 116.267 103.249C116.034 103.063 115.716 102.97 115.314 102.97C115.048 102.97 114.802 103.027 114.578 103.141C114.354 103.251 114.161 103.416 114 103.636C113.84 103.856 113.715 104.125 113.626 104.442C113.537 104.76 113.493 105.126 113.493 105.541V105.807C113.493 106.133 113.537 106.44 113.626 106.728C113.719 107.011 113.852 107.261 114.026 107.477C114.204 107.692 114.417 107.862 114.667 107.984C114.921 108.107 115.209 108.168 115.53 108.168C115.945 108.168 116.296 108.084 116.584 107.915C116.872 107.745 117.124 107.519 117.339 107.235L118.05 107.8C117.902 108.025 117.714 108.238 117.485 108.441C117.257 108.645 116.975 108.81 116.641 108.937C116.311 109.063 115.92 109.127 115.467 109.127ZM126.734 107.178C126.734 107.009 126.696 106.852 126.62 106.708C126.548 106.56 126.397 106.427 126.169 106.309C125.945 106.186 125.606 106.08 125.153 105.991C124.772 105.911 124.428 105.816 124.119 105.706C123.814 105.596 123.554 105.462 123.338 105.306C123.126 105.149 122.963 104.965 122.849 104.753C122.735 104.542 122.678 104.294 122.678 104.011C122.678 103.74 122.737 103.484 122.855 103.243C122.978 103.001 123.15 102.788 123.37 102.602C123.594 102.415 123.863 102.269 124.176 102.164C124.489 102.058 124.838 102.005 125.223 102.005C125.773 102.005 126.243 102.102 126.632 102.297C127.022 102.492 127.32 102.752 127.527 103.078C127.735 103.399 127.838 103.757 127.838 104.15H126.664C126.664 103.96 126.607 103.776 126.493 103.598C126.383 103.416 126.22 103.266 126.004 103.147C125.792 103.029 125.532 102.97 125.223 102.97C124.897 102.97 124.633 103.021 124.43 103.122C124.231 103.219 124.085 103.344 123.992 103.497C123.903 103.649 123.858 103.81 123.858 103.979C123.858 104.106 123.88 104.22 123.922 104.322C123.968 104.419 124.049 104.51 124.163 104.595C124.277 104.675 124.438 104.751 124.646 104.823C124.853 104.895 125.117 104.967 125.439 105.039C126.002 105.166 126.465 105.318 126.829 105.496C127.193 105.674 127.464 105.892 127.642 106.15C127.819 106.408 127.908 106.721 127.908 107.089C127.908 107.39 127.845 107.665 127.718 107.915C127.595 108.164 127.415 108.38 127.178 108.562C126.945 108.74 126.666 108.879 126.34 108.981C126.019 109.078 125.657 109.127 125.255 109.127C124.65 109.127 124.138 109.019 123.719 108.803C123.3 108.587 122.982 108.308 122.767 107.965C122.551 107.623 122.443 107.261 122.443 106.88H123.624C123.64 107.201 123.734 107.458 123.903 107.648C124.072 107.834 124.279 107.967 124.525 108.048C124.77 108.124 125.014 108.162 125.255 108.162C125.576 108.162 125.845 108.12 126.061 108.035C126.281 107.951 126.448 107.834 126.562 107.686C126.677 107.538 126.734 107.369 126.734 107.178ZM130.625 99.25V109H129.451V99.25H130.625ZM130.346 105.306L129.857 105.287C129.861 104.817 129.931 104.383 130.066 103.985C130.202 103.583 130.392 103.234 130.638 102.938C130.883 102.642 131.175 102.413 131.514 102.252C131.856 102.087 132.235 102.005 132.65 102.005C132.988 102.005 133.293 102.051 133.564 102.145C133.835 102.233 134.065 102.377 134.256 102.576C134.451 102.775 134.599 103.033 134.7 103.351C134.802 103.664 134.853 104.047 134.853 104.5V109H133.672V104.487C133.672 104.127 133.619 103.839 133.513 103.624C133.407 103.403 133.253 103.245 133.05 103.147C132.847 103.046 132.597 102.995 132.301 102.995C132.009 102.995 131.742 103.056 131.501 103.179C131.264 103.302 131.059 103.471 130.885 103.687C130.716 103.903 130.583 104.15 130.485 104.43C130.392 104.705 130.346 104.997 130.346 105.306ZM136.3 105.642V105.496C136.3 105.001 136.372 104.542 136.516 104.119C136.66 103.691 136.867 103.321 137.138 103.008C137.409 102.69 137.736 102.445 138.122 102.271C138.507 102.094 138.938 102.005 139.417 102.005C139.899 102.005 140.333 102.094 140.718 102.271C141.107 102.445 141.437 102.69 141.708 103.008C141.983 103.321 142.193 103.691 142.336 104.119C142.48 104.542 142.552 105.001 142.552 105.496V105.642C142.552 106.137 142.48 106.596 142.336 107.02C142.193 107.443 141.983 107.813 141.708 108.13C141.437 108.444 141.109 108.689 140.724 108.867C140.343 109.04 139.912 109.127 139.429 109.127C138.947 109.127 138.513 109.04 138.128 108.867C137.743 108.689 137.413 108.444 137.138 108.13C136.867 107.813 136.66 107.443 136.516 107.02C136.372 106.596 136.3 106.137 136.3 105.642ZM137.474 105.496V105.642C137.474 105.985 137.514 106.309 137.595 106.613C137.675 106.914 137.796 107.18 137.957 107.413C138.122 107.646 138.327 107.83 138.572 107.965C138.818 108.097 139.103 108.162 139.429 108.162C139.751 108.162 140.032 108.097 140.273 107.965C140.519 107.83 140.722 107.646 140.883 107.413C141.044 107.18 141.164 106.914 141.245 106.613C141.329 106.309 141.372 105.985 141.372 105.642V105.496C141.372 105.158 141.329 104.838 141.245 104.538C141.164 104.233 141.042 103.964 140.876 103.731C140.716 103.494 140.513 103.308 140.267 103.173C140.026 103.037 139.742 102.97 139.417 102.97C139.095 102.97 138.811 103.037 138.566 103.173C138.325 103.308 138.122 103.494 137.957 103.731C137.796 103.964 137.675 104.233 137.595 104.538C137.514 104.838 137.474 105.158 137.474 105.496ZM145.199 103.211V109H144.025V102.132H145.167L145.199 103.211ZM147.345 102.094L147.338 103.186C147.241 103.164 147.148 103.152 147.059 103.147C146.974 103.139 146.877 103.135 146.767 103.135C146.496 103.135 146.257 103.177 146.05 103.262C145.842 103.346 145.667 103.465 145.523 103.617C145.379 103.77 145.265 103.951 145.18 104.163C145.1 104.37 145.047 104.599 145.021 104.849L144.691 105.039C144.691 104.624 144.732 104.235 144.812 103.871C144.897 103.507 145.026 103.186 145.199 102.906C145.373 102.623 145.593 102.403 145.859 102.246C146.13 102.085 146.452 102.005 146.824 102.005C146.909 102.005 147.006 102.015 147.116 102.037C147.226 102.054 147.302 102.073 147.345 102.094ZM151.153 109.127C150.675 109.127 150.241 109.047 149.852 108.886C149.467 108.721 149.135 108.49 148.855 108.194C148.58 107.898 148.369 107.546 148.221 107.14C148.073 106.734 147.999 106.29 147.999 105.807V105.541C147.999 104.982 148.081 104.485 148.246 104.049C148.411 103.609 148.635 103.236 148.919 102.932C149.202 102.627 149.524 102.396 149.884 102.24C150.243 102.083 150.616 102.005 151.001 102.005C151.492 102.005 151.915 102.09 152.271 102.259C152.63 102.428 152.924 102.665 153.153 102.97C153.381 103.27 153.551 103.626 153.661 104.036C153.771 104.442 153.826 104.887 153.826 105.369V105.896H148.697V104.938H152.651V104.849C152.634 104.544 152.571 104.248 152.461 103.96C152.355 103.672 152.186 103.435 151.953 103.249C151.72 103.063 151.403 102.97 151.001 102.97C150.734 102.97 150.489 103.027 150.265 103.141C150.04 103.251 149.848 103.416 149.687 103.636C149.526 103.856 149.401 104.125 149.312 104.442C149.224 104.76 149.179 105.126 149.179 105.541V105.807C149.179 106.133 149.224 106.44 149.312 106.728C149.406 107.011 149.539 107.261 149.712 107.477C149.89 107.692 150.104 107.862 150.354 107.984C150.607 108.107 150.895 108.168 151.217 108.168C151.632 108.168 151.983 108.084 152.271 107.915C152.558 107.745 152.81 107.519 153.026 107.235L153.737 107.8C153.589 108.025 153.4 108.238 153.172 108.441C152.943 108.645 152.662 108.81 152.328 108.937C151.998 109.063 151.606 109.127 151.153 109.127Z",fill:"#0F172A"}),(0,o.createElement)("rect",{width:"268",height:"26.3333",transform:"translate(15 117.667)",fill:"white"}),(0,o.createElement)("path",{d:"M29.6274 126.041V135.333H28.4531V127.507L26.0854 128.37V127.31L29.4434 126.041H29.6274ZM38.8823 129.976V131.385C38.8823 132.143 38.8146 132.782 38.6792 133.302C38.5438 133.823 38.3491 134.242 38.0952 134.559C37.8413 134.876 37.5345 135.107 37.1748 135.251C36.8193 135.391 36.4173 135.46 35.9688 135.46C35.6133 135.46 35.2853 135.416 34.9849 135.327C34.6844 135.238 34.4136 135.097 34.1724 134.902C33.9354 134.703 33.7323 134.445 33.563 134.127C33.3937 133.81 33.2646 133.425 33.1758 132.972C33.0869 132.519 33.0425 131.99 33.0425 131.385V129.976C33.0425 129.219 33.1102 128.584 33.2456 128.072C33.3853 127.56 33.582 127.149 33.8359 126.84C34.0898 126.527 34.3945 126.303 34.75 126.167C35.1097 126.032 35.5117 125.964 35.9561 125.964C36.3158 125.964 36.6458 126.009 36.9463 126.098C37.251 126.182 37.5218 126.32 37.7588 126.51C37.9958 126.696 38.1968 126.946 38.3618 127.259C38.5311 127.568 38.6602 127.947 38.749 128.396C38.8379 128.844 38.8823 129.371 38.8823 129.976ZM37.7017 131.576V129.779C37.7017 129.365 37.6763 129.001 37.6255 128.688C37.5789 128.37 37.5091 128.099 37.416 127.875C37.3229 127.651 37.2044 127.469 37.0605 127.329C36.9209 127.189 36.758 127.088 36.5718 127.024C36.3898 126.957 36.1846 126.923 35.9561 126.923C35.6768 126.923 35.4292 126.976 35.2134 127.082C34.9976 127.183 34.8156 127.346 34.6675 127.57C34.5236 127.795 34.4136 128.089 34.3374 128.453C34.2612 128.817 34.2231 129.259 34.2231 129.779V131.576C34.2231 131.99 34.2464 132.356 34.293 132.674C34.3438 132.991 34.4178 133.266 34.5151 133.499C34.6125 133.728 34.731 133.916 34.8706 134.064C35.0103 134.212 35.1711 134.322 35.353 134.394C35.5392 134.462 35.7445 134.496 35.9688 134.496C36.2565 134.496 36.5083 134.441 36.7241 134.331C36.9399 134.221 37.1198 134.049 37.2637 133.816C37.4118 133.579 37.5218 133.277 37.5938 132.909C37.6657 132.536 37.7017 132.092 37.7017 131.576ZM44.9126 129.83V135.333H43.7319V128.465H44.8491L44.9126 129.83ZM44.6714 131.639L44.1255 131.62C44.1297 131.15 44.1911 130.717 44.3096 130.319C44.4281 129.917 44.6037 129.568 44.8364 129.271C45.0692 128.975 45.359 128.747 45.7061 128.586C46.0531 128.421 46.4551 128.338 46.9121 128.338C47.2337 128.338 47.5299 128.385 47.8008 128.478C48.0716 128.567 48.3065 128.709 48.5054 128.903C48.7043 129.098 48.8587 129.348 48.9688 129.652C49.0788 129.957 49.1338 130.325 49.1338 130.757V135.333H47.9595V130.814C47.9595 130.454 47.8981 130.167 47.7754 129.951C47.6569 129.735 47.4876 129.578 47.2676 129.481C47.0475 129.379 46.7894 129.329 46.4932 129.329C46.1462 129.329 45.8563 129.39 45.6235 129.513C45.3908 129.635 45.2046 129.805 45.0649 130.021C44.9253 130.236 44.8237 130.484 44.7603 130.763C44.701 131.038 44.6714 131.33 44.6714 131.639ZM49.1211 130.992L48.334 131.233C48.3382 130.856 48.3996 130.494 48.5181 130.147C48.6408 129.8 48.8164 129.492 49.0449 129.221C49.2777 128.95 49.5633 128.736 49.9019 128.58C50.2404 128.419 50.6276 128.338 51.0635 128.338C51.4316 128.338 51.7575 128.387 52.041 128.484C52.3288 128.582 52.57 128.732 52.7646 128.935C52.9635 129.134 53.1138 129.39 53.2153 129.703C53.3169 130.016 53.3677 130.389 53.3677 130.82V135.333H52.187V130.808C52.187 130.423 52.1257 130.124 52.0029 129.913C51.8844 129.697 51.7152 129.547 51.4951 129.462C51.2793 129.373 51.0212 129.329 50.7207 129.329C50.4626 129.329 50.234 129.373 50.0352 129.462C49.8363 129.551 49.6691 129.674 49.5337 129.83C49.3983 129.982 49.2946 130.158 49.2227 130.357C49.1549 130.556 49.1211 130.767 49.1211 130.992ZM56.4209 128.465V135.333H55.2402V128.465H56.4209ZM55.1514 126.644C55.1514 126.453 55.2085 126.292 55.3228 126.161C55.4412 126.03 55.6147 125.964 55.8433 125.964C56.0675 125.964 56.2389 126.03 56.3574 126.161C56.4801 126.292 56.5415 126.453 56.5415 126.644C56.5415 126.826 56.4801 126.982 56.3574 127.113C56.2389 127.24 56.0675 127.304 55.8433 127.304C55.6147 127.304 55.4412 127.24 55.3228 127.113C55.2085 126.982 55.1514 126.826 55.1514 126.644ZM59.4805 129.932V135.333H58.3062V128.465H59.417L59.4805 129.932ZM59.2012 131.639L58.7124 131.62C58.7166 131.15 58.7865 130.717 58.9219 130.319C59.0573 129.917 59.2477 129.568 59.4932 129.271C59.7386 128.975 60.0306 128.747 60.3691 128.586C60.7119 128.421 61.0907 128.338 61.5054 128.338C61.8439 128.338 62.1486 128.385 62.4194 128.478C62.6903 128.567 62.9209 128.711 63.1113 128.91C63.306 129.109 63.4541 129.367 63.5557 129.684C63.6572 129.997 63.708 130.38 63.708 130.833V135.333H62.5273V130.82C62.5273 130.461 62.4744 130.173 62.3687 129.957C62.2629 129.737 62.1084 129.578 61.9053 129.481C61.7021 129.379 61.4525 129.329 61.1562 129.329C60.8643 129.329 60.5977 129.39 60.3564 129.513C60.1195 129.635 59.9142 129.805 59.7407 130.021C59.5715 130.236 59.4382 130.484 59.3408 130.763C59.2477 131.038 59.2012 131.33 59.2012 131.639ZM69.6938 133.747V128.465H70.8745V135.333H69.751L69.6938 133.747ZM69.916 132.299L70.4048 132.287C70.4048 132.744 70.3561 133.167 70.2588 133.556C70.1657 133.941 70.0133 134.276 69.8018 134.559C69.5902 134.843 69.313 135.065 68.9702 135.226C68.6274 135.382 68.2106 135.46 67.7197 135.46C67.3854 135.46 67.0786 135.412 66.7993 135.314C66.5243 135.217 66.2873 135.067 66.0884 134.864C65.8895 134.661 65.735 134.396 65.625 134.07C65.5192 133.744 65.4663 133.353 65.4663 132.896V128.465H66.6406V132.909C66.6406 133.218 66.6745 133.474 66.7422 133.677C66.8141 133.876 66.9093 134.034 67.0278 134.153C67.1506 134.267 67.286 134.347 67.4341 134.394C67.5864 134.441 67.743 134.464 67.9038 134.464C68.4032 134.464 68.7988 134.369 69.0908 134.178C69.3828 133.984 69.5923 133.723 69.7192 133.397C69.8504 133.067 69.916 132.701 69.916 132.299ZM75.54 128.465V129.367H71.8267V128.465H75.54ZM73.0835 126.796H74.2578V133.632C74.2578 133.865 74.2938 134.041 74.3657 134.159C74.4377 134.278 74.5308 134.356 74.645 134.394C74.7593 134.432 74.882 134.451 75.0132 134.451C75.1105 134.451 75.2121 134.443 75.3179 134.426C75.4279 134.405 75.5104 134.388 75.5654 134.375L75.5718 135.333C75.4787 135.363 75.356 135.391 75.2036 135.416C75.0555 135.446 74.8757 135.46 74.6641 135.46C74.3763 135.46 74.1118 135.403 73.8706 135.289C73.6294 135.175 73.4368 134.984 73.293 134.718C73.1533 134.447 73.0835 134.083 73.0835 133.626V126.796ZM79.7676 135.46C79.2894 135.46 78.8556 135.38 78.4663 135.219C78.0812 135.054 77.749 134.824 77.4697 134.527C77.1947 134.231 76.9831 133.88 76.835 133.474C76.6868 133.067 76.6128 132.623 76.6128 132.141V131.874C76.6128 131.315 76.6953 130.818 76.8604 130.382C77.0254 129.942 77.2497 129.57 77.5332 129.265C77.8167 128.96 78.1383 128.73 78.498 128.573C78.8577 128.417 79.2301 128.338 79.6152 128.338C80.1061 128.338 80.5293 128.423 80.8848 128.592C81.2445 128.762 81.5386 128.999 81.7671 129.303C81.9956 129.604 82.1649 129.959 82.2749 130.37C82.3849 130.776 82.4399 131.22 82.4399 131.703V132.229H77.311V131.271H81.2656V131.182C81.2487 130.877 81.1852 130.581 81.0752 130.293C80.9694 130.006 80.8001 129.769 80.5674 129.583C80.3346 129.396 80.0173 129.303 79.6152 129.303C79.3486 129.303 79.1032 129.36 78.8789 129.475C78.6546 129.585 78.4621 129.75 78.3013 129.97C78.1405 130.19 78.0156 130.458 77.9268 130.776C77.8379 131.093 77.7935 131.459 77.7935 131.874V132.141C77.7935 132.466 77.8379 132.773 77.9268 133.061C78.0199 133.345 78.1532 133.594 78.3267 133.81C78.5044 134.026 78.7181 134.195 78.9678 134.318C79.2217 134.441 79.5094 134.502 79.8311 134.502C80.2458 134.502 80.597 134.417 80.8848 134.248C81.1725 134.079 81.4243 133.852 81.6401 133.569L82.3511 134.134C82.203 134.358 82.0146 134.572 81.7861 134.775C81.5576 134.978 81.2762 135.143 80.9419 135.27C80.6118 135.397 80.2204 135.46 79.7676 135.46ZM87.8101 133.512C87.8101 133.342 87.772 133.186 87.6958 133.042C87.6239 132.894 87.4736 132.761 87.2451 132.642C87.0208 132.519 86.6823 132.414 86.2295 132.325C85.8486 132.244 85.5037 132.149 85.1948 132.039C84.8901 131.929 84.6299 131.796 84.4141 131.639C84.2025 131.483 84.0396 131.299 83.9253 131.087C83.811 130.875 83.7539 130.628 83.7539 130.344C83.7539 130.073 83.8132 129.817 83.9316 129.576C84.0544 129.335 84.2257 129.121 84.4458 128.935C84.6701 128.749 84.9388 128.603 85.252 128.497C85.5651 128.391 85.9142 128.338 86.2993 128.338C86.8494 128.338 87.3192 128.436 87.7085 128.63C88.0978 128.825 88.3962 129.085 88.6035 129.411C88.8109 129.733 88.9146 130.09 88.9146 130.484H87.7402C87.7402 130.293 87.6831 130.109 87.5688 129.932C87.4588 129.75 87.2959 129.599 87.0801 129.481C86.8685 129.362 86.6082 129.303 86.2993 129.303C85.9735 129.303 85.709 129.354 85.5059 129.456C85.307 129.553 85.161 129.678 85.0679 129.83C84.979 129.982 84.9346 130.143 84.9346 130.312C84.9346 130.439 84.9557 130.554 84.998 130.655C85.0446 130.753 85.125 130.844 85.2393 130.928C85.3535 131.009 85.5143 131.085 85.7217 131.157C85.929 131.229 86.1935 131.301 86.5151 131.373C87.078 131.5 87.5413 131.652 87.9053 131.83C88.2692 132.007 88.54 132.225 88.7178 132.483C88.8955 132.742 88.9844 133.055 88.9844 133.423C88.9844 133.723 88.9209 133.998 88.7939 134.248C88.6712 134.498 88.4914 134.714 88.2544 134.896C88.0216 135.073 87.7424 135.213 87.4165 135.314C87.0949 135.412 86.7331 135.46 86.3311 135.46C85.7259 135.46 85.2139 135.353 84.7949 135.137C84.376 134.921 84.0586 134.642 83.8428 134.299C83.627 133.956 83.519 133.594 83.519 133.213H84.6997C84.7166 133.535 84.8097 133.791 84.979 133.981C85.1483 134.168 85.3556 134.301 85.6011 134.381C85.8465 134.458 86.0898 134.496 86.3311 134.496C86.6527 134.496 86.9214 134.453 87.1372 134.369C87.3573 134.284 87.5244 134.168 87.6387 134.02C87.7529 133.871 87.8101 133.702 87.8101 133.512ZM96.627 128.465V129.367H92.9136V128.465H96.627ZM94.1704 126.796H95.3447V133.632C95.3447 133.865 95.3807 134.041 95.4526 134.159C95.5246 134.278 95.6177 134.356 95.7319 134.394C95.8462 134.432 95.9689 134.451 96.1001 134.451C96.1974 134.451 96.299 134.443 96.4048 134.426C96.5148 134.405 96.5973 134.388 96.6523 134.375L96.6587 135.333C96.5656 135.363 96.4429 135.391 96.2905 135.416C96.1424 135.446 95.9626 135.46 95.751 135.46C95.4632 135.46 95.1987 135.403 94.9575 135.289C94.7163 135.175 94.5238 134.984 94.3799 134.718C94.2402 134.447 94.1704 134.083 94.1704 133.626V126.796ZM97.5664 131.976V131.83C97.5664 131.334 97.6383 130.875 97.7822 130.452C97.9261 130.025 98.1335 129.654 98.4043 129.341C98.6751 129.024 99.0031 128.778 99.3882 128.605C99.7733 128.427 100.205 128.338 100.683 128.338C101.166 128.338 101.599 128.427 101.984 128.605C102.374 128.778 102.704 129.024 102.975 129.341C103.25 129.654 103.459 130.025 103.603 130.452C103.747 130.875 103.819 131.334 103.819 131.83V131.976C103.819 132.471 103.747 132.93 103.603 133.353C103.459 133.776 103.25 134.146 102.975 134.464C102.704 134.777 102.376 135.022 101.991 135.2C101.61 135.374 101.178 135.46 100.696 135.46C100.213 135.46 99.7796 135.374 99.3945 135.2C99.0094 135.022 98.6794 134.777 98.4043 134.464C98.1335 134.146 97.9261 133.776 97.7822 133.353C97.6383 132.93 97.5664 132.471 97.5664 131.976ZM98.7407 131.83V131.976C98.7407 132.318 98.7809 132.642 98.8613 132.947C98.9417 133.247 99.0623 133.514 99.2231 133.747C99.3882 133.979 99.5934 134.163 99.8389 134.299C100.084 134.43 100.37 134.496 100.696 134.496C101.017 134.496 101.299 134.43 101.54 134.299C101.785 134.163 101.989 133.979 102.149 133.747C102.31 133.514 102.431 133.247 102.511 132.947C102.596 132.642 102.638 132.318 102.638 131.976V131.83C102.638 131.491 102.596 131.172 102.511 130.871C102.431 130.566 102.308 130.298 102.143 130.065C101.982 129.828 101.779 129.642 101.534 129.506C101.292 129.371 101.009 129.303 100.683 129.303C100.361 129.303 100.078 129.371 99.8325 129.506C99.5913 129.642 99.3882 129.828 99.2231 130.065C99.0623 130.298 98.9417 130.566 98.8613 130.871C98.7809 131.172 98.7407 131.491 98.7407 131.83ZM111.392 128.465V129.367H107.678V128.465H111.392ZM108.935 126.796H110.109V133.632C110.109 133.865 110.145 134.041 110.217 134.159C110.289 134.278 110.382 134.356 110.497 134.394C110.611 134.432 110.734 134.451 110.865 134.451C110.962 134.451 111.064 134.443 111.169 134.426C111.279 134.405 111.362 134.388 111.417 134.375L111.423 135.333C111.33 135.363 111.208 135.391 111.055 135.416C110.907 135.446 110.727 135.46 110.516 135.46C110.228 135.46 109.963 135.403 109.722 135.289C109.481 135.175 109.288 134.984 109.145 134.718C109.005 134.447 108.935 134.083 108.935 133.626V126.796ZM113.943 125.583V135.333H112.769V125.583H113.943ZM113.664 131.639L113.175 131.62C113.18 131.15 113.249 130.717 113.385 130.319C113.52 129.917 113.711 129.568 113.956 129.271C114.201 128.975 114.493 128.747 114.832 128.586C115.175 128.421 115.554 128.338 115.968 128.338C116.307 128.338 116.611 128.385 116.882 128.478C117.153 128.567 117.384 128.711 117.574 128.91C117.769 129.109 117.917 129.367 118.019 129.684C118.12 129.997 118.171 130.38 118.171 130.833V135.333H116.99V130.82C116.99 130.461 116.937 130.173 116.832 129.957C116.726 129.737 116.571 129.578 116.368 129.481C116.165 129.379 115.915 129.329 115.619 129.329C115.327 129.329 115.061 129.39 114.819 129.513C114.582 129.635 114.377 129.805 114.204 130.021C114.034 130.236 113.901 130.484 113.804 130.763C113.711 131.038 113.664 131.33 113.664 131.639ZM122.779 135.46C122.301 135.46 121.867 135.38 121.478 135.219C121.093 135.054 120.761 134.824 120.481 134.527C120.206 134.231 119.995 133.88 119.847 133.474C119.699 133.067 119.625 132.623 119.625 132.141V131.874C119.625 131.315 119.707 130.818 119.872 130.382C120.037 129.942 120.261 129.57 120.545 129.265C120.828 128.96 121.15 128.73 121.51 128.573C121.869 128.417 122.242 128.338 122.627 128.338C123.118 128.338 123.541 128.423 123.896 128.592C124.256 128.762 124.55 128.999 124.779 129.303C125.007 129.604 125.177 129.959 125.287 130.37C125.397 130.776 125.452 131.22 125.452 131.703V132.229H120.323V131.271H124.277V131.182C124.26 130.877 124.197 130.581 124.087 130.293C123.981 130.006 123.812 129.769 123.579 129.583C123.346 129.396 123.029 129.303 122.627 129.303C122.36 129.303 122.115 129.36 121.891 129.475C121.666 129.585 121.474 129.75 121.313 129.97C121.152 130.19 121.027 130.458 120.938 130.776C120.85 131.093 120.805 131.459 120.805 131.874V132.141C120.805 132.466 120.85 132.773 120.938 133.061C121.032 133.345 121.165 133.594 121.338 133.81C121.516 134.026 121.73 134.195 121.979 134.318C122.233 134.441 122.521 134.502 122.843 134.502C123.257 134.502 123.609 134.417 123.896 134.248C124.184 134.079 124.436 133.852 124.652 133.569L125.363 134.134C125.215 134.358 125.026 134.572 124.798 134.775C124.569 134.978 124.288 135.143 123.954 135.27C123.624 135.397 123.232 135.46 122.779 135.46ZM134.046 133.512C134.046 133.342 134.008 133.186 133.932 133.042C133.86 132.894 133.71 132.761 133.481 132.642C133.257 132.519 132.919 132.414 132.466 132.325C132.085 132.244 131.74 132.149 131.431 132.039C131.126 131.929 130.866 131.796 130.65 131.639C130.439 131.483 130.276 131.299 130.162 131.087C130.047 130.875 129.99 130.628 129.99 130.344C129.99 130.073 130.049 129.817 130.168 129.576C130.291 129.335 130.462 129.121 130.682 128.935C130.906 128.749 131.175 128.603 131.488 128.497C131.801 128.391 132.151 128.338 132.536 128.338C133.086 128.338 133.556 128.436 133.945 128.63C134.334 128.825 134.632 129.085 134.84 129.411C135.047 129.733 135.151 130.09 135.151 130.484H133.977C133.977 130.293 133.919 130.109 133.805 129.932C133.695 129.75 133.532 129.599 133.316 129.481C133.105 129.362 132.845 129.303 132.536 129.303C132.21 129.303 131.945 129.354 131.742 129.456C131.543 129.553 131.397 129.678 131.304 129.83C131.215 129.982 131.171 130.143 131.171 130.312C131.171 130.439 131.192 130.554 131.234 130.655C131.281 130.753 131.361 130.844 131.476 130.928C131.59 131.009 131.751 131.085 131.958 131.157C132.165 131.229 132.43 131.301 132.751 131.373C133.314 131.5 133.778 131.652 134.142 131.83C134.506 132.007 134.776 132.225 134.954 132.483C135.132 132.742 135.221 133.055 135.221 133.423C135.221 133.723 135.157 133.998 135.03 134.248C134.908 134.498 134.728 134.714 134.491 134.896C134.258 135.073 133.979 135.213 133.653 135.314C133.331 135.412 132.969 135.46 132.567 135.46C131.962 135.46 131.45 135.353 131.031 135.137C130.612 134.921 130.295 134.642 130.079 134.299C129.863 133.956 129.755 133.594 129.755 133.213H130.936C130.953 133.535 131.046 133.791 131.215 133.981C131.385 134.168 131.592 134.301 131.837 134.381C132.083 134.458 132.326 134.496 132.567 134.496C132.889 134.496 133.158 134.453 133.374 134.369C133.594 134.284 133.761 134.168 133.875 134.02C133.989 133.871 134.046 133.702 134.046 133.512ZM137.938 125.583V135.333H136.763V125.583H137.938ZM137.658 131.639L137.169 131.62C137.174 131.15 137.243 130.717 137.379 130.319C137.514 129.917 137.705 129.568 137.95 129.271C138.196 128.975 138.488 128.747 138.826 128.586C139.169 128.421 139.548 128.338 139.962 128.338C140.301 128.338 140.606 128.385 140.876 128.478C141.147 128.567 141.378 128.711 141.568 128.91C141.763 129.109 141.911 129.367 142.013 129.684C142.114 129.997 142.165 130.38 142.165 130.833V135.333H140.984V130.82C140.984 130.461 140.931 130.173 140.826 129.957C140.72 129.737 140.565 129.578 140.362 129.481C140.159 129.379 139.91 129.329 139.613 129.329C139.321 129.329 139.055 129.39 138.813 129.513C138.576 129.635 138.371 129.805 138.198 130.021C138.028 130.236 137.895 130.484 137.798 130.763C137.705 131.038 137.658 131.33 137.658 131.639ZM143.612 131.976V131.83C143.612 131.334 143.684 130.875 143.828 130.452C143.972 130.025 144.179 129.654 144.45 129.341C144.721 129.024 145.049 128.778 145.434 128.605C145.819 128.427 146.251 128.338 146.729 128.338C147.211 128.338 147.645 128.427 148.03 128.605C148.42 128.778 148.75 129.024 149.021 129.341C149.296 129.654 149.505 130.025 149.649 130.452C149.793 130.875 149.865 131.334 149.865 131.83V131.976C149.865 132.471 149.793 132.93 149.649 133.353C149.505 133.776 149.296 134.146 149.021 134.464C148.75 134.777 148.422 135.022 148.037 135.2C147.656 135.374 147.224 135.46 146.742 135.46C146.259 135.46 145.826 135.374 145.44 135.2C145.055 135.022 144.725 134.777 144.45 134.464C144.179 134.146 143.972 133.776 143.828 133.353C143.684 132.93 143.612 132.471 143.612 131.976ZM144.787 131.83V131.976C144.787 132.318 144.827 132.642 144.907 132.947C144.988 133.247 145.108 133.514 145.269 133.747C145.434 133.979 145.639 134.163 145.885 134.299C146.13 134.43 146.416 134.496 146.742 134.496C147.063 134.496 147.345 134.43 147.586 134.299C147.831 134.163 148.035 133.979 148.195 133.747C148.356 133.514 148.477 133.247 148.557 132.947C148.642 132.642 148.684 132.318 148.684 131.976V131.83C148.684 131.491 148.642 131.172 148.557 130.871C148.477 130.566 148.354 130.298 148.189 130.065C148.028 129.828 147.825 129.642 147.58 129.506C147.338 129.371 147.055 129.303 146.729 129.303C146.407 129.303 146.124 129.371 145.878 129.506C145.637 129.642 145.434 129.828 145.269 130.065C145.108 130.298 144.988 130.566 144.907 130.871C144.827 131.172 144.787 131.491 144.787 131.83ZM152.512 129.544V135.333H151.337V128.465H152.48L152.512 129.544ZM154.657 128.427L154.651 129.519C154.554 129.498 154.46 129.485 154.372 129.481C154.287 129.472 154.19 129.468 154.08 129.468C153.809 129.468 153.57 129.511 153.362 129.595C153.155 129.68 152.979 129.798 152.835 129.951C152.692 130.103 152.577 130.285 152.493 130.497C152.412 130.704 152.359 130.932 152.334 131.182L152.004 131.373C152.004 130.958 152.044 130.569 152.125 130.205C152.209 129.841 152.338 129.519 152.512 129.24C152.685 128.956 152.905 128.736 153.172 128.58C153.443 128.419 153.764 128.338 154.137 128.338C154.221 128.338 154.319 128.349 154.429 128.37C154.539 128.387 154.615 128.406 154.657 128.427ZM158.466 135.46C157.988 135.46 157.554 135.38 157.165 135.219C156.779 135.054 156.447 134.824 156.168 134.527C155.893 134.231 155.681 133.88 155.533 133.474C155.385 133.067 155.311 132.623 155.311 132.141V131.874C155.311 131.315 155.394 130.818 155.559 130.382C155.724 129.942 155.948 129.57 156.231 129.265C156.515 128.96 156.837 128.73 157.196 128.573C157.556 128.417 157.928 128.338 158.313 128.338C158.804 128.338 159.228 128.423 159.583 128.592C159.943 128.762 160.237 128.999 160.465 129.303C160.694 129.604 160.863 129.959 160.973 130.37C161.083 130.776 161.138 131.22 161.138 131.703V132.229H156.009V131.271H159.964V131.182C159.947 130.877 159.883 130.581 159.773 130.293C159.668 130.006 159.498 129.769 159.266 129.583C159.033 129.396 158.715 129.303 158.313 129.303C158.047 129.303 157.801 129.36 157.577 129.475C157.353 129.585 157.16 129.75 157 129.97C156.839 130.19 156.714 130.458 156.625 130.776C156.536 131.093 156.492 131.459 156.492 131.874V132.141C156.492 132.466 156.536 132.773 156.625 133.061C156.718 133.345 156.851 133.594 157.025 133.81C157.203 134.026 157.416 134.195 157.666 134.318C157.92 134.441 158.208 134.502 158.529 134.502C158.944 134.502 159.295 134.417 159.583 134.248C159.871 134.079 160.123 133.852 160.338 133.569L161.049 134.134C160.901 134.358 160.713 134.572 160.484 134.775C160.256 134.978 159.974 135.143 159.64 135.27C159.31 135.397 158.919 135.46 158.466 135.46Z",fill:"#0F172A"}),(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"clip0_76_1273"},(0,o.createElement)("rect",{width:"24",height:"24",fill:"white",transform:"translate(249 39)"})))),{__:i}=wp.i18n,s=window.JetFormOptionFieldData,{SelectControl:c}=wp.components,{jetEngineVersion:u}=window.JetFormEditorData,d=[{value:"manual_input",label:i("Manual Input","jet-form-builder")},{value:"posts",label:i("Posts","jet-form-builder")},{value:"terms",label:i("Terms","jet-form-builder")},{value:"meta_field",label:i("Meta Field","jet-form-builder")},{value:"generate",label:i("Generate Dynamically","jet-form-builder")}];""!==u&&d.push({value:"glossary",label:i("Glossary","jet-form-builder")});const m={terms:{label:i("Taxonomy"),attr:"field_options_tax",options:s.taxonomies_list},posts:{label:i("Post Type"),attr:"field_options_post_type",options:s.post_types_list}},{FieldWrapper:p}=JetFBComponents,{CheckboxControl:f,SelectControl:V,RadioControl:g}=wp.components;function b(e){const{editProps:{blockName:C,uniqKey:t},scriptData:l,attributes:r}=e,n=(e,C=1)=>(0,o.createElement)(f,{className:"jet-form-builder__field-wrap checkboxes-wrap",key:`check_place_holder_block_${e+C}`,label:e,onChange:()=>{}}),a=e=>((e,C,t="")=>void 0!==e&&void 0!==e[C]?e[C]:t)(e,"label"),i=(e="")=>C.includes("checkbox")?e?n(e):r.field_options.map(({label:e},C)=>n(e,C)):C.includes("select")?(({options:e,index:C})=>(0,o.createElement)(V,{key:`select_place_holder_block_${r.name+C}`,options:e,onChange:()=>{}}))(e?{attributes:r,options:[{label:e}]}:{attributes:r,options:r.field_options}):C.includes("radio")?(({options:e,label:C,index:t})=>(0,o.createElement)(g,{key:`radio_place_holder_block_${C+t}`,options:e,onChange:()=>{}}))(e?{attributes:r,options:[{label:e}]}:{attributes:r,options:r.field_options}):void 0;return(0,o.createElement)(p,{key:"jet-form-builder-field-wrapper",...e},(0,o.createElement)("div",{className:"jet-form-builder__fields-group jet-form-builder__field-preview"},("manual_input"!==r.field_options_from||!r.field_options.length)&&i((()=>{var e,C;const{field_options_from:t,field_options_post_type:n,field_options_tax:o,field_options_key:i,generator_function:s,generator_auto_update:c,generator_listen_field:u}=r,m=null!==(e=null!==(C=window.JetFormOptionFieldData)&&void 0!==C?C:l)&&void 0!==e?e:{};let p=[],f=[];switch(t){case"posts":var V;n&&f.push(a((null!==(V=m.post_types_list)&&void 0!==V?V:[]).find(e=>e.value===n)));break;case"terms":var g;o&&f.push(a((null!==(g=m.taxonomies_list)&&void 0!==g?g:[]).find(e=>e.value===o)));break;case"meta_field":i&&f.push(i);break;case"generate":var b;if(s&&f.push(a((null!==(b=m.generators_list)&&void 0!==b?b:[]).find(e=>e.value===s))),c&&u){const e=Array.isArray(u)?u:[u];e.length&&f.push(`↻ ${e.join(", ")}`)}}return p.push(a(d.find(e=>e.value===t))),f.length&&p.push(f.join(" - ")),p.join(" - ")})())||null,"manual_input"===r.field_options_from&&r.field_options.length&&i()||null))}const{__:_}=wp.i18n,{RepeaterHeadContext:h}=JetFBComponents,H=function({children:e}){return(0,o.createElement)(h.Provider,{value:{isSupported:()=>!0,render:({currentItem:e,index:C})=>(0,o.createElement)("span",{className:"repeater-item-title"},(({currentItem:e,index:C})=>{const t=[`#${C+1}`],l=[];return e.label&&l.push(`Label [${e.label}]`),e.value&&l.push(`Value [${e.value}]`),e.calculate&&l.push(`Calculate [${e.calculate}]`),t.push(l.join(" | ")),t.join(" ")})({currentItem:e,index:C}))}},e)};function y(e){var C=Object.create(null);return function(t){return void 0===C[t]&&(C[t]=e(t)),C[t]}}var M=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,v=y(function(e){return M.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),Z=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),C={},t=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,t]=e.split("_");C[t]=e}else t.push(e)})});const l=[];for(const e in C)Object.prototype.hasOwnProperty.call(C,e)&&l.push(C[e]);return l.push(...t),l.join(" ")},w=(e,C)=>{const t={};return Object.keys(e).filter((e=>C=>-1===e.indexOf(C))(C)).forEach(C=>{t[C]=e[C]}),t},L=(e,C)=>{},E=function(e){let C="";return t=>{const l=(l,r)=>{const{as:n=e,class:a=C}=l;var i;const s=function(e,C){const t=w(C,["as","class"]);if(!e){const e="function"==typeof v?{default:v}:v;Object.keys(t).forEach(C=>{e.default(C)||delete t[C]})}return t}(void 0===t.propsAsIs?!("string"==typeof n&&-1===n.indexOf("-")&&(i=n[0],i.toUpperCase()!==i)):t.propsAsIs,l);s.ref=r,s.className=t.atomic?Z(t.class,s.className||a):Z(s.className||a,t.class);const{vars:c}=t;if(c){const e={};for(const C in c){const r=c[C],n=r[0],o=r[1]||"",a="function"==typeof n?n(l):n;L(0,t.name),e[`--${C}`]=`${a}${o}`}const C=s.style||{},r=Object.keys(C);r.length>0&&r.forEach(t=>{e[t]=C[t]}),s.style=e}return e.__wyw_meta&&e!==n?(s.as=n,(0,o.createElement)(e,s)):(0,o.createElement)(n,s)},r=o.forwardRef?(0,o.forwardRef)(l):e=>{const C=w(e,["innerRef"]);return l(C,e.innerRef)};return r.displayName=t.name,r.__wyw_meta={className:t.class||C,extends:e},r}};const{useContext:k}=wp.element,{TextControl:j,ToggleControl:x}=wp.components,{__:F}=wp.i18n,{RepeaterItemContext:S}=JetFBComponents,B=E("div")({name:"NoBorderWrapper",class:"ngu5jkm",propsAsIs:!1}),A=function(){const{currentItem:e,changeCurrentItem:C}=k(S);return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(j,{label:F("Label","jet-form-builder"),value:e.label,onChange:e=>C({label:e})}),(0,o.createElement)(j,{label:F("Value","jet-form-builder"),value:e.value,onChange:t=>{!e.keep_commas||String(t).includes(",")?C({value:t}):C({value:t,keep_commas:!1})}}),e.value&&e.value.includes(",")&&(0,o.createElement)(B,null,(0,o.createElement)(x,{label:F("Save as single value (ignore commas)","jet-form-builder"),help:F("By default, values containing commas are split into multiple options. Enable this to save the value as a single string, including commas.","jet-form-builder"),checked:!!e.keep_commas,onChange:e=>C({keep_commas:e})})),(0,o.createElement)(j,{label:F("Calculate","jet-form-builder"),value:e.calculate,onChange:e=>C({calculate:e})}))};t(103);const{__:P}=wp.i18n,{Repeater:N,RepeaterAddNew:O}=JetFBComponents,{useScopedAttributesContext:T,useOnUpdateModal:I}=JetFBHooks,J=function(){var e;const{attributes:C,setAttributes:t,setRealAttributes:l}=T(),r=e=>{const l="function"==typeof e?e(C.field_options):e;t(e=>({...e,field_options:l}))};return I(()=>l(C)),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(H,null,(0,o.createElement)(N,{items:null!==(e=C.field_options)&&void 0!==e?e:[],onSetState:r},(0,o.createElement)(A,null))),(0,o.createElement)(O,{onSetState:r},P("Add new Option","jet-form-builder")))},{isEmpty:R}=JetFBActions,D=["label","value","calculate"];function q(e){const C=[];if(!Array.isArray(e))return $(e);for(const t of e)C.push($(t));return C.join("\n")}function $(e){if("object"!=typeof e)return["number","string"].includes(typeof e)?e:"";const C=[];for(const t of D)void 0!==e[t]&&(["number","string"].includes(typeof e[t])?C.push(e[t]):C.push(0));return C.join(" : ")}const U=function(e){if(R(e)||"string"===e&&!e.trim())return"";if("object"==typeof e)return q(e);if("string"!=typeof e)return"";if(!["[","{"].includes(e[0]))return e;let C;try{C=JSON.parse(e)}catch(C){return e}return q(C)};function G(e){if(!e.trim())return!1;const C=e.split(":");if(!C.length)return!1;let[t,l,r]=C;if(t=t.trim(),1===C.length)return{label:t,value:""};l="function"==typeof l?.trim&&l.trim(),r="function"==typeof r?.trim&&r.trim();const n={};return t&&(n.label=t),l&&(n.value=l),r&&(n.calculate=r),n}const W=window.jfb.components,z=window.wp.i18n,K=window.wp.element,X=window.wp.components,{useScopedAttributesContext:Y,useOnUpdateModal:Q}=JetFBHooks,ee=E(X.Flex)({name:"StyledFlex",class:"siqun4o",propsAsIs:!0}),Ce=function({setModalContent:e}){const{attributes:C,setAttributes:t,setRealAttributes:l}=Y(),[r,n]=(0,K.useState)("jfb_current_select"),[a,i]=(0,K.useState)([]),s=[{label:"Select...",value:"jfb_current_select"}].concat(window.JetFBBulkOptions.list)||[],c=window.JetFBBulkOptions.sources,[u,d]=(0,K.useState)(()=>U(C.field_options));(0,K.useEffect)(()=>{var e;C.field_options?.length&&(i((e=C.field_options,e?.length?e.map(e=>{const C=[];return C.push(e.label||""),C.push(e.value||""),e.calculate&&C.push(e.calculate),C.join(" : ")}).join("\n"):[])),d(U(C.field_options)))},[]);const m=(e=u)=>{var C;t({field_options:[...(C=e,"string"!=typeof C?[]:C.trim().split("\n").map(G).filter(Boolean))]})};return Q(()=>{l(C),e(!1)}),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(ee,null,(0,o.createElement)("label",null,(0,z.__)("Options preset:","jet-form-builder")),(0,o.createElement)(X.SelectControl,{value:r,onChange:e=>{if(n(e),"jfb_current_select"===e)d(a),m(a);else{const C=U(c[e]);d(C),m(C)}},options:s})),(0,o.createElement)(X.TextareaControl,{className:"jet-control-clear",value:u,onChange:e=>{d(U(e)),m(e)},rows:16}),(0,o.createElement)(W.Help,null,(0,z.__)("You can specify a different value and value \nfor the calculator field by separating them with a colon character","jet-form-builder"),(0,o.createElement)("br",null),(0,o.createElement)("br",null),"Book #1 : book_1 : 100"))};t(25);const{ActionModal:te,ScopedAttributesProvider:le}=JetFBComponents,{Button:re,Flex:ne}=wp.components,{__:oe}=wp.i18n,{useState:ae}=wp.element,ie=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M11 7H17V9H11V7ZM11 11H17V13H11V11ZM11 15H17V17H11V15ZM7 7H9V9H7V7ZM7 11H9V13H7V11ZM7 15H9V17H7V15ZM20.1 3H3.9C3.4 3 3 3.4 3 3.9V20.1C3 20.5 3.4 21 3.9 21H20.1C20.5 21 21 20.5 21 20.1V3.9C21 3.4 20.5 3 20.1 3ZM19 19H5V5H19V19Z",fill:"currentColor"})),se=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3 17.25V21H6.75L17.81 9.94L14.06 6.19L3 17.25ZM20.71 7.04C21.1 6.65 21.1 6.02 20.71 5.63L18.37 3.29C17.98 2.9 17.35 2.9 16.96 3.29L15.13 5.12L18.88 8.87L20.71 7.04Z",fill:"currentColor"})),ce=function(){const[e,C]=ae(!1),[t,l]=ae(""),r=()=>{C(e=>!e)};return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(re,{isSecondary:!0,onClick:r,icon:"admin-tools"},oe("Manage items","jet-form-builder")),e&&(0,o.createElement)(te,{title:(0,o.createElement)(ne,{align:"center"},oe("Edit Options","jet-form-builder"),(0,o.createElement)(re,{onClick:()=>l(e=>e?"":"bulk"),icon:t?se:ie,variant:"tertiary"},oe(t?"Switch to manual editor":"Switch to bulk editor","jet-form-builder"))),onRequestClose:r,classNames:["width-60"]},(0,o.createElement)(le,null,"bulk"===t?(0,o.createElement)(Ce,{setModalContent:l}):(0,o.createElement)(J,null))))},{TextControl:ue}=wp.components,{__:de}=wp.i18n,me=function(e){const{attributes:C,setAttributes:t,editProps:{attrHelp:l}}=e;return(0,o.createElement)(o.Fragment,null,(e=>{const{attributes:C,setAttributes:t}=e,{field_options_from:l}=C;if(!m[l]&&!m[l])return null;const r=m[l];return(0,o.createElement)(c,{label:r.label,labelPosition:"top",value:C[r.attr],onChange:e=>{t({[r.attr]:e})},options:r.options})})(e),(0,o.createElement)(ue,{key:"value_from_key",label:de("Value from meta field"),value:C.value_from_key,help:l("value_from_meta"),onChange:e=>{t({value_from_key:e})}}),(0,o.createElement)(ue,{key:"calculated_value_from_key",label:de("Calculated value from meta field"),value:C.calculated_value_from_key,help:l("calculated_value_from_key"),onChange:e=>{t({calculated_value_from_key:e})}}))},{createSlotFill:pe}=wp.components,{Fill:fe,Slot:Ve}=pe("JFBGeneratorControls"),{Fill:ge,Slot:be}=pe("JFBGeneratorAdditional"),{Fill:_e,Slot:he}=pe("JFBAutoUpdateControls"),{Fill:He,Slot:ye}=pe("JFBBeforeGeneratorSelector"),{Fill:Me,Slot:ve}=pe("JFBAfterGeneratorControls"),Ze={},we={},Le={};function Ee(e){return Ze[e]||null}function ke(e){return we[e]||null}function je(e,C){return`gen_${e}_${C}`}"undefined"!=typeof window&&(window.JetFBGenerators=window.JetFBGenerators||{},Object.assign(window.JetFBGenerators,{registerControls:function(e,C){"function"==typeof C?Ze[e]=C:console.error(`JetFormBuilder: Generator controls for "${e}" must be a function/component.`)},unregisterControls:function(e){return e in Ze&&(delete Ze[e],!0)},getControls:Ee,hasCustomControls:function(e){return e in Ze},getRegisteredIds:function(){return Object.keys(Ze)},registerValidator:function(e,C){"function"==typeof C?we[e]=C:console.error(`JetFormBuilder: Generator validator for "${e}" must be a function.`)},getValidator:ke,validate:function(e,C){const t=ke(e);return t?t(C):{valid:!0,errors:{}}},registerMeta:function(e,C){Le[e]={...Le[e]||{},...C}},getMeta:function(e){return Le[e]||{}},getAttributeName:je,parseSettings:function(e,C,t){const l={},r=`gen_${e}_`;return Object.keys(t).forEach(e=>{const n=r+e,o=t[e];var a;l[e]=n in C?C[n]:null!==(a=o.default)&&void 0!==a?a:""}),l},createSetAttributes:function(e,C){return t=>{const l={};Object.entries(t).forEach(([C,t])=>{C.startsWith("gen_")?l[C]=t:l[je(e,C)]=t}),C(l)}}}));const{TextControl:xe,TextareaControl:Fe,SelectControl:Se,ToggleControl:Be,BaseControl:Ae,__experimentalNumberControl:Pe}=wp.components,{__:Ne}=wp.i18n,{Fragment:Oe}=wp.element;let Te=wp.components.NumberControl;function Ie({fieldKey:e,fieldDef:C,value:t,onChange:l,generatorId:r}){const{type:n="string",label:a=e,help:i,placeholder:s,control:c="text",options:u=[],min:d,max:m,step:p=1,rows:f=3,disabled:V=!1,multiple:g=!1}=C,b=`${r}-${e}`;switch(c){case"number":return(0,o.createElement)(Ae,{key:b,label:a,help:i,className:"jfb-generator-control jfb-generator-control--number"},(0,o.createElement)(Te,{value:null!=t?t:"",onChange:e=>{const C=""===e?"":Number(e);l(C)},step:p,min:d,max:m,disabled:V}));case"select":const e=u.map(e=>"string"==typeof e?{value:e,label:e}:e);return(0,o.createElement)(Se,{key:b,label:a,help:i,value:g?null!=t?t:[]:null!=t?t:"",onChange:l,options:e,multiple:g,disabled:V,className:"jfb-generator-control jfb-generator-control--select"});case"toggle":return(0,o.createElement)(Be,{key:b,label:a,help:i,checked:!!t,onChange:l,disabled:V,className:"jfb-generator-control jfb-generator-control--toggle"});case"textarea":return(0,o.createElement)(Fe,{key:b,label:a,help:i,value:null!=t?t:"",onChange:l,placeholder:s,rows:f,disabled:V,className:"jfb-generator-control jfb-generator-control--textarea"});default:return(0,o.createElement)(xe,{key:b,label:a,help:i,value:null!=t?t:"",onChange:l,placeholder:s,type:"number"===n?"number":"text",disabled:V,className:"jfb-generator-control jfb-generator-control--text"})}}function Je({generatorId:e,schema:C,attributes:t,setAttributes:l}){if(!C||0===Object.keys(C).length)return null;const r=C=>C.startsWith("generator_")?C:`gen_${e}_${C}`,n=(e,C)=>{var l;const n=r(e);return n in t?t[n]:null!==(l=C.default)&&void 0!==l?l:""},a=e=>C=>{const t=r(e);l({[t]:C})};return(0,o.createElement)(Oe,null,Object.entries(C).map(([t,l])=>{return l.condition&&(r=l.condition)&&"object"==typeof r&&!Object.entries(r).every(([e,t])=>{const l=e.endsWith("!"),r=l?e.slice(0,-1):e,o=C[r],a=o?n(r,o):"",i=Array.isArray(t)?t.includes(a):String(a)===String(t);return l?!i:i})?null:(0,o.createElement)(Ie,{key:t,fieldKey:t,fieldDef:l,value:n(t,l),onChange:a(t),generatorId:e});var r}))}function Re({generatorId:e,generatorName:C}){return(0,o.createElement)(Ae,{className:"jfb-generator-no-schema-notice"},(0,o.createElement)("p",null,Ne("This generator does not have a configuration schema.","jet-form-builder")),(0,o.createElement)("p",null,(0,o.createElement)("small",null,Ne("Generator ID:","jet-form-builder")," ",e)))}void 0===Te&&(Te=Pe);const{TextControl:De,BaseControl:qe,__experimentalNumberControl:$e}=wp.components,{__:Ue}=wp.i18n,{applyFilters:Ge}=wp.hooks,{Fragment:We}=wp.element;let ze=wp.components.NumberControl;function Ke({attributes:e,setAttributes:C}){return(0,o.createElement)(We,null,(0,o.createElement)(qe,{label:Ue("Start of range","jet-form-builder")},(0,o.createElement)(ze,{labelPosition:"top",step:.01,value:e.generator_numbers_min,onChange:e=>{C({generator_numbers_min:Number(e)})}})),(0,o.createElement)(qe,{label:Ue("End of range","jet-form-builder")},(0,o.createElement)(ze,{labelPosition:"top",step:.01,value:e.generator_numbers_max,onChange:e=>{C({generator_numbers_max:Number(e)})}})),(0,o.createElement)(qe,{label:Ue("Step","jet-form-builder")},(0,o.createElement)(ze,{labelPosition:"top",step:.01,value:e.generator_numbers_step,onChange:e=>{C({generator_numbers_step:Number(e)})}})))}function Xe({attributes:e,setAttributes:C,editProps:t,generatorId:l}){var r;const n=null!==(r=t?.attrHelp)&&void 0!==r?r:()=>"",a=Ge("jet.fb.select.radio.check.generator.controls",(0,o.createElement)(De,{key:"generator_field",label:Ue("Field Name","jet-form-builder"),value:e.generator_field||"",help:n("generator_field",e),onChange:e=>{C({generator_field:e})}}),l,{attributes:e,setAttributes:C,editProps:t}),i=Ge("jet.fb.select.radio.check.generator.additionalControls",(0,o.createElement)(We,null,(0,o.createElement)(De,{key:"value_from_key",label:Ue("Value from meta field","jet-form-builder"),help:n("value_from_meta"),value:e.value_from_key||"",onChange:e=>{C({value_from_key:e})}}),(0,o.createElement)(De,{key:"calculated_value_from_key",label:Ue("Calculated value from meta field","jet-form-builder"),help:n("calculated_value_from_key"),value:e.calculated_value_from_key||"",onChange:e=>{C({calculated_value_from_key:e})}})),l,{attributes:e,setAttributes:C,editProps:t});return(0,o.createElement)(We,null,a,i)}void 0===ze&&(ze=$e);const Ye=function(e){const{generatorId:C}=e;return"num_range_manual"===C?(0,o.createElement)(Ke,{...e}):(0,o.createElement)(Xe,{...e})},{ToggleControl:Qe,SelectControl:eC,TextControl:CC,Notice:tC}=wp.components,{__:lC}=wp.i18n,{Fragment:rC,useEffect:nC,useMemo:oC}=wp.element,{useSelect:aC}=wp.data,iC=function({attributes:e,setAttributes:C,supportsUpdate:t,contextFields:l=[],updateValueType:r="scalar"}){var n;if(!t)return null;const{generator_auto_update:a=!1,generator_listen_field:i="",generator_require_all_filled:s=!1,generator_update_on_button:c="",generator_update_on_button_class:u="",generator_cache_timeout:d=60}=e,m=Array.isArray(i)?i:i?[i]:[],p=l.some(e=>e.single),f=aC(e=>{var C;return null!==(C=e("core/block-editor")?.getBlocks())&&void 0!==C?C:[]},[]),V=oC(()=>function(e=[]){const C=[],t=["jet-forms/conditional-block","jet-forms/submit-field","jet-forms/form-break-field","jet-forms/form-break-start","jet-forms/group-break-field","jet-forms/heading-field","jet-forms/progress-bar","jet-forms/captcha-container","jet-forms/form-block"],l=e=>{e.forEach(e=>{e.attributes?.name&&!t.includes(e.name)&&C.push({name:e.attributes.name,label:e.attributes.label||e.attributes.name,type:e.name,multiple:Boolean(e.attributes?.multiple),allowMultiple:Boolean(e.attributes?.allow_multiple)}),e.innerBlocks?.length&&l(e.innerBlocks)})};return l(e),C}(f),[f]),g=oC(()=>function(e=[]){const C=[],t=e=>{e.forEach(e=>{if("jet-forms/submit-field"===e.name){var l;const t=null!==(l=e.attributes?.action_type)&&void 0!==l?l:"submit",r=(e.attributes?.class_name||e.attributes?.className||"").trim();"submit"!==t&&C.push({id:e.clientId,actionType:t,label:e.attributes?.label||t,buttonClass:r})}e.innerBlocks?.length&&t(e.innerBlocks)})};return t(e),C}(f),[f]),b=e?.name||"",_=oC(()=>V.filter(e=>e.name!==b&&function(e,C="scalar"){return!(function(e){return!e||["jet-forms/repeater-field","jet-forms/media-field","jet-forms/signature-field","jet-forms/drag-and-drop-file-upload","jet-forms/check-in-out"].includes(e.type)}(e)||"scalar_or_array"!==C&&function(e){return!!e&&(["jet-forms/checkbox-field"].includes(e.type)||e.multiple||e.allowMultiple)}(e))}(e,r)),[b,V,r]),h=oC(()=>{const e=_.map(e=>({value:e.name,label:`${e.label} (${e.name})`}));return p?[{value:"",label:lC("— Select field —","jet-form-builder")},...e]:e},[_,p]),H=oC(()=>{if(!c)return"";const e=g.find(e=>e.actionType===c&&(e.buttonClass||"")===(u||""));return e?e.id:g.find(e=>e.actionType===c)?.id||""},[g,c,u]),y=oC(()=>[{value:"",label:lC("— Select button —","jet-form-builder")},...g.map(e=>({value:e.id,label:e.buttonClass?`${e.label} (${e.actionType}, ${e.buttonClass})`:`${e.label} (${e.actionType})`}))],[g]);return nC(()=>{c&&(g.some(e=>e.actionType===c&&(!u||e.buttonClass===u))||C({generator_update_on_button:"",generator_update_on_button_class:""}))},[g,C,c,u]),nC(()=>{var e,t;if(!a||!m.length)return;const l=new Set(_.map(e=>e.name)),r=m.filter(e=>l.has(e));r.length!==m.length&&C({generator_listen_field:p?null!==(e=r[0])&&void 0!==e?e:"":r.length<=1?null!==(t=r[0])&&void 0!==t?t:"":r})},[a,_,m,C,p]),(0,o.createElement)(rC,null,(0,o.createElement)(Qe,{label:lC("Enable Auto-Update","jet-form-builder"),help:lC("When enabled, the list of options will automatically refresh whenever a selected field changes its value.","jet-form-builder"),checked:a,onChange:e=>{C({generator_auto_update:e,...!e&&{generator_listen_field:"",generator_require_all_filled:!1,generator_update_on_button:"",generator_update_on_button_class:""}})},className:"jfb-auto-update-toggle"}),a&&l.length>0&&(0,o.createElement)(tC,{status:"info",isDismissible:!1,className:"jfb-auto-update-context-hints"},l.map((e,C)=>(0,o.createElement)("div",{key:C,className:"components-base-control__help"},(0,o.createElement)("p",null,e.description),e.example&&(0,o.createElement)("p",null,e.example)))),a&&(0,o.createElement)(eC,{label:lC(p?"Trigger Field":"Trigger Fields","jet-form-builder"),help:lC(p?"Select the field that controls this generator.":"Select the fields that control this generator. Hold Ctrl (Windows) or Cmd (Mac) to select multiple.","jet-form-builder"),...!p&&{multiple:!0},value:p?null!==(n=m[0])&&void 0!==n?n:"":m,onChange:e=>{p?C({generator_listen_field:e||""}):e&&0!==e.length?C({generator_listen_field:1===e.length?e[0]:e}):C({generator_listen_field:""})},options:h,className:p?"":"jfb-auto-update-field-selector"}),a&&m.length>0&&!c&&(0,o.createElement)(Qe,{label:m.length>1?lC("Wait for All Fields","jet-form-builder"):lC("Skip if Field is Empty","jet-form-builder"),help:m.length>1?lC("When enabled, the options refresh only after every watched field has a value. Useful when multiple fields are needed together to filter results.","jet-form-builder"):lC("When enabled, empty Trigger Field values use the generator-specific empty-state behavior. Generators with static fallback keep using their static settings; generators without fallback keep the list empty.","jet-form-builder"),checked:s,onChange:e=>C({generator_require_all_filled:e,...e&&{generator_update_on_button:"",generator_update_on_button_class:""}})}),a&&!s&&(0,o.createElement)(eC,{label:lC("Refresh on Button Click","jet-form-builder"),help:lC('Instead of refreshing automatically, options update only when a selected JetFormBuilder action button is clicked. Supported action types: Update Field, Next Page, Prev Page, Change Render State (submit is not supported). If the selected button has a CSS Class Name, auto-update first tries to match that exact button and falls back to the button type if no exact class match is found. If no CSS Class Name is set, the first matching button of the selected action type is used. In multi-step forms, "Next Page" is matched on the previous step and "Prev Page" is matched on the next step. Regular HTML buttons are not supported here. Leave empty to refresh instantly on watched field change.',"jet-form-builder"),value:H,onChange:e=>{const t=g.find(C=>C.id===e);C({generator_update_on_button:t?.actionType||"",generator_update_on_button_class:t?.buttonClass||"",...t&&{generator_require_all_filled:!1}})},options:y}),a&&(0,o.createElement)(CC,{label:lC("Cache Duration (seconds)","jet-form-builder"),help:lC("Repeat requests with the same values will reuse the cached result for this many seconds. Set to 0 to always fetch fresh data.","jet-form-builder"),type:"number",min:0,value:d,onChange:e=>{C({generator_cache_timeout:parseInt(e)||0})}}))},{SelectControl:sC,PanelBody:cC,Notice:uC}=wp.components,{__:dC}=wp.i18n,{Fragment:mC,useEffect:pC,useState:fC,useCallback:VC,useMemo:gC}=wp.element,bC={get_from_query:["query_id","value_field","label_field","calc_field"],get_from_field:["field_name","sub_field"],get_from_db:["meta_key"],num_range:["meta_key"],get_from_booking_statuses:["status_group[]"]};function _C({generatorId:e,schema:C,attributes:t,setAttributes:l}){const r=t.generator_args||{};pC(()=>{if(0===Object.keys(r).length&&t.generator_field&&bC[e]){const C=function(e,C){const t=bC[e];if(!t||!C)return{};const l=C.split("|"),r={};return t.forEach((e,C)=>{if(e.endsWith("[]")){const t=e.slice(0,-2),n=l.slice(C).filter(e=>""!==e);return void(n.length>0&&(r[t]=n))}void 0!==l[C]&&""!==l[C]&&(r[e]=l[C])}),r}(e,t.generator_field);!C.calc_field&&t.calculated_value_from_key&&(C.calc_field=t.calculated_value_from_key),Object.keys(C).length>0&&l({generator_args:C})}},[e]);const n=VC(C=>{const t={},n={...r};let o=!1;const a=`gen_${e}_`;Object.keys(C).forEach(e=>{if(e.startsWith(a)){const t=e.replace(a,"");n[t]=C[e],o=!0}else t[e]=C[e]}),o&&(t.generator_args=n),l(t)},[l,r,e]),a=gC(()=>{const C={...t},l=`gen_${e}_`;return Object.keys(r).forEach(e=>{C[l+e]=r[e]}),C},[t,r,e]);return(0,o.createElement)(Je,{generatorId:e,schema:C,attributes:a,setAttributes:n})}function hC(e){var C,t,l,r,n;const{attributes:a,setAttributes:i,editProps:s={}}=e,c=a.generator_function||"",u="0"===String(c)?"":c,[d,m]=fC({}),p=null!==(f=window.JetFormOptionFieldData?.generator_schemas)&&void 0!==f?f:{};var f;const V=null!==(g=window.JetFormOptionFieldData?.generators_list)&&void 0!==g?g:[];var g;const b=null!==(C=p[u])&&void 0!==C?C:{},_=null!==(t=b.schema)&&void 0!==t?t:{},h=null!==(l=b.supports_update)&&void 0!==l&&l,H=null!==(r=b.update_context)&&void 0!==r?r:[],y=null!==(n=b.update_value_type)&&void 0!==n?n:"scalar",M=!0===b.legacy,v=Ee(u);pC(()=>{m({})},[u]);const Z={...e,generatorId:u,schema:_,errors:d,setErrors:m};return(0,o.createElement)(mC,null,(0,o.createElement)(ye,{fillProps:Z}),(0,o.createElement)(sC,{label:dC("Generator Function","jet-form-builder"),value:u||"",onChange:e=>{i({generator_function:"0"===String(e)?"":e,generator_args:{},generator_field:""}),m({})},options:V,className:"jfb-generator-selector"}),u&&(0,o.createElement)(mC,null,v&&(0,o.createElement)(v,{attributes:a,setAttributes:i,schema:_,generatorId:u,editProps:s}),!v&&!M&&Object.keys(_).length>0&&(0,o.createElement)(_C,{generatorId:u,schema:_,attributes:a,setAttributes:i}),!v&&M&&(0,o.createElement)(Ye,{attributes:a,setAttributes:i,editProps:s,generatorId:u}),!v&&!M&&0===Object.keys(_).length&&(0,o.createElement)(Re,{generatorId:u,generatorName:b.name}),(0,o.createElement)(Ve,{fillProps:Z}),(0,o.createElement)(be,{fillProps:Z}),(0,o.createElement)(iC,{attributes:a,setAttributes:i,supportsUpdate:h,contextFields:H,updateValueType:y})),(0,o.createElement)(ve,{fillProps:Z}),Object.keys(d).length>0&&(0,o.createElement)(uC,{status:"error",isDismissible:!1,className:"jfb-generator-errors"},(0,o.createElement)("ul",null,Object.entries(d).map(([e,C])=>(0,o.createElement)("li",{key:e},(0,o.createElement)("strong",null,e,":")," ",C)))))}const{TextControl:HC,SelectControl:yC,Notice:MC}=wp.components,{__:vC}=wp.i18n,{jetEngineVersion:ZC}=window.JetFormEditorData,{applyFilters:wC}=wp.hooks,LC=""!==ZC,EC=function(e){const{attributes:C,setAttributes:t,isSelected:l,children:r=[]}=e,{field_options_from:n}=C;return l&&(0,o.createElement)("div",{className:"inside-block-options"},(0,o.createElement)(yC,{key:"field_options_from",label:"Fill Options From",labelPosition:"top",value:n,onChange:e=>{t({field_options_from:e})},options:d}),"generate"===n&&(0,o.createElement)(MC,{status:"info",isDismissible:!1},vC("Need a custom generator? Create one with this ","jet-form-builder"),(0,o.createElement)("a",{href:"https://chatgpt.com/g/g-69ae892a8fe88191aeae6578c07d6211-jetformbuilder-create-custom-options-generators",target:"_blank",rel:"noopener noreferrer"},vC("assistant","jet-form-builder")),"."),function(e,C){const{attributes:t,setAttributes:l}=C;switch(e){case"manual_input":return(0,o.createElement)(ce,{key:"from_manual"});case"posts":case"terms":return(0,o.createElement)(me,{key:"form_posts_terms",...C});case"meta_field":return(0,o.createElement)(HC,{key:"field_options_key",label:"Meta field to get value from",value:t.field_options_key,onChange:e=>{l({field_options_key:e})}});case"generate":return(0,o.createElement)(hC,{key:"form_generators",...C});case"glossary":return LC&&(0,o.createElement)(yC,{key:"select_glossary",label:"Select Glossary",labelPosition:"top",value:t.glossary_id,onChange:e=>l({glossary_id:e}),options:[{value:"",label:"--"},...window.JetFormOptionFieldData.glossaries_list]});default:return wC("jet.fb.select.radio.check.controls",null,e,C)}}(n,e),r)},{__:kC}=wp.i18n,{ToolBarFields:jC,BlockLabel:xC,BlockDescription:FC,BlockAdvancedValue:SC,BlockName:BC,BlockPlaceholder:AC,BlockAddPrevButton:PC,BlockPrevButtonLabel:NC,BlockVisibility:OC,BlockClassName:TC,FieldControl:IC,SwitchPageOnChangeControls:JC}=JetFBComponents,{useUniqueNameOnDuplicate:RC}=JetFBHooks,{InspectorControls:DC,useBlockProps:qC}=wp.blockEditor,{ToggleControl:$C,PanelBody:UC,RangeControl:GC}=wp.components,WC=JSON.parse('{"apiVersion":3,"name":"jet-forms/select-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","select"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSwitchPageOnChange":true,"jetFBSanitizeValue":true},"title":"Select Field","icon":"\\n\\n\\n\\n\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"multiple":{"type":"boolean","default":false},"multiple_size":{"type":"number","default":4},"generator_numbers_min":{"type":"number","default":""},"generator_numbers_max":{"type":"number","default":""},"generator_numbers_step":{"type":"number","default":""},"glossary_id":{"type":"string","default":""},"is_disabled_placeholder":{"type":"boolean","default":false},"field_options_from":{"type":"string","default":"manual_input"},"field_options":{"type":"array","default":[]},"field_options_post_type":{"type":"string","default":"post"},"field_options_tax":{"type":"string","default":"category"},"field_options_key":{"type":"string","default":""},"generator_function":{"type":"string","default":""},"generator_field":{"type":"string","default":""},"generator_args":{"type":"object","default":{}},"generator_auto_update":{"type":"boolean","default":false},"generator_listen_field":{"type":["string","array"],"default":""},"generator_require_all_filled":{"type":"boolean","default":false},"generator_update_on_button":{"type":"string","default":""},"generator_update_on_button_class":{"type":"string","default":""},"generator_cache_timeout":{"type":"number","default":60},"calculated_value_from_key":{"type":"string","default":""},"value_from_key":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-option-field-select","style":"jet-fb-option-field-select"}'),{__:zC}=wp.i18n,{createBlock:KC}=wp.blocks,{name:XC,icon:YC=""}=WC,QC={icon:(0,o.createElement)("span",{dangerouslySetInnerHTML:{__html:YC}}),description:zC("Creates a drop-down list, where the user can choose one option. \nAdd as many options in the list as needed as the number of them is not limited.","jet-form-builder"),edit:function(e){var C;const{attributes:t,setAttributes:l,isSelected:r,editProps:{uniqKey:n,attrHelp:i}}=e,s=qC();return RC(),t.isPreview?(0,o.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},a):(0,o.createElement)(o.Fragment,null,(0,o.createElement)(jC,{key:n("ToolBarFields"),...e}),!t.multiple&&(0,o.createElement)(JC,null),r&&(0,o.createElement)(DC,{key:n("InspectorControls")},(0,o.createElement)(UC,{title:kC("General","jet-form-builder")},(0,o.createElement)(xC,null),(0,o.createElement)(BC,null),(0,o.createElement)(FC,null)),(0,o.createElement)(UC,{title:kC("Value","jet-form-builder")},(0,o.createElement)(SC,null)),(0,o.createElement)(UC,{title:kC("Advanced","jet-form-builder")},(0,o.createElement)(AC,null),!!t.placeholder.length&&(0,o.createElement)($C,{key:n("is_disabled_placeholder"),label:kC("Disable placeholder","jet-form-builder"),checked:t.is_disabled_placeholder,onChange:e=>l({is_disabled_placeholder:e})}),(0,o.createElement)(PC,null),(0,o.createElement)(NC,null),(0,o.createElement)(OC,null),(0,o.createElement)(TC,null))),(0,o.createElement)("div",{key:n("viewBlock"),...s},(0,o.createElement)(b,{scriptData:window.JetFormOptionFieldData,...e}),(0,o.createElement)(EC,{...e},(0,o.createElement)($C,{key:"multiple",label:kC("Is multiple","jet-form-builder"),checked:t.multiple,help:i("multiple"),onChange:e=>l({multiple:e})}),t.multiple&&(0,o.createElement)(GC,{label:kC("Rows count","jet-form-builder"),value:null!==(C=t.multiple_size)&&void 0!==C?C:4,onChange:e=>l({multiple_size:e}),allowReset:!0,resetFallbackValue:4,min:1,max:25}),(0,o.createElement)(IC,{type:"custom_settings",key:n("customSettingsFields"),...e}))))},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>KC("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/checkbox-field","jet-forms/radio-field","jet-forms/text-field"],transform:e=>KC(XC,{...e}),priority:0}]}},et=(0,o.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M22.1641 50.835H23.4766C23.4082 51.4639 23.2282 52.0267 22.9365 52.5234C22.6449 53.0202 22.2324 53.4144 21.6992 53.7061C21.166 53.9932 20.5007 54.1367 19.7031 54.1367C19.1198 54.1367 18.5889 54.0273 18.1104 53.8086C17.6364 53.5898 17.2285 53.2799 16.8867 52.8789C16.5449 52.4733 16.2806 51.988 16.0938 51.4229C15.9115 50.8532 15.8203 50.2197 15.8203 49.5225V48.5312C15.8203 47.834 15.9115 47.2028 16.0938 46.6377C16.2806 46.068 16.5472 45.5804 16.8936 45.1748C17.2445 44.7692 17.666 44.457 18.1582 44.2383C18.6504 44.0195 19.2041 43.9102 19.8193 43.9102C20.5713 43.9102 21.207 44.0514 21.7266 44.334C22.2461 44.6165 22.6494 45.0085 22.9365 45.5098C23.2282 46.0065 23.4082 46.583 23.4766 47.2393H22.1641C22.1003 46.7744 21.9818 46.3757 21.8086 46.043C21.6354 45.7057 21.3893 45.446 21.0703 45.2637C20.7513 45.0814 20.3343 44.9902 19.8193 44.9902C19.3773 44.9902 18.9876 45.0745 18.6504 45.2432C18.3177 45.4118 18.0374 45.651 17.8096 45.9609C17.5863 46.2708 17.4176 46.6423 17.3037 47.0752C17.1898 47.5081 17.1328 47.9889 17.1328 48.5176V49.5225C17.1328 50.0101 17.1829 50.4681 17.2832 50.8965C17.388 51.3249 17.5452 51.7008 17.7549 52.0244C17.9645 52.348 18.2311 52.6032 18.5547 52.79C18.8783 52.9723 19.2611 53.0635 19.7031 53.0635C20.2637 53.0635 20.7103 52.9746 21.043 52.7969C21.3757 52.6191 21.6263 52.3639 21.7949 52.0312C21.9681 51.6986 22.0911 51.2998 22.1641 50.835ZM26.3477 43.5V54H25.083V43.5H26.3477ZM26.0469 50.0215L25.5205 50.001C25.5251 49.4951 25.6003 49.028 25.7461 48.5996C25.8919 48.1667 26.097 47.7907 26.3613 47.4717C26.6257 47.1527 26.9401 46.9066 27.3047 46.7334C27.6738 46.5557 28.0817 46.4668 28.5283 46.4668C28.8929 46.4668 29.221 46.5169 29.5127 46.6172C29.8044 46.7129 30.0527 46.8678 30.2578 47.082C30.4674 47.2962 30.627 47.5742 30.7363 47.916C30.8457 48.2533 30.9004 48.6657 30.9004 49.1533V54H29.6289V49.1396C29.6289 48.7523 29.5719 48.4424 29.458 48.21C29.3441 47.973 29.1777 47.8021 28.959 47.6973C28.7402 47.5879 28.4714 47.5332 28.1523 47.5332C27.8379 47.5332 27.5508 47.5993 27.291 47.7314C27.0358 47.8636 26.8148 48.0459 26.6279 48.2783C26.4456 48.5107 26.3021 48.7773 26.1973 49.0781C26.097 49.3743 26.0469 49.6888 26.0469 50.0215ZM32.459 50.3838V50.2266C32.459 49.6934 32.5365 49.1989 32.6914 48.7432C32.8464 48.2829 33.0697 47.8841 33.3613 47.5469C33.653 47.2051 34.0062 46.9408 34.4209 46.7539C34.8356 46.5625 35.3005 46.4668 35.8154 46.4668C36.335 46.4668 36.8021 46.5625 37.2168 46.7539C37.6361 46.9408 37.9915 47.2051 38.2832 47.5469C38.5794 47.8841 38.805 48.2829 38.96 48.7432C39.1149 49.1989 39.1924 49.6934 39.1924 50.2266V50.3838C39.1924 50.917 39.1149 51.4115 38.96 51.8672C38.805 52.3229 38.5794 52.7217 38.2832 53.0635C37.9915 53.4007 37.6383 53.665 37.2236 53.8564C36.8135 54.0433 36.3486 54.1367 35.8291 54.1367C35.3096 54.1367 34.8424 54.0433 34.4277 53.8564C34.013 53.665 33.6576 53.4007 33.3613 53.0635C33.0697 52.7217 32.8464 52.3229 32.6914 51.8672C32.5365 51.4115 32.459 50.917 32.459 50.3838ZM33.7236 50.2266V50.3838C33.7236 50.7529 33.7669 51.1016 33.8535 51.4297C33.9401 51.7533 34.07 52.0404 34.2432 52.291C34.4209 52.5417 34.6419 52.7399 34.9062 52.8857C35.1706 53.027 35.4782 53.0977 35.8291 53.0977C36.1755 53.0977 36.4785 53.027 36.7383 52.8857C37.0026 52.7399 37.2214 52.5417 37.3945 52.291C37.5677 52.0404 37.6976 51.7533 37.7842 51.4297C37.8753 51.1016 37.9209 50.7529 37.9209 50.3838V50.2266C37.9209 49.862 37.8753 49.5179 37.7842 49.1943C37.6976 48.8662 37.5654 48.5768 37.3877 48.3262C37.2145 48.071 36.9958 47.8704 36.7314 47.7246C36.4717 47.5788 36.1663 47.5059 35.8154 47.5059C35.4691 47.5059 35.1637 47.5788 34.8994 47.7246C34.6396 47.8704 34.4209 48.071 34.2432 48.3262C34.07 48.5768 33.9401 48.8662 33.8535 49.1943C33.7669 49.5179 33.7236 49.862 33.7236 50.2266ZM40.4434 50.3838V50.2266C40.4434 49.6934 40.5208 49.1989 40.6758 48.7432C40.8307 48.2829 41.054 47.8841 41.3457 47.5469C41.6374 47.2051 41.9906 46.9408 42.4053 46.7539C42.82 46.5625 43.2848 46.4668 43.7998 46.4668C44.3193 46.4668 44.7865 46.5625 45.2012 46.7539C45.6204 46.9408 45.9759 47.2051 46.2676 47.5469C46.5638 47.8841 46.7894 48.2829 46.9443 48.7432C47.0993 49.1989 47.1768 49.6934 47.1768 50.2266V50.3838C47.1768 50.917 47.0993 51.4115 46.9443 51.8672C46.7894 52.3229 46.5638 52.7217 46.2676 53.0635C45.9759 53.4007 45.6227 53.665 45.208 53.8564C44.7979 54.0433 44.333 54.1367 43.8135 54.1367C43.2939 54.1367 42.8268 54.0433 42.4121 53.8564C41.9974 53.665 41.6419 53.4007 41.3457 53.0635C41.054 52.7217 40.8307 52.3229 40.6758 51.8672C40.5208 51.4115 40.4434 50.917 40.4434 50.3838ZM41.708 50.2266V50.3838C41.708 50.7529 41.7513 51.1016 41.8379 51.4297C41.9245 51.7533 42.0544 52.0404 42.2275 52.291C42.4053 52.5417 42.6263 52.7399 42.8906 52.8857C43.1549 53.027 43.4626 53.0977 43.8135 53.0977C44.1598 53.0977 44.4629 53.027 44.7227 52.8857C44.987 52.7399 45.2057 52.5417 45.3789 52.291C45.5521 52.0404 45.682 51.7533 45.7686 51.4297C45.8597 51.1016 45.9053 50.7529 45.9053 50.3838V50.2266C45.9053 49.862 45.8597 49.5179 45.7686 49.1943C45.682 48.8662 45.5498 48.5768 45.3721 48.3262C45.1989 48.071 44.9801 47.8704 44.7158 47.7246C44.4561 47.5788 44.1507 47.5059 43.7998 47.5059C43.4535 47.5059 43.1481 47.5788 42.8838 47.7246C42.624 47.8704 42.4053 48.071 42.2275 48.3262C42.0544 48.5768 41.9245 48.8662 41.8379 49.1943C41.7513 49.5179 41.708 49.862 41.708 50.2266ZM53.0693 52.0381C53.0693 51.8558 53.0283 51.6872 52.9463 51.5322C52.8688 51.3727 52.707 51.2292 52.4609 51.1016C52.2194 50.9694 51.8548 50.8555 51.3672 50.7598C50.957 50.6732 50.5856 50.5706 50.2529 50.4521C49.9248 50.3337 49.6445 50.1901 49.4121 50.0215C49.1842 49.8529 49.0088 49.6546 48.8857 49.4268C48.7627 49.1989 48.7012 48.9323 48.7012 48.627C48.7012 48.3353 48.765 48.0596 48.8926 47.7998C49.0247 47.54 49.2093 47.3099 49.4463 47.1094C49.6878 46.9089 49.9772 46.7516 50.3145 46.6377C50.6517 46.5238 51.0277 46.4668 51.4424 46.4668C52.0348 46.4668 52.5407 46.5716 52.96 46.7812C53.3792 46.9909 53.7005 47.2712 53.9238 47.6221C54.1471 47.9684 54.2588 48.3535 54.2588 48.7773H52.9941C52.9941 48.5723 52.9326 48.374 52.8096 48.1826C52.6911 47.9867 52.5156 47.8249 52.2832 47.6973C52.0553 47.5697 51.7751 47.5059 51.4424 47.5059C51.0915 47.5059 50.8066 47.5605 50.5879 47.6699C50.3737 47.7747 50.2165 47.9092 50.1162 48.0732C50.0205 48.2373 49.9727 48.4105 49.9727 48.5928C49.9727 48.7295 49.9954 48.8525 50.041 48.9619C50.0911 49.0667 50.1777 49.1647 50.3008 49.2559C50.4238 49.3424 50.597 49.4245 50.8203 49.502C51.0436 49.5794 51.3285 49.6569 51.6748 49.7344C52.2809 49.8711 52.7799 50.0352 53.1719 50.2266C53.5638 50.418 53.8555 50.6527 54.0469 50.9307C54.2383 51.2087 54.334 51.5459 54.334 51.9424C54.334 52.266 54.2656 52.5622 54.1289 52.8311C53.9967 53.0999 53.8031 53.3324 53.5479 53.5283C53.2972 53.7197 52.9964 53.8701 52.6455 53.9795C52.2992 54.0843 51.9095 54.1367 51.4766 54.1367C50.8249 54.1367 50.2734 54.0205 49.8223 53.7881C49.3711 53.5557 49.0293 53.2549 48.7969 52.8857C48.5645 52.5166 48.4482 52.127 48.4482 51.7168H49.7197C49.738 52.0632 49.8382 52.3389 50.0205 52.5439C50.2028 52.7445 50.4261 52.888 50.6904 52.9746C50.9548 53.0566 51.2168 53.0977 51.4766 53.0977C51.8229 53.0977 52.1123 53.0521 52.3447 52.9609C52.5817 52.8698 52.7617 52.7445 52.8848 52.585C53.0078 52.4255 53.0693 52.2432 53.0693 52.0381ZM59.0645 54.1367C58.5495 54.1367 58.0824 54.0501 57.6631 53.877C57.2484 53.6992 56.8906 53.4508 56.5898 53.1318C56.2936 52.8128 56.0658 52.4346 55.9062 51.9971C55.7467 51.5596 55.667 51.0811 55.667 50.5615V50.2744C55.667 49.6729 55.7559 49.1374 55.9336 48.668C56.1113 48.194 56.3529 47.793 56.6582 47.4648C56.9635 47.1367 57.3099 46.8883 57.6973 46.7197C58.0846 46.5511 58.4857 46.4668 58.9004 46.4668C59.429 46.4668 59.8848 46.5579 60.2676 46.7402C60.6549 46.9225 60.9717 47.1777 61.2178 47.5059C61.4639 47.8294 61.6462 48.2122 61.7646 48.6543C61.8831 49.0918 61.9424 49.5703 61.9424 50.0898V50.6572H56.4189V49.625H60.6777V49.5293C60.6595 49.2012 60.5911 48.8822 60.4727 48.5723C60.3587 48.2624 60.1764 48.0072 59.9258 47.8066C59.6751 47.6061 59.3333 47.5059 58.9004 47.5059C58.6133 47.5059 58.349 47.5674 58.1074 47.6904C57.8659 47.8089 57.6585 47.9867 57.4854 48.2236C57.3122 48.4606 57.1777 48.75 57.082 49.0918C56.9863 49.4336 56.9385 49.8278 56.9385 50.2744V50.5615C56.9385 50.9124 56.9863 51.2428 57.082 51.5527C57.1823 51.8581 57.3258 52.127 57.5127 52.3594C57.7041 52.5918 57.9342 52.7741 58.2031 52.9062C58.4766 53.0384 58.7865 53.1045 59.1328 53.1045C59.5794 53.1045 59.9577 53.0133 60.2676 52.8311C60.5775 52.6488 60.8486 52.4049 61.0811 52.0996L61.8467 52.708C61.6872 52.9495 61.4844 53.1797 61.2383 53.3984C60.9922 53.6172 60.6891 53.7949 60.3291 53.9316C59.9736 54.0684 59.5521 54.1367 59.0645 54.1367ZM72.3877 51.4844C72.3877 51.252 72.3512 51.0469 72.2783 50.8691C72.21 50.6868 72.0869 50.5228 71.9092 50.377C71.736 50.2311 71.4945 50.0921 71.1846 49.96C70.8792 49.8278 70.4919 49.6934 70.0225 49.5566C69.5303 49.4108 69.0859 49.249 68.6895 49.0713C68.293 48.889 67.9535 48.6816 67.6709 48.4492C67.3883 48.2168 67.1719 47.9502 67.0215 47.6494C66.8711 47.3486 66.7959 47.0046 66.7959 46.6172C66.7959 46.2298 66.8757 45.8721 67.0352 45.5439C67.1947 45.2158 67.4225 44.931 67.7188 44.6895C68.0195 44.4434 68.3773 44.252 68.792 44.1152C69.2067 43.9785 69.6693 43.9102 70.1797 43.9102C70.9271 43.9102 71.5605 44.0537 72.0801 44.3408C72.6042 44.6234 73.0029 44.9948 73.2764 45.4551C73.5498 45.9108 73.6865 46.3984 73.6865 46.918H72.374C72.374 46.5443 72.2943 46.2139 72.1348 45.9268C71.9753 45.6351 71.7337 45.4072 71.4102 45.2432C71.0866 45.0745 70.6764 44.9902 70.1797 44.9902C69.7103 44.9902 69.3229 45.0609 69.0176 45.2021C68.7122 45.3434 68.4844 45.5348 68.334 45.7764C68.1882 46.0179 68.1152 46.2936 68.1152 46.6035C68.1152 46.8132 68.1585 47.0046 68.2451 47.1777C68.3363 47.3464 68.4753 47.5036 68.6621 47.6494C68.8535 47.7952 69.0951 47.9297 69.3867 48.0527C69.6829 48.1758 70.0361 48.2943 70.4463 48.4082C71.0114 48.5677 71.499 48.7454 71.9092 48.9414C72.3193 49.1374 72.6566 49.3584 72.9209 49.6045C73.1898 49.846 73.388 50.1217 73.5156 50.4316C73.6478 50.737 73.7139 51.0833 73.7139 51.4707C73.7139 51.8763 73.6318 52.2432 73.4678 52.5713C73.3037 52.8994 73.069 53.1797 72.7637 53.4121C72.4583 53.6445 72.0915 53.8245 71.6631 53.9521C71.2393 54.0752 70.7653 54.1367 70.2412 54.1367C69.7809 54.1367 69.3275 54.0729 68.8809 53.9453C68.4388 53.8177 68.0355 53.6263 67.6709 53.3711C67.3109 53.1159 67.0215 52.8014 66.8027 52.4277C66.5885 52.0495 66.4814 51.612 66.4814 51.1152H67.7939C67.7939 51.457 67.86 51.751 67.9922 51.9971C68.1243 52.2386 68.3044 52.4391 68.5322 52.5986C68.7646 52.7581 69.0267 52.8766 69.3184 52.9541C69.6146 53.027 69.9222 53.0635 70.2412 53.0635C70.7015 53.0635 71.0911 52.9997 71.4102 52.8721C71.7292 52.7445 71.9707 52.5622 72.1348 52.3252C72.3034 52.0882 72.3877 51.8079 72.3877 51.4844ZM78.2734 54.1367C77.7585 54.1367 77.2913 54.0501 76.8721 53.877C76.4574 53.6992 76.0996 53.4508 75.7988 53.1318C75.5026 52.8128 75.2747 52.4346 75.1152 51.9971C74.9557 51.5596 74.876 51.0811 74.876 50.5615V50.2744C74.876 49.6729 74.9648 49.1374 75.1426 48.668C75.3203 48.194 75.5618 47.793 75.8672 47.4648C76.1725 47.1367 76.5189 46.8883 76.9062 46.7197C77.2936 46.5511 77.6947 46.4668 78.1094 46.4668C78.638 46.4668 79.0938 46.5579 79.4766 46.7402C79.8639 46.9225 80.1807 47.1777 80.4268 47.5059C80.6729 47.8294 80.8551 48.2122 80.9736 48.6543C81.0921 49.0918 81.1514 49.5703 81.1514 50.0898V50.6572H75.6279V49.625H79.8867V49.5293C79.8685 49.2012 79.8001 48.8822 79.6816 48.5723C79.5677 48.2624 79.3854 48.0072 79.1348 47.8066C78.8841 47.6061 78.5423 47.5059 78.1094 47.5059C77.8223 47.5059 77.5579 47.5674 77.3164 47.6904C77.0749 47.8089 76.8675 47.9867 76.6943 48.2236C76.5212 48.4606 76.3867 48.75 76.291 49.0918C76.1953 49.4336 76.1475 49.8278 76.1475 50.2744V50.5615C76.1475 50.9124 76.1953 51.2428 76.291 51.5527C76.3913 51.8581 76.5348 52.127 76.7217 52.3594C76.9131 52.5918 77.1432 52.7741 77.4121 52.9062C77.6855 53.0384 77.9954 53.1045 78.3418 53.1045C78.7884 53.1045 79.1667 53.0133 79.4766 52.8311C79.7865 52.6488 80.0576 52.4049 80.29 52.0996L81.0557 52.708C80.8962 52.9495 80.6934 53.1797 80.4473 53.3984C80.2012 53.6172 79.8981 53.7949 79.5381 53.9316C79.1826 54.0684 78.7611 54.1367 78.2734 54.1367ZM83.8926 47.7656V54H82.6279V46.6035H83.8584L83.8926 47.7656ZM86.2031 46.5625L86.1963 47.7383C86.0915 47.7155 85.9912 47.7018 85.8955 47.6973C85.8044 47.6882 85.6995 47.6836 85.5811 47.6836C85.2894 47.6836 85.0319 47.7292 84.8086 47.8203C84.5853 47.9115 84.3962 48.0391 84.2412 48.2031C84.0863 48.3672 83.9632 48.5632 83.8721 48.791C83.7855 49.0143 83.7285 49.2604 83.7012 49.5293L83.3457 49.7344C83.3457 49.2878 83.389 48.8685 83.4756 48.4766C83.5667 48.0846 83.7057 47.7383 83.8926 47.4375C84.0794 47.1322 84.3164 46.8952 84.6035 46.7266C84.8952 46.5534 85.2415 46.4668 85.6426 46.4668C85.7337 46.4668 85.8385 46.4782 85.957 46.501C86.0755 46.5192 86.1576 46.5397 86.2031 46.5625ZM89.7441 52.8584L91.7676 46.6035H93.0596L90.4004 54H89.5527L89.7441 52.8584ZM88.0557 46.6035L90.1406 52.8926L90.2842 54H89.4365L86.7568 46.6035H88.0557ZM95.6504 46.6035V54H94.3789V46.6035H95.6504ZM94.2832 44.6416C94.2832 44.4365 94.3447 44.2633 94.4678 44.1221C94.5954 43.9808 94.7822 43.9102 95.0283 43.9102C95.2699 43.9102 95.4544 43.9808 95.582 44.1221C95.7142 44.2633 95.7803 44.4365 95.7803 44.6416C95.7803 44.8376 95.7142 45.0062 95.582 45.1475C95.4544 45.2842 95.2699 45.3525 95.0283 45.3525C94.7822 45.3525 94.5954 45.2842 94.4678 45.1475C94.3447 45.0062 94.2832 44.8376 94.2832 44.6416ZM100.641 53.0977C100.941 53.0977 101.219 53.0361 101.475 52.9131C101.73 52.79 101.939 52.6214 102.104 52.4072C102.268 52.1885 102.361 51.9401 102.384 51.6621H103.587C103.564 52.0996 103.416 52.5075 103.143 52.8857C102.874 53.2594 102.521 53.5625 102.083 53.7949C101.646 54.0228 101.165 54.1367 100.641 54.1367C100.085 54.1367 99.5993 54.0387 99.1846 53.8428C98.7744 53.6468 98.4326 53.3779 98.1592 53.0361C97.8903 52.6943 97.6875 52.3024 97.5508 51.8604C97.4186 51.4137 97.3525 50.9421 97.3525 50.4453V50.1582C97.3525 49.6615 97.4186 49.1921 97.5508 48.75C97.6875 48.3034 97.8903 47.9092 98.1592 47.5674C98.4326 47.2256 98.7744 46.9567 99.1846 46.7607C99.5993 46.5648 100.085 46.4668 100.641 46.4668C101.219 46.4668 101.725 46.5853 102.158 46.8223C102.591 47.0547 102.931 47.3737 103.177 47.7793C103.427 48.1803 103.564 48.6361 103.587 49.1465H102.384C102.361 48.8411 102.274 48.5654 102.124 48.3193C101.978 48.0732 101.778 47.8773 101.522 47.7314C101.272 47.5811 100.978 47.5059 100.641 47.5059C100.253 47.5059 99.9274 47.5833 99.6631 47.7383C99.4033 47.8887 99.196 48.0938 99.041 48.3535C98.8906 48.6087 98.7812 48.8936 98.7129 49.208C98.6491 49.5179 98.6172 49.8346 98.6172 50.1582V50.4453C98.6172 50.7689 98.6491 51.0879 98.7129 51.4023C98.7767 51.7168 98.8838 52.0016 99.0342 52.2568C99.1891 52.512 99.3965 52.7171 99.6562 52.8721C99.9206 53.0225 100.249 53.0977 100.641 53.0977ZM108.078 54.1367C107.563 54.1367 107.096 54.0501 106.677 53.877C106.262 53.6992 105.904 53.4508 105.604 53.1318C105.307 52.8128 105.079 52.4346 104.92 51.9971C104.76 51.5596 104.681 51.0811 104.681 50.5615V50.2744C104.681 49.6729 104.77 49.1374 104.947 48.668C105.125 48.194 105.367 47.793 105.672 47.4648C105.977 47.1367 106.324 46.8883 106.711 46.7197C107.098 46.5511 107.499 46.4668 107.914 46.4668C108.443 46.4668 108.898 46.5579 109.281 46.7402C109.669 46.9225 109.985 47.1777 110.231 47.5059C110.478 47.8294 110.66 48.2122 110.778 48.6543C110.897 49.0918 110.956 49.5703 110.956 50.0898V50.6572H105.433V49.625H109.691V49.5293C109.673 49.2012 109.605 48.8822 109.486 48.5723C109.372 48.2624 109.19 48.0072 108.939 47.8066C108.689 47.6061 108.347 47.5059 107.914 47.5059C107.627 47.5059 107.363 47.5674 107.121 47.6904C106.88 47.8089 106.672 47.9867 106.499 48.2236C106.326 48.4606 106.191 48.75 106.096 49.0918C106 49.4336 105.952 49.8278 105.952 50.2744V50.5615C105.952 50.9124 106 51.2428 106.096 51.5527C106.196 51.8581 106.34 52.127 106.526 52.3594C106.718 52.5918 106.948 52.7741 107.217 52.9062C107.49 53.0384 107.8 53.1045 108.146 53.1045C108.593 53.1045 108.971 53.0133 109.281 52.8311C109.591 52.6488 109.862 52.4049 110.095 52.0996L110.86 52.708C110.701 52.9495 110.498 53.1797 110.252 53.3984C110.006 53.6172 109.703 53.7949 109.343 53.9316C108.987 54.0684 108.566 54.1367 108.078 54.1367Z",fill:"#64748B"}),(0,o.createElement)("path",{d:"M29.25 65.75V76.25H18.75V65.75H29.25ZM29.25 64.25H18.75C17.925 64.25 17.25 64.925 17.25 65.75V76.25C17.25 77.075 17.925 77.75 18.75 77.75H29.25C30.075 77.75 30.75 77.075 30.75 76.25V65.75C30.75 64.925 30.075 64.25 29.25 64.25Z",fill:"#64748B"}),(0,o.createElement)("path",{d:"M39.5039 72.707L41.3384 66.2578H42.2271L41.7129 68.7651L39.7388 75.5H38.8564L39.5039 72.707ZM37.606 66.2578L39.0659 72.5801L39.5039 75.5H38.6279L36.3872 66.2578H37.606ZM44.6011 72.5737L46.0293 66.2578H47.2544L45.02 75.5H44.144L44.6011 72.5737ZM42.3604 66.2578L44.144 72.707L44.7915 75.5H43.9092L42.0049 68.7651L41.4844 66.2578H42.3604ZM51.082 75.627C50.6038 75.627 50.1701 75.5465 49.7808 75.3857C49.3957 75.2207 49.0635 74.9901 48.7842 74.6938C48.5091 74.3976 48.2975 74.0464 48.1494 73.6401C48.0013 73.2339 47.9272 72.7896 47.9272 72.3071V72.0405C47.9272 71.4819 48.0098 70.9847 48.1748 70.5488C48.3398 70.1087 48.5641 69.7363 48.8477 69.4316C49.1312 69.127 49.4528 68.8963 49.8125 68.7397C50.1722 68.5832 50.5446 68.5049 50.9297 68.5049C51.4206 68.5049 51.8438 68.5895 52.1992 68.7588C52.5589 68.9281 52.853 69.165 53.0815 69.4697C53.3101 69.7702 53.4793 70.1257 53.5894 70.5361C53.6994 70.9424 53.7544 71.3867 53.7544 71.8691V72.396H48.6255V71.4375H52.5801V71.3486C52.5632 71.0439 52.4997 70.7477 52.3896 70.46C52.2839 70.1722 52.1146 69.9352 51.8818 69.749C51.6491 69.5628 51.3317 69.4697 50.9297 69.4697C50.6631 69.4697 50.4176 69.5269 50.1934 69.6411C49.9691 69.7511 49.7765 69.9162 49.6157 70.1362C49.4549 70.3563 49.3301 70.625 49.2412 70.9424C49.1523 71.2598 49.1079 71.6258 49.1079 72.0405V72.3071C49.1079 72.633 49.1523 72.9398 49.2412 73.2275C49.3343 73.5111 49.4676 73.7607 49.6411 73.9766C49.8188 74.1924 50.0326 74.3617 50.2822 74.4844C50.5361 74.6071 50.8239 74.6685 51.1455 74.6685C51.5602 74.6685 51.9115 74.5838 52.1992 74.4146C52.487 74.2453 52.7388 74.0189 52.9546 73.7354L53.6655 74.3003C53.5174 74.5246 53.3291 74.7383 53.1006 74.9414C52.8721 75.1445 52.5907 75.3096 52.2563 75.4365C51.9263 75.5635 51.5348 75.627 51.082 75.627ZM56.4014 65.75V75.5H55.2207V65.75H56.4014ZM59.5625 65.75V75.5H58.3818V65.75H59.5625ZM62.6221 70.0981V75.5H61.4478V68.6318H62.5586L62.6221 70.0981ZM62.3428 71.8057L61.854 71.7866C61.8582 71.3169 61.9281 70.8831 62.0635 70.4854C62.1989 70.0833 62.3893 69.7342 62.6348 69.438C62.8802 69.1418 63.1722 68.9132 63.5107 68.7524C63.8535 68.5874 64.2323 68.5049 64.647 68.5049C64.9855 68.5049 65.2902 68.5514 65.561 68.6445C65.8319 68.7334 66.0625 68.8773 66.2529 69.0762C66.4476 69.2751 66.5957 69.5332 66.6973 69.8506C66.7988 70.1637 66.8496 70.5467 66.8496 70.9995V75.5H65.6689V70.9868C65.6689 70.6271 65.616 70.3394 65.5103 70.1235C65.4045 69.9035 65.25 69.7448 65.0469 69.6475C64.8438 69.5459 64.5941 69.4951 64.2979 69.4951C64.0059 69.4951 63.7393 69.5565 63.498 69.6792C63.2611 69.8019 63.0558 69.9712 62.8823 70.187C62.7131 70.4028 62.5798 70.6504 62.4824 70.9297C62.3893 71.2048 62.3428 71.4967 62.3428 71.8057ZM71.4834 75.627C71.0052 75.627 70.5715 75.5465 70.1821 75.3857C69.797 75.2207 69.4648 74.9901 69.1855 74.6938C68.9105 74.3976 68.6989 74.0464 68.5508 73.6401C68.4027 73.2339 68.3286 72.7896 68.3286 72.3071V72.0405C68.3286 71.4819 68.4111 70.9847 68.5762 70.5488C68.7412 70.1087 68.9655 69.7363 69.249 69.4316C69.5326 69.127 69.8542 68.8963 70.2139 68.7397C70.5736 68.5832 70.946 68.5049 71.3311 68.5049C71.8219 68.5049 72.2451 68.5895 72.6006 68.7588C72.9603 68.9281 73.2544 69.165 73.4829 69.4697C73.7114 69.7702 73.8807 70.1257 73.9907 70.5361C74.1007 70.9424 74.1558 71.3867 74.1558 71.8691V72.396H69.0269V71.4375H72.9814V71.3486C72.9645 71.0439 72.901 70.7477 72.791 70.46C72.6852 70.1722 72.516 69.9352 72.2832 69.749C72.0505 69.5628 71.7331 69.4697 71.3311 69.4697C71.0645 69.4697 70.819 69.5269 70.5947 69.6411C70.3704 69.7511 70.1779 69.9162 70.0171 70.1362C69.8563 70.3563 69.7314 70.625 69.6426 70.9424C69.5537 71.2598 69.5093 71.6258 69.5093 72.0405V72.3071C69.5093 72.633 69.5537 72.9398 69.6426 73.2275C69.7357 73.5111 69.869 73.7607 70.0425 73.9766C70.2202 74.1924 70.4339 74.3617 70.6836 74.4844C70.9375 74.6071 71.2253 74.6685 71.5469 74.6685C71.9616 74.6685 72.3128 74.5838 72.6006 74.4146C72.8883 74.2453 73.1401 74.0189 73.356 73.7354L74.0669 74.3003C73.9188 74.5246 73.7305 74.7383 73.502 74.9414C73.2734 75.1445 72.992 75.3096 72.6577 75.4365C72.3276 75.5635 71.9362 75.627 71.4834 75.627ZM79.5259 73.6782C79.5259 73.509 79.4878 73.3524 79.4116 73.2085C79.3397 73.0604 79.1895 72.9271 78.9609 72.8086C78.7367 72.6859 78.3981 72.5801 77.9453 72.4912C77.5645 72.4108 77.2196 72.3156 76.9106 72.2056C76.606 72.0955 76.3457 71.9622 76.1299 71.8057C75.9183 71.6491 75.7554 71.465 75.6411 71.2534C75.5269 71.0418 75.4697 70.7943 75.4697 70.5107C75.4697 70.2399 75.529 69.9839 75.6475 69.7427C75.7702 69.5015 75.9416 69.2878 76.1616 69.1016C76.3859 68.9154 76.6546 68.7694 76.9678 68.6636C77.2809 68.5578 77.63 68.5049 78.0151 68.5049C78.5653 68.5049 79.035 68.6022 79.4243 68.7969C79.8136 68.9915 80.112 69.2518 80.3193 69.5776C80.5267 69.8993 80.6304 70.2568 80.6304 70.6504H79.4561C79.4561 70.46 79.3989 70.2759 79.2847 70.0981C79.1746 69.9162 79.0117 69.766 78.7959 69.6475C78.5843 69.529 78.3241 69.4697 78.0151 69.4697C77.6893 69.4697 77.4248 69.5205 77.2217 69.6221C77.0228 69.7194 76.8768 69.8442 76.7837 69.9966C76.6948 70.1489 76.6504 70.3097 76.6504 70.479C76.6504 70.606 76.6715 70.7202 76.7139 70.8218C76.7604 70.9191 76.8408 71.0101 76.9551 71.0947C77.0693 71.1751 77.2301 71.2513 77.4375 71.3232C77.6449 71.3952 77.9093 71.4671 78.231 71.5391C78.7938 71.666 79.2572 71.8184 79.6211 71.9961C79.985 72.1738 80.2559 72.3918 80.4336 72.6499C80.6113 72.908 80.7002 73.2212 80.7002 73.5894C80.7002 73.8898 80.6367 74.1649 80.5098 74.4146C80.387 74.6642 80.2072 74.88 79.9702 75.062C79.7375 75.2397 79.4582 75.3794 79.1323 75.481C78.8107 75.5783 78.4489 75.627 78.0469 75.627C77.4417 75.627 76.9297 75.519 76.5107 75.3032C76.0918 75.0874 75.7744 74.8081 75.5586 74.4653C75.3428 74.1226 75.2349 73.7607 75.2349 73.3799H76.4155C76.4325 73.7015 76.5256 73.9575 76.6948 74.1479C76.8641 74.3341 77.0715 74.4674 77.3169 74.5479C77.5623 74.624 77.8057 74.6621 78.0469 74.6621C78.3685 74.6621 78.6372 74.6198 78.853 74.5352C79.0731 74.4505 79.2402 74.3341 79.3545 74.186C79.4688 74.0379 79.5259 73.8687 79.5259 73.6782ZM86.2417 73.6782C86.2417 73.509 86.2036 73.3524 86.1274 73.2085C86.0555 73.0604 85.9053 72.9271 85.6768 72.8086C85.4525 72.6859 85.1139 72.5801 84.6611 72.4912C84.2803 72.4108 83.9354 72.3156 83.6265 72.2056C83.3218 72.0955 83.0615 71.9622 82.8457 71.8057C82.6341 71.6491 82.4712 71.465 82.3569 71.2534C82.2427 71.0418 82.1855 70.7943 82.1855 70.5107C82.1855 70.2399 82.2448 69.9839 82.3633 69.7427C82.486 69.5015 82.6574 69.2878 82.8774 69.1016C83.1017 68.9154 83.3704 68.7694 83.6836 68.6636C83.9967 68.5578 84.3459 68.5049 84.731 68.5049C85.2811 68.5049 85.7508 68.6022 86.1401 68.7969C86.5295 68.9915 86.8278 69.2518 87.0352 69.5776C87.2425 69.8993 87.3462 70.2568 87.3462 70.6504H86.1719C86.1719 70.46 86.1147 70.2759 86.0005 70.0981C85.8905 69.9162 85.7275 69.766 85.5117 69.6475C85.3001 69.529 85.0399 69.4697 84.731 69.4697C84.4051 69.4697 84.1406 69.5205 83.9375 69.6221C83.7386 69.7194 83.5926 69.8442 83.4995 69.9966C83.4106 70.1489 83.3662 70.3097 83.3662 70.479C83.3662 70.606 83.3874 70.7202 83.4297 70.8218C83.4762 70.9191 83.5566 71.0101 83.6709 71.0947C83.7852 71.1751 83.946 71.2513 84.1533 71.3232C84.3607 71.3952 84.6252 71.4671 84.9468 71.5391C85.5096 71.666 85.973 71.8184 86.3369 71.9961C86.7008 72.1738 86.9717 72.3918 87.1494 72.6499C87.3271 72.908 87.416 73.2212 87.416 73.5894C87.416 73.8898 87.3525 74.1649 87.2256 74.4146C87.1029 74.6642 86.923 74.88 86.686 75.062C86.4533 75.2397 86.174 75.3794 85.8481 75.481C85.5265 75.5783 85.1647 75.627 84.7627 75.627C84.1576 75.627 83.6455 75.519 83.2266 75.3032C82.8076 75.0874 82.4902 74.8081 82.2744 74.4653C82.0586 74.1226 81.9507 73.7607 81.9507 73.3799H83.1313C83.1483 73.7015 83.2414 73.9575 83.4106 74.1479C83.5799 74.3341 83.7873 74.4674 84.0327 74.5479C84.2782 74.624 84.5215 74.6621 84.7627 74.6621C85.0843 74.6621 85.353 74.6198 85.5688 74.5352C85.7889 74.4505 85.9561 74.3341 86.0703 74.186C86.1846 74.0379 86.2417 73.8687 86.2417 73.6782ZM93.3511 69.9966V75.5H92.1704V68.6318H93.2876L93.3511 69.9966ZM93.1099 71.8057L92.564 71.7866C92.5682 71.3169 92.6296 70.8831 92.748 70.4854C92.8665 70.0833 93.0422 69.7342 93.2749 69.438C93.5076 69.1418 93.7975 68.9132 94.1445 68.7524C94.4915 68.5874 94.8936 68.5049 95.3506 68.5049C95.6722 68.5049 95.9684 68.5514 96.2393 68.6445C96.5101 68.7334 96.745 68.8752 96.9438 69.0698C97.1427 69.2645 97.2972 69.5142 97.4072 69.8188C97.5173 70.1235 97.5723 70.4917 97.5723 70.9233V75.5H96.3979V70.9805C96.3979 70.6208 96.3366 70.333 96.2139 70.1172C96.0954 69.9014 95.9261 69.7448 95.7061 69.6475C95.486 69.5459 95.2279 69.4951 94.9316 69.4951C94.5846 69.4951 94.2948 69.5565 94.062 69.6792C93.8293 69.8019 93.6431 69.9712 93.5034 70.187C93.3638 70.4028 93.2622 70.6504 93.1987 70.9297C93.1395 71.2048 93.1099 71.4967 93.1099 71.8057ZM97.5596 71.1582L96.7725 71.3994C96.7767 71.0228 96.8381 70.661 96.9565 70.314C97.0793 69.967 97.2549 69.658 97.4834 69.3872C97.7161 69.1164 98.0018 68.9027 98.3403 68.7461C98.6789 68.5853 99.0661 68.5049 99.502 68.5049C99.8701 68.5049 100.196 68.5535 100.479 68.6509C100.767 68.7482 101.008 68.8984 101.203 69.1016C101.402 69.3005 101.552 69.5565 101.654 69.8696C101.755 70.1828 101.806 70.5552 101.806 70.9868V75.5H100.625V70.9741C100.625 70.589 100.564 70.2907 100.441 70.0791C100.323 69.8633 100.154 69.7131 99.9336 69.6284C99.7178 69.5396 99.4596 69.4951 99.1592 69.4951C98.901 69.4951 98.6725 69.5396 98.4736 69.6284C98.2747 69.7173 98.1076 69.84 97.9722 69.9966C97.8368 70.1489 97.7331 70.3245 97.6611 70.5234C97.5934 70.7223 97.5596 70.9339 97.5596 71.1582ZM107.633 74.3257V70.79C107.633 70.5192 107.578 70.2843 107.468 70.0854C107.362 69.8823 107.202 69.7257 106.986 69.6157C106.77 69.5057 106.503 69.4507 106.186 69.4507C105.89 69.4507 105.63 69.5015 105.405 69.603C105.185 69.7046 105.012 69.8379 104.885 70.0029C104.762 70.168 104.701 70.3457 104.701 70.5361H103.526C103.526 70.2907 103.59 70.0474 103.717 69.8062C103.844 69.5649 104.026 69.347 104.263 69.1523C104.504 68.9535 104.792 68.7969 105.126 68.6826C105.465 68.5641 105.841 68.5049 106.256 68.5049C106.755 68.5049 107.195 68.5895 107.576 68.7588C107.961 68.9281 108.262 69.1841 108.478 69.5269C108.698 69.8654 108.808 70.2907 108.808 70.8027V74.002C108.808 74.2305 108.827 74.4738 108.865 74.7319C108.907 74.9901 108.968 75.2122 109.049 75.3984V75.5H107.824C107.764 75.3646 107.718 75.1847 107.684 74.9604C107.65 74.7319 107.633 74.5203 107.633 74.3257ZM107.836 71.3359L107.849 72.1611H106.662C106.328 72.1611 106.029 72.1886 105.767 72.2437C105.505 72.2944 105.285 72.3727 105.107 72.4785C104.929 72.5843 104.794 72.7176 104.701 72.8784C104.608 73.035 104.561 73.2191 104.561 73.4307C104.561 73.6465 104.61 73.8433 104.707 74.021C104.804 74.1987 104.95 74.3405 105.145 74.4463C105.344 74.5479 105.587 74.5986 105.875 74.5986C106.235 74.5986 106.552 74.5225 106.827 74.3701C107.102 74.2178 107.32 74.0316 107.481 73.8115C107.646 73.5915 107.735 73.3778 107.748 73.1704L108.249 73.7354C108.219 73.9131 108.139 74.1099 108.008 74.3257C107.877 74.5415 107.701 74.7489 107.481 74.9478C107.265 75.1424 107.007 75.3053 106.707 75.4365C106.41 75.5635 106.076 75.627 105.704 75.627C105.238 75.627 104.83 75.536 104.479 75.354C104.132 75.172 103.861 74.9287 103.666 74.624C103.476 74.3151 103.38 73.9702 103.38 73.5894C103.38 73.2212 103.452 72.8975 103.596 72.6182C103.74 72.3346 103.947 72.0998 104.218 71.9136C104.489 71.7231 104.815 71.5793 105.196 71.4819C105.577 71.3846 106.002 71.3359 106.472 71.3359H107.836ZM114.654 73.6782C114.654 73.509 114.616 73.3524 114.54 73.2085C114.468 73.0604 114.317 72.9271 114.089 72.8086C113.865 72.6859 113.526 72.5801 113.073 72.4912C112.692 72.4108 112.347 72.3156 112.039 72.2056C111.734 72.0955 111.474 71.9622 111.258 71.8057C111.046 71.6491 110.883 71.465 110.769 71.2534C110.655 71.0418 110.598 70.7943 110.598 70.5107C110.598 70.2399 110.657 69.9839 110.775 69.7427C110.898 69.5015 111.069 69.2878 111.29 69.1016C111.514 68.9154 111.783 68.7694 112.096 68.6636C112.409 68.5578 112.758 68.5049 113.143 68.5049C113.693 68.5049 114.163 68.6022 114.552 68.7969C114.942 68.9915 115.24 69.2518 115.447 69.5776C115.655 69.8993 115.758 70.2568 115.758 70.6504H114.584C114.584 70.46 114.527 70.2759 114.413 70.0981C114.303 69.9162 114.14 69.766 113.924 69.6475C113.712 69.529 113.452 69.4697 113.143 69.4697C112.817 69.4697 112.553 69.5205 112.35 69.6221C112.151 69.7194 112.005 69.8442 111.912 69.9966C111.823 70.1489 111.778 70.3097 111.778 70.479C111.778 70.606 111.799 70.7202 111.842 70.8218C111.888 70.9191 111.969 71.0101 112.083 71.0947C112.197 71.1751 112.358 71.2513 112.565 71.3232C112.773 71.3952 113.037 71.4671 113.359 71.5391C113.922 71.666 114.385 71.8184 114.749 71.9961C115.113 72.1738 115.384 72.3918 115.562 72.6499C115.739 72.908 115.828 73.2212 115.828 73.5894C115.828 73.8898 115.765 74.1649 115.638 74.4146C115.515 74.6642 115.335 74.88 115.098 75.062C114.865 75.2397 114.586 75.3794 114.26 75.481C113.939 75.5783 113.577 75.627 113.175 75.627C112.57 75.627 112.058 75.519 111.639 75.3032C111.22 75.0874 110.902 74.8081 110.687 74.4653C110.471 74.1226 110.363 73.7607 110.363 73.3799H111.543C111.56 73.7015 111.653 73.9575 111.823 74.1479C111.992 74.3341 112.199 74.4674 112.445 74.5479C112.69 74.624 112.934 74.6621 113.175 74.6621C113.496 74.6621 113.765 74.6198 113.981 74.5352C114.201 74.4505 114.368 74.3341 114.482 74.186C114.597 74.0379 114.654 73.8687 114.654 73.6782ZM121.37 73.6782C121.37 73.509 121.332 73.3524 121.255 73.2085C121.183 73.0604 121.033 72.9271 120.805 72.8086C120.58 72.6859 120.242 72.5801 119.789 72.4912C119.408 72.4108 119.063 72.3156 118.754 72.2056C118.45 72.0955 118.189 71.9622 117.974 71.8057C117.762 71.6491 117.599 71.465 117.485 71.2534C117.371 71.0418 117.313 70.7943 117.313 70.5107C117.313 70.2399 117.373 69.9839 117.491 69.7427C117.614 69.5015 117.785 69.2878 118.005 69.1016C118.23 68.9154 118.498 68.7694 118.812 68.6636C119.125 68.5578 119.474 68.5049 119.859 68.5049C120.409 68.5049 120.879 68.6022 121.268 68.7969C121.657 68.9915 121.956 69.2518 122.163 69.5776C122.37 69.8993 122.474 70.2568 122.474 70.6504H121.3C121.3 70.46 121.243 70.2759 121.128 70.0981C121.018 69.9162 120.855 69.766 120.64 69.6475C120.428 69.529 120.168 69.4697 119.859 69.4697C119.533 69.4697 119.269 69.5205 119.065 69.6221C118.867 69.7194 118.721 69.8442 118.627 69.9966C118.539 70.1489 118.494 70.3097 118.494 70.479C118.494 70.606 118.515 70.7202 118.558 70.8218C118.604 70.9191 118.685 71.0101 118.799 71.0947C118.913 71.1751 119.074 71.2513 119.281 71.3232C119.489 71.3952 119.753 71.4671 120.075 71.5391C120.638 71.666 121.101 71.8184 121.465 71.9961C121.829 72.1738 122.1 72.3918 122.277 72.6499C122.455 72.908 122.544 73.2212 122.544 73.5894C122.544 73.8898 122.48 74.1649 122.354 74.4146C122.231 74.6642 122.051 74.88 121.814 75.062C121.581 75.2397 121.302 75.3794 120.976 75.481C120.654 75.5783 120.293 75.627 119.891 75.627C119.285 75.627 118.773 75.519 118.354 75.3032C117.936 75.0874 117.618 74.8081 117.402 74.4653C117.187 74.1226 117.079 73.7607 117.079 73.3799H118.259C118.276 73.7015 118.369 73.9575 118.539 74.1479C118.708 74.3341 118.915 74.4674 119.161 74.5479C119.406 74.624 119.649 74.6621 119.891 74.6621C120.212 74.6621 120.481 74.6198 120.697 74.5352C120.917 74.4505 121.084 74.3341 121.198 74.186C121.312 74.0379 121.37 73.8687 121.37 73.6782ZM128.136 74.3257V70.79C128.136 70.5192 128.081 70.2843 127.971 70.0854C127.865 69.8823 127.705 69.7257 127.489 69.6157C127.273 69.5057 127.006 69.4507 126.689 69.4507C126.393 69.4507 126.132 69.5015 125.908 69.603C125.688 69.7046 125.515 69.8379 125.388 70.0029C125.265 70.168 125.204 70.3457 125.204 70.5361H124.029C124.029 70.2907 124.093 70.0474 124.22 69.8062C124.347 69.5649 124.529 69.347 124.766 69.1523C125.007 68.9535 125.295 68.7969 125.629 68.6826C125.967 68.5641 126.344 68.5049 126.759 68.5049C127.258 68.5049 127.698 68.5895 128.079 68.7588C128.464 68.9281 128.765 69.1841 128.98 69.5269C129.201 69.8654 129.311 70.2907 129.311 70.8027V74.002C129.311 74.2305 129.33 74.4738 129.368 74.7319C129.41 74.9901 129.471 75.2122 129.552 75.3984V75.5H128.327C128.267 75.3646 128.221 75.1847 128.187 74.9604C128.153 74.7319 128.136 74.5203 128.136 74.3257ZM128.339 71.3359L128.352 72.1611H127.165C126.831 72.1611 126.532 72.1886 126.27 72.2437C126.008 72.2944 125.788 72.3727 125.61 72.4785C125.432 72.5843 125.297 72.7176 125.204 72.8784C125.111 73.035 125.064 73.2191 125.064 73.4307C125.064 73.6465 125.113 73.8433 125.21 74.021C125.307 74.1987 125.453 74.3405 125.648 74.4463C125.847 74.5479 126.09 74.5986 126.378 74.5986C126.738 74.5986 127.055 74.5225 127.33 74.3701C127.605 74.2178 127.823 74.0316 127.984 73.8115C128.149 73.5915 128.238 73.3778 128.25 73.1704L128.752 73.7354C128.722 73.9131 128.642 74.1099 128.511 74.3257C128.38 74.5415 128.204 74.7489 127.984 74.9478C127.768 75.1424 127.51 75.3053 127.209 75.4365C126.913 75.5635 126.579 75.627 126.207 75.627C125.741 75.627 125.333 75.536 124.981 75.354C124.634 75.172 124.364 74.9287 124.169 74.624C123.979 74.3151 123.883 73.9702 123.883 73.5894C123.883 73.2212 123.955 72.8975 124.099 72.6182C124.243 72.3346 124.45 72.0998 124.721 71.9136C124.992 71.7231 125.318 71.5793 125.699 71.4819C126.08 71.3846 126.505 71.3359 126.975 71.3359H128.339ZM135.607 68.6318H136.674V75.354C136.674 75.9591 136.551 76.4754 136.306 76.9028C136.06 77.3302 135.717 77.654 135.277 77.874C134.841 78.0983 134.338 78.2104 133.767 78.2104C133.53 78.2104 133.25 78.1724 132.929 78.0962C132.611 78.0243 132.298 77.8994 131.989 77.7217C131.685 77.5482 131.429 77.3133 131.221 77.0171L131.837 76.3188C132.125 76.6659 132.425 76.9071 132.738 77.0425C133.056 77.1779 133.369 77.2456 133.678 77.2456C134.05 77.2456 134.372 77.1758 134.643 77.0361C134.913 76.8965 135.123 76.6891 135.271 76.4141C135.423 76.1432 135.5 75.8089 135.5 75.4111V70.1426L135.607 68.6318ZM130.878 72.1421V72.0088C130.878 71.484 130.94 71.008 131.062 70.5806C131.189 70.1489 131.369 69.7786 131.602 69.4697C131.839 69.1608 132.125 68.9238 132.459 68.7588C132.793 68.5895 133.17 68.5049 133.589 68.5049C134.021 68.5049 134.397 68.5811 134.719 68.7334C135.045 68.8815 135.32 69.0994 135.544 69.3872C135.772 69.6707 135.952 70.0135 136.083 70.4155C136.215 70.8175 136.306 71.2725 136.356 71.7803V72.3643C136.31 72.8678 136.219 73.3206 136.083 73.7227C135.952 74.1247 135.772 74.4674 135.544 74.751C135.32 75.0345 135.045 75.2524 134.719 75.4048C134.393 75.5529 134.012 75.627 133.576 75.627C133.166 75.627 132.793 75.5402 132.459 75.3667C132.129 75.1932 131.845 74.9499 131.608 74.6367C131.371 74.3236 131.189 73.9554 131.062 73.5322C130.94 73.1048 130.878 72.6414 130.878 72.1421ZM132.053 72.0088V72.1421C132.053 72.4849 132.087 72.8065 132.154 73.1069C132.226 73.4074 132.334 73.6719 132.478 73.9004C132.626 74.1289 132.814 74.3088 133.043 74.4399C133.271 74.5669 133.544 74.6304 133.862 74.6304C134.251 74.6304 134.573 74.5479 134.827 74.3828C135.081 74.2178 135.282 73.9998 135.43 73.729C135.582 73.4582 135.701 73.1641 135.785 72.8467V71.3169C135.739 71.0841 135.667 70.8599 135.569 70.644C135.476 70.424 135.354 70.2293 135.201 70.0601C135.053 69.8866 134.869 69.749 134.649 69.6475C134.429 69.5459 134.171 69.4951 133.875 69.4951C133.553 69.4951 133.276 69.5628 133.043 69.6982C132.814 69.8294 132.626 70.0114 132.478 70.2441C132.334 70.4727 132.226 70.7393 132.154 71.0439C132.087 71.3444 132.053 71.666 132.053 72.0088ZM141.308 75.627C140.829 75.627 140.396 75.5465 140.006 75.3857C139.621 75.2207 139.289 74.9901 139.01 74.6938C138.735 74.3976 138.523 74.0464 138.375 73.6401C138.227 73.2339 138.153 72.7896 138.153 72.3071V72.0405C138.153 71.4819 138.235 70.9847 138.4 70.5488C138.565 70.1087 138.79 69.7363 139.073 69.4316C139.357 69.127 139.678 68.8963 140.038 68.7397C140.398 68.5832 140.77 68.5049 141.155 68.5049C141.646 68.5049 142.069 68.5895 142.425 68.7588C142.785 68.9281 143.079 69.165 143.307 69.4697C143.536 69.7702 143.705 70.1257 143.815 70.5361C143.925 70.9424 143.98 71.3867 143.98 71.8691V72.396H138.851V71.4375H142.806V71.3486C142.789 71.0439 142.725 70.7477 142.615 70.46C142.509 70.1722 142.34 69.9352 142.107 69.749C141.875 69.5628 141.557 69.4697 141.155 69.4697C140.889 69.4697 140.643 69.5269 140.419 69.6411C140.195 69.7511 140.002 69.9162 139.841 70.1362C139.681 70.3563 139.556 70.625 139.467 70.9424C139.378 71.2598 139.333 71.6258 139.333 72.0405V72.3071C139.333 72.633 139.378 72.9398 139.467 73.2275C139.56 73.5111 139.693 73.7607 139.867 73.9766C140.044 74.1924 140.258 74.3617 140.508 74.4844C140.762 74.6071 141.049 74.6685 141.371 74.6685C141.786 74.6685 142.137 74.5838 142.425 74.4146C142.713 74.2453 142.964 74.0189 143.18 73.7354L143.891 74.3003C143.743 74.5246 143.555 74.7383 143.326 74.9414C143.098 75.1445 142.816 75.3096 142.482 75.4365C142.152 75.5635 141.76 75.627 141.308 75.627Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M22.8563 96.9813L28.275 91.5438L27.4688 90.7375L22.8563 95.3687L20.625 93.1375L19.8188 93.9438L22.8563 96.9813ZM18.375 100.75C18.075 100.75 17.8125 100.637 17.5875 100.412C17.3625 100.187 17.25 99.925 17.25 99.625V88.375C17.25 88.075 17.3625 87.8125 17.5875 87.5875C17.8125 87.3625 18.075 87.25 18.375 87.25H29.625C29.925 87.25 30.1875 87.3625 30.4125 87.5875C30.6375 87.8125 30.75 88.075 30.75 88.375V99.625C30.75 99.925 30.6375 100.187 30.4125 100.412C30.1875 100.637 29.925 100.75 29.625 100.75H18.375Z",fill:"#4272F9"}),(0,o.createElement)("path",{d:"M44.1885 93.5869V94.1709C44.1885 94.8649 44.1017 95.487 43.9282 96.0371C43.7547 96.5872 43.505 97.0549 43.1792 97.4399C42.8534 97.825 42.4619 98.1191 42.0049 98.3223C41.5521 98.5254 41.0443 98.627 40.4814 98.627C39.9355 98.627 39.4341 98.5254 38.9771 98.3223C38.5243 98.1191 38.1307 97.825 37.7964 97.4399C37.4663 97.0549 37.2103 96.5872 37.0283 96.0371C36.8464 95.487 36.7554 94.8649 36.7554 94.1709V93.5869C36.7554 92.8929 36.8442 92.2729 37.022 91.7271C37.2039 91.1769 37.46 90.7093 37.79 90.3242C38.1201 89.9349 38.5116 89.6387 38.9644 89.4355C39.4214 89.2324 39.9229 89.1309 40.4688 89.1309C41.0316 89.1309 41.5394 89.2324 41.9922 89.4355C42.4492 89.6387 42.8407 89.9349 43.1665 90.3242C43.4966 90.7093 43.7484 91.1769 43.9219 91.7271C44.0996 92.2729 44.1885 92.8929 44.1885 93.5869ZM42.9761 94.1709V93.5742C42.9761 93.0241 42.9189 92.5374 42.8047 92.1143C42.6947 91.6911 42.5317 91.3356 42.3159 91.0479C42.1001 90.7601 41.8356 90.5422 41.5225 90.394C41.2135 90.2459 40.8623 90.1719 40.4688 90.1719C40.0879 90.1719 39.743 90.2459 39.4341 90.394C39.1294 90.5422 38.867 90.7601 38.647 91.0479C38.4312 91.3356 38.264 91.6911 38.1455 92.1143C38.027 92.5374 37.9678 93.0241 37.9678 93.5742V94.1709C37.9678 94.7253 38.027 95.2161 38.1455 95.6436C38.264 96.0667 38.4333 96.4243 38.6533 96.7163C38.8776 97.0041 39.1421 97.222 39.4468 97.3701C39.7557 97.5182 40.1006 97.5923 40.4814 97.5923C40.8792 97.5923 41.2326 97.5182 41.5415 97.3701C41.8504 97.222 42.1107 97.0041 42.3223 96.7163C42.5381 96.4243 42.701 96.0667 42.811 95.6436C42.9211 95.2161 42.9761 94.7253 42.9761 94.1709ZM47.1211 91.6318V98.5H45.9404V91.6318H47.1211ZM45.8516 89.8101C45.8516 89.6196 45.9087 89.4588 46.0229 89.3276C46.1414 89.1965 46.3149 89.1309 46.5435 89.1309C46.7677 89.1309 46.9391 89.1965 47.0576 89.3276C47.1803 89.4588 47.2417 89.6196 47.2417 89.8101C47.2417 89.992 47.1803 90.1486 47.0576 90.2798C46.9391 90.4067 46.7677 90.4702 46.5435 90.4702C46.3149 90.4702 46.1414 90.4067 46.0229 90.2798C45.9087 90.1486 45.8516 89.992 45.8516 89.8101ZM50.2822 88.75V98.5H49.1016V88.75H50.2822ZM57.1313 97.2812L58.896 91.6318H59.6704L59.5181 92.7554L57.7217 98.5H56.9663L57.1313 97.2812ZM55.9443 91.6318L57.4487 97.3447L57.5566 98.5H56.7632L54.77 91.6318H55.9443ZM61.3589 97.3003L62.7935 91.6318H63.9614L61.9683 98.5H61.1812L61.3589 97.3003ZM59.8418 91.6318L61.5684 97.186L61.7651 98.5H61.0161L59.1689 92.7427L59.0166 91.6318H59.8418ZM66.3418 92.7109V98.5H65.1675V91.6318H66.3101L66.3418 92.7109ZM68.4873 91.5938L68.481 92.6855C68.3836 92.6644 68.2905 92.6517 68.2017 92.6475C68.117 92.639 68.0197 92.6348 67.9097 92.6348C67.6388 92.6348 67.3997 92.6771 67.1924 92.7617C66.985 92.8464 66.8094 92.9648 66.6655 93.1172C66.5216 93.2695 66.4074 93.4515 66.3228 93.6631C66.2424 93.8704 66.1895 94.099 66.1641 94.3486L65.834 94.5391C65.834 94.1243 65.8742 93.735 65.9546 93.3711C66.0392 93.0072 66.1683 92.6855 66.3418 92.4062C66.5153 92.1227 66.7354 91.9027 67.002 91.7461C67.2728 91.5853 67.5944 91.5049 67.9668 91.5049C68.0514 91.5049 68.1488 91.5155 68.2588 91.5366C68.3688 91.5535 68.445 91.5726 68.4873 91.5938ZM73.3687 97.3257V93.79C73.3687 93.5192 73.3136 93.2843 73.2036 93.0854C73.0978 92.8823 72.937 92.7257 72.7212 92.6157C72.5054 92.5057 72.2388 92.4507 71.9214 92.4507C71.6252 92.4507 71.3649 92.5015 71.1406 92.603C70.9206 92.7046 70.7471 92.8379 70.6201 93.0029C70.4974 93.168 70.436 93.3457 70.436 93.5361H69.2617C69.2617 93.2907 69.3252 93.0474 69.4521 92.8062C69.5791 92.5649 69.7611 92.347 69.998 92.1523C70.2393 91.9535 70.527 91.7969 70.8613 91.6826C71.1999 91.5641 71.5765 91.5049 71.9912 91.5049C72.4906 91.5049 72.9307 91.5895 73.3115 91.7588C73.6966 91.9281 73.9971 92.1841 74.2129 92.5269C74.4329 92.8654 74.543 93.2907 74.543 93.8027V97.002C74.543 97.2305 74.562 97.4738 74.6001 97.7319C74.6424 97.9901 74.7038 98.2122 74.7842 98.3984V98.5H73.5591C73.4998 98.3646 73.4533 98.1847 73.4194 97.9604C73.3856 97.7319 73.3687 97.5203 73.3687 97.3257ZM73.5718 94.3359L73.5845 95.1611H72.3975C72.0632 95.1611 71.7648 95.1886 71.5024 95.2437C71.2401 95.2944 71.02 95.3727 70.8423 95.4785C70.6646 95.5843 70.5291 95.7176 70.436 95.8784C70.3429 96.035 70.2964 96.2191 70.2964 96.4307C70.2964 96.6465 70.3451 96.8433 70.4424 97.021C70.5397 97.1987 70.6857 97.3405 70.8804 97.4463C71.0793 97.5479 71.3226 97.5986 71.6104 97.5986C71.9701 97.5986 72.2874 97.5225 72.5625 97.3701C72.8376 97.2178 73.0555 97.0316 73.2163 96.8115C73.3813 96.5915 73.4702 96.3778 73.4829 96.1704L73.9844 96.7354C73.9548 96.9131 73.8743 97.1099 73.7432 97.3257C73.612 97.5415 73.4364 97.7489 73.2163 97.9478C73.0005 98.1424 72.7424 98.3053 72.4419 98.4365C72.1457 98.5635 71.8114 98.627 71.439 98.627C70.9735 98.627 70.5651 98.536 70.2139 98.354C69.8669 98.172 69.596 97.9287 69.4014 97.624C69.2109 97.3151 69.1157 96.9702 69.1157 96.5894C69.1157 96.2212 69.1877 95.8975 69.3315 95.6182C69.4754 95.3346 69.6828 95.0998 69.9536 94.9136C70.2244 94.7231 70.5503 94.5793 70.9312 94.4819C71.312 94.3846 71.7373 94.3359 72.207 94.3359H73.5718ZM77.5645 92.9521V101.141H76.3838V91.6318H77.4629L77.5645 92.9521ZM82.1919 95.0088V95.1421C82.1919 95.6414 82.1326 96.1048 82.0142 96.5322C81.8957 96.9554 81.7222 97.3236 81.4937 97.6367C81.2694 97.9499 80.9922 98.1932 80.6621 98.3667C80.332 98.5402 79.9533 98.627 79.5259 98.627C79.09 98.627 78.7049 98.555 78.3706 98.4111C78.0363 98.2673 77.7528 98.0578 77.52 97.7827C77.2873 97.5076 77.1011 97.1776 76.9614 96.7925C76.826 96.4074 76.7329 95.9736 76.6821 95.4912V94.7803C76.7329 94.2725 76.8281 93.8175 76.9678 93.4155C77.1074 93.0135 77.2915 92.6707 77.52 92.3872C77.7528 92.0994 78.0342 91.8815 78.3643 91.7334C78.6943 91.5811 79.0752 91.5049 79.5068 91.5049C79.9385 91.5049 80.3215 91.5895 80.6558 91.7588C80.9901 91.9238 81.2715 92.1608 81.5 92.4697C81.7285 92.7786 81.8999 93.1489 82.0142 93.5806C82.1326 94.008 82.1919 94.484 82.1919 95.0088ZM81.0112 95.1421V95.0088C81.0112 94.666 80.9753 94.3444 80.9033 94.0439C80.8314 93.7393 80.7192 93.4727 80.5669 93.2441C80.4188 93.0114 80.2284 92.8294 79.9956 92.6982C79.7629 92.5628 79.4857 92.4951 79.1641 92.4951C78.8678 92.4951 78.6097 92.5459 78.3896 92.6475C78.1738 92.749 77.9897 92.8866 77.8374 93.0601C77.6851 93.2293 77.5602 93.424 77.4629 93.644C77.3698 93.8599 77.3 94.0841 77.2534 94.3169V95.9609C77.3381 96.2572 77.4565 96.5365 77.6089 96.7988C77.7612 97.057 77.9644 97.2664 78.2183 97.4272C78.4722 97.5838 78.7917 97.6621 79.1768 97.6621C79.4941 97.6621 79.7671 97.5965 79.9956 97.4653C80.2284 97.3299 80.4188 97.1458 80.5669 96.9131C80.7192 96.6803 80.8314 96.4137 80.9033 96.1133C80.9753 95.8086 81.0112 95.4849 81.0112 95.1421Z",fill:"#0F172A"})),{__:Ct}=wp.i18n,{ToggleControl:tt,SelectControl:lt}=wp.components,{jetEngineVersion:rt}=window.JetFormEditorData,nt=function(e){const{listingTypes:C,attributes:t,setAttributes:l,isSelected:r,editProps:{uniqKey:n,attrHelp:a}}=e,{field_options_from:i=""}=t;return Boolean(rt.length)&&["terms","posts","generate"].includes(i)&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)(tt,{key:n("use_custom_template"),label:Ct("Use custom template","jet-form-builder"),checked:t.custom_item_template,help:a("custom_item_template"),onChange:e=>l({custom_item_template:e})}),t.custom_item_template&&(0,o.createElement)(lt,{key:n("SelectControl-custom_item_template_id"),label:Ct("Choose custom template","jet-form-builder"),value:t.custom_item_template_id,options:C,onChange:e=>l({custom_item_template_id:e})}))},{AdvancedFields:ot,ToolBarFields:at,FieldControl:it,BlockName:st,BlockLabel:ct,BlockDescription:ut,BlockAdvancedValue:dt}=JetFBComponents,{useUniqueNameOnDuplicate:mt}=JetFBHooks,{__:pt}=wp.i18n,{InspectorControls:ft,useBlockProps:Vt,BlockSettingsMenuControls:gt}=wp.blockEditor,{SVG:bt,Path:_t}=wp.primitives,{PanelBody:ht,TextControl:Ht,ToolbarButton:yt}=wp.components,Mt=window.JetFormOptionFieldData,vt=JSON.parse('{"apiVersion":3,"name":"jet-forms/checkbox-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","checkbox"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Checkbox Field","description":"","icon":"\\n\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"custom_option":{"type":"object","default":{"allow":false,"label":"+ Add New"}},"custom_item_template":{"type":"boolean","default":false},"custom_item_template_id":{"type":"string","default":""},"generator_numbers_min":{"type":"number","default":""},"generator_numbers_max":{"type":"number","default":""},"generator_numbers_step":{"type":"number","default":""},"glossary_id":{"type":"string","default":""},"field_options_from":{"type":"string","default":"manual_input"},"field_options":{"type":"array","default":[]},"field_options_post_type":{"type":"string","default":"post"},"field_options_tax":{"type":"string","default":"category"},"field_options_key":{"type":"string","default":""},"generator_function":{"type":"string","default":""},"generator_field":{"type":"string","default":""},"generator_args":{"type":"object","default":{}},"generator_auto_update":{"type":"boolean","default":false},"generator_listen_field":{"type":["string","array"],"default":""},"generator_require_all_filled":{"type":"boolean","default":false},"generator_update_on_button":{"type":"string","default":""},"generator_update_on_button_class":{"type":"string","default":""},"generator_cache_timeout":{"type":"number","default":60},"calculated_value_from_key":{"type":"string","default":""},"value_from_key":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewStyle":"jet-fb-option-field-checkbox","style":"jet-fb-option-field-checkbox"}'),{__:Zt}=wp.i18n,{createBlock:wt}=wp.blocks,{name:Lt,icon:Et}=vt,kt={icon:(0,o.createElement)("span",{dangerouslySetInnerHTML:{__html:Et}}),description:Zt("Make a list of options for the users to choose several variants \nwith a multi-optional field. Allow to pick as many variants as the visitor needs.","jet-form-builder"),edit:function(e){const C=Vt();mt();const{isSelected:t,editProps:{uniqKey:l},attributes:r,setAttributes:n}=e;return r.isPreview?(0,o.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},et):(0,o.createElement)(o.Fragment,null,t&&(0,o.createElement)(gt,null),(0,o.createElement)(at,null,(0,o.createElement)(yt,{icon:r.custom_option.allow?(0,o.createElement)("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,o.createElement)("rect",{width:"32",height:"32",rx:"2",fill:"#101517"}),(0,o.createElement)("path",{d:"M30 16.796L18.044 28.8813L14 30L15.156 26.0867L27.1107 14L30 16.796Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M12 8H6V21H17.3398L15.3398 23H6L5.7959 22.9893C4.85435 22.8938 4.1062 22.1457 4.01074 21.2041L4 21V8C4 6.89543 4.89543 6 6 6H12V8Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M21 17.3398L19 19.3398V15H21V17.3398Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M19 3H21V6H24V8H21V11H19V8H16V6H19V3Z",fill:"currentColor"})):(0,o.createElement)("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,o.createElement)("path",{d:"M30 16.796L18.044 28.8813L14 30L15.156 26.0867L27.1107 14L30 16.796Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M12 8H6V21H17.3398L15.3398 23H6L5.7959 22.9893C4.85435 22.8938 4.1062 22.1457 4.01074 21.2041L4 21V8C4 6.89543 4.89543 6 6 6H12V8Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M21 17.3398L19 19.3398V15H21V17.3398Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M19 3H21V6H24V8H21V11H19V8H16V6H19V3Z",fill:"currentColor"})),title:r.custom_option.allow?pt("Disable custom options","jet-form-builder"):pt("Enable custom options","jet-form-builder"),onClick:()=>n({custom_option:{...r.custom_option,allow:!r.custom_option.allow}}),isActive:r.custom_option.allow})),(0,o.createElement)(ft,{key:l("InspectorControls")},(0,o.createElement)(ht,{title:pt("General","jet-form-builder")},(0,o.createElement)(ct,null),(0,o.createElement)(st,null),(0,o.createElement)(ut,null)),(0,o.createElement)(ht,{title:pt("Value","jet-form-builder")},(0,o.createElement)(dt,null),r.custom_option.allow&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("hr",null),(0,o.createElement)(Ht,{label:pt("Button label","jet-form-builder"),onChange:e=>n({custom_option:{...r.custom_option,label:e}}),help:pt("For custom option","jet-form-builder"),value:r.custom_option.label}))),(0,o.createElement)(ot,null)),(0,o.createElement)("div",{...C,key:l("viewBlock")},(0,o.createElement)(b,{key:l("SelectRadioCheckPlaceholder"),scriptData:Mt,...e}),(0,o.createElement)(EC,{...e},(0,o.createElement)(nt,{listingTypes:Mt.listings_list,...e}),(0,o.createElement)(it,{type:"custom_settings",key:l("customSettingsFields"),...e}))))},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>wt("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/radio-field","jet-forms/select-field","jet-forms/text-field"],transform:e=>(e.custom_option=!!e.custom_option?.allow,wt(Lt,{...e})),priority:0}]}},jt=(0,o.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M19.8262 51.0967H17.167V50.0234H19.8262C20.3411 50.0234 20.7581 49.9414 21.0771 49.7773C21.3962 49.6133 21.6286 49.3854 21.7744 49.0938C21.9248 48.8021 22 48.4694 22 48.0957C22 47.7539 21.9248 47.4326 21.7744 47.1318C21.6286 46.8311 21.3962 46.5895 21.0771 46.4072C20.7581 46.2204 20.3411 46.127 19.8262 46.127H17.4746V55H16.1553V45.0469H19.8262C20.5781 45.0469 21.2139 45.1768 21.7334 45.4365C22.2529 45.6963 22.6471 46.0563 22.916 46.5166C23.1849 46.9723 23.3193 47.4941 23.3193 48.082C23.3193 48.7201 23.1849 49.2646 22.916 49.7158C22.6471 50.167 22.2529 50.5111 21.7334 50.748C21.2139 50.9805 20.5781 51.0967 19.8262 51.0967ZM26.0605 48.7656V55H24.7959V47.6035H26.0264L26.0605 48.7656ZM28.3711 47.5625L28.3643 48.7383C28.2594 48.7155 28.1592 48.7018 28.0635 48.6973C27.9723 48.6882 27.8675 48.6836 27.749 48.6836C27.4574 48.6836 27.1999 48.7292 26.9766 48.8203C26.7533 48.9115 26.5641 49.0391 26.4092 49.2031C26.2542 49.3672 26.1312 49.5632 26.04 49.791C25.9535 50.0143 25.8965 50.2604 25.8691 50.5293L25.5137 50.7344C25.5137 50.2878 25.557 49.8685 25.6436 49.4766C25.7347 49.0846 25.8737 48.7383 26.0605 48.4375C26.2474 48.1322 26.4844 47.8952 26.7715 47.7266C27.0632 47.5534 27.4095 47.4668 27.8105 47.4668C27.9017 47.4668 28.0065 47.4782 28.125 47.501C28.2435 47.5192 28.3255 47.5397 28.3711 47.5625ZM32.4727 55.1367C31.9577 55.1367 31.4906 55.0501 31.0713 54.877C30.6566 54.6992 30.2988 54.4508 29.998 54.1318C29.7018 53.8128 29.474 53.4346 29.3145 52.9971C29.1549 52.5596 29.0752 52.0811 29.0752 51.5615V51.2744C29.0752 50.6729 29.1641 50.1374 29.3418 49.668C29.5195 49.194 29.7611 48.793 30.0664 48.4648C30.3717 48.1367 30.7181 47.8883 31.1055 47.7197C31.4928 47.5511 31.8939 47.4668 32.3086 47.4668C32.8372 47.4668 33.293 47.5579 33.6758 47.7402C34.0632 47.9225 34.3799 48.1777 34.626 48.5059C34.8721 48.8294 35.0544 49.2122 35.1729 49.6543C35.2913 50.0918 35.3506 50.5703 35.3506 51.0898V51.6572H29.8271V50.625H34.0859V50.5293C34.0677 50.2012 33.9993 49.8822 33.8809 49.5723C33.7669 49.2624 33.5846 49.0072 33.334 48.8066C33.0833 48.6061 32.7415 48.5059 32.3086 48.5059C32.0215 48.5059 31.7572 48.5674 31.5156 48.6904C31.2741 48.8089 31.0667 48.9867 30.8936 49.2236C30.7204 49.4606 30.5859 49.75 30.4902 50.0918C30.3945 50.4336 30.3467 50.8278 30.3467 51.2744V51.5615C30.3467 51.9124 30.3945 52.2428 30.4902 52.5527C30.5905 52.8581 30.734 53.127 30.9209 53.3594C31.1123 53.5918 31.3424 53.7741 31.6113 53.9062C31.8848 54.0384 32.1947 54.1045 32.541 54.1045C32.9876 54.1045 33.3659 54.0133 33.6758 53.8311C33.9857 53.6488 34.2568 53.4049 34.4893 53.0996L35.2549 53.708C35.0954 53.9495 34.8926 54.1797 34.6465 54.3984C34.4004 54.6172 34.0973 54.7949 33.7373 54.9316C33.3818 55.0684 32.9603 55.1367 32.4727 55.1367ZM38.7139 55H37.4492V46.8242C37.4492 46.291 37.5449 45.8421 37.7363 45.4775C37.9323 45.1084 38.2126 44.8304 38.5771 44.6436C38.9417 44.4521 39.3747 44.3564 39.876 44.3564C40.0218 44.3564 40.1676 44.3656 40.3135 44.3838C40.4639 44.402 40.6097 44.4294 40.751 44.4658L40.6826 45.498C40.5869 45.4753 40.4775 45.4593 40.3545 45.4502C40.236 45.4411 40.1175 45.4365 39.999 45.4365C39.7301 45.4365 39.4977 45.4912 39.3018 45.6006C39.1104 45.7054 38.9645 45.8604 38.8643 46.0654C38.764 46.2705 38.7139 46.5234 38.7139 46.8242V55ZM40.2861 47.6035V48.5742H36.2803V47.6035H40.2861ZM43.5811 55H42.3164V46.8242C42.3164 46.291 42.4121 45.8421 42.6035 45.4775C42.7995 45.1084 43.0798 44.8304 43.4443 44.6436C43.8089 44.4521 44.2419 44.3564 44.7432 44.3564C44.889 44.3564 45.0348 44.3656 45.1807 44.3838C45.3311 44.402 45.4769 44.4294 45.6182 44.4658L45.5498 45.498C45.4541 45.4753 45.3447 45.4593 45.2217 45.4502C45.1032 45.4411 44.9847 45.4365 44.8662 45.4365C44.5973 45.4365 44.3649 45.4912 44.1689 45.6006C43.9775 45.7054 43.8317 45.8604 43.7314 46.0654C43.6312 46.2705 43.5811 46.5234 43.5811 46.8242V55ZM45.1533 47.6035V48.5742H41.1475V47.6035H45.1533ZM49.4668 55.1367C48.9518 55.1367 48.4847 55.0501 48.0654 54.877C47.6507 54.6992 47.293 54.4508 46.9922 54.1318C46.696 53.8128 46.4681 53.4346 46.3086 52.9971C46.1491 52.5596 46.0693 52.0811 46.0693 51.5615V51.2744C46.0693 50.6729 46.1582 50.1374 46.3359 49.668C46.5137 49.194 46.7552 48.793 47.0605 48.4648C47.3659 48.1367 47.7122 47.8883 48.0996 47.7197C48.487 47.5511 48.888 47.4668 49.3027 47.4668C49.8314 47.4668 50.2871 47.5579 50.6699 47.7402C51.0573 47.9225 51.374 48.1777 51.6201 48.5059C51.8662 48.8294 52.0485 49.2122 52.167 49.6543C52.2855 50.0918 52.3447 50.5703 52.3447 51.0898V51.6572H46.8213V50.625H51.0801V50.5293C51.0618 50.2012 50.9935 49.8822 50.875 49.5723C50.7611 49.2624 50.5788 49.0072 50.3281 48.8066C50.0775 48.6061 49.7357 48.5059 49.3027 48.5059C49.0156 48.5059 48.7513 48.5674 48.5098 48.6904C48.2682 48.8089 48.0609 48.9867 47.8877 49.2236C47.7145 49.4606 47.5801 49.75 47.4844 50.0918C47.3887 50.4336 47.3408 50.8278 47.3408 51.2744V51.5615C47.3408 51.9124 47.3887 52.2428 47.4844 52.5527C47.5846 52.8581 47.7282 53.127 47.915 53.3594C48.1064 53.5918 48.3366 53.7741 48.6055 53.9062C48.8789 54.0384 49.1888 54.1045 49.5352 54.1045C49.9818 54.1045 50.36 54.0133 50.6699 53.8311C50.9798 53.6488 51.251 53.4049 51.4834 53.0996L52.249 53.708C52.0895 53.9495 51.8867 54.1797 51.6406 54.3984C51.3945 54.6172 51.0915 54.7949 50.7314 54.9316C50.376 55.0684 49.9544 55.1367 49.4668 55.1367ZM55.0859 48.7656V55H53.8213V47.6035H55.0518L55.0859 48.7656ZM57.3965 47.5625L57.3896 48.7383C57.2848 48.7155 57.1846 48.7018 57.0889 48.6973C56.9977 48.6882 56.8929 48.6836 56.7744 48.6836C56.4827 48.6836 56.2253 48.7292 56.002 48.8203C55.7786 48.9115 55.5895 49.0391 55.4346 49.2031C55.2796 49.3672 55.1566 49.5632 55.0654 49.791C54.9788 50.0143 54.9219 50.2604 54.8945 50.5293L54.5391 50.7344C54.5391 50.2878 54.5824 49.8685 54.6689 49.4766C54.7601 49.0846 54.8991 48.7383 55.0859 48.4375C55.2728 48.1322 55.5098 47.8952 55.7969 47.7266C56.0885 47.5534 56.4349 47.4668 56.8359 47.4668C56.9271 47.4668 57.0319 47.4782 57.1504 47.501C57.2689 47.5192 57.3509 47.5397 57.3965 47.5625ZM61.498 55.1367C60.9831 55.1367 60.516 55.0501 60.0967 54.877C59.682 54.6992 59.3242 54.4508 59.0234 54.1318C58.7272 53.8128 58.4993 53.4346 58.3398 52.9971C58.1803 52.5596 58.1006 52.0811 58.1006 51.5615V51.2744C58.1006 50.6729 58.1895 50.1374 58.3672 49.668C58.5449 49.194 58.7865 48.793 59.0918 48.4648C59.3971 48.1367 59.7435 47.8883 60.1309 47.7197C60.5182 47.5511 60.9193 47.4668 61.334 47.4668C61.8626 47.4668 62.3184 47.5579 62.7012 47.7402C63.0885 47.9225 63.4053 48.1777 63.6514 48.5059C63.8975 48.8294 64.0798 49.2122 64.1982 49.6543C64.3167 50.0918 64.376 50.5703 64.376 51.0898V51.6572H58.8525V50.625H63.1113V50.5293C63.0931 50.2012 63.0247 49.8822 62.9062 49.5723C62.7923 49.2624 62.61 49.0072 62.3594 48.8066C62.1087 48.6061 61.7669 48.5059 61.334 48.5059C61.0469 48.5059 60.7826 48.5674 60.541 48.6904C60.2995 48.8089 60.0921 48.9867 59.9189 49.2236C59.7458 49.4606 59.6113 49.75 59.5156 50.0918C59.4199 50.4336 59.3721 50.8278 59.3721 51.2744V51.5615C59.3721 51.9124 59.4199 52.2428 59.5156 52.5527C59.6159 52.8581 59.7594 53.127 59.9463 53.3594C60.1377 53.5918 60.3678 53.7741 60.6367 53.9062C60.9102 54.0384 61.2201 54.1045 61.5664 54.1045C62.013 54.1045 62.3913 54.0133 62.7012 53.8311C63.0111 53.6488 63.2822 53.4049 63.5146 53.0996L64.2803 53.708C64.1208 53.9495 63.918 54.1797 63.6719 54.3984C63.4258 54.6172 63.1227 54.7949 62.7627 54.9316C62.4072 55.0684 61.9857 55.1367 61.498 55.1367ZM70.5146 53.5645V44.5H71.7861V55H70.624L70.5146 53.5645ZM65.5381 51.3838V51.2402C65.5381 50.6751 65.6064 50.1624 65.7432 49.7021C65.8844 49.2373 66.0827 48.8385 66.3379 48.5059C66.5977 48.1732 66.9053 47.918 67.2607 47.7402C67.6208 47.5579 68.0218 47.4668 68.4639 47.4668C68.9287 47.4668 69.3343 47.5488 69.6807 47.7129C70.0316 47.8724 70.3278 48.1071 70.5693 48.417C70.8154 48.7223 71.0091 49.0915 71.1504 49.5244C71.2917 49.9574 71.3896 50.4473 71.4443 50.9941V51.623C71.3942 52.1654 71.2962 52.653 71.1504 53.0859C71.0091 53.5189 70.8154 53.888 70.5693 54.1934C70.3278 54.4987 70.0316 54.7334 69.6807 54.8975C69.3298 55.057 68.9196 55.1367 68.4502 55.1367C68.0173 55.1367 67.6208 55.0433 67.2607 54.8564C66.9053 54.6696 66.5977 54.4076 66.3379 54.0703C66.0827 53.7331 65.8844 53.3366 65.7432 52.8809C65.6064 52.4206 65.5381 51.9215 65.5381 51.3838ZM66.8096 51.2402V51.3838C66.8096 51.7529 66.846 52.0993 66.9189 52.4229C66.9964 52.7464 67.1149 53.0312 67.2744 53.2773C67.4339 53.5234 67.6367 53.7171 67.8828 53.8584C68.1289 53.9951 68.4229 54.0635 68.7646 54.0635C69.1839 54.0635 69.528 53.9746 69.7969 53.7969C70.0703 53.6191 70.2891 53.3844 70.4531 53.0928C70.6172 52.8011 70.7448 52.4844 70.8359 52.1426V50.4951C70.7812 50.2445 70.7015 50.0029 70.5967 49.7705C70.4964 49.5335 70.3643 49.3239 70.2002 49.1416C70.0407 48.9548 69.8424 48.8066 69.6055 48.6973C69.373 48.5879 69.0973 48.5332 68.7783 48.5332C68.432 48.5332 68.1335 48.6061 67.8828 48.752C67.6367 48.8932 67.4339 49.0892 67.2744 49.3398C67.1149 49.5859 66.9964 49.873 66.9189 50.2012C66.846 50.5247 66.8096 50.8711 66.8096 51.2402ZM78.4854 49.0732V55H77.2139V47.6035H78.417L78.4854 49.0732ZM78.2256 51.0215L77.6377 51.001C77.6423 50.4951 77.7083 50.028 77.8359 49.5996C77.9635 49.1667 78.1527 48.7907 78.4033 48.4717C78.654 48.1527 78.9661 47.9066 79.3398 47.7334C79.7135 47.5557 80.1465 47.4668 80.6387 47.4668C80.985 47.4668 81.304 47.5169 81.5957 47.6172C81.8874 47.7129 82.1403 47.8656 82.3545 48.0752C82.5687 48.2848 82.735 48.5537 82.8535 48.8818C82.972 49.21 83.0312 49.6064 83.0312 50.0713V55H81.7666V50.1328C81.7666 49.7454 81.7005 49.4355 81.5684 49.2031C81.4408 48.9707 81.2585 48.8021 81.0215 48.6973C80.7845 48.5879 80.5065 48.5332 80.1875 48.5332C79.8138 48.5332 79.5016 48.5993 79.251 48.7314C79.0003 48.8636 78.7998 49.0459 78.6494 49.2783C78.499 49.5107 78.3896 49.7773 78.3213 50.0781C78.2575 50.3743 78.2256 50.6888 78.2256 51.0215ZM83.0176 50.3242L82.1699 50.584C82.1745 50.1784 82.2406 49.7887 82.3682 49.415C82.5003 49.0413 82.6895 48.7087 82.9355 48.417C83.1862 48.1253 83.4938 47.8952 83.8584 47.7266C84.223 47.5534 84.64 47.4668 85.1094 47.4668C85.5059 47.4668 85.8568 47.5192 86.1621 47.624C86.472 47.7288 86.7318 47.8906 86.9414 48.1094C87.1556 48.3236 87.3174 48.5993 87.4268 48.9365C87.5361 49.2738 87.5908 49.6748 87.5908 50.1396V55H86.3193V50.126C86.3193 49.7113 86.2533 49.39 86.1211 49.1621C85.9935 48.9297 85.8112 48.7679 85.5742 48.6768C85.3418 48.5811 85.0638 48.5332 84.7402 48.5332C84.4622 48.5332 84.2161 48.5811 84.002 48.6768C83.7878 48.7725 83.6077 48.9046 83.4619 49.0732C83.3161 49.2373 83.2044 49.4264 83.127 49.6406C83.054 49.8548 83.0176 50.0827 83.0176 50.3242ZM92.5742 55.1367C92.0592 55.1367 91.5921 55.0501 91.1729 54.877C90.7581 54.6992 90.4004 54.4508 90.0996 54.1318C89.8034 53.8128 89.5755 53.4346 89.416 52.9971C89.2565 52.5596 89.1768 52.0811 89.1768 51.5615V51.2744C89.1768 50.6729 89.2656 50.1374 89.4434 49.668C89.6211 49.194 89.8626 48.793 90.168 48.4648C90.4733 48.1367 90.8197 47.8883 91.207 47.7197C91.5944 47.5511 91.9954 47.4668 92.4102 47.4668C92.9388 47.4668 93.3945 47.5579 93.7773 47.7402C94.1647 47.9225 94.4814 48.1777 94.7275 48.5059C94.9736 48.8294 95.1559 49.2122 95.2744 49.6543C95.3929 50.0918 95.4521 50.5703 95.4521 51.0898V51.6572H89.9287V50.625H94.1875V50.5293C94.1693 50.2012 94.1009 49.8822 93.9824 49.5723C93.8685 49.2624 93.6862 49.0072 93.4355 48.8066C93.1849 48.6061 92.8431 48.5059 92.4102 48.5059C92.123 48.5059 91.8587 48.5674 91.6172 48.6904C91.3757 48.8089 91.1683 48.9867 90.9951 49.2236C90.8219 49.4606 90.6875 49.75 90.5918 50.0918C90.4961 50.4336 90.4482 50.8278 90.4482 51.2744V51.5615C90.4482 51.9124 90.4961 52.2428 90.5918 52.5527C90.6921 52.8581 90.8356 53.127 91.0225 53.3594C91.2139 53.5918 91.444 53.7741 91.7129 53.9062C91.9863 54.0384 92.2962 54.1045 92.6426 54.1045C93.0892 54.1045 93.4674 54.0133 93.7773 53.8311C94.0872 53.6488 94.3584 53.4049 94.5908 53.0996L95.3564 53.708C95.1969 53.9495 94.9941 54.1797 94.748 54.3984C94.502 54.6172 94.1989 54.7949 93.8389 54.9316C93.4834 55.0684 93.0618 55.1367 92.5742 55.1367ZM100.025 47.6035V48.5742H96.0264V47.6035H100.025ZM97.3799 45.8057H98.6445V53.168C98.6445 53.4186 98.6833 53.6077 98.7607 53.7354C98.8382 53.863 98.9385 53.9473 99.0615 53.9883C99.1846 54.0293 99.3167 54.0498 99.458 54.0498C99.5628 54.0498 99.6722 54.0407 99.7861 54.0225C99.9046 53.9997 99.9935 53.9814 100.053 53.9678L100.06 55C99.9593 55.0319 99.8271 55.0615 99.6631 55.0889C99.5036 55.1208 99.3099 55.1367 99.082 55.1367C98.7721 55.1367 98.4873 55.0752 98.2275 54.9521C97.9678 54.8291 97.7604 54.624 97.6055 54.3369C97.4551 54.0452 97.3799 53.6533 97.3799 53.1611V45.8057ZM102.773 44.5V55H101.509V44.5H102.773ZM102.473 51.0215L101.946 51.001C101.951 50.4951 102.026 50.028 102.172 49.5996C102.318 49.1667 102.523 48.7907 102.787 48.4717C103.051 48.1527 103.366 47.9066 103.73 47.7334C104.1 47.5557 104.507 47.4668 104.954 47.4668C105.319 47.4668 105.647 47.5169 105.938 47.6172C106.23 47.7129 106.479 47.8678 106.684 48.082C106.893 48.2962 107.053 48.5742 107.162 48.916C107.271 49.2533 107.326 49.6657 107.326 50.1533V55H106.055V50.1396C106.055 49.7523 105.998 49.4424 105.884 49.21C105.77 48.973 105.604 48.8021 105.385 48.6973C105.166 48.5879 104.897 48.5332 104.578 48.5332C104.264 48.5332 103.977 48.5993 103.717 48.7314C103.462 48.8636 103.241 49.0459 103.054 49.2783C102.871 49.5107 102.728 49.7773 102.623 50.0781C102.523 50.3743 102.473 50.6888 102.473 51.0215ZM108.885 51.3838V51.2266C108.885 50.6934 108.962 50.1989 109.117 49.7432C109.272 49.2829 109.495 48.8841 109.787 48.5469C110.079 48.2051 110.432 47.9408 110.847 47.7539C111.261 47.5625 111.726 47.4668 112.241 47.4668C112.761 47.4668 113.228 47.5625 113.643 47.7539C114.062 47.9408 114.417 48.2051 114.709 48.5469C115.005 48.8841 115.231 49.2829 115.386 49.7432C115.541 50.1989 115.618 50.6934 115.618 51.2266V51.3838C115.618 51.917 115.541 52.4115 115.386 52.8672C115.231 53.3229 115.005 53.7217 114.709 54.0635C114.417 54.4007 114.064 54.665 113.649 54.8564C113.239 55.0433 112.774 55.1367 112.255 55.1367C111.735 55.1367 111.268 55.0433 110.854 54.8564C110.439 54.665 110.083 54.4007 109.787 54.0635C109.495 53.7217 109.272 53.3229 109.117 52.8672C108.962 52.4115 108.885 51.917 108.885 51.3838ZM110.149 51.2266V51.3838C110.149 51.7529 110.193 52.1016 110.279 52.4297C110.366 52.7533 110.496 53.0404 110.669 53.291C110.847 53.5417 111.068 53.7399 111.332 53.8857C111.596 54.027 111.904 54.0977 112.255 54.0977C112.601 54.0977 112.904 54.027 113.164 53.8857C113.428 53.7399 113.647 53.5417 113.82 53.291C113.993 53.0404 114.123 52.7533 114.21 52.4297C114.301 52.1016 114.347 51.7529 114.347 51.3838V51.2266C114.347 50.862 114.301 50.5179 114.21 50.1943C114.123 49.8662 113.991 49.5768 113.813 49.3262C113.64 49.071 113.422 48.8704 113.157 48.7246C112.897 48.5788 112.592 48.5059 112.241 48.5059C111.895 48.5059 111.59 48.5788 111.325 48.7246C111.065 48.8704 110.847 49.071 110.669 49.3262C110.496 49.5768 110.366 49.8662 110.279 50.1943C110.193 50.5179 110.149 50.862 110.149 51.2266ZM121.866 53.5645V44.5H123.138V55H121.976L121.866 53.5645ZM116.89 51.3838V51.2402C116.89 50.6751 116.958 50.1624 117.095 49.7021C117.236 49.2373 117.434 48.8385 117.689 48.5059C117.949 48.1732 118.257 47.918 118.612 47.7402C118.972 47.5579 119.373 47.4668 119.815 47.4668C120.28 47.4668 120.686 47.5488 121.032 47.7129C121.383 47.8724 121.679 48.1071 121.921 48.417C122.167 48.7223 122.361 49.0915 122.502 49.5244C122.643 49.9574 122.741 50.4473 122.796 50.9941V51.623C122.746 52.1654 122.648 52.653 122.502 53.0859C122.361 53.5189 122.167 53.888 121.921 54.1934C121.679 54.4987 121.383 54.7334 121.032 54.8975C120.681 55.057 120.271 55.1367 119.802 55.1367C119.369 55.1367 118.972 55.0433 118.612 54.8564C118.257 54.6696 117.949 54.4076 117.689 54.0703C117.434 53.7331 117.236 53.3366 117.095 52.8809C116.958 52.4206 116.89 51.9215 116.89 51.3838ZM118.161 51.2402V51.3838C118.161 51.7529 118.198 52.0993 118.271 52.4229C118.348 52.7464 118.466 53.0312 118.626 53.2773C118.785 53.5234 118.988 53.7171 119.234 53.8584C119.48 53.9951 119.774 54.0635 120.116 54.0635C120.535 54.0635 120.88 53.9746 121.148 53.7969C121.422 53.6191 121.641 53.3844 121.805 53.0928C121.969 52.8011 122.096 52.4844 122.188 52.1426V50.4951C122.133 50.2445 122.053 50.0029 121.948 49.7705C121.848 49.5335 121.716 49.3239 121.552 49.1416C121.392 48.9548 121.194 48.8066 120.957 48.6973C120.725 48.5879 120.449 48.5332 120.13 48.5332C119.784 48.5332 119.485 48.6061 119.234 48.752C118.988 48.8932 118.785 49.0892 118.626 49.3398C118.466 49.5859 118.348 49.873 118.271 50.2012C118.198 50.5247 118.161 50.8711 118.161 51.2402ZM128.244 51.3838V51.2266C128.244 50.6934 128.322 50.1989 128.477 49.7432C128.632 49.2829 128.855 48.8841 129.146 48.5469C129.438 48.2051 129.791 47.9408 130.206 47.7539C130.621 47.5625 131.086 47.4668 131.601 47.4668C132.12 47.4668 132.587 47.5625 133.002 47.7539C133.421 47.9408 133.777 48.2051 134.068 48.5469C134.365 48.8841 134.59 49.2829 134.745 49.7432C134.9 50.1989 134.978 50.6934 134.978 51.2266V51.3838C134.978 51.917 134.9 52.4115 134.745 52.8672C134.59 53.3229 134.365 53.7217 134.068 54.0635C133.777 54.4007 133.424 54.665 133.009 54.8564C132.599 55.0433 132.134 55.1367 131.614 55.1367C131.095 55.1367 130.628 55.0433 130.213 54.8564C129.798 54.665 129.443 54.4007 129.146 54.0635C128.855 53.7217 128.632 53.3229 128.477 52.8672C128.322 52.4115 128.244 51.917 128.244 51.3838ZM129.509 51.2266V51.3838C129.509 51.7529 129.552 52.1016 129.639 52.4297C129.725 52.7533 129.855 53.0404 130.028 53.291C130.206 53.5417 130.427 53.7399 130.691 53.8857C130.956 54.027 131.263 54.0977 131.614 54.0977C131.961 54.0977 132.264 54.027 132.523 53.8857C132.788 53.7399 133.007 53.5417 133.18 53.291C133.353 53.0404 133.483 52.7533 133.569 52.4297C133.66 52.1016 133.706 51.7529 133.706 51.3838V51.2266C133.706 50.862 133.66 50.5179 133.569 50.1943C133.483 49.8662 133.351 49.5768 133.173 49.3262C133 49.071 132.781 48.8704 132.517 48.7246C132.257 48.5788 131.951 48.5059 131.601 48.5059C131.254 48.5059 130.949 48.5788 130.685 48.7246C130.425 48.8704 130.206 49.071 130.028 49.3262C129.855 49.5768 129.725 49.8662 129.639 50.1943C129.552 50.5179 129.509 50.862 129.509 51.2266ZM138.45 55H137.186V46.8242C137.186 46.291 137.281 45.8421 137.473 45.4775C137.669 45.1084 137.949 44.8304 138.313 44.6436C138.678 44.4521 139.111 44.3564 139.612 44.3564C139.758 44.3564 139.904 44.3656 140.05 44.3838C140.2 44.402 140.346 44.4294 140.487 44.4658L140.419 45.498C140.323 45.4753 140.214 45.4593 140.091 45.4502C139.972 45.4411 139.854 45.4365 139.735 45.4365C139.466 45.4365 139.234 45.4912 139.038 45.6006C138.847 45.7054 138.701 45.8604 138.601 46.0654C138.5 46.2705 138.45 46.5234 138.45 46.8242V55ZM140.022 47.6035V48.5742H136.017V47.6035H140.022ZM147.863 54.0977C148.164 54.0977 148.442 54.0361 148.697 53.9131C148.952 53.79 149.162 53.6214 149.326 53.4072C149.49 53.1885 149.584 52.9401 149.606 52.6621H150.81C150.787 53.0996 150.639 53.5075 150.365 53.8857C150.096 54.2594 149.743 54.5625 149.306 54.7949C148.868 55.0228 148.387 55.1367 147.863 55.1367C147.307 55.1367 146.822 55.0387 146.407 54.8428C145.997 54.6468 145.655 54.3779 145.382 54.0361C145.113 53.6943 144.91 53.3024 144.773 52.8604C144.641 52.4137 144.575 51.9421 144.575 51.4453V51.1582C144.575 50.6615 144.641 50.1921 144.773 49.75C144.91 49.3034 145.113 48.9092 145.382 48.5674C145.655 48.2256 145.997 47.9567 146.407 47.7607C146.822 47.5648 147.307 47.4668 147.863 47.4668C148.442 47.4668 148.948 47.5853 149.381 47.8223C149.814 48.0547 150.153 48.3737 150.399 48.7793C150.65 49.1803 150.787 49.6361 150.81 50.1465H149.606C149.584 49.8411 149.497 49.5654 149.347 49.3193C149.201 49.0732 149 48.8773 148.745 48.7314C148.494 48.5811 148.201 48.5059 147.863 48.5059C147.476 48.5059 147.15 48.5833 146.886 48.7383C146.626 48.8887 146.419 49.0938 146.264 49.3535C146.113 49.6087 146.004 49.8936 145.936 50.208C145.872 50.5179 145.84 50.8346 145.84 51.1582V51.4453C145.84 51.7689 145.872 52.0879 145.936 52.4023C145.999 52.7168 146.106 53.0016 146.257 53.2568C146.412 53.512 146.619 53.7171 146.879 53.8721C147.143 54.0225 147.471 54.0977 147.863 54.0977ZM151.896 51.3838V51.2266C151.896 50.6934 151.974 50.1989 152.129 49.7432C152.284 49.2829 152.507 48.8841 152.799 48.5469C153.09 48.2051 153.444 47.9408 153.858 47.7539C154.273 47.5625 154.738 47.4668 155.253 47.4668C155.772 47.4668 156.24 47.5625 156.654 47.7539C157.074 47.9408 157.429 48.2051 157.721 48.5469C158.017 48.8841 158.243 49.2829 158.397 49.7432C158.552 50.1989 158.63 50.6934 158.63 51.2266V51.3838C158.63 51.917 158.552 52.4115 158.397 52.8672C158.243 53.3229 158.017 53.7217 157.721 54.0635C157.429 54.4007 157.076 54.665 156.661 54.8564C156.251 55.0433 155.786 55.1367 155.267 55.1367C154.747 55.1367 154.28 55.0433 153.865 54.8564C153.451 54.665 153.095 54.4007 152.799 54.0635C152.507 53.7217 152.284 53.3229 152.129 52.8672C151.974 52.4115 151.896 51.917 151.896 51.3838ZM153.161 51.2266V51.3838C153.161 51.7529 153.204 52.1016 153.291 52.4297C153.378 52.7533 153.507 53.0404 153.681 53.291C153.858 53.5417 154.079 53.7399 154.344 53.8857C154.608 54.027 154.916 54.0977 155.267 54.0977C155.613 54.0977 155.916 54.027 156.176 53.8857C156.44 53.7399 156.659 53.5417 156.832 53.291C157.005 53.0404 157.135 52.7533 157.222 52.4297C157.313 52.1016 157.358 51.7529 157.358 51.3838V51.2266C157.358 50.862 157.313 50.5179 157.222 50.1943C157.135 49.8662 157.003 49.5768 156.825 49.3262C156.652 49.071 156.433 48.8704 156.169 48.7246C155.909 48.5788 155.604 48.5059 155.253 48.5059C154.907 48.5059 154.601 48.5788 154.337 48.7246C154.077 48.8704 153.858 49.071 153.681 49.3262C153.507 49.5768 153.378 49.8662 153.291 50.1943C153.204 50.5179 153.161 50.862 153.161 51.2266ZM161.474 49.0732V55H160.202V47.6035H161.405L161.474 49.0732ZM161.214 51.0215L160.626 51.001C160.631 50.4951 160.697 50.028 160.824 49.5996C160.952 49.1667 161.141 48.7907 161.392 48.4717C161.642 48.1527 161.954 47.9066 162.328 47.7334C162.702 47.5557 163.135 47.4668 163.627 47.4668C163.973 47.4668 164.292 47.5169 164.584 47.6172C164.876 47.7129 165.129 47.8656 165.343 48.0752C165.557 48.2848 165.723 48.5537 165.842 48.8818C165.96 49.21 166.02 49.6064 166.02 50.0713V55H164.755V50.1328C164.755 49.7454 164.689 49.4355 164.557 49.2031C164.429 48.9707 164.247 48.8021 164.01 48.6973C163.773 48.5879 163.495 48.5332 163.176 48.5332C162.802 48.5332 162.49 48.5993 162.239 48.7314C161.989 48.8636 161.788 49.0459 161.638 49.2783C161.487 49.5107 161.378 49.7773 161.31 50.0781C161.246 50.3743 161.214 50.6888 161.214 51.0215ZM166.006 50.3242L165.158 50.584C165.163 50.1784 165.229 49.7887 165.356 49.415C165.489 49.0413 165.678 48.7087 165.924 48.417C166.174 48.1253 166.482 47.8952 166.847 47.7266C167.211 47.5534 167.628 47.4668 168.098 47.4668C168.494 47.4668 168.845 47.5192 169.15 47.624C169.46 47.7288 169.72 47.8906 169.93 48.1094C170.144 48.3236 170.306 48.5993 170.415 48.9365C170.524 49.2738 170.579 49.6748 170.579 50.1396V55H169.308V50.126C169.308 49.7113 169.242 49.39 169.109 49.1621C168.982 48.9297 168.799 48.7679 168.562 48.6768C168.33 48.5811 168.052 48.5332 167.729 48.5332C167.451 48.5332 167.204 48.5811 166.99 48.6768C166.776 48.7725 166.596 48.9046 166.45 49.0732C166.304 49.2373 166.193 49.4264 166.115 49.6406C166.042 49.8548 166.006 50.0827 166.006 50.3242ZM173.751 49.0732V55H172.479V47.6035H173.683L173.751 49.0732ZM173.491 51.0215L172.903 51.001C172.908 50.4951 172.974 50.028 173.102 49.5996C173.229 49.1667 173.418 48.7907 173.669 48.4717C173.92 48.1527 174.232 47.9066 174.605 47.7334C174.979 47.5557 175.412 47.4668 175.904 47.4668C176.251 47.4668 176.57 47.5169 176.861 47.6172C177.153 47.7129 177.406 47.8656 177.62 48.0752C177.834 48.2848 178.001 48.5537 178.119 48.8818C178.238 49.21 178.297 49.6064 178.297 50.0713V55H177.032V50.1328C177.032 49.7454 176.966 49.4355 176.834 49.2031C176.706 48.9707 176.524 48.8021 176.287 48.6973C176.05 48.5879 175.772 48.5332 175.453 48.5332C175.079 48.5332 174.767 48.5993 174.517 48.7314C174.266 48.8636 174.065 49.0459 173.915 49.2783C173.765 49.5107 173.655 49.7773 173.587 50.0781C173.523 50.3743 173.491 50.6888 173.491 51.0215ZM178.283 50.3242L177.436 50.584C177.44 50.1784 177.506 49.7887 177.634 49.415C177.766 49.0413 177.955 48.7087 178.201 48.417C178.452 48.1253 178.759 47.8952 179.124 47.7266C179.489 47.5534 179.906 47.4668 180.375 47.4668C180.771 47.4668 181.122 47.5192 181.428 47.624C181.738 47.7288 181.997 47.8906 182.207 48.1094C182.421 48.3236 182.583 48.5993 182.692 48.9365C182.802 49.2738 182.856 49.6748 182.856 50.1396V55H181.585V50.126C181.585 49.7113 181.519 49.39 181.387 49.1621C181.259 48.9297 181.077 48.7679 180.84 48.6768C180.607 48.5811 180.329 48.5332 180.006 48.5332C179.728 48.5332 179.482 48.5811 179.268 48.6768C179.053 48.7725 178.873 48.9046 178.728 49.0732C178.582 49.2373 178.47 49.4264 178.393 49.6406C178.32 49.8548 178.283 50.0827 178.283 50.3242ZM189.296 53.291V47.6035H190.567V55H189.357L189.296 53.291ZM189.535 51.7324L190.062 51.7188C190.062 52.2109 190.009 52.6667 189.904 53.0859C189.804 53.5007 189.64 53.8607 189.412 54.166C189.184 54.4714 188.886 54.7106 188.517 54.8838C188.147 55.0524 187.699 55.1367 187.17 55.1367C186.81 55.1367 186.479 55.0843 186.179 54.9795C185.882 54.8747 185.627 54.7129 185.413 54.4941C185.199 54.2754 185.033 53.9906 184.914 53.6396C184.8 53.2887 184.743 52.8672 184.743 52.375V47.6035H186.008V52.3887C186.008 52.7214 186.044 52.9971 186.117 53.2158C186.195 53.43 186.297 53.6009 186.425 53.7285C186.557 53.8516 186.703 53.9382 186.862 53.9883C187.026 54.0384 187.195 54.0635 187.368 54.0635C187.906 54.0635 188.332 53.9609 188.646 53.7559C188.961 53.5462 189.187 53.266 189.323 52.915C189.465 52.5596 189.535 52.1654 189.535 51.7324ZM193.76 49.1826V55H192.495V47.6035H193.691L193.76 49.1826ZM193.459 51.0215L192.933 51.001C192.937 50.4951 193.012 50.028 193.158 49.5996C193.304 49.1667 193.509 48.7907 193.773 48.4717C194.038 48.1527 194.352 47.9066 194.717 47.7334C195.086 47.5557 195.494 47.4668 195.94 47.4668C196.305 47.4668 196.633 47.5169 196.925 47.6172C197.216 47.7129 197.465 47.8678 197.67 48.082C197.88 48.2962 198.039 48.5742 198.148 48.916C198.258 49.2533 198.312 49.6657 198.312 50.1533V55H197.041V50.1396C197.041 49.7523 196.984 49.4424 196.87 49.21C196.756 48.973 196.59 48.8021 196.371 48.6973C196.152 48.5879 195.883 48.5332 195.564 48.5332C195.25 48.5332 194.963 48.5993 194.703 48.7314C194.448 48.8636 194.227 49.0459 194.04 49.2783C193.858 49.5107 193.714 49.7773 193.609 50.0781C193.509 50.3743 193.459 50.6888 193.459 51.0215ZM201.607 47.6035V55H200.336V47.6035H201.607ZM200.24 45.6416C200.24 45.4365 200.302 45.2633 200.425 45.1221C200.552 44.9808 200.739 44.9102 200.985 44.9102C201.227 44.9102 201.411 44.9808 201.539 45.1221C201.671 45.2633 201.737 45.4365 201.737 45.6416C201.737 45.8376 201.671 46.0062 201.539 46.1475C201.411 46.2842 201.227 46.3525 200.985 46.3525C200.739 46.3525 200.552 46.2842 200.425 46.1475C200.302 46.0062 200.24 45.8376 200.24 45.6416ZM206.598 54.0977C206.898 54.0977 207.176 54.0361 207.432 53.9131C207.687 53.79 207.896 53.6214 208.061 53.4072C208.225 53.1885 208.318 52.9401 208.341 52.6621H209.544C209.521 53.0996 209.373 53.5075 209.1 53.8857C208.831 54.2594 208.478 54.5625 208.04 54.7949C207.603 55.0228 207.122 55.1367 206.598 55.1367C206.042 55.1367 205.556 55.0387 205.142 54.8428C204.731 54.6468 204.39 54.3779 204.116 54.0361C203.847 53.6943 203.645 53.3024 203.508 52.8604C203.376 52.4137 203.31 51.9421 203.31 51.4453V51.1582C203.31 50.6615 203.376 50.1921 203.508 49.75C203.645 49.3034 203.847 48.9092 204.116 48.5674C204.39 48.2256 204.731 47.9567 205.142 47.7607C205.556 47.5648 206.042 47.4668 206.598 47.4668C207.176 47.4668 207.682 47.5853 208.115 47.8223C208.548 48.0547 208.888 48.3737 209.134 48.7793C209.384 49.1803 209.521 49.6361 209.544 50.1465H208.341C208.318 49.8411 208.231 49.5654 208.081 49.3193C207.935 49.0732 207.735 48.8773 207.479 48.7314C207.229 48.5811 206.935 48.5059 206.598 48.5059C206.21 48.5059 205.884 48.5833 205.62 48.7383C205.36 48.8887 205.153 49.0938 204.998 49.3535C204.848 49.6087 204.738 49.8936 204.67 50.208C204.606 50.5179 204.574 50.8346 204.574 51.1582V51.4453C204.574 51.7689 204.606 52.0879 204.67 52.4023C204.734 52.7168 204.841 53.0016 204.991 53.2568C205.146 53.512 205.354 53.7171 205.613 53.8721C205.878 54.0225 206.206 54.0977 206.598 54.0977ZM215.327 53.7354V49.9277C215.327 49.6361 215.268 49.3831 215.149 49.1689C215.035 48.9502 214.862 48.7816 214.63 48.6631C214.397 48.5446 214.11 48.4854 213.769 48.4854C213.45 48.4854 213.169 48.54 212.928 48.6494C212.691 48.7588 212.504 48.9023 212.367 49.0801C212.235 49.2578 212.169 49.4492 212.169 49.6543H210.904C210.904 49.39 210.973 49.1279 211.109 48.8682C211.246 48.6084 211.442 48.3737 211.697 48.1641C211.957 47.9499 212.267 47.7812 212.627 47.6582C212.992 47.5306 213.397 47.4668 213.844 47.4668C214.382 47.4668 214.855 47.5579 215.266 47.7402C215.68 47.9225 216.004 48.1982 216.236 48.5674C216.473 48.932 216.592 49.39 216.592 49.9414V53.3867C216.592 53.6328 216.612 53.8949 216.653 54.1729C216.699 54.4508 216.765 54.6901 216.852 54.8906V55H215.532C215.468 54.8542 215.418 54.6605 215.382 54.4189C215.345 54.1729 215.327 53.945 215.327 53.7354ZM215.546 50.5156L215.56 51.4043H214.281C213.921 51.4043 213.6 51.4339 213.317 51.4932C213.035 51.5479 212.798 51.6322 212.606 51.7461C212.415 51.86 212.269 52.0036 212.169 52.1768C212.069 52.3454 212.019 52.5436 212.019 52.7715C212.019 53.0039 212.071 53.2158 212.176 53.4072C212.281 53.5986 212.438 53.7513 212.647 53.8652C212.862 53.9746 213.124 54.0293 213.434 54.0293C213.821 54.0293 214.163 53.9473 214.459 53.7832C214.755 53.6191 214.99 53.4186 215.163 53.1816C215.341 52.9447 215.437 52.7145 215.45 52.4912L215.99 53.0996C215.958 53.291 215.872 53.5029 215.73 53.7354C215.589 53.9678 215.4 54.1911 215.163 54.4053C214.931 54.6149 214.653 54.7904 214.329 54.9316C214.01 55.0684 213.65 55.1367 213.249 55.1367C212.748 55.1367 212.308 55.0387 211.93 54.8428C211.556 54.6468 211.264 54.3848 211.055 54.0566C210.85 53.724 210.747 53.3525 210.747 52.9424C210.747 52.5459 210.825 52.1973 210.979 51.8965C211.134 51.5911 211.358 51.3382 211.649 51.1377C211.941 50.9326 212.292 50.7777 212.702 50.6729C213.112 50.568 213.57 50.5156 214.076 50.5156H215.546ZM221.678 47.6035V48.5742H217.679V47.6035H221.678ZM219.032 45.8057H220.297V53.168C220.297 53.4186 220.336 53.6077 220.413 53.7354C220.491 53.863 220.591 53.9473 220.714 53.9883C220.837 54.0293 220.969 54.0498 221.11 54.0498C221.215 54.0498 221.325 54.0407 221.438 54.0225C221.557 53.9997 221.646 53.9814 221.705 53.9678L221.712 55C221.612 55.0319 221.479 55.0615 221.315 55.0889C221.156 55.1208 220.962 55.1367 220.734 55.1367C220.424 55.1367 220.14 55.0752 219.88 54.9521C219.62 54.8291 219.413 54.624 219.258 54.3369C219.107 54.0452 219.032 53.6533 219.032 53.1611V45.8057ZM224.535 47.6035V55H223.264V47.6035H224.535ZM223.168 45.6416C223.168 45.4365 223.229 45.2633 223.353 45.1221C223.48 44.9808 223.667 44.9102 223.913 44.9102C224.155 44.9102 224.339 44.9808 224.467 45.1221C224.599 45.2633 224.665 45.4365 224.665 45.6416C224.665 45.8376 224.599 46.0062 224.467 46.1475C224.339 46.2842 224.155 46.3525 223.913 46.3525C223.667 46.3525 223.48 46.2842 223.353 46.1475C223.229 46.0062 223.168 45.8376 223.168 45.6416ZM226.23 51.3838V51.2266C226.23 50.6934 226.308 50.1989 226.463 49.7432C226.618 49.2829 226.841 48.8841 227.133 48.5469C227.424 48.2051 227.778 47.9408 228.192 47.7539C228.607 47.5625 229.072 47.4668 229.587 47.4668C230.106 47.4668 230.574 47.5625 230.988 47.7539C231.408 47.9408 231.763 48.2051 232.055 48.5469C232.351 48.8841 232.576 49.2829 232.731 49.7432C232.886 50.1989 232.964 50.6934 232.964 51.2266V51.3838C232.964 51.917 232.886 52.4115 232.731 52.8672C232.576 53.3229 232.351 53.7217 232.055 54.0635C231.763 54.4007 231.41 54.665 230.995 54.8564C230.585 55.0433 230.12 55.1367 229.601 55.1367C229.081 55.1367 228.614 55.0433 228.199 54.8564C227.785 54.665 227.429 54.4007 227.133 54.0635C226.841 53.7217 226.618 53.3229 226.463 52.8672C226.308 52.4115 226.23 51.917 226.23 51.3838ZM227.495 51.2266V51.3838C227.495 51.7529 227.538 52.1016 227.625 52.4297C227.712 52.7533 227.841 53.0404 228.015 53.291C228.192 53.5417 228.413 53.7399 228.678 53.8857C228.942 54.027 229.25 54.0977 229.601 54.0977C229.947 54.0977 230.25 54.027 230.51 53.8857C230.774 53.7399 230.993 53.5417 231.166 53.291C231.339 53.0404 231.469 52.7533 231.556 52.4297C231.647 52.1016 231.692 51.7529 231.692 51.3838V51.2266C231.692 50.862 231.647 50.5179 231.556 50.1943C231.469 49.8662 231.337 49.5768 231.159 49.3262C230.986 49.071 230.767 48.8704 230.503 48.7246C230.243 48.5788 229.938 48.5059 229.587 48.5059C229.241 48.5059 228.935 48.5788 228.671 48.7246C228.411 48.8704 228.192 49.071 228.015 49.3262C227.841 49.5768 227.712 49.8662 227.625 50.1943C227.538 50.5179 227.495 50.862 227.495 51.2266ZM235.814 49.1826V55H234.55V47.6035H235.746L235.814 49.1826ZM235.514 51.0215L234.987 51.001C234.992 50.4951 235.067 50.028 235.213 49.5996C235.359 49.1667 235.564 48.7907 235.828 48.4717C236.092 48.1527 236.407 47.9066 236.771 47.7334C237.141 47.5557 237.549 47.4668 237.995 47.4668C238.36 47.4668 238.688 47.5169 238.979 47.6172C239.271 47.7129 239.52 47.8678 239.725 48.082C239.934 48.2962 240.094 48.5742 240.203 48.916C240.312 49.2533 240.367 49.6657 240.367 50.1533V55H239.096V50.1396C239.096 49.7523 239.039 49.4424 238.925 49.21C238.811 48.973 238.645 48.8021 238.426 48.6973C238.207 48.5879 237.938 48.5332 237.619 48.5332C237.305 48.5332 237.018 48.5993 236.758 48.7314C236.503 48.8636 236.282 49.0459 236.095 49.2783C235.912 49.5107 235.769 49.7773 235.664 50.0781C235.564 50.3743 235.514 50.6888 235.514 51.0215Z",fill:"#64748B"}),(0,o.createElement)("path",{d:"M24 64C19.86 64 16.5 67.36 16.5 71.5C16.5 75.64 19.86 79 24 79C28.14 79 31.5 75.64 31.5 71.5C31.5 67.36 28.14 64 24 64ZM24 77.5C20.685 77.5 18 74.815 18 71.5C18 68.185 20.685 65.5 24 65.5C27.315 65.5 30 68.185 30 71.5C30 74.815 27.315 77.5 24 77.5Z",fill:"#64748B"}),(0,o.createElement)("path",{d:"M42.9443 75.0034V76H38.0503V75.0034H42.9443ZM38.2979 66.7578V76H37.0728V66.7578H38.2979ZM42.2969 70.7314V71.728H38.0503V70.7314H42.2969ZM42.8809 66.7578V67.7607H38.0503V66.7578H42.8809ZM46.7275 71.5884V72.5532H43.6299V71.5884H46.7275ZM49.0444 70.4966V76H47.8638V69.1318H48.981L49.0444 70.4966ZM48.8032 72.3057L48.2573 72.2866C48.2616 71.8169 48.3229 71.3831 48.4414 70.9854C48.5599 70.5833 48.7355 70.2342 48.9683 69.938C49.201 69.6418 49.4909 69.4132 49.8379 69.2524C50.1849 69.0874 50.5869 69.0049 51.0439 69.0049C51.3656 69.0049 51.6618 69.0514 51.9326 69.1445C52.2035 69.2334 52.4383 69.3752 52.6372 69.5698C52.8361 69.7645 52.9906 70.0142 53.1006 70.3188C53.2106 70.6235 53.2656 70.9917 53.2656 71.4233V76H52.0913V71.4805C52.0913 71.1208 52.0299 70.833 51.9072 70.6172C51.7887 70.4014 51.6195 70.2448 51.3994 70.1475C51.1794 70.0459 50.9212 69.9951 50.625 69.9951C50.278 69.9951 49.9881 70.0565 49.7554 70.1792C49.5226 70.3019 49.3364 70.4712 49.1968 70.687C49.0571 70.9028 48.9556 71.1504 48.8921 71.4297C48.8328 71.7048 48.8032 71.9967 48.8032 72.3057ZM53.2529 71.6582L52.4658 71.8994C52.4701 71.5228 52.5314 71.161 52.6499 70.814C52.7726 70.467 52.9482 70.158 53.1768 69.8872C53.4095 69.6164 53.6951 69.4027 54.0337 69.2461C54.3722 69.0853 54.7594 69.0049 55.1953 69.0049C55.5635 69.0049 55.8893 69.0535 56.1729 69.1509C56.4606 69.2482 56.7018 69.3984 56.8965 69.6016C57.0954 69.8005 57.2456 70.0565 57.3472 70.3696C57.4487 70.6828 57.4995 71.0552 57.4995 71.4868V76H56.3188V71.4741C56.3188 71.089 56.2575 70.7907 56.1348 70.5791C56.0163 70.3633 55.847 70.2131 55.627 70.1284C55.4111 70.0396 55.153 69.9951 54.8525 69.9951C54.5944 69.9951 54.3659 70.0396 54.167 70.1284C53.9681 70.2173 53.8009 70.34 53.6655 70.4966C53.5301 70.6489 53.4264 70.8245 53.3545 71.0234C53.2868 71.2223 53.2529 71.4339 53.2529 71.6582ZM63.3267 74.8257V71.29C63.3267 71.0192 63.2716 70.7843 63.1616 70.5854C63.0558 70.3823 62.895 70.2257 62.6792 70.1157C62.4634 70.0057 62.1968 69.9507 61.8794 69.9507C61.5832 69.9507 61.3229 70.0015 61.0986 70.103C60.8786 70.2046 60.7051 70.3379 60.5781 70.5029C60.4554 70.668 60.394 70.8457 60.394 71.0361H59.2197C59.2197 70.7907 59.2832 70.5474 59.4102 70.3062C59.5371 70.0649 59.7191 69.847 59.9561 69.6523C60.1973 69.4535 60.485 69.2969 60.8193 69.1826C61.1579 69.0641 61.5345 69.0049 61.9492 69.0049C62.4486 69.0049 62.8887 69.0895 63.2695 69.2588C63.6546 69.4281 63.9551 69.6841 64.1709 70.0269C64.391 70.3654 64.501 70.7907 64.501 71.3027V74.502C64.501 74.7305 64.52 74.9738 64.5581 75.2319C64.6004 75.4901 64.6618 75.7122 64.7422 75.8984V76H63.5171C63.4578 75.8646 63.4113 75.6847 63.3774 75.4604C63.3436 75.2319 63.3267 75.0203 63.3267 74.8257ZM63.5298 71.8359L63.5425 72.6611H62.3555C62.0212 72.6611 61.7228 72.6886 61.4604 72.7437C61.1981 72.7944 60.978 72.8727 60.8003 72.9785C60.6226 73.0843 60.4871 73.2176 60.394 73.3784C60.3009 73.535 60.2544 73.7191 60.2544 73.9307C60.2544 74.1465 60.3031 74.3433 60.4004 74.521C60.4977 74.6987 60.6437 74.8405 60.8384 74.9463C61.0373 75.0479 61.2806 75.0986 61.5684 75.0986C61.9281 75.0986 62.2454 75.0225 62.5205 74.8701C62.7956 74.7178 63.0135 74.5316 63.1743 74.3115C63.3394 74.0915 63.4282 73.8778 63.4409 73.6704L63.9424 74.2354C63.9128 74.4131 63.8324 74.6099 63.7012 74.8257C63.57 75.0415 63.3944 75.2489 63.1743 75.4478C62.9585 75.6424 62.7004 75.8053 62.3999 75.9365C62.1037 76.0635 61.7694 76.127 61.397 76.127C60.9315 76.127 60.5231 76.036 60.1719 75.854C59.8249 75.672 59.554 75.4287 59.3594 75.124C59.1689 74.8151 59.0737 74.4702 59.0737 74.0894C59.0737 73.7212 59.1457 73.3975 59.2896 73.1182C59.4334 72.8346 59.6408 72.5998 59.9116 72.4136C60.1825 72.2231 60.5083 72.0793 60.8892 71.9819C61.27 71.8846 61.6953 71.8359 62.165 71.8359H63.5298ZM67.624 69.1318V76H66.4434V69.1318H67.624ZM66.3545 67.3101C66.3545 67.1196 66.4116 66.9588 66.5259 66.8276C66.6444 66.6965 66.8179 66.6309 67.0464 66.6309C67.2707 66.6309 67.4421 66.6965 67.5605 66.8276C67.6833 66.9588 67.7446 67.1196 67.7446 67.3101C67.7446 67.492 67.6833 67.6486 67.5605 67.7798C67.4421 67.9067 67.2707 67.9702 67.0464 67.9702C66.8179 67.9702 66.6444 67.9067 66.5259 67.7798C66.4116 67.6486 66.3545 67.492 66.3545 67.3101ZM70.7852 66.25V76H69.6045V66.25H70.7852Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M24 89.75C21.93 89.75 20.25 91.43 20.25 93.5C20.25 95.57 21.93 97.25 24 97.25C26.07 97.25 27.75 95.57 27.75 93.5C27.75 91.43 26.07 89.75 24 89.75ZM24 86C19.86 86 16.5 89.36 16.5 93.5C16.5 97.64 19.86 101 24 101C28.14 101 31.5 97.64 31.5 93.5C31.5 89.36 28.14 86 24 86ZM24 99.5C20.685 99.5 18 96.815 18 93.5C18 90.185 20.685 87.5 24 87.5C27.315 87.5 30 90.185 30 93.5C30 96.815 27.315 99.5 24 99.5Z",fill:"#4272F9"}),(0,o.createElement)("path",{d:"M40.4814 94.3755H38.0122V93.3789H40.4814C40.9596 93.3789 41.3468 93.3027 41.6431 93.1504C41.9393 92.998 42.1551 92.7865 42.2905 92.5156C42.4302 92.2448 42.5 91.9359 42.5 91.5889C42.5 91.2715 42.4302 90.9731 42.2905 90.6938C42.1551 90.4146 41.9393 90.1903 41.6431 90.021C41.3468 89.8475 40.9596 89.7607 40.4814 89.7607H38.2979V98H37.0728V88.7578H40.4814C41.1797 88.7578 41.77 88.8784 42.2524 89.1196C42.7349 89.3608 43.1009 89.6951 43.3506 90.1226C43.6003 90.5457 43.7251 91.0303 43.7251 91.5762C43.7251 92.1686 43.6003 92.6743 43.3506 93.0933C43.1009 93.5122 42.7349 93.8317 42.2524 94.0518C41.77 94.2676 41.1797 94.3755 40.4814 94.3755ZM46.2705 88.25V98H45.0962V88.25H46.2705ZM45.9912 94.3057L45.5024 94.2866C45.5067 93.8169 45.5765 93.3831 45.7119 92.9854C45.8473 92.5833 46.0378 92.2342 46.2832 91.938C46.5286 91.6418 46.8206 91.4132 47.1592 91.2524C47.502 91.0874 47.8807 91.0049 48.2954 91.0049C48.634 91.0049 48.9386 91.0514 49.2095 91.1445C49.4803 91.2334 49.7109 91.3773 49.9014 91.5762C50.096 91.7751 50.2441 92.0332 50.3457 92.3506C50.4473 92.6637 50.498 93.0467 50.498 93.4995V98H49.3174V93.4868C49.3174 93.1271 49.2645 92.8394 49.1587 92.6235C49.0529 92.4035 48.8984 92.2448 48.6953 92.1475C48.4922 92.0459 48.2425 91.9951 47.9463 91.9951C47.6543 91.9951 47.3877 92.0565 47.1465 92.1792C46.9095 92.3019 46.7043 92.4712 46.5308 92.687C46.3615 92.9028 46.2282 93.1504 46.1309 93.4297C46.0378 93.7048 45.9912 93.9967 45.9912 94.3057ZM51.9453 94.6421V94.4961C51.9453 94.001 52.0173 93.5418 52.1611 93.1187C52.305 92.6912 52.5124 92.321 52.7832 92.0078C53.054 91.6904 53.382 91.445 53.7671 91.2715C54.1522 91.0938 54.5838 91.0049 55.062 91.0049C55.5444 91.0049 55.9782 91.0938 56.3633 91.2715C56.7526 91.445 57.0827 91.6904 57.3535 92.0078C57.6286 92.321 57.8381 92.6912 57.9819 93.1187C58.1258 93.5418 58.1978 94.001 58.1978 94.4961V94.6421C58.1978 95.1372 58.1258 95.5964 57.9819 96.0195C57.8381 96.4427 57.6286 96.813 57.3535 97.1304C57.0827 97.4435 56.7547 97.689 56.3696 97.8667C55.9888 98.0402 55.5571 98.127 55.0747 98.127C54.5923 98.127 54.1585 98.0402 53.7734 97.8667C53.3883 97.689 53.0583 97.4435 52.7832 97.1304C52.5124 96.813 52.305 96.4427 52.1611 96.0195C52.0173 95.5964 51.9453 95.1372 51.9453 94.6421ZM53.1196 94.4961V94.6421C53.1196 94.9849 53.1598 95.3086 53.2402 95.6133C53.3206 95.9137 53.4412 96.1803 53.6021 96.4131C53.7671 96.6458 53.9723 96.8299 54.2178 96.9653C54.4632 97.0965 54.7489 97.1621 55.0747 97.1621C55.3963 97.1621 55.6777 97.0965 55.9189 96.9653C56.1644 96.8299 56.3675 96.6458 56.5283 96.4131C56.6891 96.1803 56.8097 95.9137 56.8901 95.6133C56.9748 95.3086 57.0171 94.9849 57.0171 94.6421V94.4961C57.0171 94.1576 56.9748 93.8381 56.8901 93.5376C56.8097 93.2329 56.687 92.9642 56.522 92.7314C56.3612 92.4945 56.158 92.3083 55.9126 92.1729C55.6714 92.0374 55.3879 91.9697 55.062 91.9697C54.7404 91.9697 54.4569 92.0374 54.2114 92.1729C53.9702 92.3083 53.7671 92.4945 53.6021 92.7314C53.4412 92.9642 53.3206 93.2329 53.2402 93.5376C53.1598 93.8381 53.1196 94.1576 53.1196 94.4961ZM60.8447 92.5981V98H59.6704V91.1318H60.7812L60.8447 92.5981ZM60.5654 94.3057L60.0767 94.2866C60.0809 93.8169 60.1507 93.3831 60.2861 92.9854C60.4215 92.5833 60.612 92.2342 60.8574 91.938C61.1029 91.6418 61.3949 91.4132 61.7334 91.2524C62.0762 91.0874 62.4549 91.0049 62.8696 91.0049C63.2082 91.0049 63.5129 91.0514 63.7837 91.1445C64.0545 91.2334 64.2852 91.3773 64.4756 91.5762C64.6702 91.7751 64.8184 92.0332 64.9199 92.3506C65.0215 92.6637 65.0723 93.0467 65.0723 93.4995V98H63.8916V93.4868C63.8916 93.1271 63.8387 92.8394 63.7329 92.6235C63.6271 92.4035 63.4727 92.2448 63.2695 92.1475C63.0664 92.0459 62.8167 91.9951 62.5205 91.9951C62.2285 91.9951 61.9619 92.0565 61.7207 92.1792C61.4837 92.3019 61.2785 92.4712 61.105 92.687C60.9357 92.9028 60.8024 93.1504 60.7051 93.4297C60.612 93.7048 60.5654 93.9967 60.5654 94.3057ZM69.7061 98.127C69.2279 98.127 68.7941 98.0465 68.4048 97.8857C68.0197 97.7207 67.6875 97.4901 67.4082 97.1938C67.1331 96.8976 66.9215 96.5464 66.7734 96.1401C66.6253 95.7339 66.5513 95.2896 66.5513 94.8071V94.5405C66.5513 93.9819 66.6338 93.4847 66.7988 93.0488C66.9639 92.6087 67.1882 92.2363 67.4717 91.9316C67.7552 91.627 68.0768 91.3963 68.4365 91.2397C68.7962 91.0832 69.1686 91.0049 69.5537 91.0049C70.0446 91.0049 70.4678 91.0895 70.8232 91.2588C71.1829 91.4281 71.4771 91.665 71.7056 91.9697C71.9341 92.2702 72.1034 92.6257 72.2134 93.0361C72.3234 93.4424 72.3784 93.8867 72.3784 94.3691V94.896H67.2495V93.9375H71.2041V93.8486C71.1872 93.5439 71.1237 93.2477 71.0137 92.96C70.9079 92.6722 70.7386 92.4352 70.5059 92.249C70.2731 92.0628 69.9557 91.9697 69.5537 91.9697C69.2871 91.9697 69.0417 92.0269 68.8174 92.1411C68.5931 92.2511 68.4006 92.4162 68.2397 92.6362C68.0789 92.8563 67.9541 93.125 67.8652 93.4424C67.7764 93.7598 67.7319 94.1258 67.7319 94.5405V94.8071C67.7319 95.133 67.7764 95.4398 67.8652 95.7275C67.9583 96.0111 68.0916 96.2607 68.2651 96.4766C68.4429 96.6924 68.6566 96.8617 68.9062 96.9844C69.1602 97.1071 69.4479 97.1685 69.7695 97.1685C70.1842 97.1685 70.5355 97.0838 70.8232 96.9146C71.111 96.7453 71.3628 96.5189 71.5786 96.2354L72.2896 96.8003C72.1414 97.0246 71.9531 97.2383 71.7246 97.4414C71.4961 97.6445 71.2147 97.8096 70.8804 97.9365C70.5503 98.0635 70.1589 98.127 69.7061 98.127Z",fill:"#0F172A"})),{ToolBarFields:xt,BlockLabel:Ft,BlockDescription:St,BlockAdvancedValue:Bt,BlockName:At,AdvancedFields:Pt,FieldControl:Nt,SwitchPageOnChangeControls:Ot}=JetFBComponents,{__:Tt}=wp.i18n,{InspectorControls:It,useBlockProps:Jt,BlockSettingsMenuControls:Rt}=wp.blockEditor,{PanelBody:Dt,ToolbarButton:qt}=wp.components,{useUniqueNameOnDuplicate:$t}=JetFBHooks,Ut=JSON.parse('{"apiVersion":3,"name":"jet-forms/radio-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","radio"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSwitchPageOnChange":true,"jetFBSanitizeValue":true},"title":"Radio Field","icon":"\\n\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"custom_option":{"type":"boolean","default":false},"custom_item_template":{"type":"boolean","default":false},"custom_item_template_id":{"type":"string","default":""},"generator_numbers_min":{"type":"number","default":""},"generator_numbers_max":{"type":"number","default":""},"generator_numbers_step":{"type":"number","default":""},"glossary_id":{"type":"string","default":""},"field_options_from":{"type":"string","default":"manual_input"},"field_options":{"type":"array","default":[]},"field_options_post_type":{"type":"string","default":"post"},"field_options_tax":{"type":"string","default":"category"},"field_options_key":{"type":"string","default":""},"generator_function":{"type":"string","default":""},"generator_field":{"type":"string","default":""},"generator_args":{"type":"object","default":{}},"generator_auto_update":{"type":"boolean","default":false},"generator_listen_field":{"type":["string","array"],"default":""},"generator_require_all_filled":{"type":"boolean","default":false},"generator_update_on_button":{"type":"string","default":""},"generator_update_on_button_class":{"type":"string","default":""},"generator_cache_timeout":{"type":"number","default":60},"calculated_value_from_key":{"type":"string","default":""},"value_from_key":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewStyle":"jet-fb-option-field-radio","style":"jet-fb-option-field-radio"}'),{__:Gt}=wp.i18n,{createBlock:Wt}=wp.blocks,{name:zt,icon:Kt=""}=Ut,Xt={icon:(0,o.createElement)("span",{dangerouslySetInnerHTML:{__html:Kt}}),description:Gt("Create a list of available options from which the user can \nchoose only a single variant. Build the lists of various lengths.","jet-form-builder"),edit:function(e){const{isSelected:C,attributes:t,editProps:{uniqKey:l},setAttributes:r}=e,n=Jt();return $t(),t.isPreview?(0,o.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},jt):(0,o.createElement)(o.Fragment,null,C&&(0,o.createElement)(Rt,null),(0,o.createElement)(xt,null,(0,o.createElement)(qt,{icon:t.custom_option?(0,o.createElement)("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,o.createElement)("rect",{width:"32",height:"32",rx:"2",fill:"#101517"}),(0,o.createElement)("path",{d:"M30 16.796L18.044 28.8813L14 30L15.156 26.0867L27.1107 14L30 16.796Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M12 8H6V21H17.3398L15.3398 23H6L5.7959 22.9893C4.85435 22.8938 4.1062 22.1457 4.01074 21.2041L4 21V8C4 6.89543 4.89543 6 6 6H12V8Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M21 17.3398L19 19.3398V15H21V17.3398Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M19 3H21V6H24V8H21V11H19V8H16V6H19V3Z",fill:"currentColor"})):(0,o.createElement)("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,o.createElement)("path",{d:"M30 16.796L18.044 28.8813L14 30L15.156 26.0867L27.1107 14L30 16.796Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M12 8H6V21H17.3398L15.3398 23H6L5.7959 22.9893C4.85435 22.8938 4.1062 22.1457 4.01074 21.2041L4 21V8C4 6.89543 4.89543 6 6 6H12V8Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M21 17.3398L19 19.3398V15H21V17.3398Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M19 3H21V6H24V8H21V11H19V8H16V6H19V3Z",fill:"currentColor"})),title:t.custom_option?Tt("Disable custom options","jet-form-builder"):Tt("Enable custom options","jet-form-builder"),onClick:()=>r({custom_option:!t.custom_option}),isActive:t.custom_option})),(0,o.createElement)(Ot,null),C&&(0,o.createElement)(It,{key:l("InspectorControls")},(0,o.createElement)(Dt,{title:Tt("General","jet-form-builder")},(0,o.createElement)(Ft,null),(0,o.createElement)(At,null),(0,o.createElement)(St,null)),(0,o.createElement)(Dt,{title:Tt("Value","jet-form-builder")},(0,o.createElement)(Bt,null)),(0,o.createElement)(Pt,{key:l("AdvancedFields"),...e})),(0,o.createElement)("div",{...n,key:l("viewBlock")},(0,o.createElement)(b,{key:l("SelectRadioCheckPlaceholder"),scriptData:window.JetFormOptionFieldData,...e}),(0,o.createElement)(EC,{...e},(0,o.createElement)(nt,{listingTypes:window.JetFormOptionFieldData.listings_list,...e}),(0,o.createElement)(Nt,{type:"custom_settings",key:l("customSettingsFields"),...e}))))},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Wt("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/select-field","jet-forms/text-field"],transform:e=>Wt(zt,{...e}),priority:0},{type:"block",blocks:["jet-forms/checkbox-field"],transform:e=>(e.custom_option={allow:!!e.custom_option,label:"+ Add New"},Wt(zt,{...e})),priority:0}]}},{addFilter:Yt}=wp.hooks;Yt("jet.fb.register.fields","jet-form-builder/select",function(e){return e.push(l,r,n),e})})(); \ No newline at end of file +(()=>{"use strict";var e={25:(e,C,t)=>{t.r(C)},103:(e,C,t)=>{t.r(C)}},C={};function t(l){var r=C[l];if(void 0!==r)return r.exports;var n=C[l]={exports:{}};return e[l](n,n.exports,t),n.exports}t.d=(e,C)=>{for(var l in C)t.o(C,l)&&!t.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:C[l]})},t.o=(e,C)=>Object.prototype.hasOwnProperty.call(e,C),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var l={};t.r(l),t.d(l,{metadata:()=>GC,name:()=>KC,settings:()=>YC});var r={};t.r(r),t.d(r,{metadata:()=>Mt,name:()=>wt,settings:()=>Et});var n={};t.r(n),t.d(n,{metadata:()=>$t,name:()=>Wt,settings:()=>Kt});const o=window.React,a=(0,o.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M22.1641 24.835H23.4766C23.4082 25.4639 23.2282 26.0267 22.9365 26.5234C22.6449 27.0202 22.2324 27.4144 21.6992 27.7061C21.166 27.9932 20.5007 28.1367 19.7031 28.1367C19.1198 28.1367 18.5889 28.0273 18.1104 27.8086C17.6364 27.5898 17.2285 27.2799 16.8867 26.8789C16.5449 26.4733 16.2806 25.988 16.0938 25.4229C15.9115 24.8532 15.8203 24.2197 15.8203 23.5225V22.5312C15.8203 21.834 15.9115 21.2028 16.0938 20.6377C16.2806 20.068 16.5472 19.5804 16.8936 19.1748C17.2445 18.7692 17.666 18.457 18.1582 18.2383C18.6504 18.0195 19.2041 17.9102 19.8193 17.9102C20.5713 17.9102 21.207 18.0514 21.7266 18.334C22.2461 18.6165 22.6494 19.0085 22.9365 19.5098C23.2282 20.0065 23.4082 20.583 23.4766 21.2393H22.1641C22.1003 20.7744 21.9818 20.3757 21.8086 20.043C21.6354 19.7057 21.3893 19.446 21.0703 19.2637C20.7513 19.0814 20.3343 18.9902 19.8193 18.9902C19.3773 18.9902 18.9876 19.0745 18.6504 19.2432C18.3177 19.4118 18.0374 19.651 17.8096 19.9609C17.5863 20.2708 17.4176 20.6423 17.3037 21.0752C17.1898 21.5081 17.1328 21.9889 17.1328 22.5176V23.5225C17.1328 24.0101 17.1829 24.4681 17.2832 24.8965C17.388 25.3249 17.5452 25.7008 17.7549 26.0244C17.9645 26.348 18.2311 26.6032 18.5547 26.79C18.8783 26.9723 19.2611 27.0635 19.7031 27.0635C20.2637 27.0635 20.7103 26.9746 21.043 26.7969C21.3757 26.6191 21.6263 26.3639 21.7949 26.0312C21.9681 25.6986 22.0911 25.2998 22.1641 24.835ZM26.3477 17.5V28H25.083V17.5H26.3477ZM26.0469 24.0215L25.5205 24.001C25.5251 23.4951 25.6003 23.028 25.7461 22.5996C25.8919 22.1667 26.097 21.7907 26.3613 21.4717C26.6257 21.1527 26.9401 20.9066 27.3047 20.7334C27.6738 20.5557 28.0817 20.4668 28.5283 20.4668C28.8929 20.4668 29.221 20.5169 29.5127 20.6172C29.8044 20.7129 30.0527 20.8678 30.2578 21.082C30.4674 21.2962 30.627 21.5742 30.7363 21.916C30.8457 22.2533 30.9004 22.6657 30.9004 23.1533V28H29.6289V23.1396C29.6289 22.7523 29.5719 22.4424 29.458 22.21C29.3441 21.973 29.1777 21.8021 28.959 21.6973C28.7402 21.5879 28.4714 21.5332 28.1523 21.5332C27.8379 21.5332 27.5508 21.5993 27.291 21.7314C27.0358 21.8636 26.8148 22.0459 26.6279 22.2783C26.4456 22.5107 26.3021 22.7773 26.1973 23.0781C26.097 23.3743 26.0469 23.6888 26.0469 24.0215ZM32.459 24.3838V24.2266C32.459 23.6934 32.5365 23.1989 32.6914 22.7432C32.8464 22.2829 33.0697 21.8841 33.3613 21.5469C33.653 21.2051 34.0062 20.9408 34.4209 20.7539C34.8356 20.5625 35.3005 20.4668 35.8154 20.4668C36.335 20.4668 36.8021 20.5625 37.2168 20.7539C37.6361 20.9408 37.9915 21.2051 38.2832 21.5469C38.5794 21.8841 38.805 22.2829 38.96 22.7432C39.1149 23.1989 39.1924 23.6934 39.1924 24.2266V24.3838C39.1924 24.917 39.1149 25.4115 38.96 25.8672C38.805 26.3229 38.5794 26.7217 38.2832 27.0635C37.9915 27.4007 37.6383 27.665 37.2236 27.8564C36.8135 28.0433 36.3486 28.1367 35.8291 28.1367C35.3096 28.1367 34.8424 28.0433 34.4277 27.8564C34.013 27.665 33.6576 27.4007 33.3613 27.0635C33.0697 26.7217 32.8464 26.3229 32.6914 25.8672C32.5365 25.4115 32.459 24.917 32.459 24.3838ZM33.7236 24.2266V24.3838C33.7236 24.7529 33.7669 25.1016 33.8535 25.4297C33.9401 25.7533 34.07 26.0404 34.2432 26.291C34.4209 26.5417 34.6419 26.7399 34.9062 26.8857C35.1706 27.027 35.4782 27.0977 35.8291 27.0977C36.1755 27.0977 36.4785 27.027 36.7383 26.8857C37.0026 26.7399 37.2214 26.5417 37.3945 26.291C37.5677 26.0404 37.6976 25.7533 37.7842 25.4297C37.8753 25.1016 37.9209 24.7529 37.9209 24.3838V24.2266C37.9209 23.862 37.8753 23.5179 37.7842 23.1943C37.6976 22.8662 37.5654 22.5768 37.3877 22.3262C37.2145 22.071 36.9958 21.8704 36.7314 21.7246C36.4717 21.5788 36.1663 21.5059 35.8154 21.5059C35.4691 21.5059 35.1637 21.5788 34.8994 21.7246C34.6396 21.8704 34.4209 22.071 34.2432 22.3262C34.07 22.5768 33.9401 22.8662 33.8535 23.1943C33.7669 23.5179 33.7236 23.862 33.7236 24.2266ZM40.4434 24.3838V24.2266C40.4434 23.6934 40.5208 23.1989 40.6758 22.7432C40.8307 22.2829 41.054 21.8841 41.3457 21.5469C41.6374 21.2051 41.9906 20.9408 42.4053 20.7539C42.82 20.5625 43.2848 20.4668 43.7998 20.4668C44.3193 20.4668 44.7865 20.5625 45.2012 20.7539C45.6204 20.9408 45.9759 21.2051 46.2676 21.5469C46.5638 21.8841 46.7894 22.2829 46.9443 22.7432C47.0993 23.1989 47.1768 23.6934 47.1768 24.2266V24.3838C47.1768 24.917 47.0993 25.4115 46.9443 25.8672C46.7894 26.3229 46.5638 26.7217 46.2676 27.0635C45.9759 27.4007 45.6227 27.665 45.208 27.8564C44.7979 28.0433 44.333 28.1367 43.8135 28.1367C43.2939 28.1367 42.8268 28.0433 42.4121 27.8564C41.9974 27.665 41.6419 27.4007 41.3457 27.0635C41.054 26.7217 40.8307 26.3229 40.6758 25.8672C40.5208 25.4115 40.4434 24.917 40.4434 24.3838ZM41.708 24.2266V24.3838C41.708 24.7529 41.7513 25.1016 41.8379 25.4297C41.9245 25.7533 42.0544 26.0404 42.2275 26.291C42.4053 26.5417 42.6263 26.7399 42.8906 26.8857C43.1549 27.027 43.4626 27.0977 43.8135 27.0977C44.1598 27.0977 44.4629 27.027 44.7227 26.8857C44.987 26.7399 45.2057 26.5417 45.3789 26.291C45.5521 26.0404 45.682 25.7533 45.7686 25.4297C45.8597 25.1016 45.9053 24.7529 45.9053 24.3838V24.2266C45.9053 23.862 45.8597 23.5179 45.7686 23.1943C45.682 22.8662 45.5498 22.5768 45.3721 22.3262C45.1989 22.071 44.9801 21.8704 44.7158 21.7246C44.4561 21.5788 44.1507 21.5059 43.7998 21.5059C43.4535 21.5059 43.1481 21.5788 42.8838 21.7246C42.624 21.8704 42.4053 22.071 42.2275 22.3262C42.0544 22.5768 41.9245 22.8662 41.8379 23.1943C41.7513 23.5179 41.708 23.862 41.708 24.2266ZM53.0693 26.0381C53.0693 25.8558 53.0283 25.6872 52.9463 25.5322C52.8688 25.3727 52.707 25.2292 52.4609 25.1016C52.2194 24.9694 51.8548 24.8555 51.3672 24.7598C50.957 24.6732 50.5856 24.5706 50.2529 24.4521C49.9248 24.3337 49.6445 24.1901 49.4121 24.0215C49.1842 23.8529 49.0088 23.6546 48.8857 23.4268C48.7627 23.1989 48.7012 22.9323 48.7012 22.627C48.7012 22.3353 48.765 22.0596 48.8926 21.7998C49.0247 21.54 49.2093 21.3099 49.4463 21.1094C49.6878 20.9089 49.9772 20.7516 50.3145 20.6377C50.6517 20.5238 51.0277 20.4668 51.4424 20.4668C52.0348 20.4668 52.5407 20.5716 52.96 20.7812C53.3792 20.9909 53.7005 21.2712 53.9238 21.6221C54.1471 21.9684 54.2588 22.3535 54.2588 22.7773H52.9941C52.9941 22.5723 52.9326 22.374 52.8096 22.1826C52.6911 21.9867 52.5156 21.8249 52.2832 21.6973C52.0553 21.5697 51.7751 21.5059 51.4424 21.5059C51.0915 21.5059 50.8066 21.5605 50.5879 21.6699C50.3737 21.7747 50.2165 21.9092 50.1162 22.0732C50.0205 22.2373 49.9727 22.4105 49.9727 22.5928C49.9727 22.7295 49.9954 22.8525 50.041 22.9619C50.0911 23.0667 50.1777 23.1647 50.3008 23.2559C50.4238 23.3424 50.597 23.4245 50.8203 23.502C51.0436 23.5794 51.3285 23.6569 51.6748 23.7344C52.2809 23.8711 52.7799 24.0352 53.1719 24.2266C53.5638 24.418 53.8555 24.6527 54.0469 24.9307C54.2383 25.2087 54.334 25.5459 54.334 25.9424C54.334 26.266 54.2656 26.5622 54.1289 26.8311C53.9967 27.0999 53.8031 27.3324 53.5479 27.5283C53.2972 27.7197 52.9964 27.8701 52.6455 27.9795C52.2992 28.0843 51.9095 28.1367 51.4766 28.1367C50.8249 28.1367 50.2734 28.0205 49.8223 27.7881C49.3711 27.5557 49.0293 27.2549 48.7969 26.8857C48.5645 26.5166 48.4482 26.127 48.4482 25.7168H49.7197C49.738 26.0632 49.8382 26.3389 50.0205 26.5439C50.2028 26.7445 50.4261 26.888 50.6904 26.9746C50.9548 27.0566 51.2168 27.0977 51.4766 27.0977C51.8229 27.0977 52.1123 27.0521 52.3447 26.9609C52.5817 26.8698 52.7617 26.7445 52.8848 26.585C53.0078 26.4255 53.0693 26.2432 53.0693 26.0381ZM59.0645 28.1367C58.5495 28.1367 58.0824 28.0501 57.6631 27.877C57.2484 27.6992 56.8906 27.4508 56.5898 27.1318C56.2936 26.8128 56.0658 26.4346 55.9062 25.9971C55.7467 25.5596 55.667 25.0811 55.667 24.5615V24.2744C55.667 23.6729 55.7559 23.1374 55.9336 22.668C56.1113 22.194 56.3529 21.793 56.6582 21.4648C56.9635 21.1367 57.3099 20.8883 57.6973 20.7197C58.0846 20.5511 58.4857 20.4668 58.9004 20.4668C59.429 20.4668 59.8848 20.5579 60.2676 20.7402C60.6549 20.9225 60.9717 21.1777 61.2178 21.5059C61.4639 21.8294 61.6462 22.2122 61.7646 22.6543C61.8831 23.0918 61.9424 23.5703 61.9424 24.0898V24.6572H56.4189V23.625H60.6777V23.5293C60.6595 23.2012 60.5911 22.8822 60.4727 22.5723C60.3587 22.2624 60.1764 22.0072 59.9258 21.8066C59.6751 21.6061 59.3333 21.5059 58.9004 21.5059C58.6133 21.5059 58.349 21.5674 58.1074 21.6904C57.8659 21.8089 57.6585 21.9867 57.4854 22.2236C57.3122 22.4606 57.1777 22.75 57.082 23.0918C56.9863 23.4336 56.9385 23.8278 56.9385 24.2744V24.5615C56.9385 24.9124 56.9863 25.2428 57.082 25.5527C57.1823 25.8581 57.3258 26.127 57.5127 26.3594C57.7041 26.5918 57.9342 26.7741 58.2031 26.9062C58.4766 27.0384 58.7865 27.1045 59.1328 27.1045C59.5794 27.1045 59.9577 27.0133 60.2676 26.8311C60.5775 26.6488 60.8486 26.4049 61.0811 26.0996L61.8467 26.708C61.6872 26.9495 61.4844 27.1797 61.2383 27.3984C60.9922 27.6172 60.6891 27.7949 60.3291 27.9316C59.9736 28.0684 59.5521 28.1367 59.0645 28.1367ZM68.9697 27.2344L71.0273 20.6035H72.3809L69.4141 29.1416C69.3457 29.3239 69.2546 29.5199 69.1406 29.7295C69.0312 29.9437 68.89 30.1465 68.7168 30.3379C68.5436 30.5293 68.334 30.6842 68.0879 30.8027C67.8464 30.9258 67.557 30.9873 67.2197 30.9873C67.1195 30.9873 66.9919 30.9736 66.8369 30.9463C66.682 30.9189 66.5726 30.8962 66.5088 30.8779L66.502 29.8525C66.5384 29.8571 66.5954 29.8617 66.6729 29.8662C66.7549 29.8753 66.8118 29.8799 66.8438 29.8799C67.1309 29.8799 67.3747 29.8411 67.5752 29.7637C67.7757 29.6908 67.9443 29.5654 68.0811 29.3877C68.2223 29.2145 68.3431 28.9753 68.4434 28.6699L68.9697 27.2344ZM67.459 20.6035L69.3799 26.3457L69.708 27.6787L68.7988 28.1436L66.0781 20.6035H67.459ZM73.0781 24.3838V24.2266C73.0781 23.6934 73.1556 23.1989 73.3105 22.7432C73.4655 22.2829 73.6888 21.8841 73.9805 21.5469C74.2721 21.2051 74.6253 20.9408 75.04 20.7539C75.4548 20.5625 75.9196 20.4668 76.4346 20.4668C76.9541 20.4668 77.4212 20.5625 77.8359 20.7539C78.2552 20.9408 78.6107 21.2051 78.9023 21.5469C79.1986 21.8841 79.4242 22.2829 79.5791 22.7432C79.734 23.1989 79.8115 23.6934 79.8115 24.2266V24.3838C79.8115 24.917 79.734 25.4115 79.5791 25.8672C79.4242 26.3229 79.1986 26.7217 78.9023 27.0635C78.6107 27.4007 78.2575 27.665 77.8428 27.8564C77.4326 28.0433 76.9678 28.1367 76.4482 28.1367C75.9287 28.1367 75.4616 28.0433 75.0469 27.8564C74.6322 27.665 74.2767 27.4007 73.9805 27.0635C73.6888 26.7217 73.4655 26.3229 73.3105 25.8672C73.1556 25.4115 73.0781 24.917 73.0781 24.3838ZM74.3428 24.2266V24.3838C74.3428 24.7529 74.3861 25.1016 74.4727 25.4297C74.5592 25.7533 74.6891 26.0404 74.8623 26.291C75.04 26.5417 75.2611 26.7399 75.5254 26.8857C75.7897 27.027 76.0973 27.0977 76.4482 27.0977C76.7946 27.0977 77.0977 27.027 77.3574 26.8857C77.6217 26.7399 77.8405 26.5417 78.0137 26.291C78.1868 26.0404 78.3167 25.7533 78.4033 25.4297C78.4945 25.1016 78.54 24.7529 78.54 24.3838V24.2266C78.54 23.862 78.4945 23.5179 78.4033 23.1943C78.3167 22.8662 78.1846 22.5768 78.0068 22.3262C77.8337 22.071 77.6149 21.8704 77.3506 21.7246C77.0908 21.5788 76.7855 21.5059 76.4346 21.5059C76.0882 21.5059 75.7829 21.5788 75.5186 21.7246C75.2588 21.8704 75.04 22.071 74.8623 22.3262C74.6891 22.5768 74.5592 22.8662 74.4727 23.1943C74.3861 23.5179 74.3428 23.862 74.3428 24.2266ZM85.9229 26.291V20.6035H87.1943V28H85.9844L85.9229 26.291ZM86.1621 24.7324L86.6885 24.7188C86.6885 25.2109 86.6361 25.6667 86.5312 26.0859C86.431 26.5007 86.2669 26.8607 86.0391 27.166C85.8112 27.4714 85.5127 27.7106 85.1436 27.8838C84.7744 28.0524 84.3255 28.1367 83.7969 28.1367C83.4368 28.1367 83.1064 28.0843 82.8057 27.9795C82.5094 27.8747 82.2542 27.7129 82.04 27.4941C81.8258 27.2754 81.6595 26.9906 81.541 26.6396C81.4271 26.2887 81.3701 25.8672 81.3701 25.375V20.6035H82.6348V25.3887C82.6348 25.7214 82.6712 25.9971 82.7441 26.2158C82.8216 26.43 82.9242 26.6009 83.0518 26.7285C83.1839 26.8516 83.3298 26.9382 83.4893 26.9883C83.6533 27.0384 83.8219 27.0635 83.9951 27.0635C84.5329 27.0635 84.959 26.9609 85.2734 26.7559C85.5879 26.5462 85.8135 26.266 85.9502 25.915C86.0915 25.5596 86.1621 25.1654 86.1621 24.7324ZM90.3867 21.7656V28H89.1221V20.6035H90.3525L90.3867 21.7656ZM92.6973 20.5625L92.6904 21.7383C92.5856 21.7155 92.4854 21.7018 92.3896 21.6973C92.2985 21.6882 92.1937 21.6836 92.0752 21.6836C91.7835 21.6836 91.526 21.7292 91.3027 21.8203C91.0794 21.9115 90.8903 22.0391 90.7354 22.2031C90.5804 22.3672 90.4574 22.5632 90.3662 22.791C90.2796 23.0143 90.2227 23.2604 90.1953 23.5293L89.8398 23.7344C89.8398 23.2878 89.8831 22.8685 89.9697 22.4766C90.0609 22.0846 90.1999 21.7383 90.3867 21.4375C90.5736 21.1322 90.8105 20.8952 91.0977 20.7266C91.3893 20.5534 91.7357 20.4668 92.1367 20.4668C92.2279 20.4668 92.3327 20.4782 92.4512 20.501C92.5697 20.5192 92.6517 20.5397 92.6973 20.5625ZM101.646 26.0381C101.646 25.8558 101.604 25.6872 101.522 25.5322C101.445 25.3727 101.283 25.2292 101.037 25.1016C100.796 24.9694 100.431 24.8555 99.9434 24.7598C99.5332 24.6732 99.1618 24.5706 98.8291 24.4521C98.501 24.3337 98.2207 24.1901 97.9883 24.0215C97.7604 23.8529 97.585 23.6546 97.4619 23.4268C97.3389 23.1989 97.2773 22.9323 97.2773 22.627C97.2773 22.3353 97.3411 22.0596 97.4688 21.7998C97.6009 21.54 97.7855 21.3099 98.0225 21.1094C98.264 20.9089 98.5534 20.7516 98.8906 20.6377C99.2279 20.5238 99.6038 20.4668 100.019 20.4668C100.611 20.4668 101.117 20.5716 101.536 20.7812C101.955 20.9909 102.277 21.2712 102.5 21.6221C102.723 21.9684 102.835 22.3535 102.835 22.7773H101.57C101.57 22.5723 101.509 22.374 101.386 22.1826C101.267 21.9867 101.092 21.8249 100.859 21.6973C100.632 21.5697 100.351 21.5059 100.019 21.5059C99.6676 21.5059 99.3828 21.5605 99.1641 21.6699C98.9499 21.7747 98.7926 21.9092 98.6924 22.0732C98.5967 22.2373 98.5488 22.4105 98.5488 22.5928C98.5488 22.7295 98.5716 22.8525 98.6172 22.9619C98.6673 23.0667 98.7539 23.1647 98.877 23.2559C99 23.3424 99.1732 23.4245 99.3965 23.502C99.6198 23.5794 99.9046 23.6569 100.251 23.7344C100.857 23.8711 101.356 24.0352 101.748 24.2266C102.14 24.418 102.432 24.6527 102.623 24.9307C102.814 25.2087 102.91 25.5459 102.91 25.9424C102.91 26.266 102.842 26.5622 102.705 26.8311C102.573 27.0999 102.379 27.3324 102.124 27.5283C101.873 27.7197 101.573 27.8701 101.222 27.9795C100.875 28.0843 100.486 28.1367 100.053 28.1367C99.401 28.1367 98.8496 28.0205 98.3984 27.7881C97.9473 27.5557 97.6055 27.2549 97.373 26.8857C97.1406 26.5166 97.0244 26.127 97.0244 25.7168H98.2959C98.3141 26.0632 98.4144 26.3389 98.5967 26.5439C98.779 26.7445 99.0023 26.888 99.2666 26.9746C99.5309 27.0566 99.793 27.0977 100.053 27.0977C100.399 27.0977 100.688 27.0521 100.921 26.9609C101.158 26.8698 101.338 26.7445 101.461 26.585C101.584 26.4255 101.646 26.2432 101.646 26.0381ZM107.668 20.6035V21.5742H103.669V20.6035H107.668ZM105.022 18.8057H106.287V26.168C106.287 26.4186 106.326 26.6077 106.403 26.7354C106.481 26.863 106.581 26.9473 106.704 26.9883C106.827 27.0293 106.959 27.0498 107.101 27.0498C107.205 27.0498 107.315 27.0407 107.429 27.0225C107.547 26.9997 107.636 26.9814 107.695 26.9678L107.702 28C107.602 28.0319 107.47 28.0615 107.306 28.0889C107.146 28.1208 106.952 28.1367 106.725 28.1367C106.415 28.1367 106.13 28.0752 105.87 27.9521C105.61 27.8291 105.403 27.624 105.248 27.3369C105.098 27.0452 105.022 26.6533 105.022 26.1611V18.8057ZM113.513 26.7354V22.9277C113.513 22.6361 113.453 22.3831 113.335 22.1689C113.221 21.9502 113.048 21.7816 112.815 21.6631C112.583 21.5446 112.296 21.4854 111.954 21.4854C111.635 21.4854 111.355 21.54 111.113 21.6494C110.876 21.7588 110.689 21.9023 110.553 22.0801C110.421 22.2578 110.354 22.4492 110.354 22.6543H109.09C109.09 22.39 109.158 22.1279 109.295 21.8682C109.432 21.6084 109.628 21.3737 109.883 21.1641C110.143 20.9499 110.452 20.7812 110.812 20.6582C111.177 20.5306 111.583 20.4668 112.029 20.4668C112.567 20.4668 113.041 20.5579 113.451 20.7402C113.866 20.9225 114.189 21.1982 114.422 21.5674C114.659 21.932 114.777 22.39 114.777 22.9414V26.3867C114.777 26.6328 114.798 26.8949 114.839 27.1729C114.884 27.4508 114.951 27.6901 115.037 27.8906V28H113.718C113.654 27.8542 113.604 27.6605 113.567 27.4189C113.531 27.1729 113.513 26.945 113.513 26.7354ZM113.731 23.5156L113.745 24.4043H112.467C112.107 24.4043 111.785 24.4339 111.503 24.4932C111.22 24.5479 110.983 24.6322 110.792 24.7461C110.601 24.86 110.455 25.0036 110.354 25.1768C110.254 25.3454 110.204 25.5436 110.204 25.7715C110.204 26.0039 110.257 26.2158 110.361 26.4072C110.466 26.5986 110.623 26.7513 110.833 26.8652C111.047 26.9746 111.309 27.0293 111.619 27.0293C112.007 27.0293 112.348 26.9473 112.645 26.7832C112.941 26.6191 113.175 26.4186 113.349 26.1816C113.526 25.9447 113.622 25.7145 113.636 25.4912L114.176 26.0996C114.144 26.291 114.057 26.5029 113.916 26.7354C113.775 26.9678 113.586 27.1911 113.349 27.4053C113.116 27.6149 112.838 27.7904 112.515 27.9316C112.196 28.0684 111.836 28.1367 111.435 28.1367C110.933 28.1367 110.493 28.0387 110.115 27.8428C109.742 27.6468 109.45 27.3848 109.24 27.0566C109.035 26.724 108.933 26.3525 108.933 25.9424C108.933 25.5459 109.01 25.1973 109.165 24.8965C109.32 24.5911 109.543 24.3382 109.835 24.1377C110.127 23.9326 110.478 23.7777 110.888 23.6729C111.298 23.568 111.756 23.5156 112.262 23.5156H113.731ZM118.735 27.2344L120.793 20.6035H122.146L119.18 29.1416C119.111 29.3239 119.02 29.5199 118.906 29.7295C118.797 29.9437 118.656 30.1465 118.482 30.3379C118.309 30.5293 118.1 30.6842 117.854 30.8027C117.612 30.9258 117.323 30.9873 116.985 30.9873C116.885 30.9873 116.757 30.9736 116.603 30.9463C116.448 30.9189 116.338 30.8962 116.274 30.8779L116.268 29.8525C116.304 29.8571 116.361 29.8617 116.438 29.8662C116.521 29.8753 116.577 29.8799 116.609 29.8799C116.896 29.8799 117.14 29.8411 117.341 29.7637C117.541 29.6908 117.71 29.5654 117.847 29.3877C117.988 29.2145 118.109 28.9753 118.209 28.6699L118.735 27.2344ZM117.225 20.6035L119.146 26.3457L119.474 27.6787L118.564 28.1436L115.844 20.6035H117.225Z",fill:"#64748B"}),(0,o.createElement)("rect",{x:"16",y:"37",width:"266",height:"28",rx:"3",fill:"white"}),(0,o.createElement)("path",{d:"M29.4941 47.0767L26.4346 55.5H25.1841L28.707 46.2578H29.5132L29.4941 47.0767ZM32.0586 55.5L28.9927 47.0767L28.9736 46.2578H29.7798L33.3154 55.5H32.0586ZM31.8999 52.0786V53.0815H26.7075V52.0786H31.8999ZM37.1367 48.6318V49.5332H33.4233V48.6318H37.1367ZM34.6802 46.9624H35.8545V53.7988C35.8545 54.0316 35.8905 54.2072 35.9624 54.3257C36.0343 54.4442 36.1274 54.5225 36.2417 54.5605C36.356 54.5986 36.4787 54.6177 36.6099 54.6177C36.7072 54.6177 36.8088 54.6092 36.9146 54.5923C37.0246 54.5711 37.1071 54.5542 37.1621 54.5415L37.1685 55.5C37.0754 55.5296 36.9526 55.5571 36.8003 55.5825C36.6522 55.6121 36.4723 55.627 36.2607 55.627C35.973 55.627 35.7085 55.5698 35.4673 55.4556C35.2261 55.3413 35.0335 55.1509 34.8896 54.8843C34.75 54.6134 34.6802 54.2495 34.6802 53.7925V46.9624ZM44.6143 48.6318V49.5332H40.9009V48.6318H44.6143ZM42.1577 46.9624H43.332V53.7988C43.332 54.0316 43.368 54.2072 43.4399 54.3257C43.5119 54.4442 43.605 54.5225 43.7192 54.5605C43.8335 54.5986 43.9562 54.6177 44.0874 54.6177C44.1847 54.6177 44.2863 54.6092 44.3921 54.5923C44.5021 54.5711 44.5846 54.5542 44.6396 54.5415L44.646 55.5C44.5529 55.5296 44.4302 55.5571 44.2778 55.5825C44.1297 55.6121 43.9499 55.627 43.7383 55.627C43.4505 55.627 43.186 55.5698 42.9448 55.4556C42.7036 55.3413 42.5111 55.1509 42.3672 54.8843C42.2275 54.6134 42.1577 54.2495 42.1577 53.7925V46.9624ZM47.166 45.75V55.5H45.9917V45.75H47.166ZM46.8867 51.8057L46.3979 51.7866C46.4022 51.3169 46.472 50.8831 46.6074 50.4854C46.7428 50.0833 46.9333 49.7342 47.1787 49.438C47.4242 49.1418 47.7161 48.9132 48.0547 48.7524C48.3975 48.5874 48.7762 48.5049 49.1909 48.5049C49.5295 48.5049 49.8341 48.5514 50.105 48.6445C50.3758 48.7334 50.6064 48.8773 50.7969 49.0762C50.9915 49.2751 51.1396 49.5332 51.2412 49.8506C51.3428 50.1637 51.3936 50.5467 51.3936 50.9995V55.5H50.2129V50.9868C50.2129 50.6271 50.16 50.3394 50.0542 50.1235C49.9484 49.9035 49.7939 49.7448 49.5908 49.6475C49.3877 49.5459 49.138 49.4951 48.8418 49.4951C48.5498 49.4951 48.2832 49.5565 48.042 49.6792C47.805 49.8019 47.5998 49.9712 47.4263 50.187C47.257 50.4028 47.1237 50.6504 47.0264 50.9297C46.9333 51.2048 46.8867 51.4967 46.8867 51.8057ZM56.002 55.627C55.5238 55.627 55.09 55.5465 54.7007 55.3857C54.3156 55.2207 53.9834 54.9901 53.7041 54.6938C53.429 54.3976 53.2174 54.0464 53.0693 53.6401C52.9212 53.2339 52.8472 52.7896 52.8472 52.3071V52.0405C52.8472 51.4819 52.9297 50.9847 53.0947 50.5488C53.2598 50.1087 53.484 49.7363 53.7676 49.4316C54.0511 49.127 54.3727 48.8963 54.7324 48.7397C55.0921 48.5832 55.4645 48.5049 55.8496 48.5049C56.3405 48.5049 56.7637 48.5895 57.1191 48.7588C57.4788 48.9281 57.7729 49.165 58.0015 49.4697C58.23 49.7702 58.3993 50.1257 58.5093 50.5361C58.6193 50.9424 58.6743 51.3867 58.6743 51.8691V52.396H53.5454V51.4375H57.5V51.3486C57.4831 51.0439 57.4196 50.7477 57.3096 50.46C57.2038 50.1722 57.0345 49.9352 56.8018 49.749C56.569 49.5628 56.2516 49.4697 55.8496 49.4697C55.583 49.4697 55.3376 49.5269 55.1133 49.6411C54.889 49.7511 54.6965 49.9162 54.5356 50.1362C54.3748 50.3563 54.25 50.625 54.1611 50.9424C54.0723 51.2598 54.0278 51.6258 54.0278 52.0405V52.3071C54.0278 52.633 54.0723 52.9398 54.1611 53.2275C54.2542 53.5111 54.3875 53.7607 54.561 53.9766C54.7388 54.1924 54.9525 54.3617 55.2021 54.4844C55.4561 54.6071 55.7438 54.6685 56.0654 54.6685C56.4801 54.6685 56.8314 54.5838 57.1191 54.4146C57.4069 54.2453 57.6587 54.0189 57.8745 53.7354L58.5854 54.3003C58.4373 54.5246 58.249 54.7383 58.0205 54.9414C57.792 55.1445 57.5106 55.3096 57.1763 55.4365C56.8462 55.5635 56.4548 55.627 56.002 55.627ZM63.2637 45.75H64.4443V54.167L64.3428 55.5H63.2637V45.75ZM69.0845 52.0088V52.1421C69.0845 52.6414 69.0252 53.1048 68.9067 53.5322C68.7882 53.9554 68.6147 54.3236 68.3862 54.6367C68.1577 54.9499 67.8784 55.1932 67.5483 55.3667C67.2183 55.5402 66.8395 55.627 66.4121 55.627C65.9762 55.627 65.5933 55.5529 65.2632 55.4048C64.9373 55.2524 64.6623 55.0345 64.438 54.751C64.2137 54.4674 64.0339 54.1247 63.8984 53.7227C63.7673 53.3206 63.6763 52.8678 63.6255 52.3643V51.7803C63.6763 51.2725 63.7673 50.8175 63.8984 50.4155C64.0339 50.0135 64.2137 49.6707 64.438 49.3872C64.6623 49.0994 64.9373 48.8815 65.2632 48.7334C65.589 48.5811 65.9678 48.5049 66.3994 48.5049C66.8311 48.5049 67.214 48.5895 67.5483 48.7588C67.8826 48.9238 68.1619 49.1608 68.3862 49.4697C68.6147 49.7786 68.7882 50.1489 68.9067 50.5806C69.0252 51.008 69.0845 51.484 69.0845 52.0088ZM67.9038 52.1421V52.0088C67.9038 51.666 67.8721 51.3444 67.8086 51.0439C67.7451 50.7393 67.6436 50.4727 67.5039 50.2441C67.3643 50.0114 67.1802 49.8294 66.9517 49.6982C66.7231 49.5628 66.4417 49.4951 66.1074 49.4951C65.8112 49.4951 65.5531 49.5459 65.333 49.6475C65.1172 49.749 64.9331 49.8866 64.7808 50.0601C64.6284 50.2293 64.5036 50.424 64.4062 50.644C64.3132 50.8599 64.2433 51.0841 64.1968 51.3169V52.8467C64.2645 53.1429 64.3745 53.4285 64.5269 53.7036C64.6834 53.9744 64.8908 54.1966 65.1489 54.3701C65.4113 54.5436 65.735 54.6304 66.1201 54.6304C66.4375 54.6304 66.7083 54.5669 66.9326 54.4399C67.1611 54.3088 67.3452 54.1289 67.4849 53.9004C67.6287 53.6719 67.7345 53.4074 67.8022 53.1069C67.87 52.8065 67.9038 52.4849 67.9038 52.1421ZM73.4199 55.627C72.9417 55.627 72.508 55.5465 72.1187 55.3857C71.7336 55.2207 71.4014 54.9901 71.1221 54.6938C70.847 54.3976 70.6354 54.0464 70.4873 53.6401C70.3392 53.2339 70.2651 52.7896 70.2651 52.3071V52.0405C70.2651 51.4819 70.3477 50.9847 70.5127 50.5488C70.6777 50.1087 70.902 49.7363 71.1855 49.4316C71.4691 49.127 71.7907 48.8963 72.1504 48.7397C72.5101 48.5832 72.8825 48.5049 73.2676 48.5049C73.7585 48.5049 74.1816 48.5895 74.5371 48.7588C74.8968 48.9281 75.1909 49.165 75.4194 49.4697C75.6479 49.7702 75.8172 50.1257 75.9272 50.5361C76.0373 50.9424 76.0923 51.3867 76.0923 51.8691V52.396H70.9634V51.4375H74.918V51.3486C74.901 51.0439 74.8376 50.7477 74.7275 50.46C74.6217 50.1722 74.4525 49.9352 74.2197 49.749C73.987 49.5628 73.6696 49.4697 73.2676 49.4697C73.001 49.4697 72.7555 49.5269 72.5312 49.6411C72.307 49.7511 72.1144 49.9162 71.9536 50.1362C71.7928 50.3563 71.668 50.625 71.5791 50.9424C71.4902 51.2598 71.4458 51.6258 71.4458 52.0405V52.3071C71.4458 52.633 71.4902 52.9398 71.5791 53.2275C71.6722 53.5111 71.8055 53.7607 71.979 53.9766C72.1567 54.1924 72.3704 54.3617 72.6201 54.4844C72.874 54.6071 73.1618 54.6685 73.4834 54.6685C73.8981 54.6685 74.2493 54.5838 74.5371 54.4146C74.8249 54.2453 75.0767 54.0189 75.2925 53.7354L76.0034 54.3003C75.8553 54.5246 75.667 54.7383 75.4385 54.9414C75.21 55.1445 74.9285 55.3096 74.5942 55.4365C74.2642 55.5635 73.8727 55.627 73.4199 55.627ZM81.5132 54.3257V50.79C81.5132 50.5192 81.4582 50.2843 81.3481 50.0854C81.2424 49.8823 81.0815 49.7257 80.8657 49.6157C80.6499 49.5057 80.3833 49.4507 80.0659 49.4507C79.7697 49.4507 79.5094 49.5015 79.2852 49.603C79.0651 49.7046 78.8916 49.8379 78.7646 50.0029C78.6419 50.168 78.5806 50.3457 78.5806 50.5361H77.4062C77.4062 50.2907 77.4697 50.0474 77.5967 49.8062C77.7236 49.5649 77.9056 49.347 78.1426 49.1523C78.3838 48.9535 78.6715 48.7969 79.0059 48.6826C79.3444 48.5641 79.721 48.5049 80.1357 48.5049C80.6351 48.5049 81.0752 48.5895 81.4561 48.7588C81.8411 48.9281 82.1416 49.1841 82.3574 49.5269C82.5775 49.8654 82.6875 50.2907 82.6875 50.8027V54.002C82.6875 54.2305 82.7065 54.4738 82.7446 54.7319C82.7869 54.9901 82.8483 55.2122 82.9287 55.3984V55.5H81.7036C81.6444 55.3646 81.5978 55.1847 81.564 54.9604C81.5301 54.7319 81.5132 54.5203 81.5132 54.3257ZM81.7163 51.3359L81.729 52.1611H80.542C80.2077 52.1611 79.9093 52.1886 79.647 52.2437C79.3846 52.2944 79.1646 52.3727 78.9868 52.4785C78.8091 52.5843 78.6737 52.7176 78.5806 52.8784C78.4875 53.035 78.4409 53.2191 78.4409 53.4307C78.4409 53.6465 78.4896 53.8433 78.5869 54.021C78.6842 54.1987 78.8302 54.3405 79.0249 54.4463C79.2238 54.5479 79.4671 54.5986 79.7549 54.5986C80.1146 54.5986 80.432 54.5225 80.707 54.3701C80.9821 54.2178 81.2 54.0316 81.3608 53.8115C81.5259 53.5915 81.6147 53.3778 81.6274 53.1704L82.1289 53.7354C82.0993 53.9131 82.0189 54.1099 81.8877 54.3257C81.7565 54.5415 81.5809 54.7489 81.3608 54.9478C81.145 55.1424 80.8869 55.3053 80.5864 55.4365C80.2902 55.5635 79.9559 55.627 79.5835 55.627C79.118 55.627 78.7096 55.536 78.3584 55.354C78.0114 55.172 77.7406 54.9287 77.5459 54.624C77.3555 54.3151 77.2603 53.9702 77.2603 53.5894C77.2603 53.2212 77.3322 52.8975 77.4761 52.6182C77.62 52.3346 77.8273 52.0998 78.0981 51.9136C78.369 51.7231 78.6948 51.5793 79.0757 51.4819C79.4565 51.3846 79.8818 51.3359 80.3516 51.3359H81.7163ZM87.2832 54.6621C87.5625 54.6621 87.8206 54.605 88.0576 54.4907C88.2946 54.3765 88.4893 54.2199 88.6416 54.021C88.7939 53.8179 88.8807 53.5872 88.9019 53.3291H90.019C89.9979 53.7354 89.8604 54.1141 89.6064 54.4653C89.3568 54.8123 89.0288 55.0938 88.6226 55.3096C88.2163 55.5212 87.7699 55.627 87.2832 55.627C86.7669 55.627 86.3162 55.536 85.9312 55.354C85.5503 55.172 85.2329 54.9224 84.979 54.605C84.7293 54.2876 84.541 53.9237 84.4141 53.5132C84.2913 53.0985 84.23 52.6605 84.23 52.1992V51.9326C84.23 51.4714 84.2913 51.0355 84.4141 50.625C84.541 50.2103 84.7293 49.8442 84.979 49.5269C85.2329 49.2095 85.5503 48.9598 85.9312 48.7778C86.3162 48.5959 86.7669 48.5049 87.2832 48.5049C87.8206 48.5049 88.2904 48.6149 88.6924 48.835C89.0944 49.0508 89.4097 49.347 89.6382 49.7236C89.8709 50.096 89.9979 50.5192 90.019 50.9932H88.9019C88.8807 50.7096 88.8003 50.4536 88.6606 50.2251C88.5252 49.9966 88.339 49.8146 88.1021 49.6792C87.8693 49.5396 87.5964 49.4697 87.2832 49.4697C86.9235 49.4697 86.6209 49.5417 86.3755 49.6855C86.1343 49.8252 85.9417 50.0156 85.7979 50.2568C85.6582 50.4938 85.5566 50.7583 85.4932 51.0503C85.4339 51.3381 85.4043 51.6322 85.4043 51.9326V52.1992C85.4043 52.4997 85.4339 52.7959 85.4932 53.0879C85.5524 53.3799 85.6519 53.6444 85.7915 53.8813C85.9354 54.1183 86.1279 54.3088 86.3691 54.4526C86.6146 54.5923 86.9193 54.6621 87.2832 54.6621ZM92.5137 45.75V55.5H91.3394V45.75H92.5137ZM92.2344 51.8057L91.7456 51.7866C91.7498 51.3169 91.8197 50.8831 91.9551 50.4854C92.0905 50.0833 92.2809 49.7342 92.5264 49.438C92.7718 49.1418 93.0638 48.9132 93.4023 48.7524C93.7451 48.5874 94.1239 48.5049 94.5386 48.5049C94.8771 48.5049 95.1818 48.5514 95.4526 48.6445C95.7235 48.7334 95.9541 48.8773 96.1445 49.0762C96.3392 49.2751 96.4873 49.5332 96.5889 49.8506C96.6904 50.1637 96.7412 50.5467 96.7412 50.9995V55.5H95.5605V50.9868C95.5605 50.6271 95.5076 50.3394 95.4019 50.1235C95.2961 49.9035 95.1416 49.7448 94.9385 49.6475C94.7354 49.5459 94.4857 49.4951 94.1895 49.4951C93.8975 49.4951 93.6309 49.5565 93.3896 49.6792C93.1527 49.8019 92.9474 49.9712 92.7739 50.187C92.6047 50.4028 92.4714 50.6504 92.374 50.9297C92.2809 51.2048 92.2344 51.4967 92.2344 51.8057Z",fill:"#0F172A"}),(0,o.createElement)("g",{clipPath:"url(#clip0_76_1273)"},(0,o.createElement)("path",{d:"M256 49L261 54L266 49H256Z",fill:"#64748B"})),(0,o.createElement)("rect",{x:"16",y:"37",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,o.createElement)("path",{d:"M15 69C15 66.7909 16.7909 65 19 65H279C281.209 65 283 66.7909 283 69V91.3333H15V69Z",fill:"#4272F9"}),(0,o.createElement)("path",{d:"M29.4941 74.2434L26.4346 82.6667H25.1841L28.707 73.4246H29.5132L29.4941 74.2434ZM32.0586 82.6667L28.9927 74.2434L28.9736 73.4246H29.7798L33.3154 82.6667H32.0586ZM31.8999 79.2454V80.2483H26.7075V79.2454H31.8999ZM37.1367 75.7986V76.7H33.4233V75.7986H37.1367ZM34.6802 74.1292H35.8545V80.9656C35.8545 81.1983 35.8905 81.3739 35.9624 81.4924C36.0343 81.6109 36.1274 81.6892 36.2417 81.7273C36.356 81.7654 36.4787 81.7844 36.6099 81.7844C36.7072 81.7844 36.8088 81.776 36.9146 81.759C37.0246 81.7379 37.1071 81.7209 37.1621 81.7083L37.1685 82.6667C37.0754 82.6964 36.9526 82.7239 36.8003 82.7493C36.6522 82.7789 36.4723 82.7937 36.2607 82.7937C35.973 82.7937 35.7085 82.7366 35.4673 82.6223C35.2261 82.5081 35.0335 82.3176 34.8896 82.051C34.75 81.7802 34.6802 81.4163 34.6802 80.9592V74.1292ZM44.6143 75.7986V76.7H40.9009V75.7986H44.6143ZM42.1577 74.1292H43.332V80.9656C43.332 81.1983 43.368 81.3739 43.4399 81.4924C43.5119 81.6109 43.605 81.6892 43.7192 81.7273C43.8335 81.7654 43.9562 81.7844 44.0874 81.7844C44.1847 81.7844 44.2863 81.776 44.3921 81.759C44.5021 81.7379 44.5846 81.7209 44.6396 81.7083L44.646 82.6667C44.5529 82.6964 44.4302 82.7239 44.2778 82.7493C44.1297 82.7789 43.9499 82.7937 43.7383 82.7937C43.4505 82.7937 43.186 82.7366 42.9448 82.6223C42.7036 82.5081 42.5111 82.3176 42.3672 82.051C42.2275 81.7802 42.1577 81.4163 42.1577 80.9592V74.1292ZM47.166 72.9167V82.6667H45.9917V72.9167H47.166ZM46.8867 78.9724L46.3979 78.9534C46.4022 78.4836 46.472 78.0499 46.6074 77.6521C46.7428 77.2501 46.9333 76.901 47.1787 76.6047C47.4242 76.3085 47.7161 76.08 48.0547 75.9192C48.3975 75.7542 48.7762 75.6716 49.1909 75.6716C49.5295 75.6716 49.8341 75.7182 50.105 75.8113C50.3758 75.9001 50.6064 76.044 50.7969 76.2429C50.9915 76.4418 51.1396 76.7 51.2412 77.0173C51.3428 77.3305 51.3936 77.7135 51.3936 78.1663V82.6667H50.2129V78.1536C50.2129 77.7939 50.16 77.5061 50.0542 77.2903C49.9484 77.0702 49.7939 76.9115 49.5908 76.8142C49.3877 76.7126 49.138 76.6619 48.8418 76.6619C48.5498 76.6619 48.2832 76.7232 48.042 76.8459C47.805 76.9687 47.5998 77.1379 47.4263 77.3538C47.257 77.5696 47.1237 77.8171 47.0264 78.0964C46.9333 78.3715 46.8867 78.6635 46.8867 78.9724ZM56.002 82.7937C55.5238 82.7937 55.09 82.7133 54.7007 82.5525C54.3156 82.3875 53.9834 82.1568 53.7041 81.8606C53.429 81.5644 53.2174 81.2131 53.0693 80.8069C52.9212 80.4006 52.8472 79.9563 52.8472 79.4739V79.2073C52.8472 78.6487 52.9297 78.1514 53.0947 77.7156C53.2598 77.2755 53.484 76.9031 53.7676 76.5984C54.0511 76.2937 54.3727 76.0631 54.7324 75.9065C55.0921 75.7499 55.4645 75.6716 55.8496 75.6716C56.3405 75.6716 56.7637 75.7563 57.1191 75.9255C57.4788 76.0948 57.7729 76.3318 58.0015 76.6365C58.23 76.9369 58.3993 77.2924 58.5093 77.7029C58.6193 78.1091 58.6743 78.5535 58.6743 79.0359V79.5627H53.5454V78.6042H57.5V78.5154C57.4831 78.2107 57.4196 77.9145 57.3096 77.6267C57.2038 77.3389 57.0345 77.102 56.8018 76.9158C56.569 76.7296 56.2516 76.6365 55.8496 76.6365C55.583 76.6365 55.3376 76.6936 55.1133 76.8079C54.889 76.9179 54.6965 77.0829 54.5356 77.303C54.3748 77.523 54.25 77.7917 54.1611 78.1091C54.0723 78.4265 54.0278 78.7926 54.0278 79.2073V79.4739C54.0278 79.7997 54.0723 80.1065 54.1611 80.3943C54.2542 80.6778 54.3875 80.9275 54.561 81.1433C54.7388 81.3591 54.9525 81.5284 55.2021 81.6511C55.4561 81.7738 55.7438 81.8352 56.0654 81.8352C56.4801 81.8352 56.8314 81.7506 57.1191 81.5813C57.4069 81.412 57.6587 81.1856 57.8745 80.9021L58.5854 81.467C58.4373 81.6913 58.249 81.905 58.0205 82.1082C57.792 82.3113 57.5106 82.4763 57.1763 82.6033C56.8462 82.7302 56.4548 82.7937 56.002 82.7937ZM63.2637 72.9167H64.4443V81.3337L64.3428 82.6667H63.2637V72.9167ZM69.0845 79.1755V79.3088C69.0845 79.8082 69.0252 80.2716 68.9067 80.699C68.7882 81.1222 68.6147 81.4903 68.3862 81.8035C68.1577 82.1166 67.8784 82.3599 67.5483 82.5334C67.2183 82.7069 66.8395 82.7937 66.4121 82.7937C65.9762 82.7937 65.5933 82.7196 65.2632 82.5715C64.9373 82.4192 64.6623 82.2013 64.438 81.9177C64.2137 81.6342 64.0339 81.2914 63.8984 80.8894C63.7673 80.4874 63.6763 80.0346 63.6255 79.531V78.947C63.6763 78.4392 63.7673 77.9843 63.8984 77.5823C64.0339 77.1803 64.2137 76.8375 64.438 76.554C64.6623 76.2662 64.9373 76.0483 65.2632 75.9001C65.589 75.7478 65.9678 75.6716 66.3994 75.6716C66.8311 75.6716 67.214 75.7563 67.5483 75.9255C67.8826 76.0906 68.1619 76.3276 68.3862 76.6365C68.6147 76.9454 68.7882 77.3157 68.9067 77.7473C69.0252 78.1747 69.0845 78.6508 69.0845 79.1755ZM67.9038 79.3088V79.1755C67.9038 78.8328 67.8721 78.5111 67.8086 78.2107C67.7451 77.906 67.6436 77.6394 67.5039 77.4109C67.3643 77.1781 67.1802 76.9962 66.9517 76.865C66.7231 76.7296 66.4417 76.6619 66.1074 76.6619C65.8112 76.6619 65.5531 76.7126 65.333 76.8142C65.1172 76.9158 64.9331 77.0533 64.7808 77.2268C64.6284 77.3961 64.5036 77.5907 64.4062 77.8108C64.3132 78.0266 64.2433 78.2509 64.1968 78.4836V80.0134C64.2645 80.3097 64.3745 80.5953 64.5269 80.8704C64.6834 81.1412 64.8908 81.3634 65.1489 81.5369C65.4113 81.7104 65.735 81.7971 66.1201 81.7971C66.4375 81.7971 66.7083 81.7336 66.9326 81.6067C67.1611 81.4755 67.3452 81.2957 67.4849 81.0671C67.6287 80.8386 67.7345 80.5741 67.8022 80.2737C67.87 79.9732 67.9038 79.6516 67.9038 79.3088ZM73.4199 82.7937C72.9417 82.7937 72.508 82.7133 72.1187 82.5525C71.7336 82.3875 71.4014 82.1568 71.1221 81.8606C70.847 81.5644 70.6354 81.2131 70.4873 80.8069C70.3392 80.4006 70.2651 79.9563 70.2651 79.4739V79.2073C70.2651 78.6487 70.3477 78.1514 70.5127 77.7156C70.6777 77.2755 70.902 76.9031 71.1855 76.5984C71.4691 76.2937 71.7907 76.0631 72.1504 75.9065C72.5101 75.7499 72.8825 75.6716 73.2676 75.6716C73.7585 75.6716 74.1816 75.7563 74.5371 75.9255C74.8968 76.0948 75.1909 76.3318 75.4194 76.6365C75.6479 76.9369 75.8172 77.2924 75.9272 77.7029C76.0373 78.1091 76.0923 78.5535 76.0923 79.0359V79.5627H70.9634V78.6042H74.918V78.5154C74.901 78.2107 74.8376 77.9145 74.7275 77.6267C74.6217 77.3389 74.4525 77.102 74.2197 76.9158C73.987 76.7296 73.6696 76.6365 73.2676 76.6365C73.001 76.6365 72.7555 76.6936 72.5312 76.8079C72.307 76.9179 72.1144 77.0829 71.9536 77.303C71.7928 77.523 71.668 77.7917 71.5791 78.1091C71.4902 78.4265 71.4458 78.7926 71.4458 79.2073V79.4739C71.4458 79.7997 71.4902 80.1065 71.5791 80.3943C71.6722 80.6778 71.8055 80.9275 71.979 81.1433C72.1567 81.3591 72.3704 81.5284 72.6201 81.6511C72.874 81.7738 73.1618 81.8352 73.4834 81.8352C73.8981 81.8352 74.2493 81.7506 74.5371 81.5813C74.8249 81.412 75.0767 81.1856 75.2925 80.9021L76.0034 81.467C75.8553 81.6913 75.667 81.905 75.4385 82.1082C75.21 82.3113 74.9285 82.4763 74.5942 82.6033C74.2642 82.7302 73.8727 82.7937 73.4199 82.7937ZM81.5132 81.4924V77.9568C81.5132 77.686 81.4582 77.4511 81.3481 77.2522C81.2424 77.0491 81.0815 76.8925 80.8657 76.7825C80.6499 76.6724 80.3833 76.6174 80.0659 76.6174C79.7697 76.6174 79.5094 76.6682 79.2852 76.7698C79.0651 76.8713 78.8916 77.0046 78.7646 77.1697C78.6419 77.3347 78.5806 77.5125 78.5806 77.7029H77.4062C77.4062 77.4574 77.4697 77.2141 77.5967 76.9729C77.7236 76.7317 77.9056 76.5138 78.1426 76.3191C78.3838 76.1202 78.6715 75.9636 79.0059 75.8494C79.3444 75.7309 79.721 75.6716 80.1357 75.6716C80.6351 75.6716 81.0752 75.7563 81.4561 75.9255C81.8411 76.0948 82.1416 76.3508 82.3574 76.6936C82.5775 77.0321 82.6875 77.4574 82.6875 77.9695V81.1687C82.6875 81.3972 82.7065 81.6405 82.7446 81.8987C82.7869 82.1568 82.8483 82.379 82.9287 82.5652V82.6667H81.7036C81.6444 82.5313 81.5978 82.3515 81.564 82.1272C81.5301 81.8987 81.5132 81.6871 81.5132 81.4924ZM81.7163 78.5027L81.729 79.3279H80.542C80.2077 79.3279 79.9093 79.3554 79.647 79.4104C79.3846 79.4612 79.1646 79.5395 78.9868 79.6453C78.8091 79.7511 78.6737 79.8844 78.5806 80.0452C78.4875 80.2017 78.4409 80.3858 78.4409 80.5974C78.4409 80.8132 78.4896 81.01 78.5869 81.1877C78.6842 81.3655 78.8302 81.5072 79.0249 81.613C79.2238 81.7146 79.4671 81.7654 79.7549 81.7654C80.1146 81.7654 80.432 81.6892 80.707 81.5369C80.9821 81.3845 81.2 81.1983 81.3608 80.9783C81.5259 80.7582 81.6147 80.5445 81.6274 80.3372L82.1289 80.9021C82.0993 81.0798 82.0189 81.2766 81.8877 81.4924C81.7565 81.7083 81.5809 81.9156 81.3608 82.1145C81.145 82.3092 80.8869 82.4721 80.5864 82.6033C80.2902 82.7302 79.9559 82.7937 79.5835 82.7937C79.118 82.7937 78.7096 82.7027 78.3584 82.5208C78.0114 82.3388 77.7406 82.0955 77.5459 81.7908C77.3555 81.4819 77.2603 81.137 77.2603 80.7561C77.2603 80.3879 77.3322 80.0642 77.4761 79.7849C77.62 79.5014 77.8273 79.2665 78.0981 79.0803C78.369 78.8899 78.6948 78.746 79.0757 78.6487C79.4565 78.5514 79.8818 78.5027 80.3516 78.5027H81.7163ZM87.2832 81.8289C87.5625 81.8289 87.8206 81.7717 88.0576 81.6575C88.2946 81.5432 88.4893 81.3866 88.6416 81.1877C88.7939 80.9846 88.8807 80.754 88.9019 80.4958H90.019C89.9979 80.9021 89.8604 81.2808 89.6064 81.6321C89.3568 81.9791 89.0288 82.2605 88.6226 82.4763C88.2163 82.6879 87.7699 82.7937 87.2832 82.7937C86.7669 82.7937 86.3162 82.7027 85.9312 82.5208C85.5503 82.3388 85.2329 82.0891 84.979 81.7717C84.7293 81.4543 84.541 81.0904 84.4141 80.6799C84.2913 80.2652 84.23 79.8272 84.23 79.366V79.0994C84.23 78.6381 84.2913 78.2022 84.4141 77.7917C84.541 77.377 84.7293 77.011 84.979 76.6936C85.2329 76.3762 85.5503 76.1265 85.9312 75.9446C86.3162 75.7626 86.7669 75.6716 87.2832 75.6716C87.8206 75.6716 88.2904 75.7817 88.6924 76.0017C89.0944 76.2175 89.4097 76.5138 89.6382 76.8904C89.8709 77.2628 89.9979 77.686 90.019 78.1599H88.9019C88.8807 77.8764 88.8003 77.6204 88.6606 77.3918C88.5252 77.1633 88.339 76.9814 88.1021 76.8459C87.8693 76.7063 87.5964 76.6365 87.2832 76.6365C86.9235 76.6365 86.6209 76.7084 86.3755 76.8523C86.1343 76.9919 85.9417 77.1824 85.7979 77.4236C85.6582 77.6606 85.5566 77.925 85.4932 78.217C85.4339 78.5048 85.4043 78.7989 85.4043 79.0994V79.366C85.4043 79.6664 85.4339 79.9626 85.4932 80.2546C85.5524 80.5466 85.6519 80.8111 85.7915 81.0481C85.9354 81.2851 86.1279 81.4755 86.3691 81.6194C86.6146 81.759 86.9193 81.8289 87.2832 81.8289ZM92.5137 72.9167V82.6667H91.3394V72.9167H92.5137ZM92.2344 78.9724L91.7456 78.9534C91.7498 78.4836 91.8197 78.0499 91.9551 77.6521C92.0905 77.2501 92.2809 76.901 92.5264 76.6047C92.7718 76.3085 93.0638 76.08 93.4023 75.9192C93.7451 75.7542 94.1239 75.6716 94.5386 75.6716C94.8771 75.6716 95.1818 75.7182 95.4526 75.8113C95.7235 75.9001 95.9541 76.044 96.1445 76.2429C96.3392 76.4418 96.4873 76.7 96.5889 77.0173C96.6904 77.3305 96.7412 77.7135 96.7412 78.1663V82.6667H95.5605V78.1536C95.5605 77.7939 95.5076 77.5061 95.4019 77.2903C95.2961 77.0702 95.1416 76.9115 94.9385 76.8142C94.7354 76.7126 94.4857 76.6619 94.1895 76.6619C93.8975 76.6619 93.6309 76.7232 93.3896 76.8459C93.1527 76.9687 92.9474 77.1379 92.7739 77.3538C92.6047 77.5696 92.4714 77.8171 92.374 78.0964C92.2809 78.3715 92.2344 78.6635 92.2344 78.9724Z",fill:"white"}),(0,o.createElement)("rect",{width:"268",height:"26.3333",transform:"translate(15 91.3333)",fill:"white"}),(0,o.createElement)("path",{d:"M27.2534 104.601L26.314 104.36L26.7773 99.7578H31.519V100.843H27.7739L27.4946 103.357C27.6639 103.26 27.8776 103.169 28.1357 103.084C28.3981 102.999 28.6986 102.957 29.0371 102.957C29.4645 102.957 29.8475 103.031 30.186 103.179C30.5246 103.323 30.8123 103.53 31.0493 103.801C31.2905 104.072 31.4746 104.398 31.6016 104.779C31.7285 105.16 31.792 105.585 31.792 106.055C31.792 106.499 31.7306 106.907 31.6079 107.28C31.4894 107.652 31.3096 107.978 31.0684 108.257C30.8271 108.532 30.5225 108.746 30.1543 108.898C29.7904 109.051 29.3608 109.127 28.8657 109.127C28.4933 109.127 28.14 109.076 27.8057 108.975C27.4756 108.869 27.1794 108.71 26.917 108.499C26.6589 108.283 26.4473 108.016 26.2822 107.699C26.1214 107.377 26.0199 107 25.9775 106.569H27.0947C27.1455 106.916 27.2471 107.208 27.3994 107.445C27.5518 107.682 27.7507 107.862 27.9961 107.984C28.2458 108.103 28.5356 108.162 28.8657 108.162C29.145 108.162 29.3926 108.113 29.6084 108.016C29.8242 107.919 30.0062 107.779 30.1543 107.597C30.3024 107.415 30.4146 107.195 30.4907 106.937C30.5711 106.679 30.6113 106.389 30.6113 106.067C30.6113 105.775 30.5711 105.505 30.4907 105.255C30.4103 105.005 30.2897 104.787 30.1289 104.601C29.9723 104.415 29.7798 104.271 29.5513 104.169C29.3228 104.064 29.0604 104.011 28.7642 104.011C28.3706 104.011 28.0723 104.064 27.8691 104.169C27.6702 104.275 27.465 104.419 27.2534 104.601ZM37.6001 103.497V109H36.4194V102.132H37.5366L37.6001 103.497ZM37.3589 105.306L36.813 105.287C36.8172 104.817 36.8786 104.383 36.9971 103.985C37.1156 103.583 37.2912 103.234 37.5239 102.938C37.7567 102.642 38.0465 102.413 38.3936 102.252C38.7406 102.087 39.1426 102.005 39.5996 102.005C39.9212 102.005 40.2174 102.051 40.4883 102.145C40.7591 102.233 40.994 102.375 41.1929 102.57C41.3918 102.764 41.5462 103.014 41.6562 103.319C41.7663 103.624 41.8213 103.992 41.8213 104.423V109H40.647V104.48C40.647 104.121 40.5856 103.833 40.4629 103.617C40.3444 103.401 40.1751 103.245 39.9551 103.147C39.735 103.046 39.4769 102.995 39.1807 102.995C38.8337 102.995 38.5438 103.056 38.311 103.179C38.0783 103.302 37.8921 103.471 37.7524 103.687C37.6128 103.903 37.5112 104.15 37.4478 104.43C37.3885 104.705 37.3589 104.997 37.3589 105.306ZM41.8086 104.658L41.0215 104.899C41.0257 104.523 41.0871 104.161 41.2056 103.814C41.3283 103.467 41.5039 103.158 41.7324 102.887C41.9652 102.616 42.2508 102.403 42.5894 102.246C42.9279 102.085 43.3151 102.005 43.751 102.005C44.1191 102.005 44.445 102.054 44.7285 102.151C45.0163 102.248 45.2575 102.398 45.4521 102.602C45.651 102.8 45.8013 103.056 45.9028 103.37C46.0044 103.683 46.0552 104.055 46.0552 104.487V109H44.8745V104.474C44.8745 104.089 44.8132 103.791 44.6904 103.579C44.5719 103.363 44.4027 103.213 44.1826 103.128C43.9668 103.04 43.7087 102.995 43.4082 102.995C43.1501 102.995 42.9215 103.04 42.7227 103.128C42.5238 103.217 42.3566 103.34 42.2212 103.497C42.0858 103.649 41.9821 103.825 41.9102 104.023C41.8424 104.222 41.8086 104.434 41.8086 104.658ZM49.1084 102.132V109H47.9277V102.132H49.1084ZM47.8389 100.31C47.8389 100.12 47.896 99.9588 48.0103 99.8276C48.1287 99.6965 48.3022 99.6309 48.5308 99.6309C48.755 99.6309 48.9264 99.6965 49.0449 99.8276C49.1676 99.9588 49.229 100.12 49.229 100.31C49.229 100.492 49.1676 100.649 49.0449 100.78C48.9264 100.907 48.755 100.97 48.5308 100.97C48.3022 100.97 48.1287 100.907 48.0103 100.78C47.896 100.649 47.8389 100.492 47.8389 100.31ZM52.168 103.598V109H50.9937V102.132H52.1045L52.168 103.598ZM51.8887 105.306L51.3999 105.287C51.4041 104.817 51.474 104.383 51.6094 103.985C51.7448 103.583 51.9352 103.234 52.1807 102.938C52.4261 102.642 52.7181 102.413 53.0566 102.252C53.3994 102.087 53.7782 102.005 54.1929 102.005C54.5314 102.005 54.8361 102.051 55.1069 102.145C55.3778 102.233 55.6084 102.377 55.7988 102.576C55.9935 102.775 56.1416 103.033 56.2432 103.351C56.3447 103.664 56.3955 104.047 56.3955 104.5V109H55.2148V104.487C55.2148 104.127 55.1619 103.839 55.0562 103.624C54.9504 103.403 54.7959 103.245 54.5928 103.147C54.3896 103.046 54.14 102.995 53.8438 102.995C53.5518 102.995 53.2852 103.056 53.0439 103.179C52.807 103.302 52.6017 103.471 52.4282 103.687C52.259 103.903 52.1257 104.15 52.0283 104.43C51.9352 104.705 51.8887 104.997 51.8887 105.306ZM62.3813 107.413V102.132H63.562V109H62.4385L62.3813 107.413ZM62.6035 105.966L63.0923 105.953C63.0923 106.41 63.0436 106.833 62.9463 107.223C62.8532 107.608 62.7008 107.942 62.4893 108.226C62.2777 108.509 62.0005 108.731 61.6577 108.892C61.3149 109.049 60.8981 109.127 60.4072 109.127C60.0729 109.127 59.7661 109.078 59.4868 108.981C59.2118 108.884 58.9748 108.733 58.7759 108.53C58.577 108.327 58.4225 108.063 58.3125 107.737C58.2067 107.411 58.1538 107.02 58.1538 106.562V102.132H59.3281V106.575C59.3281 106.884 59.362 107.14 59.4297 107.343C59.5016 107.542 59.5968 107.701 59.7153 107.819C59.8381 107.934 59.9735 108.014 60.1216 108.061C60.2739 108.107 60.4305 108.13 60.5913 108.13C61.0907 108.13 61.4863 108.035 61.7783 107.845C62.0703 107.65 62.2798 107.39 62.4067 107.064C62.5379 106.734 62.6035 106.368 62.6035 105.966ZM68.2275 102.132V103.033H64.5142V102.132H68.2275ZM65.771 100.462H66.9453V107.299C66.9453 107.532 66.9813 107.707 67.0532 107.826C67.1252 107.944 67.2183 108.022 67.3325 108.061C67.4468 108.099 67.5695 108.118 67.7007 108.118C67.798 108.118 67.8996 108.109 68.0054 108.092C68.1154 108.071 68.1979 108.054 68.2529 108.042L68.2593 109C68.1662 109.03 68.0435 109.057 67.8911 109.083C67.743 109.112 67.5632 109.127 67.3516 109.127C67.0638 109.127 66.7993 109.07 66.5581 108.956C66.3169 108.841 66.1243 108.651 65.9805 108.384C65.8408 108.113 65.771 107.75 65.771 107.292V100.462ZM72.4551 109.127C71.9769 109.127 71.5431 109.047 71.1538 108.886C70.7687 108.721 70.4365 108.49 70.1572 108.194C69.8822 107.898 69.6706 107.546 69.5225 107.14C69.3743 106.734 69.3003 106.29 69.3003 105.807V105.541C69.3003 104.982 69.3828 104.485 69.5479 104.049C69.7129 103.609 69.9372 103.236 70.2207 102.932C70.5042 102.627 70.8258 102.396 71.1855 102.24C71.5452 102.083 71.9176 102.005 72.3027 102.005C72.7936 102.005 73.2168 102.09 73.5723 102.259C73.932 102.428 74.2261 102.665 74.4546 102.97C74.6831 103.27 74.8524 103.626 74.9624 104.036C75.0724 104.442 75.1274 104.887 75.1274 105.369V105.896H69.9985V104.938H73.9531V104.849C73.9362 104.544 73.8727 104.248 73.7627 103.96C73.6569 103.672 73.4876 103.435 73.2549 103.249C73.0221 103.063 72.7048 102.97 72.3027 102.97C72.0361 102.97 71.7907 103.027 71.5664 103.141C71.3421 103.251 71.1496 103.416 70.9888 103.636C70.828 103.856 70.7031 104.125 70.6143 104.442C70.5254 104.76 70.481 105.126 70.481 105.541V105.807C70.481 106.133 70.5254 106.44 70.6143 106.728C70.7074 107.011 70.8407 107.261 71.0142 107.477C71.1919 107.692 71.4056 107.862 71.6553 107.984C71.9092 108.107 72.1969 108.168 72.5186 108.168C72.9333 108.168 73.2845 108.084 73.5723 107.915C73.86 107.745 74.1118 107.519 74.3276 107.235L75.0386 107.8C74.8905 108.025 74.7021 108.238 74.4736 108.441C74.2451 108.645 73.9637 108.81 73.6294 108.937C73.2993 109.063 72.9079 109.127 72.4551 109.127ZM80.4976 107.178C80.4976 107.009 80.4595 106.852 80.3833 106.708C80.3114 106.56 80.1611 106.427 79.9326 106.309C79.7083 106.186 79.3698 106.08 78.917 105.991C78.5361 105.911 78.1912 105.816 77.8823 105.706C77.5776 105.596 77.3174 105.462 77.1016 105.306C76.89 105.149 76.7271 104.965 76.6128 104.753C76.4985 104.542 76.4414 104.294 76.4414 104.011C76.4414 103.74 76.5007 103.484 76.6191 103.243C76.7419 103.001 76.9132 102.788 77.1333 102.602C77.3576 102.415 77.6263 102.269 77.9395 102.164C78.2526 102.058 78.6017 102.005 78.9868 102.005C79.5369 102.005 80.0067 102.102 80.396 102.297C80.7853 102.492 81.0837 102.752 81.291 103.078C81.4984 103.399 81.6021 103.757 81.6021 104.15H80.4277C80.4277 103.96 80.3706 103.776 80.2563 103.598C80.1463 103.416 79.9834 103.266 79.7676 103.147C79.556 103.029 79.2957 102.97 78.9868 102.97C78.661 102.97 78.3965 103.021 78.1934 103.122C77.9945 103.219 77.8485 103.344 77.7554 103.497C77.6665 103.649 77.6221 103.81 77.6221 103.979C77.6221 104.106 77.6432 104.22 77.6855 104.322C77.7321 104.419 77.8125 104.51 77.9268 104.595C78.041 104.675 78.2018 104.751 78.4092 104.823C78.6165 104.895 78.881 104.967 79.2026 105.039C79.7655 105.166 80.2288 105.318 80.5928 105.496C80.9567 105.674 81.2275 105.892 81.4053 106.15C81.583 106.408 81.6719 106.721 81.6719 107.089C81.6719 107.39 81.6084 107.665 81.4814 107.915C81.3587 108.164 81.1789 108.38 80.9419 108.562C80.7091 108.74 80.4299 108.879 80.104 108.981C79.7824 109.078 79.4206 109.127 79.0186 109.127C78.4134 109.127 77.9014 109.019 77.4824 108.803C77.0635 108.587 76.7461 108.308 76.5303 107.965C76.3145 107.623 76.2065 107.261 76.2065 106.88H77.3872C77.4041 107.201 77.4972 107.458 77.6665 107.648C77.8358 107.834 78.0431 107.967 78.2886 108.048C78.534 108.124 78.7773 108.162 79.0186 108.162C79.3402 108.162 79.6089 108.12 79.8247 108.035C80.0448 107.951 80.2119 107.834 80.3262 107.686C80.4404 107.538 80.4976 107.369 80.4976 107.178ZM89.3145 102.132V103.033H85.6011V102.132H89.3145ZM86.8579 100.462H88.0322V107.299C88.0322 107.532 88.0682 107.707 88.1401 107.826C88.2121 107.944 88.3052 108.022 88.4194 108.061C88.5337 108.099 88.6564 108.118 88.7876 108.118C88.8849 108.118 88.9865 108.109 89.0923 108.092C89.2023 108.071 89.2848 108.054 89.3398 108.042L89.3462 109C89.2531 109.03 89.1304 109.057 88.978 109.083C88.8299 109.112 88.6501 109.127 88.4385 109.127C88.1507 109.127 87.8862 109.07 87.645 108.956C87.4038 108.841 87.2113 108.651 87.0674 108.384C86.9277 108.113 86.8579 107.75 86.8579 107.292V100.462ZM90.2539 105.642V105.496C90.2539 105.001 90.3258 104.542 90.4697 104.119C90.6136 103.691 90.821 103.321 91.0918 103.008C91.3626 102.69 91.6906 102.445 92.0757 102.271C92.4608 102.094 92.8924 102.005 93.3706 102.005C93.853 102.005 94.2868 102.094 94.6719 102.271C95.0612 102.445 95.3913 102.69 95.6621 103.008C95.9372 103.321 96.1466 103.691 96.2905 104.119C96.4344 104.542 96.5063 105.001 96.5063 105.496V105.642C96.5063 106.137 96.4344 106.596 96.2905 107.02C96.1466 107.443 95.9372 107.813 95.6621 108.13C95.3913 108.444 95.0633 108.689 94.6782 108.867C94.2974 109.04 93.8657 109.127 93.3833 109.127C92.9009 109.127 92.4671 109.04 92.082 108.867C91.6969 108.689 91.3669 108.444 91.0918 108.13C90.821 107.813 90.6136 107.443 90.4697 107.02C90.3258 106.596 90.2539 106.137 90.2539 105.642ZM91.4282 105.496V105.642C91.4282 105.985 91.4684 106.309 91.5488 106.613C91.6292 106.914 91.7498 107.18 91.9106 107.413C92.0757 107.646 92.2809 107.83 92.5264 107.965C92.7718 108.097 93.0575 108.162 93.3833 108.162C93.7049 108.162 93.9863 108.097 94.2275 107.965C94.473 107.83 94.6761 107.646 94.8369 107.413C94.9977 107.18 95.1183 106.914 95.1987 106.613C95.2834 106.309 95.3257 105.985 95.3257 105.642V105.496C95.3257 105.158 95.2834 104.838 95.1987 104.538C95.1183 104.233 94.9956 103.964 94.8306 103.731C94.6698 103.494 94.4666 103.308 94.2212 103.173C93.98 103.037 93.6965 102.97 93.3706 102.97C93.049 102.97 92.7655 103.037 92.52 103.173C92.2788 103.308 92.0757 103.494 91.9106 103.731C91.7498 103.964 91.6292 104.233 91.5488 104.538C91.4684 104.838 91.4282 105.158 91.4282 105.496ZM104.079 102.132V103.033H100.366V102.132H104.079ZM101.623 100.462H102.797V107.299C102.797 107.532 102.833 107.707 102.905 107.826C102.977 107.944 103.07 108.022 103.184 108.061C103.298 108.099 103.421 108.118 103.552 108.118C103.65 108.118 103.751 108.109 103.857 108.092C103.967 108.071 104.049 108.054 104.104 108.042L104.111 109C104.018 109.03 103.895 109.057 103.743 109.083C103.595 109.112 103.415 109.127 103.203 109.127C102.915 109.127 102.651 109.07 102.41 108.956C102.168 108.841 101.976 108.651 101.832 108.384C101.692 108.113 101.623 107.75 101.623 107.292V100.462ZM106.631 99.25V109H105.457V99.25H106.631ZM106.352 105.306L105.863 105.287C105.867 104.817 105.937 104.383 106.072 103.985C106.208 103.583 106.398 103.234 106.644 102.938C106.889 102.642 107.181 102.413 107.52 102.252C107.862 102.087 108.241 102.005 108.656 102.005C108.994 102.005 109.299 102.051 109.57 102.145C109.841 102.233 110.071 102.377 110.262 102.576C110.456 102.775 110.604 103.033 110.706 103.351C110.808 103.664 110.858 104.047 110.858 104.5V109H109.678V104.487C109.678 104.127 109.625 103.839 109.519 103.624C109.413 103.403 109.259 103.245 109.056 103.147C108.853 103.046 108.603 102.995 108.307 102.995C108.015 102.995 107.748 103.056 107.507 103.179C107.27 103.302 107.065 103.471 106.891 103.687C106.722 103.903 106.589 104.15 106.491 104.43C106.398 104.705 106.352 104.997 106.352 105.306ZM115.467 109.127C114.989 109.127 114.555 109.047 114.166 108.886C113.78 108.721 113.448 108.49 113.169 108.194C112.894 107.898 112.682 107.546 112.534 107.14C112.386 106.734 112.312 106.29 112.312 105.807V105.541C112.312 104.982 112.395 104.485 112.56 104.049C112.725 103.609 112.949 103.236 113.232 102.932C113.516 102.627 113.838 102.396 114.197 102.24C114.557 102.083 114.929 102.005 115.314 102.005C115.805 102.005 116.229 102.09 116.584 102.259C116.944 102.428 117.238 102.665 117.466 102.97C117.695 103.27 117.864 103.626 117.974 104.036C118.084 104.442 118.139 104.887 118.139 105.369V105.896H113.01V104.938H116.965V104.849C116.948 104.544 116.884 104.248 116.774 103.96C116.669 103.672 116.499 103.435 116.267 103.249C116.034 103.063 115.716 102.97 115.314 102.97C115.048 102.97 114.802 103.027 114.578 103.141C114.354 103.251 114.161 103.416 114 103.636C113.84 103.856 113.715 104.125 113.626 104.442C113.537 104.76 113.493 105.126 113.493 105.541V105.807C113.493 106.133 113.537 106.44 113.626 106.728C113.719 107.011 113.852 107.261 114.026 107.477C114.204 107.692 114.417 107.862 114.667 107.984C114.921 108.107 115.209 108.168 115.53 108.168C115.945 108.168 116.296 108.084 116.584 107.915C116.872 107.745 117.124 107.519 117.339 107.235L118.05 107.8C117.902 108.025 117.714 108.238 117.485 108.441C117.257 108.645 116.975 108.81 116.641 108.937C116.311 109.063 115.92 109.127 115.467 109.127ZM126.734 107.178C126.734 107.009 126.696 106.852 126.62 106.708C126.548 106.56 126.397 106.427 126.169 106.309C125.945 106.186 125.606 106.08 125.153 105.991C124.772 105.911 124.428 105.816 124.119 105.706C123.814 105.596 123.554 105.462 123.338 105.306C123.126 105.149 122.963 104.965 122.849 104.753C122.735 104.542 122.678 104.294 122.678 104.011C122.678 103.74 122.737 103.484 122.855 103.243C122.978 103.001 123.15 102.788 123.37 102.602C123.594 102.415 123.863 102.269 124.176 102.164C124.489 102.058 124.838 102.005 125.223 102.005C125.773 102.005 126.243 102.102 126.632 102.297C127.022 102.492 127.32 102.752 127.527 103.078C127.735 103.399 127.838 103.757 127.838 104.15H126.664C126.664 103.96 126.607 103.776 126.493 103.598C126.383 103.416 126.22 103.266 126.004 103.147C125.792 103.029 125.532 102.97 125.223 102.97C124.897 102.97 124.633 103.021 124.43 103.122C124.231 103.219 124.085 103.344 123.992 103.497C123.903 103.649 123.858 103.81 123.858 103.979C123.858 104.106 123.88 104.22 123.922 104.322C123.968 104.419 124.049 104.51 124.163 104.595C124.277 104.675 124.438 104.751 124.646 104.823C124.853 104.895 125.117 104.967 125.439 105.039C126.002 105.166 126.465 105.318 126.829 105.496C127.193 105.674 127.464 105.892 127.642 106.15C127.819 106.408 127.908 106.721 127.908 107.089C127.908 107.39 127.845 107.665 127.718 107.915C127.595 108.164 127.415 108.38 127.178 108.562C126.945 108.74 126.666 108.879 126.34 108.981C126.019 109.078 125.657 109.127 125.255 109.127C124.65 109.127 124.138 109.019 123.719 108.803C123.3 108.587 122.982 108.308 122.767 107.965C122.551 107.623 122.443 107.261 122.443 106.88H123.624C123.64 107.201 123.734 107.458 123.903 107.648C124.072 107.834 124.279 107.967 124.525 108.048C124.77 108.124 125.014 108.162 125.255 108.162C125.576 108.162 125.845 108.12 126.061 108.035C126.281 107.951 126.448 107.834 126.562 107.686C126.677 107.538 126.734 107.369 126.734 107.178ZM130.625 99.25V109H129.451V99.25H130.625ZM130.346 105.306L129.857 105.287C129.861 104.817 129.931 104.383 130.066 103.985C130.202 103.583 130.392 103.234 130.638 102.938C130.883 102.642 131.175 102.413 131.514 102.252C131.856 102.087 132.235 102.005 132.65 102.005C132.988 102.005 133.293 102.051 133.564 102.145C133.835 102.233 134.065 102.377 134.256 102.576C134.451 102.775 134.599 103.033 134.7 103.351C134.802 103.664 134.853 104.047 134.853 104.5V109H133.672V104.487C133.672 104.127 133.619 103.839 133.513 103.624C133.407 103.403 133.253 103.245 133.05 103.147C132.847 103.046 132.597 102.995 132.301 102.995C132.009 102.995 131.742 103.056 131.501 103.179C131.264 103.302 131.059 103.471 130.885 103.687C130.716 103.903 130.583 104.15 130.485 104.43C130.392 104.705 130.346 104.997 130.346 105.306ZM136.3 105.642V105.496C136.3 105.001 136.372 104.542 136.516 104.119C136.66 103.691 136.867 103.321 137.138 103.008C137.409 102.69 137.736 102.445 138.122 102.271C138.507 102.094 138.938 102.005 139.417 102.005C139.899 102.005 140.333 102.094 140.718 102.271C141.107 102.445 141.437 102.69 141.708 103.008C141.983 103.321 142.193 103.691 142.336 104.119C142.48 104.542 142.552 105.001 142.552 105.496V105.642C142.552 106.137 142.48 106.596 142.336 107.02C142.193 107.443 141.983 107.813 141.708 108.13C141.437 108.444 141.109 108.689 140.724 108.867C140.343 109.04 139.912 109.127 139.429 109.127C138.947 109.127 138.513 109.04 138.128 108.867C137.743 108.689 137.413 108.444 137.138 108.13C136.867 107.813 136.66 107.443 136.516 107.02C136.372 106.596 136.3 106.137 136.3 105.642ZM137.474 105.496V105.642C137.474 105.985 137.514 106.309 137.595 106.613C137.675 106.914 137.796 107.18 137.957 107.413C138.122 107.646 138.327 107.83 138.572 107.965C138.818 108.097 139.103 108.162 139.429 108.162C139.751 108.162 140.032 108.097 140.273 107.965C140.519 107.83 140.722 107.646 140.883 107.413C141.044 107.18 141.164 106.914 141.245 106.613C141.329 106.309 141.372 105.985 141.372 105.642V105.496C141.372 105.158 141.329 104.838 141.245 104.538C141.164 104.233 141.042 103.964 140.876 103.731C140.716 103.494 140.513 103.308 140.267 103.173C140.026 103.037 139.742 102.97 139.417 102.97C139.095 102.97 138.811 103.037 138.566 103.173C138.325 103.308 138.122 103.494 137.957 103.731C137.796 103.964 137.675 104.233 137.595 104.538C137.514 104.838 137.474 105.158 137.474 105.496ZM145.199 103.211V109H144.025V102.132H145.167L145.199 103.211ZM147.345 102.094L147.338 103.186C147.241 103.164 147.148 103.152 147.059 103.147C146.974 103.139 146.877 103.135 146.767 103.135C146.496 103.135 146.257 103.177 146.05 103.262C145.842 103.346 145.667 103.465 145.523 103.617C145.379 103.77 145.265 103.951 145.18 104.163C145.1 104.37 145.047 104.599 145.021 104.849L144.691 105.039C144.691 104.624 144.732 104.235 144.812 103.871C144.897 103.507 145.026 103.186 145.199 102.906C145.373 102.623 145.593 102.403 145.859 102.246C146.13 102.085 146.452 102.005 146.824 102.005C146.909 102.005 147.006 102.015 147.116 102.037C147.226 102.054 147.302 102.073 147.345 102.094ZM151.153 109.127C150.675 109.127 150.241 109.047 149.852 108.886C149.467 108.721 149.135 108.49 148.855 108.194C148.58 107.898 148.369 107.546 148.221 107.14C148.073 106.734 147.999 106.29 147.999 105.807V105.541C147.999 104.982 148.081 104.485 148.246 104.049C148.411 103.609 148.635 103.236 148.919 102.932C149.202 102.627 149.524 102.396 149.884 102.24C150.243 102.083 150.616 102.005 151.001 102.005C151.492 102.005 151.915 102.09 152.271 102.259C152.63 102.428 152.924 102.665 153.153 102.97C153.381 103.27 153.551 103.626 153.661 104.036C153.771 104.442 153.826 104.887 153.826 105.369V105.896H148.697V104.938H152.651V104.849C152.634 104.544 152.571 104.248 152.461 103.96C152.355 103.672 152.186 103.435 151.953 103.249C151.72 103.063 151.403 102.97 151.001 102.97C150.734 102.97 150.489 103.027 150.265 103.141C150.04 103.251 149.848 103.416 149.687 103.636C149.526 103.856 149.401 104.125 149.312 104.442C149.224 104.76 149.179 105.126 149.179 105.541V105.807C149.179 106.133 149.224 106.44 149.312 106.728C149.406 107.011 149.539 107.261 149.712 107.477C149.89 107.692 150.104 107.862 150.354 107.984C150.607 108.107 150.895 108.168 151.217 108.168C151.632 108.168 151.983 108.084 152.271 107.915C152.558 107.745 152.81 107.519 153.026 107.235L153.737 107.8C153.589 108.025 153.4 108.238 153.172 108.441C152.943 108.645 152.662 108.81 152.328 108.937C151.998 109.063 151.606 109.127 151.153 109.127Z",fill:"#0F172A"}),(0,o.createElement)("rect",{width:"268",height:"26.3333",transform:"translate(15 117.667)",fill:"white"}),(0,o.createElement)("path",{d:"M29.6274 126.041V135.333H28.4531V127.507L26.0854 128.37V127.31L29.4434 126.041H29.6274ZM38.8823 129.976V131.385C38.8823 132.143 38.8146 132.782 38.6792 133.302C38.5438 133.823 38.3491 134.242 38.0952 134.559C37.8413 134.876 37.5345 135.107 37.1748 135.251C36.8193 135.391 36.4173 135.46 35.9688 135.46C35.6133 135.46 35.2853 135.416 34.9849 135.327C34.6844 135.238 34.4136 135.097 34.1724 134.902C33.9354 134.703 33.7323 134.445 33.563 134.127C33.3937 133.81 33.2646 133.425 33.1758 132.972C33.0869 132.519 33.0425 131.99 33.0425 131.385V129.976C33.0425 129.219 33.1102 128.584 33.2456 128.072C33.3853 127.56 33.582 127.149 33.8359 126.84C34.0898 126.527 34.3945 126.303 34.75 126.167C35.1097 126.032 35.5117 125.964 35.9561 125.964C36.3158 125.964 36.6458 126.009 36.9463 126.098C37.251 126.182 37.5218 126.32 37.7588 126.51C37.9958 126.696 38.1968 126.946 38.3618 127.259C38.5311 127.568 38.6602 127.947 38.749 128.396C38.8379 128.844 38.8823 129.371 38.8823 129.976ZM37.7017 131.576V129.779C37.7017 129.365 37.6763 129.001 37.6255 128.688C37.5789 128.37 37.5091 128.099 37.416 127.875C37.3229 127.651 37.2044 127.469 37.0605 127.329C36.9209 127.189 36.758 127.088 36.5718 127.024C36.3898 126.957 36.1846 126.923 35.9561 126.923C35.6768 126.923 35.4292 126.976 35.2134 127.082C34.9976 127.183 34.8156 127.346 34.6675 127.57C34.5236 127.795 34.4136 128.089 34.3374 128.453C34.2612 128.817 34.2231 129.259 34.2231 129.779V131.576C34.2231 131.99 34.2464 132.356 34.293 132.674C34.3438 132.991 34.4178 133.266 34.5151 133.499C34.6125 133.728 34.731 133.916 34.8706 134.064C35.0103 134.212 35.1711 134.322 35.353 134.394C35.5392 134.462 35.7445 134.496 35.9688 134.496C36.2565 134.496 36.5083 134.441 36.7241 134.331C36.9399 134.221 37.1198 134.049 37.2637 133.816C37.4118 133.579 37.5218 133.277 37.5938 132.909C37.6657 132.536 37.7017 132.092 37.7017 131.576ZM44.9126 129.83V135.333H43.7319V128.465H44.8491L44.9126 129.83ZM44.6714 131.639L44.1255 131.62C44.1297 131.15 44.1911 130.717 44.3096 130.319C44.4281 129.917 44.6037 129.568 44.8364 129.271C45.0692 128.975 45.359 128.747 45.7061 128.586C46.0531 128.421 46.4551 128.338 46.9121 128.338C47.2337 128.338 47.5299 128.385 47.8008 128.478C48.0716 128.567 48.3065 128.709 48.5054 128.903C48.7043 129.098 48.8587 129.348 48.9688 129.652C49.0788 129.957 49.1338 130.325 49.1338 130.757V135.333H47.9595V130.814C47.9595 130.454 47.8981 130.167 47.7754 129.951C47.6569 129.735 47.4876 129.578 47.2676 129.481C47.0475 129.379 46.7894 129.329 46.4932 129.329C46.1462 129.329 45.8563 129.39 45.6235 129.513C45.3908 129.635 45.2046 129.805 45.0649 130.021C44.9253 130.236 44.8237 130.484 44.7603 130.763C44.701 131.038 44.6714 131.33 44.6714 131.639ZM49.1211 130.992L48.334 131.233C48.3382 130.856 48.3996 130.494 48.5181 130.147C48.6408 129.8 48.8164 129.492 49.0449 129.221C49.2777 128.95 49.5633 128.736 49.9019 128.58C50.2404 128.419 50.6276 128.338 51.0635 128.338C51.4316 128.338 51.7575 128.387 52.041 128.484C52.3288 128.582 52.57 128.732 52.7646 128.935C52.9635 129.134 53.1138 129.39 53.2153 129.703C53.3169 130.016 53.3677 130.389 53.3677 130.82V135.333H52.187V130.808C52.187 130.423 52.1257 130.124 52.0029 129.913C51.8844 129.697 51.7152 129.547 51.4951 129.462C51.2793 129.373 51.0212 129.329 50.7207 129.329C50.4626 129.329 50.234 129.373 50.0352 129.462C49.8363 129.551 49.6691 129.674 49.5337 129.83C49.3983 129.982 49.2946 130.158 49.2227 130.357C49.1549 130.556 49.1211 130.767 49.1211 130.992ZM56.4209 128.465V135.333H55.2402V128.465H56.4209ZM55.1514 126.644C55.1514 126.453 55.2085 126.292 55.3228 126.161C55.4412 126.03 55.6147 125.964 55.8433 125.964C56.0675 125.964 56.2389 126.03 56.3574 126.161C56.4801 126.292 56.5415 126.453 56.5415 126.644C56.5415 126.826 56.4801 126.982 56.3574 127.113C56.2389 127.24 56.0675 127.304 55.8433 127.304C55.6147 127.304 55.4412 127.24 55.3228 127.113C55.2085 126.982 55.1514 126.826 55.1514 126.644ZM59.4805 129.932V135.333H58.3062V128.465H59.417L59.4805 129.932ZM59.2012 131.639L58.7124 131.62C58.7166 131.15 58.7865 130.717 58.9219 130.319C59.0573 129.917 59.2477 129.568 59.4932 129.271C59.7386 128.975 60.0306 128.747 60.3691 128.586C60.7119 128.421 61.0907 128.338 61.5054 128.338C61.8439 128.338 62.1486 128.385 62.4194 128.478C62.6903 128.567 62.9209 128.711 63.1113 128.91C63.306 129.109 63.4541 129.367 63.5557 129.684C63.6572 129.997 63.708 130.38 63.708 130.833V135.333H62.5273V130.82C62.5273 130.461 62.4744 130.173 62.3687 129.957C62.2629 129.737 62.1084 129.578 61.9053 129.481C61.7021 129.379 61.4525 129.329 61.1562 129.329C60.8643 129.329 60.5977 129.39 60.3564 129.513C60.1195 129.635 59.9142 129.805 59.7407 130.021C59.5715 130.236 59.4382 130.484 59.3408 130.763C59.2477 131.038 59.2012 131.33 59.2012 131.639ZM69.6938 133.747V128.465H70.8745V135.333H69.751L69.6938 133.747ZM69.916 132.299L70.4048 132.287C70.4048 132.744 70.3561 133.167 70.2588 133.556C70.1657 133.941 70.0133 134.276 69.8018 134.559C69.5902 134.843 69.313 135.065 68.9702 135.226C68.6274 135.382 68.2106 135.46 67.7197 135.46C67.3854 135.46 67.0786 135.412 66.7993 135.314C66.5243 135.217 66.2873 135.067 66.0884 134.864C65.8895 134.661 65.735 134.396 65.625 134.07C65.5192 133.744 65.4663 133.353 65.4663 132.896V128.465H66.6406V132.909C66.6406 133.218 66.6745 133.474 66.7422 133.677C66.8141 133.876 66.9093 134.034 67.0278 134.153C67.1506 134.267 67.286 134.347 67.4341 134.394C67.5864 134.441 67.743 134.464 67.9038 134.464C68.4032 134.464 68.7988 134.369 69.0908 134.178C69.3828 133.984 69.5923 133.723 69.7192 133.397C69.8504 133.067 69.916 132.701 69.916 132.299ZM75.54 128.465V129.367H71.8267V128.465H75.54ZM73.0835 126.796H74.2578V133.632C74.2578 133.865 74.2938 134.041 74.3657 134.159C74.4377 134.278 74.5308 134.356 74.645 134.394C74.7593 134.432 74.882 134.451 75.0132 134.451C75.1105 134.451 75.2121 134.443 75.3179 134.426C75.4279 134.405 75.5104 134.388 75.5654 134.375L75.5718 135.333C75.4787 135.363 75.356 135.391 75.2036 135.416C75.0555 135.446 74.8757 135.46 74.6641 135.46C74.3763 135.46 74.1118 135.403 73.8706 135.289C73.6294 135.175 73.4368 134.984 73.293 134.718C73.1533 134.447 73.0835 134.083 73.0835 133.626V126.796ZM79.7676 135.46C79.2894 135.46 78.8556 135.38 78.4663 135.219C78.0812 135.054 77.749 134.824 77.4697 134.527C77.1947 134.231 76.9831 133.88 76.835 133.474C76.6868 133.067 76.6128 132.623 76.6128 132.141V131.874C76.6128 131.315 76.6953 130.818 76.8604 130.382C77.0254 129.942 77.2497 129.57 77.5332 129.265C77.8167 128.96 78.1383 128.73 78.498 128.573C78.8577 128.417 79.2301 128.338 79.6152 128.338C80.1061 128.338 80.5293 128.423 80.8848 128.592C81.2445 128.762 81.5386 128.999 81.7671 129.303C81.9956 129.604 82.1649 129.959 82.2749 130.37C82.3849 130.776 82.4399 131.22 82.4399 131.703V132.229H77.311V131.271H81.2656V131.182C81.2487 130.877 81.1852 130.581 81.0752 130.293C80.9694 130.006 80.8001 129.769 80.5674 129.583C80.3346 129.396 80.0173 129.303 79.6152 129.303C79.3486 129.303 79.1032 129.36 78.8789 129.475C78.6546 129.585 78.4621 129.75 78.3013 129.97C78.1405 130.19 78.0156 130.458 77.9268 130.776C77.8379 131.093 77.7935 131.459 77.7935 131.874V132.141C77.7935 132.466 77.8379 132.773 77.9268 133.061C78.0199 133.345 78.1532 133.594 78.3267 133.81C78.5044 134.026 78.7181 134.195 78.9678 134.318C79.2217 134.441 79.5094 134.502 79.8311 134.502C80.2458 134.502 80.597 134.417 80.8848 134.248C81.1725 134.079 81.4243 133.852 81.6401 133.569L82.3511 134.134C82.203 134.358 82.0146 134.572 81.7861 134.775C81.5576 134.978 81.2762 135.143 80.9419 135.27C80.6118 135.397 80.2204 135.46 79.7676 135.46ZM87.8101 133.512C87.8101 133.342 87.772 133.186 87.6958 133.042C87.6239 132.894 87.4736 132.761 87.2451 132.642C87.0208 132.519 86.6823 132.414 86.2295 132.325C85.8486 132.244 85.5037 132.149 85.1948 132.039C84.8901 131.929 84.6299 131.796 84.4141 131.639C84.2025 131.483 84.0396 131.299 83.9253 131.087C83.811 130.875 83.7539 130.628 83.7539 130.344C83.7539 130.073 83.8132 129.817 83.9316 129.576C84.0544 129.335 84.2257 129.121 84.4458 128.935C84.6701 128.749 84.9388 128.603 85.252 128.497C85.5651 128.391 85.9142 128.338 86.2993 128.338C86.8494 128.338 87.3192 128.436 87.7085 128.63C88.0978 128.825 88.3962 129.085 88.6035 129.411C88.8109 129.733 88.9146 130.09 88.9146 130.484H87.7402C87.7402 130.293 87.6831 130.109 87.5688 129.932C87.4588 129.75 87.2959 129.599 87.0801 129.481C86.8685 129.362 86.6082 129.303 86.2993 129.303C85.9735 129.303 85.709 129.354 85.5059 129.456C85.307 129.553 85.161 129.678 85.0679 129.83C84.979 129.982 84.9346 130.143 84.9346 130.312C84.9346 130.439 84.9557 130.554 84.998 130.655C85.0446 130.753 85.125 130.844 85.2393 130.928C85.3535 131.009 85.5143 131.085 85.7217 131.157C85.929 131.229 86.1935 131.301 86.5151 131.373C87.078 131.5 87.5413 131.652 87.9053 131.83C88.2692 132.007 88.54 132.225 88.7178 132.483C88.8955 132.742 88.9844 133.055 88.9844 133.423C88.9844 133.723 88.9209 133.998 88.7939 134.248C88.6712 134.498 88.4914 134.714 88.2544 134.896C88.0216 135.073 87.7424 135.213 87.4165 135.314C87.0949 135.412 86.7331 135.46 86.3311 135.46C85.7259 135.46 85.2139 135.353 84.7949 135.137C84.376 134.921 84.0586 134.642 83.8428 134.299C83.627 133.956 83.519 133.594 83.519 133.213H84.6997C84.7166 133.535 84.8097 133.791 84.979 133.981C85.1483 134.168 85.3556 134.301 85.6011 134.381C85.8465 134.458 86.0898 134.496 86.3311 134.496C86.6527 134.496 86.9214 134.453 87.1372 134.369C87.3573 134.284 87.5244 134.168 87.6387 134.02C87.7529 133.871 87.8101 133.702 87.8101 133.512ZM96.627 128.465V129.367H92.9136V128.465H96.627ZM94.1704 126.796H95.3447V133.632C95.3447 133.865 95.3807 134.041 95.4526 134.159C95.5246 134.278 95.6177 134.356 95.7319 134.394C95.8462 134.432 95.9689 134.451 96.1001 134.451C96.1974 134.451 96.299 134.443 96.4048 134.426C96.5148 134.405 96.5973 134.388 96.6523 134.375L96.6587 135.333C96.5656 135.363 96.4429 135.391 96.2905 135.416C96.1424 135.446 95.9626 135.46 95.751 135.46C95.4632 135.46 95.1987 135.403 94.9575 135.289C94.7163 135.175 94.5238 134.984 94.3799 134.718C94.2402 134.447 94.1704 134.083 94.1704 133.626V126.796ZM97.5664 131.976V131.83C97.5664 131.334 97.6383 130.875 97.7822 130.452C97.9261 130.025 98.1335 129.654 98.4043 129.341C98.6751 129.024 99.0031 128.778 99.3882 128.605C99.7733 128.427 100.205 128.338 100.683 128.338C101.166 128.338 101.599 128.427 101.984 128.605C102.374 128.778 102.704 129.024 102.975 129.341C103.25 129.654 103.459 130.025 103.603 130.452C103.747 130.875 103.819 131.334 103.819 131.83V131.976C103.819 132.471 103.747 132.93 103.603 133.353C103.459 133.776 103.25 134.146 102.975 134.464C102.704 134.777 102.376 135.022 101.991 135.2C101.61 135.374 101.178 135.46 100.696 135.46C100.213 135.46 99.7796 135.374 99.3945 135.2C99.0094 135.022 98.6794 134.777 98.4043 134.464C98.1335 134.146 97.9261 133.776 97.7822 133.353C97.6383 132.93 97.5664 132.471 97.5664 131.976ZM98.7407 131.83V131.976C98.7407 132.318 98.7809 132.642 98.8613 132.947C98.9417 133.247 99.0623 133.514 99.2231 133.747C99.3882 133.979 99.5934 134.163 99.8389 134.299C100.084 134.43 100.37 134.496 100.696 134.496C101.017 134.496 101.299 134.43 101.54 134.299C101.785 134.163 101.989 133.979 102.149 133.747C102.31 133.514 102.431 133.247 102.511 132.947C102.596 132.642 102.638 132.318 102.638 131.976V131.83C102.638 131.491 102.596 131.172 102.511 130.871C102.431 130.566 102.308 130.298 102.143 130.065C101.982 129.828 101.779 129.642 101.534 129.506C101.292 129.371 101.009 129.303 100.683 129.303C100.361 129.303 100.078 129.371 99.8325 129.506C99.5913 129.642 99.3882 129.828 99.2231 130.065C99.0623 130.298 98.9417 130.566 98.8613 130.871C98.7809 131.172 98.7407 131.491 98.7407 131.83ZM111.392 128.465V129.367H107.678V128.465H111.392ZM108.935 126.796H110.109V133.632C110.109 133.865 110.145 134.041 110.217 134.159C110.289 134.278 110.382 134.356 110.497 134.394C110.611 134.432 110.734 134.451 110.865 134.451C110.962 134.451 111.064 134.443 111.169 134.426C111.279 134.405 111.362 134.388 111.417 134.375L111.423 135.333C111.33 135.363 111.208 135.391 111.055 135.416C110.907 135.446 110.727 135.46 110.516 135.46C110.228 135.46 109.963 135.403 109.722 135.289C109.481 135.175 109.288 134.984 109.145 134.718C109.005 134.447 108.935 134.083 108.935 133.626V126.796ZM113.943 125.583V135.333H112.769V125.583H113.943ZM113.664 131.639L113.175 131.62C113.18 131.15 113.249 130.717 113.385 130.319C113.52 129.917 113.711 129.568 113.956 129.271C114.201 128.975 114.493 128.747 114.832 128.586C115.175 128.421 115.554 128.338 115.968 128.338C116.307 128.338 116.611 128.385 116.882 128.478C117.153 128.567 117.384 128.711 117.574 128.91C117.769 129.109 117.917 129.367 118.019 129.684C118.12 129.997 118.171 130.38 118.171 130.833V135.333H116.99V130.82C116.99 130.461 116.937 130.173 116.832 129.957C116.726 129.737 116.571 129.578 116.368 129.481C116.165 129.379 115.915 129.329 115.619 129.329C115.327 129.329 115.061 129.39 114.819 129.513C114.582 129.635 114.377 129.805 114.204 130.021C114.034 130.236 113.901 130.484 113.804 130.763C113.711 131.038 113.664 131.33 113.664 131.639ZM122.779 135.46C122.301 135.46 121.867 135.38 121.478 135.219C121.093 135.054 120.761 134.824 120.481 134.527C120.206 134.231 119.995 133.88 119.847 133.474C119.699 133.067 119.625 132.623 119.625 132.141V131.874C119.625 131.315 119.707 130.818 119.872 130.382C120.037 129.942 120.261 129.57 120.545 129.265C120.828 128.96 121.15 128.73 121.51 128.573C121.869 128.417 122.242 128.338 122.627 128.338C123.118 128.338 123.541 128.423 123.896 128.592C124.256 128.762 124.55 128.999 124.779 129.303C125.007 129.604 125.177 129.959 125.287 130.37C125.397 130.776 125.452 131.22 125.452 131.703V132.229H120.323V131.271H124.277V131.182C124.26 130.877 124.197 130.581 124.087 130.293C123.981 130.006 123.812 129.769 123.579 129.583C123.346 129.396 123.029 129.303 122.627 129.303C122.36 129.303 122.115 129.36 121.891 129.475C121.666 129.585 121.474 129.75 121.313 129.97C121.152 130.19 121.027 130.458 120.938 130.776C120.85 131.093 120.805 131.459 120.805 131.874V132.141C120.805 132.466 120.85 132.773 120.938 133.061C121.032 133.345 121.165 133.594 121.338 133.81C121.516 134.026 121.73 134.195 121.979 134.318C122.233 134.441 122.521 134.502 122.843 134.502C123.257 134.502 123.609 134.417 123.896 134.248C124.184 134.079 124.436 133.852 124.652 133.569L125.363 134.134C125.215 134.358 125.026 134.572 124.798 134.775C124.569 134.978 124.288 135.143 123.954 135.27C123.624 135.397 123.232 135.46 122.779 135.46ZM134.046 133.512C134.046 133.342 134.008 133.186 133.932 133.042C133.86 132.894 133.71 132.761 133.481 132.642C133.257 132.519 132.919 132.414 132.466 132.325C132.085 132.244 131.74 132.149 131.431 132.039C131.126 131.929 130.866 131.796 130.65 131.639C130.439 131.483 130.276 131.299 130.162 131.087C130.047 130.875 129.99 130.628 129.99 130.344C129.99 130.073 130.049 129.817 130.168 129.576C130.291 129.335 130.462 129.121 130.682 128.935C130.906 128.749 131.175 128.603 131.488 128.497C131.801 128.391 132.151 128.338 132.536 128.338C133.086 128.338 133.556 128.436 133.945 128.63C134.334 128.825 134.632 129.085 134.84 129.411C135.047 129.733 135.151 130.09 135.151 130.484H133.977C133.977 130.293 133.919 130.109 133.805 129.932C133.695 129.75 133.532 129.599 133.316 129.481C133.105 129.362 132.845 129.303 132.536 129.303C132.21 129.303 131.945 129.354 131.742 129.456C131.543 129.553 131.397 129.678 131.304 129.83C131.215 129.982 131.171 130.143 131.171 130.312C131.171 130.439 131.192 130.554 131.234 130.655C131.281 130.753 131.361 130.844 131.476 130.928C131.59 131.009 131.751 131.085 131.958 131.157C132.165 131.229 132.43 131.301 132.751 131.373C133.314 131.5 133.778 131.652 134.142 131.83C134.506 132.007 134.776 132.225 134.954 132.483C135.132 132.742 135.221 133.055 135.221 133.423C135.221 133.723 135.157 133.998 135.03 134.248C134.908 134.498 134.728 134.714 134.491 134.896C134.258 135.073 133.979 135.213 133.653 135.314C133.331 135.412 132.969 135.46 132.567 135.46C131.962 135.46 131.45 135.353 131.031 135.137C130.612 134.921 130.295 134.642 130.079 134.299C129.863 133.956 129.755 133.594 129.755 133.213H130.936C130.953 133.535 131.046 133.791 131.215 133.981C131.385 134.168 131.592 134.301 131.837 134.381C132.083 134.458 132.326 134.496 132.567 134.496C132.889 134.496 133.158 134.453 133.374 134.369C133.594 134.284 133.761 134.168 133.875 134.02C133.989 133.871 134.046 133.702 134.046 133.512ZM137.938 125.583V135.333H136.763V125.583H137.938ZM137.658 131.639L137.169 131.62C137.174 131.15 137.243 130.717 137.379 130.319C137.514 129.917 137.705 129.568 137.95 129.271C138.196 128.975 138.488 128.747 138.826 128.586C139.169 128.421 139.548 128.338 139.962 128.338C140.301 128.338 140.606 128.385 140.876 128.478C141.147 128.567 141.378 128.711 141.568 128.91C141.763 129.109 141.911 129.367 142.013 129.684C142.114 129.997 142.165 130.38 142.165 130.833V135.333H140.984V130.82C140.984 130.461 140.931 130.173 140.826 129.957C140.72 129.737 140.565 129.578 140.362 129.481C140.159 129.379 139.91 129.329 139.613 129.329C139.321 129.329 139.055 129.39 138.813 129.513C138.576 129.635 138.371 129.805 138.198 130.021C138.028 130.236 137.895 130.484 137.798 130.763C137.705 131.038 137.658 131.33 137.658 131.639ZM143.612 131.976V131.83C143.612 131.334 143.684 130.875 143.828 130.452C143.972 130.025 144.179 129.654 144.45 129.341C144.721 129.024 145.049 128.778 145.434 128.605C145.819 128.427 146.251 128.338 146.729 128.338C147.211 128.338 147.645 128.427 148.03 128.605C148.42 128.778 148.75 129.024 149.021 129.341C149.296 129.654 149.505 130.025 149.649 130.452C149.793 130.875 149.865 131.334 149.865 131.83V131.976C149.865 132.471 149.793 132.93 149.649 133.353C149.505 133.776 149.296 134.146 149.021 134.464C148.75 134.777 148.422 135.022 148.037 135.2C147.656 135.374 147.224 135.46 146.742 135.46C146.259 135.46 145.826 135.374 145.44 135.2C145.055 135.022 144.725 134.777 144.45 134.464C144.179 134.146 143.972 133.776 143.828 133.353C143.684 132.93 143.612 132.471 143.612 131.976ZM144.787 131.83V131.976C144.787 132.318 144.827 132.642 144.907 132.947C144.988 133.247 145.108 133.514 145.269 133.747C145.434 133.979 145.639 134.163 145.885 134.299C146.13 134.43 146.416 134.496 146.742 134.496C147.063 134.496 147.345 134.43 147.586 134.299C147.831 134.163 148.035 133.979 148.195 133.747C148.356 133.514 148.477 133.247 148.557 132.947C148.642 132.642 148.684 132.318 148.684 131.976V131.83C148.684 131.491 148.642 131.172 148.557 130.871C148.477 130.566 148.354 130.298 148.189 130.065C148.028 129.828 147.825 129.642 147.58 129.506C147.338 129.371 147.055 129.303 146.729 129.303C146.407 129.303 146.124 129.371 145.878 129.506C145.637 129.642 145.434 129.828 145.269 130.065C145.108 130.298 144.988 130.566 144.907 130.871C144.827 131.172 144.787 131.491 144.787 131.83ZM152.512 129.544V135.333H151.337V128.465H152.48L152.512 129.544ZM154.657 128.427L154.651 129.519C154.554 129.498 154.46 129.485 154.372 129.481C154.287 129.472 154.19 129.468 154.08 129.468C153.809 129.468 153.57 129.511 153.362 129.595C153.155 129.68 152.979 129.798 152.835 129.951C152.692 130.103 152.577 130.285 152.493 130.497C152.412 130.704 152.359 130.932 152.334 131.182L152.004 131.373C152.004 130.958 152.044 130.569 152.125 130.205C152.209 129.841 152.338 129.519 152.512 129.24C152.685 128.956 152.905 128.736 153.172 128.58C153.443 128.419 153.764 128.338 154.137 128.338C154.221 128.338 154.319 128.349 154.429 128.37C154.539 128.387 154.615 128.406 154.657 128.427ZM158.466 135.46C157.988 135.46 157.554 135.38 157.165 135.219C156.779 135.054 156.447 134.824 156.168 134.527C155.893 134.231 155.681 133.88 155.533 133.474C155.385 133.067 155.311 132.623 155.311 132.141V131.874C155.311 131.315 155.394 130.818 155.559 130.382C155.724 129.942 155.948 129.57 156.231 129.265C156.515 128.96 156.837 128.73 157.196 128.573C157.556 128.417 157.928 128.338 158.313 128.338C158.804 128.338 159.228 128.423 159.583 128.592C159.943 128.762 160.237 128.999 160.465 129.303C160.694 129.604 160.863 129.959 160.973 130.37C161.083 130.776 161.138 131.22 161.138 131.703V132.229H156.009V131.271H159.964V131.182C159.947 130.877 159.883 130.581 159.773 130.293C159.668 130.006 159.498 129.769 159.266 129.583C159.033 129.396 158.715 129.303 158.313 129.303C158.047 129.303 157.801 129.36 157.577 129.475C157.353 129.585 157.16 129.75 157 129.97C156.839 130.19 156.714 130.458 156.625 130.776C156.536 131.093 156.492 131.459 156.492 131.874V132.141C156.492 132.466 156.536 132.773 156.625 133.061C156.718 133.345 156.851 133.594 157.025 133.81C157.203 134.026 157.416 134.195 157.666 134.318C157.92 134.441 158.208 134.502 158.529 134.502C158.944 134.502 159.295 134.417 159.583 134.248C159.871 134.079 160.123 133.852 160.338 133.569L161.049 134.134C160.901 134.358 160.713 134.572 160.484 134.775C160.256 134.978 159.974 135.143 159.64 135.27C159.31 135.397 158.919 135.46 158.466 135.46Z",fill:"#0F172A"}),(0,o.createElement)("defs",null,(0,o.createElement)("clipPath",{id:"clip0_76_1273"},(0,o.createElement)("rect",{width:"24",height:"24",fill:"white",transform:"translate(249 39)"})))),{__:i}=wp.i18n,s=window.JetFormOptionFieldData,{SelectControl:c}=wp.components,{jetEngineVersion:u}=window.JetFormEditorData,d=[{value:"manual_input",label:i("Manual Input","jet-form-builder")},{value:"posts",label:i("Posts","jet-form-builder")},{value:"terms",label:i("Terms","jet-form-builder")},{value:"meta_field",label:i("Meta Field","jet-form-builder")},{value:"generate",label:i("Generate Dynamically","jet-form-builder")}];""!==u&&d.push({value:"glossary",label:i("Glossary","jet-form-builder")});const m={terms:{label:i("Taxonomy"),attr:"field_options_tax",options:s.taxonomies_list},posts:{label:i("Post Type"),attr:"field_options_post_type",options:s.post_types_list}},{FieldWrapper:p}=JetFBComponents,{CheckboxControl:f,SelectControl:V,RadioControl:g}=wp.components;function b(e){const{editProps:{blockName:C,uniqKey:t},scriptData:l,attributes:r}=e,n=(e,C=1)=>(0,o.createElement)(f,{className:"jet-form-builder__field-wrap checkboxes-wrap",key:`check_place_holder_block_${e+C}`,label:e,onChange:()=>{}}),a=e=>((e,C,t="")=>void 0!==e&&void 0!==e[C]?e[C]:t)(e,"label"),i=(e="")=>C.includes("checkbox")?e?n(e):r.field_options.map((({label:e},C)=>n(e,C))):C.includes("select")?(({options:e,index:C})=>(0,o.createElement)(V,{key:`select_place_holder_block_${r.name+C}`,options:e,onChange:()=>{}}))(e?{attributes:r,options:[{label:e}]}:{attributes:r,options:r.field_options}):C.includes("radio")?(({options:e,label:C,index:t})=>(0,o.createElement)(g,{key:`radio_place_holder_block_${C+t}`,options:e,onChange:()=>{}}))(e?{attributes:r,options:[{label:e}]}:{attributes:r,options:r.field_options}):void 0;return(0,o.createElement)(p,{key:"jet-form-builder-field-wrapper",...e},(0,o.createElement)("div",{className:"jet-form-builder__fields-group jet-form-builder__field-preview"},("manual_input"!==r.field_options_from||!r.field_options.length)&&i((()=>{var e,C;const{field_options_from:t,field_options_post_type:n,field_options_tax:o,field_options_key:i,generator_function:s,generator_auto_update:c,generator_listen_field:u}=r,m=null!==(e=null!==(C=window.JetFormOptionFieldData)&&void 0!==C?C:l)&&void 0!==e?e:{};let p=[],f=[];switch(t){case"posts":var V;n&&f.push(a((null!==(V=m.post_types_list)&&void 0!==V?V:[]).find((e=>e.value===n))));break;case"terms":var g;o&&f.push(a((null!==(g=m.taxonomies_list)&&void 0!==g?g:[]).find((e=>e.value===o))));break;case"meta_field":i&&f.push(i);break;case"generate":var b;if(s&&f.push(a((null!==(b=m.generators_list)&&void 0!==b?b:[]).find((e=>e.value===s)))),c&&u){const e=Array.isArray(u)?u:[u];e.length&&f.push(`↻ ${e.join(", ")}`)}}return p.push(a(d.find((e=>e.value===t)))),f.length&&p.push(f.join(" - ")),p.join(" - ")})())||null,"manual_input"===r.field_options_from&&r.field_options.length&&i()||null))}const{__:_}=wp.i18n,{RepeaterHeadContext:h}=JetFBComponents,H=function({children:e}){return(0,o.createElement)(h.Provider,{value:{isSupported:()=>!0,render:({currentItem:e,index:C})=>(0,o.createElement)("span",{className:"repeater-item-title"},(({currentItem:e,index:C})=>{const t=[`#${C+1}`],l=[];return e.label&&l.push(`Label [${e.label}]`),e.value&&l.push(`Value [${e.value}]`),e.calculate&&l.push(`Calculate [${e.calculate}]`),t.push(l.join(" | ")),t.join(" ")})({currentItem:e,index:C}))}},e)};function y(e){var C=Object.create(null);return function(t){return void 0===C[t]&&(C[t]=e(t)),C[t]}}var M=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,Z=y((function(e){return M.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),v=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),C={},t=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,t]=e.split("_");C[t]=e}else t.push(e)}))}));const l=[];for(const e in C)Object.prototype.hasOwnProperty.call(C,e)&&l.push(C[e]);return l.push(...t),l.join(" ")},w=(e,C)=>{const t={};return Object.keys(e).filter((e=>C=>-1===e.indexOf(C))(C)).forEach((C=>{t[C]=e[C]})),t},L=function(e){let C="";return t=>{const l=(l,r)=>{const{as:n=e,class:a=C}=l;var i;const s=function(e,C){const t=w(C,["as","class"]);if(!e){const e="function"==typeof Z?{default:Z}:Z;Object.keys(t).forEach((C=>{e.default(C)||delete t[C]}))}return t}(void 0===t.propsAsIs?!("string"==typeof n&&-1===n.indexOf("-")&&(i=n[0],i.toUpperCase()!==i)):t.propsAsIs,l);s.ref=r,s.className=t.atomic?v(t.class,s.className||a):v(s.className||a,t.class);const{vars:c}=t;if(c){const e={};for(const C in c){const r=c[C],n=r[0],o=r[1]||"",a="function"==typeof n?n(l):n;t.name,e[`--${C}`]=`${a}${o}`}const C=s.style||{},r=Object.keys(C);r.length>0&&r.forEach((t=>{e[t]=C[t]})),s.style=e}return e.__wyw_meta&&e!==n?(s.as=n,(0,o.createElement)(e,s)):(0,o.createElement)(n,s)},r=o.forwardRef?(0,o.forwardRef)(l):e=>{const C=w(e,["innerRef"]);return l(C,e.innerRef)};return r.displayName=t.name,r.__wyw_meta={className:t.class||C,extends:e},r}};const{useContext:E}=wp.element,{TextControl:k,ToggleControl:j}=wp.components,{__:x}=wp.i18n,{RepeaterItemContext:F}=JetFBComponents,S=L("div")({name:"NoBorderWrapper",class:"ngu5jkm",propsAsIs:!1}),B=function(){const{currentItem:e,changeCurrentItem:C}=E(F);return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(k,{label:x("Label","jet-form-builder"),value:e.label,onChange:e=>C({label:e})}),(0,o.createElement)(k,{label:x("Value","jet-form-builder"),value:e.value,onChange:t=>{!e.keep_commas||String(t).includes(",")?C({value:t}):C({value:t,keep_commas:!1})}}),e.value&&e.value.includes(",")&&(0,o.createElement)(S,null,(0,o.createElement)(j,{label:x("Save as single value (ignore commas)","jet-form-builder"),help:x("By default, values containing commas are split into multiple options. Enable this to save the value as a single string, including commas.","jet-form-builder"),checked:!!e.keep_commas,onChange:e=>C({keep_commas:e})})),(0,o.createElement)(k,{label:x("Calculate","jet-form-builder"),value:e.calculate,onChange:e=>C({calculate:e})}))};t(103);const{__:A}=wp.i18n,{Repeater:P,RepeaterAddNew:N}=JetFBComponents,{useScopedAttributesContext:O,useOnUpdateModal:T}=JetFBHooks,I=function(){var e;const{attributes:C,setAttributes:t,setRealAttributes:l}=O(),r=e=>{const l="function"==typeof e?e(C.field_options):e;t((e=>({...e,field_options:l})))};return T((()=>l(C))),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(H,null,(0,o.createElement)(P,{items:null!==(e=C.field_options)&&void 0!==e?e:[],onSetState:r},(0,o.createElement)(B,null))),(0,o.createElement)(N,{onSetState:r},A("Add new Option","jet-form-builder")))},{isEmpty:J}=JetFBActions,R=["label","value","calculate"];function D(e){const C=[];if(!Array.isArray(e))return q(e);for(const t of e)C.push(q(t));return C.join("\n")}function q(e){if("object"!=typeof e)return["number","string"].includes(typeof e)?e:"";const C=[];for(const t of R)void 0!==e[t]&&(["number","string"].includes(typeof e[t])?C.push(e[t]):C.push(0));return C.join(" : ")}const $=function(e){if(J(e)||"string"===e&&!e.trim())return"";if("object"==typeof e)return D(e);if("string"!=typeof e)return"";if(!["[","{"].includes(e[0]))return e;let C;try{C=JSON.parse(e)}catch(C){return e}return D(C)};function U(e){if(!e.trim())return!1;const C=e.split(":");if(!C.length)return!1;let[t,l,r]=C;if(t=t.trim(),1===C.length)return{label:t,value:""};l="function"==typeof l?.trim&&l.trim(),r="function"==typeof r?.trim&&r.trim();const n={};return t&&(n.label=t),l&&(n.value=l),r&&(n.calculate=r),n}const G=window.jfb.components,W=window.wp.i18n,z=window.wp.element,K=window.wp.components,{useScopedAttributesContext:X,useOnUpdateModal:Y}=JetFBHooks,Q=L(K.Flex)({name:"StyledFlex",class:"siqun4o",propsAsIs:!0}),ee=function({setModalContent:e}){const{attributes:C,setAttributes:t,setRealAttributes:l}=X(),[r,n]=(0,z.useState)("jfb_current_select"),[a,i]=(0,z.useState)([]),s=[{label:"Select...",value:"jfb_current_select"}].concat(window.JetFBBulkOptions.list)||[],c=window.JetFBBulkOptions.sources,[u,d]=(0,z.useState)((()=>$(C.field_options)));(0,z.useEffect)((()=>{var e;C.field_options?.length&&(i((e=C.field_options,e?.length?e.map((e=>{const C=[];return C.push(e.label||""),C.push(e.value||""),e.calculate&&C.push(e.calculate),C.join(" : ")})).join("\n"):[])),d($(C.field_options)))}),[]);const m=(e=u)=>{var C;t({field_options:[...(C=e,"string"!=typeof C?[]:C.trim().split("\n").map(U).filter(Boolean))]})};return Y((()=>{l(C),e(!1)})),(0,o.createElement)(o.Fragment,null,(0,o.createElement)(Q,null,(0,o.createElement)("label",null,(0,W.__)("Options preset:","jet-form-builder")),(0,o.createElement)(K.SelectControl,{value:r,onChange:e=>{if(n(e),"jfb_current_select"===e)d(a),m(a);else{const C=$(c[e]);d(C),m(C)}},options:s})),(0,o.createElement)(K.TextareaControl,{className:"jet-control-clear",value:u,onChange:e=>{d($(e)),m(e)},rows:16}),(0,o.createElement)(G.Help,null,(0,W.__)("You can specify a different value and value \nfor the calculator field by separating them with a colon character","jet-form-builder"),(0,o.createElement)("br",null),(0,o.createElement)("br",null),"Book #1 : book_1 : 100"))};t(25);const{ActionModal:Ce,ScopedAttributesProvider:te}=JetFBComponents,{Button:le,Flex:re}=wp.components,{__:ne}=wp.i18n,{useState:oe}=wp.element,ae=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M11 7H17V9H11V7ZM11 11H17V13H11V11ZM11 15H17V17H11V15ZM7 7H9V9H7V7ZM7 11H9V13H7V11ZM7 15H9V17H7V15ZM20.1 3H3.9C3.4 3 3 3.4 3 3.9V20.1C3 20.5 3.4 21 3.9 21H20.1C20.5 21 21 20.5 21 20.1V3.9C21 3.4 20.5 3 20.1 3ZM19 19H5V5H19V19Z",fill:"currentColor"})),ie=(0,o.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("path",{d:"M3 17.25V21H6.75L17.81 9.94L14.06 6.19L3 17.25ZM20.71 7.04C21.1 6.65 21.1 6.02 20.71 5.63L18.37 3.29C17.98 2.9 17.35 2.9 16.96 3.29L15.13 5.12L18.88 8.87L20.71 7.04Z",fill:"currentColor"})),se=function(){const[e,C]=oe(!1),[t,l]=oe(""),r=()=>{C((e=>!e))};return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(le,{isSecondary:!0,onClick:r,icon:"admin-tools"},ne("Manage items","jet-form-builder")),e&&(0,o.createElement)(Ce,{title:(0,o.createElement)(re,{align:"center"},ne("Edit Options","jet-form-builder"),(0,o.createElement)(le,{onClick:()=>l((e=>e?"":"bulk")),icon:t?ie:ae,variant:"tertiary"},ne(t?"Switch to manual editor":"Switch to bulk editor","jet-form-builder"))),onRequestClose:r,classNames:["width-60"]},(0,o.createElement)(te,null,"bulk"===t?(0,o.createElement)(ee,{setModalContent:l}):(0,o.createElement)(I,null))))},{TextControl:ce}=wp.components,{__:ue}=wp.i18n,de=function(e){const{attributes:C,setAttributes:t,editProps:{attrHelp:l}}=e;return(0,o.createElement)(o.Fragment,null,(e=>{const{attributes:C,setAttributes:t}=e,{field_options_from:l}=C;if(!m[l]&&!m[l])return null;const r=m[l];return(0,o.createElement)(c,{label:r.label,labelPosition:"top",value:C[r.attr],onChange:e=>{t({[r.attr]:e})},options:r.options})})(e),(0,o.createElement)(ce,{key:"value_from_key",label:ue("Value from meta field"),value:C.value_from_key,help:l("value_from_meta"),onChange:e=>{t({value_from_key:e})}}),(0,o.createElement)(ce,{key:"calculated_value_from_key",label:ue("Calculated value from meta field"),value:C.calculated_value_from_key,help:l("calculated_value_from_key"),onChange:e=>{t({calculated_value_from_key:e})}}))},{createSlotFill:me}=wp.components,{Fill:pe,Slot:fe}=me("JFBGeneratorControls"),{Fill:Ve,Slot:ge}=me("JFBGeneratorAdditional"),{Fill:be,Slot:_e}=me("JFBAutoUpdateControls"),{Fill:he,Slot:He}=me("JFBBeforeGeneratorSelector"),{Fill:ye,Slot:Me}=me("JFBAfterGeneratorControls"),Ze={},ve={},we={};function Le(e){return Ze[e]||null}function Ee(e){return ve[e]||null}function ke(e,C){return`gen_${e}_${C}`}"undefined"!=typeof window&&(window.JetFBGenerators=window.JetFBGenerators||{},Object.assign(window.JetFBGenerators,{registerControls:function(e,C){"function"==typeof C?Ze[e]=C:console.error(`JetFormBuilder: Generator controls for "${e}" must be a function/component.`)},unregisterControls:function(e){return e in Ze&&(delete Ze[e],!0)},getControls:Le,hasCustomControls:function(e){return e in Ze},getRegisteredIds:function(){return Object.keys(Ze)},registerValidator:function(e,C){"function"==typeof C?ve[e]=C:console.error(`JetFormBuilder: Generator validator for "${e}" must be a function.`)},getValidator:Ee,validate:function(e,C){const t=Ee(e);return t?t(C):{valid:!0,errors:{}}},registerMeta:function(e,C){we[e]={...we[e]||{},...C}},getMeta:function(e){return we[e]||{}},getAttributeName:ke,parseSettings:function(e,C,t){const l={},r=`gen_${e}_`;return Object.keys(t).forEach((e=>{const n=r+e,o=t[e];var a;l[e]=n in C?C[n]:null!==(a=o.default)&&void 0!==a?a:""})),l},createSetAttributes:function(e,C){return t=>{const l={};Object.entries(t).forEach((([C,t])=>{C.startsWith("gen_")?l[C]=t:l[ke(e,C)]=t})),C(l)}}}));const{TextControl:je,TextareaControl:xe,SelectControl:Fe,ToggleControl:Se,BaseControl:Be,__experimentalNumberControl:Ae}=wp.components,{__:Pe}=wp.i18n,{Fragment:Ne}=wp.element;let Oe=wp.components.NumberControl;function Te({fieldKey:e,fieldDef:C,value:t,onChange:l,generatorId:r}){const{type:n="string",label:a=e,help:i,placeholder:s,control:c="text",options:u=[],min:d,max:m,step:p=1,rows:f=3,disabled:V=!1,multiple:g=!1}=C,b=`${r}-${e}`;switch(c){case"number":return(0,o.createElement)(Be,{key:b,label:a,help:i,className:"jfb-generator-control jfb-generator-control--number"},(0,o.createElement)(Oe,{value:null!=t?t:"",onChange:e=>{const C=""===e?"":Number(e);l(C)},step:p,min:d,max:m,disabled:V}));case"select":const e=u.map((e=>"string"==typeof e?{value:e,label:e}:e));return(0,o.createElement)(Fe,{key:b,label:a,help:i,value:g?null!=t?t:[]:null!=t?t:"",onChange:l,options:e,multiple:g,disabled:V,className:"jfb-generator-control jfb-generator-control--select"});case"toggle":return(0,o.createElement)(Se,{key:b,label:a,help:i,checked:!!t,onChange:l,disabled:V,className:"jfb-generator-control jfb-generator-control--toggle"});case"textarea":return(0,o.createElement)(xe,{key:b,label:a,help:i,value:null!=t?t:"",onChange:l,placeholder:s,rows:f,disabled:V,className:"jfb-generator-control jfb-generator-control--textarea"});default:return(0,o.createElement)(je,{key:b,label:a,help:i,value:null!=t?t:"",onChange:l,placeholder:s,type:"number"===n?"number":"text",disabled:V,className:"jfb-generator-control jfb-generator-control--text"})}}function Ie({generatorId:e,schema:C,attributes:t,setAttributes:l}){if(!C||0===Object.keys(C).length)return null;const r=C=>C.startsWith("generator_")?C:`gen_${e}_${C}`,n=(e,C)=>{var l;const n=r(e);return n in t?t[n]:null!==(l=C.default)&&void 0!==l?l:""},a=e=>C=>{const t=r(e);l({[t]:C})};return(0,o.createElement)(Ne,null,Object.entries(C).map((([t,l])=>{return l.condition&&(r=l.condition)&&"object"==typeof r&&!Object.entries(r).every((([e,t])=>{const l=e.endsWith("!"),r=l?e.slice(0,-1):e,o=C[r],a=o?n(r,o):"",i=Array.isArray(t)?t.includes(a):String(a)===String(t);return l?!i:i}))?null:(0,o.createElement)(Te,{key:t,fieldKey:t,fieldDef:l,value:n(t,l),onChange:a(t),generatorId:e});var r})))}function Je({generatorId:e,generatorName:C}){return(0,o.createElement)(Be,{className:"jfb-generator-no-schema-notice"},(0,o.createElement)("p",null,Pe("This generator does not have a configuration schema.","jet-form-builder")),(0,o.createElement)("p",null,(0,o.createElement)("small",null,Pe("Generator ID:","jet-form-builder")," ",e)))}void 0===Oe&&(Oe=Ae);const{TextControl:Re,BaseControl:De,__experimentalNumberControl:qe}=wp.components,{__:$e}=wp.i18n,{applyFilters:Ue}=wp.hooks,{Fragment:Ge}=wp.element;let We=wp.components.NumberControl;function ze({attributes:e,setAttributes:C}){return(0,o.createElement)(Ge,null,(0,o.createElement)(De,{label:$e("Start of range","jet-form-builder")},(0,o.createElement)(We,{labelPosition:"top",step:.01,value:e.generator_numbers_min,onChange:e=>{C({generator_numbers_min:Number(e)})}})),(0,o.createElement)(De,{label:$e("End of range","jet-form-builder")},(0,o.createElement)(We,{labelPosition:"top",step:.01,value:e.generator_numbers_max,onChange:e=>{C({generator_numbers_max:Number(e)})}})),(0,o.createElement)(De,{label:$e("Step","jet-form-builder")},(0,o.createElement)(We,{labelPosition:"top",step:.01,value:e.generator_numbers_step,onChange:e=>{C({generator_numbers_step:Number(e)})}})))}function Ke({attributes:e,setAttributes:C,editProps:t,generatorId:l}){var r;const n=null!==(r=t?.attrHelp)&&void 0!==r?r:()=>"",a=Ue("jet.fb.select.radio.check.generator.controls",(0,o.createElement)(Re,{key:"generator_field",label:$e("Field Name","jet-form-builder"),value:e.generator_field||"",help:n("generator_field",e),onChange:e=>{C({generator_field:e})}}),l,{attributes:e,setAttributes:C,editProps:t}),i=Ue("jet.fb.select.radio.check.generator.additionalControls",(0,o.createElement)(Ge,null,(0,o.createElement)(Re,{key:"value_from_key",label:$e("Value from meta field","jet-form-builder"),help:n("value_from_meta"),value:e.value_from_key||"",onChange:e=>{C({value_from_key:e})}}),(0,o.createElement)(Re,{key:"calculated_value_from_key",label:$e("Calculated value from meta field","jet-form-builder"),help:n("calculated_value_from_key"),value:e.calculated_value_from_key||"",onChange:e=>{C({calculated_value_from_key:e})}})),l,{attributes:e,setAttributes:C,editProps:t});return(0,o.createElement)(Ge,null,a,i)}void 0===We&&(We=qe);const Xe=function(e){const{generatorId:C}=e;return"num_range_manual"===C?(0,o.createElement)(ze,{...e}):(0,o.createElement)(Ke,{...e})},{ToggleControl:Ye,SelectControl:Qe,TextControl:eC,Notice:CC}=wp.components,{__:tC}=wp.i18n,{Fragment:lC,useEffect:rC,useMemo:nC}=wp.element,{useSelect:oC}=wp.data,aC=function({attributes:e,setAttributes:C,supportsUpdate:t,contextFields:l=[],updateValueType:r="scalar"}){var n;if(!t)return null;const{generator_auto_update:a=!1,generator_listen_field:i="",generator_require_all_filled:s=!1,generator_update_on_button:c="",generator_update_on_button_class:u="",generator_cache_timeout:d=60}=e,m=Array.isArray(i)?i:i?[i]:[],p=l.some((e=>e.single)),f=oC((e=>{var C;return null!==(C=e("core/block-editor")?.getBlocks())&&void 0!==C?C:[]}),[]),V=nC((()=>function(e=[]){const C=[],t=["jet-forms/conditional-block","jet-forms/submit-field","jet-forms/form-break-field","jet-forms/form-break-start","jet-forms/group-break-field","jet-forms/heading-field","jet-forms/progress-bar","jet-forms/captcha-container","jet-forms/form-block"],l=e=>{e.forEach((e=>{e.attributes?.name&&!t.includes(e.name)&&C.push({name:e.attributes.name,label:e.attributes.label||e.attributes.name,type:e.name,multiple:Boolean(e.attributes?.multiple),allowMultiple:Boolean(e.attributes?.allow_multiple)}),e.innerBlocks?.length&&l(e.innerBlocks)}))};return l(e),C}(f)),[f]),g=nC((()=>function(e=[]){const C=[],t=e=>{e.forEach((e=>{if("jet-forms/submit-field"===e.name){var l;const t=null!==(l=e.attributes?.action_type)&&void 0!==l?l:"submit",r=(e.attributes?.class_name||e.attributes?.className||"").trim();"submit"!==t&&C.push({id:e.clientId,actionType:t,label:e.attributes?.label||t,buttonClass:r})}e.innerBlocks?.length&&t(e.innerBlocks)}))};return t(e),C}(f)),[f]),b=e?.name||"",_=nC((()=>V.filter((e=>e.name!==b&&function(e,C="scalar"){return!(function(e){return!e||["jet-forms/repeater-field","jet-forms/media-field","jet-forms/signature-field","jet-forms/drag-and-drop-file-upload","jet-forms/check-in-out"].includes(e.type)}(e)||"scalar_or_array"!==C&&function(e){return!!e&&(["jet-forms/checkbox-field"].includes(e.type)||e.multiple||e.allowMultiple)}(e))}(e,r)))),[b,V,r]),h=nC((()=>{const e=_.map((e=>({value:e.name,label:`${e.label} (${e.name})`})));return p?[{value:"",label:tC("— Select field —","jet-form-builder")},...e]:e}),[_,p]),H=nC((()=>{if(!c)return"";const e=g.find((e=>e.actionType===c&&(e.buttonClass||"")===(u||"")));return e?e.id:g.find((e=>e.actionType===c))?.id||""}),[g,c,u]),y=nC((()=>[{value:"",label:tC("— Select button —","jet-form-builder")},...g.map((e=>({value:e.id,label:e.buttonClass?`${e.label} (${e.actionType}, ${e.buttonClass})`:`${e.label} (${e.actionType})`})))]),[g]);return rC((()=>{c&&(g.some((e=>e.actionType===c&&(!u||e.buttonClass===u)))||C({generator_update_on_button:"",generator_update_on_button_class:""}))}),[g,C,c,u]),rC((()=>{var e,t;if(!a||!m.length)return;const l=new Set(_.map((e=>e.name))),r=m.filter((e=>l.has(e)));r.length!==m.length&&C({generator_listen_field:p?null!==(e=r[0])&&void 0!==e?e:"":r.length<=1?null!==(t=r[0])&&void 0!==t?t:"":r})}),[a,_,m,C,p]),(0,o.createElement)(lC,null,(0,o.createElement)(Ye,{label:tC("Enable Auto-Update","jet-form-builder"),help:tC("When enabled, the list of options will automatically refresh whenever a selected field changes its value.","jet-form-builder"),checked:a,onChange:e=>{C({generator_auto_update:e,...!e&&{generator_listen_field:"",generator_require_all_filled:!1,generator_update_on_button:"",generator_update_on_button_class:""}})},className:"jfb-auto-update-toggle"}),a&&l.length>0&&(0,o.createElement)(CC,{status:"info",isDismissible:!1,className:"jfb-auto-update-context-hints"},l.map(((e,C)=>(0,o.createElement)("div",{key:C,className:"components-base-control__help"},(0,o.createElement)("p",null,e.description),e.example&&(0,o.createElement)("p",null,e.example))))),a&&(0,o.createElement)(Qe,{label:tC(p?"Trigger Field":"Trigger Fields","jet-form-builder"),help:tC(p?"Select the field that controls this generator.":"Select the fields that control this generator. Hold Ctrl (Windows) or Cmd (Mac) to select multiple.","jet-form-builder"),...!p&&{multiple:!0},value:p?null!==(n=m[0])&&void 0!==n?n:"":m,onChange:e=>{p?C({generator_listen_field:e||""}):e&&0!==e.length?C({generator_listen_field:1===e.length?e[0]:e}):C({generator_listen_field:""})},options:h,className:p?"":"jfb-auto-update-field-selector"}),a&&m.length>0&&!c&&(0,o.createElement)(Ye,{label:m.length>1?tC("Wait for All Fields","jet-form-builder"):tC("Skip if Field is Empty","jet-form-builder"),help:m.length>1?tC("When enabled, the options refresh only after every watched field has a value. Useful when multiple fields are needed together to filter results.","jet-form-builder"):tC("When enabled, empty Trigger Field values use the generator-specific empty-state behavior. Generators with static fallback keep using their static settings; generators without fallback keep the list empty.","jet-form-builder"),checked:s,onChange:e=>C({generator_require_all_filled:e,...e&&{generator_update_on_button:"",generator_update_on_button_class:""}})}),a&&!s&&(0,o.createElement)(Qe,{label:tC("Refresh on Button Click","jet-form-builder"),help:tC('Instead of refreshing automatically, options update only when a selected JetFormBuilder action button is clicked. Supported action types: Update Field, Next Page, Prev Page, Change Render State (submit is not supported). If the selected button has a CSS Class Name, auto-update first tries to match that exact button and falls back to the button type if no exact class match is found. If no CSS Class Name is set, the first matching button of the selected action type is used. In multi-step forms, "Next Page" is matched on the previous step and "Prev Page" is matched on the next step. Regular HTML buttons are not supported here. Leave empty to refresh instantly on watched field change.',"jet-form-builder"),value:H,onChange:e=>{const t=g.find((C=>C.id===e));C({generator_update_on_button:t?.actionType||"",generator_update_on_button_class:t?.buttonClass||"",...t&&{generator_require_all_filled:!1}})},options:y}),a&&(0,o.createElement)(eC,{label:tC("Cache Duration (seconds)","jet-form-builder"),help:tC("Repeat requests with the same values will reuse the cached result for this many seconds. Set to 0 to always fetch fresh data.","jet-form-builder"),type:"number",min:0,value:d,onChange:e=>{C({generator_cache_timeout:parseInt(e)||0})}}))},{SelectControl:iC,PanelBody:sC,Notice:cC}=wp.components,{__:uC}=wp.i18n,{Fragment:dC,useEffect:mC,useState:pC,useCallback:fC,useMemo:VC}=wp.element,gC={get_from_query:["query_id","value_field","label_field","calc_field"],get_from_field:["field_name","sub_field"],get_from_db:["meta_key"],num_range:["meta_key"],get_from_booking_statuses:["status_group[]"]};function bC({generatorId:e,schema:C,attributes:t,setAttributes:l}){const r=t.generator_args||{};mC((()=>{if(0===Object.keys(r).length&&t.generator_field&&gC[e]){const C=function(e,C){const t=gC[e];if(!t||!C)return{};const l=C.split("|"),r={};return t.forEach(((e,C)=>{if(e.endsWith("[]")){const t=e.slice(0,-2),n=l.slice(C).filter((e=>""!==e));n.length>0&&(r[t]=n)}else void 0!==l[C]&&""!==l[C]&&(r[e]=l[C])})),r}(e,t.generator_field);!C.calc_field&&t.calculated_value_from_key&&(C.calc_field=t.calculated_value_from_key),Object.keys(C).length>0&&l({generator_args:C})}}),[e]);const n=fC((C=>{const t={},n={...r};let o=!1;const a=`gen_${e}_`;Object.keys(C).forEach((e=>{if(e.startsWith(a)){const t=e.replace(a,"");n[t]=C[e],o=!0}else t[e]=C[e]})),o&&(t.generator_args=n),l(t)}),[l,r,e]),a=VC((()=>{const C={...t},l=`gen_${e}_`;return Object.keys(r).forEach((e=>{C[l+e]=r[e]})),C}),[t,r,e]);return(0,o.createElement)(Ie,{generatorId:e,schema:C,attributes:a,setAttributes:n})}function _C(e){var C,t,l,r,n;const{attributes:a,setAttributes:i,editProps:s={}}=e,c=a.generator_function||"",u="0"===String(c)?"":c,[d,m]=pC({}),p=null!==(f=window.JetFormOptionFieldData?.generator_schemas)&&void 0!==f?f:{};var f;const V=null!==(g=window.JetFormOptionFieldData?.generators_list)&&void 0!==g?g:[];var g;const b=null!==(C=p[u])&&void 0!==C?C:{},_=null!==(t=b.schema)&&void 0!==t?t:{},h=null!==(l=b.supports_update)&&void 0!==l&&l,H=null!==(r=b.update_context)&&void 0!==r?r:[],y=null!==(n=b.update_value_type)&&void 0!==n?n:"scalar",M=!0===b.legacy,Z=Le(u);mC((()=>{m({})}),[u]);const v={...e,generatorId:u,schema:_,errors:d,setErrors:m};return(0,o.createElement)(dC,null,(0,o.createElement)(He,{fillProps:v}),(0,o.createElement)(iC,{label:uC("Generator Function","jet-form-builder"),value:u||"",onChange:e=>{i({generator_function:"0"===String(e)?"":e,generator_args:{},generator_field:""}),m({})},options:V,className:"jfb-generator-selector"}),u&&(0,o.createElement)(dC,null,Z&&(0,o.createElement)(Z,{attributes:a,setAttributes:i,schema:_,generatorId:u,editProps:s}),!Z&&!M&&Object.keys(_).length>0&&(0,o.createElement)(bC,{generatorId:u,schema:_,attributes:a,setAttributes:i}),!Z&&M&&(0,o.createElement)(Xe,{attributes:a,setAttributes:i,editProps:s,generatorId:u}),!Z&&!M&&0===Object.keys(_).length&&(0,o.createElement)(Je,{generatorId:u,generatorName:b.name}),(0,o.createElement)(fe,{fillProps:v}),(0,o.createElement)(ge,{fillProps:v}),(0,o.createElement)(aC,{attributes:a,setAttributes:i,supportsUpdate:h,contextFields:H,updateValueType:y})),(0,o.createElement)(Me,{fillProps:v}),Object.keys(d).length>0&&(0,o.createElement)(cC,{status:"error",isDismissible:!1,className:"jfb-generator-errors"},(0,o.createElement)("ul",null,Object.entries(d).map((([e,C])=>(0,o.createElement)("li",{key:e},(0,o.createElement)("strong",null,e,":")," ",C))))))}const{TextControl:hC,SelectControl:HC,Notice:yC}=wp.components,{__:MC}=wp.i18n,{jetEngineVersion:ZC}=window.JetFormEditorData,{applyFilters:vC}=wp.hooks,wC=""!==ZC,LC=function(e){const{attributes:C,setAttributes:t,isSelected:l,children:r=[]}=e,{field_options_from:n}=C;return l&&(0,o.createElement)("div",{className:"inside-block-options"},(0,o.createElement)(HC,{key:"field_options_from",label:"Fill Options From",labelPosition:"top",value:n,onChange:e=>{t({field_options_from:e})},options:d}),"generate"===n&&(0,o.createElement)(yC,{status:"info",isDismissible:!1},MC("Need a custom generator? Create one with this ","jet-form-builder"),(0,o.createElement)("a",{href:"https://chatgpt.com/g/g-69ae892a8fe88191aeae6578c07d6211-jetformbuilder-create-custom-options-generators",target:"_blank",rel:"noopener noreferrer"},MC("assistant","jet-form-builder")),"."),function(e,C){const{attributes:t,setAttributes:l}=C;switch(e){case"manual_input":return(0,o.createElement)(se,{key:"from_manual"});case"posts":case"terms":return(0,o.createElement)(de,{key:"form_posts_terms",...C});case"meta_field":return(0,o.createElement)(hC,{key:"field_options_key",label:"Meta field to get value from",value:t.field_options_key,onChange:e=>{l({field_options_key:e})}});case"generate":return(0,o.createElement)(_C,{key:"form_generators",...C});case"glossary":return wC&&(0,o.createElement)(HC,{key:"select_glossary",label:"Select Glossary",labelPosition:"top",value:t.glossary_id,onChange:e=>l({glossary_id:e}),options:[{value:"",label:"--"},...window.JetFormOptionFieldData.glossaries_list]});default:return vC("jet.fb.select.radio.check.controls",null,e,C)}}(n,e),r)},{__:EC}=wp.i18n,{ToolBarFields:kC,BlockLabel:jC,BlockDescription:xC,BlockAdvancedValue:FC,BlockName:SC,BlockPlaceholder:BC,BlockAddPrevButton:AC,BlockPrevButtonLabel:PC,BlockVisibility:NC,BlockClassName:OC,FieldControl:TC,SwitchPageOnChangeControls:IC}=JetFBComponents,{useUniqueNameOnDuplicate:JC}=JetFBHooks,{InspectorControls:RC,useBlockProps:DC}=wp.blockEditor,{ToggleControl:qC,PanelBody:$C,RangeControl:UC}=wp.components,GC=JSON.parse('{"apiVersion":3,"name":"jet-forms/select-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","select"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSwitchPageOnChange":true,"jetFBSanitizeValue":true},"title":"Select Field","icon":"\\n\\n\\n\\n\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"multiple":{"type":"boolean","default":false},"multiple_size":{"type":"number","default":4},"generator_numbers_min":{"type":"number","default":""},"generator_numbers_max":{"type":"number","default":""},"generator_numbers_step":{"type":"number","default":""},"glossary_id":{"type":"string","default":""},"is_disabled_placeholder":{"type":"boolean","default":false},"field_options_from":{"type":"string","default":"manual_input"},"field_options":{"type":"array","default":[]},"field_options_post_type":{"type":"string","default":"post"},"field_options_tax":{"type":"string","default":"category"},"field_options_key":{"type":"string","default":""},"generator_function":{"type":"string","default":""},"generator_field":{"type":"string","default":""},"generator_args":{"type":"object","default":{}},"generator_auto_update":{"type":"boolean","default":false},"generator_listen_field":{"type":["string","array"],"default":""},"generator_require_all_filled":{"type":"boolean","default":false},"generator_update_on_button":{"type":"string","default":""},"generator_update_on_button_class":{"type":"string","default":""},"generator_cache_timeout":{"type":"number","default":60},"calculated_value_from_key":{"type":"string","default":""},"value_from_key":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-option-field-select","style":"jet-fb-option-field-select"}'),{__:WC}=wp.i18n,{createBlock:zC}=wp.blocks,{name:KC,icon:XC=""}=GC,YC={icon:(0,o.createElement)("span",{dangerouslySetInnerHTML:{__html:XC}}),description:WC("Creates a drop-down list, where the user can choose one option. \nAdd as many options in the list as needed as the number of them is not limited.","jet-form-builder"),edit:function(e){var C;const{attributes:t,setAttributes:l,isSelected:r,editProps:{uniqKey:n,attrHelp:i}}=e,s=DC();return JC(),t.isPreview?(0,o.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},a):(0,o.createElement)(o.Fragment,null,(0,o.createElement)(kC,{key:n("ToolBarFields"),...e}),!t.multiple&&(0,o.createElement)(IC,null),r&&(0,o.createElement)(RC,{key:n("InspectorControls")},(0,o.createElement)($C,{title:EC("General","jet-form-builder")},(0,o.createElement)(jC,null),(0,o.createElement)(SC,null),(0,o.createElement)(xC,null)),(0,o.createElement)($C,{title:EC("Value","jet-form-builder")},(0,o.createElement)(FC,null)),(0,o.createElement)($C,{title:EC("Advanced","jet-form-builder")},(0,o.createElement)(BC,null),!!t.placeholder.length&&(0,o.createElement)(qC,{key:n("is_disabled_placeholder"),label:EC("Disable placeholder","jet-form-builder"),checked:t.is_disabled_placeholder,onChange:e=>l({is_disabled_placeholder:e})}),(0,o.createElement)(AC,null),(0,o.createElement)(PC,null),(0,o.createElement)(NC,null),(0,o.createElement)(OC,null))),(0,o.createElement)("div",{key:n("viewBlock"),...s},(0,o.createElement)(b,{scriptData:window.JetFormOptionFieldData,...e}),(0,o.createElement)(LC,{...e},(0,o.createElement)(qC,{key:"multiple",label:EC("Is multiple","jet-form-builder"),checked:t.multiple,help:i("multiple"),onChange:e=>l({multiple:e})}),t.multiple&&(0,o.createElement)(UC,{label:EC("Rows count","jet-form-builder"),value:null!==(C=t.multiple_size)&&void 0!==C?C:4,onChange:e=>l({multiple_size:e}),allowReset:!0,resetFallbackValue:4,min:1,max:25}),(0,o.createElement)(TC,{type:"custom_settings",key:n("customSettingsFields"),...e}))))},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>zC("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/checkbox-field","jet-forms/radio-field","jet-forms/text-field"],transform:e=>zC(KC,{...e}),priority:0}]}},QC=(0,o.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M22.1641 50.835H23.4766C23.4082 51.4639 23.2282 52.0267 22.9365 52.5234C22.6449 53.0202 22.2324 53.4144 21.6992 53.7061C21.166 53.9932 20.5007 54.1367 19.7031 54.1367C19.1198 54.1367 18.5889 54.0273 18.1104 53.8086C17.6364 53.5898 17.2285 53.2799 16.8867 52.8789C16.5449 52.4733 16.2806 51.988 16.0938 51.4229C15.9115 50.8532 15.8203 50.2197 15.8203 49.5225V48.5312C15.8203 47.834 15.9115 47.2028 16.0938 46.6377C16.2806 46.068 16.5472 45.5804 16.8936 45.1748C17.2445 44.7692 17.666 44.457 18.1582 44.2383C18.6504 44.0195 19.2041 43.9102 19.8193 43.9102C20.5713 43.9102 21.207 44.0514 21.7266 44.334C22.2461 44.6165 22.6494 45.0085 22.9365 45.5098C23.2282 46.0065 23.4082 46.583 23.4766 47.2393H22.1641C22.1003 46.7744 21.9818 46.3757 21.8086 46.043C21.6354 45.7057 21.3893 45.446 21.0703 45.2637C20.7513 45.0814 20.3343 44.9902 19.8193 44.9902C19.3773 44.9902 18.9876 45.0745 18.6504 45.2432C18.3177 45.4118 18.0374 45.651 17.8096 45.9609C17.5863 46.2708 17.4176 46.6423 17.3037 47.0752C17.1898 47.5081 17.1328 47.9889 17.1328 48.5176V49.5225C17.1328 50.0101 17.1829 50.4681 17.2832 50.8965C17.388 51.3249 17.5452 51.7008 17.7549 52.0244C17.9645 52.348 18.2311 52.6032 18.5547 52.79C18.8783 52.9723 19.2611 53.0635 19.7031 53.0635C20.2637 53.0635 20.7103 52.9746 21.043 52.7969C21.3757 52.6191 21.6263 52.3639 21.7949 52.0312C21.9681 51.6986 22.0911 51.2998 22.1641 50.835ZM26.3477 43.5V54H25.083V43.5H26.3477ZM26.0469 50.0215L25.5205 50.001C25.5251 49.4951 25.6003 49.028 25.7461 48.5996C25.8919 48.1667 26.097 47.7907 26.3613 47.4717C26.6257 47.1527 26.9401 46.9066 27.3047 46.7334C27.6738 46.5557 28.0817 46.4668 28.5283 46.4668C28.8929 46.4668 29.221 46.5169 29.5127 46.6172C29.8044 46.7129 30.0527 46.8678 30.2578 47.082C30.4674 47.2962 30.627 47.5742 30.7363 47.916C30.8457 48.2533 30.9004 48.6657 30.9004 49.1533V54H29.6289V49.1396C29.6289 48.7523 29.5719 48.4424 29.458 48.21C29.3441 47.973 29.1777 47.8021 28.959 47.6973C28.7402 47.5879 28.4714 47.5332 28.1523 47.5332C27.8379 47.5332 27.5508 47.5993 27.291 47.7314C27.0358 47.8636 26.8148 48.0459 26.6279 48.2783C26.4456 48.5107 26.3021 48.7773 26.1973 49.0781C26.097 49.3743 26.0469 49.6888 26.0469 50.0215ZM32.459 50.3838V50.2266C32.459 49.6934 32.5365 49.1989 32.6914 48.7432C32.8464 48.2829 33.0697 47.8841 33.3613 47.5469C33.653 47.2051 34.0062 46.9408 34.4209 46.7539C34.8356 46.5625 35.3005 46.4668 35.8154 46.4668C36.335 46.4668 36.8021 46.5625 37.2168 46.7539C37.6361 46.9408 37.9915 47.2051 38.2832 47.5469C38.5794 47.8841 38.805 48.2829 38.96 48.7432C39.1149 49.1989 39.1924 49.6934 39.1924 50.2266V50.3838C39.1924 50.917 39.1149 51.4115 38.96 51.8672C38.805 52.3229 38.5794 52.7217 38.2832 53.0635C37.9915 53.4007 37.6383 53.665 37.2236 53.8564C36.8135 54.0433 36.3486 54.1367 35.8291 54.1367C35.3096 54.1367 34.8424 54.0433 34.4277 53.8564C34.013 53.665 33.6576 53.4007 33.3613 53.0635C33.0697 52.7217 32.8464 52.3229 32.6914 51.8672C32.5365 51.4115 32.459 50.917 32.459 50.3838ZM33.7236 50.2266V50.3838C33.7236 50.7529 33.7669 51.1016 33.8535 51.4297C33.9401 51.7533 34.07 52.0404 34.2432 52.291C34.4209 52.5417 34.6419 52.7399 34.9062 52.8857C35.1706 53.027 35.4782 53.0977 35.8291 53.0977C36.1755 53.0977 36.4785 53.027 36.7383 52.8857C37.0026 52.7399 37.2214 52.5417 37.3945 52.291C37.5677 52.0404 37.6976 51.7533 37.7842 51.4297C37.8753 51.1016 37.9209 50.7529 37.9209 50.3838V50.2266C37.9209 49.862 37.8753 49.5179 37.7842 49.1943C37.6976 48.8662 37.5654 48.5768 37.3877 48.3262C37.2145 48.071 36.9958 47.8704 36.7314 47.7246C36.4717 47.5788 36.1663 47.5059 35.8154 47.5059C35.4691 47.5059 35.1637 47.5788 34.8994 47.7246C34.6396 47.8704 34.4209 48.071 34.2432 48.3262C34.07 48.5768 33.9401 48.8662 33.8535 49.1943C33.7669 49.5179 33.7236 49.862 33.7236 50.2266ZM40.4434 50.3838V50.2266C40.4434 49.6934 40.5208 49.1989 40.6758 48.7432C40.8307 48.2829 41.054 47.8841 41.3457 47.5469C41.6374 47.2051 41.9906 46.9408 42.4053 46.7539C42.82 46.5625 43.2848 46.4668 43.7998 46.4668C44.3193 46.4668 44.7865 46.5625 45.2012 46.7539C45.6204 46.9408 45.9759 47.2051 46.2676 47.5469C46.5638 47.8841 46.7894 48.2829 46.9443 48.7432C47.0993 49.1989 47.1768 49.6934 47.1768 50.2266V50.3838C47.1768 50.917 47.0993 51.4115 46.9443 51.8672C46.7894 52.3229 46.5638 52.7217 46.2676 53.0635C45.9759 53.4007 45.6227 53.665 45.208 53.8564C44.7979 54.0433 44.333 54.1367 43.8135 54.1367C43.2939 54.1367 42.8268 54.0433 42.4121 53.8564C41.9974 53.665 41.6419 53.4007 41.3457 53.0635C41.054 52.7217 40.8307 52.3229 40.6758 51.8672C40.5208 51.4115 40.4434 50.917 40.4434 50.3838ZM41.708 50.2266V50.3838C41.708 50.7529 41.7513 51.1016 41.8379 51.4297C41.9245 51.7533 42.0544 52.0404 42.2275 52.291C42.4053 52.5417 42.6263 52.7399 42.8906 52.8857C43.1549 53.027 43.4626 53.0977 43.8135 53.0977C44.1598 53.0977 44.4629 53.027 44.7227 52.8857C44.987 52.7399 45.2057 52.5417 45.3789 52.291C45.5521 52.0404 45.682 51.7533 45.7686 51.4297C45.8597 51.1016 45.9053 50.7529 45.9053 50.3838V50.2266C45.9053 49.862 45.8597 49.5179 45.7686 49.1943C45.682 48.8662 45.5498 48.5768 45.3721 48.3262C45.1989 48.071 44.9801 47.8704 44.7158 47.7246C44.4561 47.5788 44.1507 47.5059 43.7998 47.5059C43.4535 47.5059 43.1481 47.5788 42.8838 47.7246C42.624 47.8704 42.4053 48.071 42.2275 48.3262C42.0544 48.5768 41.9245 48.8662 41.8379 49.1943C41.7513 49.5179 41.708 49.862 41.708 50.2266ZM53.0693 52.0381C53.0693 51.8558 53.0283 51.6872 52.9463 51.5322C52.8688 51.3727 52.707 51.2292 52.4609 51.1016C52.2194 50.9694 51.8548 50.8555 51.3672 50.7598C50.957 50.6732 50.5856 50.5706 50.2529 50.4521C49.9248 50.3337 49.6445 50.1901 49.4121 50.0215C49.1842 49.8529 49.0088 49.6546 48.8857 49.4268C48.7627 49.1989 48.7012 48.9323 48.7012 48.627C48.7012 48.3353 48.765 48.0596 48.8926 47.7998C49.0247 47.54 49.2093 47.3099 49.4463 47.1094C49.6878 46.9089 49.9772 46.7516 50.3145 46.6377C50.6517 46.5238 51.0277 46.4668 51.4424 46.4668C52.0348 46.4668 52.5407 46.5716 52.96 46.7812C53.3792 46.9909 53.7005 47.2712 53.9238 47.6221C54.1471 47.9684 54.2588 48.3535 54.2588 48.7773H52.9941C52.9941 48.5723 52.9326 48.374 52.8096 48.1826C52.6911 47.9867 52.5156 47.8249 52.2832 47.6973C52.0553 47.5697 51.7751 47.5059 51.4424 47.5059C51.0915 47.5059 50.8066 47.5605 50.5879 47.6699C50.3737 47.7747 50.2165 47.9092 50.1162 48.0732C50.0205 48.2373 49.9727 48.4105 49.9727 48.5928C49.9727 48.7295 49.9954 48.8525 50.041 48.9619C50.0911 49.0667 50.1777 49.1647 50.3008 49.2559C50.4238 49.3424 50.597 49.4245 50.8203 49.502C51.0436 49.5794 51.3285 49.6569 51.6748 49.7344C52.2809 49.8711 52.7799 50.0352 53.1719 50.2266C53.5638 50.418 53.8555 50.6527 54.0469 50.9307C54.2383 51.2087 54.334 51.5459 54.334 51.9424C54.334 52.266 54.2656 52.5622 54.1289 52.8311C53.9967 53.0999 53.8031 53.3324 53.5479 53.5283C53.2972 53.7197 52.9964 53.8701 52.6455 53.9795C52.2992 54.0843 51.9095 54.1367 51.4766 54.1367C50.8249 54.1367 50.2734 54.0205 49.8223 53.7881C49.3711 53.5557 49.0293 53.2549 48.7969 52.8857C48.5645 52.5166 48.4482 52.127 48.4482 51.7168H49.7197C49.738 52.0632 49.8382 52.3389 50.0205 52.5439C50.2028 52.7445 50.4261 52.888 50.6904 52.9746C50.9548 53.0566 51.2168 53.0977 51.4766 53.0977C51.8229 53.0977 52.1123 53.0521 52.3447 52.9609C52.5817 52.8698 52.7617 52.7445 52.8848 52.585C53.0078 52.4255 53.0693 52.2432 53.0693 52.0381ZM59.0645 54.1367C58.5495 54.1367 58.0824 54.0501 57.6631 53.877C57.2484 53.6992 56.8906 53.4508 56.5898 53.1318C56.2936 52.8128 56.0658 52.4346 55.9062 51.9971C55.7467 51.5596 55.667 51.0811 55.667 50.5615V50.2744C55.667 49.6729 55.7559 49.1374 55.9336 48.668C56.1113 48.194 56.3529 47.793 56.6582 47.4648C56.9635 47.1367 57.3099 46.8883 57.6973 46.7197C58.0846 46.5511 58.4857 46.4668 58.9004 46.4668C59.429 46.4668 59.8848 46.5579 60.2676 46.7402C60.6549 46.9225 60.9717 47.1777 61.2178 47.5059C61.4639 47.8294 61.6462 48.2122 61.7646 48.6543C61.8831 49.0918 61.9424 49.5703 61.9424 50.0898V50.6572H56.4189V49.625H60.6777V49.5293C60.6595 49.2012 60.5911 48.8822 60.4727 48.5723C60.3587 48.2624 60.1764 48.0072 59.9258 47.8066C59.6751 47.6061 59.3333 47.5059 58.9004 47.5059C58.6133 47.5059 58.349 47.5674 58.1074 47.6904C57.8659 47.8089 57.6585 47.9867 57.4854 48.2236C57.3122 48.4606 57.1777 48.75 57.082 49.0918C56.9863 49.4336 56.9385 49.8278 56.9385 50.2744V50.5615C56.9385 50.9124 56.9863 51.2428 57.082 51.5527C57.1823 51.8581 57.3258 52.127 57.5127 52.3594C57.7041 52.5918 57.9342 52.7741 58.2031 52.9062C58.4766 53.0384 58.7865 53.1045 59.1328 53.1045C59.5794 53.1045 59.9577 53.0133 60.2676 52.8311C60.5775 52.6488 60.8486 52.4049 61.0811 52.0996L61.8467 52.708C61.6872 52.9495 61.4844 53.1797 61.2383 53.3984C60.9922 53.6172 60.6891 53.7949 60.3291 53.9316C59.9736 54.0684 59.5521 54.1367 59.0645 54.1367ZM72.3877 51.4844C72.3877 51.252 72.3512 51.0469 72.2783 50.8691C72.21 50.6868 72.0869 50.5228 71.9092 50.377C71.736 50.2311 71.4945 50.0921 71.1846 49.96C70.8792 49.8278 70.4919 49.6934 70.0225 49.5566C69.5303 49.4108 69.0859 49.249 68.6895 49.0713C68.293 48.889 67.9535 48.6816 67.6709 48.4492C67.3883 48.2168 67.1719 47.9502 67.0215 47.6494C66.8711 47.3486 66.7959 47.0046 66.7959 46.6172C66.7959 46.2298 66.8757 45.8721 67.0352 45.5439C67.1947 45.2158 67.4225 44.931 67.7188 44.6895C68.0195 44.4434 68.3773 44.252 68.792 44.1152C69.2067 43.9785 69.6693 43.9102 70.1797 43.9102C70.9271 43.9102 71.5605 44.0537 72.0801 44.3408C72.6042 44.6234 73.0029 44.9948 73.2764 45.4551C73.5498 45.9108 73.6865 46.3984 73.6865 46.918H72.374C72.374 46.5443 72.2943 46.2139 72.1348 45.9268C71.9753 45.6351 71.7337 45.4072 71.4102 45.2432C71.0866 45.0745 70.6764 44.9902 70.1797 44.9902C69.7103 44.9902 69.3229 45.0609 69.0176 45.2021C68.7122 45.3434 68.4844 45.5348 68.334 45.7764C68.1882 46.0179 68.1152 46.2936 68.1152 46.6035C68.1152 46.8132 68.1585 47.0046 68.2451 47.1777C68.3363 47.3464 68.4753 47.5036 68.6621 47.6494C68.8535 47.7952 69.0951 47.9297 69.3867 48.0527C69.6829 48.1758 70.0361 48.2943 70.4463 48.4082C71.0114 48.5677 71.499 48.7454 71.9092 48.9414C72.3193 49.1374 72.6566 49.3584 72.9209 49.6045C73.1898 49.846 73.388 50.1217 73.5156 50.4316C73.6478 50.737 73.7139 51.0833 73.7139 51.4707C73.7139 51.8763 73.6318 52.2432 73.4678 52.5713C73.3037 52.8994 73.069 53.1797 72.7637 53.4121C72.4583 53.6445 72.0915 53.8245 71.6631 53.9521C71.2393 54.0752 70.7653 54.1367 70.2412 54.1367C69.7809 54.1367 69.3275 54.0729 68.8809 53.9453C68.4388 53.8177 68.0355 53.6263 67.6709 53.3711C67.3109 53.1159 67.0215 52.8014 66.8027 52.4277C66.5885 52.0495 66.4814 51.612 66.4814 51.1152H67.7939C67.7939 51.457 67.86 51.751 67.9922 51.9971C68.1243 52.2386 68.3044 52.4391 68.5322 52.5986C68.7646 52.7581 69.0267 52.8766 69.3184 52.9541C69.6146 53.027 69.9222 53.0635 70.2412 53.0635C70.7015 53.0635 71.0911 52.9997 71.4102 52.8721C71.7292 52.7445 71.9707 52.5622 72.1348 52.3252C72.3034 52.0882 72.3877 51.8079 72.3877 51.4844ZM78.2734 54.1367C77.7585 54.1367 77.2913 54.0501 76.8721 53.877C76.4574 53.6992 76.0996 53.4508 75.7988 53.1318C75.5026 52.8128 75.2747 52.4346 75.1152 51.9971C74.9557 51.5596 74.876 51.0811 74.876 50.5615V50.2744C74.876 49.6729 74.9648 49.1374 75.1426 48.668C75.3203 48.194 75.5618 47.793 75.8672 47.4648C76.1725 47.1367 76.5189 46.8883 76.9062 46.7197C77.2936 46.5511 77.6947 46.4668 78.1094 46.4668C78.638 46.4668 79.0938 46.5579 79.4766 46.7402C79.8639 46.9225 80.1807 47.1777 80.4268 47.5059C80.6729 47.8294 80.8551 48.2122 80.9736 48.6543C81.0921 49.0918 81.1514 49.5703 81.1514 50.0898V50.6572H75.6279V49.625H79.8867V49.5293C79.8685 49.2012 79.8001 48.8822 79.6816 48.5723C79.5677 48.2624 79.3854 48.0072 79.1348 47.8066C78.8841 47.6061 78.5423 47.5059 78.1094 47.5059C77.8223 47.5059 77.5579 47.5674 77.3164 47.6904C77.0749 47.8089 76.8675 47.9867 76.6943 48.2236C76.5212 48.4606 76.3867 48.75 76.291 49.0918C76.1953 49.4336 76.1475 49.8278 76.1475 50.2744V50.5615C76.1475 50.9124 76.1953 51.2428 76.291 51.5527C76.3913 51.8581 76.5348 52.127 76.7217 52.3594C76.9131 52.5918 77.1432 52.7741 77.4121 52.9062C77.6855 53.0384 77.9954 53.1045 78.3418 53.1045C78.7884 53.1045 79.1667 53.0133 79.4766 52.8311C79.7865 52.6488 80.0576 52.4049 80.29 52.0996L81.0557 52.708C80.8962 52.9495 80.6934 53.1797 80.4473 53.3984C80.2012 53.6172 79.8981 53.7949 79.5381 53.9316C79.1826 54.0684 78.7611 54.1367 78.2734 54.1367ZM83.8926 47.7656V54H82.6279V46.6035H83.8584L83.8926 47.7656ZM86.2031 46.5625L86.1963 47.7383C86.0915 47.7155 85.9912 47.7018 85.8955 47.6973C85.8044 47.6882 85.6995 47.6836 85.5811 47.6836C85.2894 47.6836 85.0319 47.7292 84.8086 47.8203C84.5853 47.9115 84.3962 48.0391 84.2412 48.2031C84.0863 48.3672 83.9632 48.5632 83.8721 48.791C83.7855 49.0143 83.7285 49.2604 83.7012 49.5293L83.3457 49.7344C83.3457 49.2878 83.389 48.8685 83.4756 48.4766C83.5667 48.0846 83.7057 47.7383 83.8926 47.4375C84.0794 47.1322 84.3164 46.8952 84.6035 46.7266C84.8952 46.5534 85.2415 46.4668 85.6426 46.4668C85.7337 46.4668 85.8385 46.4782 85.957 46.501C86.0755 46.5192 86.1576 46.5397 86.2031 46.5625ZM89.7441 52.8584L91.7676 46.6035H93.0596L90.4004 54H89.5527L89.7441 52.8584ZM88.0557 46.6035L90.1406 52.8926L90.2842 54H89.4365L86.7568 46.6035H88.0557ZM95.6504 46.6035V54H94.3789V46.6035H95.6504ZM94.2832 44.6416C94.2832 44.4365 94.3447 44.2633 94.4678 44.1221C94.5954 43.9808 94.7822 43.9102 95.0283 43.9102C95.2699 43.9102 95.4544 43.9808 95.582 44.1221C95.7142 44.2633 95.7803 44.4365 95.7803 44.6416C95.7803 44.8376 95.7142 45.0062 95.582 45.1475C95.4544 45.2842 95.2699 45.3525 95.0283 45.3525C94.7822 45.3525 94.5954 45.2842 94.4678 45.1475C94.3447 45.0062 94.2832 44.8376 94.2832 44.6416ZM100.641 53.0977C100.941 53.0977 101.219 53.0361 101.475 52.9131C101.73 52.79 101.939 52.6214 102.104 52.4072C102.268 52.1885 102.361 51.9401 102.384 51.6621H103.587C103.564 52.0996 103.416 52.5075 103.143 52.8857C102.874 53.2594 102.521 53.5625 102.083 53.7949C101.646 54.0228 101.165 54.1367 100.641 54.1367C100.085 54.1367 99.5993 54.0387 99.1846 53.8428C98.7744 53.6468 98.4326 53.3779 98.1592 53.0361C97.8903 52.6943 97.6875 52.3024 97.5508 51.8604C97.4186 51.4137 97.3525 50.9421 97.3525 50.4453V50.1582C97.3525 49.6615 97.4186 49.1921 97.5508 48.75C97.6875 48.3034 97.8903 47.9092 98.1592 47.5674C98.4326 47.2256 98.7744 46.9567 99.1846 46.7607C99.5993 46.5648 100.085 46.4668 100.641 46.4668C101.219 46.4668 101.725 46.5853 102.158 46.8223C102.591 47.0547 102.931 47.3737 103.177 47.7793C103.427 48.1803 103.564 48.6361 103.587 49.1465H102.384C102.361 48.8411 102.274 48.5654 102.124 48.3193C101.978 48.0732 101.778 47.8773 101.522 47.7314C101.272 47.5811 100.978 47.5059 100.641 47.5059C100.253 47.5059 99.9274 47.5833 99.6631 47.7383C99.4033 47.8887 99.196 48.0938 99.041 48.3535C98.8906 48.6087 98.7812 48.8936 98.7129 49.208C98.6491 49.5179 98.6172 49.8346 98.6172 50.1582V50.4453C98.6172 50.7689 98.6491 51.0879 98.7129 51.4023C98.7767 51.7168 98.8838 52.0016 99.0342 52.2568C99.1891 52.512 99.3965 52.7171 99.6562 52.8721C99.9206 53.0225 100.249 53.0977 100.641 53.0977ZM108.078 54.1367C107.563 54.1367 107.096 54.0501 106.677 53.877C106.262 53.6992 105.904 53.4508 105.604 53.1318C105.307 52.8128 105.079 52.4346 104.92 51.9971C104.76 51.5596 104.681 51.0811 104.681 50.5615V50.2744C104.681 49.6729 104.77 49.1374 104.947 48.668C105.125 48.194 105.367 47.793 105.672 47.4648C105.977 47.1367 106.324 46.8883 106.711 46.7197C107.098 46.5511 107.499 46.4668 107.914 46.4668C108.443 46.4668 108.898 46.5579 109.281 46.7402C109.669 46.9225 109.985 47.1777 110.231 47.5059C110.478 47.8294 110.66 48.2122 110.778 48.6543C110.897 49.0918 110.956 49.5703 110.956 50.0898V50.6572H105.433V49.625H109.691V49.5293C109.673 49.2012 109.605 48.8822 109.486 48.5723C109.372 48.2624 109.19 48.0072 108.939 47.8066C108.689 47.6061 108.347 47.5059 107.914 47.5059C107.627 47.5059 107.363 47.5674 107.121 47.6904C106.88 47.8089 106.672 47.9867 106.499 48.2236C106.326 48.4606 106.191 48.75 106.096 49.0918C106 49.4336 105.952 49.8278 105.952 50.2744V50.5615C105.952 50.9124 106 51.2428 106.096 51.5527C106.196 51.8581 106.34 52.127 106.526 52.3594C106.718 52.5918 106.948 52.7741 107.217 52.9062C107.49 53.0384 107.8 53.1045 108.146 53.1045C108.593 53.1045 108.971 53.0133 109.281 52.8311C109.591 52.6488 109.862 52.4049 110.095 52.0996L110.86 52.708C110.701 52.9495 110.498 53.1797 110.252 53.3984C110.006 53.6172 109.703 53.7949 109.343 53.9316C108.987 54.0684 108.566 54.1367 108.078 54.1367Z",fill:"#64748B"}),(0,o.createElement)("path",{d:"M29.25 65.75V76.25H18.75V65.75H29.25ZM29.25 64.25H18.75C17.925 64.25 17.25 64.925 17.25 65.75V76.25C17.25 77.075 17.925 77.75 18.75 77.75H29.25C30.075 77.75 30.75 77.075 30.75 76.25V65.75C30.75 64.925 30.075 64.25 29.25 64.25Z",fill:"#64748B"}),(0,o.createElement)("path",{d:"M39.5039 72.707L41.3384 66.2578H42.2271L41.7129 68.7651L39.7388 75.5H38.8564L39.5039 72.707ZM37.606 66.2578L39.0659 72.5801L39.5039 75.5H38.6279L36.3872 66.2578H37.606ZM44.6011 72.5737L46.0293 66.2578H47.2544L45.02 75.5H44.144L44.6011 72.5737ZM42.3604 66.2578L44.144 72.707L44.7915 75.5H43.9092L42.0049 68.7651L41.4844 66.2578H42.3604ZM51.082 75.627C50.6038 75.627 50.1701 75.5465 49.7808 75.3857C49.3957 75.2207 49.0635 74.9901 48.7842 74.6938C48.5091 74.3976 48.2975 74.0464 48.1494 73.6401C48.0013 73.2339 47.9272 72.7896 47.9272 72.3071V72.0405C47.9272 71.4819 48.0098 70.9847 48.1748 70.5488C48.3398 70.1087 48.5641 69.7363 48.8477 69.4316C49.1312 69.127 49.4528 68.8963 49.8125 68.7397C50.1722 68.5832 50.5446 68.5049 50.9297 68.5049C51.4206 68.5049 51.8438 68.5895 52.1992 68.7588C52.5589 68.9281 52.853 69.165 53.0815 69.4697C53.3101 69.7702 53.4793 70.1257 53.5894 70.5361C53.6994 70.9424 53.7544 71.3867 53.7544 71.8691V72.396H48.6255V71.4375H52.5801V71.3486C52.5632 71.0439 52.4997 70.7477 52.3896 70.46C52.2839 70.1722 52.1146 69.9352 51.8818 69.749C51.6491 69.5628 51.3317 69.4697 50.9297 69.4697C50.6631 69.4697 50.4176 69.5269 50.1934 69.6411C49.9691 69.7511 49.7765 69.9162 49.6157 70.1362C49.4549 70.3563 49.3301 70.625 49.2412 70.9424C49.1523 71.2598 49.1079 71.6258 49.1079 72.0405V72.3071C49.1079 72.633 49.1523 72.9398 49.2412 73.2275C49.3343 73.5111 49.4676 73.7607 49.6411 73.9766C49.8188 74.1924 50.0326 74.3617 50.2822 74.4844C50.5361 74.6071 50.8239 74.6685 51.1455 74.6685C51.5602 74.6685 51.9115 74.5838 52.1992 74.4146C52.487 74.2453 52.7388 74.0189 52.9546 73.7354L53.6655 74.3003C53.5174 74.5246 53.3291 74.7383 53.1006 74.9414C52.8721 75.1445 52.5907 75.3096 52.2563 75.4365C51.9263 75.5635 51.5348 75.627 51.082 75.627ZM56.4014 65.75V75.5H55.2207V65.75H56.4014ZM59.5625 65.75V75.5H58.3818V65.75H59.5625ZM62.6221 70.0981V75.5H61.4478V68.6318H62.5586L62.6221 70.0981ZM62.3428 71.8057L61.854 71.7866C61.8582 71.3169 61.9281 70.8831 62.0635 70.4854C62.1989 70.0833 62.3893 69.7342 62.6348 69.438C62.8802 69.1418 63.1722 68.9132 63.5107 68.7524C63.8535 68.5874 64.2323 68.5049 64.647 68.5049C64.9855 68.5049 65.2902 68.5514 65.561 68.6445C65.8319 68.7334 66.0625 68.8773 66.2529 69.0762C66.4476 69.2751 66.5957 69.5332 66.6973 69.8506C66.7988 70.1637 66.8496 70.5467 66.8496 70.9995V75.5H65.6689V70.9868C65.6689 70.6271 65.616 70.3394 65.5103 70.1235C65.4045 69.9035 65.25 69.7448 65.0469 69.6475C64.8438 69.5459 64.5941 69.4951 64.2979 69.4951C64.0059 69.4951 63.7393 69.5565 63.498 69.6792C63.2611 69.8019 63.0558 69.9712 62.8823 70.187C62.7131 70.4028 62.5798 70.6504 62.4824 70.9297C62.3893 71.2048 62.3428 71.4967 62.3428 71.8057ZM71.4834 75.627C71.0052 75.627 70.5715 75.5465 70.1821 75.3857C69.797 75.2207 69.4648 74.9901 69.1855 74.6938C68.9105 74.3976 68.6989 74.0464 68.5508 73.6401C68.4027 73.2339 68.3286 72.7896 68.3286 72.3071V72.0405C68.3286 71.4819 68.4111 70.9847 68.5762 70.5488C68.7412 70.1087 68.9655 69.7363 69.249 69.4316C69.5326 69.127 69.8542 68.8963 70.2139 68.7397C70.5736 68.5832 70.946 68.5049 71.3311 68.5049C71.8219 68.5049 72.2451 68.5895 72.6006 68.7588C72.9603 68.9281 73.2544 69.165 73.4829 69.4697C73.7114 69.7702 73.8807 70.1257 73.9907 70.5361C74.1007 70.9424 74.1558 71.3867 74.1558 71.8691V72.396H69.0269V71.4375H72.9814V71.3486C72.9645 71.0439 72.901 70.7477 72.791 70.46C72.6852 70.1722 72.516 69.9352 72.2832 69.749C72.0505 69.5628 71.7331 69.4697 71.3311 69.4697C71.0645 69.4697 70.819 69.5269 70.5947 69.6411C70.3704 69.7511 70.1779 69.9162 70.0171 70.1362C69.8563 70.3563 69.7314 70.625 69.6426 70.9424C69.5537 71.2598 69.5093 71.6258 69.5093 72.0405V72.3071C69.5093 72.633 69.5537 72.9398 69.6426 73.2275C69.7357 73.5111 69.869 73.7607 70.0425 73.9766C70.2202 74.1924 70.4339 74.3617 70.6836 74.4844C70.9375 74.6071 71.2253 74.6685 71.5469 74.6685C71.9616 74.6685 72.3128 74.5838 72.6006 74.4146C72.8883 74.2453 73.1401 74.0189 73.356 73.7354L74.0669 74.3003C73.9188 74.5246 73.7305 74.7383 73.502 74.9414C73.2734 75.1445 72.992 75.3096 72.6577 75.4365C72.3276 75.5635 71.9362 75.627 71.4834 75.627ZM79.5259 73.6782C79.5259 73.509 79.4878 73.3524 79.4116 73.2085C79.3397 73.0604 79.1895 72.9271 78.9609 72.8086C78.7367 72.6859 78.3981 72.5801 77.9453 72.4912C77.5645 72.4108 77.2196 72.3156 76.9106 72.2056C76.606 72.0955 76.3457 71.9622 76.1299 71.8057C75.9183 71.6491 75.7554 71.465 75.6411 71.2534C75.5269 71.0418 75.4697 70.7943 75.4697 70.5107C75.4697 70.2399 75.529 69.9839 75.6475 69.7427C75.7702 69.5015 75.9416 69.2878 76.1616 69.1016C76.3859 68.9154 76.6546 68.7694 76.9678 68.6636C77.2809 68.5578 77.63 68.5049 78.0151 68.5049C78.5653 68.5049 79.035 68.6022 79.4243 68.7969C79.8136 68.9915 80.112 69.2518 80.3193 69.5776C80.5267 69.8993 80.6304 70.2568 80.6304 70.6504H79.4561C79.4561 70.46 79.3989 70.2759 79.2847 70.0981C79.1746 69.9162 79.0117 69.766 78.7959 69.6475C78.5843 69.529 78.3241 69.4697 78.0151 69.4697C77.6893 69.4697 77.4248 69.5205 77.2217 69.6221C77.0228 69.7194 76.8768 69.8442 76.7837 69.9966C76.6948 70.1489 76.6504 70.3097 76.6504 70.479C76.6504 70.606 76.6715 70.7202 76.7139 70.8218C76.7604 70.9191 76.8408 71.0101 76.9551 71.0947C77.0693 71.1751 77.2301 71.2513 77.4375 71.3232C77.6449 71.3952 77.9093 71.4671 78.231 71.5391C78.7938 71.666 79.2572 71.8184 79.6211 71.9961C79.985 72.1738 80.2559 72.3918 80.4336 72.6499C80.6113 72.908 80.7002 73.2212 80.7002 73.5894C80.7002 73.8898 80.6367 74.1649 80.5098 74.4146C80.387 74.6642 80.2072 74.88 79.9702 75.062C79.7375 75.2397 79.4582 75.3794 79.1323 75.481C78.8107 75.5783 78.4489 75.627 78.0469 75.627C77.4417 75.627 76.9297 75.519 76.5107 75.3032C76.0918 75.0874 75.7744 74.8081 75.5586 74.4653C75.3428 74.1226 75.2349 73.7607 75.2349 73.3799H76.4155C76.4325 73.7015 76.5256 73.9575 76.6948 74.1479C76.8641 74.3341 77.0715 74.4674 77.3169 74.5479C77.5623 74.624 77.8057 74.6621 78.0469 74.6621C78.3685 74.6621 78.6372 74.6198 78.853 74.5352C79.0731 74.4505 79.2402 74.3341 79.3545 74.186C79.4688 74.0379 79.5259 73.8687 79.5259 73.6782ZM86.2417 73.6782C86.2417 73.509 86.2036 73.3524 86.1274 73.2085C86.0555 73.0604 85.9053 72.9271 85.6768 72.8086C85.4525 72.6859 85.1139 72.5801 84.6611 72.4912C84.2803 72.4108 83.9354 72.3156 83.6265 72.2056C83.3218 72.0955 83.0615 71.9622 82.8457 71.8057C82.6341 71.6491 82.4712 71.465 82.3569 71.2534C82.2427 71.0418 82.1855 70.7943 82.1855 70.5107C82.1855 70.2399 82.2448 69.9839 82.3633 69.7427C82.486 69.5015 82.6574 69.2878 82.8774 69.1016C83.1017 68.9154 83.3704 68.7694 83.6836 68.6636C83.9967 68.5578 84.3459 68.5049 84.731 68.5049C85.2811 68.5049 85.7508 68.6022 86.1401 68.7969C86.5295 68.9915 86.8278 69.2518 87.0352 69.5776C87.2425 69.8993 87.3462 70.2568 87.3462 70.6504H86.1719C86.1719 70.46 86.1147 70.2759 86.0005 70.0981C85.8905 69.9162 85.7275 69.766 85.5117 69.6475C85.3001 69.529 85.0399 69.4697 84.731 69.4697C84.4051 69.4697 84.1406 69.5205 83.9375 69.6221C83.7386 69.7194 83.5926 69.8442 83.4995 69.9966C83.4106 70.1489 83.3662 70.3097 83.3662 70.479C83.3662 70.606 83.3874 70.7202 83.4297 70.8218C83.4762 70.9191 83.5566 71.0101 83.6709 71.0947C83.7852 71.1751 83.946 71.2513 84.1533 71.3232C84.3607 71.3952 84.6252 71.4671 84.9468 71.5391C85.5096 71.666 85.973 71.8184 86.3369 71.9961C86.7008 72.1738 86.9717 72.3918 87.1494 72.6499C87.3271 72.908 87.416 73.2212 87.416 73.5894C87.416 73.8898 87.3525 74.1649 87.2256 74.4146C87.1029 74.6642 86.923 74.88 86.686 75.062C86.4533 75.2397 86.174 75.3794 85.8481 75.481C85.5265 75.5783 85.1647 75.627 84.7627 75.627C84.1576 75.627 83.6455 75.519 83.2266 75.3032C82.8076 75.0874 82.4902 74.8081 82.2744 74.4653C82.0586 74.1226 81.9507 73.7607 81.9507 73.3799H83.1313C83.1483 73.7015 83.2414 73.9575 83.4106 74.1479C83.5799 74.3341 83.7873 74.4674 84.0327 74.5479C84.2782 74.624 84.5215 74.6621 84.7627 74.6621C85.0843 74.6621 85.353 74.6198 85.5688 74.5352C85.7889 74.4505 85.9561 74.3341 86.0703 74.186C86.1846 74.0379 86.2417 73.8687 86.2417 73.6782ZM93.3511 69.9966V75.5H92.1704V68.6318H93.2876L93.3511 69.9966ZM93.1099 71.8057L92.564 71.7866C92.5682 71.3169 92.6296 70.8831 92.748 70.4854C92.8665 70.0833 93.0422 69.7342 93.2749 69.438C93.5076 69.1418 93.7975 68.9132 94.1445 68.7524C94.4915 68.5874 94.8936 68.5049 95.3506 68.5049C95.6722 68.5049 95.9684 68.5514 96.2393 68.6445C96.5101 68.7334 96.745 68.8752 96.9438 69.0698C97.1427 69.2645 97.2972 69.5142 97.4072 69.8188C97.5173 70.1235 97.5723 70.4917 97.5723 70.9233V75.5H96.3979V70.9805C96.3979 70.6208 96.3366 70.333 96.2139 70.1172C96.0954 69.9014 95.9261 69.7448 95.7061 69.6475C95.486 69.5459 95.2279 69.4951 94.9316 69.4951C94.5846 69.4951 94.2948 69.5565 94.062 69.6792C93.8293 69.8019 93.6431 69.9712 93.5034 70.187C93.3638 70.4028 93.2622 70.6504 93.1987 70.9297C93.1395 71.2048 93.1099 71.4967 93.1099 71.8057ZM97.5596 71.1582L96.7725 71.3994C96.7767 71.0228 96.8381 70.661 96.9565 70.314C97.0793 69.967 97.2549 69.658 97.4834 69.3872C97.7161 69.1164 98.0018 68.9027 98.3403 68.7461C98.6789 68.5853 99.0661 68.5049 99.502 68.5049C99.8701 68.5049 100.196 68.5535 100.479 68.6509C100.767 68.7482 101.008 68.8984 101.203 69.1016C101.402 69.3005 101.552 69.5565 101.654 69.8696C101.755 70.1828 101.806 70.5552 101.806 70.9868V75.5H100.625V70.9741C100.625 70.589 100.564 70.2907 100.441 70.0791C100.323 69.8633 100.154 69.7131 99.9336 69.6284C99.7178 69.5396 99.4596 69.4951 99.1592 69.4951C98.901 69.4951 98.6725 69.5396 98.4736 69.6284C98.2747 69.7173 98.1076 69.84 97.9722 69.9966C97.8368 70.1489 97.7331 70.3245 97.6611 70.5234C97.5934 70.7223 97.5596 70.9339 97.5596 71.1582ZM107.633 74.3257V70.79C107.633 70.5192 107.578 70.2843 107.468 70.0854C107.362 69.8823 107.202 69.7257 106.986 69.6157C106.77 69.5057 106.503 69.4507 106.186 69.4507C105.89 69.4507 105.63 69.5015 105.405 69.603C105.185 69.7046 105.012 69.8379 104.885 70.0029C104.762 70.168 104.701 70.3457 104.701 70.5361H103.526C103.526 70.2907 103.59 70.0474 103.717 69.8062C103.844 69.5649 104.026 69.347 104.263 69.1523C104.504 68.9535 104.792 68.7969 105.126 68.6826C105.465 68.5641 105.841 68.5049 106.256 68.5049C106.755 68.5049 107.195 68.5895 107.576 68.7588C107.961 68.9281 108.262 69.1841 108.478 69.5269C108.698 69.8654 108.808 70.2907 108.808 70.8027V74.002C108.808 74.2305 108.827 74.4738 108.865 74.7319C108.907 74.9901 108.968 75.2122 109.049 75.3984V75.5H107.824C107.764 75.3646 107.718 75.1847 107.684 74.9604C107.65 74.7319 107.633 74.5203 107.633 74.3257ZM107.836 71.3359L107.849 72.1611H106.662C106.328 72.1611 106.029 72.1886 105.767 72.2437C105.505 72.2944 105.285 72.3727 105.107 72.4785C104.929 72.5843 104.794 72.7176 104.701 72.8784C104.608 73.035 104.561 73.2191 104.561 73.4307C104.561 73.6465 104.61 73.8433 104.707 74.021C104.804 74.1987 104.95 74.3405 105.145 74.4463C105.344 74.5479 105.587 74.5986 105.875 74.5986C106.235 74.5986 106.552 74.5225 106.827 74.3701C107.102 74.2178 107.32 74.0316 107.481 73.8115C107.646 73.5915 107.735 73.3778 107.748 73.1704L108.249 73.7354C108.219 73.9131 108.139 74.1099 108.008 74.3257C107.877 74.5415 107.701 74.7489 107.481 74.9478C107.265 75.1424 107.007 75.3053 106.707 75.4365C106.41 75.5635 106.076 75.627 105.704 75.627C105.238 75.627 104.83 75.536 104.479 75.354C104.132 75.172 103.861 74.9287 103.666 74.624C103.476 74.3151 103.38 73.9702 103.38 73.5894C103.38 73.2212 103.452 72.8975 103.596 72.6182C103.74 72.3346 103.947 72.0998 104.218 71.9136C104.489 71.7231 104.815 71.5793 105.196 71.4819C105.577 71.3846 106.002 71.3359 106.472 71.3359H107.836ZM114.654 73.6782C114.654 73.509 114.616 73.3524 114.54 73.2085C114.468 73.0604 114.317 72.9271 114.089 72.8086C113.865 72.6859 113.526 72.5801 113.073 72.4912C112.692 72.4108 112.347 72.3156 112.039 72.2056C111.734 72.0955 111.474 71.9622 111.258 71.8057C111.046 71.6491 110.883 71.465 110.769 71.2534C110.655 71.0418 110.598 70.7943 110.598 70.5107C110.598 70.2399 110.657 69.9839 110.775 69.7427C110.898 69.5015 111.069 69.2878 111.29 69.1016C111.514 68.9154 111.783 68.7694 112.096 68.6636C112.409 68.5578 112.758 68.5049 113.143 68.5049C113.693 68.5049 114.163 68.6022 114.552 68.7969C114.942 68.9915 115.24 69.2518 115.447 69.5776C115.655 69.8993 115.758 70.2568 115.758 70.6504H114.584C114.584 70.46 114.527 70.2759 114.413 70.0981C114.303 69.9162 114.14 69.766 113.924 69.6475C113.712 69.529 113.452 69.4697 113.143 69.4697C112.817 69.4697 112.553 69.5205 112.35 69.6221C112.151 69.7194 112.005 69.8442 111.912 69.9966C111.823 70.1489 111.778 70.3097 111.778 70.479C111.778 70.606 111.799 70.7202 111.842 70.8218C111.888 70.9191 111.969 71.0101 112.083 71.0947C112.197 71.1751 112.358 71.2513 112.565 71.3232C112.773 71.3952 113.037 71.4671 113.359 71.5391C113.922 71.666 114.385 71.8184 114.749 71.9961C115.113 72.1738 115.384 72.3918 115.562 72.6499C115.739 72.908 115.828 73.2212 115.828 73.5894C115.828 73.8898 115.765 74.1649 115.638 74.4146C115.515 74.6642 115.335 74.88 115.098 75.062C114.865 75.2397 114.586 75.3794 114.26 75.481C113.939 75.5783 113.577 75.627 113.175 75.627C112.57 75.627 112.058 75.519 111.639 75.3032C111.22 75.0874 110.902 74.8081 110.687 74.4653C110.471 74.1226 110.363 73.7607 110.363 73.3799H111.543C111.56 73.7015 111.653 73.9575 111.823 74.1479C111.992 74.3341 112.199 74.4674 112.445 74.5479C112.69 74.624 112.934 74.6621 113.175 74.6621C113.496 74.6621 113.765 74.6198 113.981 74.5352C114.201 74.4505 114.368 74.3341 114.482 74.186C114.597 74.0379 114.654 73.8687 114.654 73.6782ZM121.37 73.6782C121.37 73.509 121.332 73.3524 121.255 73.2085C121.183 73.0604 121.033 72.9271 120.805 72.8086C120.58 72.6859 120.242 72.5801 119.789 72.4912C119.408 72.4108 119.063 72.3156 118.754 72.2056C118.45 72.0955 118.189 71.9622 117.974 71.8057C117.762 71.6491 117.599 71.465 117.485 71.2534C117.371 71.0418 117.313 70.7943 117.313 70.5107C117.313 70.2399 117.373 69.9839 117.491 69.7427C117.614 69.5015 117.785 69.2878 118.005 69.1016C118.23 68.9154 118.498 68.7694 118.812 68.6636C119.125 68.5578 119.474 68.5049 119.859 68.5049C120.409 68.5049 120.879 68.6022 121.268 68.7969C121.657 68.9915 121.956 69.2518 122.163 69.5776C122.37 69.8993 122.474 70.2568 122.474 70.6504H121.3C121.3 70.46 121.243 70.2759 121.128 70.0981C121.018 69.9162 120.855 69.766 120.64 69.6475C120.428 69.529 120.168 69.4697 119.859 69.4697C119.533 69.4697 119.269 69.5205 119.065 69.6221C118.867 69.7194 118.721 69.8442 118.627 69.9966C118.539 70.1489 118.494 70.3097 118.494 70.479C118.494 70.606 118.515 70.7202 118.558 70.8218C118.604 70.9191 118.685 71.0101 118.799 71.0947C118.913 71.1751 119.074 71.2513 119.281 71.3232C119.489 71.3952 119.753 71.4671 120.075 71.5391C120.638 71.666 121.101 71.8184 121.465 71.9961C121.829 72.1738 122.1 72.3918 122.277 72.6499C122.455 72.908 122.544 73.2212 122.544 73.5894C122.544 73.8898 122.48 74.1649 122.354 74.4146C122.231 74.6642 122.051 74.88 121.814 75.062C121.581 75.2397 121.302 75.3794 120.976 75.481C120.654 75.5783 120.293 75.627 119.891 75.627C119.285 75.627 118.773 75.519 118.354 75.3032C117.936 75.0874 117.618 74.8081 117.402 74.4653C117.187 74.1226 117.079 73.7607 117.079 73.3799H118.259C118.276 73.7015 118.369 73.9575 118.539 74.1479C118.708 74.3341 118.915 74.4674 119.161 74.5479C119.406 74.624 119.649 74.6621 119.891 74.6621C120.212 74.6621 120.481 74.6198 120.697 74.5352C120.917 74.4505 121.084 74.3341 121.198 74.186C121.312 74.0379 121.37 73.8687 121.37 73.6782ZM128.136 74.3257V70.79C128.136 70.5192 128.081 70.2843 127.971 70.0854C127.865 69.8823 127.705 69.7257 127.489 69.6157C127.273 69.5057 127.006 69.4507 126.689 69.4507C126.393 69.4507 126.132 69.5015 125.908 69.603C125.688 69.7046 125.515 69.8379 125.388 70.0029C125.265 70.168 125.204 70.3457 125.204 70.5361H124.029C124.029 70.2907 124.093 70.0474 124.22 69.8062C124.347 69.5649 124.529 69.347 124.766 69.1523C125.007 68.9535 125.295 68.7969 125.629 68.6826C125.967 68.5641 126.344 68.5049 126.759 68.5049C127.258 68.5049 127.698 68.5895 128.079 68.7588C128.464 68.9281 128.765 69.1841 128.98 69.5269C129.201 69.8654 129.311 70.2907 129.311 70.8027V74.002C129.311 74.2305 129.33 74.4738 129.368 74.7319C129.41 74.9901 129.471 75.2122 129.552 75.3984V75.5H128.327C128.267 75.3646 128.221 75.1847 128.187 74.9604C128.153 74.7319 128.136 74.5203 128.136 74.3257ZM128.339 71.3359L128.352 72.1611H127.165C126.831 72.1611 126.532 72.1886 126.27 72.2437C126.008 72.2944 125.788 72.3727 125.61 72.4785C125.432 72.5843 125.297 72.7176 125.204 72.8784C125.111 73.035 125.064 73.2191 125.064 73.4307C125.064 73.6465 125.113 73.8433 125.21 74.021C125.307 74.1987 125.453 74.3405 125.648 74.4463C125.847 74.5479 126.09 74.5986 126.378 74.5986C126.738 74.5986 127.055 74.5225 127.33 74.3701C127.605 74.2178 127.823 74.0316 127.984 73.8115C128.149 73.5915 128.238 73.3778 128.25 73.1704L128.752 73.7354C128.722 73.9131 128.642 74.1099 128.511 74.3257C128.38 74.5415 128.204 74.7489 127.984 74.9478C127.768 75.1424 127.51 75.3053 127.209 75.4365C126.913 75.5635 126.579 75.627 126.207 75.627C125.741 75.627 125.333 75.536 124.981 75.354C124.634 75.172 124.364 74.9287 124.169 74.624C123.979 74.3151 123.883 73.9702 123.883 73.5894C123.883 73.2212 123.955 72.8975 124.099 72.6182C124.243 72.3346 124.45 72.0998 124.721 71.9136C124.992 71.7231 125.318 71.5793 125.699 71.4819C126.08 71.3846 126.505 71.3359 126.975 71.3359H128.339ZM135.607 68.6318H136.674V75.354C136.674 75.9591 136.551 76.4754 136.306 76.9028C136.06 77.3302 135.717 77.654 135.277 77.874C134.841 78.0983 134.338 78.2104 133.767 78.2104C133.53 78.2104 133.25 78.1724 132.929 78.0962C132.611 78.0243 132.298 77.8994 131.989 77.7217C131.685 77.5482 131.429 77.3133 131.221 77.0171L131.837 76.3188C132.125 76.6659 132.425 76.9071 132.738 77.0425C133.056 77.1779 133.369 77.2456 133.678 77.2456C134.05 77.2456 134.372 77.1758 134.643 77.0361C134.913 76.8965 135.123 76.6891 135.271 76.4141C135.423 76.1432 135.5 75.8089 135.5 75.4111V70.1426L135.607 68.6318ZM130.878 72.1421V72.0088C130.878 71.484 130.94 71.008 131.062 70.5806C131.189 70.1489 131.369 69.7786 131.602 69.4697C131.839 69.1608 132.125 68.9238 132.459 68.7588C132.793 68.5895 133.17 68.5049 133.589 68.5049C134.021 68.5049 134.397 68.5811 134.719 68.7334C135.045 68.8815 135.32 69.0994 135.544 69.3872C135.772 69.6707 135.952 70.0135 136.083 70.4155C136.215 70.8175 136.306 71.2725 136.356 71.7803V72.3643C136.31 72.8678 136.219 73.3206 136.083 73.7227C135.952 74.1247 135.772 74.4674 135.544 74.751C135.32 75.0345 135.045 75.2524 134.719 75.4048C134.393 75.5529 134.012 75.627 133.576 75.627C133.166 75.627 132.793 75.5402 132.459 75.3667C132.129 75.1932 131.845 74.9499 131.608 74.6367C131.371 74.3236 131.189 73.9554 131.062 73.5322C130.94 73.1048 130.878 72.6414 130.878 72.1421ZM132.053 72.0088V72.1421C132.053 72.4849 132.087 72.8065 132.154 73.1069C132.226 73.4074 132.334 73.6719 132.478 73.9004C132.626 74.1289 132.814 74.3088 133.043 74.4399C133.271 74.5669 133.544 74.6304 133.862 74.6304C134.251 74.6304 134.573 74.5479 134.827 74.3828C135.081 74.2178 135.282 73.9998 135.43 73.729C135.582 73.4582 135.701 73.1641 135.785 72.8467V71.3169C135.739 71.0841 135.667 70.8599 135.569 70.644C135.476 70.424 135.354 70.2293 135.201 70.0601C135.053 69.8866 134.869 69.749 134.649 69.6475C134.429 69.5459 134.171 69.4951 133.875 69.4951C133.553 69.4951 133.276 69.5628 133.043 69.6982C132.814 69.8294 132.626 70.0114 132.478 70.2441C132.334 70.4727 132.226 70.7393 132.154 71.0439C132.087 71.3444 132.053 71.666 132.053 72.0088ZM141.308 75.627C140.829 75.627 140.396 75.5465 140.006 75.3857C139.621 75.2207 139.289 74.9901 139.01 74.6938C138.735 74.3976 138.523 74.0464 138.375 73.6401C138.227 73.2339 138.153 72.7896 138.153 72.3071V72.0405C138.153 71.4819 138.235 70.9847 138.4 70.5488C138.565 70.1087 138.79 69.7363 139.073 69.4316C139.357 69.127 139.678 68.8963 140.038 68.7397C140.398 68.5832 140.77 68.5049 141.155 68.5049C141.646 68.5049 142.069 68.5895 142.425 68.7588C142.785 68.9281 143.079 69.165 143.307 69.4697C143.536 69.7702 143.705 70.1257 143.815 70.5361C143.925 70.9424 143.98 71.3867 143.98 71.8691V72.396H138.851V71.4375H142.806V71.3486C142.789 71.0439 142.725 70.7477 142.615 70.46C142.509 70.1722 142.34 69.9352 142.107 69.749C141.875 69.5628 141.557 69.4697 141.155 69.4697C140.889 69.4697 140.643 69.5269 140.419 69.6411C140.195 69.7511 140.002 69.9162 139.841 70.1362C139.681 70.3563 139.556 70.625 139.467 70.9424C139.378 71.2598 139.333 71.6258 139.333 72.0405V72.3071C139.333 72.633 139.378 72.9398 139.467 73.2275C139.56 73.5111 139.693 73.7607 139.867 73.9766C140.044 74.1924 140.258 74.3617 140.508 74.4844C140.762 74.6071 141.049 74.6685 141.371 74.6685C141.786 74.6685 142.137 74.5838 142.425 74.4146C142.713 74.2453 142.964 74.0189 143.18 73.7354L143.891 74.3003C143.743 74.5246 143.555 74.7383 143.326 74.9414C143.098 75.1445 142.816 75.3096 142.482 75.4365C142.152 75.5635 141.76 75.627 141.308 75.627Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M22.8563 96.9813L28.275 91.5438L27.4688 90.7375L22.8563 95.3687L20.625 93.1375L19.8188 93.9438L22.8563 96.9813ZM18.375 100.75C18.075 100.75 17.8125 100.637 17.5875 100.412C17.3625 100.187 17.25 99.925 17.25 99.625V88.375C17.25 88.075 17.3625 87.8125 17.5875 87.5875C17.8125 87.3625 18.075 87.25 18.375 87.25H29.625C29.925 87.25 30.1875 87.3625 30.4125 87.5875C30.6375 87.8125 30.75 88.075 30.75 88.375V99.625C30.75 99.925 30.6375 100.187 30.4125 100.412C30.1875 100.637 29.925 100.75 29.625 100.75H18.375Z",fill:"#4272F9"}),(0,o.createElement)("path",{d:"M44.1885 93.5869V94.1709C44.1885 94.8649 44.1017 95.487 43.9282 96.0371C43.7547 96.5872 43.505 97.0549 43.1792 97.4399C42.8534 97.825 42.4619 98.1191 42.0049 98.3223C41.5521 98.5254 41.0443 98.627 40.4814 98.627C39.9355 98.627 39.4341 98.5254 38.9771 98.3223C38.5243 98.1191 38.1307 97.825 37.7964 97.4399C37.4663 97.0549 37.2103 96.5872 37.0283 96.0371C36.8464 95.487 36.7554 94.8649 36.7554 94.1709V93.5869C36.7554 92.8929 36.8442 92.2729 37.022 91.7271C37.2039 91.1769 37.46 90.7093 37.79 90.3242C38.1201 89.9349 38.5116 89.6387 38.9644 89.4355C39.4214 89.2324 39.9229 89.1309 40.4688 89.1309C41.0316 89.1309 41.5394 89.2324 41.9922 89.4355C42.4492 89.6387 42.8407 89.9349 43.1665 90.3242C43.4966 90.7093 43.7484 91.1769 43.9219 91.7271C44.0996 92.2729 44.1885 92.8929 44.1885 93.5869ZM42.9761 94.1709V93.5742C42.9761 93.0241 42.9189 92.5374 42.8047 92.1143C42.6947 91.6911 42.5317 91.3356 42.3159 91.0479C42.1001 90.7601 41.8356 90.5422 41.5225 90.394C41.2135 90.2459 40.8623 90.1719 40.4688 90.1719C40.0879 90.1719 39.743 90.2459 39.4341 90.394C39.1294 90.5422 38.867 90.7601 38.647 91.0479C38.4312 91.3356 38.264 91.6911 38.1455 92.1143C38.027 92.5374 37.9678 93.0241 37.9678 93.5742V94.1709C37.9678 94.7253 38.027 95.2161 38.1455 95.6436C38.264 96.0667 38.4333 96.4243 38.6533 96.7163C38.8776 97.0041 39.1421 97.222 39.4468 97.3701C39.7557 97.5182 40.1006 97.5923 40.4814 97.5923C40.8792 97.5923 41.2326 97.5182 41.5415 97.3701C41.8504 97.222 42.1107 97.0041 42.3223 96.7163C42.5381 96.4243 42.701 96.0667 42.811 95.6436C42.9211 95.2161 42.9761 94.7253 42.9761 94.1709ZM47.1211 91.6318V98.5H45.9404V91.6318H47.1211ZM45.8516 89.8101C45.8516 89.6196 45.9087 89.4588 46.0229 89.3276C46.1414 89.1965 46.3149 89.1309 46.5435 89.1309C46.7677 89.1309 46.9391 89.1965 47.0576 89.3276C47.1803 89.4588 47.2417 89.6196 47.2417 89.8101C47.2417 89.992 47.1803 90.1486 47.0576 90.2798C46.9391 90.4067 46.7677 90.4702 46.5435 90.4702C46.3149 90.4702 46.1414 90.4067 46.0229 90.2798C45.9087 90.1486 45.8516 89.992 45.8516 89.8101ZM50.2822 88.75V98.5H49.1016V88.75H50.2822ZM57.1313 97.2812L58.896 91.6318H59.6704L59.5181 92.7554L57.7217 98.5H56.9663L57.1313 97.2812ZM55.9443 91.6318L57.4487 97.3447L57.5566 98.5H56.7632L54.77 91.6318H55.9443ZM61.3589 97.3003L62.7935 91.6318H63.9614L61.9683 98.5H61.1812L61.3589 97.3003ZM59.8418 91.6318L61.5684 97.186L61.7651 98.5H61.0161L59.1689 92.7427L59.0166 91.6318H59.8418ZM66.3418 92.7109V98.5H65.1675V91.6318H66.3101L66.3418 92.7109ZM68.4873 91.5938L68.481 92.6855C68.3836 92.6644 68.2905 92.6517 68.2017 92.6475C68.117 92.639 68.0197 92.6348 67.9097 92.6348C67.6388 92.6348 67.3997 92.6771 67.1924 92.7617C66.985 92.8464 66.8094 92.9648 66.6655 93.1172C66.5216 93.2695 66.4074 93.4515 66.3228 93.6631C66.2424 93.8704 66.1895 94.099 66.1641 94.3486L65.834 94.5391C65.834 94.1243 65.8742 93.735 65.9546 93.3711C66.0392 93.0072 66.1683 92.6855 66.3418 92.4062C66.5153 92.1227 66.7354 91.9027 67.002 91.7461C67.2728 91.5853 67.5944 91.5049 67.9668 91.5049C68.0514 91.5049 68.1488 91.5155 68.2588 91.5366C68.3688 91.5535 68.445 91.5726 68.4873 91.5938ZM73.3687 97.3257V93.79C73.3687 93.5192 73.3136 93.2843 73.2036 93.0854C73.0978 92.8823 72.937 92.7257 72.7212 92.6157C72.5054 92.5057 72.2388 92.4507 71.9214 92.4507C71.6252 92.4507 71.3649 92.5015 71.1406 92.603C70.9206 92.7046 70.7471 92.8379 70.6201 93.0029C70.4974 93.168 70.436 93.3457 70.436 93.5361H69.2617C69.2617 93.2907 69.3252 93.0474 69.4521 92.8062C69.5791 92.5649 69.7611 92.347 69.998 92.1523C70.2393 91.9535 70.527 91.7969 70.8613 91.6826C71.1999 91.5641 71.5765 91.5049 71.9912 91.5049C72.4906 91.5049 72.9307 91.5895 73.3115 91.7588C73.6966 91.9281 73.9971 92.1841 74.2129 92.5269C74.4329 92.8654 74.543 93.2907 74.543 93.8027V97.002C74.543 97.2305 74.562 97.4738 74.6001 97.7319C74.6424 97.9901 74.7038 98.2122 74.7842 98.3984V98.5H73.5591C73.4998 98.3646 73.4533 98.1847 73.4194 97.9604C73.3856 97.7319 73.3687 97.5203 73.3687 97.3257ZM73.5718 94.3359L73.5845 95.1611H72.3975C72.0632 95.1611 71.7648 95.1886 71.5024 95.2437C71.2401 95.2944 71.02 95.3727 70.8423 95.4785C70.6646 95.5843 70.5291 95.7176 70.436 95.8784C70.3429 96.035 70.2964 96.2191 70.2964 96.4307C70.2964 96.6465 70.3451 96.8433 70.4424 97.021C70.5397 97.1987 70.6857 97.3405 70.8804 97.4463C71.0793 97.5479 71.3226 97.5986 71.6104 97.5986C71.9701 97.5986 72.2874 97.5225 72.5625 97.3701C72.8376 97.2178 73.0555 97.0316 73.2163 96.8115C73.3813 96.5915 73.4702 96.3778 73.4829 96.1704L73.9844 96.7354C73.9548 96.9131 73.8743 97.1099 73.7432 97.3257C73.612 97.5415 73.4364 97.7489 73.2163 97.9478C73.0005 98.1424 72.7424 98.3053 72.4419 98.4365C72.1457 98.5635 71.8114 98.627 71.439 98.627C70.9735 98.627 70.5651 98.536 70.2139 98.354C69.8669 98.172 69.596 97.9287 69.4014 97.624C69.2109 97.3151 69.1157 96.9702 69.1157 96.5894C69.1157 96.2212 69.1877 95.8975 69.3315 95.6182C69.4754 95.3346 69.6828 95.0998 69.9536 94.9136C70.2244 94.7231 70.5503 94.5793 70.9312 94.4819C71.312 94.3846 71.7373 94.3359 72.207 94.3359H73.5718ZM77.5645 92.9521V101.141H76.3838V91.6318H77.4629L77.5645 92.9521ZM82.1919 95.0088V95.1421C82.1919 95.6414 82.1326 96.1048 82.0142 96.5322C81.8957 96.9554 81.7222 97.3236 81.4937 97.6367C81.2694 97.9499 80.9922 98.1932 80.6621 98.3667C80.332 98.5402 79.9533 98.627 79.5259 98.627C79.09 98.627 78.7049 98.555 78.3706 98.4111C78.0363 98.2673 77.7528 98.0578 77.52 97.7827C77.2873 97.5076 77.1011 97.1776 76.9614 96.7925C76.826 96.4074 76.7329 95.9736 76.6821 95.4912V94.7803C76.7329 94.2725 76.8281 93.8175 76.9678 93.4155C77.1074 93.0135 77.2915 92.6707 77.52 92.3872C77.7528 92.0994 78.0342 91.8815 78.3643 91.7334C78.6943 91.5811 79.0752 91.5049 79.5068 91.5049C79.9385 91.5049 80.3215 91.5895 80.6558 91.7588C80.9901 91.9238 81.2715 92.1608 81.5 92.4697C81.7285 92.7786 81.8999 93.1489 82.0142 93.5806C82.1326 94.008 82.1919 94.484 82.1919 95.0088ZM81.0112 95.1421V95.0088C81.0112 94.666 80.9753 94.3444 80.9033 94.0439C80.8314 93.7393 80.7192 93.4727 80.5669 93.2441C80.4188 93.0114 80.2284 92.8294 79.9956 92.6982C79.7629 92.5628 79.4857 92.4951 79.1641 92.4951C78.8678 92.4951 78.6097 92.5459 78.3896 92.6475C78.1738 92.749 77.9897 92.8866 77.8374 93.0601C77.6851 93.2293 77.5602 93.424 77.4629 93.644C77.3698 93.8599 77.3 94.0841 77.2534 94.3169V95.9609C77.3381 96.2572 77.4565 96.5365 77.6089 96.7988C77.7612 97.057 77.9644 97.2664 78.2183 97.4272C78.4722 97.5838 78.7917 97.6621 79.1768 97.6621C79.4941 97.6621 79.7671 97.5965 79.9956 97.4653C80.2284 97.3299 80.4188 97.1458 80.5669 96.9131C80.7192 96.6803 80.8314 96.4137 80.9033 96.1133C80.9753 95.8086 81.0112 95.4849 81.0112 95.1421Z",fill:"#0F172A"})),{__:et}=wp.i18n,{ToggleControl:Ct,SelectControl:tt}=wp.components,{jetEngineVersion:lt}=window.JetFormEditorData,rt=function(e){const{listingTypes:C,attributes:t,setAttributes:l,isSelected:r,editProps:{uniqKey:n,attrHelp:a}}=e,{field_options_from:i=""}=t;return Boolean(lt.length)&&["terms","posts","generate"].includes(i)&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)(Ct,{key:n("use_custom_template"),label:et("Use custom template","jet-form-builder"),checked:t.custom_item_template,help:a("custom_item_template"),onChange:e=>l({custom_item_template:e})}),t.custom_item_template&&(0,o.createElement)(tt,{key:n("SelectControl-custom_item_template_id"),label:et("Choose custom template","jet-form-builder"),value:t.custom_item_template_id,options:C,onChange:e=>l({custom_item_template_id:e})}))},{AdvancedFields:nt,ToolBarFields:ot,FieldControl:at,BlockName:it,BlockLabel:st,BlockDescription:ct,BlockAdvancedValue:ut}=JetFBComponents,{useUniqueNameOnDuplicate:dt}=JetFBHooks,{__:mt}=wp.i18n,{InspectorControls:pt,useBlockProps:ft,BlockSettingsMenuControls:Vt}=wp.blockEditor,{SVG:gt,Path:bt}=wp.primitives,{PanelBody:_t,TextControl:ht,ToolbarButton:Ht}=wp.components,yt=window.JetFormOptionFieldData,Mt=JSON.parse('{"apiVersion":3,"name":"jet-forms/checkbox-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","checkbox"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Checkbox Field","description":"","icon":"\\n\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"custom_option":{"type":"object","default":{"allow":false,"label":"+ Add New"}},"custom_item_template":{"type":"boolean","default":false},"custom_item_template_id":{"type":"string","default":""},"generator_numbers_min":{"type":"number","default":""},"generator_numbers_max":{"type":"number","default":""},"generator_numbers_step":{"type":"number","default":""},"glossary_id":{"type":"string","default":""},"field_options_from":{"type":"string","default":"manual_input"},"field_options":{"type":"array","default":[]},"field_options_post_type":{"type":"string","default":"post"},"field_options_tax":{"type":"string","default":"category"},"field_options_key":{"type":"string","default":""},"generator_function":{"type":"string","default":""},"generator_field":{"type":"string","default":""},"generator_args":{"type":"object","default":{}},"generator_auto_update":{"type":"boolean","default":false},"generator_listen_field":{"type":["string","array"],"default":""},"generator_require_all_filled":{"type":"boolean","default":false},"generator_update_on_button":{"type":"string","default":""},"generator_update_on_button_class":{"type":"string","default":""},"generator_cache_timeout":{"type":"number","default":60},"calculated_value_from_key":{"type":"string","default":""},"value_from_key":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewStyle":"jet-fb-option-field-checkbox","style":"jet-fb-option-field-checkbox"}'),{__:Zt}=wp.i18n,{createBlock:vt}=wp.blocks,{name:wt,icon:Lt}=Mt,Et={icon:(0,o.createElement)("span",{dangerouslySetInnerHTML:{__html:Lt}}),description:Zt("Make a list of options for the users to choose several variants \nwith a multi-optional field. Allow to pick as many variants as the visitor needs.","jet-form-builder"),edit:function(e){const C=ft();dt();const{isSelected:t,editProps:{uniqKey:l},attributes:r,setAttributes:n}=e;return r.isPreview?(0,o.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},QC):(0,o.createElement)(o.Fragment,null,t&&(0,o.createElement)(Vt,null),(0,o.createElement)(ot,null,(0,o.createElement)(Ht,{icon:r.custom_option.allow?(0,o.createElement)("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,o.createElement)("rect",{width:"32",height:"32",rx:"2",fill:"#101517"}),(0,o.createElement)("path",{d:"M30 16.796L18.044 28.8813L14 30L15.156 26.0867L27.1107 14L30 16.796Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M12 8H6V21H17.3398L15.3398 23H6L5.7959 22.9893C4.85435 22.8938 4.1062 22.1457 4.01074 21.2041L4 21V8C4 6.89543 4.89543 6 6 6H12V8Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M21 17.3398L19 19.3398V15H21V17.3398Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M19 3H21V6H24V8H21V11H19V8H16V6H19V3Z",fill:"currentColor"})):(0,o.createElement)("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,o.createElement)("path",{d:"M30 16.796L18.044 28.8813L14 30L15.156 26.0867L27.1107 14L30 16.796Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M12 8H6V21H17.3398L15.3398 23H6L5.7959 22.9893C4.85435 22.8938 4.1062 22.1457 4.01074 21.2041L4 21V8C4 6.89543 4.89543 6 6 6H12V8Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M21 17.3398L19 19.3398V15H21V17.3398Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M19 3H21V6H24V8H21V11H19V8H16V6H19V3Z",fill:"currentColor"})),title:r.custom_option.allow?mt("Disable custom options","jet-form-builder"):mt("Enable custom options","jet-form-builder"),onClick:()=>n({custom_option:{...r.custom_option,allow:!r.custom_option.allow}}),isActive:r.custom_option.allow})),(0,o.createElement)(pt,{key:l("InspectorControls")},(0,o.createElement)(_t,{title:mt("General","jet-form-builder")},(0,o.createElement)(st,null),(0,o.createElement)(it,null),(0,o.createElement)(ct,null)),(0,o.createElement)(_t,{title:mt("Value","jet-form-builder")},(0,o.createElement)(ut,null),r.custom_option.allow&&(0,o.createElement)(o.Fragment,null,(0,o.createElement)("hr",null),(0,o.createElement)(ht,{label:mt("Button label","jet-form-builder"),onChange:e=>n({custom_option:{...r.custom_option,label:e}}),help:mt("For custom option","jet-form-builder"),value:r.custom_option.label}))),(0,o.createElement)(nt,null)),(0,o.createElement)("div",{...C,key:l("viewBlock")},(0,o.createElement)(b,{key:l("SelectRadioCheckPlaceholder"),scriptData:yt,...e}),(0,o.createElement)(LC,{...e},(0,o.createElement)(rt,{listingTypes:yt.listings_list,...e}),(0,o.createElement)(at,{type:"custom_settings",key:l("customSettingsFields"),...e}))))},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>vt("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/radio-field","jet-forms/select-field","jet-forms/text-field"],transform:e=>(e.custom_option=!!e.custom_option?.allow,vt(wt,{...e})),priority:0}]}},kt=(0,o.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,o.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,o.createElement)("path",{d:"M19.8262 51.0967H17.167V50.0234H19.8262C20.3411 50.0234 20.7581 49.9414 21.0771 49.7773C21.3962 49.6133 21.6286 49.3854 21.7744 49.0938C21.9248 48.8021 22 48.4694 22 48.0957C22 47.7539 21.9248 47.4326 21.7744 47.1318C21.6286 46.8311 21.3962 46.5895 21.0771 46.4072C20.7581 46.2204 20.3411 46.127 19.8262 46.127H17.4746V55H16.1553V45.0469H19.8262C20.5781 45.0469 21.2139 45.1768 21.7334 45.4365C22.2529 45.6963 22.6471 46.0563 22.916 46.5166C23.1849 46.9723 23.3193 47.4941 23.3193 48.082C23.3193 48.7201 23.1849 49.2646 22.916 49.7158C22.6471 50.167 22.2529 50.5111 21.7334 50.748C21.2139 50.9805 20.5781 51.0967 19.8262 51.0967ZM26.0605 48.7656V55H24.7959V47.6035H26.0264L26.0605 48.7656ZM28.3711 47.5625L28.3643 48.7383C28.2594 48.7155 28.1592 48.7018 28.0635 48.6973C27.9723 48.6882 27.8675 48.6836 27.749 48.6836C27.4574 48.6836 27.1999 48.7292 26.9766 48.8203C26.7533 48.9115 26.5641 49.0391 26.4092 49.2031C26.2542 49.3672 26.1312 49.5632 26.04 49.791C25.9535 50.0143 25.8965 50.2604 25.8691 50.5293L25.5137 50.7344C25.5137 50.2878 25.557 49.8685 25.6436 49.4766C25.7347 49.0846 25.8737 48.7383 26.0605 48.4375C26.2474 48.1322 26.4844 47.8952 26.7715 47.7266C27.0632 47.5534 27.4095 47.4668 27.8105 47.4668C27.9017 47.4668 28.0065 47.4782 28.125 47.501C28.2435 47.5192 28.3255 47.5397 28.3711 47.5625ZM32.4727 55.1367C31.9577 55.1367 31.4906 55.0501 31.0713 54.877C30.6566 54.6992 30.2988 54.4508 29.998 54.1318C29.7018 53.8128 29.474 53.4346 29.3145 52.9971C29.1549 52.5596 29.0752 52.0811 29.0752 51.5615V51.2744C29.0752 50.6729 29.1641 50.1374 29.3418 49.668C29.5195 49.194 29.7611 48.793 30.0664 48.4648C30.3717 48.1367 30.7181 47.8883 31.1055 47.7197C31.4928 47.5511 31.8939 47.4668 32.3086 47.4668C32.8372 47.4668 33.293 47.5579 33.6758 47.7402C34.0632 47.9225 34.3799 48.1777 34.626 48.5059C34.8721 48.8294 35.0544 49.2122 35.1729 49.6543C35.2913 50.0918 35.3506 50.5703 35.3506 51.0898V51.6572H29.8271V50.625H34.0859V50.5293C34.0677 50.2012 33.9993 49.8822 33.8809 49.5723C33.7669 49.2624 33.5846 49.0072 33.334 48.8066C33.0833 48.6061 32.7415 48.5059 32.3086 48.5059C32.0215 48.5059 31.7572 48.5674 31.5156 48.6904C31.2741 48.8089 31.0667 48.9867 30.8936 49.2236C30.7204 49.4606 30.5859 49.75 30.4902 50.0918C30.3945 50.4336 30.3467 50.8278 30.3467 51.2744V51.5615C30.3467 51.9124 30.3945 52.2428 30.4902 52.5527C30.5905 52.8581 30.734 53.127 30.9209 53.3594C31.1123 53.5918 31.3424 53.7741 31.6113 53.9062C31.8848 54.0384 32.1947 54.1045 32.541 54.1045C32.9876 54.1045 33.3659 54.0133 33.6758 53.8311C33.9857 53.6488 34.2568 53.4049 34.4893 53.0996L35.2549 53.708C35.0954 53.9495 34.8926 54.1797 34.6465 54.3984C34.4004 54.6172 34.0973 54.7949 33.7373 54.9316C33.3818 55.0684 32.9603 55.1367 32.4727 55.1367ZM38.7139 55H37.4492V46.8242C37.4492 46.291 37.5449 45.8421 37.7363 45.4775C37.9323 45.1084 38.2126 44.8304 38.5771 44.6436C38.9417 44.4521 39.3747 44.3564 39.876 44.3564C40.0218 44.3564 40.1676 44.3656 40.3135 44.3838C40.4639 44.402 40.6097 44.4294 40.751 44.4658L40.6826 45.498C40.5869 45.4753 40.4775 45.4593 40.3545 45.4502C40.236 45.4411 40.1175 45.4365 39.999 45.4365C39.7301 45.4365 39.4977 45.4912 39.3018 45.6006C39.1104 45.7054 38.9645 45.8604 38.8643 46.0654C38.764 46.2705 38.7139 46.5234 38.7139 46.8242V55ZM40.2861 47.6035V48.5742H36.2803V47.6035H40.2861ZM43.5811 55H42.3164V46.8242C42.3164 46.291 42.4121 45.8421 42.6035 45.4775C42.7995 45.1084 43.0798 44.8304 43.4443 44.6436C43.8089 44.4521 44.2419 44.3564 44.7432 44.3564C44.889 44.3564 45.0348 44.3656 45.1807 44.3838C45.3311 44.402 45.4769 44.4294 45.6182 44.4658L45.5498 45.498C45.4541 45.4753 45.3447 45.4593 45.2217 45.4502C45.1032 45.4411 44.9847 45.4365 44.8662 45.4365C44.5973 45.4365 44.3649 45.4912 44.1689 45.6006C43.9775 45.7054 43.8317 45.8604 43.7314 46.0654C43.6312 46.2705 43.5811 46.5234 43.5811 46.8242V55ZM45.1533 47.6035V48.5742H41.1475V47.6035H45.1533ZM49.4668 55.1367C48.9518 55.1367 48.4847 55.0501 48.0654 54.877C47.6507 54.6992 47.293 54.4508 46.9922 54.1318C46.696 53.8128 46.4681 53.4346 46.3086 52.9971C46.1491 52.5596 46.0693 52.0811 46.0693 51.5615V51.2744C46.0693 50.6729 46.1582 50.1374 46.3359 49.668C46.5137 49.194 46.7552 48.793 47.0605 48.4648C47.3659 48.1367 47.7122 47.8883 48.0996 47.7197C48.487 47.5511 48.888 47.4668 49.3027 47.4668C49.8314 47.4668 50.2871 47.5579 50.6699 47.7402C51.0573 47.9225 51.374 48.1777 51.6201 48.5059C51.8662 48.8294 52.0485 49.2122 52.167 49.6543C52.2855 50.0918 52.3447 50.5703 52.3447 51.0898V51.6572H46.8213V50.625H51.0801V50.5293C51.0618 50.2012 50.9935 49.8822 50.875 49.5723C50.7611 49.2624 50.5788 49.0072 50.3281 48.8066C50.0775 48.6061 49.7357 48.5059 49.3027 48.5059C49.0156 48.5059 48.7513 48.5674 48.5098 48.6904C48.2682 48.8089 48.0609 48.9867 47.8877 49.2236C47.7145 49.4606 47.5801 49.75 47.4844 50.0918C47.3887 50.4336 47.3408 50.8278 47.3408 51.2744V51.5615C47.3408 51.9124 47.3887 52.2428 47.4844 52.5527C47.5846 52.8581 47.7282 53.127 47.915 53.3594C48.1064 53.5918 48.3366 53.7741 48.6055 53.9062C48.8789 54.0384 49.1888 54.1045 49.5352 54.1045C49.9818 54.1045 50.36 54.0133 50.6699 53.8311C50.9798 53.6488 51.251 53.4049 51.4834 53.0996L52.249 53.708C52.0895 53.9495 51.8867 54.1797 51.6406 54.3984C51.3945 54.6172 51.0915 54.7949 50.7314 54.9316C50.376 55.0684 49.9544 55.1367 49.4668 55.1367ZM55.0859 48.7656V55H53.8213V47.6035H55.0518L55.0859 48.7656ZM57.3965 47.5625L57.3896 48.7383C57.2848 48.7155 57.1846 48.7018 57.0889 48.6973C56.9977 48.6882 56.8929 48.6836 56.7744 48.6836C56.4827 48.6836 56.2253 48.7292 56.002 48.8203C55.7786 48.9115 55.5895 49.0391 55.4346 49.2031C55.2796 49.3672 55.1566 49.5632 55.0654 49.791C54.9788 50.0143 54.9219 50.2604 54.8945 50.5293L54.5391 50.7344C54.5391 50.2878 54.5824 49.8685 54.6689 49.4766C54.7601 49.0846 54.8991 48.7383 55.0859 48.4375C55.2728 48.1322 55.5098 47.8952 55.7969 47.7266C56.0885 47.5534 56.4349 47.4668 56.8359 47.4668C56.9271 47.4668 57.0319 47.4782 57.1504 47.501C57.2689 47.5192 57.3509 47.5397 57.3965 47.5625ZM61.498 55.1367C60.9831 55.1367 60.516 55.0501 60.0967 54.877C59.682 54.6992 59.3242 54.4508 59.0234 54.1318C58.7272 53.8128 58.4993 53.4346 58.3398 52.9971C58.1803 52.5596 58.1006 52.0811 58.1006 51.5615V51.2744C58.1006 50.6729 58.1895 50.1374 58.3672 49.668C58.5449 49.194 58.7865 48.793 59.0918 48.4648C59.3971 48.1367 59.7435 47.8883 60.1309 47.7197C60.5182 47.5511 60.9193 47.4668 61.334 47.4668C61.8626 47.4668 62.3184 47.5579 62.7012 47.7402C63.0885 47.9225 63.4053 48.1777 63.6514 48.5059C63.8975 48.8294 64.0798 49.2122 64.1982 49.6543C64.3167 50.0918 64.376 50.5703 64.376 51.0898V51.6572H58.8525V50.625H63.1113V50.5293C63.0931 50.2012 63.0247 49.8822 62.9062 49.5723C62.7923 49.2624 62.61 49.0072 62.3594 48.8066C62.1087 48.6061 61.7669 48.5059 61.334 48.5059C61.0469 48.5059 60.7826 48.5674 60.541 48.6904C60.2995 48.8089 60.0921 48.9867 59.9189 49.2236C59.7458 49.4606 59.6113 49.75 59.5156 50.0918C59.4199 50.4336 59.3721 50.8278 59.3721 51.2744V51.5615C59.3721 51.9124 59.4199 52.2428 59.5156 52.5527C59.6159 52.8581 59.7594 53.127 59.9463 53.3594C60.1377 53.5918 60.3678 53.7741 60.6367 53.9062C60.9102 54.0384 61.2201 54.1045 61.5664 54.1045C62.013 54.1045 62.3913 54.0133 62.7012 53.8311C63.0111 53.6488 63.2822 53.4049 63.5146 53.0996L64.2803 53.708C64.1208 53.9495 63.918 54.1797 63.6719 54.3984C63.4258 54.6172 63.1227 54.7949 62.7627 54.9316C62.4072 55.0684 61.9857 55.1367 61.498 55.1367ZM70.5146 53.5645V44.5H71.7861V55H70.624L70.5146 53.5645ZM65.5381 51.3838V51.2402C65.5381 50.6751 65.6064 50.1624 65.7432 49.7021C65.8844 49.2373 66.0827 48.8385 66.3379 48.5059C66.5977 48.1732 66.9053 47.918 67.2607 47.7402C67.6208 47.5579 68.0218 47.4668 68.4639 47.4668C68.9287 47.4668 69.3343 47.5488 69.6807 47.7129C70.0316 47.8724 70.3278 48.1071 70.5693 48.417C70.8154 48.7223 71.0091 49.0915 71.1504 49.5244C71.2917 49.9574 71.3896 50.4473 71.4443 50.9941V51.623C71.3942 52.1654 71.2962 52.653 71.1504 53.0859C71.0091 53.5189 70.8154 53.888 70.5693 54.1934C70.3278 54.4987 70.0316 54.7334 69.6807 54.8975C69.3298 55.057 68.9196 55.1367 68.4502 55.1367C68.0173 55.1367 67.6208 55.0433 67.2607 54.8564C66.9053 54.6696 66.5977 54.4076 66.3379 54.0703C66.0827 53.7331 65.8844 53.3366 65.7432 52.8809C65.6064 52.4206 65.5381 51.9215 65.5381 51.3838ZM66.8096 51.2402V51.3838C66.8096 51.7529 66.846 52.0993 66.9189 52.4229C66.9964 52.7464 67.1149 53.0312 67.2744 53.2773C67.4339 53.5234 67.6367 53.7171 67.8828 53.8584C68.1289 53.9951 68.4229 54.0635 68.7646 54.0635C69.1839 54.0635 69.528 53.9746 69.7969 53.7969C70.0703 53.6191 70.2891 53.3844 70.4531 53.0928C70.6172 52.8011 70.7448 52.4844 70.8359 52.1426V50.4951C70.7812 50.2445 70.7015 50.0029 70.5967 49.7705C70.4964 49.5335 70.3643 49.3239 70.2002 49.1416C70.0407 48.9548 69.8424 48.8066 69.6055 48.6973C69.373 48.5879 69.0973 48.5332 68.7783 48.5332C68.432 48.5332 68.1335 48.6061 67.8828 48.752C67.6367 48.8932 67.4339 49.0892 67.2744 49.3398C67.1149 49.5859 66.9964 49.873 66.9189 50.2012C66.846 50.5247 66.8096 50.8711 66.8096 51.2402ZM78.4854 49.0732V55H77.2139V47.6035H78.417L78.4854 49.0732ZM78.2256 51.0215L77.6377 51.001C77.6423 50.4951 77.7083 50.028 77.8359 49.5996C77.9635 49.1667 78.1527 48.7907 78.4033 48.4717C78.654 48.1527 78.9661 47.9066 79.3398 47.7334C79.7135 47.5557 80.1465 47.4668 80.6387 47.4668C80.985 47.4668 81.304 47.5169 81.5957 47.6172C81.8874 47.7129 82.1403 47.8656 82.3545 48.0752C82.5687 48.2848 82.735 48.5537 82.8535 48.8818C82.972 49.21 83.0312 49.6064 83.0312 50.0713V55H81.7666V50.1328C81.7666 49.7454 81.7005 49.4355 81.5684 49.2031C81.4408 48.9707 81.2585 48.8021 81.0215 48.6973C80.7845 48.5879 80.5065 48.5332 80.1875 48.5332C79.8138 48.5332 79.5016 48.5993 79.251 48.7314C79.0003 48.8636 78.7998 49.0459 78.6494 49.2783C78.499 49.5107 78.3896 49.7773 78.3213 50.0781C78.2575 50.3743 78.2256 50.6888 78.2256 51.0215ZM83.0176 50.3242L82.1699 50.584C82.1745 50.1784 82.2406 49.7887 82.3682 49.415C82.5003 49.0413 82.6895 48.7087 82.9355 48.417C83.1862 48.1253 83.4938 47.8952 83.8584 47.7266C84.223 47.5534 84.64 47.4668 85.1094 47.4668C85.5059 47.4668 85.8568 47.5192 86.1621 47.624C86.472 47.7288 86.7318 47.8906 86.9414 48.1094C87.1556 48.3236 87.3174 48.5993 87.4268 48.9365C87.5361 49.2738 87.5908 49.6748 87.5908 50.1396V55H86.3193V50.126C86.3193 49.7113 86.2533 49.39 86.1211 49.1621C85.9935 48.9297 85.8112 48.7679 85.5742 48.6768C85.3418 48.5811 85.0638 48.5332 84.7402 48.5332C84.4622 48.5332 84.2161 48.5811 84.002 48.6768C83.7878 48.7725 83.6077 48.9046 83.4619 49.0732C83.3161 49.2373 83.2044 49.4264 83.127 49.6406C83.054 49.8548 83.0176 50.0827 83.0176 50.3242ZM92.5742 55.1367C92.0592 55.1367 91.5921 55.0501 91.1729 54.877C90.7581 54.6992 90.4004 54.4508 90.0996 54.1318C89.8034 53.8128 89.5755 53.4346 89.416 52.9971C89.2565 52.5596 89.1768 52.0811 89.1768 51.5615V51.2744C89.1768 50.6729 89.2656 50.1374 89.4434 49.668C89.6211 49.194 89.8626 48.793 90.168 48.4648C90.4733 48.1367 90.8197 47.8883 91.207 47.7197C91.5944 47.5511 91.9954 47.4668 92.4102 47.4668C92.9388 47.4668 93.3945 47.5579 93.7773 47.7402C94.1647 47.9225 94.4814 48.1777 94.7275 48.5059C94.9736 48.8294 95.1559 49.2122 95.2744 49.6543C95.3929 50.0918 95.4521 50.5703 95.4521 51.0898V51.6572H89.9287V50.625H94.1875V50.5293C94.1693 50.2012 94.1009 49.8822 93.9824 49.5723C93.8685 49.2624 93.6862 49.0072 93.4355 48.8066C93.1849 48.6061 92.8431 48.5059 92.4102 48.5059C92.123 48.5059 91.8587 48.5674 91.6172 48.6904C91.3757 48.8089 91.1683 48.9867 90.9951 49.2236C90.8219 49.4606 90.6875 49.75 90.5918 50.0918C90.4961 50.4336 90.4482 50.8278 90.4482 51.2744V51.5615C90.4482 51.9124 90.4961 52.2428 90.5918 52.5527C90.6921 52.8581 90.8356 53.127 91.0225 53.3594C91.2139 53.5918 91.444 53.7741 91.7129 53.9062C91.9863 54.0384 92.2962 54.1045 92.6426 54.1045C93.0892 54.1045 93.4674 54.0133 93.7773 53.8311C94.0872 53.6488 94.3584 53.4049 94.5908 53.0996L95.3564 53.708C95.1969 53.9495 94.9941 54.1797 94.748 54.3984C94.502 54.6172 94.1989 54.7949 93.8389 54.9316C93.4834 55.0684 93.0618 55.1367 92.5742 55.1367ZM100.025 47.6035V48.5742H96.0264V47.6035H100.025ZM97.3799 45.8057H98.6445V53.168C98.6445 53.4186 98.6833 53.6077 98.7607 53.7354C98.8382 53.863 98.9385 53.9473 99.0615 53.9883C99.1846 54.0293 99.3167 54.0498 99.458 54.0498C99.5628 54.0498 99.6722 54.0407 99.7861 54.0225C99.9046 53.9997 99.9935 53.9814 100.053 53.9678L100.06 55C99.9593 55.0319 99.8271 55.0615 99.6631 55.0889C99.5036 55.1208 99.3099 55.1367 99.082 55.1367C98.7721 55.1367 98.4873 55.0752 98.2275 54.9521C97.9678 54.8291 97.7604 54.624 97.6055 54.3369C97.4551 54.0452 97.3799 53.6533 97.3799 53.1611V45.8057ZM102.773 44.5V55H101.509V44.5H102.773ZM102.473 51.0215L101.946 51.001C101.951 50.4951 102.026 50.028 102.172 49.5996C102.318 49.1667 102.523 48.7907 102.787 48.4717C103.051 48.1527 103.366 47.9066 103.73 47.7334C104.1 47.5557 104.507 47.4668 104.954 47.4668C105.319 47.4668 105.647 47.5169 105.938 47.6172C106.23 47.7129 106.479 47.8678 106.684 48.082C106.893 48.2962 107.053 48.5742 107.162 48.916C107.271 49.2533 107.326 49.6657 107.326 50.1533V55H106.055V50.1396C106.055 49.7523 105.998 49.4424 105.884 49.21C105.77 48.973 105.604 48.8021 105.385 48.6973C105.166 48.5879 104.897 48.5332 104.578 48.5332C104.264 48.5332 103.977 48.5993 103.717 48.7314C103.462 48.8636 103.241 49.0459 103.054 49.2783C102.871 49.5107 102.728 49.7773 102.623 50.0781C102.523 50.3743 102.473 50.6888 102.473 51.0215ZM108.885 51.3838V51.2266C108.885 50.6934 108.962 50.1989 109.117 49.7432C109.272 49.2829 109.495 48.8841 109.787 48.5469C110.079 48.2051 110.432 47.9408 110.847 47.7539C111.261 47.5625 111.726 47.4668 112.241 47.4668C112.761 47.4668 113.228 47.5625 113.643 47.7539C114.062 47.9408 114.417 48.2051 114.709 48.5469C115.005 48.8841 115.231 49.2829 115.386 49.7432C115.541 50.1989 115.618 50.6934 115.618 51.2266V51.3838C115.618 51.917 115.541 52.4115 115.386 52.8672C115.231 53.3229 115.005 53.7217 114.709 54.0635C114.417 54.4007 114.064 54.665 113.649 54.8564C113.239 55.0433 112.774 55.1367 112.255 55.1367C111.735 55.1367 111.268 55.0433 110.854 54.8564C110.439 54.665 110.083 54.4007 109.787 54.0635C109.495 53.7217 109.272 53.3229 109.117 52.8672C108.962 52.4115 108.885 51.917 108.885 51.3838ZM110.149 51.2266V51.3838C110.149 51.7529 110.193 52.1016 110.279 52.4297C110.366 52.7533 110.496 53.0404 110.669 53.291C110.847 53.5417 111.068 53.7399 111.332 53.8857C111.596 54.027 111.904 54.0977 112.255 54.0977C112.601 54.0977 112.904 54.027 113.164 53.8857C113.428 53.7399 113.647 53.5417 113.82 53.291C113.993 53.0404 114.123 52.7533 114.21 52.4297C114.301 52.1016 114.347 51.7529 114.347 51.3838V51.2266C114.347 50.862 114.301 50.5179 114.21 50.1943C114.123 49.8662 113.991 49.5768 113.813 49.3262C113.64 49.071 113.422 48.8704 113.157 48.7246C112.897 48.5788 112.592 48.5059 112.241 48.5059C111.895 48.5059 111.59 48.5788 111.325 48.7246C111.065 48.8704 110.847 49.071 110.669 49.3262C110.496 49.5768 110.366 49.8662 110.279 50.1943C110.193 50.5179 110.149 50.862 110.149 51.2266ZM121.866 53.5645V44.5H123.138V55H121.976L121.866 53.5645ZM116.89 51.3838V51.2402C116.89 50.6751 116.958 50.1624 117.095 49.7021C117.236 49.2373 117.434 48.8385 117.689 48.5059C117.949 48.1732 118.257 47.918 118.612 47.7402C118.972 47.5579 119.373 47.4668 119.815 47.4668C120.28 47.4668 120.686 47.5488 121.032 47.7129C121.383 47.8724 121.679 48.1071 121.921 48.417C122.167 48.7223 122.361 49.0915 122.502 49.5244C122.643 49.9574 122.741 50.4473 122.796 50.9941V51.623C122.746 52.1654 122.648 52.653 122.502 53.0859C122.361 53.5189 122.167 53.888 121.921 54.1934C121.679 54.4987 121.383 54.7334 121.032 54.8975C120.681 55.057 120.271 55.1367 119.802 55.1367C119.369 55.1367 118.972 55.0433 118.612 54.8564C118.257 54.6696 117.949 54.4076 117.689 54.0703C117.434 53.7331 117.236 53.3366 117.095 52.8809C116.958 52.4206 116.89 51.9215 116.89 51.3838ZM118.161 51.2402V51.3838C118.161 51.7529 118.198 52.0993 118.271 52.4229C118.348 52.7464 118.466 53.0312 118.626 53.2773C118.785 53.5234 118.988 53.7171 119.234 53.8584C119.48 53.9951 119.774 54.0635 120.116 54.0635C120.535 54.0635 120.88 53.9746 121.148 53.7969C121.422 53.6191 121.641 53.3844 121.805 53.0928C121.969 52.8011 122.096 52.4844 122.188 52.1426V50.4951C122.133 50.2445 122.053 50.0029 121.948 49.7705C121.848 49.5335 121.716 49.3239 121.552 49.1416C121.392 48.9548 121.194 48.8066 120.957 48.6973C120.725 48.5879 120.449 48.5332 120.13 48.5332C119.784 48.5332 119.485 48.6061 119.234 48.752C118.988 48.8932 118.785 49.0892 118.626 49.3398C118.466 49.5859 118.348 49.873 118.271 50.2012C118.198 50.5247 118.161 50.8711 118.161 51.2402ZM128.244 51.3838V51.2266C128.244 50.6934 128.322 50.1989 128.477 49.7432C128.632 49.2829 128.855 48.8841 129.146 48.5469C129.438 48.2051 129.791 47.9408 130.206 47.7539C130.621 47.5625 131.086 47.4668 131.601 47.4668C132.12 47.4668 132.587 47.5625 133.002 47.7539C133.421 47.9408 133.777 48.2051 134.068 48.5469C134.365 48.8841 134.59 49.2829 134.745 49.7432C134.9 50.1989 134.978 50.6934 134.978 51.2266V51.3838C134.978 51.917 134.9 52.4115 134.745 52.8672C134.59 53.3229 134.365 53.7217 134.068 54.0635C133.777 54.4007 133.424 54.665 133.009 54.8564C132.599 55.0433 132.134 55.1367 131.614 55.1367C131.095 55.1367 130.628 55.0433 130.213 54.8564C129.798 54.665 129.443 54.4007 129.146 54.0635C128.855 53.7217 128.632 53.3229 128.477 52.8672C128.322 52.4115 128.244 51.917 128.244 51.3838ZM129.509 51.2266V51.3838C129.509 51.7529 129.552 52.1016 129.639 52.4297C129.725 52.7533 129.855 53.0404 130.028 53.291C130.206 53.5417 130.427 53.7399 130.691 53.8857C130.956 54.027 131.263 54.0977 131.614 54.0977C131.961 54.0977 132.264 54.027 132.523 53.8857C132.788 53.7399 133.007 53.5417 133.18 53.291C133.353 53.0404 133.483 52.7533 133.569 52.4297C133.66 52.1016 133.706 51.7529 133.706 51.3838V51.2266C133.706 50.862 133.66 50.5179 133.569 50.1943C133.483 49.8662 133.351 49.5768 133.173 49.3262C133 49.071 132.781 48.8704 132.517 48.7246C132.257 48.5788 131.951 48.5059 131.601 48.5059C131.254 48.5059 130.949 48.5788 130.685 48.7246C130.425 48.8704 130.206 49.071 130.028 49.3262C129.855 49.5768 129.725 49.8662 129.639 50.1943C129.552 50.5179 129.509 50.862 129.509 51.2266ZM138.45 55H137.186V46.8242C137.186 46.291 137.281 45.8421 137.473 45.4775C137.669 45.1084 137.949 44.8304 138.313 44.6436C138.678 44.4521 139.111 44.3564 139.612 44.3564C139.758 44.3564 139.904 44.3656 140.05 44.3838C140.2 44.402 140.346 44.4294 140.487 44.4658L140.419 45.498C140.323 45.4753 140.214 45.4593 140.091 45.4502C139.972 45.4411 139.854 45.4365 139.735 45.4365C139.466 45.4365 139.234 45.4912 139.038 45.6006C138.847 45.7054 138.701 45.8604 138.601 46.0654C138.5 46.2705 138.45 46.5234 138.45 46.8242V55ZM140.022 47.6035V48.5742H136.017V47.6035H140.022ZM147.863 54.0977C148.164 54.0977 148.442 54.0361 148.697 53.9131C148.952 53.79 149.162 53.6214 149.326 53.4072C149.49 53.1885 149.584 52.9401 149.606 52.6621H150.81C150.787 53.0996 150.639 53.5075 150.365 53.8857C150.096 54.2594 149.743 54.5625 149.306 54.7949C148.868 55.0228 148.387 55.1367 147.863 55.1367C147.307 55.1367 146.822 55.0387 146.407 54.8428C145.997 54.6468 145.655 54.3779 145.382 54.0361C145.113 53.6943 144.91 53.3024 144.773 52.8604C144.641 52.4137 144.575 51.9421 144.575 51.4453V51.1582C144.575 50.6615 144.641 50.1921 144.773 49.75C144.91 49.3034 145.113 48.9092 145.382 48.5674C145.655 48.2256 145.997 47.9567 146.407 47.7607C146.822 47.5648 147.307 47.4668 147.863 47.4668C148.442 47.4668 148.948 47.5853 149.381 47.8223C149.814 48.0547 150.153 48.3737 150.399 48.7793C150.65 49.1803 150.787 49.6361 150.81 50.1465H149.606C149.584 49.8411 149.497 49.5654 149.347 49.3193C149.201 49.0732 149 48.8773 148.745 48.7314C148.494 48.5811 148.201 48.5059 147.863 48.5059C147.476 48.5059 147.15 48.5833 146.886 48.7383C146.626 48.8887 146.419 49.0938 146.264 49.3535C146.113 49.6087 146.004 49.8936 145.936 50.208C145.872 50.5179 145.84 50.8346 145.84 51.1582V51.4453C145.84 51.7689 145.872 52.0879 145.936 52.4023C145.999 52.7168 146.106 53.0016 146.257 53.2568C146.412 53.512 146.619 53.7171 146.879 53.8721C147.143 54.0225 147.471 54.0977 147.863 54.0977ZM151.896 51.3838V51.2266C151.896 50.6934 151.974 50.1989 152.129 49.7432C152.284 49.2829 152.507 48.8841 152.799 48.5469C153.09 48.2051 153.444 47.9408 153.858 47.7539C154.273 47.5625 154.738 47.4668 155.253 47.4668C155.772 47.4668 156.24 47.5625 156.654 47.7539C157.074 47.9408 157.429 48.2051 157.721 48.5469C158.017 48.8841 158.243 49.2829 158.397 49.7432C158.552 50.1989 158.63 50.6934 158.63 51.2266V51.3838C158.63 51.917 158.552 52.4115 158.397 52.8672C158.243 53.3229 158.017 53.7217 157.721 54.0635C157.429 54.4007 157.076 54.665 156.661 54.8564C156.251 55.0433 155.786 55.1367 155.267 55.1367C154.747 55.1367 154.28 55.0433 153.865 54.8564C153.451 54.665 153.095 54.4007 152.799 54.0635C152.507 53.7217 152.284 53.3229 152.129 52.8672C151.974 52.4115 151.896 51.917 151.896 51.3838ZM153.161 51.2266V51.3838C153.161 51.7529 153.204 52.1016 153.291 52.4297C153.378 52.7533 153.507 53.0404 153.681 53.291C153.858 53.5417 154.079 53.7399 154.344 53.8857C154.608 54.027 154.916 54.0977 155.267 54.0977C155.613 54.0977 155.916 54.027 156.176 53.8857C156.44 53.7399 156.659 53.5417 156.832 53.291C157.005 53.0404 157.135 52.7533 157.222 52.4297C157.313 52.1016 157.358 51.7529 157.358 51.3838V51.2266C157.358 50.862 157.313 50.5179 157.222 50.1943C157.135 49.8662 157.003 49.5768 156.825 49.3262C156.652 49.071 156.433 48.8704 156.169 48.7246C155.909 48.5788 155.604 48.5059 155.253 48.5059C154.907 48.5059 154.601 48.5788 154.337 48.7246C154.077 48.8704 153.858 49.071 153.681 49.3262C153.507 49.5768 153.378 49.8662 153.291 50.1943C153.204 50.5179 153.161 50.862 153.161 51.2266ZM161.474 49.0732V55H160.202V47.6035H161.405L161.474 49.0732ZM161.214 51.0215L160.626 51.001C160.631 50.4951 160.697 50.028 160.824 49.5996C160.952 49.1667 161.141 48.7907 161.392 48.4717C161.642 48.1527 161.954 47.9066 162.328 47.7334C162.702 47.5557 163.135 47.4668 163.627 47.4668C163.973 47.4668 164.292 47.5169 164.584 47.6172C164.876 47.7129 165.129 47.8656 165.343 48.0752C165.557 48.2848 165.723 48.5537 165.842 48.8818C165.96 49.21 166.02 49.6064 166.02 50.0713V55H164.755V50.1328C164.755 49.7454 164.689 49.4355 164.557 49.2031C164.429 48.9707 164.247 48.8021 164.01 48.6973C163.773 48.5879 163.495 48.5332 163.176 48.5332C162.802 48.5332 162.49 48.5993 162.239 48.7314C161.989 48.8636 161.788 49.0459 161.638 49.2783C161.487 49.5107 161.378 49.7773 161.31 50.0781C161.246 50.3743 161.214 50.6888 161.214 51.0215ZM166.006 50.3242L165.158 50.584C165.163 50.1784 165.229 49.7887 165.356 49.415C165.489 49.0413 165.678 48.7087 165.924 48.417C166.174 48.1253 166.482 47.8952 166.847 47.7266C167.211 47.5534 167.628 47.4668 168.098 47.4668C168.494 47.4668 168.845 47.5192 169.15 47.624C169.46 47.7288 169.72 47.8906 169.93 48.1094C170.144 48.3236 170.306 48.5993 170.415 48.9365C170.524 49.2738 170.579 49.6748 170.579 50.1396V55H169.308V50.126C169.308 49.7113 169.242 49.39 169.109 49.1621C168.982 48.9297 168.799 48.7679 168.562 48.6768C168.33 48.5811 168.052 48.5332 167.729 48.5332C167.451 48.5332 167.204 48.5811 166.99 48.6768C166.776 48.7725 166.596 48.9046 166.45 49.0732C166.304 49.2373 166.193 49.4264 166.115 49.6406C166.042 49.8548 166.006 50.0827 166.006 50.3242ZM173.751 49.0732V55H172.479V47.6035H173.683L173.751 49.0732ZM173.491 51.0215L172.903 51.001C172.908 50.4951 172.974 50.028 173.102 49.5996C173.229 49.1667 173.418 48.7907 173.669 48.4717C173.92 48.1527 174.232 47.9066 174.605 47.7334C174.979 47.5557 175.412 47.4668 175.904 47.4668C176.251 47.4668 176.57 47.5169 176.861 47.6172C177.153 47.7129 177.406 47.8656 177.62 48.0752C177.834 48.2848 178.001 48.5537 178.119 48.8818C178.238 49.21 178.297 49.6064 178.297 50.0713V55H177.032V50.1328C177.032 49.7454 176.966 49.4355 176.834 49.2031C176.706 48.9707 176.524 48.8021 176.287 48.6973C176.05 48.5879 175.772 48.5332 175.453 48.5332C175.079 48.5332 174.767 48.5993 174.517 48.7314C174.266 48.8636 174.065 49.0459 173.915 49.2783C173.765 49.5107 173.655 49.7773 173.587 50.0781C173.523 50.3743 173.491 50.6888 173.491 51.0215ZM178.283 50.3242L177.436 50.584C177.44 50.1784 177.506 49.7887 177.634 49.415C177.766 49.0413 177.955 48.7087 178.201 48.417C178.452 48.1253 178.759 47.8952 179.124 47.7266C179.489 47.5534 179.906 47.4668 180.375 47.4668C180.771 47.4668 181.122 47.5192 181.428 47.624C181.738 47.7288 181.997 47.8906 182.207 48.1094C182.421 48.3236 182.583 48.5993 182.692 48.9365C182.802 49.2738 182.856 49.6748 182.856 50.1396V55H181.585V50.126C181.585 49.7113 181.519 49.39 181.387 49.1621C181.259 48.9297 181.077 48.7679 180.84 48.6768C180.607 48.5811 180.329 48.5332 180.006 48.5332C179.728 48.5332 179.482 48.5811 179.268 48.6768C179.053 48.7725 178.873 48.9046 178.728 49.0732C178.582 49.2373 178.47 49.4264 178.393 49.6406C178.32 49.8548 178.283 50.0827 178.283 50.3242ZM189.296 53.291V47.6035H190.567V55H189.357L189.296 53.291ZM189.535 51.7324L190.062 51.7188C190.062 52.2109 190.009 52.6667 189.904 53.0859C189.804 53.5007 189.64 53.8607 189.412 54.166C189.184 54.4714 188.886 54.7106 188.517 54.8838C188.147 55.0524 187.699 55.1367 187.17 55.1367C186.81 55.1367 186.479 55.0843 186.179 54.9795C185.882 54.8747 185.627 54.7129 185.413 54.4941C185.199 54.2754 185.033 53.9906 184.914 53.6396C184.8 53.2887 184.743 52.8672 184.743 52.375V47.6035H186.008V52.3887C186.008 52.7214 186.044 52.9971 186.117 53.2158C186.195 53.43 186.297 53.6009 186.425 53.7285C186.557 53.8516 186.703 53.9382 186.862 53.9883C187.026 54.0384 187.195 54.0635 187.368 54.0635C187.906 54.0635 188.332 53.9609 188.646 53.7559C188.961 53.5462 189.187 53.266 189.323 52.915C189.465 52.5596 189.535 52.1654 189.535 51.7324ZM193.76 49.1826V55H192.495V47.6035H193.691L193.76 49.1826ZM193.459 51.0215L192.933 51.001C192.937 50.4951 193.012 50.028 193.158 49.5996C193.304 49.1667 193.509 48.7907 193.773 48.4717C194.038 48.1527 194.352 47.9066 194.717 47.7334C195.086 47.5557 195.494 47.4668 195.94 47.4668C196.305 47.4668 196.633 47.5169 196.925 47.6172C197.216 47.7129 197.465 47.8678 197.67 48.082C197.88 48.2962 198.039 48.5742 198.148 48.916C198.258 49.2533 198.312 49.6657 198.312 50.1533V55H197.041V50.1396C197.041 49.7523 196.984 49.4424 196.87 49.21C196.756 48.973 196.59 48.8021 196.371 48.6973C196.152 48.5879 195.883 48.5332 195.564 48.5332C195.25 48.5332 194.963 48.5993 194.703 48.7314C194.448 48.8636 194.227 49.0459 194.04 49.2783C193.858 49.5107 193.714 49.7773 193.609 50.0781C193.509 50.3743 193.459 50.6888 193.459 51.0215ZM201.607 47.6035V55H200.336V47.6035H201.607ZM200.24 45.6416C200.24 45.4365 200.302 45.2633 200.425 45.1221C200.552 44.9808 200.739 44.9102 200.985 44.9102C201.227 44.9102 201.411 44.9808 201.539 45.1221C201.671 45.2633 201.737 45.4365 201.737 45.6416C201.737 45.8376 201.671 46.0062 201.539 46.1475C201.411 46.2842 201.227 46.3525 200.985 46.3525C200.739 46.3525 200.552 46.2842 200.425 46.1475C200.302 46.0062 200.24 45.8376 200.24 45.6416ZM206.598 54.0977C206.898 54.0977 207.176 54.0361 207.432 53.9131C207.687 53.79 207.896 53.6214 208.061 53.4072C208.225 53.1885 208.318 52.9401 208.341 52.6621H209.544C209.521 53.0996 209.373 53.5075 209.1 53.8857C208.831 54.2594 208.478 54.5625 208.04 54.7949C207.603 55.0228 207.122 55.1367 206.598 55.1367C206.042 55.1367 205.556 55.0387 205.142 54.8428C204.731 54.6468 204.39 54.3779 204.116 54.0361C203.847 53.6943 203.645 53.3024 203.508 52.8604C203.376 52.4137 203.31 51.9421 203.31 51.4453V51.1582C203.31 50.6615 203.376 50.1921 203.508 49.75C203.645 49.3034 203.847 48.9092 204.116 48.5674C204.39 48.2256 204.731 47.9567 205.142 47.7607C205.556 47.5648 206.042 47.4668 206.598 47.4668C207.176 47.4668 207.682 47.5853 208.115 47.8223C208.548 48.0547 208.888 48.3737 209.134 48.7793C209.384 49.1803 209.521 49.6361 209.544 50.1465H208.341C208.318 49.8411 208.231 49.5654 208.081 49.3193C207.935 49.0732 207.735 48.8773 207.479 48.7314C207.229 48.5811 206.935 48.5059 206.598 48.5059C206.21 48.5059 205.884 48.5833 205.62 48.7383C205.36 48.8887 205.153 49.0938 204.998 49.3535C204.848 49.6087 204.738 49.8936 204.67 50.208C204.606 50.5179 204.574 50.8346 204.574 51.1582V51.4453C204.574 51.7689 204.606 52.0879 204.67 52.4023C204.734 52.7168 204.841 53.0016 204.991 53.2568C205.146 53.512 205.354 53.7171 205.613 53.8721C205.878 54.0225 206.206 54.0977 206.598 54.0977ZM215.327 53.7354V49.9277C215.327 49.6361 215.268 49.3831 215.149 49.1689C215.035 48.9502 214.862 48.7816 214.63 48.6631C214.397 48.5446 214.11 48.4854 213.769 48.4854C213.45 48.4854 213.169 48.54 212.928 48.6494C212.691 48.7588 212.504 48.9023 212.367 49.0801C212.235 49.2578 212.169 49.4492 212.169 49.6543H210.904C210.904 49.39 210.973 49.1279 211.109 48.8682C211.246 48.6084 211.442 48.3737 211.697 48.1641C211.957 47.9499 212.267 47.7812 212.627 47.6582C212.992 47.5306 213.397 47.4668 213.844 47.4668C214.382 47.4668 214.855 47.5579 215.266 47.7402C215.68 47.9225 216.004 48.1982 216.236 48.5674C216.473 48.932 216.592 49.39 216.592 49.9414V53.3867C216.592 53.6328 216.612 53.8949 216.653 54.1729C216.699 54.4508 216.765 54.6901 216.852 54.8906V55H215.532C215.468 54.8542 215.418 54.6605 215.382 54.4189C215.345 54.1729 215.327 53.945 215.327 53.7354ZM215.546 50.5156L215.56 51.4043H214.281C213.921 51.4043 213.6 51.4339 213.317 51.4932C213.035 51.5479 212.798 51.6322 212.606 51.7461C212.415 51.86 212.269 52.0036 212.169 52.1768C212.069 52.3454 212.019 52.5436 212.019 52.7715C212.019 53.0039 212.071 53.2158 212.176 53.4072C212.281 53.5986 212.438 53.7513 212.647 53.8652C212.862 53.9746 213.124 54.0293 213.434 54.0293C213.821 54.0293 214.163 53.9473 214.459 53.7832C214.755 53.6191 214.99 53.4186 215.163 53.1816C215.341 52.9447 215.437 52.7145 215.45 52.4912L215.99 53.0996C215.958 53.291 215.872 53.5029 215.73 53.7354C215.589 53.9678 215.4 54.1911 215.163 54.4053C214.931 54.6149 214.653 54.7904 214.329 54.9316C214.01 55.0684 213.65 55.1367 213.249 55.1367C212.748 55.1367 212.308 55.0387 211.93 54.8428C211.556 54.6468 211.264 54.3848 211.055 54.0566C210.85 53.724 210.747 53.3525 210.747 52.9424C210.747 52.5459 210.825 52.1973 210.979 51.8965C211.134 51.5911 211.358 51.3382 211.649 51.1377C211.941 50.9326 212.292 50.7777 212.702 50.6729C213.112 50.568 213.57 50.5156 214.076 50.5156H215.546ZM221.678 47.6035V48.5742H217.679V47.6035H221.678ZM219.032 45.8057H220.297V53.168C220.297 53.4186 220.336 53.6077 220.413 53.7354C220.491 53.863 220.591 53.9473 220.714 53.9883C220.837 54.0293 220.969 54.0498 221.11 54.0498C221.215 54.0498 221.325 54.0407 221.438 54.0225C221.557 53.9997 221.646 53.9814 221.705 53.9678L221.712 55C221.612 55.0319 221.479 55.0615 221.315 55.0889C221.156 55.1208 220.962 55.1367 220.734 55.1367C220.424 55.1367 220.14 55.0752 219.88 54.9521C219.62 54.8291 219.413 54.624 219.258 54.3369C219.107 54.0452 219.032 53.6533 219.032 53.1611V45.8057ZM224.535 47.6035V55H223.264V47.6035H224.535ZM223.168 45.6416C223.168 45.4365 223.229 45.2633 223.353 45.1221C223.48 44.9808 223.667 44.9102 223.913 44.9102C224.155 44.9102 224.339 44.9808 224.467 45.1221C224.599 45.2633 224.665 45.4365 224.665 45.6416C224.665 45.8376 224.599 46.0062 224.467 46.1475C224.339 46.2842 224.155 46.3525 223.913 46.3525C223.667 46.3525 223.48 46.2842 223.353 46.1475C223.229 46.0062 223.168 45.8376 223.168 45.6416ZM226.23 51.3838V51.2266C226.23 50.6934 226.308 50.1989 226.463 49.7432C226.618 49.2829 226.841 48.8841 227.133 48.5469C227.424 48.2051 227.778 47.9408 228.192 47.7539C228.607 47.5625 229.072 47.4668 229.587 47.4668C230.106 47.4668 230.574 47.5625 230.988 47.7539C231.408 47.9408 231.763 48.2051 232.055 48.5469C232.351 48.8841 232.576 49.2829 232.731 49.7432C232.886 50.1989 232.964 50.6934 232.964 51.2266V51.3838C232.964 51.917 232.886 52.4115 232.731 52.8672C232.576 53.3229 232.351 53.7217 232.055 54.0635C231.763 54.4007 231.41 54.665 230.995 54.8564C230.585 55.0433 230.12 55.1367 229.601 55.1367C229.081 55.1367 228.614 55.0433 228.199 54.8564C227.785 54.665 227.429 54.4007 227.133 54.0635C226.841 53.7217 226.618 53.3229 226.463 52.8672C226.308 52.4115 226.23 51.917 226.23 51.3838ZM227.495 51.2266V51.3838C227.495 51.7529 227.538 52.1016 227.625 52.4297C227.712 52.7533 227.841 53.0404 228.015 53.291C228.192 53.5417 228.413 53.7399 228.678 53.8857C228.942 54.027 229.25 54.0977 229.601 54.0977C229.947 54.0977 230.25 54.027 230.51 53.8857C230.774 53.7399 230.993 53.5417 231.166 53.291C231.339 53.0404 231.469 52.7533 231.556 52.4297C231.647 52.1016 231.692 51.7529 231.692 51.3838V51.2266C231.692 50.862 231.647 50.5179 231.556 50.1943C231.469 49.8662 231.337 49.5768 231.159 49.3262C230.986 49.071 230.767 48.8704 230.503 48.7246C230.243 48.5788 229.938 48.5059 229.587 48.5059C229.241 48.5059 228.935 48.5788 228.671 48.7246C228.411 48.8704 228.192 49.071 228.015 49.3262C227.841 49.5768 227.712 49.8662 227.625 50.1943C227.538 50.5179 227.495 50.862 227.495 51.2266ZM235.814 49.1826V55H234.55V47.6035H235.746L235.814 49.1826ZM235.514 51.0215L234.987 51.001C234.992 50.4951 235.067 50.028 235.213 49.5996C235.359 49.1667 235.564 48.7907 235.828 48.4717C236.092 48.1527 236.407 47.9066 236.771 47.7334C237.141 47.5557 237.549 47.4668 237.995 47.4668C238.36 47.4668 238.688 47.5169 238.979 47.6172C239.271 47.7129 239.52 47.8678 239.725 48.082C239.934 48.2962 240.094 48.5742 240.203 48.916C240.312 49.2533 240.367 49.6657 240.367 50.1533V55H239.096V50.1396C239.096 49.7523 239.039 49.4424 238.925 49.21C238.811 48.973 238.645 48.8021 238.426 48.6973C238.207 48.5879 237.938 48.5332 237.619 48.5332C237.305 48.5332 237.018 48.5993 236.758 48.7314C236.503 48.8636 236.282 49.0459 236.095 49.2783C235.912 49.5107 235.769 49.7773 235.664 50.0781C235.564 50.3743 235.514 50.6888 235.514 51.0215Z",fill:"#64748B"}),(0,o.createElement)("path",{d:"M24 64C19.86 64 16.5 67.36 16.5 71.5C16.5 75.64 19.86 79 24 79C28.14 79 31.5 75.64 31.5 71.5C31.5 67.36 28.14 64 24 64ZM24 77.5C20.685 77.5 18 74.815 18 71.5C18 68.185 20.685 65.5 24 65.5C27.315 65.5 30 68.185 30 71.5C30 74.815 27.315 77.5 24 77.5Z",fill:"#64748B"}),(0,o.createElement)("path",{d:"M42.9443 75.0034V76H38.0503V75.0034H42.9443ZM38.2979 66.7578V76H37.0728V66.7578H38.2979ZM42.2969 70.7314V71.728H38.0503V70.7314H42.2969ZM42.8809 66.7578V67.7607H38.0503V66.7578H42.8809ZM46.7275 71.5884V72.5532H43.6299V71.5884H46.7275ZM49.0444 70.4966V76H47.8638V69.1318H48.981L49.0444 70.4966ZM48.8032 72.3057L48.2573 72.2866C48.2616 71.8169 48.3229 71.3831 48.4414 70.9854C48.5599 70.5833 48.7355 70.2342 48.9683 69.938C49.201 69.6418 49.4909 69.4132 49.8379 69.2524C50.1849 69.0874 50.5869 69.0049 51.0439 69.0049C51.3656 69.0049 51.6618 69.0514 51.9326 69.1445C52.2035 69.2334 52.4383 69.3752 52.6372 69.5698C52.8361 69.7645 52.9906 70.0142 53.1006 70.3188C53.2106 70.6235 53.2656 70.9917 53.2656 71.4233V76H52.0913V71.4805C52.0913 71.1208 52.0299 70.833 51.9072 70.6172C51.7887 70.4014 51.6195 70.2448 51.3994 70.1475C51.1794 70.0459 50.9212 69.9951 50.625 69.9951C50.278 69.9951 49.9881 70.0565 49.7554 70.1792C49.5226 70.3019 49.3364 70.4712 49.1968 70.687C49.0571 70.9028 48.9556 71.1504 48.8921 71.4297C48.8328 71.7048 48.8032 71.9967 48.8032 72.3057ZM53.2529 71.6582L52.4658 71.8994C52.4701 71.5228 52.5314 71.161 52.6499 70.814C52.7726 70.467 52.9482 70.158 53.1768 69.8872C53.4095 69.6164 53.6951 69.4027 54.0337 69.2461C54.3722 69.0853 54.7594 69.0049 55.1953 69.0049C55.5635 69.0049 55.8893 69.0535 56.1729 69.1509C56.4606 69.2482 56.7018 69.3984 56.8965 69.6016C57.0954 69.8005 57.2456 70.0565 57.3472 70.3696C57.4487 70.6828 57.4995 71.0552 57.4995 71.4868V76H56.3188V71.4741C56.3188 71.089 56.2575 70.7907 56.1348 70.5791C56.0163 70.3633 55.847 70.2131 55.627 70.1284C55.4111 70.0396 55.153 69.9951 54.8525 69.9951C54.5944 69.9951 54.3659 70.0396 54.167 70.1284C53.9681 70.2173 53.8009 70.34 53.6655 70.4966C53.5301 70.6489 53.4264 70.8245 53.3545 71.0234C53.2868 71.2223 53.2529 71.4339 53.2529 71.6582ZM63.3267 74.8257V71.29C63.3267 71.0192 63.2716 70.7843 63.1616 70.5854C63.0558 70.3823 62.895 70.2257 62.6792 70.1157C62.4634 70.0057 62.1968 69.9507 61.8794 69.9507C61.5832 69.9507 61.3229 70.0015 61.0986 70.103C60.8786 70.2046 60.7051 70.3379 60.5781 70.5029C60.4554 70.668 60.394 70.8457 60.394 71.0361H59.2197C59.2197 70.7907 59.2832 70.5474 59.4102 70.3062C59.5371 70.0649 59.7191 69.847 59.9561 69.6523C60.1973 69.4535 60.485 69.2969 60.8193 69.1826C61.1579 69.0641 61.5345 69.0049 61.9492 69.0049C62.4486 69.0049 62.8887 69.0895 63.2695 69.2588C63.6546 69.4281 63.9551 69.6841 64.1709 70.0269C64.391 70.3654 64.501 70.7907 64.501 71.3027V74.502C64.501 74.7305 64.52 74.9738 64.5581 75.2319C64.6004 75.4901 64.6618 75.7122 64.7422 75.8984V76H63.5171C63.4578 75.8646 63.4113 75.6847 63.3774 75.4604C63.3436 75.2319 63.3267 75.0203 63.3267 74.8257ZM63.5298 71.8359L63.5425 72.6611H62.3555C62.0212 72.6611 61.7228 72.6886 61.4604 72.7437C61.1981 72.7944 60.978 72.8727 60.8003 72.9785C60.6226 73.0843 60.4871 73.2176 60.394 73.3784C60.3009 73.535 60.2544 73.7191 60.2544 73.9307C60.2544 74.1465 60.3031 74.3433 60.4004 74.521C60.4977 74.6987 60.6437 74.8405 60.8384 74.9463C61.0373 75.0479 61.2806 75.0986 61.5684 75.0986C61.9281 75.0986 62.2454 75.0225 62.5205 74.8701C62.7956 74.7178 63.0135 74.5316 63.1743 74.3115C63.3394 74.0915 63.4282 73.8778 63.4409 73.6704L63.9424 74.2354C63.9128 74.4131 63.8324 74.6099 63.7012 74.8257C63.57 75.0415 63.3944 75.2489 63.1743 75.4478C62.9585 75.6424 62.7004 75.8053 62.3999 75.9365C62.1037 76.0635 61.7694 76.127 61.397 76.127C60.9315 76.127 60.5231 76.036 60.1719 75.854C59.8249 75.672 59.554 75.4287 59.3594 75.124C59.1689 74.8151 59.0737 74.4702 59.0737 74.0894C59.0737 73.7212 59.1457 73.3975 59.2896 73.1182C59.4334 72.8346 59.6408 72.5998 59.9116 72.4136C60.1825 72.2231 60.5083 72.0793 60.8892 71.9819C61.27 71.8846 61.6953 71.8359 62.165 71.8359H63.5298ZM67.624 69.1318V76H66.4434V69.1318H67.624ZM66.3545 67.3101C66.3545 67.1196 66.4116 66.9588 66.5259 66.8276C66.6444 66.6965 66.8179 66.6309 67.0464 66.6309C67.2707 66.6309 67.4421 66.6965 67.5605 66.8276C67.6833 66.9588 67.7446 67.1196 67.7446 67.3101C67.7446 67.492 67.6833 67.6486 67.5605 67.7798C67.4421 67.9067 67.2707 67.9702 67.0464 67.9702C66.8179 67.9702 66.6444 67.9067 66.5259 67.7798C66.4116 67.6486 66.3545 67.492 66.3545 67.3101ZM70.7852 66.25V76H69.6045V66.25H70.7852Z",fill:"#0F172A"}),(0,o.createElement)("path",{d:"M24 89.75C21.93 89.75 20.25 91.43 20.25 93.5C20.25 95.57 21.93 97.25 24 97.25C26.07 97.25 27.75 95.57 27.75 93.5C27.75 91.43 26.07 89.75 24 89.75ZM24 86C19.86 86 16.5 89.36 16.5 93.5C16.5 97.64 19.86 101 24 101C28.14 101 31.5 97.64 31.5 93.5C31.5 89.36 28.14 86 24 86ZM24 99.5C20.685 99.5 18 96.815 18 93.5C18 90.185 20.685 87.5 24 87.5C27.315 87.5 30 90.185 30 93.5C30 96.815 27.315 99.5 24 99.5Z",fill:"#4272F9"}),(0,o.createElement)("path",{d:"M40.4814 94.3755H38.0122V93.3789H40.4814C40.9596 93.3789 41.3468 93.3027 41.6431 93.1504C41.9393 92.998 42.1551 92.7865 42.2905 92.5156C42.4302 92.2448 42.5 91.9359 42.5 91.5889C42.5 91.2715 42.4302 90.9731 42.2905 90.6938C42.1551 90.4146 41.9393 90.1903 41.6431 90.021C41.3468 89.8475 40.9596 89.7607 40.4814 89.7607H38.2979V98H37.0728V88.7578H40.4814C41.1797 88.7578 41.77 88.8784 42.2524 89.1196C42.7349 89.3608 43.1009 89.6951 43.3506 90.1226C43.6003 90.5457 43.7251 91.0303 43.7251 91.5762C43.7251 92.1686 43.6003 92.6743 43.3506 93.0933C43.1009 93.5122 42.7349 93.8317 42.2524 94.0518C41.77 94.2676 41.1797 94.3755 40.4814 94.3755ZM46.2705 88.25V98H45.0962V88.25H46.2705ZM45.9912 94.3057L45.5024 94.2866C45.5067 93.8169 45.5765 93.3831 45.7119 92.9854C45.8473 92.5833 46.0378 92.2342 46.2832 91.938C46.5286 91.6418 46.8206 91.4132 47.1592 91.2524C47.502 91.0874 47.8807 91.0049 48.2954 91.0049C48.634 91.0049 48.9386 91.0514 49.2095 91.1445C49.4803 91.2334 49.7109 91.3773 49.9014 91.5762C50.096 91.7751 50.2441 92.0332 50.3457 92.3506C50.4473 92.6637 50.498 93.0467 50.498 93.4995V98H49.3174V93.4868C49.3174 93.1271 49.2645 92.8394 49.1587 92.6235C49.0529 92.4035 48.8984 92.2448 48.6953 92.1475C48.4922 92.0459 48.2425 91.9951 47.9463 91.9951C47.6543 91.9951 47.3877 92.0565 47.1465 92.1792C46.9095 92.3019 46.7043 92.4712 46.5308 92.687C46.3615 92.9028 46.2282 93.1504 46.1309 93.4297C46.0378 93.7048 45.9912 93.9967 45.9912 94.3057ZM51.9453 94.6421V94.4961C51.9453 94.001 52.0173 93.5418 52.1611 93.1187C52.305 92.6912 52.5124 92.321 52.7832 92.0078C53.054 91.6904 53.382 91.445 53.7671 91.2715C54.1522 91.0938 54.5838 91.0049 55.062 91.0049C55.5444 91.0049 55.9782 91.0938 56.3633 91.2715C56.7526 91.445 57.0827 91.6904 57.3535 92.0078C57.6286 92.321 57.8381 92.6912 57.9819 93.1187C58.1258 93.5418 58.1978 94.001 58.1978 94.4961V94.6421C58.1978 95.1372 58.1258 95.5964 57.9819 96.0195C57.8381 96.4427 57.6286 96.813 57.3535 97.1304C57.0827 97.4435 56.7547 97.689 56.3696 97.8667C55.9888 98.0402 55.5571 98.127 55.0747 98.127C54.5923 98.127 54.1585 98.0402 53.7734 97.8667C53.3883 97.689 53.0583 97.4435 52.7832 97.1304C52.5124 96.813 52.305 96.4427 52.1611 96.0195C52.0173 95.5964 51.9453 95.1372 51.9453 94.6421ZM53.1196 94.4961V94.6421C53.1196 94.9849 53.1598 95.3086 53.2402 95.6133C53.3206 95.9137 53.4412 96.1803 53.6021 96.4131C53.7671 96.6458 53.9723 96.8299 54.2178 96.9653C54.4632 97.0965 54.7489 97.1621 55.0747 97.1621C55.3963 97.1621 55.6777 97.0965 55.9189 96.9653C56.1644 96.8299 56.3675 96.6458 56.5283 96.4131C56.6891 96.1803 56.8097 95.9137 56.8901 95.6133C56.9748 95.3086 57.0171 94.9849 57.0171 94.6421V94.4961C57.0171 94.1576 56.9748 93.8381 56.8901 93.5376C56.8097 93.2329 56.687 92.9642 56.522 92.7314C56.3612 92.4945 56.158 92.3083 55.9126 92.1729C55.6714 92.0374 55.3879 91.9697 55.062 91.9697C54.7404 91.9697 54.4569 92.0374 54.2114 92.1729C53.9702 92.3083 53.7671 92.4945 53.6021 92.7314C53.4412 92.9642 53.3206 93.2329 53.2402 93.5376C53.1598 93.8381 53.1196 94.1576 53.1196 94.4961ZM60.8447 92.5981V98H59.6704V91.1318H60.7812L60.8447 92.5981ZM60.5654 94.3057L60.0767 94.2866C60.0809 93.8169 60.1507 93.3831 60.2861 92.9854C60.4215 92.5833 60.612 92.2342 60.8574 91.938C61.1029 91.6418 61.3949 91.4132 61.7334 91.2524C62.0762 91.0874 62.4549 91.0049 62.8696 91.0049C63.2082 91.0049 63.5129 91.0514 63.7837 91.1445C64.0545 91.2334 64.2852 91.3773 64.4756 91.5762C64.6702 91.7751 64.8184 92.0332 64.9199 92.3506C65.0215 92.6637 65.0723 93.0467 65.0723 93.4995V98H63.8916V93.4868C63.8916 93.1271 63.8387 92.8394 63.7329 92.6235C63.6271 92.4035 63.4727 92.2448 63.2695 92.1475C63.0664 92.0459 62.8167 91.9951 62.5205 91.9951C62.2285 91.9951 61.9619 92.0565 61.7207 92.1792C61.4837 92.3019 61.2785 92.4712 61.105 92.687C60.9357 92.9028 60.8024 93.1504 60.7051 93.4297C60.612 93.7048 60.5654 93.9967 60.5654 94.3057ZM69.7061 98.127C69.2279 98.127 68.7941 98.0465 68.4048 97.8857C68.0197 97.7207 67.6875 97.4901 67.4082 97.1938C67.1331 96.8976 66.9215 96.5464 66.7734 96.1401C66.6253 95.7339 66.5513 95.2896 66.5513 94.8071V94.5405C66.5513 93.9819 66.6338 93.4847 66.7988 93.0488C66.9639 92.6087 67.1882 92.2363 67.4717 91.9316C67.7552 91.627 68.0768 91.3963 68.4365 91.2397C68.7962 91.0832 69.1686 91.0049 69.5537 91.0049C70.0446 91.0049 70.4678 91.0895 70.8232 91.2588C71.1829 91.4281 71.4771 91.665 71.7056 91.9697C71.9341 92.2702 72.1034 92.6257 72.2134 93.0361C72.3234 93.4424 72.3784 93.8867 72.3784 94.3691V94.896H67.2495V93.9375H71.2041V93.8486C71.1872 93.5439 71.1237 93.2477 71.0137 92.96C70.9079 92.6722 70.7386 92.4352 70.5059 92.249C70.2731 92.0628 69.9557 91.9697 69.5537 91.9697C69.2871 91.9697 69.0417 92.0269 68.8174 92.1411C68.5931 92.2511 68.4006 92.4162 68.2397 92.6362C68.0789 92.8563 67.9541 93.125 67.8652 93.4424C67.7764 93.7598 67.7319 94.1258 67.7319 94.5405V94.8071C67.7319 95.133 67.7764 95.4398 67.8652 95.7275C67.9583 96.0111 68.0916 96.2607 68.2651 96.4766C68.4429 96.6924 68.6566 96.8617 68.9062 96.9844C69.1602 97.1071 69.4479 97.1685 69.7695 97.1685C70.1842 97.1685 70.5355 97.0838 70.8232 96.9146C71.111 96.7453 71.3628 96.5189 71.5786 96.2354L72.2896 96.8003C72.1414 97.0246 71.9531 97.2383 71.7246 97.4414C71.4961 97.6445 71.2147 97.8096 70.8804 97.9365C70.5503 98.0635 70.1589 98.127 69.7061 98.127Z",fill:"#0F172A"})),{ToolBarFields:jt,BlockLabel:xt,BlockDescription:Ft,BlockAdvancedValue:St,BlockName:Bt,AdvancedFields:At,FieldControl:Pt,SwitchPageOnChangeControls:Nt}=JetFBComponents,{__:Ot}=wp.i18n,{InspectorControls:Tt,useBlockProps:It,BlockSettingsMenuControls:Jt}=wp.blockEditor,{PanelBody:Rt,ToolbarButton:Dt}=wp.components,{useUniqueNameOnDuplicate:qt}=JetFBHooks,$t=JSON.parse('{"apiVersion":3,"name":"jet-forms/radio-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","radio"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSwitchPageOnChange":true,"jetFBSanitizeValue":true},"title":"Radio Field","icon":"\\n\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"custom_option":{"type":"boolean","default":false},"custom_item_template":{"type":"boolean","default":false},"custom_item_template_id":{"type":"string","default":""},"generator_numbers_min":{"type":"number","default":""},"generator_numbers_max":{"type":"number","default":""},"generator_numbers_step":{"type":"number","default":""},"glossary_id":{"type":"string","default":""},"field_options_from":{"type":"string","default":"manual_input"},"field_options":{"type":"array","default":[]},"field_options_post_type":{"type":"string","default":"post"},"field_options_tax":{"type":"string","default":"category"},"field_options_key":{"type":"string","default":""},"generator_function":{"type":"string","default":""},"generator_field":{"type":"string","default":""},"generator_args":{"type":"object","default":{}},"generator_auto_update":{"type":"boolean","default":false},"generator_listen_field":{"type":["string","array"],"default":""},"generator_require_all_filled":{"type":"boolean","default":false},"generator_update_on_button":{"type":"string","default":""},"generator_update_on_button_class":{"type":"string","default":""},"generator_cache_timeout":{"type":"number","default":60},"calculated_value_from_key":{"type":"string","default":""},"value_from_key":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewStyle":"jet-fb-option-field-radio","style":"jet-fb-option-field-radio"}'),{__:Ut}=wp.i18n,{createBlock:Gt}=wp.blocks,{name:Wt,icon:zt=""}=$t,Kt={icon:(0,o.createElement)("span",{dangerouslySetInnerHTML:{__html:zt}}),description:Ut("Create a list of available options from which the user can \nchoose only a single variant. Build the lists of various lengths.","jet-form-builder"),edit:function(e){const{isSelected:C,attributes:t,editProps:{uniqKey:l},setAttributes:r}=e,n=It();return qt(),t.isPreview?(0,o.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},kt):(0,o.createElement)(o.Fragment,null,C&&(0,o.createElement)(Jt,null),(0,o.createElement)(jt,null,(0,o.createElement)(Dt,{icon:t.custom_option?(0,o.createElement)("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,o.createElement)("rect",{width:"32",height:"32",rx:"2",fill:"#101517"}),(0,o.createElement)("path",{d:"M30 16.796L18.044 28.8813L14 30L15.156 26.0867L27.1107 14L30 16.796Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M12 8H6V21H17.3398L15.3398 23H6L5.7959 22.9893C4.85435 22.8938 4.1062 22.1457 4.01074 21.2041L4 21V8C4 6.89543 4.89543 6 6 6H12V8Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M21 17.3398L19 19.3398V15H21V17.3398Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M19 3H21V6H24V8H21V11H19V8H16V6H19V3Z",fill:"currentColor"})):(0,o.createElement)("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,o.createElement)("path",{d:"M30 16.796L18.044 28.8813L14 30L15.156 26.0867L27.1107 14L30 16.796Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M12 8H6V21H17.3398L15.3398 23H6L5.7959 22.9893C4.85435 22.8938 4.1062 22.1457 4.01074 21.2041L4 21V8C4 6.89543 4.89543 6 6 6H12V8Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M21 17.3398L19 19.3398V15H21V17.3398Z",fill:"currentColor"}),(0,o.createElement)("path",{d:"M19 3H21V6H24V8H21V11H19V8H16V6H19V3Z",fill:"currentColor"})),title:t.custom_option?Ot("Disable custom options","jet-form-builder"):Ot("Enable custom options","jet-form-builder"),onClick:()=>r({custom_option:!t.custom_option}),isActive:t.custom_option})),(0,o.createElement)(Nt,null),C&&(0,o.createElement)(Tt,{key:l("InspectorControls")},(0,o.createElement)(Rt,{title:Ot("General","jet-form-builder")},(0,o.createElement)(xt,null),(0,o.createElement)(Bt,null),(0,o.createElement)(Ft,null)),(0,o.createElement)(Rt,{title:Ot("Value","jet-form-builder")},(0,o.createElement)(St,null)),(0,o.createElement)(At,{key:l("AdvancedFields"),...e})),(0,o.createElement)("div",{...n,key:l("viewBlock")},(0,o.createElement)(b,{key:l("SelectRadioCheckPlaceholder"),scriptData:window.JetFormOptionFieldData,...e}),(0,o.createElement)(LC,{...e},(0,o.createElement)(rt,{listingTypes:window.JetFormOptionFieldData.listings_list,...e}),(0,o.createElement)(Pt,{type:"custom_settings",key:l("customSettingsFields"),...e}))))},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Gt("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/select-field","jet-forms/text-field"],transform:e=>Gt(Wt,{...e}),priority:0},{type:"block",blocks:["jet-forms/checkbox-field"],transform:e=>(e.custom_option={allow:!!e.custom_option,label:"+ Add New"},Gt(Wt,{...e})),priority:0}]}},{addFilter:Xt}=wp.hooks;Xt("jet.fb.register.fields","jet-form-builder/select",(function(e){return e.push(l,r,n),e}))})(); \ No newline at end of file diff --git a/modules/option-field/assets/build/radio.asset.php b/modules/option-field/assets/build/radio.asset.php index f69e5e904..14dd69b2d 100644 --- a/modules/option-field/assets/build/radio.asset.php +++ b/modules/option-field/assets/build/radio.asset.php @@ -1 +1 @@ - array(), 'version' => '1526c067231cd47c97eb'); + array(), 'version' => '7c6b0683eafeb5cd02d5'); diff --git a/modules/option-field/assets/build/radio.js b/modules/option-field/assets/build/radio.js index 9e49cbf63..5e29514c0 100644 --- a/modules/option-field/assets/build/radio.js +++ b/modules/option-field/assets/build/radio.js @@ -1 +1 @@ -(()=>{var t={554(){const{CalculatedFormula:t}=JetFormBuilderAbstract,{addAction:e}=JetPlugins.hooks,r="__JFB_OPTION_FIELD_DEFAULT_VALUE_OBSERVER__";function n(t){if("string"!=typeof t||t.length<2)return t;const e=t.charAt(0),r=t.charAt(t.length-1);return"'"===e&&"'"===r||'"'===e&&'"'===r?t.slice(1,-1):t}function s(t){return Array.isArray(t)?t.some(s):"string"==typeof t&&t.includes("%")}function i(t){return!(""===t||null===t||Array.isArray(t)&&!t.length)}function o(e,r){const o=Array.isArray(r)?r:[r],a=[],u=new Array(o.length);o.forEach((c,l)=>{const d=new t(e);d.observe(function(t){if("string"!=typeof t)return t;const e=t.trim();return!s(e)||function(t){if("string"!=typeof t||t.length<2)return!1;const e=t.charAt(0),r=t.charAt(t.length-1);return"'"===e&&"'"===r||'"'===e&&'"'===r}(e)?e:`'${e.replace(/'/g,"\\'")}'`}(c)),d.setResult=()=>{const t=d.calculate();i(t)&&(u[l]=t,Object.keys(u).length===o.length&&u.every(i)&&(function(t,e){if(Array.isArray(e))return void t.value.setIfEmpty(e.map(t=>n(""+t)));const r=n(""+e);if(!t.isArray())return function(t){if(t.isArray()||"select"!==t.inputType)return!1;const[e]=t.nodes;if(!e||"select-one"!==e.type||e.multiple||!e.options?.length)return!1;const r=Array.from(e.options),[n]=r;return!!n&&!r.some(t=>""===t.value)&&!r.some(t=>t.defaultSelected)&&0===e.selectedIndex&&e.value===n.value}(t)?void(t.value.current=r):void t.value.setIfEmpty(r);const s=function(t){if("string"!=typeof t)return t;const e=t.trim();try{const r=JSON.parse(e);return Array.isArray(r)?r:t}catch(r){if(e.startsWith("[")&&e.endsWith("]")&&e.includes("'"))try{const r=e.replace(/'((?:\\'|[^'])*)'/g,(t,e)=>`"${e.replace(/"/g,'\\"')}"`),n=JSON.parse(r);return Array.isArray(n)?n:t}catch(e){return t}return t}}(r);t.value.setIfEmpty(Array.isArray(s)?s.map(t=>n(""+t)):[r])}(e,Array.isArray(r)?u:u[0]),a.forEach(t=>t.clearWatchers())))},d.setResult(),a.push(d)})}function a(t){var e,r,n;const[i]=t.nodes,a=null!==(e=t.wrapper)&&void 0!==e?e:i,u=null!==(r=null!==(n=a?.dataset?.defaultVal)&&void 0!==n?n:i?.dataset?.defaultVal)&&void 0!==r?r:"",c=function(t){if("string"!=typeof t)return t;const e=t.trim();try{const t=JSON.parse(e);return Array.isArray(t)?t:e}catch(t){if(e.startsWith("[")&&e.endsWith("]")&&e.includes("'"))try{const t=e.replace(/'((?:\\'|[^'])*)'/g,(t,e)=>`"${e.replace(/"/g,'\\"')}"`),r=JSON.parse(t);return Array.isArray(r)?r:e}catch(t){return e}return e}}(u);(function(t,e){if(Array.isArray(e))return e.length>0;if("string"!=typeof t)return s(e);const r=t.trim();return s(e)||r.startsWith("[")&&r.endsWith("]")})(u,c)&&o(t,c)}window[r]||(window[r]=!0,e("jet.fb.observe.after","jet-form-builder/option-field-default-value",function(t){for(const e of t.getInputs()){const[t]=e.nodes;t&&["select","radio","checkbox"].includes(e.inputType)&&a(e)}}))}},e={};function r(n){var s=e[n];if(void 0!==s)return s.exports;var i=e[n]={exports:{}};return t[n](i,i.exports,r),i.exports}(()=>{"use strict";const{strict_mode:t=!1}=window?.JetFormBuilderSettings,e=Boolean(t),{InputData:n,ReactiveHook:s}=JetFormBuilderAbstract,{getParsedName:i}=JetFormBuilderFunctions;function o(){n.call(this),this.wrapper=null}o.prototype=Object.create(n.prototype),o.prototype.wrapper=null,o.prototype.isSupported=function(t){return t.classList.contains("checkradio-wrap")&&t.querySelector(".radio-wrap")},o.prototype.addListeners=function(){this.enterKey=new s,this.wrapper.addEventListener("change",this.onChangeValue.bind(this)),this.wrapper.addEventListener("keydown",this.handleEnterKey.bind(this));const t=this.getCustomInput();this.wrapper.addEventListener("focusout",e=>{[...this.nodes].includes(e?.relatedTarget)||[e.relatedTarget,e.target].includes(t)||this.reportOnBlur()}),t?.addEventListener?.("blur",t=>{const e=this.value.current;this.setValue(),e===this.value.current&&this.onChange(e)}),!e&&jQuery(this.wrapper).on("change",t=>{this.value.current==t.target.value||t.target?.dataset?.custom||(this.callable.lockTrigger(),this.setValue(),this.callable.unlockTrigger())})},o.prototype.setValue=function(){this.value.current=this.getActiveValue()},o.prototype.onChangeValue=function(t){t.target.dataset.custom?this.toggleCustomOption():this.setValue()},o.prototype.toggleCustomOption=function(){const t=this.lastNode(),e=this.getCustomInput();e.disabled===t.checked&&(e.disabled=!t.checked),t.checked&&e.focus()},o.prototype.getActiveValue=function(){for(const t of this.nodes)if(!t.dataset.custom&&t.checked)return t.value;return this.hasCustom?this.getCustomInput().value:""},o.prototype.setNode=function(t){t.jfbSync=this,this.nodes=t.getElementsByClassName("jet-form-builder__field radio-field"),this.rawName=this.nodes[0].name,this.name=i(this.rawName),this.inputType="radio",this.wrapper=t,this.hasCustom=!!this.lastNode()?.dataset?.custom},o.prototype.lastNode=function(){return this.nodes[this.nodes.length-1]},o.prototype.getCustomInput=function(){const t=this.lastNode().closest(".custom-option");return t?.querySelector?.("input.text-field")};const a=o,{BaseSignal:u}=JetFormBuilderAbstract;function c(){u.call(this),this.isSupported=function(t,e){return"radio"===t.type},this.runSignal=function(){this.input.calcValue=0;const t=this.input.value.current;let e=!1;for(const n of this.input.nodes){var r;if(!n.dataset.custom&&(n.checked=""+t===n.value,n.checked)){e=!0,this.input.calcValue+=parseFloat(null!==(r=n.dataset?.calculate)&&void 0!==r?r:n.value),this.triggerJQuery(n);break}}if(!this.input.hasCustom)return;const n=this.input.lastNode(),s=this.input.getCustomInput(),i=!e&&""!==t&&null!=t;n.checked=i,s.disabled===n.checked&&(s.disabled=!n.checked);const o=""+t;n.checked&&s.value!==o&&(s.value=o)}}c.prototype=Object.create(u.prototype);const l=c;r(554);const{addFilter:d}=JetPlugins.hooks;window.JetFormBuilderAbstract={...window.JetFormBuilderAbstract,RadioData:a,SignalRadio:l},d("jet.fb.inputs","jet-form-builder/radio-field",function(t){return[a,...t]}),d("jet.fb.signals","jet-form-builder/radio-field",function(t){return[l,...t]})})()})(); \ No newline at end of file +(()=>{var t={554:()=>{const{CalculatedFormula:t}=JetFormBuilderAbstract,{addAction:e}=JetPlugins.hooks,r="__JFB_OPTION_FIELD_DEFAULT_VALUE_OBSERVER__";function n(t){if("string"!=typeof t||t.length<2)return t;const e=t.charAt(0),r=t.charAt(t.length-1);return"'"===e&&"'"===r||'"'===e&&'"'===r?t.slice(1,-1):t}function s(t){return Array.isArray(t)?t.some(s):"string"==typeof t&&t.includes("%")}function i(t){return!(""===t||null===t||Array.isArray(t)&&!t.length)}function o(e,r){const o=Array.isArray(r)?r:[r],a=[],u=new Array(o.length);o.forEach(((c,l)=>{const d=new t(e);d.observe(function(t){if("string"!=typeof t)return t;const e=t.trim();return!s(e)||function(t){if("string"!=typeof t||t.length<2)return!1;const e=t.charAt(0),r=t.charAt(t.length-1);return"'"===e&&"'"===r||'"'===e&&'"'===r}(e)?e:`'${e.replace(/'/g,"\\'")}'`}(c)),d.setResult=()=>{const t=d.calculate();i(t)&&(u[l]=t,Object.keys(u).length===o.length&&u.every(i)&&(function(t,e){if(Array.isArray(e))return void t.value.setIfEmpty(e.map((t=>n(""+t))));const r=n(""+e);if(!t.isArray())return function(t){if(t.isArray()||"select"!==t.inputType)return!1;const[e]=t.nodes;if(!e||"select-one"!==e.type||e.multiple||!e.options?.length)return!1;const r=Array.from(e.options),[n]=r;return!!n&&!r.some((t=>""===t.value))&&!r.some((t=>t.defaultSelected))&&0===e.selectedIndex&&e.value===n.value}(t)?void(t.value.current=r):void t.value.setIfEmpty(r);const s=function(t){if("string"!=typeof t)return t;const e=t.trim();try{const r=JSON.parse(e);return Array.isArray(r)?r:t}catch(r){if(e.startsWith("[")&&e.endsWith("]")&&e.includes("'"))try{const r=e.replace(/'((?:\\'|[^'])*)'/g,((t,e)=>`"${e.replace(/"/g,'\\"')}"`)),n=JSON.parse(r);return Array.isArray(n)?n:t}catch(e){return t}return t}}(r);t.value.setIfEmpty(Array.isArray(s)?s.map((t=>n(""+t))):[r])}(e,Array.isArray(r)?u:u[0]),a.forEach((t=>t.clearWatchers()))))},d.setResult(),a.push(d)}))}function a(t){var e,r,n;const[i]=t.nodes,a=null!==(e=t.wrapper)&&void 0!==e?e:i,u=null!==(r=null!==(n=a?.dataset?.defaultVal)&&void 0!==n?n:i?.dataset?.defaultVal)&&void 0!==r?r:"",c=function(t){if("string"!=typeof t)return t;const e=t.trim();try{const t=JSON.parse(e);return Array.isArray(t)?t:e}catch(t){if(e.startsWith("[")&&e.endsWith("]")&&e.includes("'"))try{const t=e.replace(/'((?:\\'|[^'])*)'/g,((t,e)=>`"${e.replace(/"/g,'\\"')}"`)),r=JSON.parse(t);return Array.isArray(r)?r:e}catch(t){return e}return e}}(u);(function(t,e){if(Array.isArray(e))return e.length>0;if("string"!=typeof t)return s(e);const r=t.trim();return s(e)||r.startsWith("[")&&r.endsWith("]")})(u,c)&&o(t,c)}window[r]||(window[r]=!0,e("jet.fb.observe.after","jet-form-builder/option-field-default-value",(function(t){for(const e of t.getInputs()){const[t]=e.nodes;t&&["select","radio","checkbox"].includes(e.inputType)&&a(e)}})))}},e={};function r(n){var s=e[n];if(void 0!==s)return s.exports;var i=e[n]={exports:{}};return t[n](i,i.exports,r),i.exports}(()=>{"use strict";const{strict_mode:t=!1}=window?.JetFormBuilderSettings,e=Boolean(t),{InputData:n,ReactiveHook:s}=JetFormBuilderAbstract,{getParsedName:i}=JetFormBuilderFunctions;function o(){n.call(this),this.wrapper=null}o.prototype=Object.create(n.prototype),o.prototype.wrapper=null,o.prototype.isSupported=function(t){return t.classList.contains("checkradio-wrap")&&t.querySelector(".radio-wrap")},o.prototype.addListeners=function(){this.enterKey=new s,this.wrapper.addEventListener("change",this.onChangeValue.bind(this)),this.wrapper.addEventListener("keydown",this.handleEnterKey.bind(this));const t=this.getCustomInput();this.wrapper.addEventListener("focusout",(e=>{[...this.nodes].includes(e?.relatedTarget)||[e.relatedTarget,e.target].includes(t)||this.reportOnBlur()})),t?.addEventListener?.("blur",(t=>{const e=this.value.current;this.setValue(),e===this.value.current&&this.onChange(e)})),!e&&jQuery(this.wrapper).on("change",(t=>{this.value.current==t.target.value||t.target?.dataset?.custom||(this.callable.lockTrigger(),this.setValue(),this.callable.unlockTrigger())}))},o.prototype.setValue=function(){this.value.current=this.getActiveValue()},o.prototype.onChangeValue=function(t){t.target.dataset.custom?this.toggleCustomOption():this.setValue()},o.prototype.toggleCustomOption=function(){const t=this.lastNode(),e=this.getCustomInput();e.disabled===t.checked&&(e.disabled=!t.checked),t.checked&&e.focus()},o.prototype.getActiveValue=function(){for(const t of this.nodes)if(!t.dataset.custom&&t.checked)return t.value;return this.hasCustom?this.getCustomInput().value:""},o.prototype.setNode=function(t){t.jfbSync=this,this.nodes=t.getElementsByClassName("jet-form-builder__field radio-field"),this.rawName=this.nodes[0].name,this.name=i(this.rawName),this.inputType="radio",this.wrapper=t,this.hasCustom=!!this.lastNode()?.dataset?.custom},o.prototype.lastNode=function(){return this.nodes[this.nodes.length-1]},o.prototype.getCustomInput=function(){const t=this.lastNode().closest(".custom-option");return t?.querySelector?.("input.text-field")};const a=o,{BaseSignal:u}=JetFormBuilderAbstract;function c(){u.call(this),this.isSupported=function(t,e){return"radio"===t.type},this.runSignal=function(){this.input.calcValue=0;const t=this.input.value.current;let e=!1;for(const n of this.input.nodes){var r;if(!n.dataset.custom&&(n.checked=""+t===n.value,n.checked)){e=!0,this.input.calcValue+=parseFloat(null!==(r=n.dataset?.calculate)&&void 0!==r?r:n.value),this.triggerJQuery(n);break}}if(!this.input.hasCustom)return;const n=this.input.lastNode(),s=this.input.getCustomInput(),i=!e&&""!==t&&null!=t;n.checked=i,s.disabled===n.checked&&(s.disabled=!n.checked);const o=""+t;n.checked&&s.value!==o&&(s.value=o)}}c.prototype=Object.create(u.prototype);const l=c;r(554);const{addFilter:d}=JetPlugins.hooks;window.JetFormBuilderAbstract={...window.JetFormBuilderAbstract,RadioData:a,SignalRadio:l},d("jet.fb.inputs","jet-form-builder/radio-field",(function(t){return[a,...t]})),d("jet.fb.signals","jet-form-builder/radio-field",(function(t){return[l,...t]}))})()})(); \ No newline at end of file diff --git a/modules/option-field/assets/build/select.asset.php b/modules/option-field/assets/build/select.asset.php index 9a3e7f77d..e7bb71a71 100644 --- a/modules/option-field/assets/build/select.asset.php +++ b/modules/option-field/assets/build/select.asset.php @@ -1 +1 @@ - array(), 'version' => '23f0a66d9ec9a070c2dd'); + array(), 'version' => '321084c0cc3a7d22993b'); diff --git a/modules/option-field/assets/build/select.js b/modules/option-field/assets/build/select.js index 526e8169a..add1b3501 100644 --- a/modules/option-field/assets/build/select.js +++ b/modules/option-field/assets/build/select.js @@ -1 +1 @@ -(()=>{var t={554(){const{CalculatedFormula:t}=JetFormBuilderAbstract,{addAction:e}=JetPlugins.hooks,r="__JFB_OPTION_FIELD_DEFAULT_VALUE_OBSERVER__";function n(t){if("string"!=typeof t||t.length<2)return t;const e=t.charAt(0),r=t.charAt(t.length-1);return"'"===e&&"'"===r||'"'===e&&'"'===r?t.slice(1,-1):t}function i(t){return Array.isArray(t)?t.some(i):"string"==typeof t&&t.includes("%")}function s(t){return!(""===t||null===t||Array.isArray(t)&&!t.length)}function o(e,r){const o=Array.isArray(r)?r:[r],a=[],u=new Array(o.length);o.forEach((c,l)=>{const f=new t(e);f.observe(function(t){if("string"!=typeof t)return t;const e=t.trim();return!i(e)||function(t){if("string"!=typeof t||t.length<2)return!1;const e=t.charAt(0),r=t.charAt(t.length-1);return"'"===e&&"'"===r||'"'===e&&'"'===r}(e)?e:`'${e.replace(/'/g,"\\'")}'`}(c)),f.setResult=()=>{const t=f.calculate();s(t)&&(u[l]=t,Object.keys(u).length===o.length&&u.every(s)&&(function(t,e){if(Array.isArray(e))return void t.value.setIfEmpty(e.map(t=>n(""+t)));const r=n(""+e);if(!t.isArray())return function(t){if(t.isArray()||"select"!==t.inputType)return!1;const[e]=t.nodes;if(!e||"select-one"!==e.type||e.multiple||!e.options?.length)return!1;const r=Array.from(e.options),[n]=r;return!!n&&!r.some(t=>""===t.value)&&!r.some(t=>t.defaultSelected)&&0===e.selectedIndex&&e.value===n.value}(t)?void(t.value.current=r):void t.value.setIfEmpty(r);const i=function(t){if("string"!=typeof t)return t;const e=t.trim();try{const r=JSON.parse(e);return Array.isArray(r)?r:t}catch(r){if(e.startsWith("[")&&e.endsWith("]")&&e.includes("'"))try{const r=e.replace(/'((?:\\'|[^'])*)'/g,(t,e)=>`"${e.replace(/"/g,'\\"')}"`),n=JSON.parse(r);return Array.isArray(n)?n:t}catch(e){return t}return t}}(r);t.value.setIfEmpty(Array.isArray(i)?i.map(t=>n(""+t)):[r])}(e,Array.isArray(r)?u:u[0]),a.forEach(t=>t.clearWatchers())))},f.setResult(),a.push(f)})}function a(t){var e,r,n;const[s]=t.nodes,a=null!==(e=t.wrapper)&&void 0!==e?e:s,u=null!==(r=null!==(n=a?.dataset?.defaultVal)&&void 0!==n?n:s?.dataset?.defaultVal)&&void 0!==r?r:"",c=function(t){if("string"!=typeof t)return t;const e=t.trim();try{const t=JSON.parse(e);return Array.isArray(t)?t:e}catch(t){if(e.startsWith("[")&&e.endsWith("]")&&e.includes("'"))try{const t=e.replace(/'((?:\\'|[^'])*)'/g,(t,e)=>`"${e.replace(/"/g,'\\"')}"`),r=JSON.parse(t);return Array.isArray(r)?r:e}catch(t){return e}return e}}(u);(function(t,e){if(Array.isArray(e))return e.length>0;if("string"!=typeof t)return i(e);const r=t.trim();return i(e)||r.startsWith("[")&&r.endsWith("]")})(u,c)&&o(t,c)}window[r]||(window[r]=!0,e("jet.fb.observe.after","jet-form-builder/option-field-default-value",function(t){for(const e of t.getInputs()){const[t]=e.nodes;t&&["select","radio","checkbox"].includes(e.inputType)&&a(e)}}))}},e={};function r(n){var i=e[n];if(void 0!==i)return i.exports;var s=e[n]={exports:{}};return t[n](s,s.exports,r),s.exports}(()=>{"use strict";const{InputData:t,ReactiveHook:e}=JetFormBuilderAbstract;function n(){function r(t){return Array.isArray(t)?(1===t.length&&t[0]&&t[0].includes(",")&&(t=t[0].split(",")),t):[t].filter(Boolean)}t.call(this),this.isSupported=function(t){return"select-multiple"===t?.type},this.addListeners=function(){this.sanitize(t=>Array.isArray(t)?t:[t]),this.sanitize(r);const[t]=this.nodes;t.addEventListener("change",()=>this.setValue()),t.addEventListener("blur",()=>this.reportOnBlur()),this.enterKey=new e,t.addEventListener("keydown",this.handleEnterKey.bind(this))},this.setValue=function(){this.value.current=this.getActiveValue()},this.getActiveValue=function(){const[t]=this.nodes;return Array.from(t.options).filter(t=>t.selected).map(t=>t.value)},this.onClear=function(){this.silenceSet([])}}n.prototype=Object.create(t.prototype);const i=n,{BaseSignal:s}=JetFormBuilderAbstract;function o(){s.call(this),this.isSupported=function(t,e){return["select-multiple","select-one"].includes(t?.type)},this.runSignal=function(){const[t]=this.input.nodes,e="select-one"!==t?.type,{value:r}=this.input;this.input.calcValue=0;for(const i of t.options){var n;i.selected=e?r.current?.includes(i.value):i.value===r.current,i.selected&&(this.input.calcValue+=parseFloat(null!==(n=i.dataset?.calculate)&&void 0!==n?n:i.value))}this.triggerJQuery(t)}}o.prototype=Object.create(s.prototype);const a=o;r(554);const{addFilter:u}=JetPlugins.hooks;window.JetFormBuilderAbstract={...window.JetFormBuilderAbstract,MultiSelectData:i,SignalSelect:a},u("jet.fb.inputs","jet-form-builder/select-field",function(t){return[i,...t]}),u("jet.fb.signals","jet-form-builder/select-field",function(t){return[a,...t]})})()})(); \ No newline at end of file +(()=>{var t={554:()=>{const{CalculatedFormula:t}=JetFormBuilderAbstract,{addAction:e}=JetPlugins.hooks,r="__JFB_OPTION_FIELD_DEFAULT_VALUE_OBSERVER__";function n(t){if("string"!=typeof t||t.length<2)return t;const e=t.charAt(0),r=t.charAt(t.length-1);return"'"===e&&"'"===r||'"'===e&&'"'===r?t.slice(1,-1):t}function i(t){return Array.isArray(t)?t.some(i):"string"==typeof t&&t.includes("%")}function s(t){return!(""===t||null===t||Array.isArray(t)&&!t.length)}function o(e,r){const o=Array.isArray(r)?r:[r],a=[],u=new Array(o.length);o.forEach(((c,l)=>{const f=new t(e);f.observe(function(t){if("string"!=typeof t)return t;const e=t.trim();return!i(e)||function(t){if("string"!=typeof t||t.length<2)return!1;const e=t.charAt(0),r=t.charAt(t.length-1);return"'"===e&&"'"===r||'"'===e&&'"'===r}(e)?e:`'${e.replace(/'/g,"\\'")}'`}(c)),f.setResult=()=>{const t=f.calculate();s(t)&&(u[l]=t,Object.keys(u).length===o.length&&u.every(s)&&(function(t,e){if(Array.isArray(e))return void t.value.setIfEmpty(e.map((t=>n(""+t))));const r=n(""+e);if(!t.isArray())return function(t){if(t.isArray()||"select"!==t.inputType)return!1;const[e]=t.nodes;if(!e||"select-one"!==e.type||e.multiple||!e.options?.length)return!1;const r=Array.from(e.options),[n]=r;return!!n&&!r.some((t=>""===t.value))&&!r.some((t=>t.defaultSelected))&&0===e.selectedIndex&&e.value===n.value}(t)?void(t.value.current=r):void t.value.setIfEmpty(r);const i=function(t){if("string"!=typeof t)return t;const e=t.trim();try{const r=JSON.parse(e);return Array.isArray(r)?r:t}catch(r){if(e.startsWith("[")&&e.endsWith("]")&&e.includes("'"))try{const r=e.replace(/'((?:\\'|[^'])*)'/g,((t,e)=>`"${e.replace(/"/g,'\\"')}"`)),n=JSON.parse(r);return Array.isArray(n)?n:t}catch(e){return t}return t}}(r);t.value.setIfEmpty(Array.isArray(i)?i.map((t=>n(""+t))):[r])}(e,Array.isArray(r)?u:u[0]),a.forEach((t=>t.clearWatchers()))))},f.setResult(),a.push(f)}))}function a(t){var e,r,n;const[s]=t.nodes,a=null!==(e=t.wrapper)&&void 0!==e?e:s,u=null!==(r=null!==(n=a?.dataset?.defaultVal)&&void 0!==n?n:s?.dataset?.defaultVal)&&void 0!==r?r:"",c=function(t){if("string"!=typeof t)return t;const e=t.trim();try{const t=JSON.parse(e);return Array.isArray(t)?t:e}catch(t){if(e.startsWith("[")&&e.endsWith("]")&&e.includes("'"))try{const t=e.replace(/'((?:\\'|[^'])*)'/g,((t,e)=>`"${e.replace(/"/g,'\\"')}"`)),r=JSON.parse(t);return Array.isArray(r)?r:e}catch(t){return e}return e}}(u);(function(t,e){if(Array.isArray(e))return e.length>0;if("string"!=typeof t)return i(e);const r=t.trim();return i(e)||r.startsWith("[")&&r.endsWith("]")})(u,c)&&o(t,c)}window[r]||(window[r]=!0,e("jet.fb.observe.after","jet-form-builder/option-field-default-value",(function(t){for(const e of t.getInputs()){const[t]=e.nodes;t&&["select","radio","checkbox"].includes(e.inputType)&&a(e)}})))}},e={};function r(n){var i=e[n];if(void 0!==i)return i.exports;var s=e[n]={exports:{}};return t[n](s,s.exports,r),s.exports}(()=>{"use strict";const{InputData:t,ReactiveHook:e}=JetFormBuilderAbstract;function n(){function r(t){return Array.isArray(t)?(1===t.length&&t[0]&&t[0].includes(",")&&(t=t[0].split(",")),t):[t].filter(Boolean)}t.call(this),this.isSupported=function(t){return"select-multiple"===t?.type},this.addListeners=function(){this.sanitize((t=>Array.isArray(t)?t:[t])),this.sanitize(r);const[t]=this.nodes;t.addEventListener("change",(()=>this.setValue())),t.addEventListener("blur",(()=>this.reportOnBlur())),this.enterKey=new e,t.addEventListener("keydown",this.handleEnterKey.bind(this))},this.setValue=function(){this.value.current=this.getActiveValue()},this.getActiveValue=function(){const[t]=this.nodes;return Array.from(t.options).filter((t=>t.selected)).map((t=>t.value))},this.onClear=function(){this.silenceSet([])}}n.prototype=Object.create(t.prototype);const i=n,{BaseSignal:s}=JetFormBuilderAbstract;function o(){s.call(this),this.isSupported=function(t,e){return["select-multiple","select-one"].includes(t?.type)},this.runSignal=function(){const[t]=this.input.nodes,e="select-one"!==t?.type,{value:r}=this.input;this.input.calcValue=0;for(const i of t.options){var n;i.selected=e?r.current?.includes(i.value):i.value===r.current,i.selected&&(this.input.calcValue+=parseFloat(null!==(n=i.dataset?.calculate)&&void 0!==n?n:i.value))}this.triggerJQuery(t)}}o.prototype=Object.create(s.prototype);const a=o;r(554);const{addFilter:u}=JetPlugins.hooks;window.JetFormBuilderAbstract={...window.JetFormBuilderAbstract,MultiSelectData:i,SignalSelect:a},u("jet.fb.inputs","jet-form-builder/select-field",(function(t){return[i,...t]})),u("jet.fb.signals","jet-form-builder/select-field",(function(t){return[a,...t]}))})()})(); \ No newline at end of file diff --git a/modules/promo-banner/assets/build/index.asset.php b/modules/promo-banner/assets/build/index.asset.php index b0da4d134..4ea02d098 100644 --- a/modules/promo-banner/assets/build/index.asset.php +++ b/modules/promo-banner/assets/build/index.asset.php @@ -1 +1 @@ - array(), 'version' => 'e9ec1a333b4263f9a6f0'); + array(), 'version' => '1b38af3fde1368c66296'); diff --git a/modules/promo-banner/assets/build/index.js b/modules/promo-banner/assets/build/index.js index 345bd0404..5717106fe 100644 --- a/modules/promo-banner/assets/build/index.js +++ b/modules/promo-banner/assets/build/index.js @@ -1 +1 @@ -(()=>{"use strict";var e;e=jQuery,window.jfbPromoBanner&&e(window).load(()=>{!function(n){const o=document.createElement("div"),r=document.createElement("a");o.classList.add("jfb-promo-banner"),window.jfbPromoBanner.classes&&o.classList.add(window.jfbPromoBanner.classes),r.classList.add("jfb-promo-banner__dismiss"),r.setAttribute("href","#"),r.setAttribute("aria-label","Dismiss JetFormBuilder Promo Banner"),r.setAttribute("role","button"),r.innerHTML='',o.innerHTML=n,o.appendChild(r);const t=document.getElementById("wpbody-content"),a=document.querySelector(".wrap");a?a.prepend(o):t.prepend(o),e(o).on("click",".jfb-promo-banner__dismiss",n=>{n.preventDefault(),o.remove(),e.ajax({url:window.ajaxurl,type:"POST",dataType:"json",data:{action:window.jfbPromoBanner.action,hash:window.jfbPromoBanner.hash,nonce:window.jfbPromoBanner.nonce}})})}(window.jfbPromoBanner.banner)})})(); \ No newline at end of file +(()=>{"use strict";var e;e=jQuery,window.jfbPromoBanner&&e(window).load((()=>{!function(n){const o=document.createElement("div"),r=document.createElement("a");o.classList.add("jfb-promo-banner"),window.jfbPromoBanner.classes&&o.classList.add(window.jfbPromoBanner.classes),r.classList.add("jfb-promo-banner__dismiss"),r.setAttribute("href","#"),r.setAttribute("aria-label","Dismiss JetFormBuilder Promo Banner"),r.setAttribute("role","button"),r.innerHTML='',o.innerHTML=n,o.appendChild(r);const t=document.getElementById("wpbody-content"),a=document.querySelector(".wrap");a?a.prepend(o):t.prepend(o),e(o).on("click",".jfb-promo-banner__dismiss",(n=>{n.preventDefault(),o.remove(),e.ajax({url:window.ajaxurl,type:"POST",dataType:"json",data:{action:window.jfbPromoBanner.action,hash:window.jfbPromoBanner.hash,nonce:window.jfbPromoBanner.nonce}})}))}(window.jfbPromoBanner.banner)}))})(); \ No newline at end of file diff --git a/modules/sanitize-value/assets/build/editor.asset.php b/modules/sanitize-value/assets/build/editor.asset.php index 8c9a6ef9a..d7d8ede26 100644 --- a/modules/sanitize-value/assets/build/editor.asset.php +++ b/modules/sanitize-value/assets/build/editor.asset.php @@ -1 +1 @@ - array('react'), 'version' => 'ce614f15c06f31bb093a'); + array('react'), 'version' => '8597eb6996718bc94aed'); diff --git a/modules/sanitize-value/assets/build/editor.js b/modules/sanitize-value/assets/build/editor.js index 1e408629c..508c0297a 100644 --- a/modules/sanitize-value/assets/build/editor.js +++ b/modules/sanitize-value/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";const e="jetFBSanitizeValue",t="sanitizeValue",{getSupport:r}=JetFBActions,n="jet-forms/sanitizers",l="REGISTER",a="UNREGISTER",o={getTypeIndex:(e,t)=>e.types.findIndex(e=>e.value===t),getTypes:e=>e.types,getType(e,t){const r=o.getTypeIndex(e,t);return e.types[r]},getAllowedToMergeTypes:e=>e.types.filter(({allowMerge:e=!1})=>e).map(({value:e})=>e)},i={...o},s=e=>"object"==typeof e?e:"string"==typeof e?{value:e,label:e}:e,c={[l](e,t){Array.isArray(t.items)||(t.items=[t.items]);for(let r of t.items){if(r=s(r),!r.hasOwnProperty("value"))continue;const t=i.getTypeIndex(e,r.value);-1===t?e.types.push({...r}):e.types[t]={...e.types[t],...r}}return e},[a](e,t){const{types:r}=t;return e.types=e.types.filter(({value:e})=>!r.includes(e)),e}};Object.defineProperty(p,"name",{value:"default",configurable:!0});const u={types:[]};function p(e=u,t){const r=c[t?.type];return r?r(e,t):e}const d={register:e=>({type:l,items:e}),unRegister:e=>({type:a,types:e})},{createReduxStore:h}=wp.data,m=h(n,{reducer:p,actions:d,selectors:i}),C=window.React,{SVG:L,Path:w}=wp.primitives,v=(0,C.createElement)(L,{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,C.createElement)("path",{d:"M22.4252 2.31632C22.0034 1.89456 21.3196 1.89456 20.8978 2.31633L15.3824 7.83176L14.5541 7.0035C13.9412 6.39055 12.9935 6.26433 12.2415 6.69549L10.4954 7.69657L17.0449 14.2461L18.046 12.5C18.4771 11.748 18.3509 10.8003 17.738 10.1874L16.9097 9.35911L22.4252 3.84368C22.8469 3.42191 22.8469 2.73809 22.4252 2.31632Z",fill:"#0F172A"}),(0,C.createElement)(w,{d:"M16.0554 15.9719L8.76961 8.68604L2.96521 12.0139C1.86791 12.643 1.66816 14.1428 2.56255 15.0372L3.06918 15.5438L5.39309 14.2854C5.81286 14.0581 6.27106 14.5163 6.04375 14.936L4.78531 17.26L9.70429 22.1789C10.5987 23.0733 12.0985 22.8736 12.7276 21.7763L16.0554 15.9719Z",fill:"#0F172A"})),{useSelect:g}=wp.data,{useBlockEditContext:f}=wp.blockEditor,{useSelect:b}=wp.data,{createContext:x}=wp.element,E=x({control:{},current:!1,addNew:()=>{},remove:()=>{},edit:()=>{},onClose:()=>{}}),{useContext:y}=wp.element,_=function(){return y(E)},{isEmpty:j}=JetFBActions,{Button:B}=wp.components,M=function(){const{control:e,remove:t,current:r,addNew:n}=_(),l=!j(r);return(0,C.createElement)(B,{onClick:e=>{e.stopPropagation(),l?t():n()},className:["components-dropdown-menu__menu-item","has-text",l?"is-active":""].join(" "),icon:e.icon,"aria-checked":l,role:"menuitemcheckbox",shortcut:e.help||""},e.label)},{__:k}=wp.i18n,{ToolbarDropdownMenu:z,Button:S,Flex:Z}=wp.components,{useBlockAttributes:T}=JetFBHooks,{BaseHelp:A}=JetFBComponents,F=function({onClose:e,control:t,current:r,addNew:n,remove:l,edit:a}){const o="function"==typeof t.render?t.render:null;return(0,C.createElement)(E.Provider,{value:{control:t,current:r,addNew:n,remove:l,edit:a,onClose:e}},o?(0,C.createElement)(o,null):(0,C.createElement)(M,null))},H=e=>(e.icon=e.icon||v,e),R=function(){const[r,l]=T(),a=function(){const{clientId:t,name:r}=f(),l=g(t=>t("core/blocks").getBlockSupport(r,e),[]);return g(e=>{const t=e(n).getTypes();return Array.isArray(l)?t.filter(({value:e})=>l.includes(e)):t},[t])}().map(H),o=r[t],i=b(e=>e(n).getAllowedToMergeTypes(),[]),s=e=>{var t;return i.includes(null!==(t=e?.value)&&void 0!==t?t:e)},c=e=>o?.length?o.findIndex(t=>"string"==typeof t?t===e:t.value===e):-1;return(0,C.createElement)(z,{icon:v,label:k("Sanitize value","jet-form-builder")},({onClose:e})=>(0,C.createElement)(C.Fragment,null,(0,C.createElement)(A,null,k("Select method to clean user input before process form","jet-form-builder")),a.map((r,n)=>(0,C.createElement)(F,{key:n,control:r,onClose:e,current:o?.[c(r.value)],addNew:()=>{return e=r.value,l(r=>s(e)?{...r,[t]:[...r[t]||[],e]}:{...r,[t]:[...(r[t]||[]).filter(s),e]});var e},remove:()=>{return e=r.value,l(r=>({...r,[t]:r[t].filter(t=>{var r;return(null!==(r=t?.value)&&void 0!==r?r:t)!==e})}));var e},edit:e=>((e,r)=>l(n=>{const l=JSON.parse(JSON.stringify(n[t]||[]));let a=c(e);return-1===a&&(a=l.push({value:e})-1),"string"==typeof l[a]&&(l[a]={value:e}),l[a]={...l[a],...r},{...n,[t]:[...l]}}))(r.value,e)})),(0,C.createElement)(S,{onClick:r=>{r.stopPropagation(),e(),l(e=>({...e,[t]:void 0}))},className:["components-dropdown-menu__menu-item","has-separator"].join(" "),role:"menuitem",disabled:!o?.length},k("Reset all","jet-form-builder"))))},{createHigherOrderComponent:V}=wp.compose,{BlockControls:P}=wp.blockEditor,{useSelect:N}=wp.data,I=V(t=>r=>{const{name:n}=r,l=N(t=>t("core/blocks").getBlockSupport(n,e));return(0,C.createElement)(C.Fragment,null,(0,C.createElement)(t,{...r}),Boolean(l)&&(0,C.createElement)(P,{group:"other"},(0,C.createElement)(R,null)))},"withBlockToolbarControls"),{TextControl:J,Button:$}=wp.components,{useSuccessNotice:O}=JetFBHooks,{__:U}=wp.i18n,{useCopyToClipboard:G}=wp.compose,q="jet_fb_sv_",D=new RegExp(`^${q}`),{__:K}=wp.i18n,Q={value:"custom",label:K("Custom transform","jet-form-builder"),render:function(){var e;const{edit:t,remove:r,current:n}=_(),l=O(U("Paste the copied snippet into your theme's functions.php.","jet-form-builder")),a=G((o=n?.callback,`function jet_fb_sv_${o}( \\JFB_Modules\\Block_Parsers\\Field_Data_Parser $parser ) {\n\t$value = $parser->get_value();\n\n\t// do something with $value...\n\n\t$parser->set_value( $value );\n}`),()=>l(!0));var o;return(0,C.createElement)(C.Fragment,null,(0,C.createElement)(M,null),Boolean(n)&&(0,C.createElement)("div",{style:{padding:"6px 12px 6px 8px"}},(0,C.createElement)(J,{value:null!==(e=n?.callback)&&void 0!==e?e:"",onChange:e=>{e=function(e){return e?.length&&q!==e?(e=e.replace(/[^\w]/gi,"")).replace(D,""):""}(e),Boolean(e)?t({callback:e}):r()}}),Boolean(n?.callback)&&(0,C.createElement)($,{isLink:!0,ref:a},U("Copy the snippet","jet-form-builder"))))},help:K("Specify the name of the PHP function that will process the value","jet-form-builder"),icon:(0,C.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,C.createElement)("path",{d:"M20.8 10.7l-4.3-4.3-1.1 1.1 4.3 4.3c.1.1.1.3 0 .4l-4.3 4.3 1.1 1.1 4.3-4.3c.7-.8.7-1.9 0-2.6zM4.2 11.8l4.3-4.3-1-1-4.3 4.3c-.7.7-.7 1.8 0 2.5l4.3 4.3 1.1-1.1-4.3-4.3c-.2-.1-.2-.3-.1-.4z"})),allowMerge:!0},{__:W}=wp.i18n,X={value:"email",label:W("Sanitize email","jet-form-builder"),help:W("Strips out all characters that are not allowable in an email","jet-form-builder"),icon:(0,C.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,C.createElement)("path",{d:"M12.5939 21C14.1472 21 16.1269 20.5701 17.0711 20.1975L16.6447 18.879C16.0964 19.051 14.3299 19.6242 12.6548 19.6242C7.4467 19.6242 4.67513 16.8726 4.67513 12C4.67513 7.21338 7.50762 4.34713 12.2893 4.34713C17.132 4.34713 19.4162 7.55732 19.4162 10.7675C19.4162 14.035 19.0508 15.4968 17.4975 15.4968C16.5838 15.4968 16.0964 14.7803 16.0964 13.9777V7.5H14.4822V8.30255H14.3909C14.1777 7.67198 12.9898 7.12739 11.467 7.2707C9.18274 7.5 7.4467 9.27707 7.4467 11.8567C7.4467 14.5796 8.81726 16.672 11.467 16.758C13.203 16.8153 14.1168 16.0127 14.4822 15.1815H14.5736C14.7563 16.414 16.401 16.8439 17.467 16.8439C20.6954 16.8439 21 13.5764 21 10.7962C21 6.86943 18.0761 3 12.3807 3C6.50254 3 3 6.3535 3 11.9427C3 17.7325 6.38071 21 12.5939 21ZM11.7107 15.2962C9.73096 15.2962 9.03046 13.6051 9.03046 11.7707C9.03046 10.1083 10.0355 8.67516 11.7716 8.67516C13.599 8.67516 14.5736 9.36306 14.5736 11.7707C14.5736 14.1497 13.7513 15.2962 11.7107 15.2962Z"}))},{__:Y}=wp.i18n,ee={value:"key",label:Y("Sanitize key","jet-form-builder"),help:Y("Keys are used as internal identifiers. Lowercase \nalphanumeric characters, dashes, and underscores are allowed.","jet-form-builder"),icon:(0,C.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,C.createElement)("path",{d:"M9 13.5a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM9 16a4.002 4.002 0 003.8-2.75H15V16h2.5v-2.75H19v-2.5h-6.2A4.002 4.002 0 005 12a4 4 0 004 4z",fillRule:"evenodd",clipRule:"evenodd"}))},{__:te}=wp.i18n,re={value:"text",label:te("Sanitize text","jet-form-builder"),help:te("Checks for invalid UTF-8, converts single `<` characters \nto entities, strips all tags, removes line breaks, tabs, and extra whitespace, \nstrips percent-encoded characters","jet-form-builder"),icon:(0,C.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,C.createElement)("path",{d:"M12.9 6h-2l-4 11h1.9l1.1-3h4.2l1.1 3h1.9L12.9 6zm-2.5 6.5l1.5-4.9 1.7 4.9h-3.2z"}))},{__:ne}=wp.i18n,le={value:"textarea",label:ne("Sanitize textarea","jet-form-builder"),help:ne('The function is like "Sanitize text", but preserves \nnew lines (\\n) and other whitespace, which are legitimate \ninput in textarea elements',"jet-form-builder"),icon:(0,C.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,C.createElement)("path",{d:"M7.1 6.8L3.1 18h1.6l1.1-3h4.3l1.1 3h1.6l-4-11.2H7.1zm-.8 6.8L8 8.9l1.7 4.7H6.3zm14.5-1.5c-.3-.6-.7-1.1-1.2-1.5-.6-.4-1.2-.6-1.9-.6-.5 0-.9.1-1.4.3-.4.2-.8.5-1.1.8V6h-1.4v12h1.3l.2-1c.2.4.6.6 1 .8.4.2.9.3 1.4.3.7 0 1.2-.2 1.8-.5.5-.4 1-.9 1.3-1.5.3-.6.5-1.3.5-2.1-.1-.6-.2-1.3-.5-1.9zm-1.7 4c-.4.5-.9.8-1.6.8s-1.2-.2-1.7-.7c-.4-.5-.7-1.2-.7-2.1 0-.9.2-1.6.7-2.1.4-.5 1-.7 1.7-.7s1.2.3 1.6.8c.4.5.6 1.2.6 2 .1.8-.2 1.4-.6 2z"}))},{__:ae}=wp.i18n,oe={value:"title",label:ae("Sanitize title","jet-form-builder"),help:ae("Sanitizes a string into a slug, which can be used in \nURLs or HTML attributes","jet-form-builder"),icon:(0,C.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,C.createElement)("path",{d:"M17.6 7c-.6.9-1.5 1.7-2.6 2v1h2v7h2V7h-1.4zM11 11H7V7H5v10h2v-4h4v4h2V7h-2v4z"}))},{__:ie}=wp.i18n,se={value:"url",label:ie("Sanitize url","jet-form-builder"),help:ie("Sanitizes a URL for database or redirect usage","jet-form-builder"),icon:(0,C.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,C.createElement)("path",{d:"M19.5 4.5h-7V6h4.44l-5.97 5.97 1.06 1.06L18 7.06v4.44h1.5v-7Zm-13 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3H17v3a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h3V5.5h-3Z"}))},{__:ce}=wp.i18n,ue={value:"user",label:ce("Sanitize user name","jet-form-builder"),help:ce("Sanitizes a username, stripping out unsafe characters","jet-form-builder"),icon:(0,C.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,C.createElement)("path",{fillRule:"evenodd",d:"M7.25 16.437a6.5 6.5 0 1 1 9.5 0V16A2.75 2.75 0 0 0 14 13.25h-4A2.75 2.75 0 0 0 7.25 16v.437Zm1.5 1.193a6.47 6.47 0 0 0 3.25.87 6.47 6.47 0 0 0 3.25-.87V16c0-.69-.56-1.25-1.25-1.25h-4c-.69 0-1.25.56-1.25 1.25v1.63ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm10-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",clipRule:"evenodd"}))},{__:pe}=wp.i18n,de={value:"int",label:pe("Integer","jet-form-builder"),help:pe("An integer is a number of the set {..., -2, -1, 0, 1, 2, ...}.","jet-form-builder"),icon:(0,C.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"800px",height:"800px",viewBox:"0 0 56 56"},(0,C.createElement)("path",{d:"M 13.7851 49.5742 L 42.2382 49.5742 C 47.1366 49.5742 49.5743 47.1367 49.5743 42.3086 L 49.5743 13.6914 C 49.5743 8.8633 47.1366 6.4258 42.2382 6.4258 L 13.7851 6.4258 C 8.9101 6.4258 6.4257 8.8398 6.4257 13.6914 L 6.4257 42.3086 C 6.4257 47.1602 8.9101 49.5742 13.7851 49.5742 Z M 13.8554 45.8008 C 11.5117 45.8008 10.1992 44.5586 10.1992 42.1211 L 10.1992 13.8789 C 10.1992 11.4414 11.5117 10.1992 13.8554 10.1992 L 42.1679 10.1992 C 44.4882 10.1992 45.8007 11.4414 45.8007 13.8789 L 45.8007 42.1211 C 45.8007 44.5586 44.4882 45.8008 42.1679 45.8008 Z M 21.9882 39.4023 C 22.9023 39.4023 23.4648 38.9336 23.6523 38.0664 L 24.7070 33.0274 L 29.0663 33.0274 L 28.1054 37.6211 C 27.8944 38.5820 28.5742 39.4023 29.5351 39.4023 C 30.4960 39.4023 31.1054 38.9336 31.2695 38.0664 L 32.3241 33.0039 L 34.7617 33.0039 C 35.6757 33.0039 36.3320 32.3242 36.3320 31.4336 C 36.3320 30.6367 35.7695 30.0508 34.9960 30.0508 L 32.9570 30.0508 L 33.9648 25.2930 L 36.4492 25.2930 C 37.3398 25.2930 37.9960 24.6133 37.9960 23.7227 C 37.9960 22.9258 37.4335 22.3398 36.6601 22.3398 L 34.5742 22.3398 L 35.4882 17.9571 C 35.6757 16.9961 34.9726 16.1758 34.0117 16.1758 C 33.0976 16.1758 32.5117 16.6445 32.3241 17.5352 L 31.3163 22.3398 L 26.9570 22.3398 L 27.8710 17.9571 C 28.0585 17.0196 27.4023 16.1758 26.4179 16.1758 C 25.4804 16.1758 24.8944 16.6445 24.7070 17.5352 L 23.7226 22.3398 L 21.2382 22.3398 C 20.3476 22.3398 19.6913 23.0196 19.6913 23.9102 C 19.6913 24.7071 20.2539 25.2930 21.0273 25.2930 L 23.0898 25.2930 L 22.0820 30.0508 L 19.5742 30.0508 C 18.6835 30.0508 18.0039 30.7305 18.0039 31.6211 C 18.0039 32.4180 18.5663 33.0039 19.3632 33.0039 L 21.4726 33.0039 L 20.5117 37.6211 C 20.3241 38.5820 21.0273 39.4023 21.9882 39.4023 Z M 25.1523 30.3320 L 26.2304 25.0586 L 30.9413 25.0586 L 29.8398 30.3320 Z",fill:"currentColor"}))},{__:he}=wp.i18n,me={value:"number",label:he("Number","jet-form-builder"),help:he("It can be either an integer or a non-integer","jet-form-builder"),icon:(0,C.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"800px",height:"800px",viewBox:"0 0 56 56"},(0,C.createElement)("path",{d:"M 13.7851 49.5742 L 42.2382 49.5742 C 47.1366 49.5742 49.5743 47.1367 49.5743 42.3086 L 49.5743 13.6914 C 49.5743 8.8633 47.1366 6.4258 42.2382 6.4258 L 13.7851 6.4258 C 8.9101 6.4258 6.4257 8.8398 6.4257 13.6914 L 6.4257 42.3086 C 6.4257 47.1602 8.9101 49.5742 13.7851 49.5742 Z M 13.8554 45.8008 C 11.5117 45.8008 10.1992 44.5586 10.1992 42.1211 L 10.1992 13.8789 C 10.1992 11.4414 11.5117 10.1992 13.8554 10.1992 L 42.1679 10.1992 C 44.4882 10.1992 45.8007 11.4414 45.8007 13.8789 L 45.8007 42.1211 C 45.8007 44.5586 44.4882 45.8008 42.1679 45.8008 Z M 21.9882 39.4023 C 22.9023 39.4023 23.4648 38.9336 23.6523 38.0664 L 24.7070 33.0274 L 29.0663 33.0274 L 28.1054 37.6211 C 27.8944 38.5820 28.5742 39.4023 29.5351 39.4023 C 30.4960 39.4023 31.1054 38.9336 31.2695 38.0664 L 32.3241 33.0039 L 34.7617 33.0039 C 35.6757 33.0039 36.3320 32.3242 36.3320 31.4336 C 36.3320 30.6367 35.7695 30.0508 34.9960 30.0508 L 32.9570 30.0508 L 33.9648 25.2930 L 36.4492 25.2930 C 37.3398 25.2930 37.9960 24.6133 37.9960 23.7227 C 37.9960 22.9258 37.4335 22.3398 36.6601 22.3398 L 34.5742 22.3398 L 35.4882 17.9571 C 35.6757 16.9961 34.9726 16.1758 34.0117 16.1758 C 33.0976 16.1758 32.5117 16.6445 32.3241 17.5352 L 31.3163 22.3398 L 26.9570 22.3398 L 27.8710 17.9571 C 28.0585 17.0196 27.4023 16.1758 26.4179 16.1758 C 25.4804 16.1758 24.8944 16.6445 24.7070 17.5352 L 23.7226 22.3398 L 21.2382 22.3398 C 20.3476 22.3398 19.6913 23.0196 19.6913 23.9102 C 19.6913 24.7071 20.2539 25.2930 21.0273 25.2930 L 23.0898 25.2930 L 22.0820 30.0508 L 19.5742 30.0508 C 18.6835 30.0508 18.0039 30.7305 18.0039 31.6211 C 18.0039 32.4180 18.5663 33.0039 19.3632 33.0039 L 21.4726 33.0039 L 20.5117 37.6211 C 20.3241 38.5820 21.0273 39.4023 21.9882 39.4023 Z M 25.1523 30.3320 L 26.2304 25.0586 L 30.9413 25.0586 L 29.8398 30.3320 Z",fill:"currentColor"}))},{__:Ce}=wp.i18n,Le={value:"absint",label:Ce("Positive integer","jet-form-builder"),help:Ce("An integer that must be greater than or equal to zero","jet-form-builder"),icon:(0,C.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"800px",height:"800px",viewBox:"0 0 56 56"},(0,C.createElement)("path",{d:"M 13.7851 49.5742 L 42.2382 49.5742 C 47.1366 49.5742 49.5743 47.1367 49.5743 42.3086 L 49.5743 13.6914 C 49.5743 8.8633 47.1366 6.4258 42.2382 6.4258 L 13.7851 6.4258 C 8.9101 6.4258 6.4257 8.8398 6.4257 13.6914 L 6.4257 42.3086 C 6.4257 47.1602 8.9101 49.5742 13.7851 49.5742 Z M 13.8554 45.8008 C 11.5117 45.8008 10.1992 44.5586 10.1992 42.1211 L 10.1992 13.8789 C 10.1992 11.4414 11.5117 10.1992 13.8554 10.1992 L 42.1679 10.1992 C 44.4882 10.1992 45.8007 11.4414 45.8007 13.8789 L 45.8007 42.1211 C 45.8007 44.5586 44.4882 45.8008 42.1679 45.8008 Z M 21.9882 39.4023 C 22.9023 39.4023 23.4648 38.9336 23.6523 38.0664 L 24.7070 33.0274 L 29.0663 33.0274 L 28.1054 37.6211 C 27.8944 38.5820 28.5742 39.4023 29.5351 39.4023 C 30.4960 39.4023 31.1054 38.9336 31.2695 38.0664 L 32.3241 33.0039 L 34.7617 33.0039 C 35.6757 33.0039 36.3320 32.3242 36.3320 31.4336 C 36.3320 30.6367 35.7695 30.0508 34.9960 30.0508 L 32.9570 30.0508 L 33.9648 25.2930 L 36.4492 25.2930 C 37.3398 25.2930 37.9960 24.6133 37.9960 23.7227 C 37.9960 22.9258 37.4335 22.3398 36.6601 22.3398 L 34.5742 22.3398 L 35.4882 17.9571 C 35.6757 16.9961 34.9726 16.1758 34.0117 16.1758 C 33.0976 16.1758 32.5117 16.6445 32.3241 17.5352 L 31.3163 22.3398 L 26.9570 22.3398 L 27.8710 17.9571 C 28.0585 17.0196 27.4023 16.1758 26.4179 16.1758 C 25.4804 16.1758 24.8944 16.6445 24.7070 17.5352 L 23.7226 22.3398 L 21.2382 22.3398 C 20.3476 22.3398 19.6913 23.0196 19.6913 23.9102 C 19.6913 24.7071 20.2539 25.2930 21.0273 25.2930 L 23.0898 25.2930 L 22.0820 30.0508 L 19.5742 30.0508 C 18.6835 30.0508 18.0039 30.7305 18.0039 31.6211 C 18.0039 32.4180 18.5663 33.0039 19.3632 33.0039 L 21.4726 33.0039 L 20.5117 37.6211 C 20.3241 38.5820 21.0273 39.4023 21.9882 39.4023 Z M 25.1523 30.3320 L 26.2304 25.0586 L 30.9413 25.0586 L 29.8398 30.3320 Z",fill:"currentColor"}))},{__:we}=wp.i18n,ve={value:"absnumber",label:we("Positive number","jet-form-builder"),help:we("An integer or a non-integer that must be greater than or equal to zero","jet-form-builder"),icon:(0,C.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"800px",height:"800px",viewBox:"0 0 56 56"},(0,C.createElement)("path",{d:"M 13.7851 49.5742 L 42.2382 49.5742 C 47.1366 49.5742 49.5743 47.1367 49.5743 42.3086 L 49.5743 13.6914 C 49.5743 8.8633 47.1366 6.4258 42.2382 6.4258 L 13.7851 6.4258 C 8.9101 6.4258 6.4257 8.8398 6.4257 13.6914 L 6.4257 42.3086 C 6.4257 47.1602 8.9101 49.5742 13.7851 49.5742 Z M 13.8554 45.8008 C 11.5117 45.8008 10.1992 44.5586 10.1992 42.1211 L 10.1992 13.8789 C 10.1992 11.4414 11.5117 10.1992 13.8554 10.1992 L 42.1679 10.1992 C 44.4882 10.1992 45.8007 11.4414 45.8007 13.8789 L 45.8007 42.1211 C 45.8007 44.5586 44.4882 45.8008 42.1679 45.8008 Z M 21.9882 39.4023 C 22.9023 39.4023 23.4648 38.9336 23.6523 38.0664 L 24.7070 33.0274 L 29.0663 33.0274 L 28.1054 37.6211 C 27.8944 38.5820 28.5742 39.4023 29.5351 39.4023 C 30.4960 39.4023 31.1054 38.9336 31.2695 38.0664 L 32.3241 33.0039 L 34.7617 33.0039 C 35.6757 33.0039 36.3320 32.3242 36.3320 31.4336 C 36.3320 30.6367 35.7695 30.0508 34.9960 30.0508 L 32.9570 30.0508 L 33.9648 25.2930 L 36.4492 25.2930 C 37.3398 25.2930 37.9960 24.6133 37.9960 23.7227 C 37.9960 22.9258 37.4335 22.3398 36.6601 22.3398 L 34.5742 22.3398 L 35.4882 17.9571 C 35.6757 16.9961 34.9726 16.1758 34.0117 16.1758 C 33.0976 16.1758 32.5117 16.6445 32.3241 17.5352 L 31.3163 22.3398 L 26.9570 22.3398 L 27.8710 17.9571 C 28.0585 17.0196 27.4023 16.1758 26.4179 16.1758 C 25.4804 16.1758 24.8944 16.6445 24.7070 17.5352 L 23.7226 22.3398 L 21.2382 22.3398 C 20.3476 22.3398 19.6913 23.0196 19.6913 23.9102 C 19.6913 24.7071 20.2539 25.2930 21.0273 25.2930 L 23.0898 25.2930 L 22.0820 30.0508 L 19.5742 30.0508 C 18.6835 30.0508 18.0039 30.7305 18.0039 31.6211 C 18.0039 32.4180 18.5663 33.0039 19.3632 33.0039 L 21.4726 33.0039 L 20.5117 37.6211 C 20.3241 38.5820 21.0273 39.4023 21.9882 39.4023 Z M 25.1523 30.3320 L 26.2304 25.0586 L 30.9413 25.0586 L 29.8398 30.3320 Z",fill:"currentColor"}))},{register:ge,dispatch:fe}=wp.data,{addFilter:be}=wp.hooks,{__:xe}=wp.i18n;be("blocks.registerBlockType","jet-form-builder/sanitize-value-support",function(n,l){return r(n,e)?(n.attributes={...n.attributes,[t]:{type:"array",default:[]}},n):n}),be("editor.BlockEdit","jet-form-builder/sanitize-value-controls",I),ge(m);const Ee=window.JetFBValueSanitizers;fe(n).register(Ee),fe(n).register([X,ee,re,le,oe,se,ue,de,me,Le,ve,Q])})(); \ No newline at end of file +(()=>{"use strict";const e="jetFBSanitizeValue",t="sanitizeValue",{getSupport:r}=JetFBActions,n="jet-forms/sanitizers",l="REGISTER",a="UNREGISTER",i={getTypeIndex:(e,t)=>e.types.findIndex((e=>e.value===t)),getTypes:e=>e.types,getType(e,t){const r=i.getTypeIndex(e,t);return e.types[r]},getAllowedToMergeTypes:e=>e.types.filter((({allowMerge:e=!1})=>e)).map((({value:e})=>e))},o={...i},s={[l](e,t){Array.isArray(t.items)||(t.items=[t.items]);for(let n of t.items){if(n="object"==typeof(r=n)?r:"string"==typeof r?{value:r,label:r}:r,!n.hasOwnProperty("value"))continue;const t=o.getTypeIndex(e,n.value);-1===t?e.types.push({...n}):e.types[t]={...e.types[t],...n}}var r;return e},[a](e,t){const{types:r}=t;return e.types=e.types.filter((({value:e})=>!r.includes(e))),e}},c={types:[]},u={register:e=>({type:l,items:e}),unRegister:e=>({type:a,types:e})},{createReduxStore:p}=wp.data,d=p(n,{reducer:function(e=c,t){const r=s[t?.type];return r?r(e,t):e},actions:u,selectors:o}),h=window.React,{SVG:m,Path:C}=wp.primitives,L=(0,h.createElement)(m,{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M22.4252 2.31632C22.0034 1.89456 21.3196 1.89456 20.8978 2.31633L15.3824 7.83176L14.5541 7.0035C13.9412 6.39055 12.9935 6.26433 12.2415 6.69549L10.4954 7.69657L17.0449 14.2461L18.046 12.5C18.4771 11.748 18.3509 10.8003 17.738 10.1874L16.9097 9.35911L22.4252 3.84368C22.8469 3.42191 22.8469 2.73809 22.4252 2.31632Z",fill:"#0F172A"}),(0,h.createElement)(C,{d:"M16.0554 15.9719L8.76961 8.68604L2.96521 12.0139C1.86791 12.643 1.66816 14.1428 2.56255 15.0372L3.06918 15.5438L5.39309 14.2854C5.81286 14.0581 6.27106 14.5163 6.04375 14.936L4.78531 17.26L9.70429 22.1789C10.5987 23.0733 12.0985 22.8736 12.7276 21.7763L16.0554 15.9719Z",fill:"#0F172A"})),{useSelect:w}=wp.data,{useBlockEditContext:v}=wp.blockEditor,{useSelect:g}=wp.data,{createContext:f}=wp.element,b=f({control:{},current:!1,addNew:()=>{},remove:()=>{},edit:()=>{},onClose:()=>{}}),{useContext:x}=wp.element,E=function(){return x(b)},{isEmpty:y}=JetFBActions,{Button:_}=wp.components,j=function(){const{control:e,remove:t,current:r,addNew:n}=E(),l=!y(r);return(0,h.createElement)(_,{onClick:e=>{e.stopPropagation(),l?t():n()},className:["components-dropdown-menu__menu-item","has-text",l?"is-active":""].join(" "),icon:e.icon,"aria-checked":l,role:"menuitemcheckbox",shortcut:e.help||""},e.label)},{__:B}=wp.i18n,{ToolbarDropdownMenu:M,Button:k,Flex:z}=wp.components,{useBlockAttributes:S}=JetFBHooks,{BaseHelp:Z}=JetFBComponents,T=function({onClose:e,control:t,current:r,addNew:n,remove:l,edit:a}){const i="function"==typeof t.render?t.render:null;return(0,h.createElement)(b.Provider,{value:{control:t,current:r,addNew:n,remove:l,edit:a,onClose:e}},i?(0,h.createElement)(i,null):(0,h.createElement)(j,null))},A=e=>(e.icon=e.icon||L,e),F=function(){const[r,l]=S(),a=function(){const{clientId:t,name:r}=v(),l=w((t=>t("core/blocks").getBlockSupport(r,e)),[]);return w((e=>{const t=e(n).getTypes();return Array.isArray(l)?t.filter((({value:e})=>l.includes(e))):t}),[t])}().map(A),i=r[t],o=g((e=>e(n).getAllowedToMergeTypes()),[]),s=e=>{var t;return o.includes(null!==(t=e?.value)&&void 0!==t?t:e)},c=e=>i?.length?i.findIndex((t=>"string"==typeof t?t===e:t.value===e)):-1;return(0,h.createElement)(M,{icon:L,label:B("Sanitize value","jet-form-builder")},(({onClose:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Z,null,B("Select method to clean user input before process form","jet-form-builder")),a.map(((r,n)=>(0,h.createElement)(T,{key:n,control:r,onClose:e,current:i?.[c(r.value)],addNew:()=>{return e=r.value,l((r=>s(e)?{...r,[t]:[...r[t]||[],e]}:{...r,[t]:[...(r[t]||[]).filter(s),e]}));var e},remove:()=>{return e=r.value,l((r=>({...r,[t]:r[t].filter((t=>{var r;return(null!==(r=t?.value)&&void 0!==r?r:t)!==e}))})));var e},edit:e=>((e,r)=>l((n=>{const l=JSON.parse(JSON.stringify(n[t]||[]));let a=c(e);return-1===a&&(a=l.push({value:e})-1),"string"==typeof l[a]&&(l[a]={value:e}),l[a]={...l[a],...r},{...n,[t]:[...l]}})))(r.value,e)}))),(0,h.createElement)(k,{onClick:r=>{r.stopPropagation(),e(),l((e=>({...e,[t]:void 0})))},className:["components-dropdown-menu__menu-item","has-separator"].join(" "),role:"menuitem",disabled:!i?.length},B("Reset all","jet-form-builder")))))},{createHigherOrderComponent:H}=wp.compose,{BlockControls:R}=wp.blockEditor,{useSelect:V}=wp.data,N=H((t=>r=>{const{name:n}=r,l=V((t=>t("core/blocks").getBlockSupport(n,e)));return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(t,{...r}),Boolean(l)&&(0,h.createElement)(R,{group:"other"},(0,h.createElement)(F,null)))}),"withBlockToolbarControls"),{TextControl:P,Button:I}=wp.components,{useSuccessNotice:J}=JetFBHooks,{__:$}=wp.i18n,{useCopyToClipboard:O}=wp.compose,U="jet_fb_sv_",G=new RegExp(`^${U}`),{__:q}=wp.i18n,D={value:"custom",label:q("Custom transform","jet-form-builder"),render:function(){var e;const{edit:t,remove:r,current:n}=E(),l=J($("Paste the copied snippet into your theme's functions.php.","jet-form-builder")),a=O((i=n?.callback,`function jet_fb_sv_${i}( \\JFB_Modules\\Block_Parsers\\Field_Data_Parser $parser ) {\n\t$value = $parser->get_value();\n\n\t// do something with $value...\n\n\t$parser->set_value( $value );\n}`),(()=>l(!0)));var i;return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(j,null),Boolean(n)&&(0,h.createElement)("div",{style:{padding:"6px 12px 6px 8px"}},(0,h.createElement)(P,{value:null!==(e=n?.callback)&&void 0!==e?e:"",onChange:e=>{e=function(e){return e?.length&&U!==e?(e=e.replace(/[^\w]/gi,"")).replace(G,""):""}(e),Boolean(e)?t({callback:e}):r()}}),Boolean(n?.callback)&&(0,h.createElement)(I,{isLink:!0,ref:a},$("Copy the snippet","jet-form-builder"))))},help:q("Specify the name of the PHP function that will process the value","jet-form-builder"),icon:(0,h.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,h.createElement)("path",{d:"M20.8 10.7l-4.3-4.3-1.1 1.1 4.3 4.3c.1.1.1.3 0 .4l-4.3 4.3 1.1 1.1 4.3-4.3c.7-.8.7-1.9 0-2.6zM4.2 11.8l4.3-4.3-1-1-4.3 4.3c-.7.7-.7 1.8 0 2.5l4.3 4.3 1.1-1.1-4.3-4.3c-.2-.1-.2-.3-.1-.4z"})),allowMerge:!0},{__:K}=wp.i18n,Q={value:"email",label:K("Sanitize email","jet-form-builder"),help:K("Strips out all characters that are not allowable in an email","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false"},(0,h.createElement)("path",{d:"M12.5939 21C14.1472 21 16.1269 20.5701 17.0711 20.1975L16.6447 18.879C16.0964 19.051 14.3299 19.6242 12.6548 19.6242C7.4467 19.6242 4.67513 16.8726 4.67513 12C4.67513 7.21338 7.50762 4.34713 12.2893 4.34713C17.132 4.34713 19.4162 7.55732 19.4162 10.7675C19.4162 14.035 19.0508 15.4968 17.4975 15.4968C16.5838 15.4968 16.0964 14.7803 16.0964 13.9777V7.5H14.4822V8.30255H14.3909C14.1777 7.67198 12.9898 7.12739 11.467 7.2707C9.18274 7.5 7.4467 9.27707 7.4467 11.8567C7.4467 14.5796 8.81726 16.672 11.467 16.758C13.203 16.8153 14.1168 16.0127 14.4822 15.1815H14.5736C14.7563 16.414 16.401 16.8439 17.467 16.8439C20.6954 16.8439 21 13.5764 21 10.7962C21 6.86943 18.0761 3 12.3807 3C6.50254 3 3 6.3535 3 11.9427C3 17.7325 6.38071 21 12.5939 21ZM11.7107 15.2962C9.73096 15.2962 9.03046 13.6051 9.03046 11.7707C9.03046 10.1083 10.0355 8.67516 11.7716 8.67516C13.599 8.67516 14.5736 9.36306 14.5736 11.7707C14.5736 14.1497 13.7513 15.2962 11.7107 15.2962Z"}))},{__:W}=wp.i18n,X={value:"key",label:W("Sanitize key","jet-form-builder"),help:W("Keys are used as internal identifiers. Lowercase \nalphanumeric characters, dashes, and underscores are allowed.","jet-form-builder"),icon:(0,h.createElement)("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,h.createElement)("path",{d:"M9 13.5a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM9 16a4.002 4.002 0 003.8-2.75H15V16h2.5v-2.75H19v-2.5h-6.2A4.002 4.002 0 005 12a4 4 0 004 4z",fillRule:"evenodd",clipRule:"evenodd"}))},{__:Y}=wp.i18n,ee={value:"text",label:Y("Sanitize text","jet-form-builder"),help:Y("Checks for invalid UTF-8, converts single `<` characters \nto entities, strips all tags, removes line breaks, tabs, and extra whitespace, \nstrips percent-encoded characters","jet-form-builder"),icon:(0,h.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,h.createElement)("path",{d:"M12.9 6h-2l-4 11h1.9l1.1-3h4.2l1.1 3h1.9L12.9 6zm-2.5 6.5l1.5-4.9 1.7 4.9h-3.2z"}))},{__:te}=wp.i18n,re={value:"textarea",label:te("Sanitize textarea","jet-form-builder"),help:te('The function is like "Sanitize text", but preserves \nnew lines (\\n) and other whitespace, which are legitimate \ninput in textarea elements',"jet-form-builder"),icon:(0,h.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,h.createElement)("path",{d:"M7.1 6.8L3.1 18h1.6l1.1-3h4.3l1.1 3h1.6l-4-11.2H7.1zm-.8 6.8L8 8.9l1.7 4.7H6.3zm14.5-1.5c-.3-.6-.7-1.1-1.2-1.5-.6-.4-1.2-.6-1.9-.6-.5 0-.9.1-1.4.3-.4.2-.8.5-1.1.8V6h-1.4v12h1.3l.2-1c.2.4.6.6 1 .8.4.2.9.3 1.4.3.7 0 1.2-.2 1.8-.5.5-.4 1-.9 1.3-1.5.3-.6.5-1.3.5-2.1-.1-.6-.2-1.3-.5-1.9zm-1.7 4c-.4.5-.9.8-1.6.8s-1.2-.2-1.7-.7c-.4-.5-.7-1.2-.7-2.1 0-.9.2-1.6.7-2.1.4-.5 1-.7 1.7-.7s1.2.3 1.6.8c.4.5.6 1.2.6 2 .1.8-.2 1.4-.6 2z"}))},{__:ne}=wp.i18n,le={value:"title",label:ne("Sanitize title","jet-form-builder"),help:ne("Sanitizes a string into a slug, which can be used in \nURLs or HTML attributes","jet-form-builder"),icon:(0,h.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,h.createElement)("path",{d:"M17.6 7c-.6.9-1.5 1.7-2.6 2v1h2v7h2V7h-1.4zM11 11H7V7H5v10h2v-4h4v4h2V7h-2v4z"}))},{__:ae}=wp.i18n,ie={value:"url",label:ae("Sanitize url","jet-form-builder"),help:ae("Sanitizes a URL for database or redirect usage","jet-form-builder"),icon:(0,h.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,h.createElement)("path",{d:"M19.5 4.5h-7V6h4.44l-5.97 5.97 1.06 1.06L18 7.06v4.44h1.5v-7Zm-13 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3H17v3a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h3V5.5h-3Z"}))},{__:oe}=wp.i18n,se={value:"user",label:oe("Sanitize user name","jet-form-builder"),help:oe("Sanitizes a username, stripping out unsafe characters","jet-form-builder"),icon:(0,h.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,h.createElement)("path",{fillRule:"evenodd",d:"M7.25 16.437a6.5 6.5 0 1 1 9.5 0V16A2.75 2.75 0 0 0 14 13.25h-4A2.75 2.75 0 0 0 7.25 16v.437Zm1.5 1.193a6.47 6.47 0 0 0 3.25.87 6.47 6.47 0 0 0 3.25-.87V16c0-.69-.56-1.25-1.25-1.25h-4c-.69 0-1.25.56-1.25 1.25v1.63ZM4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm10-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",clipRule:"evenodd"}))},{__:ce}=wp.i18n,ue={value:"int",label:ce("Integer","jet-form-builder"),help:ce("An integer is a number of the set {..., -2, -1, 0, 1, 2, ...}.","jet-form-builder"),icon:(0,h.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"800px",height:"800px",viewBox:"0 0 56 56"},(0,h.createElement)("path",{d:"M 13.7851 49.5742 L 42.2382 49.5742 C 47.1366 49.5742 49.5743 47.1367 49.5743 42.3086 L 49.5743 13.6914 C 49.5743 8.8633 47.1366 6.4258 42.2382 6.4258 L 13.7851 6.4258 C 8.9101 6.4258 6.4257 8.8398 6.4257 13.6914 L 6.4257 42.3086 C 6.4257 47.1602 8.9101 49.5742 13.7851 49.5742 Z M 13.8554 45.8008 C 11.5117 45.8008 10.1992 44.5586 10.1992 42.1211 L 10.1992 13.8789 C 10.1992 11.4414 11.5117 10.1992 13.8554 10.1992 L 42.1679 10.1992 C 44.4882 10.1992 45.8007 11.4414 45.8007 13.8789 L 45.8007 42.1211 C 45.8007 44.5586 44.4882 45.8008 42.1679 45.8008 Z M 21.9882 39.4023 C 22.9023 39.4023 23.4648 38.9336 23.6523 38.0664 L 24.7070 33.0274 L 29.0663 33.0274 L 28.1054 37.6211 C 27.8944 38.5820 28.5742 39.4023 29.5351 39.4023 C 30.4960 39.4023 31.1054 38.9336 31.2695 38.0664 L 32.3241 33.0039 L 34.7617 33.0039 C 35.6757 33.0039 36.3320 32.3242 36.3320 31.4336 C 36.3320 30.6367 35.7695 30.0508 34.9960 30.0508 L 32.9570 30.0508 L 33.9648 25.2930 L 36.4492 25.2930 C 37.3398 25.2930 37.9960 24.6133 37.9960 23.7227 C 37.9960 22.9258 37.4335 22.3398 36.6601 22.3398 L 34.5742 22.3398 L 35.4882 17.9571 C 35.6757 16.9961 34.9726 16.1758 34.0117 16.1758 C 33.0976 16.1758 32.5117 16.6445 32.3241 17.5352 L 31.3163 22.3398 L 26.9570 22.3398 L 27.8710 17.9571 C 28.0585 17.0196 27.4023 16.1758 26.4179 16.1758 C 25.4804 16.1758 24.8944 16.6445 24.7070 17.5352 L 23.7226 22.3398 L 21.2382 22.3398 C 20.3476 22.3398 19.6913 23.0196 19.6913 23.9102 C 19.6913 24.7071 20.2539 25.2930 21.0273 25.2930 L 23.0898 25.2930 L 22.0820 30.0508 L 19.5742 30.0508 C 18.6835 30.0508 18.0039 30.7305 18.0039 31.6211 C 18.0039 32.4180 18.5663 33.0039 19.3632 33.0039 L 21.4726 33.0039 L 20.5117 37.6211 C 20.3241 38.5820 21.0273 39.4023 21.9882 39.4023 Z M 25.1523 30.3320 L 26.2304 25.0586 L 30.9413 25.0586 L 29.8398 30.3320 Z",fill:"currentColor"}))},{__:pe}=wp.i18n,de={value:"number",label:pe("Number","jet-form-builder"),help:pe("It can be either an integer or a non-integer","jet-form-builder"),icon:(0,h.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"800px",height:"800px",viewBox:"0 0 56 56"},(0,h.createElement)("path",{d:"M 13.7851 49.5742 L 42.2382 49.5742 C 47.1366 49.5742 49.5743 47.1367 49.5743 42.3086 L 49.5743 13.6914 C 49.5743 8.8633 47.1366 6.4258 42.2382 6.4258 L 13.7851 6.4258 C 8.9101 6.4258 6.4257 8.8398 6.4257 13.6914 L 6.4257 42.3086 C 6.4257 47.1602 8.9101 49.5742 13.7851 49.5742 Z M 13.8554 45.8008 C 11.5117 45.8008 10.1992 44.5586 10.1992 42.1211 L 10.1992 13.8789 C 10.1992 11.4414 11.5117 10.1992 13.8554 10.1992 L 42.1679 10.1992 C 44.4882 10.1992 45.8007 11.4414 45.8007 13.8789 L 45.8007 42.1211 C 45.8007 44.5586 44.4882 45.8008 42.1679 45.8008 Z M 21.9882 39.4023 C 22.9023 39.4023 23.4648 38.9336 23.6523 38.0664 L 24.7070 33.0274 L 29.0663 33.0274 L 28.1054 37.6211 C 27.8944 38.5820 28.5742 39.4023 29.5351 39.4023 C 30.4960 39.4023 31.1054 38.9336 31.2695 38.0664 L 32.3241 33.0039 L 34.7617 33.0039 C 35.6757 33.0039 36.3320 32.3242 36.3320 31.4336 C 36.3320 30.6367 35.7695 30.0508 34.9960 30.0508 L 32.9570 30.0508 L 33.9648 25.2930 L 36.4492 25.2930 C 37.3398 25.2930 37.9960 24.6133 37.9960 23.7227 C 37.9960 22.9258 37.4335 22.3398 36.6601 22.3398 L 34.5742 22.3398 L 35.4882 17.9571 C 35.6757 16.9961 34.9726 16.1758 34.0117 16.1758 C 33.0976 16.1758 32.5117 16.6445 32.3241 17.5352 L 31.3163 22.3398 L 26.9570 22.3398 L 27.8710 17.9571 C 28.0585 17.0196 27.4023 16.1758 26.4179 16.1758 C 25.4804 16.1758 24.8944 16.6445 24.7070 17.5352 L 23.7226 22.3398 L 21.2382 22.3398 C 20.3476 22.3398 19.6913 23.0196 19.6913 23.9102 C 19.6913 24.7071 20.2539 25.2930 21.0273 25.2930 L 23.0898 25.2930 L 22.0820 30.0508 L 19.5742 30.0508 C 18.6835 30.0508 18.0039 30.7305 18.0039 31.6211 C 18.0039 32.4180 18.5663 33.0039 19.3632 33.0039 L 21.4726 33.0039 L 20.5117 37.6211 C 20.3241 38.5820 21.0273 39.4023 21.9882 39.4023 Z M 25.1523 30.3320 L 26.2304 25.0586 L 30.9413 25.0586 L 29.8398 30.3320 Z",fill:"currentColor"}))},{__:he}=wp.i18n,me={value:"absint",label:he("Positive integer","jet-form-builder"),help:he("An integer that must be greater than or equal to zero","jet-form-builder"),icon:(0,h.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"800px",height:"800px",viewBox:"0 0 56 56"},(0,h.createElement)("path",{d:"M 13.7851 49.5742 L 42.2382 49.5742 C 47.1366 49.5742 49.5743 47.1367 49.5743 42.3086 L 49.5743 13.6914 C 49.5743 8.8633 47.1366 6.4258 42.2382 6.4258 L 13.7851 6.4258 C 8.9101 6.4258 6.4257 8.8398 6.4257 13.6914 L 6.4257 42.3086 C 6.4257 47.1602 8.9101 49.5742 13.7851 49.5742 Z M 13.8554 45.8008 C 11.5117 45.8008 10.1992 44.5586 10.1992 42.1211 L 10.1992 13.8789 C 10.1992 11.4414 11.5117 10.1992 13.8554 10.1992 L 42.1679 10.1992 C 44.4882 10.1992 45.8007 11.4414 45.8007 13.8789 L 45.8007 42.1211 C 45.8007 44.5586 44.4882 45.8008 42.1679 45.8008 Z M 21.9882 39.4023 C 22.9023 39.4023 23.4648 38.9336 23.6523 38.0664 L 24.7070 33.0274 L 29.0663 33.0274 L 28.1054 37.6211 C 27.8944 38.5820 28.5742 39.4023 29.5351 39.4023 C 30.4960 39.4023 31.1054 38.9336 31.2695 38.0664 L 32.3241 33.0039 L 34.7617 33.0039 C 35.6757 33.0039 36.3320 32.3242 36.3320 31.4336 C 36.3320 30.6367 35.7695 30.0508 34.9960 30.0508 L 32.9570 30.0508 L 33.9648 25.2930 L 36.4492 25.2930 C 37.3398 25.2930 37.9960 24.6133 37.9960 23.7227 C 37.9960 22.9258 37.4335 22.3398 36.6601 22.3398 L 34.5742 22.3398 L 35.4882 17.9571 C 35.6757 16.9961 34.9726 16.1758 34.0117 16.1758 C 33.0976 16.1758 32.5117 16.6445 32.3241 17.5352 L 31.3163 22.3398 L 26.9570 22.3398 L 27.8710 17.9571 C 28.0585 17.0196 27.4023 16.1758 26.4179 16.1758 C 25.4804 16.1758 24.8944 16.6445 24.7070 17.5352 L 23.7226 22.3398 L 21.2382 22.3398 C 20.3476 22.3398 19.6913 23.0196 19.6913 23.9102 C 19.6913 24.7071 20.2539 25.2930 21.0273 25.2930 L 23.0898 25.2930 L 22.0820 30.0508 L 19.5742 30.0508 C 18.6835 30.0508 18.0039 30.7305 18.0039 31.6211 C 18.0039 32.4180 18.5663 33.0039 19.3632 33.0039 L 21.4726 33.0039 L 20.5117 37.6211 C 20.3241 38.5820 21.0273 39.4023 21.9882 39.4023 Z M 25.1523 30.3320 L 26.2304 25.0586 L 30.9413 25.0586 L 29.8398 30.3320 Z",fill:"currentColor"}))},{__:Ce}=wp.i18n,Le={value:"absnumber",label:Ce("Positive number","jet-form-builder"),help:Ce("An integer or a non-integer that must be greater than or equal to zero","jet-form-builder"),icon:(0,h.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"800px",height:"800px",viewBox:"0 0 56 56"},(0,h.createElement)("path",{d:"M 13.7851 49.5742 L 42.2382 49.5742 C 47.1366 49.5742 49.5743 47.1367 49.5743 42.3086 L 49.5743 13.6914 C 49.5743 8.8633 47.1366 6.4258 42.2382 6.4258 L 13.7851 6.4258 C 8.9101 6.4258 6.4257 8.8398 6.4257 13.6914 L 6.4257 42.3086 C 6.4257 47.1602 8.9101 49.5742 13.7851 49.5742 Z M 13.8554 45.8008 C 11.5117 45.8008 10.1992 44.5586 10.1992 42.1211 L 10.1992 13.8789 C 10.1992 11.4414 11.5117 10.1992 13.8554 10.1992 L 42.1679 10.1992 C 44.4882 10.1992 45.8007 11.4414 45.8007 13.8789 L 45.8007 42.1211 C 45.8007 44.5586 44.4882 45.8008 42.1679 45.8008 Z M 21.9882 39.4023 C 22.9023 39.4023 23.4648 38.9336 23.6523 38.0664 L 24.7070 33.0274 L 29.0663 33.0274 L 28.1054 37.6211 C 27.8944 38.5820 28.5742 39.4023 29.5351 39.4023 C 30.4960 39.4023 31.1054 38.9336 31.2695 38.0664 L 32.3241 33.0039 L 34.7617 33.0039 C 35.6757 33.0039 36.3320 32.3242 36.3320 31.4336 C 36.3320 30.6367 35.7695 30.0508 34.9960 30.0508 L 32.9570 30.0508 L 33.9648 25.2930 L 36.4492 25.2930 C 37.3398 25.2930 37.9960 24.6133 37.9960 23.7227 C 37.9960 22.9258 37.4335 22.3398 36.6601 22.3398 L 34.5742 22.3398 L 35.4882 17.9571 C 35.6757 16.9961 34.9726 16.1758 34.0117 16.1758 C 33.0976 16.1758 32.5117 16.6445 32.3241 17.5352 L 31.3163 22.3398 L 26.9570 22.3398 L 27.8710 17.9571 C 28.0585 17.0196 27.4023 16.1758 26.4179 16.1758 C 25.4804 16.1758 24.8944 16.6445 24.7070 17.5352 L 23.7226 22.3398 L 21.2382 22.3398 C 20.3476 22.3398 19.6913 23.0196 19.6913 23.9102 C 19.6913 24.7071 20.2539 25.2930 21.0273 25.2930 L 23.0898 25.2930 L 22.0820 30.0508 L 19.5742 30.0508 C 18.6835 30.0508 18.0039 30.7305 18.0039 31.6211 C 18.0039 32.4180 18.5663 33.0039 19.3632 33.0039 L 21.4726 33.0039 L 20.5117 37.6211 C 20.3241 38.5820 21.0273 39.4023 21.9882 39.4023 Z M 25.1523 30.3320 L 26.2304 25.0586 L 30.9413 25.0586 L 29.8398 30.3320 Z",fill:"currentColor"}))},{register:we,dispatch:ve}=wp.data,{addFilter:ge}=wp.hooks,{__:fe}=wp.i18n;ge("blocks.registerBlockType","jet-form-builder/sanitize-value-support",(function(n,l){return r(n,e)?(n.attributes={...n.attributes,[t]:{type:"array",default:[]}},n):n})),ge("editor.BlockEdit","jet-form-builder/sanitize-value-controls",N),we(d);const be=window.JetFBValueSanitizers;ve(n).register(be),ve(n).register([Q,X,ee,re,le,ie,se,ue,de,me,Le,D])})(); \ No newline at end of file diff --git a/modules/shortcode/assets/build/block.editor.asset.php b/modules/shortcode/assets/build/block.editor.asset.php index e722093e4..ec9742e48 100644 --- a/modules/shortcode/assets/build/block.editor.asset.php +++ b/modules/shortcode/assets/build/block.editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '2df08ae6524a605b36b4'); + array('react', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => 'cf951ad85771cc9ff338'); diff --git a/modules/shortcode/assets/build/block.editor.js b/modules/shortcode/assets/build/block.editor.js index 32e609aec..f880d0424 100644 --- a/modules/shortcode/assets/build/block.editor.js +++ b/modules/shortcode/assets/build/block.editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={560(e,t,r){r.d(t,{A:()=>s});var n=r(168),o=r.n(n),a=r(433),i=r.n(a)()(o());i.push([e.id,".s1vim7hv{overflow-x:auto;text-wrap:nowrap;padding:3px 5px 2px;background:rgba(0, 0, 0, .07);font-size:13px;font-family:Consolas,Monaco,monospace;-webkit-flex:1;-ms-flex:1;flex:1;}\n",""]);const s=i},433(e){e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r}).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var s=0;s0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=a),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),o&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=o):d[4]="".concat(o)),t.push(d))}},t}},168(e){e.exports=function(e){return e[1]}},952(e,t,r){r.r(t),r.d(t,{default:()=>v});var n=r(673),o=r.n(n),a=r(598),i=r.n(a),s=r(262),l=r.n(s),c=r(657),d=r.n(c),p=r(357),u=r.n(p),f=r(626),m=r.n(f),h=r(560),y={};y.styleTagTransform=m(),y.setAttributes=d(),y.insert=l().bind(null,"head"),y.domAPI=i(),y.insertStyleElement=u(),o()(h.A,y);const v=h.A&&h.A.locals?h.A.locals:void 0},673(e){var t=[];function r(e){for(var r=-1,n=0;n0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(n,e,t.options)}(t,e,r)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},626(e){e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nc=void 0;const n=window.wp.data,o=window.React,a=window.wp.components,i=window.wp.primitives,s=(0,o.createElement)(i.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)(i.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.625 5.5h9.75c.069 0 .125.056.125.125v9.75a.125.125 0 0 1-.125.125h-9.75a.125.125 0 0 1-.125-.125v-9.75c0-.069.056-.125.125-.125ZM4 5.625C4 4.728 4.728 4 5.625 4h9.75C16.273 4 17 4.728 17 5.625v9.75c0 .898-.727 1.625-1.625 1.625h-9.75A1.625 1.625 0 0 1 4 15.375v-9.75Zm14.5 11.656v-9H20v9C20 18.8 18.77 20 17.251 20H6.25v-1.5h11.001c.69 0 1.249-.528 1.249-1.219Z"})),l=window.wp.i18n,c=window.wp.compose,d=window.wp.element,p=window.jfb.useForm;function u(e){var t=Object.create(null);return function(r){return void 0===t[r]&&(t[r]=e(r)),t[r]}}var f=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|popover|popoverTarget|popoverTargetAction|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,m=u(function(e){return f.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),h=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},r=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,r]=e.split("_");t[r]=e}else r.push(e)})});const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...r),n.join(" ")},y=(e,t)=>{const r={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{r[t]=e[t]}),r},v=(e,t)=>{};const g=function(e){let t="";return r=>{const n=(n,a)=>{const{as:i=e,class:s=t}=n;var l;const c=function(e,t){const r=y(t,["as","class"]);if(!e){const e="function"==typeof m?{default:m}:m;Object.keys(r).forEach(t=>{e.default(t)||delete r[t]})}return r}(void 0===r.propsAsIs?!("string"==typeof i&&-1===i.indexOf("-")&&(l=i[0],l.toUpperCase()!==l)):r.propsAsIs,n);c.ref=a,c.className=r.atomic?h(r.class,c.className||s):h(c.className||s,r.class);const{vars:d}=r;if(d){const e={};for(const t in d){const o=d[t],a=o[0],i=o[1]||"",s="function"==typeof a?a(n):a;v(0,r.name),e[`--${t}`]=`${s}${i}`}const t=c.style||{},o=Object.keys(t);o.length>0&&o.forEach(r=>{e[r]=t[r]}),c.style=e}return e.__wyw_meta&&e!==i?(c.as=i,(0,o.createElement)(e,c)):(0,o.createElement)(i,c)},a=o.forwardRef?(0,o.forwardRef)(n):e=>{const t=y(e,["innerRef"]);return n(t,e.innerRef)};return a.displayName=r.name,a.__wyw_meta={className:r.class||t,extends:e},a}}("code")({name:"ShortCode",class:"s1vim7hv",propsAsIs:!1});r(952);const b={name:"shortcode",view:function({name:e}){const[t,r]=(0,p.usePluginUseSettings)(),i=e===t.builder,u=`[jet_fb_form ${function(){var e,t,r,n,o,a,i;const{formId:s,args:l}=(0,d.useContext)(p.FormAttributesContext);return Object.entries({form_id:s,submit_type:null!==(e=l?.submit_type)&&void 0!==e?e:"reload",required_mark:null!==(t=l?.required_mark)&&void 0!==t?t:"*",fields_layout:null!==(r=l?.fields_layout)&&void 0!==r?r:"column",fields_label_tag:null!==(n=l?.fields_label_tag)&&void 0!==n?n:"div",markup_type:null!==(o=l?.markup_type)&&void 0!==o?o:"div",enable_progress:Number(null!==(a=l?.enable_progress)&&void 0!==a?a:""),clear:Number(null!==(i=l?.clear)&&void 0!==i?i:"")}).map(([e,t])=>e+'="'+t+'"').join(" ")}()}]`,{createNotice:f}=(0,n.useDispatch)("core/notices"),m=(0,c.useCopyToClipboard)(u,()=>{f("info",(0,l.__)("Copied shortcode to clipboard.","jet-form-builder"),{isDismissible:!0,type:"snackbar"})});return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(a.Button,{onClick:()=>r({builder:e}),icon:s,variant:i?"primary":"secondary"},(0,l.__)("Shortcode to use anywhere","jet-form-builder")),i&&(0,o.createElement)(p.BuilderHelpSlotFill.Fill,null,(0,o.createElement)(p.Description,null,(0,o.createElement)("b",null,(0,l.__)("Copy the shortcode and paste it where you need on the selected page:","jet-form-builder"))),(0,o.createElement)(a.Flex,{justify:"flex-start"},(0,o.createElement)(g,null,u),(0,o.createElement)(a.Button,{ref:m,variant:"secondary"},(0,l.__)("Copy","jet-form-builder")))))}};(0,n.dispatch)("jet-forms/use-form").registerBuilders([b])})(); \ No newline at end of file +(()=>{"use strict";var e={168:e=>{e.exports=function(e){return e[1]}},262:e=>{var t={};e.exports=function(e,r){var n=function(e){if(void 0===t[e]){var r=document.querySelector(e);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(e){r=null}t[e]=r}return t[e]}(e);if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");n.appendChild(r)}},357:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},433:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r})).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var s=0;s0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=a),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),o&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=o):d[4]="".concat(o)),t.push(d))}},t}},560:(e,t,r)=>{r.d(t,{A:()=>s});var n=r(168),o=r.n(n),a=r(433),i=r.n(a)()(o());i.push([e.id,".s1vim7hv{overflow-x:auto;text-wrap:nowrap;padding:3px 5px 2px;background:rgba(0, 0, 0, .07);font-size:13px;font-family:Consolas,Monaco,monospace;-webkit-flex:1;-ms-flex:1;flex:1;}\n",""]);const s=i},598:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(r){!function(e,t,r){var n="";r.supports&&(n+="@supports (".concat(r.supports,") {")),r.media&&(n+="@media ".concat(r.media," {"));var o=void 0!==r.layer;o&&(n+="@layer".concat(r.layer.length>0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(n,e,t.options)}(t,e,r)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},626:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},657:(e,t,r)=>{e.exports=function(e){var t=r.nc;t&&e.setAttribute("nonce",t)}},673:e=>{var t=[];function r(e){for(var r=-1,n=0;n{r.r(t),r.d(t,{default:()=>v});var n=r(673),o=r.n(n),a=r(598),i=r.n(a),s=r(262),l=r.n(s),c=r(657),d=r.n(c),u=r(357),p=r.n(u),f=r(626),m=r.n(f),h=r(560),y={};y.styleTagTransform=m(),y.setAttributes=d(),y.insert=l().bind(null,"head"),y.domAPI=i(),y.insertStyleElement=p(),o()(h.A,y);const v=h.A&&h.A.locals?h.A.locals:void 0}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nc=void 0;const n=window.wp.data,o=window.React,a=window.wp.components,i=window.wp.primitives,s=(0,o.createElement)(i.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,o.createElement)(i.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.625 5.5h9.75c.069 0 .125.056.125.125v9.75a.125.125 0 0 1-.125.125h-9.75a.125.125 0 0 1-.125-.125v-9.75c0-.069.056-.125.125-.125ZM4 5.625C4 4.728 4.728 4 5.625 4h9.75C16.273 4 17 4.728 17 5.625v9.75c0 .898-.727 1.625-1.625 1.625h-9.75A1.625 1.625 0 0 1 4 15.375v-9.75Zm14.5 11.656v-9H20v9C20 18.8 18.77 20 17.251 20H6.25v-1.5h11.001c.69 0 1.249-.528 1.249-1.219Z"})),l=window.wp.i18n,c=window.wp.compose,d=window.wp.element,u=window.jfb.useForm;function p(e){var t=Object.create(null);return function(r){return void 0===t[r]&&(t[r]=e(r)),t[r]}}var f=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,m=p((function(e){return f.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),h=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},r=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,r]=e.split("_");t[r]=e}else r.push(e)}))}));const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&n.push(t[e]);return n.push(...r),n.join(" ")},y=(e,t)=>{const r={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach((t=>{r[t]=e[t]})),r};const v=function(e){let t="";return r=>{const n=(n,a)=>{const{as:i=e,class:s=t}=n;var l;const c=function(e,t){const r=y(t,["as","class"]);if(!e){const e="function"==typeof m?{default:m}:m;Object.keys(r).forEach((t=>{e.default(t)||delete r[t]}))}return r}(void 0===r.propsAsIs?!("string"==typeof i&&-1===i.indexOf("-")&&(l=i[0],l.toUpperCase()!==l)):r.propsAsIs,n);c.ref=a,c.className=r.atomic?h(r.class,c.className||s):h(c.className||s,r.class);const{vars:d}=r;if(d){const e={};for(const t in d){const o=d[t],a=o[0],i=o[1]||"",s="function"==typeof a?a(n):a;r.name,e[`--${t}`]=`${s}${i}`}const t=c.style||{},o=Object.keys(t);o.length>0&&o.forEach((r=>{e[r]=t[r]})),c.style=e}return e.__wyw_meta&&e!==i?(c.as=i,(0,o.createElement)(e,c)):(0,o.createElement)(i,c)},a=o.forwardRef?(0,o.forwardRef)(n):e=>{const t=y(e,["innerRef"]);return n(t,e.innerRef)};return a.displayName=r.name,a.__wyw_meta={className:r.class||t,extends:e},a}}("code")({name:"ShortCode",class:"s1vim7hv",propsAsIs:!1});r(952);const g={name:"shortcode",view:function({name:e}){const[t,r]=(0,u.usePluginUseSettings)(),i=e===t.builder,p=`[jet_fb_form ${function(){var e,t,r,n,o,a,i;const{formId:s,args:l}=(0,d.useContext)(u.FormAttributesContext);return Object.entries({form_id:s,submit_type:null!==(e=l?.submit_type)&&void 0!==e?e:"reload",required_mark:null!==(t=l?.required_mark)&&void 0!==t?t:"*",fields_layout:null!==(r=l?.fields_layout)&&void 0!==r?r:"column",fields_label_tag:null!==(n=l?.fields_label_tag)&&void 0!==n?n:"div",markup_type:null!==(o=l?.markup_type)&&void 0!==o?o:"div",enable_progress:Number(null!==(a=l?.enable_progress)&&void 0!==a?a:""),clear:Number(null!==(i=l?.clear)&&void 0!==i?i:"")}).map((([e,t])=>e+'="'+t+'"')).join(" ")}()}]`,{createNotice:f}=(0,n.useDispatch)("core/notices"),m=(0,c.useCopyToClipboard)(p,(()=>{f("info",(0,l.__)("Copied shortcode to clipboard.","jet-form-builder"),{isDismissible:!0,type:"snackbar"})}));return(0,o.createElement)(o.Fragment,null,(0,o.createElement)(a.Button,{onClick:()=>r({builder:e}),icon:s,variant:i?"primary":"secondary"},(0,l.__)("Shortcode to use anywhere","jet-form-builder")),i&&(0,o.createElement)(u.BuilderHelpSlotFill.Fill,null,(0,o.createElement)(u.Description,null,(0,o.createElement)("b",null,(0,l.__)("Copy the shortcode and paste it where you need on the selected page:","jet-form-builder"))),(0,o.createElement)(a.Flex,{justify:"flex-start"},(0,o.createElement)(v,null,p),(0,o.createElement)(a.Button,{ref:m,variant:"secondary"},(0,l.__)("Copy","jet-form-builder")))))}};(0,n.dispatch)("jet-forms/use-form").registerBuilders([g])})(); \ No newline at end of file diff --git a/modules/switch-page-on-change/assets/build/editor.asset.php b/modules/switch-page-on-change/assets/build/editor.asset.php index 7ff988b55..0ec35d690 100644 --- a/modules/switch-page-on-change/assets/build/editor.asset.php +++ b/modules/switch-page-on-change/assets/build/editor.asset.php @@ -1 +1 @@ - array('react'), 'version' => 'a5a88771f8c19aeeb952'); + array('react'), 'version' => '87a0236d83e931909652'); diff --git a/modules/switch-page-on-change/assets/build/editor.js b/modules/switch-page-on-change/assets/build/editor.js index bb1c6d3f6..46c791f80 100644 --- a/modules/switch-page-on-change/assets/build/editor.js +++ b/modules/switch-page-on-change/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";const t="switch_on_change",{getSupport:e}=JetFBActions,n=window.React,{__:o}=wp.i18n,{ToolbarButton:i}=wp.components,{SVG:a,Path:r}=wp.primitives,{useBlockAttributes:c}=JetFBHooks,l=function(){const[e,l]=c();return(0,n.createElement)(i,{icon:(0,n.createElement)(a,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(r,{d:"M6.6 6L5.4 7l4.5 5-4.5 5 1.1 1 5.5-6-5.4-6zm6 0l-1.1 1 4.5 5-4.5 5 1.1 1 5.5-6-5.5-6z"})),title:e[t]?o("Click on the button to disable the \nautomatic transition to the next page when the values are changed","jet-form-builder"):o("Click on the button to enable automatic \ntransition to the next page when the values are changed","jet-form-builder"),onClick:()=>l({[t]:!e[t]}),isActive:e[t]})},{BlockControls:s}=wp.blockEditor,{addFilter:u}=wp.hooks;u("blocks.registerBlockType","jet-form-builder/switch-page-on-change-support",function(n,o){return e(n,"jetFBSwitchPageOnChange")?(n.attributes={...n.attributes,[t]:{type:"boolean",default:!1}},n):n}),window.JetFBComponents={...window.JetFBComponents,SwitchPageOnChangeControls:function(){return(0,n.createElement)(s,{group:"other"},(0,n.createElement)(l,null))},SwitchPageOnChangeButton:l}})(); \ No newline at end of file +(()=>{"use strict";const t="switch_on_change",{getSupport:e}=JetFBActions,n=window.React,{__:o}=wp.i18n,{ToolbarButton:i}=wp.components,{SVG:a,Path:r}=wp.primitives,{useBlockAttributes:c}=JetFBHooks,l=function(){const[e,l]=c();return(0,n.createElement)(i,{icon:(0,n.createElement)(a,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(r,{d:"M6.6 6L5.4 7l4.5 5-4.5 5 1.1 1 5.5-6-5.4-6zm6 0l-1.1 1 4.5 5-4.5 5 1.1 1 5.5-6-5.5-6z"})),title:e[t]?o("Click on the button to disable the \nautomatic transition to the next page when the values are changed","jet-form-builder"):o("Click on the button to enable automatic \ntransition to the next page when the values are changed","jet-form-builder"),onClick:()=>l({[t]:!e[t]}),isActive:e[t]})},{BlockControls:s}=wp.blockEditor,{addFilter:u}=wp.hooks;u("blocks.registerBlockType","jet-form-builder/switch-page-on-change-support",(function(n,o){return e(n,"jetFBSwitchPageOnChange")?(n.attributes={...n.attributes,[t]:{type:"boolean",default:!1}},n):n})),window.JetFBComponents={...window.JetFBComponents,SwitchPageOnChangeControls:function(){return(0,n.createElement)(s,{group:"other"},(0,n.createElement)(l,null))},SwitchPageOnChangeButton:l}})(); \ No newline at end of file diff --git a/modules/switch-page-on-change/assets/build/frontend.asset.php b/modules/switch-page-on-change/assets/build/frontend.asset.php index 3d5d555df..567cba9d6 100644 --- a/modules/switch-page-on-change/assets/build/frontend.asset.php +++ b/modules/switch-page-on-change/assets/build/frontend.asset.php @@ -1 +1 @@ - array(), 'version' => '3d37e5f797b261c2ae1f'); + array(), 'version' => '4b606b8362539ba9bd2a'); diff --git a/modules/switch-page-on-change/assets/build/frontend.js b/modules/switch-page-on-change/assets/build/frontend.js index c7b051144..4a9f55b86 100644 --- a/modules/switch-page-on-change/assets/build/frontend.js +++ b/modules/switch-page-on-change/assets/build/frontend.js @@ -1 +1 @@ -(()=>{const{addAction:e}=JetPlugins.hooks,{isEmpty:t}=JetFormBuilderFunctions;e("jet.fb.multistep.page.init","jet-form-builder/switch-page-on-change",function(e){const c=()=>e.changePage(!1).then(()=>{}).catch(()=>{});e.node.addEventListener("click",t=>{if("radio"!==t.target.type)return;const n=(o=t.target,o?.closest(".jet-fb-switch-page-on-change"));var o;if(!n||!e.isNodeBelongThis(n))return;const r=t.target.closest(".jet-form-builder__field-wrap");r?.querySelector(".check-mark-control")?t.target.checked&&c():setTimeout(()=>{t.target.checked&&c()},10)});const n=e.node.querySelectorAll(".jet-fb-switch-page-on-change");if(n)for(const o of n){let n=o;o.hasOwnProperty("jfbSync")||(n=o.querySelector("input, select")),n?.jfbSync&&e.isNodeBelongThis(n)&&n.jfbSync.watch(()=>{t(n.jfbSync.getValue())||c()})}})})(); \ No newline at end of file +(()=>{const{addAction:e}=JetPlugins.hooks,{isEmpty:t}=JetFormBuilderFunctions;e("jet.fb.multistep.page.init","jet-form-builder/switch-page-on-change",(function(e){const c=()=>e.changePage(!1).then((()=>{})).catch((()=>{}));e.node.addEventListener("click",(t=>{if("radio"!==t.target.type)return;const n=(o=t.target,o?.closest(".jet-fb-switch-page-on-change"));var o;if(!n||!e.isNodeBelongThis(n))return;const r=t.target.closest(".jet-form-builder__field-wrap");r?.querySelector(".check-mark-control")?t.target.checked&&c():setTimeout((()=>{t.target.checked&&c()}),10)}));const n=e.node.querySelectorAll(".jet-fb-switch-page-on-change");if(n)for(const o of n){let n=o;o.hasOwnProperty("jfbSync")||(n=o.querySelector("input, select")),n?.jfbSync&&e.isNodeBelongThis(n)&&n.jfbSync.watch((()=>{t(n.jfbSync.getValue())||c()}))}}))})(); \ No newline at end of file diff --git a/modules/switcher/assets/build/editor.asset.php b/modules/switcher/assets/build/editor.asset.php index 96f5a51fa..d80c90ce2 100644 --- a/modules/switcher/assets/build/editor.asset.php +++ b/modules/switcher/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-hooks'), 'version' => '157a185e51a713aed34b'); + array('react', 'wp-hooks'), 'version' => 'ac432316da60b590c0e5'); diff --git a/modules/switcher/assets/build/editor.js b/modules/switcher/assets/build/editor.js index 40ec3fd7a..86c2d6270 100644 --- a/modules/switcher/assets/build/editor.js +++ b/modules/switcher/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={d:(t,l)=>{for(var r in l)e.o(l,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:l[r]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{metadata:()=>_,name:()=>x,settings:()=>L});const l=window.React,r=(0,l.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,l.createElement)("rect",{x:"106",y:"32",width:"86",height:"36",rx:"18",fill:"#4272F9"}),(0,l.createElement)("circle",{cx:"174",cy:"50",r:"14",fill:"white"}),(0,l.createElement)("rect",{x:"106",y:"76",width:"86",height:"36",rx:"18",fill:"#94A3B8"}),(0,l.createElement)("circle",{cx:"124",cy:"94",r:"14",fill:"white"})),{__:a}=wp.i18n,{InspectorControls:i,useBlockProps:n}=wp.blockEditor,{PanelBody:o,TextControl:c}=wp.components,{ToolBarFields:s,AdvancedFields:d,FieldWrapper:u,BlockName:m,BlockLabel:f,BlockDescription:b,BlockDefaultValue:p,AdvancedInspectorControl:h,StylePanel:C,StyleColorItem:g,StyleColorItemsWrapper:v,StyleSize:w,SwitchPageOnChangeControls:j}=JetFBComponents,{useUniqueNameOnDuplicate:y,useJetStyle:k,useUniqKey:E}=JetFBHooks,_=JSON.parse('{"apiVersion":3,"name":"jet-forms/switcher","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","switcher","toggle"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true,"jetFBSwitchPageOnChange":true,"jetStyle":{"--track-size":["input","size"],"--track-padding":["input","size-padding"],"--track-bg-color":["input","color","background"],"--checked-track-bg-color":["input:checked","color","background"],"--thumb-bg-color":["input::before","color","background"],"--thumb-size":["input::before","size"]}},"title":"Switcher Field","icon":"\\n\\n\\n\\n\\n\\n\\n","attributes":{"calc_value_active":{"type":["string","number"],"default":"","jfb":{"rich":true}},"value_active":{"type":["string","number"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"required":{"type":"boolean","default":false},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-switcher","style":"jet-fb-switcher"}'),{__:F}=wp.i18n,{createBlock:S}=wp.blocks,{name:x,icon:B=""}=_;_.attributes.isPreview={type:"boolean",default:!1};const L={icon:(0,l.createElement)("span",{dangerouslySetInnerHTML:{__html:B}}),description:F("Add Switcher Field to login, signup, and other forms where binary choices are favored and allow users to enable/disable certain options.","jet-form-builder"),edit:function(e){var t;const{isSelected:_,attributes:F,setAttributes:S}=e,x=E(),B=null!==(t=k?.({className:["jet-form-builder-row","field-type-switcher"].join(" ")}))&&void 0!==t?t:{},L=n(B);return y(),F.isPreview?(0,l.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},r):(0,l.createElement)(l.Fragment,null,_&&(0,l.createElement)(l.Fragment,null,(0,l.createElement)(s,{key:x("ToolBarFields"),...e}),(0,l.createElement)(j,null),(0,l.createElement)(i,{key:x("InspectorControls")},(0,l.createElement)(o,{title:a("General","jet-form-builder")},(0,l.createElement)(f,null),(0,l.createElement)(m,null),(0,l.createElement)(b,null)),(0,l.createElement)(o,{title:a("Value","jet-form-builder")},(0,l.createElement)(p,{help:a('If the default value is not empty or\ndoes not equal the string "false" - the switch will be turned on.',"jet-form-builder"),hasMacro:!1}),(0,l.createElement)(h,{value:F.value_active,label:a("Value","jet-form-builder"),onChangePreset:e=>S({value_active:e})},({instanceId:e})=>(0,l.createElement)(c,{id:e,className:"jet-fb m-unset",value:F.value_active,help:a("For enabled switcher","jet-form-builder"),onChange:e=>S({value_active:e})})),(0,l.createElement)(h,{value:F.calc_value_active,label:a("Calculated value","jet-form-builder"),onChangePreset:e=>S({calc_value_active:e})},({instanceId:e})=>(0,l.createElement)(c,{id:e,className:"jet-fb m-unset",value:F.calc_value_active,help:a("For enabled switcher","jet-form-builder"),onChange:e=>S({calc_value_active:e})}))),(0,l.createElement)(d,{key:x("AdvancedFields"),...e})),(0,l.createElement)(i,{group:"styles"},(0,l.createElement)(C,{label:a("Track","jet-form-builder")},(0,l.createElement)(v,null,(0,l.createElement)(g,{cssVar:"--track-bg-color",label:a("Background","jet-form-builder")}),(0,l.createElement)(g,{cssVar:"--checked-track-bg-color",label:a("Checked background","jet-form-builder")})),(0,l.createElement)(w,{cssVar:"--track-size",label:a("Track size","jet-form-builder")}),(0,l.createElement)(w,{cssVar:"--track-padding",label:a("Track padding","jet-form-builder")})),(0,l.createElement)(C,{label:a("Thumb","jet-form-builder")},(0,l.createElement)(v,null,(0,l.createElement)(g,{cssVar:"--thumb-bg-color",label:a("Background","jet-form-builder")})),(0,l.createElement)(w,{cssVar:"--thumb-size",label:a("Thumb size","jet-form-builder")})))),(0,l.createElement)("div",{...L},(0,l.createElement)(u,{key:x("FieldWrapper"),...e},(0,l.createElement)("div",{className:"jet-form-builder__field-preview"},(0,l.createElement)("input",{type:"checkbox",role:"switch",className:"jet-form-builder__field"})))))},example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>S("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/checkbox-field","jet-forms/radio-field","jet-forms/select-field"],transform:e=>S(x,{...e}),priority:0}]}};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/switcher",function(e){return e.push(t),e})})(); \ No newline at end of file +(()=>{"use strict";var e={d:(t,l)=>{for(var r in l)e.o(l,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:l[r]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{metadata:()=>_,name:()=>x,settings:()=>L});const l=window.React,r=(0,l.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,l.createElement)("rect",{x:"106",y:"32",width:"86",height:"36",rx:"18",fill:"#4272F9"}),(0,l.createElement)("circle",{cx:"174",cy:"50",r:"14",fill:"white"}),(0,l.createElement)("rect",{x:"106",y:"76",width:"86",height:"36",rx:"18",fill:"#94A3B8"}),(0,l.createElement)("circle",{cx:"124",cy:"94",r:"14",fill:"white"})),{__:a}=wp.i18n,{InspectorControls:i,useBlockProps:n}=wp.blockEditor,{PanelBody:o,TextControl:c}=wp.components,{ToolBarFields:s,AdvancedFields:d,FieldWrapper:u,BlockName:m,BlockLabel:f,BlockDescription:b,BlockDefaultValue:p,AdvancedInspectorControl:h,StylePanel:C,StyleColorItem:g,StyleColorItemsWrapper:v,StyleSize:w,SwitchPageOnChangeControls:j}=JetFBComponents,{useUniqueNameOnDuplicate:y,useJetStyle:k,useUniqKey:E}=JetFBHooks,_=JSON.parse('{"apiVersion":3,"name":"jet-forms/switcher","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","switcher","toggle"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true,"jetFBSwitchPageOnChange":true,"jetStyle":{"--track-size":["input","size"],"--track-padding":["input","size-padding"],"--track-bg-color":["input","color","background"],"--checked-track-bg-color":["input:checked","color","background"],"--thumb-bg-color":["input::before","color","background"],"--thumb-size":["input::before","size"]}},"title":"Switcher Field","icon":"\\n\\n\\n\\n\\n\\n\\n","attributes":{"calc_value_active":{"type":["string","number"],"default":"","jfb":{"rich":true}},"value_active":{"type":["string","number"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"required":{"type":"boolean","default":false},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"viewScript":"jet-fb-switcher","style":"jet-fb-switcher"}'),{__:F}=wp.i18n,{createBlock:S}=wp.blocks,{name:x,icon:B=""}=_;_.attributes.isPreview={type:"boolean",default:!1};const L={icon:(0,l.createElement)("span",{dangerouslySetInnerHTML:{__html:B}}),description:F("Add Switcher Field to login, signup, and other forms where binary choices are favored and allow users to enable/disable certain options.","jet-form-builder"),edit:function(e){var t;const{isSelected:_,attributes:F,setAttributes:S}=e,x=E(),B=null!==(t=k?.({className:["jet-form-builder-row","field-type-switcher"].join(" ")}))&&void 0!==t?t:{},L=n(B);return y(),F.isPreview?(0,l.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},r):(0,l.createElement)(l.Fragment,null,_&&(0,l.createElement)(l.Fragment,null,(0,l.createElement)(s,{key:x("ToolBarFields"),...e}),(0,l.createElement)(j,null),(0,l.createElement)(i,{key:x("InspectorControls")},(0,l.createElement)(o,{title:a("General","jet-form-builder")},(0,l.createElement)(f,null),(0,l.createElement)(m,null),(0,l.createElement)(b,null)),(0,l.createElement)(o,{title:a("Value","jet-form-builder")},(0,l.createElement)(p,{help:a('If the default value is not empty or\ndoes not equal the string "false" - the switch will be turned on.',"jet-form-builder"),hasMacro:!1}),(0,l.createElement)(h,{value:F.value_active,label:a("Value","jet-form-builder"),onChangePreset:e=>S({value_active:e})},(({instanceId:e})=>(0,l.createElement)(c,{id:e,className:"jet-fb m-unset",value:F.value_active,help:a("For enabled switcher","jet-form-builder"),onChange:e=>S({value_active:e})}))),(0,l.createElement)(h,{value:F.calc_value_active,label:a("Calculated value","jet-form-builder"),onChangePreset:e=>S({calc_value_active:e})},(({instanceId:e})=>(0,l.createElement)(c,{id:e,className:"jet-fb m-unset",value:F.calc_value_active,help:a("For enabled switcher","jet-form-builder"),onChange:e=>S({calc_value_active:e})})))),(0,l.createElement)(d,{key:x("AdvancedFields"),...e})),(0,l.createElement)(i,{group:"styles"},(0,l.createElement)(C,{label:a("Track","jet-form-builder")},(0,l.createElement)(v,null,(0,l.createElement)(g,{cssVar:"--track-bg-color",label:a("Background","jet-form-builder")}),(0,l.createElement)(g,{cssVar:"--checked-track-bg-color",label:a("Checked background","jet-form-builder")})),(0,l.createElement)(w,{cssVar:"--track-size",label:a("Track size","jet-form-builder")}),(0,l.createElement)(w,{cssVar:"--track-padding",label:a("Track padding","jet-form-builder")})),(0,l.createElement)(C,{label:a("Thumb","jet-form-builder")},(0,l.createElement)(v,null,(0,l.createElement)(g,{cssVar:"--thumb-bg-color",label:a("Background","jet-form-builder")})),(0,l.createElement)(w,{cssVar:"--thumb-size",label:a("Thumb size","jet-form-builder")})))),(0,l.createElement)("div",{...L},(0,l.createElement)(u,{key:x("FieldWrapper"),...e},(0,l.createElement)("div",{className:"jet-form-builder__field-preview"},(0,l.createElement)("input",{type:"checkbox",role:"switch",className:"jet-form-builder__field"})))))},example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>S("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/checkbox-field","jet-forms/radio-field","jet-forms/select-field"],transform:e=>S(x,{...e}),priority:0}]}};(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/switcher",(function(e){return e.push(t),e}))})(); \ No newline at end of file diff --git a/modules/switcher/assets/build/switcher.asset.php b/modules/switcher/assets/build/switcher.asset.php index 720eddf9b..442db4143 100644 --- a/modules/switcher/assets/build/switcher.asset.php +++ b/modules/switcher/assets/build/switcher.asset.php @@ -1 +1 @@ - array(), 'version' => '7c291d04aeede881ef68'); + array(), 'version' => '06c887a8b9195e5a119d'); diff --git a/modules/switcher/assets/build/switcher.js b/modules/switcher/assets/build/switcher.js index a308f4b44..84341d832 100644 --- a/modules/switcher/assets/build/switcher.js +++ b/modules/switcher/assets/build/switcher.js @@ -1 +1 @@ -(()=>{"use strict";const{InputData:t,ReactiveHook:e}=JetFormBuilderAbstract;function n(){t.call(this),this.isSupported=function(t){return"switch"===t?.role},this.addListeners=function(){const[t]=this.nodes;t.addEventListener("input",t=>{this.value.current=t.target.checked}),t.addEventListener("blur",t=>{this.reportOnBlur()}),this.enterKey=new e,t.addEventListener("keydown",this.handleEnterKey.bind(this)),this.sanitize(function(e){return Boolean(e)?t.value:""})},this.setValue=function(){const[t]=this.nodes;this.value.current=t.checked?t.value:null},this.setNode=function(e){t.prototype.setNode.call(this,e),this.inputType="switcher"}}n.prototype=Object.create(t.prototype);const i=n,{BaseSignal:s}=JetFormBuilderAbstract;function r(){s.call(this),this.isSupported=function(t,e){return"switch"===t.role},this.runSignal=function(){var t;const[e]=this.input.nodes;this.input.calcValue=0,e.checked=this.input.value.current===e.value,e.checked&&(this.input.calcValue+=parseFloat(null!==(t=e.dataset?.calculate)&&void 0!==t?t:e.value))}}r.prototype=Object.create(s.prototype);const u=r,{addFilter:c}=JetPlugins.hooks;c("jet.fb.inputs","jet-form-builder/switcher",function(t){return[i,...t]}),c("jet.fb.signals","jet-form-builder/switcher",function(t){return[u,...t]})})(); \ No newline at end of file +(()=>{"use strict";const{InputData:t,ReactiveHook:e}=JetFormBuilderAbstract;function n(){t.call(this),this.isSupported=function(t){return"switch"===t?.role},this.addListeners=function(){const[t]=this.nodes;t.addEventListener("input",(t=>{this.value.current=t.target.checked})),t.addEventListener("blur",(t=>{this.reportOnBlur()})),this.enterKey=new e,t.addEventListener("keydown",this.handleEnterKey.bind(this)),this.sanitize((function(e){return Boolean(e)?t.value:""}))},this.setValue=function(){const[t]=this.nodes;this.value.current=t.checked?t.value:null},this.setNode=function(e){t.prototype.setNode.call(this,e),this.inputType="switcher"}}n.prototype=Object.create(t.prototype);const i=n,{BaseSignal:s}=JetFormBuilderAbstract;function r(){s.call(this),this.isSupported=function(t,e){return"switch"===t.role},this.runSignal=function(){var t;const[e]=this.input.nodes;this.input.calcValue=0,e.checked=this.input.value.current===e.value,e.checked&&(this.input.calcValue+=parseFloat(null!==(t=e.dataset?.calculate)&&void 0!==t?t:e.value))}}r.prototype=Object.create(s.prototype);const u=r,{addFilter:c}=JetPlugins.hooks;c("jet.fb.inputs","jet-form-builder/switcher",(function(t){return[i,...t]})),c("jet.fb.signals","jet-form-builder/switcher",(function(t){return[u,...t]}))})(); \ No newline at end of file diff --git a/modules/validation/advanced-rules/server-side-rule.php b/modules/validation/advanced-rules/server-side-rule.php index 03a1ebdaa..2ae4bb21a 100644 --- a/modules/validation/advanced-rules/server-side-rule.php +++ b/modules/validation/advanced-rules/server-side-rule.php @@ -169,7 +169,7 @@ public function validate_field( Field_Data_Parser $parser ) { return; } - $is_valid = $this->validate( $parser, $function_name ); + $is_valid = $this->validate( $parser, $function_name ); if ( $is_valid ) { return; @@ -193,7 +193,7 @@ protected function validate( Field_Data_Parser $parser, string $function_name ): return $this->validate_custom( $parser, $function_name ); } - return $callback->is_valid( $parser->get_value(), $parser->get_context() ); + return $callback->is_valid_with_parser( $parser ); } protected function validate_submission_signature( Field_Data_Parser $parser ): bool { diff --git a/modules/validation/ssr/base-validation-callback.php b/modules/validation/ssr/base-validation-callback.php index 3a9a3c64d..f492029fb 100644 --- a/modules/validation/ssr/base-validation-callback.php +++ b/modules/validation/ssr/base-validation-callback.php @@ -6,6 +6,7 @@ use Jet_Form_Builder\Classes\Arrayable\Arrayable; use JFB_Components\Repository\Repository_Item_Instance_Trait; use Jet_Form_Builder\Request\Parser_Context; +use JFB_Modules\Block_Parsers\Field_Data_Parser; // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { @@ -26,6 +27,21 @@ abstract public function get_label(): string; */ abstract public function is_valid( $value, Parser_Context $context ): bool; + /** + * Validate a field with access to its parser metadata. + * + * Existing callbacks only need to implement is_valid(). Callbacks that need + * trusted parser metadata can override this method without changing the + * public callback contract. + * + * @param Field_Data_Parser $parser + * + * @return bool + */ + public function is_valid_with_parser( Field_Data_Parser $parser ): bool { + return $this->is_valid( $parser->get_value(), $parser->get_context() ); + } + public function to_array(): array { return array( 'value' => $this->get_id(), diff --git a/modules/validation/ssr/is-field-value-unique.php b/modules/validation/ssr/is-field-value-unique.php index 5584ee8fb..61a2c882f 100644 --- a/modules/validation/ssr/is-field-value-unique.php +++ b/modules/validation/ssr/is-field-value-unique.php @@ -3,9 +3,9 @@ namespace JFB_Modules\Validation\Ssr; -use Jet_Form_Builder\Classes\Arrayable\Array_Tools; use Jet_Form_Builder\Classes\Tools; use Jet_Form_Builder\Request\Parser_Context; +use JFB_Modules\Block_Parsers\Field_Data_Parser; // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { @@ -23,13 +23,31 @@ public function get_label(): string { } public function is_valid( $value, Parser_Context $context ): bool { - $request = $context->get_request(); - $field_path = $this->get_field_path( $request['_jfb_validation_path'] ?? '' ); + $request = $context->get_request(); + $field_path = $this->get_field_path( $request['_jfb_validation_path'] ?? '' ); + $form_id = absint( $request['_jet_engine_booking_form_id'] ?? 0 ); + + return $this->is_value_unique( $value, $field_path, $form_id ); + } + + public function is_valid_with_parser( Field_Data_Parser $parser ): bool { + // The parser path is the same path authenticated by the submission signature. + $field_path = $this->get_field_path( explode( '.', $parser->get_scoped_name() ) ); + $form_id = absint( jet_fb_handler()->get_form_id() ); + + return $this->is_value_unique( $parser->get_value(), $field_path, $form_id ); + } + + private function is_value_unique( $value, array $field_path, int $form_id ): bool { $field_name = $field_path[0] ?? ''; $nested_path = array_slice( $field_path, 1 ); - $form_id = $request['_jet_engine_booking_form_id']; + + if ( ! $form_id || '' === $field_name || is_numeric( $field_name ) ) { + return false; + } global $wpdb; + // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching $record_ids = $wpdb->get_col( $wpdb->prepare( 'SELECT id FROM ' . $wpdb->prefix . 'jet_fb_records WHERE form_id = %d AND status = %s', @@ -38,7 +56,7 @@ public function is_valid( $value, Parser_Context $context ): bool { ) ); - if ( empty( $record_ids ) || '' === $field_name ) { + if ( empty( $record_ids ) ) { return true; } @@ -54,7 +72,8 @@ public function is_valid( $value, Parser_Context $context ): bool { ); $params = array_merge( $record_ids, array( $field_name, $value ) ); - $exists = $wpdb->get_var( $wpdb->prepare( $sql, $params ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared + // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared + $exists = $wpdb->get_var( $wpdb->prepare( $sql, $params ) ); return ! $exists; } @@ -67,7 +86,8 @@ public function is_valid( $value, Parser_Context $context ): bool { ); $params = array_merge( $record_ids, array( $field_name ) ); - $rows = $wpdb->get_results( $wpdb->prepare( $sql, $params ), ARRAY_A ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared + // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared + $rows = $wpdb->get_results( $wpdb->prepare( $sql, $params ), ARRAY_A ); foreach ( $rows as $row ) { if ( ! $this->matches_nested_value( $row, $nested_path, $value ) ) { @@ -89,13 +109,13 @@ private function get_field_path( $field_path ): array { foreach ( $field_path as $segment ) { if ( ! is_scalar( $segment ) ) { - continue; + return array(); } $segment = sanitize_text_field( (string) $segment ); if ( '' === $segment ) { - continue; + return array(); } $segments[] = $segment; @@ -117,27 +137,42 @@ private function matches_nested_value( array $row, array $nested_path, $value ): return false; } - if ( Array_Tools::get( $decoded, $nested_path, null ) === $value ) { - return true; + $normalized_path = $this->normalize_nested_path( $nested_path ); + + if ( empty( $normalized_path ) ) { + return false; } - $wildcard_path = $this->normalize_nested_path( $nested_path ); + return $this->matches_path( $decoded, $normalized_path, $value ); + } + + private function matches_path( $current, array $path, $value ): bool { + if ( empty( $path ) ) { + return $current === $value; + } - if ( $wildcard_path === $nested_path ) { + if ( ! is_array( $current ) ) { return false; } - foreach ( $decoded as $item ) { - if ( ! is_array( $item ) ) { - continue; + // Repeater indexes are not signature-bound, so scan every row at each depth. + if ( wp_is_numeric_array( $current ) ) { + foreach ( $current as $item ) { + if ( $this->matches_path( $item, $path, $value ) ) { + return true; + } } - if ( Array_Tools::get( $item, $wildcard_path, null ) === $value ) { - return true; - } + return false; + } + + $segment = array_shift( $path ); + + if ( ! array_key_exists( $segment, $current ) ) { + return false; } - return false; + return $this->matches_path( $current[ $segment ], $path, $value ); } private function normalize_nested_path( array $nested_path ): array { diff --git a/modules/verification/assets/build/admin/form-record-single.asset.php b/modules/verification/assets/build/admin/form-record-single.asset.php index 59233e025..f7193c00c 100644 --- a/modules/verification/assets/build/admin/form-record-single.asset.php +++ b/modules/verification/assets/build/admin/form-record-single.asset.php @@ -1 +1 @@ - array('wp-api-fetch', 'wp-hooks'), 'version' => '7cc198ab4a86aedbfeeb'); + array('wp-api-fetch', 'wp-hooks'), 'version' => 'e835ed99ab937cdafb8f'); diff --git a/modules/verification/assets/build/admin/form-record-single.js b/modules/verification/assets/build/admin/form-record-single.js index d9f2043d0..cf814418f 100644 --- a/modules/verification/assets/build/admin/form-record-single.js +++ b/modules/verification/assets/build/admin/form-record-single.js @@ -1 +1 @@ -(()=>{"use strict";var e={n:o=>{var t=o&&o.__esModule?()=>o.default:()=>o;return e.d(t,{a:t}),t},d:(o,t)=>{for(var n in t)e.o(t,n)&&!e.o(o,n)&&Object.defineProperty(o,n,{enumerable:!0,get:t[n]})},o:(e,o)=>Object.prototype.hasOwnProperty.call(e,o)};const o=window.wp.apiFetch;var t=e.n(o);const n=window.wp.hooks,i=4e3;(0,n.addAction)("jet.fb.render.page","jet-form-builder/verification",function(e){const{getters:o,commit:n}=e.$store;jfbEventBus.$on("verification-verify",()=>{n("scope-verification/actions/toggleLoading"),n("toggleDoingAction",null,{root:!0}),t()({...o["scope-verification/actions/current"].endpoint,data:{...o["scope-verification/actions/current"].payload}}).then(e=>{jfbEventBus.$CXNotice.add({message:e.message,type:"success",duration:i})}).catch(e=>{jfbEventBus.$CXNotice.add({message:e.message,type:"error",duration:i})}).finally(()=>{n("scope-verification/actions/toggleLoading"),n("toggleDoingAction",null,{root:!0}),setTimeout(()=>document.location.reload(),i)})})})})(); \ No newline at end of file +(()=>{"use strict";var e={n:o=>{var t=o&&o.__esModule?()=>o.default:()=>o;return e.d(t,{a:t}),t},d:(o,t)=>{for(var n in t)e.o(t,n)&&!e.o(o,n)&&Object.defineProperty(o,n,{enumerable:!0,get:t[n]})},o:(e,o)=>Object.prototype.hasOwnProperty.call(e,o)};const o=window.wp.apiFetch;var t=e.n(o);const n=window.wp.hooks,i=4e3;(0,n.addAction)("jet.fb.render.page","jet-form-builder/verification",(function(e){const{getters:o,commit:n}=e.$store;jfbEventBus.$on("verification-verify",(()=>{n("scope-verification/actions/toggleLoading"),n("toggleDoingAction",null,{root:!0}),t()({...o["scope-verification/actions/current"].endpoint,data:{...o["scope-verification/actions/current"].payload}}).then((e=>{jfbEventBus.$CXNotice.add({message:e.message,type:"success",duration:i})})).catch((e=>{jfbEventBus.$CXNotice.add({message:e.message,type:"error",duration:i})})).finally((()=>{n("scope-verification/actions/toggleLoading"),n("toggleDoingAction",null,{root:!0}),setTimeout((()=>document.location.reload()),i)}))}))}))})(); \ No newline at end of file diff --git a/modules/verification/assets/build/admin/form-records.asset.php b/modules/verification/assets/build/admin/form-records.asset.php index f14006819..355b364d0 100644 --- a/modules/verification/assets/build/admin/form-records.asset.php +++ b/modules/verification/assets/build/admin/form-records.asset.php @@ -1 +1 @@ - array('wp-hooks'), 'version' => 'ca6120e0dcf3c3bbf0ea'); + array('wp-hooks'), 'version' => 'b0a553bfe6018caf73fe'); diff --git a/modules/verification/assets/build/admin/form-records.js b/modules/verification/assets/build/admin/form-records.js index c9c1fe13d..e1624dbd2 100644 --- a/modules/verification/assets/build/admin/form-records.js +++ b/modules/verification/assets/build/admin/form-records.js @@ -1 +1 @@ -(()=>{"use strict";(0,window.wp.hooks.addAction)("jet.fb.render.page","jet-form-builder/verification",function(e){const[t]=e.$children;t.setActionPromises({action:"verify",promise:t.promiseWrapper(({resolve:e,reject:i})=>{t.apiFetch().then(i=>{t.$store.dispatch("scope-default/fetchPage"),e(i.message)}).catch(i)})})})})(); \ No newline at end of file +(()=>{"use strict";(0,window.wp.hooks.addAction)("jet.fb.render.page","jet-form-builder/verification",(function(e){const[t]=e.$children;t.setActionPromises({action:"verify",promise:t.promiseWrapper((({resolve:e,reject:i})=>{t.apiFetch().then((i=>{t.$store.dispatch("scope-default/fetchPage"),e(i.message)})).catch(i)}))})}))})(); \ No newline at end of file diff --git a/modules/verification/assets/build/editor.asset.php b/modules/verification/assets/build/editor.asset.php index 906227820..50e5d207b 100644 --- a/modules/verification/assets/build/editor.asset.php +++ b/modules/verification/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-primitives'), 'version' => '2ff0c300a25258d3669e'); + array('react', 'wp-components', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-primitives'), 'version' => 'c2b3ec52487ecb227db6'); diff --git a/modules/verification/assets/build/editor.js b/modules/verification/assets/build/editor.js index f53b1809b..2f86d1426 100644 --- a/modules/verification/assets/build/editor.js +++ b/modules/verification/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";const e=window.React,t=window.wp.i18n,n=window.wp.element,i=window.wp.components,o=window.wp.primitives,r=(0,e.createElement)(o.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(o.Path,{d:"M11 12.5V17.5H12.5V12.5H17.5V11H12.5V6H11V11H6V12.5H11Z"})),{useActionsEdit:a}=JetFBHooks,{ActionsAfterNewButtonSlotFill:l}=JetFBComponents,{Tools:c}=JetFBActions,s=()=>({id:c.getRandomID(),type:"verification",settings:{}}),d={base:{jfbApiVersion:2,name:"jf-verification"},settings:{render:function(){const{actions:o,setActions:c}=a(),d=(0,n.useMemo)(s,[]),m=o.some(({type:e})=>"verification"===e);return(0,e.createElement)(l.Fill,null,(0,e.createElement)(i.Tooltip,{text:m?(0,t.__)("You have already added the Verification action","jet-form-builder"):(0,t.__)("Click here to add Verification action","jet-form-builder"),delay:200,placement:"top"},(0,e.createElement)(i.Button,{onClick:()=>{c([{...d},...o])},disabled:m,variant:"tertiary",icon:r},(0,t.__)("Verification","jet-form-builder"))))},icon:"filter"}},{select:m,dispatch:u}=wp.data;let f;const p=()=>{const e=m("core/editor").getEditedPostAttribute("meta")||{};if(f===e._jf_actions||"string"!=typeof e._jf_actions)return;f=e._jf_actions;const t=JSON.parse(f),n=t.findIndex(({type:e})=>"verification"===e),i=-1!==n,o=m("jet-forms/actions").getAction("verification");if(0({value:t,label:e.rendered}))},{addQueryArgs:q}=wp.url,{useState:Y,useEffect:Q}=wp.element,W=function(e=[]){const[t,n]=Y([]),[i,o]=Y("");return Q(()=>{var t;i?Z({path:(t=i,q("/wp/v2/pages",{search:t}))}).then(n):n(e)},[i,e.length]),[t,o]},K=JSON.parse('[{"type":"send_email","settings":{"mail_to":"form","from_field":"_verify_user_email","subject":"[%CT::SiteName%] Confirm your email","content":"Please confirm your registration on site %CT::SiteName%.\\n\\nIf this was a mistake, ignore this email and nothing will happen.\\n\\nTo complete the registration click on the link:\\n%_jfb_verification_url%"},"events":["DEFAULT.PROCESS"]}]'),X=window.jfb.blocksToActions,$=window.jfb.actions;let{__experimentalToggleGroupControl:ee,__experimentalToggleGroupControlOption:te,ToggleGroupControl:ne,ToggleGroupControlOption:ie,BaseControl:oe,ComboboxControl:re,Button:ae,Flex:le,SelectControl:ce}=wp.components;ne=ne||ee,ie=ie||te;const{__:se}=wp.i18n,{useState:de,useEffect:me,useMemo:ue}=wp.element,{addQueryArgs:fe}=wp.url,{useDispatch:pe}=wp.data,{BaseHelp:he,BaseAction:ge,ToggleControl:ve}=JetFBComponents,{Tools:be,convertFlow:we}=JetFBActions,Ee=we(K),_e=(e,t)=>{const n=new Set(e.map(({value:e})=>e)),i=[];for(const e of t)n.has(e.value)||i.push(e);return[...e,...i]},ye=function({onChangeSettingObj:t,settings:n}){var i,o;const[r,a]=(0,$.useActions)([]),l=(0,X.useFields)({withInner:!1}),{currentAction:c}=(0,$.useCurrentAction)(),s=ue(()=>l.find(e=>"email"===e?.attributes?.field_type),[]),[d,m]=de(Boolean(n.mail_to)),u=ue(()=>r.findIndex(({events:e=[],type:t})=>-1!==e.indexOf(h)&&"redirect_to_page"===t),[]),f=ue(()=>r.findIndex(({events:e=[],type:t})=>-1!==e.indexOf(g)&&"redirect_to_page"===t),[]),p=null!==(i=r[u])&&void 0!==i?i:{},v=null!==(o=r[f])&&void 0!==o?o:{},[b,w]=de([]),[E,_]=W(b),[y,j]=W(b),{openActionSettings:C}=pe("jet-forms/actions"),F=(e,t)=>{const n=new ge({type:"redirect_to_page"});return n.events=[t],e&&(n.selfSettings={redirect_type:"static_page",redirect_page:e}),a([...r.map(e=>c.id!==e.id?e:c),n]),n};return me(()=>{Z({path:"/wp/v2/pages"}).then(e=>w(t=>_e(t,e)));const e=[n.success_page,n.failed_page].filter(Boolean);e.length&&Z({path:fe("/wp/v2/pages",{include:e})}).then(e=>w(t=>_e(t,e)))},[]),"admin"===n.who_can?null:(0,e.createElement)(e.Fragment,null,(0,e.createElement)(oe,{label:se("Email Field","jet-form-builder"),className:"jet-fb label-reset-margin"},(0,e.createElement)("div",{className:"jet-control-clear-full"},(0,e.createElement)(ce,{value:n.mail_to,onChange:e=>t({mail_to:e}),options:be.withPlaceholder(l),hideLabelFromVision:!0}),(0,e.createElement)(he,null,se("Send a verification link to the email address \nprovided in this field.","jet-form-builder")),!d&&Boolean(s)&&(0,e.createElement)(he,null,(0,e.createElement)(le,{justify:"flex-start",gap:1},se("(Suggestion) Choose the:","jet-form-builder"),(0,e.createElement)(ae,{isLink:!0,onClick:()=>{m(!0),t({mail_to:s.value})}},s.label),se("field","jet-form-builder"))))),n.mail_to&&(0,e.createElement)(ve,{checked:Boolean(n.custom_email),onChange:e=>t({custom_email:e}),help:se("If disabled, a standard verification email will be sent. \nIf enabled, you can create a custom verification email \nwith a separate Send Email action.","jet-form-builder")},(0,e.createElement)(le,{gap:3,justify:"flex-start"},se("Create custom verification email","jet-form-builder"),n.custom_email&&(0,e.createElement)(ae,{isLink:!0,onClick:()=>{const e=(()=>{const{list:[e]}=Ee;return e.selfSettings={...e.selfSettings,from_field:n.mail_to},a([...r.map(e=>c.id!==e.id?e:c),{...e}]),e})();C({index:r.length,item:e})}},se("+ Add Send Email action","jet-form-builder")))),(0,e.createElement)(le,{justify:"flex-start",style:{marginTop:"-2.5em",marginBottom:"1em"}},(0,e.createElement)("p",{style:{fontSize:"12px",color:"rgb(117, 117, 117)"}},(0,e.createElement)("b",null,se("Note:","jet-form-builder"))," ",se("All password fields will be hashed. If you include a password field in the email content, the hashed password will be displayed, not the actual value.","jet-form-builder"))),(0,e.createElement)(oe,{label:se("Success Page","jet-form-builder"),className:"control-flex"},(0,e.createElement)(le,{style:{flex:3.1},direction:"column"},-1!==u?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(he,null,se("You have already configured the \nRedirect to Page action with the event:","jet-form-builder"),(0,e.createElement)("code",null,h)),(0,e.createElement)(le,null,(0,e.createElement)(ae,{icon:(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,e.createElement)("path",{d:"m19 7-3-3-8.5 8.5-1 4 4-1L19 7Zm-7 11.5H5V20h7v-1.5Z"})),onClick:()=>{C({index:u,item:p})}},se("Edit verification success redirect","jet-form-builder")))):(0,e.createElement)(e.Fragment,null,(0,e.createElement)(re,{value:n.success_page,onChange:e=>t({success_page:e}),options:E,hideLabelFromVision:!0,onFilterValueChange:_}),(0,e.createElement)(he,{style:{marginTop:"-1em"}},se("Select a page for the redirect after successful \nverification. By default, the user is redirected to the form page. Or","jet-form-builder")," ",(0,e.createElement)(ae,{isLink:!0,onClick:()=>{const e=F(n.success_page,h);C({index:r.length,item:{...e}})}},se("configure a separate Redirect to Page action","jet-form-builder")))))),(0,e.createElement)(oe,{label:se("Failed Page","jet-form-builder"),className:"control-flex"},(0,e.createElement)(le,{style:{flex:3.1},direction:"column"},-1!==f?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(he,null,se("You have already configured the\nRedirect to Page action with the event:","jet-form-builder"),(0,e.createElement)("code",null,g)),(0,e.createElement)(le,null,(0,e.createElement)(ae,{icon:(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,e.createElement)("path",{d:"m19 7-3-3-8.5 8.5-1 4 4-1L19 7Zm-7 11.5H5V20h7v-1.5Z"})),onClick:()=>{C({index:f,item:v})}},se("Edit verification failed redirect","jet-form-builder")))):(0,e.createElement)(e.Fragment,null,(0,e.createElement)(re,{value:n.failed_page,onChange:e=>t({failed_page:e}),options:y,hideLabelFromVision:!0,onFilterValueChange:j}),(0,e.createElement)(he,{style:{marginTop:"-1em"}},se("Select a page for the redirect after verification \nfailure. By default, the user is redirected to the form page. Or","jet-form-builder")," ",(0,e.createElement)(ae,{isLink:!0,onClick:()=>{const e=F(n.failed_page,g);C({index:r.length,item:{...e}})}},se("configure a separate Redirect to Page action","jet-form-builder")))))))},{BaseHelp:je,ActionModalHeaderSlotFill:Ce,ActionModalBackButton:Fe}=JetFBComponents,Se=(0,e.createElement)(o.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)(o.Path,{d:"M9 13.5a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM9 16a4.002 4.002 0 003.8-2.75H15V16h2.5v-2.75H19v-2.5h-6.2A4.002 4.002 0 005 12a4 4 0 004 4z",fillRule:"evenodd",clipRule:"evenodd"})),Ae=(0,e.createElement)(o.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(o.Path,{d:"m19 7-3-3-8.5 8.5-1 4 4-1L19 7Zm-7 11.5H5V20h7v-1.5Z"})),xe={type:"verification",edit:function({onChangeSettingObj:o,settings:r}){var a,l;const[c,s]=(0,n.useState)(!1);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ce.Fill,null,(0,e.createElement)(i.Button,{variant:"tertiary",isPressed:c,icon:(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,e.createElement)("path",{d:"M12 4.75a7.25 7.25 0 100 14.5 7.25 7.25 0 000-14.5zM3.25 12a8.75 8.75 0 1117.5 0 8.75 8.75 0 01-17.5 0zM12 8.75a1.5 1.5 0 01.167 2.99c-.465.052-.917.44-.917 1.01V14h1.5v-.845A3 3 0 109 10.25h1.5a1.5 1.5 0 011.5-1.5zM11.25 15v1.5h1.5V15h-1.5z"})),onClick:()=>s(e=>!e)})),c&&(0,e.createElement)(U,null),(0,e.createElement)(i.SelectControl,{label:(0,t.__)("Who can verify the submission","jet-form-builder"),value:null!==(a=r.who_can)&&void 0!==a?a:"",labelPosition:"side",options:[{value:"",label:(0,t.__)("User & Administrator","jet-form-builder")},{value:"admin",label:(0,t.__)("Administrator","jet-form-builder")}],onChange:e=>o({who_can:e})}),(0,e.createElement)(i.BaseControl,{label:(0,t.__)("Link Lifespan","jet-form-builder"),className:"jet-fb label-reset-margin"},(0,e.createElement)("div",{style:{flex:3}},(0,e.createElement)(i.TextControl,{value:null!==(l=r.lifespan)&&void 0!==l?l:4,onChange:e=>o({lifespan:e})}),(0,e.createElement)(je,{style:{marginTop:"-4px"}},(0,t.__)('Indicates for how many hours a verification link \nwill be active. If you leave this field empty or enter "0", it means \nverification can be completed at any given time.',"jet-form-builder")))),(0,e.createElement)(ye,{settings:r,onChangeSettingObj:o}))},label:(0,t.__)("Verification","jet-form-builder"),icon:Se,docHref:"https://jetformbuilder.com/features/email-verification/",provideEvents:()=>[h,g],fixed:!0,disableConditions:!0,category:"user",disabledOverlay:function({action:o}){const[r]=(0,$.useActions)(),a=(0,n.useMemo)(()=>r.findIndex(({type:e})=>e===o.type),[o.type]),{openActionSettings:l}=(0,z.useDispatch)($.STORE_NAME);return(0,e.createElement)(i.Flex,{direction:"column",justify:"space-evenly",align:"center"},(0,e.createElement)("span",null,(0,t.__)("This action has already added.","jet-form-builder")),(0,e.createElement)(i.Button,{variant:"tertiary",onClick:()=>{l({item:r[a],index:a})},icon:Ae},(0,t.__)("Edit action","jet-form-builder")))}},{addComputedField:Be}=JetFBActions;window.JetFBComponents={...window.JetFBComponents,TokenComputedField:y,TokenIDComputedField:B,VerificationURLComputedField:V},Be(y,{isScoped:!0}),Be(C),Be(B),Be(V),(0,M.addFilter)("jet.fb.register.plugin.jf-actions-panel.before","jet-form-builder/verification",function(e){return e.push(d),e}),(0,M.addFilter)("jet.fb.action.item","jet-form-builder/footer-notice-for-no-events",n=>()=>{const{action:o}=L(),{updateActionObj:r}=H(),[a]=R(),l=N(o),c=a.some(e=>"verification"===e.type);return o?.events?.length||"verification"===o.type||!c||1>=l.length?(0,e.createElement)(n,null):(0,e.createElement)(P,null,(0,e.createElement)(J,null),(0,e.createElement)(i.CardFooter,null,(0,e.createElement)(i.Flex,{justify:"flex-start",style:{flex:1}},(0,e.createElement)(i.Icon,{size:20,icon:O}),(0,t.__)("Runs on verification","jet-form-builder")),(0,e.createElement)(i.Button,{isLink:!0,onClick:()=>r(o.id,{events:["DEFAULT.PROCESS"]}),style:{textDecoration:"none",borderBottom:"2px dotted var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))"}},(0,t.__)("Run always","jet-form-builder"))))}),(0,z.subscribe)(()=>setTimeout(p,0)),(0,z.dispatch)("jet-forms/actions").registerAction(xe)})(); \ No newline at end of file +(()=>{"use strict";const e=window.React,t=window.wp.i18n,n=window.wp.element,i=window.wp.components,o=window.wp.primitives,r=(0,e.createElement)(o.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(o.Path,{d:"M11 12.5V17.5H12.5V12.5H17.5V11H12.5V6H11V11H6V12.5H11Z"})),{useActionsEdit:a}=JetFBHooks,{ActionsAfterNewButtonSlotFill:l}=JetFBComponents,{Tools:c}=JetFBActions,s=()=>({id:c.getRandomID(),type:"verification",settings:{}}),d={base:{jfbApiVersion:2,name:"jf-verification"},settings:{render:function(){const{actions:o,setActions:c}=a(),d=(0,n.useMemo)(s,[]),m=o.some((({type:e})=>"verification"===e));return(0,e.createElement)(l.Fill,null,(0,e.createElement)(i.Tooltip,{text:m?(0,t.__)("You have already added the Verification action","jet-form-builder"):(0,t.__)("Click here to add Verification action","jet-form-builder"),delay:200,placement:"top"},(0,e.createElement)(i.Button,{onClick:()=>{c([{...d},...o])},disabled:m,variant:"tertiary",icon:r},(0,t.__)("Verification","jet-form-builder"))))},icon:"filter"}},{select:m,dispatch:u}=wp.data;let f;const p=()=>{const e=m("core/editor").getEditedPostAttribute("meta")||{};if(f===e._jf_actions||"string"!=typeof e._jf_actions)return;f=e._jf_actions;const t=JSON.parse(f),n=t.findIndex((({type:e})=>"verification"===e)),i=-1!==n,o=m("jet-forms/actions").getAction("verification");if(0({value:t,label:e.rendered})))},{addQueryArgs:q}=wp.url,{useState:Y,useEffect:Q}=wp.element,W=function(e=[]){const[t,n]=Y([]),[i,o]=Y("");return Q((()=>{var t;i?Z({path:(t=i,q("/wp/v2/pages",{search:t}))}).then(n):n(e)}),[i,e.length]),[t,o]},K=JSON.parse('[{"type":"send_email","settings":{"mail_to":"form","from_field":"_verify_user_email","subject":"[%CT::SiteName%] Confirm your email","content":"Please confirm your registration on site %CT::SiteName%.\\n\\nIf this was a mistake, ignore this email and nothing will happen.\\n\\nTo complete the registration click on the link:\\n%_jfb_verification_url%"},"events":["DEFAULT.PROCESS"]}]'),X=window.jfb.blocksToActions,$=window.jfb.actions;let{__experimentalToggleGroupControl:ee,__experimentalToggleGroupControlOption:te,ToggleGroupControl:ne,ToggleGroupControlOption:ie,BaseControl:oe,ComboboxControl:re,Button:ae,Flex:le,SelectControl:ce}=wp.components;ne=ne||ee,ie=ie||te;const{__:se}=wp.i18n,{useState:de,useEffect:me,useMemo:ue}=wp.element,{addQueryArgs:fe}=wp.url,{useDispatch:pe}=wp.data,{BaseHelp:he,BaseAction:ge,ToggleControl:ve}=JetFBComponents,{Tools:be,convertFlow:we}=JetFBActions,Ee=we(K),_e=(e,t)=>{const n=new Set(e.map((({value:e})=>e))),i=[];for(const e of t)n.has(e.value)||i.push(e);return[...e,...i]},ye=function({onChangeSettingObj:t,settings:n}){var i,o;const[r,a]=(0,$.useActions)([]),l=(0,X.useFields)({withInner:!1}),{currentAction:c}=(0,$.useCurrentAction)(),s=ue((()=>l.find((e=>"email"===e?.attributes?.field_type))),[]),[d,m]=de(Boolean(n.mail_to)),u=ue((()=>r.findIndex((({events:e=[],type:t})=>-1!==e.indexOf(h)&&"redirect_to_page"===t))),[]),f=ue((()=>r.findIndex((({events:e=[],type:t})=>-1!==e.indexOf(g)&&"redirect_to_page"===t))),[]),p=null!==(i=r[u])&&void 0!==i?i:{},v=null!==(o=r[f])&&void 0!==o?o:{},[b,w]=de([]),[E,_]=W(b),[y,j]=W(b),{openActionSettings:C}=pe("jet-forms/actions"),F=(e,t)=>{const n=new ge({type:"redirect_to_page"});return n.events=[t],e&&(n.selfSettings={redirect_type:"static_page",redirect_page:e}),a([...r.map((e=>c.id!==e.id?e:c)),n]),n};return me((()=>{Z({path:"/wp/v2/pages"}).then((e=>w((t=>_e(t,e)))));const e=[n.success_page,n.failed_page].filter(Boolean);e.length&&Z({path:fe("/wp/v2/pages",{include:e})}).then((e=>w((t=>_e(t,e)))))}),[]),"admin"===n.who_can?null:(0,e.createElement)(e.Fragment,null,(0,e.createElement)(oe,{label:se("Email Field","jet-form-builder"),className:"jet-fb label-reset-margin"},(0,e.createElement)("div",{className:"jet-control-clear-full"},(0,e.createElement)(ce,{value:n.mail_to,onChange:e=>t({mail_to:e}),options:be.withPlaceholder(l),hideLabelFromVision:!0}),(0,e.createElement)(he,null,se("Send a verification link to the email address \nprovided in this field.","jet-form-builder")),!d&&Boolean(s)&&(0,e.createElement)(he,null,(0,e.createElement)(le,{justify:"flex-start",gap:1},se("(Suggestion) Choose the:","jet-form-builder"),(0,e.createElement)(ae,{isLink:!0,onClick:()=>{m(!0),t({mail_to:s.value})}},s.label),se("field","jet-form-builder"))))),n.mail_to&&(0,e.createElement)(ve,{checked:Boolean(n.custom_email),onChange:e=>t({custom_email:e}),help:se("If disabled, a standard verification email will be sent. \nIf enabled, you can create a custom verification email \nwith a separate Send Email action.","jet-form-builder")},(0,e.createElement)(le,{gap:3,justify:"flex-start"},se("Create custom verification email","jet-form-builder"),n.custom_email&&(0,e.createElement)(ae,{isLink:!0,onClick:()=>{const e=(()=>{const{list:[e]}=Ee;return e.selfSettings={...e.selfSettings,from_field:n.mail_to},a([...r.map((e=>c.id!==e.id?e:c)),{...e}]),e})();C({index:r.length,item:e})}},se("+ Add Send Email action","jet-form-builder")))),(0,e.createElement)(le,{justify:"flex-start",style:{marginTop:"-2.5em",marginBottom:"1em"}},(0,e.createElement)("p",{style:{fontSize:"12px",color:"rgb(117, 117, 117)"}},(0,e.createElement)("b",null,se("Note:","jet-form-builder"))," ",se("All password fields will be hashed. If you include a password field in the email content, the hashed password will be displayed, not the actual value.","jet-form-builder"))),(0,e.createElement)(oe,{label:se("Success Page","jet-form-builder"),className:"control-flex"},(0,e.createElement)(le,{style:{flex:3.1},direction:"column"},-1!==u?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(he,null,se("You have already configured the \nRedirect to Page action with the event:","jet-form-builder"),(0,e.createElement)("code",null,h)),(0,e.createElement)(le,null,(0,e.createElement)(ae,{icon:(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,e.createElement)("path",{d:"m19 7-3-3-8.5 8.5-1 4 4-1L19 7Zm-7 11.5H5V20h7v-1.5Z"})),onClick:()=>{C({index:u,item:p})}},se("Edit verification success redirect","jet-form-builder")))):(0,e.createElement)(e.Fragment,null,(0,e.createElement)(re,{value:n.success_page,onChange:e=>t({success_page:e}),options:E,hideLabelFromVision:!0,onFilterValueChange:_}),(0,e.createElement)(he,{style:{marginTop:"-1em"}},se("Select a page for the redirect after successful \nverification. By default, the user is redirected to the form page. Or","jet-form-builder")," ",(0,e.createElement)(ae,{isLink:!0,onClick:()=>{const e=F(n.success_page,h);C({index:r.length,item:{...e}})}},se("configure a separate Redirect to Page action","jet-form-builder")))))),(0,e.createElement)(oe,{label:se("Failed Page","jet-form-builder"),className:"control-flex"},(0,e.createElement)(le,{style:{flex:3.1},direction:"column"},-1!==f?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(he,null,se("You have already configured the\nRedirect to Page action with the event:","jet-form-builder"),(0,e.createElement)("code",null,g)),(0,e.createElement)(le,null,(0,e.createElement)(ae,{icon:(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,e.createElement)("path",{d:"m19 7-3-3-8.5 8.5-1 4 4-1L19 7Zm-7 11.5H5V20h7v-1.5Z"})),onClick:()=>{C({index:f,item:v})}},se("Edit verification failed redirect","jet-form-builder")))):(0,e.createElement)(e.Fragment,null,(0,e.createElement)(re,{value:n.failed_page,onChange:e=>t({failed_page:e}),options:y,hideLabelFromVision:!0,onFilterValueChange:j}),(0,e.createElement)(he,{style:{marginTop:"-1em"}},se("Select a page for the redirect after verification \nfailure. By default, the user is redirected to the form page. Or","jet-form-builder")," ",(0,e.createElement)(ae,{isLink:!0,onClick:()=>{const e=F(n.failed_page,g);C({index:r.length,item:{...e}})}},se("configure a separate Redirect to Page action","jet-form-builder")))))))},{BaseHelp:je,ActionModalHeaderSlotFill:Ce,ActionModalBackButton:Fe}=JetFBComponents,Se=(0,e.createElement)(o.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)(o.Path,{d:"M9 13.5a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM9 16a4.002 4.002 0 003.8-2.75H15V16h2.5v-2.75H19v-2.5h-6.2A4.002 4.002 0 005 12a4 4 0 004 4z",fillRule:"evenodd",clipRule:"evenodd"})),Ae=(0,e.createElement)(o.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(o.Path,{d:"m19 7-3-3-8.5 8.5-1 4 4-1L19 7Zm-7 11.5H5V20h7v-1.5Z"})),xe={type:"verification",edit:function({onChangeSettingObj:o,settings:r}){var a,l;const[c,s]=(0,n.useState)(!1);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ce.Fill,null,(0,e.createElement)(i.Button,{variant:"tertiary",isPressed:c,icon:(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},(0,e.createElement)("path",{d:"M12 4.75a7.25 7.25 0 100 14.5 7.25 7.25 0 000-14.5zM3.25 12a8.75 8.75 0 1117.5 0 8.75 8.75 0 01-17.5 0zM12 8.75a1.5 1.5 0 01.167 2.99c-.465.052-.917.44-.917 1.01V14h1.5v-.845A3 3 0 109 10.25h1.5a1.5 1.5 0 011.5-1.5zM11.25 15v1.5h1.5V15h-1.5z"})),onClick:()=>s((e=>!e))})),c&&(0,e.createElement)(U,null),(0,e.createElement)(i.SelectControl,{label:(0,t.__)("Who can verify the submission","jet-form-builder"),value:null!==(a=r.who_can)&&void 0!==a?a:"",labelPosition:"side",options:[{value:"",label:(0,t.__)("User & Administrator","jet-form-builder")},{value:"admin",label:(0,t.__)("Administrator","jet-form-builder")}],onChange:e=>o({who_can:e})}),(0,e.createElement)(i.BaseControl,{label:(0,t.__)("Link Lifespan","jet-form-builder"),className:"jet-fb label-reset-margin"},(0,e.createElement)("div",{style:{flex:3}},(0,e.createElement)(i.TextControl,{value:null!==(l=r.lifespan)&&void 0!==l?l:4,onChange:e=>o({lifespan:e})}),(0,e.createElement)(je,{style:{marginTop:"-4px"}},(0,t.__)('Indicates for how many hours a verification link \nwill be active. If you leave this field empty or enter "0", it means \nverification can be completed at any given time.',"jet-form-builder")))),(0,e.createElement)(ye,{settings:r,onChangeSettingObj:o}))},label:(0,t.__)("Verification","jet-form-builder"),icon:Se,docHref:"https://jetformbuilder.com/features/email-verification/",provideEvents:()=>[h,g],fixed:!0,disableConditions:!0,category:"user",disabledOverlay:function({action:o}){const[r]=(0,$.useActions)(),a=(0,n.useMemo)((()=>r.findIndex((({type:e})=>e===o.type))),[o.type]),{openActionSettings:l}=(0,z.useDispatch)($.STORE_NAME);return(0,e.createElement)(i.Flex,{direction:"column",justify:"space-evenly",align:"center"},(0,e.createElement)("span",null,(0,t.__)("This action has already added.","jet-form-builder")),(0,e.createElement)(i.Button,{variant:"tertiary",onClick:()=>{l({item:r[a],index:a})},icon:Ae},(0,t.__)("Edit action","jet-form-builder")))}},{addComputedField:Be}=JetFBActions;window.JetFBComponents={...window.JetFBComponents,TokenComputedField:y,TokenIDComputedField:B,VerificationURLComputedField:V},Be(y,{isScoped:!0}),Be(C),Be(B),Be(V),(0,M.addFilter)("jet.fb.register.plugin.jf-actions-panel.before","jet-form-builder/verification",(function(e){return e.push(d),e})),(0,M.addFilter)("jet.fb.action.item","jet-form-builder/footer-notice-for-no-events",(n=>()=>{const{action:o}=L(),{updateActionObj:r}=H(),[a]=R(),l=N(o),c=a.some((e=>"verification"===e.type));return o?.events?.length||"verification"===o.type||!c||1>=l.length?(0,e.createElement)(n,null):(0,e.createElement)(P,null,(0,e.createElement)(J,null),(0,e.createElement)(i.CardFooter,null,(0,e.createElement)(i.Flex,{justify:"flex-start",style:{flex:1}},(0,e.createElement)(i.Icon,{size:20,icon:O}),(0,t.__)("Runs on verification","jet-form-builder")),(0,e.createElement)(i.Button,{isLink:!0,onClick:()=>r(o.id,{events:["DEFAULT.PROCESS"]}),style:{textDecoration:"none",borderBottom:"2px dotted var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))"}},(0,t.__)("Run always","jet-form-builder"))))})),(0,z.subscribe)((()=>setTimeout(p,0))),(0,z.dispatch)("jet-forms/actions").registerAction(xe)})(); \ No newline at end of file diff --git a/modules/wysiwyg/assets/build/editor.asset.php b/modules/wysiwyg/assets/build/editor.asset.php index 53d45646a..aae500f95 100644 --- a/modules/wysiwyg/assets/build/editor.asset.php +++ b/modules/wysiwyg/assets/build/editor.asset.php @@ -1 +1 @@ - array('react'), 'version' => 'ec5ee578c1142cfd608f'); + array('react'), 'version' => 'f540ca0e101725691dc2'); diff --git a/modules/wysiwyg/assets/build/editor.js b/modules/wysiwyg/assets/build/editor.js index 699d8a836..d1ec2cb79 100644 --- a/modules/wysiwyg/assets/build/editor.js +++ b/modules/wysiwyg/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={d:(t,l)=>{for(var r in l)e.o(l,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:l[r]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{metadata:()=>Z,name:()=>L,settings:()=>k});const l=window.React,r=(0,l.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,l.createElement)("path",{d:"M22.1914 26.9268V28H17.2148V26.9268H22.1914ZM17.4746 18.0469V28H16.1553V18.0469H17.4746ZM26.5801 28.1367C26.0651 28.1367 25.598 28.0501 25.1787 27.877C24.764 27.6992 24.4062 27.4508 24.1055 27.1318C23.8092 26.8128 23.5814 26.4346 23.4219 25.9971C23.2624 25.5596 23.1826 25.0811 23.1826 24.5615V24.2744C23.1826 23.6729 23.2715 23.1374 23.4492 22.668C23.627 22.194 23.8685 21.793 24.1738 21.4648C24.4792 21.1367 24.8255 20.8883 25.2129 20.7197C25.6003 20.5511 26.0013 20.4668 26.416 20.4668C26.9447 20.4668 27.4004 20.5579 27.7832 20.7402C28.1706 20.9225 28.4873 21.1777 28.7334 21.5059C28.9795 21.8294 29.1618 22.2122 29.2803 22.6543C29.3988 23.0918 29.458 23.5703 29.458 24.0898V24.6572H23.9346V23.625H28.1934V23.5293C28.1751 23.2012 28.1068 22.8822 27.9883 22.5723C27.8743 22.2624 27.6921 22.0072 27.4414 21.8066C27.1908 21.6061 26.849 21.5059 26.416 21.5059C26.1289 21.5059 25.8646 21.5674 25.623 21.6904C25.3815 21.8089 25.1742 21.9867 25.001 22.2236C24.8278 22.4606 24.6934 22.75 24.5977 23.0918C24.502 23.4336 24.4541 23.8278 24.4541 24.2744V24.5615C24.4541 24.9124 24.502 25.2428 24.5977 25.5527C24.6979 25.8581 24.8415 26.127 25.0283 26.3594C25.2197 26.5918 25.4499 26.7741 25.7188 26.9062C25.9922 27.0384 26.3021 27.1045 26.6484 27.1045C27.0951 27.1045 27.4733 27.0133 27.7832 26.8311C28.0931 26.6488 28.3643 26.4049 28.5967 26.0996L29.3623 26.708C29.2028 26.9495 29 27.1797 28.7539 27.3984C28.5078 27.6172 28.2048 27.7949 27.8447 27.9316C27.4893 28.0684 27.0677 28.1367 26.5801 28.1367ZM35.2959 26.7354V22.9277C35.2959 22.6361 35.2367 22.3831 35.1182 22.1689C35.0042 21.9502 34.8311 21.7816 34.5986 21.6631C34.3662 21.5446 34.0791 21.4854 33.7373 21.4854C33.4183 21.4854 33.138 21.54 32.8965 21.6494C32.6595 21.7588 32.4727 21.9023 32.3359 22.0801C32.2038 22.2578 32.1377 22.4492 32.1377 22.6543H30.873C30.873 22.39 30.9414 22.1279 31.0781 21.8682C31.2148 21.6084 31.4108 21.3737 31.666 21.1641C31.9258 20.9499 32.2357 20.7812 32.5957 20.6582C32.9603 20.5306 33.3659 20.4668 33.8125 20.4668C34.3503 20.4668 34.8242 20.5579 35.2344 20.7402C35.6491 20.9225 35.9727 21.1982 36.2051 21.5674C36.4421 21.932 36.5605 22.39 36.5605 22.9414V26.3867C36.5605 26.6328 36.5811 26.8949 36.6221 27.1729C36.6676 27.4508 36.7337 27.6901 36.8203 27.8906V28H35.501C35.4372 27.8542 35.387 27.6605 35.3506 27.4189C35.3141 27.1729 35.2959 26.945 35.2959 26.7354ZM35.5146 23.5156L35.5283 24.4043H34.25C33.89 24.4043 33.5687 24.4339 33.2861 24.4932C33.0036 24.5479 32.7666 24.6322 32.5752 24.7461C32.3838 24.86 32.238 25.0036 32.1377 25.1768C32.0374 25.3454 31.9873 25.5436 31.9873 25.7715C31.9873 26.0039 32.0397 26.2158 32.1445 26.4072C32.2493 26.5986 32.4066 26.7513 32.6162 26.8652C32.8304 26.9746 33.0924 27.0293 33.4023 27.0293C33.7897 27.0293 34.1315 26.9473 34.4277 26.7832C34.724 26.6191 34.9587 26.4186 35.1318 26.1816C35.3096 25.9447 35.4053 25.7145 35.4189 25.4912L35.959 26.0996C35.9271 26.291 35.8405 26.5029 35.6992 26.7354C35.5579 26.9678 35.3688 27.1911 35.1318 27.4053C34.8994 27.6149 34.6214 27.7904 34.2979 27.9316C33.9788 28.0684 33.6188 28.1367 33.2178 28.1367C32.7165 28.1367 32.2767 28.0387 31.8984 27.8428C31.5247 27.6468 31.2331 27.3848 31.0234 27.0566C30.8184 26.724 30.7158 26.3525 30.7158 25.9424C30.7158 25.5459 30.7933 25.1973 30.9482 24.8965C31.1032 24.5911 31.3265 24.3382 31.6182 24.1377C31.9098 23.9326 32.2607 23.7777 32.6709 23.6729C33.0811 23.568 33.5391 23.5156 34.0449 23.5156H35.5146ZM40.6895 26.8584L42.7129 20.6035H44.0049L41.3457 28H40.498L40.6895 26.8584ZM39.001 20.6035L41.0859 26.8926L41.2295 28H40.3818L37.7021 20.6035H39.001ZM48.1953 28.1367C47.6803 28.1367 47.2132 28.0501 46.7939 27.877C46.3792 27.6992 46.0215 27.4508 45.7207 27.1318C45.4245 26.8128 45.1966 26.4346 45.0371 25.9971C44.8776 25.5596 44.7979 25.0811 44.7979 24.5615V24.2744C44.7979 23.6729 44.8867 23.1374 45.0645 22.668C45.2422 22.194 45.4837 21.793 45.7891 21.4648C46.0944 21.1367 46.4408 20.8883 46.8281 20.7197C47.2155 20.5511 47.6165 20.4668 48.0312 20.4668C48.5599 20.4668 49.0156 20.5579 49.3984 20.7402C49.7858 20.9225 50.1025 21.1777 50.3486 21.5059C50.5947 21.8294 50.777 22.2122 50.8955 22.6543C51.014 23.0918 51.0732 23.5703 51.0732 24.0898V24.6572H45.5498V23.625H49.8086V23.5293C49.7904 23.2012 49.722 22.8822 49.6035 22.5723C49.4896 22.2624 49.3073 22.0072 49.0566 21.8066C48.806 21.6061 48.4642 21.5059 48.0312 21.5059C47.7441 21.5059 47.4798 21.5674 47.2383 21.6904C46.9967 21.8089 46.7894 21.9867 46.6162 22.2236C46.443 22.4606 46.3086 22.75 46.2129 23.0918C46.1172 23.4336 46.0693 23.8278 46.0693 24.2744V24.5615C46.0693 24.9124 46.1172 25.2428 46.2129 25.5527C46.3132 25.8581 46.4567 26.127 46.6436 26.3594C46.835 26.5918 47.0651 26.7741 47.334 26.9062C47.6074 27.0384 47.9173 27.1045 48.2637 27.1045C48.7103 27.1045 49.0885 27.0133 49.3984 26.8311C49.7083 26.6488 49.9795 26.4049 50.2119 26.0996L50.9775 26.708C50.818 26.9495 50.6152 27.1797 50.3691 27.3984C50.123 27.6172 49.82 27.7949 49.46 27.9316C49.1045 28.0684 48.6829 28.1367 48.1953 28.1367ZM60.3838 26.7354V22.9277C60.3838 22.6361 60.3245 22.3831 60.2061 22.1689C60.0921 21.9502 59.9189 21.7816 59.6865 21.6631C59.4541 21.5446 59.167 21.4854 58.8252 21.4854C58.5062 21.4854 58.2259 21.54 57.9844 21.6494C57.7474 21.7588 57.5605 21.9023 57.4238 22.0801C57.2917 22.2578 57.2256 22.4492 57.2256 22.6543H55.9609C55.9609 22.39 56.0293 22.1279 56.166 21.8682C56.3027 21.6084 56.4987 21.3737 56.7539 21.1641C57.0137 20.9499 57.3236 20.7812 57.6836 20.6582C58.0482 20.5306 58.4538 20.4668 58.9004 20.4668C59.4382 20.4668 59.9121 20.5579 60.3223 20.7402C60.737 20.9225 61.0605 21.1982 61.293 21.5674C61.5299 21.932 61.6484 22.39 61.6484 22.9414V26.3867C61.6484 26.6328 61.6689 26.8949 61.71 27.1729C61.7555 27.4508 61.8216 27.6901 61.9082 27.8906V28H60.5889C60.5251 27.8542 60.4749 27.6605 60.4385 27.4189C60.402 27.1729 60.3838 26.945 60.3838 26.7354ZM60.6025 23.5156L60.6162 24.4043H59.3379C58.9779 24.4043 58.6566 24.4339 58.374 24.4932C58.0915 24.5479 57.8545 24.6322 57.6631 24.7461C57.4717 24.86 57.3258 25.0036 57.2256 25.1768C57.1253 25.3454 57.0752 25.5436 57.0752 25.7715C57.0752 26.0039 57.1276 26.2158 57.2324 26.4072C57.3372 26.5986 57.4945 26.7513 57.7041 26.8652C57.9183 26.9746 58.1803 27.0293 58.4902 27.0293C58.8776 27.0293 59.2194 26.9473 59.5156 26.7832C59.8118 26.6191 60.0465 26.4186 60.2197 26.1816C60.3975 25.9447 60.4932 25.7145 60.5068 25.4912L61.0469 26.0996C61.015 26.291 60.9284 26.5029 60.7871 26.7354C60.6458 26.9678 60.4567 27.1911 60.2197 27.4053C59.9873 27.6149 59.7093 27.7904 59.3857 27.9316C59.0667 28.0684 58.7067 28.1367 58.3057 28.1367C57.8044 28.1367 57.3646 28.0387 56.9863 27.8428C56.6126 27.6468 56.321 27.3848 56.1113 27.0566C55.9062 26.724 55.8037 26.3525 55.8037 25.9424C55.8037 25.5459 55.8812 25.1973 56.0361 24.8965C56.1911 24.5911 56.4144 24.3382 56.7061 24.1377C56.9977 23.9326 57.3486 23.7777 57.7588 23.6729C58.1689 23.568 58.627 23.5156 59.1328 23.5156H60.6025ZM70.0703 27.0977C70.3711 27.0977 70.6491 27.0361 70.9043 26.9131C71.1595 26.79 71.3691 26.6214 71.5332 26.4072C71.6973 26.1885 71.7907 25.9401 71.8135 25.6621H73.0166C72.9938 26.0996 72.8457 26.5075 72.5723 26.8857C72.3034 27.2594 71.9502 27.5625 71.5127 27.7949C71.0752 28.0228 70.5944 28.1367 70.0703 28.1367C69.5143 28.1367 69.029 28.0387 68.6143 27.8428C68.2041 27.6468 67.8623 27.3779 67.5889 27.0361C67.32 26.6943 67.1172 26.3024 66.9805 25.8604C66.8483 25.4137 66.7822 24.9421 66.7822 24.4453V24.1582C66.7822 23.6615 66.8483 23.1921 66.9805 22.75C67.1172 22.3034 67.32 21.9092 67.5889 21.5674C67.8623 21.2256 68.2041 20.9567 68.6143 20.7607C69.029 20.5648 69.5143 20.4668 70.0703 20.4668C70.6491 20.4668 71.1549 20.5853 71.5879 20.8223C72.0208 21.0547 72.3604 21.3737 72.6064 21.7793C72.8571 22.1803 72.9938 22.6361 73.0166 23.1465H71.8135C71.7907 22.8411 71.7041 22.5654 71.5537 22.3193C71.4079 22.0732 71.2074 21.8773 70.9521 21.7314C70.7015 21.5811 70.4076 21.5059 70.0703 21.5059C69.6829 21.5059 69.3571 21.5833 69.0928 21.7383C68.833 21.8887 68.6257 22.0938 68.4707 22.3535C68.3203 22.6087 68.2109 22.8936 68.1426 23.208C68.0788 23.5179 68.0469 23.8346 68.0469 24.1582V24.4453C68.0469 24.7689 68.0788 25.0879 68.1426 25.4023C68.2064 25.7168 68.3135 26.0016 68.4639 26.2568C68.6188 26.512 68.8262 26.7171 69.0859 26.8721C69.3503 27.0225 69.6784 27.0977 70.0703 27.0977ZM74.1035 24.3838V24.2266C74.1035 23.6934 74.181 23.1989 74.3359 22.7432C74.4909 22.2829 74.7142 21.8841 75.0059 21.5469C75.2975 21.2051 75.6507 20.9408 76.0654 20.7539C76.4801 20.5625 76.945 20.4668 77.46 20.4668C77.9795 20.4668 78.4466 20.5625 78.8613 20.7539C79.2806 20.9408 79.6361 21.2051 79.9277 21.5469C80.224 21.8841 80.4495 22.2829 80.6045 22.7432C80.7594 23.1989 80.8369 23.6934 80.8369 24.2266V24.3838C80.8369 24.917 80.7594 25.4115 80.6045 25.8672C80.4495 26.3229 80.224 26.7217 79.9277 27.0635C79.6361 27.4007 79.2829 27.665 78.8682 27.8564C78.458 28.0433 77.9932 28.1367 77.4736 28.1367C76.9541 28.1367 76.487 28.0433 76.0723 27.8564C75.6576 27.665 75.3021 27.4007 75.0059 27.0635C74.7142 26.7217 74.4909 26.3229 74.3359 25.8672C74.181 25.4115 74.1035 24.917 74.1035 24.3838ZM75.3682 24.2266V24.3838C75.3682 24.7529 75.4115 25.1016 75.498 25.4297C75.5846 25.7533 75.7145 26.0404 75.8877 26.291C76.0654 26.5417 76.2865 26.7399 76.5508 26.8857C76.8151 27.027 77.1227 27.0977 77.4736 27.0977C77.82 27.0977 78.123 27.027 78.3828 26.8857C78.6471 26.7399 78.8659 26.5417 79.0391 26.291C79.2122 26.0404 79.3421 25.7533 79.4287 25.4297C79.5199 25.1016 79.5654 24.7529 79.5654 24.3838V24.2266C79.5654 23.862 79.5199 23.5179 79.4287 23.1943C79.3421 22.8662 79.21 22.5768 79.0322 22.3262C78.859 22.071 78.6403 21.8704 78.376 21.7246C78.1162 21.5788 77.8109 21.5059 77.46 21.5059C77.1136 21.5059 76.8083 21.5788 76.5439 21.7246C76.2842 21.8704 76.0654 22.071 75.8877 22.3262C75.7145 22.5768 75.5846 22.8662 75.498 23.1943C75.4115 23.5179 75.3682 23.862 75.3682 24.2266ZM83.6807 22.0732V28H82.4092V20.6035H83.6123L83.6807 22.0732ZM83.4209 24.0215L82.833 24.001C82.8376 23.4951 82.9036 23.028 83.0312 22.5996C83.1589 22.1667 83.348 21.7907 83.5986 21.4717C83.8493 21.1527 84.1615 20.9066 84.5352 20.7334C84.9089 20.5557 85.3418 20.4668 85.834 20.4668C86.1803 20.4668 86.4993 20.5169 86.791 20.6172C87.0827 20.7129 87.3356 20.8656 87.5498 21.0752C87.764 21.2848 87.9303 21.5537 88.0488 21.8818C88.1673 22.21 88.2266 22.6064 88.2266 23.0713V28H86.9619V23.1328C86.9619 22.7454 86.8958 22.4355 86.7637 22.2031C86.6361 21.9707 86.4538 21.8021 86.2168 21.6973C85.9798 21.5879 85.7018 21.5332 85.3828 21.5332C85.0091 21.5332 84.6969 21.5993 84.4463 21.7314C84.1956 21.8636 83.9951 22.0459 83.8447 22.2783C83.6943 22.5107 83.585 22.7773 83.5166 23.0781C83.4528 23.3743 83.4209 23.6888 83.4209 24.0215ZM88.2129 23.3242L87.3652 23.584C87.3698 23.1784 87.4359 22.7887 87.5635 22.415C87.6956 22.0413 87.8848 21.7087 88.1309 21.417C88.3815 21.1253 88.6891 20.8952 89.0537 20.7266C89.4183 20.5534 89.8353 20.4668 90.3047 20.4668C90.7012 20.4668 91.0521 20.5192 91.3574 20.624C91.6673 20.7288 91.9271 20.8906 92.1367 21.1094C92.3509 21.3236 92.5127 21.5993 92.6221 21.9365C92.7314 22.2738 92.7861 22.6748 92.7861 23.1396V28H91.5146V23.126C91.5146 22.7113 91.4486 22.39 91.3164 22.1621C91.1888 21.9297 91.0065 21.7679 90.7695 21.6768C90.5371 21.5811 90.2591 21.5332 89.9355 21.5332C89.6576 21.5332 89.4115 21.5811 89.1973 21.6768C88.9831 21.7725 88.8031 21.9046 88.6572 22.0732C88.5114 22.2373 88.3997 22.4264 88.3223 22.6406C88.2493 22.8548 88.2129 23.0827 88.2129 23.3242ZM95.958 22.0732V28H94.6865V20.6035H95.8896L95.958 22.0732ZM95.6982 24.0215L95.1104 24.001C95.1149 23.4951 95.181 23.028 95.3086 22.5996C95.4362 22.1667 95.6253 21.7907 95.876 21.4717C96.1266 21.1527 96.4388 20.9066 96.8125 20.7334C97.1862 20.5557 97.6191 20.4668 98.1113 20.4668C98.4577 20.4668 98.7767 20.5169 99.0684 20.6172C99.36 20.7129 99.613 20.8656 99.8271 21.0752C100.041 21.2848 100.208 21.5537 100.326 21.8818C100.445 22.21 100.504 22.6064 100.504 23.0713V28H99.2393V23.1328C99.2393 22.7454 99.1732 22.4355 99.041 22.2031C98.9134 21.9707 98.7311 21.8021 98.4941 21.6973C98.2572 21.5879 97.9792 21.5332 97.6602 21.5332C97.2865 21.5332 96.9743 21.5993 96.7236 21.7314C96.473 21.8636 96.2725 22.0459 96.1221 22.2783C95.9717 22.5107 95.8623 22.7773 95.7939 23.0781C95.7301 23.3743 95.6982 23.6888 95.6982 24.0215ZM100.49 23.3242L99.6426 23.584C99.6471 23.1784 99.7132 22.7887 99.8408 22.415C99.973 22.0413 100.162 21.7087 100.408 21.417C100.659 21.1253 100.966 20.8952 101.331 20.7266C101.696 20.5534 102.113 20.4668 102.582 20.4668C102.979 20.4668 103.329 20.5192 103.635 20.624C103.945 20.7288 104.204 20.8906 104.414 21.1094C104.628 21.3236 104.79 21.5993 104.899 21.9365C105.009 22.2738 105.063 22.6748 105.063 23.1396V28H103.792V23.126C103.792 22.7113 103.726 22.39 103.594 22.1621C103.466 21.9297 103.284 21.7679 103.047 21.6768C102.814 21.5811 102.536 21.5332 102.213 21.5332C101.935 21.5332 101.689 21.5811 101.475 21.6768C101.26 21.7725 101.08 21.9046 100.935 22.0732C100.789 22.2373 100.677 22.4264 100.6 22.6406C100.527 22.8548 100.49 23.0827 100.49 23.3242ZM110.047 28.1367C109.532 28.1367 109.065 28.0501 108.646 27.877C108.231 27.6992 107.873 27.4508 107.572 27.1318C107.276 26.8128 107.048 26.4346 106.889 25.9971C106.729 25.5596 106.649 25.0811 106.649 24.5615V24.2744C106.649 23.6729 106.738 23.1374 106.916 22.668C107.094 22.194 107.335 21.793 107.641 21.4648C107.946 21.1367 108.292 20.8883 108.68 20.7197C109.067 20.5511 109.468 20.4668 109.883 20.4668C110.411 20.4668 110.867 20.5579 111.25 20.7402C111.637 20.9225 111.954 21.1777 112.2 21.5059C112.446 21.8294 112.629 22.2122 112.747 22.6543C112.866 23.0918 112.925 23.5703 112.925 24.0898V24.6572H107.401V23.625H111.66V23.5293C111.642 23.2012 111.574 22.8822 111.455 22.5723C111.341 22.2624 111.159 22.0072 110.908 21.8066C110.658 21.6061 110.316 21.5059 109.883 21.5059C109.596 21.5059 109.331 21.5674 109.09 21.6904C108.848 21.8089 108.641 21.9867 108.468 22.2236C108.295 22.4606 108.16 22.75 108.064 23.0918C107.969 23.4336 107.921 23.8278 107.921 24.2744V24.5615C107.921 24.9124 107.969 25.2428 108.064 25.5527C108.165 25.8581 108.308 26.127 108.495 26.3594C108.687 26.5918 108.917 26.7741 109.186 26.9062C109.459 27.0384 109.769 27.1045 110.115 27.1045C110.562 27.1045 110.94 27.0133 111.25 26.8311C111.56 26.6488 111.831 26.4049 112.063 26.0996L112.829 26.708C112.67 26.9495 112.467 27.1797 112.221 27.3984C111.975 27.6172 111.672 27.7949 111.312 27.9316C110.956 28.0684 110.535 28.1367 110.047 28.1367ZM115.666 22.1826V28H114.401V20.6035H115.598L115.666 22.1826ZM115.365 24.0215L114.839 24.001C114.843 23.4951 114.919 23.028 115.064 22.5996C115.21 22.1667 115.415 21.7907 115.68 21.4717C115.944 21.1527 116.258 20.9066 116.623 20.7334C116.992 20.5557 117.4 20.4668 117.847 20.4668C118.211 20.4668 118.539 20.5169 118.831 20.6172C119.123 20.7129 119.371 20.8678 119.576 21.082C119.786 21.2962 119.945 21.5742 120.055 21.916C120.164 22.2533 120.219 22.6657 120.219 23.1533V28H118.947V23.1396C118.947 22.7523 118.89 22.4424 118.776 22.21C118.662 21.973 118.496 21.8021 118.277 21.6973C118.059 21.5879 117.79 21.5332 117.471 21.5332C117.156 21.5332 116.869 21.5993 116.609 21.7314C116.354 21.8636 116.133 22.0459 115.946 22.2783C115.764 22.5107 115.62 22.7773 115.516 23.0781C115.415 23.3743 115.365 23.6888 115.365 24.0215ZM125.236 20.6035V21.5742H121.237V20.6035H125.236ZM122.591 18.8057H123.855V26.168C123.855 26.4186 123.894 26.6077 123.972 26.7354C124.049 26.863 124.149 26.9473 124.272 26.9883C124.396 27.0293 124.528 27.0498 124.669 27.0498C124.774 27.0498 124.883 27.0407 124.997 27.0225C125.116 26.9997 125.204 26.9814 125.264 26.9678L125.271 28C125.17 28.0319 125.038 28.0615 124.874 28.0889C124.715 28.1208 124.521 28.1367 124.293 28.1367C123.983 28.1367 123.698 28.0752 123.438 27.9521C123.179 27.8291 122.971 27.624 122.816 27.3369C122.666 27.0452 122.591 26.6533 122.591 26.1611V18.8057Z",fill:"#64748B"}),(0,l.createElement)("rect",{x:"14.5",y:"35.5",width:"269",height:"94",rx:"4.5",fill:"white"}),(0,l.createElement)("rect",{x:"20",y:"41",width:"37.8849",height:"15.108",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M25.8981 44.0227V52.554H24.7672V44.0227H25.8981ZM29.4723 47.8606V48.7864H25.652V47.8606H29.4723ZM30.0524 44.0227V44.9485H25.652V44.0227H30.0524ZM32.4137 46.2141V52.554H31.3239V46.2141H32.4137ZM31.2418 44.5325C31.2418 44.3567 31.2946 44.2083 31.4 44.0872C31.5094 43.9661 31.6696 43.9055 31.8805 43.9055C32.0875 43.9055 32.2457 43.9661 32.3551 44.0872C32.4684 44.2083 32.525 44.3567 32.525 44.5325C32.525 44.7004 32.4684 44.845 32.3551 44.9661C32.2457 45.0833 32.0875 45.1418 31.8805 45.1418C31.6696 45.1418 31.5094 45.0833 31.4 44.9661C31.2946 44.845 31.2418 44.7004 31.2418 44.5325ZM35.3317 43.554V52.554H34.2418V43.554H35.3317ZM39.7028 52.6711C39.2614 52.6711 38.861 52.5969 38.5016 52.4485C38.1461 52.2961 37.8395 52.0833 37.5817 51.8098C37.3278 51.5364 37.1324 51.2122 36.9957 50.8372C36.859 50.4622 36.7906 50.052 36.7906 49.6067V49.3606C36.7906 48.845 36.8668 48.386 37.0192 47.9836C37.1715 47.5774 37.3785 47.2336 37.6403 46.9524C37.902 46.6711 38.1989 46.4583 38.5309 46.3137C38.8629 46.1692 39.2067 46.0969 39.5621 46.0969C40.0153 46.0969 40.4059 46.175 40.734 46.3313C41.066 46.4875 41.3375 46.7063 41.5485 46.9875C41.7594 47.2649 41.9156 47.593 42.0172 47.9719C42.1188 48.3469 42.1696 48.7571 42.1696 49.2024V49.6887H37.4352V48.804H41.0856V48.7219C41.0699 48.4407 41.0114 48.1672 40.9098 47.9016C40.8121 47.636 40.6559 47.4172 40.441 47.2454C40.2262 47.0735 39.9332 46.9875 39.5621 46.9875C39.316 46.9875 39.0895 47.0403 38.8824 47.1458C38.6754 47.2473 38.4977 47.3997 38.3492 47.6028C38.2008 47.8059 38.0856 48.054 38.0035 48.3469C37.9215 48.6399 37.8805 48.9778 37.8805 49.3606V49.6067C37.8805 49.9075 37.9215 50.1907 38.0035 50.4563C38.0895 50.718 38.2125 50.9485 38.3727 51.1477C38.5367 51.3469 38.734 51.5032 38.9645 51.6165C39.1989 51.7297 39.4645 51.7864 39.7614 51.7864C40.1442 51.7864 40.4684 51.7083 40.734 51.552C40.9996 51.3958 41.2321 51.1868 41.4313 50.925L42.0875 51.4465C41.9508 51.6536 41.777 51.8508 41.566 52.0383C41.3551 52.2258 41.0953 52.3782 40.7867 52.4954C40.4821 52.6125 40.1207 52.6711 39.7028 52.6711Z",fill:"white"}),(0,l.createElement)("g",{clipPath:"url(#clip0_76_1285)"},(0,l.createElement)("path",{d:"M47.1837 47.2949L50.3312 50.4424L53.4787 47.2949H47.1837Z",fill:"white"})),(0,l.createElement)("rect",{x:"62.885",y:"41",width:"39.8849",height:"15.108",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M73.0721 51.634V52.554H68.5546V51.634H73.0721ZM68.7831 44.0227V52.554H67.6522V44.0227H68.7831ZM72.4745 47.6907V48.6106H68.5546V47.6907H72.4745ZM73.0135 44.0227V44.9485H68.5546V44.0227H73.0135ZM78.1874 51.3235V43.554H79.2772V52.554H78.2811L78.1874 51.3235ZM73.9218 49.4543V49.3313C73.9218 48.8469 73.9803 48.4075 74.0975 48.0129C74.2186 47.6145 74.3885 47.2727 74.6073 46.9875C74.83 46.7024 75.0936 46.4836 75.3983 46.3313C75.7069 46.175 76.0507 46.0969 76.4296 46.0969C76.828 46.0969 77.1757 46.1672 77.4725 46.3079C77.7733 46.4446 78.0272 46.6458 78.2343 46.9114C78.4452 47.1731 78.6112 47.4895 78.7323 47.8606C78.8534 48.2317 78.9374 48.6516 78.9843 49.1204V49.6594C78.9413 50.1243 78.8573 50.5422 78.7323 50.9133C78.6112 51.2844 78.4452 51.6008 78.2343 51.8625C78.0272 52.1243 77.7733 52.3254 77.4725 52.4661C77.1718 52.6028 76.8202 52.6711 76.4178 52.6711C76.0468 52.6711 75.7069 52.5911 75.3983 52.4309C75.0936 52.2708 74.83 52.0461 74.6073 51.7571C74.3885 51.468 74.2186 51.1282 74.0975 50.7375C73.9803 50.343 73.9218 49.9153 73.9218 49.4543ZM75.0116 49.3313V49.4543C75.0116 49.7708 75.0428 50.0676 75.1053 50.345C75.1718 50.6223 75.2733 50.8665 75.41 51.0774C75.5468 51.2883 75.7206 51.4543 75.9315 51.5754C76.1425 51.6926 76.3944 51.7512 76.6874 51.7512C77.0468 51.7512 77.3417 51.675 77.5721 51.5227C77.8065 51.3704 77.994 51.1692 78.1346 50.9192C78.2753 50.6692 78.3846 50.3977 78.4628 50.1047V48.6926C78.4159 48.4778 78.3475 48.2708 78.2577 48.0715C78.1718 47.8684 78.0585 47.6887 77.9178 47.5325C77.7811 47.3723 77.6112 47.2454 77.4081 47.1516C77.2089 47.0579 76.9725 47.011 76.6991 47.011C76.4022 47.011 76.1464 47.0735 75.9315 47.1985C75.7206 47.3196 75.5468 47.4875 75.41 47.7024C75.2733 47.9133 75.1718 48.1594 75.1053 48.4407C75.0428 48.718 75.0116 49.0149 75.0116 49.3313ZM82.1425 46.2141V52.554H81.0526V46.2141H82.1425ZM80.9706 44.5325C80.9706 44.3567 81.0233 44.2083 81.1288 44.0872C81.2382 43.9661 81.3983 43.9055 81.6093 43.9055C81.8163 43.9055 81.9745 43.9661 82.0839 44.0872C82.1971 44.2083 82.2538 44.3567 82.2538 44.5325C82.2538 44.7004 82.1971 44.845 82.0839 44.9661C81.9745 45.0833 81.8163 45.1418 81.6093 45.1418C81.3983 45.1418 81.2382 45.0833 81.1288 44.9661C81.0233 44.845 80.9706 44.7004 80.9706 44.5325ZM86.537 46.2141V47.0461H83.1093V46.2141H86.537ZM84.2694 44.6731H85.3534V50.9836C85.3534 51.1985 85.3866 51.3606 85.453 51.47C85.5194 51.5793 85.6053 51.6516 85.7108 51.6868C85.8163 51.7219 85.9296 51.7395 86.0507 51.7395C86.1405 51.7395 86.2343 51.7317 86.3319 51.7161C86.4335 51.6965 86.5096 51.6809 86.5604 51.6692L86.5663 52.554C86.4803 52.5813 86.3671 52.6067 86.2264 52.6301C86.0897 52.6575 85.9237 52.6711 85.7284 52.6711C85.4628 52.6711 85.2186 52.6184 84.996 52.5129C84.7733 52.4075 84.5956 52.2317 84.4628 51.9856C84.3339 51.7356 84.2694 51.3997 84.2694 50.9778V44.6731Z",fill:"white"}),(0,l.createElement)("g",{clipPath:"url(#clip1_76_1285)"},(0,l.createElement)("path",{d:"M92.0688 47.2949L95.2163 50.4424L98.3638 47.2949H92.0688Z",fill:"white"})),(0,l.createElement)("rect",{x:"107.77",y:"41",width:"44.8849",height:"15.108",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M115.291 51.259L117.805 44.0227H119.029L115.871 52.554H114.998L115.291 51.259ZM112.941 44.0227L115.432 51.259L115.742 52.554H114.869L111.717 44.0227H112.941ZM121.191 46.2141V52.554H120.102V46.2141H121.191ZM120.02 44.5325C120.02 44.3567 120.072 44.2083 120.178 44.0872C120.287 43.9661 120.447 43.9055 120.658 43.9055C120.865 43.9055 121.023 43.9661 121.133 44.0872C121.246 44.2083 121.303 44.3567 121.303 44.5325C121.303 44.7004 121.246 44.845 121.133 44.9661C121.023 45.0833 120.865 45.1418 120.658 45.1418C120.447 45.1418 120.287 45.0833 120.178 44.9661C120.072 44.845 120.02 44.7004 120.02 44.5325ZM125.562 52.6711C125.121 52.6711 124.721 52.5969 124.361 52.4485C124.006 52.2961 123.699 52.0833 123.441 51.8098C123.188 51.5364 122.992 51.2122 122.855 50.8372C122.719 50.4622 122.65 50.052 122.65 49.6067V49.3606C122.65 48.845 122.727 48.386 122.879 47.9836C123.031 47.5774 123.238 47.2336 123.5 46.9524C123.762 46.6711 124.059 46.4583 124.391 46.3137C124.723 46.1692 125.066 46.0969 125.422 46.0969C125.875 46.0969 126.266 46.175 126.594 46.3313C126.926 46.4875 127.197 46.7063 127.408 46.9875C127.619 47.2649 127.775 47.593 127.877 47.9719C127.979 48.3469 128.029 48.7571 128.029 49.2024V49.6887H123.295V48.804H126.945V48.7219C126.93 48.4407 126.871 48.1672 126.77 47.9016C126.672 47.636 126.516 47.4172 126.301 47.2454C126.086 47.0735 125.793 46.9875 125.422 46.9875C125.176 46.9875 124.949 47.0403 124.742 47.1458C124.535 47.2473 124.357 47.3997 124.209 47.6028C124.061 47.8059 123.945 48.054 123.863 48.3469C123.781 48.6399 123.74 48.9778 123.74 49.3606V49.6067C123.74 49.9075 123.781 50.1907 123.863 50.4563C123.949 50.718 124.072 50.9485 124.232 51.1477C124.396 51.3469 124.594 51.5032 124.824 51.6165C125.059 51.7297 125.324 51.7864 125.621 51.7864C126.004 51.7864 126.328 51.7083 126.594 51.552C126.859 51.3958 127.092 51.1868 127.291 50.925L127.947 51.4465C127.811 51.6536 127.637 51.8508 127.426 52.0383C127.215 52.2258 126.955 52.3782 126.646 52.4954C126.342 52.6125 125.98 52.6711 125.562 52.6711ZM130.9 51.429L132.529 46.2141H133.244L133.104 47.2512L131.445 52.554H130.748L130.9 51.429ZM129.805 46.2141L131.193 51.4875L131.293 52.554H130.561L128.721 46.2141H129.805ZM134.803 51.4465L136.127 46.2141H137.205L135.365 52.554H134.639L134.803 51.4465ZM133.402 46.2141L134.996 51.3411L135.178 52.554H134.486L132.781 47.2395L132.641 46.2141H133.402Z",fill:"white"}),(0,l.createElement)("g",{clipPath:"url(#clip2_76_1285)"},(0,l.createElement)("path",{d:"M141.953 47.2949L145.101 50.4424L148.248 47.2949H141.953Z",fill:"white"})),(0,l.createElement)("rect",{x:"157.655",y:"41",width:"49.8849",height:"15.108",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M163.635 44.0227V52.554H162.504V44.0227H163.635ZM166.611 47.5676V52.554H165.527V46.2141H166.553L166.611 47.5676ZM166.354 49.1438L165.902 49.1262C165.906 48.6926 165.971 48.2922 166.096 47.925C166.221 47.554 166.397 47.2317 166.623 46.9583C166.85 46.6848 167.119 46.4739 167.432 46.3254C167.748 46.1731 168.098 46.0969 168.481 46.0969C168.793 46.0969 169.074 46.1399 169.324 46.2258C169.574 46.3079 169.787 46.4407 169.963 46.6243C170.143 46.8079 170.279 47.0461 170.373 47.3391C170.467 47.6282 170.514 47.9817 170.514 48.3997V52.554H169.424V48.3879C169.424 48.0559 169.375 47.7903 169.277 47.5911C169.18 47.3879 169.037 47.2415 168.85 47.1516C168.662 47.0579 168.432 47.011 168.158 47.011C167.889 47.011 167.643 47.0676 167.42 47.1809C167.201 47.2942 167.012 47.4504 166.852 47.6497C166.695 47.8489 166.572 48.0774 166.483 48.3352C166.397 48.5891 166.354 48.8586 166.354 49.1438ZM175.852 50.8723C175.852 50.7161 175.817 50.5715 175.746 50.4387C175.68 50.302 175.541 50.179 175.33 50.0696C175.123 49.9563 174.811 49.8586 174.393 49.7766C174.041 49.7024 173.723 49.6145 173.438 49.5129C173.156 49.4114 172.916 49.2883 172.717 49.1438C172.522 48.9993 172.371 48.8293 172.266 48.634C172.16 48.4387 172.108 48.2102 172.108 47.9485C172.108 47.6985 172.162 47.4622 172.272 47.2395C172.385 47.0168 172.543 46.8196 172.746 46.6477C172.953 46.4758 173.201 46.3411 173.49 46.2434C173.779 46.1458 174.102 46.0969 174.457 46.0969C174.965 46.0969 175.399 46.1868 175.758 46.3665C176.117 46.5461 176.393 46.7864 176.584 47.0872C176.776 47.384 176.871 47.7141 176.871 48.0774H175.787C175.787 47.9016 175.734 47.7317 175.629 47.5676C175.527 47.3997 175.377 47.261 175.178 47.1516C174.983 47.0422 174.742 46.9875 174.457 46.9875C174.156 46.9875 173.912 47.0344 173.725 47.1282C173.541 47.218 173.406 47.3333 173.32 47.4739C173.238 47.6145 173.197 47.7629 173.197 47.9192C173.197 48.0364 173.217 48.1418 173.256 48.2356C173.299 48.3254 173.373 48.4094 173.479 48.4875C173.584 48.5618 173.733 48.6321 173.924 48.6985C174.115 48.7649 174.359 48.8313 174.656 48.8977C175.176 49.0149 175.604 49.1555 175.94 49.3196C176.276 49.4836 176.526 49.6848 176.69 49.9231C176.854 50.1614 176.936 50.4504 176.936 50.7903C176.936 51.0676 176.877 51.3215 176.76 51.552C176.647 51.7825 176.481 51.9817 176.262 52.1497C176.047 52.3137 175.789 52.4426 175.488 52.5364C175.192 52.6262 174.858 52.6711 174.486 52.6711C173.928 52.6711 173.455 52.5715 173.068 52.3723C172.682 52.1731 172.389 51.9153 172.19 51.5989C171.99 51.2825 171.891 50.9485 171.891 50.5969H172.981C172.996 50.8938 173.082 51.1301 173.238 51.3059C173.395 51.4778 173.586 51.6008 173.813 51.675C174.039 51.7454 174.264 51.7805 174.486 51.7805C174.783 51.7805 175.031 51.7415 175.231 51.6633C175.434 51.5852 175.588 51.4778 175.693 51.3411C175.799 51.2043 175.852 51.0481 175.852 50.8723ZM180.99 52.6711C180.549 52.6711 180.149 52.5969 179.789 52.4485C179.434 52.2961 179.127 52.0833 178.869 51.8098C178.615 51.5364 178.42 51.2122 178.283 50.8372C178.147 50.4622 178.078 50.052 178.078 49.6067V49.3606C178.078 48.845 178.154 48.386 178.307 47.9836C178.459 47.5774 178.666 47.2336 178.928 46.9524C179.19 46.6711 179.486 46.4583 179.818 46.3137C180.151 46.1692 180.494 46.0969 180.85 46.0969C181.303 46.0969 181.693 46.175 182.022 46.3313C182.354 46.4875 182.625 46.7063 182.836 46.9875C183.047 47.2649 183.203 47.593 183.305 47.9719C183.406 48.3469 183.457 48.7571 183.457 49.2024V49.6887H178.723V48.804H182.373V48.7219C182.358 48.4407 182.299 48.1672 182.197 47.9016C182.1 47.636 181.943 47.4172 181.729 47.2454C181.514 47.0735 181.221 46.9875 180.85 46.9875C180.604 46.9875 180.377 47.0403 180.17 47.1458C179.963 47.2473 179.785 47.3997 179.637 47.6028C179.488 47.8059 179.373 48.054 179.291 48.3469C179.209 48.6399 179.168 48.9778 179.168 49.3606V49.6067C179.168 49.9075 179.209 50.1907 179.291 50.4563C179.377 50.718 179.5 50.9485 179.66 51.1477C179.824 51.3469 180.022 51.5032 180.252 51.6165C180.486 51.7297 180.752 51.7864 181.049 51.7864C181.432 51.7864 181.756 51.7083 182.022 51.552C182.287 51.3958 182.52 51.1868 182.719 50.925L183.375 51.4465C183.238 51.6536 183.065 51.8508 182.854 52.0383C182.643 52.2258 182.383 52.3782 182.074 52.4954C181.77 52.6125 181.408 52.6711 180.99 52.6711ZM185.807 47.2102V52.554H184.723V46.2141H185.777L185.807 47.2102ZM187.787 46.179L187.781 47.1868C187.692 47.1672 187.606 47.1555 187.524 47.1516C187.445 47.1438 187.356 47.1399 187.254 47.1399C187.004 47.1399 186.783 47.179 186.592 47.2571C186.401 47.3352 186.238 47.4446 186.106 47.5852C185.973 47.7258 185.867 47.8938 185.789 48.0891C185.715 48.2805 185.666 48.4915 185.643 48.7219L185.338 48.8977C185.338 48.5149 185.375 48.1555 185.449 47.8196C185.527 47.4836 185.647 47.1868 185.807 46.929C185.967 46.6672 186.17 46.4641 186.416 46.3196C186.666 46.1711 186.963 46.0969 187.307 46.0969C187.385 46.0969 187.475 46.1067 187.576 46.1262C187.678 46.1418 187.748 46.1594 187.787 46.179ZM191.736 46.2141V47.0461H188.309V46.2141H191.736ZM189.469 44.6731H190.553V50.9836C190.553 51.1985 190.586 51.3606 190.652 51.47C190.719 51.5793 190.805 51.6516 190.91 51.6868C191.016 51.7219 191.129 51.7395 191.25 51.7395C191.34 51.7395 191.434 51.7317 191.531 51.7161C191.633 51.6965 191.709 51.6809 191.76 51.6692L191.766 52.554C191.68 52.5813 191.567 52.6067 191.426 52.6301C191.289 52.6575 191.123 52.6711 190.928 52.6711C190.662 52.6711 190.418 52.6184 190.195 52.5129C189.973 52.4075 189.795 52.2317 189.662 51.9856C189.533 51.7356 189.469 51.3997 189.469 50.9778V44.6731Z",fill:"white"}),(0,l.createElement)("g",{clipPath:"url(#clip3_76_1285)"},(0,l.createElement)("path",{d:"M196.838 47.2949L199.986 50.4424L203.133 47.2949H196.838Z",fill:"white"})),(0,l.createElement)("rect",{x:"212.54",y:"41",width:"57.8849",height:"15.108",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M218.438 44.0227V52.554H217.307V44.0227H218.438ZM222.012 47.8606V48.7864H218.192V47.8606H222.012ZM222.592 44.0227V44.9485H218.192V44.0227H222.592ZM223.36 49.4543V49.3196C223.36 48.8625 223.426 48.4387 223.559 48.0481C223.692 47.6536 223.883 47.3118 224.133 47.0227C224.383 46.7297 224.686 46.5032 225.041 46.343C225.397 46.179 225.795 46.0969 226.237 46.0969C226.682 46.0969 227.082 46.179 227.438 46.343C227.797 46.5032 228.102 46.7297 228.352 47.0227C228.606 47.3118 228.799 47.6536 228.932 48.0481C229.065 48.4387 229.131 48.8625 229.131 49.3196V49.4543C229.131 49.9114 229.065 50.3352 228.932 50.7258C228.799 51.1165 228.606 51.4583 228.352 51.7512C228.102 52.0403 227.799 52.2668 227.444 52.4309C227.092 52.5911 226.694 52.6711 226.248 52.6711C225.803 52.6711 225.403 52.5911 225.047 52.4309C224.692 52.2668 224.387 52.0403 224.133 51.7512C223.883 51.4583 223.692 51.1165 223.559 50.7258C223.426 50.3352 223.36 49.9114 223.36 49.4543ZM224.444 49.3196V49.4543C224.444 49.7708 224.481 50.0696 224.555 50.3508C224.629 50.6282 224.741 50.8743 224.889 51.0891C225.041 51.304 225.231 51.4739 225.457 51.5989C225.684 51.72 225.948 51.7805 226.248 51.7805C226.545 51.7805 226.805 51.72 227.028 51.5989C227.254 51.4739 227.442 51.304 227.59 51.0891C227.739 50.8743 227.85 50.6282 227.924 50.3508C228.002 50.0696 228.041 49.7708 228.041 49.4543V49.3196C228.041 49.0071 228.002 48.7122 227.924 48.4348C227.85 48.1536 227.737 47.9055 227.584 47.6907C227.436 47.4719 227.248 47.3 227.022 47.175C226.799 47.05 226.537 46.9875 226.237 46.9875C225.94 46.9875 225.678 47.05 225.452 47.175C225.229 47.3 225.041 47.4719 224.889 47.6907C224.741 47.9055 224.629 48.1536 224.555 48.4348C224.481 48.7122 224.444 49.0071 224.444 49.3196ZM231.575 47.2102V52.554H230.491V46.2141H231.545L231.575 47.2102ZM233.555 46.179L233.549 47.1868C233.459 47.1672 233.373 47.1555 233.291 47.1516C233.213 47.1438 233.123 47.1399 233.022 47.1399C232.772 47.1399 232.551 47.179 232.36 47.2571C232.168 47.3352 232.006 47.4446 231.873 47.5852C231.741 47.7258 231.635 47.8938 231.557 48.0891C231.483 48.2805 231.434 48.4915 231.411 48.7219L231.106 48.8977C231.106 48.5149 231.143 48.1555 231.217 47.8196C231.295 47.4836 231.414 47.1868 231.575 46.929C231.735 46.6672 231.938 46.4641 232.184 46.3196C232.434 46.1711 232.731 46.0969 233.075 46.0969C233.153 46.0969 233.243 46.1067 233.344 46.1262C233.446 46.1418 233.516 46.1594 233.555 46.179ZM235.635 47.4739V52.554H234.545V46.2141H235.577L235.635 47.4739ZM235.412 49.1438L234.909 49.1262C234.912 48.6926 234.969 48.2922 235.078 47.925C235.188 47.554 235.35 47.2317 235.565 46.9583C235.78 46.6848 236.047 46.4739 236.368 46.3254C236.688 46.1731 237.059 46.0969 237.481 46.0969C237.778 46.0969 238.051 46.1399 238.301 46.2258C238.551 46.3079 238.768 46.4387 238.952 46.6184C239.135 46.7981 239.278 47.0286 239.379 47.3098C239.481 47.5911 239.532 47.9309 239.532 48.3293V52.554H238.448V48.3821C238.448 48.05 238.391 47.7844 238.278 47.5852C238.168 47.386 238.012 47.2415 237.809 47.1516C237.606 47.0579 237.368 47.011 237.094 47.011C236.774 47.011 236.506 47.0676 236.291 47.1809C236.077 47.2942 235.905 47.4504 235.776 47.6497C235.647 47.8489 235.553 48.0774 235.495 48.3352C235.44 48.5891 235.412 48.8586 235.412 49.1438ZM239.52 48.5461L238.793 48.7688C238.797 48.4211 238.854 48.0872 238.963 47.7668C239.077 47.4465 239.239 47.1614 239.45 46.9114C239.664 46.6614 239.928 46.4641 240.241 46.3196C240.553 46.1711 240.911 46.0969 241.313 46.0969C241.653 46.0969 241.953 46.1418 242.215 46.2317C242.481 46.3215 242.703 46.4602 242.883 46.6477C243.067 46.8313 243.205 47.0676 243.299 47.3567C243.393 47.6458 243.44 47.9895 243.44 48.3879V52.554H242.35V48.3762C242.35 48.0208 242.293 47.7454 242.18 47.55C242.071 47.3508 241.914 47.2122 241.711 47.134C241.512 47.052 241.274 47.011 240.996 47.011C240.758 47.011 240.547 47.052 240.364 47.134C240.18 47.2161 240.026 47.3293 239.901 47.4739C239.776 47.6145 239.68 47.7766 239.614 47.9602C239.551 48.1438 239.52 48.3391 239.52 48.5461ZM248.819 51.47V48.2063C248.819 47.9563 248.768 47.7395 248.666 47.5559C248.569 47.3684 248.42 47.2239 248.221 47.1223C248.022 47.0208 247.776 46.97 247.483 46.97C247.209 46.97 246.969 47.0168 246.762 47.1106C246.559 47.2043 246.399 47.3274 246.282 47.4797C246.168 47.6321 246.112 47.7961 246.112 47.9719H245.028C245.028 47.7454 245.086 47.5208 245.203 47.2981C245.321 47.0754 245.489 46.8743 245.707 46.6946C245.93 46.511 246.196 46.3665 246.504 46.261C246.817 46.1516 247.164 46.0969 247.547 46.0969C248.008 46.0969 248.414 46.175 248.766 46.3313C249.121 46.4875 249.399 46.7239 249.598 47.0403C249.801 47.3528 249.903 47.7454 249.903 48.218V51.1711C249.903 51.3821 249.92 51.6067 249.955 51.845C249.995 52.0833 250.051 52.2883 250.125 52.4602V52.554H248.995C248.94 52.429 248.897 52.2629 248.866 52.0559C248.834 51.845 248.819 51.6497 248.819 51.47ZM249.006 48.7102L249.018 49.4719H247.922C247.614 49.4719 247.338 49.4973 247.096 49.5481C246.854 49.595 246.651 49.6672 246.487 49.7649C246.323 49.8625 246.198 49.9856 246.112 50.134C246.026 50.2786 245.983 50.4485 245.983 50.6438C245.983 50.843 246.028 51.0247 246.118 51.1887C246.207 51.3528 246.342 51.4836 246.522 51.5813C246.705 51.675 246.93 51.7219 247.196 51.7219C247.528 51.7219 247.821 51.6516 248.075 51.511C248.328 51.3704 248.53 51.1985 248.678 50.9954C248.83 50.7922 248.912 50.595 248.924 50.4036L249.387 50.925C249.36 51.0891 249.286 51.2708 249.164 51.47C249.043 51.6692 248.881 51.8606 248.678 52.0442C248.479 52.2239 248.241 52.3743 247.963 52.4954C247.69 52.6125 247.381 52.6711 247.037 52.6711C246.608 52.6711 246.231 52.5872 245.907 52.4192C245.586 52.2512 245.336 52.0266 245.157 51.7454C244.981 51.4602 244.893 51.1418 244.893 50.7903C244.893 50.4504 244.959 50.1516 245.092 49.8938C245.225 49.6321 245.416 49.4153 245.666 49.2434C245.916 49.0676 246.217 48.9348 246.569 48.845C246.92 48.7551 247.313 48.7102 247.746 48.7102H249.006ZM254.262 46.2141V47.0461H250.834V46.2141H254.262ZM251.995 44.6731H253.078V50.9836C253.078 51.1985 253.112 51.3606 253.178 51.47C253.245 51.5793 253.33 51.6516 253.436 51.6868C253.541 51.7219 253.655 51.7395 253.776 51.7395C253.866 51.7395 253.959 51.7317 254.057 51.7161C254.159 51.6965 254.235 51.6809 254.286 51.6692L254.291 52.554C254.205 52.5813 254.092 52.6067 253.952 52.6301C253.815 52.6575 253.649 52.6711 253.453 52.6711C253.188 52.6711 252.944 52.6184 252.721 52.5129C252.498 52.4075 252.321 52.2317 252.188 51.9856C252.059 51.7356 251.995 51.3997 251.995 50.9778V44.6731Z",fill:"white"}),(0,l.createElement)("g",{clipPath:"url(#clip4_76_1285)"},(0,l.createElement)("path",{d:"M259.723 47.2949L262.871 50.4424L266.018 47.2949H259.723Z",fill:"white"})),(0,l.createElement)("rect",{x:"15.3777",y:"61.4856",width:"267.245",height:"27.3742",fill:"#E2E8F0"}),(0,l.createElement)("rect",{x:"20",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M31.7841 75.0139C32.5169 74.5078 33.0305 73.6769 33.0305 72.9064C33.0305 71.1992 31.7086 69.8848 30.009 69.8848H25.2877V80.4603H30.6057C32.1845 80.4603 33.4082 79.1762 33.4082 77.5974C33.4082 76.4492 32.7586 75.4672 31.7841 75.0139ZM27.5539 71.7733H29.8201C30.4471 71.7733 30.9532 72.2794 30.9532 72.9064C30.9532 73.5333 30.4471 74.0395 29.8201 74.0395H27.5539V71.7733ZM30.1978 78.5718H27.5539V76.3056H30.1978C30.8248 76.3056 31.3309 76.8118 31.3309 77.4387C31.3309 78.0657 30.8248 78.5718 30.1978 78.5718Z",fill:"white"}),(0,l.createElement)("rect",{x:"41.1511",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M48.7046 69.8848V72.151H50.374L47.7905 78.1941H45.683V80.4603H51.7262V78.1941H50.0567L52.6402 72.151H54.7478V69.8848H48.7046Z",fill:"white"}),(0,l.createElement)("path",{d:"M64.2806 66.1079V84.2375",stroke:"white"}),(0,l.createElement)("rect",{x:"69.2806",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M72.3018 74.0397C71.6748 74.0397 71.1687 74.5458 71.1687 75.1728C71.1687 75.7998 71.6748 76.3059 72.3018 76.3059C72.9288 76.3059 73.4349 75.7998 73.4349 75.1728C73.4349 74.5458 72.9288 74.0397 72.3018 74.0397ZM72.3018 69.5073C71.6748 69.5073 71.1687 70.0134 71.1687 70.6404C71.1687 71.2674 71.6748 71.7735 72.3018 71.7735C72.9288 71.7735 73.4349 71.2674 73.4349 70.6404C73.4349 70.0134 72.9288 69.5073 72.3018 69.5073ZM72.3018 78.5721C71.6748 78.5721 71.1687 79.0858 71.1687 79.7052C71.1687 80.3246 71.6824 80.8383 72.3018 80.8383C72.9212 80.8383 73.4349 80.3246 73.4349 79.7052C73.4349 79.0858 72.9288 78.5721 72.3018 78.5721ZM74.568 80.4606H85.1436V78.9498H74.568V80.4606ZM74.568 75.9282H85.1436V74.4174H74.568V75.9282ZM74.568 69.885V71.3958H85.1436V69.885H74.568Z",fill:"white"}),(0,l.createElement)("rect",{x:"90.4318",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M91.943 78.9496H93.4538V79.3273H92.6984V80.0827H93.4538V80.4604H91.943V81.2158H94.2092V78.1942H91.943V78.9496ZM92.6984 72.151H93.4538V69.1294H91.943V69.8848H92.6984V72.151ZM91.943 74.4172H93.3027L91.943 76.0035V76.6834H94.2092V75.928H92.8495L94.2092 74.3416V73.6618H91.943V74.4172ZM95.72 69.8848V71.3956H106.296V69.8848H95.72ZM95.72 80.4604H106.296V78.9496H95.72V80.4604ZM95.72 75.928H106.296V74.4172H95.72V75.928Z",fill:"white"}),(0,l.createElement)("path",{d:"M113.561 66.1079V84.2375",stroke:"white"}),(0,l.createElement)("rect",{x:"118.561",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M121.508 75.1725C121.508 73.8808 122.558 72.8308 123.849 72.8308H126.871V71.3955H123.849C121.765 71.3955 120.073 73.0876 120.073 75.1725C120.073 77.2574 121.765 78.9495 123.849 78.9495H126.871V77.5142H123.849C122.558 77.5142 121.508 76.4642 121.508 75.1725ZM124.605 75.9279H130.648V74.4171H124.605V75.9279ZM131.403 71.3955H128.382V72.8308H131.403C132.695 72.8308 133.745 73.8808 133.745 75.1725C133.745 76.4642 132.695 77.5142 131.403 77.5142H128.382V78.9495H131.403C133.488 78.9495 135.18 77.2574 135.18 75.1725C135.18 73.0876 133.488 71.3955 131.403 71.3955Z",fill:"white"}),(0,l.createElement)("rect",{x:"139.713",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M152.554 71.3956H149.533V72.8309H152.554C153.846 72.8309 154.896 73.8809 154.896 75.1726C154.896 76.2528 154.156 77.1593 153.151 77.4237L154.254 78.5266C155.485 77.8996 156.331 76.6456 156.331 75.1726C156.331 73.0877 154.639 71.3956 152.554 71.3956ZM151.799 74.4172H150.145L151.656 75.928H151.799V74.4172ZM141.224 69.3334L143.573 71.6827C142.198 72.2417 141.224 73.5938 141.224 75.1726C141.224 77.2575 142.916 78.9496 145.001 78.9496H148.022V77.5143H145.001C143.709 77.5143 142.659 76.4643 142.659 75.1726C142.659 73.9715 143.573 72.982 144.744 72.8535L146.307 74.4172H145.756V75.928H147.818L149.533 77.6428V78.9496H150.84L153.869 81.9712L154.821 81.0194L142.183 68.374L141.224 69.3334Z",fill:"white"}),(0,l.createElement)("path",{d:"M162.842 66.1079V84.2375",stroke:"white"}),(0,l.createElement)("g",{opacity:"0.3"},(0,l.createElement)("rect",{x:"167.842",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M177.285 72.1509C175.283 72.1509 173.47 72.8988 172.072 74.1149L169.353 71.3955V78.1941H176.151L173.417 75.4595C174.467 74.5833 175.804 74.0394 177.285 74.0394C179.959 74.0394 182.232 75.7844 183.026 78.1941L184.816 77.6049C183.766 74.4398 180.797 72.1509 177.285 72.1509Z",fill:"white"})),(0,l.createElement)("g",{opacity:"0.3"},(0,l.createElement)("rect",{x:"188.993",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M202.893 74.1149C201.495 72.8988 199.682 72.1509 197.68 72.1509C194.168 72.1509 191.199 74.4398 190.157 77.6049L191.939 78.1941C192.733 75.7844 194.999 74.0394 197.68 74.0394C199.153 74.0394 200.498 74.5833 201.548 75.4595L198.813 78.1941H205.612V71.3955L202.893 74.1149Z",fill:"white"})),(0,l.createElement)("rect",{x:"15.3777",y:"61.4856",width:"267.245",height:"27.3742",stroke:"#E2E8F0",strokeWidth:"0.755398"}),(0,l.createElement)("rect",{x:"14.5",y:"35.5",width:"269",height:"94",rx:"4.5",stroke:"#E2E8F0"}),(0,l.createElement)("defs",null,(0,l.createElement)("clipPath",{id:"clip0_76_1285"},(0,l.createElement)("rect",{width:"15.108",height:"15.108",fill:"white",transform:"translate(42.777 41)"})),(0,l.createElement)("clipPath",{id:"clip1_76_1285"},(0,l.createElement)("rect",{width:"15.108",height:"15.108",fill:"white",transform:"translate(87.662 41)"})),(0,l.createElement)("clipPath",{id:"clip2_76_1285"},(0,l.createElement)("rect",{width:"15.108",height:"15.108",fill:"white",transform:"translate(137.547 41)"})),(0,l.createElement)("clipPath",{id:"clip3_76_1285"},(0,l.createElement)("rect",{width:"15.108",height:"15.108",fill:"white",transform:"translate(192.432 41)"})),(0,l.createElement)("clipPath",{id:"clip4_76_1285"},(0,l.createElement)("rect",{width:"15.108",height:"15.108",fill:"white",transform:"translate(255.317 41)"})))),a=function({rows:e=8,...t}){let r=22*e;return r=100>r?100:r,(0,l.createElement)("div",{...t},(0,l.createElement)("div",{className:"wp-editor-container"},(0,l.createElement)("div",{className:"mce-tinymce mce-container mce-panel"},(0,l.createElement)("div",{className:"mce-container-body mce-stack-layout"},(0,l.createElement)("div",{className:"mce-top-part mce-container mce-stack-layout-item mce-first"},(0,l.createElement)("div",{className:"mce-container-body"},(0,l.createElement)("div",{className:"mce-toolbar-grp mce-container mce-panel mce-first mce-last",tabIndex:"-1",role:"group"},(0,l.createElement)("div",{className:"mce-container-body mce-stack-layout"},(0,l.createElement)("div",{className:"mce-container mce-toolbar mce-stack-layout-item mce-first mce-last",role:"toolbar"},(0,l.createElement)("div",{className:"mce-container-body mce-flow-layout"},(0,l.createElement)("div",{className:"mce-container mce-flow-layout-item mce-first mce-btn-group",role:"group"},(0,l.createElement)("div",null,(0,l.createElement)("div",{className:"mce-widget mce-btn mce-menubtn mce-fixed-width mce-listbox mce-first mce-last mce-btn-has-text",tabIndex:"-1","aria-labelledby":"mceu_0",role:"button","aria-haspopup":"true"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("span",{className:"mce-txt"},"Paragraph"),(0,l.createElement)("i",{className:"mce-caret"}))))),(0,l.createElement)("div",{className:"mce-container mce-flow-layout-item mce-btn-group",role:"group"},(0,l.createElement)("div",null,(0,l.createElement)("div",{className:"mce-widget mce-btn mce-first",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Bold (Ctrl+B)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-bold"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Italic (Ctrl+I)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-italic"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Strikethrough (Shift+Alt+D)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-strikethrough"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn mce-last",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Blockquote (Shift+Alt+Q)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-blockquote"}))))),(0,l.createElement)("div",{className:"mce-container mce-flow-layout-item mce-btn-group",role:"group"},(0,l.createElement)("div",null,(0,l.createElement)("div",{className:"mce-widget mce-btn mce-first",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Bulleted list (Shift+Alt+U)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-bullist"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn mce-last",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Numbered list (Shift+Alt+O)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-numlist"}))))),(0,l.createElement)("div",{className:"mce-container mce-flow-layout-item mce-btn-group",role:"group"},(0,l.createElement)("div",null,(0,l.createElement)("div",{className:"mce-widget mce-btn mce-first",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Align left (Shift+Alt+L)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-alignleft"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Align center (Shift+Alt+C)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-aligncenter"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn mce-last",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Align right (Shift+Alt+R)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-alignright"}))))),(0,l.createElement)("div",{className:"mce-container mce-flow-layout-item mce-btn-group",role:"group"},(0,l.createElement)("div",null,(0,l.createElement)("div",{className:"mce-widget mce-btn mce-first",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Insert/edit link (Ctrl+K)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-link"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn mce-last",tabIndex:"-1",role:"button","aria-label":"Remove link (Shift+Alt+S)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-unlink"}))))),(0,l.createElement)("div",{className:"mce-container mce-flow-layout-item mce-last mce-btn-group",role:"group"},(0,l.createElement)("div",null,(0,l.createElement)("div",{className:"mce-widget mce-btn mce-first",tabIndex:"-1",role:"button","aria-label":"Undo (Ctrl+Z)","aria-disabled":"false"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-undo"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn mce-last mce-disabled",tabIndex:"-1",role:"button","aria-label":"Redo (Ctrl+Y)","aria-disabled":"true"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-redo"}))))))))))),(0,l.createElement)("div",{className:"mce-edit-area mce-container mce-panel mce-stack-layout-item",tabIndex:"-1",role:"group",style:{borderWidth:"1px 0px 0px",height:r+"px"}},(0,l.createElement)("div",{style:{padding:"9px 10px"}},(0,l.createElement)("p",{style:{fontSize:"16px",lineHeight:1.5,fontFamily:'Georgia, "Times New Roman", "Bitstream Charter", Times, serif'}},"Hello world!"))),(0,l.createElement)("div",{className:"mce-statusbar mce-container mce-panel mce-stack-layout-item mce-last",tabIndex:"-1",role:"group",style:{borderWidth:"1px 0px 0px"}},(0,l.createElement)("div",{className:"mce-container-body mce-flow-layout"},(0,l.createElement)("div",{className:"mce-path mce-flow-layout-item mce-first"},(0,l.createElement)("div",{role:"button",className:"mce-path-item mce-last","data-index":"0",tabIndex:"-1","aria-level":"1"},"p")),(0,l.createElement)("div",{className:"mce-flow-layout-item mce-last mce-resizehandle"},(0,l.createElement)("i",{className:"mce-ico mce-i-resize"}))))))))},{ToolBarFields:C,GeneralFields:i,AdvancedFields:c,FieldWrapper:n,ValidationToggleGroup:o,ValidationBlockMessage:m,StylePanel:s,StyleColorItem:d,StyleColorItemsWrapper:b,StyleBorderItem:u,StyleBorderRadiusItem:f}=JetFBComponents,{useIsAdvancedValidation:V,useUniqueNameOnDuplicate:h,useJetStyle:p}=JetFBHooks,{__:w}=wp.i18n,{InspectorControls:H,useBlockProps:y}=wp.blockEditor,{PanelBody:E,RangeControl:g,ToggleControl:M}=wp.components,Z=JSON.parse('{"apiVersion":3,"name":"jet-forms/wysiwyg-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","wysiwyg","text"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true,"jetStyle":{"--jfb-wysiwyg-container-bg":["iframe body","color","background"],"--jfb-wysiwyg-container-text":["iframe body","color","text"],"--jfb-wysiwyg-toolbar-bg":[".mce-toolbar-grp","color","background"],"--jfb-wysiwyg-statusbar-bg":[".mce-statusbar","color","background"],"--jfb-wysiwyg-buttons-bg":[".mce-toolbar .mce-btn","color","background"],"--jfb-wysiwyg-buttons-text":[".mce-btn .mce-ico","color","text"],"--jfb-wysiwyg-buttons-border":[".mce-btn","border"],"--jfb-wysiwyg-buttons-border-radius":[".mce-btn","border","radius"],"--jfb-wysiwyg-buttons-hover-bg":[".mce-btn:hover","color","background"],"--jfb-wysiwyg-buttons-hover-text":[".mce-btn:hover .mce-ico","color","text"],"--jfb-wysiwyg-buttons-hover-border":[".mce-btn:hover","border"],"--jfb-wysiwyg-buttons-hover-border-radius":[".mce-btn:hover","border","radius"],"--jfb-wysiwyg-buttons-checked-bg":[".mce-btn.mce-active","color","background"],"--jfb-wysiwyg-buttons-checked-text":[".mce-btn.mce-active .mce-ico","color","text"],"--jfb-wysiwyg-buttons-checked-border":[".mce-btn.mce-active","border"],"--jfb-wysiwyg-buttons-checked-border-radius":[".mce-btn.mce-active","border","radius"]}},"title":"Wysiwyg Field","icon":"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"keep_format":{"type":"boolean","default":false},"rows":{"type":"number","default":8},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"required":{"type":"boolean","default":false},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"editorStyle":["jet-fb-wysiwyg-lightgray-skin","jet-fb-wysiwyg"],"viewScript":"jet-fb-wysiwyg","style":"jet-fb-wysiwyg"}'),{__:x}=wp.i18n,{createBlock:v}=wp.blocks,{name:L,icon:j=""}=Z;Z.attributes.isPreview={type:"boolean",default:!1};const k={icon:(0,l.createElement)("span",{dangerouslySetInnerHTML:{__html:j}}),description:x("Using this window, the users can add some styled text, HTML coding, \nor another type of content to the form seeing the results on the frontend.","jet-form-builder"),edit:function(e){var t;const{editProps:{uniqKey:Z},isSelected:x,attributes:v,setAttributes:L}=e,j=null!==(t=p?.({className:["jet-form-builder-row","field-type-wysiwyg-field","wp-block-jet-forms-wysiwyg-field","wp-core-ui","wp-editor-wrap","tmce-active"].join(" ")}))&&void 0!==t?t:{},k=y(j),N=V();return h(),v.isPreview?(0,l.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},r):(0,l.createElement)(l.Fragment,null,x&&(0,l.createElement)(l.Fragment,null,(0,l.createElement)(C,{key:Z("ToolBarFields"),...e}),(0,l.createElement)(H,{key:Z("InspectorControls")},(0,l.createElement)(i,{hasMacro:!1}),(0,l.createElement)(E,{title:w("Editor","jet-form-builder")},(0,l.createElement)(g,{label:w("Rows","jet-form-builder"),value:v.rows,onChange:e=>L({rows:e}),allowReset:!0,resetFallbackValue:8,min:4,max:25}),(0,l.createElement)(M,{label:w("Save text styles when pasting","jet-form-builder"),help:w("Preserves text formatting when copying \nfrom other text editors.","jet-form-builder"),checked:v.keep_format,onChange:e=>L({keep_format:e})})),(0,l.createElement)(E,{title:w("Validation","jet-form-builder")},(0,l.createElement)(o,null),N&&(0,l.createElement)(l.Fragment,null,(0,l.createElement)(m,{name:"empty"}))),(0,l.createElement)(c,{key:Z("AdvancedFields"),...e})),Boolean(s)&&(0,l.createElement)(H,{group:"styles"},(0,l.createElement)(s,{label:w("Editor container","jet-form-builder")},(0,l.createElement)(b,null,(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-container-text",label:w("Text color","jet-form-builder")}),(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-container-bg",label:w("Background","jet-form-builder")}))),(0,l.createElement)(s,{label:w("Toolbar","jet-form-builder")},(0,l.createElement)(b,null,(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-toolbar-bg",label:w("Background","jet-form-builder")}))),(0,l.createElement)(s,{label:w("Toolbar buttons","jet-form-builder")},(0,l.createElement)(b,null,(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-buttons-text",label:w("Text color","jet-form-builder")}),(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-buttons-bg",label:w("Background","jet-form-builder")})),(0,l.createElement)(u,{cssVar:"--jfb-wysiwyg-buttons-border",label:w("Border","jet-form-builder"),enableAlpha:!0,labelForControl:!0}),(0,l.createElement)(f,{cssVar:"--jfb-wysiwyg-buttons-border-radius",label:w("Radius","jet-form-builder")})),(0,l.createElement)(s,{label:w("Hover toolbar buttons","jet-form-builder")},(0,l.createElement)(b,null,(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-buttons-hover-text",label:w("Text color","jet-form-builder")}),(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-buttons-hover-bg",label:w("Background","jet-form-builder")})),(0,l.createElement)(u,{cssVar:"--jfb-wysiwyg-buttons-hover-border",label:w("Border","jet-form-builder"),enableAlpha:!0,labelForControl:!0}),(0,l.createElement)(f,{cssVar:"--jfb-wysiwyg-buttons-hover-border-radius",label:w("Radius","jet-form-builder")})),(0,l.createElement)(s,{label:w("Checked toolbar buttons","jet-form-builder")},(0,l.createElement)(b,null,(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-buttons-checked-text",label:w("Text color","jet-form-builder")}),(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-buttons-checked-bg",label:w("Background","jet-form-builder")})),(0,l.createElement)(u,{cssVar:"--jfb-wysiwyg-buttons-checked-border",label:w("Border","jet-form-builder"),enableAlpha:!0,labelForControl:!0}),(0,l.createElement)(f,{cssVar:"--jfb-wysiwyg-buttons-checked-border-radius",label:w("Radius","jet-form-builder")})),(0,l.createElement)(s,{label:w("Status bar","jet-form-builder")},(0,l.createElement)(b,null,(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-statusbar-bg",label:w("Background","jet-form-builder")}))))),(0,l.createElement)("div",{...k},(0,l.createElement)(n,{key:Z("FieldWrapper"),...e},(0,l.createElement)(a,{rows:v.rows,...j}))))},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>v("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/textarea-field","jet-forms/text-field"],transform:e=>v(L,{...e}),priority:0}]}},{addFilter:N}=wp.hooks;N("jet.fb.register.fields","jet-form-builder/wysiwyg",function(e){return e.push(t),e})})(); \ No newline at end of file +(()=>{"use strict";var e={d:(t,l)=>{for(var r in l)e.o(l,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:l[r]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{metadata:()=>Z,name:()=>L,settings:()=>k});const l=window.React,r=(0,l.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,l.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,l.createElement)("path",{d:"M22.1914 26.9268V28H17.2148V26.9268H22.1914ZM17.4746 18.0469V28H16.1553V18.0469H17.4746ZM26.5801 28.1367C26.0651 28.1367 25.598 28.0501 25.1787 27.877C24.764 27.6992 24.4062 27.4508 24.1055 27.1318C23.8092 26.8128 23.5814 26.4346 23.4219 25.9971C23.2624 25.5596 23.1826 25.0811 23.1826 24.5615V24.2744C23.1826 23.6729 23.2715 23.1374 23.4492 22.668C23.627 22.194 23.8685 21.793 24.1738 21.4648C24.4792 21.1367 24.8255 20.8883 25.2129 20.7197C25.6003 20.5511 26.0013 20.4668 26.416 20.4668C26.9447 20.4668 27.4004 20.5579 27.7832 20.7402C28.1706 20.9225 28.4873 21.1777 28.7334 21.5059C28.9795 21.8294 29.1618 22.2122 29.2803 22.6543C29.3988 23.0918 29.458 23.5703 29.458 24.0898V24.6572H23.9346V23.625H28.1934V23.5293C28.1751 23.2012 28.1068 22.8822 27.9883 22.5723C27.8743 22.2624 27.6921 22.0072 27.4414 21.8066C27.1908 21.6061 26.849 21.5059 26.416 21.5059C26.1289 21.5059 25.8646 21.5674 25.623 21.6904C25.3815 21.8089 25.1742 21.9867 25.001 22.2236C24.8278 22.4606 24.6934 22.75 24.5977 23.0918C24.502 23.4336 24.4541 23.8278 24.4541 24.2744V24.5615C24.4541 24.9124 24.502 25.2428 24.5977 25.5527C24.6979 25.8581 24.8415 26.127 25.0283 26.3594C25.2197 26.5918 25.4499 26.7741 25.7188 26.9062C25.9922 27.0384 26.3021 27.1045 26.6484 27.1045C27.0951 27.1045 27.4733 27.0133 27.7832 26.8311C28.0931 26.6488 28.3643 26.4049 28.5967 26.0996L29.3623 26.708C29.2028 26.9495 29 27.1797 28.7539 27.3984C28.5078 27.6172 28.2048 27.7949 27.8447 27.9316C27.4893 28.0684 27.0677 28.1367 26.5801 28.1367ZM35.2959 26.7354V22.9277C35.2959 22.6361 35.2367 22.3831 35.1182 22.1689C35.0042 21.9502 34.8311 21.7816 34.5986 21.6631C34.3662 21.5446 34.0791 21.4854 33.7373 21.4854C33.4183 21.4854 33.138 21.54 32.8965 21.6494C32.6595 21.7588 32.4727 21.9023 32.3359 22.0801C32.2038 22.2578 32.1377 22.4492 32.1377 22.6543H30.873C30.873 22.39 30.9414 22.1279 31.0781 21.8682C31.2148 21.6084 31.4108 21.3737 31.666 21.1641C31.9258 20.9499 32.2357 20.7812 32.5957 20.6582C32.9603 20.5306 33.3659 20.4668 33.8125 20.4668C34.3503 20.4668 34.8242 20.5579 35.2344 20.7402C35.6491 20.9225 35.9727 21.1982 36.2051 21.5674C36.4421 21.932 36.5605 22.39 36.5605 22.9414V26.3867C36.5605 26.6328 36.5811 26.8949 36.6221 27.1729C36.6676 27.4508 36.7337 27.6901 36.8203 27.8906V28H35.501C35.4372 27.8542 35.387 27.6605 35.3506 27.4189C35.3141 27.1729 35.2959 26.945 35.2959 26.7354ZM35.5146 23.5156L35.5283 24.4043H34.25C33.89 24.4043 33.5687 24.4339 33.2861 24.4932C33.0036 24.5479 32.7666 24.6322 32.5752 24.7461C32.3838 24.86 32.238 25.0036 32.1377 25.1768C32.0374 25.3454 31.9873 25.5436 31.9873 25.7715C31.9873 26.0039 32.0397 26.2158 32.1445 26.4072C32.2493 26.5986 32.4066 26.7513 32.6162 26.8652C32.8304 26.9746 33.0924 27.0293 33.4023 27.0293C33.7897 27.0293 34.1315 26.9473 34.4277 26.7832C34.724 26.6191 34.9587 26.4186 35.1318 26.1816C35.3096 25.9447 35.4053 25.7145 35.4189 25.4912L35.959 26.0996C35.9271 26.291 35.8405 26.5029 35.6992 26.7354C35.5579 26.9678 35.3688 27.1911 35.1318 27.4053C34.8994 27.6149 34.6214 27.7904 34.2979 27.9316C33.9788 28.0684 33.6188 28.1367 33.2178 28.1367C32.7165 28.1367 32.2767 28.0387 31.8984 27.8428C31.5247 27.6468 31.2331 27.3848 31.0234 27.0566C30.8184 26.724 30.7158 26.3525 30.7158 25.9424C30.7158 25.5459 30.7933 25.1973 30.9482 24.8965C31.1032 24.5911 31.3265 24.3382 31.6182 24.1377C31.9098 23.9326 32.2607 23.7777 32.6709 23.6729C33.0811 23.568 33.5391 23.5156 34.0449 23.5156H35.5146ZM40.6895 26.8584L42.7129 20.6035H44.0049L41.3457 28H40.498L40.6895 26.8584ZM39.001 20.6035L41.0859 26.8926L41.2295 28H40.3818L37.7021 20.6035H39.001ZM48.1953 28.1367C47.6803 28.1367 47.2132 28.0501 46.7939 27.877C46.3792 27.6992 46.0215 27.4508 45.7207 27.1318C45.4245 26.8128 45.1966 26.4346 45.0371 25.9971C44.8776 25.5596 44.7979 25.0811 44.7979 24.5615V24.2744C44.7979 23.6729 44.8867 23.1374 45.0645 22.668C45.2422 22.194 45.4837 21.793 45.7891 21.4648C46.0944 21.1367 46.4408 20.8883 46.8281 20.7197C47.2155 20.5511 47.6165 20.4668 48.0312 20.4668C48.5599 20.4668 49.0156 20.5579 49.3984 20.7402C49.7858 20.9225 50.1025 21.1777 50.3486 21.5059C50.5947 21.8294 50.777 22.2122 50.8955 22.6543C51.014 23.0918 51.0732 23.5703 51.0732 24.0898V24.6572H45.5498V23.625H49.8086V23.5293C49.7904 23.2012 49.722 22.8822 49.6035 22.5723C49.4896 22.2624 49.3073 22.0072 49.0566 21.8066C48.806 21.6061 48.4642 21.5059 48.0312 21.5059C47.7441 21.5059 47.4798 21.5674 47.2383 21.6904C46.9967 21.8089 46.7894 21.9867 46.6162 22.2236C46.443 22.4606 46.3086 22.75 46.2129 23.0918C46.1172 23.4336 46.0693 23.8278 46.0693 24.2744V24.5615C46.0693 24.9124 46.1172 25.2428 46.2129 25.5527C46.3132 25.8581 46.4567 26.127 46.6436 26.3594C46.835 26.5918 47.0651 26.7741 47.334 26.9062C47.6074 27.0384 47.9173 27.1045 48.2637 27.1045C48.7103 27.1045 49.0885 27.0133 49.3984 26.8311C49.7083 26.6488 49.9795 26.4049 50.2119 26.0996L50.9775 26.708C50.818 26.9495 50.6152 27.1797 50.3691 27.3984C50.123 27.6172 49.82 27.7949 49.46 27.9316C49.1045 28.0684 48.6829 28.1367 48.1953 28.1367ZM60.3838 26.7354V22.9277C60.3838 22.6361 60.3245 22.3831 60.2061 22.1689C60.0921 21.9502 59.9189 21.7816 59.6865 21.6631C59.4541 21.5446 59.167 21.4854 58.8252 21.4854C58.5062 21.4854 58.2259 21.54 57.9844 21.6494C57.7474 21.7588 57.5605 21.9023 57.4238 22.0801C57.2917 22.2578 57.2256 22.4492 57.2256 22.6543H55.9609C55.9609 22.39 56.0293 22.1279 56.166 21.8682C56.3027 21.6084 56.4987 21.3737 56.7539 21.1641C57.0137 20.9499 57.3236 20.7812 57.6836 20.6582C58.0482 20.5306 58.4538 20.4668 58.9004 20.4668C59.4382 20.4668 59.9121 20.5579 60.3223 20.7402C60.737 20.9225 61.0605 21.1982 61.293 21.5674C61.5299 21.932 61.6484 22.39 61.6484 22.9414V26.3867C61.6484 26.6328 61.6689 26.8949 61.71 27.1729C61.7555 27.4508 61.8216 27.6901 61.9082 27.8906V28H60.5889C60.5251 27.8542 60.4749 27.6605 60.4385 27.4189C60.402 27.1729 60.3838 26.945 60.3838 26.7354ZM60.6025 23.5156L60.6162 24.4043H59.3379C58.9779 24.4043 58.6566 24.4339 58.374 24.4932C58.0915 24.5479 57.8545 24.6322 57.6631 24.7461C57.4717 24.86 57.3258 25.0036 57.2256 25.1768C57.1253 25.3454 57.0752 25.5436 57.0752 25.7715C57.0752 26.0039 57.1276 26.2158 57.2324 26.4072C57.3372 26.5986 57.4945 26.7513 57.7041 26.8652C57.9183 26.9746 58.1803 27.0293 58.4902 27.0293C58.8776 27.0293 59.2194 26.9473 59.5156 26.7832C59.8118 26.6191 60.0465 26.4186 60.2197 26.1816C60.3975 25.9447 60.4932 25.7145 60.5068 25.4912L61.0469 26.0996C61.015 26.291 60.9284 26.5029 60.7871 26.7354C60.6458 26.9678 60.4567 27.1911 60.2197 27.4053C59.9873 27.6149 59.7093 27.7904 59.3857 27.9316C59.0667 28.0684 58.7067 28.1367 58.3057 28.1367C57.8044 28.1367 57.3646 28.0387 56.9863 27.8428C56.6126 27.6468 56.321 27.3848 56.1113 27.0566C55.9062 26.724 55.8037 26.3525 55.8037 25.9424C55.8037 25.5459 55.8812 25.1973 56.0361 24.8965C56.1911 24.5911 56.4144 24.3382 56.7061 24.1377C56.9977 23.9326 57.3486 23.7777 57.7588 23.6729C58.1689 23.568 58.627 23.5156 59.1328 23.5156H60.6025ZM70.0703 27.0977C70.3711 27.0977 70.6491 27.0361 70.9043 26.9131C71.1595 26.79 71.3691 26.6214 71.5332 26.4072C71.6973 26.1885 71.7907 25.9401 71.8135 25.6621H73.0166C72.9938 26.0996 72.8457 26.5075 72.5723 26.8857C72.3034 27.2594 71.9502 27.5625 71.5127 27.7949C71.0752 28.0228 70.5944 28.1367 70.0703 28.1367C69.5143 28.1367 69.029 28.0387 68.6143 27.8428C68.2041 27.6468 67.8623 27.3779 67.5889 27.0361C67.32 26.6943 67.1172 26.3024 66.9805 25.8604C66.8483 25.4137 66.7822 24.9421 66.7822 24.4453V24.1582C66.7822 23.6615 66.8483 23.1921 66.9805 22.75C67.1172 22.3034 67.32 21.9092 67.5889 21.5674C67.8623 21.2256 68.2041 20.9567 68.6143 20.7607C69.029 20.5648 69.5143 20.4668 70.0703 20.4668C70.6491 20.4668 71.1549 20.5853 71.5879 20.8223C72.0208 21.0547 72.3604 21.3737 72.6064 21.7793C72.8571 22.1803 72.9938 22.6361 73.0166 23.1465H71.8135C71.7907 22.8411 71.7041 22.5654 71.5537 22.3193C71.4079 22.0732 71.2074 21.8773 70.9521 21.7314C70.7015 21.5811 70.4076 21.5059 70.0703 21.5059C69.6829 21.5059 69.3571 21.5833 69.0928 21.7383C68.833 21.8887 68.6257 22.0938 68.4707 22.3535C68.3203 22.6087 68.2109 22.8936 68.1426 23.208C68.0788 23.5179 68.0469 23.8346 68.0469 24.1582V24.4453C68.0469 24.7689 68.0788 25.0879 68.1426 25.4023C68.2064 25.7168 68.3135 26.0016 68.4639 26.2568C68.6188 26.512 68.8262 26.7171 69.0859 26.8721C69.3503 27.0225 69.6784 27.0977 70.0703 27.0977ZM74.1035 24.3838V24.2266C74.1035 23.6934 74.181 23.1989 74.3359 22.7432C74.4909 22.2829 74.7142 21.8841 75.0059 21.5469C75.2975 21.2051 75.6507 20.9408 76.0654 20.7539C76.4801 20.5625 76.945 20.4668 77.46 20.4668C77.9795 20.4668 78.4466 20.5625 78.8613 20.7539C79.2806 20.9408 79.6361 21.2051 79.9277 21.5469C80.224 21.8841 80.4495 22.2829 80.6045 22.7432C80.7594 23.1989 80.8369 23.6934 80.8369 24.2266V24.3838C80.8369 24.917 80.7594 25.4115 80.6045 25.8672C80.4495 26.3229 80.224 26.7217 79.9277 27.0635C79.6361 27.4007 79.2829 27.665 78.8682 27.8564C78.458 28.0433 77.9932 28.1367 77.4736 28.1367C76.9541 28.1367 76.487 28.0433 76.0723 27.8564C75.6576 27.665 75.3021 27.4007 75.0059 27.0635C74.7142 26.7217 74.4909 26.3229 74.3359 25.8672C74.181 25.4115 74.1035 24.917 74.1035 24.3838ZM75.3682 24.2266V24.3838C75.3682 24.7529 75.4115 25.1016 75.498 25.4297C75.5846 25.7533 75.7145 26.0404 75.8877 26.291C76.0654 26.5417 76.2865 26.7399 76.5508 26.8857C76.8151 27.027 77.1227 27.0977 77.4736 27.0977C77.82 27.0977 78.123 27.027 78.3828 26.8857C78.6471 26.7399 78.8659 26.5417 79.0391 26.291C79.2122 26.0404 79.3421 25.7533 79.4287 25.4297C79.5199 25.1016 79.5654 24.7529 79.5654 24.3838V24.2266C79.5654 23.862 79.5199 23.5179 79.4287 23.1943C79.3421 22.8662 79.21 22.5768 79.0322 22.3262C78.859 22.071 78.6403 21.8704 78.376 21.7246C78.1162 21.5788 77.8109 21.5059 77.46 21.5059C77.1136 21.5059 76.8083 21.5788 76.5439 21.7246C76.2842 21.8704 76.0654 22.071 75.8877 22.3262C75.7145 22.5768 75.5846 22.8662 75.498 23.1943C75.4115 23.5179 75.3682 23.862 75.3682 24.2266ZM83.6807 22.0732V28H82.4092V20.6035H83.6123L83.6807 22.0732ZM83.4209 24.0215L82.833 24.001C82.8376 23.4951 82.9036 23.028 83.0312 22.5996C83.1589 22.1667 83.348 21.7907 83.5986 21.4717C83.8493 21.1527 84.1615 20.9066 84.5352 20.7334C84.9089 20.5557 85.3418 20.4668 85.834 20.4668C86.1803 20.4668 86.4993 20.5169 86.791 20.6172C87.0827 20.7129 87.3356 20.8656 87.5498 21.0752C87.764 21.2848 87.9303 21.5537 88.0488 21.8818C88.1673 22.21 88.2266 22.6064 88.2266 23.0713V28H86.9619V23.1328C86.9619 22.7454 86.8958 22.4355 86.7637 22.2031C86.6361 21.9707 86.4538 21.8021 86.2168 21.6973C85.9798 21.5879 85.7018 21.5332 85.3828 21.5332C85.0091 21.5332 84.6969 21.5993 84.4463 21.7314C84.1956 21.8636 83.9951 22.0459 83.8447 22.2783C83.6943 22.5107 83.585 22.7773 83.5166 23.0781C83.4528 23.3743 83.4209 23.6888 83.4209 24.0215ZM88.2129 23.3242L87.3652 23.584C87.3698 23.1784 87.4359 22.7887 87.5635 22.415C87.6956 22.0413 87.8848 21.7087 88.1309 21.417C88.3815 21.1253 88.6891 20.8952 89.0537 20.7266C89.4183 20.5534 89.8353 20.4668 90.3047 20.4668C90.7012 20.4668 91.0521 20.5192 91.3574 20.624C91.6673 20.7288 91.9271 20.8906 92.1367 21.1094C92.3509 21.3236 92.5127 21.5993 92.6221 21.9365C92.7314 22.2738 92.7861 22.6748 92.7861 23.1396V28H91.5146V23.126C91.5146 22.7113 91.4486 22.39 91.3164 22.1621C91.1888 21.9297 91.0065 21.7679 90.7695 21.6768C90.5371 21.5811 90.2591 21.5332 89.9355 21.5332C89.6576 21.5332 89.4115 21.5811 89.1973 21.6768C88.9831 21.7725 88.8031 21.9046 88.6572 22.0732C88.5114 22.2373 88.3997 22.4264 88.3223 22.6406C88.2493 22.8548 88.2129 23.0827 88.2129 23.3242ZM95.958 22.0732V28H94.6865V20.6035H95.8896L95.958 22.0732ZM95.6982 24.0215L95.1104 24.001C95.1149 23.4951 95.181 23.028 95.3086 22.5996C95.4362 22.1667 95.6253 21.7907 95.876 21.4717C96.1266 21.1527 96.4388 20.9066 96.8125 20.7334C97.1862 20.5557 97.6191 20.4668 98.1113 20.4668C98.4577 20.4668 98.7767 20.5169 99.0684 20.6172C99.36 20.7129 99.613 20.8656 99.8271 21.0752C100.041 21.2848 100.208 21.5537 100.326 21.8818C100.445 22.21 100.504 22.6064 100.504 23.0713V28H99.2393V23.1328C99.2393 22.7454 99.1732 22.4355 99.041 22.2031C98.9134 21.9707 98.7311 21.8021 98.4941 21.6973C98.2572 21.5879 97.9792 21.5332 97.6602 21.5332C97.2865 21.5332 96.9743 21.5993 96.7236 21.7314C96.473 21.8636 96.2725 22.0459 96.1221 22.2783C95.9717 22.5107 95.8623 22.7773 95.7939 23.0781C95.7301 23.3743 95.6982 23.6888 95.6982 24.0215ZM100.49 23.3242L99.6426 23.584C99.6471 23.1784 99.7132 22.7887 99.8408 22.415C99.973 22.0413 100.162 21.7087 100.408 21.417C100.659 21.1253 100.966 20.8952 101.331 20.7266C101.696 20.5534 102.113 20.4668 102.582 20.4668C102.979 20.4668 103.329 20.5192 103.635 20.624C103.945 20.7288 104.204 20.8906 104.414 21.1094C104.628 21.3236 104.79 21.5993 104.899 21.9365C105.009 22.2738 105.063 22.6748 105.063 23.1396V28H103.792V23.126C103.792 22.7113 103.726 22.39 103.594 22.1621C103.466 21.9297 103.284 21.7679 103.047 21.6768C102.814 21.5811 102.536 21.5332 102.213 21.5332C101.935 21.5332 101.689 21.5811 101.475 21.6768C101.26 21.7725 101.08 21.9046 100.935 22.0732C100.789 22.2373 100.677 22.4264 100.6 22.6406C100.527 22.8548 100.49 23.0827 100.49 23.3242ZM110.047 28.1367C109.532 28.1367 109.065 28.0501 108.646 27.877C108.231 27.6992 107.873 27.4508 107.572 27.1318C107.276 26.8128 107.048 26.4346 106.889 25.9971C106.729 25.5596 106.649 25.0811 106.649 24.5615V24.2744C106.649 23.6729 106.738 23.1374 106.916 22.668C107.094 22.194 107.335 21.793 107.641 21.4648C107.946 21.1367 108.292 20.8883 108.68 20.7197C109.067 20.5511 109.468 20.4668 109.883 20.4668C110.411 20.4668 110.867 20.5579 111.25 20.7402C111.637 20.9225 111.954 21.1777 112.2 21.5059C112.446 21.8294 112.629 22.2122 112.747 22.6543C112.866 23.0918 112.925 23.5703 112.925 24.0898V24.6572H107.401V23.625H111.66V23.5293C111.642 23.2012 111.574 22.8822 111.455 22.5723C111.341 22.2624 111.159 22.0072 110.908 21.8066C110.658 21.6061 110.316 21.5059 109.883 21.5059C109.596 21.5059 109.331 21.5674 109.09 21.6904C108.848 21.8089 108.641 21.9867 108.468 22.2236C108.295 22.4606 108.16 22.75 108.064 23.0918C107.969 23.4336 107.921 23.8278 107.921 24.2744V24.5615C107.921 24.9124 107.969 25.2428 108.064 25.5527C108.165 25.8581 108.308 26.127 108.495 26.3594C108.687 26.5918 108.917 26.7741 109.186 26.9062C109.459 27.0384 109.769 27.1045 110.115 27.1045C110.562 27.1045 110.94 27.0133 111.25 26.8311C111.56 26.6488 111.831 26.4049 112.063 26.0996L112.829 26.708C112.67 26.9495 112.467 27.1797 112.221 27.3984C111.975 27.6172 111.672 27.7949 111.312 27.9316C110.956 28.0684 110.535 28.1367 110.047 28.1367ZM115.666 22.1826V28H114.401V20.6035H115.598L115.666 22.1826ZM115.365 24.0215L114.839 24.001C114.843 23.4951 114.919 23.028 115.064 22.5996C115.21 22.1667 115.415 21.7907 115.68 21.4717C115.944 21.1527 116.258 20.9066 116.623 20.7334C116.992 20.5557 117.4 20.4668 117.847 20.4668C118.211 20.4668 118.539 20.5169 118.831 20.6172C119.123 20.7129 119.371 20.8678 119.576 21.082C119.786 21.2962 119.945 21.5742 120.055 21.916C120.164 22.2533 120.219 22.6657 120.219 23.1533V28H118.947V23.1396C118.947 22.7523 118.89 22.4424 118.776 22.21C118.662 21.973 118.496 21.8021 118.277 21.6973C118.059 21.5879 117.79 21.5332 117.471 21.5332C117.156 21.5332 116.869 21.5993 116.609 21.7314C116.354 21.8636 116.133 22.0459 115.946 22.2783C115.764 22.5107 115.62 22.7773 115.516 23.0781C115.415 23.3743 115.365 23.6888 115.365 24.0215ZM125.236 20.6035V21.5742H121.237V20.6035H125.236ZM122.591 18.8057H123.855V26.168C123.855 26.4186 123.894 26.6077 123.972 26.7354C124.049 26.863 124.149 26.9473 124.272 26.9883C124.396 27.0293 124.528 27.0498 124.669 27.0498C124.774 27.0498 124.883 27.0407 124.997 27.0225C125.116 26.9997 125.204 26.9814 125.264 26.9678L125.271 28C125.17 28.0319 125.038 28.0615 124.874 28.0889C124.715 28.1208 124.521 28.1367 124.293 28.1367C123.983 28.1367 123.698 28.0752 123.438 27.9521C123.179 27.8291 122.971 27.624 122.816 27.3369C122.666 27.0452 122.591 26.6533 122.591 26.1611V18.8057Z",fill:"#64748B"}),(0,l.createElement)("rect",{x:"14.5",y:"35.5",width:"269",height:"94",rx:"4.5",fill:"white"}),(0,l.createElement)("rect",{x:"20",y:"41",width:"37.8849",height:"15.108",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M25.8981 44.0227V52.554H24.7672V44.0227H25.8981ZM29.4723 47.8606V48.7864H25.652V47.8606H29.4723ZM30.0524 44.0227V44.9485H25.652V44.0227H30.0524ZM32.4137 46.2141V52.554H31.3239V46.2141H32.4137ZM31.2418 44.5325C31.2418 44.3567 31.2946 44.2083 31.4 44.0872C31.5094 43.9661 31.6696 43.9055 31.8805 43.9055C32.0875 43.9055 32.2457 43.9661 32.3551 44.0872C32.4684 44.2083 32.525 44.3567 32.525 44.5325C32.525 44.7004 32.4684 44.845 32.3551 44.9661C32.2457 45.0833 32.0875 45.1418 31.8805 45.1418C31.6696 45.1418 31.5094 45.0833 31.4 44.9661C31.2946 44.845 31.2418 44.7004 31.2418 44.5325ZM35.3317 43.554V52.554H34.2418V43.554H35.3317ZM39.7028 52.6711C39.2614 52.6711 38.861 52.5969 38.5016 52.4485C38.1461 52.2961 37.8395 52.0833 37.5817 51.8098C37.3278 51.5364 37.1324 51.2122 36.9957 50.8372C36.859 50.4622 36.7906 50.052 36.7906 49.6067V49.3606C36.7906 48.845 36.8668 48.386 37.0192 47.9836C37.1715 47.5774 37.3785 47.2336 37.6403 46.9524C37.902 46.6711 38.1989 46.4583 38.5309 46.3137C38.8629 46.1692 39.2067 46.0969 39.5621 46.0969C40.0153 46.0969 40.4059 46.175 40.734 46.3313C41.066 46.4875 41.3375 46.7063 41.5485 46.9875C41.7594 47.2649 41.9156 47.593 42.0172 47.9719C42.1188 48.3469 42.1696 48.7571 42.1696 49.2024V49.6887H37.4352V48.804H41.0856V48.7219C41.0699 48.4407 41.0114 48.1672 40.9098 47.9016C40.8121 47.636 40.6559 47.4172 40.441 47.2454C40.2262 47.0735 39.9332 46.9875 39.5621 46.9875C39.316 46.9875 39.0895 47.0403 38.8824 47.1458C38.6754 47.2473 38.4977 47.3997 38.3492 47.6028C38.2008 47.8059 38.0856 48.054 38.0035 48.3469C37.9215 48.6399 37.8805 48.9778 37.8805 49.3606V49.6067C37.8805 49.9075 37.9215 50.1907 38.0035 50.4563C38.0895 50.718 38.2125 50.9485 38.3727 51.1477C38.5367 51.3469 38.734 51.5032 38.9645 51.6165C39.1989 51.7297 39.4645 51.7864 39.7614 51.7864C40.1442 51.7864 40.4684 51.7083 40.734 51.552C40.9996 51.3958 41.2321 51.1868 41.4313 50.925L42.0875 51.4465C41.9508 51.6536 41.777 51.8508 41.566 52.0383C41.3551 52.2258 41.0953 52.3782 40.7867 52.4954C40.4821 52.6125 40.1207 52.6711 39.7028 52.6711Z",fill:"white"}),(0,l.createElement)("g",{clipPath:"url(#clip0_76_1285)"},(0,l.createElement)("path",{d:"M47.1837 47.2949L50.3312 50.4424L53.4787 47.2949H47.1837Z",fill:"white"})),(0,l.createElement)("rect",{x:"62.885",y:"41",width:"39.8849",height:"15.108",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M73.0721 51.634V52.554H68.5546V51.634H73.0721ZM68.7831 44.0227V52.554H67.6522V44.0227H68.7831ZM72.4745 47.6907V48.6106H68.5546V47.6907H72.4745ZM73.0135 44.0227V44.9485H68.5546V44.0227H73.0135ZM78.1874 51.3235V43.554H79.2772V52.554H78.2811L78.1874 51.3235ZM73.9218 49.4543V49.3313C73.9218 48.8469 73.9803 48.4075 74.0975 48.0129C74.2186 47.6145 74.3885 47.2727 74.6073 46.9875C74.83 46.7024 75.0936 46.4836 75.3983 46.3313C75.7069 46.175 76.0507 46.0969 76.4296 46.0969C76.828 46.0969 77.1757 46.1672 77.4725 46.3079C77.7733 46.4446 78.0272 46.6458 78.2343 46.9114C78.4452 47.1731 78.6112 47.4895 78.7323 47.8606C78.8534 48.2317 78.9374 48.6516 78.9843 49.1204V49.6594C78.9413 50.1243 78.8573 50.5422 78.7323 50.9133C78.6112 51.2844 78.4452 51.6008 78.2343 51.8625C78.0272 52.1243 77.7733 52.3254 77.4725 52.4661C77.1718 52.6028 76.8202 52.6711 76.4178 52.6711C76.0468 52.6711 75.7069 52.5911 75.3983 52.4309C75.0936 52.2708 74.83 52.0461 74.6073 51.7571C74.3885 51.468 74.2186 51.1282 74.0975 50.7375C73.9803 50.343 73.9218 49.9153 73.9218 49.4543ZM75.0116 49.3313V49.4543C75.0116 49.7708 75.0428 50.0676 75.1053 50.345C75.1718 50.6223 75.2733 50.8665 75.41 51.0774C75.5468 51.2883 75.7206 51.4543 75.9315 51.5754C76.1425 51.6926 76.3944 51.7512 76.6874 51.7512C77.0468 51.7512 77.3417 51.675 77.5721 51.5227C77.8065 51.3704 77.994 51.1692 78.1346 50.9192C78.2753 50.6692 78.3846 50.3977 78.4628 50.1047V48.6926C78.4159 48.4778 78.3475 48.2708 78.2577 48.0715C78.1718 47.8684 78.0585 47.6887 77.9178 47.5325C77.7811 47.3723 77.6112 47.2454 77.4081 47.1516C77.2089 47.0579 76.9725 47.011 76.6991 47.011C76.4022 47.011 76.1464 47.0735 75.9315 47.1985C75.7206 47.3196 75.5468 47.4875 75.41 47.7024C75.2733 47.9133 75.1718 48.1594 75.1053 48.4407C75.0428 48.718 75.0116 49.0149 75.0116 49.3313ZM82.1425 46.2141V52.554H81.0526V46.2141H82.1425ZM80.9706 44.5325C80.9706 44.3567 81.0233 44.2083 81.1288 44.0872C81.2382 43.9661 81.3983 43.9055 81.6093 43.9055C81.8163 43.9055 81.9745 43.9661 82.0839 44.0872C82.1971 44.2083 82.2538 44.3567 82.2538 44.5325C82.2538 44.7004 82.1971 44.845 82.0839 44.9661C81.9745 45.0833 81.8163 45.1418 81.6093 45.1418C81.3983 45.1418 81.2382 45.0833 81.1288 44.9661C81.0233 44.845 80.9706 44.7004 80.9706 44.5325ZM86.537 46.2141V47.0461H83.1093V46.2141H86.537ZM84.2694 44.6731H85.3534V50.9836C85.3534 51.1985 85.3866 51.3606 85.453 51.47C85.5194 51.5793 85.6053 51.6516 85.7108 51.6868C85.8163 51.7219 85.9296 51.7395 86.0507 51.7395C86.1405 51.7395 86.2343 51.7317 86.3319 51.7161C86.4335 51.6965 86.5096 51.6809 86.5604 51.6692L86.5663 52.554C86.4803 52.5813 86.3671 52.6067 86.2264 52.6301C86.0897 52.6575 85.9237 52.6711 85.7284 52.6711C85.4628 52.6711 85.2186 52.6184 84.996 52.5129C84.7733 52.4075 84.5956 52.2317 84.4628 51.9856C84.3339 51.7356 84.2694 51.3997 84.2694 50.9778V44.6731Z",fill:"white"}),(0,l.createElement)("g",{clipPath:"url(#clip1_76_1285)"},(0,l.createElement)("path",{d:"M92.0688 47.2949L95.2163 50.4424L98.3638 47.2949H92.0688Z",fill:"white"})),(0,l.createElement)("rect",{x:"107.77",y:"41",width:"44.8849",height:"15.108",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M115.291 51.259L117.805 44.0227H119.029L115.871 52.554H114.998L115.291 51.259ZM112.941 44.0227L115.432 51.259L115.742 52.554H114.869L111.717 44.0227H112.941ZM121.191 46.2141V52.554H120.102V46.2141H121.191ZM120.02 44.5325C120.02 44.3567 120.072 44.2083 120.178 44.0872C120.287 43.9661 120.447 43.9055 120.658 43.9055C120.865 43.9055 121.023 43.9661 121.133 44.0872C121.246 44.2083 121.303 44.3567 121.303 44.5325C121.303 44.7004 121.246 44.845 121.133 44.9661C121.023 45.0833 120.865 45.1418 120.658 45.1418C120.447 45.1418 120.287 45.0833 120.178 44.9661C120.072 44.845 120.02 44.7004 120.02 44.5325ZM125.562 52.6711C125.121 52.6711 124.721 52.5969 124.361 52.4485C124.006 52.2961 123.699 52.0833 123.441 51.8098C123.188 51.5364 122.992 51.2122 122.855 50.8372C122.719 50.4622 122.65 50.052 122.65 49.6067V49.3606C122.65 48.845 122.727 48.386 122.879 47.9836C123.031 47.5774 123.238 47.2336 123.5 46.9524C123.762 46.6711 124.059 46.4583 124.391 46.3137C124.723 46.1692 125.066 46.0969 125.422 46.0969C125.875 46.0969 126.266 46.175 126.594 46.3313C126.926 46.4875 127.197 46.7063 127.408 46.9875C127.619 47.2649 127.775 47.593 127.877 47.9719C127.979 48.3469 128.029 48.7571 128.029 49.2024V49.6887H123.295V48.804H126.945V48.7219C126.93 48.4407 126.871 48.1672 126.77 47.9016C126.672 47.636 126.516 47.4172 126.301 47.2454C126.086 47.0735 125.793 46.9875 125.422 46.9875C125.176 46.9875 124.949 47.0403 124.742 47.1458C124.535 47.2473 124.357 47.3997 124.209 47.6028C124.061 47.8059 123.945 48.054 123.863 48.3469C123.781 48.6399 123.74 48.9778 123.74 49.3606V49.6067C123.74 49.9075 123.781 50.1907 123.863 50.4563C123.949 50.718 124.072 50.9485 124.232 51.1477C124.396 51.3469 124.594 51.5032 124.824 51.6165C125.059 51.7297 125.324 51.7864 125.621 51.7864C126.004 51.7864 126.328 51.7083 126.594 51.552C126.859 51.3958 127.092 51.1868 127.291 50.925L127.947 51.4465C127.811 51.6536 127.637 51.8508 127.426 52.0383C127.215 52.2258 126.955 52.3782 126.646 52.4954C126.342 52.6125 125.98 52.6711 125.562 52.6711ZM130.9 51.429L132.529 46.2141H133.244L133.104 47.2512L131.445 52.554H130.748L130.9 51.429ZM129.805 46.2141L131.193 51.4875L131.293 52.554H130.561L128.721 46.2141H129.805ZM134.803 51.4465L136.127 46.2141H137.205L135.365 52.554H134.639L134.803 51.4465ZM133.402 46.2141L134.996 51.3411L135.178 52.554H134.486L132.781 47.2395L132.641 46.2141H133.402Z",fill:"white"}),(0,l.createElement)("g",{clipPath:"url(#clip2_76_1285)"},(0,l.createElement)("path",{d:"M141.953 47.2949L145.101 50.4424L148.248 47.2949H141.953Z",fill:"white"})),(0,l.createElement)("rect",{x:"157.655",y:"41",width:"49.8849",height:"15.108",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M163.635 44.0227V52.554H162.504V44.0227H163.635ZM166.611 47.5676V52.554H165.527V46.2141H166.553L166.611 47.5676ZM166.354 49.1438L165.902 49.1262C165.906 48.6926 165.971 48.2922 166.096 47.925C166.221 47.554 166.397 47.2317 166.623 46.9583C166.85 46.6848 167.119 46.4739 167.432 46.3254C167.748 46.1731 168.098 46.0969 168.481 46.0969C168.793 46.0969 169.074 46.1399 169.324 46.2258C169.574 46.3079 169.787 46.4407 169.963 46.6243C170.143 46.8079 170.279 47.0461 170.373 47.3391C170.467 47.6282 170.514 47.9817 170.514 48.3997V52.554H169.424V48.3879C169.424 48.0559 169.375 47.7903 169.277 47.5911C169.18 47.3879 169.037 47.2415 168.85 47.1516C168.662 47.0579 168.432 47.011 168.158 47.011C167.889 47.011 167.643 47.0676 167.42 47.1809C167.201 47.2942 167.012 47.4504 166.852 47.6497C166.695 47.8489 166.572 48.0774 166.483 48.3352C166.397 48.5891 166.354 48.8586 166.354 49.1438ZM175.852 50.8723C175.852 50.7161 175.817 50.5715 175.746 50.4387C175.68 50.302 175.541 50.179 175.33 50.0696C175.123 49.9563 174.811 49.8586 174.393 49.7766C174.041 49.7024 173.723 49.6145 173.438 49.5129C173.156 49.4114 172.916 49.2883 172.717 49.1438C172.522 48.9993 172.371 48.8293 172.266 48.634C172.16 48.4387 172.108 48.2102 172.108 47.9485C172.108 47.6985 172.162 47.4622 172.272 47.2395C172.385 47.0168 172.543 46.8196 172.746 46.6477C172.953 46.4758 173.201 46.3411 173.49 46.2434C173.779 46.1458 174.102 46.0969 174.457 46.0969C174.965 46.0969 175.399 46.1868 175.758 46.3665C176.117 46.5461 176.393 46.7864 176.584 47.0872C176.776 47.384 176.871 47.7141 176.871 48.0774H175.787C175.787 47.9016 175.734 47.7317 175.629 47.5676C175.527 47.3997 175.377 47.261 175.178 47.1516C174.983 47.0422 174.742 46.9875 174.457 46.9875C174.156 46.9875 173.912 47.0344 173.725 47.1282C173.541 47.218 173.406 47.3333 173.32 47.4739C173.238 47.6145 173.197 47.7629 173.197 47.9192C173.197 48.0364 173.217 48.1418 173.256 48.2356C173.299 48.3254 173.373 48.4094 173.479 48.4875C173.584 48.5618 173.733 48.6321 173.924 48.6985C174.115 48.7649 174.359 48.8313 174.656 48.8977C175.176 49.0149 175.604 49.1555 175.94 49.3196C176.276 49.4836 176.526 49.6848 176.69 49.9231C176.854 50.1614 176.936 50.4504 176.936 50.7903C176.936 51.0676 176.877 51.3215 176.76 51.552C176.647 51.7825 176.481 51.9817 176.262 52.1497C176.047 52.3137 175.789 52.4426 175.488 52.5364C175.192 52.6262 174.858 52.6711 174.486 52.6711C173.928 52.6711 173.455 52.5715 173.068 52.3723C172.682 52.1731 172.389 51.9153 172.19 51.5989C171.99 51.2825 171.891 50.9485 171.891 50.5969H172.981C172.996 50.8938 173.082 51.1301 173.238 51.3059C173.395 51.4778 173.586 51.6008 173.813 51.675C174.039 51.7454 174.264 51.7805 174.486 51.7805C174.783 51.7805 175.031 51.7415 175.231 51.6633C175.434 51.5852 175.588 51.4778 175.693 51.3411C175.799 51.2043 175.852 51.0481 175.852 50.8723ZM180.99 52.6711C180.549 52.6711 180.149 52.5969 179.789 52.4485C179.434 52.2961 179.127 52.0833 178.869 51.8098C178.615 51.5364 178.42 51.2122 178.283 50.8372C178.147 50.4622 178.078 50.052 178.078 49.6067V49.3606C178.078 48.845 178.154 48.386 178.307 47.9836C178.459 47.5774 178.666 47.2336 178.928 46.9524C179.19 46.6711 179.486 46.4583 179.818 46.3137C180.151 46.1692 180.494 46.0969 180.85 46.0969C181.303 46.0969 181.693 46.175 182.022 46.3313C182.354 46.4875 182.625 46.7063 182.836 46.9875C183.047 47.2649 183.203 47.593 183.305 47.9719C183.406 48.3469 183.457 48.7571 183.457 49.2024V49.6887H178.723V48.804H182.373V48.7219C182.358 48.4407 182.299 48.1672 182.197 47.9016C182.1 47.636 181.943 47.4172 181.729 47.2454C181.514 47.0735 181.221 46.9875 180.85 46.9875C180.604 46.9875 180.377 47.0403 180.17 47.1458C179.963 47.2473 179.785 47.3997 179.637 47.6028C179.488 47.8059 179.373 48.054 179.291 48.3469C179.209 48.6399 179.168 48.9778 179.168 49.3606V49.6067C179.168 49.9075 179.209 50.1907 179.291 50.4563C179.377 50.718 179.5 50.9485 179.66 51.1477C179.824 51.3469 180.022 51.5032 180.252 51.6165C180.486 51.7297 180.752 51.7864 181.049 51.7864C181.432 51.7864 181.756 51.7083 182.022 51.552C182.287 51.3958 182.52 51.1868 182.719 50.925L183.375 51.4465C183.238 51.6536 183.065 51.8508 182.854 52.0383C182.643 52.2258 182.383 52.3782 182.074 52.4954C181.77 52.6125 181.408 52.6711 180.99 52.6711ZM185.807 47.2102V52.554H184.723V46.2141H185.777L185.807 47.2102ZM187.787 46.179L187.781 47.1868C187.692 47.1672 187.606 47.1555 187.524 47.1516C187.445 47.1438 187.356 47.1399 187.254 47.1399C187.004 47.1399 186.783 47.179 186.592 47.2571C186.401 47.3352 186.238 47.4446 186.106 47.5852C185.973 47.7258 185.867 47.8938 185.789 48.0891C185.715 48.2805 185.666 48.4915 185.643 48.7219L185.338 48.8977C185.338 48.5149 185.375 48.1555 185.449 47.8196C185.527 47.4836 185.647 47.1868 185.807 46.929C185.967 46.6672 186.17 46.4641 186.416 46.3196C186.666 46.1711 186.963 46.0969 187.307 46.0969C187.385 46.0969 187.475 46.1067 187.576 46.1262C187.678 46.1418 187.748 46.1594 187.787 46.179ZM191.736 46.2141V47.0461H188.309V46.2141H191.736ZM189.469 44.6731H190.553V50.9836C190.553 51.1985 190.586 51.3606 190.652 51.47C190.719 51.5793 190.805 51.6516 190.91 51.6868C191.016 51.7219 191.129 51.7395 191.25 51.7395C191.34 51.7395 191.434 51.7317 191.531 51.7161C191.633 51.6965 191.709 51.6809 191.76 51.6692L191.766 52.554C191.68 52.5813 191.567 52.6067 191.426 52.6301C191.289 52.6575 191.123 52.6711 190.928 52.6711C190.662 52.6711 190.418 52.6184 190.195 52.5129C189.973 52.4075 189.795 52.2317 189.662 51.9856C189.533 51.7356 189.469 51.3997 189.469 50.9778V44.6731Z",fill:"white"}),(0,l.createElement)("g",{clipPath:"url(#clip3_76_1285)"},(0,l.createElement)("path",{d:"M196.838 47.2949L199.986 50.4424L203.133 47.2949H196.838Z",fill:"white"})),(0,l.createElement)("rect",{x:"212.54",y:"41",width:"57.8849",height:"15.108",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M218.438 44.0227V52.554H217.307V44.0227H218.438ZM222.012 47.8606V48.7864H218.192V47.8606H222.012ZM222.592 44.0227V44.9485H218.192V44.0227H222.592ZM223.36 49.4543V49.3196C223.36 48.8625 223.426 48.4387 223.559 48.0481C223.692 47.6536 223.883 47.3118 224.133 47.0227C224.383 46.7297 224.686 46.5032 225.041 46.343C225.397 46.179 225.795 46.0969 226.237 46.0969C226.682 46.0969 227.082 46.179 227.438 46.343C227.797 46.5032 228.102 46.7297 228.352 47.0227C228.606 47.3118 228.799 47.6536 228.932 48.0481C229.065 48.4387 229.131 48.8625 229.131 49.3196V49.4543C229.131 49.9114 229.065 50.3352 228.932 50.7258C228.799 51.1165 228.606 51.4583 228.352 51.7512C228.102 52.0403 227.799 52.2668 227.444 52.4309C227.092 52.5911 226.694 52.6711 226.248 52.6711C225.803 52.6711 225.403 52.5911 225.047 52.4309C224.692 52.2668 224.387 52.0403 224.133 51.7512C223.883 51.4583 223.692 51.1165 223.559 50.7258C223.426 50.3352 223.36 49.9114 223.36 49.4543ZM224.444 49.3196V49.4543C224.444 49.7708 224.481 50.0696 224.555 50.3508C224.629 50.6282 224.741 50.8743 224.889 51.0891C225.041 51.304 225.231 51.4739 225.457 51.5989C225.684 51.72 225.948 51.7805 226.248 51.7805C226.545 51.7805 226.805 51.72 227.028 51.5989C227.254 51.4739 227.442 51.304 227.59 51.0891C227.739 50.8743 227.85 50.6282 227.924 50.3508C228.002 50.0696 228.041 49.7708 228.041 49.4543V49.3196C228.041 49.0071 228.002 48.7122 227.924 48.4348C227.85 48.1536 227.737 47.9055 227.584 47.6907C227.436 47.4719 227.248 47.3 227.022 47.175C226.799 47.05 226.537 46.9875 226.237 46.9875C225.94 46.9875 225.678 47.05 225.452 47.175C225.229 47.3 225.041 47.4719 224.889 47.6907C224.741 47.9055 224.629 48.1536 224.555 48.4348C224.481 48.7122 224.444 49.0071 224.444 49.3196ZM231.575 47.2102V52.554H230.491V46.2141H231.545L231.575 47.2102ZM233.555 46.179L233.549 47.1868C233.459 47.1672 233.373 47.1555 233.291 47.1516C233.213 47.1438 233.123 47.1399 233.022 47.1399C232.772 47.1399 232.551 47.179 232.36 47.2571C232.168 47.3352 232.006 47.4446 231.873 47.5852C231.741 47.7258 231.635 47.8938 231.557 48.0891C231.483 48.2805 231.434 48.4915 231.411 48.7219L231.106 48.8977C231.106 48.5149 231.143 48.1555 231.217 47.8196C231.295 47.4836 231.414 47.1868 231.575 46.929C231.735 46.6672 231.938 46.4641 232.184 46.3196C232.434 46.1711 232.731 46.0969 233.075 46.0969C233.153 46.0969 233.243 46.1067 233.344 46.1262C233.446 46.1418 233.516 46.1594 233.555 46.179ZM235.635 47.4739V52.554H234.545V46.2141H235.577L235.635 47.4739ZM235.412 49.1438L234.909 49.1262C234.912 48.6926 234.969 48.2922 235.078 47.925C235.188 47.554 235.35 47.2317 235.565 46.9583C235.78 46.6848 236.047 46.4739 236.368 46.3254C236.688 46.1731 237.059 46.0969 237.481 46.0969C237.778 46.0969 238.051 46.1399 238.301 46.2258C238.551 46.3079 238.768 46.4387 238.952 46.6184C239.135 46.7981 239.278 47.0286 239.379 47.3098C239.481 47.5911 239.532 47.9309 239.532 48.3293V52.554H238.448V48.3821C238.448 48.05 238.391 47.7844 238.278 47.5852C238.168 47.386 238.012 47.2415 237.809 47.1516C237.606 47.0579 237.368 47.011 237.094 47.011C236.774 47.011 236.506 47.0676 236.291 47.1809C236.077 47.2942 235.905 47.4504 235.776 47.6497C235.647 47.8489 235.553 48.0774 235.495 48.3352C235.44 48.5891 235.412 48.8586 235.412 49.1438ZM239.52 48.5461L238.793 48.7688C238.797 48.4211 238.854 48.0872 238.963 47.7668C239.077 47.4465 239.239 47.1614 239.45 46.9114C239.664 46.6614 239.928 46.4641 240.241 46.3196C240.553 46.1711 240.911 46.0969 241.313 46.0969C241.653 46.0969 241.953 46.1418 242.215 46.2317C242.481 46.3215 242.703 46.4602 242.883 46.6477C243.067 46.8313 243.205 47.0676 243.299 47.3567C243.393 47.6458 243.44 47.9895 243.44 48.3879V52.554H242.35V48.3762C242.35 48.0208 242.293 47.7454 242.18 47.55C242.071 47.3508 241.914 47.2122 241.711 47.134C241.512 47.052 241.274 47.011 240.996 47.011C240.758 47.011 240.547 47.052 240.364 47.134C240.18 47.2161 240.026 47.3293 239.901 47.4739C239.776 47.6145 239.68 47.7766 239.614 47.9602C239.551 48.1438 239.52 48.3391 239.52 48.5461ZM248.819 51.47V48.2063C248.819 47.9563 248.768 47.7395 248.666 47.5559C248.569 47.3684 248.42 47.2239 248.221 47.1223C248.022 47.0208 247.776 46.97 247.483 46.97C247.209 46.97 246.969 47.0168 246.762 47.1106C246.559 47.2043 246.399 47.3274 246.282 47.4797C246.168 47.6321 246.112 47.7961 246.112 47.9719H245.028C245.028 47.7454 245.086 47.5208 245.203 47.2981C245.321 47.0754 245.489 46.8743 245.707 46.6946C245.93 46.511 246.196 46.3665 246.504 46.261C246.817 46.1516 247.164 46.0969 247.547 46.0969C248.008 46.0969 248.414 46.175 248.766 46.3313C249.121 46.4875 249.399 46.7239 249.598 47.0403C249.801 47.3528 249.903 47.7454 249.903 48.218V51.1711C249.903 51.3821 249.92 51.6067 249.955 51.845C249.995 52.0833 250.051 52.2883 250.125 52.4602V52.554H248.995C248.94 52.429 248.897 52.2629 248.866 52.0559C248.834 51.845 248.819 51.6497 248.819 51.47ZM249.006 48.7102L249.018 49.4719H247.922C247.614 49.4719 247.338 49.4973 247.096 49.5481C246.854 49.595 246.651 49.6672 246.487 49.7649C246.323 49.8625 246.198 49.9856 246.112 50.134C246.026 50.2786 245.983 50.4485 245.983 50.6438C245.983 50.843 246.028 51.0247 246.118 51.1887C246.207 51.3528 246.342 51.4836 246.522 51.5813C246.705 51.675 246.93 51.7219 247.196 51.7219C247.528 51.7219 247.821 51.6516 248.075 51.511C248.328 51.3704 248.53 51.1985 248.678 50.9954C248.83 50.7922 248.912 50.595 248.924 50.4036L249.387 50.925C249.36 51.0891 249.286 51.2708 249.164 51.47C249.043 51.6692 248.881 51.8606 248.678 52.0442C248.479 52.2239 248.241 52.3743 247.963 52.4954C247.69 52.6125 247.381 52.6711 247.037 52.6711C246.608 52.6711 246.231 52.5872 245.907 52.4192C245.586 52.2512 245.336 52.0266 245.157 51.7454C244.981 51.4602 244.893 51.1418 244.893 50.7903C244.893 50.4504 244.959 50.1516 245.092 49.8938C245.225 49.6321 245.416 49.4153 245.666 49.2434C245.916 49.0676 246.217 48.9348 246.569 48.845C246.92 48.7551 247.313 48.7102 247.746 48.7102H249.006ZM254.262 46.2141V47.0461H250.834V46.2141H254.262ZM251.995 44.6731H253.078V50.9836C253.078 51.1985 253.112 51.3606 253.178 51.47C253.245 51.5793 253.33 51.6516 253.436 51.6868C253.541 51.7219 253.655 51.7395 253.776 51.7395C253.866 51.7395 253.959 51.7317 254.057 51.7161C254.159 51.6965 254.235 51.6809 254.286 51.6692L254.291 52.554C254.205 52.5813 254.092 52.6067 253.952 52.6301C253.815 52.6575 253.649 52.6711 253.453 52.6711C253.188 52.6711 252.944 52.6184 252.721 52.5129C252.498 52.4075 252.321 52.2317 252.188 51.9856C252.059 51.7356 251.995 51.3997 251.995 50.9778V44.6731Z",fill:"white"}),(0,l.createElement)("g",{clipPath:"url(#clip4_76_1285)"},(0,l.createElement)("path",{d:"M259.723 47.2949L262.871 50.4424L266.018 47.2949H259.723Z",fill:"white"})),(0,l.createElement)("rect",{x:"15.3777",y:"61.4856",width:"267.245",height:"27.3742",fill:"#E2E8F0"}),(0,l.createElement)("rect",{x:"20",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M31.7841 75.0139C32.5169 74.5078 33.0305 73.6769 33.0305 72.9064C33.0305 71.1992 31.7086 69.8848 30.009 69.8848H25.2877V80.4603H30.6057C32.1845 80.4603 33.4082 79.1762 33.4082 77.5974C33.4082 76.4492 32.7586 75.4672 31.7841 75.0139ZM27.5539 71.7733H29.8201C30.4471 71.7733 30.9532 72.2794 30.9532 72.9064C30.9532 73.5333 30.4471 74.0395 29.8201 74.0395H27.5539V71.7733ZM30.1978 78.5718H27.5539V76.3056H30.1978C30.8248 76.3056 31.3309 76.8118 31.3309 77.4387C31.3309 78.0657 30.8248 78.5718 30.1978 78.5718Z",fill:"white"}),(0,l.createElement)("rect",{x:"41.1511",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M48.7046 69.8848V72.151H50.374L47.7905 78.1941H45.683V80.4603H51.7262V78.1941H50.0567L52.6402 72.151H54.7478V69.8848H48.7046Z",fill:"white"}),(0,l.createElement)("path",{d:"M64.2806 66.1079V84.2375",stroke:"white"}),(0,l.createElement)("rect",{x:"69.2806",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M72.3018 74.0397C71.6748 74.0397 71.1687 74.5458 71.1687 75.1728C71.1687 75.7998 71.6748 76.3059 72.3018 76.3059C72.9288 76.3059 73.4349 75.7998 73.4349 75.1728C73.4349 74.5458 72.9288 74.0397 72.3018 74.0397ZM72.3018 69.5073C71.6748 69.5073 71.1687 70.0134 71.1687 70.6404C71.1687 71.2674 71.6748 71.7735 72.3018 71.7735C72.9288 71.7735 73.4349 71.2674 73.4349 70.6404C73.4349 70.0134 72.9288 69.5073 72.3018 69.5073ZM72.3018 78.5721C71.6748 78.5721 71.1687 79.0858 71.1687 79.7052C71.1687 80.3246 71.6824 80.8383 72.3018 80.8383C72.9212 80.8383 73.4349 80.3246 73.4349 79.7052C73.4349 79.0858 72.9288 78.5721 72.3018 78.5721ZM74.568 80.4606H85.1436V78.9498H74.568V80.4606ZM74.568 75.9282H85.1436V74.4174H74.568V75.9282ZM74.568 69.885V71.3958H85.1436V69.885H74.568Z",fill:"white"}),(0,l.createElement)("rect",{x:"90.4318",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M91.943 78.9496H93.4538V79.3273H92.6984V80.0827H93.4538V80.4604H91.943V81.2158H94.2092V78.1942H91.943V78.9496ZM92.6984 72.151H93.4538V69.1294H91.943V69.8848H92.6984V72.151ZM91.943 74.4172H93.3027L91.943 76.0035V76.6834H94.2092V75.928H92.8495L94.2092 74.3416V73.6618H91.943V74.4172ZM95.72 69.8848V71.3956H106.296V69.8848H95.72ZM95.72 80.4604H106.296V78.9496H95.72V80.4604ZM95.72 75.928H106.296V74.4172H95.72V75.928Z",fill:"white"}),(0,l.createElement)("path",{d:"M113.561 66.1079V84.2375",stroke:"white"}),(0,l.createElement)("rect",{x:"118.561",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M121.508 75.1725C121.508 73.8808 122.558 72.8308 123.849 72.8308H126.871V71.3955H123.849C121.765 71.3955 120.073 73.0876 120.073 75.1725C120.073 77.2574 121.765 78.9495 123.849 78.9495H126.871V77.5142H123.849C122.558 77.5142 121.508 76.4642 121.508 75.1725ZM124.605 75.9279H130.648V74.4171H124.605V75.9279ZM131.403 71.3955H128.382V72.8308H131.403C132.695 72.8308 133.745 73.8808 133.745 75.1725C133.745 76.4642 132.695 77.5142 131.403 77.5142H128.382V78.9495H131.403C133.488 78.9495 135.18 77.2574 135.18 75.1725C135.18 73.0876 133.488 71.3955 131.403 71.3955Z",fill:"white"}),(0,l.createElement)("rect",{x:"139.713",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M152.554 71.3956H149.533V72.8309H152.554C153.846 72.8309 154.896 73.8809 154.896 75.1726C154.896 76.2528 154.156 77.1593 153.151 77.4237L154.254 78.5266C155.485 77.8996 156.331 76.6456 156.331 75.1726C156.331 73.0877 154.639 71.3956 152.554 71.3956ZM151.799 74.4172H150.145L151.656 75.928H151.799V74.4172ZM141.224 69.3334L143.573 71.6827C142.198 72.2417 141.224 73.5938 141.224 75.1726C141.224 77.2575 142.916 78.9496 145.001 78.9496H148.022V77.5143H145.001C143.709 77.5143 142.659 76.4643 142.659 75.1726C142.659 73.9715 143.573 72.982 144.744 72.8535L146.307 74.4172H145.756V75.928H147.818L149.533 77.6428V78.9496H150.84L153.869 81.9712L154.821 81.0194L142.183 68.374L141.224 69.3334Z",fill:"white"}),(0,l.createElement)("path",{d:"M162.842 66.1079V84.2375",stroke:"white"}),(0,l.createElement)("g",{opacity:"0.3"},(0,l.createElement)("rect",{x:"167.842",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M177.285 72.1509C175.283 72.1509 173.47 72.8988 172.072 74.1149L169.353 71.3955V78.1941H176.151L173.417 75.4595C174.467 74.5833 175.804 74.0394 177.285 74.0394C179.959 74.0394 182.232 75.7844 183.026 78.1941L184.816 77.6049C183.766 74.4398 180.797 72.1509 177.285 72.1509Z",fill:"white"})),(0,l.createElement)("g",{opacity:"0.3"},(0,l.createElement)("rect",{x:"188.993",y:"66.1079",width:"18.1296",height:"18.1296",rx:"3.02159",fill:"#4272F9"}),(0,l.createElement)("path",{d:"M202.893 74.1149C201.495 72.8988 199.682 72.1509 197.68 72.1509C194.168 72.1509 191.199 74.4398 190.157 77.6049L191.939 78.1941C192.733 75.7844 194.999 74.0394 197.68 74.0394C199.153 74.0394 200.498 74.5833 201.548 75.4595L198.813 78.1941H205.612V71.3955L202.893 74.1149Z",fill:"white"})),(0,l.createElement)("rect",{x:"15.3777",y:"61.4856",width:"267.245",height:"27.3742",stroke:"#E2E8F0",strokeWidth:"0.755398"}),(0,l.createElement)("rect",{x:"14.5",y:"35.5",width:"269",height:"94",rx:"4.5",stroke:"#E2E8F0"}),(0,l.createElement)("defs",null,(0,l.createElement)("clipPath",{id:"clip0_76_1285"},(0,l.createElement)("rect",{width:"15.108",height:"15.108",fill:"white",transform:"translate(42.777 41)"})),(0,l.createElement)("clipPath",{id:"clip1_76_1285"},(0,l.createElement)("rect",{width:"15.108",height:"15.108",fill:"white",transform:"translate(87.662 41)"})),(0,l.createElement)("clipPath",{id:"clip2_76_1285"},(0,l.createElement)("rect",{width:"15.108",height:"15.108",fill:"white",transform:"translate(137.547 41)"})),(0,l.createElement)("clipPath",{id:"clip3_76_1285"},(0,l.createElement)("rect",{width:"15.108",height:"15.108",fill:"white",transform:"translate(192.432 41)"})),(0,l.createElement)("clipPath",{id:"clip4_76_1285"},(0,l.createElement)("rect",{width:"15.108",height:"15.108",fill:"white",transform:"translate(255.317 41)"})))),a=function({rows:e=8,...t}){let r=22*e;return r=100>r?100:r,(0,l.createElement)("div",{...t},(0,l.createElement)("div",{className:"wp-editor-container"},(0,l.createElement)("div",{className:"mce-tinymce mce-container mce-panel"},(0,l.createElement)("div",{className:"mce-container-body mce-stack-layout"},(0,l.createElement)("div",{className:"mce-top-part mce-container mce-stack-layout-item mce-first"},(0,l.createElement)("div",{className:"mce-container-body"},(0,l.createElement)("div",{className:"mce-toolbar-grp mce-container mce-panel mce-first mce-last",tabIndex:"-1",role:"group"},(0,l.createElement)("div",{className:"mce-container-body mce-stack-layout"},(0,l.createElement)("div",{className:"mce-container mce-toolbar mce-stack-layout-item mce-first mce-last",role:"toolbar"},(0,l.createElement)("div",{className:"mce-container-body mce-flow-layout"},(0,l.createElement)("div",{className:"mce-container mce-flow-layout-item mce-first mce-btn-group",role:"group"},(0,l.createElement)("div",null,(0,l.createElement)("div",{className:"mce-widget mce-btn mce-menubtn mce-fixed-width mce-listbox mce-first mce-last mce-btn-has-text",tabIndex:"-1","aria-labelledby":"mceu_0",role:"button","aria-haspopup":"true"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("span",{className:"mce-txt"},"Paragraph"),(0,l.createElement)("i",{className:"mce-caret"}))))),(0,l.createElement)("div",{className:"mce-container mce-flow-layout-item mce-btn-group",role:"group"},(0,l.createElement)("div",null,(0,l.createElement)("div",{className:"mce-widget mce-btn mce-first",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Bold (Ctrl+B)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-bold"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Italic (Ctrl+I)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-italic"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Strikethrough (Shift+Alt+D)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-strikethrough"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn mce-last",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Blockquote (Shift+Alt+Q)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-blockquote"}))))),(0,l.createElement)("div",{className:"mce-container mce-flow-layout-item mce-btn-group",role:"group"},(0,l.createElement)("div",null,(0,l.createElement)("div",{className:"mce-widget mce-btn mce-first",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Bulleted list (Shift+Alt+U)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-bullist"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn mce-last",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Numbered list (Shift+Alt+O)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-numlist"}))))),(0,l.createElement)("div",{className:"mce-container mce-flow-layout-item mce-btn-group",role:"group"},(0,l.createElement)("div",null,(0,l.createElement)("div",{className:"mce-widget mce-btn mce-first",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Align left (Shift+Alt+L)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-alignleft"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Align center (Shift+Alt+C)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-aligncenter"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn mce-last",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Align right (Shift+Alt+R)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-alignright"}))))),(0,l.createElement)("div",{className:"mce-container mce-flow-layout-item mce-btn-group",role:"group"},(0,l.createElement)("div",null,(0,l.createElement)("div",{className:"mce-widget mce-btn mce-first",tabIndex:"-1","aria-pressed":"false",role:"button","aria-label":"Insert/edit link (Ctrl+K)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-link"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn mce-last",tabIndex:"-1",role:"button","aria-label":"Remove link (Shift+Alt+S)"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-unlink"}))))),(0,l.createElement)("div",{className:"mce-container mce-flow-layout-item mce-last mce-btn-group",role:"group"},(0,l.createElement)("div",null,(0,l.createElement)("div",{className:"mce-widget mce-btn mce-first",tabIndex:"-1",role:"button","aria-label":"Undo (Ctrl+Z)","aria-disabled":"false"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-undo"}))),(0,l.createElement)("div",{className:"mce-widget mce-btn mce-last mce-disabled",tabIndex:"-1",role:"button","aria-label":"Redo (Ctrl+Y)","aria-disabled":"true"},(0,l.createElement)("button",{role:"presentation",type:"button",tabIndex:"-1"},(0,l.createElement)("i",{className:"mce-ico mce-i-redo"}))))))))))),(0,l.createElement)("div",{className:"mce-edit-area mce-container mce-panel mce-stack-layout-item",tabIndex:"-1",role:"group",style:{borderWidth:"1px 0px 0px",height:r+"px"}},(0,l.createElement)("div",{style:{padding:"9px 10px"}},(0,l.createElement)("p",{style:{fontSize:"16px",lineHeight:1.5,fontFamily:'Georgia, "Times New Roman", "Bitstream Charter", Times, serif'}},"Hello world!"))),(0,l.createElement)("div",{className:"mce-statusbar mce-container mce-panel mce-stack-layout-item mce-last",tabIndex:"-1",role:"group",style:{borderWidth:"1px 0px 0px"}},(0,l.createElement)("div",{className:"mce-container-body mce-flow-layout"},(0,l.createElement)("div",{className:"mce-path mce-flow-layout-item mce-first"},(0,l.createElement)("div",{role:"button",className:"mce-path-item mce-last","data-index":"0",tabIndex:"-1","aria-level":"1"},"p")),(0,l.createElement)("div",{className:"mce-flow-layout-item mce-last mce-resizehandle"},(0,l.createElement)("i",{className:"mce-ico mce-i-resize"}))))))))},{ToolBarFields:C,GeneralFields:i,AdvancedFields:c,FieldWrapper:n,ValidationToggleGroup:o,ValidationBlockMessage:m,StylePanel:s,StyleColorItem:d,StyleColorItemsWrapper:b,StyleBorderItem:u,StyleBorderRadiusItem:f}=JetFBComponents,{useIsAdvancedValidation:V,useUniqueNameOnDuplicate:h,useJetStyle:p}=JetFBHooks,{__:w}=wp.i18n,{InspectorControls:H,useBlockProps:y}=wp.blockEditor,{PanelBody:E,RangeControl:g,ToggleControl:M}=wp.components,Z=JSON.parse('{"apiVersion":3,"name":"jet-forms/wysiwyg-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","wysiwyg","text"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true,"jetStyle":{"--jfb-wysiwyg-container-bg":["iframe body","color","background"],"--jfb-wysiwyg-container-text":["iframe body","color","text"],"--jfb-wysiwyg-toolbar-bg":[".mce-toolbar-grp","color","background"],"--jfb-wysiwyg-statusbar-bg":[".mce-statusbar","color","background"],"--jfb-wysiwyg-buttons-bg":[".mce-toolbar .mce-btn","color","background"],"--jfb-wysiwyg-buttons-text":[".mce-btn .mce-ico","color","text"],"--jfb-wysiwyg-buttons-border":[".mce-btn","border"],"--jfb-wysiwyg-buttons-border-radius":[".mce-btn","border","radius"],"--jfb-wysiwyg-buttons-hover-bg":[".mce-btn:hover","color","background"],"--jfb-wysiwyg-buttons-hover-text":[".mce-btn:hover .mce-ico","color","text"],"--jfb-wysiwyg-buttons-hover-border":[".mce-btn:hover","border"],"--jfb-wysiwyg-buttons-hover-border-radius":[".mce-btn:hover","border","radius"],"--jfb-wysiwyg-buttons-checked-bg":[".mce-btn.mce-active","color","background"],"--jfb-wysiwyg-buttons-checked-text":[".mce-btn.mce-active .mce-ico","color","text"],"--jfb-wysiwyg-buttons-checked-border":[".mce-btn.mce-active","border"],"--jfb-wysiwyg-buttons-checked-border-radius":[".mce-btn.mce-active","border","radius"]}},"title":"Wysiwyg Field","icon":"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"keep_format":{"type":"boolean","default":false},"rows":{"type":"number","default":8},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"required":{"type":"boolean","default":false},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"],"editorStyle":["jet-fb-wysiwyg-lightgray-skin","jet-fb-wysiwyg"],"viewScript":"jet-fb-wysiwyg","style":"jet-fb-wysiwyg"}'),{__:x}=wp.i18n,{createBlock:v}=wp.blocks,{name:L,icon:j=""}=Z;Z.attributes.isPreview={type:"boolean",default:!1};const k={icon:(0,l.createElement)("span",{dangerouslySetInnerHTML:{__html:j}}),description:x("Using this window, the users can add some styled text, HTML coding, \nor another type of content to the form seeing the results on the frontend.","jet-form-builder"),edit:function(e){var t;const{editProps:{uniqKey:Z},isSelected:x,attributes:v,setAttributes:L}=e,j=null!==(t=p?.({className:["jet-form-builder-row","field-type-wysiwyg-field","wp-block-jet-forms-wysiwyg-field","wp-core-ui","wp-editor-wrap","tmce-active"].join(" ")}))&&void 0!==t?t:{},k=y(j),N=V();return h(),v.isPreview?(0,l.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},r):(0,l.createElement)(l.Fragment,null,x&&(0,l.createElement)(l.Fragment,null,(0,l.createElement)(C,{key:Z("ToolBarFields"),...e}),(0,l.createElement)(H,{key:Z("InspectorControls")},(0,l.createElement)(i,{hasMacro:!1}),(0,l.createElement)(E,{title:w("Editor","jet-form-builder")},(0,l.createElement)(g,{label:w("Rows","jet-form-builder"),value:v.rows,onChange:e=>L({rows:e}),allowReset:!0,resetFallbackValue:8,min:4,max:25}),(0,l.createElement)(M,{label:w("Save text styles when pasting","jet-form-builder"),help:w("Preserves text formatting when copying \nfrom other text editors.","jet-form-builder"),checked:v.keep_format,onChange:e=>L({keep_format:e})})),(0,l.createElement)(E,{title:w("Validation","jet-form-builder")},(0,l.createElement)(o,null),N&&(0,l.createElement)(l.Fragment,null,(0,l.createElement)(m,{name:"empty"}))),(0,l.createElement)(c,{key:Z("AdvancedFields"),...e})),Boolean(s)&&(0,l.createElement)(H,{group:"styles"},(0,l.createElement)(s,{label:w("Editor container","jet-form-builder")},(0,l.createElement)(b,null,(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-container-text",label:w("Text color","jet-form-builder")}),(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-container-bg",label:w("Background","jet-form-builder")}))),(0,l.createElement)(s,{label:w("Toolbar","jet-form-builder")},(0,l.createElement)(b,null,(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-toolbar-bg",label:w("Background","jet-form-builder")}))),(0,l.createElement)(s,{label:w("Toolbar buttons","jet-form-builder")},(0,l.createElement)(b,null,(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-buttons-text",label:w("Text color","jet-form-builder")}),(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-buttons-bg",label:w("Background","jet-form-builder")})),(0,l.createElement)(u,{cssVar:"--jfb-wysiwyg-buttons-border",label:w("Border","jet-form-builder"),enableAlpha:!0,labelForControl:!0}),(0,l.createElement)(f,{cssVar:"--jfb-wysiwyg-buttons-border-radius",label:w("Radius","jet-form-builder")})),(0,l.createElement)(s,{label:w("Hover toolbar buttons","jet-form-builder")},(0,l.createElement)(b,null,(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-buttons-hover-text",label:w("Text color","jet-form-builder")}),(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-buttons-hover-bg",label:w("Background","jet-form-builder")})),(0,l.createElement)(u,{cssVar:"--jfb-wysiwyg-buttons-hover-border",label:w("Border","jet-form-builder"),enableAlpha:!0,labelForControl:!0}),(0,l.createElement)(f,{cssVar:"--jfb-wysiwyg-buttons-hover-border-radius",label:w("Radius","jet-form-builder")})),(0,l.createElement)(s,{label:w("Checked toolbar buttons","jet-form-builder")},(0,l.createElement)(b,null,(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-buttons-checked-text",label:w("Text color","jet-form-builder")}),(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-buttons-checked-bg",label:w("Background","jet-form-builder")})),(0,l.createElement)(u,{cssVar:"--jfb-wysiwyg-buttons-checked-border",label:w("Border","jet-form-builder"),enableAlpha:!0,labelForControl:!0}),(0,l.createElement)(f,{cssVar:"--jfb-wysiwyg-buttons-checked-border-radius",label:w("Radius","jet-form-builder")})),(0,l.createElement)(s,{label:w("Status bar","jet-form-builder")},(0,l.createElement)(b,null,(0,l.createElement)(d,{cssVar:"--jfb-wysiwyg-statusbar-bg",label:w("Background","jet-form-builder")}))))),(0,l.createElement)("div",{...k},(0,l.createElement)(n,{key:Z("FieldWrapper"),...e},(0,l.createElement)(a,{rows:v.rows,...j}))))},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>v("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/textarea-field","jet-forms/text-field"],transform:e=>v(L,{...e}),priority:0}]}},{addFilter:N}=wp.hooks;N("jet.fb.register.fields","jet-form-builder/wysiwyg",(function(e){return e.push(t),e}))})(); \ No newline at end of file diff --git a/modules/wysiwyg/assets/build/wysiwyg.asset.php b/modules/wysiwyg/assets/build/wysiwyg.asset.php index 88858c985..d3a106e0c 100644 --- a/modules/wysiwyg/assets/build/wysiwyg.asset.php +++ b/modules/wysiwyg/assets/build/wysiwyg.asset.php @@ -1 +1 @@ - array(), 'version' => 'c638d8f3efb5788e4f39'); + array(), 'version' => 'aa6fdc7631b968584621'); diff --git a/modules/wysiwyg/assets/build/wysiwyg.js b/modules/wysiwyg/assets/build/wysiwyg.js index c897dcddd..3123ac926 100644 --- a/modules/wysiwyg/assets/build/wysiwyg.js +++ b/modules/wysiwyg/assets/build/wysiwyg.js @@ -1 +1 @@ -(()=>{"use strict";const{InputData:t}=JetFormBuilderAbstract,{getParsedName:e}=JetFormBuilderFunctions;function i(t){var e;const i=t.closest(".jet-form-builder-repeater");if(!i)return;const o=i.querySelector(".jet-form-builder-repeater__initial");if(!o)return;const n=null!==(e=o.content)&&void 0!==e?e:o;for(const t of n.querySelectorAll('link[rel="stylesheet"]')){if(t.id&&document.getElementById(t.id))continue;const e=t.getAttribute("href");e&&[...document.querySelectorAll('link[rel="stylesheet"]')].some(t=>t.getAttribute("href")===e)||document.head.appendChild(t.cloneNode(!0))}}function o(){t.call(this),this.isSupported=function(t){return t.classList.contains("wysiwyg-field")},this.setNode=function(o){t.prototype.setNode.call(this,o),this.inputType="wysiwyg",this.getSubmit().submitter.promise(t=>{window.tinyMCE.triggerSave(),t()}),this.textArea=o.querySelector(".wp-editor-area");const n=JSON.parse(o.dataset.editor);this.rawName=n.textarea_name,this.name=e(this.rawName);const r=()=>window.tinymce.get(this.textArea.id);r()?.remove?.(),i(o),window.wp.editor.initialize(this.textArea.id,n),this.editor=r(),this.getEditor=r,document.addEventListener("jet-form-builder/conditional-block/block-toggle-hidden-dom",t=>{if(t.detail.block.contains(o)){const e=t.detail.block;e.contains(o)&&(e.__initialized?t.detail.result&&(r()?.remove?.(),i(o),window.wp.editor.initialize(this.textArea.id,n),this.editor=r(),this.getEditor=r):(r()?.remove?.(),i(o),window.wp.editor.initialize(this.textArea.id,n),this.editor=r(),this.getEditor=r,e.__initialized=!0))}})},this.addListeners=function(){this.reporting.makeInvalid=()=>{},this.reporting.makeValid=()=>{};const t=()=>{this.value.current=this.editor.getContent()};this.getEditor()?.on?.("input",t)?.on?.("change",t)},this.setValue=function(){this.getEditor()?.on?.("init",()=>{this.transferStylesToIframe(),this.callable.lock.current=!1,this.silenceSet(this.editor.getContent())})},this.initNotifyValue=()=>{},this.focusRaw=function(){this.getEditor()?.getBody()?.focus({preventScroll:!0})},this.hasAutoScroll=function(){return!1},this.transferStylesToIframe=function(){const t=this.getWrapperNode(),e=this.editor.iframeElement.contentDocument.body,i=t.style.cssText.split(";").filter(Boolean);for(const t of i){const[i,o]=t.split(":");switch(i.trim()){case"--jfb-wysiwyg-container-bg":e.style.backgroundColor=o;break;case"--jfb-wysiwyg-container-text":e.style.color=o}}}}o.prototype=Object.create(t.prototype);const n=o,{BaseSignal:r}=JetFormBuilderAbstract;function s(){r.call(this),this.lock.current=!0,this.isSupported=function(t,e){return t.classList.contains("wysiwyg-field")},this.runSignal=function(){var t;this.input.value.current!==this.input.editor.getContent()&&this.input.editor.setContent(null!==(t=this.input.value.current)&&void 0!==t?t:"")}}s.prototype=Object.create(r.prototype);const l=s,{addFilter:c}=JetPlugins.hooks;c("jet.fb.inputs","jet-form-builder/wysiwyg-field",function(t){return[n,...t]}),c("jet.fb.signals","jet-form-builder/wysiwyg-field",function(t){return[l,...t]})})(); \ No newline at end of file +(()=>{"use strict";const{InputData:t}=JetFormBuilderAbstract,{getParsedName:e}=JetFormBuilderFunctions;function i(t){var e;const i=t.closest(".jet-form-builder-repeater");if(!i)return;const o=i.querySelector(".jet-form-builder-repeater__initial");if(!o)return;const n=null!==(e=o.content)&&void 0!==e?e:o;for(const t of n.querySelectorAll('link[rel="stylesheet"]')){if(t.id&&document.getElementById(t.id))continue;const e=t.getAttribute("href");e&&[...document.querySelectorAll('link[rel="stylesheet"]')].some((t=>t.getAttribute("href")===e))||document.head.appendChild(t.cloneNode(!0))}}function o(){t.call(this),this.isSupported=function(t){return t.classList.contains("wysiwyg-field")},this.setNode=function(o){t.prototype.setNode.call(this,o),this.inputType="wysiwyg",this.getSubmit().submitter.promise((t=>{window.tinyMCE.triggerSave(),t()})),this.textArea=o.querySelector(".wp-editor-area");const n=JSON.parse(o.dataset.editor);this.rawName=n.textarea_name,this.name=e(this.rawName);const r=()=>window.tinymce.get(this.textArea.id);r()?.remove?.(),i(o),window.wp.editor.initialize(this.textArea.id,n),this.editor=r(),this.getEditor=r,document.addEventListener("jet-form-builder/conditional-block/block-toggle-hidden-dom",(t=>{if(t.detail.block.contains(o)){const e=t.detail.block;e.contains(o)&&(e.__initialized?t.detail.result&&(r()?.remove?.(),i(o),window.wp.editor.initialize(this.textArea.id,n),this.editor=r(),this.getEditor=r):(r()?.remove?.(),i(o),window.wp.editor.initialize(this.textArea.id,n),this.editor=r(),this.getEditor=r,e.__initialized=!0))}}))},this.addListeners=function(){this.reporting.makeInvalid=()=>{},this.reporting.makeValid=()=>{};const t=()=>{this.value.current=this.editor.getContent()};this.getEditor()?.on?.("input",t)?.on?.("change",t)},this.setValue=function(){this.getEditor()?.on?.("init",(()=>{this.transferStylesToIframe(),this.callable.lock.current=!1,this.silenceSet(this.editor.getContent())}))},this.initNotifyValue=()=>{},this.focusRaw=function(){this.getEditor()?.getBody()?.focus({preventScroll:!0})},this.hasAutoScroll=function(){return!1},this.transferStylesToIframe=function(){const t=this.getWrapperNode(),e=this.editor.iframeElement.contentDocument.body,i=t.style.cssText.split(";").filter(Boolean);for(const t of i){const[i,o]=t.split(":");switch(i.trim()){case"--jfb-wysiwyg-container-bg":e.style.backgroundColor=o;break;case"--jfb-wysiwyg-container-text":e.style.color=o}}}}o.prototype=Object.create(t.prototype);const n=o,{BaseSignal:r}=JetFormBuilderAbstract;function s(){r.call(this),this.lock.current=!0,this.isSupported=function(t,e){return t.classList.contains("wysiwyg-field")},this.runSignal=function(){var t;this.input.value.current!==this.input.editor.getContent()&&this.input.editor.setContent(null!==(t=this.input.value.current)&&void 0!==t?t:"")}}s.prototype=Object.create(r.prototype);const l=s,{addFilter:c}=JetPlugins.hooks;c("jet.fb.inputs","jet-form-builder/wysiwyg-field",(function(t){return[n,...t]})),c("jet.fb.signals","jet-form-builder/wysiwyg-field",(function(t){return[l,...t]}))})(); \ No newline at end of file diff --git a/tests/wpunit/ValidationPipelineTest.php b/tests/wpunit/ValidationPipelineTest.php index 6166816ff..df9557806 100644 --- a/tests/wpunit/ValidationPipelineTest.php +++ b/tests/wpunit/ValidationPipelineTest.php @@ -9,10 +9,19 @@ use JFB_Modules\Block_Parsers\Fields\Repeater_Field_Parser; use JFB_Modules\Block_Parsers\Fields\Text_Field_Parser; use JFB_Modules\Validation\Module; +use JFB_Modules\Validation\Handlers\Validation_Handler; +use JFB_Modules\Validation\Rest_Api\Rest_Validation_Endpoint; +use JFB_Modules\Validation\Ssr\Base_Validation_Callback; use JFB_Modules\Validation\Ssr\Is_Field_Value_Unique; class ValidationPipelineTest extends \Codeception\TestCase\WPTestCase { + public function setUp(): void { + parent::setUp(); + + $this->create_record_tables(); + } + /** * @dataProvider zeroLikeValuesProvider * @@ -163,8 +172,8 @@ public function testKnownArrayParsersAcceptArrayPayloads(): void { $this->assertSame( $repeater_value, $repeater->get_value() ); } - public function testSsrUniqueCallbackUsesScopedRepeaterFieldName(): void { - $form_id = $this->factory()->post->create( array( 'post_type' => 'jet-form-builder' ) ); + public function testNormalSubmissionUsesScopedRepeaterPathWithoutValidationPath(): void { + $form_id = $this->create_form( $this->single_repeater_form() ); $record_id = $this->insert_success_record( $form_id ); $this->insert_record_field( @@ -184,20 +193,38 @@ public function testSsrUniqueCallbackUsesScopedRepeaterFieldName(): void { wp_json_encode( array( 'is_encoded' => true ) ) ); - $callback = new Is_Field_Value_Unique(); - $context = $this->make_context( + $context = $this->run_submission_validation( + $form_id, + $this->single_repeater_form(), array( - jet_fb_handler()->form_key => $form_id, - '_jfb_validation_path' => array( 'repeater', '0', 'email' ), - ) + 'repeater' => array( + array( 'email' => 'duplicate@example.com' ), + ), + ), + array( 'repeater', 'email' ) + ); + + $this->assertContains( + 'rule:ssr:is_field_value_unique', + $context->get_errors( array( 'repeater', 0, 'email' ) ) + ); + + $context = $this->run_submission_validation( + $form_id, + $this->single_repeater_form(), + array( + 'repeater' => array( + array( 'email' => 'unique@example.com' ), + ), + ), + array( 'repeater', 'email' ) ); - $this->assertFalse( $callback->is_valid( 'duplicate@example.com', $context ) ); - $this->assertTrue( $callback->is_valid( 'unique@example.com', $context ) ); + $this->assertSame( array(), $context->get_errors( array( 'repeater', 0, 'email' ) ) ); } - public function testSsrUniqueCallbackRejectsRepeaterDuplicatesAcrossRowIndexes(): void { - $form_id = $this->factory()->post->create( array( 'post_type' => 'jet-form-builder' ) ); + public function testNormalSubmissionIgnoresForgedValidationPath(): void { + $form_id = $this->create_form( $this->single_repeater_form() ); $record_id = $this->insert_success_record( $form_id ); $this->insert_record_field( @@ -205,9 +232,6 @@ public function testSsrUniqueCallbackRejectsRepeaterDuplicatesAcrossRowIndexes() 'repeater', wp_json_encode( array( - array( - 'email' => 'row-zero@example.com', - ), array( 'email' => 'duplicate@example.com', ), @@ -217,41 +241,328 @@ public function testSsrUniqueCallbackRejectsRepeaterDuplicatesAcrossRowIndexes() wp_json_encode( array( 'is_encoded' => true ) ) ); - $callback = new Is_Field_Value_Unique(); - $context = $this->make_context( + $context = $this->run_submission_validation( + $form_id, + $this->single_repeater_form(), array( - jet_fb_handler()->form_key => $form_id, - '_jfb_validation_path' => array( 'repeater', '0', 'email' ), - ) + '_jfb_validation_path' => array( 'unrelated_field' ), + 'repeater' => array( + array( 'email' => 'duplicate@example.com' ), + ), + ), + array( 'repeater', 'email' ) ); - $this->assertFalse( $callback->is_valid( 'duplicate@example.com', $context ) ); - $this->assertTrue( $callback->is_valid( 'unique@example.com', $context ) ); + $this->assertContains( + 'rule:ssr:is_field_value_unique', + $context->get_errors( array( 'repeater', 0, 'email' ) ) + ); } - public function testSsrUniqueCallbackKeepsTopLevelFieldLookup(): void { - $form_id = $this->factory()->post->create( array( 'post_type' => 'jet-form-builder' ) ); + public function testParserAwareCallbackRejectsNestedRepeaterDuplicatesAcrossIndexes(): void { + $form_id = $this->create_form(); $record_id = $this->insert_success_record( $form_id ); + $this->insert_record_field( + $record_id, + 'outer', + wp_json_encode( + array( + array( + 'inner' => array( + array( 'email' => 'other@example.com' ), + array( 'email' => 'duplicate@example.com' ), + ), + 'sibling' => array( + array( 'email' => 'sibling@example.com' ), + ), + ), + ) + ), + 'repeater-field', + wp_json_encode( array( 'is_encoded' => true ) ) + ); + + $callback = new Is_Field_Value_Unique(); + $parser = $this->make_nested_parser( 'duplicate@example.com' ); + + jet_fb_handler()->set_form_id( $form_id ); + + $this->assertFalse( $callback->is_valid_with_parser( $parser ) ); + + $parser->set_value( 'sibling@example.com' ); + $this->assertTrue( $callback->is_valid_with_parser( $parser ) ); + + $parser->set_value( 'unique@example.com' ); + $this->assertTrue( $callback->is_valid_with_parser( $parser ) ); + } + + public function testParserAwareCallbackKeepsTopLevelLookup(): void { + $form_id = $this->create_form(); + $record_id = $this->insert_success_record( $form_id ); + $parser = new Text_Field_Parser(); + $this->insert_record_field( $record_id, 'email', 'duplicate@example.com' ); + $parser->set_name( 'email' ); + $parser->set_context( $this->make_context( array() ) ); + $parser->set_value( 'duplicate@example.com' ); + jet_fb_handler()->set_form_id( $form_id ); + $callback = new Is_Field_Value_Unique(); - $context = $this->make_context( - array( - jet_fb_handler()->form_key => $form_id, - '_jfb_validation_path' => 'email', - ) + + $this->assertFalse( $callback->is_valid_with_parser( $parser ) ); + + $parser->set_value( 'unique@example.com' ); + $this->assertTrue( $callback->is_valid_with_parser( $parser ) ); + } + + public function testParserAwareCallbackSkipsMalformedRowsAndFailedRecords(): void { + $form_id = $this->create_form(); + $malformed_record = $this->insert_success_record( $form_id ); + $failed_record = $this->insert_record( $form_id, 'failed' ); + $valid_record = $this->insert_success_record( $form_id ); + + $this->insert_record_field( $malformed_record, 'repeater', '{invalid-json', 'repeater-field' ); + $this->insert_record_field( + $malformed_record, + 'repeater', + wp_json_encode( array( array( 'email' => 'non-encoded@example.com' ) ) ), + 'repeater-field' ); + $this->insert_record_field( + $failed_record, + 'repeater', + wp_json_encode( array( array( 'email' => 'failed@example.com' ) ) ), + 'repeater-field', + wp_json_encode( array( 'is_encoded' => true ) ) + ); + $this->insert_record_field( + $valid_record, + 'repeater', + wp_json_encode( array( array( 'email' => 'duplicate@example.com' ) ) ), + 'repeater-field', + wp_json_encode( array( 'is_encoded' => true ) ) + ); + + $callback = new Is_Field_Value_Unique(); + $parser = $this->make_repeater_parser( 'duplicate@example.com' ); + + jet_fb_handler()->set_form_id( $form_id ); + + $this->assertFalse( $callback->is_valid_with_parser( $parser ) ); + + $parser->set_value( 'failed@example.com' ); + $this->assertTrue( $callback->is_valid_with_parser( $parser ) ); + } + + public function testParserAwareCallbackFailsClosedWithoutFieldOrFormIdentity(): void { + $callback = new Is_Field_Value_Unique(); + $parser = new Text_Field_Parser(); + + $parser->set_name( '' ); + $parser->set_context( $this->make_context( array() ) ); + $parser->set_value( 'value' ); + + $form_id = $this->create_form(); + jet_fb_handler()->set_form_id( $form_id ); + + $this->assertFalse( $callback->is_valid_with_parser( $parser ) ); + + $parser->set_name( 'field' ); + jet_fb_handler()->set_form_id( 0 ); + + $this->assertFalse( $callback->is_valid_with_parser( $parser ) ); + } + + public function testLegacyCallbackRunsThroughParserAwareEntryPoint(): void { + $callback = new class() extends Base_Validation_Callback { + public function get_id(): string { + return 'legacy_callback'; + } + + public function get_label(): string { + return 'Legacy callback'; + } + + public function is_valid( $value, Parser_Context $context ): bool { + return 'expected' === $value && 'context' === $context->get_request( 'marker' ); + } + }; + $parser = new Text_Field_Parser(); + + $parser->set_name( 'field' ); + $parser->set_context( $this->make_context( array( 'marker' => 'context' ) ) ); + $parser->set_value( 'expected' ); + + $this->assertTrue( $callback->is_valid_with_parser( $parser ) ); + } + + public function testLiveValidationUsesResolvedParserAndRejectsInvalidSignature(): void { + $form_id = $this->create_form( $this->single_repeater_form() ); + $record_id = $this->insert_success_record( $form_id ); + + $this->insert_record_field( + $record_id, + 'repeater', + wp_json_encode( array( array( 'email' => 'duplicate@example.com' ) ) ), + 'repeater-field', + wp_json_encode( array( 'is_encoded' => true ) ) + ); + + $body = array( + jet_fb_handler()->form_key => $form_id, + 'repeater' => array( + array( 'email' => 'duplicate@example.com' ), + ), + Rest_Validation_Endpoint::FIELD_KEY => array( 'repeater', '0', 'email' ), + Rest_Validation_Endpoint::RULE_INDEX_KEY => 0, + Rest_Validation_Endpoint::SIGNATURE_KEY => Rest_Validation_Endpoint::generate_signature( + $form_id, + array( 'repeater', 'email' ), + 0 + ), + ); + + $result = Validation_Handler::validate( $body ); - $this->assertFalse( $callback->is_valid( 'duplicate@example.com', $context ) ); - $this->assertTrue( $callback->is_valid( 'unique@example.com', $context ) ); + $this->assertFalse( $result['result'] ); + + $body[ Rest_Validation_Endpoint::SIGNATURE_KEY ] = 'tampered'; + $result = Validation_Handler::validate( $body ); + + $this->assertFalse( $result['result'] ); + $this->assertSame( 'Invalid security signature', $result['message'] ); } private function make_context( array $request ): Parser_Context { return ( new Parser_Context() )->set_request( $request ); } + private function create_record_tables(): void { + global $wpdb; + + $charset_collate = $wpdb->get_charset_collate(); + + // The wpunit bootstrap does not run JetFormBuilder's database installer. + // phpcs:disable WordPress.DB.DirectDatabaseQuery.SchemaChange, WordPress.DB.DirectDatabaseQuery.DirectQuery + $wpdb->query( + "CREATE TABLE IF NOT EXISTS {$wpdb->prefix}jet_fb_records ( + id bigint(20) NOT NULL AUTO_INCREMENT, + form_id bigint(20) UNSIGNED NOT NULL, + user_id bigint(20), + from_content_id bigint(20) NOT NULL, + from_content_type varchar(20) NOT NULL, + status varchar(255), + submit_type varchar(20), + PRIMARY KEY (id) + ) {$charset_collate}" + ); + $wpdb->query( + "CREATE TABLE IF NOT EXISTS {$wpdb->prefix}jet_fb_records_fields ( + id bigint(20) NOT NULL AUTO_INCREMENT, + record_id bigint(20) NOT NULL, + field_name varchar(100) NOT NULL, + field_value longtext, + field_type varchar(40) NOT NULL, + field_attrs longtext, + PRIMARY KEY (id), + KEY record_id (record_id) + ) {$charset_collate}" + ); + // phpcs:enable WordPress.DB.DirectDatabaseQuery.SchemaChange, WordPress.DB.DirectDatabaseQuery.DirectQuery + } + + private function make_repeater_parser( string $value ): Text_Field_Parser { + $root_context = $this->make_context( array() ); + $repeater = new Repeater_Field_Parser(); + $row_context = $this->make_context( array() ); + $parser = new Text_Field_Parser(); + + $repeater->set_name( 'repeater' ); + $repeater->set_context( $root_context ); + $row_context->set_parent( $repeater ); + $row_context->set_index_in_parent( 9 ); + $parser->set_name( 'email' ); + $parser->set_context( $row_context ); + $parser->set_value( $value ); + + return $parser; + } + + private function make_nested_parser( string $value ): Text_Field_Parser { + $root_context = $this->make_context( array() ); + $outer = new Repeater_Field_Parser(); + $outer_context = $this->make_context( array() ); + $inner = new Repeater_Field_Parser(); + $inner_context = $this->make_context( array() ); + $parser = new Text_Field_Parser(); + + $outer->set_name( 'outer' ); + $outer->set_context( $root_context ); + $outer_context->set_parent( $outer ); + $outer_context->set_index_in_parent( 7 ); + $inner->set_name( 'inner' ); + $inner->set_context( $outer_context ); + $inner_context->set_parent( $inner ); + $inner_context->set_index_in_parent( 11 ); + $parser->set_name( 'email' ); + $parser->set_context( $inner_context ); + $parser->set_value( $value ); + + return $parser; + } + + private function run_submission_validation( + int $form_id, + string $markup, + array $request, + array $signature_path + ): Parser_Context { + $previous_post = $_POST; + $previous_form_id = jet_fb_handler()->get_form_id(); + $signature = Rest_Validation_Endpoint::generate_signature( $form_id, $signature_path, 0 ); + + $request[ jet_fb_handler()->form_key ] = $form_id; + $request[ Validation_Handler::MAIN_SIGNATURES_KEY ] = array( + Validation_Handler::get_signature_key( $signature_path, 0 ) => $signature, + ); + + try { + $_POST = $request; + jet_fb_handler()->set_form_id( $form_id ); + + $context = $this->make_context( $request ); + $context->apply( parse_blocks( $markup ) ); + } finally { + $_POST = $previous_post; + jet_fb_handler()->set_form_id( $previous_form_id ); + } + + return $context; + } + + private function create_form( string $post_content = '' ): int { + return $this->factory()->post->create( + array( + 'post_type' => 'jet-form-builder', + 'post_status' => 'publish', + 'post_content' => $post_content, + ) + ); + } + + private function single_repeater_form(): string { + return '' + . '' + . ''; + } + private function insert_success_record( int $form_id ): int { + return $this->insert_record( $form_id, 'success' ); + } + + private function insert_record( int $form_id, string $status ): int { global $wpdb; $inserted = $wpdb->insert( @@ -261,7 +572,7 @@ private function insert_success_record( int $form_id ): int { 'user_id' => 0, 'from_content_id' => 0, 'from_content_type' => '', - 'status' => 'success', + 'status' => $status, 'submit_type' => 'ajax', ) ); diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 4f7f015b4..9cebd8f56 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -3,7 +3,7 @@ 'name' => 'crocoblock/jetformbuilder', 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '2a931bf0c579f57e626143c3273a53054604c0e7', + 'reference' => '4fc625082cec220613a2a5e35a88cfa4f08dece3', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -13,7 +13,7 @@ 'crocoblock/jetformbuilder' => array( 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '2a931bf0c579f57e626143c3273a53054604c0e7', + 'reference' => '4fc625082cec220613a2a5e35a88cfa4f08dece3', 'type' => 'wordpress-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), From 0359009717ae09112c87e931a895a3922e056933 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Jul 2026 10:34:31 +0000 Subject: [PATCH 6/7] Fix CI: create missing .env.local for Codeception tests --- .github/workflows/php.lint.test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/php.lint.test.yml b/.github/workflows/php.lint.test.yml index 69268b21f..f394033ae 100644 --- a/.github/workflows/php.lint.test.yml +++ b/.github/workflows/php.lint.test.yml @@ -90,6 +90,7 @@ jobs: run: | rm tests/_envs/.env mv tests/_envs/.env.testing tests/_envs/.env + touch tests/_envs/.env.local - name: Run PHP tests run: composer test:wpunit \ No newline at end of file From 93b97dcc88f6ed512c2a6cb38dccdf54f0e52960 Mon Sep 17 00:00:00 2001 From: Gawuww Date: Thu, 30 Jul 2026 15:18:14 +0300 Subject: [PATCH 7/7] FIX: build scripts --- assets/build/admin/package.asset.php | 2 +- assets/build/admin/package.js | 2 +- assets/build/admin/pages/jfb-addons.asset.php | 2 +- assets/build/admin/pages/jfb-addons.js | 2 +- assets/build/admin/pages/jfb-settings.asset.php | 2 +- assets/build/admin/pages/jfb-settings.js | 2 +- assets/build/admin/vuex.package.asset.php | 2 +- assets/build/admin/vuex.package.js | 2 +- assets/build/editor/form.builder.asset.php | 2 +- assets/build/editor/form.builder.js | 2 +- assets/build/editor/package.asset.php | 2 +- assets/build/editor/package.js | 2 +- assets/build/frontend/advanced.reporting.asset.php | 2 +- assets/build/frontend/advanced.reporting.js | 2 +- assets/build/frontend/calculated.field.asset.php | 2 +- assets/build/frontend/calculated.field.js | 2 +- assets/build/frontend/conditional.block.asset.php | 2 +- assets/build/frontend/conditional.block.js | 2 +- assets/build/frontend/dynamic.value.asset.php | 2 +- assets/build/frontend/dynamic.value.js | 2 +- assets/build/frontend/main.asset.php | 2 +- assets/build/frontend/main.js | 2 +- assets/build/frontend/media.field.asset.php | 2 +- assets/build/frontend/media.field.js | 2 +- assets/build/frontend/media.field.restrictions.asset.php | 2 +- assets/build/frontend/media.field.restrictions.js | 2 +- assets/build/frontend/multi.step.asset.php | 2 +- assets/build/frontend/multi.step.js | 2 +- .../assets/build/admin/pages/jfb-payments-single.asset.php | 2 +- .../gateways/assets/build/admin/pages/jfb-payments-single.js | 2 +- modules/onboarding/assets/build/editor.asset.php | 2 +- modules/onboarding/assets/build/editor.js | 2 +- modules/onboarding/assets/build/preview.frontend.asset.php | 2 +- modules/onboarding/assets/build/preview.frontend.js | 2 +- 34 files changed, 34 insertions(+), 34 deletions(-) diff --git a/assets/build/admin/package.asset.php b/assets/build/admin/package.asset.php index 484964828..25a539b68 100644 --- a/assets/build/admin/package.asset.php +++ b/assets/build/admin/package.asset.php @@ -1 +1 @@ - array('wp-i18n'), 'version' => '99fe468873e64c9eac92'); + array('wp-i18n'), 'version' => 'cd879d1903e305e67f49'); diff --git a/assets/build/admin/package.js b/assets/build/admin/package.js index 490ae5aa3..a0ab1be31 100644 --- a/assets/build/admin/package.js +++ b/assets/build/admin/package.js @@ -1 +1 @@ -(()=>{var t={611:(t,e,i)=>{"use strict";function a(t,e){for(var i=[],a={},n=0;nf});var n="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!n)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},o=n&&(document.head||document.getElementsByTagName("head")[0]),r=null,l=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",v="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(t,e,i,n){c=i,d=n||{};var o=a(t,e);return h(o),function(e){for(var i=[],n=0;ni.parts.length&&(a.parts.length=i.parts.length)}else{var o=[];for(n=0;n{var a=i(6291);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("4168dbce",a,!1,{})},935:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var i="",a=void 0!==e[5];return e[4]&&(i+="@supports (".concat(e[4],") {")),e[2]&&(i+="@media ".concat(e[2]," {")),a&&(i+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),i+=t(e),a&&(i+="}"),e[2]&&(i+="}"),e[4]&&(i+="}"),i})).join("")},e.i=function(t,i,a,n,s){"string"==typeof t&&(t=[[null,t,void 0]]);var o={};if(a)for(var r=0;r0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=s),i&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=i):u[2]=i),n&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=n):u[4]="".concat(n)),e.push(u))}},e}},1041:(t,e,i)=>{var a=i(5965);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("0c7f7908",a,!1,{})},1292:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".jfb-tooltip[data-v-431c7ba2]{position:relative;display:inline-block}.jfb-tooltip-has-help[data-v-431c7ba2]{cursor:pointer}.jfb-tooltip-has-text[data-v-431c7ba2]{display:flex;column-gap:.5em;align-items:center}.jfb-tooltip--text[data-v-431c7ba2]{text-overflow:ellipsis;overflow:hidden;padding:.1em 0}.jfb-tooltip .dashicons-dismiss[data-v-431c7ba2]{color:#d63638}.jfb-tooltip .dashicons-warning[data-v-431c7ba2]{color:orange}.jfb-tooltip .dashicons-warning.danger[data-v-431c7ba2]{color:#d63638}.jfb-tooltip .dashicons-yes-alt[data-v-431c7ba2]{color:#32cd32}.jfb-tooltip .dashicons-info[data-v-431c7ba2]{color:#90c6db}.jfb-tooltip .dashicons-hourglass[data-v-431c7ba2]{color:#b5b5b5}.jfb-tooltip .dashicons-update.loading[data-v-431c7ba2]{animation:jfb-tooltip-loading-icon-data-v-431c7ba2 1.5s infinite linear}.jfb-tooltip .cx-vui-tooltip[data-v-431c7ba2]{width:fit-content;bottom:calc(100% + 15px);box-sizing:border-box;pointer-events:none;transition:all .18s linear;opacity:0;padding-left:1em;padding-right:1em;position:absolute;z-index:2}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]{right:-1.2em}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]:after{right:20px;left:unset}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]{left:-0.9em}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]:after{left:20px;right:unset}.jfb-tooltip:hover .cx-vui-tooltip[data-v-431c7ba2]{opacity:1}.jfb-tooltip:hover .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]{bottom:100%}.jfb-tooltip:hover .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]{bottom:100%}.jfb-tooltip-position--top-right[data-v-431c7ba2]{flex-direction:row-reverse}@keyframes jfb-tooltip-loading-icon-data-v-431c7ba2{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}",""]);const r=o},1418:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".table-details-row{display:flex;justify-content:space-between;font-size:1.1em}.table-details-row:first-child{font-weight:bold}.table-details-row:nth-child(even){background-color:#eee}.table-details-row-column{padding:.5em 1em}.table-details-row--heading{flex:1;text-align:right}.table-details-row-role--default.table-details-row--heading{font-weight:600}.table-details-row--content{flex:2}.table-details-row--actions{flex:.3}.table-details-row h3{padding:.5em;border-bottom:1px solid #aaa;width:50%;margin:1em auto;text-align:center;color:#aaa;font-weight:400}",""]);const r=o},1618:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-select[data-v-b31905c2]{line-height:2em;padding:6px 24px 6px 8px}.cx-vui-select.fullwidth[data-v-b31905c2]{width:100%}",""]);const r=o},1700:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".table-details{display:flex;flex-direction:column}",""]);const r=o},2310:(t,e,i)=>{var a=i(1618);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("2e7817a3",a,!1,{})},2373:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-component[data-v-327e05fd]{flex-direction:column;width:100%;border-top:unset;gap:.7em}.cx-vui-component.padding-side-unset[data-v-327e05fd]{padding-left:unset;padding-right:unset}.padding-top-bottom-unset[data-v-327e05fd]{padding-top:unset;padding-bottom:unset}.padding-unset[data-v-327e05fd]{padding:unset}",""]);const r=o},4244:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-external-link__icon{width:1em;height:1em;fill:currentcolor;vertical-align:middle}",""]);const r=o},4761:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,"hr.jfb[data-v-362c518d]{border:0;border-top:1px solid #ececec;margin:unset}",""]);const r=o},4965:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,'.fade-enter-active[data-v-7d75afce],.fade-leave-active[data-v-7d75afce]{transition:opacity .5s}.fade-enter[data-v-7d75afce],.fade-leave-to[data-v-7d75afce]{opacity:0}.jfb-recursive-details[data-v-7d75afce]:not(.jfb-recursive-details--indent){margin-top:unset}.jfb-recursive-details--indent[data-v-7d75afce]{margin-left:1.5em;margin-top:.5em}.jfb-recursive-details-row[data-v-7d75afce]:not(:last-child){margin-bottom:.5em;padding-bottom:.5em}.jfb-recursive-details-item--content[data-v-7d75afce]{border-bottom:1px solid #ccc}.jfb-recursive-details-item-without-children>.jfb-recursive-details-item--heading[data-v-7d75afce]::after{content:":"}.jfb-recursive-details-item-with-children>.jfb-recursive-details-item--heading[data-v-7d75afce]{cursor:pointer}.jfb-recursive-details-item-with-children>.jfb-recursive-details-item--heading[data-v-7d75afce]:hover{color:#2271b1;border-bottom-color:#2271b1}',""]);const r=o},5598:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,"\n@media print {\n.cx-vui-button[data-v-aa3950ea] {\n\t\tdisplay: none;\n}\n}\n",""]);const r=o},5965:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-popup__close[data-v-7acae1c9]{position:unset}.cx-vui-popup__header[data-v-7acae1c9]{display:flex;justify-content:space-between;padding-bottom:10px;margin:unset;border-bottom:1px solid #ececec}.cx-vui-popup.sticky-header .cx-vui-popup__body[data-v-7acae1c9],.cx-vui-popup.sticky-footer .cx-vui-popup__body[data-v-7acae1c9]{max-height:80vh;overflow-y:auto}.cx-vui-popup.sticky-header .cx-vui-popup__header[data-v-7acae1c9]{position:sticky;top:0;background-color:#fff;padding-top:20px;z-index:1}.cx-vui-popup.sticky-header .cx-vui-popup__body[data-v-7acae1c9]{padding-top:0}.cx-vui-popup.sticky-footer .cx-vui-popup__body[data-v-7acae1c9]{padding-bottom:0}.cx-vui-popup.sticky-footer .cx-vui-popup__content[data-v-7acae1c9]{padding-bottom:40px}.cx-vui-popup.sticky-footer .cx-vui-popup__footer[data-v-7acae1c9]{position:sticky;bottom:0;background-color:#fff;padding-bottom:20px;border-top:1px solid #ececec}",""]);const r=o},5981:(t,e,i)=>{var a=i(4761);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("8c144c80",a,!1,{})},6168:(t,e,i)=>{var a=i(1700);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("206d9f3c",a,!1,{})},6278:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-input--warning-danger[data-v-13c6d87e]{border:1px solid #d63638}",""]);const r=o},6291:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-tabs__nav-item--disabled{opacity:.5;cursor:not-allowed}.cx-vui-tabs__nav-item--disabled:hover{color:unset}.cx-vui-tabs__nav-item--has-icon{display:flex;justify-content:space-between;column-gap:1em}.cx-vui-tabs--layout-vertical>.cx-vui-tabs__nav{width:unset;flex:unset;max-width:unset}.cx-vui-tabs--layout-vertical>.cx-vui-tabs__content{flex:1}",""]);const r=o},6608:(t,e,i)=>{var a=i(1292);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("3a21f3b2",a,!1,{})},6758:t=>{"use strict";t.exports=function(t){return t[1]}},6945:(t,e,i)=>{var a=i(2373);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("b1875a50",a,!1,{})},7393:(t,e,i)=>{var a=i(4965);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("29e569e4",a,!1,{})},7922:(t,e,i)=>{var a=i(5598);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("7e55f3a9",a,!1,{})},7944:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-collapse-mini__wrap{padding:0 0 20px}.cx-vui-collapse-mini__item{border-bottom:1px solid #ececec}.cx-vui-collapse-mini__item:first-child{border-top:1px solid #ececec}.cx-vui-collapse-mini__item:last-child{margin-bottom:unset}.cx-vui-collapse-mini__item--active .cx-vui-collapse-mini__header-label>svg{transform:rotate(90deg)}.cx-vui-collapse-mini__header{padding:1.2rem;display:flex;align-items:center;cursor:pointer;column-gap:1em}.cx-vui-collapse-mini__header-label{font-weight:500;font-size:15px;line-height:23px;color:#007cba;display:flex;align-items:center}.cx-vui-collapse-mini__header-desc{font-size:15px;line-height:23px;color:#7b7e81}.cx-vui-collapse-mini__header-label svg{margin:-1px 8px 0 0;transition:.3s}.cx-vui-collapse-mini--disabled{opacity:.5}.cx-vui-collapse-mini--disabled .cx-vui-collapse-mini__header{cursor:not-allowed}.cx-vui-collapse-mini__content{padding:0 1.5rem 1.5rem}",""]);const r=o},8036:(t,e,i)=>{var a=i(8984);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("57efcfaf",a,!1,{})},8528:(t,e,i)=>{var a=i(4244);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("45767117",a,!1,{})},8862:(t,e,i)=>{var a=i(1418);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("6aaa4088",a,!1,{})},8984:(t,e,i)=>{"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".size--1-x-2 .cx-vui-component__meta[data-v-6f5201e4]{flex:1}.size--1-x-2 .cx-vui-component__control[data-v-6f5201e4]{flex:2}.padding-side-unset.cx-vui-component[data-v-6f5201e4]{padding-left:unset;padding-right:unset}.cx-vui-component__control-actions[data-v-6f5201e4]{display:flex;justify-content:flex-end;gap:1em;margin-top:.5em}",""]);const r=o},9330:(t,e,i)=>{var a=i(6278);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("21fb632e",a,!1,{})},9356:(t,e,i)=>{var a=i(7944);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("30df35ee",a,!1,{})}},e={};function i(a){var n=e[a];if(void 0!==n)return n.exports;var s=e[a]={id:a,exports:{}};return t[a](s,s.exports,i),s.exports}i.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return i.d(e,{a:e}),e},i.d=(t,e)=>{for(var a in e)i.o(e,a)&&!i.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:e[a]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),i.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},(()=>{"use strict";class t extends Error{constructor(e=!1,i=""){super(i),Error.captureStackTrace&&Error.captureStackTrace(this,t),this.name="ApiInputError",this.noticeOptions=e}}const e=t;var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:{"cx-vui-panel":t.withPanel,"cx-vui-collapse-mini--disabled":t.disabled,"cx-vui-collapse-mini__item":!0,"cx-vui-collapse-mini__item--active":t.isActive}},[i("div",{staticClass:"cx-vui-collapse-mini__header",on:{click:t.collapse}},[i("div",{staticClass:"cx-vui-collapse-mini__header-label"},[i("svg",{attrs:{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[i("path",{attrs:{d:"M14 13.9999L14 -0.00012207L0 -0.000121458L6.11959e-07 13.9999L14 13.9999Z",fill:"white"}}),t._v(" "),i("path",{attrs:{d:"M5.32911 1L11 7L5.32911 13L4 11.5938L8.34177 7L4 2.40625L5.32911 1Z",fill:"#007CBA"}})]),t._v("\n\t\t\t"+t._s(t.label)+"\n\t\t")]),t._v(" "),t.icon?i("div",{staticClass:"cx-vui-collapse-mini__header-desc"},["object"==typeof t.icon?i(t.icon,{tag:"component"}):t._e()],1):t.desc?i("div",{staticClass:"cx-vui-collapse-mini__header-desc"},[t._v("\n\t\t\t"+t._s(t.desc)+"\n\t\t")]):t._e(),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-collapse-mini__header-custom-description"},[t._t("description")],2):t._e()]),t._v(" "),t.disabled?t._e():[this.$slots.default?[i("div",{directives:[{name:"show",rawName:"v-show",value:t.isActive,expression:"isActive"}],staticClass:"cx-vui-collapse-mini__content"},[t._t("default")],2)]:[t._t("custom",null,{state:{isActive:t.isActive}})]]],2)};a._withStripped=!0;const n={name:"cx-vui-collapse-mini",props:{withPanel:{type:Boolean,default:!1},initialActive:{type:Boolean,default:!1},label:{type:String,default:"Collapse Mini"},desc:{type:String,default:""},disabled:{type:Boolean,default:!1},icon:{type:[Object,String],default:""}},data:()=>({isActive:!1}),created(){this.isActive=this.initialActive},methods:{collapse(){this.disabled||(this.isActive=!this.isActive,this.$emit("change",this.isActive))}}};function s(t,e,i,a,n,s,o,r){var l,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=i,c._compiled=!0),a&&(c.functional=!0),s&&(c._scopeId="data-v-"+s),o?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),n&&n.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},c._ssrRegister=l):n&&(l=r?function(){n.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:n),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(t,e){return l.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:t,options:c}}i(9356);const o=s(n,a,[],!1,null,null,null).exports,r={methods:{getIncoming:t=>t?window.JetFBPageConfig[t]:window.JetFBPageConfig}},l={methods:{saveByAjax(t,e){const i=this;let a={};try{a=this.getAjaxObject(t,e)}catch(t){if(!t)return;return"object"==typeof t.noticeOptions?void i.$CXNotice.add({message:"Invalid request data.",type:"error",duration:2e3,...t.noticeOptions}):void i.$CXNotice.add({message:t,type:"error",duration:2e3})}jfbEventBus.$emit("request-state",{state:"begin",slug:e}),jQuery.ajax(a).done((function(a){"function"==typeof t.onSaveDone?t.onSaveDone(a):a.success?(i.$CXNotice.add({message:a.data.message,type:"success",duration:5e3}),"function"==typeof t.onSaveDoneSuccess&&t.onSaveDoneSuccess(a)):(i.$CXNotice.add({message:a.data.message,type:"error",duration:5e3}),"function"==typeof t.onSaveDoneError&&t.onSaveDoneError(a)),jfbEventBus.$emit("request-state",{state:"end",slug:e})})).fail((function(a,n,s){"function"==typeof t.onSaveFail?t.onSaveFail(a,n,s):i.$CXNotice.add({message:s,type:"error",duration:5e3}),jfbEventBus.$emit("request-state",{state:"end",slug:e})}))},getAjaxObject(t,e){const i={url:window.ajaxurl,type:"POST",dataType:"json",...t.getRequestOnSave()};return i.data={action:`jet_fb_save_tab__${e}`,...i.data},window?.JetFBPageConfigPackage?.nonce&&(i.data._nonce=window.JetFBPageConfigPackage.nonce),i}}},c={props:["value","full-entry","entry-id","scope"],computed:{parsedJson(){return JSON.parse(JSON.stringify(this.value))}}},u={methods:{promiseWrapper(t){const e=t=>"object"==typeof t?t?.message:t;return(i,a,...n)=>{const s=t=>{"function"==typeof i&&i(),this.$CXNotice.add({message:e(t),type:"success",duration:4e3})},o=t=>{"function"==typeof i&&i(),this.$CXNotice.add({message:e(t),type:"error",duration:4e3})};try{t.call(this,{resolve:s,reject:o},...n)}catch(t){o(t.message)}}}}};var d=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("section",{staticClass:"table-details"},t._l(t.columns,(function(e,a){return t.canShow(a)?i("DetailsTableRow",{key:a,attrs:{type:t.getType(a)},scopedSlots:t._u([{key:"name",fn:function(){return[t._v(t._s(e.label))]},proxy:!0},{key:"value",fn:function(){return["object"==typeof t.getColumnValue(a,!1)?[i("DetailsTableRowValue",{attrs:{value:t.getColumnValue(a,!1),columns:e.children||{}}})]:[t._v(t._s(t.getColumnValue(a,"")))]]},proxy:!0}],null,!0)}):t._e()})),1)};d._withStripped=!0;var p=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("ul",{directives:[{name:"show",rawName:"v-show",value:!this.withIndent,expression:"! this.withIndent"}],class:t.rootClasses},t._l(t.value,(function(e,a){return t.isHiddenLevel(a)?i("li",{key:a,staticClass:"jfb-recursive-details-row"},[t.isSkipLevel(a)?[i("DetailsTableRowValue",{attrs:{value:e,columns:t.getChildren(a)}})]:[t.isObject(e)?i("span",{class:t.itemClasses(!0)},[i("span",{staticClass:"jfb-recursive-details-item--heading",on:{click:function(e){return t.toggleNext(a)}}},[t._v("\n\t\t\t\t\t"+t._s(t.getItemLabel(a))+"\n\t\t\t\t\t"),i("span",{class:t.arrowClasses(a)})]),t._v(" "),i("span",{staticClass:"jfb-recursive-details-item--content"},[i("transition",{attrs:{name:"fade"}},[i("DetailsTableRowValue",{directives:[{name:"show",rawName:"v-show",value:t.isShow(a),expression:"isShow( itemName )"}],attrs:{value:e,"with-indent":!0,columns:t.getChildren(a)}})],1)],1)]):i("span",{class:t.itemClasses(!1)},[i("span",{staticClass:"jfb-recursive-details-item--heading"},[t._v(t._s(t.getItemLabel(a)))]),t._v(" \n\t\t\t\t"),i("span",{staticClass:"jfb-recursive-details-item--content"},[t._v(t._s(e))])])]],2):t._e()})),0)};p._withStripped=!0;const v={name:"DetailsTableRowValue",props:{value:Object,withIndent:{type:Boolean,default:!1},columns:{type:Object,default:()=>({})}},data:()=>({showNext:{}}),computed:{rootClasses(){return{"jfb-recursive-details":!0,"jfb-recursive-details--indent":this.withIndent}}},methods:{getChildren(t){return this.columns[t]?.children||[]},getItemLabel(t){return this.columns[t]?this.columns[t].label:t},isObject:t=>"object"==typeof t,toggleNext(t){const e=this.showNext[t]||!1;this.$set(this.showNext,t,!e)},isShow(t){return"undefined"===this.showNext[t]||this.showNext[t]},itemClasses:(t=!0)=>({"jfb-recursive-details-item":!0,"jfb-recursive-details-item-with-children":t,"jfb-recursive-details-item-without-children":!t}),arrowClasses(t){return{dashicons:!0,"dashicons-arrow-down-alt2":!this.isShow(t),"dashicons-arrow-up-alt2":this.isShow(t)}},isSkipLevel(t){return this.columns[t]?.skip_level},isHiddenLevel(t){return!this.columns[t]?.hide}}};i(7393);const f=s(v,p,[],!1,null,"7d75afce",null).exports;var h=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"table-details-row"},["rowValue"===t.type?[i("div",{class:t.headingClasses},["default"!==t.role?[t._v(t._s("Name"))]:[t._t("name"),t._v("\n\t\t\t\t:\n\t\t\t")]],2),t._v(" "),i("div",{class:t.contentClasses},["default"!==t.role?[t._v(t._s("Value"))]:[t._t("value")]],2),t._v(" "),i("div",{class:t.actionClasses},["default"!==t.role?[t._v(t._s("Actions"))]:[t._t("actions")]],2)]:[i("h3",[t._t("name")],2)]],2)};h._withStripped=!0;const m={name:"DetailsTableRow",props:{role:{type:String,default:"default",validator:function(t){return-1!==["header","default","footer"].indexOf(t)}},type:{type:String,default:"rowValue",validator:function(t){return-1!==["rowValue","heading"].indexOf(t)}}},computed:{headingClasses(){return this.classes({"table-details-row--heading":!0})},contentClasses(){return this.classes({"table-details-row--content":!0})},actionClasses(){return this.classes({"table-details-row--actions":!0})}},methods:{classes(t){return{"table-details-row-column":!0,...t,["table-details-row-role--"+this.role]:!0}}}};i(8862);const _={name:"DetailsTable",components:{DetailsTableRow:s(m,h,[],!1,null,null,null).exports,DetailsTableRowValue:f},props:{columns:{type:Object},source:{type:Object}},methods:{getColumnValue(t,e=!1){return this.source[t]?this.source[t].value:e},hasValueOrAnotherType(t){return this.getColumnValue(t)||"rowValue"!==this.getType(t)},getType(t){var e;return null!==(e=this.columns[t].type)&&void 0!==e?e:"rowValue"},canShow(t){const e=this.getType(t),i=!1!==this.columns[t].show_in_details,a=this.getColumnValue(t);return i&&("rowValue"!==e||a)}}};i(6168);const b=s(_,d,[],!1,null,null,null).exports;var g=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[t.$slots.meta?i("div",{staticClass:"cx-vui-component__meta"},[t._t("meta")],2):t.$slots.label||t.$slots.description?i("div",{staticClass:"cx-vui-component__meta"},[t.$slots.label?i("label",{staticClass:"cx-vui-component__label",attrs:{for:t.elementIdData}},[t.stateType?[i("Tooltip",{attrs:{icon:t.stateType,position:"top-right"},scopedSlots:t._u([{key:"help",fn:function(){return[t._v(t._s(t.stateHelp))]},proxy:!0},{key:"default",fn:function(){return[t._t("label")]},proxy:!0}],null,!0)})]:[t._t("label")]],2):t._e(),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-component__desc"},[t._t("description")],2):t._e()]):t._e(),t._v(" "),i("div",{staticClass:"cx-vui-component__control"},[t._t("default"),t._v(" "),t.$slots.actions?i("div",{staticClass:"cx-vui-component__control-actions"},[t._t("actions")],2):t._e()],2)])};g._withStripped=!0;var y=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.wrapperClasses},[i("span",{class:t.dashIconClass}),t._v(" "),t.$slots.default?i("span",{staticClass:"jfb-icon-status--text"},[t._t("default")],2):t._e(),t._v(" "),t.$slots.help?i("div",{class:t.tooltipClasses},[t._t("help")],2):t._e()])};y._withStripped=!0;const x={success:"dashicons-yes-alt",warning:"dashicons-warning","warning-danger":["dashicons-warning","danger"],info:"dashicons-info",pending:"dashicons-hourglass",error:"dashicons-dismiss",loading:["dashicons-update","loading"]},w={name:"Tooltip",props:{icon:{type:String,validator:t=>Object.keys(x).includes(t),default:"info"},position:{type:String,validator:t=>["top-right","top-left"].includes(t),default:"top-left"}},computed:{wrapperClasses(){return{"jfb-tooltip":!0,"jfb-tooltip-has-text":!!this.$slots.default,"jfb-tooltip-has-help":!!this.$slots.help,["jfb-tooltip-position--"+this.position]:!0}},dashIconClass(){var t;let e=null!==(t=x[this.icon])&&void 0!==t?t:"";return Array.isArray(e)||(e=[e]),["dashicons",...e]},tooltipClasses(){return{"cx-vui-tooltip":!0,["tooltip-position-"+this.position]:!0}}}};i(6608);const C=s(w,y,[],!1,null,"431c7ba2",null).exports,j={name:"RowWrapper",components:{Tooltip:C},props:{elementId:{type:String},state:{type:[String,Object],validator:t=>(t=>["warning-danger","warning","loading",""].includes(t))("string"==typeof t?t:t.type),default:""},classNames:{type:Object,default:()=>({"cx-vui-component--equalwidth":!0})}},data(){return{elementIdData:`cx_${this.elementId}`}},computed:{className(){return{"cx-vui-component":!0,["cx-vui-component--is-"+this.stateType]:this.stateType,...this.classNames}},stateType(){return"string"==typeof this.state?this.state:this.state.type},stateHelp(){return"string"==typeof this.state?"":this.state.message}},provide(){return{elementId:this.elementIdData,stateType:()=>this.stateType}}};i(8036);const S=s(j,g,[],!1,null,"6f5201e4",null).exports,O=window.wp.i18n,k={methods:{__:(t,e)=>(0,O.__)(t,e),sprintf:(t,...e)=>(0,O.sprintf)(t,...e),__s:(t,e,...i)=>(0,O.sprintf)((0,O.__)(t,e),...i)}},{doAction:$}=wp.hooks;function T(){return window.location.pathname}function L(){const t={};return window.location.search.replace("?","").split("&").forEach((e=>{const[i,a]=e.split("=");t[i]=a})),t}function I(t,e){if("object"!=typeof e)return[[t,e]];const i=[];for(let[a,n]of Object.entries(e))a=`${t}[${a}]`,i.push(...I(a,n));return i}var N=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"jfb-list-components"},[t._l(t.components,(function(e,a){return i("div",{key:"entry_"+a,staticClass:"jfb-list-components-item"},[i("keep-alive",[i(e,{tag:"component",attrs:{scope:t.scope}})],1)],1)})),t._v(" "),t._t("default")],2)};N._withStripped=!0;const A=s({name:"ListComponents",props:{components:Array,scope:String}},N,[],!1,null,null,null).exports;var E=function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{directives:[{name:"show",rawName:"v-show",value:t.show,expression:"show"}],staticClass:"cx-vui-tabs-panel"},[t._t("default")],2)};E._withStripped=!0;const D=s({name:"cx-vui-tabs-panel",props:{tab:{type:String,default:""},name:{type:String,default:""},label:{type:String,default:""},disabled:{type:Boolean,default:!1},icon:{type:[Object,String],default:""}},data:()=>({show:!1})},E,[],!1,null,null,null).exports;var V=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:{"cx-vui-tabs":!0,"cx-vui-tabs--invert":t.invert,"cx-vui-tabs--layout-vertical":"vertical"===this.layout,"cx-vui-tabs--layout-horizontal":"horizontal"===this.layout,"cx-vui-tabs--in-panel":t.inPanel}},[i("div",{staticClass:"cx-vui-tabs__nav"},t._l(t.navList,(function(e){return i("div",{class:{"cx-vui-tabs__nav-item":!0,"cx-vui-tabs__nav-item--active":t.isActive(e.name),"cx-vui-tabs__nav-item--disabled":t.isDisabled(e.name),"cx-vui-tabs__nav-item--has-icon":!!e.icon},on:{click:function(i){return t.onTabClick(e.name)}}},[i("span",{staticClass:"item-label"},[t._v(t._s(e.label))]),t._v(" "),e.icon?i("span",{staticClass:"item-icon"},["object"==typeof e.icon?i(e.icon,{tag:"component",attrs:{"is-active":t.isActive(e.name)}}):t._e()],1):t._e()])})),0),t._v(" "),i("div",{staticClass:"cx-vui-tabs__content"},[t._t("default")],2)])};V._withStripped=!0;const P={name:"cx-vui-tabs",props:{value:{type:[String,Number],default:""},name:{type:String,default:""},invert:{type:Boolean,default:!1},inPanel:{type:Boolean,default:!1},layout:{validator:t=>["horizontal","vertical"].includes(t),default:"horizontal"},conditions:{type:Array,default:()=>[]}},data(){return{navList:[],activeTab:this.value,disabledTabs:[]}},mounted(){const t=this.getTabs();this.disabledTabs=this.getDisabledTabs(),this.navList=t,this.activeTab||(this.activeTab=t[0].name),this.updateState()},methods:{isActive(t){return t===this.activeTab},isDisabled(t){return this.disabledTabs.includes(t)},getDisabledTabs(){const t=[];for(const e of this.$children)e.disabled&&t.push(e.name);return t},onTabClick(t){this.isDisabled(t)||(this.activeTab=t,this.$emit("input",this.activeTab),this.updateState())},updateState(){const t=this.getTabs();this.navList=t,t.forEach((t=>{t.show=this.activeTab===t.name}))},getTabs(){const t=this.$children.filter((t=>"cx-vui-tabs-panel"===t.$options.name)),e=[];return t.forEach((t=>{t.tab&&this.name?t.tab===this.name&&e.push(t):e.push(t)})),e}}};i(799);const B=s(P,V,[],!1,null,null,null).exports,F="JetFBConfig";function M(t){localStorage.setItem(F,JSON.stringify(t))}function R(){const t=localStorage.getItem(F);return null===t?{}:JSON.parse(t)}function z(t,e){let i=R();i={...i,[t]:e},M(i)}function q(t,e=!1){var i;return null!==(i=R()[t])&&void 0!==i?i:e}const J={setStorage:M,getStorage:R,setItem:z,getItem:q,storage:function(t){const e={setStorage(e){z(t,e)},getStorage:()=>q(t,{})};return{...e,setItem(t,i){let a=e.getStorage();a={...a,[t]:i},e.setStorage(a)},getItem(t,i=!1){var a;return null!==(a=e.getStorage()[t])&&void 0!==a?a:i}}}};var U=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("a",{staticClass:"cx-vui-external-link",attrs:{href:t.href,target:"_blank",rel:"external noreferrer noopener"}},[t._t("default"),t._v(" "),i("svg",{staticClass:"cx-vui-external-link__icon",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"}},[i("path",{attrs:{d:"M18.2 17c0 .7-.6 1.2-1.2 1.2H7c-.7 0-1.2-.6-1.2-1.2V7c0-.7.6-1.2 1.2-1.2h3.2V4.2H7C5.5 4.2 4.2 5.5 4.2 7v10c0 1.5 1.2 2.8 2.8 2.8h10c1.5 0 2.8-1.2 2.8-2.8v-3.6h-1.5V17zM14.9 3v1.5h3.7l-6.4 6.4 1.1 1.1 6.4-6.4v3.7h1.5V3h-6.3z"}})])],2)};U._withStripped=!0;const H={name:"ExternalLink",mixins:[k],props:{href:{type:String,default:""}}};i(8528);const W=s(H,U,[],!1,null,null,null).exports;var X=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[t.$slots.label?i("label",{staticClass:"cx-vui-component__label",attrs:{for:t.elementIdData}},[t._t("label")],2):t._e(),t._v(" "),t._t("default"),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-component__desc"},[t._t("description")],2):t._e()],2)};X._withStripped=!0;const Z={name:"ColumnWrapper",props:{elementId:{type:String,required:!0},classNames:{type:Object,default:()=>({})}},data(){return{elementIdData:`cx_${this.elementId}`}},computed:{className(){return{"cx-vui-component":!0,...this.classNames}}},provide(){return{elementId:this.elementIdData}}};i(6945);const G=s(Z,X,[],!1,null,"327e05fd",null).exports;var Q=function(){var t=this,e=t.$createElement;return(t._self._c||e)("select",{class:t.className,attrs:{name:t.elementId,id:t.elementId},domProps:{value:t.value},on:{input:t.handleInput}},[t._t("default")],2)};Q._withStripped=!0;const K={name:"CxVuiSelect",props:{value:{type:[String,Number],default:""},elementId:{type:String},classNames:{type:Object,default:()=>({})}},computed:{className(){return{"cx-vui-select":!0,...this.classNames}}},methods:{handleInput(t){this.$emit("input",t.target.value)}},inject:["elementId"]};i(2310);const Y=s(K,Q,[],!1,null,"b31905c2",null).exports;var tt=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[i("div",{staticClass:"cx-vui-popup__overlay",on:{click:function(e){return t.$emit("close")}}}),t._v(" "),i("div",{staticClass:"cx-vui-popup__body"},[t.$slots.title?i("h2",{staticClass:"cx-vui-popup__header"},[t._t("title"),t._v(" "),t.$slots.close?[t._t("close")]:i("div",{staticClass:"cx-vui-popup__close",on:{click:function(e){return t.$emit("close")}}},[i("svg",{attrs:{width:"20",height:"20",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[i("path",{attrs:{d:"M12 3.00671L8.00671 7L12 10.9933L10.9933 12L7 8.00671L3.00671 12L2 10.9933L5.99329 7L2 3.00671L3.00671 2L7 5.99329L10.9933 2L12 3.00671Z"}})])])],2):t._e(),t._v(" "),i("div",{staticClass:"cx-vui-popup__content"},[t._t("content")],2),t._v(" "),t.$slots.footer?i("div",{staticClass:"cx-vui-popup__footer"},[t._t("footer")],2):t._e()])])};tt._withStripped=!0;const et={name:"CxVuiPopup",props:{classNames:{type:Object,default:()=>({})},stickyFooter:{type:Boolean,default:!1}},computed:{className(){return{"cx-vui-popup":!0,...this.classNames}}}};i(1041);const it=s(et,tt,[],!1,null,"7acae1c9",null).exports;var at=function(){var t,e=this,i=e.$createElement,a=e._self._c||i;return a("div",{staticClass:"cx-vui-f-select"},[a("div",{class:{"cx-vui-f-select__selected":!0,"cx-vui-f-select__selected-not-empty":this.value.length>0}},e._l(e.value,(function(t){return a("div",{staticClass:"cx-vui-f-select__selected-option",on:{click:function(i){return e.handleResultClick(t)}}},[e.$slots["option-"+t]?[e._t("option-"+t)]:[e.isNonRemovable(t)?e._e():a("span",{staticClass:"cx-vui-f-select__selected-option-icon"},[a("svg",{attrs:{width:"10",height:"10",viewBox:"0 0 10 10",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M10 1.00671L6.00671 5L10 8.99329L8.99329 10L5 6.00671L1.00671 10L0 8.99329L3.99329 5L0 1.00671L1.00671 0L5 3.99329L8.99329 0L10 1.00671Z"}})])]),e._v("\n\t\t\t\t"+e._s(e.getOptionLabel(t))+"\n\t\t\t")]],2)})),0),e._v(" "),a("div",{directives:[{name:"click-outside",rawName:"v-click-outside.capture",value:e.onClickOutside,expression:"onClickOutside",modifiers:{capture:!0}},{name:"click-outside",rawName:"v-click-outside:mousedown.capture",value:e.onClickOutside,expression:"onClickOutside",arg:"mousedown",modifiers:{capture:!0}},{name:"click-outside",rawName:"v-click-outside:touchstart.capture",value:e.onClickOutside,expression:"onClickOutside",arg:"touchstart",modifiers:{capture:!0}}],staticClass:"cx-vui-f-select__control",on:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),e.handleOptionsNav.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),e.handleOptionsNav.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:e.handleOptionsNav.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.handleEnter.apply(null,arguments)}]}},[a("input",{class:(t={"cx-vui-f-select__input":!0,"cx-vui-input--in-focus":e.inFocus,"cx-vui-input":!0},t["cx-vui-input--"+e.stateType()]=e.stateType(),t["size-fullwidth"]=!0,t["has-error"]=e.error,t),attrs:{id:e.elementId,placeholder:e.placeholder,autocomplete:e.autocomplete,type:"text"},domProps:{value:e.query},on:{input:e.handleInput,focus:e.handleFocus}}),e._v(" "),e.inFocus?a("div",{staticClass:"cx-vui-f-select__results"},[e.filteredOptions.length?a("div",e._l(e.filteredOptions,(function(t,i){return a("div",{class:{"cx-vui-f-select__result":!0,"in-focus":i===e.optionInFocus,"is-selected":e.isSelectedOption(t)},on:{click:function(i){return e.handleResultClick(t.value)}}},[e._v(e._s(e.getOptionLabel(t))+"\n\t\t\t\t")])})),0):a("div",{staticClass:"cx-vui-f-select__results-message",domProps:{innerHTML:e._s(e.notFoundMeassge)}})]):e._e()]),e._v(" "),a("select",{staticClass:"cx-vui-f-select__select-tag",attrs:{placeholder:e.placeholder,disabled:e.disabled,readonly:e.readonly,multiple:e.multiple},domProps:{value:e.currentValues}},e._l(e.currentValues,(function(t){return a("option",{attrs:{selected:""},domProps:{value:t}})})),0)])};function nt(t){return nt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},nt(t)}function st(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,a)}return i}function ot(t){for(var e=1;e["on","off"].includes(t),default:"off"},conditions:{type:Array,default:function(){return[]}},remote:{type:Boolean,default:!1},remoteCallback:{type:Function},remoteTrigger:{type:Number,default:3},remoteTriggerMessage:{type:String,default:"Please enter %d char(s) to start search"},notFoundMeassge:{type:String,default:"There is no items find matching this query"},loadingMessage:{type:String,default:"Loading..."},preventWrap:{type:Boolean,default:!1},wrapperCss:{type:Array,default:function(){return[]}},elementId:{type:String},stateType:{type:Function}},data:()=>({query:"",inFocus:!1,optionInFocus:!1,loading:!1,loaded:!1}),created(){this.currentValues||(this.currentValues=[])},computed:{filteredOptions(){return this.query?this.optionsList.filter((t=>t.label.includes(this.query)||t.value.includes(this.query))):this.optionsList}},methods:{handleFocus(t){this.inFocus=!0,this.$emit("on-focus",t)},handleOptionsNav(t){"ArrowUp"!==t.key&&"Tab"!==t.key||this.navigateOptions(-1),"ArrowDown"===t.key&&this.navigateOptions(1)},navigateOptions(t){!1===this.optionInFocus&&(this.optionInFocus=-1);let e=this.optionInFocus+t,i=this.filteredOptions.length-1;i<0&&(i=0),e<0?e=0:e>i&&(e=i),this.optionInFocus=e},onClickOutside(t){this.inFocus&&(this.inFocus=!1,this.$emit("on-blur",t))},handleInput(t){this.$emit("input",t.target.value),this.query=t.target.value,this.inFocus||(this.inFocus=!0)},handleEnter(){if(!1===this.optionInFocus||!this.optionsList[this.optionInFocus])return;let t=this.filteredOptions[this.optionInFocus].value;this.handleResultClick(t)},handleResultClick(t){this.isNonRemovable(t)||(this.value.includes(t)?this.removeValue(t):this.multiple?this.storeValues([...new Set(this.value),t]):this.storeValues(t),this.inFocus=!1,this.optionInFocus=!1,this.query="")},removeValue(t){this.multiple||this.storeValues("");const e=this.value.filter((e=>e!==t));this.storeValues(e)},storeValues(t){this.$emit("change",this.sanitizeValue(t))},getOptionLabel(t){var e;const i="string"==typeof t?t:t.value,a=this.optionsList.find((({value:t})=>t===i));return null!==(e=a?.label)&&void 0!==e?e:""},sanitizeValue(t){return this.multiple?Array.isArray(t)?t:[t].filter(Boolean):Array.isArray(t)?t[0]:t},isSelectedOption(t){const e="string"==typeof t?t:t.value;return this.value.includes(e)},isNonRemovable(t){var e;const i="string"==typeof t?t:t.value,a=this.optionsList.find((({value:t})=>t===i));return null!==(e=a?.nonRemovable)&&void 0!==e&&e}},inject:["elementId","stateType"]};i(9330);const mt=s(ht,at,[],!1,null,"13c6d87e",null).exports;var _t=function(){var t=this,e=t.$createElement;return(t._self._c||e)("input",{staticClass:"cx-vui-input size-fullwidth",attrs:{type:"date",name:t.elementId,id:t.elementId,max:t.max,min:t.min},domProps:{value:t.value},on:{input:t.handleInput}})};_t._withStripped=!0;let bt=new Date(Date.now()-864e4).toJSON();[bt]=bt.split("T");const gt=t=>!!["now"].includes(t)||!Number.isNaN(new Date(t).getTime()),yt=s({name:"CxVuiDate",props:{value:{type:String},maxDate:{validator:gt},minDate:{validator:gt},elementId:{type:String}},data(){return{max:"now"===this.maxDate?bt:this.maxDate,min:"now"===this.minDate?bt:this.minDate}},methods:{handleInput(t){this.$emit("input",t.target.value)}},inject:["elementId"]},_t,[],!1,null,"1707aa50",null).exports;var xt=function(){var t=this.$createElement;return(this._self._c||t)("hr",{staticClass:"jfb"})};xt._withStripped=!0;i(5981);const wt=s({name:"Delimiter"},xt,[],!1,null,"362c518d",null).exports;var Ct=function(){var t=this,e=t.$createElement;return(t._self._c||e)("cx-vui-button",{attrs:{"button-style":"accent",size:"mini"},on:{click:t.print},scopedSlots:t._u([{key:"label",fn:function(){return[t.$slots.default?[t._t("default")]:[t._v("\n\t\t\t"+t._s(t.__("Print","jet-form-builder"))+"\n\t\t")]]},proxy:!0}],null,!0)})};Ct._withStripped=!0;const jt={name:"PrintButton",methods:{print(){window.print()}},mixins:[k]};i(7922);const St=s(jt,Ct,[],!1,null,"aa3950ea",null).exports;window.JetFBActions={renderCurrentPage:function(t,e={}){const i=new Vue({el:"#jet-form-builder_page_"+t.name,render:e=>e(t),...e});$("jet.fb.render.page",i)},getCurrentPath:T,getSearch:L,createPath:function(t={},e={},i=[]){const a=[];t={...L(),...t};for(const[e,n]of Object.entries(t))i.includes(e)||a.push(`${e}=${encodeURIComponent(n)}`);return[T(),a.join("&")].filter((t=>t)).join("?")},addQueryArgs:function(t,e){e=new URL(e);const i=new URLSearchParams(e.search),a=[];for(const[e,i]of Object.entries(t))a.push(...I(e,i));for(const[t,e]of a)e&&i.append(t,e);return e.origin+e.pathname+"?"+i},LocalStorage:J,resolveRestUrl:function(t,e){if("object"!=typeof e||!Object.keys(e)?.length)return t;for(let[i,a]of Object.entries(e)){const e=new RegExp(`\\{${i}\\}`,"g");if(t.match(e)){t=t.replace(e,String(a));continue}const n=new RegExp(`\\(\\?P<${i}>(.*?)\\)`),s=t.match(n);if(Array.isArray(s)){if(a=""+a,!new RegExp(s[1]).test(a))throw new Error((0,O.sprintf)((0,O.__)("Invalid parameter for rest url. RegExp: %1$s, Value: %2$s","jet-form-builder"),s[1],a));t=t.replace(n,a)}}return t}},window.JetFBErrors={ApiInputError:e},window.JetFBComponents={CxVuiCollapseMini:o,DetailsTable:b,SimpleWrapperComponent:S,ListComponents:A,CxVuiTabsPanel:D,CxVuiTabs:B,ExternalLink:W,RowWrapper:S,ColumnWrapper:G,CxVuiSelect:Y,CxVuiPopup:it,CxVuiFSelect:mt,CxVuiDate:yt,Tooltip:C,Delimiter:wt,PrintButton:St},window.JetFBMixins={GetIncoming:r,SaveTabByAjax:l,i18n:k,ParseIncomingValueMixin:c,PromiseWrapper:u}})()})(); \ No newline at end of file +(()=>{var t={2373(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-component[data-v-327e05fd]{flex-direction:column;width:100%;border-top:unset;gap:.7em}.cx-vui-component.padding-side-unset[data-v-327e05fd]{padding-left:unset;padding-right:unset}.padding-top-bottom-unset[data-v-327e05fd]{padding-top:unset;padding-bottom:unset}.padding-unset[data-v-327e05fd]{padding:unset}",""]);const r=o},7944(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-collapse-mini__wrap{padding:0 0 20px}.cx-vui-collapse-mini__item{border-bottom:1px solid #ececec}.cx-vui-collapse-mini__item:first-child{border-top:1px solid #ececec}.cx-vui-collapse-mini__item:last-child{margin-bottom:unset}.cx-vui-collapse-mini__item--active .cx-vui-collapse-mini__header-label>svg{transform:rotate(90deg)}.cx-vui-collapse-mini__header{padding:1.2rem;display:flex;align-items:center;cursor:pointer;column-gap:1em}.cx-vui-collapse-mini__header-label{font-weight:500;font-size:15px;line-height:23px;color:#007cba;display:flex;align-items:center}.cx-vui-collapse-mini__header-desc{font-size:15px;line-height:23px;color:#7b7e81}.cx-vui-collapse-mini__header-label svg{margin:-1px 8px 0 0;transition:.3s}.cx-vui-collapse-mini--disabled{opacity:.5}.cx-vui-collapse-mini--disabled .cx-vui-collapse-mini__header{cursor:not-allowed}.cx-vui-collapse-mini__content{padding:0 1.5rem 1.5rem}",""]);const r=o},6278(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-input--warning-danger[data-v-13c6d87e]{border:1px solid #d63638}",""]);const r=o},5965(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-popup__close[data-v-7acae1c9]{position:unset}.cx-vui-popup__header[data-v-7acae1c9]{display:flex;justify-content:space-between;padding-bottom:10px;margin:unset;border-bottom:1px solid #ececec}.cx-vui-popup.sticky-header .cx-vui-popup__body[data-v-7acae1c9],.cx-vui-popup.sticky-footer .cx-vui-popup__body[data-v-7acae1c9]{max-height:80vh;overflow-y:auto}.cx-vui-popup.sticky-header .cx-vui-popup__header[data-v-7acae1c9]{position:sticky;top:0;background-color:#fff;padding-top:20px;z-index:1}.cx-vui-popup.sticky-header .cx-vui-popup__body[data-v-7acae1c9]{padding-top:0}.cx-vui-popup.sticky-footer .cx-vui-popup__body[data-v-7acae1c9]{padding-bottom:0}.cx-vui-popup.sticky-footer .cx-vui-popup__content[data-v-7acae1c9]{padding-bottom:40px}.cx-vui-popup.sticky-footer .cx-vui-popup__footer[data-v-7acae1c9]{position:sticky;bottom:0;background-color:#fff;padding-bottom:20px;border-top:1px solid #ececec}",""]);const r=o},1618(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-select[data-v-b31905c2]{line-height:2em;padding:6px 24px 6px 8px}.cx-vui-select.fullwidth[data-v-b31905c2]{width:100%}",""]);const r=o},6291(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-tabs__nav-item--disabled{opacity:.5;cursor:not-allowed}.cx-vui-tabs__nav-item--disabled:hover{color:unset}.cx-vui-tabs__nav-item--has-icon{display:flex;justify-content:space-between;column-gap:1em}.cx-vui-tabs--layout-vertical>.cx-vui-tabs__nav{width:unset;flex:unset;max-width:unset}.cx-vui-tabs--layout-vertical>.cx-vui-tabs__content{flex:1}",""]);const r=o},4761(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,"hr.jfb[data-v-362c518d]{border:0;border-top:1px solid #ececec;margin:unset}",""]);const r=o},1700(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".table-details{display:flex;flex-direction:column}",""]);const r=o},1418(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".table-details-row{display:flex;justify-content:space-between;font-size:1.1em}.table-details-row:first-child{font-weight:bold}.table-details-row:nth-child(even){background-color:#eee}.table-details-row-column{padding:.5em 1em}.table-details-row--heading{flex:1;text-align:right}.table-details-row-role--default.table-details-row--heading{font-weight:600}.table-details-row--content{flex:2}.table-details-row--actions{flex:.3}.table-details-row h3{padding:.5em;border-bottom:1px solid #aaa;width:50%;margin:1em auto;text-align:center;color:#aaa;font-weight:400}",""]);const r=o},4965(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,'.fade-enter-active[data-v-7d75afce],.fade-leave-active[data-v-7d75afce]{transition:opacity .5s}.fade-enter[data-v-7d75afce],.fade-leave-to[data-v-7d75afce]{opacity:0}.jfb-recursive-details[data-v-7d75afce]:not(.jfb-recursive-details--indent){margin-top:unset}.jfb-recursive-details--indent[data-v-7d75afce]{margin-left:1.5em;margin-top:.5em}.jfb-recursive-details-row[data-v-7d75afce]:not(:last-child){margin-bottom:.5em;padding-bottom:.5em}.jfb-recursive-details-item--content[data-v-7d75afce]{border-bottom:1px solid #ccc}.jfb-recursive-details-item-without-children>.jfb-recursive-details-item--heading[data-v-7d75afce]::after{content:":"}.jfb-recursive-details-item-with-children>.jfb-recursive-details-item--heading[data-v-7d75afce]{cursor:pointer}.jfb-recursive-details-item-with-children>.jfb-recursive-details-item--heading[data-v-7d75afce]:hover{color:#2271b1;border-bottom-color:#2271b1}',""]);const r=o},4244(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".cx-vui-external-link__icon{width:1em;height:1em;fill:currentcolor;vertical-align:middle}",""]);const r=o},8984(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".size--1-x-2 .cx-vui-component__meta[data-v-6f5201e4]{flex:1}.size--1-x-2 .cx-vui-component__control[data-v-6f5201e4]{flex:2}.padding-side-unset.cx-vui-component[data-v-6f5201e4]{padding-left:unset;padding-right:unset}.cx-vui-component__control-actions[data-v-6f5201e4]{display:flex;justify-content:flex-end;gap:1em;margin-top:.5em}",""]);const r=o},1292(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,".jfb-tooltip[data-v-431c7ba2]{position:relative;display:inline-block}.jfb-tooltip-has-help[data-v-431c7ba2]{cursor:pointer}.jfb-tooltip-has-text[data-v-431c7ba2]{display:flex;column-gap:.5em;align-items:center}.jfb-tooltip--text[data-v-431c7ba2]{text-overflow:ellipsis;overflow:hidden;padding:.1em 0}.jfb-tooltip .dashicons-dismiss[data-v-431c7ba2]{color:#d63638}.jfb-tooltip .dashicons-warning[data-v-431c7ba2]{color:orange}.jfb-tooltip .dashicons-warning.danger[data-v-431c7ba2]{color:#d63638}.jfb-tooltip .dashicons-yes-alt[data-v-431c7ba2]{color:#32cd32}.jfb-tooltip .dashicons-info[data-v-431c7ba2]{color:#90c6db}.jfb-tooltip .dashicons-hourglass[data-v-431c7ba2]{color:#b5b5b5}.jfb-tooltip .dashicons-update.loading[data-v-431c7ba2]{animation:jfb-tooltip-loading-icon-data-v-431c7ba2 1.5s infinite linear}.jfb-tooltip .cx-vui-tooltip[data-v-431c7ba2]{width:fit-content;bottom:calc(100% + 15px);box-sizing:border-box;pointer-events:none;transition:all .18s linear;opacity:0;padding-left:1em;padding-right:1em;position:absolute;z-index:2}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]{right:-1.2em}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]:after{right:20px;left:unset}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]{left:-0.9em}.jfb-tooltip .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]:after{left:20px;right:unset}.jfb-tooltip:hover .cx-vui-tooltip[data-v-431c7ba2]{opacity:1}.jfb-tooltip:hover .cx-vui-tooltip.tooltip-position-top-right[data-v-431c7ba2]{bottom:100%}.jfb-tooltip:hover .cx-vui-tooltip.tooltip-position-top-left[data-v-431c7ba2]{bottom:100%}.jfb-tooltip-position--top-right[data-v-431c7ba2]{flex-direction:row-reverse}@keyframes jfb-tooltip-loading-icon-data-v-431c7ba2{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}",""]);const r=o},5598(t,e,i){"use strict";i.r(e),i.d(e,{default:()=>r});var a=i(6758),n=i.n(a),s=i(935),o=i.n(s)()(n());o.push([t.id,"\n@media print {\n.cx-vui-button[data-v-aa3950ea] {\n\t\tdisplay: none;\n}\n}\n",""]);const r=o},935(t){"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var i="",a=void 0!==e[5];return e[4]&&(i+="@supports (".concat(e[4],") {")),e[2]&&(i+="@media ".concat(e[2]," {")),a&&(i+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),i+=t(e),a&&(i+="}"),e[2]&&(i+="}"),e[4]&&(i+="}"),i}).join("")},e.i=function(t,i,a,n,s){"string"==typeof t&&(t=[[null,t,void 0]]);var o={};if(a)for(var r=0;r0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=s),i&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=i):u[2]=i),n&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=n):u[4]="".concat(n)),e.push(u))}},e}},6758(t){"use strict";t.exports=function(t){return t[1]}},6945(t,e,i){var a=i(2373);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("b1875a50",a,!1,{})},9356(t,e,i){var a=i(7944);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("30df35ee",a,!1,{})},9330(t,e,i){var a=i(6278);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("21fb632e",a,!1,{})},1041(t,e,i){var a=i(5965);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("0c7f7908",a,!1,{})},2310(t,e,i){var a=i(1618);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("2e7817a3",a,!1,{})},799(t,e,i){var a=i(6291);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("4168dbce",a,!1,{})},5981(t,e,i){var a=i(4761);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("8c144c80",a,!1,{})},6168(t,e,i){var a=i(1700);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("206d9f3c",a,!1,{})},8862(t,e,i){var a=i(1418);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("6aaa4088",a,!1,{})},7393(t,e,i){var a=i(4965);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("29e569e4",a,!1,{})},8528(t,e,i){var a=i(4244);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("45767117",a,!1,{})},8036(t,e,i){var a=i(8984);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("57efcfaf",a,!1,{})},6608(t,e,i){var a=i(1292);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("3a21f3b2",a,!1,{})},7922(t,e,i){var a=i(5598);a.__esModule&&(a=a.default),"string"==typeof a&&(a=[[t.id,a,""]]),a.locals&&(t.exports=a.locals),(0,i(611).A)("7e55f3a9",a,!1,{})},611(t,e,i){"use strict";function a(t,e){for(var i=[],a={},n=0;nf});var n="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!n)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},o=n&&(document.head||document.getElementsByTagName("head")[0]),r=null,l=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",v="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(t,e,i,n){c=i,d=n||{};var o=a(t,e);return h(o),function(e){for(var i=[],n=0;ni.parts.length&&(a.parts.length=i.parts.length)}else{var o=[];for(n=0;n{var e=t&&t.__esModule?()=>t.default:()=>t;return i.d(e,{a:e}),e},i.d=(t,e)=>{for(var a in e)i.o(e,a)&&!i.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:e[a]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),i.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},(()=>{"use strict";class t extends Error{constructor(e=!1,i=""){super(i),Error.captureStackTrace&&Error.captureStackTrace(this,t),this.name="ApiInputError",this.noticeOptions=e}}const e=t;var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:{"cx-vui-panel":t.withPanel,"cx-vui-collapse-mini--disabled":t.disabled,"cx-vui-collapse-mini__item":!0,"cx-vui-collapse-mini__item--active":t.isActive}},[i("div",{staticClass:"cx-vui-collapse-mini__header",on:{click:t.collapse}},[i("div",{staticClass:"cx-vui-collapse-mini__header-label"},[i("svg",{attrs:{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[i("path",{attrs:{d:"M14 13.9999L14 -0.00012207L0 -0.000121458L6.11959e-07 13.9999L14 13.9999Z",fill:"white"}}),t._v(" "),i("path",{attrs:{d:"M5.32911 1L11 7L5.32911 13L4 11.5938L8.34177 7L4 2.40625L5.32911 1Z",fill:"#007CBA"}})]),t._v("\n\t\t\t"+t._s(t.label)+"\n\t\t")]),t._v(" "),t.icon?i("div",{staticClass:"cx-vui-collapse-mini__header-desc"},["object"==typeof t.icon?i(t.icon,{tag:"component"}):t._e()],1):t.desc?i("div",{staticClass:"cx-vui-collapse-mini__header-desc"},[t._v("\n\t\t\t"+t._s(t.desc)+"\n\t\t")]):t._e(),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-collapse-mini__header-custom-description"},[t._t("description")],2):t._e()]),t._v(" "),t.disabled?t._e():[this.$slots.default?[i("div",{directives:[{name:"show",rawName:"v-show",value:t.isActive,expression:"isActive"}],staticClass:"cx-vui-collapse-mini__content"},[t._t("default")],2)]:[t._t("custom",null,{state:{isActive:t.isActive}})]]],2)};a._withStripped=!0;const n={name:"cx-vui-collapse-mini",props:{withPanel:{type:Boolean,default:!1},initialActive:{type:Boolean,default:!1},label:{type:String,default:"Collapse Mini"},desc:{type:String,default:""},disabled:{type:Boolean,default:!1},icon:{type:[Object,String],default:""}},data:()=>({isActive:!1}),created(){this.isActive=this.initialActive},methods:{collapse(){this.disabled||(this.isActive=!this.isActive,this.$emit("change",this.isActive))}}};function s(t,e,i,a,n,s,o,r){var l,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=i,c._compiled=!0),a&&(c.functional=!0),s&&(c._scopeId="data-v-"+s),o?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),n&&n.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},c._ssrRegister=l):n&&(l=r?function(){n.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:n),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(t,e){return l.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:t,options:c}}i(9356);const o=s(n,a,[],!1,null,null,null).exports,r={methods:{getIncoming:t=>t?window.JetFBPageConfig[t]:window.JetFBPageConfig}},l={methods:{saveByAjax(t,e){const i=this;let a={};try{a=this.getAjaxObject(t,e)}catch(t){if(!t)return;return"object"==typeof t.noticeOptions?void i.$CXNotice.add({message:"Invalid request data.",type:"error",duration:2e3,...t.noticeOptions}):void i.$CXNotice.add({message:t,type:"error",duration:2e3})}jfbEventBus.$emit("request-state",{state:"begin",slug:e}),jQuery.ajax(a).done(function(a){"function"==typeof t.onSaveDone?t.onSaveDone(a):a.success?(i.$CXNotice.add({message:a.data.message,type:"success",duration:5e3}),"function"==typeof t.onSaveDoneSuccess&&t.onSaveDoneSuccess(a)):(i.$CXNotice.add({message:a.data.message,type:"error",duration:5e3}),"function"==typeof t.onSaveDoneError&&t.onSaveDoneError(a)),jfbEventBus.$emit("request-state",{state:"end",slug:e})}).fail(function(a,n,s){"function"==typeof t.onSaveFail?t.onSaveFail(a,n,s):i.$CXNotice.add({message:s,type:"error",duration:5e3}),jfbEventBus.$emit("request-state",{state:"end",slug:e})})},getAjaxObject(t,e){const i={url:window.ajaxurl,type:"POST",dataType:"json",...t.getRequestOnSave()};return i.data={action:`jet_fb_save_tab__${e}`,...i.data},window?.JetFBPageConfigPackage?.nonce&&(i.data._nonce=window.JetFBPageConfigPackage.nonce),i}}},c={props:["value","full-entry","entry-id","scope"],computed:{parsedJson(){return JSON.parse(JSON.stringify(this.value))}}},u={methods:{promiseWrapper(t){const e=t=>"object"==typeof t?t?.message:t;return(i,a,...n)=>{const s=t=>{"function"==typeof i&&i(),this.$CXNotice.add({message:e(t),type:"success",duration:4e3})},o=t=>{"function"==typeof i&&i(),this.$CXNotice.add({message:e(t),type:"error",duration:4e3})};try{t.call(this,{resolve:s,reject:o},...n)}catch(t){o(t.message)}}}}};var d=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("section",{staticClass:"table-details"},t._l(t.columns,function(e,a){return t.canShow(a)?i("DetailsTableRow",{key:a,attrs:{type:t.getType(a)},scopedSlots:t._u([{key:"name",fn:function(){return[t._v(t._s(e.label))]},proxy:!0},{key:"value",fn:function(){return["object"==typeof t.getColumnValue(a,!1)?[i("DetailsTableRowValue",{attrs:{value:t.getColumnValue(a,!1),columns:e.children||{}}})]:[t._v(t._s(t.getColumnValue(a,"")))]]},proxy:!0}],null,!0)}):t._e()}),1)};d._withStripped=!0;var p=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("ul",{directives:[{name:"show",rawName:"v-show",value:!this.withIndent,expression:"! this.withIndent"}],class:t.rootClasses},t._l(t.value,function(e,a){return t.isHiddenLevel(a)?i("li",{key:a,staticClass:"jfb-recursive-details-row"},[t.isSkipLevel(a)?[i("DetailsTableRowValue",{attrs:{value:e,columns:t.getChildren(a)}})]:[t.isObject(e)?i("span",{class:t.itemClasses(!0)},[i("span",{staticClass:"jfb-recursive-details-item--heading",on:{click:function(e){return t.toggleNext(a)}}},[t._v("\n\t\t\t\t\t"+t._s(t.getItemLabel(a))+"\n\t\t\t\t\t"),i("span",{class:t.arrowClasses(a)})]),t._v(" "),i("span",{staticClass:"jfb-recursive-details-item--content"},[i("transition",{attrs:{name:"fade"}},[i("DetailsTableRowValue",{directives:[{name:"show",rawName:"v-show",value:t.isShow(a),expression:"isShow( itemName )"}],attrs:{value:e,"with-indent":!0,columns:t.getChildren(a)}})],1)],1)]):i("span",{class:t.itemClasses(!1)},[i("span",{staticClass:"jfb-recursive-details-item--heading"},[t._v(t._s(t.getItemLabel(a)))]),t._v(" \n\t\t\t\t"),i("span",{staticClass:"jfb-recursive-details-item--content"},[t._v(t._s(e))])])]],2):t._e()}),0)};p._withStripped=!0;const v={name:"DetailsTableRowValue",props:{value:Object,withIndent:{type:Boolean,default:!1},columns:{type:Object,default:()=>({})}},data:()=>({showNext:{}}),computed:{rootClasses(){return{"jfb-recursive-details":!0,"jfb-recursive-details--indent":this.withIndent}}},methods:{getChildren(t){return this.columns[t]?.children||[]},getItemLabel(t){return this.columns[t]?this.columns[t].label:t},isObject:t=>"object"==typeof t,toggleNext(t){const e=this.showNext[t]||!1;this.$set(this.showNext,t,!e)},isShow(t){return"undefined"===this.showNext[t]||this.showNext[t]},itemClasses:(t=!0)=>({"jfb-recursive-details-item":!0,"jfb-recursive-details-item-with-children":t,"jfb-recursive-details-item-without-children":!t}),arrowClasses(t){return{dashicons:!0,"dashicons-arrow-down-alt2":!this.isShow(t),"dashicons-arrow-up-alt2":this.isShow(t)}},isSkipLevel(t){return this.columns[t]?.skip_level},isHiddenLevel(t){return!this.columns[t]?.hide}}};i(7393);const f=s(v,p,[],!1,null,"7d75afce",null).exports;var h=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"table-details-row"},["rowValue"===t.type?[i("div",{class:t.headingClasses},["default"!==t.role?[t._v(t._s("Name"))]:[t._t("name"),t._v("\n\t\t\t\t:\n\t\t\t")]],2),t._v(" "),i("div",{class:t.contentClasses},["default"!==t.role?[t._v(t._s("Value"))]:[t._t("value")]],2),t._v(" "),i("div",{class:t.actionClasses},["default"!==t.role?[t._v(t._s("Actions"))]:[t._t("actions")]],2)]:[i("h3",[t._t("name")],2)]],2)};h._withStripped=!0;const m={name:"DetailsTableRow",props:{role:{type:String,default:"default",validator:function(t){return-1!==["header","default","footer"].indexOf(t)}},type:{type:String,default:"rowValue",validator:function(t){return-1!==["rowValue","heading"].indexOf(t)}}},computed:{headingClasses(){return this.classes({"table-details-row--heading":!0})},contentClasses(){return this.classes({"table-details-row--content":!0})},actionClasses(){return this.classes({"table-details-row--actions":!0})}},methods:{classes(t){return{"table-details-row-column":!0,...t,["table-details-row-role--"+this.role]:!0}}}};i(8862);const _={name:"DetailsTable",components:{DetailsTableRow:s(m,h,[],!1,null,null,null).exports,DetailsTableRowValue:f},props:{columns:{type:Object},source:{type:Object}},methods:{getColumnValue(t,e=!1){return this.source[t]?this.source[t].value:e},hasValueOrAnotherType(t){return this.getColumnValue(t)||"rowValue"!==this.getType(t)},getType(t){var e;return null!==(e=this.columns[t].type)&&void 0!==e?e:"rowValue"},canShow(t){const e=this.getType(t),i=!1!==this.columns[t].show_in_details,a=this.getColumnValue(t);return i&&("rowValue"!==e||a)}}};i(6168);const b=s(_,d,[],!1,null,null,null).exports;var g=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[t.$slots.meta?i("div",{staticClass:"cx-vui-component__meta"},[t._t("meta")],2):t.$slots.label||t.$slots.description?i("div",{staticClass:"cx-vui-component__meta"},[t.$slots.label?i("label",{staticClass:"cx-vui-component__label",attrs:{for:t.elementIdData}},[t.stateType?[i("Tooltip",{attrs:{icon:t.stateType,position:"top-right"},scopedSlots:t._u([{key:"help",fn:function(){return[t._v(t._s(t.stateHelp))]},proxy:!0},{key:"default",fn:function(){return[t._t("label")]},proxy:!0}],null,!0)})]:[t._t("label")]],2):t._e(),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-component__desc"},[t._t("description")],2):t._e()]):t._e(),t._v(" "),i("div",{staticClass:"cx-vui-component__control"},[t._t("default"),t._v(" "),t.$slots.actions?i("div",{staticClass:"cx-vui-component__control-actions"},[t._t("actions")],2):t._e()],2)])};g._withStripped=!0;var y=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.wrapperClasses},[i("span",{class:t.dashIconClass}),t._v(" "),t.$slots.default?i("span",{staticClass:"jfb-icon-status--text"},[t._t("default")],2):t._e(),t._v(" "),t.$slots.help?i("div",{class:t.tooltipClasses},[t._t("help")],2):t._e()])};y._withStripped=!0;const x={success:"dashicons-yes-alt",warning:"dashicons-warning","warning-danger":["dashicons-warning","danger"],info:"dashicons-info",pending:"dashicons-hourglass",error:"dashicons-dismiss",loading:["dashicons-update","loading"]},w={name:"Tooltip",props:{icon:{type:String,validator:t=>Object.keys(x).includes(t),default:"info"},position:{type:String,validator:t=>["top-right","top-left"].includes(t),default:"top-left"}},computed:{wrapperClasses(){return{"jfb-tooltip":!0,"jfb-tooltip-has-text":!!this.$slots.default,"jfb-tooltip-has-help":!!this.$slots.help,["jfb-tooltip-position--"+this.position]:!0}},dashIconClass(){var t;let e=null!==(t=x[this.icon])&&void 0!==t?t:"";return Array.isArray(e)||(e=[e]),["dashicons",...e]},tooltipClasses(){return{"cx-vui-tooltip":!0,["tooltip-position-"+this.position]:!0}}}};i(6608);const C=s(w,y,[],!1,null,"431c7ba2",null).exports,j={name:"RowWrapper",components:{Tooltip:C},props:{elementId:{type:String},state:{type:[String,Object],validator:t=>(t=>["warning-danger","warning","loading",""].includes(t))("string"==typeof t?t:t.type),default:""},classNames:{type:Object,default:()=>({"cx-vui-component--equalwidth":!0})}},data(){return{elementIdData:`cx_${this.elementId}`}},computed:{className(){return{"cx-vui-component":!0,["cx-vui-component--is-"+this.stateType]:this.stateType,...this.classNames}},stateType(){return"string"==typeof this.state?this.state:this.state.type},stateHelp(){return"string"==typeof this.state?"":this.state.message}},provide(){return{elementId:this.elementIdData,stateType:()=>this.stateType}}};i(8036);const S=s(j,g,[],!1,null,"6f5201e4",null).exports,O=window.wp.i18n,k={methods:{__:(t,e)=>(0,O.__)(t,e),sprintf:(t,...e)=>(0,O.sprintf)(t,...e),__s:(t,e,...i)=>(0,O.sprintf)((0,O.__)(t,e),...i)}},{doAction:$}=wp.hooks;function T(){return window.location.pathname}function L(){const t={};return window.location.search.replace("?","").split("&").forEach(e=>{const[i,a]=e.split("=");t[i]=a}),t}function I(t,e){if("object"!=typeof e)return[[t,e]];const i=[];for(let[a,n]of Object.entries(e))a=`${t}[${a}]`,i.push(...I(a,n));return i}var N=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"jfb-list-components"},[t._l(t.components,function(e,a){return i("div",{key:"entry_"+a,staticClass:"jfb-list-components-item"},[i("keep-alive",[i(e,{tag:"component",attrs:{scope:t.scope}})],1)],1)}),t._v(" "),t._t("default")],2)};N._withStripped=!0;const A=s({name:"ListComponents",props:{components:Array,scope:String}},N,[],!1,null,null,null).exports;var E=function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{directives:[{name:"show",rawName:"v-show",value:t.show,expression:"show"}],staticClass:"cx-vui-tabs-panel"},[t._t("default")],2)};E._withStripped=!0;const D=s({name:"cx-vui-tabs-panel",props:{tab:{type:String,default:""},name:{type:String,default:""},label:{type:String,default:""},disabled:{type:Boolean,default:!1},icon:{type:[Object,String],default:""}},data:()=>({show:!1})},E,[],!1,null,null,null).exports;var V=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:{"cx-vui-tabs":!0,"cx-vui-tabs--invert":t.invert,"cx-vui-tabs--layout-vertical":"vertical"===this.layout,"cx-vui-tabs--layout-horizontal":"horizontal"===this.layout,"cx-vui-tabs--in-panel":t.inPanel}},[i("div",{staticClass:"cx-vui-tabs__nav"},t._l(t.navList,function(e){return i("div",{class:{"cx-vui-tabs__nav-item":!0,"cx-vui-tabs__nav-item--active":t.isActive(e.name),"cx-vui-tabs__nav-item--disabled":t.isDisabled(e.name),"cx-vui-tabs__nav-item--has-icon":!!e.icon},on:{click:function(i){return t.onTabClick(e.name)}}},[i("span",{staticClass:"item-label"},[t._v(t._s(e.label))]),t._v(" "),e.icon?i("span",{staticClass:"item-icon"},["object"==typeof e.icon?i(e.icon,{tag:"component",attrs:{"is-active":t.isActive(e.name)}}):t._e()],1):t._e()])}),0),t._v(" "),i("div",{staticClass:"cx-vui-tabs__content"},[t._t("default")],2)])};V._withStripped=!0;const P={name:"cx-vui-tabs",props:{value:{type:[String,Number],default:""},name:{type:String,default:""},invert:{type:Boolean,default:!1},inPanel:{type:Boolean,default:!1},layout:{validator:t=>["horizontal","vertical"].includes(t),default:"horizontal"},conditions:{type:Array,default:()=>[]}},data(){return{navList:[],activeTab:this.value,disabledTabs:[]}},mounted(){const t=this.getTabs();this.disabledTabs=this.getDisabledTabs(),this.navList=t,this.activeTab||(this.activeTab=t[0].name),this.updateState()},methods:{isActive(t){return t===this.activeTab},isDisabled(t){return this.disabledTabs.includes(t)},getDisabledTabs(){const t=[];for(const e of this.$children)e.disabled&&t.push(e.name);return t},onTabClick(t){this.isDisabled(t)||(this.activeTab=t,this.$emit("input",this.activeTab),this.updateState())},updateState(){const t=this.getTabs();this.navList=t,t.forEach(t=>{t.show=this.activeTab===t.name})},getTabs(){const t=this.$children.filter(t=>"cx-vui-tabs-panel"===t.$options.name),e=[];return t.forEach(t=>{t.tab&&this.name?t.tab===this.name&&e.push(t):e.push(t)}),e}}};i(799);const B=s(P,V,[],!1,null,null,null).exports,F="JetFBConfig";function M(t){localStorage.setItem(F,JSON.stringify(t))}function R(){const t=localStorage.getItem(F);return null===t?{}:JSON.parse(t)}function z(t,e){let i=R();i={...i,[t]:e},M(i)}function q(t,e=!1){var i;return null!==(i=R()[t])&&void 0!==i?i:e}const J={setStorage:M,getStorage:R,setItem:z,getItem:q,storage:function(t){const e={setStorage(e){z(t,e)},getStorage:()=>q(t,{})};return{...e,setItem(t,i){let a=e.getStorage();a={...a,[t]:i},e.setStorage(a)},getItem(t,i=!1){var a;return null!==(a=e.getStorage()[t])&&void 0!==a?a:i}}}};var U=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("a",{staticClass:"cx-vui-external-link",attrs:{href:t.href,target:"_blank",rel:"external noreferrer noopener"}},[t._t("default"),t._v(" "),i("svg",{staticClass:"cx-vui-external-link__icon",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"}},[i("path",{attrs:{d:"M18.2 17c0 .7-.6 1.2-1.2 1.2H7c-.7 0-1.2-.6-1.2-1.2V7c0-.7.6-1.2 1.2-1.2h3.2V4.2H7C5.5 4.2 4.2 5.5 4.2 7v10c0 1.5 1.2 2.8 2.8 2.8h10c1.5 0 2.8-1.2 2.8-2.8v-3.6h-1.5V17zM14.9 3v1.5h3.7l-6.4 6.4 1.1 1.1 6.4-6.4v3.7h1.5V3h-6.3z"}})])],2)};U._withStripped=!0;const H={name:"ExternalLink",mixins:[k],props:{href:{type:String,default:""}}};i(8528);const W=s(H,U,[],!1,null,null,null).exports;var X=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[t.$slots.label?i("label",{staticClass:"cx-vui-component__label",attrs:{for:t.elementIdData}},[t._t("label")],2):t._e(),t._v(" "),t._t("default"),t._v(" "),t.$slots.description?i("div",{staticClass:"cx-vui-component__desc"},[t._t("description")],2):t._e()],2)};X._withStripped=!0;const Z={name:"ColumnWrapper",props:{elementId:{type:String,required:!0},classNames:{type:Object,default:()=>({})}},data(){return{elementIdData:`cx_${this.elementId}`}},computed:{className(){return{"cx-vui-component":!0,...this.classNames}}},provide(){return{elementId:this.elementIdData}}};i(6945);const G=s(Z,X,[],!1,null,"327e05fd",null).exports;var Q=function(){var t=this,e=t.$createElement;return(t._self._c||e)("select",{class:t.className,attrs:{name:t.elementId,id:t.elementId},domProps:{value:t.value},on:{input:t.handleInput}},[t._t("default")],2)};Q._withStripped=!0;const K={name:"CxVuiSelect",props:{value:{type:[String,Number],default:""},elementId:{type:String},classNames:{type:Object,default:()=>({})}},computed:{className(){return{"cx-vui-select":!0,...this.classNames}}},methods:{handleInput(t){this.$emit("input",t.target.value)}},inject:["elementId"]};i(2310);const Y=s(K,Q,[],!1,null,"b31905c2",null).exports;var tt=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{class:t.className},[i("div",{staticClass:"cx-vui-popup__overlay",on:{click:function(e){return t.$emit("close")}}}),t._v(" "),i("div",{staticClass:"cx-vui-popup__body"},[t.$slots.title?i("h2",{staticClass:"cx-vui-popup__header"},[t._t("title"),t._v(" "),t.$slots.close?[t._t("close")]:i("div",{staticClass:"cx-vui-popup__close",on:{click:function(e){return t.$emit("close")}}},[i("svg",{attrs:{width:"20",height:"20",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[i("path",{attrs:{d:"M12 3.00671L8.00671 7L12 10.9933L10.9933 12L7 8.00671L3.00671 12L2 10.9933L5.99329 7L2 3.00671L3.00671 2L7 5.99329L10.9933 2L12 3.00671Z"}})])])],2):t._e(),t._v(" "),i("div",{staticClass:"cx-vui-popup__content"},[t._t("content")],2),t._v(" "),t.$slots.footer?i("div",{staticClass:"cx-vui-popup__footer"},[t._t("footer")],2):t._e()])])};tt._withStripped=!0;const et={name:"CxVuiPopup",props:{classNames:{type:Object,default:()=>({})},stickyFooter:{type:Boolean,default:!1}},computed:{className(){return{"cx-vui-popup":!0,...this.classNames}}}};i(1041);const it=s(et,tt,[],!1,null,"7acae1c9",null).exports;var at=function(){var t,e=this,i=e.$createElement,a=e._self._c||i;return a("div",{staticClass:"cx-vui-f-select"},[a("div",{class:{"cx-vui-f-select__selected":!0,"cx-vui-f-select__selected-not-empty":this.value.length>0}},e._l(e.value,function(t){return a("div",{staticClass:"cx-vui-f-select__selected-option",on:{click:function(i){return e.handleResultClick(t)}}},[e.$slots["option-"+t]?[e._t("option-"+t)]:[e.isNonRemovable(t)?e._e():a("span",{staticClass:"cx-vui-f-select__selected-option-icon"},[a("svg",{attrs:{width:"10",height:"10",viewBox:"0 0 10 10",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M10 1.00671L6.00671 5L10 8.99329L8.99329 10L5 6.00671L1.00671 10L0 8.99329L3.99329 5L0 1.00671L1.00671 0L5 3.99329L8.99329 0L10 1.00671Z"}})])]),e._v("\n\t\t\t\t"+e._s(e.getOptionLabel(t))+"\n\t\t\t")]],2)}),0),e._v(" "),a("div",{directives:[{name:"click-outside",rawName:"v-click-outside.capture",value:e.onClickOutside,expression:"onClickOutside",modifiers:{capture:!0}},{name:"click-outside",rawName:"v-click-outside:mousedown.capture",value:e.onClickOutside,expression:"onClickOutside",arg:"mousedown",modifiers:{capture:!0}},{name:"click-outside",rawName:"v-click-outside:touchstart.capture",value:e.onClickOutside,expression:"onClickOutside",arg:"touchstart",modifiers:{capture:!0}}],staticClass:"cx-vui-f-select__control",on:{keydown:[function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),e.handleOptionsNav.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),e.handleOptionsNav.apply(null,arguments))},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:e.handleOptionsNav.apply(null,arguments)},function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.handleEnter.apply(null,arguments)}]}},[a("input",{class:(t={"cx-vui-f-select__input":!0,"cx-vui-input--in-focus":e.inFocus,"cx-vui-input":!0},t["cx-vui-input--"+e.stateType()]=e.stateType(),t["size-fullwidth"]=!0,t["has-error"]=e.error,t),attrs:{id:e.elementId,placeholder:e.placeholder,autocomplete:e.autocomplete,type:"text"},domProps:{value:e.query},on:{input:e.handleInput,focus:e.handleFocus}}),e._v(" "),e.inFocus?a("div",{staticClass:"cx-vui-f-select__results"},[e.filteredOptions.length?a("div",e._l(e.filteredOptions,function(t,i){return a("div",{class:{"cx-vui-f-select__result":!0,"in-focus":i===e.optionInFocus,"is-selected":e.isSelectedOption(t)},on:{click:function(i){return e.handleResultClick(t.value)}}},[e._v(e._s(e.getOptionLabel(t))+"\n\t\t\t\t")])}),0):a("div",{staticClass:"cx-vui-f-select__results-message",domProps:{innerHTML:e._s(e.notFoundMeassge)}})]):e._e()]),e._v(" "),a("select",{staticClass:"cx-vui-f-select__select-tag",attrs:{placeholder:e.placeholder,disabled:e.disabled,readonly:e.readonly,multiple:e.multiple},domProps:{value:e.currentValues}},e._l(e.currentValues,function(t){return a("option",{attrs:{selected:""},domProps:{value:t}})}),0)])};function nt(t){return nt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},nt(t)}function st(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),i.push.apply(i,a)}return i}function ot(t){for(var e=1;e["on","off"].includes(t),default:"off"},conditions:{type:Array,default:function(){return[]}},remote:{type:Boolean,default:!1},remoteCallback:{type:Function},remoteTrigger:{type:Number,default:3},remoteTriggerMessage:{type:String,default:"Please enter %d char(s) to start search"},notFoundMeassge:{type:String,default:"There is no items find matching this query"},loadingMessage:{type:String,default:"Loading..."},preventWrap:{type:Boolean,default:!1},wrapperCss:{type:Array,default:function(){return[]}},elementId:{type:String},stateType:{type:Function}},data:()=>({query:"",inFocus:!1,optionInFocus:!1,loading:!1,loaded:!1}),created(){this.currentValues||(this.currentValues=[])},computed:{filteredOptions(){return this.query?this.optionsList.filter(t=>t.label.includes(this.query)||t.value.includes(this.query)):this.optionsList}},methods:{handleFocus(t){this.inFocus=!0,this.$emit("on-focus",t)},handleOptionsNav(t){"ArrowUp"!==t.key&&"Tab"!==t.key||this.navigateOptions(-1),"ArrowDown"===t.key&&this.navigateOptions(1)},navigateOptions(t){!1===this.optionInFocus&&(this.optionInFocus=-1);let e=this.optionInFocus+t,i=this.filteredOptions.length-1;i<0&&(i=0),e<0?e=0:e>i&&(e=i),this.optionInFocus=e},onClickOutside(t){this.inFocus&&(this.inFocus=!1,this.$emit("on-blur",t))},handleInput(t){this.$emit("input",t.target.value),this.query=t.target.value,this.inFocus||(this.inFocus=!0)},handleEnter(){if(!1===this.optionInFocus||!this.optionsList[this.optionInFocus])return;let t=this.filteredOptions[this.optionInFocus].value;this.handleResultClick(t)},handleResultClick(t){this.isNonRemovable(t)||(this.value.includes(t)?this.removeValue(t):this.multiple?this.storeValues([...new Set(this.value),t]):this.storeValues(t),this.inFocus=!1,this.optionInFocus=!1,this.query="")},removeValue(t){this.multiple||this.storeValues("");const e=this.value.filter(e=>e!==t);this.storeValues(e)},storeValues(t){this.$emit("change",this.sanitizeValue(t))},getOptionLabel(t){var e;const i="string"==typeof t?t:t.value,a=this.optionsList.find(({value:t})=>t===i);return null!==(e=a?.label)&&void 0!==e?e:""},sanitizeValue(t){return this.multiple?Array.isArray(t)?t:[t].filter(Boolean):Array.isArray(t)?t[0]:t},isSelectedOption(t){const e="string"==typeof t?t:t.value;return this.value.includes(e)},isNonRemovable(t){var e;const i="string"==typeof t?t:t.value,a=this.optionsList.find(({value:t})=>t===i);return null!==(e=a?.nonRemovable)&&void 0!==e&&e}},inject:["elementId","stateType"]};i(9330);const mt=s(ht,at,[],!1,null,"13c6d87e",null).exports;var _t=function(){var t=this,e=t.$createElement;return(t._self._c||e)("input",{staticClass:"cx-vui-input size-fullwidth",attrs:{type:"date",name:t.elementId,id:t.elementId,max:t.max,min:t.min},domProps:{value:t.value},on:{input:t.handleInput}})};_t._withStripped=!0;let bt=new Date(Date.now()-864e4).toJSON();[bt]=bt.split("T");const gt=t=>!!["now"].includes(t)||!Number.isNaN(new Date(t).getTime()),yt=s({name:"CxVuiDate",props:{value:{type:String},maxDate:{validator:gt},minDate:{validator:gt},elementId:{type:String}},data(){return{max:"now"===this.maxDate?bt:this.maxDate,min:"now"===this.minDate?bt:this.minDate}},methods:{handleInput(t){this.$emit("input",t.target.value)}},inject:["elementId"]},_t,[],!1,null,"1707aa50",null).exports;var xt=function(){var t=this.$createElement;return(this._self._c||t)("hr",{staticClass:"jfb"})};xt._withStripped=!0;i(5981);const wt=s({name:"Delimiter"},xt,[],!1,null,"362c518d",null).exports;var Ct=function(){var t=this,e=t.$createElement;return(t._self._c||e)("cx-vui-button",{attrs:{"button-style":"accent",size:"mini"},on:{click:t.print},scopedSlots:t._u([{key:"label",fn:function(){return[t.$slots.default?[t._t("default")]:[t._v("\n\t\t\t"+t._s(t.__("Print","jet-form-builder"))+"\n\t\t")]]},proxy:!0}],null,!0)})};Ct._withStripped=!0;const jt={name:"PrintButton",methods:{print(){window.print()}},mixins:[k]};i(7922);const St=s(jt,Ct,[],!1,null,"aa3950ea",null).exports;window.JetFBActions={renderCurrentPage:function(t,e={}){const i=new Vue({el:"#jet-form-builder_page_"+t.name,render:e=>e(t),...e});$("jet.fb.render.page",i)},getCurrentPath:T,getSearch:L,createPath:function(t={},e={},i=[]){const a=[];t={...L(),...t};for(const[e,n]of Object.entries(t))i.includes(e)||a.push(`${e}=${encodeURIComponent(n)}`);return[T(),a.join("&")].filter(t=>t).join("?")},addQueryArgs:function(t,e){e=new URL(e);const i=new URLSearchParams(e.search),a=[];for(const[e,i]of Object.entries(t))a.push(...I(e,i));for(const[t,e]of a)e&&i.append(t,e);return e.origin+e.pathname+"?"+i},LocalStorage:J,resolveRestUrl:function(t,e){if("object"!=typeof e||!Object.keys(e)?.length)return t;for(let[i,a]of Object.entries(e)){const e=new RegExp(`\\{${i}\\}`,"g");if(t.match(e)){t=t.replace(e,String(a));continue}const n=new RegExp(`\\(\\?P<${i}>(.*?)\\)`),s=t.match(n);if(Array.isArray(s)){if(a=""+a,!new RegExp(s[1]).test(a))throw new Error((0,O.sprintf)((0,O.__)("Invalid parameter for rest url. RegExp: %1$s, Value: %2$s","jet-form-builder"),s[1],a));t=t.replace(n,a)}}return t}},window.JetFBErrors={ApiInputError:e},window.JetFBComponents={CxVuiCollapseMini:o,DetailsTable:b,SimpleWrapperComponent:S,ListComponents:A,CxVuiTabsPanel:D,CxVuiTabs:B,ExternalLink:W,RowWrapper:S,ColumnWrapper:G,CxVuiSelect:Y,CxVuiPopup:it,CxVuiFSelect:mt,CxVuiDate:yt,Tooltip:C,Delimiter:wt,PrintButton:St},window.JetFBMixins={GetIncoming:r,SaveTabByAjax:l,i18n:k,ParseIncomingValueMixin:c,PromiseWrapper:u}})()})(); \ No newline at end of file diff --git a/assets/build/admin/pages/jfb-addons.asset.php b/assets/build/admin/pages/jfb-addons.asset.php index d6822f163..12ae3bdf1 100644 --- a/assets/build/admin/pages/jfb-addons.asset.php +++ b/assets/build/admin/pages/jfb-addons.asset.php @@ -1 +1 @@ - array(), 'version' => 'bfae07f8ba82cbe1f94d'); + array(), 'version' => '58e4f26e1e761fa19ecd'); diff --git a/assets/build/admin/pages/jfb-addons.js b/assets/build/admin/pages/jfb-addons.js index 5cec6d745..aef2595d5 100644 --- a/assets/build/admin/pages/jfb-addons.js +++ b/assets/build/admin/pages/jfb-addons.js @@ -1 +1 @@ -(()=>{var e={153:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var n=a(6758),i=a.n(n),s=a(935),o=a.n(s)()(i());o.push([e.id,".proccesing-state{opacity:.5;pointer-events:none}.jfb-addons-page__inner{padding:30px;height:100%}.jfb-addons-page__header{margin-bottom:30px}.jfb-addons-page__header-controls{display:flex;justify-content:flex-end;align-items:center;padding-bottom:15px;border-bottom:1px solid #dcdcdd}.jfb-addons-page__header-controls>.cx-vui-button{margin-left:10px}.jfb-addons-page .cx-vui-button{font-size:13px;font-weight:400;background-color:rgba(0,0,0,0)}.jfb-addons-page .cx-vui-button .button-icon{margin-right:5px}.jfb-addons-page .cx-vui-button--style-accent{color:#007cba;box-shadow:inset 0 0 0 1px #007cba}.jfb-addons-page .cx-vui-button--style-accent:hover{background-color:rgba(0,124,186,.0705882353)}.jfb-addons-page .cx-vui-button--style-accent .button-icon path{fill:#007cba}.jfb-addons-page .cx-vui-button--style-danger{color:#d6336c;box-shadow:inset 0 0 0 1px #d6336c}.jfb-addons-page .cx-vui-button--style-danger:hover{background-color:rgba(214,51,108,.0705882353)}.jfb-addons-page .cx-vui-button--style-danger .button-icon path{fill:#d6336c}.jfb-addons-page .cx-vui-button__content>span{display:flex;justify-content:center;align-items:center}.jfb-addons-page .cx-vui-popup__header{padding-bottom:15px;border-bottom:1px solid #dcdcdd;margin-bottom:30px}.jfb-addons-page .cx-vui-popup__header-title{font-weight:500;font-size:24px;line-height:36px;color:#23282d}.jfb-addons-page__license-form{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.jfb-addons-page__license-form>span{margin-bottom:10px}.jfb-addons-page__license-input{margin-bottom:10px}.jfb-addons-page .go-pro-banner{display:flex;flex-direction:column;justify-content:center;align-items:center;padding:24px 0;border-bottom:1px solid #dcdcdd}.jfb-addons-page .go-pro-banner__subtitle{font-size:18px;line-height:1.25;font-weight:500;color:#007cba;margin-bottom:5px}.jfb-addons-page .go-pro-banner__title{font-size:24px;line-height:1.25;font-weight:500;color:#23282d;margin-bottom:20px}.jfb-addons-page .go-pro-banner__button{color:#fff;background-color:#007cba}",""]);const d=o},611:(e,t,a)=>{"use strict";function n(e,t){for(var a=[],n={},i=0;if});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},o=i&&(document.head||document.getElementsByTagName("head")[0]),d=null,c=0,l=!1,r=function(){},u=null,p="data-vue-ssr-id",v="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(e,t,a,i){l=a,u=i||{};var o=n(e,t);return b(o),function(t){for(var a=[],i=0;ia.parts.length&&(n.parts.length=a.parts.length)}else{var o=[];for(i=0;i{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var a="",n=void 0!==t[5];return t[4]&&(a+="@supports (".concat(t[4],") {")),t[2]&&(a+="@media ".concat(t[2]," {")),n&&(a+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),a+=e(t),n&&(a+="}"),t[2]&&(a+="}"),t[4]&&(a+="}"),a})).join("")},t.i=function(e,a,n,i,s){"string"==typeof e&&(e=[[null,e,void 0]]);var o={};if(n)for(var d=0;d0?" ".concat(r[5]):""," {").concat(r[1],"}")),r[5]=s),a&&(r[2]?(r[1]="@media ".concat(r[2]," {").concat(r[1],"}"),r[2]=a):r[2]=a),i&&(r[4]?(r[1]="@supports (".concat(r[4],") {").concat(r[1],"}"),r[4]=i):r[4]="".concat(i)),t.push(r))}},t}},3517:(e,t,a)=>{var n=a(6321);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("1a01cdee",n,!1,{})},6321:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>d});var n=a(6758),i=a.n(n),s=a(935),o=a.n(s)()(i());o.push([e.id,".jfb-addons{margin-bottom:50px}.jfb-addons:last-child{margin-bottom:0}.jfb-addons a{color:#007cba}.jfb-addons__header{margin-bottom:20px}.jfb-addons__list{display:grid;grid-template-columns:repeat(4, 1fr);gap:40px}@media(max-width: 1140px){.jfb-addons__list{grid-template-columns:repeat(2, 1fr)}}.jfb-addons__item{transition:box-shadow .3s ease-out;border-radius:10px}.jfb-addons__item:hover{box-shadow:0px 4px 28px rgba(15,23,42,.1)}.jfb-addons__item.activated .jfb-addons__item-info{background-color:#fff}.jfb-addons__item.update-avaliable .jfb-addons__item-name .version{background-color:#d6336c}.jfb-addons__item.update-avaliable .jfb-addons__item-update .latest-version{color:#fff;background-color:#46b450;padding:2px 8px;border-radius:4px}.jfb-addons__item-inner{display:flex;flex-direction:column;align-items:stretch;height:100%}.jfb-addons__item-thumb{border-radius:10px 10px 0 0;line-height:0;overflow:hidden;position:relative}.jfb-addons__item-thumb .pro-badge{position:absolute;top:12px;left:12px}.jfb-addons__item-thumb img{width:100%;height:auto}.jfb-addons__item-info{display:flex;flex-direction:column;align-items:stretch;flex:1 1 auto;padding:20px;border-radius:0 0 10px 10px;border-width:0 1px 1px 1px;border-color:#dcdcdd;border-style:solid;background-color:#fff}.jfb-addons__item-name{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:10px}.jfb-addons__item-name .label{font-size:20px;font-weight:700;line-height:1.25}.jfb-addons__item-name .version{padding:1px 8px;border-radius:4px;color:#fff;background-color:#46b450;margin-left:10px}.jfb-addons__item-update{color:#7b7e81;margin-bottom:10px}.jfb-addons__item-license{margin-bottom:10px;color:#7b7e81}.jfb-addons__item-license .cx-vui-button{margin-left:3px}.jfb-addons__item-desc{flex:1 1 auto}.jfb-addons__item-desc a{text-decoration:none}.jfb-addons__item-actions{display:flex;justify-content:flex-start;align-items:center;flex-wrap:wrap;margin-top:20px}.jfb-addons__item-actions:empty{display:none}.jfb-addons__item-actions .cx-vui-button{margin-right:20px}",""]);const d=o},6758:e=>{"use strict";e.exports=function(e){return e[1]}},7101:(e,t,a)=>{var n=a(153);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("2075d987",n,!1,{})}},t={};function a(n){var i=t[n];if(void 0!==i)return i.exports;var s=t[n]={id:n,exports:{}};return e[n](s,s.exports,a),s.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons-page wrap",class:{"proccesing-state":e.proccesingState}},[a("h1",{staticClass:"cs-vui-title"},[e._v(e._s("JetFormBuilder Addons"))]),e._v(" "),a("div",{staticClass:"jfb-addons-page__inner cx-vui-panel"},[a("div",{staticClass:"jfb-addons-page__header"},[e.isLicenseMode?a("div",{staticClass:"jfb-addons-page__header-controls"},[a("cx-vui-button",{attrs:{"button-style":"accent",size:"mini",loading:e.checkUpdatesProcessed},on:{click:e.checkPluginsUpdate}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("svg",{staticClass:"button-icon",attrs:{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M11.7085 2.29171C10.5001 1.08337 8.8418 0.333374 7.00013 0.333374C3.3168 0.333374 0.341797 3.31671 0.341797 7.00004C0.341797 10.6834 3.3168 13.6667 7.00013 13.6667C10.1085 13.6667 12.7001 11.5417 13.4418 8.66671H11.7085C11.0251 10.6084 9.17513 12 7.00013 12C4.2418 12 2.00013 9.75837 2.00013 7.00004C2.00013 4.24171 4.2418 2.00004 7.00013 2.00004C8.38346 2.00004 9.6168 2.57504 10.5168 3.48337L7.83346 6.16671H13.6668V0.333374L11.7085 2.29171Z",fill:"#007CBA"}})]),e._v(" "),a("span",[e._v("Check For Updates")])])]),e._v(" "),a("cx-vui-button",{class:[e.isLicenseActivated?"cx-vui-button--style-danger":"cx-vui-button--style-accent"],attrs:{size:"mini"},on:{click:e.showLicensePopup}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("svg",{staticClass:"button-icon",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M15.4985 0H12.4897C12.4166 0 12.3487 0.0156709 12.286 0.0470127C12.2338 0.0679073 12.1867 0.104473 12.145 0.156709L5.7669 6.47209C5.62063 6.44074 5.46392 6.41463 5.29677 6.39373C5.12961 6.37284 4.96768 6.36239 4.81097 6.36239C4.16324 6.36239 3.54685 6.48776 2.9618 6.73849C2.37675 6.97878 1.85961 7.32354 1.41038 7.77277C0.961149 8.222 0.611166 8.73914 0.360431 9.32419C0.120144 9.90924 0 10.5309 0 11.189C0 11.8368 0.120144 12.4532 0.360431 13.0382C0.611166 13.6232 0.961149 14.1404 1.41038 14.5896C1.85961 15.0389 2.37675 15.3836 2.9618 15.6239C3.54685 15.8746 4.16324 16 4.81097 16C5.46915 16 6.09076 15.8746 6.67581 15.6239C7.26086 15.3836 7.778 15.0389 8.22723 14.5896C8.80183 14.015 9.19882 13.3464 9.41822 12.5837C9.64806 11.8211 9.68462 11.0375 9.52791 10.2331L10.8913 8.86974C10.9331 8.82795 10.9644 8.78093 10.9853 8.7287C11.0167 8.66601 11.0323 8.59811 11.0323 8.52498V7.02057H12.5367C12.6934 7.02057 12.8136 6.97356 12.8972 6.87953C12.9912 6.7855 13.0382 6.66536 13.0382 6.5191V5.01469H14.5426C14.6157 5.01469 14.6784 5.00424 14.7307 4.98335C14.7933 4.95201 14.8508 4.91022 14.903 4.85798L15.906 3.85504C15.9269 3.81326 15.9478 3.76624 15.9687 3.71401C15.9896 3.65132 16 3.58342 16 3.51028V0.501469C16 0.355207 15.953 0.235064 15.859 0.141038C15.7649 0.0470127 15.6448 0 15.4985 0ZM4.96768 12.7875C4.79008 12.9651 4.5968 13.0957 4.38786 13.1792C4.18936 13.2524 3.96474 13.2889 3.71401 13.2889C3.46327 13.2889 3.23343 13.2419 3.02449 13.1479C2.82599 13.0539 2.63794 12.9337 2.46033 12.7875C2.28273 12.6099 2.15214 12.4218 2.06856 12.2233C1.99543 12.0144 1.95886 11.7845 1.95886 11.5338C1.95886 11.2831 2.00588 11.0584 2.0999 10.8599C2.19393 10.651 2.31407 10.4577 2.46033 10.2801C2.7842 9.95625 3.19164 9.79432 3.68266 9.79432C4.18413 9.79432 4.5968 9.95625 4.92067 10.2801C5.09827 10.4577 5.22364 10.651 5.29677 10.8599C5.38035 11.0584 5.42214 11.2831 5.42214 11.5338C5.42214 11.7845 5.38035 12.0144 5.29677 12.2233C5.22364 12.4218 5.11394 12.6099 4.96768 12.7875Z",fill:"#D3D3D3"}})]),e._v(" "),e.isLicenseActivated?e._e():a("span",[e._v("Activate License")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("Deactivate License")]):e._e()])])],1):e._e(),e._v(" "),e.isLicenseActivated?e._e():a("div",{staticClass:"go-pro-banner"},[a("div",{staticClass:"go-pro-banner__subtitle"},[e._v("Features & Integrations")]),e._v(" "),a("div",{staticClass:"go-pro-banner__title"},[e._v("Extend functionality with PRO Addons")]),e._v(" "),a("cx-vui-button",{staticClass:"go-pro-banner__button",attrs:{"button-style":"default",size:"mini",url:e.goProLink,"tag-name":"a",target:"_blank"}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Go Pro")])])])],1)]),e._v(" "),0!==Object.keys(e.installedAddonList).length?a("div",{staticClass:"jfb-addons"},[e._m(0),e._v(" "),a("div",{staticClass:"jfb-addons__list"},e._l(e.installedAddonList,(function(e,t){return a("AddonItem",{key:t,attrs:{"addon-data":e}})})),1)]):e._e(),e._v(" "),0!==Object.keys(e.availableAddonList).length?a("div",{staticClass:"jfb-addons"},[e._m(1),e._v(" "),a("div",{staticClass:"jfb-addons__list"},e._l(e.availableAddonList,(function(e,t){return a("AddonItem",{key:t,attrs:{"addon-data":e}})})),1)]):e._e()]),e._v(" "),a("cx-vui-popup",{staticClass:"jfb-addons-page__license-popup",attrs:{footer:!1,"body-width":"540px"},model:{value:e.licensePopupVisible,callback:function(t){e.licensePopupVisible=t},expression:"licensePopupVisible"}},[a("div",{staticClass:"cx-vui-popup__header-title",attrs:{slot:"title"},slot:"title"},[e.isLicenseActivated?e._e():a("span",[e._v("Activate License")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("Deactivate License")]):e._e()]),e._v(" "),a("div",{staticClass:"jfb-addons-page__license-form",attrs:{slot:"content"},slot:"content"},[e.isLicenseActivated?e._e():a("span",[e._v("Activate license for automatic updates and awesome support")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("By deactivating the license you will not be able to update the addons")]):e._e(),e._v(" "),a("cx-vui-input",{staticClass:"jfb-addons-page__license-input",attrs:{size:"fullwidth",type:"password",autofocus:!0,"prevent-wrap":!0,placeholder:"Just paste it here"},model:{value:e.licenseKey,callback:function(t){e.licenseKey=t},expression:"licenseKey"}}),e._v(" "),a("cx-vui-button",{staticClass:"jfb-addons-page__license-action",attrs:{"button-style":"accent",size:"mini",loading:e.licenseProccesingState},on:{click:e.licenseAction}},[a("span",{attrs:{slot:"label"},slot:"label"},[e.isLicenseActivated?e._e():a("span",[e._v("Activate")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("Deactivate")]):e._e()])])],1)])],1)};e._withStripped=!0;var t=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons__item",class:{activated:e.addonData.isActivated,"update-avaliable":e.updateAvaliable}},[a("div",{staticClass:"jfb-addons__item-inner",class:{"proccesing-state":e.proccesingState}},[a("div",{staticClass:"jfb-addons__item-thumb"},[e.addonData.isInstalled?e._e():a("div",{staticClass:"pro-badge"},[a("svg",{attrs:{width:"40",height:"20",viewBox:"0 0 40 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("rect",{attrs:{width:"40",height:"20",rx:"4",fill:"#EE7B16"}}),e._v(" "),a("path",{attrs:{d:"M10.625 10.8301V14H9.14258V5.46875H12.4062C13.3594 5.46875 14.1152 5.7168 14.6738 6.21289C15.2363 6.70898 15.5176 7.36523 15.5176 8.18164C15.5176 9.01758 15.2422 9.66797 14.6914 10.1328C14.1445 10.5977 13.377 10.8301 12.3887 10.8301H10.625ZM10.625 9.64062H12.4062C12.9336 9.64062 13.3359 9.51758 13.6133 9.27148C13.8906 9.02148 14.0293 8.66211 14.0293 8.19336C14.0293 7.73242 13.8887 7.36523 13.6074 7.0918C13.3262 6.81445 12.9395 6.67188 12.4473 6.66406H10.625V9.64062ZM19.9531 10.7129H18.3008V14H16.8184V5.46875H19.8184C20.8027 5.46875 21.5625 5.68945 22.0977 6.13086C22.6328 6.57227 22.9004 7.21094 22.9004 8.04688C22.9004 8.61719 22.7617 9.0957 22.4844 9.48242C22.2109 9.86523 21.8281 10.1602 21.3359 10.3672L23.252 13.9238V14H21.6641L19.9531 10.7129ZM18.3008 9.52344H19.8242C20.3242 9.52344 20.7148 9.39844 20.9961 9.14844C21.2773 8.89453 21.418 8.54883 21.418 8.11133C21.418 7.6543 21.2871 7.30078 21.0254 7.05078C20.7676 6.80078 20.3809 6.67188 19.8652 6.66406H18.3008V9.52344ZM31.1152 9.95703C31.1152 10.793 30.9707 11.5273 30.6816 12.1602C30.3926 12.7891 29.9785 13.2734 29.4395 13.6133C28.9043 13.9492 28.2871 14.1172 27.5879 14.1172C26.8965 14.1172 26.2793 13.9492 25.7363 13.6133C25.1973 13.2734 24.7793 12.791 24.4824 12.166C24.1895 11.541 24.041 10.8203 24.0371 10.0039V9.52344C24.0371 8.69141 24.1836 7.95703 24.4766 7.32031C24.7734 6.68359 25.1895 6.19727 25.7246 5.86133C26.2637 5.52148 26.8809 5.35156 27.5762 5.35156C28.2715 5.35156 28.8867 5.51953 29.4219 5.85547C29.9609 6.1875 30.377 6.66797 30.6699 7.29688C30.9629 7.92188 31.1113 8.65039 31.1152 9.48242V9.95703ZM29.6328 9.51172C29.6328 8.56641 29.4531 7.8418 29.0938 7.33789C28.7383 6.83398 28.2324 6.58203 27.5762 6.58203C26.9355 6.58203 26.4336 6.83398 26.0703 7.33789C25.7109 7.83789 25.5273 8.54688 25.5195 9.46484V9.95703C25.5195 10.8945 25.7012 11.6191 26.0645 12.1309C26.4316 12.6426 26.9395 12.8984 27.5879 12.8984C28.2441 12.8984 28.748 12.6484 29.0996 12.1484C29.4551 11.6484 29.6328 10.918 29.6328 9.95703V9.51172Z",fill:"white"}})])]),e._v(" "),a("img",{attrs:{src:e.addonData.thumb,alt:""}})]),e._v(" "),a("div",{staticClass:"jfb-addons__item-info"},[a("div",{staticClass:"jfb-addons__item-name"},[a("span",{staticClass:"label"},[e._v(e._s(e.addonData.name))]),e._v(" "),a("span",{staticClass:"version"},[e._v(e._s(e.addonData.currentVersion))])]),e._v(" "),e.$parent.isLicenseActivated?a("div",{staticClass:"jfb-addons__item-update"},[e.updateAvaliable?e._e():a("div",[e._v("Your plugin is up to date")]),e._v(" "),e.updateAvaliable?a("div",[e._v("\n\t\t\t\t\tVersion "),a("span",{staticClass:"latest-version"},[e._v(e._s(e.addonData.version))]),e._v(" available\n\t\t\t\t\t"),!e.activateLicenceActionAvaliable&&e.isLicenseMode?a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",loading:e.updatePluginProcessed},on:{click:e.updatePlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Update Now")])])]):e._e()],1):e._e()]):e._e(),e._v(" "),e.activateLicenceActionAvaliable?a("div",{staticClass:"jfb-addons__item-license"},[a("span",[e._v("License not activated")]),e._v(" "),a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link"},on:{click:e.activateLicense}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Activate Now")])])])],1):e._e(),e._v(" "),a("div",{staticClass:"jfb-addons__item-desc"},[a("span",{domProps:{innerHTML:e._s(e.addonData.desc)}}),e._v(" "),a("a",{attrs:{href:e.learnMoreUrl,target:"_blank"}},[e._v("Learn More")])]),e._v(" "),a("div",{staticClass:"jfb-addons__item-actions"},[e.installActionAvaliable?a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",loading:e.actionPluginProcessed},on:{click:e.installPlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Install Addon")])])]):e._e(),e._v(" "),e.activateActionAvaliable?a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",loading:e.actionPluginProcessed},on:{click:e.activatePlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Activate Addon")])])]):e._e(),e._v(" "),e.deactivateActionAvaliable?a("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",loading:e.actionPluginProcessed},on:{click:e.deactivatePlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Deactivate Addon")])])]):e._e()],1)])])])};t._withStripped=!0;const n={name:"addon-item",props:{addonData:Object},data:()=>({actionPlugin:!1,actionPluginRequest:null,actionPluginProcessed:!1,updatePluginProcessed:!1}),computed:{classList:function(){return["jfb-addons__item",!!this.updateAvaliable&&"update-avaliable",!!this.activateAvaliable&&"activate-avaliable"]},learnMoreAvaliable(){return!this.$parent.isLicenseActivated},activateLicenceActionAvaliable(){return!(this.$parent.isLicenseActivated||!this.$parent.isLicenseMode)},installActionAvaliable(){return!(this.addonData.isInstalled||!this.$parent.isLicenseActivated)},activateActionAvaliable(){return!(!this.addonData.isInstalled||this.addonData.isActivated)},deactivateActionAvaliable(){return!(!this.addonData.isInstalled||!this.addonData.isActivated)},updateAvaliable(){return!!this.addonData.updateAvaliable},isLicenseMode(){return this.$parent.isLicenseMode},proccesingState(){return this.actionPluginProcessed||this.updatePluginProcessed},learnMoreUrl(){const e=this.$parent.isLicenseActivated?"jetformbuilder-license":"license-not-activated",[t]=this.addonData.slug.split("/");return`${this.addonData.demo}?${this.$parent.getUtmParamsString({utm_source:"plugin",utm_medium:"addons",utm_campaign:t.replace("jet-form-builder-",""),utm_content:`${e}/${this.$parent.themeInfo.authorSlug}`})}`}},methods:{activateLicense(){window.jfbEventBus.$emit("showLicensePopup")},installPlugin(){this.actionPlugin="install",this.pluginAction()},deactivatePlugin(){this.actionPlugin="deactivate",this.pluginAction()},activatePlugin(){this.actionPlugin="activate",this.pluginAction()},updatePlugin(){this.updateAvaliable&&(this.actionPlugin="update",this.pluginAction())},pluginAction:function(){let e=this;e.actionPluginRequest=jQuery.ajax({type:"POST",url:window.JetFBPageConfig.ajaxUrl,dataType:"json",data:{action:`jfb_addon_${e.actionPlugin}_action`,nonce:window.JetFBPageConfig.nonce,data:{plugin:e.addonData.slug}},beforeSend:function(t,a){switch(null!==e.actionPluginRequest&&e.actionPluginRequest.abort(),e.actionPlugin){case"install":case"activate":case"deactivate":e.actionPluginProcessed=!0;break;case"update":e.updatePluginProcessed=!0}},success:function(t,a,n){t.success?(e.$CXNotice.add({message:t.message,type:"success",duration:4e3}),window.jfbEventBus.$emit("updateAddonData",{slug:e.addonData.slug,addonData:t.data,action:e.actionPlugin})):e.$CXNotice.add({message:t.message,type:"error",duration:4e3})},error:function(t,a,n){e.$CXNotice.add({message:n,type:"error",duration:4e3})},complete:()=>this.onEndRequest()})},onEndRequest(){switch(this.actionPlugin){case"install":case"activate":case"deactivate":this.actionPluginProcessed=!1;break;case"update":this.updatePluginProcessed=!1}}}};function i(e,t,a,n,i,s,o,d){var c,l="function"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=a,l._compiled=!0),n&&(l.functional=!0),s&&(l._scopeId="data-v-"+s),o?(c=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},l._ssrRegister=c):i&&(c=d?function(){i.call(this,(l.functional?this.parent:this).$root.$options.shadowRoot)}:i),c)if(l.functional){l._injectStyles=c;var r=l.render;l.render=function(e,t){return c.call(t),r(e,t)}}else{var u=l.beforeCreate;l.beforeCreate=u?[].concat(u,c):[c]}return{exports:e,options:l}}a(3517);const s=i(n,t,[],!1,null,null,null).exports,{applyFilters:o,doAction:d}=wp.hooks;window.jfbEventBus=new Vue;const c={name:"jfb-addons",components:{AddonItem:s},data:()=>({allAddons:window.JetFBPageConfig.allAddons||{},licenseList:window.JetFBPageConfig.licenseList||[],licenseKey:window.JetFBPageConfig.licenseKey||"",themeInfo:window.JetFBPageConfig.themeInfo||!1,miscInfo:window.JetFBPageConfig.miscInfo||!1,licenseActivated:!1,licensePopupVisible:!1,licenseProccesingState:!1,licenseAjaxAction:null,checkUpdatesAction:null,checkUpdatesProcessed:!1,proccesingState:!1}),mounted:function(){window.jfbEventBus.$on("updateAddonData",this.updateAddonData),window.jfbEventBus.$on("showLicensePopup",this.showLicensePopup)},computed:{isLicenseMode:()=>""!==window.JetFBPageConfig.licenseMode,isLicenseActivated(){return 0!==this.licenseList.length},licenseActionType(){return this.isLicenseActivated?"deactivate_license":"activate_license"},installedAddonList(){let e={};for(let t in this.allAddons)this.allAddons[t].isInstalled&&(e[t]=this.allAddons[t]);return e},availableAddonList(){let e={};for(let t in this.allAddons)this.allAddons[t].isInstalled||(e[t]=this.allAddons[t]);return e},goProLink(){return`${this.miscInfo.pricingPageUrl}?${this.getUtmParamsString({utm_source:"plugin",utm_medium:"addons",utm_campaign:"go-pro-button",utm_content:`license-not-activated/${this.themeInfo.authorSlug}`})}`}},methods:{showLicensePopup(){this.licensePopupVisible=!0},updateAddonData(e){let t=e.slug,a=e.addonData,n=e.action;this.allAddons[t]=Object.assign({},this.allAddons[t],a),["activate","deactivate","update"].includes(n)&&(this.proccesingState=!0,setTimeout((function(){window.location.reload()}),1e3))},licenseAction(){var e=this;if(""===this.licenseKey)return e.$CXNotice.add({message:"License key is missing",type:"error",duration:4e3}),!1;this.licenseProccesingState=!0,e.licenseAjaxAction=jQuery.ajax({type:"POST",url:window.JetFBPageConfig.ajaxUrl,dataType:"json",data:{action:"jfb_license_action",nonce:window.JetFBPageConfig.nonce,data:{license:e.licenseKey,action:e.licenseActionType}},beforeSend:(t,a)=>{null!==e.licenseAjaxAction&&e.licenseAjaxAction.abort()},success:(t,a,n)=>{if(e.licenseProccesingState=!1,t.success){e.$CXNotice.add({message:t.message,type:"success",duration:4e3});let a=t.data;switch(a.license_key=e.licenseKey,e.licenseActionType){case"activate_license":e.licenseList.push(a);break;case"deactivate_license":e.licenseList=e.licenseList.filter((t=>e.licenseKey!==t.license_key)),e.licenseKey=""}e.licensePopupVisible=!1}else e.$CXNotice.add({message:t.message,type:"error",duration:4e3})}})},checkPluginsUpdate:function(){var e=this;e.checkUpdatesAction=jQuery.ajax({type:"POST",url:window.JetFBPageConfig.ajaxUrl,dataType:"json",data:{action:"jfb_license_service_action",nonce:window.JetFBPageConfig.nonce,data:{action:"check-plugin-update"}},beforeSend:(t,a)=>{null!==e.checkUpdatesAction&&e.checkUpdatesAction.abort(),e.checkUpdatesProcessed=!0},success:function(t,a,n){e.checkUpdatesProcessed=!1,t.success?(e.$CXNotice.add({message:t.message,type:"success",duration:4e3}),e.proccesingState=!0,setTimeout((function(){window.location.reload()}),1e3)):e.$CXNotice.add({message:t.message,type:"error",duration:4e3})}})},addLicense(e){this.licenseList.push(e),self.proccesingState=!0,setTimeout((function(){window.location.reload()}),3e3)},removeLicense(e){let t=!1;for(let a in this.licenseList)if(this.licenseList[a].licenseKey===e){t=a;break}t&&this.licenseList.splice(t,1),this.licensePopupVisible=!1,setTimeout((function(){window.location.reload()}),500)},getUtmParamsString(e={}){let t=!1;return 0===Object.keys(e).length||(t=Object.keys(e).map((t=>[t,e[t]].map(encodeURIComponent).join("="))).join("&")),t}}};a(7101);const l=i(c,e,[function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons__header"},[a("span",{staticClass:"cx-vui-subtitle"},[e._v("Your Installed Addons")])])},function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons__header"},[a("span",{staticClass:"cx-vui-subtitle"},[e._v("All Available Addons")])])}],!1,null,null,null).exports,{renderCurrentPage:r}=window.JetFBActions;r(l)})()})(); \ No newline at end of file +(()=>{var e={153(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>d});var n=a(6758),i=a.n(n),s=a(935),o=a.n(s)()(i());o.push([e.id,".proccesing-state{opacity:.5;pointer-events:none}.jfb-addons-page__inner{padding:30px;height:100%}.jfb-addons-page__header{margin-bottom:30px}.jfb-addons-page__header-controls{display:flex;justify-content:flex-end;align-items:center;padding-bottom:15px;border-bottom:1px solid #dcdcdd}.jfb-addons-page__header-controls>.cx-vui-button{margin-left:10px}.jfb-addons-page .cx-vui-button{font-size:13px;font-weight:400;background-color:rgba(0,0,0,0)}.jfb-addons-page .cx-vui-button .button-icon{margin-right:5px}.jfb-addons-page .cx-vui-button--style-accent{color:#007cba;box-shadow:inset 0 0 0 1px #007cba}.jfb-addons-page .cx-vui-button--style-accent:hover{background-color:rgba(0,124,186,.0705882353)}.jfb-addons-page .cx-vui-button--style-accent .button-icon path{fill:#007cba}.jfb-addons-page .cx-vui-button--style-danger{color:#d6336c;box-shadow:inset 0 0 0 1px #d6336c}.jfb-addons-page .cx-vui-button--style-danger:hover{background-color:rgba(214,51,108,.0705882353)}.jfb-addons-page .cx-vui-button--style-danger .button-icon path{fill:#d6336c}.jfb-addons-page .cx-vui-button__content>span{display:flex;justify-content:center;align-items:center}.jfb-addons-page .cx-vui-popup__header{padding-bottom:15px;border-bottom:1px solid #dcdcdd;margin-bottom:30px}.jfb-addons-page .cx-vui-popup__header-title{font-weight:500;font-size:24px;line-height:36px;color:#23282d}.jfb-addons-page__license-form{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.jfb-addons-page__license-form>span{margin-bottom:10px}.jfb-addons-page__license-input{margin-bottom:10px}.jfb-addons-page .go-pro-banner{display:flex;flex-direction:column;justify-content:center;align-items:center;padding:24px 0;border-bottom:1px solid #dcdcdd}.jfb-addons-page .go-pro-banner__subtitle{font-size:18px;line-height:1.25;font-weight:500;color:#007cba;margin-bottom:5px}.jfb-addons-page .go-pro-banner__title{font-size:24px;line-height:1.25;font-weight:500;color:#23282d;margin-bottom:20px}.jfb-addons-page .go-pro-banner__button{color:#fff;background-color:#007cba}",""]);const d=o},6321(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>d});var n=a(6758),i=a.n(n),s=a(935),o=a.n(s)()(i());o.push([e.id,".jfb-addons{margin-bottom:50px}.jfb-addons:last-child{margin-bottom:0}.jfb-addons a{color:#007cba}.jfb-addons__header{margin-bottom:20px}.jfb-addons__list{display:grid;grid-template-columns:repeat(4, 1fr);gap:40px}@media(max-width: 1140px){.jfb-addons__list{grid-template-columns:repeat(2, 1fr)}}.jfb-addons__item{transition:box-shadow .3s ease-out;border-radius:10px}.jfb-addons__item:hover{box-shadow:0px 4px 28px rgba(15,23,42,.1)}.jfb-addons__item.activated .jfb-addons__item-info{background-color:#fff}.jfb-addons__item.update-avaliable .jfb-addons__item-name .version{background-color:#d6336c}.jfb-addons__item.update-avaliable .jfb-addons__item-update .latest-version{color:#fff;background-color:#46b450;padding:2px 8px;border-radius:4px}.jfb-addons__item-inner{display:flex;flex-direction:column;align-items:stretch;height:100%}.jfb-addons__item-thumb{border-radius:10px 10px 0 0;line-height:0;overflow:hidden;position:relative}.jfb-addons__item-thumb .pro-badge{position:absolute;top:12px;left:12px}.jfb-addons__item-thumb img{width:100%;height:auto}.jfb-addons__item-info{display:flex;flex-direction:column;align-items:stretch;flex:1 1 auto;padding:20px;border-radius:0 0 10px 10px;border-width:0 1px 1px 1px;border-color:#dcdcdd;border-style:solid;background-color:#fff}.jfb-addons__item-name{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:10px}.jfb-addons__item-name .label{font-size:20px;font-weight:700;line-height:1.25}.jfb-addons__item-name .version{padding:1px 8px;border-radius:4px;color:#fff;background-color:#46b450;margin-left:10px}.jfb-addons__item-update{color:#7b7e81;margin-bottom:10px}.jfb-addons__item-license{margin-bottom:10px;color:#7b7e81}.jfb-addons__item-license .cx-vui-button{margin-left:3px}.jfb-addons__item-desc{flex:1 1 auto}.jfb-addons__item-desc a{text-decoration:none}.jfb-addons__item-actions{display:flex;justify-content:flex-start;align-items:center;flex-wrap:wrap;margin-top:20px}.jfb-addons__item-actions:empty{display:none}.jfb-addons__item-actions .cx-vui-button{margin-right:20px}",""]);const d=o},935(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var a="",n=void 0!==t[5];return t[4]&&(a+="@supports (".concat(t[4],") {")),t[2]&&(a+="@media ".concat(t[2]," {")),n&&(a+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),a+=e(t),n&&(a+="}"),t[2]&&(a+="}"),t[4]&&(a+="}"),a}).join("")},t.i=function(e,a,n,i,s){"string"==typeof e&&(e=[[null,e,void 0]]);var o={};if(n)for(var d=0;d0?" ".concat(r[5]):""," {").concat(r[1],"}")),r[5]=s),a&&(r[2]?(r[1]="@media ".concat(r[2]," {").concat(r[1],"}"),r[2]=a):r[2]=a),i&&(r[4]?(r[1]="@supports (".concat(r[4],") {").concat(r[1],"}"),r[4]=i):r[4]="".concat(i)),t.push(r))}},t}},6758(e){"use strict";e.exports=function(e){return e[1]}},7101(e,t,a){var n=a(153);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("2075d987",n,!1,{})},3517(e,t,a){var n=a(6321);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("1a01cdee",n,!1,{})},611(e,t,a){"use strict";function n(e,t){for(var a=[],n={},i=0;if});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},o=i&&(document.head||document.getElementsByTagName("head")[0]),d=null,c=0,l=!1,r=function(){},u=null,p="data-vue-ssr-id",v="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(e,t,a,i){l=a,u=i||{};var o=n(e,t);return b(o),function(t){for(var a=[],i=0;ia.parts.length&&(n.parts.length=a.parts.length)}else{var o=[];for(i=0;i{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons-page wrap",class:{"proccesing-state":e.proccesingState}},[a("h1",{staticClass:"cs-vui-title"},[e._v(e._s("JetFormBuilder Addons"))]),e._v(" "),a("div",{staticClass:"jfb-addons-page__inner cx-vui-panel"},[a("div",{staticClass:"jfb-addons-page__header"},[e.isLicenseMode?a("div",{staticClass:"jfb-addons-page__header-controls"},[a("cx-vui-button",{attrs:{"button-style":"accent",size:"mini",loading:e.checkUpdatesProcessed},on:{click:e.checkPluginsUpdate}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("svg",{staticClass:"button-icon",attrs:{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M11.7085 2.29171C10.5001 1.08337 8.8418 0.333374 7.00013 0.333374C3.3168 0.333374 0.341797 3.31671 0.341797 7.00004C0.341797 10.6834 3.3168 13.6667 7.00013 13.6667C10.1085 13.6667 12.7001 11.5417 13.4418 8.66671H11.7085C11.0251 10.6084 9.17513 12 7.00013 12C4.2418 12 2.00013 9.75837 2.00013 7.00004C2.00013 4.24171 4.2418 2.00004 7.00013 2.00004C8.38346 2.00004 9.6168 2.57504 10.5168 3.48337L7.83346 6.16671H13.6668V0.333374L11.7085 2.29171Z",fill:"#007CBA"}})]),e._v(" "),a("span",[e._v("Check For Updates")])])]),e._v(" "),a("cx-vui-button",{class:[e.isLicenseActivated?"cx-vui-button--style-danger":"cx-vui-button--style-accent"],attrs:{size:"mini"},on:{click:e.showLicensePopup}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("svg",{staticClass:"button-icon",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M15.4985 0H12.4897C12.4166 0 12.3487 0.0156709 12.286 0.0470127C12.2338 0.0679073 12.1867 0.104473 12.145 0.156709L5.7669 6.47209C5.62063 6.44074 5.46392 6.41463 5.29677 6.39373C5.12961 6.37284 4.96768 6.36239 4.81097 6.36239C4.16324 6.36239 3.54685 6.48776 2.9618 6.73849C2.37675 6.97878 1.85961 7.32354 1.41038 7.77277C0.961149 8.222 0.611166 8.73914 0.360431 9.32419C0.120144 9.90924 0 10.5309 0 11.189C0 11.8368 0.120144 12.4532 0.360431 13.0382C0.611166 13.6232 0.961149 14.1404 1.41038 14.5896C1.85961 15.0389 2.37675 15.3836 2.9618 15.6239C3.54685 15.8746 4.16324 16 4.81097 16C5.46915 16 6.09076 15.8746 6.67581 15.6239C7.26086 15.3836 7.778 15.0389 8.22723 14.5896C8.80183 14.015 9.19882 13.3464 9.41822 12.5837C9.64806 11.8211 9.68462 11.0375 9.52791 10.2331L10.8913 8.86974C10.9331 8.82795 10.9644 8.78093 10.9853 8.7287C11.0167 8.66601 11.0323 8.59811 11.0323 8.52498V7.02057H12.5367C12.6934 7.02057 12.8136 6.97356 12.8972 6.87953C12.9912 6.7855 13.0382 6.66536 13.0382 6.5191V5.01469H14.5426C14.6157 5.01469 14.6784 5.00424 14.7307 4.98335C14.7933 4.95201 14.8508 4.91022 14.903 4.85798L15.906 3.85504C15.9269 3.81326 15.9478 3.76624 15.9687 3.71401C15.9896 3.65132 16 3.58342 16 3.51028V0.501469C16 0.355207 15.953 0.235064 15.859 0.141038C15.7649 0.0470127 15.6448 0 15.4985 0ZM4.96768 12.7875C4.79008 12.9651 4.5968 13.0957 4.38786 13.1792C4.18936 13.2524 3.96474 13.2889 3.71401 13.2889C3.46327 13.2889 3.23343 13.2419 3.02449 13.1479C2.82599 13.0539 2.63794 12.9337 2.46033 12.7875C2.28273 12.6099 2.15214 12.4218 2.06856 12.2233C1.99543 12.0144 1.95886 11.7845 1.95886 11.5338C1.95886 11.2831 2.00588 11.0584 2.0999 10.8599C2.19393 10.651 2.31407 10.4577 2.46033 10.2801C2.7842 9.95625 3.19164 9.79432 3.68266 9.79432C4.18413 9.79432 4.5968 9.95625 4.92067 10.2801C5.09827 10.4577 5.22364 10.651 5.29677 10.8599C5.38035 11.0584 5.42214 11.2831 5.42214 11.5338C5.42214 11.7845 5.38035 12.0144 5.29677 12.2233C5.22364 12.4218 5.11394 12.6099 4.96768 12.7875Z",fill:"#D3D3D3"}})]),e._v(" "),e.isLicenseActivated?e._e():a("span",[e._v("Activate License")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("Deactivate License")]):e._e()])])],1):e._e(),e._v(" "),e.isLicenseActivated?e._e():a("div",{staticClass:"go-pro-banner"},[a("div",{staticClass:"go-pro-banner__subtitle"},[e._v("Features & Integrations")]),e._v(" "),a("div",{staticClass:"go-pro-banner__title"},[e._v("Extend functionality with PRO Addons")]),e._v(" "),a("cx-vui-button",{staticClass:"go-pro-banner__button",attrs:{"button-style":"default",size:"mini",url:e.goProLink,"tag-name":"a",target:"_blank"}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Go Pro")])])])],1)]),e._v(" "),0!==Object.keys(e.installedAddonList).length?a("div",{staticClass:"jfb-addons"},[e._m(0),e._v(" "),a("div",{staticClass:"jfb-addons__list"},e._l(e.installedAddonList,function(e,t){return a("AddonItem",{key:t,attrs:{"addon-data":e}})}),1)]):e._e(),e._v(" "),0!==Object.keys(e.availableAddonList).length?a("div",{staticClass:"jfb-addons"},[e._m(1),e._v(" "),a("div",{staticClass:"jfb-addons__list"},e._l(e.availableAddonList,function(e,t){return a("AddonItem",{key:t,attrs:{"addon-data":e}})}),1)]):e._e()]),e._v(" "),a("cx-vui-popup",{staticClass:"jfb-addons-page__license-popup",attrs:{footer:!1,"body-width":"540px"},model:{value:e.licensePopupVisible,callback:function(t){e.licensePopupVisible=t},expression:"licensePopupVisible"}},[a("div",{staticClass:"cx-vui-popup__header-title",attrs:{slot:"title"},slot:"title"},[e.isLicenseActivated?e._e():a("span",[e._v("Activate License")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("Deactivate License")]):e._e()]),e._v(" "),a("div",{staticClass:"jfb-addons-page__license-form",attrs:{slot:"content"},slot:"content"},[e.isLicenseActivated?e._e():a("span",[e._v("Activate license for automatic updates and awesome support")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("By deactivating the license you will not be able to update the addons")]):e._e(),e._v(" "),a("cx-vui-input",{staticClass:"jfb-addons-page__license-input",attrs:{size:"fullwidth",type:"password",autofocus:!0,"prevent-wrap":!0,placeholder:"Just paste it here"},model:{value:e.licenseKey,callback:function(t){e.licenseKey=t},expression:"licenseKey"}}),e._v(" "),a("cx-vui-button",{staticClass:"jfb-addons-page__license-action",attrs:{"button-style":"accent",size:"mini",loading:e.licenseProccesingState},on:{click:e.licenseAction}},[a("span",{attrs:{slot:"label"},slot:"label"},[e.isLicenseActivated?e._e():a("span",[e._v("Activate")]),e._v(" "),e.isLicenseActivated?a("span",[e._v("Deactivate")]):e._e()])])],1)])],1)};e._withStripped=!0;var t=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons__item",class:{activated:e.addonData.isActivated,"update-avaliable":e.updateAvaliable}},[a("div",{staticClass:"jfb-addons__item-inner",class:{"proccesing-state":e.proccesingState}},[a("div",{staticClass:"jfb-addons__item-thumb"},[e.addonData.isInstalled?e._e():a("div",{staticClass:"pro-badge"},[a("svg",{attrs:{width:"40",height:"20",viewBox:"0 0 40 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("rect",{attrs:{width:"40",height:"20",rx:"4",fill:"#EE7B16"}}),e._v(" "),a("path",{attrs:{d:"M10.625 10.8301V14H9.14258V5.46875H12.4062C13.3594 5.46875 14.1152 5.7168 14.6738 6.21289C15.2363 6.70898 15.5176 7.36523 15.5176 8.18164C15.5176 9.01758 15.2422 9.66797 14.6914 10.1328C14.1445 10.5977 13.377 10.8301 12.3887 10.8301H10.625ZM10.625 9.64062H12.4062C12.9336 9.64062 13.3359 9.51758 13.6133 9.27148C13.8906 9.02148 14.0293 8.66211 14.0293 8.19336C14.0293 7.73242 13.8887 7.36523 13.6074 7.0918C13.3262 6.81445 12.9395 6.67188 12.4473 6.66406H10.625V9.64062ZM19.9531 10.7129H18.3008V14H16.8184V5.46875H19.8184C20.8027 5.46875 21.5625 5.68945 22.0977 6.13086C22.6328 6.57227 22.9004 7.21094 22.9004 8.04688C22.9004 8.61719 22.7617 9.0957 22.4844 9.48242C22.2109 9.86523 21.8281 10.1602 21.3359 10.3672L23.252 13.9238V14H21.6641L19.9531 10.7129ZM18.3008 9.52344H19.8242C20.3242 9.52344 20.7148 9.39844 20.9961 9.14844C21.2773 8.89453 21.418 8.54883 21.418 8.11133C21.418 7.6543 21.2871 7.30078 21.0254 7.05078C20.7676 6.80078 20.3809 6.67188 19.8652 6.66406H18.3008V9.52344ZM31.1152 9.95703C31.1152 10.793 30.9707 11.5273 30.6816 12.1602C30.3926 12.7891 29.9785 13.2734 29.4395 13.6133C28.9043 13.9492 28.2871 14.1172 27.5879 14.1172C26.8965 14.1172 26.2793 13.9492 25.7363 13.6133C25.1973 13.2734 24.7793 12.791 24.4824 12.166C24.1895 11.541 24.041 10.8203 24.0371 10.0039V9.52344C24.0371 8.69141 24.1836 7.95703 24.4766 7.32031C24.7734 6.68359 25.1895 6.19727 25.7246 5.86133C26.2637 5.52148 26.8809 5.35156 27.5762 5.35156C28.2715 5.35156 28.8867 5.51953 29.4219 5.85547C29.9609 6.1875 30.377 6.66797 30.6699 7.29688C30.9629 7.92188 31.1113 8.65039 31.1152 9.48242V9.95703ZM29.6328 9.51172C29.6328 8.56641 29.4531 7.8418 29.0938 7.33789C28.7383 6.83398 28.2324 6.58203 27.5762 6.58203C26.9355 6.58203 26.4336 6.83398 26.0703 7.33789C25.7109 7.83789 25.5273 8.54688 25.5195 9.46484V9.95703C25.5195 10.8945 25.7012 11.6191 26.0645 12.1309C26.4316 12.6426 26.9395 12.8984 27.5879 12.8984C28.2441 12.8984 28.748 12.6484 29.0996 12.1484C29.4551 11.6484 29.6328 10.918 29.6328 9.95703V9.51172Z",fill:"white"}})])]),e._v(" "),a("img",{attrs:{src:e.addonData.thumb,alt:""}})]),e._v(" "),a("div",{staticClass:"jfb-addons__item-info"},[a("div",{staticClass:"jfb-addons__item-name"},[a("span",{staticClass:"label"},[e._v(e._s(e.addonData.name))]),e._v(" "),a("span",{staticClass:"version"},[e._v(e._s(e.addonData.currentVersion))])]),e._v(" "),e.$parent.isLicenseActivated?a("div",{staticClass:"jfb-addons__item-update"},[e.updateAvaliable?e._e():a("div",[e._v("Your plugin is up to date")]),e._v(" "),e.updateAvaliable?a("div",[e._v("\n\t\t\t\t\tVersion "),a("span",{staticClass:"latest-version"},[e._v(e._s(e.addonData.version))]),e._v(" available\n\t\t\t\t\t"),!e.activateLicenceActionAvaliable&&e.isLicenseMode?a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",loading:e.updatePluginProcessed},on:{click:e.updatePlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Update Now")])])]):e._e()],1):e._e()]):e._e(),e._v(" "),e.activateLicenceActionAvaliable?a("div",{staticClass:"jfb-addons__item-license"},[a("span",[e._v("License not activated")]),e._v(" "),a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link"},on:{click:e.activateLicense}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Activate Now")])])])],1):e._e(),e._v(" "),a("div",{staticClass:"jfb-addons__item-desc"},[a("span",{domProps:{innerHTML:e._s(e.addonData.desc)}}),e._v(" "),a("a",{attrs:{href:e.learnMoreUrl,target:"_blank"}},[e._v("Learn More")])]),e._v(" "),a("div",{staticClass:"jfb-addons__item-actions"},[e.installActionAvaliable?a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",loading:e.actionPluginProcessed},on:{click:e.installPlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Install Addon")])])]):e._e(),e._v(" "),e.activateActionAvaliable?a("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",loading:e.actionPluginProcessed},on:{click:e.activatePlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Activate Addon")])])]):e._e(),e._v(" "),e.deactivateActionAvaliable?a("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",loading:e.actionPluginProcessed},on:{click:e.deactivatePlugin}},[a("span",{attrs:{slot:"label"},slot:"label"},[a("span",[e._v("Deactivate Addon")])])]):e._e()],1)])])])};t._withStripped=!0;const n={name:"addon-item",props:{addonData:Object},data:()=>({actionPlugin:!1,actionPluginRequest:null,actionPluginProcessed:!1,updatePluginProcessed:!1}),computed:{classList:function(){return["jfb-addons__item",!!this.updateAvaliable&&"update-avaliable",!!this.activateAvaliable&&"activate-avaliable"]},learnMoreAvaliable(){return!this.$parent.isLicenseActivated},activateLicenceActionAvaliable(){return!(this.$parent.isLicenseActivated||!this.$parent.isLicenseMode)},installActionAvaliable(){return!(this.addonData.isInstalled||!this.$parent.isLicenseActivated)},activateActionAvaliable(){return!(!this.addonData.isInstalled||this.addonData.isActivated)},deactivateActionAvaliable(){return!(!this.addonData.isInstalled||!this.addonData.isActivated)},updateAvaliable(){return!!this.addonData.updateAvaliable},isLicenseMode(){return this.$parent.isLicenseMode},proccesingState(){return this.actionPluginProcessed||this.updatePluginProcessed},learnMoreUrl(){const e=this.$parent.isLicenseActivated?"jetformbuilder-license":"license-not-activated",[t]=this.addonData.slug.split("/");return`${this.addonData.demo}?${this.$parent.getUtmParamsString({utm_source:"plugin",utm_medium:"addons",utm_campaign:t.replace("jet-form-builder-",""),utm_content:`${e}/${this.$parent.themeInfo.authorSlug}`})}`}},methods:{activateLicense(){window.jfbEventBus.$emit("showLicensePopup")},installPlugin(){this.actionPlugin="install",this.pluginAction()},deactivatePlugin(){this.actionPlugin="deactivate",this.pluginAction()},activatePlugin(){this.actionPlugin="activate",this.pluginAction()},updatePlugin(){this.updateAvaliable&&(this.actionPlugin="update",this.pluginAction())},pluginAction:function(){let e=this;e.actionPluginRequest=jQuery.ajax({type:"POST",url:window.JetFBPageConfig.ajaxUrl,dataType:"json",data:{action:`jfb_addon_${e.actionPlugin}_action`,nonce:window.JetFBPageConfig.nonce,data:{plugin:e.addonData.slug}},beforeSend:function(t,a){switch(null!==e.actionPluginRequest&&e.actionPluginRequest.abort(),e.actionPlugin){case"install":case"activate":case"deactivate":e.actionPluginProcessed=!0;break;case"update":e.updatePluginProcessed=!0}},success:function(t,a,n){t.success?(e.$CXNotice.add({message:t.message,type:"success",duration:4e3}),window.jfbEventBus.$emit("updateAddonData",{slug:e.addonData.slug,addonData:t.data,action:e.actionPlugin})):e.$CXNotice.add({message:t.message,type:"error",duration:4e3})},error:function(t,a,n){e.$CXNotice.add({message:n,type:"error",duration:4e3})},complete:()=>this.onEndRequest()})},onEndRequest(){switch(this.actionPlugin){case"install":case"activate":case"deactivate":this.actionPluginProcessed=!1;break;case"update":this.updatePluginProcessed=!1}}}};function i(e,t,a,n,i,s,o,d){var c,l="function"==typeof e?e.options:e;if(t&&(l.render=t,l.staticRenderFns=a,l._compiled=!0),n&&(l.functional=!0),s&&(l._scopeId="data-v-"+s),o?(c=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},l._ssrRegister=c):i&&(c=d?function(){i.call(this,(l.functional?this.parent:this).$root.$options.shadowRoot)}:i),c)if(l.functional){l._injectStyles=c;var r=l.render;l.render=function(e,t){return c.call(t),r(e,t)}}else{var u=l.beforeCreate;l.beforeCreate=u?[].concat(u,c):[c]}return{exports:e,options:l}}a(3517);const s=i(n,t,[],!1,null,null,null).exports,{applyFilters:o,doAction:d}=wp.hooks;window.jfbEventBus=new Vue;const c={name:"jfb-addons",components:{AddonItem:s},data:()=>({allAddons:window.JetFBPageConfig.allAddons||{},licenseList:window.JetFBPageConfig.licenseList||[],licenseKey:window.JetFBPageConfig.licenseKey||"",themeInfo:window.JetFBPageConfig.themeInfo||!1,miscInfo:window.JetFBPageConfig.miscInfo||!1,licenseActivated:!1,licensePopupVisible:!1,licenseProccesingState:!1,licenseAjaxAction:null,checkUpdatesAction:null,checkUpdatesProcessed:!1,proccesingState:!1}),mounted:function(){window.jfbEventBus.$on("updateAddonData",this.updateAddonData),window.jfbEventBus.$on("showLicensePopup",this.showLicensePopup)},computed:{isLicenseMode:()=>""!==window.JetFBPageConfig.licenseMode,isLicenseActivated(){return 0!==this.licenseList.length},licenseActionType(){return this.isLicenseActivated?"deactivate_license":"activate_license"},installedAddonList(){let e={};for(let t in this.allAddons)this.allAddons[t].isInstalled&&(e[t]=this.allAddons[t]);return e},availableAddonList(){let e={};for(let t in this.allAddons)this.allAddons[t].isInstalled||(e[t]=this.allAddons[t]);return e},goProLink(){return`${this.miscInfo.pricingPageUrl}?${this.getUtmParamsString({utm_source:"plugin",utm_medium:"addons",utm_campaign:"go-pro-button",utm_content:`license-not-activated/${this.themeInfo.authorSlug}`})}`}},methods:{showLicensePopup(){this.licensePopupVisible=!0},updateAddonData(e){let t=e.slug,a=e.addonData,n=e.action;this.allAddons[t]=Object.assign({},this.allAddons[t],a),["activate","deactivate","update"].includes(n)&&(this.proccesingState=!0,setTimeout(function(){window.location.reload()},1e3))},licenseAction(){var e=this;if(""===this.licenseKey)return e.$CXNotice.add({message:"License key is missing",type:"error",duration:4e3}),!1;this.licenseProccesingState=!0,e.licenseAjaxAction=jQuery.ajax({type:"POST",url:window.JetFBPageConfig.ajaxUrl,dataType:"json",data:{action:"jfb_license_action",nonce:window.JetFBPageConfig.nonce,data:{license:e.licenseKey,action:e.licenseActionType}},beforeSend:(t,a)=>{null!==e.licenseAjaxAction&&e.licenseAjaxAction.abort()},success:(t,a,n)=>{if(e.licenseProccesingState=!1,t.success){e.$CXNotice.add({message:t.message,type:"success",duration:4e3});let a=t.data;switch(a.license_key=e.licenseKey,e.licenseActionType){case"activate_license":e.licenseList.push(a);break;case"deactivate_license":e.licenseList=e.licenseList.filter(t=>e.licenseKey!==t.license_key),e.licenseKey=""}e.licensePopupVisible=!1}else e.$CXNotice.add({message:t.message,type:"error",duration:4e3})}})},checkPluginsUpdate:function(){var e=this;e.checkUpdatesAction=jQuery.ajax({type:"POST",url:window.JetFBPageConfig.ajaxUrl,dataType:"json",data:{action:"jfb_license_service_action",nonce:window.JetFBPageConfig.nonce,data:{action:"check-plugin-update"}},beforeSend:(t,a)=>{null!==e.checkUpdatesAction&&e.checkUpdatesAction.abort(),e.checkUpdatesProcessed=!0},success:function(t,a,n){e.checkUpdatesProcessed=!1,t.success?(e.$CXNotice.add({message:t.message,type:"success",duration:4e3}),e.proccesingState=!0,setTimeout(function(){window.location.reload()},1e3)):e.$CXNotice.add({message:t.message,type:"error",duration:4e3})}})},addLicense(e){this.licenseList.push(e),self.proccesingState=!0,setTimeout(function(){window.location.reload()},3e3)},removeLicense(e){let t=!1;for(let a in this.licenseList)if(this.licenseList[a].licenseKey===e){t=a;break}t&&this.licenseList.splice(t,1),this.licensePopupVisible=!1,setTimeout(function(){window.location.reload()},500)},getUtmParamsString(e={}){let t=!1;return 0===Object.keys(e).length||(t=Object.keys(e).map(t=>[t,e[t]].map(encodeURIComponent).join("=")).join("&")),t}}};a(7101);const l=i(c,e,[function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons__header"},[a("span",{staticClass:"cx-vui-subtitle"},[e._v("Your Installed Addons")])])},function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"jfb-addons__header"},[a("span",{staticClass:"cx-vui-subtitle"},[e._v("All Available Addons")])])}],!1,null,null,null).exports,{renderCurrentPage:r}=window.JetFBActions;r(l)})()})(); \ No newline at end of file diff --git a/assets/build/admin/pages/jfb-settings.asset.php b/assets/build/admin/pages/jfb-settings.asset.php index 455eef387..47b4476ae 100644 --- a/assets/build/admin/pages/jfb-settings.asset.php +++ b/assets/build/admin/pages/jfb-settings.asset.php @@ -1 +1 @@ - array('wp-i18n'), 'version' => 'c7318b86f3ea24c07f14'); + array('wp-i18n'), 'version' => '7c4b81a0908947caebc0'); diff --git a/assets/build/admin/pages/jfb-settings.js b/assets/build/admin/pages/jfb-settings.js index 0bb477ac2..f7422552d 100644 --- a/assets/build/admin/pages/jfb-settings.js +++ b/assets/build/admin/pages/jfb-settings.js @@ -1 +1 @@ -(()=>{var e={52:(e,t,a)=>{var n=a(6875);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("3f74c29a",n,!1,{})},74:(e,t,a)=>{var n=a(1982);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("df5e862a",n,!1,{})},611:(e,t,a)=>{"use strict";function n(e,t){for(var a=[],n={},i=0;ih});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},r=i&&(document.head||document.getElementsByTagName("head")[0]),o=null,l=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",_="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function h(e,t,a,i){c=a,d=i||{};var r=n(e,t);return f(r),function(t){for(var a=[],i=0;ia.parts.length&&(n.parts.length=a.parts.length)}else{var r=[];for(i=0;i{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var a="",n=void 0!==t[5];return t[4]&&(a+="@supports (".concat(t[4],") {")),t[2]&&(a+="@media ".concat(t[2]," {")),n&&(a+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),a+=e(t),n&&(a+="}"),t[2]&&(a+="}"),t[4]&&(a+="}"),a})).join("")},t.i=function(e,a,n,i,s){"string"==typeof e&&(e=[[null,e,void 0]]);var r={};if(n)for(var o=0;o0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=s),a&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=a):u[2]=a),i&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=i):u[4]="".concat(i)),t.push(u))}},t}},1027:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,"\n.jfb-has-error .cx-vui-input[data-v-2967d914],\n.jfb-has-error input[data-v-2967d914] {\n border-color: #dc2626 !important;\n outline: none;\n}\n.jfb-field-error[data-v-2967d914] {\n margin: 6px 0 12px;\n color: #dc2626;\n font-size: 12px;\n line-height: 1.4;\n text-align:right;\n}\n",""]);const o=r},1982:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,"\n.user-journey-select select.cx-vui-select {\n\tpadding: 6px 24px 6px 12px;\n}\n",""]);const o=r},2995:(e,t,a)=>{var n=a(4495);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("14f9a7b5",n,!1,{})},4495:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,".jfb-content{display:flex;flex-wrap:wrap;gap:2em;margin-top:1em}.jfb-content-main{flex:1}",""]);const o=r},5654:(e,t,a)=>{var n=a(9642);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("2ac5270a",n,!1,{})},6758:e=>{"use strict";e.exports=function(e){return e[1]}},6875:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,".jet-form-builder-page__banner.useful{padding:20px 30px}.jet-form-builder-page__panel.help{width:100%}@media(max-width: 1140px){.jet-form-builder-page__panel.help{width:50%}}.jet-form-builder-page__panel.help .jet-form-builder-page__panel-content{display:flex;flex-direction:column;margin-top:12px;border-top:1px solid #dcdcdd;padding-top:23px}.jet-form-builder-page__panel.help .help-center-link{display:flex;justify-content:flex-start;margin-bottom:22px}.jet-form-builder-page__panel.help .help-center-link:last-child{margin-bottom:0}.jet-form-builder-page__panel.help .help-center-link a{display:flex;justify-content:flex-start;align-items:center;font-size:14px;line-height:18px;color:#007cba;text-decoration:none}.jet-form-builder-page__panel.help .help-center-link a:hover{color:#066ea2;text-decoration:underline}.jet-form-builder-page__panel.help .help-center-link a .help-center-link-icon{margin-right:28px}",""]);const o=r},7167:(e,t,a)=>{var n=a(1027);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("75f68a91",n,!1,{})},9642:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,"\nspan[data-v-14b2e3f9] {\n\tbackground-color: #007CBA;\n\tpadding: 0.1em 0.3em;\n\ttext-transform: uppercase;\n\tborder-radius: 3px;\n\tcolor: white;\n\tfont-size: 12px;\n\tfont-style: normal;\n\tfont-weight: 700;\n\tline-height: 16px;\n\tletter-spacing: 0;\n\ttext-align: left;\n}\n",""]);const o=r}},t={};function a(n){var i=t[n];if(void 0!==i)return i.exports;var s=t[n]={id:n,exports:{}};return e[n](s,s.exports,a),s.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e={};a.r(e),a.d(e,{component:()=>he,displayButton:()=>fe,title:()=>_e});var t={};a.r(t),a.d(t,{component:()=>je,title:()=>xe});var n={};a.r(n),a.d(n,{component:()=>$e,title:()=>Oe});var i={};a.r(i),a.d(i,{component:()=>Ne,title:()=>Ge});var s={};a.r(s),a.d(s,{component:()=>Qe,displayButton:()=>et,title:()=>Xe});var r={};a.r(r),a.d(r,{component:()=>ut,displayButton:()=>dt,title:()=>ct});var o={};a.r(o),a.d(o,{component:()=>wt,displayButton:()=>xt,title:()=>yt});var l={};a.r(l),a.d(l,{component:()=>Pt,title:()=>qt});var c=function(){var e=this,t=e.$createElement;return(e._self._c||t)("span",[e._v(e._s(e.__("Pro","jet-form-builder")))])};c._withStripped=!0;const{i18n:u}=JetFBMixins,d={name:"IsPROIcon",mixins:[u],props:{isActive:{type:Boolean,default:!1}}};function p(e,t,a,n,i,s,r,o){var l,c="function"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=a,c._compiled=!0),n&&(c.functional=!0),s&&(c._scopeId="data-v-"+s),r?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},c._ssrRegister=l):i&&(l=o?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}a(5654);const h=p(d,c,[],!1,null,"14b2e3f9",null).exports,{__:f}=wp.i18n,g={title:f("HubSpot API","jet-form-builder"),component:{name:"hubspot"},disabled:!0,icon:h},{__:b}=wp.i18n,m={title:b("Address Autocomplete","jet-form-builder"),component:{name:"jfb-address-tab"},disabled:!0,icon:h},{__:v}=wp.i18n,y={title:v("ConvertKit API","jet-form-builder"),component:{name:"convert-kit-tab"},disabled:!0,icon:h},{__:w}=wp.i18n,x={title:w("MailerLite API","jet-form-builder"),component:{name:"mailer-lite-tab"},disabled:!0,icon:h},{__:j}=wp.i18n,k={title:j("Moosend API","jet-form-builder"),component:{name:"moosend"},disabled:!0,icon:h},{__:C}=wp.i18n,S={title:C("Stripe Gateway API","jet-form-builder"),component:{name:"stripe"},disabled:!0,icon:h},{addFilter:A}=wp.hooks,B=[m,g,y,x,k],L=[S],O=e=>e.map((e=>e.component.name));window?.JetFBPageConfig?.is_active||(A("jet.fb.register.settings-page.tabs","jet-form-builder",(e=>{const t=O(e);for(const a of B)t.includes(a.component.name)||e.push(a);return e}),1e3),A("jet.fb.register.gateways","jet-form-builder",(e=>{const t=O(e);for(const a of L)t.includes(a.component.name)||e.push(a);return e}),1e3));var $=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("FormBuilderPage",{attrs:{title:e.__("JetFormBuilder Settings","jet-form-builder")}},[a("div",{staticClass:"jfb-content"},[a("AlertsList"),e._v(" "),a("div",{staticClass:"jfb-content-main"},[a("div",{staticClass:"cx-vui-panel"},[a("CxVuiTabs",{attrs:{"in-panel":!1,value:e.activeTabSlug,layout:"vertical"},on:{input:e.onChangeActiveTab}},e._l(e.tabs,(function(t,n){var i=t.displayButton;void 0===i&&(i=!0);var s=function(e,t){var a={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&-1===t.indexOf(n)&&(a[n]=e[n]);return a}(t,["displayButton"]);return a("CxVuiTabsPanel",{key:s.component.name,attrs:{name:s.component.name,label:s.title,disabled:s.disabled,icon:s.icon},scopedSlots:e._u([s.component.render?{key:"default",fn:function(){return[a("keep-alive",[a(s.component,{ref:"tabComponents",refInFor:!0,tag:"component",attrs:{incoming:e.getIncoming(s.component.name),"inner-slugs":e.activeTabInnerSlugs||[]}})],1),e._v(" "),i?a("cx-vui-button",{attrs:{"button-style":"accent",loading:e.loadingTab[s.component.name]},on:{click:function(t){return e.onSaveTab(n,s.component.name)}},scopedSlots:e._u([{key:"label",fn:function(){return[a("span",[e._v("Save")])]},proxy:!0}],null,!0)}):e._e()]},proxy:!0}:null],null,!0)})})),1)],1)]),e._v(" "),a("SettingsSideBar")],1)])};$._withStripped=!0;var q=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",e._l(e.captcha,(function(t,n){return a("CxVuiCollapseMini",{key:t.component.name,attrs:{"with-panel":"",icon:t.icon,label:e.getTabTitle(t),disabled:t.disabled,"initial-active":e.isActive(t.component.name)},on:{change:function(a){return e.onChangeActive(a,t.component.name)}}},[a("keep-alive",[a(t.component,{ref:"captcha",refInFor:!0,tag:"component",attrs:{incoming:e.getIncomingCaptcha(t.component.name)}})],1),e._v(" "),a("cx-vui-button",{attrs:{"button-style":"accent",loading:e.loadingGateways[t.component.name]},on:{click:function(a){return e.onSaveGateway(n,t.component.name)}}},[a("span",{attrs:{slot:"label"},slot:"label"},[e._v("Save")])])],1)})),1)};q._withStripped=!0;var P=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-input",{attrs:{label:e.label.key,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.key,callback:function(t){e.$set(e.storage,"key",t)},expression:"storage.key"}}),e._v(" "),a("cx-vui-input",{attrs:{label:e.label.secret,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}}),e._v(" "),a("cx-vui-input",{attrs:{type:"number",min:0,max:1,step:.1,label:e.label.threshold,description:e.help.threshold,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.threshold,callback:function(t){e.$set(e.storage,"threshold",t)},expression:"storage.threshold"}}),e._v(" "),a("p",{staticClass:"fb-description"},[e._v(e._s(e.help.apiPref)+" "),a("a",{attrs:{href:e.help.apiLink,target:"_blank"}},[e._v(e._s(e.help.apiLinkLabel))])])],1)};P._withStripped=!0;const{__:T}=wp.i18n,E={key:T("Site Key","jet-form-builder"),secret:T("Secret Key","jet-form-builder"),threshold:T("Score Threshold","jet-form-builder")},M={threshold:T("It should be a value between 0 and 1, default 0.5 (1.0 is very likely a good interaction, 0.0 is very likely a bot).","jet-form-builder"),apiPref:T("Register reCAPTCHA v3 keys","jet-form-builder"),apiLinkLabel:T("here","jet-form-builder"),apiLink:"https://www.google.com/recaptcha/admin/create"},J={component:p({name:"google",props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:E,help:M,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},P,[],!1,null,null,null).exports};var V=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("SimpleWrapperComponent",{attrs:{"element-id":"hcaptcha_key"},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.label.key))]},proxy:!0},{key:"description",fn:function(){return[a("p",{staticClass:"fb-description"},[e._v("\n\t\t\t\t\t"+e._s(e.__("You can find it on this page in the first column of Sitekey.","jet-form-builder")+" ")+"\n\t\t\t\t\t"),a("ExternalLink",{attrs:{href:"https://dashboard.hcaptcha.com/sites"}},[e._v("\n\t\t\t\t\t\t"+e._s(e.__("Go to the dashboard of sites","jet-form-builder"))+"\n\t\t\t\t\t")])],1)]},proxy:!0},{key:"default",fn:function(){return[a("input",{directives:[{name:"model",rawName:"v-model",value:e.storage.key,expression:"storage.key"}],staticClass:"cx-vui-input size-fullwidth",attrs:{id:"hcaptcha_key",type:"text"},domProps:{value:e.storage.key},on:{input:function(t){t.target.composing||e.$set(e.storage,"key",t.target.value)}}})]},proxy:!0}])}),e._v(" "),a("SimpleWrapperComponent",{attrs:{"element-id":"hcaptcha_secret"},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.label.secret))]},proxy:!0},{key:"description",fn:function(){return[a("p",{staticClass:"fb-description"},[e._v("\n\t\t\t\t\t"+e._s(e.__("You can find it on the settings page,\nthis will be the first field.","jet-form-builder")+" ")+"\n\t\t\t\t\t"),a("ExternalLink",{attrs:{href:"https://dashboard.hcaptcha.com/settings"}},[e._v("\n\t\t\t\t\t\t"+e._s(e.__("Go to the Settings page","jet-form-builder"))+"\n\t\t\t\t\t")])],1)]},proxy:!0},{key:"default",fn:function(){return[a("input",{directives:[{name:"model",rawName:"v-model",value:e.storage.secret,expression:"storage.secret"}],staticClass:"cx-vui-input size-fullwidth",attrs:{id:"hcaptcha_secret",type:"text"},domProps:{value:e.storage.secret},on:{input:function(t){t.target.composing||e.$set(e.storage,"secret",t.target.value)}}})]},proxy:!0}])})],1)};V._withStripped=!0;const{__:I}=wp.i18n,R={key:I("Site Key","jet-form-builder"),secret:I("Secret Key","jet-form-builder")},{SimpleWrapperComponent:F,ExternalLink:G}=JetFBComponents,{i18n:N}=JetFBMixins,z={component:p({name:"hcaptcha",components:{SimpleWrapperComponent:F,ExternalLink:G},mixins:[N],props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:R,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},V,[],!1,null,null,null).exports};var U=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("SimpleWrapperComponent",{attrs:{"element-id":"friendly_key"},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.label.key))]},proxy:!0},{key:"description",fn:function(){return[a("p",{staticClass:"fb-description"},[e._v("\n\t\t\t\t"+e._s(e.__("It can be found on the page listing your Applications. Or follow this","jet-form-builder")+" ")+"\n\t\t\t\t"),a("ExternalLink",{attrs:{href:"https://docs.friendlycaptcha.com/#/installation?id=_1-generating-a-sitekey"}},[e._v("\n\t\t\t\t\t"+e._s(e.__("guide","jet-form-builder"))+"\n\t\t\t\t")])],1)]},proxy:!0},{key:"default",fn:function(){return[a("input",{directives:[{name:"model",rawName:"v-model",value:e.storage.key,expression:"storage.key"}],staticClass:"cx-vui-input size-fullwidth",attrs:{id:"friendly_key",type:"text"},domProps:{value:e.storage.key},on:{input:function(t){t.target.composing||e.$set(e.storage,"key",t.target.value)}}})]},proxy:!0}])}),e._v(" "),a("cx-vui-input",{attrs:{"element-id":"friendly_secret",label:e.label.secret,description:e.__("It can be found on the page listing your API keys.","jet-form-builder"),"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}})],1)};U._withStripped=!0;const{__:H}=wp.i18n,K={key:H("Site Key","jet-form-builder"),secret:H("Secret Key","jet-form-builder")},{SimpleWrapperComponent:Z,ExternalLink:W}=JetFBComponents,{i18n:D}=JetFBMixins,Y={component:p({name:"friendly",components:{SimpleWrapperComponent:Z,ExternalLink:W},mixins:[D],props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:K,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},U,[],!1,null,null,null).exports};var X=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-input",{attrs:{"element-id":"turnstile_key",label:e.label.key,description:e.__("Read the hint to the Secret Key field","jet-form-builder"),"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.key,callback:function(t){e.$set(e.storage,"key",t)},expression:"storage.key"}}),e._v(" "),a("cx-vui-input",{attrs:{"element-id":"turnstile_secret",label:e.label.secret,description:e.__("You can find both keys on your Turnstile Site settings page","jet-form-builder"),"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}}),e._v(" "),a("p",{staticClass:"fb-description"},[e._v("\n\t\t"+e._s(e.__("Didn't find it? Here is","jet-form-builder")+" ")+"\n\t\t"),a("ExternalLink",{attrs:{href:"https://developers.cloudflare.com/turnstile/get-started/#get-a-sitekey-and-secret-key"}},[e._v("\n\t\t\t"+e._s(e.__("a more detailed description","jet-form-builder"))+"\n\t\t")])],1)],1)};X._withStripped=!0;const{__:Q}=wp.i18n,ee={key:Q("Site Key","jet-form-builder"),secret:Q("Secret Key","jet-form-builder")},{i18n:te}=JetFBMixins,{ExternalLink:ae}=JetFBComponents,ne={component:p({name:"turnstile",mixins:[te],components:{ExternalLink:ae},props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:ee,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},X,[],!1,null,null,null).exports},{applyFilters:ie}=wp.hooks,{SaveTabByAjax:se,GetIncoming:re}=window.JetFBMixins,{CxVuiCollapseMini:oe}=window.JetFBComponents;window.jfbEventBus=window.jfbEventBus||new Vue({});const le=ie("jet.fb.register.captcha",[J,z,Y,ne]);let ce=()=>{};const ue={name:"captcha-tab",props:{incoming:{type:Object,default:{}},innerSlugs:Array},components:{CxVuiCollapseMini:oe},mixins:[se],data(){return{captcha:le,storage:JSON.parse(JSON.stringify(this.incoming)),settings:JSON.parse(JSON.stringify(window.JetFBPageConfig["captcha-tab-config"])),activeGatewaysTabs:[],loadingGateways:{}}},created(){jfbEventBus.$on("request-state",(e=>{const{state:t,slug:a}=e;this.$set(this.loadingGateways,a,"begin"===t)})),jfbEventBus.$on("change-tab",function({slug:e}){if(e!==this.$options.name)return!1;window.location.hash="#"+[this.$options.name,...this.activeGatewaysTabs].join("__")}.bind(this)),this.activeGatewaysTabs=this.innerSlugs,ce=_.debounce((()=>{this.saveByAjax(this,this.$options.name)}),1e3)},methods:{getIncomingCaptcha(e){var t;return null!==(t=this.incoming?.[e])&&void 0!==t?t:{}},getTabTitle(e){const{title:t}=e;if(t?.length)return t;const{name:a}=e.component,n=this.settings.find((({value:e})=>e===a));return n?.label||"Undefined captcha title"},onChangeActive(e,t){let[a,...n]=window.location.hash.replace("#","").split("__");e?n.push(t):n=n.filter((a=>t!==a||e)),this.changeGatewaysTabs(n),window.location.hash=[this.$options.name,...n].join("__")},changeGatewaysTabs(e){this.activeGatewaysTabs=e},isActive(e){return Boolean(this.activeGatewaysTabs?.includes(e))},changeVal(e,t){this.$set(this.storage,e,t),ce()},onSaveGateway(e,t){const a=this.$refs.captcha[e];this.saveByAjax(a,t)},getAjaxObject(e,t){const a={url:window.ajaxurl,type:"POST",dataType:"json"},n=e.getRequestOnSave();return a.data={action:`jet_fb_save_tab__${this.$options.name}`,...t===this.$options.name?n.data:{[t]:n.data}},window?.JetFBPageConfigPackage?.nonce&&(a.data._nonce=window.JetFBPageConfigPackage.nonce),a},getRequestOnSave(){return{data:{...this.storage}}}}},de=p(ue,q,[],!1,null,null,null).exports,{__:pe}=wp.i18n,_e=pe("Captcha Settings","jet-form-builder"),he=de,fe=!1;var ge=function(){var e=this,t=e.$createElement;return(e._self._c||t)("cx-vui-input",{attrs:{label:e.label.api_key,"wrapper-css":["equalwidth"],description:e.help.apiPref+' '+e.help.apiLinkLabel+"",size:"fullwidth"},model:{value:e.api_key,callback:function(t){e.api_key=t},expression:"api_key"}})};ge._withStripped=!0;const{__:be}=wp.i18n,me={api_key:be("API Key","jet-form-builder")},ve={apiPref:be("How to obtain your MailChimp API Key? More info","jet-form-builder"),apiLinkLabel:be("here","jet-form-builder"),apiLink:"https://mailchimp.com/help/about-api-keys/"},ye=p({name:"mailchimp-tab",props:{incoming:{type:Object,default:{}}},data:()=>({label:me,help:ve,api_key:""}),created(){this.api_key=this.incoming.api_key||""},methods:{getRequestOnSave(){return{data:{api_key:this.api_key}}}}},ge,[],!1,null,null,null).exports,{__:we}=wp.i18n,xe=we("MailChimp API","jet-form-builder"),je=ye;var ke=function(){var e=this,t=e.$createElement;return(e._self._c||t)("cx-vui-input",{attrs:{label:e.label.api_key,"wrapper-css":["equalwidth"],description:e.help.apiPref+' '+e.help.apiLinkLabel+"",size:"fullwidth"},model:{value:e.api_key,callback:function(t){e.api_key=t},expression:"api_key"}})};ke._withStripped=!0;const{__:Ce}=wp.i18n,Se={api_key:Ce("API Key","jet-form-builder")},Ae={apiPref:Ce("How to obtain your GetResponse API Key? More info","jet-form-builder"),apiLinkLabel:Ce("here","jet-form-builder"),apiLink:"https://app.getresponse.com/api"},Be=p({name:"get-response-tab",props:{incoming:{type:Object,default:{}}},data:()=>({label:Se,help:Ae,api_key:""}),created(){this.api_key=this.incoming.api_key||""},methods:{getRequestOnSave(){return{data:{api_key:this.api_key}}}}},ke,[],!1,null,null,null).exports,{__:Le}=wp.i18n,Oe=Le("GetResponse API","jet-form-builder"),$e=Be;var qe=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-switcher",{attrs:{name:"use_gateways","wrapper-css":["equalwidth"],label:e.label.use_gateways,description:e.help.use_gateways,value:e.storage.use_gateways},on:{input:function(t){return e.changeVal("use_gateways",t)}}}),e._v(" "),e.storage.use_gateways?a("cx-vui-switcher",{attrs:{name:"enable_test_mode","wrapper-css":["equalwidth"],description:e.help.enable_test_mode,label:e.label.enable_test_mode,value:e.storage.enable_test_mode},on:{input:function(t){return e.changeVal("enable_test_mode",t)}}}):e._e(),e._v(" "),e.storage.use_gateways?[a("div",{staticClass:"cx-vui-inner-panel"},e._l(e.gateways,(function(t,n){return a("CxVuiCollapseMini",{key:t.component.name,attrs:{"with-panel":"",icon:t.icon,label:t.title,disabled:t.disabled,"initial-active":e.isActive(t.component.name)},on:{change:function(a){return e.onChangeActive(a,t.component.name)}}},[a("keep-alive",[a(t.component,{ref:"gateways",refInFor:!0,tag:"component",attrs:{incoming:e.getIncoming(t.component.name)}})],1),e._v(" "),a("cx-vui-button",{attrs:{"button-style":"accent",loading:e.loadingGateways[t.component.name]},on:{click:function(a){return e.onSaveGateway(n,t.component.name)}}},[a("span",{attrs:{slot:"label"},slot:"label"},[e._v("Save")])])],1)})),1)]:e._e()],2)};qe._withStripped=!0;const Pe=window.wp.i18n,Te={use_gateways:(0,Pe.__)("Enable Gateways","jet-form-builder"),enable_test_mode:(0,Pe.__)("Enable Test Mode","jet-form-builder")},Ee={enable_test_mode:(0,Pe.__)("This option takes precedence over the jet-form-builder/gateways/paypal/sandbox-mode filter. As of right now, works only for PayPal payment system","jet-form-builder"),use_gateways:(0,Pe.__)("Activate payment gateways for the forms. This option takes precedence over the jet-form-builder/allow-gateways filter","jet-form-builder")};var Me=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-input",{attrs:{label:e.label.client_id,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.client_id,callback:function(t){e.$set(e.storage,"client_id",t)},expression:"storage.client_id"}}),e._v(" "),a("cx-vui-input",{attrs:{label:e.label.secret,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}})],1)};Me._withStripped=!0;const{__:Je}=wp.i18n,Ve={client_id:Je("Client ID","jet-form-builder"),secret:Je("Secret Key","jet-form-builder")},Ie={},Re=p({name:"paypal",props:{incoming:{type:Object,default:()=>({})}},data:()=>({label:Ve,help:Ie,storage:{}}),created(){this.storage=JSON.parse(JSON.stringify(this.incoming))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},Me,[],!1,null,null,null).exports,{__:Fe}=wp.i18n,Ge=Fe("PayPal Gateway API","jet-form-builder"),Ne=Re,{applyFilters:ze}=wp.hooks,{SaveTabByAjax:Ue,GetIncoming:He}=window.JetFBMixins,{CxVuiCollapseMini:Ke}=window.JetFBComponents;window.jfbEventBus=window.jfbEventBus||new Vue({});const Ze=ze("jet.fb.register.gateways",[i]);let We=()=>{};const De=p({name:"payments-gateways",props:{incoming:{type:Object,default:()=>({})},innerSlugs:Array},components:{CxVuiCollapseMini:Ke},mixins:[Ue,He],data(){return{label:Te,help:Ee,storage:JSON.parse(JSON.stringify(this.incoming)),gateways:Ze,loadingGateways:{},activeGatewaysTabs:[]}},created(){jfbEventBus.$on("request-state",(e=>{const{state:t,slug:a}=e;this.$set(this.loadingGateways,a,"begin"===t)})),jfbEventBus.$on("change-tab",function({slug:e}){if(e!==this.$options.name)return!1;window.location.hash="#"+[this.$options.name,...this.activeGatewaysTabs].join("__")}.bind(this)),this.activeGatewaysTabs=this.innerSlugs,We=_.debounce((()=>{this.saveByAjax(this,this.$options.name)}),1e3)},methods:{onChangeActive(e,t){let[a,...n]=window.location.hash.replace("#","").split("__");e?n.push(t):n=n.filter((a=>t!==a||e)),this.changeGatewaysTabs(n),window.location.hash=[this.$options.name,...n].join("__")},changeGatewaysTabs(e){this.activeGatewaysTabs=e},isActive(e){return Boolean(this.activeGatewaysTabs.length&&this.activeGatewaysTabs.includes(e))},changeVal(e,t){this.$set(this.storage,e,t),We()},onSaveGateway(e,t){const a=this.$refs.gateways[e];this.saveByAjax(a,t)},getRequestOnSave(){return{data:{...this.storage}}}}},qe,[],!1,null,null,null).exports,{__:Ye}=wp.i18n,Xe=Ye("Payments Gateways","jet-form-builder"),Qe=De,et=!1;var tt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[a("cx-vui-switcher",{attrs:{name:"enable_dev_mode","wrapper-css":["equalwidth"],label:e.loading.enable_dev_mode?e.label.enable_dev_mode+" (loading...)":e.label.enable_dev_mode,description:e.help.enable_dev_mode,value:!!e.storage.hasOwnProperty("enable_dev_mode")&&e.storage.enable_dev_mode,disabled:e.isLoading},on:{input:function(t){return e.changeVal("enable_dev_mode",t)}}}),e._v(" "),a("cx-vui-switcher",{attrs:{name:"clear_on_uninstall","wrapper-css":["equalwidth"],label:e.loading.clear_on_uninstall?e.label.clear_on_uninstall+" (loading...)":e.label.clear_on_uninstall,description:e.help.clear_on_uninstall,value:!!e.storage.hasOwnProperty("clear_on_uninstall")&&e.storage.clear_on_uninstall,disabled:e.isLoading},on:{input:function(t){return e.changeVal("clear_on_uninstall",t)}}}),e._v(" "),a("cx-vui-input",{attrs:{name:"form_records_access_capability","wrapper-css":["equalwidth"],size:"fullwidth",label:e.loading.form_records_access_capability?e.label.form_records_access_capability+" (loading...)":e.label.form_records_access_capability,description:e.help.form_records_access_capability,value:e.storage.hasOwnProperty("form_records_access_capability")?e.storage.form_records_access_capability:"manage_options",disabled:e.isLoading},on:{input:function(t){return e.changeVal("form_records_access_capability",t)}}}),e._v(" "),a("cx-vui-select",{attrs:{name:"ssr_validation_method","wrapper-css":["equalwidth"],size:"fullwidth",label:e.loading.ssr_validation_method?e.label.ssr_validation_method+" (loading...)":e.label.ssr_validation_method,description:e.help.ssr_validation_method,value:e.storage.hasOwnProperty("ssr_validation_method")?e.storage.ssr_validation_method:"rest","options-list":e.selectOptions,disabled:e.isLoading},on:{input:function(t){return e.changeVal("ssr_validation_method",t)}}}),e._v(" "),a("cx-vui-f-select",{attrs:{name:"self_promotable_roles",label:e.loading.self_promotable_roles?e.label.self_promotable_roles+" (loading...)":e.label.self_promotable_roles,description:e.help.self_promotable_roles,value:e.selectedSelfPromotableRoles,"options-list":e.availableRoles,multiple:!0,disabled:e.isLoading,"wrapper-css":["equalwidth"],size:"fullwidth"},on:{"on-change":function(t){return e.changeSelfPromotableRoles(t)}}}),e._v(" "),a("cx-vui-component-wrapper",{attrs:{label:e.__("Form Accessibility","jet-form-builder"),"wrapper-css":["equalwidth"]}}),e._v(" "),a("div",{staticClass:"cx-vui-inner-panel"},[a("cx-vui-switcher",{attrs:{name:"disable_next_button","wrapper-css":["equalwidth"],label:e.loading.disable_next_button?e.label.disable_next_button+" (loading...)":e.label.disable_next_button,description:e.help.disable_next_button,value:!e.storage.hasOwnProperty("disable_next_button")||e.storage.disable_next_button,disabled:e.isLoading},on:{input:function(t){return e.changeVal("disable_next_button",t)}}}),e._v(" "),a("cx-vui-switcher",{attrs:{name:"scroll_on_next","wrapper-css":["equalwidth"],label:e.loading.scroll_on_next?e.label.scroll_on_next+" (loading...)":e.label.scroll_on_next,description:e.help.scroll_on_next,value:!!e.storage.hasOwnProperty("scroll_on_next")&&e.storage.scroll_on_next,disabled:e.isLoading},on:{input:function(t){return e.changeVal("scroll_on_next",t)}}}),e._v(" "),a("cx-vui-switcher",{attrs:{name:"auto_focus","wrapper-css":["equalwidth"],label:e.loading.auto_focus?e.label.auto_focus+" (loading...)":e.label.auto_focus,description:e.help.auto_focus,value:!!e.storage.hasOwnProperty("auto_focus")&&e.storage.auto_focus,disabled:e.isLoading},on:{input:function(t){return e.changeVal("auto_focus",t)}}})],1),e._v(" "),a("cx-vui-component-wrapper",{attrs:{label:e.__("Form Request Args","jet-form-builder"),"wrapper-css":["equalwidth"]}}),e._v(" "),a("cx-vui-input",{attrs:{name:"gfb_request_args_key","wrapper-css":["equalwidth",e.errors.gfb_request_args_key?"jfb-has-error":""],size:"fullwidth",label:"Request key",description:"Unique form parameter (key)",value:e.storage.hasOwnProperty("gfb_request_args_key")?e.storage.gfb_request_args_key:"1111",disabled:e.isLoading},on:{input:function(t){return e.changeVal("gfb_request_args_key",t)}}}),e._v(" "),e.errors.gfb_request_args_key?a("div",{staticClass:"jfb-field-error"},[e._v("\n "+e._s(e.errors.gfb_request_args_key)+"\n ")]):e._e(),e._v(" "),a("cx-vui-input",{attrs:{name:"gfb_request_args_value","wrapper-css":["equalwidth",e.errors.gfb_request_args_value?"jfb-has-error":""],size:"fullwidth",label:"Request value",description:"Unique form parameter (value)",value:e.storage.hasOwnProperty("gfb_request_args_value")?e.storage.gfb_request_args_value:"2222",disabled:e.isLoading},on:{input:function(t){return e.changeVal("gfb_request_args_value",t)}}}),e._v(" "),e.errors.gfb_request_args_value?a("div",{staticClass:"jfb-field-error"},[e._v("\n "+e._s(e.errors.gfb_request_args_value)+"\n ")]):e._e()],1)};tt._withStripped=!0;const at={enable_dev_mode:(0,Pe.__)("Enable Dev-Mode","jet-form-builder"),disable_next_button:(0,Pe.__)('Disable "Next" button',"jet-form-builder"),clear_on_uninstall:(0,Pe.__)("Clear plugin data after the uninstall","jet-form-builder"),scroll_on_next:(0,Pe.__)("Scroll to the top on page change","jet-form-builder"),auto_focus:(0,Pe.__)("Automatic focus","jet-form-builder"),form_records_access_capability:(0,Pe.__)("Form Records Access Capability","jet-form-builder"),ssr_validation_method:(0,Pe.__)("Server side validation method","jet-form-builder"),self_promotable_roles:(0,Pe.__)("Self-Promotable Roles","jet-form-builder")},nt={enable_dev_mode:(0,Pe.__)("With developer mode enabled, errors from the form will be saved.","jet-form-builder"),disable_next_button:(0,Pe.__)("If this option is active, the Next button in a multi-step form won't become clickable until all the required fields are completed.","jet-form-builder"),clear_on_uninstall:(0,Pe.__)("If this option is active, when the plugin is deleted, all custom sql-tables, all options and files will also be deleted. In particular, those that were uploaded using Media Field.","jet-form-builder"),scroll_on_next:(0,Pe.__)("Automatic scrolling to the top of the form when switching between form pages.","jet-form-builder"),auto_focus:(0,Pe.__)("Indicates invalid field and prevents the user from going to the next page or submitting the form unless filled.","jet-form-builder"),form_records_access_capability:(0,Pe.__)('By default any Form Records available only for users with `manage_options` capability. Here you can overwrite it with any capability you want. More about capabilities here',"jet-form-builder"),ssr_validation_method:(0,Pe.__)("Select how the server-side validation request will be made – via WP REST API, admin-ajax.php, or through the URL of the current page.","jet-form-builder"),self_promotable_roles:(0,Pe.__)("Users without the `promote_users` capability can keep their current role or switch only to roles from this list in Update User actions. Leave it empty to skip self-service role changes.","jet-form-builder")},{SaveTabByAjax:it,i18n:st}=window.JetFBMixins,rt={name:"options-tab",props:{incoming:{type:Object,default:{}}},mixins:[it,st],data(){return{label:at,help:nt,storage:JSON.parse(JSON.stringify(this.incoming)),isLoading:!1,loading:{},pendingSave:!1,errors:{gfb_request_args_key:"",gfb_request_args_value:""},selectOptions:[{value:"rest",label:"Rest API"},{value:"admin_ajax",label:"Admin Ajax"},{value:"self",label:"Self"}]}},computed:{availableRoles(){return this.storage.available_roles||[]},selectedSelfPromotableRoles(){return this.storage.self_promotable_roles||[]}},created(){jfbEventBus.$on("request-state",this.onChangeState.bind(this))},methods:{getSavableData(){const{enable_dev_mode:e,clear_on_uninstall:t,form_records_access_capability:a,ssr_validation_method:n,self_promotable_roles:i,disable_next_button:s,scroll_on_next:r,auto_focus:o,gfb_request_args_key:l,gfb_request_args_value:c}=this.storage;return{enable_dev_mode:e,clear_on_uninstall:t,form_records_access_capability:a,ssr_validation_method:n,self_promotable_roles:Array.isArray(i)&&!i.length?[""]:i,disable_next_button:s,scroll_on_next:r,auto_focus:o,gfb_request_args_key:l,gfb_request_args_value:c}},getRequestOnSave(){return{data:this.getSavableData()}},onChangeState({state:e,slug:t}){if("options-tab"===t)return"end"===e?(this.loading={},this.$set(this,"isLoading",!1),void(this.pendingSave&&(this.pendingSave=!1,this.saveByAjax(this,this.$options.name)))):void this.$set(this,"isLoading","begin"===e)},validateField(e,t){if("gfb_request_args_key"!==e&&"gfb_request_args_value"!==e)return!0;const a=String(null!=t?t:"");if(/^\d+$/.test(a)){const t=this.__("Must contain at least one letter (A–Z). Numbers only are not allowed.","jet-form-builder");return this.$set(this.errors,e,t),!1}return this.$set(this.errors,e,""),!0},changeSelfPromotableRoles(e){Array.isArray(e)&&this.changeVal("self_promotable_roles",e)},changeVal(e,t){this.$set(this.storage,e,t),("gfb_request_args_key"!==e&&"gfb_request_args_value"!==e||this.validateField(e,t))&&(this.$set(this.loading,e,!0),this.isLoading?this.pendingSave=!0:this.saveByAjax(this,this.$options.name))}}};a(7167);const ot=p(rt,tt,[],!1,null,"2967d914",null).exports,{__:lt}=wp.i18n,ct=lt("Options","jet-form-builder"),ut=ot,dt=!1;var pt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[a("cx-vui-switcher",{attrs:{name:"enable_user_journey",label:e.loading.enable_user_journey?e.label.enable_user_journey+" (loading...)":e.label.enable_user_journey,description:e.help.enable_user_journey,"wrapper-css":["equalwidth"],value:!!e.storage.hasOwnProperty("enable_user_journey")&&e.storage.enable_user_journey,disabled:e.isLoading},on:{input:function(t){return e.changeVal("enable_user_journey",t)}}}),e._v(" "),e.storage.enable_user_journey?[a("cx-vui-select",{staticClass:"user-journey-select",attrs:{name:"storage_type",label:e.loading.storage_type?e.label.storage_type+" (loading...)":e.label.storage_type,description:e.help.storage_type,"wrapper-css":["equalwidth"],"options-list":[{value:"local",label:"Local Storage"},{value:"session",label:"Session Storage"}],value:e.storage.hasOwnProperty("storage_type")?e.storage.storage_type:"local",disabled:!e.storage.enable_user_journey||e.isLoading},on:{input:function(t){return e.changeVal("storage_type",t)}}}),e._v(" "),a("cx-vui-component-wrapper",[a("div",{staticClass:"cx-vui-component__label"},[e._v("Please note!")]),e._v(" "),a("div",[a("b",[e._v("Session Storage:")]),e._v(" The information is kept only while this tab or window is open. Reloading the page is fine, but as soon as you close the tab, the data disappears. Other tabs or windows of the site can’t see it. You can still get it back by pressing Ctrl + Shift + T (“Reopen Closed Tab”)")]),e._v(" "),a("div",[a("b",[e._v("Local Storage:")]),e._v(" The information stays much longer—every tab or window of this site can use it, and it remains even after you close and reopen the browser, until you clear it yourself.")])]),e._v(" "),a("cx-vui-select",{staticClass:"user-journey-select",attrs:{name:"clear_after_submit",label:e.loading.clear_after_submit?e.label.clear_after_submit+" (loading...)":e.label.clear_after_submit,description:e.help.clear_after_submit,"wrapper-css":["equalwidth"],"options-list":[{value:"always",label:"After any submit (success or failure)"},{value:"success",label:"After successful submit only"}],value:e.storage.hasOwnProperty("clear_after_submit")?e.storage.clear_after_submit:"success",disabled:!e.storage.enable_user_journey||e.isLoading},on:{input:function(t){return e.changeVal("clear_after_submit",t)}}})]:e._e()],2)};pt._withStripped=!0;const _t={enable_user_journey:(0,Pe.__)("Enable User Journey Tracking","jet-form-builder"),storage_type:(0,Pe.__)("Storage Type","jet-form-builder"),clear_after_submit:(0,Pe.__)("Clear Journey After Submit","jet-form-builder")},ht={enable_user_journey:(0,Pe.__)("Track the user’s journey across the website and save it in the browser.","jet-form-builder"),storage_type:(0,Pe.__)("Choose where to store the user journey data","jet-form-builder"),clear_after_submit:(0,Pe.__)("When to clear the journey data after form submission","jet-form-builder")},{SaveTabByAjax:ft,i18n:gt}=window.JetFBMixins,bt={name:"user-journey-tab",props:{incoming:{type:Object,default:()=>({})}},mixins:[ft,gt],data(){return{label:_t,help:ht,storage:JSON.parse(JSON.stringify(this.incoming)),isLoading:!1,loading:{}}},created(){jfbEventBus.$on("request-state",this.onChangeState.bind(this))},methods:{getRequestOnSave(){return{data:{...this.storage}}},onChangeState({state:e,slug:t}){"user-journey-tab"===t&&("end"===e&&(this.loading={}),this.$set(this,"isLoading","begin"===e))},changeVal(e,t){this.isLoading||(this.$set(this.storage,e,t),this.$set(this.loading,e,!0),this.saveByAjax(this,this.$options.name))}}};a(74);const mt=p(bt,pt,[],!1,null,null,null).exports,{__:vt}=wp.i18n,yt=vt("User Journey","jet-form-builder"),wt=mt,xt=!1;var jt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[a("cx-vui-input",{attrs:{name:"ipinfo_token","wrapper-css":["equalwidth"],size:"fullwidth",label:e.loading.ipinfo_token?e.label.ipinfo_token+" (loading...)":e.label.ipinfo_token,description:e.help.ipinfo_token,value:e.storage.hasOwnProperty("ipinfo_token")?e.storage.ipinfo_token:"",disabled:e.isLoading},on:{input:function(t){return e.changeVal("ipinfo_token",t)}}})],1)};jt._withStripped=!0;const{sprintf:kt,__:Ct}=wp.i18n,St={ipinfo_token:kt(Ct('Sign in at ipinfo.io and get your API token here.',"jet-form-builder"),"https://ipinfo.io","https://ipinfo.io/dashboard/token")},At={ipinfo_token:Ct("API Token","jet-form-builder")},{SaveTabByAjax:Bt,i18n:Lt}=window.JetFBMixins,Ot=p({name:"phone-field-tab",props:{incoming:{type:Object,default:{}}},mixins:[Bt,Lt],data(){return{label:At,help:St,storage:JSON.parse(JSON.stringify(this.incoming)),isLoading:!1,loading:{}}},created(){jfbEventBus.$on("request-state",this.onChangeState.bind(this))},methods:{getRequestOnSave(){return{data:{...this.storage}}},onChangeState({state:e,slug:t}){"phone-field-tab"===t&&("end"===e&&(this.loading={}),this.$set(this,"isLoading","begin"===e))},changeVal(e,t){this.isLoading||(this.$set(this.storage,e,t),this.$set(this.loading,e,!0),this.saveByAjax(this,this.$options.name))}}},jt,[],!1,null,null,null).exports,{__:$t}=wp.i18n,qt=$t("Ipinfo API","jet-form-builder"),Pt=Ot;var Tt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("SideBarBoxes",{scopedSlots:e._u([{key:"icon-help",fn:function(){return[a("svg",{attrs:{width:"14",height:"21",viewBox:"0 0 14 21",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M5.25 21H8.75V17.5H5.25V21ZM7 0C3.1325 0 0 3.1325 0 7H3.5C3.5 5.075 5.075 3.5 7 3.5C8.925 3.5 10.5 5.075 10.5 7C10.5 10.5 5.25 10.0625 5.25 15.75H8.75C8.75 11.8125 14 11.375 14 7C14 3.1325 10.8675 0 7 0Z",fill:"#7B7E81"}})])]},proxy:!0},{key:"content-help",fn:function(t){return[a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_knowledge,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"14",height:"16",viewBox:"0 0 14 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M13.458 11.2552L13.458 1.4115C13.458 1.03064 13.1357 0.708374 12.7549 0.708374L3.14551 0.708374C1.59277 0.708374 0.333008 1.96814 0.333008 3.52087L0.333008 12.8959C0.333008 14.4486 1.59277 15.7084 3.14551 15.7084L12.7549 15.7084C13.1357 15.7084 13.458 15.4154 13.458 15.0052L13.458 14.5365C13.458 14.3314 13.3408 14.1263 13.1943 14.0092C13.0479 13.5404 13.0479 12.2513 13.1943 11.8119C13.3408 11.6947 13.458 11.4896 13.458 11.2552ZM4.08301 4.63416C4.08301 4.54626 4.1416 4.45837 4.25879 4.45837L10.4697 4.45837C10.5576 4.45837 10.6455 4.54626 10.6455 4.63416L10.6455 5.22009C10.6455 5.33728 10.5576 5.39587 10.4697 5.39587L4.25879 5.39587C4.1416 5.39587 4.08301 5.33728 4.08301 5.22009L4.08301 4.63416ZM4.08301 6.50916C4.08301 6.42127 4.1416 6.33337 4.25879 6.33337L10.4697 6.33337C10.5576 6.33337 10.6455 6.42127 10.6455 6.50916L10.6455 7.09509C10.6455 7.21228 10.5576 7.27087 10.4697 7.27087L4.25879 7.27087C4.1416 7.27087 4.08301 7.21228 4.08301 7.09509L4.08301 6.50916ZM11.4951 13.8334L3.14551 13.8334C2.61816 13.8334 2.20801 13.4232 2.20801 12.8959C2.20801 12.3978 2.61816 11.9584 3.14551 11.9584L11.4951 11.9584C11.4365 12.4857 11.4365 13.3353 11.4951 13.8334Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_knowledge))])])]),e._v(" "),a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_community,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M15.5913 8.04564C15.5913 3.87728 12.214 0.5 8.04564 0.5C3.87728 0.5 0.5 3.87728 0.5 8.04564C0.5 11.8185 3.23834 14.9523 6.85903 15.5L6.85903 10.2363L4.94219 10.2363L4.94219 8.04564L6.85903 8.04564L6.85903 6.40264C6.85903 4.51623 7.98479 3.45132 9.68864 3.45132C10.5406 3.45132 11.3925 3.60345 11.3925 3.60345L11.3925 5.45943L10.4493 5.45943C9.50609 5.45943 9.20183 6.03753 9.20183 6.64604L9.20183 8.04564L11.3012 8.04564L10.9665 10.2363L9.20183 10.2363L9.20183 15.5C12.8225 14.9523 15.5913 11.8185 15.5913 8.04564Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_community))])])]),e._v(" "),a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_support,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"15",height:"18",viewBox:"0 0 15 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M7.58333 0.666687C3.675 0.666687 0.5 3.84169 0.5 7.75002C0.5 11.6584 3.675 14.8334 7.58333 14.8334H8V17.3334C12.05 15.3834 14.6667 11.5 14.6667 7.75002C14.6667 3.84169 11.4917 0.666687 7.58333 0.666687ZM8.41667 12.75H6.75V11.0834H8.41667V12.75ZM8.41667 9.83335H6.75C6.75 7.12502 9.25 7.33335 9.25 5.66669C9.25 4.75002 8.5 4.00002 7.58333 4.00002C6.66667 4.00002 5.91667 4.75002 5.91667 5.66669H4.25C4.25 3.82502 5.74167 2.33335 7.58333 2.33335C9.425 2.33335 10.9167 3.82502 10.9167 5.66669C10.9167 7.75002 8.41667 7.95835 8.41667 9.83335Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_support))])])]),e._v(" "),a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_git,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M7.976 0C5.86071 0.000265156 3.83214 0.840676 2.33641 2.33641C0.840676 3.83214 0.000265156 5.86071 0 7.976C0 11.498 2.3 14.483 5.431 15.56C5.823 15.609 5.969 15.364 5.969 15.168V13.798C3.768 14.288 3.279 12.722 3.279 12.722C2.936 11.792 2.398 11.547 2.398 11.547C1.664 11.058 2.446 11.058 2.446 11.058C3.229 11.107 3.67 11.89 3.67 11.89C4.404 13.113 5.529 12.77 5.97 12.575C6.018 12.037 6.263 11.695 6.459 11.499C4.697 11.303 2.838 10.618 2.838 7.535C2.838 6.655 3.131 5.969 3.67 5.382C3.62 5.235 3.327 4.404 3.768 3.327C3.768 3.327 4.453 3.131 5.969 4.159C6.605 3.963 7.291 3.914 7.976 3.914C8.661 3.914 9.346 4.012 9.982 4.159C11.499 3.132 12.184 3.327 12.184 3.327C12.624 4.404 12.33 5.235 12.281 5.431C12.8199 6.01808 13.1171 6.7871 13.113 7.584C13.113 10.667 11.253 11.303 9.493 11.499C9.786 11.743 10.031 12.232 10.031 12.966V15.168C10.031 15.364 10.177 15.608 10.569 15.56C12.155 15.0248 13.5327 14.0046 14.5073 12.6436C15.4818 11.2827 16.004 9.64989 16 7.976C15.951 3.572 12.38 0 7.976 0Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_git))])])])]}}])})};Tt._withStripped=!0;const{SideBarBoxes:Et}=JetFBComponents,Mt={name:"SettingsSideBar",components:{SideBarBoxes:Et}};a(52);const Jt=p(Mt,Tt,[],!1,null,null,null).exports,{applyFilters:Vt,doAction:It}=wp.hooks,{SaveTabByAjax:Rt,GetIncoming:Ft,i18n:Gt}=window.JetFBMixins,{CxVuiTabsPanel:Nt,CxVuiTabs:zt,AlertsList:Ut,FormBuilderPage:Ht}=JetFBComponents;window.jfbEventBus=window.jfbEventBus||new Vue({});const Kt=Vt("jet.fb.register.settings-page.tabs",[r,o,s,e,l,t,n]),Zt=e=>{window.location.hash="#"+e},Wt={name:"jfb-settings",components:{AlertsList:Ut,CxVuiTabsPanel:Nt,CxVuiTabs:zt,SettingsSideBar:Jt,FormBuilderPage:Ht},data(){const[e,t]=(()=>{const e=Kt[0].component.name;if(!window.location.hash)return Zt(e),[e];let[t,...a]=window.location.hash.replace("#","").split("__"),n=Kt.find((e=>e?.component?.name===t));return n?(Zt([n.component.name,...a].join("__")),[n.component.name,a]):(Zt(e),[e])})();return{activeTabSlug:e,activeTabInnerSlugs:t,tabs:Kt,loadingTab:{},isActivePro:!1}},mixins:[Rt,Ft,Gt],created(){this.isActivePro=this.getIncoming("is_active"),jfbEventBus.$on("request-state",(e=>{const{state:t,slug:a}=e;this.$set(this.loadingTab,a,"begin"===t)})),jfbEventBus.$on("alert-click-thanks",(({self:e})=>{e.closeAlert()})),jfbEventBus.$on("alert-click-check",(({self:e})=>{e.closeAlert()}))},methods:{onChangeActiveTab(e){const t=new URL(document.URL);t.hash="#"+e,document.location.href=t.href,jfbEventBus.$emit("change-tab",{slug:e})},onSaveTab(e,t){const a=this.$refs.tabComponents[e];this.saveByAjax(a,t)}}};a(2995);const Dt=p(Wt,$,[],!1,null,null,null).exports,{renderCurrentPage:Yt}=window.JetFBActions,{NoticesPlugin:Xt}=JetFBStore;Yt(Dt,{store:new Vuex.Store({plugins:[Xt]})})})()})(); \ No newline at end of file +(()=>{var e={4495(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,".jfb-content{display:flex;flex-wrap:wrap;gap:2em;margin-top:1em}.jfb-content-main{flex:1}",""]);const o=r},6875(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,".jet-form-builder-page__banner.useful{padding:20px 30px}.jet-form-builder-page__panel.help{width:100%}@media(max-width: 1140px){.jet-form-builder-page__panel.help{width:50%}}.jet-form-builder-page__panel.help .jet-form-builder-page__panel-content{display:flex;flex-direction:column;margin-top:12px;border-top:1px solid #dcdcdd;padding-top:23px}.jet-form-builder-page__panel.help .help-center-link{display:flex;justify-content:flex-start;margin-bottom:22px}.jet-form-builder-page__panel.help .help-center-link:last-child{margin-bottom:0}.jet-form-builder-page__panel.help .help-center-link a{display:flex;justify-content:flex-start;align-items:center;font-size:14px;line-height:18px;color:#007cba;text-decoration:none}.jet-form-builder-page__panel.help .help-center-link a:hover{color:#066ea2;text-decoration:underline}.jet-form-builder-page__panel.help .help-center-link a .help-center-link-icon{margin-right:28px}",""]);const o=r},9642(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,"\nspan[data-v-14b2e3f9] {\n\tbackground-color: #007CBA;\n\tpadding: 0.1em 0.3em;\n\ttext-transform: uppercase;\n\tborder-radius: 3px;\n\tcolor: white;\n\tfont-size: 12px;\n\tfont-style: normal;\n\tfont-weight: 700;\n\tline-height: 16px;\n\tletter-spacing: 0;\n\ttext-align: left;\n}\n",""]);const o=r},1027(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,"\n.jfb-has-error .cx-vui-input[data-v-2967d914],\n.jfb-has-error input[data-v-2967d914] {\n border-color: #dc2626 !important;\n outline: none;\n}\n.jfb-field-error[data-v-2967d914] {\n margin: 6px 0 12px;\n color: #dc2626;\n font-size: 12px;\n line-height: 1.4;\n text-align:right;\n}\n",""]);const o=r},1982(e,t,a){"use strict";a.r(t),a.d(t,{default:()=>o});var n=a(6758),i=a.n(n),s=a(935),r=a.n(s)()(i());r.push([e.id,"\n.user-journey-select select.cx-vui-select {\n\tpadding: 6px 24px 6px 12px;\n}\n",""]);const o=r},935(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var a="",n=void 0!==t[5];return t[4]&&(a+="@supports (".concat(t[4],") {")),t[2]&&(a+="@media ".concat(t[2]," {")),n&&(a+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),a+=e(t),n&&(a+="}"),t[2]&&(a+="}"),t[4]&&(a+="}"),a}).join("")},t.i=function(e,a,n,i,s){"string"==typeof e&&(e=[[null,e,void 0]]);var r={};if(n)for(var o=0;o0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=s),a&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=a):u[2]=a),i&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=i):u[4]="".concat(i)),t.push(u))}},t}},6758(e){"use strict";e.exports=function(e){return e[1]}},2995(e,t,a){var n=a(4495);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("14f9a7b5",n,!1,{})},52(e,t,a){var n=a(6875);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("3f74c29a",n,!1,{})},5654(e,t,a){var n=a(9642);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("2ac5270a",n,!1,{})},7167(e,t,a){var n=a(1027);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("75f68a91",n,!1,{})},74(e,t,a){var n=a(1982);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,a(611).A)("df5e862a",n,!1,{})},611(e,t,a){"use strict";function n(e,t){for(var a=[],n={},i=0;ih});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var s={},r=i&&(document.head||document.getElementsByTagName("head")[0]),o=null,l=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",_="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function h(e,t,a,i){c=a,d=i||{};var r=n(e,t);return f(r),function(t){for(var a=[],i=0;ia.parts.length&&(n.parts.length=a.parts.length)}else{var r=[];for(i=0;i{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e={};a.r(e),a.d(e,{component:()=>he,displayButton:()=>fe,title:()=>_e});var t={};a.r(t),a.d(t,{component:()=>je,title:()=>xe});var n={};a.r(n),a.d(n,{component:()=>$e,title:()=>Oe});var i={};a.r(i),a.d(i,{component:()=>Ne,title:()=>Ge});var s={};a.r(s),a.d(s,{component:()=>Qe,displayButton:()=>et,title:()=>Xe});var r={};a.r(r),a.d(r,{component:()=>ut,displayButton:()=>dt,title:()=>ct});var o={};a.r(o),a.d(o,{component:()=>wt,displayButton:()=>xt,title:()=>yt});var l={};a.r(l),a.d(l,{component:()=>Pt,title:()=>qt});var c=function(){var e=this,t=e.$createElement;return(e._self._c||t)("span",[e._v(e._s(e.__("Pro","jet-form-builder")))])};c._withStripped=!0;const{i18n:u}=JetFBMixins,d={name:"IsPROIcon",mixins:[u],props:{isActive:{type:Boolean,default:!1}}};function p(e,t,a,n,i,s,r,o){var l,c="function"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=a,c._compiled=!0),n&&(c.functional=!0),s&&(c._scopeId="data-v-"+s),r?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},c._ssrRegister=l):i&&(l=o?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}a(5654);const h=p(d,c,[],!1,null,"14b2e3f9",null).exports,{__:f}=wp.i18n,g={title:f("HubSpot API","jet-form-builder"),component:{name:"hubspot"},disabled:!0,icon:h},{__:b}=wp.i18n,m={title:b("Address Autocomplete","jet-form-builder"),component:{name:"jfb-address-tab"},disabled:!0,icon:h},{__:v}=wp.i18n,y={title:v("ConvertKit API","jet-form-builder"),component:{name:"convert-kit-tab"},disabled:!0,icon:h},{__:w}=wp.i18n,x={title:w("MailerLite API","jet-form-builder"),component:{name:"mailer-lite-tab"},disabled:!0,icon:h},{__:j}=wp.i18n,k={title:j("Moosend API","jet-form-builder"),component:{name:"moosend"},disabled:!0,icon:h},{__:C}=wp.i18n,S={title:C("Stripe Gateway API","jet-form-builder"),component:{name:"stripe"},disabled:!0,icon:h},{addFilter:A}=wp.hooks,B=[m,g,y,x,k],L=[S],O=e=>e.map(e=>e.component.name);window?.JetFBPageConfig?.is_active||(A("jet.fb.register.settings-page.tabs","jet-form-builder",e=>{const t=O(e);for(const a of B)t.includes(a.component.name)||e.push(a);return e},1e3),A("jet.fb.register.gateways","jet-form-builder",e=>{const t=O(e);for(const a of L)t.includes(a.component.name)||e.push(a);return e},1e3));var $=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("FormBuilderPage",{attrs:{title:e.__("JetFormBuilder Settings","jet-form-builder")}},[a("div",{staticClass:"jfb-content"},[a("AlertsList"),e._v(" "),a("div",{staticClass:"jfb-content-main"},[a("div",{staticClass:"cx-vui-panel"},[a("CxVuiTabs",{attrs:{"in-panel":!1,value:e.activeTabSlug,layout:"vertical"},on:{input:e.onChangeActiveTab}},e._l(e.tabs,function(t,n){var i=t.displayButton;void 0===i&&(i=!0);var s=function(e,t){var a={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&-1===t.indexOf(n)&&(a[n]=e[n]);return a}(t,["displayButton"]);return a("CxVuiTabsPanel",{key:s.component.name,attrs:{name:s.component.name,label:s.title,disabled:s.disabled,icon:s.icon},scopedSlots:e._u([s.component.render?{key:"default",fn:function(){return[a("keep-alive",[a(s.component,{ref:"tabComponents",refInFor:!0,tag:"component",attrs:{incoming:e.getIncoming(s.component.name),"inner-slugs":e.activeTabInnerSlugs||[]}})],1),e._v(" "),i?a("cx-vui-button",{attrs:{"button-style":"accent",loading:e.loadingTab[s.component.name]},on:{click:function(t){return e.onSaveTab(n,s.component.name)}},scopedSlots:e._u([{key:"label",fn:function(){return[a("span",[e._v("Save")])]},proxy:!0}],null,!0)}):e._e()]},proxy:!0}:null],null,!0)})}),1)],1)]),e._v(" "),a("SettingsSideBar")],1)])};$._withStripped=!0;var q=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",e._l(e.captcha,function(t,n){return a("CxVuiCollapseMini",{key:t.component.name,attrs:{"with-panel":"",icon:t.icon,label:e.getTabTitle(t),disabled:t.disabled,"initial-active":e.isActive(t.component.name)},on:{change:function(a){return e.onChangeActive(a,t.component.name)}}},[a("keep-alive",[a(t.component,{ref:"captcha",refInFor:!0,tag:"component",attrs:{incoming:e.getIncomingCaptcha(t.component.name)}})],1),e._v(" "),a("cx-vui-button",{attrs:{"button-style":"accent",loading:e.loadingGateways[t.component.name]},on:{click:function(a){return e.onSaveGateway(n,t.component.name)}}},[a("span",{attrs:{slot:"label"},slot:"label"},[e._v("Save")])])],1)}),1)};q._withStripped=!0;var P=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-input",{attrs:{label:e.label.key,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.key,callback:function(t){e.$set(e.storage,"key",t)},expression:"storage.key"}}),e._v(" "),a("cx-vui-input",{attrs:{label:e.label.secret,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}}),e._v(" "),a("cx-vui-input",{attrs:{type:"number",min:0,max:1,step:.1,label:e.label.threshold,description:e.help.threshold,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.threshold,callback:function(t){e.$set(e.storage,"threshold",t)},expression:"storage.threshold"}}),e._v(" "),a("p",{staticClass:"fb-description"},[e._v(e._s(e.help.apiPref)+" "),a("a",{attrs:{href:e.help.apiLink,target:"_blank"}},[e._v(e._s(e.help.apiLinkLabel))])])],1)};P._withStripped=!0;const{__:T}=wp.i18n,E={key:T("Site Key","jet-form-builder"),secret:T("Secret Key","jet-form-builder"),threshold:T("Score Threshold","jet-form-builder")},M={threshold:T("It should be a value between 0 and 1, default 0.5 (1.0 is very likely a good interaction, 0.0 is very likely a bot).","jet-form-builder"),apiPref:T("Register reCAPTCHA v3 keys","jet-form-builder"),apiLinkLabel:T("here","jet-form-builder"),apiLink:"https://www.google.com/recaptcha/admin/create"},J={component:p({name:"google",props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:E,help:M,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},P,[],!1,null,null,null).exports};var V=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("SimpleWrapperComponent",{attrs:{"element-id":"hcaptcha_key"},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.label.key))]},proxy:!0},{key:"description",fn:function(){return[a("p",{staticClass:"fb-description"},[e._v("\n\t\t\t\t\t"+e._s(e.__("You can find it on this page in the first column of Sitekey.","jet-form-builder")+" ")+"\n\t\t\t\t\t"),a("ExternalLink",{attrs:{href:"https://dashboard.hcaptcha.com/sites"}},[e._v("\n\t\t\t\t\t\t"+e._s(e.__("Go to the dashboard of sites","jet-form-builder"))+"\n\t\t\t\t\t")])],1)]},proxy:!0},{key:"default",fn:function(){return[a("input",{directives:[{name:"model",rawName:"v-model",value:e.storage.key,expression:"storage.key"}],staticClass:"cx-vui-input size-fullwidth",attrs:{id:"hcaptcha_key",type:"text"},domProps:{value:e.storage.key},on:{input:function(t){t.target.composing||e.$set(e.storage,"key",t.target.value)}}})]},proxy:!0}])}),e._v(" "),a("SimpleWrapperComponent",{attrs:{"element-id":"hcaptcha_secret"},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.label.secret))]},proxy:!0},{key:"description",fn:function(){return[a("p",{staticClass:"fb-description"},[e._v("\n\t\t\t\t\t"+e._s(e.__("You can find it on the settings page,\nthis will be the first field.","jet-form-builder")+" ")+"\n\t\t\t\t\t"),a("ExternalLink",{attrs:{href:"https://dashboard.hcaptcha.com/settings"}},[e._v("\n\t\t\t\t\t\t"+e._s(e.__("Go to the Settings page","jet-form-builder"))+"\n\t\t\t\t\t")])],1)]},proxy:!0},{key:"default",fn:function(){return[a("input",{directives:[{name:"model",rawName:"v-model",value:e.storage.secret,expression:"storage.secret"}],staticClass:"cx-vui-input size-fullwidth",attrs:{id:"hcaptcha_secret",type:"text"},domProps:{value:e.storage.secret},on:{input:function(t){t.target.composing||e.$set(e.storage,"secret",t.target.value)}}})]},proxy:!0}])})],1)};V._withStripped=!0;const{__:I}=wp.i18n,R={key:I("Site Key","jet-form-builder"),secret:I("Secret Key","jet-form-builder")},{SimpleWrapperComponent:F,ExternalLink:G}=JetFBComponents,{i18n:N}=JetFBMixins,z={component:p({name:"hcaptcha",components:{SimpleWrapperComponent:F,ExternalLink:G},mixins:[N],props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:R,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},V,[],!1,null,null,null).exports};var U=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("SimpleWrapperComponent",{attrs:{"element-id":"friendly_key"},scopedSlots:e._u([{key:"label",fn:function(){return[e._v(e._s(e.label.key))]},proxy:!0},{key:"description",fn:function(){return[a("p",{staticClass:"fb-description"},[e._v("\n\t\t\t\t"+e._s(e.__("It can be found on the page listing your Applications. Or follow this","jet-form-builder")+" ")+"\n\t\t\t\t"),a("ExternalLink",{attrs:{href:"https://docs.friendlycaptcha.com/#/installation?id=_1-generating-a-sitekey"}},[e._v("\n\t\t\t\t\t"+e._s(e.__("guide","jet-form-builder"))+"\n\t\t\t\t")])],1)]},proxy:!0},{key:"default",fn:function(){return[a("input",{directives:[{name:"model",rawName:"v-model",value:e.storage.key,expression:"storage.key"}],staticClass:"cx-vui-input size-fullwidth",attrs:{id:"friendly_key",type:"text"},domProps:{value:e.storage.key},on:{input:function(t){t.target.composing||e.$set(e.storage,"key",t.target.value)}}})]},proxy:!0}])}),e._v(" "),a("cx-vui-input",{attrs:{"element-id":"friendly_secret",label:e.label.secret,description:e.__("It can be found on the page listing your API keys.","jet-form-builder"),"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}})],1)};U._withStripped=!0;const{__:H}=wp.i18n,K={key:H("Site Key","jet-form-builder"),secret:H("Secret Key","jet-form-builder")},{SimpleWrapperComponent:Z,ExternalLink:W}=JetFBComponents,{i18n:D}=JetFBMixins,Y={component:p({name:"friendly",components:{SimpleWrapperComponent:Z,ExternalLink:W},mixins:[D],props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:K,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},U,[],!1,null,null,null).exports};var X=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-input",{attrs:{"element-id":"turnstile_key",label:e.label.key,description:e.__("Read the hint to the Secret Key field","jet-form-builder"),"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.key,callback:function(t){e.$set(e.storage,"key",t)},expression:"storage.key"}}),e._v(" "),a("cx-vui-input",{attrs:{"element-id":"turnstile_secret",label:e.label.secret,description:e.__("You can find both keys on your Turnstile Site settings page","jet-form-builder"),"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}}),e._v(" "),a("p",{staticClass:"fb-description"},[e._v("\n\t\t"+e._s(e.__("Didn't find it? Here is","jet-form-builder")+" ")+"\n\t\t"),a("ExternalLink",{attrs:{href:"https://developers.cloudflare.com/turnstile/get-started/#get-a-sitekey-and-secret-key"}},[e._v("\n\t\t\t"+e._s(e.__("a more detailed description","jet-form-builder"))+"\n\t\t")])],1)],1)};X._withStripped=!0;const{__:Q}=wp.i18n,ee={key:Q("Site Key","jet-form-builder"),secret:Q("Secret Key","jet-form-builder")},{i18n:te}=JetFBMixins,{ExternalLink:ae}=JetFBComponents,ne={component:p({name:"turnstile",mixins:[te],components:{ExternalLink:ae},props:{incoming:{type:[Object,Array],default:()=>({})}},data:()=>({label:ee,storage:{}}),created(){Object.keys(this.incoming)?.length&&(this.storage=JSON.parse(JSON.stringify(this.incoming)))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},X,[],!1,null,null,null).exports},{applyFilters:ie}=wp.hooks,{SaveTabByAjax:se,GetIncoming:re}=window.JetFBMixins,{CxVuiCollapseMini:oe}=window.JetFBComponents;window.jfbEventBus=window.jfbEventBus||new Vue({});const le=ie("jet.fb.register.captcha",[J,z,Y,ne]);let ce=()=>{};const ue={name:"captcha-tab",props:{incoming:{type:Object,default:{}},innerSlugs:Array},components:{CxVuiCollapseMini:oe},mixins:[se],data(){return{captcha:le,storage:JSON.parse(JSON.stringify(this.incoming)),settings:JSON.parse(JSON.stringify(window.JetFBPageConfig["captcha-tab-config"])),activeGatewaysTabs:[],loadingGateways:{}}},created(){jfbEventBus.$on("request-state",e=>{const{state:t,slug:a}=e;this.$set(this.loadingGateways,a,"begin"===t)}),jfbEventBus.$on("change-tab",function({slug:e}){if(e!==this.$options.name)return!1;window.location.hash="#"+[this.$options.name,...this.activeGatewaysTabs].join("__")}.bind(this)),this.activeGatewaysTabs=this.innerSlugs,ce=_.debounce(()=>{this.saveByAjax(this,this.$options.name)},1e3)},methods:{getIncomingCaptcha(e){var t;return null!==(t=this.incoming?.[e])&&void 0!==t?t:{}},getTabTitle(e){const{title:t}=e;if(t?.length)return t;const{name:a}=e.component,n=this.settings.find(({value:e})=>e===a);return n?.label||"Undefined captcha title"},onChangeActive(e,t){let[a,...n]=window.location.hash.replace("#","").split("__");e?n.push(t):n=n.filter(a=>t!==a||e),this.changeGatewaysTabs(n),window.location.hash=[this.$options.name,...n].join("__")},changeGatewaysTabs(e){this.activeGatewaysTabs=e},isActive(e){return Boolean(this.activeGatewaysTabs?.includes(e))},changeVal(e,t){this.$set(this.storage,e,t),ce()},onSaveGateway(e,t){const a=this.$refs.captcha[e];this.saveByAjax(a,t)},getAjaxObject(e,t){const a={url:window.ajaxurl,type:"POST",dataType:"json"},n=e.getRequestOnSave();return a.data={action:`jet_fb_save_tab__${this.$options.name}`,...t===this.$options.name?n.data:{[t]:n.data}},window?.JetFBPageConfigPackage?.nonce&&(a.data._nonce=window.JetFBPageConfigPackage.nonce),a},getRequestOnSave(){return{data:{...this.storage}}}}},de=p(ue,q,[],!1,null,null,null).exports,{__:pe}=wp.i18n,_e=pe("Captcha Settings","jet-form-builder"),he=de,fe=!1;var ge=function(){var e=this,t=e.$createElement;return(e._self._c||t)("cx-vui-input",{attrs:{label:e.label.api_key,"wrapper-css":["equalwidth"],description:e.help.apiPref+' '+e.help.apiLinkLabel+"",size:"fullwidth"},model:{value:e.api_key,callback:function(t){e.api_key=t},expression:"api_key"}})};ge._withStripped=!0;const{__:be}=wp.i18n,me={api_key:be("API Key","jet-form-builder")},ve={apiPref:be("How to obtain your MailChimp API Key? More info","jet-form-builder"),apiLinkLabel:be("here","jet-form-builder"),apiLink:"https://mailchimp.com/help/about-api-keys/"},ye=p({name:"mailchimp-tab",props:{incoming:{type:Object,default:{}}},data:()=>({label:me,help:ve,api_key:""}),created(){this.api_key=this.incoming.api_key||""},methods:{getRequestOnSave(){return{data:{api_key:this.api_key}}}}},ge,[],!1,null,null,null).exports,{__:we}=wp.i18n,xe=we("MailChimp API","jet-form-builder"),je=ye;var ke=function(){var e=this,t=e.$createElement;return(e._self._c||t)("cx-vui-input",{attrs:{label:e.label.api_key,"wrapper-css":["equalwidth"],description:e.help.apiPref+' '+e.help.apiLinkLabel+"",size:"fullwidth"},model:{value:e.api_key,callback:function(t){e.api_key=t},expression:"api_key"}})};ke._withStripped=!0;const{__:Ce}=wp.i18n,Se={api_key:Ce("API Key","jet-form-builder")},Ae={apiPref:Ce("How to obtain your GetResponse API Key? More info","jet-form-builder"),apiLinkLabel:Ce("here","jet-form-builder"),apiLink:"https://app.getresponse.com/api"},Be=p({name:"get-response-tab",props:{incoming:{type:Object,default:{}}},data:()=>({label:Se,help:Ae,api_key:""}),created(){this.api_key=this.incoming.api_key||""},methods:{getRequestOnSave(){return{data:{api_key:this.api_key}}}}},ke,[],!1,null,null,null).exports,{__:Le}=wp.i18n,Oe=Le("GetResponse API","jet-form-builder"),$e=Be;var qe=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-switcher",{attrs:{name:"use_gateways","wrapper-css":["equalwidth"],label:e.label.use_gateways,description:e.help.use_gateways,value:e.storage.use_gateways},on:{input:function(t){return e.changeVal("use_gateways",t)}}}),e._v(" "),e.storage.use_gateways?a("cx-vui-switcher",{attrs:{name:"enable_test_mode","wrapper-css":["equalwidth"],description:e.help.enable_test_mode,label:e.label.enable_test_mode,value:e.storage.enable_test_mode},on:{input:function(t){return e.changeVal("enable_test_mode",t)}}}):e._e(),e._v(" "),e.storage.use_gateways?[a("div",{staticClass:"cx-vui-inner-panel"},e._l(e.gateways,function(t,n){return a("CxVuiCollapseMini",{key:t.component.name,attrs:{"with-panel":"",icon:t.icon,label:t.title,disabled:t.disabled,"initial-active":e.isActive(t.component.name)},on:{change:function(a){return e.onChangeActive(a,t.component.name)}}},[a("keep-alive",[a(t.component,{ref:"gateways",refInFor:!0,tag:"component",attrs:{incoming:e.getIncoming(t.component.name)}})],1),e._v(" "),a("cx-vui-button",{attrs:{"button-style":"accent",loading:e.loadingGateways[t.component.name]},on:{click:function(a){return e.onSaveGateway(n,t.component.name)}}},[a("span",{attrs:{slot:"label"},slot:"label"},[e._v("Save")])])],1)}),1)]:e._e()],2)};qe._withStripped=!0;const Pe=window.wp.i18n,Te={use_gateways:(0,Pe.__)("Enable Gateways","jet-form-builder"),enable_test_mode:(0,Pe.__)("Enable Test Mode","jet-form-builder")},Ee={enable_test_mode:(0,Pe.__)("This option takes precedence over the jet-form-builder/gateways/paypal/sandbox-mode filter. As of right now, works only for PayPal payment system","jet-form-builder"),use_gateways:(0,Pe.__)("Activate payment gateways for the forms. This option takes precedence over the jet-form-builder/allow-gateways filter","jet-form-builder")};var Me=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("section",[a("cx-vui-input",{attrs:{label:e.label.client_id,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.client_id,callback:function(t){e.$set(e.storage,"client_id",t)},expression:"storage.client_id"}}),e._v(" "),a("cx-vui-input",{attrs:{label:e.label.secret,"wrapper-css":["equalwidth"],size:"fullwidth"},model:{value:e.storage.secret,callback:function(t){e.$set(e.storage,"secret",t)},expression:"storage.secret"}})],1)};Me._withStripped=!0;const{__:Je}=wp.i18n,Ve={client_id:Je("Client ID","jet-form-builder"),secret:Je("Secret Key","jet-form-builder")},Ie={},Re=p({name:"paypal",props:{incoming:{type:Object,default:()=>({})}},data:()=>({label:Ve,help:Ie,storage:{}}),created(){this.storage=JSON.parse(JSON.stringify(this.incoming))},methods:{getRequestOnSave(){return{data:{...this.storage}}}}},Me,[],!1,null,null,null).exports,{__:Fe}=wp.i18n,Ge=Fe("PayPal Gateway API","jet-form-builder"),Ne=Re,{applyFilters:ze}=wp.hooks,{SaveTabByAjax:Ue,GetIncoming:He}=window.JetFBMixins,{CxVuiCollapseMini:Ke}=window.JetFBComponents;window.jfbEventBus=window.jfbEventBus||new Vue({});const Ze=ze("jet.fb.register.gateways",[i]);let We=()=>{};const De=p({name:"payments-gateways",props:{incoming:{type:Object,default:()=>({})},innerSlugs:Array},components:{CxVuiCollapseMini:Ke},mixins:[Ue,He],data(){return{label:Te,help:Ee,storage:JSON.parse(JSON.stringify(this.incoming)),gateways:Ze,loadingGateways:{},activeGatewaysTabs:[]}},created(){jfbEventBus.$on("request-state",e=>{const{state:t,slug:a}=e;this.$set(this.loadingGateways,a,"begin"===t)}),jfbEventBus.$on("change-tab",function({slug:e}){if(e!==this.$options.name)return!1;window.location.hash="#"+[this.$options.name,...this.activeGatewaysTabs].join("__")}.bind(this)),this.activeGatewaysTabs=this.innerSlugs,We=_.debounce(()=>{this.saveByAjax(this,this.$options.name)},1e3)},methods:{onChangeActive(e,t){let[a,...n]=window.location.hash.replace("#","").split("__");e?n.push(t):n=n.filter(a=>t!==a||e),this.changeGatewaysTabs(n),window.location.hash=[this.$options.name,...n].join("__")},changeGatewaysTabs(e){this.activeGatewaysTabs=e},isActive(e){return Boolean(this.activeGatewaysTabs.length&&this.activeGatewaysTabs.includes(e))},changeVal(e,t){this.$set(this.storage,e,t),We()},onSaveGateway(e,t){const a=this.$refs.gateways[e];this.saveByAjax(a,t)},getRequestOnSave(){return{data:{...this.storage}}}}},qe,[],!1,null,null,null).exports,{__:Ye}=wp.i18n,Xe=Ye("Payments Gateways","jet-form-builder"),Qe=De,et=!1;var tt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[a("cx-vui-switcher",{attrs:{name:"enable_dev_mode","wrapper-css":["equalwidth"],label:e.loading.enable_dev_mode?e.label.enable_dev_mode+" (loading...)":e.label.enable_dev_mode,description:e.help.enable_dev_mode,value:!!e.storage.hasOwnProperty("enable_dev_mode")&&e.storage.enable_dev_mode,disabled:e.isLoading},on:{input:function(t){return e.changeVal("enable_dev_mode",t)}}}),e._v(" "),a("cx-vui-switcher",{attrs:{name:"clear_on_uninstall","wrapper-css":["equalwidth"],label:e.loading.clear_on_uninstall?e.label.clear_on_uninstall+" (loading...)":e.label.clear_on_uninstall,description:e.help.clear_on_uninstall,value:!!e.storage.hasOwnProperty("clear_on_uninstall")&&e.storage.clear_on_uninstall,disabled:e.isLoading},on:{input:function(t){return e.changeVal("clear_on_uninstall",t)}}}),e._v(" "),a("cx-vui-input",{attrs:{name:"form_records_access_capability","wrapper-css":["equalwidth"],size:"fullwidth",label:e.loading.form_records_access_capability?e.label.form_records_access_capability+" (loading...)":e.label.form_records_access_capability,description:e.help.form_records_access_capability,value:e.storage.hasOwnProperty("form_records_access_capability")?e.storage.form_records_access_capability:"manage_options",disabled:e.isLoading},on:{input:function(t){return e.changeVal("form_records_access_capability",t)}}}),e._v(" "),a("cx-vui-select",{attrs:{name:"ssr_validation_method","wrapper-css":["equalwidth"],size:"fullwidth",label:e.loading.ssr_validation_method?e.label.ssr_validation_method+" (loading...)":e.label.ssr_validation_method,description:e.help.ssr_validation_method,value:e.storage.hasOwnProperty("ssr_validation_method")?e.storage.ssr_validation_method:"rest","options-list":e.selectOptions,disabled:e.isLoading},on:{input:function(t){return e.changeVal("ssr_validation_method",t)}}}),e._v(" "),a("cx-vui-f-select",{attrs:{name:"self_promotable_roles",label:e.loading.self_promotable_roles?e.label.self_promotable_roles+" (loading...)":e.label.self_promotable_roles,description:e.help.self_promotable_roles,value:e.selectedSelfPromotableRoles,"options-list":e.availableRoles,multiple:!0,disabled:e.isLoading,"wrapper-css":["equalwidth"],size:"fullwidth"},on:{"on-change":function(t){return e.changeSelfPromotableRoles(t)}}}),e._v(" "),a("cx-vui-component-wrapper",{attrs:{label:e.__("Form Accessibility","jet-form-builder"),"wrapper-css":["equalwidth"]}}),e._v(" "),a("div",{staticClass:"cx-vui-inner-panel"},[a("cx-vui-switcher",{attrs:{name:"disable_next_button","wrapper-css":["equalwidth"],label:e.loading.disable_next_button?e.label.disable_next_button+" (loading...)":e.label.disable_next_button,description:e.help.disable_next_button,value:!e.storage.hasOwnProperty("disable_next_button")||e.storage.disable_next_button,disabled:e.isLoading},on:{input:function(t){return e.changeVal("disable_next_button",t)}}}),e._v(" "),a("cx-vui-switcher",{attrs:{name:"scroll_on_next","wrapper-css":["equalwidth"],label:e.loading.scroll_on_next?e.label.scroll_on_next+" (loading...)":e.label.scroll_on_next,description:e.help.scroll_on_next,value:!!e.storage.hasOwnProperty("scroll_on_next")&&e.storage.scroll_on_next,disabled:e.isLoading},on:{input:function(t){return e.changeVal("scroll_on_next",t)}}}),e._v(" "),a("cx-vui-switcher",{attrs:{name:"auto_focus","wrapper-css":["equalwidth"],label:e.loading.auto_focus?e.label.auto_focus+" (loading...)":e.label.auto_focus,description:e.help.auto_focus,value:!!e.storage.hasOwnProperty("auto_focus")&&e.storage.auto_focus,disabled:e.isLoading},on:{input:function(t){return e.changeVal("auto_focus",t)}}})],1),e._v(" "),a("cx-vui-component-wrapper",{attrs:{label:e.__("Form Request Args","jet-form-builder"),"wrapper-css":["equalwidth"]}}),e._v(" "),a("cx-vui-input",{attrs:{name:"gfb_request_args_key","wrapper-css":["equalwidth",e.errors.gfb_request_args_key?"jfb-has-error":""],size:"fullwidth",label:"Request key",description:"Unique form parameter (key)",value:e.storage.hasOwnProperty("gfb_request_args_key")?e.storage.gfb_request_args_key:"1111",disabled:e.isLoading},on:{input:function(t){return e.changeVal("gfb_request_args_key",t)}}}),e._v(" "),e.errors.gfb_request_args_key?a("div",{staticClass:"jfb-field-error"},[e._v("\n "+e._s(e.errors.gfb_request_args_key)+"\n ")]):e._e(),e._v(" "),a("cx-vui-input",{attrs:{name:"gfb_request_args_value","wrapper-css":["equalwidth",e.errors.gfb_request_args_value?"jfb-has-error":""],size:"fullwidth",label:"Request value",description:"Unique form parameter (value)",value:e.storage.hasOwnProperty("gfb_request_args_value")?e.storage.gfb_request_args_value:"2222",disabled:e.isLoading},on:{input:function(t){return e.changeVal("gfb_request_args_value",t)}}}),e._v(" "),e.errors.gfb_request_args_value?a("div",{staticClass:"jfb-field-error"},[e._v("\n "+e._s(e.errors.gfb_request_args_value)+"\n ")]):e._e()],1)};tt._withStripped=!0;const at={enable_dev_mode:(0,Pe.__)("Enable Dev-Mode","jet-form-builder"),disable_next_button:(0,Pe.__)('Disable "Next" button',"jet-form-builder"),clear_on_uninstall:(0,Pe.__)("Clear plugin data after the uninstall","jet-form-builder"),scroll_on_next:(0,Pe.__)("Scroll to the top on page change","jet-form-builder"),auto_focus:(0,Pe.__)("Automatic focus","jet-form-builder"),form_records_access_capability:(0,Pe.__)("Form Records Access Capability","jet-form-builder"),ssr_validation_method:(0,Pe.__)("Server side validation method","jet-form-builder"),self_promotable_roles:(0,Pe.__)("Self-Promotable Roles","jet-form-builder")},nt={enable_dev_mode:(0,Pe.__)("With developer mode enabled, errors from the form will be saved.","jet-form-builder"),disable_next_button:(0,Pe.__)("If this option is active, the Next button in a multi-step form won't become clickable until all the required fields are completed.","jet-form-builder"),clear_on_uninstall:(0,Pe.__)("If this option is active, when the plugin is deleted, all custom sql-tables, all options and files will also be deleted. In particular, those that were uploaded using Media Field.","jet-form-builder"),scroll_on_next:(0,Pe.__)("Automatic scrolling to the top of the form when switching between form pages.","jet-form-builder"),auto_focus:(0,Pe.__)("Indicates invalid field and prevents the user from going to the next page or submitting the form unless filled.","jet-form-builder"),form_records_access_capability:(0,Pe.__)('By default any Form Records available only for users with `manage_options` capability. Here you can overwrite it with any capability you want. More about capabilities here',"jet-form-builder"),ssr_validation_method:(0,Pe.__)("Select how the server-side validation request will be made – via WP REST API, admin-ajax.php, or through the URL of the current page.","jet-form-builder"),self_promotable_roles:(0,Pe.__)("Users without the `promote_users` capability can keep their current role or switch only to roles from this list in Update User actions. Leave it empty to skip self-service role changes.","jet-form-builder")},{SaveTabByAjax:it,i18n:st}=window.JetFBMixins,rt={name:"options-tab",props:{incoming:{type:Object,default:{}}},mixins:[it,st],data(){return{label:at,help:nt,storage:JSON.parse(JSON.stringify(this.incoming)),isLoading:!1,loading:{},pendingSave:!1,errors:{gfb_request_args_key:"",gfb_request_args_value:""},selectOptions:[{value:"rest",label:"Rest API"},{value:"admin_ajax",label:"Admin Ajax"},{value:"self",label:"Self"}]}},computed:{availableRoles(){return this.storage.available_roles||[]},selectedSelfPromotableRoles(){return this.storage.self_promotable_roles||[]}},created(){jfbEventBus.$on("request-state",this.onChangeState.bind(this))},methods:{getSavableData(){const{enable_dev_mode:e,clear_on_uninstall:t,form_records_access_capability:a,ssr_validation_method:n,self_promotable_roles:i,disable_next_button:s,scroll_on_next:r,auto_focus:o,gfb_request_args_key:l,gfb_request_args_value:c}=this.storage;return{enable_dev_mode:e,clear_on_uninstall:t,form_records_access_capability:a,ssr_validation_method:n,self_promotable_roles:Array.isArray(i)&&!i.length?[""]:i,disable_next_button:s,scroll_on_next:r,auto_focus:o,gfb_request_args_key:l,gfb_request_args_value:c}},getRequestOnSave(){return{data:this.getSavableData()}},onChangeState({state:e,slug:t}){if("options-tab"===t)return"end"===e?(this.loading={},this.$set(this,"isLoading",!1),void(this.pendingSave&&(this.pendingSave=!1,this.saveByAjax(this,this.$options.name)))):void this.$set(this,"isLoading","begin"===e)},validateField(e,t){if("gfb_request_args_key"!==e&&"gfb_request_args_value"!==e)return!0;const a=String(null!=t?t:"");if(/^\d+$/.test(a)){const t=this.__("Must contain at least one letter (A–Z). Numbers only are not allowed.","jet-form-builder");return this.$set(this.errors,e,t),!1}return this.$set(this.errors,e,""),!0},changeSelfPromotableRoles(e){Array.isArray(e)&&this.changeVal("self_promotable_roles",e)},changeVal(e,t){this.$set(this.storage,e,t),("gfb_request_args_key"!==e&&"gfb_request_args_value"!==e||this.validateField(e,t))&&(this.$set(this.loading,e,!0),this.isLoading?this.pendingSave=!0:this.saveByAjax(this,this.$options.name))}}};a(7167);const ot=p(rt,tt,[],!1,null,"2967d914",null).exports,{__:lt}=wp.i18n,ct=lt("Options","jet-form-builder"),ut=ot,dt=!1;var pt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[a("cx-vui-switcher",{attrs:{name:"enable_user_journey",label:e.loading.enable_user_journey?e.label.enable_user_journey+" (loading...)":e.label.enable_user_journey,description:e.help.enable_user_journey,"wrapper-css":["equalwidth"],value:!!e.storage.hasOwnProperty("enable_user_journey")&&e.storage.enable_user_journey,disabled:e.isLoading},on:{input:function(t){return e.changeVal("enable_user_journey",t)}}}),e._v(" "),e.storage.enable_user_journey?[a("cx-vui-select",{staticClass:"user-journey-select",attrs:{name:"storage_type",label:e.loading.storage_type?e.label.storage_type+" (loading...)":e.label.storage_type,description:e.help.storage_type,"wrapper-css":["equalwidth"],"options-list":[{value:"local",label:"Local Storage"},{value:"session",label:"Session Storage"}],value:e.storage.hasOwnProperty("storage_type")?e.storage.storage_type:"local",disabled:!e.storage.enable_user_journey||e.isLoading},on:{input:function(t){return e.changeVal("storage_type",t)}}}),e._v(" "),a("cx-vui-component-wrapper",[a("div",{staticClass:"cx-vui-component__label"},[e._v("Please note!")]),e._v(" "),a("div",[a("b",[e._v("Session Storage:")]),e._v(" The information is kept only while this tab or window is open. Reloading the page is fine, but as soon as you close the tab, the data disappears. Other tabs or windows of the site can’t see it. You can still get it back by pressing Ctrl + Shift + T (“Reopen Closed Tab”)")]),e._v(" "),a("div",[a("b",[e._v("Local Storage:")]),e._v(" The information stays much longer—every tab or window of this site can use it, and it remains even after you close and reopen the browser, until you clear it yourself.")])]),e._v(" "),a("cx-vui-select",{staticClass:"user-journey-select",attrs:{name:"clear_after_submit",label:e.loading.clear_after_submit?e.label.clear_after_submit+" (loading...)":e.label.clear_after_submit,description:e.help.clear_after_submit,"wrapper-css":["equalwidth"],"options-list":[{value:"always",label:"After any submit (success or failure)"},{value:"success",label:"After successful submit only"}],value:e.storage.hasOwnProperty("clear_after_submit")?e.storage.clear_after_submit:"success",disabled:!e.storage.enable_user_journey||e.isLoading},on:{input:function(t){return e.changeVal("clear_after_submit",t)}}})]:e._e()],2)};pt._withStripped=!0;const _t={enable_user_journey:(0,Pe.__)("Enable User Journey Tracking","jet-form-builder"),storage_type:(0,Pe.__)("Storage Type","jet-form-builder"),clear_after_submit:(0,Pe.__)("Clear Journey After Submit","jet-form-builder")},ht={enable_user_journey:(0,Pe.__)("Track the user’s journey across the website and save it in the browser.","jet-form-builder"),storage_type:(0,Pe.__)("Choose where to store the user journey data","jet-form-builder"),clear_after_submit:(0,Pe.__)("When to clear the journey data after form submission","jet-form-builder")},{SaveTabByAjax:ft,i18n:gt}=window.JetFBMixins,bt={name:"user-journey-tab",props:{incoming:{type:Object,default:()=>({})}},mixins:[ft,gt],data(){return{label:_t,help:ht,storage:JSON.parse(JSON.stringify(this.incoming)),isLoading:!1,loading:{}}},created(){jfbEventBus.$on("request-state",this.onChangeState.bind(this))},methods:{getRequestOnSave(){return{data:{...this.storage}}},onChangeState({state:e,slug:t}){"user-journey-tab"===t&&("end"===e&&(this.loading={}),this.$set(this,"isLoading","begin"===e))},changeVal(e,t){this.isLoading||(this.$set(this.storage,e,t),this.$set(this.loading,e,!0),this.saveByAjax(this,this.$options.name))}}};a(74);const mt=p(bt,pt,[],!1,null,null,null).exports,{__:vt}=wp.i18n,yt=vt("User Journey","jet-form-builder"),wt=mt,xt=!1;var jt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[a("cx-vui-input",{attrs:{name:"ipinfo_token","wrapper-css":["equalwidth"],size:"fullwidth",label:e.loading.ipinfo_token?e.label.ipinfo_token+" (loading...)":e.label.ipinfo_token,description:e.help.ipinfo_token,value:e.storage.hasOwnProperty("ipinfo_token")?e.storage.ipinfo_token:"",disabled:e.isLoading},on:{input:function(t){return e.changeVal("ipinfo_token",t)}}})],1)};jt._withStripped=!0;const{sprintf:kt,__:Ct}=wp.i18n,St={ipinfo_token:kt(Ct('Sign in at ipinfo.io and get your API token here.',"jet-form-builder"),"https://ipinfo.io","https://ipinfo.io/dashboard/token")},At={ipinfo_token:Ct("API Token","jet-form-builder")},{SaveTabByAjax:Bt,i18n:Lt}=window.JetFBMixins,Ot=p({name:"phone-field-tab",props:{incoming:{type:Object,default:{}}},mixins:[Bt,Lt],data(){return{label:At,help:St,storage:JSON.parse(JSON.stringify(this.incoming)),isLoading:!1,loading:{}}},created(){jfbEventBus.$on("request-state",this.onChangeState.bind(this))},methods:{getRequestOnSave(){return{data:{...this.storage}}},onChangeState({state:e,slug:t}){"phone-field-tab"===t&&("end"===e&&(this.loading={}),this.$set(this,"isLoading","begin"===e))},changeVal(e,t){this.isLoading||(this.$set(this.storage,e,t),this.$set(this.loading,e,!0),this.saveByAjax(this,this.$options.name))}}},jt,[],!1,null,null,null).exports,{__:$t}=wp.i18n,qt=$t("Ipinfo API","jet-form-builder"),Pt=Ot;var Tt=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("SideBarBoxes",{scopedSlots:e._u([{key:"icon-help",fn:function(){return[a("svg",{attrs:{width:"14",height:"21",viewBox:"0 0 14 21",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M5.25 21H8.75V17.5H5.25V21ZM7 0C3.1325 0 0 3.1325 0 7H3.5C3.5 5.075 5.075 3.5 7 3.5C8.925 3.5 10.5 5.075 10.5 7C10.5 10.5 5.25 10.0625 5.25 15.75H8.75C8.75 11.8125 14 11.375 14 7C14 3.1325 10.8675 0 7 0Z",fill:"#7B7E81"}})])]},proxy:!0},{key:"content-help",fn:function(t){return[a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_knowledge,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"14",height:"16",viewBox:"0 0 14 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M13.458 11.2552L13.458 1.4115C13.458 1.03064 13.1357 0.708374 12.7549 0.708374L3.14551 0.708374C1.59277 0.708374 0.333008 1.96814 0.333008 3.52087L0.333008 12.8959C0.333008 14.4486 1.59277 15.7084 3.14551 15.7084L12.7549 15.7084C13.1357 15.7084 13.458 15.4154 13.458 15.0052L13.458 14.5365C13.458 14.3314 13.3408 14.1263 13.1943 14.0092C13.0479 13.5404 13.0479 12.2513 13.1943 11.8119C13.3408 11.6947 13.458 11.4896 13.458 11.2552ZM4.08301 4.63416C4.08301 4.54626 4.1416 4.45837 4.25879 4.45837L10.4697 4.45837C10.5576 4.45837 10.6455 4.54626 10.6455 4.63416L10.6455 5.22009C10.6455 5.33728 10.5576 5.39587 10.4697 5.39587L4.25879 5.39587C4.1416 5.39587 4.08301 5.33728 4.08301 5.22009L4.08301 4.63416ZM4.08301 6.50916C4.08301 6.42127 4.1416 6.33337 4.25879 6.33337L10.4697 6.33337C10.5576 6.33337 10.6455 6.42127 10.6455 6.50916L10.6455 7.09509C10.6455 7.21228 10.5576 7.27087 10.4697 7.27087L4.25879 7.27087C4.1416 7.27087 4.08301 7.21228 4.08301 7.09509L4.08301 6.50916ZM11.4951 13.8334L3.14551 13.8334C2.61816 13.8334 2.20801 13.4232 2.20801 12.8959C2.20801 12.3978 2.61816 11.9584 3.14551 11.9584L11.4951 11.9584C11.4365 12.4857 11.4365 13.3353 11.4951 13.8334Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_knowledge))])])]),e._v(" "),a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_community,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M15.5913 8.04564C15.5913 3.87728 12.214 0.5 8.04564 0.5C3.87728 0.5 0.5 3.87728 0.5 8.04564C0.5 11.8185 3.23834 14.9523 6.85903 15.5L6.85903 10.2363L4.94219 10.2363L4.94219 8.04564L6.85903 8.04564L6.85903 6.40264C6.85903 4.51623 7.98479 3.45132 9.68864 3.45132C10.5406 3.45132 11.3925 3.60345 11.3925 3.60345L11.3925 5.45943L10.4493 5.45943C9.50609 5.45943 9.20183 6.03753 9.20183 6.64604L9.20183 8.04564L11.3012 8.04564L10.9665 10.2363L9.20183 10.2363L9.20183 15.5C12.8225 14.9523 15.5913 11.8185 15.5913 8.04564Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_community))])])]),e._v(" "),a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_support,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"15",height:"18",viewBox:"0 0 15 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M7.58333 0.666687C3.675 0.666687 0.5 3.84169 0.5 7.75002C0.5 11.6584 3.675 14.8334 7.58333 14.8334H8V17.3334C12.05 15.3834 14.6667 11.5 14.6667 7.75002C14.6667 3.84169 11.4917 0.666687 7.58333 0.666687ZM8.41667 12.75H6.75V11.0834H8.41667V12.75ZM8.41667 9.83335H6.75C6.75 7.12502 9.25 7.33335 9.25 5.66669C9.25 4.75002 8.5 4.00002 7.58333 4.00002C6.66667 4.00002 5.91667 4.75002 5.91667 5.66669H4.25C4.25 3.82502 5.74167 2.33335 7.58333 2.33335C9.425 2.33335 10.9167 3.82502 10.9167 5.66669C10.9167 7.75002 8.41667 7.95835 8.41667 9.83335Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_support))])])]),e._v(" "),a("div",{staticClass:"help-center-link"},[a("a",{attrs:{href:t.link_git,target:"_blank"}},[a("div",{staticClass:"help-center-link-icon"},[a("svg",{attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M7.976 0C5.86071 0.000265156 3.83214 0.840676 2.33641 2.33641C0.840676 3.83214 0.000265156 5.86071 0 7.976C0 11.498 2.3 14.483 5.431 15.56C5.823 15.609 5.969 15.364 5.969 15.168V13.798C3.768 14.288 3.279 12.722 3.279 12.722C2.936 11.792 2.398 11.547 2.398 11.547C1.664 11.058 2.446 11.058 2.446 11.058C3.229 11.107 3.67 11.89 3.67 11.89C4.404 13.113 5.529 12.77 5.97 12.575C6.018 12.037 6.263 11.695 6.459 11.499C4.697 11.303 2.838 10.618 2.838 7.535C2.838 6.655 3.131 5.969 3.67 5.382C3.62 5.235 3.327 4.404 3.768 3.327C3.768 3.327 4.453 3.131 5.969 4.159C6.605 3.963 7.291 3.914 7.976 3.914C8.661 3.914 9.346 4.012 9.982 4.159C11.499 3.132 12.184 3.327 12.184 3.327C12.624 4.404 12.33 5.235 12.281 5.431C12.8199 6.01808 13.1171 6.7871 13.113 7.584C13.113 10.667 11.253 11.303 9.493 11.499C9.786 11.743 10.031 12.232 10.031 12.966V15.168C10.031 15.364 10.177 15.608 10.569 15.56C12.155 15.0248 13.5327 14.0046 14.5073 12.6436C15.4818 11.2827 16.004 9.64989 16 7.976C15.951 3.572 12.38 0 7.976 0Z",fill:"#007CBA"}})])]),e._v(" "),a("div",{staticClass:"help-center-link-label"},[e._v(e._s(t.label_git))])])])]}}])})};Tt._withStripped=!0;const{SideBarBoxes:Et}=JetFBComponents,Mt={name:"SettingsSideBar",components:{SideBarBoxes:Et}};a(52);const Jt=p(Mt,Tt,[],!1,null,null,null).exports,{applyFilters:Vt,doAction:It}=wp.hooks,{SaveTabByAjax:Rt,GetIncoming:Ft,i18n:Gt}=window.JetFBMixins,{CxVuiTabsPanel:Nt,CxVuiTabs:zt,AlertsList:Ut,FormBuilderPage:Ht}=JetFBComponents;window.jfbEventBus=window.jfbEventBus||new Vue({});const Kt=Vt("jet.fb.register.settings-page.tabs",[r,o,s,e,l,t,n]),Zt=e=>{window.location.hash="#"+e},Wt={name:"jfb-settings",components:{AlertsList:Ut,CxVuiTabsPanel:Nt,CxVuiTabs:zt,SettingsSideBar:Jt,FormBuilderPage:Ht},data(){const[e,t]=(()=>{const e=Kt[0].component.name;if(!window.location.hash)return Zt(e),[e];let[t,...a]=window.location.hash.replace("#","").split("__"),n=Kt.find(e=>e?.component?.name===t);return n?(Zt([n.component.name,...a].join("__")),[n.component.name,a]):(Zt(e),[e])})();return{activeTabSlug:e,activeTabInnerSlugs:t,tabs:Kt,loadingTab:{},isActivePro:!1}},mixins:[Rt,Ft,Gt],created(){this.isActivePro=this.getIncoming("is_active"),jfbEventBus.$on("request-state",e=>{const{state:t,slug:a}=e;this.$set(this.loadingTab,a,"begin"===t)}),jfbEventBus.$on("alert-click-thanks",({self:e})=>{e.closeAlert()}),jfbEventBus.$on("alert-click-check",({self:e})=>{e.closeAlert()})},methods:{onChangeActiveTab(e){const t=new URL(document.URL);t.hash="#"+e,document.location.href=t.href,jfbEventBus.$emit("change-tab",{slug:e})},onSaveTab(e,t){const a=this.$refs.tabComponents[e];this.saveByAjax(a,t)}}};a(2995);const Dt=p(Wt,$,[],!1,null,null,null).exports,{renderCurrentPage:Yt}=window.JetFBActions,{NoticesPlugin:Xt}=JetFBStore;Yt(Dt,{store:new Vuex.Store({plugins:[Xt]})})})()})(); \ No newline at end of file diff --git a/assets/build/admin/vuex.package.asset.php b/assets/build/admin/vuex.package.asset.php index dd0af0eca..f75d7379d 100644 --- a/assets/build/admin/vuex.package.asset.php +++ b/assets/build/admin/vuex.package.asset.php @@ -1 +1 @@ - array('wp-api-fetch', 'wp-i18n'), 'version' => '5479d2c7ce7ecc27f851'); + array('wp-api-fetch', 'wp-i18n'), 'version' => '282f8bf25f7004a4e2a9'); diff --git a/assets/build/admin/vuex.package.js b/assets/build/admin/vuex.package.js index 7b5826d5b..1e31dbf9e 100644 --- a/assets/build/admin/vuex.package.js +++ b/assets/build/admin/vuex.package.js @@ -1 +1 @@ -(()=>{var t={62:t=>{"use strict";t.exports=function(t,e){return e||(e={}),t?(t=String(t.__esModule?t.default:t),/^['"].*['"]$/.test(t)&&(t=t.slice(1,-1)),e.hash&&(t+=e.hash),/["'() \t\n]|(%20)/.test(t)||e.needQuotes?'"'.concat(t.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):t):t}},97:(t,e,n)=>{var s=n(2485);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("5184e3d8",s,!1,{})},361:(t,e,n)=>{var s=n(8469);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("fa8aca68",s,!1,{})},611:(t,e,n)=>{"use strict";function s(t,e){for(var n=[],s={},i=0;if});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},l=i&&(document.head||document.getElementsByTagName("head")[0]),r=null,a=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",m="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(t,e,n,i){c=n,d=i||{};var l=s(t,e);return g(l),function(e){for(var n=[],i=0;in.parts.length&&(s.parts.length=n.parts.length)}else{var l=[];for(i=0;i{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-form-builder-page>h1.inline{display:inline-block}",""]);const r=l},935:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n="",s=void 0!==e[5];return e[4]&&(n+="@supports (".concat(e[4],") {")),e[2]&&(n+="@media ".concat(e[2]," {")),s&&(n+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),n+=t(e),s&&(n+="}"),e[2]&&(n+="}"),e[4]&&(n+="}"),n})).join("")},e.i=function(t,n,s,i,o){"string"==typeof t&&(t=[[null,t,void 0]]);var l={};if(s)for(var r=0;r0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=o),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),i&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=i):u[4]="".concat(i)),e.push(u))}},e}},1060:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.misc-pub-section {\n\tborder-bottom: 1px solid #ececec;\n}\n.misc-pub-section:last-child {\n\tborder-bottom: unset;\n}\n\n",""]);const r=l},1645:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-actions{display:flex;flex-direction:column;row-gap:10px}.jfb-actions a.jfb-dropdown-item{padding:.5em 0;text-decoration:none}.jfb-actions a.jfb-dropdown-item:hover{text-decoration:underline}.jfb-actions a.jfb-dropdown-item:not(:first-child){border-top:1px solid #ccc}",""]);const r=l},1746:(t,e,n)=>{var s=n(665);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("04f1d88b",s,!1,{})},2054:t=>{"use strict";t.exports="data:image/svg+xml;charset=UTF-8,%3csvg width=%27132%27 height=%2781%27 viewBox=%270 0 132 81%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%2792%27 cy=%275%27 r=%2776%27 fill=%27%23F6F9FE%27/%3e%3cg opacity=%270.4%27%3e%3cpath d=%27M20.6371 44.9469L15.9629 39.4702C15.145 39.7207 14.3531 39.9097 14.3531 39.9097C13.5343 40.1604 13.1715 38.9014 13.9908 38.6495C13.9908 38.6495 16.5129 37.9254 17.9722 37.3814C19.5255 36.8023 21.8593 35.7162 21.8593 35.7162C22.6423 35.3717 23.1754 36.5128 22.4105 36.9059C22.4105 36.9059 21.6395 37.2996 20.7639 37.6805L32.0768 51.6442L31.7149 46.143C31.747 43.9315 31.53 42.1915 31.0561 40.9194C30.372 39.083 29.2388 38.0585 28.3061 37.2798C27.0964 36.3373 26.0057 35.5657 25.5494 34.3406C25.0413 32.9769 25.6022 31.32 27.0623 30.7757C27.1269 30.7516 27.1912 30.7367 27.2577 30.7155C23.7132 29.2801 19.6444 29.1149 15.7775 30.5564C10.5891 32.4906 7.01753 36.852 5.86248 41.8748C6.21571 41.7559 6.54644 41.6398 6.82618 41.5356C8.37789 40.9571 10.7125 39.8707 10.7125 39.8707C11.4955 39.5262 12.0293 40.667 11.2637 41.0604C11.2637 41.0604 10.4943 41.4535 9.6163 41.8353L21.0168 55.9052L20.6371 44.9469Z%27 fill=%27%23162B40%27/%3e%3cpath d=%27M6.46129 50.9413C8.6507 56.8188 13.9578 60.6272 19.8089 61.1864L5.49425 44.4176C5.35841 46.5723 5.65903 48.7877 6.46129 50.9413Z%27 fill=%27%23162B40%27/%3e%3cpath d=%27M31.4607 57.5783C31.3974 57.5302 31.3355 57.4761 31.2786 57.4111L22.0547 46.6064L22.4227 61.2171C23.9 61.1139 25.3857 60.8016 26.8426 60.2584C28.5717 59.6129 30.1197 58.6955 31.4607 57.5783Z%27 fill=%27%23162B40%27/%3e%3cpath d=%27M31.6882 33.4237C31.9275 33.8737 32.1538 34.3666 32.3575 34.9134C32.919 36.4206 33.2678 38.2195 33.2098 40.6539L33.559 55.4605C37.0161 51.2397 38.2019 45.3494 36.161 39.8705C35.199 37.2881 33.6345 35.1082 31.6882 33.4237Z%27 fill=%27%23162B40%27/%3e%3c/g%3e%3cpath d=%27M41.1479 35.2973C40.8922 35.1497 40.8202 34.8809 40.7973 34.5268L42.3832 26.4665C39.5027 23.7809 37.1369 20.5971 35.358 17.184L27.1958 16.5619C26.8909 16.4995 26.6353 16.3519 26.5633 16.0831L24.0914 6.58894C24.0193 6.32011 24.2161 5.97925 24.3997 5.85802L31.2426 1.2873C31.1618 -2.50875 31.6187 -6.44886 32.7706 -10.215L27.4162 -16.4877C27.2097 -16.7205 27.2721 -17.0253 27.3345 -17.3302L32.2543 -25.8516C32.4019 -26.1073 32.6708 -26.1793 33.0248 -26.2021L41.0851 -24.6162C43.7708 -27.4968 46.9545 -29.8626 50.3676 -31.6415L50.9898 -39.8037C51.0522 -40.1085 51.1998 -40.3642 51.4686 -40.4362L60.9627 -42.9081C61.2315 -42.9801 61.5724 -42.7833 61.6936 -42.5997L66.2643 -35.7569C70.0604 -35.8376 74.0005 -35.3807 77.7666 -34.2289L84.0393 -39.5833C84.2721 -39.7897 84.577 -39.7274 84.8818 -39.665L93.4033 -34.7451C93.6589 -34.5975 93.7309 -34.3287 93.7538 -33.9747L92.1679 -25.9144C95.0484 -23.2287 97.4142 -20.0449 99.1931 -16.6319L107.355 -16.0097C107.66 -15.9473 107.916 -15.7997 107.988 -15.5309L110.46 -6.03677C110.532 -5.76795 110.335 -5.42709 110.151 -5.30586L103.309 -0.735128C103.389 3.06092 102.932 7.00103 101.781 10.7672L107.135 17.0399C107.341 17.2727 107.279 17.5775 107.217 17.8823L102.297 26.4038C102.149 26.6594 101.88 26.7315 101.526 26.7543L93.466 25.1684C90.7803 28.049 87.5966 30.4147 84.1835 32.1936L83.5613 40.3559C83.4989 40.6607 83.3514 40.9163 83.0825 40.9884L73.5884 43.4603C73.3196 43.5323 72.9787 43.3355 72.8575 43.1519L68.2868 36.3091C64.4907 36.3898 60.5506 35.9329 56.7845 34.7811L50.5118 40.1355C50.279 40.3419 49.9741 40.2795 49.6693 40.2171L41.1479 35.2973ZM81.4877 15.4123C89.7609 7.57702 90.1486 -5.49257 82.3133 -13.7657C74.4781 -22.0388 61.4085 -22.4265 53.0862 -14.5061C44.8131 -6.67081 44.4254 6.39878 52.3458 14.7211C60.0958 22.945 73.2146 23.2475 81.4877 15.4123Z%27 fill=%27url%28%23paint0_linear_24_666%29%27/%3e%3cpath d=%27M61.3119 25.2309C75.1151 28.4819 88.9856 20.0313 92.2436 6.22154C95.5838 -7.54069 87.0143 -21.3761 73.2586 -24.7095C59.4554 -27.9605 45.5849 -19.5099 42.3269 -5.70014C39.0689 8.10956 47.5087 21.9798 61.3119 25.2309ZM47.9045 -4.34527C50.4645 -15.0468 61.2045 -21.6839 71.9009 -19.1292C82.5974 -16.5746 89.226 -5.83483 86.6185 4.94896C84.0585 15.6505 73.3185 22.2876 62.5398 19.6854C51.9256 17.1783 45.3445 6.35623 47.9045 -4.34527Z%27 fill=%27url%28%23paint1_linear_24_666%29%27/%3e%3cdefs%3e%3clinearGradient id=%27paint0_linear_24_666%27 x1=%277.99947%27 y1=%2716.1591%27 x2=%27118.131%27 y2=%27-34.0701%27 gradientUnits=%27userSpaceOnUse%27%3e%3cstop offset=%270.00114429%27 stop-color=%27%239EFFFF%27/%3e%3cstop offset=%271%27 stop-color=%27%233D59C9%27/%3e%3c/linearGradient%3e%3clinearGradient id=%27paint1_linear_24_666%27 x1=%2763.2476%27 y1=%27-27.4653%27 x2=%2751.7464%27 y2=%2730.0552%27 gradientUnits=%27userSpaceOnUse%27%3e%3cstop offset=%270.00114429%27 stop-color=%27%234EFEC3%27/%3e%3cstop offset=%271%27 stop-color=%27%233D59C9%27/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e"},2269:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.handle-actions[data-v-5ebbe4a6] {\n\tdisplay: flex;\n}\n\n",""]);const r=l},2485:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,'.cx-vui-panel--loading{opacity:.5}.cx-vui-panel-table-wrapper{margin-bottom:unset}.cx-vue-list-table .list-table-heading,.cx-vue-list-table .list-table-item-columns{justify-content:space-between}.cx-vue-list-table .list-table-item{flex-direction:column;position:relative;background-color:#fff}.cx-vue-list-table .list-table-item:not(:last-child){border-bottom:1px solid #ececec}.cx-vue-list-table .list-table-item:hover{background-color:#e3f6fd}.cx-vue-list-table .list-table-item:hover .list-table-item-actions{visibility:visible}.cx-vue-list-table .list-table-item--has-choose .list-table-item-actions{left:5.2em}.cx-vue-list-table .list-table-item--has-actions .list-table-item-columns{margin-bottom:1.5em}.cx-vue-list-table .list-table-item-actions{display:flex;width:85%;column-gap:.5em;visibility:hidden;position:absolute;bottom:.5em;left:1.5em}.cx-vue-list-table .list-table-item-actions>*:not(:last-child)::after{content:"|"}.cx-vue-list-table .list-table-item-actions-single{text-decoration:unset}.cx-vue-list-table .list-table-item-actions-single--type-danger{color:#b22222}.cx-vue-list-table .list-table-item-actions-single.disabled{pointer-events:none;cursor:default}.cx-vue-list-table .list-table-item-columns{display:flex;justify-content:space-between;width:100%}.cx-vue-list-table .list-table-item__cell{white-space:nowrap;overflow:hidden;position:relative;padding:8px 20px 6px}.cx-vue-list-table .list-table-item__cell:not(.cell--choose){flex:1}.cx-vue-list-table .list-table-heading__cell:not(.cell--choose){flex:1}body.rtl .cx-vue-list-table .list-table-item--has-choose .list-table-item-actions{right:5.2em}body.rtl .cx-vue-list-table .list-table-item-actions{right:1.5em}',""]);const r=l},2877:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.jfb-primary-actions {\n\tdisplay: flex;\n\tjustify-content: space-between;\n}\n.cx-vui-button.cx-vui-button--size-link {\n\tfont-size: inherit;\n}\n.major-publishing-actions {\n\tpadding: 10px;\n\tclear: both;\n\tborder-top: 1px solid #dcdcde;\n\tbackground: #f6f7f7;\n}\n",""]);const r=l},2972:(t,e,n)=>{var s=n(8192);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("c692d034",s,!1,{})},3033:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-icon-status[data-v-5890b8d6]{position:relative;display:inline-block}.jfb-icon-status-has-help[data-v-5890b8d6]{cursor:pointer}.jfb-icon-status-has-text[data-v-5890b8d6]{display:flex;column-gap:.5em;align-items:center}.jfb-icon-status--text[data-v-5890b8d6]{text-overflow:ellipsis;overflow:hidden;padding:.1em 0}.jfb-icon-status .dashicons-dismiss[data-v-5890b8d6]{color:#ff4500}.jfb-icon-status .dashicons-warning[data-v-5890b8d6]{color:orange}.jfb-icon-status .dashicons-yes-alt[data-v-5890b8d6]{color:#32cd32}.jfb-icon-status .dashicons-info[data-v-5890b8d6]{color:#90c6db}.jfb-icon-status .dashicons-hourglass[data-v-5890b8d6]{color:#b5b5b5}.jfb-icon-status .cx-vui-tooltip[data-v-5890b8d6]{width:fit-content;bottom:calc(100% + 15px);box-sizing:border-box;pointer-events:none;transition:all .18s linear;opacity:0;padding-left:1em;padding-right:1em;position:absolute}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-right[data-v-5890b8d6]{right:-1.2em}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-right[data-v-5890b8d6]:after{right:20px;left:unset}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-left[data-v-5890b8d6]{left:-0.9em}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-left[data-v-5890b8d6]:after{left:20px;right:unset}.jfb-icon-status:hover .cx-vui-tooltip[data-v-5890b8d6]{opacity:1}.jfb-icon-status:hover .cx-vui-tooltip.tooltip-position-top-right[data-v-5890b8d6]{bottom:100%}.jfb-icon-status:hover .cx-vui-tooltip.tooltip-position-top-left[data-v-5890b8d6]{bottom:100%}",""]);const r=l},3061:(t,e,n)=>{var s=n(7513);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("2fdc9246",s,!1,{})},3189:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-form-builder-page pre{margin:unset;overflow:auto}",""]);const r=l},3249:(t,e,n)=>{var s=n(3189);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("922c9ac8",s,!1,{})},3726:(t,e,n)=>{var s=n(4378);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("15f24569",s,!1,{})},4285:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>p});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o),r=n(62),a=n.n(r),c=new URL(n(2054),n.b),u=l()(i()),d=a()(c);u.push([t.id,`.jet-form-builder-page__banner{display:flex;flex-direction:column;align-items:stretch;gap:20px;border-radius:4px;color:#23282d;overflow:hidden;position:relative;background-size:cover;background-position:50% 50%;box-shadow:0px 2px 6px rgba(35,40,45,.07)}.jet-form-builder-page__banner .banner-frame{display:flex;flex-direction:column;align-items:stretch;border-radius:4px;z-index:1}.jet-form-builder-page__banner .banner-inner{height:100%;box-sizing:border-box;border-radius:4px}.jet-form-builder-page__banner .banner-label{font-weight:500;font-size:14px;line-height:18px;text-transform:uppercase;margin-bottom:38px}.jet-form-builder-page__banner .banner-title{font-size:20px;line-height:28px;margin-bottom:10px}.jet-form-builder-page__banner .banner-content{font-size:14px;line-height:18px;margin-bottom:20px}.jet-form-builder-page__banner .banner-buttons{display:flex;justify-content:flex-start;align-items:flex-end;flex:1 1 auto}.jet-form-builder-page__banner .banner-buttons .cx-vui-button{margin-right:10px}.jet-form-builder-page__banner .banner-buttons .cx-vui-button:last-child{margin-right:0}.jet-form-builder-page__banner.light-1-preset{background-color:#fff}.jet-form-builder-page__banner.light-1-preset .banner-label{color:#bb97ff}.jet-form-builder-page__banner.light-1-preset .banner-content{color:#7b7e81}.jet-form-builder-page__banner.light-1-preset:after{content:"";display:block;position:absolute;width:100%;height:100%;top:0;left:0;background-image:url(${d});background-repeat:no-repeat;background-position:right;background-position-y:0}`,""]);const p=u},4378:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-ellipsis{overflow:hidden;text-overflow:ellipsis}.list-table-item__cell{overflow:hidden;text-overflow:ellipsis}.list-table-item__cell.overflow-visible.overflow-visible{overflow:visible}.list-table-item__cell.is-editable{display:flex;justify-content:space-between;column-gap:1em}.list-table-item__cell.is-editable span.dashicons{transition:all .2s ease-in-out;padding:.2em;border-radius:50%;box-shadow:unset;cursor:pointer;background-color:#fff}.list-table-item__cell--body{flex:1}.list-table-item__cell--body-value{overflow:hidden;text-overflow:ellipsis}.list-table-item__cell--body-value.jfb-control{flex:1;padding:.1em}.list-table-item__cell--body-value.jfb-control>*{width:100%}.list-table-item__cell.show-overflow.show-overflow{word-break:break-word;white-space:normal;line-height:1.5}.list-table-item__cell:hover .list-table-item__cell--body-is-editable span.dashicons:hover{box-shadow:0 0 8px #ccc}",""]);const r=l},4487:(t,e,n)=>{var s=n(9699);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("7f272449",s,!1,{})},4744:(t,e,n)=>{var s=n(8908);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("9b25b9f2",s,!1,{})},5201:(t,e,n)=>{var s=n(4285);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("c4aaf4cc",s,!1,{})},5343:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vui-component[data-v-207e75c4]{padding:unset}",""]);const r=l},5850:(t,e,n)=>{var s=n(9942);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("f88cbe24",s,!1,{})},6284:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vui-popup.export-popup .cx-vui-popup__body{width:65vw}.cx-vui-popup.export-popup .cx-vui-popup__footer{justify-content:space-between}.cx-vui-popup.export-popup .footer-counter{display:flex;gap:1em}",""]);const r=l},6561:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-form-builder-page .cx-vui-alert{width:100%;box-sizing:border-box;padding:10px 20px;margin-top:20px;background-color:#f4f4f5;border-radius:4px;display:flex;justify-content:flex-start;align-items:flex-start}.jet-form-builder-page .cx-vui-alert .cx-vui-alert__icon{margin-top:3px;margin-right:10px}.jet-form-builder-page .cx-vui-alert .cx-vui-alert__message{flex:1 1 auto;color:#7b7e81;font-size:13px}.jet-form-builder-page .cx-vui-alert.info-type{background-color:#edf6fa}.jet-form-builder-page .cx-vui-alert.info-type .cx-vui-alert__icon svg{fill:#007cba}.jet-form-builder-page .cx-vui-alert.info-type .cx-vui-alert__message{color:#007cba}.jet-form-builder-page .cx-vui-alert.success-type{background-color:#e9f6ea}.jet-form-builder-page .cx-vui-alert.success-type .cx-vui-alert__icon svg{fill:#46b450}.jet-form-builder-page .cx-vui-alert.success-type .cx-vui-alert__message{color:#46b450}.jet-form-builder-page .cx-vui-alert.error-type{background-color:#fbf0f0}.jet-form-builder-page .cx-vui-alert.error-type .cx-vui-alert__icon svg{fill:#c92c2c}.jet-form-builder-page .cx-vui-alert.error-type .cx-vui-alert__message{color:#c92c2c}.jet-form-builder-page__alerts{width:100%;display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.jet-form-builder-page__alert{position:relative;display:flex;justify-content:flex-start;align-items:flex-start;background-color:#fff;box-shadow:0px 2px 6px rgba(35,40,45,.07);padding:20px;margin-top:10px}.jet-form-builder-page__alert:first-child{margin-top:0}.jet-form-builder-page__alert.info-type .alert-type-line{background:#3b82f6}.jet-form-builder-page__alert.success-type .alert-type-line{background:#40d825;background:linear-gradient(180deg, #40D825 0%, #B1EF3A 100%)}.jet-form-builder-page__alert.danger-type .alert-type-line{background:#fedb22;background:linear-gradient(0deg, #FEDB22 0%, #FFA901 100%),#5099e6}.jet-form-builder-page__alert.error-type .alert-type-line{background:#ff8b8b;background:linear-gradient(0deg, #FF8B8B 0%, #F5435A 100%),#5099e6}.jet-form-builder-page__alert .alert-type-line{display:block;position:absolute;width:4px;height:100%;top:0;left:0;background:linear-gradient(0deg, #5B77E7 0%, #49B5D2 53.65%, #26E8A8 100%)}.jet-form-builder-page__alert .alert-close{display:flex;justify-content:center;align-items:center;position:absolute;top:7px;right:7px;cursor:pointer}.jet-form-builder-page__alert .alert-icon{position:relative;display:flex;justify-content:center;align-items:center;max-width:80px;width:48px;margin-right:20px}.jet-form-builder-page__alert .alert-icon svg{width:100%;height:auto}.jet-form-builder-page__alert .alert-content{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.jet-form-builder-page__alert .alert-title{color:#23282d;font-size:14px;line-height:18px;font-weight:500;margin-bottom:5px}.jet-form-builder-page__alert .alert-message{color:#7b7e81;font-size:13px;line-height:16px}.jet-form-builder-page__alert .alert-buttons{margin-top:10px}.jet-form-builder-page__alert .alert-buttons .cx-vui-button{margin-right:10px}.jet-form-builder-page__alert .alert-buttons .cx-vui-button:last-child{margin-right:0}",""]);const r=l},6565:()=>{window.jfbEventBus=window.jfbEventBus||new Vue({data:()=>({reactiveCounter:0})})},6758:t=>{"use strict";t.exports=function(t){return t[1]}},7008:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\na[data-v-6c61ef64] {\n\tmargin-right: 1em;\n\ttext-decoration: none;\n}\nbody.rtl a[data-v-6c61ef64] {\n\tmargin-left: 1em;\n}\n",""]);const r=l},7287:(t,e,n)=>{var s=n(7443);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("d08b32f0",s,!1,{})},7289:(t,e,n)=>{var s=n(2877);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("1e0fc7e8",s,!1,{})},7443:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-fb-choose-action-wrapper{display:flex;align-items:center;justify-content:space-between;gap:.7em;max-width:20vw;min-width:250px}.jet-fb-choose-action-wrapper .cx-vui-component{flex:1;padding:unset}.jet-fb-choose-action-wrapper .cx-vui-component__control{flex:1}",""]);const r=l},7513:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.page-actions[data-v-35fab3b2] {\n\tdisplay: flex;\n\tgap: 1em;\n}\n\n",""]);const r=l},7597:(t,e,n)=>{var s=n(3033);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("39430ad8",s,!1,{})},7803:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-content-sidebar{width:300px;display:flex;flex-direction:column;gap:2em}",""]);const r=l},7823:(t,e,n)=>{var s=n(7803);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("94a4f310",s,!1,{})},7834:(t,e,n)=>{var s=n(7950);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("fa7110b0",s,!1,{})},7950:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vue-list-table .cell--id.cell--id{flex:.3}",""]);const r=l},7985:(t,e,n)=>{var s=n(2269);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("bbaec80a",s,!1,{})},8192:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-pagination{display:flex;justify-content:space-between;align-items:center;padding:1.5em;margin-bottom:unset}.jfb-pagination--sort .cx-vui-component{column-gap:1em;justify-content:center;align-items:center;padding:unset}.jfb-pagination .cx-vui-input{background-color:#fff}.jfb-pagination li.cx-vui-pagination-item{width:1.2em;height:1.5em;border-radius:5px;font-size:1.15em;transition:all .3s ease-in-out}.jfb-pagination li.cx-vui-pagination-item-active,.jfb-pagination li.cx-vui-pagination-item:hover{box-shadow:0 5px 5px -1px #bdbdbd;background-color:#007cba;color:#f5f5f5;border-color:#007cba}",""]);const r=l},8241:(t,e,n)=>{var s=n(1645);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("d35e5ff6",s,!1,{})},8469:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"select option[data-v-1bd48c17]:disabled{background-color:#f5f5f5}",""]);const r=l},8661:(t,e,n)=>{var s=n(6561);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("4a3f50be",s,!1,{})},8848:(t,e,n)=>{var s=n(1060);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("25d89817",s,!1,{})},8908:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-cx-vui-component.cx-vui-component{column-gap:1em;flex-direction:row-reverse;padding:1.2em}.jfb-cx-vui-component .cx-vui-component__label{font-size:inherit}",""]);const r=l},9244:(t,e,n)=>{var s=n(7008);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("5c9c0768",s,!1,{})},9256:(t,e,n)=>{var s=n(6284);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("eab0c31e",s,!1,{})},9492:(t,e,n)=>{var s=n(9840);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("3db94e28",s,!1,{})},9699:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vue-list-table .cell--choose.cell--choose{padding-right:unset}.cx-vue-list-table .cell--choose.cell--choose .cx-vui-component{padding:unset}.cx-vue-list-table .cell--choose.cell--choose .cx-vui-checkbox__check{margin-top:0}",""]);const r=l},9831:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"a[data-v-53bef95e]{text-decoration:none}a.with-flex[data-v-53bef95e]{display:flex;align-items:center;column-gap:.3em;width:fit-content}",""]);const r=l},9840:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-row-wrapper[data-v-4f8e09cf]{display:flex;gap:2em;align-items:end;padding:1em;margin-top:2em;flex-wrap:wrap}.jfb-row-wrapper--loading[data-v-4f8e09cf]{opacity:.5}.filters[data-v-4f8e09cf]{display:flex;gap:1em;align-items:flex-end;flex-wrap:wrap}.wrapper-buttons[data-v-4f8e09cf]{flex:1;text-align:end}",""]);const r=l},9942:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"#normal-sortables .jfb-list-table th{width:30%}.jfb-list-table{border-collapse:collapse;width:100%}.jfb-list-table-row{border-bottom:1px solid #ececec}.jfb-list-table-row--inner{padding:.8em}.jfb-list-table-row--item{word-break:break-word}.jfb-list-table-row--heading{text-align:left}.jfb-list-table-row:last-child{border-bottom:unset}body.rtl .jfb-list-table-row--heading{text-align:right}",""]);const r=l},9963:(t,e,n)=>{var s=n(9831);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("237ecbda",s,!1,{})},9971:(t,e,n)=>{var s=n(5343);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("3fee1c64",s,!1,{})}},e={};function n(s){var i=e[s];if(void 0!==i)return i.exports;var o=e[s]={id:s,exports:{}};return t[s](o,o.exports,n),o.exports}n.m=t,n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var s in e)n.o(e,s)&&!n.o(t,s)&&Object.defineProperty(t,s,{enumerable:!0,get:e[s]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.b=document.baseURI||self.location.href,(()=>{"use strict";var t={};n.r(t),n.d(t,{head:()=>Z,item:()=>R});var e={};n.r(e),n.d(e,{item:()=>X});var s={};n.r(s),n.d(s,{item:()=>tt});var i={};n.r(i),n.d(i,{control:()=>nt});var o={};n.r(o),n.d(o,{control:()=>it});var l={};n.r(l),n.d(l,{item:()=>ni}),n(6565);var r=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("FormBuilderPage",{attrs:{title:t.__("JetFormBuilder Payments","jet-form-builder")},scopedSlots:t._u([{key:"heading-after",fn:function(){return[n("ExportPaymentsButton")]},proxy:!0}])},[t._v(" "),n("ActionsWithFilters",{scopedSlots:t._u([{key:"filters",fn:function(){return[n("StatusFilter")]},proxy:!0}])}),t._v(" "),n("TablePagination"),t._v(" "),n("EntriesTable"),t._v(" "),t.$slots.default?[t._t("default")]:t._e(),t._v(" "),n("TablePagination")],2)};r._withStripped=!0;var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.show?n("div",{class:t.wrapperClass},[n("ChooseAction"),t._v(" "),n("div",{staticClass:"filters"},[t._t("filters")],2),t._v(" "),n("div",{staticClass:"wrapper-buttons"},[t._t("buttons")],2)],1):t._e()};a._withStripped=!0;var c=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jet-fb-choose-action-wrapper"},[n("cx-vui-select",{attrs:{placeholder:t.__("Bulk actions","jet-form-builder"),size:"fullwidth",value:t.currentAction,"options-list":t.actionsList},on:{input:t.setCurrentAction}}),t._v(" "),n("cx-vui-button",{attrs:{loading:t.isLoading,disabled:t.isDoing,"button-style":"accent-border",size:"mini"},on:{click:t.applyAction},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Apply","jet-form-builder")))]},proxy:!0}])})],1)};c._withStripped=!0;const u={CHOOSE_ACTION:"chooseAction",CLICK_ACTION:"clickAction"},d={props:{scope:{type:String,default:"default"}},methods:{scopedName(t){return"scope-"+this.scope+"/"+t},getter(t,e){const n=this.$store.getters[this.scopedName(t)];return void 0!==e&&"function"==typeof n?e?.length&&"object"==typeof e?n(...e):n(e):n},commit(t,e){return this.$store.commit(this.scopedName(t),e)},dispatch(t,e){return this.$store.dispatch(this.scopedName(t),e)}}},{i18n:p}=JetFBMixins,{applyFilters:m}=wp.hooks,{CHOOSE_ACTION:f,CLICK_ACTION:g}=u;window.jfbEventBus=window.jfbEventBus||new Vue({});const{mapState:h,mapGetters:b,mapMutations:v,mapActions:_}=Vuex,C={name:"ChooseAction",mixins:[p,d],computed:{...b(["isDoing"]),currentAction(){return this.getter("currentAction")},isLoading(){return this.getter("isLoading","applyButton")},actionsList(){return this.getter("actionsList")},getChecked(){return this.getter("getChecked")},getActionPromise(){return this.getter("getActionPromise")}},methods:{...v(["toggleDoingAction"]),setCurrentAction(t){this.commit("setCurrentAction",t)},onFinish(){this.commit("toggleLoading","applyButton"),this.toggleDoingAction()},applyAction(){this.onFinish(),this.commit("setProcess",{action:this.currentAction,context:f,payload:[this.getChecked,f]});const t=()=>{this.onFinish(),this.commit("clearProcess"),this.commit("setChecked",[]),this.commit("unChooseHead")};try{this.getActionPromise().finally(t)}catch(t){this.onFinish()}}}};function y(t,e,n,s,i,o,l,r){var a,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),s&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),l?(a=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(l)},c._ssrRegister=a):i&&(a=r?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),a)if(c.functional){c._injectStyles=a;var u=c.render;c.render=function(t,e){return a.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,a):[a]}return{exports:t,options:c}}n(7287);const x=y(C,c,[],!1,null,null,null).exports,{GetIncoming:w,i18n:S}=JetFBMixins,{mapMutations:j,mapActions:E,mapState:k,mapGetters:P}=Vuex,L={name:"ActionsWithFilters",components:{ChooseAction:x},mixins:[w,S,d],data:()=>({}),computed:{...P(["isDoing"]),hasFilters(){return jfbEventBus.reactiveCounter,this.getter("hasFilters")},items(){return this.getter("list")},show(){return this.items.length||this.hasFilters},wrapperClass(){return{"cx-vui-panel":!0,"jfb-row-wrapper":!0,"jfb-row-wrapper--loading":this.isDoing}}},created(){if(!this.items.length)return;const{filters_endpoint:t}=this.getIncoming();t&&this.dispatch("maybeFetchFilters",t)}};n(9492);const A=y(L,a,[],!1,null,"4f8e09cf",null).exports;var B=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jfb-pagination"},[n("span",{staticClass:"jfb-pagination--results"},[t._v("\n\t\t"+t._s(t.__s("Showing %d - %d of %d results.","jet-form-builder",t.queryState.itemsFrom,t.queryState.itemsTo,t.queryState.total))+"\n\t")]),t._v(" "),t.queryState.limit[]}},data:()=>({componentsCols:[]}),created(){this.componentsCols=[...this.columnsComponents,t,e,s,i,o,ut,rt]},methods:{getColumnComponentByPrefix(t,e){const n=this.componentsCols.findIndex((n=>n[e]?.name===t+"--"+e));return-1!==n&&this.componentsCols[n][e]}}};var pt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.getClasses},[n("div",{staticClass:"list-table-item__cell--body jfb-ellipsis"},[t.initial.editable&&t.isEnableEdit?n("div",{staticClass:"list-table-item__cell--body-value jfb-control"},[n("keep-alive",[n(t.getComponentEditControl,{tag:"component",attrs:{options:t.initial.control_options},model:{value:t.editedCellValue,callback:function(e){t.editedCellValue=e},expression:"editedCellValue"}})],1)],1):t.getComponentColumn?[n(t.getComponentColumn,{tag:"component",attrs:{value:t.value,"full-entry":t.entry,"entry-id":t.entryId,scope:t.scope}})]:t.getComponentType?[n(t.getComponentType,{tag:"component",attrs:{value:t.value,"full-entry":t.entry,"entry-id":t.entryId,scope:t.scope}})]:n("div",{staticClass:"list-table-item__cell--body-value",domProps:{innerHTML:t._s(t.value)}})],2),t._v(" "),t.initial.editable&&t.editedCellValue!==t.initialValue?n("div",{staticClass:"list-table-item__cell--actions"},[n("span",{staticClass:"dashicons dashicons-undo",on:{click:t.revertChangesColumn}})]):t._e()])};pt._withStripped=!0;const mt={name:"EntryColumnsTable",props:{entry:Object,column:String,entryId:Number},mixins:[d,dt],computed:{initial(){var t;return null!==(t=this.entry[this.column])&&void 0!==t?t:{}},value(){return this.initial.editable?this.editedCellValue:this.initialValue},initialValue(){var t,e;return null!==(t=null!==(e=this.initial?.value)&&void 0!==e?e:this.initial?.value?.value)&&void 0!==t&&t},initialType(){var t;return null!==(t=this.initial?.type)&&void 0!==t?t:"string"},initialClasses(){var t;return null!==(t=this.initial?.classes)&&void 0!==t?t:[]},getClasses(){const t=["list-table-item__cell","cell--"+this.column,"cell-type--"+this.initialType,...this.initialClasses];return!t.includes("overflow-visible")&&this.isShowOverflow&&t.push("show-overflow"),this.initial.editable&&t.push("is-editable"),t},editedCellValue:{get(){return jfbEventBus.reactiveCounter,this.getter("editedCellValue",[this.column,this.entry])},set(t){this.commit("updateEditableCell",{record:this.entry,column:this.column,initial:this.initialValue,props:{value:t}}),jfbEventBus.reactiveCounter++}},isEnableEdit(){return jfbEventBus.reactiveCounter,this.getter("isEnableEdit")},isShowOverflow(){return this.getter("options/isShowOverflow")},getComponentType(){return this.getItemComponent(this.initialType)},getComponentColumn(){return this.getItemComponent(this.column)},getComponentEditControl(){return this.getColumnComponentByPrefix(this.initial?.control,"control")}},methods:{revertChangesColumn(){this.commit("revertChangesColumn",{record:this.entry,column:this.column}),jfbEventBus.reactiveCounter++},getItemComponent(t){return this.getColumnComponentByPrefix(t,"item")}}};n(3726);const ft=y(mt,pt,[],!1,null,null,null).exports;function gt(t){var e,n;return null!==(e=null!==(n=t?.id?.value)&&void 0!==n?n:t?.choose?.value)&&void 0!==e?e:0}const{CHOOSE_ACTION:ht,CLICK_ACTION:bt}=u,{mapState:vt,mapGetters:_t,mapActions:Ct,mapMutations:yt}=window.Vuex,xt={name:"EntriesTableSkeleton",components:{EntryColumnsTable:ft},props:{list:{type:Array},columns:{type:Object},loading:{type:Boolean,default:!1},emptyMessage:{type:String,default:""},footerHeading:{type:Boolean,default:!0}},data:()=>({columnsIDs:[]}),mixins:[dt,d],created(){this.columnsIDs=Object.keys(this.columns)},computed:{rootClasses(){return{"cx-vui-panel":!0,"cx-vui-panel--loading":this.loading,"cx-vui-panel-table-wrapper":!0}},filteredColumns(){return this.columnsIDs.filter(this.isShown).sort(((t,e)=>{var n,s;return(null!==(n=this.columns[t].table_order)&&void 0!==n?n:999)-(null!==(s=this.columns[e].table_order)&&void 0!==s?s:999)}))},..._t(["isDoing"])},methods:{...yt(["toggleDoingAction"]),getHeadingComponent(t){return this.getColumnComponentByPrefix(t,"head")},getActionHref:t=>t?.href||"javascript:void(0)",getActionClass(t){const{type:e="default",class_name:n=""}=t;return{"list-table-item-actions-single":!0,[n]:!0,["list-table-item-actions-single--type-"+e]:!0,disabled:this.isDoing}},isShown(t){var e;return null===(e=this.columns[t].show_in_table)||void 0===e||e},classEntry(t,e){var n;return{"list-table-item":!0,"list-table-item--has-choose":e?.choose?.value,"list-table-item--has-actions":e?.actions?.value?.length,...null!==(n=e?.classes?.value)&&void 0!==n?n:{}}},columnType(t,e){var n;return null!==(n=t[e]?.type)&&void 0!==n?n:"string"},onClickAction(t,e,n){if(!t?.href||"#"===t.href){n.preventDefault(),this.commit("setProcess",{action:t.value,context:bt,payload:[[gt(e)],bt,t?.payload,e]});try{this.dispatch("beforeRowAction")}catch(t){return}this.dispatch("runRowAction")}}}},wt=xt;n(97);const St=y(wt,I,[],!1,null,null,null).exports,{mapState:jt,mapGetters:Et,mapActions:kt,mapMutations:Pt}=window.Vuex,{applyFilters:Lt}=wp.hooks,At=y({name:"entries-table",data:()=>({components:[]}),components:{EntriesTableSkeleton:St},mixins:[d],created(){this.components=Lt(`jet.fb.admin.table.${this.scope}`,[])},computed:{list(){return this.getter("list")},columns(){return this.getter("columns")},emptyMessage(){return this.getter("emptyMessage")},isLoading(){return this.getter("isLoading","page")},footerHeading(){return this.getter("options/footerHeading")}}},D,[],!1,null,null,null).exports;var Bt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:{wrap:!0,"jet-form-builder-page":!0}},[t._t("heading-before"),t._v(" "),n("h1",{staticClass:"wp-heading-inline"},[t._v("\n\t\t"+t._s(t.title)+"\n\t")]),t._v(" "),t.$slots["heading-after"]?[t._t("heading-after")]:t.hasGlobalActions?[n("PageActions")]:t._e(),t._v(" "),n("hr",{staticClass:"wp-header-end"}),t._v(" "),t._t("default")],2)};Bt._withStripped=!0;var Ft=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"page-actions"},t._l(t.secondaryActions,(function(e){return n("div",{key:e.slug,class:["page-actions-item","action-"+e.slug]},[e.button?n("cx-vui-button",{key:"button-action-"+e.slug,class:["cx-vui-button--style-"+e.button.type].concat(e.button.classes),attrs:{"button-style":e.button.style,size:e.button.size,url:e.button.url,"tag-name":e.button.url?"a":"button",disabled:t.isDisabled(e.slug)||t.isGlobalDoing,loading:t.isLoading(e.slug),target:"_blank"},on:{click:function(n){return t.globalEmit(e)}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(e.button.label))]},proxy:!0}],null,!0)}):t._e()],1)})),0)};Ft._withStripped=!0;const{mapState:Tt,mapGetters:Mt,mapMutations:Vt,mapActions:Ot}=Vuex,$t={name:"PageActions",mixins:[d],computed:{...Mt("actions",["actions","isLoading","isDisabled"]),...Mt(["isDoing"]),isGlobalDoing(){return jfbEventBus.reactiveCounter,this.isDoing},secondaryActions(){return this.actions.filter((t=>"secondary"===t.position))}},methods:{...Vt("actions",["setCurrentAction"]),globalEmit({slug:t}){this.setCurrentAction(t),jfbEventBus.$emit("page-"+t)}}},Dt=$t;n(3061);const It=y(Dt,Ft,[],!1,null,"35fab3b2",null).exports;var Nt;const Ht={name:"FormBuilderPage",props:{title:{type:String,default:null!==(Nt=window?.JetFBPageConfig?.title)&&void 0!==Nt?Nt:""}},computed:{hasGlobalActions(){return this.$store.hasModule("actions")}},components:{PageActions:It}};n(1746);const Jt=y(Ht,Bt,[],!1,null,null,null).exports;var Gt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("CxVuiSelect",{attrs:{value:t.filter.selected},on:{input:t.onChangeFilter}},t._l(t.filter.options||[],(function(e){return n("option",{domProps:{value:e.value}},[t._v("\n\t\t"+t._s(e.label)+"\n\t")])})),0)};Gt._withStripped=!0;const zt={mixins:[d],computed:{filter(){return jfbEventBus.reactiveCounter,this.getter("getFilter",this.filter_id)}},methods:{setCurrentFilter(t){this.commit("setFilter",{slug:this.filter_id,props:t})},onChangeFilter(t){this.setCurrentFilter({selected:t})}}},{__:Ut}=wp.i18n,{mapState:Rt,mapGetters:Zt,mapMutations:Wt,mapActions:qt}=Vuex,{i18n:Qt}=JetFBMixins,{ColumnWrapper:Xt,CxVuiSelect:Kt}=JetFBComponents,Yt=y({name:"StatusFilter",components:{ColumnWrapper:Xt,CxVuiSelect:Kt},data:()=>({filter_id:"status"}),created(){this.setCurrentFilter({options:[{value:"",label:Ut("All statuses","jet-form-builder")},{value:"COMPLETED",label:Ut("Only completed ones","jet-form-builder")},{value:"VOIDED",label:Ut("Only not completed ones","jet-form-builder")}]})},mixins:[zt,Qt]},Gt,[],!1,null,null,null).exports;var te=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{display:"inline-block"}},[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"mini"},on:{click:function(e){t.showPopup=!0}},scopedSlots:t._u([{key:"label",fn:function(){return[n("span",{staticClass:"dashicons dashicons-database-export"}),t._v("\n\t\t\t"+t._s(t.__("Export","jet-form-builder"))+"\n\t\t")]},proxy:!0}])}),t._v(" "),t.showPopup?n("CxVuiPopup",{attrs:{"class-names":{"export-popup":!0,"sticky-footer":!0}},on:{close:function(e){t.showPopup=!1}},scopedSlots:t._u([{key:"title",fn:function(){return[t._v(t._s(t.__("1. Select data to export:","jet-form-builder")))]},proxy:!0},{key:"content",fn:function(){return[n("RowWrapper",{attrs:{"element-id":"columns","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:t.columnsState},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("General Columns","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiFSelect",{attrs:{"options-list":t.columns,multiple:!0,value:t.selectedColumns},on:{change:t.setColumns}})]},proxy:!0},{key:"actions",fn:function(){return[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.columnsValues.length===t.selectedColumns.length},on:{click:t.selectAllColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,3825749283)}),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!t.selectedColumns.length},on:{click:t.clearAllColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,782737158)})]},proxy:!0}],null,!1,2802837545)}),t._v(" "),n("RowWrapper",{attrs:{"element-id":"payerColumns","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:t.columnsState},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Payer Columns","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiFSelect",{attrs:{"options-list":t.payerColumns,multiple:!0,value:t.selectedPayerColumns},on:{change:t.setPayerColumns}})]},proxy:!0},{key:"actions",fn:function(){return[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.payerColumnsValues.length===t.selectedPayerColumns.length},on:{click:t.selectAllPayerColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,3825749283)}),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!t.selectedPayerColumns.length},on:{click:t.clearAllPayerColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,782737158)})]},proxy:!0}],null,!1,4094018880)}),t._v(" "),n("RowWrapper",{attrs:{"element-id":"shippingColumns","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:t.columnsState},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Shipping Columns","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiFSelect",{attrs:{"options-list":t.shippingColumns,multiple:!0,value:t.selectedShippingColumns},on:{change:t.setShippingColumns}})]},proxy:!0},{key:"actions",fn:function(){return[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.shippingColumnsValues.length===t.selectedShippingColumns.length},on:{click:t.selectAllShippingColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,3825749283)}),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!t.selectedShippingColumns.length},on:{click:t.clearAllShippingColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,782737158)})]},proxy:!0}],null,!1,1335985645)}),t._v(" "),n("h3",[t._v(t._s(t.__("2. Filter payments:","jet-form-builder")))]),t._v(" "),n("Delimiter"),t._v(" "),n("RowWrapper",{attrs:{"element-id":"status","class-names":{"size--1-x-2":!0,"padding-side-unset":!0}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Status","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiSelect",{attrs:{value:t.status,"class-names":{fullwidth:!0}},on:{input:t.setStatus}},t._l(t.statusFilter.options||[],(function(e){return n("option",{domProps:{value:e.value}},[t._v("\n\t\t\t\t\t\t\t"+t._s(e.label)+"\n\t\t\t\t\t\t")])})),0)]},proxy:!0}],null,!1,3912950338)})]},proxy:!0},{key:"footer",fn:function(){return[n("div",{staticClass:"footer-buttons"},[n("cx-vui-button",{attrs:{"button-style":"accent",size:"mini",disabled:!t.canBeExported},on:{click:t.startExport},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Export","jet-form-builder")))]},proxy:!0}],null,!1,2420192243)}),t._v(" "),n("cx-vui-button",{attrs:{size:"mini"},on:{click:function(e){t.showPopup=!1}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Cancel","jet-form-builder")))]},proxy:!0}],null,!1,298029969)})],1),t._v(" "),n("div",{staticClass:"footer-counter"},[n("div",{staticClass:"footer-counter--message"},[t._v("\n\t\t\t\t\t"+t._s(t.countMessage)+"\n\t\t\t\t")]),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.isLoading("count"),loading:t.isLoading("count")},on:{click:t.onClickUpdateCount},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t"+t._s(t.__("Update","jet-form-builder"))+"\n\t\t\t\t\t")]},proxy:!0}],null,!1,168407598)})],1)]},proxy:!0}],null,!1,3777172923)}):t._e()],1)};te._withStripped=!0;const{__:ee,sprintf:ne}=wp.i18n,{mapState:se,mapGetters:ie,mapMutations:oe,mapActions:le}=Vuex,{i18n:re,GetIncoming:ae}=JetFBMixins,{RowWrapper:ce,CxVuiPopup:ue,CxVuiFSelect:de,CxVuiSelect:pe,Delimiter:me}=JetFBComponents,{addQueryArgs:fe}=JetFBActions,{export_url:ge}=window.JetFBPageConfig,he={name:"ExportPaymentsButton",components:{CxVuiFSelect:de,RowWrapper:ce,CxVuiPopup:ue,CxVuiSelect:pe,Delimiter:me},mixins:[re,d,ae],data:()=>({showPopup:!1}),created(){this.resolveCount()},computed:{exportUrl(){return fe({columns:this.selectedColumns,payerColumns:this.selectedPayerColumns,shippingColumns:this.selectedShippingColumns,filters:{status:this.status}},ge)},...ie(["exportPayments/columns","exportPayments/columnsValues","exportPayments/selectedColumns","exportPayments/payerColumns","exportPayments/payerColumnsValues","exportPayments/selectedPayerColumns","exportPayments/shippingColumns","exportPayments/shippingColumnsValues","exportPayments/selectedShippingColumns","exportPayments/statusesList","exportPayments/status","exportPayments/isLoading","exportPayments/count"]),canBeExported(){return!this.isLoading()&&!this.isEmptyColumns&&this.count>0},isEmptyColumns(){return!this.selectedColumns?.length&&!this.selectedShippingColumns?.length&&!this.selectedPayerColumns?.length},columnsState(){return this.isEmptyColumns?{type:"warning-danger",message:ee("Please fill this field","jet-form-builder")}:""},statusFilter(){return this.getter("getFilter","status")},status(){return this["exportPayments/status"]},columns(){return this["exportPayments/columns"]},columnsValues(){return this["exportPayments/columnsValues"]},selectedColumns(){return this["exportPayments/selectedColumns"]},payerColumns(){return this["exportPayments/payerColumns"]},payerColumnsValues(){return this["exportPayments/payerColumnsValues"]},selectedPayerColumns(){return this["exportPayments/selectedPayerColumns"]},shippingColumns(){return this["exportPayments/shippingColumns"]},shippingColumnsValues(){return this["exportPayments/shippingColumnsValues"]},selectedShippingColumns(){return this["exportPayments/selectedShippingColumns"]},count(){return this["exportPayments/count"]},countMessage(){return ne(ee("%d items can be exported","jet-form-builder"),this.count)}},methods:{...oe("exportPayments",["setColumns","setShippingColumns","setPayerColumns","setStatus"]),...le("exportPayments",["clearAllColumns","selectAllColumns","clearAllPayerColumns","selectAllPayerColumns","clearAllShippingColumns","selectAllShippingColumns","resolveCount"]),startExport(){window.location=this.exportUrl},onClickUpdateCount(){this.resolveCount()},isLoading(t){return this["exportPayments/isLoading"](t)}}};n(9256);const be=y(he,te,[],!1,null,null,null).exports,{GetIncoming:ve,i18n:_e,PromiseWrapper:Ce}=JetFBMixins,{apiFetch:ye}=wp,{mapMutations:xe,mapState:we,mapActions:Se,mapGetters:je}=Vuex,Ee={name:"payments-table-core",components:{ExportPaymentsButton:be,StatusFilter:Yt,ActionsWithFilters:A,FormBuilderPage:Jt,EntriesTable:At,TablePagination:$},mixins:[ve,_e,Ce],created(){this.setActionPromises({action:"delete",promise:this.promiseWrapper(this.delete.bind(this))})},methods:{...xe("scope-default",["setActionPromises"]),...Se("scope-default",["updateList","apiFetch"]),delete({resolve:t,reject:e}){this.apiFetch().then((e=>{this.updateList(e),t(e.message)})).catch(e)}}};n(7834);const ke=y(Ee,r,[],!1,null,null,null).exports,Pe={toggleDoingAction(t){t.doingAction=!t.doingAction}},Le={state:{...()=>({doingAction:!1})},getters:{isDoing:t=>t.doingAction},mutations:{...Pe}},Ae={loading:{page:!1,applyButton:!1}},Be={toggleLoading(t,e){var n;t.loading={...t.loading,[e]:!(null!==(n=t.loading[e])&&void 0!==n&&n)}}},Fe={state:()=>({...Ae}),getters:{isLoading:t=>e=>{var n;return null!==(n=t.loading[e])&&void 0!==n&&n}},mutations:Be},Te={currentPage:1,extreme_id:0,limit:25,sort:"DESC",total:0,itemsFrom:0,itemsTo:0,filters:{},receiveEndpoint:{},apiOptions:{},apiData:{}},Me=(t,e)=>1!==t?(t-1)*e:0,Ve=t=>{const e={};for(const n in t){const s=t[n];e[n]=s.selected}return e},{addQueryArgs:Oe}=JetFBActions,$e={offset:t=>Me(t.currentPage,t.limit),getLimit:t=>t.limit,getFilter:t=>e=>{var n;return null!==(n=t.filters[e])&&void 0!==n?n:{}},receiveEndpoint:t=>t.receiveEndpoint,queryState:t=>({limit:t.limit,total:t.total,currentPage:t.currentPage,itemsFrom:t.itemsFrom,itemsTo:t.itemsTo}),hasFilters:t=>0Object.values(t.filters).some((({selected:t})=>!!t)),apiOptions:t=>t.apiOptions,apiData:t=>t.apiData,filtersObj:t=>Ve(t.filters),fetchListOptions:t=>e=>{const{limit:n,sort:s,currentPage:i}=t;return{...e,url:Oe({limit:n,sort:s,page:i,filters:Ve(t.filters)},e.url)}}},De={...$e},Ie={setTotal(t,e){t.total=+e},setLimit(t,e){+e<1&&(e=1),t.limit=+e},setCurrentPage(t,e){t.currentPage=+e},setOffset(t,e){const n=e+t.limit;t.itemsFrom=e+1,t.itemsTo=n>t.total?t.total:n},setReceiveEndpoint(t,e){t.receiveEndpoint={...e}},setFilters(t,e){t.filters={...t.filters,...e}},setFilter(t,{slug:e,props:n={}}){var s;t.filters={...t.filters,[e]:{...null!==(s=t.filters[e])&&void 0!==s?s:{},...n}}},clearSelectedFilters(t,e={}){for(const s in t.filters){var n;t.filters[s].selected=null!==(n=e[s])&&void 0!==n?n:""}},setApiOptions(t,e){t.apiOptions=e},setApiData(t,e){t.apiData=e}},Ne={setQueryState({commit:t},e){"currentPage"in e&&t("setCurrentPage",e.currentPage),"total"in e&&t("setTotal",e.total),"limit"in e&&t("setLimit",e.limit)},setQueriedPage({commit:t,state:e},n){const s=Me(+n,e.limit);t("setCurrentPage",n),t("setOffset",s)},updateQueryState({state:t,dispatch:e},n=!1){e("setQueriedPage",n||t.currentPage)}},He={state:()=>({...Te}),getters:De,mutations:Ie,actions:Ne},Je={list:[],columns:{}},Ge={setList(t,e){t.list=JSON.parse(JSON.stringify(e))},setColumns(t,e){t.columns=JSON.parse(JSON.stringify(e))}},ze={state:()=>({...Je}),getters:{list:t=>t.list,columns:t=>t.columns},mutations:Ge},Ue={checked:[],chooseHead:"",idList:[]},Re={toggleHead(t){t.chooseHead=t.chooseHead?"":"checked"},unChooseHead(t){t.chooseHead=""},chooseHead(t){t.chooseHead="checked"},addChecked(t,{id:e}){t.checked.push(e)},setChecked(t,e=[]){t.checked=e},removeChecked(t,{id:e}){t.checked=t.checked.filter((t=>t!==e))}},Ze={state:()=>({...Ue}),getters:{chooseHeadValue:t=>t.chooseHead,isChecked:t=>e=>t.checked.includes(e),isCheckedHead:t=>"checked"===t.chooseHead,getChecked:t=>t.checked},mutations:Re,actions:{changeChecked({commit:t},{id:e,active:n}){t(n?"addChecked":"removeChecked",{id:e})}}};window.jfbEventBus=window.jfbEventBus||new Vue({});const{apiFetch:We}=wp,qe={fetchPage({commit:t,getters:e,dispatch:n}){t("toggleLoading","page");const s=e.receiveEndpoint;n("fetch",e.fetchListOptions(s)).then((e=>{n("updateList",e),n("updateQueryState"),t("unChooseHead"),t("setChecked",[])})).finally((()=>{t("toggleLoading","page")}))},fetchPageWithFilters({commit:t,getters:e,dispatch:n}){t("toggleLoading","page"),n("updateQueryState",1);const s=e.receiveEndpoint;n("fetch",e.fetchListOptions(s)).then((t=>{n("updateList",t),jfbEventBus.reactiveCounter++})).catch((t=>{t?.hasOwnProperty?.("code")&&"not_found"===t.code&&n("updateList",{list:[],total:0})})).finally((()=>{t("toggleLoading","page")}))},updateList({commit:t,getters:e},n){var s;t("setList",n.list),e.queryState&&t("setTotal",null!==(s=n?.total)&&void 0!==s?s:e.queryState.total),n.list.length>e.getLimit&&t("setLimit",n.list.length),t("setOffset",0)},fetch:(t,e)=>new Promise(((t,n)=>{We(e).then(t).catch((t=>{jfbEventBus.$CXNotice.add({message:t.message,type:"error",duration:4e3}),n(t)})).finally(n)})),apiFetch:({getters:t,dispatch:e})=>(e("beforeRunFetch"),We((t=>{const{action:e,payload:n}=t.currentProcess,[s]=n;let i=t.getAction(e);var o,l,r;return i||(l=null!==(o=n[3])&&void 0!==o?o:{},r=e,i=l.actions.value.find((t=>r===t.value))),{...t.fetchListOptions(i?.endpoint),...t.apiOptions,data:{checked:s,...t.apiData}}})(t))),maybeFetchFilters(t,e){const{commit:n,getters:s,rootGetters:i}=t;s.hasFilters||i.isDoing||(n("toggleDoingAction",null,{root:!0}),We(e).then((t=>{n("setFilters",t.filters),jfbEventBus.reactiveCounter++})).finally((()=>{n("toggleDoingAction",null,{root:!0})})))},activeAll({commit:t,getters:e}){t("setChecked",e.list.map((t=>t?.choose?.value)))},clearFiltersWithFetch({commit:t,dispatch:e},n){t("clearSelectedFilters",n),e("fetchPageWithFilters")}},Qe={currentAction:"",actionsList:[],actionsPromises:{},beforeActions:{},currentProcess:{}},{__:Xe}=wp.i18n,Ke={getAction:t=>e=>t.actionsList.find((t=>e===t.value)),actionsList:t=>t.actionsList,currentAction:t=>t.currentAction,getActionPromise:t=>{var e;const{action:n,payload:s=[]}=t.currentProcess;if("function"!=typeof t.actionsPromises[n])throw new Error(Xe("Please choose your action","jet-form-builder"));const i=null!==(e=t.actionsPromises[n])&&void 0!==e&&e;return()=>new Promise(((t,e)=>i(t,e,...s)))},processContext:t=>t.currentProcess.context,currentProcess:t=>t.currentProcess},Ye={...Ke,getCurrentAction:t=>Ke.getAction(t)(t.currentAction)},tn={setCurrentAction(t,e){t.currentAction=e},setActionsList(t,e){t.actionsList=JSON.parse(JSON.stringify(e||[]))},setActionPromises(t,{action:e,promise:n}){t.actionsPromises={...t.actionsPromises,[e]:n}},setBeforeAction(t,{action:e,callback:n}){t.beforeActions={...t.beforeActions,[e]:n}},setProcess(t,e){t.currentProcess=e},clearProcess(t){t.currentProcess={}}},en={beforeRunFetch({getters:t,rootGetters:e}){if(u.CHOOSE_ACTION!==t.processContext)return;const n=e["messages/label"];if(!t.getChecked.length)throw new Error(n("empty_checked"));if(!t.getCurrentAction?.endpoint)throw new Error(n("empty_action"))},runRowAction({commit:t,getters:e}){t("toggleDoingAction",null,{root:!0}),t("toggleLoading","page");const n=()=>{t("toggleLoading","page"),t("toggleDoingAction",null,{root:!0})};try{e.getActionPromise().finally(n)}catch(t){n()}},beforeRowAction({state:t}){var e;const{action:n,payload:s=[]}=t.currentProcess;if("function"==typeof t.beforeActions[n])throw(null!==(e=t.beforeActions[n])&&void 0!==e&&e)(...s),new Error}},nn={state:()=>({...Qe}),getters:Ye,mutations:tn,actions:en},sn={renderType:""},on={setRenderType(t,e){t.renderType=e}},{__:ln}=wp.i18n,rn={singleEndpoint:{}},an={hasSingleEndpoint:t=>0t.singleEndpoint,getSingleHref:t=>{var e;return null!==(e=t.singleEndpoint?.href)&&void 0!==e?e:"#"},getSingleType:t=>{var e;return null!==(e=t.singleEndpoint?.type)&&void 0!==e?e:"external"},getSingleTitle:t=>{var e;return null!==(e=t.singleEndpoint.title)&&void 0!==e?e:ln("View","jet-form-builder")}},cn={setSingleEndpoint(t,e){t.singleEndpoint=e}},{__:un}=wp.i18n,dn={message:""},pn={setEmptyMessage(t,e){t.message=e||un("No items found","jet-form-builder")}},mn={state:()=>({...sn,...rn,...dn}),getters:{isTable:t=>"table"===t.renderType,isList:t=>"list"===t.renderType,isUnknownType:t=>!["table","list"].includes(t.renderType),...an,emptyMessage:t=>t.message},mutations:{...on,...cn,...pn},actions:{}},fn={namespaced:!0,state:()=>({options:{}}),getters:{all:t=>t.options,footerHeading:t=>{var e;return null===(e=t.options?.footer_heading)||void 0===e||e},isShowOverflow:t=>{var e;return null!==(e=t.options?.show_overflow)&&void 0!==e&&e},showOverflowControl:t=>{var e;return null!==(e=t.options.show_overflow_control)&&void 0!==e&&e}},mutations:{insert(t,e){t.options=e},toggleShowOverflow(t){t.options.show_overflow=!t.options.show_overflow}}},gn={namespaced:!0,modules:{view:{actions:qe,modules:{action:nn,chooseColumn:Ze,loading:Fe,query:He,table:ze,tableOptions:mn,options:fn}}}},hn={state:()=>({editedList:{},isEnableEdit:!1,isEditableTable:!1,hasChanges:!1}),getters:{isEnableEdit:t=>t.isEnableEdit,isEditableTable:t=>t.isEditableTable,hasChanges:t=>t.hasChanges,editedList:t=>t.editedList},mutations:{toggleEditTable(t,e){t.isEnableEdit=null!=e?e:!t.isEnableEdit},setEditableTable(t,e){t.isEditableTable=!!e},revertChanges(t){t.editedList={},t.hasChanges=!1}}},bn=(t,e,n)=>{const s=gt(n),{base:i}=t;if(!s)throw new Error("Empty primary column");return i.editedList[s]=i.editedList[s]||{},[i.editedList[s][e]||{},s]},vn={editedColumn:t=>(e,n)=>{const s=gt(n),{base:i}=t;if(!s||!i.editedList[s]||!i.editedList[s][e])throw new Error("Column is not edited");return i.editedList[s][e]},editedColumnProp:t=>(e,n,s)=>{var i;const o=null!==(i=vn.editedColumn(t)(e,n)[s])&&void 0!==i&&i;if(!1===o)throw new Error("Prop is not defined");return o}},_n={modules:{base:hn},getters:{...vn,editedCellValue:t=>(e,n)=>{try{return vn.editedColumnProp(t)(e,n,"value")}catch(t){var s;return null!==(s=n[e]?.value)&&void 0!==s?s:"NULL"}},editedListValues:t=>{const e={},{base:n}=t;for(const[t,s]of Object.entries(n.editedList)){const n={};for(const[t,{value:e}]of Object.entries(s))n[t]=e;e[t]=n}return e}},mutations:{updateEditableCell(t,{column:e,props:n,record:s}){let i,o;const{base:l}=t;try{[o,i]=bn(t,e,s)}catch(t){return}l.editedList[i]={...l.editedList[i],[e]:{...o,...n}},l.hasChanges=!0},revertChangesColumn(t,{column:e,record:n}){let s;const{base:i}=t;try{[,s]=bn(t,e,n)}catch(t){return}Vue.delete(i.editedList[s],e),Object.keys(i.editedList[s]).length||(Vue.delete(i.editedList,s),Object.keys(i.editedList).length||(i.hasChanges=!1))}}},Cn={editedColumn:t=>e=>{const{base:n}=t;if(!n.editedList[e])throw new Error("Column is not edited");return n.editedList[e]},editedColumnProp:t=>(e,n)=>{var s;const i=null!==(s=Cn.editedColumn(t)(e)[n])&&void 0!==s&&s;if(!1===i)throw new Error("Prop is not defined");return i}},yn={revertChangesColumn(t,{column:e}){const{base:n}=t;Vue.delete(n.editedList,e),Object.keys(n.editedList).length||(n.hasChanges=!1)}},xn={modules:{base:hn},getters:{...Cn,editedCellValue:t=>(e,n)=>{try{return Cn.editedColumnProp(t)(e,"value")}catch(t){return null!=n?n:"NULL"}},editedListValues:t=>{const e={},{base:n}=t;for(const[t,{value:s}]of Object.entries(n.editedList))e[t]=s;return e}},mutations:{...yn,updateEditableCell(t,{column:e,initial:n,props:s}){const{base:i}=t;if(n===s.value)return void yn.revertChangesColumn(t,{column:e});const o=i.editedList[e]||{};i.editedList[e]={...o,...s},i.hasChanges=!0}}},wn=(t,e)=>{const n=t.actions.findIndex((t=>e===t.slug));if(-1===n)throw new Error("Undefined "+e);return n},Sn=(t,{slug:e,force:n}={})=>{var s;e=null!=e?e:t.current,t.disabled={...t.disabled,[e]:null!=n?n:!(null!==(s=t.disabled[e])&&void 0!==s&&s)}},jn=t=>{try{const e=wn(t,t.current);return t.actions[e]}catch(t){return{}}},{apiFetch:En}=wp,kn={namespaced:!0,state:()=>({actions:[],current:"",loading:{},disabled:{}}),getters:{actions:t=>t.actions,isLoading:t=>e=>{var n;return null!==(n=t.loading[e])&&void 0!==n&&n},isDisabled:t=>e=>{var n;return null!==(n=t.disabled[e])&&void 0!==n&&n},current:jn,label:t=>{const e=jn(t);return t=>e?.messages?e.messages[t]:"null"},byEvent:t=>e=>t.actions.filter((t=>t.subscriptions.includes(e)))},mutations:{replaceCurrent(t,e){try{const n=wn(t,t.current);t.actions[n]={...e}}catch(t){}},setActions(t,e){t.actions=e,e.forEach((e=>{e?.button?.disabled&&(t.disabled[e.slug]=!0)}))},setCurrentAction(t,e){t.current=e},toggleDisabled:Sn,toggleLoading:(t,{slug:e,force:n}={})=>{var s;e=null!=e?e:t.current,t.loading={...t.loading,[e]:null!=n?n:!(null!==(s=t.loading[e])&&void 0!==s&&s)}},disabledAll(t){t.actions.forEach((({slug:e})=>{Sn(t,{slug:e,force:!0})}))}},actions:{defaultDelete({getters:t,commit:e}){e("toggleLoading"),e("toggleDoingAction",null,{root:!0}),En(t.current.endpoint).then((n=>{jfbEventBus.$CXNotice.add({message:n.message,type:"success",duration:4e3}),e("toggleDisabled"),document.location.href=t.current.payload.redirect})).catch((t=>{jfbEventBus.$CXNotice.add({message:t.message,type:"error",duration:4e3})})).finally((()=>{e("toggleLoading"),e("toggleDoingAction",null,{root:!0})}))}}},Pn=()=>window.JetFBPageConfig;function Ln(t){return"scope-"+function(t){return"string"==typeof t?t:t?.slug||"default"}(t)}function An(t,e){const{render_type:n}=e,s=(t={})=>({...gn,modules:{...gn.modules,...t}});"table"===n?t.registerModule(Ln(e),s({edit:_n})):t.registerModule(Ln(e),s({edit:xn,actions:kn}))}function Bn(t){const e=Ln(t);return t=>`${e}/${t}`}function Fn(t,e){const{list:n=[],columns:s={},total:i=0,receive_url:o={},actions:l,render_type:r="",empty_message:a="",is_editable_table:c=!1,is_editable_table_control:u=!1,stable_limit:d=null,...p}=e,m=Bn(e);t.commit(m("setEmptyMessage"),a),t.commit(m("setRenderType"),r),t.commit(m("setActionsList"),l),t.commit(m("setColumns"),s),t.commit(m("setList"),n),t.commit(m("setTotal"),i),t.commit(m("setReceiveEndpoint"),o),t.commit(m("setLimit"),null!=d?d:n?.length),t.commit(m("toggleEditTable"),c),t.commit(m("setEditableTable"),u),t.commit(m("options/insert"),p),t.dispatch(m("setQueriedPage"),1),t.subscribe((e=>{if("setFilter"===e.type.split("/").at(-1)){if(!e?.payload?.props?.hasOwnProperty?.("selected"))return;t.dispatch(m("fetchPageWithFilters"))}}))}function Tn(t="default"){return e=>{An(e,t)}}const Mn=function(t=!1){return e=>{t||(t=Pn()),Fn(e,t)}},Vn={namespaced:!0,state:()=>({messages:{}}),getters:{label:t=>e=>{var n;return null!==(n=t.messages[e])&&void 0!==n?n:""}},mutations:{insert(t,e){t.messages=JSON.parse(JSON.stringify(e))}}};function On(t){t.registerModule("messages",Vn);const{messages:e}=Pn();t.commit("messages/insert",e)}const $n=window.wp.i18n,Dn=window.wp.apiFetch;var In=n.n(Dn);const Nn=[{value:"id",label:(0,$n.__)("ID (primary)","jet-form-builder")},{value:"amount_value",label:(0,$n.__)("Amount Value","jet-form-builder")},{value:"amount_code",label:(0,$n.__)("Amount Code","jet-form-builder")},{value:"gateway_id",label:(0,$n.__)("Gateway Slug","jet-form-builder")},{value:"scenario",label:(0,$n.__)("Scenario","jet-form-builder")},{value:"type",label:(0,$n.__)("Type","jet-form-builder")},{value:"status",label:(0,$n.__)("Status","jet-form-builder")},{value:"transaction_id",label:(0,$n.__)("Transaction ID","jet-form-builder")},{value:"form_id",label:(0,$n.__)("Form ID","jet-form-builder")},{value:"user_id",label:(0,$n.__)("User ID","jet-form-builder")},{value:"record_id",label:(0,$n.__)("Record ID","jet-form-builder")},{value:"created_at",label:(0,$n.__)("Created","jet-form-builder")},{value:"updated_at",label:(0,$n.__)("Updated","jet-form-builder")}],Hn=[{value:"payer_id",label:(0,$n.__)("Payer ID","jet-form-builder")},{value:"first_name",label:(0,$n.__)("First Name","jet-form-builder")},{value:"last_name",label:(0,$n.__)("Last Name","jet-form-builder")},{value:"email",label:(0,$n.__)("Email","jet-form-builder")}],Jn=[{value:"full_name",label:(0,$n.__)("Full Name","jet-form-builder")},{value:"address_line_1",label:(0,$n.__)("Address Line 1","jet-form-builder")},{value:"address_line_2",label:(0,$n.__)("Address Line 2","jet-form-builder")},{value:"admin_area_1",label:(0,$n.__)("Admin Area 1","jet-form-builder")},{value:"admin_area_2",label:(0,$n.__)("Admin Area 2","jet-form-builder")},{value:"postal_code",label:(0,$n.__)("Postal Code","jet-form-builder")},{value:"country_code",label:(0,$n.__)("Country Code","jet-form-builder")}],{counter_endpoint:Gn}=window.JetFBPageConfig,{addQueryArgs:zn}=JetFBActions,Un={status:t=>t.status,statusesList:t=>t.statusesList,columns:t=>t.columns,selectedColumns:t=>t.selectedColumns,columnsValues:t=>Un.columns(t).map((({value:t})=>t)),payerColumns:t=>t.payerColumns,selectedPayerColumns:t=>t.selectedPayerColumns,payerColumnsValues:t=>Un.payerColumns(t).map((({value:t})=>t)),shippingColumns:t=>t.shippingColumns,selectedShippingColumns:t=>t.selectedShippingColumns,shippingColumnsValues:t=>Un.shippingColumns(t).map((({value:t})=>t)),isLoading:t=>e=>{var n;return e?null!==(n=t.loading?.[e])&&void 0!==n&&n:Object.values(t.loading).some(Boolean)},count:t=>t.count,filtersObj:t=>({status:t.status})},Rn={namespaced:!0,state:()=>({status:"",columns:Nn,selectedColumns:Nn.map((({value:t})=>t)),payerColumns:Hn,selectedPayerColumns:Hn.map((({value:t})=>t)),shippingColumns:Jn,selectedShippingColumns:Jn.map((({value:t})=>t)),count:0,loading:{}}),mutations:{setStatus(t,e){t.status=e},setColumns(t,e){t.selectedColumns=e},setPayerColumns(t,e){t.selectedPayerColumns=e},setShippingColumns(t,e){t.selectedShippingColumns=e},setCount(t,e){t.count=e},toggleLoading(t,e){var n;t.loading={...t.loading,[e]:!(null!==(n=t.loading?.[e])&&void 0!==n&&n)}}},getters:Un,actions:{handleFilters({commit:t,state:e,rootGetters:n}){const s=(0,n["scope-default/getFilter"])("status");s.selected!==e.status&&t("setStatus",s.selected)},selectAllColumns({commit:t,getters:e}){t("setColumns",e.columnsValues)},clearAllColumns({commit:t}){t("setColumns",[])},selectAllPayerColumns({commit:t,getters:e}){t("setPayerColumns",e.payerColumnsValues)},clearAllPayerColumns({commit:t}){t("setPayerColumns",[])},selectAllShippingColumns({commit:t,getters:e}){t("setShippingColumns",e.shippingColumnsValues)},clearAllShippingColumns({commit:t}){t("setShippingColumns",[])},async resolveCount({commit:t,dispatch:e}){let n;t("toggleLoading","count");try{n=await e("fetchPaymentsCount")}finally{t("toggleLoading","count")}t("setCount",n.total)},fetchPaymentsCount({getters:t}){const e=zn({filters:t.filtersObj},Gn.url);return In()({...Gn,url:e})}}},Zn=Rn,Wn={PaymentsComponent:ke,options:{store:{...Le,plugins:[Tn(),Mn(),On,function(t){t.registerModule("exportPayments",Zn),t.subscribe((e=>{const n=e.type.split("/");switch(n.at(-1)){case"setFilter":case"clearSelectedFilters":return void t.dispatch("exportPayments/handleFilters")}"exportPayments"===n[0]&&"setStatus"===n.at(-1)&&t.dispatch("exportPayments/resolveCount").then((()=>{}))}))}]}}};var qn=function(){var t=this,e=t.$createElement;return(t._self._c||e)("DetailsTable",{attrs:{columns:t.columnsFromStore,source:t.currentFromStore}})};qn._withStripped=!0;const{DetailsTable:Qn}=JetFBComponents,Xn=y({name:"DetailsTableWithStore",props:{columns:{type:String,default:"columns"},current:{type:String,default:"currentPopupData"}},components:{DetailsTable:Qn},computed:{columnsFromStore(){return this.$store.state[this.columns]},currentFromStore(){return this.$store.state[this.current]}}},qn,[],!1,null,null,null).exports;var Kn=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("cx-vui-button",{attrs:{"button-style":"link-error",size:"mini",disabled:!t.hasSelectedFilters},on:{click:function(e){return t.dispatch("clearFiltersWithFetch")}},scopedSlots:t._u([{key:"label",fn:function(){return[n("span",{staticClass:"dashicons dashicons-no-alt"}),t._v("\n\t\t\t"+t._s(t.label)+"\n\t\t")]},proxy:!0}])})};Kn._withStripped=!0;const{__:Yn}=wp.i18n,{mapState:ts,mapGetters:es,mapMutations:ns,mapActions:ss}=Vuex,is=y({name:"ClearFiltersButton",props:{label:{type:String,default:Yn("Clear filters","jet-form-builder")}},mixins:[d],computed:{hasSelectedFilters(){return this.getter("hasSelectedFilters")}}},Kn,[],!1,null,null,null).exports;function os(t,e){switch(e.render_type){case"table":Fn(t,e);break;case"list":!function(t,e){const{list:n={},columns:s={},render_type:i="",single_endpoint:o={},receive_url:l={},is_editable_table:r=!1,is_editable_table_control:a=!1,box_actions:c=[],...u}=e,d=Bn(e);t.commit(d("setColumns"),s),t.commit(d("setList"),n),t.commit(d("setReceiveEndpoint"),l),t.commit(d("setRenderType"),i),t.commit(d("setSingleEndpoint"),o),t.commit(d("toggleEditTable"),r),t.commit(d("setEditableTable"),a),t.commit(d("actions/setActions"),c),t.commit(d("options/insert"),u)}(t,e)}}const{LocalStorage:ls}=JetFBActions,rs=ls.storage("notices"),as={insertNotices(t,e){t.notices=e.filter((t=>!rs.getItem(t.id)))},clearNoticeById(t,e){const n=t.notices.findIndex((t=>e===t.id));if(-1===n)return;const s=t.notices[n];Vue.delete(t.notices,n);const{is_hide_after_close:i}=s.options;if(!i)return;const o=rs.getItem(s.id,{});rs.setItem(s.id,{...o,closed:!0})}},cs={state:()=>({notices:[]}),getters:{getNotices:t=>t.notices,getNotice:t=>e=>t.notices.find((t=>e===t.id))||{}},mutations:as};var us=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"postbox",attrs:{id:t.slug}},[n("div",{staticClass:"postbox-header"},[n("h2",{staticClass:"ui-sortable-handle"},[t._v(t._s(t.title))]),t._v(" "),t.$slots["header-actions"]?n("div",{staticClass:"handle-actions"},[t._t("header-actions")],2):n("div",{staticClass:"handle-actions"},[n("UndoChangesTable",{attrs:{scope:t.slug}}),t._v(" "),n("EditTableSwitcher",{attrs:{scope:t.slug}}),t._v(" "),n("ShowOverflowTable",{attrs:{scope:t.slug}}),t._v(" "),n("RedirectToSingle",{attrs:{scope:t.slug}})],1)]),t._v(" "),n("div",{staticClass:"postbox-inner submitbox"},[t._t("default"),t._v(" "),t.$slots.actions?n("div",{staticClass:"major-publishing-actions"},[t._t("actions"),t._v(" "),n("div",{staticClass:"clear"})],2):n("PrimaryActions",{attrs:{scope:t.slug}})],2)])};us._withStripped=!0;var ds=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isEditableTable?n("cx-vui-switcher",{staticClass:"jfb-cx-vui-component",attrs:{label:t.__("Edit table","jet-form-builder"),value:t.isEnableEdit},on:{input:t.toggleEditTable}}):t._e()};ds._withStripped=!0;const{i18n:ps}=JetFBMixins,ms={name:"EditTableSwitcher",mixins:[d,ps],computed:{isEnableEdit(){return this.getter("isEnableEdit")},isEditableTable(){return this.getter("isEditableTable")}},methods:{toggleEditTable(){this.commit("toggleEditTable")}}};n(4744);const fs=y(ms,ds,[],!1,null,null,null).exports;var gs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isEditableTable?n("cx-vui-button",{attrs:{disabled:!t.hasChanges,"button-style":"link-accent",size:"mini"},on:{click:function(e){t.hasChanges=!0}},scopedSlots:t._u([{key:"label",fn:function(){return[n("span",{staticClass:"dashicons dashicons-undo"}),t._v("\n\t\t"+t._s(t.__("Undo","jet-form-builder"))+"\n\t")]},proxy:!0}],null,!1,1196425)}):t._e()};gs._withStripped=!0;const{i18n:hs}=JetFBMixins,bs=y({name:"UndoChangesTable",mixins:[d,hs],computed:{hasChanges:{get(){return this.getter("hasChanges")},set(t){this.commit("revertChanges")}},isEditableTable(){return this.getter("isEditableTable")}}},gs,[],!1,null,null,null).exports;var vs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.showOverflowControl?n("cx-vui-switcher",{staticClass:"jfb-cx-vui-component",attrs:{label:t.__("Show overflow","jet-form-builder")},model:{value:t.showOverflow,callback:function(e){t.showOverflow=e},expression:"showOverflow"}}):t._e()};vs._withStripped=!0;const{i18n:_s}=JetFBMixins,Cs=y({name:"ShowOverflowTable",mixins:[d,_s],computed:{showOverflowControl(){return this.getter("options/showOverflowControl")},showOverflow:{get(){return this.getter("options/isShowOverflow")},set(){this.commit("options/toggleShowOverflow")}}}},vs,[],!1,null,null,null).exports;var ys=function(){var t,e=this,n=e.$createElement,s=e._self._c||n;return e.hasSingleEndpoint?s("a",{attrs:{href:e.getSingleHref,title:e.getSingleTitle}},[s("span",{class:(t={dashicons:!0},t["dashicons-"+e.getSingleType]=!0,t),attrs:{"aria-hidden":"true"}})]):e._e()};ys._withStripped=!0;const{i18n:xs}=JetFBMixins,ws={name:"RedirectToSingle",mixins:[d,xs],computed:{hasSingleEndpoint(){return this.getter("hasSingleEndpoint")},getSingleHref(){return this.getter("getSingleHref")},getSingleType(){return this.getter("getSingleType")},getSingleTitle(){return this.getter("getSingleTitle")}}};n(9244);const Ss=y(ws,ys,[],!1,null,"6c61ef64",null).exports;var js=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.primary.length?n("div",{staticClass:"major-publishing-actions"},[n("div",{staticClass:"jfb-primary-actions"},t._l(t.primary,(function(e){return n("ActionButton",{key:e.slug,class:["box-actions-item","action-"+e.slug],attrs:{scope:t.scope,action:e}})})),1),t._v(" "),n("div",{staticClass:"clear"})]):t._e()};js._withStripped=!0;var Es=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.action.button?n("cx-vui-button",{key:"button-action-"+t.action.slug,class:["cx-vui-button--style-"+t.action.button.type].concat(t.action.button.classes),attrs:{"button-style":t.action.button.style,size:t.action.button.size,url:t.action.button.url,"tag-name":t.action.button.url?"a":"button",disabled:t.isDisabled,loading:t.isLoading,target:"_blank"},on:{click:t.globalEmit},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.action.button.label))]},proxy:!0}],null,!1,389569784)}):t._e()};Es._withStripped=!0;const{mapState:ks,mapGetters:Ps,mapMutations:Ls,mapActions:As}=Vuex,Bs=y({name:"ActionButton",mixins:[d],props:{action:Object},computed:{...Ps(["isDoing"]),slug(){return this.action.slug},isDisabled(){return this.getter("actions/isDisabled",this.slug)||this.isGlobalDoing},isLoading(){return this.getter("actions/isLoading",this.slug)},isGlobalDoing(){return jfbEventBus.reactiveCounter,this.isDoing}},methods:{globalEmit(){this.commit("actions/setCurrentAction",this.slug),jfbEventBus.$emit(this.scope+"-"+this.slug)}}},Es,[],!1,null,"2b75aad2",null).exports,{mapState:Fs,mapGetters:Ts,mapMutations:Ms,mapActions:Vs}=Vuex,Os={name:"BoxActions",components:{ActionButton:Bs},mixins:[d],computed:{primary(){const t=this.getter("actions/actions");return t?t.filter((t=>"primary"===t.position)):[]}}},$s=Os;n(7289);const Ds=y($s,js,[],!1,null,null,null).exports,Is={name:"PostBoxSkeleton",props:{title:String,slug:String},components:{PrimaryActions:Ds,RedirectToSingle:Ss,ShowOverflowTable:Cs,UndoChangesTable:bs,EditTableSwitcher:fs},computed:{}};n(7985);const Ns=y(Is,us,[],!1,null,"5ebbe4a6",null).exports;var Hs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{attrs:{id:"poststuff"}},[n("div",{class:t.bodyClasses,attrs:{id:"post-body"}},[t.$slots.topBody?n("div",{attrs:{id:"post-body-content"}},[t._t("topBody")],2):t._e(),t._v(" "),t._l(t.containers,(function(e){var s=e.wrap_id,i=e.id,o=e.classes,l=e.boxes;return n("PostBoxContainer",{key:s,attrs:{"wrap-id":s,id:i,classes:o}},t._l(l,(function(e){var s=e.slug,i=e.title,o=e.list,l=e.render_type;return void 0===l&&(l=!1),n("PostBoxSimple",{key:s,attrs:{slug:s,title:i,list:o,"render-type":l},scopedSlots:t._u([{key:"header-actions",fn:function(){return[t._t("header-actions-"+s,null,null,{list:o})]},proxy:!0},{key:"default",fn:function(){return[t._t("body-"+s,null,null,{list:o})]},proxy:!0},{key:"before",fn:function(){return[t._t("before-"+s,null,null,{list:o})]},proxy:!0},{key:"after",fn:function(){return[t._t("after-"+s,null,null,{list:o})]},proxy:!0},t.$slots["in-header-"+s]?{key:"in-header",fn:function(){return[t._t("in-header-"+s)]},proxy:!0}:null,t.$slots["in-footer-"+s]?{key:"in-footer",fn:function(){return[t._t("in-footer-"+s)]},proxy:!0}:null],null,!0)})})),1)}))],2)])};Hs._withStripped=!0;var Js=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"postbox-container",attrs:{id:t.wrapId}},[n("div",{class:t.classes,attrs:{id:t.id}},[t._t("default")],2)])};Js._withStripped=!0;const Gs=y({name:"PostBoxContainer",props:{wrapId:String,id:String,classes:String},computed:{}},Js,[],!1,null,null,null).exports;var zs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jfb-post-box",attrs:{id:t.slug+"-wrapper"}},[t.$slots.default?n("div",{staticClass:"jfb-post-box--content"},[t._t("default")],2):n("div",{staticClass:"jfb-post-box--content"},[t._t("before"),t._v(" "),n("PostBoxSkeleton",{attrs:{title:t.title,slug:t.slug},scopedSlots:t._u([{key:"header-actions",fn:function(){return[t._t("header-actions")]},proxy:!0},{key:"default",fn:function(){return[t._t("in-header"),t._v(" "),"table"===t.renderType?n("EntriesTable",{attrs:{scope:t.slug}}):"list"===t.renderType?n("EntriesList",{attrs:{scope:t.slug}}):n("div",{attrs:{id:"misc-publishing-actions"}},t._l(t.list,(function(e,s){return n("div",{key:s,staticClass:"misc-pub-section"},[t._v("\n\t\t\t\t\t\t"+t._s(s)+": "),n("strong",[t._v(t._s(e))])])})),0),t._v(" "),t._t("in-footer")]},proxy:!0}],null,!0)}),t._v(" "),t._t("after")],2)])};zs._withStripped=!0;var Us=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("table",{staticClass:"jfb-list-table"},t._l(t.columns,(function(e,s){var i=e.label;return n("tr",{key:s,class:["jfb-list-table-row","row--"+s]},[i?n("th",{staticClass:"jfb-list-table-row--inner jfb-list-table-row--heading"},[t._v("\n\t\t\t"+t._s(i)+"\n\t\t")]):t._e(),t._v(" "),n("td",{staticClass:"jfb-list-table-row--inner jfb-list-table-row--item"},[n("EntryColumnList",{attrs:{scope:t.scope,list:t.list,column:s}})],1)])})),0)};Us._withStripped=!0;var Rs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.record.editable&&t.isEnableEdit?n("div",{staticClass:"list-table-item__cell--body-value jfb-control"},[n("keep-alive",[n(t.getComponentEditControl,{tag:"component",attrs:{options:t.record.control_options},model:{value:t.editedCellValue,callback:function(e){t.editedCellValue=e},expression:"editedCellValue"}})],1)],1):t.getItemComponentColumn?[n(t.getItemComponentColumn,{tag:"component",attrs:{value:t.value,"full-entry":t.list,scope:t.scope}})]:t.getItemComponentType?[n(t.getItemComponentType,{tag:"component",attrs:{value:t.value,"full-entry":t.list,scope:t.scope}})]:n("div",{domProps:{innerHTML:t._s(t.value)}})],2)};Rs._withStripped=!0;const Zs={name:"EntriesList",mixins:[d],components:{EntryColumnList:y({name:"EntryColumnList",props:{column:String,list:Object},mixins:[dt,d],computed:{record(){return this.list[this.column]},value(){return this.record.editable?this.editedCellValue:this.initialValue},initialValue(){var t,e;return null!==(t=null!==(e=this.record?.value)&&void 0!==e?e:this.record?.value?.value)&&void 0!==t&&t},isEnableEdit(){return jfbEventBus.reactiveCounter,this.getter("isEnableEdit")},getItemComponentColumn(){return this.getColumnComponentByPrefix(this.column,"item")},getItemComponentType(){return this.getColumnComponentByPrefix(this.getColumnType,"item")},getComponentEditControl(){return this.getColumnComponentByPrefix(this.record?.control,"control")},getColumnType(){var t;return null!==(t=this.record.type)&&void 0!==t&&t},editedCellValue:{get(){return jfbEventBus.reactiveCounter,this.getter("editedCellValue",[this.column,this.initialValue])},set(t){this.commit("updateEditableCell",{column:this.column,initial:this.initialValue,props:{value:t}}),jfbEventBus.reactiveCounter++}}},methods:{revertChangesColumn(){this.commit("revertChangesColumn",{column:this.column}),jfbEventBus.reactiveCounter++}}},Rs,[],!1,null,null,null).exports},computed:{columns(){return this.getter("columns")},list(){return this.getter("list")}},methods:{}};n(5850);const Ws=y(Zs,Us,[],!1,null,null,null).exports,qs={name:"PostBoxSimple",props:["title","slug","list","renderType"],components:{EntriesTable:At,EntriesList:Ws,PostBoxSkeleton:Ns,EditTableSwitcher:fs}};n(8848);const Qs=y(qs,zs,[],!1,null,null,null).exports,Xs={name:"PostBoxGrid",props:{containers:{type:Array,default(){var t;return null!==(t=window?.JetFBPageConfig?.containers)&&void 0!==t?t:[]}}},components:{EditTableSwitcher:fs,PostBoxContainer:Gs,PostBoxSimple:Qs},computed:{bodyClasses(){return{"metabox-holder":!0,["columns-"+this.containers?.length]:!0}}}},Ks=y(Xs,Hs,[],!1,null,null,null).exports;var Ys=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jfb-actions"},t._l(t.parsedJson,(function(e,s){return n("a",{key:s,staticClass:"jfb-dropdown-item",attrs:{href:"javascript:void(0)"},on:{click:function(e){return t.run(s)}}},[t._v("\n\t\t"+t._s(e.label)+"\n\t")])})),0)};Ys._withStripped=!0;const{ParseIncomingValueMixin:ti}=JetFBMixins;window.jfbEventBus=window.jfbEventBus||new Vue({});const ei={name:"actions--item",props:["value","full-entry","entry-id"],components:{},mixins:[ti],methods:{getPayload(t){return this.parsedJson[t]?.payload||{}},run(t){jfbEventBus.$emit(`click-${t}`,this.getPayload(t),this.fullEntry||{},this.entryId)}}};n(8241);const ni=y(ei,Ys,[],!1,null,null,null).exports;var si=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.visible?n("div",{staticClass:"jet-form-builder-page__alerts"},t._l(t.getNotices,(function(e){return n("AlertItem",{key:e.id,attrs:{id:e.id},scopedSlots:t._u([t.$slots["alert-buttons-"+e.id]?{key:"alert-buttons",fn:function(){return[t._t(["alert-buttons-"+e.id])]},proxy:!0}:null],null,!0)})})),1):t._e()};si._withStripped=!0;var ii=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.classes},[n("div",{staticClass:"alert-type-line"}),t._v(" "),n("div",{staticClass:"alert-icon",domProps:{innerHTML:t._s(t.iconHtml)}}),t._v(" "),n("div",{staticClass:"alert-content"},[t.config.title?n("div",{staticClass:"alert-title",domProps:{innerHTML:t._s(t.config.title)}}):t._e(),t._v(" "),t.config.message?n("div",{staticClass:"alert-message",domProps:{innerHTML:t._s(t.config.message)}}):t._e(),t._v(" "),t.$slots["alert-buttons"]?n("div",{staticClass:"alert-buttons"},[t._t("alert-buttons")],2):t.config.buttons?n("div",{staticClass:"alert-buttons"},t._l(t.config.buttons,(function(e,s){return n("cx-vui-button",{key:"button-alert-"+s,class:"cx-vui-button--style-"+e.type,attrs:{"button-style":e.style,size:"mini",url:e.url,"tag-name":e.rest.url?"button":"a",target:e.rest.url?"":"_blank"},on:{click:function(n){return t.emitClick(n,e)}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(e.label))]},proxy:!0}],null,!0)})})),1):t._e()]),t._v(" "),n("div",{staticClass:"alert-close",on:{click:t.closeAlert}},[n("svg",{attrs:{width:"20",height:"20",viewBox:"0 0 14 14",fill:"#dcdcdd",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M12 3.00671L8.00671 7L12 10.9933L10.9933 12L7 8.00671L3.00671 12L2 10.9933L5.99329 7L2 3.00671L3.00671 2L7 5.99329L10.9933 2L12 3.00671Z"}})])])])};ii._withStripped=!0;const{LocalStorage:oi}=JetFBActions,{mapGetters:li,mapMutations:ri}=Vuex,ai=y({name:"AlertItem",props:{id:String},created:function(){},computed:{...li(["getNotice"]),config(){return this.getNotice(this.id)},type:function(){var t;return null!==(t=this.config?.type)&&void 0!==t&&t},classes:function(){return["jet-form-builder-page__alert",`${this.type}-type`]},iconHtml:function(){let t=!1;switch(this.type){case"info":t='\n\n\n';break;case"success":t='';break;case"danger":t='';break;case"error":t=''}return this.config?.icon||t}},methods:{...ri(["clearNoticeById"]),closeAlert:function(){this.clearNoticeById(this.id)},emitClick(t,e){jfbEventBus.$emit("alert-click-"+e.slug,{self:this,target:t,button:e})}}},ii,[],!1,null,null,null).exports,{mapGetters:ci}=Vuex,ui={name:"AlertsList",components:{AlertItem:ai},computed:{...ci(["getNotices"]),visible:function(){return 0!==this.getNotices.length}}};n(8661);const di=y(ui,si,[],!1,null,null,null).exports;var pi=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.wrapperClasses},[n("div",{staticClass:"jet-form-builder-page__panel-header"},[n("div",{staticClass:"panel-header-icon"},[t._t("icon")],2),t._v(" "),n("div",{staticClass:"panel-header-content"},[n("span",{staticClass:"panel-header-desc"},[t._v(t._s(t.config.description))]),t._v(" "),n("div",{staticClass:"panel-header-title"},[t._v(t._s(t.config.title))])])]),t._v(" "),t.$slots.default?n("div",{staticClass:"jet-form-builder-page__panel-content"},[t._t("default")],2):t._e()])};pi._withStripped=!0;const mi=y({name:"DashboardPanel",props:{config:Object},computed:{wrapperClasses(){return["jet-form-builder-page__panel",this.config.slug,...this.config.classes]}}},pi,[],!1,null,null,null).exports;var fi=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.boxes.length?n("div",{staticClass:"jfb-content-sidebar"},[t._l(t.boxes,(function(e,s){return["panel"===e.type?n("DashboardPanel",{key:s,attrs:{config:e},scopedSlots:t._u([t.$slots["icon-"+e.slug]?{key:"icon",fn:function(){return[t._t("icon-"+e.slug)]},proxy:!0}:null,t.$scopedSlots["content-"+e.slug]?{key:"default",fn:function(){return[t._t("content-"+e.slug,null,null,e)]},proxy:!0}:null],null,!0)}):"banner"===e.type?n("DashboardBanner",{key:"banner-"+s,attrs:{config:e}}):t._e()]}))],2):t._e()};fi._withStripped=!0;var gi=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.wrapperClasses},[n("div",{staticClass:"banner-frame"},[n("div",{staticClass:"banner-inner"},[n("div",{staticClass:"banner-label"},[t._v(t._s(t.config.label))]),t._v(" "),n("div",{staticClass:"banner-title"},[n("span",[t._v(t._s(t.config.title))])]),t._v(" "),n("div",{staticClass:"banner-content"},[t._v(t._s(t.config.content))]),t._v(" "),t.hasButtons?n("div",{staticClass:"banner-buttons"},t._l(t.config.buttons,(function(e,s){return n("cx-vui-button",{key:"button-banner-"+s,class:"cx-vui-button--style-"+e.type,attrs:{"button-style":e.style,size:"mini",url:e.url,"tag-name":"a",target:"_blank"},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(e.label))]},proxy:!0}],null,!0)})})),1):t._e()])])])};gi._withStripped=!0;const hi=y({name:"DashboardBanner",props:{config:Object},computed:{wrapperClasses(){return["jet-form-builder-page__banner",this.config.slug,...this.config.classes]},hasButtons(){return 0!==this.config?.buttons?.length}}},gi,[],!1,null,null,null).exports;n(5201);const{i18n:bi,GetIncoming:vi}=JetFBMixins,_i={name:"SideBarBoxes",components:{DashboardPanel:mi,DashboardBanner:hi},mixins:[bi,vi],data:()=>({boxes:[]}),created(){this.boxes=this.getIncoming("boxes")}};n(7823);const Ci=y(_i,fi,[],!1,null,null,null).exports,yi={namespaced:!0,state:()=>({edited:{}}),mutations:{collectScope(t,{rootGetters:e,scope:n}){n.includes("scope-")&&(e[`${n}/hasChanges`]?t.edited[n]=e[`${n}/editedListValues`]:Vue.delete(t.edited,n))}},getters:{all:t=>t.edited},actions:{collect({rootState:t,rootGetters:e,commit:n}){for(const s in t)n("collectScope",{rootGetters:e,scope:s})}}};Vue.use(Vuex),window.JetFBComponents={...window.JetFBComponents,EntriesTable:At,PaymentsPage:Wn,DetailsTableWithStore:Xn,TablePagination:$,ChooseAction:x,ClearFiltersButton:is,PostBoxSkeleton:Ns,PostBoxGrid:Ks,PostBoxContainer:Gs,PostBoxSimple:Qs,EntriesList:Ws,ChooseColumn:t,ActionsColumn:l,LinkTypeColumn:e,EditTableSwitcher:fs,AlertsList:di,DashboardPanel:mi,SideBarBoxes:Ci,FormBuilderPage:Jt,ActionsWithFilters:A},window.JetFBMixins={...window.JetFBMixins,FilterMixin:zt,GetColumnComponent:dt,ScopeStoreMixin:d},window.JetFBStore={BaseStore:Le,TableSeedPlugin:Mn,TableModulePlugin:Tn,SingleMetaBoxesPlugin:function(t){const e=[];for(const t of Pn().containers)e.push(...t.boxes.filter((t=>["table","list"].includes(t.render_type))));for(const n of e)An(t,n),os(t,n)},NoticesPlugin:function(t){t.registerModule("notices",cs);const{notices:e}=Pn();t.commit("insertNotices",e)},PageActionsPlugin:function(t){const{actions:e=[]}=Pn();t.registerModule("actions",kn),t.commit("actions/setActions",[...e])},MessagesPlugin:On,OnUpdateEditableCellPlugin:function(t){const e=(e,n)=>{for(const s in e){const e=t.getters[`${s}/actions/byEvent`];if("function"!=typeof e)continue;const i=e("update");for(const e of i)t.commit(`${s}/actions/toggleDisabled`,{slug:e.slug,force:n})}};t.subscribe(((n,s)=>{n.type.split("/").includes("updateEditableCell")&&((e=>{for(const n in e)if(t.getters[`${n}/hasChanges`])return!0;return!1})(s)?e(s,!1):e(s,!0))}))},EditCollectorPlugin:function(t){t.registerModule("editCollector",yi),t.subscribe((e=>{e.type.split("/").includes("updateEditableCell")&&t.dispatch("editCollector/collect")}))}},window.JetFBConst=u})()})(); \ No newline at end of file +(()=>{var t={6565(){window.jfbEventBus=window.jfbEventBus||new Vue({data:()=>({reactiveCounter:0})})},4285(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>p});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o),r=n(62),a=n.n(r),c=new URL(n(2054),n.b),u=l()(i()),d=a()(c);u.push([t.id,`.jet-form-builder-page__banner{display:flex;flex-direction:column;align-items:stretch;gap:20px;border-radius:4px;color:#23282d;overflow:hidden;position:relative;background-size:cover;background-position:50% 50%;box-shadow:0px 2px 6px rgba(35,40,45,.07)}.jet-form-builder-page__banner .banner-frame{display:flex;flex-direction:column;align-items:stretch;border-radius:4px;z-index:1}.jet-form-builder-page__banner .banner-inner{height:100%;box-sizing:border-box;border-radius:4px}.jet-form-builder-page__banner .banner-label{font-weight:500;font-size:14px;line-height:18px;text-transform:uppercase;margin-bottom:38px}.jet-form-builder-page__banner .banner-title{font-size:20px;line-height:28px;margin-bottom:10px}.jet-form-builder-page__banner .banner-content{font-size:14px;line-height:18px;margin-bottom:20px}.jet-form-builder-page__banner .banner-buttons{display:flex;justify-content:flex-start;align-items:flex-end;flex:1 1 auto}.jet-form-builder-page__banner .banner-buttons .cx-vui-button{margin-right:10px}.jet-form-builder-page__banner .banner-buttons .cx-vui-button:last-child{margin-right:0}.jet-form-builder-page__banner.light-1-preset{background-color:#fff}.jet-form-builder-page__banner.light-1-preset .banner-label{color:#bb97ff}.jet-form-builder-page__banner.light-1-preset .banner-content{color:#7b7e81}.jet-form-builder-page__banner.light-1-preset:after{content:"";display:block;position:absolute;width:100%;height:100%;top:0;left:0;background-image:url(${d});background-repeat:no-repeat;background-position:right;background-position-y:0}`,""]);const p=u},9840(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-row-wrapper[data-v-4f8e09cf]{display:flex;gap:2em;align-items:end;padding:1em;margin-top:2em;flex-wrap:wrap}.jfb-row-wrapper--loading[data-v-4f8e09cf]{opacity:.5}.filters[data-v-4f8e09cf]{display:flex;gap:1em;align-items:flex-end;flex-wrap:wrap}.wrapper-buttons[data-v-4f8e09cf]{flex:1;text-align:end}",""]);const r=l},6561(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-form-builder-page .cx-vui-alert{width:100%;box-sizing:border-box;padding:10px 20px;margin-top:20px;background-color:#f4f4f5;border-radius:4px;display:flex;justify-content:flex-start;align-items:flex-start}.jet-form-builder-page .cx-vui-alert .cx-vui-alert__icon{margin-top:3px;margin-right:10px}.jet-form-builder-page .cx-vui-alert .cx-vui-alert__message{flex:1 1 auto;color:#7b7e81;font-size:13px}.jet-form-builder-page .cx-vui-alert.info-type{background-color:#edf6fa}.jet-form-builder-page .cx-vui-alert.info-type .cx-vui-alert__icon svg{fill:#007cba}.jet-form-builder-page .cx-vui-alert.info-type .cx-vui-alert__message{color:#007cba}.jet-form-builder-page .cx-vui-alert.success-type{background-color:#e9f6ea}.jet-form-builder-page .cx-vui-alert.success-type .cx-vui-alert__icon svg{fill:#46b450}.jet-form-builder-page .cx-vui-alert.success-type .cx-vui-alert__message{color:#46b450}.jet-form-builder-page .cx-vui-alert.error-type{background-color:#fbf0f0}.jet-form-builder-page .cx-vui-alert.error-type .cx-vui-alert__icon svg{fill:#c92c2c}.jet-form-builder-page .cx-vui-alert.error-type .cx-vui-alert__message{color:#c92c2c}.jet-form-builder-page__alerts{width:100%;display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.jet-form-builder-page__alert{position:relative;display:flex;justify-content:flex-start;align-items:flex-start;background-color:#fff;box-shadow:0px 2px 6px rgba(35,40,45,.07);padding:20px;margin-top:10px}.jet-form-builder-page__alert:first-child{margin-top:0}.jet-form-builder-page__alert.info-type .alert-type-line{background:#3b82f6}.jet-form-builder-page__alert.success-type .alert-type-line{background:#40d825;background:linear-gradient(180deg, #40D825 0%, #B1EF3A 100%)}.jet-form-builder-page__alert.danger-type .alert-type-line{background:#fedb22;background:linear-gradient(0deg, #FEDB22 0%, #FFA901 100%),#5099e6}.jet-form-builder-page__alert.error-type .alert-type-line{background:#ff8b8b;background:linear-gradient(0deg, #FF8B8B 0%, #F5435A 100%),#5099e6}.jet-form-builder-page__alert .alert-type-line{display:block;position:absolute;width:4px;height:100%;top:0;left:0;background:linear-gradient(0deg, #5B77E7 0%, #49B5D2 53.65%, #26E8A8 100%)}.jet-form-builder-page__alert .alert-close{display:flex;justify-content:center;align-items:center;position:absolute;top:7px;right:7px;cursor:pointer}.jet-form-builder-page__alert .alert-icon{position:relative;display:flex;justify-content:center;align-items:center;max-width:80px;width:48px;margin-right:20px}.jet-form-builder-page__alert .alert-icon svg{width:100%;height:auto}.jet-form-builder-page__alert .alert-content{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch}.jet-form-builder-page__alert .alert-title{color:#23282d;font-size:14px;line-height:18px;font-weight:500;margin-bottom:5px}.jet-form-builder-page__alert .alert-message{color:#7b7e81;font-size:13px;line-height:16px}.jet-form-builder-page__alert .alert-buttons{margin-top:10px}.jet-form-builder-page__alert .alert-buttons .cx-vui-button{margin-right:10px}.jet-form-builder-page__alert .alert-buttons .cx-vui-button:last-child{margin-right:0}",""]);const r=l},8908(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-cx-vui-component.cx-vui-component{column-gap:1em;flex-direction:row-reverse;padding:1.2em}.jfb-cx-vui-component .cx-vui-component__label{font-size:inherit}",""]);const r=l},7443(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-fb-choose-action-wrapper{display:flex;align-items:center;justify-content:space-between;gap:.7em;max-width:20vw;min-width:250px}.jet-fb-choose-action-wrapper .cx-vui-component{flex:1;padding:unset}.jet-fb-choose-action-wrapper .cx-vui-component__control{flex:1}",""]);const r=l},9942(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"#normal-sortables .jfb-list-table th{width:30%}.jfb-list-table{border-collapse:collapse;width:100%}.jfb-list-table-row{border-bottom:1px solid #ececec}.jfb-list-table-row--inner{padding:.8em}.jfb-list-table-row--item{word-break:break-word}.jfb-list-table-row--heading{text-align:left}.jfb-list-table-row:last-child{border-bottom:unset}body.rtl .jfb-list-table-row--heading{text-align:right}",""]);const r=l},2485(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,'.cx-vui-panel--loading{opacity:.5}.cx-vui-panel-table-wrapper{margin-bottom:unset}.cx-vue-list-table .list-table-heading,.cx-vue-list-table .list-table-item-columns{justify-content:space-between}.cx-vue-list-table .list-table-item{flex-direction:column;position:relative;background-color:#fff}.cx-vue-list-table .list-table-item:not(:last-child){border-bottom:1px solid #ececec}.cx-vue-list-table .list-table-item:hover{background-color:#e3f6fd}.cx-vue-list-table .list-table-item:hover .list-table-item-actions{visibility:visible}.cx-vue-list-table .list-table-item--has-choose .list-table-item-actions{left:5.2em}.cx-vue-list-table .list-table-item--has-actions .list-table-item-columns{margin-bottom:1.5em}.cx-vue-list-table .list-table-item-actions{display:flex;width:85%;column-gap:.5em;visibility:hidden;position:absolute;bottom:.5em;left:1.5em}.cx-vue-list-table .list-table-item-actions>*:not(:last-child)::after{content:"|"}.cx-vue-list-table .list-table-item-actions-single{text-decoration:unset}.cx-vue-list-table .list-table-item-actions-single--type-danger{color:#b22222}.cx-vue-list-table .list-table-item-actions-single.disabled{pointer-events:none;cursor:default}.cx-vue-list-table .list-table-item-columns{display:flex;justify-content:space-between;width:100%}.cx-vue-list-table .list-table-item__cell{white-space:nowrap;overflow:hidden;position:relative;padding:8px 20px 6px}.cx-vue-list-table .list-table-item__cell:not(.cell--choose){flex:1}.cx-vue-list-table .list-table-heading__cell:not(.cell--choose){flex:1}body.rtl .cx-vue-list-table .list-table-item--has-choose .list-table-item-actions{right:5.2em}body.rtl .cx-vue-list-table .list-table-item-actions{right:1.5em}',""]);const r=l},4378(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-ellipsis{overflow:hidden;text-overflow:ellipsis}.list-table-item__cell{overflow:hidden;text-overflow:ellipsis}.list-table-item__cell.overflow-visible.overflow-visible{overflow:visible}.list-table-item__cell.is-editable{display:flex;justify-content:space-between;column-gap:1em}.list-table-item__cell.is-editable span.dashicons{transition:all .2s ease-in-out;padding:.2em;border-radius:50%;box-shadow:unset;cursor:pointer;background-color:#fff}.list-table-item__cell--body{flex:1}.list-table-item__cell--body-value{overflow:hidden;text-overflow:ellipsis}.list-table-item__cell--body-value.jfb-control{flex:1;padding:.1em}.list-table-item__cell--body-value.jfb-control>*{width:100%}.list-table-item__cell.show-overflow.show-overflow{word-break:break-word;white-space:normal;line-height:1.5}.list-table-item__cell:hover .list-table-item__cell--body-is-editable span.dashicons:hover{box-shadow:0 0 8px #ccc}",""]);const r=l},665(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-form-builder-page>h1.inline{display:inline-block}",""]);const r=l},7950(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vue-list-table .cell--id.cell--id{flex:.3}",""]);const r=l},6284(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vui-popup.export-popup .cx-vui-popup__body{width:65vw}.cx-vui-popup.export-popup .cx-vui-popup__footer{justify-content:space-between}.cx-vui-popup.export-popup .footer-counter{display:flex;gap:1em}",""]);const r=l},7803(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-content-sidebar{width:300px;display:flex;flex-direction:column;gap:2em}",""]);const r=l},1645(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-actions{display:flex;flex-direction:column;row-gap:10px}.jfb-actions a.jfb-dropdown-item{padding:.5em 0;text-decoration:none}.jfb-actions a.jfb-dropdown-item:hover{text-decoration:underline}.jfb-actions a.jfb-dropdown-item:not(:first-child){border-top:1px solid #ccc}",""]);const r=l},5343(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vui-component[data-v-207e75c4]{padding:unset}",""]);const r=l},9699(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".cx-vue-list-table .cell--choose.cell--choose{padding-right:unset}.cx-vue-list-table .cell--choose.cell--choose .cx-vui-component{padding:unset}.cx-vue-list-table .cell--choose.cell--choose .cx-vui-checkbox__check{margin-top:0}",""]);const r=l},3033(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-icon-status[data-v-5890b8d6]{position:relative;display:inline-block}.jfb-icon-status-has-help[data-v-5890b8d6]{cursor:pointer}.jfb-icon-status-has-text[data-v-5890b8d6]{display:flex;column-gap:.5em;align-items:center}.jfb-icon-status--text[data-v-5890b8d6]{text-overflow:ellipsis;overflow:hidden;padding:.1em 0}.jfb-icon-status .dashicons-dismiss[data-v-5890b8d6]{color:#ff4500}.jfb-icon-status .dashicons-warning[data-v-5890b8d6]{color:orange}.jfb-icon-status .dashicons-yes-alt[data-v-5890b8d6]{color:#32cd32}.jfb-icon-status .dashicons-info[data-v-5890b8d6]{color:#90c6db}.jfb-icon-status .dashicons-hourglass[data-v-5890b8d6]{color:#b5b5b5}.jfb-icon-status .cx-vui-tooltip[data-v-5890b8d6]{width:fit-content;bottom:calc(100% + 15px);box-sizing:border-box;pointer-events:none;transition:all .18s linear;opacity:0;padding-left:1em;padding-right:1em;position:absolute}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-right[data-v-5890b8d6]{right:-1.2em}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-right[data-v-5890b8d6]:after{right:20px;left:unset}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-left[data-v-5890b8d6]{left:-0.9em}.jfb-icon-status .cx-vui-tooltip.tooltip-position-top-left[data-v-5890b8d6]:after{left:20px;right:unset}.jfb-icon-status:hover .cx-vui-tooltip[data-v-5890b8d6]{opacity:1}.jfb-icon-status:hover .cx-vui-tooltip.tooltip-position-top-right[data-v-5890b8d6]{bottom:100%}.jfb-icon-status:hover .cx-vui-tooltip.tooltip-position-top-left[data-v-5890b8d6]{bottom:100%}",""]);const r=l},9831(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"a[data-v-53bef95e]{text-decoration:none}a.with-flex[data-v-53bef95e]{display:flex;align-items:center;column-gap:.3em;width:fit-content}",""]);const r=l},3189(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jet-form-builder-page pre{margin:unset;overflow:auto}",""]);const r=l},8469(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"select option[data-v-1bd48c17]:disabled{background-color:#f5f5f5}",""]);const r=l},8192(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,".jfb-pagination{display:flex;justify-content:space-between;align-items:center;padding:1.5em;margin-bottom:unset}.jfb-pagination--sort .cx-vui-component{column-gap:1em;justify-content:center;align-items:center;padding:unset}.jfb-pagination .cx-vui-input{background-color:#fff}.jfb-pagination li.cx-vui-pagination-item{width:1.2em;height:1.5em;border-radius:5px;font-size:1.15em;transition:all .3s ease-in-out}.jfb-pagination li.cx-vui-pagination-item-active,.jfb-pagination li.cx-vui-pagination-item:hover{box-shadow:0 5px 5px -1px #bdbdbd;background-color:#007cba;color:#f5f5f5;border-color:#007cba}",""]);const r=l},2877(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.jfb-primary-actions {\n\tdisplay: flex;\n\tjustify-content: space-between;\n}\n.cx-vui-button.cx-vui-button--size-link {\n\tfont-size: inherit;\n}\n.major-publishing-actions {\n\tpadding: 10px;\n\tclear: both;\n\tborder-top: 1px solid #dcdcde;\n\tbackground: #f6f7f7;\n}\n",""]);const r=l},7008(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\na[data-v-6c61ef64] {\n\tmargin-right: 1em;\n\ttext-decoration: none;\n}\nbody.rtl a[data-v-6c61ef64] {\n\tmargin-left: 1em;\n}\n",""]);const r=l},7513(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.page-actions[data-v-35fab3b2] {\n\tdisplay: flex;\n\tgap: 1em;\n}\n\n",""]);const r=l},1060(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.misc-pub-section {\n\tborder-bottom: 1px solid #ececec;\n}\n.misc-pub-section:last-child {\n\tborder-bottom: unset;\n}\n\n",""]);const r=l},2269(t,e,n){"use strict";n.r(e),n.d(e,{default:()=>r});var s=n(6758),i=n.n(s),o=n(935),l=n.n(o)()(i());l.push([t.id,"\n.handle-actions[data-v-5ebbe4a6] {\n\tdisplay: flex;\n}\n\n",""]);const r=l},935(t){"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var n="",s=void 0!==e[5];return e[4]&&(n+="@supports (".concat(e[4],") {")),e[2]&&(n+="@media ".concat(e[2]," {")),s&&(n+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),n+=t(e),s&&(n+="}"),e[2]&&(n+="}"),e[4]&&(n+="}"),n}).join("")},e.i=function(t,n,s,i,o){"string"==typeof t&&(t=[[null,t,void 0]]);var l={};if(s)for(var r=0;r0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=o),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),i&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=i):u[4]="".concat(i)),e.push(u))}},e}},62(t){"use strict";t.exports=function(t,e){return e||(e={}),t?(t=String(t.__esModule?t.default:t),/^['"].*['"]$/.test(t)&&(t=t.slice(1,-1)),e.hash&&(t+=e.hash),/["'() \t\n]|(%20)/.test(t)||e.needQuotes?'"'.concat(t.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):t):t}},6758(t){"use strict";t.exports=function(t){return t[1]}},5201(t,e,n){var s=n(4285);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("c4aaf4cc",s,!1,{})},9492(t,e,n){var s=n(9840);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("3db94e28",s,!1,{})},8661(t,e,n){var s=n(6561);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("4a3f50be",s,!1,{})},4744(t,e,n){var s=n(8908);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("9b25b9f2",s,!1,{})},7287(t,e,n){var s=n(7443);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("d08b32f0",s,!1,{})},5850(t,e,n){var s=n(9942);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("f88cbe24",s,!1,{})},97(t,e,n){var s=n(2485);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("5184e3d8",s,!1,{})},3726(t,e,n){var s=n(4378);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("15f24569",s,!1,{})},1746(t,e,n){var s=n(665);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("04f1d88b",s,!1,{})},7834(t,e,n){var s=n(7950);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("fa7110b0",s,!1,{})},9256(t,e,n){var s=n(6284);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("eab0c31e",s,!1,{})},7823(t,e,n){var s=n(7803);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("94a4f310",s,!1,{})},8241(t,e,n){var s=n(1645);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("d35e5ff6",s,!1,{})},9971(t,e,n){var s=n(5343);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("3fee1c64",s,!1,{})},4487(t,e,n){var s=n(9699);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("7f272449",s,!1,{})},7597(t,e,n){var s=n(3033);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("39430ad8",s,!1,{})},9963(t,e,n){var s=n(9831);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("237ecbda",s,!1,{})},3249(t,e,n){var s=n(3189);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("922c9ac8",s,!1,{})},361(t,e,n){var s=n(8469);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("fa8aca68",s,!1,{})},2972(t,e,n){var s=n(8192);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("c692d034",s,!1,{})},7289(t,e,n){var s=n(2877);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("1e0fc7e8",s,!1,{})},9244(t,e,n){var s=n(7008);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("5c9c0768",s,!1,{})},3061(t,e,n){var s=n(7513);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("2fdc9246",s,!1,{})},8848(t,e,n){var s=n(1060);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("25d89817",s,!1,{})},7985(t,e,n){var s=n(2269);s.__esModule&&(s=s.default),"string"==typeof s&&(s=[[t.id,s,""]]),s.locals&&(t.exports=s.locals),(0,n(611).A)("bbaec80a",s,!1,{})},611(t,e,n){"use strict";function s(t,e){for(var n=[],s={},i=0;if});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},l=i&&(document.head||document.getElementsByTagName("head")[0]),r=null,a=0,c=!1,u=function(){},d=null,p="data-vue-ssr-id",m="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(t,e,n,i){c=n,d=i||{};var l=s(t,e);return g(l),function(e){for(var n=[],i=0;in.parts.length&&(s.parts.length=n.parts.length)}else{var l=[];for(i=0;i{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var s in e)n.o(e,s)&&!n.o(t,s)&&Object.defineProperty(t,s,{enumerable:!0,get:e[s]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.b="undefined"!=typeof document&&document.baseURI||self.location.href,(()=>{"use strict";var t={};n.r(t),n.d(t,{head:()=>Z,item:()=>R});var e={};n.r(e),n.d(e,{item:()=>X});var s={};n.r(s),n.d(s,{item:()=>tt});var i={};n.r(i),n.d(i,{control:()=>nt});var o={};n.r(o),n.d(o,{control:()=>it});var l={};n.r(l),n.d(l,{item:()=>ni}),n(6565);var r=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("FormBuilderPage",{attrs:{title:t.__("JetFormBuilder Payments","jet-form-builder")},scopedSlots:t._u([{key:"heading-after",fn:function(){return[n("ExportPaymentsButton")]},proxy:!0}])},[t._v(" "),n("ActionsWithFilters",{scopedSlots:t._u([{key:"filters",fn:function(){return[n("StatusFilter")]},proxy:!0}])}),t._v(" "),n("TablePagination"),t._v(" "),n("EntriesTable"),t._v(" "),t.$slots.default?[t._t("default")]:t._e(),t._v(" "),n("TablePagination")],2)};r._withStripped=!0;var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.show?n("div",{class:t.wrapperClass},[n("ChooseAction"),t._v(" "),n("div",{staticClass:"filters"},[t._t("filters")],2),t._v(" "),n("div",{staticClass:"wrapper-buttons"},[t._t("buttons")],2)],1):t._e()};a._withStripped=!0;var c=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jet-fb-choose-action-wrapper"},[n("cx-vui-select",{attrs:{placeholder:t.__("Bulk actions","jet-form-builder"),size:"fullwidth",value:t.currentAction,"options-list":t.actionsList},on:{input:t.setCurrentAction}}),t._v(" "),n("cx-vui-button",{attrs:{loading:t.isLoading,disabled:t.isDoing,"button-style":"accent-border",size:"mini"},on:{click:t.applyAction},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Apply","jet-form-builder")))]},proxy:!0}])})],1)};c._withStripped=!0;const u={CHOOSE_ACTION:"chooseAction",CLICK_ACTION:"clickAction"},d={props:{scope:{type:String,default:"default"}},methods:{scopedName(t){return"scope-"+this.scope+"/"+t},getter(t,e){const n=this.$store.getters[this.scopedName(t)];return void 0!==e&&"function"==typeof n?e?.length&&"object"==typeof e?n(...e):n(e):n},commit(t,e){return this.$store.commit(this.scopedName(t),e)},dispatch(t,e){return this.$store.dispatch(this.scopedName(t),e)}}},{i18n:p}=JetFBMixins,{applyFilters:m}=wp.hooks,{CHOOSE_ACTION:f,CLICK_ACTION:g}=u;window.jfbEventBus=window.jfbEventBus||new Vue({});const{mapState:h,mapGetters:b,mapMutations:v,mapActions:_}=Vuex,C={name:"ChooseAction",mixins:[p,d],computed:{...b(["isDoing"]),currentAction(){return this.getter("currentAction")},isLoading(){return this.getter("isLoading","applyButton")},actionsList(){return this.getter("actionsList")},getChecked(){return this.getter("getChecked")},getActionPromise(){return this.getter("getActionPromise")}},methods:{...v(["toggleDoingAction"]),setCurrentAction(t){this.commit("setCurrentAction",t)},onFinish(){this.commit("toggleLoading","applyButton"),this.toggleDoingAction()},applyAction(){this.onFinish(),this.commit("setProcess",{action:this.currentAction,context:f,payload:[this.getChecked,f]});const t=()=>{this.onFinish(),this.commit("clearProcess"),this.commit("setChecked",[]),this.commit("unChooseHead")};try{this.getActionPromise().finally(t)}catch(t){this.onFinish()}}}};function y(t,e,n,s,i,o,l,r){var a,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),s&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),l?(a=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(l)},c._ssrRegister=a):i&&(a=r?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),a)if(c.functional){c._injectStyles=a;var u=c.render;c.render=function(t,e){return a.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,a):[a]}return{exports:t,options:c}}n(7287);const x=y(C,c,[],!1,null,null,null).exports,{GetIncoming:w,i18n:S}=JetFBMixins,{mapMutations:j,mapActions:E,mapState:k,mapGetters:P}=Vuex,L={name:"ActionsWithFilters",components:{ChooseAction:x},mixins:[w,S,d],data:()=>({}),computed:{...P(["isDoing"]),hasFilters(){return jfbEventBus.reactiveCounter,this.getter("hasFilters")},items(){return this.getter("list")},show(){return this.items.length||this.hasFilters},wrapperClass(){return{"cx-vui-panel":!0,"jfb-row-wrapper":!0,"jfb-row-wrapper--loading":this.isDoing}}},created(){if(!this.items.length)return;const{filters_endpoint:t}=this.getIncoming();t&&this.dispatch("maybeFetchFilters",t)}};n(9492);const A=y(L,a,[],!1,null,"4f8e09cf",null).exports;var B=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jfb-pagination"},[n("span",{staticClass:"jfb-pagination--results"},[t._v("\n\t\t"+t._s(t.__s("Showing %d - %d of %d results.","jet-form-builder",t.queryState.itemsFrom,t.queryState.itemsTo,t.queryState.total))+"\n\t")]),t._v(" "),t.queryState.limit[]}},data:()=>({componentsCols:[]}),created(){this.componentsCols=[...this.columnsComponents,t,e,s,i,o,ut,rt]},methods:{getColumnComponentByPrefix(t,e){const n=this.componentsCols.findIndex(n=>n[e]?.name===t+"--"+e);return-1!==n&&this.componentsCols[n][e]}}};var pt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.getClasses},[n("div",{staticClass:"list-table-item__cell--body jfb-ellipsis"},[t.initial.editable&&t.isEnableEdit?n("div",{staticClass:"list-table-item__cell--body-value jfb-control"},[n("keep-alive",[n(t.getComponentEditControl,{tag:"component",attrs:{options:t.initial.control_options},model:{value:t.editedCellValue,callback:function(e){t.editedCellValue=e},expression:"editedCellValue"}})],1)],1):t.getComponentColumn?[n(t.getComponentColumn,{tag:"component",attrs:{value:t.value,"full-entry":t.entry,"entry-id":t.entryId,scope:t.scope}})]:t.getComponentType?[n(t.getComponentType,{tag:"component",attrs:{value:t.value,"full-entry":t.entry,"entry-id":t.entryId,scope:t.scope}})]:n("div",{staticClass:"list-table-item__cell--body-value",domProps:{innerHTML:t._s(t.value)}})],2),t._v(" "),t.initial.editable&&t.editedCellValue!==t.initialValue?n("div",{staticClass:"list-table-item__cell--actions"},[n("span",{staticClass:"dashicons dashicons-undo",on:{click:t.revertChangesColumn}})]):t._e()])};pt._withStripped=!0;const mt={name:"EntryColumnsTable",props:{entry:Object,column:String,entryId:Number},mixins:[d,dt],computed:{initial(){var t;return null!==(t=this.entry[this.column])&&void 0!==t?t:{}},value(){return this.initial.editable?this.editedCellValue:this.initialValue},initialValue(){var t,e;return null!==(t=null!==(e=this.initial?.value)&&void 0!==e?e:this.initial?.value?.value)&&void 0!==t&&t},initialType(){var t;return null!==(t=this.initial?.type)&&void 0!==t?t:"string"},initialClasses(){var t;return null!==(t=this.initial?.classes)&&void 0!==t?t:[]},getClasses(){const t=["list-table-item__cell","cell--"+this.column,"cell-type--"+this.initialType,...this.initialClasses];return!t.includes("overflow-visible")&&this.isShowOverflow&&t.push("show-overflow"),this.initial.editable&&t.push("is-editable"),t},editedCellValue:{get(){return jfbEventBus.reactiveCounter,this.getter("editedCellValue",[this.column,this.entry])},set(t){this.commit("updateEditableCell",{record:this.entry,column:this.column,initial:this.initialValue,props:{value:t}}),jfbEventBus.reactiveCounter++}},isEnableEdit(){return jfbEventBus.reactiveCounter,this.getter("isEnableEdit")},isShowOverflow(){return this.getter("options/isShowOverflow")},getComponentType(){return this.getItemComponent(this.initialType)},getComponentColumn(){return this.getItemComponent(this.column)},getComponentEditControl(){return this.getColumnComponentByPrefix(this.initial?.control,"control")}},methods:{revertChangesColumn(){this.commit("revertChangesColumn",{record:this.entry,column:this.column}),jfbEventBus.reactiveCounter++},getItemComponent(t){return this.getColumnComponentByPrefix(t,"item")}}};n(3726);const ft=y(mt,pt,[],!1,null,null,null).exports;function gt(t){var e,n;return null!==(e=null!==(n=t?.id?.value)&&void 0!==n?n:t?.choose?.value)&&void 0!==e?e:0}const{CHOOSE_ACTION:ht,CLICK_ACTION:bt}=u,{mapState:vt,mapGetters:_t,mapActions:Ct,mapMutations:yt}=window.Vuex,xt={name:"EntriesTableSkeleton",components:{EntryColumnsTable:ft},props:{list:{type:Array},columns:{type:Object},loading:{type:Boolean,default:!1},emptyMessage:{type:String,default:""},footerHeading:{type:Boolean,default:!0}},data:()=>({columnsIDs:[]}),mixins:[dt,d],created(){this.columnsIDs=Object.keys(this.columns)},computed:{rootClasses(){return{"cx-vui-panel":!0,"cx-vui-panel--loading":this.loading,"cx-vui-panel-table-wrapper":!0}},filteredColumns(){return this.columnsIDs.filter(this.isShown).sort((t,e)=>{var n,s;return(null!==(n=this.columns[t].table_order)&&void 0!==n?n:999)-(null!==(s=this.columns[e].table_order)&&void 0!==s?s:999)})},..._t(["isDoing"])},methods:{...yt(["toggleDoingAction"]),getHeadingComponent(t){return this.getColumnComponentByPrefix(t,"head")},getActionHref:t=>t?.href||"javascript:void(0)",getActionClass(t){const{type:e="default",class_name:n=""}=t;return{"list-table-item-actions-single":!0,[n]:!0,["list-table-item-actions-single--type-"+e]:!0,disabled:this.isDoing}},isShown(t){var e;return null===(e=this.columns[t].show_in_table)||void 0===e||e},classEntry(t,e){var n;return{"list-table-item":!0,"list-table-item--has-choose":e?.choose?.value,"list-table-item--has-actions":e?.actions?.value?.length,...null!==(n=e?.classes?.value)&&void 0!==n?n:{}}},columnType(t,e){var n;return null!==(n=t[e]?.type)&&void 0!==n?n:"string"},onClickAction(t,e,n){if(!t?.href||"#"===t.href){n.preventDefault(),this.commit("setProcess",{action:t.value,context:bt,payload:[[gt(e)],bt,t?.payload,e]});try{this.dispatch("beforeRowAction")}catch(t){return}this.dispatch("runRowAction")}}}},wt=xt;n(97);const St=y(wt,I,[],!1,null,null,null).exports,{mapState:jt,mapGetters:Et,mapActions:kt,mapMutations:Pt}=window.Vuex,{applyFilters:Lt}=wp.hooks,At=y({name:"entries-table",data:()=>({components:[]}),components:{EntriesTableSkeleton:St},mixins:[d],created(){this.components=Lt(`jet.fb.admin.table.${this.scope}`,[])},computed:{list(){return this.getter("list")},columns(){return this.getter("columns")},emptyMessage(){return this.getter("emptyMessage")},isLoading(){return this.getter("isLoading","page")},footerHeading(){return this.getter("options/footerHeading")}}},D,[],!1,null,null,null).exports;var Bt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:{wrap:!0,"jet-form-builder-page":!0}},[t._t("heading-before"),t._v(" "),n("h1",{staticClass:"wp-heading-inline"},[t._v("\n\t\t"+t._s(t.title)+"\n\t")]),t._v(" "),t.$slots["heading-after"]?[t._t("heading-after")]:t.hasGlobalActions?[n("PageActions")]:t._e(),t._v(" "),n("hr",{staticClass:"wp-header-end"}),t._v(" "),t._t("default")],2)};Bt._withStripped=!0;var Ft=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"page-actions"},t._l(t.secondaryActions,function(e){return n("div",{key:e.slug,class:["page-actions-item","action-"+e.slug]},[e.button?n("cx-vui-button",{key:"button-action-"+e.slug,class:["cx-vui-button--style-"+e.button.type].concat(e.button.classes),attrs:{"button-style":e.button.style,size:e.button.size,url:e.button.url,"tag-name":e.button.url?"a":"button",disabled:t.isDisabled(e.slug)||t.isGlobalDoing,loading:t.isLoading(e.slug),target:"_blank"},on:{click:function(n){return t.globalEmit(e)}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(e.button.label))]},proxy:!0}],null,!0)}):t._e()],1)}),0)};Ft._withStripped=!0;const{mapState:Tt,mapGetters:Mt,mapMutations:Vt,mapActions:Ot}=Vuex,$t={name:"PageActions",mixins:[d],computed:{...Mt("actions",["actions","isLoading","isDisabled"]),...Mt(["isDoing"]),isGlobalDoing(){return jfbEventBus.reactiveCounter,this.isDoing},secondaryActions(){return this.actions.filter(t=>"secondary"===t.position)}},methods:{...Vt("actions",["setCurrentAction"]),globalEmit({slug:t}){this.setCurrentAction(t),jfbEventBus.$emit("page-"+t)}}},Dt=$t;n(3061);const It=y(Dt,Ft,[],!1,null,"35fab3b2",null).exports;var Nt;const Ht={name:"FormBuilderPage",props:{title:{type:String,default:null!==(Nt=window?.JetFBPageConfig?.title)&&void 0!==Nt?Nt:""}},computed:{hasGlobalActions(){return this.$store.hasModule("actions")}},components:{PageActions:It}};n(1746);const Jt=y(Ht,Bt,[],!1,null,null,null).exports;var Gt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("CxVuiSelect",{attrs:{value:t.filter.selected},on:{input:t.onChangeFilter}},t._l(t.filter.options||[],function(e){return n("option",{domProps:{value:e.value}},[t._v("\n\t\t"+t._s(e.label)+"\n\t")])}),0)};Gt._withStripped=!0;const zt={mixins:[d],computed:{filter(){return jfbEventBus.reactiveCounter,this.getter("getFilter",this.filter_id)}},methods:{setCurrentFilter(t){this.commit("setFilter",{slug:this.filter_id,props:t})},onChangeFilter(t){this.setCurrentFilter({selected:t})}}},{__:Ut}=wp.i18n,{mapState:Rt,mapGetters:Zt,mapMutations:Wt,mapActions:qt}=Vuex,{i18n:Qt}=JetFBMixins,{ColumnWrapper:Xt,CxVuiSelect:Kt}=JetFBComponents,Yt=y({name:"StatusFilter",components:{ColumnWrapper:Xt,CxVuiSelect:Kt},data:()=>({filter_id:"status"}),created(){this.setCurrentFilter({options:[{value:"",label:Ut("All statuses","jet-form-builder")},{value:"COMPLETED",label:Ut("Only completed ones","jet-form-builder")},{value:"VOIDED",label:Ut("Only not completed ones","jet-form-builder")}]})},mixins:[zt,Qt]},Gt,[],!1,null,null,null).exports;var te=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{display:"inline-block"}},[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"mini"},on:{click:function(e){t.showPopup=!0}},scopedSlots:t._u([{key:"label",fn:function(){return[n("span",{staticClass:"dashicons dashicons-database-export"}),t._v("\n\t\t\t"+t._s(t.__("Export","jet-form-builder"))+"\n\t\t")]},proxy:!0}])}),t._v(" "),t.showPopup?n("CxVuiPopup",{attrs:{"class-names":{"export-popup":!0,"sticky-footer":!0}},on:{close:function(e){t.showPopup=!1}},scopedSlots:t._u([{key:"title",fn:function(){return[t._v(t._s(t.__("1. Select data to export:","jet-form-builder")))]},proxy:!0},{key:"content",fn:function(){return[n("RowWrapper",{attrs:{"element-id":"columns","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:t.columnsState},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("General Columns","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiFSelect",{attrs:{"options-list":t.columns,multiple:!0,value:t.selectedColumns},on:{change:t.setColumns}})]},proxy:!0},{key:"actions",fn:function(){return[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.columnsValues.length===t.selectedColumns.length},on:{click:t.selectAllColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,3825749283)}),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!t.selectedColumns.length},on:{click:t.clearAllColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,782737158)})]},proxy:!0}],null,!1,2802837545)}),t._v(" "),n("RowWrapper",{attrs:{"element-id":"payerColumns","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:t.columnsState},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Payer Columns","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiFSelect",{attrs:{"options-list":t.payerColumns,multiple:!0,value:t.selectedPayerColumns},on:{change:t.setPayerColumns}})]},proxy:!0},{key:"actions",fn:function(){return[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.payerColumnsValues.length===t.selectedPayerColumns.length},on:{click:t.selectAllPayerColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,3825749283)}),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!t.selectedPayerColumns.length},on:{click:t.clearAllPayerColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,782737158)})]},proxy:!0}],null,!1,4094018880)}),t._v(" "),n("RowWrapper",{attrs:{"element-id":"shippingColumns","class-names":{"size--1-x-2":!0,"padding-side-unset":!0},state:t.columnsState},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Shipping Columns","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiFSelect",{attrs:{"options-list":t.shippingColumns,multiple:!0,value:t.selectedShippingColumns},on:{change:t.setShippingColumns}})]},proxy:!0},{key:"actions",fn:function(){return[n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.shippingColumnsValues.length===t.selectedShippingColumns.length},on:{click:t.selectAllShippingColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Choose all","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,3825749283)}),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-error",size:"link",tagName:"a",disabled:!t.selectedShippingColumns.length},on:{click:t.clearAllShippingColumns},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Clear","jet-form-builder"))+"\n\t\t\t\t\t\t")]},proxy:!0}],null,!1,782737158)})]},proxy:!0}],null,!1,1335985645)}),t._v(" "),n("h3",[t._v(t._s(t.__("2. Filter payments:","jet-form-builder")))]),t._v(" "),n("Delimiter"),t._v(" "),n("RowWrapper",{attrs:{"element-id":"status","class-names":{"size--1-x-2":!0,"padding-side-unset":!0}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Status","jet-form-builder")))]},proxy:!0},{key:"default",fn:function(){return[n("CxVuiSelect",{attrs:{value:t.status,"class-names":{fullwidth:!0}},on:{input:t.setStatus}},t._l(t.statusFilter.options||[],function(e){return n("option",{domProps:{value:e.value}},[t._v("\n\t\t\t\t\t\t\t"+t._s(e.label)+"\n\t\t\t\t\t\t")])}),0)]},proxy:!0}],null,!1,3912950338)})]},proxy:!0},{key:"footer",fn:function(){return[n("div",{staticClass:"footer-buttons"},[n("cx-vui-button",{attrs:{"button-style":"accent",size:"mini",disabled:!t.canBeExported},on:{click:t.startExport},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Export","jet-form-builder")))]},proxy:!0}],null,!1,2420192243)}),t._v(" "),n("cx-vui-button",{attrs:{size:"mini"},on:{click:function(e){t.showPopup=!1}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.__("Cancel","jet-form-builder")))]},proxy:!0}],null,!1,298029969)})],1),t._v(" "),n("div",{staticClass:"footer-counter"},[n("div",{staticClass:"footer-counter--message"},[t._v("\n\t\t\t\t\t"+t._s(t.countMessage)+"\n\t\t\t\t")]),t._v(" "),n("cx-vui-button",{attrs:{"button-style":"link-accent",size:"link",tagName:"a",disabled:t.isLoading("count"),loading:t.isLoading("count")},on:{click:t.onClickUpdateCount},scopedSlots:t._u([{key:"label",fn:function(){return[t._v("\n\t\t\t\t\t\t"+t._s(t.__("Update","jet-form-builder"))+"\n\t\t\t\t\t")]},proxy:!0}],null,!1,168407598)})],1)]},proxy:!0}],null,!1,3777172923)}):t._e()],1)};te._withStripped=!0;const{__:ee,sprintf:ne}=wp.i18n,{mapState:se,mapGetters:ie,mapMutations:oe,mapActions:le}=Vuex,{i18n:re,GetIncoming:ae}=JetFBMixins,{RowWrapper:ce,CxVuiPopup:ue,CxVuiFSelect:de,CxVuiSelect:pe,Delimiter:me}=JetFBComponents,{addQueryArgs:fe}=JetFBActions,{export_url:ge}=window.JetFBPageConfig,he={name:"ExportPaymentsButton",components:{CxVuiFSelect:de,RowWrapper:ce,CxVuiPopup:ue,CxVuiSelect:pe,Delimiter:me},mixins:[re,d,ae],data:()=>({showPopup:!1}),created(){this.resolveCount()},computed:{exportUrl(){return fe({columns:this.selectedColumns,payerColumns:this.selectedPayerColumns,shippingColumns:this.selectedShippingColumns,filters:{status:this.status}},ge)},...ie(["exportPayments/columns","exportPayments/columnsValues","exportPayments/selectedColumns","exportPayments/payerColumns","exportPayments/payerColumnsValues","exportPayments/selectedPayerColumns","exportPayments/shippingColumns","exportPayments/shippingColumnsValues","exportPayments/selectedShippingColumns","exportPayments/statusesList","exportPayments/status","exportPayments/isLoading","exportPayments/count"]),canBeExported(){return!this.isLoading()&&!this.isEmptyColumns&&this.count>0},isEmptyColumns(){return!this.selectedColumns?.length&&!this.selectedShippingColumns?.length&&!this.selectedPayerColumns?.length},columnsState(){return this.isEmptyColumns?{type:"warning-danger",message:ee("Please fill this field","jet-form-builder")}:""},statusFilter(){return this.getter("getFilter","status")},status(){return this["exportPayments/status"]},columns(){return this["exportPayments/columns"]},columnsValues(){return this["exportPayments/columnsValues"]},selectedColumns(){return this["exportPayments/selectedColumns"]},payerColumns(){return this["exportPayments/payerColumns"]},payerColumnsValues(){return this["exportPayments/payerColumnsValues"]},selectedPayerColumns(){return this["exportPayments/selectedPayerColumns"]},shippingColumns(){return this["exportPayments/shippingColumns"]},shippingColumnsValues(){return this["exportPayments/shippingColumnsValues"]},selectedShippingColumns(){return this["exportPayments/selectedShippingColumns"]},count(){return this["exportPayments/count"]},countMessage(){return ne(ee("%d items can be exported","jet-form-builder"),this.count)}},methods:{...oe("exportPayments",["setColumns","setShippingColumns","setPayerColumns","setStatus"]),...le("exportPayments",["clearAllColumns","selectAllColumns","clearAllPayerColumns","selectAllPayerColumns","clearAllShippingColumns","selectAllShippingColumns","resolveCount"]),startExport(){window.location=this.exportUrl},onClickUpdateCount(){this.resolveCount()},isLoading(t){return this["exportPayments/isLoading"](t)}}};n(9256);const be=y(he,te,[],!1,null,null,null).exports,{GetIncoming:ve,i18n:_e,PromiseWrapper:Ce}=JetFBMixins,{apiFetch:ye}=wp,{mapMutations:xe,mapState:we,mapActions:Se,mapGetters:je}=Vuex,Ee={name:"payments-table-core",components:{ExportPaymentsButton:be,StatusFilter:Yt,ActionsWithFilters:A,FormBuilderPage:Jt,EntriesTable:At,TablePagination:$},mixins:[ve,_e,Ce],created(){this.setActionPromises({action:"delete",promise:this.promiseWrapper(this.delete.bind(this))})},methods:{...xe("scope-default",["setActionPromises"]),...Se("scope-default",["updateList","apiFetch"]),delete({resolve:t,reject:e}){this.apiFetch().then(e=>{this.updateList(e),t(e.message)}).catch(e)}}};n(7834);const ke=y(Ee,r,[],!1,null,null,null).exports,Pe={toggleDoingAction(t){t.doingAction=!t.doingAction}},Le={state:{...()=>({doingAction:!1})},getters:{isDoing:t=>t.doingAction},mutations:{...Pe}},Ae={loading:{page:!1,applyButton:!1}},Be={toggleLoading(t,e){var n;t.loading={...t.loading,[e]:!(null!==(n=t.loading[e])&&void 0!==n&&n)}}},Fe={state:()=>({...Ae}),getters:{isLoading:t=>e=>{var n;return null!==(n=t.loading[e])&&void 0!==n&&n}},mutations:Be},Te={currentPage:1,extreme_id:0,limit:25,sort:"DESC",total:0,itemsFrom:0,itemsTo:0,filters:{},receiveEndpoint:{},apiOptions:{},apiData:{}},Me=(t,e)=>1!==t?(t-1)*e:0,Ve=t=>{const e={};for(const n in t){const s=t[n];e[n]=s.selected}return e},{addQueryArgs:Oe}=JetFBActions,$e={offset:t=>Me(t.currentPage,t.limit),getLimit:t=>t.limit,getFilter:t=>e=>{var n;return null!==(n=t.filters[e])&&void 0!==n?n:{}},receiveEndpoint:t=>t.receiveEndpoint,queryState:t=>({limit:t.limit,total:t.total,currentPage:t.currentPage,itemsFrom:t.itemsFrom,itemsTo:t.itemsTo}),hasFilters:t=>0Object.values(t.filters).some(({selected:t})=>!!t),apiOptions:t=>t.apiOptions,apiData:t=>t.apiData,filtersObj:t=>Ve(t.filters),fetchListOptions:t=>e=>{const{limit:n,sort:s,currentPage:i}=t;return{...e,url:Oe({limit:n,sort:s,page:i,filters:Ve(t.filters)},e.url)}}},De={...$e},Ie={setTotal(t,e){t.total=+e},setLimit(t,e){+e<1&&(e=1),t.limit=+e},setCurrentPage(t,e){t.currentPage=+e},setOffset(t,e){const n=e+t.limit;t.itemsFrom=e+1,t.itemsTo=n>t.total?t.total:n},setReceiveEndpoint(t,e){t.receiveEndpoint={...e}},setFilters(t,e){t.filters={...t.filters,...e}},setFilter(t,{slug:e,props:n={}}){var s;t.filters={...t.filters,[e]:{...null!==(s=t.filters[e])&&void 0!==s?s:{},...n}}},clearSelectedFilters(t,e={}){for(const s in t.filters){var n;t.filters[s].selected=null!==(n=e[s])&&void 0!==n?n:""}},setApiOptions(t,e){t.apiOptions=e},setApiData(t,e){t.apiData=e}},Ne={setQueryState({commit:t},e){"currentPage"in e&&t("setCurrentPage",e.currentPage),"total"in e&&t("setTotal",e.total),"limit"in e&&t("setLimit",e.limit)},setQueriedPage({commit:t,state:e},n){const s=Me(+n,e.limit);t("setCurrentPage",n),t("setOffset",s)},updateQueryState({state:t,dispatch:e},n=!1){e("setQueriedPage",n||t.currentPage)}},He={state:()=>({...Te}),getters:De,mutations:Ie,actions:Ne},Je={list:[],columns:{}},Ge={setList(t,e){t.list=JSON.parse(JSON.stringify(e))},setColumns(t,e){t.columns=JSON.parse(JSON.stringify(e))}},ze={state:()=>({...Je}),getters:{list:t=>t.list,columns:t=>t.columns},mutations:Ge},Ue={checked:[],chooseHead:"",idList:[]},Re={toggleHead(t){t.chooseHead=t.chooseHead?"":"checked"},unChooseHead(t){t.chooseHead=""},chooseHead(t){t.chooseHead="checked"},addChecked(t,{id:e}){t.checked.push(e)},setChecked(t,e=[]){t.checked=e},removeChecked(t,{id:e}){t.checked=t.checked.filter(t=>t!==e)}},Ze={state:()=>({...Ue}),getters:{chooseHeadValue:t=>t.chooseHead,isChecked:t=>e=>t.checked.includes(e),isCheckedHead:t=>"checked"===t.chooseHead,getChecked:t=>t.checked},mutations:Re,actions:{changeChecked({commit:t},{id:e,active:n}){t(n?"addChecked":"removeChecked",{id:e})}}};window.jfbEventBus=window.jfbEventBus||new Vue({});const{apiFetch:We}=wp,qe={fetchPage({commit:t,getters:e,dispatch:n}){t("toggleLoading","page");const s=e.receiveEndpoint;n("fetch",e.fetchListOptions(s)).then(e=>{n("updateList",e),n("updateQueryState"),t("unChooseHead"),t("setChecked",[])}).finally(()=>{t("toggleLoading","page")})},fetchPageWithFilters({commit:t,getters:e,dispatch:n}){t("toggleLoading","page"),n("updateQueryState",1);const s=e.receiveEndpoint;n("fetch",e.fetchListOptions(s)).then(t=>{n("updateList",t),jfbEventBus.reactiveCounter++}).catch(t=>{t?.hasOwnProperty?.("code")&&"not_found"===t.code&&n("updateList",{list:[],total:0})}).finally(()=>{t("toggleLoading","page")})},updateList({commit:t,getters:e},n){var s;t("setList",n.list),e.queryState&&t("setTotal",null!==(s=n?.total)&&void 0!==s?s:e.queryState.total),n.list.length>e.getLimit&&t("setLimit",n.list.length),t("setOffset",0)},fetch:(t,e)=>new Promise((t,n)=>{We(e).then(t).catch(t=>{jfbEventBus.$CXNotice.add({message:t.message,type:"error",duration:4e3}),n(t)}).finally(n)}),apiFetch:({getters:t,dispatch:e})=>(e("beforeRunFetch"),We((t=>{const{action:e,payload:n}=t.currentProcess,[s]=n;let i=t.getAction(e);var o,l,r;return i||(l=null!==(o=n[3])&&void 0!==o?o:{},r=e,i=l.actions.value.find(t=>r===t.value)),{...t.fetchListOptions(i?.endpoint),...t.apiOptions,data:{checked:s,...t.apiData}}})(t))),maybeFetchFilters(t,e){const{commit:n,getters:s,rootGetters:i}=t;s.hasFilters||i.isDoing||(n("toggleDoingAction",null,{root:!0}),We(e).then(t=>{n("setFilters",t.filters),jfbEventBus.reactiveCounter++}).finally(()=>{n("toggleDoingAction",null,{root:!0})}))},activeAll({commit:t,getters:e}){t("setChecked",e.list.map(t=>t?.choose?.value))},clearFiltersWithFetch({commit:t,dispatch:e},n){t("clearSelectedFilters",n),e("fetchPageWithFilters")}},Qe={currentAction:"",actionsList:[],actionsPromises:{},beforeActions:{},currentProcess:{}},{__:Xe}=wp.i18n,Ke={getAction:t=>e=>t.actionsList.find(t=>e===t.value),actionsList:t=>t.actionsList,currentAction:t=>t.currentAction,getActionPromise:t=>{var e;const{action:n,payload:s=[]}=t.currentProcess;if("function"!=typeof t.actionsPromises[n])throw new Error(Xe("Please choose your action","jet-form-builder"));const i=null!==(e=t.actionsPromises[n])&&void 0!==e&&e;return()=>new Promise((t,e)=>i(t,e,...s))},processContext:t=>t.currentProcess.context,currentProcess:t=>t.currentProcess},Ye={...Ke,getCurrentAction:t=>Ke.getAction(t)(t.currentAction)},tn={setCurrentAction(t,e){t.currentAction=e},setActionsList(t,e){t.actionsList=JSON.parse(JSON.stringify(e||[]))},setActionPromises(t,{action:e,promise:n}){t.actionsPromises={...t.actionsPromises,[e]:n}},setBeforeAction(t,{action:e,callback:n}){t.beforeActions={...t.beforeActions,[e]:n}},setProcess(t,e){t.currentProcess=e},clearProcess(t){t.currentProcess={}}},en={beforeRunFetch({getters:t,rootGetters:e}){if(u.CHOOSE_ACTION!==t.processContext)return;const n=e["messages/label"];if(!t.getChecked.length)throw new Error(n("empty_checked"));if(!t.getCurrentAction?.endpoint)throw new Error(n("empty_action"))},runRowAction({commit:t,getters:e}){t("toggleDoingAction",null,{root:!0}),t("toggleLoading","page");const n=()=>{t("toggleLoading","page"),t("toggleDoingAction",null,{root:!0})};try{e.getActionPromise().finally(n)}catch(t){n()}},beforeRowAction({state:t}){var e;const{action:n,payload:s=[]}=t.currentProcess;if("function"==typeof t.beforeActions[n])throw(null!==(e=t.beforeActions[n])&&void 0!==e&&e)(...s),new Error}},nn={state:()=>({...Qe}),getters:Ye,mutations:tn,actions:en},sn={renderType:""},on={setRenderType(t,e){t.renderType=e}},{__:ln}=wp.i18n,rn={singleEndpoint:{}},an={hasSingleEndpoint:t=>0t.singleEndpoint,getSingleHref:t=>{var e;return null!==(e=t.singleEndpoint?.href)&&void 0!==e?e:"#"},getSingleType:t=>{var e;return null!==(e=t.singleEndpoint?.type)&&void 0!==e?e:"external"},getSingleTitle:t=>{var e;return null!==(e=t.singleEndpoint.title)&&void 0!==e?e:ln("View","jet-form-builder")}},cn={setSingleEndpoint(t,e){t.singleEndpoint=e}},{__:un}=wp.i18n,dn={message:""},pn={setEmptyMessage(t,e){t.message=e||un("No items found","jet-form-builder")}},mn={state:()=>({...sn,...rn,...dn}),getters:{isTable:t=>"table"===t.renderType,isList:t=>"list"===t.renderType,isUnknownType:t=>!["table","list"].includes(t.renderType),...an,emptyMessage:t=>t.message},mutations:{...on,...cn,...pn},actions:{}},fn={namespaced:!0,state:()=>({options:{}}),getters:{all:t=>t.options,footerHeading:t=>{var e;return null===(e=t.options?.footer_heading)||void 0===e||e},isShowOverflow:t=>{var e;return null!==(e=t.options?.show_overflow)&&void 0!==e&&e},showOverflowControl:t=>{var e;return null!==(e=t.options.show_overflow_control)&&void 0!==e&&e}},mutations:{insert(t,e){t.options=e},toggleShowOverflow(t){t.options.show_overflow=!t.options.show_overflow}}},gn={namespaced:!0,modules:{view:{actions:qe,modules:{action:nn,chooseColumn:Ze,loading:Fe,query:He,table:ze,tableOptions:mn,options:fn}}}},hn={state:()=>({editedList:{},isEnableEdit:!1,isEditableTable:!1,hasChanges:!1}),getters:{isEnableEdit:t=>t.isEnableEdit,isEditableTable:t=>t.isEditableTable,hasChanges:t=>t.hasChanges,editedList:t=>t.editedList},mutations:{toggleEditTable(t,e){t.isEnableEdit=null!=e?e:!t.isEnableEdit},setEditableTable(t,e){t.isEditableTable=!!e},revertChanges(t){t.editedList={},t.hasChanges=!1}}},bn=(t,e,n)=>{const s=gt(n),{base:i}=t;if(!s)throw new Error("Empty primary column");return i.editedList[s]=i.editedList[s]||{},[i.editedList[s][e]||{},s]},vn={editedColumn:t=>(e,n)=>{const s=gt(n),{base:i}=t;if(!s||!i.editedList[s]||!i.editedList[s][e])throw new Error("Column is not edited");return i.editedList[s][e]},editedColumnProp:t=>(e,n,s)=>{var i;const o=null!==(i=vn.editedColumn(t)(e,n)[s])&&void 0!==i&&i;if(!1===o)throw new Error("Prop is not defined");return o}},_n={modules:{base:hn},getters:{...vn,editedCellValue:t=>(e,n)=>{try{return vn.editedColumnProp(t)(e,n,"value")}catch(t){var s;return null!==(s=n[e]?.value)&&void 0!==s?s:"NULL"}},editedListValues:t=>{const e={},{base:n}=t;for(const[t,s]of Object.entries(n.editedList)){const n={};for(const[t,{value:e}]of Object.entries(s))n[t]=e;e[t]=n}return e}},mutations:{updateEditableCell(t,{column:e,props:n,record:s}){let i,o;const{base:l}=t;try{[o,i]=bn(t,e,s)}catch(t){return}l.editedList[i]={...l.editedList[i],[e]:{...o,...n}},l.hasChanges=!0},revertChangesColumn(t,{column:e,record:n}){let s;const{base:i}=t;try{[,s]=bn(t,e,n)}catch(t){return}Vue.delete(i.editedList[s],e),Object.keys(i.editedList[s]).length||(Vue.delete(i.editedList,s),Object.keys(i.editedList).length||(i.hasChanges=!1))}}},Cn={editedColumn:t=>e=>{const{base:n}=t;if(!n.editedList[e])throw new Error("Column is not edited");return n.editedList[e]},editedColumnProp:t=>(e,n)=>{var s;const i=null!==(s=Cn.editedColumn(t)(e)[n])&&void 0!==s&&s;if(!1===i)throw new Error("Prop is not defined");return i}},yn={revertChangesColumn(t,{column:e}){const{base:n}=t;Vue.delete(n.editedList,e),Object.keys(n.editedList).length||(n.hasChanges=!1)}},xn={modules:{base:hn},getters:{...Cn,editedCellValue:t=>(e,n)=>{try{return Cn.editedColumnProp(t)(e,"value")}catch(t){return null!=n?n:"NULL"}},editedListValues:t=>{const e={},{base:n}=t;for(const[t,{value:s}]of Object.entries(n.editedList))e[t]=s;return e}},mutations:{...yn,updateEditableCell(t,{column:e,initial:n,props:s}){const{base:i}=t;if(n===s.value)return void yn.revertChangesColumn(t,{column:e});const o=i.editedList[e]||{};i.editedList[e]={...o,...s},i.hasChanges=!0}}},wn=(t,e)=>{const n=t.actions.findIndex(t=>e===t.slug);if(-1===n)throw new Error("Undefined "+e);return n},Sn=(t,{slug:e,force:n}={})=>{var s;e=null!=e?e:t.current,t.disabled={...t.disabled,[e]:null!=n?n:!(null!==(s=t.disabled[e])&&void 0!==s&&s)}},jn=t=>{try{const e=wn(t,t.current);return t.actions[e]}catch(t){return{}}},{apiFetch:En}=wp,kn={namespaced:!0,state:()=>({actions:[],current:"",loading:{},disabled:{}}),getters:{actions:t=>t.actions,isLoading:t=>e=>{var n;return null!==(n=t.loading[e])&&void 0!==n&&n},isDisabled:t=>e=>{var n;return null!==(n=t.disabled[e])&&void 0!==n&&n},current:jn,label:t=>{const e=jn(t);return t=>e?.messages?e.messages[t]:"null"},byEvent:t=>e=>t.actions.filter(t=>t.subscriptions.includes(e))},mutations:{replaceCurrent(t,e){try{const n=wn(t,t.current);t.actions[n]={...e}}catch(t){}},setActions(t,e){t.actions=e,e.forEach(e=>{e?.button?.disabled&&(t.disabled[e.slug]=!0)})},setCurrentAction(t,e){t.current=e},toggleDisabled:Sn,toggleLoading:(t,{slug:e,force:n}={})=>{var s;e=null!=e?e:t.current,t.loading={...t.loading,[e]:null!=n?n:!(null!==(s=t.loading[e])&&void 0!==s&&s)}},disabledAll(t){t.actions.forEach(({slug:e})=>{Sn(t,{slug:e,force:!0})})}},actions:{defaultDelete({getters:t,commit:e}){e("toggleLoading"),e("toggleDoingAction",null,{root:!0}),En(t.current.endpoint).then(n=>{jfbEventBus.$CXNotice.add({message:n.message,type:"success",duration:4e3}),e("toggleDisabled"),document.location.href=t.current.payload.redirect}).catch(t=>{jfbEventBus.$CXNotice.add({message:t.message,type:"error",duration:4e3})}).finally(()=>{e("toggleLoading"),e("toggleDoingAction",null,{root:!0})})}}},Pn=()=>window.JetFBPageConfig;function Ln(t){return"scope-"+function(t){return"string"==typeof t?t:t?.slug||"default"}(t)}function An(t,e){const{render_type:n}=e,s=(t={})=>({...gn,modules:{...gn.modules,...t}});"table"===n?t.registerModule(Ln(e),s({edit:_n})):t.registerModule(Ln(e),s({edit:xn,actions:kn}))}function Bn(t){const e=Ln(t);return t=>`${e}/${t}`}function Fn(t,e){const{list:n=[],columns:s={},total:i=0,receive_url:o={},actions:l,render_type:r="",empty_message:a="",is_editable_table:c=!1,is_editable_table_control:u=!1,stable_limit:d=null,...p}=e,m=Bn(e);t.commit(m("setEmptyMessage"),a),t.commit(m("setRenderType"),r),t.commit(m("setActionsList"),l),t.commit(m("setColumns"),s),t.commit(m("setList"),n),t.commit(m("setTotal"),i),t.commit(m("setReceiveEndpoint"),o),t.commit(m("setLimit"),null!=d?d:n?.length),t.commit(m("toggleEditTable"),c),t.commit(m("setEditableTable"),u),t.commit(m("options/insert"),p),t.dispatch(m("setQueriedPage"),1),t.subscribe(e=>{if("setFilter"===e.type.split("/").at(-1)){if(!e?.payload?.props?.hasOwnProperty?.("selected"))return;t.dispatch(m("fetchPageWithFilters"))}})}function Tn(t="default"){return e=>{An(e,t)}}const Mn=function(t=!1){return e=>{t||(t=Pn()),Fn(e,t)}},Vn={namespaced:!0,state:()=>({messages:{}}),getters:{label:t=>e=>{var n;return null!==(n=t.messages[e])&&void 0!==n?n:""}},mutations:{insert(t,e){t.messages=JSON.parse(JSON.stringify(e))}}};function On(t){t.registerModule("messages",Vn);const{messages:e}=Pn();t.commit("messages/insert",e)}const $n=window.wp.i18n,Dn=window.wp.apiFetch;var In=n.n(Dn);const Nn=[{value:"id",label:(0,$n.__)("ID (primary)","jet-form-builder")},{value:"amount_value",label:(0,$n.__)("Amount Value","jet-form-builder")},{value:"amount_code",label:(0,$n.__)("Amount Code","jet-form-builder")},{value:"gateway_id",label:(0,$n.__)("Gateway Slug","jet-form-builder")},{value:"scenario",label:(0,$n.__)("Scenario","jet-form-builder")},{value:"type",label:(0,$n.__)("Type","jet-form-builder")},{value:"status",label:(0,$n.__)("Status","jet-form-builder")},{value:"transaction_id",label:(0,$n.__)("Transaction ID","jet-form-builder")},{value:"form_id",label:(0,$n.__)("Form ID","jet-form-builder")},{value:"user_id",label:(0,$n.__)("User ID","jet-form-builder")},{value:"record_id",label:(0,$n.__)("Record ID","jet-form-builder")},{value:"created_at",label:(0,$n.__)("Created","jet-form-builder")},{value:"updated_at",label:(0,$n.__)("Updated","jet-form-builder")}],Hn=[{value:"payer_id",label:(0,$n.__)("Payer ID","jet-form-builder")},{value:"first_name",label:(0,$n.__)("First Name","jet-form-builder")},{value:"last_name",label:(0,$n.__)("Last Name","jet-form-builder")},{value:"email",label:(0,$n.__)("Email","jet-form-builder")}],Jn=[{value:"full_name",label:(0,$n.__)("Full Name","jet-form-builder")},{value:"address_line_1",label:(0,$n.__)("Address Line 1","jet-form-builder")},{value:"address_line_2",label:(0,$n.__)("Address Line 2","jet-form-builder")},{value:"admin_area_1",label:(0,$n.__)("Admin Area 1","jet-form-builder")},{value:"admin_area_2",label:(0,$n.__)("Admin Area 2","jet-form-builder")},{value:"postal_code",label:(0,$n.__)("Postal Code","jet-form-builder")},{value:"country_code",label:(0,$n.__)("Country Code","jet-form-builder")}],{counter_endpoint:Gn}=window.JetFBPageConfig,{addQueryArgs:zn}=JetFBActions,Un={status:t=>t.status,statusesList:t=>t.statusesList,columns:t=>t.columns,selectedColumns:t=>t.selectedColumns,columnsValues:t=>Un.columns(t).map(({value:t})=>t),payerColumns:t=>t.payerColumns,selectedPayerColumns:t=>t.selectedPayerColumns,payerColumnsValues:t=>Un.payerColumns(t).map(({value:t})=>t),shippingColumns:t=>t.shippingColumns,selectedShippingColumns:t=>t.selectedShippingColumns,shippingColumnsValues:t=>Un.shippingColumns(t).map(({value:t})=>t),isLoading:t=>e=>{var n;return e?null!==(n=t.loading?.[e])&&void 0!==n&&n:Object.values(t.loading).some(Boolean)},count:t=>t.count,filtersObj:t=>({status:t.status})},Rn={namespaced:!0,state:()=>({status:"",columns:Nn,selectedColumns:Nn.map(({value:t})=>t),payerColumns:Hn,selectedPayerColumns:Hn.map(({value:t})=>t),shippingColumns:Jn,selectedShippingColumns:Jn.map(({value:t})=>t),count:0,loading:{}}),mutations:{setStatus(t,e){t.status=e},setColumns(t,e){t.selectedColumns=e},setPayerColumns(t,e){t.selectedPayerColumns=e},setShippingColumns(t,e){t.selectedShippingColumns=e},setCount(t,e){t.count=e},toggleLoading(t,e){var n;t.loading={...t.loading,[e]:!(null!==(n=t.loading?.[e])&&void 0!==n&&n)}}},getters:Un,actions:{handleFilters({commit:t,state:e,rootGetters:n}){const s=(0,n["scope-default/getFilter"])("status");s.selected!==e.status&&t("setStatus",s.selected)},selectAllColumns({commit:t,getters:e}){t("setColumns",e.columnsValues)},clearAllColumns({commit:t}){t("setColumns",[])},selectAllPayerColumns({commit:t,getters:e}){t("setPayerColumns",e.payerColumnsValues)},clearAllPayerColumns({commit:t}){t("setPayerColumns",[])},selectAllShippingColumns({commit:t,getters:e}){t("setShippingColumns",e.shippingColumnsValues)},clearAllShippingColumns({commit:t}){t("setShippingColumns",[])},async resolveCount({commit:t,dispatch:e}){let n;t("toggleLoading","count");try{n=await e("fetchPaymentsCount")}finally{t("toggleLoading","count")}t("setCount",n.total)},fetchPaymentsCount({getters:t}){const e=zn({filters:t.filtersObj},Gn.url);return In()({...Gn,url:e})}}},Zn=Rn,Wn={PaymentsComponent:ke,options:{store:{...Le,plugins:[Tn(),Mn(),On,function(t){t.registerModule("exportPayments",Zn),t.subscribe(e=>{const n=e.type.split("/");switch(n.at(-1)){case"setFilter":case"clearSelectedFilters":return void t.dispatch("exportPayments/handleFilters")}"exportPayments"===n[0]&&"setStatus"===n.at(-1)&&t.dispatch("exportPayments/resolveCount").then(()=>{})})}]}}};var qn=function(){var t=this,e=t.$createElement;return(t._self._c||e)("DetailsTable",{attrs:{columns:t.columnsFromStore,source:t.currentFromStore}})};qn._withStripped=!0;const{DetailsTable:Qn}=JetFBComponents,Xn=y({name:"DetailsTableWithStore",props:{columns:{type:String,default:"columns"},current:{type:String,default:"currentPopupData"}},components:{DetailsTable:Qn},computed:{columnsFromStore(){return this.$store.state[this.columns]},currentFromStore(){return this.$store.state[this.current]}}},qn,[],!1,null,null,null).exports;var Kn=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("cx-vui-button",{attrs:{"button-style":"link-error",size:"mini",disabled:!t.hasSelectedFilters},on:{click:function(e){return t.dispatch("clearFiltersWithFetch")}},scopedSlots:t._u([{key:"label",fn:function(){return[n("span",{staticClass:"dashicons dashicons-no-alt"}),t._v("\n\t\t\t"+t._s(t.label)+"\n\t\t")]},proxy:!0}])})};Kn._withStripped=!0;const{__:Yn}=wp.i18n,{mapState:ts,mapGetters:es,mapMutations:ns,mapActions:ss}=Vuex,is=y({name:"ClearFiltersButton",props:{label:{type:String,default:Yn("Clear filters","jet-form-builder")}},mixins:[d],computed:{hasSelectedFilters(){return this.getter("hasSelectedFilters")}}},Kn,[],!1,null,null,null).exports;function os(t,e){switch(e.render_type){case"table":Fn(t,e);break;case"list":!function(t,e){const{list:n={},columns:s={},render_type:i="",single_endpoint:o={},receive_url:l={},is_editable_table:r=!1,is_editable_table_control:a=!1,box_actions:c=[],...u}=e,d=Bn(e);t.commit(d("setColumns"),s),t.commit(d("setList"),n),t.commit(d("setReceiveEndpoint"),l),t.commit(d("setRenderType"),i),t.commit(d("setSingleEndpoint"),o),t.commit(d("toggleEditTable"),r),t.commit(d("setEditableTable"),a),t.commit(d("actions/setActions"),c),t.commit(d("options/insert"),u)}(t,e)}}const{LocalStorage:ls}=JetFBActions,rs=ls.storage("notices"),as={insertNotices(t,e){t.notices=e.filter(t=>!rs.getItem(t.id))},clearNoticeById(t,e){const n=t.notices.findIndex(t=>e===t.id);if(-1===n)return;const s=t.notices[n];Vue.delete(t.notices,n);const{is_hide_after_close:i}=s.options;if(!i)return;const o=rs.getItem(s.id,{});rs.setItem(s.id,{...o,closed:!0})}},cs={state:()=>({notices:[]}),getters:{getNotices:t=>t.notices,getNotice:t=>e=>t.notices.find(t=>e===t.id)||{}},mutations:as};var us=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"postbox",attrs:{id:t.slug}},[n("div",{staticClass:"postbox-header"},[n("h2",{staticClass:"ui-sortable-handle"},[t._v(t._s(t.title))]),t._v(" "),t.$slots["header-actions"]?n("div",{staticClass:"handle-actions"},[t._t("header-actions")],2):n("div",{staticClass:"handle-actions"},[n("UndoChangesTable",{attrs:{scope:t.slug}}),t._v(" "),n("EditTableSwitcher",{attrs:{scope:t.slug}}),t._v(" "),n("ShowOverflowTable",{attrs:{scope:t.slug}}),t._v(" "),n("RedirectToSingle",{attrs:{scope:t.slug}})],1)]),t._v(" "),n("div",{staticClass:"postbox-inner submitbox"},[t._t("default"),t._v(" "),t.$slots.actions?n("div",{staticClass:"major-publishing-actions"},[t._t("actions"),t._v(" "),n("div",{staticClass:"clear"})],2):n("PrimaryActions",{attrs:{scope:t.slug}})],2)])};us._withStripped=!0;var ds=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isEditableTable?n("cx-vui-switcher",{staticClass:"jfb-cx-vui-component",attrs:{label:t.__("Edit table","jet-form-builder"),value:t.isEnableEdit},on:{input:t.toggleEditTable}}):t._e()};ds._withStripped=!0;const{i18n:ps}=JetFBMixins,ms={name:"EditTableSwitcher",mixins:[d,ps],computed:{isEnableEdit(){return this.getter("isEnableEdit")},isEditableTable(){return this.getter("isEditableTable")}},methods:{toggleEditTable(){this.commit("toggleEditTable")}}};n(4744);const fs=y(ms,ds,[],!1,null,null,null).exports;var gs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isEditableTable?n("cx-vui-button",{attrs:{disabled:!t.hasChanges,"button-style":"link-accent",size:"mini"},on:{click:function(e){t.hasChanges=!0}},scopedSlots:t._u([{key:"label",fn:function(){return[n("span",{staticClass:"dashicons dashicons-undo"}),t._v("\n\t\t"+t._s(t.__("Undo","jet-form-builder"))+"\n\t")]},proxy:!0}],null,!1,1196425)}):t._e()};gs._withStripped=!0;const{i18n:hs}=JetFBMixins,bs=y({name:"UndoChangesTable",mixins:[d,hs],computed:{hasChanges:{get(){return this.getter("hasChanges")},set(t){this.commit("revertChanges")}},isEditableTable(){return this.getter("isEditableTable")}}},gs,[],!1,null,null,null).exports;var vs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.showOverflowControl?n("cx-vui-switcher",{staticClass:"jfb-cx-vui-component",attrs:{label:t.__("Show overflow","jet-form-builder")},model:{value:t.showOverflow,callback:function(e){t.showOverflow=e},expression:"showOverflow"}}):t._e()};vs._withStripped=!0;const{i18n:_s}=JetFBMixins,Cs=y({name:"ShowOverflowTable",mixins:[d,_s],computed:{showOverflowControl(){return this.getter("options/showOverflowControl")},showOverflow:{get(){return this.getter("options/isShowOverflow")},set(){this.commit("options/toggleShowOverflow")}}}},vs,[],!1,null,null,null).exports;var ys=function(){var t,e=this,n=e.$createElement,s=e._self._c||n;return e.hasSingleEndpoint?s("a",{attrs:{href:e.getSingleHref,title:e.getSingleTitle}},[s("span",{class:(t={dashicons:!0},t["dashicons-"+e.getSingleType]=!0,t),attrs:{"aria-hidden":"true"}})]):e._e()};ys._withStripped=!0;const{i18n:xs}=JetFBMixins,ws={name:"RedirectToSingle",mixins:[d,xs],computed:{hasSingleEndpoint(){return this.getter("hasSingleEndpoint")},getSingleHref(){return this.getter("getSingleHref")},getSingleType(){return this.getter("getSingleType")},getSingleTitle(){return this.getter("getSingleTitle")}}};n(9244);const Ss=y(ws,ys,[],!1,null,"6c61ef64",null).exports;var js=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.primary.length?n("div",{staticClass:"major-publishing-actions"},[n("div",{staticClass:"jfb-primary-actions"},t._l(t.primary,function(e){return n("ActionButton",{key:e.slug,class:["box-actions-item","action-"+e.slug],attrs:{scope:t.scope,action:e}})}),1),t._v(" "),n("div",{staticClass:"clear"})]):t._e()};js._withStripped=!0;var Es=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.action.button?n("cx-vui-button",{key:"button-action-"+t.action.slug,class:["cx-vui-button--style-"+t.action.button.type].concat(t.action.button.classes),attrs:{"button-style":t.action.button.style,size:t.action.button.size,url:t.action.button.url,"tag-name":t.action.button.url?"a":"button",disabled:t.isDisabled,loading:t.isLoading,target:"_blank"},on:{click:t.globalEmit},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(t.action.button.label))]},proxy:!0}],null,!1,389569784)}):t._e()};Es._withStripped=!0;const{mapState:ks,mapGetters:Ps,mapMutations:Ls,mapActions:As}=Vuex,Bs=y({name:"ActionButton",mixins:[d],props:{action:Object},computed:{...Ps(["isDoing"]),slug(){return this.action.slug},isDisabled(){return this.getter("actions/isDisabled",this.slug)||this.isGlobalDoing},isLoading(){return this.getter("actions/isLoading",this.slug)},isGlobalDoing(){return jfbEventBus.reactiveCounter,this.isDoing}},methods:{globalEmit(){this.commit("actions/setCurrentAction",this.slug),jfbEventBus.$emit(this.scope+"-"+this.slug)}}},Es,[],!1,null,"2b75aad2",null).exports,{mapState:Fs,mapGetters:Ts,mapMutations:Ms,mapActions:Vs}=Vuex,Os={name:"BoxActions",components:{ActionButton:Bs},mixins:[d],computed:{primary(){const t=this.getter("actions/actions");return t?t.filter(t=>"primary"===t.position):[]}}},$s=Os;n(7289);const Ds=y($s,js,[],!1,null,null,null).exports,Is={name:"PostBoxSkeleton",props:{title:String,slug:String},components:{PrimaryActions:Ds,RedirectToSingle:Ss,ShowOverflowTable:Cs,UndoChangesTable:bs,EditTableSwitcher:fs},computed:{}};n(7985);const Ns=y(Is,us,[],!1,null,"5ebbe4a6",null).exports;var Hs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{attrs:{id:"poststuff"}},[n("div",{class:t.bodyClasses,attrs:{id:"post-body"}},[t.$slots.topBody?n("div",{attrs:{id:"post-body-content"}},[t._t("topBody")],2):t._e(),t._v(" "),t._l(t.containers,function(e){var s=e.wrap_id,i=e.id,o=e.classes,l=e.boxes;return n("PostBoxContainer",{key:s,attrs:{"wrap-id":s,id:i,classes:o}},t._l(l,function(e){var s=e.slug,i=e.title,o=e.list,l=e.render_type;return void 0===l&&(l=!1),n("PostBoxSimple",{key:s,attrs:{slug:s,title:i,list:o,"render-type":l},scopedSlots:t._u([{key:"header-actions",fn:function(){return[t._t("header-actions-"+s,null,null,{list:o})]},proxy:!0},{key:"default",fn:function(){return[t._t("body-"+s,null,null,{list:o})]},proxy:!0},{key:"before",fn:function(){return[t._t("before-"+s,null,null,{list:o})]},proxy:!0},{key:"after",fn:function(){return[t._t("after-"+s,null,null,{list:o})]},proxy:!0},t.$slots["in-header-"+s]?{key:"in-header",fn:function(){return[t._t("in-header-"+s)]},proxy:!0}:null,t.$slots["in-footer-"+s]?{key:"in-footer",fn:function(){return[t._t("in-footer-"+s)]},proxy:!0}:null],null,!0)})}),1)})],2)])};Hs._withStripped=!0;var Js=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"postbox-container",attrs:{id:t.wrapId}},[n("div",{class:t.classes,attrs:{id:t.id}},[t._t("default")],2)])};Js._withStripped=!0;const Gs=y({name:"PostBoxContainer",props:{wrapId:String,id:String,classes:String},computed:{}},Js,[],!1,null,null,null).exports;var zs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jfb-post-box",attrs:{id:t.slug+"-wrapper"}},[t.$slots.default?n("div",{staticClass:"jfb-post-box--content"},[t._t("default")],2):n("div",{staticClass:"jfb-post-box--content"},[t._t("before"),t._v(" "),n("PostBoxSkeleton",{attrs:{title:t.title,slug:t.slug},scopedSlots:t._u([{key:"header-actions",fn:function(){return[t._t("header-actions")]},proxy:!0},{key:"default",fn:function(){return[t._t("in-header"),t._v(" "),"table"===t.renderType?n("EntriesTable",{attrs:{scope:t.slug}}):"list"===t.renderType?n("EntriesList",{attrs:{scope:t.slug}}):n("div",{attrs:{id:"misc-publishing-actions"}},t._l(t.list,function(e,s){return n("div",{key:s,staticClass:"misc-pub-section"},[t._v("\n\t\t\t\t\t\t"+t._s(s)+": "),n("strong",[t._v(t._s(e))])])}),0),t._v(" "),t._t("in-footer")]},proxy:!0}],null,!0)}),t._v(" "),t._t("after")],2)])};zs._withStripped=!0;var Us=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("table",{staticClass:"jfb-list-table"},t._l(t.columns,function(e,s){var i=e.label;return n("tr",{key:s,class:["jfb-list-table-row","row--"+s]},[i?n("th",{staticClass:"jfb-list-table-row--inner jfb-list-table-row--heading"},[t._v("\n\t\t\t"+t._s(i)+"\n\t\t")]):t._e(),t._v(" "),n("td",{staticClass:"jfb-list-table-row--inner jfb-list-table-row--item"},[n("EntryColumnList",{attrs:{scope:t.scope,list:t.list,column:s}})],1)])}),0)};Us._withStripped=!0;var Rs=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.record.editable&&t.isEnableEdit?n("div",{staticClass:"list-table-item__cell--body-value jfb-control"},[n("keep-alive",[n(t.getComponentEditControl,{tag:"component",attrs:{options:t.record.control_options},model:{value:t.editedCellValue,callback:function(e){t.editedCellValue=e},expression:"editedCellValue"}})],1)],1):t.getItemComponentColumn?[n(t.getItemComponentColumn,{tag:"component",attrs:{value:t.value,"full-entry":t.list,scope:t.scope}})]:t.getItemComponentType?[n(t.getItemComponentType,{tag:"component",attrs:{value:t.value,"full-entry":t.list,scope:t.scope}})]:n("div",{domProps:{innerHTML:t._s(t.value)}})],2)};Rs._withStripped=!0;const Zs={name:"EntriesList",mixins:[d],components:{EntryColumnList:y({name:"EntryColumnList",props:{column:String,list:Object},mixins:[dt,d],computed:{record(){return this.list[this.column]},value(){return this.record.editable?this.editedCellValue:this.initialValue},initialValue(){var t,e;return null!==(t=null!==(e=this.record?.value)&&void 0!==e?e:this.record?.value?.value)&&void 0!==t&&t},isEnableEdit(){return jfbEventBus.reactiveCounter,this.getter("isEnableEdit")},getItemComponentColumn(){return this.getColumnComponentByPrefix(this.column,"item")},getItemComponentType(){return this.getColumnComponentByPrefix(this.getColumnType,"item")},getComponentEditControl(){return this.getColumnComponentByPrefix(this.record?.control,"control")},getColumnType(){var t;return null!==(t=this.record.type)&&void 0!==t&&t},editedCellValue:{get(){return jfbEventBus.reactiveCounter,this.getter("editedCellValue",[this.column,this.initialValue])},set(t){this.commit("updateEditableCell",{column:this.column,initial:this.initialValue,props:{value:t}}),jfbEventBus.reactiveCounter++}}},methods:{revertChangesColumn(){this.commit("revertChangesColumn",{column:this.column}),jfbEventBus.reactiveCounter++}}},Rs,[],!1,null,null,null).exports},computed:{columns(){return this.getter("columns")},list(){return this.getter("list")}},methods:{}};n(5850);const Ws=y(Zs,Us,[],!1,null,null,null).exports,qs={name:"PostBoxSimple",props:["title","slug","list","renderType"],components:{EntriesTable:At,EntriesList:Ws,PostBoxSkeleton:Ns,EditTableSwitcher:fs}};n(8848);const Qs=y(qs,zs,[],!1,null,null,null).exports,Xs={name:"PostBoxGrid",props:{containers:{type:Array,default(){var t;return null!==(t=window?.JetFBPageConfig?.containers)&&void 0!==t?t:[]}}},components:{EditTableSwitcher:fs,PostBoxContainer:Gs,PostBoxSimple:Qs},computed:{bodyClasses(){return{"metabox-holder":!0,["columns-"+this.containers?.length]:!0}}}},Ks=y(Xs,Hs,[],!1,null,null,null).exports;var Ys=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"jfb-actions"},t._l(t.parsedJson,function(e,s){return n("a",{key:s,staticClass:"jfb-dropdown-item",attrs:{href:"javascript:void(0)"},on:{click:function(e){return t.run(s)}}},[t._v("\n\t\t"+t._s(e.label)+"\n\t")])}),0)};Ys._withStripped=!0;const{ParseIncomingValueMixin:ti}=JetFBMixins;window.jfbEventBus=window.jfbEventBus||new Vue({});const ei={name:"actions--item",props:["value","full-entry","entry-id"],components:{},mixins:[ti],methods:{getPayload(t){return this.parsedJson[t]?.payload||{}},run(t){jfbEventBus.$emit(`click-${t}`,this.getPayload(t),this.fullEntry||{},this.entryId)}}};n(8241);const ni=y(ei,Ys,[],!1,null,null,null).exports;var si=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.visible?n("div",{staticClass:"jet-form-builder-page__alerts"},t._l(t.getNotices,function(e){return n("AlertItem",{key:e.id,attrs:{id:e.id},scopedSlots:t._u([t.$slots["alert-buttons-"+e.id]?{key:"alert-buttons",fn:function(){return[t._t(["alert-buttons-"+e.id])]},proxy:!0}:null],null,!0)})}),1):t._e()};si._withStripped=!0;var ii=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.classes},[n("div",{staticClass:"alert-type-line"}),t._v(" "),n("div",{staticClass:"alert-icon",domProps:{innerHTML:t._s(t.iconHtml)}}),t._v(" "),n("div",{staticClass:"alert-content"},[t.config.title?n("div",{staticClass:"alert-title",domProps:{innerHTML:t._s(t.config.title)}}):t._e(),t._v(" "),t.config.message?n("div",{staticClass:"alert-message",domProps:{innerHTML:t._s(t.config.message)}}):t._e(),t._v(" "),t.$slots["alert-buttons"]?n("div",{staticClass:"alert-buttons"},[t._t("alert-buttons")],2):t.config.buttons?n("div",{staticClass:"alert-buttons"},t._l(t.config.buttons,function(e,s){return n("cx-vui-button",{key:"button-alert-"+s,class:"cx-vui-button--style-"+e.type,attrs:{"button-style":e.style,size:"mini",url:e.url,"tag-name":e.rest.url?"button":"a",target:e.rest.url?"":"_blank"},on:{click:function(n){return t.emitClick(n,e)}},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(e.label))]},proxy:!0}],null,!0)})}),1):t._e()]),t._v(" "),n("div",{staticClass:"alert-close",on:{click:t.closeAlert}},[n("svg",{attrs:{width:"20",height:"20",viewBox:"0 0 14 14",fill:"#dcdcdd",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M12 3.00671L8.00671 7L12 10.9933L10.9933 12L7 8.00671L3.00671 12L2 10.9933L5.99329 7L2 3.00671L3.00671 2L7 5.99329L10.9933 2L12 3.00671Z"}})])])])};ii._withStripped=!0;const{LocalStorage:oi}=JetFBActions,{mapGetters:li,mapMutations:ri}=Vuex,ai=y({name:"AlertItem",props:{id:String},created:function(){},computed:{...li(["getNotice"]),config(){return this.getNotice(this.id)},type:function(){var t;return null!==(t=this.config?.type)&&void 0!==t&&t},classes:function(){return["jet-form-builder-page__alert",`${this.type}-type`]},iconHtml:function(){let t=!1;switch(this.type){case"info":t='\n\n\n';break;case"success":t='';break;case"danger":t='';break;case"error":t=''}return this.config?.icon||t}},methods:{...ri(["clearNoticeById"]),closeAlert:function(){this.clearNoticeById(this.id)},emitClick(t,e){jfbEventBus.$emit("alert-click-"+e.slug,{self:this,target:t,button:e})}}},ii,[],!1,null,null,null).exports,{mapGetters:ci}=Vuex,ui={name:"AlertsList",components:{AlertItem:ai},computed:{...ci(["getNotices"]),visible:function(){return 0!==this.getNotices.length}}};n(8661);const di=y(ui,si,[],!1,null,null,null).exports;var pi=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.wrapperClasses},[n("div",{staticClass:"jet-form-builder-page__panel-header"},[n("div",{staticClass:"panel-header-icon"},[t._t("icon")],2),t._v(" "),n("div",{staticClass:"panel-header-content"},[n("span",{staticClass:"panel-header-desc"},[t._v(t._s(t.config.description))]),t._v(" "),n("div",{staticClass:"panel-header-title"},[t._v(t._s(t.config.title))])])]),t._v(" "),t.$slots.default?n("div",{staticClass:"jet-form-builder-page__panel-content"},[t._t("default")],2):t._e()])};pi._withStripped=!0;const mi=y({name:"DashboardPanel",props:{config:Object},computed:{wrapperClasses(){return["jet-form-builder-page__panel",this.config.slug,...this.config.classes]}}},pi,[],!1,null,null,null).exports;var fi=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.boxes.length?n("div",{staticClass:"jfb-content-sidebar"},[t._l(t.boxes,function(e,s){return["panel"===e.type?n("DashboardPanel",{key:s,attrs:{config:e},scopedSlots:t._u([t.$slots["icon-"+e.slug]?{key:"icon",fn:function(){return[t._t("icon-"+e.slug)]},proxy:!0}:null,t.$scopedSlots["content-"+e.slug]?{key:"default",fn:function(){return[t._t("content-"+e.slug,null,null,e)]},proxy:!0}:null],null,!0)}):"banner"===e.type?n("DashboardBanner",{key:"banner-"+s,attrs:{config:e}}):t._e()]})],2):t._e()};fi._withStripped=!0;var gi=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.wrapperClasses},[n("div",{staticClass:"banner-frame"},[n("div",{staticClass:"banner-inner"},[n("div",{staticClass:"banner-label"},[t._v(t._s(t.config.label))]),t._v(" "),n("div",{staticClass:"banner-title"},[n("span",[t._v(t._s(t.config.title))])]),t._v(" "),n("div",{staticClass:"banner-content"},[t._v(t._s(t.config.content))]),t._v(" "),t.hasButtons?n("div",{staticClass:"banner-buttons"},t._l(t.config.buttons,function(e,s){return n("cx-vui-button",{key:"button-banner-"+s,class:"cx-vui-button--style-"+e.type,attrs:{"button-style":e.style,size:"mini",url:e.url,"tag-name":"a",target:"_blank"},scopedSlots:t._u([{key:"label",fn:function(){return[t._v(t._s(e.label))]},proxy:!0}],null,!0)})}),1):t._e()])])])};gi._withStripped=!0;const hi=y({name:"DashboardBanner",props:{config:Object},computed:{wrapperClasses(){return["jet-form-builder-page__banner",this.config.slug,...this.config.classes]},hasButtons(){return 0!==this.config?.buttons?.length}}},gi,[],!1,null,null,null).exports;n(5201);const{i18n:bi,GetIncoming:vi}=JetFBMixins,_i={name:"SideBarBoxes",components:{DashboardPanel:mi,DashboardBanner:hi},mixins:[bi,vi],data:()=>({boxes:[]}),created(){this.boxes=this.getIncoming("boxes")}};n(7823);const Ci=y(_i,fi,[],!1,null,null,null).exports,yi={namespaced:!0,state:()=>({edited:{}}),mutations:{collectScope(t,{rootGetters:e,scope:n}){n.includes("scope-")&&(e[`${n}/hasChanges`]?t.edited[n]=e[`${n}/editedListValues`]:Vue.delete(t.edited,n))}},getters:{all:t=>t.edited},actions:{collect({rootState:t,rootGetters:e,commit:n}){for(const s in t)n("collectScope",{rootGetters:e,scope:s})}}};Vue.use(Vuex),window.JetFBComponents={...window.JetFBComponents,EntriesTable:At,PaymentsPage:Wn,DetailsTableWithStore:Xn,TablePagination:$,ChooseAction:x,ClearFiltersButton:is,PostBoxSkeleton:Ns,PostBoxGrid:Ks,PostBoxContainer:Gs,PostBoxSimple:Qs,EntriesList:Ws,ChooseColumn:t,ActionsColumn:l,LinkTypeColumn:e,EditTableSwitcher:fs,AlertsList:di,DashboardPanel:mi,SideBarBoxes:Ci,FormBuilderPage:Jt,ActionsWithFilters:A},window.JetFBMixins={...window.JetFBMixins,FilterMixin:zt,GetColumnComponent:dt,ScopeStoreMixin:d},window.JetFBStore={BaseStore:Le,TableSeedPlugin:Mn,TableModulePlugin:Tn,SingleMetaBoxesPlugin:function(t){const e=[];for(const t of Pn().containers)e.push(...t.boxes.filter(t=>["table","list"].includes(t.render_type)));for(const n of e)An(t,n),os(t,n)},NoticesPlugin:function(t){t.registerModule("notices",cs);const{notices:e}=Pn();t.commit("insertNotices",e)},PageActionsPlugin:function(t){const{actions:e=[]}=Pn();t.registerModule("actions",kn),t.commit("actions/setActions",[...e])},MessagesPlugin:On,OnUpdateEditableCellPlugin:function(t){const e=(e,n)=>{for(const s in e){const e=t.getters[`${s}/actions/byEvent`];if("function"!=typeof e)continue;const i=e("update");for(const e of i)t.commit(`${s}/actions/toggleDisabled`,{slug:e.slug,force:n})}};t.subscribe((n,s)=>{n.type.split("/").includes("updateEditableCell")&&((e=>{for(const n in e)if(t.getters[`${n}/hasChanges`])return!0;return!1})(s)?e(s,!1):e(s,!0))})},EditCollectorPlugin:function(t){t.registerModule("editCollector",yi),t.subscribe(e=>{e.type.split("/").includes("updateEditableCell")&&t.dispatch("editCollector/collect")})}},window.JetFBConst=u})()})(); \ No newline at end of file diff --git a/assets/build/editor/form.builder.asset.php b/assets/build/editor/form.builder.asset.php index 7ba288d38..3cdfa5883 100644 --- a/assets/build/editor/form.builder.asset.php +++ b/assets/build/editor/form.builder.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-data', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins'), 'version' => '3932cc2cb10071a47d6f'); + array('react', 'wp-components', 'wp-data', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins'), 'version' => 'f2898b123edbefeeaef4'); diff --git a/assets/build/editor/form.builder.js b/assets/build/editor/form.builder.js index 269ddb947..cb4a256c9 100644 --- a/assets/build/editor/form.builder.js +++ b/assets/build/editor/form.builder.js @@ -1 +1 @@ -(()=>{var e={611:(e,C,t)=>{"use strict";function l(e,C){for(var t=[],l={},r=0;rp});var r="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!r)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var n={},a=r&&(document.head||document.getElementsByTagName("head")[0]),i=null,o=0,s=!1,c=function(){},d=null,m="data-vue-ssr-id",u="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function p(e,C,t,r){s=t,d=r||{};var a=l(e,C);return f(a),function(C){for(var t=[],r=0;rt.parts.length&&(l.parts.length=t.parts.length)}else{var a=[];for(r=0;r{"use strict";e.exports=function(e){var C=[];return C.toString=function(){return this.map((function(C){var t="",l=void 0!==C[5];return C[4]&&(t+="@supports (".concat(C[4],") {")),C[2]&&(t+="@media ".concat(C[2]," {")),l&&(t+="@layer".concat(C[5].length>0?" ".concat(C[5]):""," {")),t+=e(C),l&&(t+="}"),C[2]&&(t+="}"),C[4]&&(t+="}"),t})).join("")},C.i=function(e,t,l,r,n){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(l)for(var i=0;i0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=n),t&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=t):c[2]=t),r&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=r):c[4]="".concat(r)),C.push(c))}},C}},1669:(e,C,t)=>{var l=t(5545);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("2bfdb416",l,!1,{})},2065:(e,C,t)=>{var l=t(8525);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("cbeea060",l,!1,{})},5207:(e,C,t)=>{"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".s1ip8zmx.buddypress-active>div{height:auto;}\n",""]);const i=a},5545:(e,C,t)=>{"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".f13zt8l2{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;gap:12px;}.f13zt8l2 .sortable-chosen{box-shadow:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)) 0 1px 4px;}\n.am4szan{border:1px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));margin-bottom:1px;}.am4szan .components-panel__body-title{background-color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));}.am4szan .components-panel__body-title .components-button{color:var(--wp-components-color-accent-inverted, #fff);}.am4szan.is-opened{background-color:rgba(var(--wp-admin-theme-color--rgb), .07);}.am4szan.is-opened .components-panel__body-title{background-color:transparent;}.am4szan.is-opened .components-panel__body-title .components-button{color:#1e1e1e;}.am4szan .components-panel__body-title:hover{background-color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));opacity:0.7;}.am4szan .components-panel__body-title:hover .components-button{color:var(--wp-components-color-accent-inverted, #fff);}\n.s8wdwdc.buddypress-active{height:auto;}\n",""]);const i=a},6758:e=>{"use strict";e.exports=function(e){return e[1]}},6987:(e,C,t)=>{var l=t(5207);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("6979fc60",l,!1,{})},8525:(e,C,t)=>{"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".mqz01w{gap:1em;}\n.mqjtk22{background-color:#ffffff;}\n",""]);const i=a}},C={};function t(l){var r=C[l];if(void 0!==r)return r.exports;var n=C[l]={id:l,exports:{}};return e[l](n,n.exports,t),n.exports}t.n=e=>{var C=e&&e.__esModule?()=>e.default:()=>e;return t.d(C,{a:C}),C},t.d=(e,C)=>{for(var l in C)t.o(C,l)&&!t.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:C[l]})},t.o=(e,C)=>Object.prototype.hasOwnProperty.call(e,C),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e={};t.r(e),t.d(e,{metadata:()=>$C,name:()=>QC,settings:()=>Ct});var C={};t.r(C),t.d(C,{metadata:()=>ul,name:()=>Zl,settings:()=>El});var l={};t.r(l),t.d(l,{metadata:()=>Xl,name:()=>Cr,settings:()=>lr});var r={};t.r(r),t.d(r,{metadata:()=>_r,name:()=>xr,settings:()=>Br});var n={};t.r(n),t.d(n,{metadata:()=>Gr,name:()=>$r,settings:()=>Xr});var a={};t.r(a),t.d(a,{metadata:()=>rn,name:()=>on,settings:()=>cn});var i={};t.r(i),t.d(i,{metadata:()=>Hn,name:()=>Mn,settings:()=>gn});var o={};t.r(o),t.d(o,{metadata:()=>Ca,name:()=>ca,settings:()=>ma});var s={};t.r(s),t.d(s,{metadata:()=>Ja,name:()=>Da,settings:()=>Ua});var c={};t.r(c),t.d(c,{metadata:()=>Hi,name:()=>Mi,settings:()=>gi});var d={};t.r(d),t.d(d,{metadata:()=>Ui,name:()=>Ki,settings:()=>Yi});var m={};t.r(m),t.d(m,{metadata:()=>co,name:()=>Jo,settings:()=>qo});var u={};t.r(u),t.d(u,{metadata:()=>ps,name:()=>Hs,settings:()=>bs});var p={};t.r(p),t.d(p,{metadata:()=>Ds,name:()=>Gs,settings:()=>Ks});var f={};t.r(f),t.d(f,{metadata:()=>oc,name:()=>dc,settings:()=>uc});var V={};t.r(V),t.d(V,{metadata:()=>Zc,name:()=>Ec,settings:()=>vc});var H={};t.r(H),t.d(H,{metadata:()=>Pc,name:()=>Sc,settings:()=>Tc});const h=window.React,b=window.wp.data,M=window.wp.i18n,L=window.wp.components,g=window.jfb.components,Z=window.jfb.actions,y=window.wp.element,E=(0,y.forwardRef)((function({icon:e,size:C=24,...t},l){return(0,y.cloneElement)(e,{width:C,height:C,...t,ref:l})}));function w(e){var C=Object.create(null);return function(t){return void 0===C[t]&&(C[t]=e(t)),C[t]}}var v=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_=w((function(e){return v.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),k=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),C={},t=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,t]=e.split("_");C[t]=e}else t.push(e)}))}));const l=[];for(const e in C)Object.prototype.hasOwnProperty.call(C,e)&&l.push(C[e]);return l.push(...t),l.join(" ")},j=(e,C)=>{const t={};return Object.keys(e).filter((e=>C=>-1===e.indexOf(C))(C)).forEach((C=>{t[C]=e[C]})),t},x=function(e){let C="";return t=>{const l=(l,r)=>{const{as:n=e,class:a=C}=l;var i;const o=function(e,C){const t=j(C,["as","class"]);if(!e){const e="function"==typeof _?{default:_}:_;Object.keys(t).forEach((C=>{e.default(C)||delete t[C]}))}return t}(void 0===t.propsAsIs?!("string"==typeof n&&-1===n.indexOf("-")&&(i=n[0],i.toUpperCase()!==i)):t.propsAsIs,l);o.ref=r,o.className=t.atomic?k(t.class,o.className||a):k(o.className||a,t.class);const{vars:s}=t;if(s){const e={};for(const C in s){const r=s[C],n=r[0],a=r[1]||"",i="function"==typeof n?n(l):n;t.name,e[`--${C}`]=`${i}${a}`}const C=o.style||{},r=Object.keys(C);r.length>0&&r.forEach((t=>{e[t]=C[t]})),o.style=e}return e.__wyw_meta&&e!==n?(o.as=n,(0,h.createElement)(e,o)):(0,h.createElement)(n,o)},r=h.forwardRef?(0,h.forwardRef)(l):e=>{const C=j(e,["innerRef"]);return l(C,e.innerRef)};return r.displayName=t.name,r.__wyw_meta={className:t.class||C,extends:e},r}};const F=".components-modal__frame",{ActionModal:B,ActionModalHeaderSlotFill:A,ActionModalFooterSlotFill:P,ActionModalBackButton:S,ActionModalCloseButton:N}=JetFBComponents,{useCurrentAction:I,useActionCallback:T,useUpdateCurrentAction:O,useUpdateCurrentActionMeta:J}=JetFBHooks,R=x("div")({name:"ModalHeading",class:"mqz01w",propsAsIs:!1}),q=x("div")({name:"ModalHeader",class:"mqjtk22",propsAsIs:!1}),D=function(){var e;(0,y.useEffect)((()=>{const e=e=>{(e=>{const C=e.metaKey&&!e.ctrlKey,t=e.ctrlKey&&!e.metaKey;return(C||t)&&"z"===e.key.toLowerCase()&&!e.altKey})(e)&&(e=>{const C=e.composedPath?.();return C?.length?C.some((e=>e instanceof Element&&e.matches?.(F))):e.target?.closest?.(F)})(e)&&e.stopPropagation()};return window.addEventListener("keydown",e,!0),()=>{window.removeEventListener("keydown",e,!0)}}),[]);const C=T(),t=J(),{setTypeSettings:l,clearCurrent:r}=O(),{currentAction:n,currentSettings:a}=I(),{editMeta:i}=(0,b.useDispatch)("jet-forms/actions"),{isSettingsModal:o,actionType:s,isShowErrorNotice:c}=(0,b.useSelect)((e=>({isSettingsModal:e("jet-forms/actions").isSettingsModal(),actionType:e("jet-forms/actions").getAction(n.type),isShowErrorNotice:e("jet-forms/actions").getErrorVisibility()})),[n.type]),d=(0,Z.useActionErrors)(o?n:{});if(!o)return null;const m=function(e={},C=""){const t=e?.editor_name;return"string"==typeof t&&t.trim()?t.trim():C}(n,null!==(e=s?.label)&&void 0!==e?e:""),u=Boolean(d.length)&&c;return(0,h.createElement)(B,{size:"large",__experimentalHideHeader:!0,onRequestClose:r,onCancelClick:r,onUpdateClick:()=>{t(n),r()}},(0,h.createElement)(q,{className:"components-modal__header"},(0,h.createElement)(R,{className:"components-modal__header-heading-container"},s.icon&&(0,h.createElement)(E,{icon:s.icon}),(0,h.createElement)("h1",{className:"components-modal__header-heading"},(0,M.sprintf)((0,M.__)("Edit %s","jet-form-builder"),m)),(0,h.createElement)(A.Slot,null)),(0,h.createElement)(S,null),(0,h.createElement)(N,null)),(0,h.createElement)("div",{style:{height:"40px"}}),C&&(0,h.createElement)(C,{settings:a,actionId:n.id,onChange:e=>l(e)}),(0,h.createElement)(P.Fill,null,(({updateClick:e,cancelClick:C})=>(0,h.createElement)(g.StickyModalActions,{justify:"space-between"},(0,h.createElement)(L.Flex,{justify:"flex-start",gap:3,style:{flex:1}},(0,h.createElement)(L.Button,{isPrimary:!0,onClick:()=>{d?.length?i({errorsShow:!0}):e()}},(0,M.__)("Update","jet-form-builder")),(0,h.createElement)(L.Button,{isSecondary:!0,onClick:C},(0,M.__)("Cancel","jet-form-builder")),u&&(0,h.createElement)(g.IconText,null,(0,M.__)("You have errors in some fields","jet-form-builder"))),u&&(0,h.createElement)(L.Button,{variant:"tertiary",onClick:e},(0,M.__)("Update anyway","jet-form-builder"))))))};t(2065);const z=window.JetFormEditorData.actionConditionSettings,{RepeaterItemContext:U,Repeater:G,RepeaterAddNew:W,AdvancedModalControl:K,RepeaterState:$,BaseHelp:Y}=JetFBComponents,{useRequestEvents:X,useCurrentAction:Q,useUpdateCurrentAction:ee,useMetaState:Ce}=JetFBHooks,{getFormFieldsBlocks:te}=JetFBActions,{SelectControl:le,TextareaControl:re,ToggleControl:ne,FormTokenField:ae,TabPanel:ie}=wp.components,{__:oe}=wp.i18n,{useSelect:se}=wp.data,{useEffect:ce,useState:de,useContext:me,RawHTML:ue}=wp.element,pe=[{value:"and",label:oe("AND (ALL conditions must be met)","jet-form-builder")},{value:"or",label:oe("OR (at least ONE condition must be met)","jet-form-builder")}],fe=window.JetFormEditorData.actionConditionExcludeEvents;function Ve(e,C){const t=z[e].find((e=>e.value===C));return(e,C="")=>t&&t[e]||C}function He({formFields:e}){const{currentItem:C,changeCurrentItem:t}=me(U);let l=oe("To fulfill this condition, the result of the check must be","jet-form-builder")+" ";l+=C.execute?"TRUE":"FALSE";const r=Ve("compare_value_formats",C.compare_value_format),n=Ve("operators",C.operator);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ne,{label:l,checked:C.execute,onChange:e=>{t({execute:e})}}),(0,h.createElement)(le,{label:"Operator",labelPosition:"side",help:n("help"),value:C.operator,options:z.operators,onChange:e=>t({operator:e})}),(0,h.createElement)(le,{label:"Field",labelPosition:"side",value:C.field,options:e,onChange:e=>t({field:e})}),(0,h.createElement)(le,{label:oe("Type transform comparing value","jet-form-builder"),labelPosition:"side",value:C.compare_value_format,options:z.compare_value_formats,onChange:e=>{t({compare_value_format:e})}}),r("help").length>0&&(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:r("help")}}),(0,h.createElement)(K,{value:C.default,label:oe("Value to Compare","jet-form-builder"),macroWithCurrent:!0,onChangePreset:e=>{t({default:e})}},(({instanceId:e})=>(0,h.createElement)(re,{id:e,value:C.default,help:n("need_explode")?z.help_for_exploding_compare:"",onChange:e=>{t({default:e})}}))))}function he({events:e}){var C;const{currentAction:t}=Q(),{setCurrentAction:l}=ee(),[r,n]=de(!1),a=se((e=>e("jet-forms/events").getHelpMap()));return ce((()=>{if(fe[t.type]&&t.events.length){const e=t.events.filter((e=>!fe[t.type].includes(e)));t.events.some((C=>!e.includes(C)))&&l({...t,events:e})}}),[t,l]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ae,{label:oe("Add event","jet-form-builder"),value:null!==(C=t.events)&&void 0!==C?C:[],suggestions:e,onChange:e=>l({...t,events:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0,__experimentalShowHowTo:""}),(0,h.createElement)(Y,null,oe("Separate with commas, spaces, or press Enter.","jet-form-builder")+" ",(0,h.createElement)("a",{href:"#",role:"button",onClick:()=>n((e=>!e))},oe(r?"Hide":"Details","jet-form-builder"))),r&&(0,h.createElement)("ul",{className:"jet-fb-ul-revert-layer"},e.map((e=>(0,h.createElement)("li",{key:e},(0,h.createElement)("b",null,e),": ",(0,h.createElement)(ue,null,a[e]))))))}function be(){var e;const[C,t]=de([]);ce((()=>{t(te([],"--"))}),[]);const{currentAction:l}=Q(),{setCurrentAction:r,updateCurrentConditions:n}=ee();return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(le,{key:"SelectControl-operator",label:oe("Condition Operator","jet-form-builder"),labelPosition:"side",value:l.condition_operator||"and",options:pe,onChange:e=>r({...l,condition_operator:e})}),(0,h.createElement)($,{state:n},(0,h.createElement)(G,{items:null!==(e=l.conditions)&&void 0!==e?e:[]},(0,h.createElement)(He,{formFields:C})),(0,h.createElement)(W,{item:{execute:!0}},oe("Add New Condition","jet-form-builder"))))}const Me=function(){var e;let C=X();const{currentAction:t}=Q(),[l]=Ce("_jf_gateways",{}),r=se((e=>e("jet-forms/events").getEventValuesByGateway()));if("manual"===l?.mode&&r&&"object"==typeof r){const e=Object.keys(r).filter((e=>!!l?.[e]?.show_on_front)).flatMap((e=>{var C;return null!==(C=r?.[e])&&void 0!==C?C:[]}));C=Array.from(new Set([...null!=C?C:[],...e]))}if(fe?.[t.type]){const e=fe[t.type];C=(null!=C?C:[]).filter((C=>!e.includes(C)))}return 1===(null!==(e=C?.length)&&void 0!==e?e:0)?(0,h.createElement)(be,null):(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ie,{className:"jfb-conditions-tab-panel",initialTabName:"fields",tabs:[{name:"fields",title:oe("Fields comparison","jet-form-builder"),edit:(0,h.createElement)(be,null)},{name:"events",title:oe("Events match","jet-form-builder"),edit:(0,h.createElement)(he,{events:C})}]},(e=>e.edit)))},{__:Le}=wp.i18n,{ActionModal:ge}=JetFBComponents,{useRequestEvents:Ze,useUpdateCurrentActionMeta:ye,useCurrentAction:Ee}=JetFBHooks,{useDispatch:we,useSelect:ve}=wp.data,_e=function(){const e=ve((e=>e("jet-forms/actions").isConditionalModal())),{clearCurrent:C}=we("jet-forms/actions",[]),t=ye(),{currentAction:l}=Ee(),r=Ze();if(!e)return null;const n=["width-60"];return 1!==r.length&&n.push("without-margin"),(0,h.createElement)(ge,{classNames:n,title:Le("Edit Action Conditions & Events","jet-form-builder"),onRequestClose:C,onCancelClick:C,onUpdateClick:()=>{t({...l}),C()}},(0,h.createElement)(Me,null))},ke=window.wp.editor,je=(0,L.withFilters)("jet.fb.action.item")(Z.ListActionItem),xe=x(g.Sortable)({name:"FlexSortable",class:"f13zt8l2",propsAsIs:!0}),Fe=x(ke.PluginDocumentSettingPanel)({name:"ActionsPanel",class:"am4szan",propsAsIs:!0}),Be=x(L.Flex)({name:"StyledFlex",class:"s8wdwdc",propsAsIs:!0});t(1669);const Ae={base:{name:"jf-actions-panel",jfbApiVersion:2},settings:{render:function(){const[e,C]=(0,Z.useActions)(),t=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return(0,h.createElement)(Fe,{title:(0,M.__)("Post Submit Actions","jet-form-builder")},(0,h.createElement)(Be,{direction:"column",gap:3,className:t?"buddypress-active":""},(0,h.createElement)(xe,{list:e,setList:C,direction:"vertical",handle:".jfb-action-handle",draggable:".jet-form-action.draggable"},e.map(((e,C)=>(0,h.createElement)(y.Fragment,{key:e.id},(0,h.createElement)(Z.ActionListItemContext.Provider,{value:{index:C,action:e}},(0,h.createElement)(je,null)))))),(0,h.createElement)(Z.ActionsAfterNewButtonSlotFill.Slot,null,(e=>(0,h.createElement)(L.Flex,{className:"jfb-actions-panel--buttons"},(0,h.createElement)(Z.AddActionButton,null),e)))),(0,h.createElement)(Z.AllProActionsLink,null),(0,h.createElement)(D,null),(0,h.createElement)(_e,null))}}},{useMetaState:Pe}=JetFBHooks,{TextControl:Se,SelectControl:Ne,ToggleControl:Ie}=wp.components,{__:Te}=wp.i18n,Oe=window.JetFormEditorData.argumentsSource||{},{__:Je}=wp.i18n,Re={base:{name:"jf-args-panel",title:Je("Form Settings","jet-form-builder"),jfbTest:2},settings:{render:function(){var e,C,t,l,r,n,a;const[i,o]=Pe("_jf_args"),s=window.location.href.includes("post-new.php");let c="label",d="fieldset";var m,u;return s||(c=null!==(m=i?.fields_label_tag)&&void 0!==m?m:"div",d=null!==(u=i?.markup_type)&&void 0!==u?u:"div"),(0,h.useEffect)((()=>{i?.fields_label_tag||o((e=>({...e,fields_label_tag:c})))}),[i,c,o]),(0,h.useEffect)((()=>{i?.markup_type||o((e=>({...e,markup_type:d})))}),[i,d,o]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ne,{label:Te("Fields Layout","jet-form-builder"),value:null!==(e=i?.fields_layout)&&void 0!==e?e:"",options:Oe.fields_layout,onChange:e=>{o((C=>({...C,fields_layout:e})))}}),(0,h.createElement)(Se,{label:Te("Required Mark","jet-form-builder"),value:null!==(C=i?.required_mark)&&void 0!==C?C:"",onChange:e=>{o((C=>({...C,required_mark:e})))}}),(0,h.createElement)(Ne,{label:Te("Fields label HTML tag","jet-form-builder"),value:null!==(t=i?.fields_label_tag)&&void 0!==t?t:c,options:Oe.fields_label_tag,onChange:e=>{o((C=>({...C,fields_label_tag:e})))}}),(0,h.createElement)(Ne,{label:Te("Markup type","jet-form-builder"),value:null!==(l=i?.markup_type)&&void 0!==l?l:d,options:Oe.markup_type,onChange:e=>{o((C=>({...C,markup_type:e})))}}),(0,h.createElement)(Ne,{label:Te("Submit Type","jet-form-builder"),value:null!==(r=i?.submit_type)&&void 0!==r?r:"",options:Oe.submit_type,onChange:e=>{o((C=>({...C,submit_type:e})))}}),(0,h.createElement)(Ie,{key:"enable_progress",label:Te("Enable form pages progress","jet-form-builder"),checked:null!==(n=i?.enable_progress)&&void 0!==n&&n,help:Te("Displays the progress of a multi-page form","jet-form-builder"),onChange:()=>{o((e=>{const C=!Boolean(e.enable_progress);return{...e,enable_progress:C}}))}}),(0,h.createElement)(Ie,{key:"clear_on_ajax",label:Te("Clear data on success submit","jet-form-builder"),checked:null!==(a=i?.clear)&&void 0!==a&&a,help:Te("Remove input values on successful submit","jet-form-builder"),onChange:()=>{o((e=>({...e,clear:!Boolean(e.clear)})))}}))},icon:"admin-settings"}},{GlobalField:qe,AvailableMapField:De}=JetFBComponents,{withPreset:ze}=JetFBActions,Ue=ze((function({value:e,availableFields:C,isMapFieldVisible:t,isVisible:l,onChange:r}){const n=(C,t)=>{r({...e,[t]:C})};return(0,h.createElement)(L.Flex,{direction:"column",gap:4},window.JetFormEditorData.presetConfig.global_fields.map(((C,t)=>(0,h.createElement)(qe,{key:C.name+t,value:e,index:t,data:C,options:C.options,onChangeValue:n,isVisible:l,position:"general"}))),e.from&&C.map(((C,l)=>(0,h.createElement)(De,{key:C+l,fieldsMap:e.fields_map,field:C,index:l,onChangeValue:n,isMapFieldVisible:t,value:e}))))})),{useMetaState:Ge}=JetFBHooks,{getAvailableFields:We}=JetFBActions,{__:Ke}=wp.i18n,{__:$e}=wp.i18n,Ye={base:{name:"jf-preset-panel",title:$e("Preset Settings","jet-form-builder")},settings:{render:function(){var e,C;const{ToggleControl:t}=wp.components,[l,r]=Ge("_jf_preset"),n=(0,y.useMemo)((()=>l.enabled?We([],"preset"):[]),[l.enabled]);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(t,{key:"enable_preset",label:Ke("Enable","jet-form-builder"),checked:l.enabled,help:"Check this to enable global form preset",onChange:e=>{r((C=>({...C,enabled:e})))}}),l.enabled&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ue,{key:"_jf_preset_general",value:l,onChange:e=>{r((C=>({...C,...e,enabled:C.enabled})))},availableFields:n}),(0,h.createElement)(t,{label:Ke("Restrict access","jet-form-builder"),checked:null===(e=l.restricted)||void 0===e||e,help:null===(C=l.restricted)||void 0===C||C?Ke("Will set default value from preset only for users who allowed to edit this value","jet-form-builder"):Ke("Always set default value from preset. Make sure it can't be accidentally changed from form Actions","jet-form-builder"),onChange:e=>{r((C=>({...C,restricted:e?void 0:e})))}})))},icon:"database-import"}},{TextControl:Xe}=wp.components,{useMetaState:Qe}=JetFBHooks,{__:eC}=wp.i18n,CC={base:{name:"jf-messages-panel",title:eC("General Messages Settings","jet-form-builder")},settings:{render:function(){const[e,C]=Qe("_jf_messages");return(0,h.createElement)(h.Fragment,null,Object.entries(JetFormEditorData.messagesDefault).map((([t,{label:l,value:r}],n)=>{var a;return(0,h.createElement)(Xe,{key:t+n,label:l,value:null!==(a=e[t])&&void 0!==a?a:r,onChange:e=>C((C=>({...C,[t]:e})))})})))},icon:"format-status"}},{__:tC}=wp.i18n,{__:lC}=wp.i18n,rC={base:{name:"jf-limit-responses-panel",title:lC("Limit Form Responses","jet-form-builder")},settings:{render:function(){const{limitResponses:e}=JetFormEditorData.utmLinks;return(0,h.createElement)("p",null,tC("You’re using free version of JetFormBuilder.","jet-form-builder")+"\n",(0,h.createElement)("a",{href:e,target:"_blank",rel:"noreferrer"},tC("Upgrade","jet-form-builder"))," "+tC("to unlock this feature.","jet-form-builder"))},icon:"lock"}},{__:nC}=wp.i18n,{__:aC}=wp.i18n,iC={base:{name:"jf-schedule-panel",title:aC("Form Schedule","jet-form-builder")},settings:{render:function(){const{scheduleForm:e}=JetFormEditorData.utmLinks;return(0,h.createElement)("p",null,nC("You’re using free version of JetFormBuilder.","jet-form-builder")+"\n",(0,h.createElement)("a",{href:e,target:"_blank",rel:"noreferrer"},nC("Upgrade","jet-form-builder"))," "+nC("to unlock this feature.","jet-form-builder"))},icon:"lock"}},{ActionModalContext:oC,ValidationMetaMessage:sC}=JetFBComponents,{useMetaState:cC,useGroupedValidationMessages:dC}=JetFBHooks,mC=function(){const[e,C]=cC("_jf_validation","{}",[]),t=dC(),[l,r]=(0,y.useState)((()=>{var C;return null!==(C=e.messages)&&void 0!==C?C:{}})),{actionClick:n,onRequestClose:a}=(0,y.useContext)(oC);return(0,y.useEffect)((()=>{n&&C((e=>({...e,messages:l}))),null!==n&&a()}),[n]),(0,h.createElement)(L.Flex,{gap:4,direction:"column"},t.map(((e,C)=>(0,h.createElement)(sC,{key:"message_item"+e.id,message:e,messages:l,update:r,value:l[e.id],className:0!==C?"jet-control-full":"",style:0!==C?{}:{paddingBottom:"5px"}}))))},{Button:uC,ToggleControl:pC,__experimentalToggleGroupControl:fC,__experimentalToggleGroupControlOption:VC}=wp.components,{__:HC}=wp.i18n,{useState:hC,useEffect:bC}=wp.element,{useMetaState:MC}=JetFBHooks,{ActionModal:LC}=JetFBComponents,{formats:gC}=window.jetFormValidation,{__:ZC}=wp.i18n,yC={base:{name:"jf-validation-panel",title:ZC("Validation","jet-form-builder")},settings:{render:function(){var e,C,t;const[l,r]=MC("_jf_validation"),[n,a]=MC("_jf_args"),[i,o]=hC(!1),[s,c]=hC("render"===n.load_nonce);return bC((()=>{a((e=>({...e,load_nonce:s?"render":"hide"})))}),[s]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(pC,{key:"load_nonce",label:HC("Enable form safety","jet-form-builder"),checked:s,help:HC("Protects the form with a WordPress nonce. Toggle this option off if the form's page's caching can't be disabled","jet-form-builder"),onChange:()=>{c((e=>!e))}}),(0,h.createElement)(pC,{label:HC("Enable csrf protection","jet-form-builder"),checked:null!==(e=n?.use_csrf)&&void 0!==e&&e,onChange:()=>{a((e=>{const C=!Boolean(e.use_csrf);return{...e,use_csrf:C}}))}}),(0,h.createElement)(pC,{label:HC("Enable Honeypot protection","jet-form-builder"),checked:null!==(C=n?.use_honeypot)&&void 0!==C&&C,onChange:()=>{a((e=>({...e,use_honeypot:!Boolean(e.use_honeypot)})))}}),(0,h.createElement)(fC,{onChange:e=>r((C=>({...C,type:e}))),value:null!==(t=l?.type)&&void 0!==t?t:"browser",label:HC("Validation type","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},gC.map((e=>(0,h.createElement)(VC,{key:e.value+"_key",label:e.label,value:e.value,"aria-label":e.title,showTooltip:!0})))),"advanced"===l.type&&(0,h.createElement)(uC,{className:"jet-fb-button w-100 jc-center",isSecondary:!0,isSmall:!0,icon:"edit",onClick:()=>o(!0)},HC("Edit validation messages","jet-form-builder")),i&&(0,h.createElement)(LC,{title:"Edit Manual Options",onRequestClose:()=>o(!1),classNames:["width-60"]},(0,h.createElement)(mC,null)))},icon:"shield-alt"}},EC=window.wp.plugins;(0,EC.registerPlugin)("jf-rating-popover",{render:()=>((()=>{const e=jQuery(".interface-interface-skeleton__footer");e.find(".jet-fb-rating-message").remove();const C=(0,M.sprintf)((0,M.__)('Liked JetFormBuilder? Please rate it ★★★★★. For troubleshooting, contact Crocoblock support.',"jet-form-builder"),"https://wordpress.org/support/plugin/jetformbuilder/reviews/?filter=5","https://support.crocoblock.com/support/home/");e.append(`\n\t
    ${C}
    \n`)})(),null)});const wC=window.wp.hooks,vC=e=>{const{base:C,settings:t}=e;C.jfbApiVersion&&1!==C.jfbApiVersion||(t.render=((e,C)=>{const t=e.render;return()=>(0,h.createElement)(ke.PluginDocumentSettingPanel,{key:`plugin-panel-${C.name}`,...C},(0,h.createElement)(t,{key:`plugin-render-${C.name}`}))})(t,C)),(0,EC.getPlugin)(C.name)&&(0,EC.unregisterPlugin)(C.name),(0,EC.registerPlugin)(C.name,t)};JetFormEditorData.isActivePro||(0,wC.addFilter)("jet.fb.register.plugin.jf-actions-panel.after","jet-form-builder",(e=>(e.push(iC,rC),e)),0);const _C=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("g",{clipPath:"url(#clip0_273_2176)"},(0,h.createElement)("path",{d:"M22.4785 28.4268V29.5H17.208V28.4268H22.4785ZM17.4746 19.5469V29.5H16.1553V19.5469H17.4746ZM21.7812 23.8262V24.8994H17.208V23.8262H21.7812ZM22.4102 19.5469V20.627H17.208V19.5469H22.4102ZM24.7754 22.1035L26.3955 24.7969L28.0361 22.1035H29.5195L27.0996 25.7539L29.5947 29.5H28.1318L26.4229 26.7246L24.7139 29.5H23.2441L25.7324 25.7539L23.3193 22.1035H24.7754ZM33.9629 22.1035V23.0742H29.9639V22.1035H33.9629ZM31.3174 20.3057H32.582V27.668C32.582 27.9186 32.6208 28.1077 32.6982 28.2354C32.7757 28.363 32.876 28.4473 32.999 28.4883C33.1221 28.5293 33.2542 28.5498 33.3955 28.5498C33.5003 28.5498 33.6097 28.5407 33.7236 28.5225C33.8421 28.4997 33.931 28.4814 33.9902 28.4678L33.9971 29.5C33.8968 29.5319 33.7646 29.5615 33.6006 29.5889C33.4411 29.6208 33.2474 29.6367 33.0195 29.6367C32.7096 29.6367 32.4248 29.5752 32.165 29.4521C31.9053 29.3291 31.6979 29.124 31.543 28.8369C31.3926 28.5452 31.3174 28.1533 31.3174 27.6611V20.3057ZM36.7109 23.2656V29.5H35.4463V22.1035H36.6768L36.7109 23.2656ZM39.0215 22.0625L39.0146 23.2383C38.9098 23.2155 38.8096 23.2018 38.7139 23.1973C38.6227 23.1882 38.5179 23.1836 38.3994 23.1836C38.1077 23.1836 37.8503 23.2292 37.627 23.3203C37.4036 23.4115 37.2145 23.5391 37.0596 23.7031C36.9046 23.8672 36.7816 24.0632 36.6904 24.291C36.6038 24.5143 36.5469 24.7604 36.5195 25.0293L36.1641 25.2344C36.1641 24.7878 36.2074 24.3685 36.2939 23.9766C36.3851 23.5846 36.5241 23.2383 36.7109 22.9375C36.8978 22.6322 37.1348 22.3952 37.4219 22.2266C37.7135 22.0534 38.0599 21.9668 38.4609 21.9668C38.5521 21.9668 38.6569 21.9782 38.7754 22.001C38.8939 22.0192 38.9759 22.0397 39.0215 22.0625ZM44.2783 28.2354V24.4277C44.2783 24.1361 44.2191 23.8831 44.1006 23.6689C43.9867 23.4502 43.8135 23.2816 43.5811 23.1631C43.3486 23.0446 43.0615 22.9854 42.7197 22.9854C42.4007 22.9854 42.1204 23.04 41.8789 23.1494C41.6419 23.2588 41.4551 23.4023 41.3184 23.5801C41.1862 23.7578 41.1201 23.9492 41.1201 24.1543H39.8555C39.8555 23.89 39.9238 23.6279 40.0605 23.3682C40.1973 23.1084 40.3932 22.8737 40.6484 22.6641C40.9082 22.4499 41.2181 22.2812 41.5781 22.1582C41.9427 22.0306 42.3483 21.9668 42.7949 21.9668C43.3327 21.9668 43.8066 22.0579 44.2168 22.2402C44.6315 22.4225 44.9551 22.6982 45.1875 23.0674C45.4245 23.432 45.543 23.89 45.543 24.4414V27.8867C45.543 28.1328 45.5635 28.3949 45.6045 28.6729C45.6501 28.9508 45.7161 29.1901 45.8027 29.3906V29.5H44.4834C44.4196 29.3542 44.3695 29.1605 44.333 28.9189C44.2965 28.6729 44.2783 28.445 44.2783 28.2354ZM44.4971 25.0156L44.5107 25.9043H43.2324C42.8724 25.9043 42.5511 25.9339 42.2686 25.9932C41.986 26.0479 41.749 26.1322 41.5576 26.2461C41.3662 26.36 41.2204 26.5036 41.1201 26.6768C41.0199 26.8454 40.9697 27.0436 40.9697 27.2715C40.9697 27.5039 41.0221 27.7158 41.127 27.9072C41.2318 28.0986 41.389 28.2513 41.5986 28.3652C41.8128 28.4746 42.0749 28.5293 42.3848 28.5293C42.7721 28.5293 43.1139 28.4473 43.4102 28.2832C43.7064 28.1191 43.9411 27.9186 44.1143 27.6816C44.292 27.4447 44.3877 27.2145 44.4014 26.9912L44.9414 27.5996C44.9095 27.791 44.8229 28.0029 44.6816 28.2354C44.5404 28.4678 44.3512 28.6911 44.1143 28.9053C43.8818 29.1149 43.6038 29.2904 43.2803 29.4316C42.9613 29.5684 42.6012 29.6367 42.2002 29.6367C41.6989 29.6367 41.2591 29.5387 40.8809 29.3428C40.5072 29.1468 40.2155 28.8848 40.0059 28.5566C39.8008 28.224 39.6982 27.8525 39.6982 27.4424C39.6982 27.0459 39.7757 26.6973 39.9307 26.3965C40.0856 26.0911 40.3089 25.8382 40.6006 25.6377C40.8923 25.4326 41.2432 25.2777 41.6533 25.1729C42.0635 25.068 42.5215 25.0156 43.0273 25.0156H44.4971ZM55.3115 27.5381C55.3115 27.3558 55.2705 27.1872 55.1885 27.0322C55.111 26.8727 54.9492 26.7292 54.7031 26.6016C54.4616 26.4694 54.097 26.3555 53.6094 26.2598C53.1992 26.1732 52.8278 26.0706 52.4951 25.9521C52.167 25.8337 51.8867 25.6901 51.6543 25.5215C51.4264 25.3529 51.251 25.1546 51.1279 24.9268C51.0049 24.6989 50.9434 24.4323 50.9434 24.127C50.9434 23.8353 51.0072 23.5596 51.1348 23.2998C51.2669 23.04 51.4515 22.8099 51.6885 22.6094C51.93 22.4089 52.2194 22.2516 52.5566 22.1377C52.8939 22.0238 53.2699 21.9668 53.6846 21.9668C54.277 21.9668 54.7829 22.0716 55.2021 22.2812C55.6214 22.4909 55.9427 22.7712 56.166 23.1221C56.3893 23.4684 56.501 23.8535 56.501 24.2773H55.2363C55.2363 24.0723 55.1748 23.874 55.0518 23.6826C54.9333 23.4867 54.7578 23.3249 54.5254 23.1973C54.2975 23.0697 54.0173 23.0059 53.6846 23.0059C53.3337 23.0059 53.0488 23.0605 52.8301 23.1699C52.6159 23.2747 52.4587 23.4092 52.3584 23.5732C52.2627 23.7373 52.2148 23.9105 52.2148 24.0928C52.2148 24.2295 52.2376 24.3525 52.2832 24.4619C52.3333 24.5667 52.4199 24.6647 52.543 24.7559C52.666 24.8424 52.8392 24.9245 53.0625 25.002C53.2858 25.0794 53.5706 25.1569 53.917 25.2344C54.5231 25.3711 55.0221 25.5352 55.4141 25.7266C55.806 25.918 56.0977 26.1527 56.2891 26.4307C56.4805 26.7087 56.5762 27.0459 56.5762 27.4424C56.5762 27.766 56.5078 28.0622 56.3711 28.3311C56.2389 28.5999 56.0452 28.8324 55.79 29.0283C55.5394 29.2197 55.2386 29.3701 54.8877 29.4795C54.5413 29.5843 54.1517 29.6367 53.7188 29.6367C53.0671 29.6367 52.5156 29.5205 52.0645 29.2881C51.6133 29.0557 51.2715 28.7549 51.0391 28.3857C50.8066 28.0166 50.6904 27.627 50.6904 27.2168H51.9619C51.9801 27.5632 52.0804 27.8389 52.2627 28.0439C52.445 28.2445 52.6683 28.388 52.9326 28.4746C53.1969 28.5566 53.459 28.5977 53.7188 28.5977C54.0651 28.5977 54.3545 28.5521 54.5869 28.4609C54.8239 28.3698 55.0039 28.2445 55.127 28.085C55.25 27.9255 55.3115 27.7432 55.3115 27.5381ZM61.3066 29.6367C60.7917 29.6367 60.3245 29.5501 59.9053 29.377C59.4906 29.1992 59.1328 28.9508 58.832 28.6318C58.5358 28.3128 58.3079 27.9346 58.1484 27.4971C57.9889 27.0596 57.9092 26.5811 57.9092 26.0615V25.7744C57.9092 25.1729 57.998 24.6374 58.1758 24.168C58.3535 23.694 58.5951 23.293 58.9004 22.9648C59.2057 22.6367 59.5521 22.3883 59.9395 22.2197C60.3268 22.0511 60.7279 21.9668 61.1426 21.9668C61.6712 21.9668 62.127 22.0579 62.5098 22.2402C62.8971 22.4225 63.2139 22.6777 63.46 23.0059C63.7061 23.3294 63.8883 23.7122 64.0068 24.1543C64.1253 24.5918 64.1846 25.0703 64.1846 25.5898V26.1572H58.6611V25.125H62.9199V25.0293C62.9017 24.7012 62.8333 24.3822 62.7148 24.0723C62.6009 23.7624 62.4186 23.5072 62.168 23.3066C61.9173 23.1061 61.5755 23.0059 61.1426 23.0059C60.8555 23.0059 60.5911 23.0674 60.3496 23.1904C60.1081 23.3089 59.9007 23.4867 59.7275 23.7236C59.5544 23.9606 59.4199 24.25 59.3242 24.5918C59.2285 24.9336 59.1807 25.3278 59.1807 25.7744V26.0615C59.1807 26.4124 59.2285 26.7428 59.3242 27.0527C59.4245 27.3581 59.568 27.627 59.7549 27.8594C59.9463 28.0918 60.1764 28.2741 60.4453 28.4062C60.7188 28.5384 61.0286 28.6045 61.375 28.6045C61.8216 28.6045 62.1999 28.5133 62.5098 28.3311C62.8197 28.1488 63.0908 27.9049 63.3232 27.5996L64.0889 28.208C63.9294 28.4495 63.7266 28.6797 63.4805 28.8984C63.2344 29.1172 62.9313 29.2949 62.5713 29.4316C62.2158 29.5684 61.7943 29.6367 61.3066 29.6367ZM66.9258 23.2656V29.5H65.6611V22.1035H66.8916L66.9258 23.2656ZM69.2363 22.0625L69.2295 23.2383C69.1247 23.2155 69.0244 23.2018 68.9287 23.1973C68.8376 23.1882 68.7327 23.1836 68.6143 23.1836C68.3226 23.1836 68.0651 23.2292 67.8418 23.3203C67.6185 23.4115 67.4294 23.5391 67.2744 23.7031C67.1195 23.8672 66.9964 24.0632 66.9053 24.291C66.8187 24.5143 66.7617 24.7604 66.7344 25.0293L66.3789 25.2344C66.3789 24.7878 66.4222 24.3685 66.5088 23.9766C66.5999 23.5846 66.7389 23.2383 66.9258 22.9375C67.1126 22.6322 67.3496 22.3952 67.6367 22.2266C67.9284 22.0534 68.2747 21.9668 68.6758 21.9668C68.7669 21.9668 68.8717 21.9782 68.9902 22.001C69.1087 22.0192 69.1908 22.0397 69.2363 22.0625ZM72.7773 28.3584L74.8008 22.1035H76.0928L73.4336 29.5H72.5859L72.7773 28.3584ZM71.0889 22.1035L73.1738 28.3926L73.3174 29.5H72.4697L69.79 22.1035H71.0889ZM78.6836 22.1035V29.5H77.4121V22.1035H78.6836ZM77.3164 20.1416C77.3164 19.9365 77.3779 19.7633 77.501 19.6221C77.6286 19.4808 77.8154 19.4102 78.0615 19.4102C78.3031 19.4102 78.4876 19.4808 78.6152 19.6221C78.7474 19.7633 78.8135 19.9365 78.8135 20.1416C78.8135 20.3376 78.7474 20.5062 78.6152 20.6475C78.4876 20.7842 78.3031 20.8525 78.0615 20.8525C77.8154 20.8525 77.6286 20.7842 77.501 20.6475C77.3779 20.5062 77.3164 20.3376 77.3164 20.1416ZM83.6738 28.5977C83.9746 28.5977 84.2526 28.5361 84.5078 28.4131C84.763 28.29 84.9727 28.1214 85.1367 27.9072C85.3008 27.6885 85.3942 27.4401 85.417 27.1621H86.6201C86.5973 27.5996 86.4492 28.0075 86.1758 28.3857C85.9069 28.7594 85.5537 29.0625 85.1162 29.2949C84.6787 29.5228 84.1979 29.6367 83.6738 29.6367C83.1178 29.6367 82.6325 29.5387 82.2178 29.3428C81.8076 29.1468 81.4658 28.8779 81.1924 28.5361C80.9235 28.1943 80.7207 27.8024 80.584 27.3604C80.4518 26.9137 80.3857 26.4421 80.3857 25.9453V25.6582C80.3857 25.1615 80.4518 24.6921 80.584 24.25C80.7207 23.8034 80.9235 23.4092 81.1924 23.0674C81.4658 22.7256 81.8076 22.4567 82.2178 22.2607C82.6325 22.0648 83.1178 21.9668 83.6738 21.9668C84.2526 21.9668 84.7585 22.0853 85.1914 22.3223C85.6243 22.5547 85.9639 22.8737 86.21 23.2793C86.4606 23.6803 86.5973 24.1361 86.6201 24.6465H85.417C85.3942 24.3411 85.3076 24.0654 85.1572 23.8193C85.0114 23.5732 84.8109 23.3773 84.5557 23.2314C84.305 23.0811 84.0111 23.0059 83.6738 23.0059C83.2865 23.0059 82.9606 23.0833 82.6963 23.2383C82.4365 23.3887 82.2292 23.5938 82.0742 23.8535C81.9238 24.1087 81.8145 24.3936 81.7461 24.708C81.6823 25.0179 81.6504 25.3346 81.6504 25.6582V25.9453C81.6504 26.2689 81.6823 26.5879 81.7461 26.9023C81.8099 27.2168 81.917 27.5016 82.0674 27.7568C82.2223 28.012 82.4297 28.2171 82.6895 28.3721C82.9538 28.5225 83.2819 28.5977 83.6738 28.5977ZM91.1113 29.6367C90.5964 29.6367 90.1292 29.5501 89.71 29.377C89.2952 29.1992 88.9375 28.9508 88.6367 28.6318C88.3405 28.3128 88.1126 27.9346 87.9531 27.4971C87.7936 27.0596 87.7139 26.5811 87.7139 26.0615V25.7744C87.7139 25.1729 87.8027 24.6374 87.9805 24.168C88.1582 23.694 88.3997 23.293 88.7051 22.9648C89.0104 22.6367 89.3568 22.3883 89.7441 22.2197C90.1315 22.0511 90.5326 21.9668 90.9473 21.9668C91.4759 21.9668 91.9316 22.0579 92.3145 22.2402C92.7018 22.4225 93.0186 22.6777 93.2646 23.0059C93.5107 23.3294 93.693 23.7122 93.8115 24.1543C93.93 24.5918 93.9893 25.0703 93.9893 25.5898V26.1572H88.4658V25.125H92.7246V25.0293C92.7064 24.7012 92.638 24.3822 92.5195 24.0723C92.4056 23.7624 92.2233 23.5072 91.9727 23.3066C91.722 23.1061 91.3802 23.0059 90.9473 23.0059C90.6602 23.0059 90.3958 23.0674 90.1543 23.1904C89.9128 23.3089 89.7054 23.4867 89.5322 23.7236C89.359 23.9606 89.2246 24.25 89.1289 24.5918C89.0332 24.9336 88.9854 25.3278 88.9854 25.7744V26.0615C88.9854 26.4124 89.0332 26.7428 89.1289 27.0527C89.2292 27.3581 89.3727 27.627 89.5596 27.8594C89.751 28.0918 89.9811 28.2741 90.25 28.4062C90.5234 28.5384 90.8333 28.6045 91.1797 28.6045C91.6263 28.6045 92.0046 28.5133 92.3145 28.3311C92.6243 28.1488 92.8955 27.9049 93.1279 27.5996L93.8936 28.208C93.734 28.4495 93.5312 28.6797 93.2852 28.8984C93.0391 29.1172 92.736 29.2949 92.376 29.4316C92.0205 29.5684 91.599 29.6367 91.1113 29.6367ZM99.7725 27.5381C99.7725 27.3558 99.7314 27.1872 99.6494 27.0322C99.5719 26.8727 99.4102 26.7292 99.1641 26.6016C98.9225 26.4694 98.5579 26.3555 98.0703 26.2598C97.6602 26.1732 97.2887 26.0706 96.9561 25.9521C96.6279 25.8337 96.3477 25.6901 96.1152 25.5215C95.8874 25.3529 95.7119 25.1546 95.5889 24.9268C95.4658 24.6989 95.4043 24.4323 95.4043 24.127C95.4043 23.8353 95.4681 23.5596 95.5957 23.2998C95.7279 23.04 95.9124 22.8099 96.1494 22.6094C96.391 22.4089 96.6803 22.2516 97.0176 22.1377C97.3548 22.0238 97.7308 21.9668 98.1455 21.9668C98.738 21.9668 99.2438 22.0716 99.6631 22.2812C100.082 22.4909 100.404 22.7712 100.627 23.1221C100.85 23.4684 100.962 23.8535 100.962 24.2773H99.6973C99.6973 24.0723 99.6357 23.874 99.5127 23.6826C99.3942 23.4867 99.2188 23.3249 98.9863 23.1973C98.7585 23.0697 98.4782 23.0059 98.1455 23.0059C97.7946 23.0059 97.5098 23.0605 97.291 23.1699C97.0768 23.2747 96.9196 23.4092 96.8193 23.5732C96.7236 23.7373 96.6758 23.9105 96.6758 24.0928C96.6758 24.2295 96.6986 24.3525 96.7441 24.4619C96.7943 24.5667 96.8809 24.6647 97.0039 24.7559C97.127 24.8424 97.3001 24.9245 97.5234 25.002C97.7467 25.0794 98.0316 25.1569 98.3779 25.2344C98.984 25.3711 99.4831 25.5352 99.875 25.7266C100.267 25.918 100.559 26.1527 100.75 26.4307C100.941 26.7087 101.037 27.0459 101.037 27.4424C101.037 27.766 100.969 28.0622 100.832 28.3311C100.7 28.5999 100.506 28.8324 100.251 29.0283C100 29.2197 99.6995 29.3701 99.3486 29.4795C99.0023 29.5843 98.6126 29.6367 98.1797 29.6367C97.528 29.6367 96.9766 29.5205 96.5254 29.2881C96.0742 29.0557 95.7324 28.7549 95.5 28.3857C95.2676 28.0166 95.1514 27.627 95.1514 27.2168H96.4229C96.4411 27.5632 96.5413 27.8389 96.7236 28.0439C96.9059 28.2445 97.1292 28.388 97.3936 28.4746C97.6579 28.5566 97.9199 28.5977 98.1797 28.5977C98.526 28.5977 98.8154 28.5521 99.0479 28.4609C99.2848 28.3698 99.4648 28.2445 99.5879 28.085C99.7109 27.9255 99.7725 27.7432 99.7725 27.5381Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M29.25 41.25V51.75H18.75V41.25H29.25ZM29.25 39.75H18.75C17.925 39.75 17.25 40.425 17.25 41.25V51.75C17.25 52.575 17.925 53.25 18.75 53.25H29.25C30.075 53.25 30.75 52.575 30.75 51.75V41.25C30.75 40.425 30.075 39.75 29.25 39.75Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M40.3672 46.6772H38.0249L38.0122 45.6934H40.1387C40.4899 45.6934 40.7967 45.6341 41.0591 45.5156C41.3215 45.3971 41.5246 45.2279 41.6685 45.0078C41.8166 44.7835 41.8906 44.5169 41.8906 44.208C41.8906 43.8695 41.825 43.5944 41.6938 43.3828C41.5669 43.167 41.3701 43.0104 41.1035 42.9131C40.8411 42.8115 40.5068 42.7607 40.1006 42.7607H38.2979V51H37.0728V41.7578H40.1006C40.5745 41.7578 40.9977 41.8065 41.3701 41.9038C41.7425 41.9969 42.0578 42.145 42.3159 42.3481C42.5783 42.547 42.7772 42.8009 42.9126 43.1099C43.048 43.4188 43.1157 43.7891 43.1157 44.2207C43.1157 44.6016 43.0184 44.9465 42.8237 45.2554C42.6291 45.5601 42.3582 45.8097 42.0112 46.0044C41.6685 46.1991 41.2664 46.3239 40.8052 46.3789L40.3672 46.6772ZM40.3101 51H37.5425L38.2344 50.0034H40.3101C40.6994 50.0034 41.0295 49.9357 41.3003 49.8003C41.5754 49.6649 41.7848 49.4744 41.9287 49.229C42.0726 48.9793 42.1445 48.6852 42.1445 48.3467C42.1445 48.0039 42.0832 47.7077 41.9604 47.458C41.8377 47.2083 41.6452 47.0158 41.3828 46.8804C41.1204 46.745 40.7819 46.6772 40.3672 46.6772H38.6216L38.6343 45.6934H41.021L41.2812 46.0488C41.7256 46.0869 42.1022 46.2139 42.4111 46.4297C42.7201 46.6413 42.9549 46.9121 43.1157 47.2422C43.2808 47.5723 43.3633 47.9362 43.3633 48.334C43.3633 48.9095 43.2363 49.3962 42.9824 49.7939C42.7327 50.1875 42.3794 50.488 41.9224 50.6953C41.4653 50.8984 40.9279 51 40.3101 51ZM46.1689 45.2109V51H44.9946V44.1318H46.1372L46.1689 45.2109ZM48.3145 44.0938L48.3081 45.1855C48.2108 45.1644 48.1177 45.1517 48.0288 45.1475C47.9442 45.139 47.8468 45.1348 47.7368 45.1348C47.466 45.1348 47.2269 45.1771 47.0195 45.2617C46.8122 45.3464 46.6366 45.4648 46.4927 45.6172C46.3488 45.7695 46.2345 45.9515 46.1499 46.1631C46.0695 46.3704 46.0166 46.599 45.9912 46.8486L45.6611 47.0391C45.6611 46.6243 45.7013 46.235 45.7817 45.8711C45.8664 45.5072 45.9954 45.1855 46.1689 44.9062C46.3424 44.6227 46.5625 44.4027 46.8291 44.2461C47.0999 44.0853 47.4215 44.0049 47.7939 44.0049C47.8786 44.0049 47.9759 44.0155 48.0859 44.0366C48.196 44.0535 48.2721 44.0726 48.3145 44.0938ZM52.123 51.127C51.6449 51.127 51.2111 51.0465 50.8218 50.8857C50.4367 50.7207 50.1045 50.4901 49.8252 50.1938C49.5501 49.8976 49.3385 49.5464 49.1904 49.1401C49.0423 48.7339 48.9683 48.2896 48.9683 47.8071V47.5405C48.9683 46.9819 49.0508 46.4847 49.2158 46.0488C49.3809 45.6087 49.6051 45.2363 49.8887 44.9316C50.1722 44.627 50.4938 44.3963 50.8535 44.2397C51.2132 44.0832 51.5856 44.0049 51.9707 44.0049C52.4616 44.0049 52.8848 44.0895 53.2402 44.2588C53.5999 44.4281 53.894 44.665 54.1226 44.9697C54.3511 45.2702 54.5203 45.6257 54.6304 46.0361C54.7404 46.4424 54.7954 46.8867 54.7954 47.3691V47.896H49.6665V46.9375H53.6211V46.8486C53.6042 46.5439 53.5407 46.2477 53.4307 45.96C53.3249 45.6722 53.1556 45.4352 52.9229 45.249C52.6901 45.0628 52.3727 44.9697 51.9707 44.9697C51.7041 44.9697 51.4587 45.0269 51.2344 45.1411C51.0101 45.2511 50.8175 45.4162 50.6567 45.6362C50.4959 45.8563 50.3711 46.125 50.2822 46.4424C50.1934 46.7598 50.1489 47.1258 50.1489 47.5405V47.8071C50.1489 48.133 50.1934 48.4398 50.2822 48.7275C50.3753 49.0111 50.5086 49.2607 50.6821 49.4766C50.8599 49.6924 51.0736 49.8617 51.3232 49.9844C51.5771 50.1071 51.8649 50.1685 52.1865 50.1685C52.6012 50.1685 52.9525 50.0838 53.2402 49.9146C53.528 49.7453 53.7798 49.5189 53.9956 49.2354L54.7065 49.8003C54.5584 50.0246 54.3701 50.2383 54.1416 50.4414C53.9131 50.6445 53.6317 50.8096 53.2974 50.9365C52.9673 51.0635 52.5758 51.127 52.123 51.127ZM60.2163 49.8257V46.29C60.2163 46.0192 60.1613 45.7843 60.0513 45.5854C59.9455 45.3823 59.7847 45.2257 59.5688 45.1157C59.353 45.0057 59.0864 44.9507 58.769 44.9507C58.4728 44.9507 58.2126 45.0015 57.9883 45.103C57.7682 45.2046 57.5947 45.3379 57.4678 45.5029C57.3451 45.668 57.2837 45.8457 57.2837 46.0361H56.1094C56.1094 45.7907 56.1729 45.5474 56.2998 45.3062C56.4268 45.0649 56.6087 44.847 56.8457 44.6523C57.0869 44.4535 57.3747 44.2969 57.709 44.1826C58.0475 44.0641 58.4242 44.0049 58.8389 44.0049C59.3382 44.0049 59.7783 44.0895 60.1592 44.2588C60.5443 44.4281 60.8447 44.6841 61.0605 45.0269C61.2806 45.3654 61.3906 45.7907 61.3906 46.3027V49.502C61.3906 49.7305 61.4097 49.9738 61.4478 50.2319C61.4901 50.4901 61.5514 50.7122 61.6318 50.8984V51H60.4067C60.3475 50.8646 60.3009 50.6847 60.2671 50.4604C60.2332 50.2319 60.2163 50.0203 60.2163 49.8257ZM60.4194 46.8359L60.4321 47.6611H59.2451C58.9108 47.6611 58.6125 47.6886 58.3501 47.7437C58.0877 47.7944 57.8677 47.8727 57.6899 47.9785C57.5122 48.0843 57.3768 48.2176 57.2837 48.3784C57.1906 48.535 57.144 48.7191 57.144 48.9307C57.144 49.1465 57.1927 49.3433 57.29 49.521C57.3874 49.6987 57.5334 49.8405 57.728 49.9463C57.9269 50.0479 58.1702 50.0986 58.458 50.0986C58.8177 50.0986 59.1351 50.0225 59.4102 49.8701C59.6852 49.7178 59.9032 49.5316 60.064 49.3115C60.229 49.0915 60.3179 48.8778 60.3306 48.6704L60.832 49.2354C60.8024 49.4131 60.722 49.6099 60.5908 49.8257C60.4596 50.0415 60.284 50.2489 60.064 50.4478C59.8481 50.6424 59.59 50.8053 59.2896 50.9365C58.9933 51.0635 58.659 51.127 58.2866 51.127C57.8211 51.127 57.4128 51.036 57.0615 50.854C56.7145 50.672 56.4437 50.4287 56.249 50.124C56.0586 49.8151 55.9634 49.4702 55.9634 49.0894C55.9634 48.7212 56.0353 48.3975 56.1792 48.1182C56.3231 47.8346 56.5304 47.5998 56.8013 47.4136C57.0721 47.2231 57.3979 47.0793 57.7788 46.9819C58.1597 46.8846 58.585 46.8359 59.0547 46.8359H60.4194ZM64.4185 41.25V51H63.2378V41.25H64.4185ZM68.6143 44.1318L65.6182 47.3374L63.9424 49.0767L63.8472 47.8262L65.0469 46.3916L67.1797 44.1318H68.6143ZM67.5415 51L65.0913 47.7246L65.7007 46.6772L68.9253 51H67.5415ZM71.5786 51H70.4043V43.4082C70.4043 42.9131 70.4932 42.4963 70.6709 42.1577C70.8529 41.8149 71.1131 41.5568 71.4517 41.3833C71.7902 41.2056 72.1922 41.1167 72.6577 41.1167C72.7931 41.1167 72.9285 41.1252 73.064 41.1421C73.2036 41.159 73.339 41.1844 73.4702 41.2183L73.4067 42.1768C73.3179 42.1556 73.2163 42.1408 73.1021 42.1323C72.992 42.1239 72.882 42.1196 72.772 42.1196C72.5223 42.1196 72.3065 42.1704 72.1245 42.272C71.9468 42.3693 71.8114 42.5132 71.7183 42.7036C71.6252 42.894 71.5786 43.1289 71.5786 43.4082V51ZM73.0386 44.1318V45.0332H69.3188V44.1318H73.0386ZM78.396 49.8257V46.29C78.396 46.0192 78.341 45.7843 78.231 45.5854C78.1252 45.3823 77.9644 45.2257 77.7485 45.1157C77.5327 45.0057 77.2661 44.9507 76.9487 44.9507C76.6525 44.9507 76.3923 45.0015 76.168 45.103C75.9479 45.2046 75.7744 45.3379 75.6475 45.5029C75.5247 45.668 75.4634 45.8457 75.4634 46.0361H74.2891C74.2891 45.7907 74.3525 45.5474 74.4795 45.3062C74.6064 45.0649 74.7884 44.847 75.0254 44.6523C75.2666 44.4535 75.5544 44.2969 75.8887 44.1826C76.2272 44.0641 76.6038 44.0049 77.0186 44.0049C77.5179 44.0049 77.958 44.0895 78.3389 44.2588C78.724 44.4281 79.0244 44.6841 79.2402 45.0269C79.4603 45.3654 79.5703 45.7907 79.5703 46.3027V49.502C79.5703 49.7305 79.5894 49.9738 79.6274 50.2319C79.6698 50.4901 79.7311 50.7122 79.8115 50.8984V51H78.5864C78.5272 50.8646 78.4806 50.6847 78.4468 50.4604C78.4129 50.2319 78.396 50.0203 78.396 49.8257ZM78.5991 46.8359L78.6118 47.6611H77.4248C77.0905 47.6611 76.7922 47.6886 76.5298 47.7437C76.2674 47.7944 76.0474 47.8727 75.8696 47.9785C75.6919 48.0843 75.5565 48.2176 75.4634 48.3784C75.3703 48.535 75.3237 48.7191 75.3237 48.9307C75.3237 49.1465 75.3724 49.3433 75.4697 49.521C75.5671 49.6987 75.7131 49.8405 75.9077 49.9463C76.1066 50.0479 76.3499 50.0986 76.6377 50.0986C76.9974 50.0986 77.3148 50.0225 77.5898 49.8701C77.8649 49.7178 78.0828 49.5316 78.2437 49.3115C78.4087 49.0915 78.4976 48.8778 78.5103 48.6704L79.0117 49.2354C78.9821 49.4131 78.9017 49.6099 78.7705 49.8257C78.6393 50.0415 78.4637 50.2489 78.2437 50.4478C78.0278 50.6424 77.7697 50.8053 77.4692 50.9365C77.173 51.0635 76.8387 51.127 76.4663 51.127C76.0008 51.127 75.5924 51.036 75.2412 50.854C74.8942 50.672 74.6234 50.4287 74.4287 50.124C74.2383 49.8151 74.1431 49.4702 74.1431 49.0894C74.1431 48.7212 74.215 48.3975 74.3589 48.1182C74.5028 47.8346 74.7101 47.5998 74.981 47.4136C75.2518 47.2231 75.5776 47.0793 75.9585 46.9819C76.3394 46.8846 76.7646 46.8359 77.2344 46.8359H78.5991ZM85.4165 49.1782C85.4165 49.009 85.3784 48.8524 85.3022 48.7085C85.2303 48.5604 85.0801 48.4271 84.8516 48.3086C84.6273 48.1859 84.2887 48.0801 83.8359 47.9912C83.4551 47.9108 83.1102 47.8156 82.8013 47.7056C82.4966 47.5955 82.2363 47.4622 82.0205 47.3057C81.8089 47.1491 81.646 46.965 81.5317 46.7534C81.4175 46.5418 81.3604 46.2943 81.3604 46.0107C81.3604 45.7399 81.4196 45.4839 81.5381 45.2427C81.6608 45.0015 81.8322 44.7878 82.0522 44.6016C82.2765 44.4154 82.5452 44.2694 82.8584 44.1636C83.1715 44.0578 83.5207 44.0049 83.9058 44.0049C84.4559 44.0049 84.9256 44.1022 85.3149 44.2969C85.7043 44.4915 86.0026 44.7518 86.21 45.0776C86.4173 45.3993 86.521 45.7568 86.521 46.1504H85.3467C85.3467 45.96 85.2896 45.7759 85.1753 45.5981C85.0653 45.4162 84.9023 45.266 84.6865 45.1475C84.4749 45.029 84.2147 44.9697 83.9058 44.9697C83.5799 44.9697 83.3154 45.0205 83.1123 45.1221C82.9134 45.2194 82.7674 45.3442 82.6743 45.4966C82.5854 45.6489 82.541 45.8097 82.541 45.979C82.541 46.106 82.5622 46.2202 82.6045 46.3218C82.651 46.4191 82.7314 46.5101 82.8457 46.5947C82.96 46.6751 83.1208 46.7513 83.3281 46.8232C83.5355 46.8952 83.8 46.9671 84.1216 47.0391C84.6844 47.166 85.1478 47.3184 85.5117 47.4961C85.8757 47.6738 86.1465 47.8918 86.3242 48.1499C86.502 48.408 86.5908 48.7212 86.5908 49.0894C86.5908 49.3898 86.5273 49.6649 86.4004 49.9146C86.2777 50.1642 86.0978 50.38 85.8608 50.562C85.6281 50.7397 85.3488 50.8794 85.0229 50.981C84.7013 51.0783 84.3395 51.127 83.9375 51.127C83.3324 51.127 82.8203 51.019 82.4014 50.8032C81.9824 50.5874 81.665 50.3081 81.4492 49.9653C81.2334 49.6226 81.1255 49.2607 81.1255 48.8799H82.3062C82.3231 49.2015 82.4162 49.4575 82.5854 49.6479C82.7547 49.8341 82.9621 49.9674 83.2075 50.0479C83.453 50.124 83.6963 50.1621 83.9375 50.1621C84.2591 50.1621 84.5278 50.1198 84.7437 50.0352C84.9637 49.9505 85.1309 49.8341 85.2451 49.686C85.3594 49.5379 85.4165 49.3687 85.4165 49.1782ZM91.0088 44.1318V45.0332H87.2954V44.1318H91.0088ZM88.5522 42.4624H89.7266V49.2988C89.7266 49.5316 89.7625 49.7072 89.8345 49.8257C89.9064 49.9442 89.9995 50.0225 90.1138 50.0605C90.228 50.0986 90.3507 50.1177 90.4819 50.1177C90.5793 50.1177 90.6808 50.1092 90.7866 50.0923C90.8966 50.0711 90.9792 50.0542 91.0342 50.0415L91.0405 51C90.9474 51.0296 90.8247 51.0571 90.6724 51.0825C90.5243 51.1121 90.3444 51.127 90.1328 51.127C89.8451 51.127 89.5806 51.0698 89.3394 50.9556C89.0981 50.8413 88.9056 50.6509 88.7617 50.3843C88.6221 50.1134 88.5522 49.7495 88.5522 49.2925V42.4624ZM101.546 46.0425V47.147H95.2109V46.0425H101.546ZM98.9688 43.3447V50.0732H97.7944V43.3447H98.9688ZM109.595 40.2598V42.1958H108.643V40.2598H109.595ZM109.48 50.6255V52.3203H108.535V50.6255H109.48ZM110.75 48.6196C110.75 48.3657 110.693 48.1372 110.579 47.9341C110.464 47.731 110.276 47.5448 110.014 47.3755C109.751 47.2062 109.4 47.0496 108.96 46.9058C108.427 46.7407 107.965 46.5397 107.576 46.3027C107.191 46.0658 106.893 45.7716 106.681 45.4204C106.474 45.0692 106.37 44.6439 106.37 44.1445C106.37 43.624 106.482 43.1755 106.707 42.7988C106.931 42.4222 107.248 42.1323 107.659 41.9292C108.069 41.7261 108.552 41.6245 109.106 41.6245C109.538 41.6245 109.923 41.6901 110.261 41.8213C110.6 41.9482 110.885 42.1387 111.118 42.3926C111.355 42.6465 111.535 42.9575 111.658 43.3257C111.785 43.6938 111.848 44.1191 111.848 44.6016H110.68C110.68 44.318 110.646 44.0578 110.579 43.8208C110.511 43.5838 110.409 43.3786 110.274 43.2051C110.139 43.0273 109.973 42.8919 109.779 42.7988C109.584 42.7015 109.36 42.6528 109.106 42.6528C108.75 42.6528 108.456 42.7142 108.224 42.8369C107.995 42.9596 107.826 43.1331 107.716 43.3574C107.606 43.5775 107.551 43.8335 107.551 44.1255C107.551 44.3963 107.606 44.6333 107.716 44.8364C107.826 45.0396 108.012 45.2236 108.274 45.3887C108.541 45.5495 108.907 45.7082 109.373 45.8647C109.918 46.0382 110.382 46.2435 110.763 46.4805C111.144 46.7132 111.433 47.001 111.632 47.3438C111.831 47.6823 111.931 48.1034 111.931 48.6069C111.931 49.1528 111.808 49.6141 111.562 49.9907C111.317 50.3631 110.972 50.6466 110.528 50.8413C110.083 51.036 109.563 51.1333 108.966 51.1333C108.607 51.1333 108.251 51.0846 107.9 50.9873C107.549 50.89 107.231 50.7313 106.948 50.5112C106.664 50.2869 106.438 49.9928 106.269 49.6289C106.099 49.2607 106.015 48.8101 106.015 48.2769H107.195C107.195 48.6366 107.246 48.9349 107.348 49.1719C107.453 49.4046 107.593 49.5908 107.767 49.7305C107.94 49.8659 108.131 49.9632 108.338 50.0225C108.549 50.0775 108.759 50.105 108.966 50.105C109.347 50.105 109.669 50.0457 109.931 49.9272C110.198 49.8045 110.401 49.631 110.541 49.4067C110.68 49.1825 110.75 48.9201 110.75 48.6196ZM117.256 41.707V51H116.082V43.1733L113.714 44.0366V42.9766L117.072 41.707H117.256ZM122.195 46.6011L121.255 46.3599L121.719 41.7578H126.46V42.8433H122.715L122.436 45.3569C122.605 45.2596 122.819 45.1686 123.077 45.084C123.34 44.9993 123.64 44.957 123.979 44.957C124.406 44.957 124.789 45.0311 125.127 45.1792C125.466 45.3231 125.754 45.5304 125.991 45.8013C126.232 46.0721 126.416 46.3979 126.543 46.7788C126.67 47.1597 126.733 47.585 126.733 48.0547C126.733 48.499 126.672 48.9074 126.549 49.2798C126.431 49.6522 126.251 49.978 126.01 50.2573C125.769 50.5324 125.464 50.7461 125.096 50.8984C124.732 51.0508 124.302 51.127 123.807 51.127C123.435 51.127 123.081 51.0762 122.747 50.9746C122.417 50.8688 122.121 50.7101 121.858 50.4985C121.6 50.2827 121.389 50.0161 121.224 49.6987C121.063 49.3771 120.961 49.0005 120.919 48.5688H122.036C122.087 48.9159 122.188 49.2078 122.341 49.4448C122.493 49.6818 122.692 49.8617 122.938 49.9844C123.187 50.1029 123.477 50.1621 123.807 50.1621C124.086 50.1621 124.334 50.1134 124.55 50.0161C124.766 49.9188 124.948 49.7791 125.096 49.5972C125.244 49.4152 125.356 49.1951 125.432 48.937C125.513 48.6789 125.553 48.389 125.553 48.0674C125.553 47.7754 125.513 47.5046 125.432 47.2549C125.352 47.0052 125.231 46.7873 125.07 46.6011C124.914 46.4149 124.721 46.271 124.493 46.1694C124.264 46.0636 124.002 46.0107 123.706 46.0107C123.312 46.0107 123.014 46.0636 122.811 46.1694C122.612 46.2752 122.406 46.4191 122.195 46.6011Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M22.8563 72.4813L28.275 67.0438L27.4688 66.2375L22.8563 70.8687L20.625 68.6375L19.8188 69.4438L22.8563 72.4813ZM18.375 76.25C18.075 76.25 17.8125 76.1375 17.5875 75.9125C17.3625 75.6875 17.25 75.425 17.25 75.125V63.875C17.25 63.575 17.3625 63.3125 17.5875 63.0875C17.8125 62.8625 18.075 62.75 18.375 62.75H29.625C29.925 62.75 30.1875 62.8625 30.4125 63.0875C30.6375 63.3125 30.75 63.575 30.75 63.875V75.125C30.75 75.425 30.6375 75.6875 30.4125 75.9125C30.1875 76.1375 29.925 76.25 29.625 76.25H18.375Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M40.4878 64.7578V74H39.2817V64.7578H40.4878ZM43.4585 64.7578V65.7607H36.3174V64.7578H43.4585ZM45.3438 68.2109V74H44.1694V67.1318H45.312L45.3438 68.2109ZM47.4893 67.0938L47.4829 68.1855C47.3856 68.1644 47.2925 68.1517 47.2036 68.1475C47.119 68.139 47.0216 68.1348 46.9116 68.1348C46.6408 68.1348 46.4017 68.1771 46.1943 68.2617C45.987 68.3464 45.8114 68.4648 45.6675 68.6172C45.5236 68.7695 45.4093 68.9515 45.3247 69.1631C45.2443 69.3704 45.1914 69.599 45.166 69.8486L44.8359 70.0391C44.8359 69.6243 44.8761 69.235 44.9565 68.8711C45.0412 68.5072 45.1702 68.1855 45.3438 67.9062C45.5173 67.6227 45.7373 67.4027 46.0039 67.2461C46.2747 67.0853 46.5964 67.0049 46.9688 67.0049C47.0534 67.0049 47.1507 67.0155 47.2607 67.0366C47.3708 67.0535 47.4469 67.0726 47.4893 67.0938ZM52.3706 72.8257V69.29C52.3706 69.0192 52.3156 68.7843 52.2056 68.5854C52.0998 68.3823 51.939 68.2257 51.7231 68.1157C51.5073 68.0057 51.2407 67.9507 50.9233 67.9507C50.6271 67.9507 50.3669 68.0015 50.1426 68.103C49.9225 68.2046 49.749 68.3379 49.6221 68.5029C49.4993 68.668 49.438 68.8457 49.438 69.0361H48.2637C48.2637 68.7907 48.3271 68.5474 48.4541 68.3062C48.5811 68.0649 48.763 67.847 49 67.6523C49.2412 67.4535 49.529 67.2969 49.8633 67.1826C50.2018 67.0641 50.5785 67.0049 50.9932 67.0049C51.4925 67.0049 51.9326 67.0895 52.3135 67.2588C52.6986 67.4281 52.999 67.6841 53.2148 68.0269C53.4349 68.3654 53.5449 68.7907 53.5449 69.3027V72.502C53.5449 72.7305 53.564 72.9738 53.6021 73.2319C53.6444 73.4901 53.7057 73.7122 53.7861 73.8984V74H52.561C52.5018 73.8646 52.4552 73.6847 52.4214 73.4604C52.3875 73.2319 52.3706 73.0203 52.3706 72.8257ZM52.5737 69.8359L52.5864 70.6611H51.3994C51.0651 70.6611 50.7668 70.6886 50.5044 70.7437C50.242 70.7944 50.022 70.8727 49.8442 70.9785C49.6665 71.0843 49.5311 71.2176 49.438 71.3784C49.3449 71.535 49.2983 71.7191 49.2983 71.9307C49.2983 72.1465 49.347 72.3433 49.4443 72.521C49.5417 72.6987 49.6877 72.8405 49.8823 72.9463C50.0812 73.0479 50.3245 73.0986 50.6123 73.0986C50.972 73.0986 51.2894 73.0225 51.5645 72.8701C51.8395 72.7178 52.0575 72.5316 52.2183 72.3115C52.3833 72.0915 52.4722 71.8778 52.4849 71.6704L52.9863 72.2354C52.9567 72.4131 52.8763 72.6099 52.7451 72.8257C52.6139 73.0415 52.4383 73.2489 52.2183 73.4478C52.0024 73.6424 51.7443 73.8053 51.4438 73.9365C51.1476 74.0635 50.8133 74.127 50.4409 74.127C49.9754 74.127 49.5671 74.036 49.2158 73.854C48.8688 73.672 48.598 73.4287 48.4033 73.124C48.2129 72.8151 48.1177 72.4702 48.1177 72.0894C48.1177 71.7212 48.1896 71.3975 48.3335 71.1182C48.4774 70.8346 48.6847 70.5998 48.9556 70.4136C49.2264 70.2231 49.5522 70.0793 49.9331 69.9819C50.314 69.8846 50.7393 69.8359 51.209 69.8359H52.5737ZM56.5664 68.5981V74H55.3921V67.1318H56.5029L56.5664 68.5981ZM56.2871 70.3057L55.7983 70.2866C55.8026 69.8169 55.8724 69.3831 56.0078 68.9854C56.1432 68.5833 56.3337 68.2342 56.5791 67.938C56.8245 67.6418 57.1165 67.4132 57.4551 67.2524C57.7979 67.0874 58.1766 67.0049 58.5913 67.0049C58.9299 67.0049 59.2345 67.0514 59.5054 67.1445C59.7762 67.2334 60.0068 67.3773 60.1973 67.5762C60.3919 67.7751 60.54 68.0332 60.6416 68.3506C60.7432 68.6637 60.7939 69.0467 60.7939 69.4995V74H59.6133V69.4868C59.6133 69.1271 59.5604 68.8394 59.4546 68.6235C59.3488 68.4035 59.1943 68.2448 58.9912 68.1475C58.7881 68.0459 58.5384 67.9951 58.2422 67.9951C57.9502 67.9951 57.6836 68.0565 57.4424 68.1792C57.2054 68.3019 57.0002 68.4712 56.8267 68.687C56.6574 68.9028 56.5241 69.1504 56.4268 69.4297C56.3337 69.7048 56.2871 69.9967 56.2871 70.3057ZM66.5767 72.1782C66.5767 72.009 66.5386 71.8524 66.4624 71.7085C66.3905 71.5604 66.2402 71.4271 66.0117 71.3086C65.7874 71.1859 65.4489 71.0801 64.9961 70.9912C64.6152 70.9108 64.2703 70.8156 63.9614 70.7056C63.6567 70.5955 63.3965 70.4622 63.1807 70.3057C62.9691 70.1491 62.8062 69.965 62.6919 69.7534C62.5776 69.5418 62.5205 69.2943 62.5205 69.0107C62.5205 68.7399 62.5798 68.4839 62.6982 68.2427C62.821 68.0015 62.9924 67.7878 63.2124 67.6016C63.4367 67.4154 63.7054 67.2694 64.0186 67.1636C64.3317 67.0578 64.6808 67.0049 65.0659 67.0049C65.616 67.0049 66.0858 67.1022 66.4751 67.2969C66.8644 67.4915 67.1628 67.7518 67.3701 68.0776C67.5775 68.3993 67.6812 68.7568 67.6812 69.1504H66.5068C66.5068 68.96 66.4497 68.7759 66.3354 68.5981C66.2254 68.4162 66.0625 68.266 65.8467 68.1475C65.6351 68.029 65.3748 67.9697 65.0659 67.9697C64.7401 67.9697 64.4756 68.0205 64.2725 68.1221C64.0736 68.2194 63.9276 68.3442 63.8345 68.4966C63.7456 68.6489 63.7012 68.8097 63.7012 68.979C63.7012 69.106 63.7223 69.2202 63.7646 69.3218C63.8112 69.4191 63.8916 69.5101 64.0059 69.5947C64.1201 69.6751 64.2809 69.7513 64.4883 69.8232C64.6956 69.8952 64.9601 69.9671 65.2817 70.0391C65.8446 70.166 66.3079 70.3184 66.6719 70.4961C67.0358 70.6738 67.3066 70.8918 67.4844 71.1499C67.6621 71.408 67.751 71.7212 67.751 72.0894C67.751 72.3898 67.6875 72.6649 67.5605 72.9146C67.4378 73.1642 67.258 73.38 67.021 73.562C66.7882 73.7397 66.509 73.8794 66.1831 73.981C65.8615 74.0783 65.4997 74.127 65.0977 74.127C64.4925 74.127 63.9805 74.019 63.5615 73.8032C63.1426 73.5874 62.8252 73.3081 62.6094 72.9653C62.3936 72.6226 62.2856 72.2607 62.2856 71.8799H63.4663C63.4832 72.2015 63.5763 72.4575 63.7456 72.6479C63.9149 72.8341 64.1222 72.9674 64.3677 73.0479C64.6131 73.124 64.8564 73.1621 65.0977 73.1621C65.4193 73.1621 65.688 73.1198 65.9038 73.0352C66.1239 72.9505 66.291 72.8341 66.4053 72.686C66.5195 72.5379 66.5767 72.3687 66.5767 72.1782ZM71.0454 74H69.8711V66.4082C69.8711 65.9131 69.96 65.4963 70.1377 65.1577C70.3197 64.8149 70.5799 64.5568 70.9185 64.3833C71.257 64.2056 71.659 64.1167 72.1245 64.1167C72.2599 64.1167 72.3953 64.1252 72.5308 64.1421C72.6704 64.159 72.8058 64.1844 72.937 64.2183L72.8735 65.1768C72.7847 65.1556 72.6831 65.1408 72.5688 65.1323C72.4588 65.1239 72.3488 65.1196 72.2388 65.1196C71.9891 65.1196 71.7733 65.1704 71.5913 65.272C71.4136 65.3693 71.2782 65.5132 71.1851 65.7036C71.092 65.894 71.0454 66.1289 71.0454 66.4082V74ZM72.5054 67.1318V68.0332H68.7856V67.1318H72.5054ZM76.5107 74.127C76.0326 74.127 75.5988 74.0465 75.2095 73.8857C74.8244 73.7207 74.4922 73.4901 74.2129 73.1938C73.9378 72.8976 73.7262 72.5464 73.5781 72.1401C73.43 71.7339 73.356 71.2896 73.356 70.8071V70.5405C73.356 69.9819 73.4385 69.4847 73.6035 69.0488C73.7686 68.6087 73.9928 68.2363 74.2764 67.9316C74.5599 67.627 74.8815 67.3963 75.2412 67.2397C75.6009 67.0832 75.9733 67.0049 76.3584 67.0049C76.8493 67.0049 77.2725 67.0895 77.6279 67.2588C77.9876 67.4281 78.2817 67.665 78.5103 67.9697C78.7388 68.2702 78.908 68.6257 79.0181 69.0361C79.1281 69.4424 79.1831 69.8867 79.1831 70.3691V70.896H74.0542V69.9375H78.0088V69.8486C77.9919 69.5439 77.9284 69.2477 77.8184 68.96C77.7126 68.6722 77.5433 68.4352 77.3105 68.249C77.0778 68.0628 76.7604 67.9697 76.3584 67.9697C76.0918 67.9697 75.8464 68.0269 75.6221 68.1411C75.3978 68.2511 75.2052 68.4162 75.0444 68.6362C74.8836 68.8563 74.7588 69.125 74.6699 69.4424C74.5811 69.7598 74.5366 70.1258 74.5366 70.5405V70.8071C74.5366 71.133 74.5811 71.4398 74.6699 71.7275C74.763 72.0111 74.8963 72.2607 75.0698 72.4766C75.2476 72.6924 75.4613 72.8617 75.7109 72.9844C75.9648 73.1071 76.2526 73.1685 76.5742 73.1685C76.9889 73.1685 77.3402 73.0838 77.6279 72.9146C77.9157 72.7453 78.1675 72.5189 78.3833 72.2354L79.0942 72.8003C78.9461 73.0246 78.7578 73.2383 78.5293 73.4414C78.3008 73.6445 78.0194 73.8096 77.6851 73.9365C77.355 74.0635 76.9635 74.127 76.5107 74.127ZM81.7285 68.2109V74H80.5542V67.1318H81.6968L81.7285 68.2109ZM83.874 67.0938L83.8677 68.1855C83.7703 68.1644 83.6772 68.1517 83.5884 68.1475C83.5037 68.139 83.4064 68.1348 83.2964 68.1348C83.0256 68.1348 82.7865 68.1771 82.5791 68.2617C82.3717 68.3464 82.1961 68.4648 82.0522 68.6172C81.9084 68.7695 81.7941 68.9515 81.7095 69.1631C81.6291 69.3704 81.5762 69.599 81.5508 69.8486L81.2207 70.0391C81.2207 69.6243 81.2609 69.235 81.3413 68.8711C81.4259 68.5072 81.555 68.1855 81.7285 67.9062C81.902 67.6227 82.1221 67.4027 82.3887 67.2461C82.6595 67.0853 82.9811 67.0049 83.3535 67.0049C83.4382 67.0049 83.5355 67.0155 83.6455 67.0366C83.7555 67.0535 83.8317 67.0726 83.874 67.0938ZM94.1191 69.0425V70.147H87.7842V69.0425H94.1191ZM91.542 66.3447V73.0732H90.3677V66.3447H91.542ZM102.168 63.2598V65.1958H101.216V63.2598H102.168ZM102.054 73.6255V75.3203H101.108V73.6255H102.054ZM103.323 71.6196C103.323 71.3657 103.266 71.1372 103.152 70.9341C103.038 70.731 102.849 70.5448 102.587 70.3755C102.325 70.2062 101.973 70.0496 101.533 69.9058C101 69.7407 100.539 69.5397 100.149 69.3027C99.7643 69.0658 99.466 68.7716 99.2544 68.4204C99.047 68.0692 98.9434 67.6439 98.9434 67.1445C98.9434 66.624 99.0555 66.1755 99.2798 65.7988C99.5041 65.4222 99.8215 65.1323 100.232 64.9292C100.642 64.7261 101.125 64.6245 101.679 64.6245C102.111 64.6245 102.496 64.6901 102.834 64.8213C103.173 64.9482 103.459 65.1387 103.691 65.3926C103.928 65.6465 104.108 65.9575 104.231 66.3257C104.358 66.6938 104.421 67.1191 104.421 67.6016H103.253C103.253 67.318 103.22 67.0578 103.152 66.8208C103.084 66.5838 102.983 66.3786 102.847 66.2051C102.712 66.0273 102.547 65.8919 102.352 65.7988C102.157 65.7015 101.933 65.6528 101.679 65.6528C101.324 65.6528 101.03 65.7142 100.797 65.8369C100.568 65.9596 100.399 66.1331 100.289 66.3574C100.179 66.5775 100.124 66.8335 100.124 67.1255C100.124 67.3963 100.179 67.6333 100.289 67.8364C100.399 68.0396 100.585 68.2236 100.848 68.3887C101.114 68.5495 101.48 68.7082 101.946 68.8647C102.492 69.0382 102.955 69.2435 103.336 69.4805C103.717 69.7132 104.007 70.001 104.206 70.3438C104.404 70.6823 104.504 71.1034 104.504 71.6069C104.504 72.1528 104.381 72.6141 104.136 72.9907C103.89 73.3631 103.545 73.6466 103.101 73.8413C102.657 74.036 102.136 74.1333 101.54 74.1333C101.18 74.1333 100.824 74.0846 100.473 73.9873C100.122 73.89 99.8045 73.7313 99.521 73.5112C99.2375 73.2869 99.0111 72.9928 98.8418 72.6289C98.6725 72.2607 98.5879 71.8101 98.5879 71.2769H99.7686C99.7686 71.6366 99.8193 71.9349 99.9209 72.1719C100.027 72.4046 100.166 72.5908 100.34 72.7305C100.513 72.8659 100.704 72.9632 100.911 73.0225C101.123 73.0775 101.332 73.105 101.54 73.105C101.92 73.105 102.242 73.0457 102.504 72.9272C102.771 72.8045 102.974 72.631 103.114 72.4067C103.253 72.1825 103.323 71.9201 103.323 71.6196ZM107.684 68.8013H108.522C108.932 68.8013 109.271 68.7336 109.538 68.5981C109.808 68.4585 110.009 68.2702 110.141 68.0332C110.276 67.792 110.344 67.5212 110.344 67.2207C110.344 66.8652 110.285 66.5669 110.166 66.3257C110.048 66.0845 109.87 65.9025 109.633 65.7798C109.396 65.6571 109.095 65.5957 108.731 65.5957C108.401 65.5957 108.109 65.6613 107.855 65.7925C107.606 65.9194 107.409 66.1014 107.265 66.3384C107.125 66.5754 107.056 66.8547 107.056 67.1763H105.881C105.881 66.7065 106 66.2791 106.237 65.894C106.474 65.509 106.806 65.2021 107.233 64.9736C107.665 64.7451 108.164 64.6309 108.731 64.6309C109.29 64.6309 109.779 64.7303 110.198 64.9292C110.617 65.1239 110.943 65.4159 111.175 65.8052C111.408 66.1903 111.524 66.6706 111.524 67.2461C111.524 67.4788 111.469 67.7285 111.359 67.9951C111.254 68.2575 111.086 68.5029 110.858 68.7314C110.634 68.96 110.342 69.1483 109.982 69.2964C109.622 69.4403 109.191 69.5122 108.687 69.5122H107.684V68.8013ZM107.684 69.7661V69.0615H108.687C109.275 69.0615 109.762 69.1313 110.147 69.271C110.532 69.4106 110.835 69.5968 111.055 69.8296C111.279 70.0623 111.436 70.3184 111.524 70.5977C111.618 70.8727 111.664 71.1478 111.664 71.4229C111.664 71.8545 111.59 72.2375 111.442 72.5718C111.298 72.9061 111.093 73.1896 110.826 73.4224C110.564 73.6551 110.255 73.8307 109.899 73.9492C109.544 74.0677 109.157 74.127 108.738 74.127C108.336 74.127 107.957 74.0698 107.602 73.9556C107.25 73.8413 106.939 73.6763 106.668 73.4604C106.398 73.2404 106.186 72.9717 106.034 72.6543C105.881 72.3327 105.805 71.9666 105.805 71.5562H106.979C106.979 71.8778 107.049 72.1592 107.189 72.4004C107.333 72.6416 107.536 72.8299 107.798 72.9653C108.065 73.0965 108.378 73.1621 108.738 73.1621C109.097 73.1621 109.406 73.1007 109.665 72.978C109.927 72.8511 110.128 72.6606 110.268 72.4067C110.411 72.1528 110.483 71.8333 110.483 71.4482C110.483 71.0632 110.403 70.7479 110.242 70.5024C110.081 70.2528 109.853 70.0687 109.557 69.9502C109.265 69.8275 108.92 69.7661 108.522 69.7661H107.684ZM119.084 68.6426V70.0518C119.084 70.8092 119.017 71.4482 118.881 71.9688C118.746 72.4893 118.551 72.9082 118.297 73.2256C118.043 73.543 117.737 73.7736 117.377 73.9175C117.021 74.0571 116.619 74.127 116.171 74.127C115.815 74.127 115.487 74.0825 115.187 73.9937C114.887 73.9048 114.616 73.763 114.375 73.5684C114.138 73.3695 113.934 73.1113 113.765 72.7939C113.596 72.4766 113.467 72.0915 113.378 71.6387C113.289 71.1859 113.245 70.6569 113.245 70.0518V68.6426C113.245 67.8851 113.312 67.2503 113.448 66.7383C113.587 66.2262 113.784 65.8158 114.038 65.5068C114.292 65.1937 114.597 64.9694 114.952 64.834C115.312 64.6986 115.714 64.6309 116.158 64.6309C116.518 64.6309 116.848 64.6753 117.148 64.7642C117.453 64.8488 117.724 64.9863 117.961 65.1768C118.198 65.363 118.399 65.6126 118.564 65.9258C118.733 66.2347 118.862 66.6134 118.951 67.062C119.04 67.5106 119.084 68.0374 119.084 68.6426ZM117.904 70.2422V68.4458C117.904 68.0311 117.878 67.6672 117.828 67.354C117.781 67.0366 117.711 66.7658 117.618 66.5415C117.525 66.3172 117.407 66.1353 117.263 65.9956C117.123 65.856 116.96 65.7544 116.774 65.6909C116.592 65.6232 116.387 65.5894 116.158 65.5894C115.879 65.5894 115.631 65.6423 115.416 65.748C115.2 65.8496 115.018 66.0125 114.87 66.2368C114.726 66.4611 114.616 66.7552 114.54 67.1191C114.463 67.4831 114.425 67.9253 114.425 68.4458V70.2422C114.425 70.6569 114.449 71.0229 114.495 71.3403C114.546 71.6577 114.62 71.9328 114.717 72.1655C114.815 72.394 114.933 72.5824 115.073 72.7305C115.212 72.8786 115.373 72.9886 115.555 73.0605C115.741 73.1283 115.947 73.1621 116.171 73.1621C116.459 73.1621 116.71 73.1071 116.926 72.9971C117.142 72.887 117.322 72.7157 117.466 72.4829C117.614 72.2459 117.724 71.9434 117.796 71.5752C117.868 71.2028 117.904 70.7585 117.904 70.2422Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"15",y:"88.5",width:"268",height:"38",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M31.6523 108.561H32.8711C32.8076 109.145 32.6405 109.668 32.3696 110.129C32.0988 110.59 31.7158 110.956 31.2207 111.227C30.7256 111.494 30.1077 111.627 29.3672 111.627C28.8255 111.627 28.3325 111.525 27.8882 111.322C27.4481 111.119 27.0693 110.831 26.752 110.459C26.4346 110.082 26.1891 109.632 26.0156 109.107C25.8464 108.578 25.7617 107.99 25.7617 107.342V106.422C25.7617 105.774 25.8464 105.188 26.0156 104.664C26.1891 104.135 26.4367 103.682 26.7583 103.305C27.0841 102.929 27.4756 102.639 27.9326 102.436C28.3896 102.232 28.9038 102.131 29.4751 102.131C30.1733 102.131 30.7637 102.262 31.2461 102.524C31.7285 102.787 32.103 103.151 32.3696 103.616C32.6405 104.077 32.8076 104.613 32.8711 105.222H31.6523C31.5931 104.791 31.4831 104.42 31.3223 104.111C31.1615 103.798 30.9329 103.557 30.6367 103.388C30.3405 103.218 29.9533 103.134 29.4751 103.134C29.0646 103.134 28.7028 103.212 28.3896 103.369C28.0807 103.525 27.8205 103.747 27.6089 104.035C27.4015 104.323 27.245 104.668 27.1392 105.07C27.0334 105.472 26.9805 105.918 26.9805 106.409V107.342C26.9805 107.795 27.027 108.22 27.1201 108.618C27.2174 109.016 27.3634 109.365 27.5581 109.666C27.7528 109.966 28.0003 110.203 28.3008 110.376C28.6012 110.546 28.9567 110.63 29.3672 110.63C29.8877 110.63 30.3024 110.548 30.6113 110.383C30.9202 110.218 31.153 109.981 31.3096 109.672C31.4704 109.363 31.5846 108.993 31.6523 108.561ZM38.4126 110.326V106.79C38.4126 106.519 38.3576 106.284 38.2476 106.085C38.1418 105.882 37.981 105.726 37.7651 105.616C37.5493 105.506 37.2827 105.451 36.9653 105.451C36.6691 105.451 36.4089 105.501 36.1846 105.603C35.9645 105.705 35.791 105.838 35.6641 106.003C35.5413 106.168 35.48 106.346 35.48 106.536H34.3057C34.3057 106.291 34.3691 106.047 34.4961 105.806C34.623 105.565 34.805 105.347 35.042 105.152C35.2832 104.953 35.571 104.797 35.9053 104.683C36.2438 104.564 36.6204 104.505 37.0352 104.505C37.5345 104.505 37.9746 104.59 38.3555 104.759C38.7406 104.928 39.041 105.184 39.2568 105.527C39.4769 105.865 39.5869 106.291 39.5869 106.803V110.002C39.5869 110.23 39.606 110.474 39.644 110.732C39.6864 110.99 39.7477 111.212 39.8281 111.398V111.5H38.603C38.5438 111.365 38.4972 111.185 38.4634 110.96C38.4295 110.732 38.4126 110.52 38.4126 110.326ZM38.6157 107.336L38.6284 108.161H37.4414C37.1071 108.161 36.8088 108.189 36.5464 108.244C36.284 108.294 36.064 108.373 35.8862 108.479C35.7085 108.584 35.5731 108.718 35.48 108.878C35.3869 109.035 35.3403 109.219 35.3403 109.431C35.3403 109.646 35.389 109.843 35.4863 110.021C35.5837 110.199 35.7297 110.34 35.9243 110.446C36.1232 110.548 36.3665 110.599 36.6543 110.599C37.014 110.599 37.3314 110.522 37.6064 110.37C37.8815 110.218 38.0994 110.032 38.2603 109.812C38.4253 109.591 38.5142 109.378 38.5269 109.17L39.0283 109.735C38.9987 109.913 38.9183 110.11 38.7871 110.326C38.6559 110.542 38.4803 110.749 38.2603 110.948C38.0444 111.142 37.7863 111.305 37.4858 111.437C37.1896 111.563 36.8553 111.627 36.4829 111.627C36.0174 111.627 35.609 111.536 35.2578 111.354C34.9108 111.172 34.64 110.929 34.4453 110.624C34.2549 110.315 34.1597 109.97 34.1597 109.589C34.1597 109.221 34.2316 108.897 34.3755 108.618C34.5194 108.335 34.7267 108.1 34.9976 107.914C35.2684 107.723 35.5942 107.579 35.9751 107.482C36.356 107.385 36.7812 107.336 37.251 107.336H38.6157ZM42.71 101.75V111.5H41.5293V101.75H42.71ZM47.3438 110.662C47.623 110.662 47.8812 110.605 48.1182 110.491C48.3551 110.376 48.5498 110.22 48.7021 110.021C48.8545 109.818 48.9412 109.587 48.9624 109.329H50.0796C50.0584 109.735 49.9209 110.114 49.667 110.465C49.4173 110.812 49.0894 111.094 48.6831 111.31C48.2769 111.521 47.8304 111.627 47.3438 111.627C46.8275 111.627 46.3768 111.536 45.9917 111.354C45.6108 111.172 45.2935 110.922 45.0396 110.605C44.7899 110.288 44.6016 109.924 44.4746 109.513C44.3519 109.098 44.2905 108.66 44.2905 108.199V107.933C44.2905 107.471 44.3519 107.035 44.4746 106.625C44.6016 106.21 44.7899 105.844 45.0396 105.527C45.2935 105.209 45.6108 104.96 45.9917 104.778C46.3768 104.596 46.8275 104.505 47.3438 104.505C47.8812 104.505 48.3509 104.615 48.7529 104.835C49.1549 105.051 49.4702 105.347 49.6987 105.724C49.9315 106.096 50.0584 106.519 50.0796 106.993H48.9624C48.9412 106.71 48.8608 106.454 48.7212 106.225C48.5858 105.997 48.3996 105.815 48.1626 105.679C47.9299 105.54 47.6569 105.47 47.3438 105.47C46.984 105.47 46.6815 105.542 46.436 105.686C46.1948 105.825 46.0023 106.016 45.8584 106.257C45.7188 106.494 45.6172 106.758 45.5537 107.05C45.4945 107.338 45.4648 107.632 45.4648 107.933V108.199C45.4648 108.5 45.4945 108.796 45.5537 109.088C45.613 109.38 45.7124 109.644 45.8521 109.881C45.9959 110.118 46.1885 110.309 46.4297 110.453C46.6751 110.592 46.9798 110.662 47.3438 110.662ZM55.6021 109.913V104.632H56.7827V111.5H55.6592L55.6021 109.913ZM55.8242 108.466L56.313 108.453C56.313 108.91 56.2643 109.333 56.167 109.723C56.0739 110.108 55.9215 110.442 55.71 110.726C55.4984 111.009 55.2212 111.231 54.8784 111.392C54.5356 111.549 54.1188 111.627 53.6279 111.627C53.2936 111.627 52.9868 111.578 52.7075 111.481C52.4325 111.384 52.1955 111.233 51.9966 111.03C51.7977 110.827 51.6432 110.563 51.5332 110.237C51.4274 109.911 51.3745 109.52 51.3745 109.062V104.632H52.5488V109.075C52.5488 109.384 52.5827 109.64 52.6504 109.843C52.7223 110.042 52.8175 110.201 52.936 110.319C53.0588 110.434 53.1942 110.514 53.3423 110.561C53.4946 110.607 53.6512 110.63 53.812 110.63C54.3114 110.63 54.707 110.535 54.999 110.345C55.291 110.15 55.5005 109.89 55.6274 109.564C55.7586 109.234 55.8242 108.868 55.8242 108.466ZM59.8486 101.75V111.5H58.668V101.75H59.8486ZM65.7837 110.326V106.79C65.7837 106.519 65.7287 106.284 65.6187 106.085C65.5129 105.882 65.3521 105.726 65.1362 105.616C64.9204 105.506 64.6538 105.451 64.3364 105.451C64.0402 105.451 63.7799 105.501 63.5557 105.603C63.3356 105.705 63.1621 105.838 63.0352 106.003C62.9124 106.168 62.8511 106.346 62.8511 106.536H61.6768C61.6768 106.291 61.7402 106.047 61.8672 105.806C61.9941 105.565 62.1761 105.347 62.4131 105.152C62.6543 104.953 62.9421 104.797 63.2764 104.683C63.6149 104.564 63.9915 104.505 64.4062 104.505C64.9056 104.505 65.3457 104.59 65.7266 104.759C66.1117 104.928 66.4121 105.184 66.6279 105.527C66.848 105.865 66.958 106.291 66.958 106.803V110.002C66.958 110.23 66.9771 110.474 67.0151 110.732C67.0575 110.99 67.1188 111.212 67.1992 111.398V111.5H65.9741C65.9149 111.365 65.8683 111.185 65.8345 110.96C65.8006 110.732 65.7837 110.52 65.7837 110.326ZM65.9868 107.336L65.9995 108.161H64.8125C64.4782 108.161 64.1799 108.189 63.9175 108.244C63.6551 108.294 63.4351 108.373 63.2573 108.479C63.0796 108.584 62.9442 108.718 62.8511 108.878C62.758 109.035 62.7114 109.219 62.7114 109.431C62.7114 109.646 62.7601 109.843 62.8574 110.021C62.9548 110.199 63.1007 110.34 63.2954 110.446C63.4943 110.548 63.7376 110.599 64.0254 110.599C64.3851 110.599 64.7025 110.522 64.9775 110.37C65.2526 110.218 65.4705 110.032 65.6313 109.812C65.7964 109.591 65.8853 109.378 65.8979 109.17L66.3994 109.735C66.3698 109.913 66.2894 110.11 66.1582 110.326C66.027 110.542 65.8514 110.749 65.6313 110.948C65.4155 111.142 65.1574 111.305 64.8569 111.437C64.5607 111.563 64.2264 111.627 63.854 111.627C63.3885 111.627 62.9801 111.536 62.6289 111.354C62.2819 111.172 62.0111 110.929 61.8164 110.624C61.626 110.315 61.5308 109.97 61.5308 109.589C61.5308 109.221 61.6027 108.897 61.7466 108.618C61.8905 108.335 62.0978 108.1 62.3687 107.914C62.6395 107.723 62.9653 107.579 63.3462 107.482C63.7271 107.385 64.1523 107.336 64.6221 107.336H65.9868ZM71.6807 104.632V105.533H67.9673V104.632H71.6807ZM69.2241 102.962H70.3984V109.799C70.3984 110.032 70.4344 110.207 70.5063 110.326C70.5783 110.444 70.6714 110.522 70.7856 110.561C70.8999 110.599 71.0226 110.618 71.1538 110.618C71.2511 110.618 71.3527 110.609 71.4585 110.592C71.5685 110.571 71.651 110.554 71.7061 110.542L71.7124 111.5C71.6193 111.53 71.4966 111.557 71.3442 111.583C71.1961 111.612 71.0163 111.627 70.8047 111.627C70.5169 111.627 70.2524 111.57 70.0112 111.456C69.77 111.341 69.5775 111.151 69.4336 110.884C69.2939 110.613 69.2241 110.25 69.2241 109.792V102.962ZM75.9082 111.627C75.43 111.627 74.9963 111.547 74.6069 111.386C74.2218 111.221 73.8896 110.99 73.6104 110.694C73.3353 110.398 73.1237 110.046 72.9756 109.64C72.8275 109.234 72.7534 108.79 72.7534 108.307V108.041C72.7534 107.482 72.8359 106.985 73.001 106.549C73.166 106.109 73.3903 105.736 73.6738 105.432C73.9574 105.127 74.279 104.896 74.6387 104.74C74.9984 104.583 75.3708 104.505 75.7559 104.505C76.2467 104.505 76.6699 104.59 77.0254 104.759C77.3851 104.928 77.6792 105.165 77.9077 105.47C78.1362 105.77 78.3055 106.126 78.4155 106.536C78.5256 106.942 78.5806 107.387 78.5806 107.869V108.396H73.4517V107.438H77.4062V107.349C77.3893 107.044 77.3258 106.748 77.2158 106.46C77.11 106.172 76.9408 105.935 76.708 105.749C76.4753 105.563 76.1579 105.47 75.7559 105.47C75.4893 105.47 75.2438 105.527 75.0195 105.641C74.7952 105.751 74.6027 105.916 74.4419 106.136C74.2811 106.356 74.1562 106.625 74.0674 106.942C73.9785 107.26 73.9341 107.626 73.9341 108.041V108.307C73.9341 108.633 73.9785 108.94 74.0674 109.228C74.1605 109.511 74.2938 109.761 74.4673 109.977C74.645 110.192 74.8587 110.362 75.1084 110.484C75.3623 110.607 75.6501 110.668 75.9717 110.668C76.3864 110.668 76.7376 110.584 77.0254 110.415C77.3132 110.245 77.5649 110.019 77.7808 109.735L78.4917 110.3C78.3436 110.525 78.1553 110.738 77.9268 110.941C77.6982 111.145 77.4168 111.31 77.0825 111.437C76.7524 111.563 76.361 111.627 75.9082 111.627ZM84.2808 110.167V101.75H85.4614V111.5H84.3823L84.2808 110.167ZM79.6597 108.142V108.009C79.6597 107.484 79.7231 107.008 79.8501 106.581C79.9813 106.149 80.1654 105.779 80.4023 105.47C80.6436 105.161 80.9292 104.924 81.2593 104.759C81.5936 104.59 81.966 104.505 82.3765 104.505C82.8081 104.505 83.1847 104.581 83.5063 104.733C83.8322 104.882 84.1073 105.099 84.3315 105.387C84.5601 105.671 84.7399 106.014 84.8711 106.416C85.0023 106.818 85.0933 107.272 85.144 107.78V108.364C85.0975 108.868 85.0065 109.321 84.8711 109.723C84.7399 110.125 84.5601 110.467 84.3315 110.751C84.1073 111.035 83.8322 111.252 83.5063 111.405C83.1805 111.553 82.7996 111.627 82.3638 111.627C81.9618 111.627 81.5936 111.54 81.2593 111.367C80.9292 111.193 80.6436 110.95 80.4023 110.637C80.1654 110.324 79.9813 109.955 79.8501 109.532C79.7231 109.105 79.6597 108.641 79.6597 108.142ZM80.8403 108.009V108.142C80.8403 108.485 80.8742 108.806 80.9419 109.107C81.0138 109.407 81.1239 109.672 81.272 109.9C81.4201 110.129 81.6084 110.309 81.8369 110.44C82.0654 110.567 82.3384 110.63 82.6558 110.63C83.0451 110.63 83.3646 110.548 83.6143 110.383C83.8682 110.218 84.0713 110 84.2236 109.729C84.376 109.458 84.4945 109.164 84.5791 108.847V107.317C84.5283 107.084 84.4543 106.86 84.3569 106.644C84.2638 106.424 84.1411 106.229 83.9888 106.06C83.8407 105.887 83.6566 105.749 83.4365 105.647C83.2207 105.546 82.9647 105.495 82.6685 105.495C82.3468 105.495 82.0697 105.563 81.8369 105.698C81.6084 105.829 81.4201 106.011 81.272 106.244C81.1239 106.473 81.0138 106.739 80.9419 107.044C80.8742 107.344 80.8403 107.666 80.8403 108.009ZM91.6885 105.952V114.141H90.5078V104.632H91.5869L91.6885 105.952ZM96.3159 108.009V108.142C96.3159 108.641 96.2567 109.105 96.1382 109.532C96.0197 109.955 95.8462 110.324 95.6177 110.637C95.3934 110.95 95.1162 111.193 94.7861 111.367C94.4561 111.54 94.0773 111.627 93.6499 111.627C93.214 111.627 92.8289 111.555 92.4946 111.411C92.1603 111.267 91.8768 111.058 91.644 110.783C91.4113 110.508 91.2251 110.178 91.0854 109.792C90.95 109.407 90.8569 108.974 90.8062 108.491V107.78C90.8569 107.272 90.9521 106.818 91.0918 106.416C91.2314 106.014 91.4155 105.671 91.644 105.387C91.8768 105.099 92.1582 104.882 92.4883 104.733C92.8184 104.581 93.1992 104.505 93.6309 104.505C94.0625 104.505 94.4455 104.59 94.7798 104.759C95.1141 104.924 95.3955 105.161 95.624 105.47C95.8525 105.779 96.0239 106.149 96.1382 106.581C96.2567 107.008 96.3159 107.484 96.3159 108.009ZM95.1353 108.142V108.009C95.1353 107.666 95.0993 107.344 95.0273 107.044C94.9554 106.739 94.8433 106.473 94.6909 106.244C94.5428 106.011 94.3524 105.829 94.1196 105.698C93.8869 105.563 93.6097 105.495 93.2881 105.495C92.9919 105.495 92.7337 105.546 92.5137 105.647C92.2979 105.749 92.1138 105.887 91.9614 106.06C91.8091 106.229 91.6842 106.424 91.5869 106.644C91.4938 106.86 91.424 107.084 91.3774 107.317V108.961C91.4621 109.257 91.5806 109.536 91.7329 109.799C91.8853 110.057 92.0884 110.266 92.3423 110.427C92.5962 110.584 92.9157 110.662 93.3008 110.662C93.6182 110.662 93.8911 110.597 94.1196 110.465C94.3524 110.33 94.5428 110.146 94.6909 109.913C94.8433 109.68 94.9554 109.414 95.0273 109.113C95.0993 108.809 95.1353 108.485 95.1353 108.142ZM98.9883 105.711V111.5H97.814V104.632H98.9565L98.9883 105.711ZM101.134 104.594L101.127 105.686C101.03 105.664 100.937 105.652 100.848 105.647C100.764 105.639 100.666 105.635 100.556 105.635C100.285 105.635 100.046 105.677 99.8389 105.762C99.6315 105.846 99.4559 105.965 99.312 106.117C99.1681 106.27 99.0539 106.451 98.9692 106.663C98.8888 106.87 98.8359 107.099 98.8105 107.349L98.4805 107.539C98.4805 107.124 98.5207 106.735 98.6011 106.371C98.6857 106.007 98.8148 105.686 98.9883 105.406C99.1618 105.123 99.3818 104.903 99.6484 104.746C99.9193 104.585 100.241 104.505 100.613 104.505C100.698 104.505 100.795 104.515 100.905 104.537C101.015 104.554 101.091 104.573 101.134 104.594ZM103.495 104.632V111.5H102.314V104.632H103.495ZM102.226 102.81C102.226 102.62 102.283 102.459 102.397 102.328C102.515 102.196 102.689 102.131 102.917 102.131C103.142 102.131 103.313 102.196 103.432 102.328C103.554 102.459 103.616 102.62 103.616 102.81C103.616 102.992 103.554 103.149 103.432 103.28C103.313 103.407 103.142 103.47 102.917 103.47C102.689 103.47 102.515 103.407 102.397 103.28C102.283 103.149 102.226 102.992 102.226 102.81ZM108.129 110.662C108.408 110.662 108.666 110.605 108.903 110.491C109.14 110.376 109.335 110.22 109.487 110.021C109.64 109.818 109.726 109.587 109.748 109.329H110.865C110.844 109.735 110.706 110.114 110.452 110.465C110.202 110.812 109.875 111.094 109.468 111.31C109.062 111.521 108.616 111.627 108.129 111.627C107.613 111.627 107.162 111.536 106.777 111.354C106.396 111.172 106.079 110.922 105.825 110.605C105.575 110.288 105.387 109.924 105.26 109.513C105.137 109.098 105.076 108.66 105.076 108.199V107.933C105.076 107.471 105.137 107.035 105.26 106.625C105.387 106.21 105.575 105.844 105.825 105.527C106.079 105.209 106.396 104.96 106.777 104.778C107.162 104.596 107.613 104.505 108.129 104.505C108.666 104.505 109.136 104.615 109.538 104.835C109.94 105.051 110.255 105.347 110.484 105.724C110.717 106.096 110.844 106.519 110.865 106.993H109.748C109.726 106.71 109.646 106.454 109.506 106.225C109.371 105.997 109.185 105.815 108.948 105.679C108.715 105.54 108.442 105.47 108.129 105.47C107.769 105.47 107.467 105.542 107.221 105.686C106.98 105.825 106.787 106.016 106.644 106.257C106.504 106.494 106.402 106.758 106.339 107.05C106.28 107.338 106.25 107.632 106.25 107.933V108.199C106.25 108.5 106.28 108.796 106.339 109.088C106.398 109.38 106.498 109.644 106.637 109.881C106.781 110.118 106.974 110.309 107.215 110.453C107.46 110.592 107.765 110.662 108.129 110.662ZM115.035 111.627C114.557 111.627 114.123 111.547 113.734 111.386C113.349 111.221 113.017 110.99 112.737 110.694C112.462 110.398 112.251 110.046 112.103 109.64C111.954 109.234 111.88 108.79 111.88 108.307V108.041C111.88 107.482 111.963 106.985 112.128 106.549C112.293 106.109 112.517 105.736 112.801 105.432C113.084 105.127 113.406 104.896 113.766 104.74C114.125 104.583 114.498 104.505 114.883 104.505C115.374 104.505 115.797 104.59 116.152 104.759C116.512 104.928 116.806 105.165 117.035 105.47C117.263 105.77 117.432 106.126 117.542 106.536C117.653 106.942 117.708 107.387 117.708 107.869V108.396H112.579V107.438H116.533V107.349C116.516 107.044 116.453 106.748 116.343 106.46C116.237 106.172 116.068 105.935 115.835 105.749C115.602 105.563 115.285 105.47 114.883 105.47C114.616 105.47 114.371 105.527 114.146 105.641C113.922 105.751 113.73 105.916 113.569 106.136C113.408 106.356 113.283 106.625 113.194 106.942C113.105 107.26 113.061 107.626 113.061 108.041V108.307C113.061 108.633 113.105 108.94 113.194 109.228C113.287 109.511 113.421 109.761 113.594 109.977C113.772 110.192 113.986 110.362 114.235 110.484C114.489 110.607 114.777 110.668 115.099 110.668C115.513 110.668 115.865 110.584 116.152 110.415C116.44 110.245 116.692 110.019 116.908 109.735L117.619 110.3C117.471 110.525 117.282 110.738 117.054 110.941C116.825 111.145 116.544 111.31 116.209 111.437C115.879 111.563 115.488 111.627 115.035 111.627ZM119.028 110.878C119.028 110.679 119.089 110.512 119.212 110.376C119.339 110.237 119.521 110.167 119.758 110.167C119.995 110.167 120.175 110.237 120.297 110.376C120.424 110.512 120.488 110.679 120.488 110.878C120.488 111.073 120.424 111.238 120.297 111.373C120.175 111.508 119.995 111.576 119.758 111.576C119.521 111.576 119.339 111.508 119.212 111.373C119.089 111.238 119.028 111.073 119.028 110.878ZM119.034 105.273C119.034 105.074 119.096 104.907 119.218 104.771C119.345 104.632 119.527 104.562 119.764 104.562C120.001 104.562 120.181 104.632 120.304 104.771C120.431 104.907 120.494 105.074 120.494 105.273C120.494 105.468 120.431 105.633 120.304 105.768C120.181 105.903 120.001 105.971 119.764 105.971C119.527 105.971 119.345 105.903 119.218 105.768C119.096 105.633 119.034 105.468 119.034 105.273Z",fill:"white"}),(0,h.createElement)("path",{d:"M131.45 100.792V102.664H130.459V100.792H131.45ZM131.329 111.157V112.865H130.339V111.157H131.329ZM132.027 109.075C132.027 108.834 131.983 108.629 131.894 108.459C131.809 108.29 131.67 108.14 131.475 108.009C131.285 107.878 131.027 107.751 130.701 107.628C130.151 107.416 129.666 107.192 129.247 106.955C128.832 106.714 128.509 106.416 128.276 106.06C128.043 105.7 127.927 105.245 127.927 104.695C127.927 104.171 128.052 103.716 128.301 103.331C128.551 102.945 128.896 102.649 129.336 102.442C129.78 102.23 130.297 102.125 130.885 102.125C131.333 102.125 131.74 102.192 132.104 102.328C132.467 102.459 132.781 102.653 133.043 102.912C133.305 103.166 133.506 103.477 133.646 103.845C133.786 104.213 133.855 104.634 133.855 105.108H132.034C132.034 104.854 132.006 104.63 131.951 104.435C131.896 104.24 131.816 104.077 131.71 103.946C131.608 103.815 131.486 103.718 131.342 103.654C131.198 103.587 131.039 103.553 130.866 103.553C130.608 103.553 130.396 103.604 130.231 103.705C130.066 103.807 129.945 103.944 129.869 104.118C129.797 104.287 129.761 104.482 129.761 104.702C129.761 104.917 129.799 105.106 129.875 105.267C129.956 105.427 130.093 105.576 130.288 105.711C130.483 105.842 130.749 105.978 131.088 106.117C131.638 106.329 132.12 106.557 132.535 106.803C132.95 107.048 133.274 107.349 133.506 107.704C133.739 108.06 133.855 108.512 133.855 109.062C133.855 109.608 133.729 110.074 133.475 110.459C133.221 110.84 132.865 111.132 132.408 111.335C131.951 111.534 131.422 111.633 130.821 111.633C130.432 111.633 130.045 111.583 129.66 111.481C129.275 111.375 128.925 111.206 128.612 110.973C128.299 110.74 128.049 110.431 127.863 110.046C127.677 109.657 127.584 109.179 127.584 108.612H129.412C129.412 108.921 129.452 109.179 129.533 109.386C129.613 109.589 129.719 109.752 129.85 109.875C129.986 109.993 130.138 110.078 130.307 110.129C130.476 110.18 130.648 110.205 130.821 110.205C131.092 110.205 131.314 110.156 131.488 110.059C131.666 109.962 131.799 109.828 131.888 109.659C131.981 109.486 132.027 109.291 132.027 109.075ZM141.422 110.072V111.5H135.1V110.281L138.089 107.076C138.39 106.741 138.627 106.447 138.8 106.193C138.974 105.935 139.099 105.705 139.175 105.501C139.255 105.294 139.295 105.097 139.295 104.911C139.295 104.632 139.249 104.393 139.156 104.194C139.063 103.991 138.925 103.834 138.743 103.724C138.565 103.614 138.345 103.559 138.083 103.559C137.804 103.559 137.562 103.627 137.359 103.762C137.16 103.898 137.008 104.086 136.902 104.327C136.801 104.568 136.75 104.841 136.75 105.146H134.916C134.916 104.596 135.047 104.092 135.309 103.635C135.571 103.174 135.942 102.808 136.42 102.537C136.898 102.262 137.465 102.125 138.121 102.125C138.769 102.125 139.314 102.23 139.759 102.442C140.207 102.649 140.546 102.95 140.774 103.343C141.007 103.733 141.124 104.198 141.124 104.74C141.124 105.044 141.075 105.343 140.978 105.635C140.88 105.923 140.741 106.21 140.559 106.498C140.381 106.782 140.165 107.069 139.911 107.361C139.657 107.653 139.376 107.956 139.067 108.269L137.461 110.072H141.422ZM148.785 106.066V107.666C148.785 108.36 148.711 108.959 148.563 109.462C148.415 109.962 148.201 110.372 147.922 110.694C147.647 111.011 147.319 111.246 146.938 111.398C146.557 111.551 146.134 111.627 145.668 111.627C145.296 111.627 144.949 111.58 144.627 111.487C144.306 111.39 144.016 111.24 143.758 111.037C143.504 110.833 143.284 110.577 143.098 110.269C142.916 109.955 142.776 109.583 142.679 109.151C142.581 108.72 142.533 108.225 142.533 107.666V106.066C142.533 105.372 142.607 104.778 142.755 104.283C142.907 103.783 143.121 103.375 143.396 103.058C143.675 102.74 144.005 102.507 144.386 102.359C144.767 102.207 145.19 102.131 145.656 102.131C146.028 102.131 146.373 102.18 146.69 102.277C147.012 102.37 147.302 102.516 147.56 102.715C147.818 102.914 148.038 103.17 148.22 103.483C148.402 103.792 148.542 104.162 148.639 104.594C148.736 105.021 148.785 105.512 148.785 106.066ZM146.951 107.907V105.819C146.951 105.485 146.932 105.193 146.894 104.943C146.86 104.693 146.807 104.482 146.735 104.308C146.663 104.13 146.574 103.986 146.468 103.876C146.362 103.766 146.242 103.686 146.106 103.635C145.971 103.584 145.821 103.559 145.656 103.559C145.448 103.559 145.264 103.599 145.104 103.68C144.947 103.76 144.814 103.889 144.704 104.067C144.594 104.24 144.509 104.473 144.45 104.765C144.395 105.053 144.367 105.404 144.367 105.819V107.907C144.367 108.242 144.384 108.536 144.418 108.79C144.456 109.043 144.511 109.261 144.583 109.443C144.659 109.621 144.748 109.767 144.85 109.881C144.955 109.991 145.076 110.072 145.211 110.123C145.351 110.173 145.503 110.199 145.668 110.199C145.872 110.199 146.051 110.159 146.208 110.078C146.369 109.993 146.504 109.862 146.614 109.685C146.729 109.503 146.813 109.266 146.868 108.974C146.923 108.682 146.951 108.326 146.951 107.907ZM156.25 106.066V107.666C156.25 108.36 156.176 108.959 156.028 109.462C155.88 109.962 155.666 110.372 155.387 110.694C155.112 111.011 154.784 111.246 154.403 111.398C154.022 111.551 153.599 111.627 153.133 111.627C152.761 111.627 152.414 111.58 152.092 111.487C151.771 111.39 151.481 111.24 151.223 111.037C150.969 110.833 150.749 110.577 150.562 110.269C150.381 109.955 150.241 109.583 150.144 109.151C150.046 108.72 149.998 108.225 149.998 107.666V106.066C149.998 105.372 150.072 104.778 150.22 104.283C150.372 103.783 150.586 103.375 150.861 103.058C151.14 102.74 151.47 102.507 151.851 102.359C152.232 102.207 152.655 102.131 153.121 102.131C153.493 102.131 153.838 102.18 154.155 102.277C154.477 102.37 154.767 102.516 155.025 102.715C155.283 102.914 155.503 103.17 155.685 103.483C155.867 103.792 156.007 104.162 156.104 104.594C156.201 105.021 156.25 105.512 156.25 106.066ZM154.416 107.907V105.819C154.416 105.485 154.396 105.193 154.358 104.943C154.325 104.693 154.272 104.482 154.2 104.308C154.128 104.13 154.039 103.986 153.933 103.876C153.827 103.766 153.707 103.686 153.571 103.635C153.436 103.584 153.286 103.559 153.121 103.559C152.913 103.559 152.729 103.599 152.568 103.68C152.412 103.76 152.278 103.889 152.168 104.067C152.058 104.24 151.974 104.473 151.915 104.765C151.86 105.053 151.832 105.404 151.832 105.819V107.907C151.832 108.242 151.849 108.536 151.883 108.79C151.921 109.043 151.976 109.261 152.048 109.443C152.124 109.621 152.213 109.767 152.314 109.881C152.42 109.991 152.541 110.072 152.676 110.123C152.816 110.173 152.968 110.199 153.133 110.199C153.336 110.199 153.516 110.159 153.673 110.078C153.834 109.993 153.969 109.862 154.079 109.685C154.193 109.503 154.278 109.266 154.333 108.974C154.388 108.682 154.416 108.326 154.416 107.907ZM157.659 110.618C157.659 110.347 157.752 110.12 157.938 109.938C158.129 109.757 158.381 109.666 158.694 109.666C159.007 109.666 159.257 109.757 159.443 109.938C159.633 110.12 159.729 110.347 159.729 110.618C159.729 110.889 159.633 111.115 159.443 111.297C159.257 111.479 159.007 111.57 158.694 111.57C158.381 111.57 158.129 111.479 157.938 111.297C157.752 111.115 157.659 110.889 157.659 110.618ZM167.485 106.066V107.666C167.485 108.36 167.411 108.959 167.263 109.462C167.115 109.962 166.901 110.372 166.622 110.694C166.347 111.011 166.019 111.246 165.638 111.398C165.257 111.551 164.834 111.627 164.369 111.627C163.996 111.627 163.649 111.58 163.328 111.487C163.006 111.39 162.716 111.24 162.458 111.037C162.204 110.833 161.984 110.577 161.798 110.269C161.616 109.955 161.476 109.583 161.379 109.151C161.282 108.72 161.233 108.225 161.233 107.666V106.066C161.233 105.372 161.307 104.778 161.455 104.283C161.607 103.783 161.821 103.375 162.096 103.058C162.375 102.74 162.706 102.507 163.086 102.359C163.467 102.207 163.89 102.131 164.356 102.131C164.728 102.131 165.073 102.18 165.391 102.277C165.712 102.37 166.002 102.516 166.26 102.715C166.518 102.914 166.738 103.17 166.92 103.483C167.102 103.792 167.242 104.162 167.339 104.594C167.437 105.021 167.485 105.512 167.485 106.066ZM165.651 107.907V105.819C165.651 105.485 165.632 105.193 165.594 104.943C165.56 104.693 165.507 104.482 165.435 104.308C165.363 104.13 165.274 103.986 165.168 103.876C165.063 103.766 164.942 103.686 164.807 103.635C164.671 103.584 164.521 103.559 164.356 103.559C164.149 103.559 163.965 103.599 163.804 103.68C163.647 103.76 163.514 103.889 163.404 104.067C163.294 104.24 163.209 104.473 163.15 104.765C163.095 105.053 163.067 105.404 163.067 105.819V107.907C163.067 108.242 163.084 108.536 163.118 108.79C163.156 109.043 163.211 109.261 163.283 109.443C163.359 109.621 163.448 109.767 163.55 109.881C163.656 109.991 163.776 110.072 163.912 110.123C164.051 110.173 164.204 110.199 164.369 110.199C164.572 110.199 164.752 110.159 164.908 110.078C165.069 109.993 165.204 109.862 165.314 109.685C165.429 109.503 165.513 109.266 165.568 108.974C165.623 108.682 165.651 108.326 165.651 107.907ZM174.95 106.066V107.666C174.95 108.36 174.876 108.959 174.728 109.462C174.58 109.962 174.366 110.372 174.087 110.694C173.812 111.011 173.484 111.246 173.103 111.398C172.722 111.551 172.299 111.627 171.833 111.627C171.461 111.627 171.114 111.58 170.792 111.487C170.471 111.39 170.181 111.24 169.923 111.037C169.669 110.833 169.449 110.577 169.263 110.269C169.081 109.955 168.941 109.583 168.844 109.151C168.746 108.72 168.698 108.225 168.698 107.666V106.066C168.698 105.372 168.772 104.778 168.92 104.283C169.072 103.783 169.286 103.375 169.561 103.058C169.84 102.74 170.17 102.507 170.551 102.359C170.932 102.207 171.355 102.131 171.821 102.131C172.193 102.131 172.538 102.18 172.855 102.277C173.177 102.37 173.467 102.516 173.725 102.715C173.983 102.914 174.203 103.17 174.385 103.483C174.567 103.792 174.707 104.162 174.804 104.594C174.902 105.021 174.95 105.512 174.95 106.066ZM173.116 107.907V105.819C173.116 105.485 173.097 105.193 173.059 104.943C173.025 104.693 172.972 104.482 172.9 104.308C172.828 104.13 172.739 103.986 172.633 103.876C172.528 103.766 172.407 103.686 172.271 103.635C172.136 103.584 171.986 103.559 171.821 103.559C171.613 103.559 171.429 103.599 171.269 103.68C171.112 103.76 170.979 103.889 170.869 104.067C170.759 104.24 170.674 104.473 170.615 104.765C170.56 105.053 170.532 105.404 170.532 105.819V107.907C170.532 108.242 170.549 108.536 170.583 108.79C170.621 109.043 170.676 109.261 170.748 109.443C170.824 109.621 170.913 109.767 171.015 109.881C171.12 109.991 171.241 110.072 171.376 110.123C171.516 110.173 171.668 110.199 171.833 110.199C172.037 110.199 172.216 110.159 172.373 110.078C172.534 109.993 172.669 109.862 172.779 109.685C172.894 109.503 172.978 109.266 173.033 108.974C173.088 108.682 173.116 108.326 173.116 107.907Z",fill:"white"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_273_2176"},(0,h.createElement)("rect",{x:"15",y:"16.5",width:"268",height:"110",rx:"4",fill:"white"})))),{AdvancedFields:kC,FieldWrapper:jC,FieldSettingsWrapper:xC,ToolBarFields:FC,BlockName:BC,BlockDescription:AC,BlockLabel:PC,MacrosFields:SC,ClientSideMacros:NC}=JetFBComponents,{useUniqueNameOnDuplicate:IC}=JetFBHooks,{__:TC}=wp.i18n,{InspectorControls:OC,useBlockProps:JC}=wp.blockEditor,{TextControl:RC,TextareaControl:qC,ToggleControl:DC,PanelBody:zC,SelectControl:UC,__experimentalNumberControl:GC}=wp.components,WC=GC,KC={calc_hidden:TC("Check this to hide calculated field","jet-form-builder")},$C=JSON.parse('{"apiVersion":3,"name":"jet-forms/calculated-field","category":"jet-form-builder-fields","title":"Calculated Field","description":"Calculate and display your number values","icon":"\\n\\n","keywords":["jetformbuilder","field","calculated"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"validation":{"type":"object","default":{}},"value_type":{"type":"string","default":"number"},"date_format":{"type":"string","default":"YYYY-MM-DD"},"separate_decimals":{"type":"string","default":"."},"separate_thousands":{"type":"string","default":""},"calc_formula":{"type":"string","default":""},"precision":{"type":"number","default":2},"calc_prefix":{"type":"string","default":"","jfb":{"rich":true}},"calc_suffix":{"type":"string","default":"","jfb":{"rich":true}},"calc_hidden":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"placeholder":{"type":"string","default":""},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:YC}=wp.i18n,{createBlock:XC}=wp.blocks,{name:QC,icon:et}=$C,Ct={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:et}}),description:YC("Pull out the values from the form fields and meta fields and use them to calculate the formula of any complexity you've set before.","jet-form-builder"),edit:function(e){const C=JC();IC();const{attributes:t,setAttributes:l,isSelected:r,editProps:{uniqKey:n}}=e,a=(0,h.useRef)(null);return t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},_C):[(0,h.createElement)(FC,{key:n("ToolBarFields"),...e},(0,h.createElement)(NC,{withThis:!0},(0,h.createElement)(SC,{onClick:(e,C,r)=>{const n="option-label"===r?e.replace(/%$/,"::label%"):e,i=t.calc_formula||"",o=a.current;if(o){const e=o.selectionStart,C=o.selectionEnd,t=i.slice(0,e)+n+i.slice(C);l({calc_formula:t}),setTimeout((()=>{o.focus(),o.selectionStart=o.selectionEnd=e+n.length}))}}}))),r&&(0,h.createElement)(OC,{key:n("InspectorControls")},(0,h.createElement)(zC,{title:TC("General","jet-form-builder"),key:"jet-form-general-fields"},(0,h.createElement)(PC,null),(0,h.createElement)(BC,null),(0,h.createElement)(AC,null)),(0,h.createElement)(xC,{...e},"date"!==t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:JetFormCalculatedField.field_desc}})):null,(0,h.createElement)(UC,{label:TC("Value type","jet-form-builder"),labelPosition:"top",value:t.value_type,onChange:e=>l({value_type:e}),options:[{value:"number",label:TC("as Number","jet-form-builder")},{value:"string",label:TC("as String","jet-form-builder")},{value:"date",label:TC("as Date","jet-form-builder")}]}),"date"===t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)(RC,{key:"calc_date_format",label:TC("Date Format","jet-form-builder"),value:t.date_format,onChange:e=>l({date_format:e})}),(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:JetFormCalculatedField.date_format}})):null,"number"===t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)(WC,{label:TC("Decimal Places Number","jet-form-builder"),labelPosition:"top",key:"precision",value:t.precision,onChange:e=>{l({precision:parseInt(e)})}}),(0,h.createElement)(RC,{key:"calc_separate_decimals",label:TC("Decimals separator","jet-form-builder"),value:t.separate_decimals,onChange:e=>l({separate_decimals:e})}),(0,h.createElement)(RC,{key:"calc_separate_thousands",label:TC("Thousands separator","jet-form-builder"),value:t.separate_thousands,onChange:e=>l({separate_thousands:e})}),(0,h.createElement)(RC,{key:"calc_prefix",label:TC("Calculated Value Prefix","jet-form-builder"),value:t.calc_prefix,help:TC("For space before or after text use:  ","jet-form-builder"),onChange:e=>{l({calc_prefix:e})}}),(0,h.createElement)(RC,{key:"calc_suffix",label:TC("Calculated Value Suffix","jet-form-builder"),value:t.calc_suffix,help:TC("For space before or after text use:  ","jet-form-builder"),onChange:e=>{l({calc_suffix:e})}})):null,(0,h.createElement)(DC,{key:"calc_hidden",label:TC("Hidden","jet-form-builder"),checked:t.calc_hidden,help:KC.calc_hidden,onChange:e=>{l({calc_hidden:Boolean(e)})}})),(0,h.createElement)(kC,{key:n("JetForm-advanced"),...e})),(0,h.createElement)("div",{...C,key:n("viewBlock")},(0,h.createElement)(jC,{key:n("FieldWrapper"),...e},(0,h.createElement)("div",{className:"jet-form-builder__calculated-field"},(0,h.createElement)("div",{className:"calc-prefix"},t.calc_prefix),(0,h.createElement)("div",{className:"calc-formula"},t.calc_formula),(0,h.createElement)("div",{className:"calc-suffix"},t.calc_suffix)),e.isSelected&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(qC,{key:"calc_formula",value:t.calc_formula,onChange:e=>{l({calc_formula:e})},ref:a}),(0,h.createElement)("div",{className:"jet-form-builder__calculated-field_info"},TC("You may use JavaScript's built-in ","jet-form-builder"),(0,h.createElement)("a",{href:"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math",target:"_blank",rel:"noopener noreferrer"},TC("Math","jet-form-builder")),TC(" object (e.g., Math.sqrt(16) returns 4) to perform more sophisticated operations.","jet-form-builder"),(0,h.createElement)("br",null),TC("You can also explore","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters",target:"_blank",rel:"noopener noreferrer"},TC("Filters","jet-form-builder")),", ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros",target:"_blank",rel:"noopener noreferrer"},TC("External Macros","jet-form-builder"))," ",TC("and","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Field-Attributes",target:"_blank",rel:"noopener noreferrer"},TC("Field Attributes","jet-form-builder"))," ",TC("for deeper customization.","jet-form-builder"),(0,h.createElement)("br",null),TC("Additionally, you can use the ternary operator (?:) for conditional calculations. For example: ((%field_one% + %field_two%) > 20) ? 10 : 5","jet-form-builder"),(0,h.createElement)("br",null),TC("For more details on using calculated fields, check out the Block Field section or read our in-depth guide","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://jetformbuilder.com/features/calculated-field",target:"_blank",rel:"noopener noreferrer"},TC("here","jet-form-builder")),"."))))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/number-field"],transform:e=>XC("jet-forms/number-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/number-field","jet-forms/text-field"],transform:e=>XC(QC,{...e}),priority:0}]}},{Repeater:tt,RepeaterAddNew:lt,RepeaterAddOrOperator:rt,ConditionItem:nt,RepeaterState:at,ToggleControl:it,ConditionsRepeaterContextProvider:ot}=JetFBComponents,{useState:st}=wp.element,{useBlockAttributes:ct,useBlockConditions:dt,useUniqKey:mt,useOnUpdateModal:ut}=JetFBHooks;let{SelectControl:pt,withFilters:ft,Button:Vt,ToggleGroupControl:Ht,__experimentalToggleGroupControl:ht}=wp.components;const{__:bt}=wp.i18n,{addFilter:Mt}=wp.hooks;Ht=Ht||ht,Mt("jet.fb.block.condition.settings","jet-form-builder",(e=>C=>{var t;const{current:l,settings:r,update:n}=C;return["show","hide"].includes(l.func_type)?(0,h.createElement)(it,{checked:null!==(t=r?.dom)&&void 0!==t&&t,onChange:e=>n({dom:Boolean(e)})},bt("Remove hidden elements from page HTML","jet-form-builder")+" ",(0,h.createElement)(Vt,{isLink:!0,onClick:()=>{},label:bt("If this block is removed from the HTML, then when sending the form, the values from the inner fields will be empty","jet-form-builder"),showTooltip:!0},"(?)")):(0,h.createElement)(e,{...C})}));const Lt=ft("jet.fb.block.condition.settings")((()=>null));function gt(){var e;const[C,t]=ct(),[l,r]=st((()=>C)),{functions:n}=dt(),a=mt(),i=e=>{const C="function"==typeof e?e(l.conditions):e;r((e=>({...e,conditions:C})))};ut((()=>t(l)));const o=(e=>e.func_type&&e?.func_settings?.hasOwnProperty(e.func_type)?e?.func_settings[e.func_type]:{})(l);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(pt,{key:a("SelectControl-operator"),label:bt("Which function need execute?","jet-form-builder"),labelPosition:"side",value:l.func_type,options:n,onChange:e=>r((C=>({...C,func_type:e})))}),(0,h.createElement)(Lt,{current:l,settings:o,update:e=>r((C=>{var t;return{...C,func_settings:{...null!==(t=C?.func_settings)&&void 0!==t?t:{},[C.func_type]:{...o,...e}}}}))}),(0,h.createElement)(ot,null,(0,h.createElement)(tt,{items:null!==(e=l.conditions)&&void 0!==e?e:[],onSetState:i},(0,h.createElement)(nt,null))),(0,h.createElement)(at,{state:i},(0,h.createElement)(Ht,{style:{display:"flex"},hideLabelFromVision:!0,className:"jfb-toggle-group-control jfb-toggle-group-control--no-gap"},(0,h.createElement)(lt,null,bt("Add Condition","jet-form-builder")),Boolean(l?.conditions?.length)&&(0,h.createElement)(rt,null,bt("Add OR Operator","jet-form-builder")))))}const{ActionModal:Zt}=JetFBComponents;function yt(e){const{setShowModal:C}=e;return(0,h.createElement)(Zt,{classNames:["width-60"],onRequestClose:()=>C(!1),title:"Conditional Logic"},(0,h.createElement)(gt,null))}const{createContext:Et}=wp.element,wt=Et({showModal:!1,setShowModal:()=>{}}),{DetailsContainer:vt,HoverContainer:_t,HumanReadableConditions:kt}=JetFBComponents,{useBlockAttributes:jt}=JetFBHooks,{useState:xt,useContext:Ft}=wp.element,{__:Bt}=wp.i18n,{Button:At}=wp.components,Pt=function({group:e}){const[C,t]=xt(!1),{setShowModal:l}=Ft(wt),[r,n]=jt(),a=e.map((({condition:e})=>e)),i=e.map((({index:e})=>e));return(0,h.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>t(!0),onFocus:()=>t(!0),onMouseOut:()=>t(!1),onBlur:()=>t(!1)},(0,h.createElement)(_t,{isHover:C},(0,h.createElement)(At,{isSmall:!0,isSecondary:!0,icon:"edit",onClick:()=>{n((({conditions:e})=>e.map(((e,C)=>(e.__visible=C===i[0],e))))),l((e=>!e))}},Bt("Edit","jet-form-builder")),(0,h.createElement)(At,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{n({conditions:r.conditions.filter(((e,C)=>!i.includes(C)))})}},Bt("Delete","jet-form-builder"))),(0,h.createElement)(vt,null,(0,h.createElement)(kt,{conditions:a,showWarning:!0})))},{DetailsContainer:St,HoverContainer:Nt}=JetFBComponents,{useBlockAttributes:It}=JetFBHooks,{useContext:Tt,useState:Ot}=wp.element,{__:Jt}=wp.i18n,{Button:Rt}=wp.components,qt=function(){const{setShowModal:e}=Tt(wt),[C,t]=It(),[l,r]=Ot(!1);return(0,h.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>r(!0),onFocus:()=>r(!0),onMouseOut:()=>r(!1),onBlur:()=>r(!1)},(0,h.createElement)(Nt,{isHover:l},(0,h.createElement)(Rt,{isSmall:!0,isSecondary:!0,icon:"plus-alt2",onClick:()=>{t({conditions:[...JSON.parse(JSON.stringify(C.conditions)),{__visible:!0}]}),e((e=>!e))}},Jt("Add new","jet-form-builder"))),(0,h.createElement)(St,null,(0,h.createElement)("span",{"data-title":Jt("You have no conditions in this block.","jet-form-builder")}),(0,h.createElement)("span",{"data-title":Jt("Please click here to add new.","jet-form-builder")})))},{__:Dt}=wp.i18n,{Children:zt,cloneElement:Ut}=wp.element,{ContainersList:Gt}=JetFBComponents,Wt=e=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)("b",null,Dt("OR","jet-form-builder")),(0,h.createElement)(Pt,{group:e})),Kt=function({attributes:e}){return Boolean(e?.conditions?.length)?(0,h.createElement)(Gt,null,zt.map((e=>{let C={},t=0,l=0;for(const n of e){var r;n.hasOwnProperty("or_operator")?(t++,l++):(C[t]=null!==(r=C[t])&&void 0!==r?r:[],C[t].push({condition:n,index:l}),l++)}C=Object.values(C);const n=C.filter(((e,C)=>0!==C));return[(0,h.createElement)(Pt,{group:C[0],key:"first_item"}),...n.map(Wt)]})(e.conditions),Ut)):(0,h.createElement)(qt,null)},$t=(0,h.createElement)("svg",{width:"298",height:"149",viewBox:"0 0 298 149",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"149",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M18.7734 19.9922L20.749 13.0469H21.7061L21.1523 15.7471L19.0264 23H18.0762L18.7734 19.9922ZM16.7295 13.0469L18.3018 19.8555L18.7734 23H17.8301L15.417 13.0469H16.7295ZM24.2627 19.8486L25.8008 13.0469H27.1201L24.7139 23H23.7705L24.2627 19.8486ZM21.8496 13.0469L23.7705 19.9922L24.4678 23H23.5176L21.4668 15.7471L20.9062 13.0469H21.8496ZM29.6562 12.5V23H28.3916V12.5H29.6562ZM29.3555 19.0215L28.8291 19.001C28.8337 18.4951 28.9089 18.028 29.0547 17.5996C29.2005 17.1667 29.4056 16.7907 29.6699 16.4717C29.9342 16.1527 30.2487 15.9066 30.6133 15.7334C30.9824 15.5557 31.3903 15.4668 31.8369 15.4668C32.2015 15.4668 32.5296 15.5169 32.8213 15.6172C33.113 15.7129 33.3613 15.8678 33.5664 16.082C33.776 16.2962 33.9355 16.5742 34.0449 16.916C34.1543 17.2533 34.209 17.6657 34.209 18.1533V23H32.9375V18.1396C32.9375 17.7523 32.8805 17.4424 32.7666 17.21C32.6527 16.973 32.4863 16.8021 32.2676 16.6973C32.0488 16.5879 31.7799 16.5332 31.4609 16.5332C31.1465 16.5332 30.8594 16.5993 30.5996 16.7314C30.3444 16.8636 30.1234 17.0459 29.9365 17.2783C29.7542 17.5107 29.6107 17.7773 29.5059 18.0781C29.4056 18.3743 29.3555 18.6888 29.3555 19.0215ZM40.4639 21.7354V17.9277C40.4639 17.6361 40.4046 17.3831 40.2861 17.1689C40.1722 16.9502 39.999 16.7816 39.7666 16.6631C39.5342 16.5446 39.2471 16.4854 38.9053 16.4854C38.5863 16.4854 38.306 16.54 38.0645 16.6494C37.8275 16.7588 37.6406 16.9023 37.5039 17.0801C37.3717 17.2578 37.3057 17.4492 37.3057 17.6543H36.041C36.041 17.39 36.1094 17.1279 36.2461 16.8682C36.3828 16.6084 36.5788 16.3737 36.834 16.1641C37.0938 15.9499 37.4036 15.7812 37.7637 15.6582C38.1283 15.5306 38.5339 15.4668 38.9805 15.4668C39.5182 15.4668 39.9922 15.5579 40.4023 15.7402C40.8171 15.9225 41.1406 16.1982 41.373 16.5674C41.61 16.932 41.7285 17.39 41.7285 17.9414V21.3867C41.7285 21.6328 41.749 21.8949 41.79 22.1729C41.8356 22.4508 41.9017 22.6901 41.9883 22.8906V23H40.6689C40.6051 22.8542 40.555 22.6605 40.5186 22.4189C40.4821 22.1729 40.4639 21.945 40.4639 21.7354ZM40.6826 18.5156L40.6963 19.4043H39.418C39.0579 19.4043 38.7367 19.4339 38.4541 19.4932C38.1715 19.5479 37.9346 19.6322 37.7432 19.7461C37.5518 19.86 37.4059 20.0036 37.3057 20.1768C37.2054 20.3454 37.1553 20.5436 37.1553 20.7715C37.1553 21.0039 37.2077 21.2158 37.3125 21.4072C37.4173 21.5986 37.5745 21.7513 37.7842 21.8652C37.9984 21.9746 38.2604 22.0293 38.5703 22.0293C38.9577 22.0293 39.2995 21.9473 39.5957 21.7832C39.8919 21.6191 40.1266 21.4186 40.2998 21.1816C40.4775 20.9447 40.5732 20.7145 40.5869 20.4912L41.127 21.0996C41.0951 21.291 41.0085 21.5029 40.8672 21.7354C40.7259 21.9678 40.5368 22.1911 40.2998 22.4053C40.0674 22.6149 39.7894 22.7904 39.4658 22.9316C39.1468 23.0684 38.7868 23.1367 38.3857 23.1367C37.8844 23.1367 37.4447 23.0387 37.0664 22.8428C36.6927 22.6468 36.401 22.3848 36.1914 22.0566C35.9863 21.724 35.8838 21.3525 35.8838 20.9424C35.8838 20.5459 35.9613 20.1973 36.1162 19.8965C36.2712 19.5911 36.4945 19.3382 36.7861 19.1377C37.0778 18.9326 37.4287 18.7777 37.8389 18.6729C38.249 18.568 38.707 18.5156 39.2129 18.5156H40.6826ZM46.8145 15.6035V16.5742H42.8154V15.6035H46.8145ZM44.1689 13.8057H45.4336V21.168C45.4336 21.4186 45.4723 21.6077 45.5498 21.7354C45.6273 21.863 45.7275 21.9473 45.8506 21.9883C45.9736 22.0293 46.1058 22.0498 46.2471 22.0498C46.3519 22.0498 46.4613 22.0407 46.5752 22.0225C46.6937 21.9997 46.7826 21.9814 46.8418 21.9678L46.8486 23C46.7484 23.0319 46.6162 23.0615 46.4521 23.0889C46.2926 23.1208 46.099 23.1367 45.8711 23.1367C45.5612 23.1367 45.2764 23.0752 45.0166 22.9521C44.7568 22.8291 44.5495 22.624 44.3945 22.3369C44.2441 22.0452 44.1689 21.6533 44.1689 21.1611V13.8057ZM54.8672 15.6035V16.5742H50.8682V15.6035H54.8672ZM52.2217 13.8057H53.4863V21.168C53.4863 21.4186 53.5251 21.6077 53.6025 21.7354C53.68 21.863 53.7803 21.9473 53.9033 21.9883C54.0264 22.0293 54.1585 22.0498 54.2998 22.0498C54.4046 22.0498 54.514 22.0407 54.6279 22.0225C54.7464 21.9997 54.8353 21.9814 54.8945 21.9678L54.9014 23C54.8011 23.0319 54.6689 23.0615 54.5049 23.0889C54.3454 23.1208 54.1517 23.1367 53.9238 23.1367C53.6139 23.1367 53.3291 23.0752 53.0693 22.9521C52.8096 22.8291 52.6022 22.624 52.4473 22.3369C52.2969 22.0452 52.2217 21.6533 52.2217 21.1611V13.8057ZM57.6152 16.7656V23H56.3506V15.6035H57.5811L57.6152 16.7656ZM59.9258 15.5625L59.9189 16.7383C59.8141 16.7155 59.7139 16.7018 59.6182 16.6973C59.527 16.6882 59.4222 16.6836 59.3037 16.6836C59.012 16.6836 58.7546 16.7292 58.5312 16.8203C58.3079 16.9115 58.1188 17.0391 57.9639 17.2031C57.8089 17.3672 57.6859 17.5632 57.5947 17.791C57.5081 18.0143 57.4512 18.2604 57.4238 18.5293L57.0684 18.7344C57.0684 18.2878 57.1117 17.8685 57.1982 17.4766C57.2894 17.0846 57.4284 16.7383 57.6152 16.4375C57.8021 16.1322 58.0391 15.8952 58.3262 15.7266C58.6178 15.5534 58.9642 15.4668 59.3652 15.4668C59.4564 15.4668 59.5612 15.4782 59.6797 15.501C59.7982 15.5192 59.8802 15.5397 59.9258 15.5625ZM65.1826 21.7354V17.9277C65.1826 17.6361 65.1234 17.3831 65.0049 17.1689C64.891 16.9502 64.7178 16.7816 64.4854 16.6631C64.2529 16.5446 63.9658 16.4854 63.624 16.4854C63.305 16.4854 63.0247 16.54 62.7832 16.6494C62.5462 16.7588 62.3594 16.9023 62.2227 17.0801C62.0905 17.2578 62.0244 17.4492 62.0244 17.6543H60.7598C60.7598 17.39 60.8281 17.1279 60.9648 16.8682C61.1016 16.6084 61.2975 16.3737 61.5527 16.1641C61.8125 15.9499 62.1224 15.7812 62.4824 15.6582C62.847 15.5306 63.2526 15.4668 63.6992 15.4668C64.237 15.4668 64.7109 15.5579 65.1211 15.7402C65.5358 15.9225 65.8594 16.1982 66.0918 16.5674C66.3288 16.932 66.4473 17.39 66.4473 17.9414V21.3867C66.4473 21.6328 66.4678 21.8949 66.5088 22.1729C66.5544 22.4508 66.6204 22.6901 66.707 22.8906V23H65.3877C65.3239 22.8542 65.2738 22.6605 65.2373 22.4189C65.2008 22.1729 65.1826 21.945 65.1826 21.7354ZM65.4014 18.5156L65.415 19.4043H64.1367C63.7767 19.4043 63.4554 19.4339 63.1729 19.4932C62.8903 19.5479 62.6533 19.6322 62.4619 19.7461C62.2705 19.86 62.1247 20.0036 62.0244 20.1768C61.9242 20.3454 61.874 20.5436 61.874 20.7715C61.874 21.0039 61.9264 21.2158 62.0312 21.4072C62.1361 21.5986 62.2933 21.7513 62.5029 21.8652C62.7171 21.9746 62.9792 22.0293 63.2891 22.0293C63.6764 22.0293 64.0182 21.9473 64.3145 21.7832C64.6107 21.6191 64.8454 21.4186 65.0186 21.1816C65.1963 20.9447 65.292 20.7145 65.3057 20.4912L65.8457 21.0996C65.8138 21.291 65.7272 21.5029 65.5859 21.7354C65.4447 21.9678 65.2555 22.1911 65.0186 22.4053C64.7861 22.6149 64.5081 22.7904 64.1846 22.9316C63.8656 23.0684 63.5055 23.1367 63.1045 23.1367C62.6032 23.1367 62.1634 23.0387 61.7852 22.8428C61.4115 22.6468 61.1198 22.3848 60.9102 22.0566C60.7051 21.724 60.6025 21.3525 60.6025 20.9424C60.6025 20.5459 60.68 20.1973 60.835 19.8965C60.9899 19.5911 61.2132 19.3382 61.5049 19.1377C61.7965 18.9326 62.1475 18.7777 62.5576 18.6729C62.9678 18.568 63.4258 18.5156 63.9316 18.5156H65.4014ZM69.7012 17.1826V23H68.4365V15.6035H69.6328L69.7012 17.1826ZM69.4004 19.0215L68.874 19.001C68.8786 18.4951 68.9538 18.028 69.0996 17.5996C69.2454 17.1667 69.4505 16.7907 69.7148 16.4717C69.9792 16.1527 70.2936 15.9066 70.6582 15.7334C71.0273 15.5557 71.4352 15.4668 71.8818 15.4668C72.2464 15.4668 72.5745 15.5169 72.8662 15.6172C73.1579 15.7129 73.4062 15.8678 73.6113 16.082C73.821 16.2962 73.9805 16.5742 74.0898 16.916C74.1992 17.2533 74.2539 17.6657 74.2539 18.1533V23H72.9824V18.1396C72.9824 17.7523 72.9255 17.4424 72.8115 17.21C72.6976 16.973 72.5312 16.8021 72.3125 16.6973C72.0938 16.5879 71.8249 16.5332 71.5059 16.5332C71.1914 16.5332 70.9043 16.5993 70.6445 16.7314C70.3893 16.8636 70.1683 17.0459 69.9814 17.2783C69.7992 17.5107 69.6556 17.7773 69.5508 18.0781C69.4505 18.3743 69.4004 18.6888 69.4004 19.0215ZM80.4814 21.0381C80.4814 20.8558 80.4404 20.6872 80.3584 20.5322C80.2809 20.3727 80.1191 20.2292 79.873 20.1016C79.6315 19.9694 79.2669 19.8555 78.7793 19.7598C78.3691 19.6732 77.9977 19.5706 77.665 19.4521C77.3369 19.3337 77.0566 19.1901 76.8242 19.0215C76.5964 18.8529 76.4209 18.6546 76.2979 18.4268C76.1748 18.1989 76.1133 17.9323 76.1133 17.627C76.1133 17.3353 76.1771 17.0596 76.3047 16.7998C76.4368 16.54 76.6214 16.3099 76.8584 16.1094C77.0999 15.9089 77.3893 15.7516 77.7266 15.6377C78.0638 15.5238 78.4398 15.4668 78.8545 15.4668C79.4469 15.4668 79.9528 15.5716 80.3721 15.7812C80.7913 15.9909 81.1126 16.2712 81.3359 16.6221C81.5592 16.9684 81.6709 17.3535 81.6709 17.7773H80.4062C80.4062 17.5723 80.3447 17.374 80.2217 17.1826C80.1032 16.9867 79.9277 16.8249 79.6953 16.6973C79.4674 16.5697 79.1872 16.5059 78.8545 16.5059C78.5036 16.5059 78.2188 16.5605 78 16.6699C77.7858 16.7747 77.6286 16.9092 77.5283 17.0732C77.4326 17.2373 77.3848 17.4105 77.3848 17.5928C77.3848 17.7295 77.4076 17.8525 77.4531 17.9619C77.5033 18.0667 77.5898 18.1647 77.7129 18.2559C77.8359 18.3424 78.0091 18.4245 78.2324 18.502C78.4557 18.5794 78.7406 18.6569 79.0869 18.7344C79.693 18.8711 80.1921 19.0352 80.584 19.2266C80.9759 19.418 81.2676 19.6527 81.459 19.9307C81.6504 20.2087 81.7461 20.5459 81.7461 20.9424C81.7461 21.266 81.6777 21.5622 81.541 21.8311C81.4089 22.0999 81.2152 22.3324 80.96 22.5283C80.7093 22.7197 80.4085 22.8701 80.0576 22.9795C79.7113 23.0843 79.3216 23.1367 78.8887 23.1367C78.237 23.1367 77.6855 23.0205 77.2344 22.7881C76.7832 22.5557 76.4414 22.2549 76.209 21.8857C75.9766 21.5166 75.8604 21.127 75.8604 20.7168H77.1318C77.1501 21.0632 77.2503 21.3389 77.4326 21.5439C77.6149 21.7445 77.8382 21.888 78.1025 21.9746C78.3669 22.0566 78.6289 22.0977 78.8887 22.0977C79.235 22.0977 79.5244 22.0521 79.7568 21.9609C79.9938 21.8698 80.1738 21.7445 80.2969 21.585C80.4199 21.4255 80.4814 21.2432 80.4814 21.0381ZM84.6719 17.0254V25.8438H83.4004V15.6035H84.5625L84.6719 17.0254ZM89.6553 19.2402V19.3838C89.6553 19.9215 89.5915 20.4206 89.4639 20.8809C89.3363 21.3366 89.1494 21.7331 88.9033 22.0703C88.6618 22.4076 88.3633 22.6696 88.0078 22.8564C87.6523 23.0433 87.2445 23.1367 86.7842 23.1367C86.3148 23.1367 85.9001 23.0592 85.54 22.9043C85.18 22.7493 84.8747 22.5238 84.624 22.2275C84.3734 21.9313 84.1729 21.5758 84.0225 21.1611C83.8766 20.7464 83.7764 20.2793 83.7217 19.7598V18.9941C83.7764 18.4473 83.8789 17.9574 84.0293 17.5244C84.1797 17.0915 84.3779 16.7223 84.624 16.417C84.8747 16.1071 85.1777 15.8724 85.5332 15.7129C85.8887 15.5488 86.2988 15.4668 86.7637 15.4668C87.2285 15.4668 87.641 15.5579 88.001 15.7402C88.361 15.918 88.6641 16.1732 88.9102 16.5059C89.1562 16.8385 89.3408 17.2373 89.4639 17.7021C89.5915 18.1624 89.6553 18.6751 89.6553 19.2402ZM88.3838 19.3838V19.2402C88.3838 18.8711 88.3451 18.5247 88.2676 18.2012C88.1901 17.873 88.0693 17.5859 87.9053 17.3398C87.7458 17.0892 87.5407 16.8932 87.29 16.752C87.0394 16.6061 86.7409 16.5332 86.3945 16.5332C86.0755 16.5332 85.7975 16.5879 85.5605 16.6973C85.3281 16.8066 85.1299 16.9548 84.9658 17.1416C84.8018 17.3239 84.6673 17.5335 84.5625 17.7705C84.4622 18.0029 84.387 18.2445 84.3369 18.4951V20.2656C84.4281 20.5846 84.5557 20.8854 84.7197 21.168C84.8838 21.446 85.1025 21.6715 85.376 21.8447C85.6494 22.0133 85.9935 22.0977 86.4082 22.0977C86.75 22.0977 87.0439 22.027 87.29 21.8857C87.5407 21.7399 87.7458 21.5417 87.9053 21.291C88.0693 21.0404 88.1901 20.7533 88.2676 20.4297C88.3451 20.1016 88.3838 19.7529 88.3838 19.3838ZM90.9336 19.3838V19.2266C90.9336 18.6934 91.0111 18.1989 91.166 17.7432C91.321 17.2829 91.5443 16.8841 91.8359 16.5469C92.1276 16.2051 92.4808 15.9408 92.8955 15.7539C93.3102 15.5625 93.7751 15.4668 94.29 15.4668C94.8096 15.4668 95.2767 15.5625 95.6914 15.7539C96.1107 15.9408 96.4661 16.2051 96.7578 16.5469C97.054 16.8841 97.2796 17.2829 97.4346 17.7432C97.5895 18.1989 97.667 18.6934 97.667 19.2266V19.3838C97.667 19.917 97.5895 20.4115 97.4346 20.8672C97.2796 21.3229 97.054 21.7217 96.7578 22.0635C96.4661 22.4007 96.113 22.665 95.6982 22.8564C95.2881 23.0433 94.8232 23.1367 94.3037 23.1367C93.7842 23.1367 93.3171 23.0433 92.9023 22.8564C92.4876 22.665 92.1322 22.4007 91.8359 22.0635C91.5443 21.7217 91.321 21.3229 91.166 20.8672C91.0111 20.4115 90.9336 19.917 90.9336 19.3838ZM92.1982 19.2266V19.3838C92.1982 19.7529 92.2415 20.1016 92.3281 20.4297C92.4147 20.7533 92.5446 21.0404 92.7178 21.291C92.8955 21.5417 93.1165 21.7399 93.3809 21.8857C93.6452 22.027 93.9528 22.0977 94.3037 22.0977C94.6501 22.0977 94.9531 22.027 95.2129 21.8857C95.4772 21.7399 95.696 21.5417 95.8691 21.291C96.0423 21.0404 96.1722 20.7533 96.2588 20.4297C96.3499 20.1016 96.3955 19.7529 96.3955 19.3838V19.2266C96.3955 18.862 96.3499 18.5179 96.2588 18.1943C96.1722 17.8662 96.04 17.5768 95.8623 17.3262C95.6891 17.071 95.4704 16.8704 95.2061 16.7246C94.9463 16.5788 94.641 16.5059 94.29 16.5059C93.9437 16.5059 93.6383 16.5788 93.374 16.7246C93.1143 16.8704 92.8955 17.071 92.7178 17.3262C92.5446 17.5768 92.4147 17.8662 92.3281 18.1943C92.2415 18.5179 92.1982 18.862 92.1982 19.2266ZM100.518 16.7656V23H99.2529V15.6035H100.483L100.518 16.7656ZM102.828 15.5625L102.821 16.7383C102.716 16.7155 102.616 16.7018 102.521 16.6973C102.429 16.6882 102.325 16.6836 102.206 16.6836C101.914 16.6836 101.657 16.7292 101.434 16.8203C101.21 16.9115 101.021 17.0391 100.866 17.2031C100.711 17.3672 100.588 17.5632 100.497 17.791C100.41 18.0143 100.354 18.2604 100.326 18.5293L99.9707 18.7344C99.9707 18.2878 100.014 17.8685 100.101 17.4766C100.192 17.0846 100.331 16.7383 100.518 16.4375C100.704 16.1322 100.941 15.8952 101.229 15.7266C101.52 15.5534 101.867 15.4668 102.268 15.4668C102.359 15.4668 102.464 15.4782 102.582 15.501C102.701 15.5192 102.783 15.5397 102.828 15.5625ZM107.436 15.6035V16.5742H103.437V15.6035H107.436ZM104.79 13.8057H106.055V21.168C106.055 21.4186 106.093 21.6077 106.171 21.7354C106.248 21.863 106.349 21.9473 106.472 21.9883C106.595 22.0293 106.727 22.0498 106.868 22.0498C106.973 22.0498 107.082 22.0407 107.196 22.0225C107.315 21.9997 107.404 21.9814 107.463 21.9678L107.47 23C107.369 23.0319 107.237 23.0615 107.073 23.0889C106.914 23.1208 106.72 23.1367 106.492 23.1367C106.182 23.1367 105.897 23.0752 105.638 22.9521C105.378 22.8291 105.171 22.624 105.016 22.3369C104.865 22.0452 104.79 21.6533 104.79 21.1611V13.8057ZM114.265 21.6875L116.165 15.6035H116.999L116.835 16.8135L114.9 23H114.087L114.265 21.6875ZM112.986 15.6035L114.606 21.7559L114.723 23H113.868L111.722 15.6035H112.986ZM118.817 21.708L120.362 15.6035H121.62L119.474 23H118.626L118.817 21.708ZM117.184 15.6035L119.043 21.585L119.255 23H118.448L116.459 16.7998L116.295 15.6035H117.184ZM124.293 15.6035V23H123.021V15.6035H124.293ZM122.926 13.6416C122.926 13.4365 122.987 13.2633 123.11 13.1221C123.238 12.9808 123.425 12.9102 123.671 12.9102C123.912 12.9102 124.097 12.9808 124.225 13.1221C124.357 13.2633 124.423 13.4365 124.423 13.6416C124.423 13.8376 124.357 14.0062 124.225 14.1475C124.097 14.2842 123.912 14.3525 123.671 14.3525C123.425 14.3525 123.238 14.2842 123.11 14.1475C122.987 14.0062 122.926 13.8376 122.926 13.6416ZM127.697 12.5V23H126.426V12.5H127.697ZM131.102 12.5V23H129.83V12.5H131.102ZM138.683 22.2344L140.74 15.6035H142.094L139.127 24.1416C139.059 24.3239 138.967 24.5199 138.854 24.7295C138.744 24.9437 138.603 25.1465 138.43 25.3379C138.257 25.5293 138.047 25.6842 137.801 25.8027C137.559 25.9258 137.27 25.9873 136.933 25.9873C136.832 25.9873 136.705 25.9736 136.55 25.9463C136.395 25.9189 136.285 25.8962 136.222 25.8779L136.215 24.8525C136.251 24.8571 136.308 24.8617 136.386 24.8662C136.468 24.8753 136.525 24.8799 136.557 24.8799C136.844 24.8799 137.088 24.8411 137.288 24.7637C137.489 24.6908 137.657 24.5654 137.794 24.3877C137.935 24.2145 138.056 23.9753 138.156 23.6699L138.683 22.2344ZM137.172 15.6035L139.093 21.3457L139.421 22.6787L138.512 23.1436L135.791 15.6035H137.172ZM142.791 19.3838V19.2266C142.791 18.6934 142.868 18.1989 143.023 17.7432C143.178 17.2829 143.402 16.8841 143.693 16.5469C143.985 16.2051 144.338 15.9408 144.753 15.7539C145.168 15.5625 145.632 15.4668 146.147 15.4668C146.667 15.4668 147.134 15.5625 147.549 15.7539C147.968 15.9408 148.324 16.2051 148.615 16.5469C148.911 16.8841 149.137 17.2829 149.292 17.7432C149.447 18.1989 149.524 18.6934 149.524 19.2266V19.3838C149.524 19.917 149.447 20.4115 149.292 20.8672C149.137 21.3229 148.911 21.7217 148.615 22.0635C148.324 22.4007 147.97 22.665 147.556 22.8564C147.146 23.0433 146.681 23.1367 146.161 23.1367C145.642 23.1367 145.174 23.0433 144.76 22.8564C144.345 22.665 143.99 22.4007 143.693 22.0635C143.402 21.7217 143.178 21.3229 143.023 20.8672C142.868 20.4115 142.791 19.917 142.791 19.3838ZM144.056 19.2266V19.3838C144.056 19.7529 144.099 20.1016 144.186 20.4297C144.272 20.7533 144.402 21.0404 144.575 21.291C144.753 21.5417 144.974 21.7399 145.238 21.8857C145.503 22.027 145.81 22.0977 146.161 22.0977C146.507 22.0977 146.811 22.027 147.07 21.8857C147.335 21.7399 147.553 21.5417 147.727 21.291C147.9 21.0404 148.03 20.7533 148.116 20.4297C148.207 20.1016 148.253 19.7529 148.253 19.3838V19.2266C148.253 18.862 148.207 18.5179 148.116 18.1943C148.03 17.8662 147.897 17.5768 147.72 17.3262C147.547 17.071 147.328 16.8704 147.063 16.7246C146.804 16.5788 146.498 16.5059 146.147 16.5059C145.801 16.5059 145.496 16.5788 145.231 16.7246C144.972 16.8704 144.753 17.071 144.575 17.3262C144.402 17.5768 144.272 17.8662 144.186 18.1943C144.099 18.5179 144.056 18.862 144.056 19.2266ZM155.636 21.291V15.6035H156.907V23H155.697L155.636 21.291ZM155.875 19.7324L156.401 19.7188C156.401 20.2109 156.349 20.6667 156.244 21.0859C156.144 21.5007 155.98 21.8607 155.752 22.166C155.524 22.4714 155.226 22.7106 154.856 22.8838C154.487 23.0524 154.038 23.1367 153.51 23.1367C153.15 23.1367 152.819 23.0843 152.519 22.9795C152.222 22.8747 151.967 22.7129 151.753 22.4941C151.539 22.2754 151.372 21.9906 151.254 21.6396C151.14 21.2887 151.083 20.8672 151.083 20.375V15.6035H152.348V20.3887C152.348 20.7214 152.384 20.9971 152.457 21.2158C152.535 21.43 152.637 21.6009 152.765 21.7285C152.897 21.8516 153.043 21.9382 153.202 21.9883C153.366 22.0384 153.535 22.0635 153.708 22.0635C154.246 22.0635 154.672 21.9609 154.986 21.7559C155.301 21.5462 155.526 21.266 155.663 20.915C155.804 20.5596 155.875 20.1654 155.875 19.7324ZM166.833 21.291V15.6035H168.104V23H166.895L166.833 21.291ZM167.072 19.7324L167.599 19.7188C167.599 20.2109 167.546 20.6667 167.441 21.0859C167.341 21.5007 167.177 21.8607 166.949 22.166C166.721 22.4714 166.423 22.7106 166.054 22.8838C165.685 23.0524 165.236 23.1367 164.707 23.1367C164.347 23.1367 164.017 23.0843 163.716 22.9795C163.42 22.8747 163.164 22.7129 162.95 22.4941C162.736 22.2754 162.57 21.9906 162.451 21.6396C162.337 21.2887 162.28 20.8672 162.28 20.375V15.6035H163.545V20.3887C163.545 20.7214 163.581 20.9971 163.654 21.2158C163.732 21.43 163.834 21.6009 163.962 21.7285C164.094 21.8516 164.24 21.9382 164.399 21.9883C164.563 22.0384 164.732 22.0635 164.905 22.0635C165.443 22.0635 165.869 21.9609 166.184 21.7559C166.498 21.5462 166.724 21.266 166.86 20.915C167.002 20.5596 167.072 20.1654 167.072 19.7324ZM174.339 21.0381C174.339 20.8558 174.298 20.6872 174.216 20.5322C174.138 20.3727 173.977 20.2292 173.73 20.1016C173.489 19.9694 173.124 19.8555 172.637 19.7598C172.227 19.6732 171.855 19.5706 171.522 19.4521C171.194 19.3337 170.914 19.1901 170.682 19.0215C170.454 18.8529 170.278 18.6546 170.155 18.4268C170.032 18.1989 169.971 17.9323 169.971 17.627C169.971 17.3353 170.035 17.0596 170.162 16.7998C170.294 16.54 170.479 16.3099 170.716 16.1094C170.957 15.9089 171.247 15.7516 171.584 15.6377C171.921 15.5238 172.297 15.4668 172.712 15.4668C173.304 15.4668 173.81 15.5716 174.229 15.7812C174.649 15.9909 174.97 16.2712 175.193 16.6221C175.417 16.9684 175.528 17.3535 175.528 17.7773H174.264C174.264 17.5723 174.202 17.374 174.079 17.1826C173.961 16.9867 173.785 16.8249 173.553 16.6973C173.325 16.5697 173.045 16.5059 172.712 16.5059C172.361 16.5059 172.076 16.5605 171.857 16.6699C171.643 16.7747 171.486 16.9092 171.386 17.0732C171.29 17.2373 171.242 17.4105 171.242 17.5928C171.242 17.7295 171.265 17.8525 171.311 17.9619C171.361 18.0667 171.447 18.1647 171.57 18.2559C171.693 18.3424 171.867 18.4245 172.09 18.502C172.313 18.5794 172.598 18.6569 172.944 18.7344C173.55 18.8711 174.049 19.0352 174.441 19.2266C174.833 19.418 175.125 19.6527 175.316 19.9307C175.508 20.2087 175.604 20.5459 175.604 20.9424C175.604 21.266 175.535 21.5622 175.398 21.8311C175.266 22.0999 175.073 22.3324 174.817 22.5283C174.567 22.7197 174.266 22.8701 173.915 22.9795C173.569 23.0843 173.179 23.1367 172.746 23.1367C172.094 23.1367 171.543 23.0205 171.092 22.7881C170.641 22.5557 170.299 22.2549 170.066 21.8857C169.834 21.5166 169.718 21.127 169.718 20.7168H170.989C171.007 21.0632 171.108 21.3389 171.29 21.5439C171.472 21.7445 171.696 21.888 171.96 21.9746C172.224 22.0566 172.486 22.0977 172.746 22.0977C173.092 22.0977 173.382 22.0521 173.614 21.9609C173.851 21.8698 174.031 21.7445 174.154 21.585C174.277 21.4255 174.339 21.2432 174.339 21.0381ZM180.334 23.1367C179.819 23.1367 179.352 23.0501 178.933 22.877C178.518 22.6992 178.16 22.4508 177.859 22.1318C177.563 21.8128 177.335 21.4346 177.176 20.9971C177.016 20.5596 176.937 20.0811 176.937 19.5615V19.2744C176.937 18.6729 177.025 18.1374 177.203 17.668C177.381 17.194 177.622 16.793 177.928 16.4648C178.233 16.1367 178.579 15.8883 178.967 15.7197C179.354 15.5511 179.755 15.4668 180.17 15.4668C180.699 15.4668 181.154 15.5579 181.537 15.7402C181.924 15.9225 182.241 16.1777 182.487 16.5059C182.733 16.8294 182.916 17.2122 183.034 17.6543C183.153 18.0918 183.212 18.5703 183.212 19.0898V19.6572H177.688V18.625H181.947V18.5293C181.929 18.2012 181.861 17.8822 181.742 17.5723C181.628 17.2624 181.446 17.0072 181.195 16.8066C180.945 16.6061 180.603 16.5059 180.17 16.5059C179.883 16.5059 179.618 16.5674 179.377 16.6904C179.135 16.8089 178.928 16.9867 178.755 17.2236C178.582 17.4606 178.447 17.75 178.352 18.0918C178.256 18.4336 178.208 18.8278 178.208 19.2744V19.5615C178.208 19.9124 178.256 20.2428 178.352 20.5527C178.452 20.8581 178.595 21.127 178.782 21.3594C178.974 21.5918 179.204 21.7741 179.473 21.9062C179.746 22.0384 180.056 22.1045 180.402 22.1045C180.849 22.1045 181.227 22.0133 181.537 21.8311C181.847 21.6488 182.118 21.4049 182.351 21.0996L183.116 21.708C182.957 21.9495 182.754 22.1797 182.508 22.3984C182.262 22.6172 181.959 22.7949 181.599 22.9316C181.243 23.0684 180.822 23.1367 180.334 23.1367ZM187.437 20.1973H186.165C186.17 19.7598 186.208 19.402 186.281 19.124C186.359 18.8415 186.484 18.584 186.657 18.3516C186.83 18.1191 187.061 17.8548 187.348 17.5586C187.557 17.3444 187.749 17.1439 187.922 16.957C188.1 16.7656 188.243 16.5605 188.353 16.3418C188.462 16.1185 188.517 15.8519 188.517 15.542C188.517 15.2275 188.46 14.9564 188.346 14.7285C188.236 14.5007 188.072 14.3252 187.854 14.2021C187.639 14.0791 187.373 14.0176 187.054 14.0176C186.789 14.0176 186.539 14.0654 186.302 14.1611C186.065 14.2568 185.873 14.4049 185.728 14.6055C185.582 14.8014 185.507 15.0589 185.502 15.3779H184.237C184.246 14.863 184.374 14.4209 184.62 14.0518C184.871 13.6826 185.208 13.4001 185.632 13.2041C186.056 13.0081 186.53 12.9102 187.054 12.9102C187.632 12.9102 188.125 13.015 188.53 13.2246C188.94 13.4342 189.253 13.735 189.467 14.127C189.681 14.5143 189.788 14.9746 189.788 15.5078C189.788 15.918 189.704 16.2962 189.535 16.6426C189.371 16.9844 189.159 17.3057 188.899 17.6064C188.64 17.9072 188.364 18.1943 188.072 18.4678C187.822 18.7002 187.653 18.9622 187.566 19.2539C187.48 19.5456 187.437 19.86 187.437 20.1973ZM186.11 22.3643C186.11 22.1592 186.174 21.986 186.302 21.8447C186.429 21.7035 186.614 21.6328 186.855 21.6328C187.102 21.6328 187.288 21.7035 187.416 21.8447C187.544 21.986 187.607 22.1592 187.607 22.3643C187.607 22.5602 187.544 22.7288 187.416 22.8701C187.288 23.0114 187.102 23.082 186.855 23.082C186.614 23.082 186.429 23.0114 186.302 22.8701C186.174 22.7288 186.11 22.5602 186.11 22.3643Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M24 32.5C19.86 32.5 16.5 35.86 16.5 40C16.5 44.14 19.86 47.5 24 47.5C28.14 47.5 31.5 44.14 31.5 40C31.5 35.86 28.14 32.5 24 32.5ZM24 46C20.685 46 18 43.315 18 40C18 36.685 20.685 34 24 34C27.315 34 30 36.685 30 40C30 43.315 27.315 46 24 46Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M40.4814 40.8755H38.0122V39.8789H40.4814C40.9596 39.8789 41.3468 39.8027 41.6431 39.6504C41.9393 39.498 42.1551 39.2865 42.2905 39.0156C42.4302 38.7448 42.5 38.4359 42.5 38.0889C42.5 37.7715 42.4302 37.4731 42.2905 37.1938C42.1551 36.9146 41.9393 36.6903 41.6431 36.521C41.3468 36.3475 40.9596 36.2607 40.4814 36.2607H38.2979V44.5H37.0728V35.2578H40.4814C41.1797 35.2578 41.77 35.3784 42.2524 35.6196C42.7349 35.8608 43.1009 36.1951 43.3506 36.6226C43.6003 37.0457 43.7251 37.5303 43.7251 38.0762C43.7251 38.6686 43.6003 39.1743 43.3506 39.5933C43.1009 40.0122 42.7349 40.3317 42.2524 40.5518C41.77 40.7676 41.1797 40.8755 40.4814 40.8755ZM49.2983 42.9131V37.6318H50.479V44.5H49.3555L49.2983 42.9131ZM49.5205 41.4658L50.0093 41.4531C50.0093 41.9102 49.9606 42.3333 49.8633 42.7227C49.7702 43.1077 49.6178 43.4421 49.4062 43.7256C49.1947 44.0091 48.9175 44.2313 48.5747 44.3921C48.2319 44.5487 47.8151 44.627 47.3242 44.627C46.9899 44.627 46.6831 44.5783 46.4038 44.481C46.1287 44.3836 45.8918 44.2334 45.6929 44.0303C45.494 43.8271 45.3395 43.5627 45.2295 43.2368C45.1237 42.911 45.0708 42.5195 45.0708 42.0625V37.6318H46.2451V42.0752C46.2451 42.3841 46.279 42.6401 46.3467 42.8433C46.4186 43.0422 46.5138 43.2008 46.6323 43.3193C46.755 43.4336 46.8905 43.514 47.0386 43.5605C47.1909 43.6071 47.3475 43.6304 47.5083 43.6304C48.0076 43.6304 48.4033 43.5352 48.6953 43.3447C48.9873 43.1501 49.1968 42.8898 49.3237 42.564C49.4549 42.2339 49.5205 41.8678 49.5205 41.4658ZM52.2627 34.75H53.4434V43.167L53.3418 44.5H52.2627V34.75ZM58.0835 41.0088V41.1421C58.0835 41.6414 58.0243 42.1048 57.9058 42.5322C57.7873 42.9554 57.6138 43.3236 57.3853 43.6367C57.1567 43.9499 56.8774 44.1932 56.5474 44.3667C56.2173 44.5402 55.8385 44.627 55.4111 44.627C54.9753 44.627 54.5923 44.5529 54.2622 44.4048C53.9364 44.2524 53.6613 44.0345 53.437 43.751C53.2127 43.4674 53.0329 43.1247 52.8975 42.7227C52.7663 42.3206 52.6753 41.8678 52.6245 41.3643V40.7803C52.6753 40.2725 52.7663 39.8175 52.8975 39.4155C53.0329 39.0135 53.2127 38.6707 53.437 38.3872C53.6613 38.0994 53.9364 37.8815 54.2622 37.7334C54.5881 37.5811 54.9668 37.5049 55.3984 37.5049C55.8301 37.5049 56.2131 37.5895 56.5474 37.7588C56.8817 37.9238 57.161 38.1608 57.3853 38.4697C57.6138 38.7786 57.7873 39.1489 57.9058 39.5806C58.0243 40.008 58.0835 40.484 58.0835 41.0088ZM56.9028 41.1421V41.0088C56.9028 40.666 56.8711 40.3444 56.8076 40.0439C56.7441 39.7393 56.6426 39.4727 56.5029 39.2441C56.3633 39.0114 56.1792 38.8294 55.9507 38.6982C55.7222 38.5628 55.4408 38.4951 55.1064 38.4951C54.8102 38.4951 54.5521 38.5459 54.332 38.6475C54.1162 38.749 53.9321 38.8866 53.7798 39.0601C53.6274 39.2293 53.5026 39.424 53.4053 39.644C53.3122 39.8599 53.2424 40.0841 53.1958 40.3169V41.8467C53.2635 42.1429 53.3735 42.4285 53.5259 42.7036C53.6825 42.9744 53.8898 43.1966 54.1479 43.3701C54.4103 43.5436 54.734 43.6304 55.1191 43.6304C55.4365 43.6304 55.7074 43.5669 55.9316 43.4399C56.1602 43.3088 56.3442 43.1289 56.4839 42.9004C56.6278 42.6719 56.7336 42.4074 56.8013 42.1069C56.869 41.8065 56.9028 41.4849 56.9028 41.1421ZM60.8447 34.75V44.5H59.6641V34.75H60.8447ZM64.0059 37.6318V44.5H62.8252V37.6318H64.0059ZM62.7363 35.8101C62.7363 35.6196 62.7935 35.4588 62.9077 35.3276C63.0262 35.1965 63.1997 35.1309 63.4282 35.1309C63.6525 35.1309 63.8239 35.1965 63.9424 35.3276C64.0651 35.4588 64.1265 35.6196 64.1265 35.8101C64.1265 35.992 64.0651 36.1486 63.9424 36.2798C63.8239 36.4067 63.6525 36.4702 63.4282 36.4702C63.1997 36.4702 63.0262 36.4067 62.9077 36.2798C62.7935 36.1486 62.7363 35.992 62.7363 35.8101ZM68.6396 43.6621C68.9189 43.6621 69.1771 43.605 69.4141 43.4907C69.651 43.3765 69.8457 43.2199 69.998 43.021C70.1504 42.8179 70.2371 42.5872 70.2583 42.3291H71.3755C71.3543 42.7354 71.2168 43.1141 70.9629 43.4653C70.7132 43.8123 70.3853 44.0938 69.979 44.3096C69.5728 44.5212 69.1263 44.627 68.6396 44.627C68.1234 44.627 67.6727 44.536 67.2876 44.354C66.9067 44.172 66.5894 43.9224 66.3354 43.605C66.0858 43.2876 65.8975 42.9237 65.7705 42.5132C65.6478 42.0985 65.5864 41.6605 65.5864 41.1992V40.9326C65.5864 40.4714 65.6478 40.0355 65.7705 39.625C65.8975 39.2103 66.0858 38.8442 66.3354 38.5269C66.5894 38.2095 66.9067 37.9598 67.2876 37.7778C67.6727 37.5959 68.1234 37.5049 68.6396 37.5049C69.1771 37.5049 69.6468 37.6149 70.0488 37.835C70.4508 38.0508 70.7661 38.347 70.9946 38.7236C71.2274 39.096 71.3543 39.5192 71.3755 39.9932H70.2583C70.2371 39.7096 70.1567 39.4536 70.0171 39.2251C69.8817 38.9966 69.6955 38.8146 69.4585 38.6792C69.2257 38.5396 68.9528 38.4697 68.6396 38.4697C68.2799 38.4697 67.9774 38.5417 67.7319 38.6855C67.4907 38.8252 67.2982 39.0156 67.1543 39.2568C67.0146 39.4938 66.9131 39.7583 66.8496 40.0503C66.7904 40.3381 66.7607 40.6322 66.7607 40.9326V41.1992C66.7607 41.4997 66.7904 41.7959 66.8496 42.0879C66.9089 42.3799 67.0083 42.6444 67.1479 42.8813C67.2918 43.1183 67.4844 43.3088 67.7256 43.4526C67.971 43.5923 68.2757 43.6621 68.6396 43.6621Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M24 59.25C21.93 59.25 20.25 60.93 20.25 63C20.25 65.07 21.93 66.75 24 66.75C26.07 66.75 27.75 65.07 27.75 63C27.75 60.93 26.07 59.25 24 59.25ZM24 55.5C19.86 55.5 16.5 58.86 16.5 63C16.5 67.14 19.86 70.5 24 70.5C28.14 70.5 31.5 67.14 31.5 63C31.5 58.86 28.14 55.5 24 55.5ZM24 69C20.685 69 18 66.315 18 63C18 59.685 20.685 57 24 57C27.315 57 30 59.685 30 63C30 66.315 27.315 69 24 69Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M42.6523 64.561H43.8711C43.8076 65.145 43.6405 65.6676 43.3696 66.1289C43.0988 66.5902 42.7158 66.9562 42.2207 67.2271C41.7256 67.4937 41.1077 67.627 40.3672 67.627C39.8255 67.627 39.3325 67.5254 38.8882 67.3223C38.4481 67.1191 38.0693 66.8314 37.752 66.459C37.4346 66.0824 37.1891 65.6317 37.0156 65.1069C36.8464 64.578 36.7617 63.9897 36.7617 63.3423V62.4219C36.7617 61.7744 36.8464 61.1883 37.0156 60.6636C37.1891 60.1346 37.4367 59.6818 37.7583 59.3052C38.0841 58.9285 38.4756 58.6387 38.9326 58.4355C39.3896 58.2324 39.9038 58.1309 40.4751 58.1309C41.1733 58.1309 41.7637 58.262 42.2461 58.5244C42.7285 58.7868 43.103 59.1507 43.3696 59.6162C43.6405 60.0775 43.8076 60.6128 43.8711 61.2222H42.6523C42.5931 60.7905 42.4831 60.4202 42.3223 60.1113C42.1615 59.7982 41.9329 59.557 41.6367 59.3877C41.3405 59.2184 40.9533 59.1338 40.4751 59.1338C40.0646 59.1338 39.7028 59.2121 39.3896 59.3687C39.0807 59.5252 38.8205 59.7474 38.6089 60.0352C38.4015 60.3229 38.245 60.6678 38.1392 61.0698C38.0334 61.4718 37.9805 61.9183 37.9805 62.4092V63.3423C37.9805 63.7951 38.027 64.2204 38.1201 64.6182C38.2174 65.016 38.3634 65.3651 38.5581 65.6655C38.7528 65.966 39.0003 66.203 39.3008 66.3765C39.6012 66.5457 39.9567 66.6304 40.3672 66.6304C40.8877 66.6304 41.3024 66.5479 41.6113 66.3828C41.9202 66.2178 42.153 65.9808 42.3096 65.6719C42.4704 65.363 42.5846 64.9927 42.6523 64.561ZM49.4126 66.3257V62.79C49.4126 62.5192 49.3576 62.2843 49.2476 62.0854C49.1418 61.8823 48.981 61.7257 48.7651 61.6157C48.5493 61.5057 48.2827 61.4507 47.9653 61.4507C47.6691 61.4507 47.4089 61.5015 47.1846 61.603C46.9645 61.7046 46.791 61.8379 46.6641 62.0029C46.5413 62.168 46.48 62.3457 46.48 62.5361H45.3057C45.3057 62.2907 45.3691 62.0474 45.4961 61.8062C45.623 61.5649 45.805 61.347 46.042 61.1523C46.2832 60.9535 46.571 60.7969 46.9053 60.6826C47.2438 60.5641 47.6204 60.5049 48.0352 60.5049C48.5345 60.5049 48.9746 60.5895 49.3555 60.7588C49.7406 60.9281 50.041 61.1841 50.2568 61.5269C50.4769 61.8654 50.5869 62.2907 50.5869 62.8027V66.002C50.5869 66.2305 50.606 66.4738 50.644 66.7319C50.6864 66.9901 50.7477 67.2122 50.8281 67.3984V67.5H49.603C49.5438 67.3646 49.4972 67.1847 49.4634 66.9604C49.4295 66.7319 49.4126 66.5203 49.4126 66.3257ZM49.6157 63.3359L49.6284 64.1611H48.4414C48.1071 64.1611 47.8088 64.1886 47.5464 64.2437C47.284 64.2944 47.064 64.3727 46.8862 64.4785C46.7085 64.5843 46.5731 64.7176 46.48 64.8784C46.3869 65.035 46.3403 65.2191 46.3403 65.4307C46.3403 65.6465 46.389 65.8433 46.4863 66.021C46.5837 66.1987 46.7297 66.3405 46.9243 66.4463C47.1232 66.5479 47.3665 66.5986 47.6543 66.5986C48.014 66.5986 48.3314 66.5225 48.6064 66.3701C48.8815 66.2178 49.0994 66.0316 49.2603 65.8115C49.4253 65.5915 49.5142 65.3778 49.5269 65.1704L50.0283 65.7354C49.9987 65.9131 49.9183 66.1099 49.7871 66.3257C49.6559 66.5415 49.4803 66.7489 49.2603 66.9478C49.0444 67.1424 48.7863 67.3053 48.4858 67.4365C48.1896 67.5635 47.8553 67.627 47.4829 67.627C47.0174 67.627 46.609 67.536 46.2578 67.354C45.9108 67.172 45.64 66.9287 45.4453 66.624C45.2549 66.3151 45.1597 65.9702 45.1597 65.5894C45.1597 65.2212 45.2316 64.8975 45.3755 64.6182C45.5194 64.3346 45.7267 64.0998 45.9976 63.9136C46.2684 63.7231 46.5942 63.5793 46.9751 63.4819C47.356 63.3846 47.7812 63.3359 48.251 63.3359H49.6157ZM53.6084 61.7109V67.5H52.4341V60.6318H53.5767L53.6084 61.7109ZM55.7539 60.5938L55.7476 61.6855C55.6502 61.6644 55.5571 61.6517 55.4683 61.6475C55.3836 61.639 55.2863 61.6348 55.1763 61.6348C54.9054 61.6348 54.6663 61.6771 54.459 61.7617C54.2516 61.8464 54.076 61.9648 53.9321 62.1172C53.7882 62.2695 53.674 62.4515 53.5894 62.6631C53.509 62.8704 53.4561 63.099 53.4307 63.3486L53.1006 63.5391C53.1006 63.1243 53.1408 62.735 53.2212 62.3711C53.3058 62.0072 53.4349 61.6855 53.6084 61.4062C53.7819 61.1227 54.002 60.9027 54.2686 60.7461C54.5394 60.5853 54.861 60.5049 55.2334 60.5049C55.318 60.5049 55.4154 60.5155 55.5254 60.5366C55.6354 60.5535 55.7116 60.5726 55.7539 60.5938Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M49.8262 86.0967H47.167V85.0234H49.8262C50.3411 85.0234 50.7581 84.9414 51.0771 84.7773C51.3962 84.6133 51.6286 84.3854 51.7744 84.0938C51.9248 83.8021 52 83.4694 52 83.0957C52 82.7539 51.9248 82.4326 51.7744 82.1318C51.6286 81.8311 51.3962 81.5895 51.0771 81.4072C50.7581 81.2204 50.3411 81.127 49.8262 81.127H47.4746V90H46.1553V80.0469H49.8262C50.5781 80.0469 51.2139 80.1768 51.7334 80.4365C52.2529 80.6963 52.6471 81.0563 52.916 81.5166C53.1849 81.9723 53.3193 82.4941 53.3193 83.082C53.3193 83.7201 53.1849 84.2646 52.916 84.7158C52.6471 85.167 52.2529 85.5111 51.7334 85.748C51.2139 85.9805 50.5781 86.0967 49.8262 86.0967ZM59.0752 88.7354V84.9277C59.0752 84.6361 59.016 84.3831 58.8975 84.1689C58.7835 83.9502 58.6104 83.7816 58.3779 83.6631C58.1455 83.5446 57.8584 83.4854 57.5166 83.4854C57.1976 83.4854 56.9173 83.54 56.6758 83.6494C56.4388 83.7588 56.252 83.9023 56.1152 84.0801C55.9831 84.2578 55.917 84.4492 55.917 84.6543H54.6523C54.6523 84.39 54.7207 84.1279 54.8574 83.8682C54.9941 83.6084 55.1901 83.3737 55.4453 83.1641C55.7051 82.9499 56.015 82.7812 56.375 82.6582C56.7396 82.5306 57.1452 82.4668 57.5918 82.4668C58.1296 82.4668 58.6035 82.5579 59.0137 82.7402C59.4284 82.9225 59.752 83.1982 59.9844 83.5674C60.2214 83.932 60.3398 84.39 60.3398 84.9414V88.3867C60.3398 88.6328 60.3604 88.8949 60.4014 89.1729C60.4469 89.4508 60.513 89.6901 60.5996 89.8906V90H59.2803C59.2165 89.8542 59.1663 89.6605 59.1299 89.4189C59.0934 89.1729 59.0752 88.945 59.0752 88.7354ZM59.2939 85.5156L59.3076 86.4043H58.0293C57.6693 86.4043 57.348 86.4339 57.0654 86.4932C56.7829 86.5479 56.5459 86.6322 56.3545 86.7461C56.1631 86.86 56.0173 87.0036 55.917 87.1768C55.8167 87.3454 55.7666 87.5436 55.7666 87.7715C55.7666 88.0039 55.819 88.2158 55.9238 88.4072C56.0286 88.5986 56.1859 88.7513 56.3955 88.8652C56.6097 88.9746 56.8717 89.0293 57.1816 89.0293C57.569 89.0293 57.9108 88.9473 58.207 88.7832C58.5033 88.6191 58.738 88.4186 58.9111 88.1816C59.0889 87.9447 59.1846 87.7145 59.1982 87.4912L59.7383 88.0996C59.7064 88.291 59.6198 88.5029 59.4785 88.7354C59.3372 88.9678 59.1481 89.1911 58.9111 89.4053C58.6787 89.6149 58.4007 89.7904 58.0771 89.9316C57.7581 90.0684 57.3981 90.1367 56.9971 90.1367C56.4958 90.1367 56.056 90.0387 55.6777 89.8428C55.304 89.6468 55.0124 89.3848 54.8027 89.0566C54.5977 88.724 54.4951 88.3525 54.4951 87.9424C54.4951 87.5459 54.5726 87.1973 54.7275 86.8965C54.8825 86.5911 55.1058 86.3382 55.3975 86.1377C55.6891 85.9326 56.04 85.7777 56.4502 85.6729C56.8604 85.568 57.3184 85.5156 57.8242 85.5156H59.2939ZM63.5938 83.7656V90H62.3291V82.6035H63.5596L63.5938 83.7656ZM65.9043 82.5625L65.8975 83.7383C65.7926 83.7155 65.6924 83.7018 65.5967 83.6973C65.5055 83.6882 65.4007 83.6836 65.2822 83.6836C64.9906 83.6836 64.7331 83.7292 64.5098 83.8203C64.2865 83.9115 64.0973 84.0391 63.9424 84.2031C63.7874 84.3672 63.6644 84.5632 63.5732 84.791C63.4867 85.0143 63.4297 85.2604 63.4023 85.5293L63.0469 85.7344C63.0469 85.2878 63.0902 84.8685 63.1768 84.4766C63.2679 84.0846 63.4069 83.7383 63.5938 83.4375C63.7806 83.1322 64.0176 82.8952 64.3047 82.7266C64.5964 82.5534 64.9427 82.4668 65.3438 82.4668C65.4349 82.4668 65.5397 82.4782 65.6582 82.501C65.7767 82.5192 65.8587 82.5397 65.9043 82.5625ZM68.3447 79.5V90H67.0732V79.5H68.3447ZM72.8633 82.6035L69.6367 86.0557L67.832 87.9287L67.7295 86.582L69.0215 85.0371L71.3184 82.6035H72.8633ZM71.708 90L69.0693 86.4727L69.7256 85.3447L73.1982 90H71.708ZM75.543 82.6035V90H74.2715V82.6035H75.543ZM74.1758 80.6416C74.1758 80.4365 74.2373 80.2633 74.3604 80.1221C74.488 79.9808 74.6748 79.9102 74.9209 79.9102C75.1624 79.9102 75.347 79.9808 75.4746 80.1221C75.6068 80.2633 75.6729 80.4365 75.6729 80.6416C75.6729 80.8376 75.6068 81.0062 75.4746 81.1475C75.347 81.2842 75.1624 81.3525 74.9209 81.3525C74.6748 81.3525 74.488 81.2842 74.3604 81.1475C74.2373 81.0062 74.1758 80.8376 74.1758 80.6416ZM78.8379 84.1826V90H77.5732V82.6035H78.7695L78.8379 84.1826ZM78.5371 86.0215L78.0107 86.001C78.0153 85.4951 78.0905 85.028 78.2363 84.5996C78.3822 84.1667 78.5872 83.7907 78.8516 83.4717C79.1159 83.1527 79.4303 82.9066 79.7949 82.7334C80.1641 82.5557 80.5719 82.4668 81.0186 82.4668C81.3831 82.4668 81.7113 82.5169 82.0029 82.6172C82.2946 82.7129 82.543 82.8678 82.748 83.082C82.9577 83.2962 83.1172 83.5742 83.2266 83.916C83.3359 84.2533 83.3906 84.6657 83.3906 85.1533V90H82.1191V85.1396C82.1191 84.7523 82.0622 84.4424 81.9482 84.21C81.8343 83.973 81.668 83.8021 81.4492 83.6973C81.2305 83.5879 80.9616 83.5332 80.6426 83.5332C80.3281 83.5332 80.041 83.5993 79.7812 83.7314C79.526 83.8636 79.305 84.0459 79.1182 84.2783C78.9359 84.5107 78.7923 84.7773 78.6875 85.0781C78.5872 85.3743 78.5371 85.6888 78.5371 86.0215ZM90.1035 82.6035H91.252V89.8428C91.252 90.4945 91.1198 91.0505 90.8555 91.5107C90.5911 91.971 90.222 92.3197 89.748 92.5566C89.2786 92.7982 88.7363 92.9189 88.1211 92.9189C87.8659 92.9189 87.5651 92.8779 87.2188 92.7959C86.877 92.7184 86.5397 92.584 86.207 92.3926C85.8789 92.2057 85.6032 91.9528 85.3799 91.6338L86.043 90.8818C86.3529 91.2555 86.6764 91.5153 87.0137 91.6611C87.3555 91.807 87.6927 91.8799 88.0254 91.8799C88.4264 91.8799 88.7728 91.8047 89.0645 91.6543C89.3561 91.5039 89.5817 91.2806 89.7412 90.9844C89.9053 90.6927 89.9873 90.3327 89.9873 89.9043V84.2305L90.1035 82.6035ZM85.0107 86.3838V86.2402C85.0107 85.6751 85.0768 85.1624 85.209 84.7021C85.3457 84.2373 85.5394 83.8385 85.79 83.5059C86.0452 83.1732 86.3529 82.918 86.7129 82.7402C87.0729 82.5579 87.4785 82.4668 87.9297 82.4668C88.3945 82.4668 88.8001 82.5488 89.1465 82.7129C89.4974 82.8724 89.7936 83.1071 90.0352 83.417C90.2812 83.7223 90.4749 84.0915 90.6162 84.5244C90.7575 84.9574 90.8555 85.4473 90.9102 85.9941V86.623C90.86 87.1654 90.762 87.653 90.6162 88.0859C90.4749 88.5189 90.2812 88.888 90.0352 89.1934C89.7936 89.4987 89.4974 89.7334 89.1465 89.8975C88.7956 90.057 88.3854 90.1367 87.916 90.1367C87.474 90.1367 87.0729 90.0433 86.7129 89.8564C86.3574 89.6696 86.0521 89.4076 85.7969 89.0703C85.5417 88.7331 85.3457 88.3366 85.209 87.8809C85.0768 87.4206 85.0107 86.9215 85.0107 86.3838ZM86.2754 86.2402V86.3838C86.2754 86.7529 86.3118 87.0993 86.3848 87.4229C86.4622 87.7464 86.5785 88.0312 86.7334 88.2773C86.8929 88.5234 87.0957 88.7171 87.3418 88.8584C87.5879 88.9951 87.8818 89.0635 88.2236 89.0635C88.6429 89.0635 88.9893 88.9746 89.2627 88.7969C89.5361 88.6191 89.7526 88.3844 89.9121 88.0928C90.0762 87.8011 90.2038 87.4844 90.2949 87.1426V85.4951C90.2448 85.2445 90.1673 85.0029 90.0625 84.7705C89.9622 84.5335 89.8301 84.3239 89.666 84.1416C89.5065 83.9548 89.3083 83.8066 89.0713 83.6973C88.8343 83.5879 88.5563 83.5332 88.2373 83.5332C87.891 83.5332 87.5924 83.6061 87.3418 83.752C87.0957 83.8932 86.8929 84.0892 86.7334 84.3398C86.5785 84.5859 86.4622 84.873 86.3848 85.2012C86.3118 85.5247 86.2754 85.8711 86.2754 86.2402ZM97.9102 84.0254V92.8438H96.6387V82.6035H97.8008L97.9102 84.0254ZM102.894 86.2402V86.3838C102.894 86.9215 102.83 87.4206 102.702 87.8809C102.575 88.3366 102.388 88.7331 102.142 89.0703C101.9 89.4076 101.602 89.6696 101.246 89.8564C100.891 90.0433 100.483 90.1367 100.022 90.1367C99.5531 90.1367 99.1383 90.0592 98.7783 89.9043C98.4183 89.7493 98.113 89.5238 97.8623 89.2275C97.6117 88.9313 97.4111 88.5758 97.2607 88.1611C97.1149 87.7464 97.0146 87.2793 96.96 86.7598V85.9941C97.0146 85.4473 97.1172 84.9574 97.2676 84.5244C97.418 84.0915 97.6162 83.7223 97.8623 83.417C98.113 83.1071 98.416 82.8724 98.7715 82.7129C99.127 82.5488 99.5371 82.4668 100.002 82.4668C100.467 82.4668 100.879 82.5579 101.239 82.7402C101.599 82.918 101.902 83.1732 102.148 83.5059C102.395 83.8385 102.579 84.2373 102.702 84.7021C102.83 85.1624 102.894 85.6751 102.894 86.2402ZM101.622 86.3838V86.2402C101.622 85.8711 101.583 85.5247 101.506 85.2012C101.428 84.873 101.308 84.5859 101.144 84.3398C100.984 84.0892 100.779 83.8932 100.528 83.752C100.278 83.6061 99.9792 83.5332 99.6328 83.5332C99.3138 83.5332 99.0358 83.5879 98.7988 83.6973C98.5664 83.8066 98.3682 83.9548 98.2041 84.1416C98.04 84.3239 97.9056 84.5335 97.8008 84.7705C97.7005 85.0029 97.6253 85.2445 97.5752 85.4951V87.2656C97.6663 87.5846 97.7939 87.8854 97.958 88.168C98.1221 88.446 98.3408 88.6715 98.6143 88.8447C98.8877 89.0133 99.2318 89.0977 99.6465 89.0977C99.9883 89.0977 100.282 89.027 100.528 88.8857C100.779 88.7399 100.984 88.5417 101.144 88.291C101.308 88.0404 101.428 87.7533 101.506 87.4297C101.583 87.1016 101.622 86.7529 101.622 86.3838ZM105.881 79.5V90H104.609V79.5H105.881ZM112.272 88.7354V84.9277C112.272 84.6361 112.213 84.3831 112.095 84.1689C111.981 83.9502 111.808 83.7816 111.575 83.6631C111.343 83.5446 111.056 83.4854 110.714 83.4854C110.395 83.4854 110.115 83.54 109.873 83.6494C109.636 83.7588 109.449 83.9023 109.312 84.0801C109.18 84.2578 109.114 84.4492 109.114 84.6543H107.85C107.85 84.39 107.918 84.1279 108.055 83.8682C108.191 83.6084 108.387 83.3737 108.643 83.1641C108.902 82.9499 109.212 82.7812 109.572 82.6582C109.937 82.5306 110.342 82.4668 110.789 82.4668C111.327 82.4668 111.801 82.5579 112.211 82.7402C112.626 82.9225 112.949 83.1982 113.182 83.5674C113.419 83.932 113.537 84.39 113.537 84.9414V88.3867C113.537 88.6328 113.558 88.8949 113.599 89.1729C113.644 89.4508 113.71 89.6901 113.797 89.8906V90H112.478C112.414 89.8542 112.364 89.6605 112.327 89.4189C112.291 89.1729 112.272 88.945 112.272 88.7354ZM112.491 85.5156L112.505 86.4043H111.227C110.867 86.4043 110.545 86.4339 110.263 86.4932C109.98 86.5479 109.743 86.6322 109.552 86.7461C109.36 86.86 109.215 87.0036 109.114 87.1768C109.014 87.3454 108.964 87.5436 108.964 87.7715C108.964 88.0039 109.016 88.2158 109.121 88.4072C109.226 88.5986 109.383 88.7513 109.593 88.8652C109.807 88.9746 110.069 89.0293 110.379 89.0293C110.766 89.0293 111.108 88.9473 111.404 88.7832C111.701 88.6191 111.935 88.4186 112.108 88.1816C112.286 87.9447 112.382 87.7145 112.396 87.4912L112.936 88.0996C112.904 88.291 112.817 88.5029 112.676 88.7354C112.535 88.9678 112.345 89.1911 112.108 89.4053C111.876 89.6149 111.598 89.7904 111.274 89.9316C110.955 90.0684 110.595 90.1367 110.194 90.1367C109.693 90.1367 109.253 90.0387 108.875 89.8428C108.501 89.6468 108.21 89.3848 108 89.0566C107.795 88.724 107.692 88.3525 107.692 87.9424C107.692 87.5459 107.77 87.1973 107.925 86.8965C108.08 86.5911 108.303 86.3382 108.595 86.1377C108.886 85.9326 109.237 85.7777 109.647 85.6729C110.058 85.568 110.516 85.5156 111.021 85.5156H112.491ZM118.486 89.0977C118.787 89.0977 119.065 89.0361 119.32 88.9131C119.576 88.79 119.785 88.6214 119.949 88.4072C120.113 88.1885 120.207 87.9401 120.229 87.6621H121.433C121.41 88.0996 121.262 88.5075 120.988 88.8857C120.719 89.2594 120.366 89.5625 119.929 89.7949C119.491 90.0228 119.01 90.1367 118.486 90.1367C117.93 90.1367 117.445 90.0387 117.03 89.8428C116.62 89.6468 116.278 89.3779 116.005 89.0361C115.736 88.6943 115.533 88.3024 115.396 87.8604C115.264 87.4137 115.198 86.9421 115.198 86.4453V86.1582C115.198 85.6615 115.264 85.1921 115.396 84.75C115.533 84.3034 115.736 83.9092 116.005 83.5674C116.278 83.2256 116.62 82.9567 117.03 82.7607C117.445 82.5648 117.93 82.4668 118.486 82.4668C119.065 82.4668 119.571 82.5853 120.004 82.8223C120.437 83.0547 120.776 83.3737 121.022 83.7793C121.273 84.1803 121.41 84.6361 121.433 85.1465H120.229C120.207 84.8411 120.12 84.5654 119.97 84.3193C119.824 84.0732 119.623 83.8773 119.368 83.7314C119.118 83.5811 118.824 83.5059 118.486 83.5059C118.099 83.5059 117.773 83.5833 117.509 83.7383C117.249 83.8887 117.042 84.0938 116.887 84.3535C116.736 84.6087 116.627 84.8936 116.559 85.208C116.495 85.5179 116.463 85.8346 116.463 86.1582V86.4453C116.463 86.7689 116.495 87.0879 116.559 87.4023C116.622 87.7168 116.729 88.0016 116.88 88.2568C117.035 88.512 117.242 88.7171 117.502 88.8721C117.766 89.0225 118.094 89.0977 118.486 89.0977ZM125.924 90.1367C125.409 90.1367 124.942 90.0501 124.522 89.877C124.108 89.6992 123.75 89.4508 123.449 89.1318C123.153 88.8128 122.925 88.4346 122.766 87.9971C122.606 87.5596 122.526 87.0811 122.526 86.5615V86.2744C122.526 85.6729 122.615 85.1374 122.793 84.668C122.971 84.194 123.212 83.793 123.518 83.4648C123.823 83.1367 124.169 82.8883 124.557 82.7197C124.944 82.5511 125.345 82.4668 125.76 82.4668C126.288 82.4668 126.744 82.5579 127.127 82.7402C127.514 82.9225 127.831 83.1777 128.077 83.5059C128.323 83.8294 128.506 84.2122 128.624 84.6543C128.743 85.0918 128.802 85.5703 128.802 86.0898V86.6572H123.278V85.625H127.537V85.5293C127.519 85.2012 127.451 84.8822 127.332 84.5723C127.218 84.2624 127.036 84.0072 126.785 83.8066C126.535 83.6061 126.193 83.5059 125.76 83.5059C125.473 83.5059 125.208 83.5674 124.967 83.6904C124.725 83.8089 124.518 83.9867 124.345 84.2236C124.172 84.4606 124.037 84.75 123.941 85.0918C123.846 85.4336 123.798 85.8278 123.798 86.2744V86.5615C123.798 86.9124 123.846 87.2428 123.941 87.5527C124.042 87.8581 124.185 88.127 124.372 88.3594C124.563 88.5918 124.794 88.7741 125.062 88.9062C125.336 89.0384 125.646 89.1045 125.992 89.1045C126.439 89.1045 126.817 89.0133 127.127 88.8311C127.437 88.6488 127.708 88.4049 127.94 88.0996L128.706 88.708C128.547 88.9495 128.344 89.1797 128.098 89.3984C127.852 89.6172 127.549 89.7949 127.188 89.9316C126.833 90.0684 126.411 90.1367 125.924 90.1367ZM133.026 87.1973H131.755C131.759 86.7598 131.798 86.402 131.871 86.124C131.949 85.8415 132.074 85.584 132.247 85.3516C132.42 85.1191 132.65 84.8548 132.938 84.5586C133.147 84.3444 133.339 84.1439 133.512 83.957C133.689 83.7656 133.833 83.5605 133.942 83.3418C134.052 83.1185 134.106 82.8519 134.106 82.542C134.106 82.2275 134.049 81.9564 133.936 81.7285C133.826 81.5007 133.662 81.3252 133.443 81.2021C133.229 81.0791 132.963 81.0176 132.644 81.0176C132.379 81.0176 132.129 81.0654 131.892 81.1611C131.655 81.2568 131.463 81.4049 131.317 81.6055C131.172 81.8014 131.096 82.0589 131.092 82.3779H129.827C129.836 81.863 129.964 81.4209 130.21 81.0518C130.461 80.6826 130.798 80.4001 131.222 80.2041C131.646 80.0081 132.119 79.9102 132.644 79.9102C133.222 79.9102 133.715 80.015 134.12 80.2246C134.53 80.4342 134.842 80.735 135.057 81.127C135.271 81.5143 135.378 81.9746 135.378 82.5078C135.378 82.918 135.294 83.2962 135.125 83.6426C134.961 83.9844 134.749 84.3057 134.489 84.6064C134.229 84.9072 133.954 85.1943 133.662 85.4678C133.411 85.7002 133.243 85.9622 133.156 86.2539C133.07 86.5456 133.026 86.86 133.026 87.1973ZM131.7 89.3643C131.7 89.1592 131.764 88.986 131.892 88.8447C132.019 88.7035 132.204 88.6328 132.445 88.6328C132.691 88.6328 132.878 88.7035 133.006 88.8447C133.133 88.986 133.197 89.1592 133.197 89.3643C133.197 89.5602 133.133 89.7288 133.006 89.8701C132.878 90.0114 132.691 90.082 132.445 90.082C132.204 90.082 132.019 90.0114 131.892 89.8701C131.764 89.7288 131.7 89.5602 131.7 89.3643Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M54 99.5C49.86 99.5 46.5 102.86 46.5 107C46.5 111.14 49.86 114.5 54 114.5C58.14 114.5 61.5 111.14 61.5 107C61.5 102.86 58.14 99.5 54 99.5ZM54 113C50.685 113 48 110.315 48 107C48 103.685 50.685 101 54 101C57.315 101 60 103.685 60 107C60 110.315 57.315 113 54 113Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M67.498 102.258L69.8975 106.898L72.3032 102.258H73.6934L70.5068 108.047V111.5H69.2817V108.047L66.0952 102.258H67.498ZM77.1338 111.627C76.6556 111.627 76.2218 111.547 75.8325 111.386C75.4474 111.221 75.1152 110.99 74.8359 110.694C74.5609 110.398 74.3493 110.046 74.2012 109.64C74.0531 109.234 73.979 108.79 73.979 108.307V108.041C73.979 107.482 74.0615 106.985 74.2266 106.549C74.3916 106.109 74.6159 105.736 74.8994 105.432C75.1829 105.127 75.5046 104.896 75.8643 104.74C76.224 104.583 76.5964 104.505 76.9814 104.505C77.4723 104.505 77.8955 104.59 78.251 104.759C78.6107 104.928 78.9048 105.165 79.1333 105.47C79.3618 105.77 79.5311 106.126 79.6411 106.536C79.7511 106.942 79.8062 107.387 79.8062 107.869V108.396H74.6772V107.438H78.6318V107.349C78.6149 107.044 78.5514 106.748 78.4414 106.46C78.3356 106.172 78.1663 105.935 77.9336 105.749C77.7008 105.563 77.3835 105.47 76.9814 105.47C76.7148 105.47 76.4694 105.527 76.2451 105.641C76.0208 105.751 75.8283 105.916 75.6675 106.136C75.5067 106.356 75.3818 106.625 75.293 106.942C75.2041 107.26 75.1597 107.626 75.1597 108.041V108.307C75.1597 108.633 75.2041 108.94 75.293 109.228C75.3861 109.511 75.5194 109.761 75.6929 109.977C75.8706 110.192 76.0843 110.362 76.334 110.484C76.5879 110.607 76.8757 110.668 77.1973 110.668C77.612 110.668 77.9632 110.584 78.251 110.415C78.5387 110.245 78.7905 110.019 79.0063 109.735L79.7173 110.3C79.5692 110.525 79.3809 110.738 79.1523 110.941C78.9238 111.145 78.6424 111.31 78.3081 111.437C77.978 111.563 77.5866 111.627 77.1338 111.627ZM85.1763 109.678C85.1763 109.509 85.1382 109.352 85.062 109.208C84.9901 109.06 84.8398 108.927 84.6113 108.809C84.387 108.686 84.0485 108.58 83.5957 108.491C83.2148 108.411 82.87 108.316 82.561 108.206C82.2563 108.096 81.9961 107.962 81.7803 107.806C81.5687 107.649 81.4058 107.465 81.2915 107.253C81.1772 107.042 81.1201 106.794 81.1201 106.511C81.1201 106.24 81.1794 105.984 81.2979 105.743C81.4206 105.501 81.592 105.288 81.812 105.102C82.0363 104.915 82.305 104.769 82.6182 104.664C82.9313 104.558 83.2804 104.505 83.6655 104.505C84.2157 104.505 84.6854 104.602 85.0747 104.797C85.464 104.992 85.7624 105.252 85.9697 105.578C86.1771 105.899 86.2808 106.257 86.2808 106.65H85.1064C85.1064 106.46 85.0493 106.276 84.9351 106.098C84.825 105.916 84.6621 105.766 84.4463 105.647C84.2347 105.529 83.9744 105.47 83.6655 105.47C83.3397 105.47 83.0752 105.521 82.8721 105.622C82.6732 105.719 82.5272 105.844 82.4341 105.997C82.3452 106.149 82.3008 106.31 82.3008 106.479C82.3008 106.606 82.3219 106.72 82.3643 106.822C82.4108 106.919 82.4912 107.01 82.6055 107.095C82.7197 107.175 82.8805 107.251 83.0879 107.323C83.2952 107.395 83.5597 107.467 83.8813 107.539C84.4442 107.666 84.9076 107.818 85.2715 107.996C85.6354 108.174 85.9062 108.392 86.084 108.65C86.2617 108.908 86.3506 109.221 86.3506 109.589C86.3506 109.89 86.2871 110.165 86.1602 110.415C86.0374 110.664 85.8576 110.88 85.6206 111.062C85.3879 111.24 85.1086 111.379 84.7827 111.481C84.4611 111.578 84.0993 111.627 83.6973 111.627C83.0921 111.627 82.5801 111.519 82.1611 111.303C81.7422 111.087 81.4248 110.808 81.209 110.465C80.9932 110.123 80.8853 109.761 80.8853 109.38H82.0659C82.0828 109.701 82.1759 109.958 82.3452 110.148C82.5145 110.334 82.7218 110.467 82.9673 110.548C83.2127 110.624 83.4561 110.662 83.6973 110.662C84.0189 110.662 84.2876 110.62 84.5034 110.535C84.7235 110.451 84.8906 110.334 85.0049 110.186C85.1191 110.038 85.1763 109.869 85.1763 109.678Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M54 122.5C49.86 122.5 46.5 125.86 46.5 130C46.5 134.14 49.86 137.5 54 137.5C58.14 137.5 61.5 134.14 61.5 130C61.5 125.86 58.14 122.5 54 122.5ZM54 136C50.685 136 48 133.315 48 130C48 126.685 50.685 124 54 124C57.315 124 60 126.685 60 130C60 133.315 57.315 136 54 136Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M74.1821 125.258V134.5H72.9507L68.2979 127.372V134.5H67.0728V125.258H68.2979L72.9697 132.405V125.258H74.1821ZM75.8643 131.142V130.996C75.8643 130.501 75.9362 130.042 76.0801 129.619C76.224 129.191 76.4313 128.821 76.7021 128.508C76.973 128.19 77.3009 127.945 77.686 127.771C78.0711 127.594 78.5028 127.505 78.981 127.505C79.4634 127.505 79.8971 127.594 80.2822 127.771C80.6715 127.945 81.0016 128.19 81.2725 128.508C81.5475 128.821 81.757 129.191 81.9009 129.619C82.0448 130.042 82.1167 130.501 82.1167 130.996V131.142C82.1167 131.637 82.0448 132.096 81.9009 132.52C81.757 132.943 81.5475 133.313 81.2725 133.63C81.0016 133.944 80.6737 134.189 80.2886 134.367C79.9077 134.54 79.4761 134.627 78.9937 134.627C78.5112 134.627 78.0775 134.54 77.6924 134.367C77.3073 134.189 76.9772 133.944 76.7021 133.63C76.4313 133.313 76.224 132.943 76.0801 132.52C75.9362 132.096 75.8643 131.637 75.8643 131.142ZM77.0386 130.996V131.142C77.0386 131.485 77.0788 131.809 77.1592 132.113C77.2396 132.414 77.3602 132.68 77.521 132.913C77.686 133.146 77.8913 133.33 78.1367 133.465C78.3822 133.597 78.6678 133.662 78.9937 133.662C79.3153 133.662 79.5967 133.597 79.8379 133.465C80.0833 133.33 80.2865 133.146 80.4473 132.913C80.6081 132.68 80.7287 132.414 80.8091 132.113C80.8937 131.809 80.936 131.485 80.936 131.142V130.996C80.936 130.658 80.8937 130.338 80.8091 130.038C80.7287 129.733 80.606 129.464 80.4409 129.231C80.2801 128.994 80.077 128.808 79.8315 128.673C79.5903 128.537 79.3068 128.47 78.981 128.47C78.6593 128.47 78.3758 128.537 78.1304 128.673C77.8892 128.808 77.686 128.994 77.521 129.231C77.3602 129.464 77.2396 129.733 77.1592 130.038C77.0788 130.338 77.0386 130.658 77.0386 130.996Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M39.7071 84.2929C40.0976 84.6834 40.0976 85.3166 39.7071 85.7071L33.3431 92.0711C32.9526 92.4616 32.3195 92.4616 31.9289 92.0711C31.5384 91.6805 31.5384 91.0474 31.9289 90.6569L37.5858 85L31.9289 79.3431C31.5384 78.9526 31.5384 78.3195 31.9289 77.9289C32.3195 77.5384 32.9526 77.5384 33.3431 77.9289L39.7071 84.2929ZM25 70V75H23V70H25ZM34 84H39V86H34V84ZM25 75C25 79.9706 29.0294 84 34 84V86C27.9249 86 23 81.0751 23 75H25Z",fill:"#4272F9"})),{getCurrentInnerBlocks:Yt}=JetFBActions,{__:Xt}=wp.i18n,{useSelect:Qt}=wp.data,{BlockControls:el,InnerBlocks:Cl,useBlockProps:tl,InspectorControls:ll}=wp.blockEditor,{Button:rl,ToolbarGroup:nl,TextControl:al,PanelBody:il,Tip:ol}=wp.components,{useState:sl,useEffect:cl,RawHTML:dl}=wp.element;function ml(e){return e.some((({name:e})=>e.includes("form-break-field")))}const ul=JSON.parse('{"apiVersion":3,"name":"jet-forms/conditional-block","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","conditonal"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Conditional Block","icon":"\\n\\n\\n\\n","attributes":{"name":{"type":"string","default":""},"last_page_name":{"type":"string","default":""},"func_type":{"type":"string","default":""},"func_settings":{"type":"object","default":{}},"conditions":{"type":"array","default":[]},"className":{"type":"string","default":""},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"providesContext":{"jet-forms/conditional-block--name":"name","jet-forms/conditional-block--last_page_name":"last_page_name"}}'),{InnerBlocks:pl}=wp.blockEditor?wp.blockEditor:wp.editor;function fl(){return(0,h.createElement)(pl.Content,null)}const{dispatch:Vl}=wp.data,{Tools:Hl}=JetFBActions,hl={attributes:ul.attributes,supports:ul.supports,save:fl,isEligible(e){const{func_type:C=!1,conditions:t=[]}=e;return!1===C&&t?.length},migrate(e,C){const t={};let l=null;const[r]=C||[],n=[],a=e.conditions.sort((e=>"show"===e.type?-1:1));for(const e of a){var i;e.type=null!==(i=e.type)&&void 0!==i?i:"show","set_value"!==e.type?["show","hide"].includes(e.type)&&(null===l&&(l=e.type),delete e.type,"hide"===l&&Object.keys(t).length&&(t[e.field+"_or"]={or_operator:!0}),t[e.field]=e):n.push(e)}return n.length&&"object"==typeof r&&function(e,C){if(!e.name.includes("jet-forms/")||!e.attributes.hasOwnProperty("value"))return;const{updateBlock:t}=Vl("core/block-editor"),l=[];for(const{field:e,operator:t,set_value:r,value:n}of C){const C={id:Hl.getRandomID(),conditions:[{field:e,operator:t,value:n}],to_set:null!=r?r:""};l.push(C)}setTimeout((()=>{t(e.clientId,{attributes:{value:{groups:l}}})}))}(r,n),l=null!=l?l:"show",{...e,func_type:l,conditions:Object.values(t)}}},{__:bl,sprintf:Ml}=wp.i18n,{createBlock:Ll,createBlocksFromInnerBlocksTemplate:gl}=wp.blocks,{name:Zl,icon:yl=""}=ul,El={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:yl}}),description:bl("Utilize the Conditional Visibility functionality allowing to make fields of the form invisible to the users until some conditions are met.","jet-form-builder"),edit:function(e){const C=tl(),{setAttributes:t,attributes:l,clientId:r,editProps:{uniqKey:n}}=e;cl((()=>{t({name:r})}),[r,t]);const a=Yt(),i=a.reduce(((e,{name:C})=>e+C),""),[o,s]=sl(!1),[c,d]=sl((()=>ml(a)));cl((()=>{d(ml(a))}),[i]);const m=Qt((e=>e("jet-forms/block-conditions").getFunctionDisplay(l.func_type||"show")),[l.func_type]),u=l?.conditions?.length?(0,h.createElement)("span",{className:"dashicon dashicons dashicons-randomize","data-count":l.conditions.reduce(((e,C)=>C?.or_operator?e:e+1),0)}):(0,h.createElement)("span",{className:"dashicon dashicons dashicons-randomize"});return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},$t):(0,h.createElement)(h.Fragment,null,(0,h.createElement)("div",{...C},(0,h.createElement)("div",{className:"jet-form-builder__conditional"},(0,h.createElement)(Cl,{key:n("conditional-fields")}))),o&&(0,h.createElement)(yt,{key:n("ConditionsModal"),setShowModal:s}),(0,h.createElement)(el,null,(0,h.createElement)(nl,{key:n("ToolbarGroup")},(0,h.createElement)(rl,{className:"jet-fb-button",key:n("randomize"),isTertiary:!0,isSmall:!0,icon:u,onClick:()=>s(!0)}))),(0,h.createElement)(ll,null,(0,h.createElement)(il,{title:Xt("Conditions","jet-form-builder"),initialOpen:!0},(0,h.createElement)("p",{className:"jet-fb flex ai-center gap-05em"},(0,h.createElement)("b",null,m),(0,h.createElement)(rl,{isTertiary:!0,isSmall:!0,icon:"edit",onClick:()=>s(!0)})),(0,h.createElement)(wt.Provider,{value:{showModal:o,setShowModal:s}},(0,h.createElement)(Kt,{attributes:l}))),c&&(0,h.createElement)(il,{title:Xt("Multistep","jet-form-builder")},(0,h.createElement)(al,{label:Xt("Last Page Name","jet-form-builder"),key:n("last_page_name"),value:l.last_page_name,help:Xt('The value of this field will be set as the name of the last page with the "Progress Bar" block.',"jet-form-builder"),onChange:e=>t({last_page_name:e})}))),(0,h.createElement)(ll,{group:"advanced"},(0,h.createElement)("div",{style:{marginBottom:"1.5em"}},(0,h.createElement)(ol,null,(0,h.createElement)(dl,null,Xt("Add the CSS class jet-form-builder--hidden to make this block hidden by default.","jet-form-builder")))),(0,h.createElement)(al,{label:Xt("Additional CSS class(es)","jet-form-builder"),help:Xt("Separate multiple classes with spaces.","jet-form-builder"),value:l.class_name,onChange:e=>t({class_name:e})})))},save:fl,useEditProps:["uniqKey"],jfbGetFields:()=>[],__experimentalLabel:(e,{context:C})=>{var t;if("list-view"!==C)return;const l=wp.data.select("jet-forms/block-conditions").getFunction(e?.func_type),r=l?.label,n=null!==(t=e?.conditions?.reduce(((e,C)=>C?.or_operator?e:e+1),0))&&void 0!==t?t:0;return Ml(bl("%1$s %2$d condition(s)","jet-form-builder"),r,n)},example:{attributes:{isPreview:!0}},transforms:{from:[{type:"block",blocks:["*"],isMultiBlock:!0,__experimentalConvert:e=>{const C=e.map((({name:e,attributes:C,innerBlocks:t})=>[e,{...C},t]));return Ll(Zl,{},gl(C))},priority:0}]},deprecated:[hl]},wl=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_75_1407)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"20.5",width:"22",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.3887 29.4028V30.3677H28.0283V29.4028H34.3887ZM42.9199 29.4028V30.3677H36.5596V29.4028H42.9199Z",fill:"white"}),(0,h.createElement)("path",{d:"M49.8442 33.8779C49.8442 33.679 49.9056 33.5119 50.0283 33.3765C50.1553 33.2368 50.3372 33.167 50.5742 33.167C50.8112 33.167 50.991 33.2368 51.1138 33.3765C51.2407 33.5119 51.3042 33.679 51.3042 33.8779C51.3042 34.0726 51.2407 34.2376 51.1138 34.373C50.991 34.5085 50.8112 34.5762 50.5742 34.5762C50.3372 34.5762 50.1553 34.5085 50.0283 34.373C49.9056 34.2376 49.8442 34.0726 49.8442 33.8779ZM49.8506 28.2729C49.8506 28.0741 49.9119 27.9069 50.0347 27.7715C50.1616 27.6318 50.3436 27.562 50.5806 27.562C50.8175 27.562 50.9974 27.6318 51.1201 27.7715C51.2471 27.9069 51.3105 28.0741 51.3105 28.2729C51.3105 28.4676 51.2471 28.6326 51.1201 28.7681C50.9974 28.9035 50.8175 28.9712 50.5806 28.9712C50.3436 28.9712 50.1616 28.9035 50.0347 28.7681C49.9119 28.6326 49.8506 28.4676 49.8506 28.2729ZM62.7617 29.4028V30.3677H56.4014V29.4028H62.7617ZM71.293 29.4028V30.3677H64.9326V29.4028H71.293ZM76.5044 33.8779C76.5044 33.679 76.5658 33.5119 76.6885 33.3765C76.8154 33.2368 76.9974 33.167 77.2344 33.167C77.4714 33.167 77.6512 33.2368 77.7739 33.3765C77.9009 33.5119 77.9644 33.679 77.9644 33.8779C77.9644 34.0726 77.9009 34.2376 77.7739 34.373C77.6512 34.5085 77.4714 34.5762 77.2344 34.5762C76.9974 34.5762 76.8154 34.5085 76.6885 34.373C76.5658 34.2376 76.5044 34.0726 76.5044 33.8779ZM76.5107 28.2729C76.5107 28.0741 76.5721 27.9069 76.6948 27.7715C76.8218 27.6318 77.0037 27.562 77.2407 27.562C77.4777 27.562 77.6576 27.6318 77.7803 27.7715C77.9072 27.9069 77.9707 28.0741 77.9707 28.2729C77.9707 28.4676 77.9072 28.6326 77.7803 28.7681C77.6576 28.9035 77.4777 28.9712 77.2407 28.9712C77.0037 28.9712 76.8218 28.9035 76.6948 28.7681C76.5721 28.6326 76.5107 28.4676 76.5107 28.2729ZM89.4219 29.4028V30.3677H83.0615V29.4028H89.4219ZM97.9531 29.4028V30.3677H91.5928V29.4028H97.9531Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270 24V38C270 39.1 269.1 40 268 40H254C252.89 40 252 39.1 252 38L252.01 24C252.01 22.9 252.89 22 254 22H255V20H257V22H265V20H267V22H268C269.1 22 270 22.9 270 24ZM254 26H268V24H254V26ZM268 38V28H254V38H268Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"15",y:"45",width:"268",height:"231",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M26.6948 57.7578H28.3071L30.6812 64.5435L33.0552 57.7578H34.6675L31.3286 67H30.0337L26.6948 57.7578ZM25.8252 57.7578H27.4312L27.7231 64.3721V67H25.8252V57.7578ZM33.9312 57.7578H35.5435V67H33.6392V64.3721L33.9312 57.7578ZM40.8057 65.4512V62.3916C40.8057 62.1715 40.7697 61.9832 40.6978 61.8267C40.6258 61.6659 40.5137 61.541 40.3613 61.4521C40.2132 61.3633 40.0207 61.3188 39.7837 61.3188C39.5806 61.3188 39.4049 61.3548 39.2568 61.4268C39.1087 61.4945 38.9945 61.5939 38.9141 61.7251C38.8337 61.8521 38.7935 62.0023 38.7935 62.1758H36.9653C36.9653 61.8838 37.033 61.6066 37.1685 61.3442C37.3039 61.0819 37.5007 60.8512 37.7588 60.6523C38.0169 60.4492 38.3237 60.2905 38.6792 60.1763C39.0389 60.062 39.4409 60.0049 39.8853 60.0049C40.4185 60.0049 40.8924 60.0938 41.3071 60.2715C41.7218 60.4492 42.0477 60.7158 42.2847 61.0713C42.5259 61.4268 42.6465 61.8711 42.6465 62.4043V65.3433C42.6465 65.7199 42.6698 66.0288 42.7163 66.27C42.7629 66.507 42.8306 66.7144 42.9194 66.8921V67H41.0723C40.9834 66.8138 40.9157 66.5811 40.8691 66.3018C40.8268 66.0182 40.8057 65.7347 40.8057 65.4512ZM41.0469 62.8169L41.0596 63.8516H40.0376C39.7964 63.8516 39.5869 63.8791 39.4092 63.9341C39.2314 63.9891 39.0854 64.0674 38.9712 64.1689C38.8569 64.2663 38.7723 64.3805 38.7173 64.5117C38.6665 64.6429 38.6411 64.7868 38.6411 64.9434C38.6411 65.0999 38.6771 65.2417 38.749 65.3687C38.821 65.4914 38.9246 65.5887 39.0601 65.6606C39.1955 65.7284 39.3542 65.7622 39.5361 65.7622C39.8112 65.7622 40.0503 65.7072 40.2534 65.5972C40.4565 65.4871 40.6131 65.3517 40.7231 65.1909C40.8374 65.0301 40.8966 64.8778 40.9009 64.7339L41.3833 65.5083C41.3156 65.6818 41.2225 65.8617 41.104 66.0479C40.9897 66.234 40.8438 66.4097 40.666 66.5747C40.4883 66.7355 40.2746 66.8688 40.0249 66.9746C39.7752 67.0762 39.479 67.127 39.1362 67.127C38.7004 67.127 38.3047 67.0402 37.9492 66.8667C37.598 66.689 37.3187 66.4456 37.1113 66.1367C36.9082 65.8236 36.8066 65.4681 36.8066 65.0703C36.8066 64.7106 36.8743 64.3911 37.0098 64.1118C37.1452 63.8325 37.3441 63.5977 37.6064 63.4072C37.873 63.2126 38.2052 63.0666 38.603 62.9692C39.0008 62.8677 39.4621 62.8169 39.9868 62.8169H41.0469ZM45.8838 61.6299V67H44.0557V60.1318H45.7759L45.8838 61.6299ZM47.9531 60.0874L47.9214 61.7822C47.8325 61.7695 47.7246 61.759 47.5977 61.7505C47.4749 61.7378 47.3628 61.7314 47.2612 61.7314C47.0031 61.7314 46.7788 61.7653 46.5884 61.833C46.4022 61.8965 46.2456 61.9917 46.1187 62.1187C45.9959 62.2456 45.9028 62.4001 45.8394 62.582C45.7801 62.764 45.7463 62.9714 45.7378 63.2041L45.3696 63.0898C45.3696 62.6455 45.4141 62.2371 45.5029 61.8647C45.5918 61.4881 45.7209 61.1602 45.8901 60.8809C46.0636 60.6016 46.2752 60.3857 46.5249 60.2334C46.7746 60.0811 47.0602 60.0049 47.3818 60.0049C47.4834 60.0049 47.5871 60.0133 47.6929 60.0303C47.7987 60.043 47.8854 60.062 47.9531 60.0874ZM51.5269 65.6987C51.7511 65.6987 51.95 65.6564 52.1235 65.5718C52.297 65.4829 52.4325 65.3602 52.5298 65.2036C52.6313 65.0428 52.6842 64.8545 52.6885 64.6387H54.4087C54.4045 65.1211 54.2754 65.5506 54.0215 65.9272C53.7676 66.2996 53.4269 66.5938 52.9995 66.8096C52.5721 67.0212 52.0939 67.127 51.5649 67.127C51.0317 67.127 50.5662 67.0381 50.1685 66.8604C49.7749 66.6826 49.4469 66.4372 49.1846 66.124C48.9222 65.8066 48.7254 65.4385 48.5942 65.0195C48.4631 64.5964 48.3975 64.1436 48.3975 63.6611V63.4771C48.3975 62.9904 48.4631 62.5376 48.5942 62.1187C48.7254 61.6955 48.9222 61.3273 49.1846 61.0142C49.4469 60.6968 49.7749 60.4492 50.1685 60.2715C50.562 60.0938 51.0233 60.0049 51.5522 60.0049C52.1151 60.0049 52.6081 60.1128 53.0312 60.3286C53.4587 60.5444 53.793 60.8534 54.0342 61.2554C54.2796 61.6532 54.4045 62.125 54.4087 62.6709H52.6885C52.6842 62.4424 52.6356 62.235 52.5425 62.0488C52.4536 61.8626 52.3224 61.7145 52.1489 61.6045C51.9797 61.4902 51.7702 61.4331 51.5205 61.4331C51.2539 61.4331 51.036 61.4902 50.8667 61.6045C50.6974 61.7145 50.5662 61.8669 50.4731 62.0615C50.38 62.252 50.3145 62.4699 50.2764 62.7153C50.2425 62.9565 50.2256 63.2104 50.2256 63.4771V63.6611C50.2256 63.9277 50.2425 64.1838 50.2764 64.4292C50.3102 64.6746 50.3737 64.8926 50.4668 65.083C50.5641 65.2734 50.6974 65.4237 50.8667 65.5337C51.036 65.6437 51.256 65.6987 51.5269 65.6987ZM57.2524 57.25V67H55.4243V57.25H57.2524ZM56.9922 63.3247H56.4907C56.495 62.8465 56.5584 62.4064 56.6812 62.0044C56.8039 61.5981 56.9795 61.2469 57.208 60.9507C57.4365 60.6502 57.7095 60.4175 58.0269 60.2524C58.3485 60.0874 58.7039 60.0049 59.0933 60.0049C59.4318 60.0049 59.7386 60.0535 60.0137 60.1509C60.293 60.244 60.5321 60.3963 60.731 60.6079C60.9341 60.8153 61.0907 61.0882 61.2007 61.4268C61.3107 61.7653 61.3657 62.1758 61.3657 62.6582V67H59.5249V62.6455C59.5249 62.3408 59.4805 62.1017 59.3916 61.9282C59.307 61.7505 59.1821 61.6257 59.0171 61.5537C58.8563 61.4775 58.6574 61.4395 58.4204 61.4395C58.158 61.4395 57.9338 61.4881 57.7476 61.5854C57.5656 61.6828 57.4196 61.8182 57.3096 61.9917C57.1995 62.161 57.1191 62.3599 57.0684 62.5884C57.0176 62.8169 56.9922 63.0623 56.9922 63.3247ZM72.2393 65.5718V67H65.917V65.7812L68.9067 62.5757C69.2072 62.2414 69.4442 61.9473 69.6177 61.6934C69.7912 61.4352 69.916 61.2046 69.9922 61.0015C70.0726 60.7941 70.1128 60.5973 70.1128 60.4111C70.1128 60.1318 70.0662 59.8927 69.9731 59.6938C69.88 59.4907 69.7425 59.3341 69.5605 59.2241C69.3828 59.1141 69.1628 59.0591 68.9004 59.0591C68.6211 59.0591 68.3799 59.1268 68.1768 59.2622C67.9779 59.3976 67.8255 59.5859 67.7197 59.8271C67.6182 60.0684 67.5674 60.3413 67.5674 60.646H65.7329C65.7329 60.0959 65.8641 59.5923 66.1265 59.1353C66.3888 58.674 66.7591 58.3079 67.2373 58.0371C67.7155 57.762 68.2826 57.6245 68.9385 57.6245C69.5859 57.6245 70.1318 57.7303 70.5762 57.9419C71.0247 58.1493 71.3633 58.4497 71.5918 58.8433C71.8245 59.2326 71.9409 59.6981 71.9409 60.2397C71.9409 60.5444 71.8923 60.8428 71.7949 61.1348C71.6976 61.4225 71.5579 61.7103 71.376 61.998C71.1982 62.2816 70.9824 62.5693 70.7285 62.8613C70.4746 63.1533 70.1932 63.4559 69.8843 63.769L68.2783 65.5718H72.2393ZM79.6025 61.5664V63.166C79.6025 63.86 79.5285 64.4588 79.3804 64.9624C79.2323 65.4618 79.0186 65.8722 78.7393 66.1938C78.4642 66.5112 78.1362 66.7461 77.7554 66.8984C77.3745 67.0508 76.9513 67.127 76.4858 67.127C76.1134 67.127 75.7664 67.0804 75.4448 66.9873C75.1232 66.89 74.8333 66.7397 74.5752 66.5366C74.3213 66.3335 74.1012 66.0775 73.915 65.7686C73.7331 65.4554 73.5934 65.083 73.4961 64.6514C73.3988 64.2197 73.3501 63.7246 73.3501 63.166V61.5664C73.3501 60.8724 73.4242 60.2778 73.5723 59.7827C73.7246 59.2834 73.9383 58.875 74.2134 58.5576C74.4927 58.2402 74.8228 58.0075 75.2036 57.8594C75.5845 57.707 76.0076 57.6309 76.4731 57.6309C76.8455 57.6309 77.1904 57.6795 77.5078 57.7769C77.8294 57.87 78.1193 58.016 78.3774 58.2148C78.6356 58.4137 78.8556 58.6698 79.0376 58.9829C79.2196 59.2918 79.3592 59.6621 79.4565 60.0938C79.5539 60.5212 79.6025 61.012 79.6025 61.5664ZM77.7681 63.4072V61.3188C77.7681 60.9845 77.749 60.6925 77.7109 60.4429C77.6771 60.1932 77.6242 59.9816 77.5522 59.8081C77.4803 59.6304 77.3914 59.4865 77.2856 59.3765C77.1799 59.2664 77.0592 59.186 76.9238 59.1353C76.7884 59.0845 76.6382 59.0591 76.4731 59.0591C76.2658 59.0591 76.0817 59.0993 75.9209 59.1797C75.7643 59.2601 75.631 59.3892 75.521 59.5669C75.411 59.7404 75.3263 59.9731 75.2671 60.2651C75.2121 60.5529 75.1846 60.9041 75.1846 61.3188V63.4072C75.1846 63.7415 75.2015 64.0356 75.2354 64.2896C75.2734 64.5435 75.3285 64.7614 75.4004 64.9434C75.4766 65.1211 75.5654 65.2671 75.667 65.3813C75.7728 65.4914 75.8934 65.5718 76.0288 65.6226C76.1685 65.6733 76.3208 65.6987 76.4858 65.6987C76.689 65.6987 76.8688 65.6585 77.0254 65.5781C77.1862 65.4935 77.3216 65.3623 77.4316 65.1846C77.5459 65.0026 77.6305 64.7656 77.6855 64.4736C77.7406 64.1816 77.7681 63.8262 77.7681 63.4072ZM87.1689 65.5718V67H80.8467V65.7812L83.8364 62.5757C84.1369 62.2414 84.3739 61.9473 84.5474 61.6934C84.7209 61.4352 84.8457 61.2046 84.9219 61.0015C85.0023 60.7941 85.0425 60.5973 85.0425 60.4111C85.0425 60.1318 84.9959 59.8927 84.9028 59.6938C84.8097 59.4907 84.6722 59.3341 84.4902 59.2241C84.3125 59.1141 84.0924 59.0591 83.8301 59.0591C83.5508 59.0591 83.3096 59.1268 83.1064 59.2622C82.9076 59.3976 82.7552 59.5859 82.6494 59.8271C82.5479 60.0684 82.4971 60.3413 82.4971 60.646H80.6626C80.6626 60.0959 80.7938 59.5923 81.0562 59.1353C81.3185 58.674 81.6888 58.3079 82.167 58.0371C82.6452 57.762 83.2122 57.6245 83.8682 57.6245C84.5156 57.6245 85.0615 57.7303 85.5059 57.9419C85.9544 58.1493 86.293 58.4497 86.5215 58.8433C86.7542 59.2326 86.8706 59.6981 86.8706 60.2397C86.8706 60.5444 86.8219 60.8428 86.7246 61.1348C86.6273 61.4225 86.4876 61.7103 86.3057 61.998C86.1279 62.2816 85.9121 62.5693 85.6582 62.8613C85.4043 63.1533 85.1229 63.4559 84.814 63.769L83.208 65.5718H87.1689ZM92.7676 57.7388V67H90.9395V59.8462L88.7432 60.5444V59.1035L92.5708 57.7388H92.7676Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1407)"},(0,h.createElement)("path",{d:"M99.7917 61.4167L102.5 64.1251L105.208 61.4167H99.7917Z",fill:"#64748B"})),(0,h.createElement)("path",{d:"M249.167 62.4999L249.93 63.2637L252.958 60.2412L252.958 66.8333L254.042 66.8333L254.042 60.2412L257.07 63.2637L257.833 62.4999L253.5 58.1666L249.167 62.4999Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270.833 62.5001L270.07 61.7363L267.042 64.7588L267.042 58.1667L265.958 58.1667L265.958 64.7588L262.93 61.7363L262.167 62.5001L266.5 66.8334L270.833 62.5001Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M37.3305 89.6641C37.3305 89.4482 37.2967 89.2578 37.2289 89.0928C37.1655 88.9235 37.0512 88.7712 36.8862 88.6357C36.7254 88.5003 36.5011 88.3713 36.2133 88.2485C35.9298 88.1258 35.5701 88.001 35.1342 87.874C34.6772 87.7386 34.2646 87.5884 33.8964 87.4233C33.5283 87.2541 33.213 87.0615 32.9506 86.8457C32.6883 86.6299 32.4873 86.3823 32.3476 86.103C32.208 85.8237 32.1381 85.5042 32.1381 85.1445C32.1381 84.7848 32.2122 84.4526 32.3603 84.1479C32.5084 83.8433 32.72 83.5788 32.9951 83.3545C33.2744 83.126 33.6066 82.9482 33.9916 82.8213C34.3767 82.6943 34.8063 82.6309 35.2802 82.6309C35.9742 82.6309 36.5624 82.7642 37.0449 83.0308C37.5315 83.2931 37.9018 83.638 38.1557 84.0654C38.4096 84.4886 38.5366 84.9414 38.5366 85.4238H37.3178C37.3178 85.0768 37.2438 84.77 37.0956 84.5034C36.9475 84.2326 36.7233 84.021 36.4228 83.8687C36.1223 83.7121 35.7415 83.6338 35.2802 83.6338C34.8443 83.6338 34.4846 83.6994 34.2011 83.8306C33.9176 83.9618 33.706 84.1395 33.5664 84.3638C33.4309 84.5881 33.3632 84.8441 33.3632 85.1318C33.3632 85.3265 33.4034 85.5042 33.4838 85.665C33.5685 85.8216 33.6975 85.9676 33.871 86.103C34.0488 86.2384 34.2731 86.3633 34.5439 86.4775C34.819 86.5918 35.1469 86.7018 35.5278 86.8076C36.0525 86.9557 36.5053 87.1208 36.8862 87.3027C37.267 87.4847 37.5802 87.6899 37.8256 87.9185C38.0753 88.1427 38.2594 88.3988 38.3779 88.6865C38.5006 88.9701 38.562 89.2917 38.562 89.6514C38.562 90.028 38.4858 90.3687 38.3334 90.6733C38.1811 90.978 37.9632 91.2383 37.6796 91.4541C37.3961 91.6699 37.0554 91.8371 36.6577 91.9556C36.2641 92.0698 35.824 92.127 35.3373 92.127C34.9099 92.127 34.4889 92.0677 34.0742 91.9492C33.6637 91.8307 33.2892 91.653 32.9506 91.416C32.6163 91.179 32.3476 90.887 32.1445 90.54C31.9456 90.1888 31.8461 89.7826 31.8461 89.3213H33.0649C33.0649 89.6387 33.1262 89.9116 33.249 90.1401C33.3717 90.3644 33.5388 90.5506 33.7504 90.6987C33.9663 90.8468 34.2096 90.9569 34.4804 91.0288C34.7555 91.0965 35.0411 91.1304 35.3373 91.1304C35.7648 91.1304 36.1266 91.0711 36.4228 90.9526C36.719 90.8341 36.9433 90.6649 37.0956 90.4448C37.2522 90.2248 37.3305 89.9645 37.3305 89.6641ZM44.1479 90.4131V85.1318H45.3286V92H44.205L44.1479 90.4131ZM44.3701 88.9658L44.8588 88.9531C44.8588 89.4102 44.8102 89.8333 44.7128 90.2227C44.6197 90.6077 44.4674 90.9421 44.2558 91.2256C44.0442 91.5091 43.767 91.7313 43.4243 91.8921C43.0815 92.0487 42.6647 92.127 42.1738 92.127C41.8395 92.127 41.5327 92.0783 41.2534 91.981C40.9783 91.8836 40.7413 91.7334 40.5424 91.5303C40.3435 91.3271 40.1891 91.0627 40.079 90.7368C39.9733 90.411 39.9204 90.0195 39.9204 89.5625V85.1318H41.0947V89.5752C41.0947 89.8841 41.1285 90.1401 41.1962 90.3433C41.2682 90.5422 41.3634 90.7008 41.4819 90.8193C41.6046 90.9336 41.74 91.014 41.8881 91.0605C42.0405 91.1071 42.197 91.1304 42.3579 91.1304C42.8572 91.1304 43.2529 91.0352 43.5449 90.8447C43.8369 90.6501 44.0463 90.3898 44.1733 90.064C44.3045 89.7339 44.3701 89.3678 44.3701 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M109.587 82.7578V92H108.381V82.7578H109.587ZM112.558 82.7578V83.7607H105.417V82.7578H112.558ZM117.344 90.4131V85.1318H118.525V92H117.401L117.344 90.4131ZM117.566 88.9658L118.055 88.9531C118.055 89.4102 118.006 89.8333 117.909 90.2227C117.816 90.6077 117.663 90.9421 117.452 91.2256C117.24 91.5091 116.963 91.7313 116.62 91.8921C116.278 92.0487 115.861 92.127 115.37 92.127C115.036 92.127 114.729 92.0783 114.449 91.981C114.174 91.8836 113.937 91.7334 113.738 91.5303C113.54 91.3271 113.385 91.0627 113.275 90.7368C113.169 90.411 113.116 90.0195 113.116 89.5625V85.1318H114.291V89.5752C114.291 89.8841 114.325 90.1401 114.392 90.3433C114.464 90.5422 114.559 90.7008 114.678 90.8193C114.801 90.9336 114.936 91.014 115.084 91.0605C115.237 91.1071 115.393 91.1304 115.554 91.1304C116.053 91.1304 116.449 91.0352 116.741 90.8447C117.033 90.6501 117.242 90.3898 117.369 90.064C117.501 89.7339 117.566 89.3678 117.566 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M182.77 82.7578V92H181.564V82.7578H182.77ZM185.74 82.7578V83.7607H178.599V82.7578H185.74ZM188.108 82.25V92H186.934V82.25H188.108ZM187.829 88.3057L187.34 88.2866C187.344 87.8169 187.414 87.3831 187.55 86.9854C187.685 86.5833 187.875 86.2342 188.121 85.938C188.366 85.6418 188.658 85.4132 188.997 85.2524C189.34 85.0874 189.718 85.0049 190.133 85.0049C190.472 85.0049 190.776 85.0514 191.047 85.1445C191.318 85.2334 191.549 85.3773 191.739 85.5762C191.934 85.7751 192.082 86.0332 192.183 86.3506C192.285 86.6637 192.336 87.0467 192.336 87.4995V92H191.155V87.4868C191.155 87.1271 191.102 86.8394 190.996 86.6235C190.89 86.4035 190.736 86.2448 190.533 86.1475C190.33 86.0459 190.08 85.9951 189.784 85.9951C189.492 85.9951 189.225 86.0565 188.984 86.1792C188.747 86.3019 188.542 86.4712 188.368 86.687C188.199 86.9028 188.066 87.1504 187.968 87.4297C187.875 87.7048 187.829 87.9967 187.829 88.3057Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M257.826 89.6641C257.826 89.4482 257.792 89.2578 257.724 89.0928C257.661 88.9235 257.546 88.7712 257.381 88.6357C257.22 88.5003 256.996 88.3713 256.708 88.2485C256.425 88.1258 256.065 88.001 255.629 87.874C255.172 87.7386 254.76 87.5884 254.392 87.4233C254.023 87.2541 253.708 87.0615 253.446 86.8457C253.183 86.6299 252.982 86.3823 252.843 86.103C252.703 85.8237 252.633 85.5042 252.633 85.1445C252.633 84.7848 252.707 84.4526 252.855 84.1479C253.004 83.8433 253.215 83.5788 253.49 83.3545C253.769 83.126 254.102 82.9482 254.487 82.8213C254.872 82.6943 255.301 82.6309 255.775 82.6309C256.469 82.6309 257.058 82.7642 257.54 83.0308C258.027 83.2931 258.397 83.638 258.651 84.0654C258.905 84.4886 259.032 84.9414 259.032 85.4238H257.813C257.813 85.0768 257.739 84.77 257.591 84.5034C257.443 84.2326 257.218 84.021 256.918 83.8687C256.617 83.7121 256.237 83.6338 255.775 83.6338C255.339 83.6338 254.98 83.6994 254.696 83.8306C254.413 83.9618 254.201 84.1395 254.061 84.3638C253.926 84.5881 253.858 84.8441 253.858 85.1318C253.858 85.3265 253.899 85.5042 253.979 85.665C254.064 85.8216 254.193 85.9676 254.366 86.103C254.544 86.2384 254.768 86.3633 255.039 86.4775C255.314 86.5918 255.642 86.7018 256.023 86.8076C256.548 86.9557 257 87.1208 257.381 87.3027C257.762 87.4847 258.075 87.6899 258.321 87.9185C258.57 88.1427 258.755 88.3988 258.873 88.6865C258.996 88.9701 259.057 89.2917 259.057 89.6514C259.057 90.028 258.981 90.3687 258.829 90.6733C258.676 90.978 258.458 91.2383 258.175 91.4541C257.891 91.6699 257.551 91.8371 257.153 91.9556C256.759 92.0698 256.319 92.127 255.832 92.127C255.405 92.127 254.984 92.0677 254.569 91.9492C254.159 91.8307 253.784 91.653 253.446 91.416C253.111 91.179 252.843 90.887 252.64 90.54C252.441 90.1888 252.341 89.7826 252.341 89.3213H253.56C253.56 89.6387 253.621 89.9116 253.744 90.1401C253.867 90.3644 254.034 90.5506 254.246 90.6987C254.461 90.8468 254.705 90.9569 254.976 91.0288C255.251 91.0965 255.536 91.1304 255.832 91.1304C256.26 91.1304 256.622 91.0711 256.918 90.9526C257.214 90.8341 257.438 90.6649 257.591 90.4448C257.747 90.2248 257.826 89.9645 257.826 89.6641ZM264.491 90.8257V87.29C264.491 87.0192 264.436 86.7843 264.326 86.5854C264.22 86.3823 264.059 86.2257 263.843 86.1157C263.627 86.0057 263.361 85.9507 263.043 85.9507C262.747 85.9507 262.487 86.0015 262.263 86.103C262.043 86.2046 261.869 86.3379 261.742 86.5029C261.619 86.668 261.558 86.8457 261.558 87.0361H260.384C260.384 86.7907 260.447 86.5474 260.574 86.3062C260.701 86.0649 260.883 85.847 261.12 85.6523C261.361 85.4535 261.649 85.2969 261.983 85.1826C262.322 85.0641 262.699 85.0049 263.113 85.0049C263.613 85.0049 264.053 85.0895 264.434 85.2588C264.819 85.4281 265.119 85.6841 265.335 86.0269C265.555 86.3654 265.665 86.7907 265.665 87.3027V90.502C265.665 90.7305 265.684 90.9738 265.722 91.2319C265.764 91.4901 265.826 91.7122 265.906 91.8984V92H264.681C264.622 91.8646 264.575 91.6847 264.541 91.4604C264.508 91.2319 264.491 91.0203 264.491 90.8257ZM264.694 87.8359L264.706 88.6611H263.519C263.185 88.6611 262.887 88.6886 262.624 88.7437C262.362 88.7944 262.142 88.8727 261.964 88.9785C261.787 89.0843 261.651 89.2176 261.558 89.3784C261.465 89.535 261.418 89.7191 261.418 89.9307C261.418 90.1465 261.467 90.3433 261.564 90.521C261.662 90.6987 261.808 90.8405 262.002 90.9463C262.201 91.0479 262.445 91.0986 262.732 91.0986C263.092 91.0986 263.409 91.0225 263.685 90.8701C263.96 90.7178 264.178 90.5316 264.338 90.3115C264.503 90.0915 264.592 89.8778 264.605 89.6704L265.106 90.2354C265.077 90.4131 264.996 90.6099 264.865 90.8257C264.734 91.0415 264.558 91.2489 264.338 91.4478C264.123 91.6424 263.864 91.8053 263.564 91.9365C263.268 92.0635 262.933 92.127 262.561 92.127C262.095 92.127 261.687 92.036 261.336 91.854C260.989 91.672 260.718 91.4287 260.523 91.124C260.333 90.8151 260.238 90.4702 260.238 90.0894C260.238 89.7212 260.31 89.3975 260.454 89.1182C260.597 88.8346 260.805 88.5998 261.076 88.4136C261.346 88.2231 261.672 88.0793 262.053 87.9819C262.434 87.8846 262.859 87.8359 263.329 87.8359H264.694Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M67.5966 82.7578H68.7836L71.8115 90.2925L74.833 82.7578H76.0263L72.2685 92H71.3417L67.5966 82.7578ZM67.2094 82.7578H68.2568L68.4282 88.3945V92H67.2094V82.7578ZM75.3598 82.7578H76.4072V92H75.1884V88.3945L75.3598 82.7578ZM78.0703 88.6421V88.4961C78.0703 88.001 78.1422 87.5418 78.2861 87.1187C78.43 86.6912 78.6373 86.321 78.9081 86.0078C79.179 85.6904 79.5069 85.445 79.892 85.2715C80.2771 85.0938 80.7088 85.0049 81.187 85.0049C81.6694 85.0049 82.1031 85.0938 82.4882 85.2715C82.8775 85.445 83.2076 85.6904 83.4785 86.0078C83.7535 86.321 83.963 86.6912 84.1069 87.1187C84.2508 87.5418 84.3227 88.001 84.3227 88.4961V88.6421C84.3227 89.1372 84.2508 89.5964 84.1069 90.0195C83.963 90.4427 83.7535 90.813 83.4785 91.1304C83.2076 91.4435 82.8797 91.689 82.4946 91.8667C82.1137 92.0402 81.6821 92.127 81.1997 92.127C80.7172 92.127 80.2835 92.0402 79.8984 91.8667C79.5133 91.689 79.1832 91.4435 78.9081 91.1304C78.6373 90.813 78.43 90.4427 78.2861 90.0195C78.1422 89.5964 78.0703 89.1372 78.0703 88.6421ZM79.2446 88.4961V88.6421C79.2446 88.9849 79.2848 89.3086 79.3652 89.6133C79.4456 89.9137 79.5662 90.1803 79.727 90.4131C79.892 90.6458 80.0973 90.8299 80.3427 90.9653C80.5882 91.0965 80.8738 91.1621 81.1997 91.1621C81.5213 91.1621 81.8027 91.0965 82.0439 90.9653C82.2893 90.8299 82.4925 90.6458 82.6533 90.4131C82.8141 90.1803 82.9347 89.9137 83.0151 89.6133C83.0997 89.3086 83.142 88.9849 83.142 88.6421V88.4961C83.142 88.1576 83.0997 87.8381 83.0151 87.5376C82.9347 87.2329 82.812 86.9642 82.6469 86.7314C82.4861 86.4945 82.283 86.3083 82.0375 86.1729C81.7963 86.0374 81.5128 85.9697 81.187 85.9697C80.8653 85.9697 80.5818 86.0374 80.3364 86.1729C80.0952 86.3083 79.892 86.4945 79.727 86.7314C79.5662 86.9642 79.4456 87.2329 79.3652 87.5376C79.2848 87.8381 79.2446 88.1576 79.2446 88.4961Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M143.389 89.207L145.223 82.7578H146.112L145.598 85.2651L143.624 92H142.741L143.389 89.207ZM141.491 82.7578L142.951 89.0801L143.389 92H142.513L140.272 82.7578H141.491ZM148.486 89.0737L149.914 82.7578H151.139L148.905 92H148.029L148.486 89.0737ZM146.245 82.7578L148.029 89.207L148.676 92H147.794L145.89 85.2651L145.369 82.7578H146.245ZM154.967 92.127C154.489 92.127 154.055 92.0465 153.666 91.8857C153.281 91.7207 152.948 91.4901 152.669 91.1938C152.394 90.8976 152.182 90.5464 152.034 90.1401C151.886 89.7339 151.812 89.2896 151.812 88.8071V88.5405C151.812 87.9819 151.895 87.4847 152.06 87.0488C152.225 86.6087 152.449 86.2363 152.733 85.9316C153.016 85.627 153.338 85.3963 153.697 85.2397C154.057 85.0832 154.43 85.0049 154.815 85.0049C155.306 85.0049 155.729 85.0895 156.084 85.2588C156.444 85.4281 156.738 85.665 156.966 85.9697C157.195 86.2702 157.364 86.6257 157.474 87.0361C157.584 87.4424 157.639 87.8867 157.639 88.3691V88.896H152.51V87.9375H156.465V87.8486C156.448 87.5439 156.385 87.2477 156.275 86.96C156.169 86.6722 156 86.4352 155.767 86.249C155.534 86.0628 155.217 85.9697 154.815 85.9697C154.548 85.9697 154.303 86.0269 154.078 86.1411C153.854 86.2511 153.661 86.4162 153.501 86.6362C153.34 86.8563 153.215 87.125 153.126 87.4424C153.037 87.7598 152.993 88.1258 152.993 88.5405V88.8071C152.993 89.133 153.037 89.4398 153.126 89.7275C153.219 90.0111 153.353 90.2607 153.526 90.4766C153.704 90.6924 153.918 90.8617 154.167 90.9844C154.421 91.1071 154.709 91.1685 155.03 91.1685C155.445 91.1685 155.796 91.0838 156.084 90.9146C156.372 90.7453 156.624 90.5189 156.84 90.2354L157.55 90.8003C157.402 91.0246 157.214 91.2383 156.986 91.4414C156.757 91.6445 156.476 91.8096 156.141 91.9365C155.811 92.0635 155.42 92.127 154.967 92.127Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M219.066 82.7578V92H217.841V82.7578H219.066ZM222.938 86.9155V87.9185H218.8V86.9155H222.938ZM223.567 82.7578V83.7607H218.8V82.7578H223.567ZM225.858 86.2109V92H224.684V85.1318H225.826L225.858 86.2109ZM228.004 85.0938L227.997 86.1855C227.9 86.1644 227.807 86.1517 227.718 86.1475C227.633 86.139 227.536 86.1348 227.426 86.1348C227.155 86.1348 226.916 86.1771 226.709 86.2617C226.501 86.3464 226.326 86.4648 226.182 86.6172C226.038 86.7695 225.924 86.9515 225.839 87.1631C225.759 87.3704 225.706 87.599 225.68 87.8486L225.35 88.0391C225.35 87.6243 225.391 87.235 225.471 86.8711C225.556 86.5072 225.685 86.1855 225.858 85.9062C226.032 85.6227 226.252 85.4027 226.518 85.2461C226.789 85.0853 227.111 85.0049 227.483 85.0049C227.568 85.0049 227.665 85.0155 227.775 85.0366C227.885 85.0535 227.961 85.0726 228.004 85.0938Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"212",y:"100",width:"21",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{opacity:"0.4",d:"M38.289 114.035V115H32.2397V114.156L35.2675 110.785C35.6399 110.37 35.9277 110.019 36.1308 109.731C36.3382 109.439 36.482 109.179 36.5624 108.951C36.6471 108.718 36.6894 108.481 36.6894 108.24C36.6894 107.935 36.6259 107.66 36.499 107.415C36.3762 107.165 36.1943 106.966 35.9531 106.818C35.7119 106.67 35.4199 106.596 35.0771 106.596C34.6666 106.596 34.3238 106.676 34.0488 106.837C33.7779 106.993 33.5748 107.214 33.4394 107.497C33.304 107.781 33.2363 108.106 33.2363 108.475H32.062C32.062 107.954 32.1762 107.478 32.4047 107.046C32.6332 106.615 32.9718 106.272 33.4204 106.018C33.8689 105.76 34.4212 105.631 35.0771 105.631C35.6611 105.631 36.1604 105.735 36.5751 105.942C36.9899 106.145 37.3072 106.433 37.5273 106.805C37.7516 107.173 37.8637 107.605 37.8637 108.1C37.8637 108.371 37.8172 108.646 37.7241 108.925C37.6352 109.2 37.5104 109.475 37.3496 109.75C37.193 110.026 37.0089 110.296 36.7973 110.563C36.59 110.83 36.3678 111.092 36.1308 111.35L33.6552 114.035H38.289ZM45.373 112.499C45.373 113.062 45.2418 113.54 44.9794 113.934C44.7213 114.323 44.3701 114.619 43.9257 114.822C43.4856 115.025 42.9884 115.127 42.434 115.127C41.8797 115.127 41.3803 115.025 40.936 114.822C40.4916 114.619 40.1404 114.323 39.8823 113.934C39.6241 113.54 39.4951 113.062 39.4951 112.499C39.4951 112.131 39.5649 111.794 39.7045 111.49C39.8484 111.181 40.0494 110.912 40.3076 110.684C40.5699 110.455 40.8789 110.279 41.2343 110.157C41.594 110.03 41.9897 109.966 42.4213 109.966C42.9884 109.966 43.4941 110.076 43.9384 110.296C44.3828 110.512 44.7319 110.811 44.9858 111.191C45.2439 111.572 45.373 112.008 45.373 112.499ZM44.1923 112.474C44.1923 112.131 44.1183 111.828 43.9702 111.566C43.822 111.299 43.6147 111.092 43.3481 110.944C43.0815 110.796 42.7726 110.722 42.4213 110.722C42.0616 110.722 41.7506 110.796 41.4882 110.944C41.2301 111.092 41.0291 111.299 40.8852 111.566C40.7413 111.828 40.6694 112.131 40.6694 112.474C40.6694 112.829 40.7392 113.134 40.8789 113.388C41.0227 113.637 41.2259 113.83 41.4882 113.965C41.7548 114.097 42.0701 114.162 42.434 114.162C42.798 114.162 43.1111 114.097 43.3735 113.965C43.6359 113.83 43.8369 113.637 43.9765 113.388C44.1204 113.134 44.1923 112.829 44.1923 112.474ZM45.1572 108.164C45.1572 108.612 45.0387 109.016 44.8017 109.376C44.5647 109.736 44.241 110.019 43.8305 110.227C43.42 110.434 42.9545 110.538 42.434 110.538C41.9051 110.538 41.4332 110.434 41.0185 110.227C40.608 110.019 40.2864 109.736 40.0537 109.376C39.8209 109.016 39.7045 108.612 39.7045 108.164C39.7045 107.626 39.8209 107.169 40.0537 106.792C40.2906 106.416 40.6144 106.128 41.0248 105.929C41.4353 105.73 41.9029 105.631 42.4277 105.631C42.9567 105.631 43.4264 105.73 43.8369 105.929C44.2473 106.128 44.569 106.416 44.8017 106.792C45.0387 107.169 45.1572 107.626 45.1572 108.164ZM43.9829 108.183C43.9829 107.874 43.9173 107.601 43.7861 107.364C43.6549 107.127 43.4729 106.941 43.2402 106.805C43.0074 106.666 42.7366 106.596 42.4277 106.596C42.1188 106.596 41.8479 106.661 41.6152 106.792C41.3867 106.919 41.2068 107.101 41.0756 107.338C40.9487 107.575 40.8852 107.857 40.8852 108.183C40.8852 108.5 40.9487 108.777 41.0756 109.014C41.2068 109.251 41.3888 109.435 41.6215 109.566C41.8543 109.698 42.1251 109.763 42.434 109.763C42.7429 109.763 43.0117 109.698 43.2402 109.566C43.4729 109.435 43.6549 109.251 43.7861 109.014C43.9173 108.777 43.9829 108.5 43.9829 108.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M115.427 114.035V115H109.378V114.156L112.405 110.785C112.778 110.37 113.066 110.019 113.269 109.731C113.476 109.439 113.62 109.179 113.7 108.951C113.785 108.718 113.827 108.481 113.827 108.24C113.827 107.935 113.764 107.66 113.637 107.415C113.514 107.165 113.332 106.966 113.091 106.818C112.85 106.67 112.558 106.596 112.215 106.596C111.805 106.596 111.462 106.676 111.187 106.837C110.916 106.993 110.713 107.214 110.577 107.497C110.442 107.781 110.374 108.106 110.374 108.475H109.2C109.2 107.954 109.314 107.478 109.543 107.046C109.771 106.615 110.11 106.272 110.558 106.018C111.007 105.76 111.559 105.631 112.215 105.631C112.799 105.631 113.298 105.735 113.713 105.942C114.128 106.145 114.445 106.433 114.665 106.805C114.89 107.173 115.002 107.605 115.002 108.1C115.002 108.371 114.955 108.646 114.862 108.925C114.773 109.2 114.648 109.475 114.487 109.75C114.331 110.026 114.147 110.296 113.935 110.563C113.728 110.83 113.506 111.092 113.269 111.35L110.793 114.035H115.427Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M189.098 111.89V112.854H182.421V112.163L186.559 105.758H187.518L186.489 107.611L183.754 111.89H189.098ZM187.81 105.758V115H186.635V105.758H187.81Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.841 105.745H260.942V106.742H260.841C260.219 106.742 259.698 106.843 259.279 107.046C258.86 107.245 258.528 107.514 258.283 107.853C258.037 108.187 257.859 108.563 257.749 108.982C257.644 109.401 257.591 109.827 257.591 110.258V111.617C257.591 112.027 257.639 112.391 257.737 112.708C257.834 113.022 257.967 113.286 258.137 113.502C258.306 113.718 258.496 113.881 258.708 113.991C258.924 114.101 259.148 114.156 259.381 114.156C259.652 114.156 259.893 114.105 260.104 114.003C260.316 113.898 260.494 113.752 260.638 113.565C260.786 113.375 260.898 113.151 260.974 112.893C261.05 112.634 261.088 112.351 261.088 112.042C261.088 111.767 261.054 111.502 260.987 111.249C260.919 110.99 260.815 110.762 260.676 110.563C260.536 110.36 260.36 110.201 260.149 110.087C259.942 109.968 259.694 109.909 259.406 109.909C259.08 109.909 258.776 109.99 258.492 110.15C258.213 110.307 257.982 110.514 257.8 110.772C257.623 111.026 257.521 111.304 257.496 111.604L256.873 111.598C256.933 111.124 257.043 110.72 257.204 110.385C257.369 110.047 257.572 109.772 257.813 109.56C258.058 109.344 258.331 109.188 258.632 109.09C258.936 108.989 259.258 108.938 259.597 108.938C260.058 108.938 260.456 109.025 260.79 109.198C261.124 109.372 261.399 109.604 261.615 109.896C261.831 110.184 261.99 110.51 262.091 110.874C262.197 111.234 262.25 111.604 262.25 111.985C262.25 112.421 262.189 112.829 262.066 113.21C261.943 113.591 261.759 113.925 261.514 114.213C261.272 114.501 260.974 114.725 260.619 114.886C260.263 115.047 259.851 115.127 259.381 115.127C258.881 115.127 258.446 115.025 258.073 114.822C257.701 114.615 257.392 114.34 257.146 113.997C256.901 113.654 256.717 113.273 256.594 112.854C256.471 112.436 256.41 112.01 256.41 111.579V111.026C256.41 110.375 256.476 109.736 256.607 109.109C256.738 108.483 256.964 107.916 257.286 107.408C257.612 106.9 258.063 106.496 258.638 106.196C259.214 105.895 259.948 105.745 260.841 105.745Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M76.4897 105.707V115H75.3154V107.173L72.9477 108.037V106.977L76.3056 105.707H76.4897Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M147.826 109.801H148.664C149.074 109.801 149.413 109.734 149.679 109.598C149.95 109.458 150.151 109.27 150.282 109.033C150.418 108.792 150.486 108.521 150.486 108.221C150.486 107.865 150.426 107.567 150.308 107.326C150.189 107.084 150.012 106.903 149.775 106.78C149.538 106.657 149.237 106.596 148.873 106.596C148.543 106.596 148.251 106.661 147.997 106.792C147.748 106.919 147.551 107.101 147.407 107.338C147.267 107.575 147.197 107.855 147.197 108.176H146.023C146.023 107.707 146.142 107.279 146.379 106.894C146.616 106.509 146.948 106.202 147.375 105.974C147.807 105.745 148.306 105.631 148.873 105.631C149.432 105.631 149.921 105.73 150.34 105.929C150.758 106.124 151.084 106.416 151.317 106.805C151.55 107.19 151.666 107.671 151.666 108.246C151.666 108.479 151.611 108.729 151.501 108.995C151.395 109.257 151.228 109.503 151 109.731C150.775 109.96 150.483 110.148 150.124 110.296C149.764 110.44 149.332 110.512 148.829 110.512H147.826V109.801ZM147.826 110.766V110.062H148.829C149.417 110.062 149.904 110.131 150.289 110.271C150.674 110.411 150.976 110.597 151.196 110.83C151.421 111.062 151.577 111.318 151.666 111.598C151.759 111.873 151.806 112.148 151.806 112.423C151.806 112.854 151.732 113.237 151.584 113.572C151.44 113.906 151.235 114.19 150.968 114.422C150.706 114.655 150.397 114.831 150.041 114.949C149.686 115.068 149.299 115.127 148.88 115.127C148.478 115.127 148.099 115.07 147.743 114.956C147.392 114.841 147.081 114.676 146.81 114.46C146.539 114.24 146.328 113.972 146.175 113.654C146.023 113.333 145.947 112.967 145.947 112.556H147.121C147.121 112.878 147.191 113.159 147.331 113.4C147.475 113.642 147.678 113.83 147.94 113.965C148.207 114.097 148.52 114.162 148.88 114.162C149.239 114.162 149.548 114.101 149.806 113.978C150.069 113.851 150.27 113.661 150.409 113.407C150.553 113.153 150.625 112.833 150.625 112.448C150.625 112.063 150.545 111.748 150.384 111.502C150.223 111.253 149.995 111.069 149.698 110.95C149.406 110.827 149.062 110.766 148.664 110.766H147.826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M221.104 110.792L219.644 110.442L220.171 105.758H225.363V107.237H221.675L221.447 109.287C221.569 109.215 221.756 109.139 222.005 109.059C222.255 108.974 222.534 108.932 222.843 108.932C223.292 108.932 223.689 109.001 224.036 109.141C224.383 109.281 224.678 109.484 224.919 109.75C225.164 110.017 225.35 110.343 225.477 110.728C225.604 111.113 225.668 111.549 225.668 112.036C225.668 112.446 225.604 112.838 225.477 113.21C225.35 113.578 225.158 113.908 224.9 114.2C224.642 114.488 224.318 114.714 223.929 114.879C223.539 115.044 223.078 115.127 222.545 115.127C222.147 115.127 221.762 115.068 221.389 114.949C221.021 114.831 220.689 114.655 220.393 114.422C220.101 114.19 219.866 113.908 219.688 113.578C219.515 113.244 219.424 112.863 219.415 112.436H221.231C221.256 112.698 221.324 112.924 221.434 113.115C221.548 113.301 221.698 113.445 221.885 113.546C222.071 113.648 222.289 113.699 222.538 113.699C222.771 113.699 222.97 113.654 223.135 113.565C223.3 113.477 223.433 113.354 223.535 113.197C223.637 113.036 223.711 112.85 223.757 112.639C223.808 112.423 223.833 112.19 223.833 111.94C223.833 111.691 223.804 111.464 223.744 111.261C223.685 111.058 223.594 110.882 223.472 110.734C223.349 110.586 223.192 110.472 223.002 110.392C222.816 110.311 222.598 110.271 222.348 110.271C222.009 110.271 221.747 110.324 221.561 110.43C221.379 110.535 221.227 110.656 221.104 110.792Z",fill:"white"}),(0,h.createElement)("path",{d:"M41.8627 128.758V129.418L38.0351 138H36.7973L40.6186 129.723H35.6166V128.758H41.8627Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M110.539 137.016H110.66C111.337 137.016 111.887 136.921 112.31 136.73C112.733 136.54 113.059 136.284 113.288 135.962C113.516 135.641 113.673 135.279 113.758 134.877C113.842 134.471 113.884 134.054 113.884 133.626V132.211C113.884 131.792 113.836 131.42 113.738 131.094C113.645 130.768 113.514 130.495 113.345 130.275C113.18 130.055 112.992 129.888 112.78 129.773C112.568 129.659 112.344 129.602 112.107 129.602C111.836 129.602 111.593 129.657 111.377 129.767C111.166 129.873 110.986 130.023 110.838 130.218C110.694 130.412 110.584 130.641 110.508 130.903C110.431 131.166 110.393 131.451 110.393 131.76C110.393 132.035 110.427 132.302 110.495 132.56C110.563 132.818 110.666 133.051 110.806 133.258C110.946 133.466 111.119 133.631 111.326 133.753C111.538 133.872 111.786 133.931 112.069 133.931C112.331 133.931 112.577 133.88 112.805 133.779C113.038 133.673 113.243 133.531 113.421 133.354C113.603 133.172 113.747 132.966 113.853 132.738C113.963 132.509 114.026 132.27 114.043 132.021H114.602C114.602 132.372 114.532 132.719 114.392 133.062C114.257 133.4 114.066 133.709 113.821 133.988C113.576 134.268 113.288 134.492 112.958 134.661C112.628 134.826 112.268 134.909 111.879 134.909C111.422 134.909 111.026 134.82 110.692 134.642C110.357 134.464 110.082 134.227 109.866 133.931C109.655 133.635 109.496 133.305 109.39 132.941C109.289 132.573 109.238 132.2 109.238 131.824C109.238 131.384 109.299 130.971 109.422 130.586C109.545 130.201 109.727 129.862 109.968 129.57C110.209 129.274 110.508 129.043 110.863 128.878C111.223 128.713 111.637 128.631 112.107 128.631C112.636 128.631 113.087 128.737 113.459 128.948C113.832 129.16 114.134 129.443 114.367 129.799C114.604 130.154 114.777 130.554 114.887 130.999C114.997 131.443 115.052 131.9 115.052 132.37V132.795C115.052 133.273 115.021 133.76 114.957 134.255C114.898 134.746 114.782 135.215 114.608 135.664C114.439 136.113 114.191 136.515 113.865 136.87C113.54 137.221 113.114 137.501 112.59 137.708C112.069 137.911 111.426 138.013 110.66 138.013H110.539V137.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M183.055 128.707V138H181.881V130.173L179.513 131.037V129.977L182.871 128.707H183.055ZM190.368 128.707V138H189.194V130.173L186.826 131.037V129.977L190.184 128.707H190.368Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M256.537 128.707V138H255.363V130.173L252.995 131.037V129.977L256.353 128.707H256.537ZM261.704 132.801H262.542C262.952 132.801 263.291 132.734 263.558 132.598C263.828 132.458 264.029 132.27 264.161 132.033C264.296 131.792 264.364 131.521 264.364 131.221C264.364 130.865 264.304 130.567 264.186 130.326C264.067 130.084 263.89 129.903 263.653 129.78C263.416 129.657 263.115 129.596 262.751 129.596C262.421 129.596 262.129 129.661 261.875 129.792C261.626 129.919 261.429 130.101 261.285 130.338C261.145 130.575 261.076 130.855 261.076 131.176H259.901C259.901 130.707 260.02 130.279 260.257 129.894C260.494 129.509 260.826 129.202 261.253 128.974C261.685 128.745 262.184 128.631 262.751 128.631C263.31 128.631 263.799 128.73 264.218 128.929C264.637 129.124 264.963 129.416 265.195 129.805C265.428 130.19 265.544 130.671 265.544 131.246C265.544 131.479 265.489 131.729 265.379 131.995C265.274 132.257 265.106 132.503 264.878 132.731C264.654 132.96 264.362 133.148 264.002 133.296C263.642 133.44 263.211 133.512 262.707 133.512H261.704V132.801ZM261.704 133.766V133.062H262.707C263.295 133.062 263.782 133.131 264.167 133.271C264.552 133.411 264.855 133.597 265.075 133.83C265.299 134.062 265.456 134.318 265.544 134.598C265.637 134.873 265.684 135.148 265.684 135.423C265.684 135.854 265.61 136.237 265.462 136.572C265.318 136.906 265.113 137.19 264.846 137.422C264.584 137.655 264.275 137.831 263.919 137.949C263.564 138.068 263.177 138.127 262.758 138.127C262.356 138.127 261.977 138.07 261.622 137.956C261.27 137.841 260.959 137.676 260.688 137.46C260.418 137.24 260.206 136.972 260.054 136.654C259.901 136.333 259.825 135.967 259.825 135.556H260.999C260.999 135.878 261.069 136.159 261.209 136.4C261.353 136.642 261.556 136.83 261.818 136.965C262.085 137.097 262.398 137.162 262.758 137.162C263.117 137.162 263.426 137.101 263.685 136.978C263.947 136.851 264.148 136.661 264.288 136.407C264.431 136.153 264.503 135.833 264.503 135.448C264.503 135.063 264.423 134.748 264.262 134.502C264.101 134.253 263.873 134.069 263.577 133.95C263.285 133.827 262.94 133.766 262.542 133.766H261.704Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M78.4575 135.499C78.4575 136.062 78.3263 136.54 78.0639 136.934C77.8058 137.323 77.4545 137.619 77.0102 137.822C76.5701 138.025 76.0729 138.127 75.5185 138.127C74.9641 138.127 74.4648 138.025 74.0205 137.822C73.5761 137.619 73.2249 137.323 72.9667 136.934C72.7086 136.54 72.5795 136.062 72.5795 135.499C72.5795 135.131 72.6494 134.794 72.789 134.49C72.9329 134.181 73.1339 133.912 73.392 133.684C73.6544 133.455 73.9633 133.279 74.3188 133.157C74.6785 133.03 75.0742 132.966 75.5058 132.966C76.0729 132.966 76.5786 133.076 77.0229 133.296C77.4672 133.512 77.8164 133.811 78.0703 134.191C78.3284 134.572 78.4575 135.008 78.4575 135.499ZM77.2768 135.474C77.2768 135.131 77.2027 134.828 77.0546 134.566C76.9065 134.299 76.6992 134.092 76.4326 133.944C76.166 133.796 75.857 133.722 75.5058 133.722C75.1461 133.722 74.8351 133.796 74.5727 133.944C74.3146 134.092 74.1136 134.299 73.9697 134.566C73.8258 134.828 73.7539 135.131 73.7539 135.474C73.7539 135.829 73.8237 136.134 73.9633 136.388C74.1072 136.637 74.3103 136.83 74.5727 136.965C74.8393 137.097 75.1546 137.162 75.5185 137.162C75.8824 137.162 76.1956 137.097 76.458 136.965C76.7203 136.83 76.9213 136.637 77.061 136.388C77.2049 136.134 77.2768 135.829 77.2768 135.474ZM78.2416 131.164C78.2416 131.612 78.1232 132.016 77.8862 132.376C77.6492 132.736 77.3255 133.019 76.915 133.227C76.5045 133.434 76.039 133.538 75.5185 133.538C74.9895 133.538 74.5177 133.434 74.103 133.227C73.6925 133.019 73.3709 132.736 73.1381 132.376C72.9054 132.016 72.789 131.612 72.789 131.164C72.789 130.626 72.9054 130.169 73.1381 129.792C73.3751 129.416 73.6988 129.128 74.1093 128.929C74.5198 128.73 74.9874 128.631 75.5122 128.631C76.0411 128.631 76.5109 128.73 76.9213 128.929C77.3318 129.128 77.6534 129.416 77.8862 129.792C78.1232 130.169 78.2416 130.626 78.2416 131.164ZM77.0673 131.183C77.0673 130.874 77.0017 130.601 76.8706 130.364C76.7394 130.127 76.5574 129.941 76.3247 129.805C76.0919 129.666 75.8211 129.596 75.5122 129.596C75.2032 129.596 74.9324 129.661 74.6997 129.792C74.4711 129.919 74.2913 130.101 74.1601 130.338C74.0331 130.575 73.9697 130.857 73.9697 131.183C73.9697 131.5 74.0331 131.777 74.1601 132.014C74.2913 132.251 74.4733 132.435 74.706 132.566C74.9387 132.698 75.2096 132.763 75.5185 132.763C75.8274 132.763 76.0961 132.698 76.3247 132.566C76.5574 132.435 76.7394 132.251 76.8706 132.014C77.0017 131.777 77.0673 131.5 77.0673 131.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M146.315 128.707V138H145.141V130.173L142.773 131.037V129.977L146.131 128.707H146.315ZM155.57 132.643V134.052C155.57 134.809 155.502 135.448 155.367 135.969C155.231 136.489 155.037 136.908 154.783 137.226C154.529 137.543 154.222 137.774 153.862 137.917C153.507 138.057 153.105 138.127 152.656 138.127C152.301 138.127 151.973 138.083 151.673 137.994C151.372 137.905 151.101 137.763 150.86 137.568C150.623 137.369 150.42 137.111 150.251 136.794C150.081 136.477 149.952 136.091 149.863 135.639C149.775 135.186 149.73 134.657 149.73 134.052V132.643C149.73 131.885 149.798 131.25 149.933 130.738C150.073 130.226 150.27 129.816 150.524 129.507C150.778 129.194 151.082 128.969 151.438 128.834C151.797 128.699 152.199 128.631 152.644 128.631C153.003 128.631 153.334 128.675 153.634 128.764C153.939 128.849 154.209 128.986 154.446 129.177C154.683 129.363 154.884 129.613 155.05 129.926C155.219 130.235 155.348 130.613 155.437 131.062C155.526 131.511 155.57 132.037 155.57 132.643ZM154.389 134.242V132.446C154.389 132.031 154.364 131.667 154.313 131.354C154.267 131.037 154.197 130.766 154.104 130.542C154.011 130.317 153.892 130.135 153.748 129.996C153.609 129.856 153.446 129.754 153.259 129.691C153.078 129.623 152.872 129.589 152.644 129.589C152.364 129.589 152.117 129.642 151.901 129.748C151.685 129.85 151.503 130.013 151.355 130.237C151.211 130.461 151.101 130.755 151.025 131.119C150.949 131.483 150.911 131.925 150.911 132.446V134.242C150.911 134.657 150.934 135.023 150.981 135.34C151.031 135.658 151.105 135.933 151.203 136.166C151.3 136.394 151.419 136.582 151.558 136.73C151.698 136.879 151.859 136.989 152.041 137.061C152.227 137.128 152.432 137.162 152.656 137.162C152.944 137.162 153.196 137.107 153.412 136.997C153.628 136.887 153.807 136.716 153.951 136.483C154.099 136.246 154.209 135.943 154.281 135.575C154.353 135.203 154.389 134.758 154.389 134.242Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M219.796 128.707V138H218.622V130.173L216.254 131.037V129.977L219.612 128.707H219.796ZM229.305 137.035V138H223.256V137.156L226.284 133.785C226.656 133.37 226.944 133.019 227.147 132.731C227.354 132.439 227.498 132.179 227.578 131.951C227.663 131.718 227.705 131.481 227.705 131.24C227.705 130.935 227.642 130.66 227.515 130.415C227.392 130.165 227.21 129.966 226.969 129.818C226.728 129.67 226.436 129.596 226.093 129.596C225.683 129.596 225.34 129.676 225.065 129.837C224.794 129.993 224.591 130.214 224.455 130.497C224.32 130.781 224.252 131.106 224.252 131.475H223.078C223.078 130.954 223.192 130.478 223.421 130.046C223.649 129.615 223.988 129.272 224.436 129.018C224.885 128.76 225.437 128.631 226.093 128.631C226.677 128.631 227.176 128.735 227.591 128.942C228.006 129.145 228.323 129.433 228.543 129.805C228.768 130.173 228.88 130.605 228.88 131.1C228.88 131.371 228.833 131.646 228.74 131.925C228.651 132.2 228.526 132.475 228.366 132.75C228.209 133.026 228.025 133.296 227.813 133.563C227.606 133.83 227.384 134.092 227.147 134.35L224.671 137.035H229.305Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1407"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1407"},(0,h.createElement)("rect",{width:"13",height:"13",fill:"white",transform:"translate(96 56)"})))),{ToolBarFields:vl,BlockLabel:_l,BlockName:kl,BlockDescription:jl,BlockAdvancedValue:xl,AdvancedFields:Fl,FieldWrapper:Bl,FieldSettingsWrapper:Al,AdvancedInspectorControl:Pl,ClientSideMacros:Sl,ValidationToggleGroup:Nl,ValidationBlockMessage:Il,AttributeHelp:Tl}=JetFBComponents,{useInsertMacro:Ol,useIsAdvancedValidation:Jl,useUniqueNameOnDuplicate:Rl}=JetFBHooks,{__:ql}=wp.i18n,{InspectorControls:Dl,useBlockProps:zl}=wp.blockEditor,{TextControl:Ul,ToggleControl:Gl,PanelBody:Wl,__experimentalInputControl:Kl,ExternalLink:$l}=wp.components;let{InputControl:Yl}=wp.components;void 0===Yl&&(Yl=Kl);const Xl=JSON.parse('{"apiVersion":3,"name":"jet-forms/date-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","date"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Date Field","icon":"\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":"string","default":"","jfb":{"macro":true,"dynamic":true}},"max":{"type":"string","default":""},"is_timestamp":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Ql}=wp.i18n,{createBlock:er}=wp.blocks,{name:Cr,icon:tr=""}=Xl,lr={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:tr}}),description:Ql("Insert the date manually with Date Field, utilizing a drop-down calendar to choose the date from there conveniently.","jet-form-builder"),edit:function(e){const C=zl(),[t,l]=Ol("min"),[r,n]=Ol("max"),{attributes:a,isSelected:i,setAttributes:o,editProps:{uniqKey:s,blockName:c,attrHelp:d}}=e,m=Jl();if(Rl(),a.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},wl);const u=(0,h.createElement)(h.Fragment,null,ql("Plain date should be in yyyy-mm-dd format.","jet-form-builder")," ",ql("Or you can use","jet-form-builder")," ",(0,h.createElement)($l,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},ql("macros","jet-form-builder"))," ",ql("and","jet-form-builder")," ",(0,h.createElement)($l,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},ql("filters","jet-form-builder")),".");return[(0,h.createElement)(vl,{key:s("JetForm-toolbar"),...e}),i&&(0,h.createElement)(Dl,{key:s("InspectorControls")},(0,h.createElement)(Wl,{title:ql("General","jet-form-builder")},(0,h.createElement)(_l,null),(0,h.createElement)(kl,null),(0,h.createElement)(jl,null)),(0,h.createElement)(Wl,{title:ql("Value","jet-form-builder")},(0,h.createElement)(xl,{help:u,style:{marginBottom:"1em"}}),(0,h.createElement)(Sl,null,(0,h.createElement)(Pl,{value:a.min,label:ql("Starting from date","jet-form-builder"),onChangePreset:e=>o({min:e}),onChangeMacros:l},(({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ul,{id:e,ref:t,className:"jet-fb m-unset",value:a.min,onChange:e=>o({min:e})}),(0,h.createElement)(Tl,null,u)))),(0,h.createElement)(Pl,{value:a.max,label:ql("Limit dates to","jet-form-builder"),onChangePreset:e=>o({max:e}),onChangeMacros:n},(({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ul,{id:e,ref:r,className:"jet-fb m-unset",value:a.max,onChange:e=>o({max:e})}),(0,h.createElement)(Tl,null,u)))))),(0,h.createElement)(Al,{...e},(0,h.createElement)(Gl,{key:"is_timestamp",label:ql("Is Timestamp","jet-form-builder"),checked:a.is_timestamp,help:d("is_timestamp"),onChange:e=>{o({is_timestamp:Boolean(e)})}})),(0,h.createElement)(Wl,{title:ql("Validation","jet-form-builder")},(0,h.createElement)(Nl,null),m&&(0,h.createElement)(h.Fragment,null,Boolean(a.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Il,{name:"date_min"})),Boolean(a.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Il,{name:"date_max"})),(0,h.createElement)(Il,{name:"empty"}))),(0,h.createElement)(Fl,null)),(0,h.createElement)("div",{...C,key:s("viewBlock")},(0,h.createElement)(Bl,{key:s("FieldWrapper"),...e},(0,h.createElement)(Ul,{onChange:()=>{},className:"jet-form-builder__field-preview",key:`place_holder_block_${c}`,placeholder:'Input type="date"'})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>er("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/time-field","jet-forms/datetime-field"],transform:e=>er(Cr,{...e}),priority:0}]}},rr=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_75_1425)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M31.5698 29.1426V30.5518C31.5698 31.3092 31.5021 31.9482 31.3667 32.4688C31.2313 32.9893 31.0366 33.4082 30.7827 33.7256C30.5288 34.043 30.222 34.2736 29.8623 34.4175C29.5068 34.5571 29.1048 34.627 28.6562 34.627C28.3008 34.627 27.9728 34.5825 27.6724 34.4937C27.3719 34.4048 27.1011 34.263 26.8599 34.0684C26.6229 33.8695 26.4198 33.6113 26.2505 33.2939C26.0812 32.9766 25.9521 32.5915 25.8633 32.1387C25.7744 31.6859 25.73 31.1569 25.73 30.5518V29.1426C25.73 28.3851 25.7977 27.7503 25.9331 27.2383C26.0728 26.7262 26.2695 26.3158 26.5234 26.0068C26.7773 25.6937 27.082 25.4694 27.4375 25.334C27.7972 25.1986 28.1992 25.1309 28.6436 25.1309C29.0033 25.1309 29.3333 25.1753 29.6338 25.2642C29.9385 25.3488 30.2093 25.4863 30.4463 25.6768C30.6833 25.863 30.8843 26.1126 31.0493 26.4258C31.2186 26.7347 31.3477 27.1134 31.4365 27.562C31.5254 28.0106 31.5698 28.5374 31.5698 29.1426ZM30.3892 30.7422V28.9458C30.3892 28.5311 30.3638 28.1672 30.313 27.854C30.2664 27.5366 30.1966 27.2658 30.1035 27.0415C30.0104 26.8172 29.8919 26.6353 29.748 26.4956C29.6084 26.356 29.4455 26.2544 29.2593 26.1909C29.0773 26.1232 28.8721 26.0894 28.6436 26.0894C28.3643 26.0894 28.1167 26.1423 27.9009 26.248C27.6851 26.3496 27.5031 26.5125 27.355 26.7368C27.2111 26.9611 27.1011 27.2552 27.0249 27.6191C26.9487 27.9831 26.9106 28.4253 26.9106 28.9458V30.7422C26.9106 31.1569 26.9339 31.5229 26.9805 31.8403C27.0312 32.1577 27.1053 32.4328 27.2026 32.6655C27.3 32.894 27.4185 33.0824 27.5581 33.2305C27.6978 33.3786 27.8586 33.4886 28.0405 33.5605C28.2267 33.6283 28.432 33.6621 28.6562 33.6621C28.944 33.6621 29.1958 33.6071 29.4116 33.4971C29.6274 33.387 29.8073 33.2157 29.9512 32.9829C30.0993 32.7459 30.2093 32.4434 30.2812 32.0752C30.3532 31.7028 30.3892 31.2585 30.3892 30.7422ZM34.7944 29.3013H35.6323C36.0428 29.3013 36.3813 29.2336 36.6479 29.0981C36.9188 28.9585 37.1198 28.7702 37.251 28.5332C37.3864 28.292 37.4541 28.0212 37.4541 27.7207C37.4541 27.3652 37.3949 27.0669 37.2764 26.8257C37.1579 26.5845 36.9801 26.4025 36.7432 26.2798C36.5062 26.1571 36.2057 26.0957 35.8418 26.0957C35.5117 26.0957 35.2197 26.1613 34.9658 26.2925C34.7161 26.4194 34.5194 26.6014 34.3755 26.8384C34.2358 27.0754 34.166 27.3547 34.166 27.6763H32.9917C32.9917 27.2065 33.1102 26.7791 33.3472 26.394C33.5841 26.009 33.9163 25.7021 34.3438 25.4736C34.7754 25.2451 35.2747 25.1309 35.8418 25.1309C36.4004 25.1309 36.8892 25.2303 37.3081 25.4292C37.7271 25.6239 38.0529 25.9159 38.2856 26.3052C38.5184 26.6903 38.6348 27.1706 38.6348 27.7461C38.6348 27.9788 38.5798 28.2285 38.4697 28.4951C38.3639 28.7575 38.1968 29.0029 37.9683 29.2314C37.744 29.46 37.452 29.6483 37.0923 29.7964C36.7326 29.9403 36.3009 30.0122 35.7974 30.0122H34.7944V29.3013ZM34.7944 30.2661V29.5615H35.7974C36.3856 29.5615 36.8722 29.6313 37.2573 29.771C37.6424 29.9106 37.945 30.0968 38.165 30.3296C38.3893 30.5623 38.5459 30.8184 38.6348 31.0977C38.7279 31.3727 38.7744 31.6478 38.7744 31.9229C38.7744 32.3545 38.7004 32.7375 38.5522 33.0718C38.4084 33.4061 38.2031 33.6896 37.9365 33.9224C37.6742 34.1551 37.3652 34.3307 37.0098 34.4492C36.6543 34.5677 36.2671 34.627 35.8481 34.627C35.4461 34.627 35.0674 34.5698 34.7119 34.4556C34.3607 34.3413 34.0496 34.1763 33.7788 33.9604C33.508 33.7404 33.2964 33.4717 33.144 33.1543C32.9917 32.8327 32.9155 32.4666 32.9155 32.0562H34.0898C34.0898 32.3778 34.1597 32.6592 34.2993 32.9004C34.4432 33.1416 34.6463 33.3299 34.9087 33.4653C35.1753 33.5965 35.4884 33.6621 35.8481 33.6621C36.2078 33.6621 36.5168 33.6007 36.7749 33.478C37.0373 33.3511 37.2383 33.1606 37.3779 32.9067C37.5218 32.6528 37.5938 32.3333 37.5938 31.9482C37.5938 31.5632 37.5133 31.2479 37.3525 31.0024C37.1917 30.7528 36.9632 30.5687 36.667 30.4502C36.375 30.3275 36.0301 30.2661 35.6323 30.2661H34.7944Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M46.9829 25.2578L43.1299 35.2935H42.1206L45.98 25.2578H46.9829Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"50",y:"20.5",width:"19",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M57.2241 33.167V24.75H58.4048V34.5H57.3257L57.2241 33.167ZM52.603 31.1421V31.0088C52.603 30.484 52.6665 30.008 52.7935 29.5806C52.9246 29.1489 53.1087 28.7786 53.3457 28.4697C53.5869 28.1608 53.8726 27.9238 54.2026 27.7588C54.5369 27.5895 54.9093 27.5049 55.3198 27.5049C55.7515 27.5049 56.1281 27.5811 56.4497 27.7334C56.7756 27.8815 57.0506 28.0994 57.2749 28.3872C57.5034 28.6707 57.6833 29.0135 57.8145 29.4155C57.9456 29.8175 58.0366 30.2725 58.0874 30.7803V31.3643C58.0409 31.8678 57.9499 32.3206 57.8145 32.7227C57.6833 33.1247 57.5034 33.4674 57.2749 33.751C57.0506 34.0345 56.7756 34.2524 56.4497 34.4048C56.1239 34.5529 55.743 34.627 55.3071 34.627C54.9051 34.627 54.5369 34.5402 54.2026 34.3667C53.8726 34.1932 53.5869 33.9499 53.3457 33.6367C53.1087 33.3236 52.9246 32.9554 52.7935 32.5322C52.6665 32.1048 52.603 31.6414 52.603 31.1421ZM53.7837 31.0088V31.1421C53.7837 31.4849 53.8175 31.8065 53.8853 32.1069C53.9572 32.4074 54.0672 32.6719 54.2153 32.9004C54.3634 33.1289 54.5518 33.3088 54.7803 33.4399C55.0088 33.5669 55.2817 33.6304 55.5991 33.6304C55.9884 33.6304 56.3079 33.5479 56.5576 33.3828C56.8115 33.2178 57.0146 32.9998 57.167 32.729C57.3193 32.4582 57.4378 32.1641 57.5225 31.8467V30.3169C57.4717 30.0841 57.3976 29.8599 57.3003 29.644C57.2072 29.424 57.0845 29.2293 56.9321 29.0601C56.784 28.8866 56.5999 28.749 56.3799 28.6475C56.1641 28.5459 55.908 28.4951 55.6118 28.4951C55.2902 28.4951 55.013 28.5628 54.7803 28.6982C54.5518 28.8294 54.3634 29.0114 54.2153 29.2441C54.0672 29.4727 53.9572 29.7393 53.8853 30.0439C53.8175 30.3444 53.7837 30.666 53.7837 31.0088ZM64.562 33.167V24.75H65.7427V34.5H64.6636L64.562 33.167ZM59.9409 31.1421V31.0088C59.9409 30.484 60.0044 30.008 60.1313 29.5806C60.2625 29.1489 60.4466 28.7786 60.6836 28.4697C60.9248 28.1608 61.2104 27.9238 61.5405 27.7588C61.8748 27.5895 62.2472 27.5049 62.6577 27.5049C63.0894 27.5049 63.466 27.5811 63.7876 27.7334C64.1134 27.8815 64.3885 28.0994 64.6128 28.3872C64.8413 28.6707 65.0212 29.0135 65.1523 29.4155C65.2835 29.8175 65.3745 30.2725 65.4253 30.7803V31.3643C65.3787 31.8678 65.2878 32.3206 65.1523 32.7227C65.0212 33.1247 64.8413 33.4674 64.6128 33.751C64.3885 34.0345 64.1134 34.2524 63.7876 34.4048C63.4618 34.5529 63.0809 34.627 62.645 34.627C62.243 34.627 61.8748 34.5402 61.5405 34.3667C61.2104 34.1932 60.9248 33.9499 60.6836 33.6367C60.4466 33.3236 60.2625 32.9554 60.1313 32.5322C60.0044 32.1048 59.9409 31.6414 59.9409 31.1421ZM61.1216 31.0088V31.1421C61.1216 31.4849 61.1554 31.8065 61.2231 32.1069C61.2951 32.4074 61.4051 32.6719 61.5532 32.9004C61.7013 33.1289 61.8896 33.3088 62.1182 33.4399C62.3467 33.5669 62.6196 33.6304 62.937 33.6304C63.3263 33.6304 63.6458 33.5479 63.8955 33.3828C64.1494 33.2178 64.3525 32.9998 64.5049 32.729C64.6572 32.4582 64.7757 32.1641 64.8604 31.8467V30.3169C64.8096 30.0841 64.7355 29.8599 64.6382 29.644C64.5451 29.424 64.4224 29.2293 64.27 29.0601C64.1219 28.8866 63.9378 28.749 63.7178 28.6475C63.502 28.5459 63.2459 28.4951 62.9497 28.4951C62.6281 28.4951 62.3509 28.5628 62.1182 28.6982C61.8896 28.8294 61.7013 29.0114 61.5532 29.2441C61.4051 29.4727 61.2951 29.7393 61.2231 30.0439C61.1554 30.3444 61.1216 30.666 61.1216 31.0088Z",fill:"white"}),(0,h.createElement)("path",{d:"M75.9829 25.2578L72.1299 35.2935H71.1206L74.98 25.2578H75.9829Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M81.8247 33.7891L83.7354 27.6318H84.9922L82.2373 35.5601C82.1738 35.7293 82.0892 35.9113 81.9834 36.106C81.8818 36.3049 81.7507 36.4932 81.5898 36.6709C81.429 36.8486 81.2344 36.9925 81.0059 37.1025C80.7816 37.2168 80.5129 37.2739 80.1997 37.2739C80.1066 37.2739 79.9881 37.2612 79.8442 37.2358C79.7004 37.2104 79.5988 37.1893 79.5396 37.1724L79.5332 36.2202C79.5671 36.2244 79.62 36.2287 79.6919 36.2329C79.7681 36.2414 79.821 36.2456 79.8506 36.2456C80.1172 36.2456 80.3436 36.2096 80.5298 36.1377C80.716 36.07 80.8726 35.9536 80.9995 35.7886C81.1307 35.6278 81.2428 35.4056 81.3359 35.1221L81.8247 33.7891ZM80.4219 27.6318L82.2056 32.9639L82.5103 34.2017L81.666 34.6333L79.1396 27.6318H80.4219ZM87.9819 33.7891L89.8926 27.6318H91.1494L88.3945 35.5601C88.3311 35.7293 88.2464 35.9113 88.1406 36.106C88.0391 36.3049 87.9079 36.4932 87.7471 36.6709C87.5863 36.8486 87.3916 36.9925 87.1631 37.1025C86.9388 37.2168 86.6701 37.2739 86.3569 37.2739C86.2638 37.2739 86.1453 37.2612 86.0015 37.2358C85.8576 37.2104 85.756 37.1893 85.6968 37.1724L85.6904 36.2202C85.7243 36.2244 85.7772 36.2287 85.8491 36.2329C85.9253 36.2414 85.9782 36.2456 86.0078 36.2456C86.2744 36.2456 86.5008 36.2096 86.687 36.1377C86.8732 36.07 87.0298 35.9536 87.1567 35.7886C87.2879 35.6278 87.4001 35.4056 87.4932 35.1221L87.9819 33.7891ZM86.5791 27.6318L88.3628 32.9639L88.6675 34.2017L87.8232 34.6333L85.2969 27.6318H86.5791ZM94.1392 33.7891L96.0498 27.6318H97.3066L94.5518 35.5601C94.4883 35.7293 94.4036 35.9113 94.2979 36.106C94.1963 36.3049 94.0651 36.4932 93.9043 36.6709C93.7435 36.8486 93.5488 36.9925 93.3203 37.1025C93.096 37.2168 92.8273 37.2739 92.5142 37.2739C92.4211 37.2739 92.3026 37.2612 92.1587 37.2358C92.0148 37.2104 91.9132 37.1893 91.854 37.1724L91.8477 36.2202C91.8815 36.2244 91.9344 36.2287 92.0063 36.2329C92.0825 36.2414 92.1354 36.2456 92.165 36.2456C92.4316 36.2456 92.658 36.2096 92.8442 36.1377C93.0304 36.07 93.187 35.9536 93.314 35.7886C93.4451 35.6278 93.5573 35.4056 93.6504 35.1221L94.1392 33.7891ZM92.7363 27.6318L94.52 32.9639L94.8247 34.2017L93.9805 34.6333L91.4541 27.6318H92.7363ZM100.296 33.7891L102.207 27.6318H103.464L100.709 35.5601C100.646 35.7293 100.561 35.9113 100.455 36.106C100.354 36.3049 100.222 36.4932 100.062 36.6709C99.9007 36.8486 99.7061 36.9925 99.4775 37.1025C99.2533 37.2168 98.9845 37.2739 98.6714 37.2739C98.5783 37.2739 98.4598 37.2612 98.3159 37.2358C98.172 37.2104 98.0705 37.1893 98.0112 37.1724L98.0049 36.2202C98.0387 36.2244 98.0916 36.2287 98.1636 36.2329C98.2397 36.2414 98.2926 36.2456 98.3223 36.2456C98.5889 36.2456 98.8153 36.2096 99.0015 36.1377C99.1877 36.07 99.3442 35.9536 99.4712 35.7886C99.6024 35.6278 99.7145 35.4056 99.8076 35.1221L100.296 33.7891ZM98.8936 27.6318L100.677 32.9639L100.982 34.2017L100.138 34.6333L97.6113 27.6318H98.8936Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270 24V38C270 39.1 269.1 40 268 40H254C252.89 40 252 39.1 252 38L252.01 24C252.01 22.9 252.89 22 254 22H255V20H257V22H265V20H267V22H268C269.1 22 270 22.9 270 24ZM254 26H268V24H254V26ZM268 38V28H254V38H268Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"15",y:"45",width:"268",height:"189",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M26.6948 60.7578H28.3071L30.6812 67.5435L33.0552 60.7578H34.6675L31.3286 70H30.0337L26.6948 60.7578ZM25.8252 60.7578H27.4312L27.7231 67.3721V70H25.8252V60.7578ZM33.9312 60.7578H35.5435V70H33.6392V67.3721L33.9312 60.7578ZM40.8057 68.4512V65.3916C40.8057 65.1715 40.7697 64.9832 40.6978 64.8267C40.6258 64.6659 40.5137 64.541 40.3613 64.4521C40.2132 64.3633 40.0207 64.3188 39.7837 64.3188C39.5806 64.3188 39.4049 64.3548 39.2568 64.4268C39.1087 64.4945 38.9945 64.5939 38.9141 64.7251C38.8337 64.8521 38.7935 65.0023 38.7935 65.1758H36.9653C36.9653 64.8838 37.033 64.6066 37.1685 64.3442C37.3039 64.0819 37.5007 63.8512 37.7588 63.6523C38.0169 63.4492 38.3237 63.2905 38.6792 63.1763C39.0389 63.062 39.4409 63.0049 39.8853 63.0049C40.4185 63.0049 40.8924 63.0938 41.3071 63.2715C41.7218 63.4492 42.0477 63.7158 42.2847 64.0713C42.5259 64.4268 42.6465 64.8711 42.6465 65.4043V68.3433C42.6465 68.7199 42.6698 69.0288 42.7163 69.27C42.7629 69.507 42.8306 69.7144 42.9194 69.8921V70H41.0723C40.9834 69.8138 40.9157 69.5811 40.8691 69.3018C40.8268 69.0182 40.8057 68.7347 40.8057 68.4512ZM41.0469 65.8169L41.0596 66.8516H40.0376C39.7964 66.8516 39.5869 66.8791 39.4092 66.9341C39.2314 66.9891 39.0854 67.0674 38.9712 67.1689C38.8569 67.2663 38.7723 67.3805 38.7173 67.5117C38.6665 67.6429 38.6411 67.7868 38.6411 67.9434C38.6411 68.0999 38.6771 68.2417 38.749 68.3687C38.821 68.4914 38.9246 68.5887 39.0601 68.6606C39.1955 68.7284 39.3542 68.7622 39.5361 68.7622C39.8112 68.7622 40.0503 68.7072 40.2534 68.5972C40.4565 68.4871 40.6131 68.3517 40.7231 68.1909C40.8374 68.0301 40.8966 67.8778 40.9009 67.7339L41.3833 68.5083C41.3156 68.6818 41.2225 68.8617 41.104 69.0479C40.9897 69.234 40.8438 69.4097 40.666 69.5747C40.4883 69.7355 40.2746 69.8688 40.0249 69.9746C39.7752 70.0762 39.479 70.127 39.1362 70.127C38.7004 70.127 38.3047 70.0402 37.9492 69.8667C37.598 69.689 37.3187 69.4456 37.1113 69.1367C36.9082 68.8236 36.8066 68.4681 36.8066 68.0703C36.8066 67.7106 36.8743 67.3911 37.0098 67.1118C37.1452 66.8325 37.3441 66.5977 37.6064 66.4072C37.873 66.2126 38.2052 66.0666 38.603 65.9692C39.0008 65.8677 39.4621 65.8169 39.9868 65.8169H41.0469ZM45.8838 64.6299V70H44.0557V63.1318H45.7759L45.8838 64.6299ZM47.9531 63.0874L47.9214 64.7822C47.8325 64.7695 47.7246 64.759 47.5977 64.7505C47.4749 64.7378 47.3628 64.7314 47.2612 64.7314C47.0031 64.7314 46.7788 64.7653 46.5884 64.833C46.4022 64.8965 46.2456 64.9917 46.1187 65.1187C45.9959 65.2456 45.9028 65.4001 45.8394 65.582C45.7801 65.764 45.7463 65.9714 45.7378 66.2041L45.3696 66.0898C45.3696 65.6455 45.4141 65.2371 45.5029 64.8647C45.5918 64.4881 45.7209 64.1602 45.8901 63.8809C46.0636 63.6016 46.2752 63.3857 46.5249 63.2334C46.7746 63.0811 47.0602 63.0049 47.3818 63.0049C47.4834 63.0049 47.5871 63.0133 47.6929 63.0303C47.7987 63.043 47.8854 63.062 47.9531 63.0874ZM51.5269 68.6987C51.7511 68.6987 51.95 68.6564 52.1235 68.5718C52.297 68.4829 52.4325 68.3602 52.5298 68.2036C52.6313 68.0428 52.6842 67.8545 52.6885 67.6387H54.4087C54.4045 68.1211 54.2754 68.5506 54.0215 68.9272C53.7676 69.2996 53.4269 69.5938 52.9995 69.8096C52.5721 70.0212 52.0939 70.127 51.5649 70.127C51.0317 70.127 50.5662 70.0381 50.1685 69.8604C49.7749 69.6826 49.4469 69.4372 49.1846 69.124C48.9222 68.8066 48.7254 68.4385 48.5942 68.0195C48.4631 67.5964 48.3975 67.1436 48.3975 66.6611V66.4771C48.3975 65.9904 48.4631 65.5376 48.5942 65.1187C48.7254 64.6955 48.9222 64.3273 49.1846 64.0142C49.4469 63.6968 49.7749 63.4492 50.1685 63.2715C50.562 63.0938 51.0233 63.0049 51.5522 63.0049C52.1151 63.0049 52.6081 63.1128 53.0312 63.3286C53.4587 63.5444 53.793 63.8534 54.0342 64.2554C54.2796 64.6532 54.4045 65.125 54.4087 65.6709H52.6885C52.6842 65.4424 52.6356 65.235 52.5425 65.0488C52.4536 64.8626 52.3224 64.7145 52.1489 64.6045C51.9797 64.4902 51.7702 64.4331 51.5205 64.4331C51.2539 64.4331 51.036 64.4902 50.8667 64.6045C50.6974 64.7145 50.5662 64.8669 50.4731 65.0615C50.38 65.252 50.3145 65.4699 50.2764 65.7153C50.2425 65.9565 50.2256 66.2104 50.2256 66.4771V66.6611C50.2256 66.9277 50.2425 67.1838 50.2764 67.4292C50.3102 67.6746 50.3737 67.8926 50.4668 68.083C50.5641 68.2734 50.6974 68.4237 50.8667 68.5337C51.036 68.6437 51.256 68.6987 51.5269 68.6987ZM57.2524 60.25V70H55.4243V60.25H57.2524ZM56.9922 66.3247H56.4907C56.495 65.8465 56.5584 65.4064 56.6812 65.0044C56.8039 64.5981 56.9795 64.2469 57.208 63.9507C57.4365 63.6502 57.7095 63.4175 58.0269 63.2524C58.3485 63.0874 58.7039 63.0049 59.0933 63.0049C59.4318 63.0049 59.7386 63.0535 60.0137 63.1509C60.293 63.244 60.5321 63.3963 60.731 63.6079C60.9341 63.8153 61.0907 64.0882 61.2007 64.4268C61.3107 64.7653 61.3657 65.1758 61.3657 65.6582V70H59.5249V65.6455C59.5249 65.3408 59.4805 65.1017 59.3916 64.9282C59.307 64.7505 59.1821 64.6257 59.0171 64.5537C58.8563 64.4775 58.6574 64.4395 58.4204 64.4395C58.158 64.4395 57.9338 64.4881 57.7476 64.5854C57.5656 64.6828 57.4196 64.8182 57.3096 64.9917C57.1995 65.161 57.1191 65.3599 57.0684 65.5884C57.0176 65.8169 56.9922 66.0623 56.9922 66.3247ZM72.2393 68.5718V70H65.917V68.7812L68.9067 65.5757C69.2072 65.2414 69.4442 64.9473 69.6177 64.6934C69.7912 64.4352 69.916 64.2046 69.9922 64.0015C70.0726 63.7941 70.1128 63.5973 70.1128 63.4111C70.1128 63.1318 70.0662 62.8927 69.9731 62.6938C69.88 62.4907 69.7425 62.3341 69.5605 62.2241C69.3828 62.1141 69.1628 62.0591 68.9004 62.0591C68.6211 62.0591 68.3799 62.1268 68.1768 62.2622C67.9779 62.3976 67.8255 62.5859 67.7197 62.8271C67.6182 63.0684 67.5674 63.3413 67.5674 63.646H65.7329C65.7329 63.0959 65.8641 62.5923 66.1265 62.1353C66.3888 61.674 66.7591 61.3079 67.2373 61.0371C67.7155 60.762 68.2826 60.6245 68.9385 60.6245C69.5859 60.6245 70.1318 60.7303 70.5762 60.9419C71.0247 61.1493 71.3633 61.4497 71.5918 61.8433C71.8245 62.2326 71.9409 62.6981 71.9409 63.2397C71.9409 63.5444 71.8923 63.8428 71.7949 64.1348C71.6976 64.4225 71.5579 64.7103 71.376 64.998C71.1982 65.2816 70.9824 65.5693 70.7285 65.8613C70.4746 66.1533 70.1932 66.4559 69.8843 66.769L68.2783 68.5718H72.2393ZM79.6025 64.5664V66.166C79.6025 66.86 79.5285 67.4588 79.3804 67.9624C79.2323 68.4618 79.0186 68.8722 78.7393 69.1938C78.4642 69.5112 78.1362 69.7461 77.7554 69.8984C77.3745 70.0508 76.9513 70.127 76.4858 70.127C76.1134 70.127 75.7664 70.0804 75.4448 69.9873C75.1232 69.89 74.8333 69.7397 74.5752 69.5366C74.3213 69.3335 74.1012 69.0775 73.915 68.7686C73.7331 68.4554 73.5934 68.083 73.4961 67.6514C73.3988 67.2197 73.3501 66.7246 73.3501 66.166V64.5664C73.3501 63.8724 73.4242 63.2778 73.5723 62.7827C73.7246 62.2834 73.9383 61.875 74.2134 61.5576C74.4927 61.2402 74.8228 61.0075 75.2036 60.8594C75.5845 60.707 76.0076 60.6309 76.4731 60.6309C76.8455 60.6309 77.1904 60.6795 77.5078 60.7769C77.8294 60.87 78.1193 61.016 78.3774 61.2148C78.6356 61.4137 78.8556 61.6698 79.0376 61.9829C79.2196 62.2918 79.3592 62.6621 79.4565 63.0938C79.5539 63.5212 79.6025 64.012 79.6025 64.5664ZM77.7681 66.4072V64.3188C77.7681 63.9845 77.749 63.6925 77.7109 63.4429C77.6771 63.1932 77.6242 62.9816 77.5522 62.8081C77.4803 62.6304 77.3914 62.4865 77.2856 62.3765C77.1799 62.2664 77.0592 62.186 76.9238 62.1353C76.7884 62.0845 76.6382 62.0591 76.4731 62.0591C76.2658 62.0591 76.0817 62.0993 75.9209 62.1797C75.7643 62.2601 75.631 62.3892 75.521 62.5669C75.411 62.7404 75.3263 62.9731 75.2671 63.2651C75.2121 63.5529 75.1846 63.9041 75.1846 64.3188V66.4072C75.1846 66.7415 75.2015 67.0356 75.2354 67.2896C75.2734 67.5435 75.3285 67.7614 75.4004 67.9434C75.4766 68.1211 75.5654 68.2671 75.667 68.3813C75.7728 68.4914 75.8934 68.5718 76.0288 68.6226C76.1685 68.6733 76.3208 68.6987 76.4858 68.6987C76.689 68.6987 76.8688 68.6585 77.0254 68.5781C77.1862 68.4935 77.3216 68.3623 77.4316 68.1846C77.5459 68.0026 77.6305 67.7656 77.6855 67.4736C77.7406 67.1816 77.7681 66.8262 77.7681 66.4072ZM87.1689 68.5718V70H80.8467V68.7812L83.8364 65.5757C84.1369 65.2414 84.3739 64.9473 84.5474 64.6934C84.7209 64.4352 84.8457 64.2046 84.9219 64.0015C85.0023 63.7941 85.0425 63.5973 85.0425 63.4111C85.0425 63.1318 84.9959 62.8927 84.9028 62.6938C84.8097 62.4907 84.6722 62.3341 84.4902 62.2241C84.3125 62.1141 84.0924 62.0591 83.8301 62.0591C83.5508 62.0591 83.3096 62.1268 83.1064 62.2622C82.9076 62.3976 82.7552 62.5859 82.6494 62.8271C82.5479 63.0684 82.4971 63.3413 82.4971 63.646H80.6626C80.6626 63.0959 80.7938 62.5923 81.0562 62.1353C81.3185 61.674 81.6888 61.3079 82.167 61.0371C82.6452 60.762 83.2122 60.6245 83.8682 60.6245C84.5156 60.6245 85.0615 60.7303 85.5059 60.9419C85.9544 61.1493 86.293 61.4497 86.5215 61.8433C86.7542 62.2326 86.8706 62.6981 86.8706 63.2397C86.8706 63.5444 86.8219 63.8428 86.7246 64.1348C86.6273 64.4225 86.4876 64.7103 86.3057 64.998C86.1279 65.2816 85.9121 65.5693 85.6582 65.8613C85.4043 66.1533 85.1229 66.4559 84.814 66.769L83.208 68.5718H87.1689ZM92.7676 60.7388V70H90.9395V62.8462L88.7432 63.5444V62.1035L92.5708 60.7388H92.7676Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1425)"},(0,h.createElement)("path",{d:"M99.7917 64.4167L102.5 67.1251L105.208 64.4167H99.7917Z",fill:"#64748B"})),(0,h.createElement)("path",{d:"M184.167 65.4999L184.93 66.2637L187.958 63.2412L187.958 69.8333L189.042 69.8333L189.042 63.2412L192.07 66.2637L192.833 65.4999L188.5 61.1666L184.167 65.4999Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M205.833 65.5001L205.07 64.7363L202.042 67.7588L202.042 61.1667L200.958 61.1667L200.958 67.7588L197.93 64.7363L197.167 65.5001L201.5 69.8334L205.833 65.5001Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M33.7192 89.6641C33.7192 89.4482 33.6853 89.2578 33.6176 89.0928C33.5541 88.9235 33.4399 88.7712 33.2748 88.6357C33.114 88.5003 32.8898 88.3713 32.602 88.2485C32.3185 88.1258 31.9588 88.001 31.5229 87.874C31.0659 87.7386 30.6533 87.5884 30.2851 87.4233C29.9169 87.2541 29.6017 87.0615 29.3393 86.8457C29.0769 86.6299 28.8759 86.3823 28.7363 86.103C28.5966 85.8237 28.5268 85.5042 28.5268 85.1445C28.5268 84.7848 28.6009 84.4526 28.749 84.1479C28.8971 83.8433 29.1087 83.5788 29.3837 83.3545C29.663 83.126 29.9952 82.9482 30.3803 82.8213C30.7654 82.6943 31.1949 82.6309 31.6689 82.6309C32.3629 82.6309 32.9511 82.7642 33.4335 83.0308C33.9202 83.2931 34.2905 83.638 34.5444 84.0654C34.7983 84.4886 34.9252 84.9414 34.9252 85.4238H33.7065C33.7065 85.0768 33.6324 84.77 33.4843 84.5034C33.3362 84.2326 33.1119 84.021 32.8115 83.8687C32.511 83.7121 32.1302 83.6338 31.6689 83.6338C31.233 83.6338 30.8733 83.6994 30.5898 83.8306C30.3063 83.9618 30.0947 84.1395 29.955 84.3638C29.8196 84.5881 29.7519 84.8441 29.7519 85.1318C29.7519 85.3265 29.7921 85.5042 29.8725 85.665C29.9571 85.8216 30.0862 85.9676 30.2597 86.103C30.4374 86.2384 30.6617 86.3633 30.9326 86.4775C31.2076 86.5918 31.5356 86.7018 31.9164 86.8076C32.4412 86.9557 32.894 87.1208 33.2748 87.3027C33.6557 87.4847 33.9689 87.6899 34.2143 87.9185C34.464 88.1427 34.6481 88.3988 34.7665 88.6865C34.8893 88.9701 34.9506 89.2917 34.9506 89.6514C34.9506 90.028 34.8745 90.3687 34.7221 90.6733C34.5698 90.978 34.3518 91.2383 34.0683 91.4541C33.7848 91.6699 33.4441 91.8371 33.0463 91.9556C32.6528 92.0698 32.2127 92.127 31.726 92.127C31.2986 92.127 30.8775 92.0677 30.4628 91.9492C30.0524 91.8307 29.6778 91.653 29.3393 91.416C29.005 91.179 28.7363 90.887 28.5331 90.54C28.3343 90.1888 28.2348 89.7826 28.2348 89.3213H29.4536C29.4536 89.6387 29.5149 89.9116 29.6376 90.1401C29.7604 90.3644 29.9275 90.5506 30.1391 90.6987C30.3549 90.8468 30.5983 90.9569 30.8691 91.0288C31.1442 91.0965 31.4298 91.1304 31.726 91.1304C32.1534 91.1304 32.5152 91.0711 32.8115 90.9526C33.1077 90.8341 33.332 90.6649 33.4843 90.4448C33.6409 90.2248 33.7192 89.9645 33.7192 89.6641ZM40.5366 90.4131V85.1318H41.7172V92H40.5937L40.5366 90.4131ZM40.7587 88.9658L41.2475 88.9531C41.2475 89.4102 41.1988 89.8333 41.1015 90.2227C41.0084 90.6077 40.8561 90.9421 40.6445 91.2256C40.4329 91.5091 40.1557 91.7313 39.8129 91.8921C39.4702 92.0487 39.0533 92.127 38.5624 92.127C38.2281 92.127 37.9213 92.0783 37.642 91.981C37.367 91.8836 37.13 91.7334 36.9311 91.5303C36.7322 91.3271 36.5777 91.0627 36.4677 90.7368C36.3619 90.411 36.309 90.0195 36.309 89.5625V85.1318H37.4833V89.5752C37.4833 89.8841 37.5172 90.1401 37.5849 90.3433C37.6568 90.5422 37.7521 90.7008 37.8706 90.8193C37.9933 90.9336 38.1287 91.014 38.2768 91.0605C38.4291 91.1071 38.5857 91.1304 38.7465 91.1304C39.2459 91.1304 39.6415 91.0352 39.9335 90.8447C40.2255 90.6501 40.435 90.3898 40.562 90.064C40.6931 89.7339 40.7587 89.3678 40.7587 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M86.7169 82.7578V92H85.5108V82.7578H86.7169ZM89.6876 82.7578V83.7607H82.5465V82.7578H89.6876ZM94.4737 90.4131V85.1318H95.6544V92H94.5308L94.4737 90.4131ZM94.6959 88.9658L95.1846 88.9531C95.1846 89.4102 95.136 89.8333 95.0386 90.2227C94.9455 90.6077 94.7932 90.9421 94.5816 91.2256C94.37 91.5091 94.0928 91.7313 93.7501 91.8921C93.4073 92.0487 92.9905 92.127 92.4996 92.127C92.1653 92.127 91.8585 92.0783 91.5792 91.981C91.3041 91.8836 91.0671 91.7334 90.8682 91.5303C90.6693 91.3271 90.5149 91.0627 90.4049 90.7368C90.2991 90.411 90.2462 90.0195 90.2462 89.5625V85.1318H91.4205V89.5752C91.4205 89.8841 91.4543 90.1401 91.522 90.3433C91.594 90.5422 91.6892 90.7008 91.8077 90.8193C91.9304 90.9336 92.0658 91.014 92.2139 91.0605C92.3663 91.1071 92.5229 91.1304 92.6837 91.1304C93.183 91.1304 93.5787 91.0352 93.8707 90.8447C94.1627 90.6501 94.3721 90.3898 94.4991 90.064C94.6303 89.7339 94.6959 89.3678 94.6959 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M140.637 82.7578V92H139.431V82.7578H140.637ZM143.608 82.7578V83.7607H136.467V82.7578H143.608ZM145.976 82.25V92H144.801V82.25H145.976ZM145.696 88.3057L145.208 88.2866C145.212 87.8169 145.282 87.3831 145.417 86.9854C145.553 86.5833 145.743 86.2342 145.988 85.938C146.234 85.6418 146.526 85.4132 146.864 85.2524C147.207 85.0874 147.586 85.0049 148.001 85.0049C148.339 85.0049 148.644 85.0514 148.915 85.1445C149.186 85.2334 149.416 85.3773 149.607 85.5762C149.801 85.7751 149.949 86.0332 150.051 86.3506C150.153 86.6637 150.203 87.0467 150.203 87.4995V92H149.023V87.4868C149.023 87.1271 148.97 86.8394 148.864 86.6235C148.758 86.4035 148.604 86.2448 148.401 86.1475C148.197 86.0459 147.948 85.9951 147.652 85.9951C147.36 85.9951 147.093 86.0565 146.852 86.1792C146.615 86.3019 146.41 86.4712 146.236 86.687C146.067 86.9028 145.933 87.1504 145.836 87.4297C145.743 87.7048 145.696 87.9967 145.696 88.3057Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M196.437 89.6641C196.437 89.4482 196.403 89.2578 196.335 89.0928C196.272 88.9235 196.158 88.7712 195.992 88.6357C195.832 88.5003 195.607 88.3713 195.32 88.2485C195.036 88.1258 194.676 88.001 194.241 87.874C193.784 87.7386 193.371 87.5884 193.003 87.4233C192.635 87.2541 192.319 87.0615 192.057 86.8457C191.795 86.6299 191.594 86.3823 191.454 86.103C191.314 85.8237 191.244 85.5042 191.244 85.1445C191.244 84.7848 191.319 84.4526 191.467 84.1479C191.615 83.8433 191.826 83.5788 192.101 83.3545C192.381 83.126 192.713 82.9482 193.098 82.8213C193.483 82.6943 193.913 82.6309 194.387 82.6309C195.081 82.6309 195.669 82.7642 196.151 83.0308C196.638 83.2931 197.008 83.638 197.262 84.0654C197.516 84.4886 197.643 84.9414 197.643 85.4238H196.424C196.424 85.0768 196.35 84.77 196.202 84.5034C196.054 84.2326 195.83 84.021 195.529 83.8687C195.229 83.7121 194.848 83.6338 194.387 83.6338C193.951 83.6338 193.591 83.6994 193.307 83.8306C193.024 83.9618 192.812 84.1395 192.673 84.3638C192.537 84.5881 192.47 84.8441 192.47 85.1318C192.47 85.3265 192.51 85.5042 192.59 85.665C192.675 85.8216 192.804 85.9676 192.977 86.103C193.155 86.2384 193.379 86.3633 193.65 86.4775C193.925 86.5918 194.253 86.7018 194.634 86.8076C195.159 86.9557 195.612 87.1208 195.992 87.3027C196.373 87.4847 196.687 87.6899 196.932 87.9185C197.182 88.1427 197.366 88.3988 197.484 88.6865C197.607 88.9701 197.668 89.2917 197.668 89.6514C197.668 90.028 197.592 90.3687 197.44 90.6733C197.287 90.978 197.069 91.2383 196.786 91.4541C196.502 91.6699 196.162 91.8371 195.764 91.9556C195.37 92.0698 194.93 92.127 194.444 92.127C194.016 92.127 193.595 92.0677 193.18 91.9492C192.77 91.8307 192.395 91.653 192.057 91.416C191.723 91.179 191.454 90.887 191.251 90.54C191.052 90.1888 190.952 89.7826 190.952 89.3213H192.171C192.171 89.6387 192.233 89.9116 192.355 90.1401C192.478 90.3644 192.645 90.5506 192.857 90.6987C193.073 90.8468 193.316 90.9569 193.587 91.0288C193.862 91.0965 194.147 91.1304 194.444 91.1304C194.871 91.1304 195.233 91.0711 195.529 90.9526C195.825 90.8341 196.05 90.6649 196.202 90.4448C196.359 90.2248 196.437 89.9645 196.437 89.6641ZM203.102 90.8257V87.29C203.102 87.0192 203.047 86.7843 202.937 86.5854C202.831 86.3823 202.67 86.2257 202.454 86.1157C202.239 86.0057 201.972 85.9507 201.655 85.9507C201.358 85.9507 201.098 86.0015 200.874 86.103C200.654 86.2046 200.48 86.3379 200.353 86.5029C200.231 86.668 200.169 86.8457 200.169 87.0361H198.995C198.995 86.7907 199.058 86.5474 199.185 86.3062C199.312 86.0649 199.494 85.847 199.731 85.6523C199.972 85.4535 200.26 85.2969 200.595 85.1826C200.933 85.0641 201.31 85.0049 201.724 85.0049C202.224 85.0049 202.664 85.0895 203.045 85.2588C203.43 85.4281 203.73 85.6841 203.946 86.0269C204.166 86.3654 204.276 86.7907 204.276 87.3027V90.502C204.276 90.7305 204.295 90.9738 204.333 91.2319C204.376 91.4901 204.437 91.7122 204.517 91.8984V92H203.292C203.233 91.8646 203.187 91.6847 203.153 91.4604C203.119 91.2319 203.102 91.0203 203.102 90.8257ZM203.305 87.8359L203.318 88.6611H202.131C201.796 88.6611 201.498 88.6886 201.236 88.7437C200.973 88.7944 200.753 88.8727 200.576 88.9785C200.398 89.0843 200.262 89.2176 200.169 89.3784C200.076 89.535 200.03 89.7191 200.03 89.9307C200.03 90.1465 200.078 90.3433 200.176 90.521C200.273 90.6987 200.419 90.8405 200.614 90.9463C200.812 91.0479 201.056 91.0986 201.344 91.0986C201.703 91.0986 202.021 91.0225 202.296 90.8701C202.571 90.7178 202.789 90.5316 202.95 90.3115C203.115 90.0915 203.203 89.8778 203.216 89.6704L203.718 90.2354C203.688 90.4131 203.608 90.6099 203.476 90.8257C203.345 91.0415 203.17 91.2489 202.95 91.4478C202.734 91.6424 202.476 91.8053 202.175 91.9365C201.879 92.0635 201.545 92.127 201.172 92.127C200.707 92.127 200.298 92.036 199.947 91.854C199.6 91.672 199.329 91.4287 199.135 91.124C198.944 90.8151 198.849 90.4702 198.849 90.0894C198.849 89.7212 198.921 89.3975 199.065 89.1182C199.209 88.8346 199.416 88.5998 199.687 88.4136C199.958 88.2231 200.284 88.0793 200.664 87.9819C201.045 87.8846 201.471 87.8359 201.94 87.8359H203.305Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M54.3552 82.7578H55.5422L58.57 90.2925L61.5915 82.7578H62.7849L59.027 92H58.1003L54.3552 82.7578ZM53.968 82.7578H55.0153L55.1867 88.3945V92H53.968V82.7578ZM62.1184 82.7578H63.1657V92H61.947V88.3945L62.1184 82.7578ZM64.8288 88.6421V88.4961C64.8288 88.001 64.9007 87.5418 65.0446 87.1187C65.1885 86.6912 65.3959 86.321 65.6667 86.0078C65.9375 85.6904 66.2655 85.445 66.6506 85.2715C67.0357 85.0938 67.4673 85.0049 67.9455 85.0049C68.4279 85.0049 68.8617 85.0938 69.2468 85.2715C69.6361 85.445 69.9662 85.6904 70.237 86.0078C70.5121 86.321 70.7215 86.6912 70.8654 87.1187C71.0093 87.5418 71.0812 88.001 71.0812 88.4961V88.6421C71.0812 89.1372 71.0093 89.5964 70.8654 90.0195C70.7215 90.4427 70.5121 90.813 70.237 91.1304C69.9662 91.4435 69.6382 91.689 69.2531 91.8667C68.8723 92.0402 68.4406 92.127 67.9582 92.127C67.4758 92.127 67.042 92.0402 66.6569 91.8667C66.2718 91.689 65.9418 91.4435 65.6667 91.1304C65.3959 90.813 65.1885 90.4427 65.0446 90.0195C64.9007 89.5964 64.8288 89.1372 64.8288 88.6421ZM66.0031 88.4961V88.6421C66.0031 88.9849 66.0433 89.3086 66.1237 89.6133C66.2041 89.9137 66.3247 90.1803 66.4855 90.4131C66.6506 90.6458 66.8558 90.8299 67.1013 90.9653C67.3467 91.0965 67.6324 91.1621 67.9582 91.1621C68.2798 91.1621 68.5612 91.0965 68.8024 90.9653C69.0479 90.8299 69.251 90.6458 69.4118 90.4131C69.5726 90.1803 69.6932 89.9137 69.7736 89.6133C69.8583 89.3086 69.9006 88.9849 69.9006 88.6421V88.4961C69.9006 88.1576 69.8583 87.8381 69.7736 87.5376C69.6932 87.2329 69.5705 86.9642 69.4055 86.7314C69.2447 86.4945 69.0415 86.3083 68.7961 86.1729C68.5549 86.0374 68.2713 85.9697 67.9455 85.9697C67.6239 85.9697 67.3404 86.0374 67.0949 86.1729C66.8537 86.3083 66.6506 86.4945 66.4855 86.7314C66.3247 86.9642 66.2041 87.2329 66.1237 87.5376C66.0433 87.8381 66.0031 88.1576 66.0031 88.4961Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M110.886 89.207L112.721 82.7578H113.609L113.095 85.2651L111.121 92H110.239L110.886 89.207ZM108.988 82.7578L110.448 89.0801L110.886 92H110.01L107.769 82.7578H108.988ZM115.983 89.0737L117.411 82.7578H118.637L116.402 92H115.526L115.983 89.0737ZM113.742 82.7578L115.526 89.207L116.174 92H115.291L113.387 85.2651L112.867 82.7578H113.742ZM122.464 92.127C121.986 92.127 121.552 92.0465 121.163 91.8857C120.778 91.7207 120.446 91.4901 120.166 91.1938C119.891 90.8976 119.68 90.5464 119.532 90.1401C119.383 89.7339 119.309 89.2896 119.309 88.8071V88.5405C119.309 87.9819 119.392 87.4847 119.557 87.0488C119.722 86.6087 119.946 86.2363 120.23 85.9316C120.513 85.627 120.835 85.3963 121.195 85.2397C121.554 85.0832 121.927 85.0049 122.312 85.0049C122.803 85.0049 123.226 85.0895 123.581 85.2588C123.941 85.4281 124.235 85.665 124.464 85.9697C124.692 86.2702 124.861 86.6257 124.972 87.0361C125.082 87.4424 125.137 87.8867 125.137 88.3691V88.896H120.008V87.9375H123.962V87.8486C123.945 87.5439 123.882 87.2477 123.772 86.96C123.666 86.6722 123.497 86.4352 123.264 86.249C123.031 86.0628 122.714 85.9697 122.312 85.9697C122.045 85.9697 121.8 86.0269 121.576 86.1411C121.351 86.2511 121.159 86.4162 120.998 86.6362C120.837 86.8563 120.712 87.125 120.623 87.4424C120.534 87.7598 120.49 88.1258 120.49 88.5405V88.8071C120.49 89.133 120.534 89.4398 120.623 89.7275C120.716 90.0111 120.85 90.2607 121.023 90.4766C121.201 90.6924 121.415 90.8617 121.664 90.9844C121.918 91.1071 122.206 91.1685 122.528 91.1685C122.942 91.1685 123.294 91.0838 123.581 90.9146C123.869 90.7453 124.121 90.5189 124.337 90.2354L125.048 90.8003C124.9 91.0246 124.711 91.2383 124.483 91.4414C124.254 91.6445 123.973 91.8096 123.638 91.9365C123.308 92.0635 122.917 92.127 122.464 92.127Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M167.305 82.7578V92H166.08V82.7578H167.305ZM171.177 86.9155V87.9185H167.038V86.9155H171.177ZM171.805 82.7578V83.7607H167.038V82.7578H171.805ZM174.097 86.2109V92H172.922V85.1318H174.065L174.097 86.2109ZM176.242 85.0938L176.236 86.1855C176.138 86.1644 176.045 86.1517 175.956 86.1475C175.872 86.139 175.775 86.1348 175.664 86.1348C175.394 86.1348 175.155 86.1771 174.947 86.2617C174.74 86.3464 174.564 86.4648 174.42 86.6172C174.276 86.7695 174.162 86.9515 174.078 87.1631C173.997 87.3704 173.944 87.599 173.919 87.8486L173.589 88.0391C173.589 87.6243 173.629 87.235 173.709 86.8711C173.794 86.5072 173.923 86.1855 174.097 85.9062C174.27 85.6227 174.49 85.4027 174.757 85.2461C175.028 85.0853 175.349 85.0049 175.722 85.0049C175.806 85.0049 175.904 85.0155 176.014 85.0366C176.124 85.0535 176.2 85.0726 176.242 85.0938Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"160.002",y:"100",width:"20.9999",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.6777 115.035V116H28.6284V115.156L31.6562 111.785C32.0286 111.37 32.3164 111.019 32.5195 110.731C32.7269 110.439 32.8707 110.179 32.9511 109.951C33.0358 109.718 33.0781 109.481 33.0781 109.24C33.0781 108.935 33.0146 108.66 32.8877 108.415C32.7649 108.165 32.583 107.966 32.3418 107.818C32.1006 107.67 31.8086 107.596 31.4658 107.596C31.0553 107.596 30.7125 107.676 30.4375 107.837C30.1666 107.993 29.9635 108.214 29.8281 108.497C29.6927 108.781 29.625 109.106 29.625 109.475H28.4507C28.4507 108.954 28.5649 108.478 28.7934 108.046C29.0219 107.615 29.3605 107.272 29.8091 107.018C30.2576 106.76 30.8099 106.631 31.4658 106.631C32.0498 106.631 32.5491 106.735 32.9638 106.942C33.3786 107.145 33.6959 107.433 33.916 107.805C34.1403 108.173 34.2524 108.605 34.2524 109.1C34.2524 109.371 34.2059 109.646 34.1128 109.925C34.0239 110.2 33.8991 110.475 33.7383 110.75C33.5817 111.026 33.3976 111.296 33.186 111.563C32.9786 111.83 32.7565 112.092 32.5195 112.35L30.0439 115.035H34.6777ZM41.7617 113.499C41.7617 114.062 41.6305 114.54 41.3681 114.934C41.11 115.323 40.7588 115.619 40.3144 115.822C39.8743 116.025 39.3771 116.127 38.8227 116.127C38.2684 116.127 37.769 116.025 37.3247 115.822C36.8803 115.619 36.5291 115.323 36.271 114.934C36.0128 114.54 35.8838 114.062 35.8838 113.499C35.8838 113.131 35.9536 112.794 36.0932 112.49C36.2371 112.181 36.4381 111.912 36.6963 111.684C36.9586 111.455 37.2675 111.279 37.623 111.157C37.9827 111.03 38.3784 110.966 38.81 110.966C39.3771 110.966 39.8828 111.076 40.3271 111.296C40.7715 111.512 41.1206 111.811 41.3745 112.191C41.6326 112.572 41.7617 113.008 41.7617 113.499ZM40.581 113.474C40.581 113.131 40.507 112.828 40.3589 112.566C40.2107 112.299 40.0034 112.092 39.7368 111.944C39.4702 111.796 39.1613 111.722 38.81 111.722C38.4503 111.722 38.1393 111.796 37.8769 111.944C37.6188 112.092 37.4178 112.299 37.2739 112.566C37.13 112.828 37.0581 113.131 37.0581 113.474C37.0581 113.829 37.1279 114.134 37.2675 114.388C37.4114 114.637 37.6146 114.83 37.8769 114.965C38.1435 115.097 38.4588 115.162 38.8227 115.162C39.1867 115.162 39.4998 115.097 39.7622 114.965C40.0245 114.83 40.2256 114.637 40.3652 114.388C40.5091 114.134 40.581 113.829 40.581 113.474ZM41.5459 109.164C41.5459 109.612 41.4274 110.016 41.1904 110.376C40.9534 110.736 40.6297 111.019 40.2192 111.227C39.8087 111.434 39.3432 111.538 38.8227 111.538C38.2938 111.538 37.8219 111.434 37.4072 111.227C36.9967 111.019 36.6751 110.736 36.4424 110.376C36.2096 110.016 36.0932 109.612 36.0932 109.164C36.0932 108.626 36.2096 108.169 36.4424 107.792C36.6793 107.416 37.0031 107.128 37.4135 106.929C37.824 106.73 38.2916 106.631 38.8164 106.631C39.3453 106.631 39.8151 106.73 40.2256 106.929C40.636 107.128 40.9577 107.416 41.1904 107.792C41.4274 108.169 41.5459 108.626 41.5459 109.164ZM40.3716 109.183C40.3716 108.874 40.306 108.601 40.1748 108.364C40.0436 108.127 39.8616 107.941 39.6289 107.805C39.3961 107.666 39.1253 107.596 38.8164 107.596C38.5075 107.596 38.2366 107.661 38.0039 107.792C37.7754 107.919 37.5955 108.101 37.4643 108.338C37.3374 108.575 37.2739 108.857 37.2739 109.183C37.2739 109.5 37.3374 109.777 37.4643 110.014C37.5955 110.251 37.7775 110.435 38.0102 110.566C38.243 110.698 38.5138 110.763 38.8227 110.763C39.1316 110.763 39.4004 110.698 39.6289 110.566C39.8616 110.435 40.0436 110.251 40.1748 110.014C40.306 109.777 40.3716 109.5 40.3716 109.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M92.5573 115.035V116H86.508V115.156L89.5359 111.785C89.9083 111.37 90.196 111.019 90.3991 110.731C90.6065 110.439 90.7504 110.179 90.8308 109.951C90.9154 109.718 90.9577 109.481 90.9577 109.24C90.9577 108.935 90.8943 108.66 90.7673 108.415C90.6446 108.165 90.4626 107.966 90.2214 107.818C89.9802 107.67 89.6882 107.596 89.3454 107.596C88.9349 107.596 88.5922 107.676 88.3171 107.837C88.0463 107.993 87.8432 108.214 87.7077 108.497C87.5723 108.781 87.5046 109.106 87.5046 109.475H86.3303C86.3303 108.954 86.4446 108.478 86.6731 108.046C86.9016 107.615 87.2401 107.272 87.6887 107.018C88.1373 106.76 88.6895 106.631 89.3454 106.631C89.9294 106.631 90.4288 106.735 90.8435 106.942C91.2582 107.145 91.5756 107.433 91.7956 107.805C92.0199 108.173 92.1321 108.605 92.1321 109.1C92.1321 109.371 92.0855 109.646 91.9924 109.925C91.9035 110.2 91.7787 110.475 91.6179 110.75C91.4613 111.026 91.2772 111.296 91.0656 111.563C90.8583 111.83 90.6361 112.092 90.3991 112.35L87.9236 115.035H92.5573Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M146.97 112.89V113.854H140.292V113.163L144.431 106.758H145.389L144.361 108.611L141.625 112.89H146.97ZM145.681 106.758V116H144.507V106.758H145.681Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M199.452 106.745H199.554V107.742H199.452C198.83 107.742 198.309 107.843 197.89 108.046C197.472 108.245 197.139 108.514 196.894 108.853C196.648 109.187 196.471 109.563 196.361 109.982C196.255 110.401 196.202 110.827 196.202 111.258V112.617C196.202 113.027 196.251 113.391 196.348 113.708C196.445 114.022 196.579 114.286 196.748 114.502C196.917 114.718 197.108 114.881 197.319 114.991C197.535 115.101 197.759 115.156 197.992 115.156C198.263 115.156 198.504 115.105 198.716 115.003C198.927 114.898 199.105 114.752 199.249 114.565C199.397 114.375 199.509 114.151 199.585 113.893C199.661 113.634 199.7 113.351 199.7 113.042C199.7 112.767 199.666 112.502 199.598 112.249C199.53 111.99 199.427 111.762 199.287 111.563C199.147 111.36 198.972 111.201 198.76 111.087C198.553 110.968 198.305 110.909 198.017 110.909C197.692 110.909 197.387 110.99 197.103 111.15C196.824 111.307 196.593 111.514 196.411 111.772C196.234 112.026 196.132 112.304 196.107 112.604L195.485 112.598C195.544 112.124 195.654 111.72 195.815 111.385C195.98 111.047 196.183 110.772 196.424 110.56C196.67 110.344 196.943 110.188 197.243 110.09C197.548 109.989 197.869 109.938 198.208 109.938C198.669 109.938 199.067 110.025 199.401 110.198C199.736 110.372 200.011 110.604 200.226 110.896C200.442 111.184 200.601 111.51 200.702 111.874C200.808 112.234 200.861 112.604 200.861 112.985C200.861 113.421 200.8 113.829 200.677 114.21C200.554 114.591 200.37 114.925 200.125 115.213C199.884 115.501 199.585 115.725 199.23 115.886C198.874 116.047 198.462 116.127 197.992 116.127C197.493 116.127 197.057 116.025 196.684 115.822C196.312 115.615 196.003 115.34 195.758 114.997C195.512 114.654 195.328 114.273 195.205 113.854C195.083 113.436 195.021 113.01 195.021 112.579V112.026C195.021 111.375 195.087 110.736 195.218 110.109C195.349 109.483 195.576 108.916 195.897 108.408C196.223 107.9 196.674 107.496 197.249 107.196C197.825 106.895 198.559 106.745 199.452 106.745Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M63.2484 106.707V116H62.0741V108.173L59.7064 109.037V107.977L63.0643 106.707H63.2484Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M115.324 110.801H116.162C116.573 110.801 116.911 110.734 117.178 110.598C117.449 110.458 117.65 110.27 117.781 110.033C117.916 109.792 117.984 109.521 117.984 109.221C117.984 108.865 117.925 108.567 117.806 108.326C117.688 108.084 117.51 107.903 117.273 107.78C117.036 107.657 116.735 107.596 116.372 107.596C116.041 107.596 115.749 107.661 115.496 107.792C115.246 107.919 115.049 108.101 114.905 108.338C114.766 108.575 114.696 108.855 114.696 109.176H113.521C113.521 108.707 113.64 108.279 113.877 107.894C114.114 107.509 114.446 107.202 114.874 106.974C115.305 106.745 115.804 106.631 116.372 106.631C116.93 106.631 117.419 106.73 117.838 106.929C118.257 107.124 118.583 107.416 118.815 107.805C119.048 108.19 119.165 108.671 119.165 109.246C119.165 109.479 119.11 109.729 118.999 109.995C118.894 110.257 118.727 110.503 118.498 110.731C118.274 110.96 117.982 111.148 117.622 111.296C117.262 111.44 116.831 111.512 116.327 111.512H115.324V110.801ZM115.324 111.766V111.062H116.327C116.915 111.062 117.402 111.131 117.787 111.271C118.172 111.411 118.475 111.597 118.695 111.83C118.919 112.062 119.076 112.318 119.165 112.598C119.258 112.873 119.304 113.148 119.304 113.423C119.304 113.854 119.23 114.237 119.082 114.572C118.938 114.906 118.733 115.19 118.466 115.422C118.204 115.655 117.895 115.831 117.54 115.949C117.184 116.068 116.797 116.127 116.378 116.127C115.976 116.127 115.597 116.07 115.242 115.956C114.89 115.841 114.579 115.676 114.309 115.46C114.038 115.24 113.826 114.972 113.674 114.654C113.521 114.333 113.445 113.967 113.445 113.556H114.62C114.62 113.878 114.689 114.159 114.829 114.4C114.973 114.642 115.176 114.83 115.438 114.965C115.705 115.097 116.018 115.162 116.378 115.162C116.738 115.162 117.047 115.101 117.305 114.978C117.567 114.851 117.768 114.661 117.908 114.407C118.052 114.153 118.124 113.833 118.124 113.448C118.124 113.063 118.043 112.748 117.882 112.502C117.721 112.253 117.493 112.069 117.197 111.95C116.905 111.827 116.56 111.766 116.162 111.766H115.324Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M169.344 111.792L167.884 111.442L168.411 106.758H173.603V108.237H169.915L169.687 110.287C169.81 110.215 169.996 110.139 170.246 110.059C170.495 109.974 170.775 109.932 171.083 109.932C171.532 109.932 171.93 110.001 172.277 110.141C172.624 110.281 172.918 110.484 173.159 110.75C173.405 111.017 173.591 111.343 173.718 111.728C173.845 112.113 173.908 112.549 173.908 113.036C173.908 113.446 173.845 113.838 173.718 114.21C173.591 114.578 173.398 114.908 173.14 115.2C172.882 115.488 172.558 115.714 172.169 115.879C171.78 116.044 171.318 116.127 170.785 116.127C170.387 116.127 170.002 116.068 169.63 115.949C169.262 115.831 168.929 115.655 168.633 115.422C168.341 115.19 168.106 114.908 167.929 114.578C167.755 114.244 167.664 113.863 167.656 113.436H169.471C169.497 113.698 169.564 113.924 169.674 114.115C169.789 114.301 169.939 114.445 170.125 114.546C170.311 114.648 170.529 114.699 170.779 114.699C171.012 114.699 171.21 114.654 171.375 114.565C171.54 114.477 171.674 114.354 171.775 114.197C171.877 114.036 171.951 113.85 171.998 113.639C172.048 113.423 172.074 113.19 172.074 112.94C172.074 112.691 172.044 112.464 171.985 112.261C171.926 112.058 171.835 111.882 171.712 111.734C171.589 111.586 171.433 111.472 171.242 111.392C171.056 111.311 170.838 111.271 170.588 111.271C170.25 111.271 169.987 111.324 169.801 111.43C169.619 111.535 169.467 111.656 169.344 111.792Z",fill:"white"}),(0,h.createElement)("path",{d:"M38.2515 131.758V132.418L34.4238 141H33.186L37.0073 132.723H32.0054V131.758H38.2515Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M87.6686 140.016H87.7892C88.4663 140.016 89.0164 139.921 89.4396 139.73C89.8628 139.54 90.1886 139.284 90.4171 138.962C90.6456 138.641 90.8022 138.279 90.8868 137.877C90.9715 137.471 91.0138 137.054 91.0138 136.626V135.211C91.0138 134.792 90.9651 134.42 90.8678 134.094C90.7747 133.768 90.6435 133.495 90.4742 133.275C90.3092 133.055 90.1209 132.888 89.9093 132.773C89.6977 132.659 89.4734 132.602 89.2365 132.602C88.9656 132.602 88.7223 132.657 88.5065 132.767C88.2949 132.873 88.115 133.023 87.9669 133.218C87.823 133.412 87.713 133.641 87.6368 133.903C87.5607 134.166 87.5226 134.451 87.5226 134.76C87.5226 135.035 87.5564 135.302 87.6241 135.56C87.6919 135.818 87.7955 136.051 87.9352 136.258C88.0748 136.466 88.2483 136.631 88.4557 136.753C88.6673 136.872 88.9148 136.931 89.1984 136.931C89.4607 136.931 89.7062 136.88 89.9347 136.779C90.1674 136.673 90.3727 136.531 90.5504 136.354C90.7324 136.172 90.8763 135.966 90.9821 135.738C91.0921 135.509 91.1556 135.27 91.1725 135.021H91.7311C91.7311 135.372 91.6613 135.719 91.5216 136.062C91.3862 136.4 91.1958 136.709 90.9503 136.988C90.7049 137.268 90.4171 137.492 90.087 137.661C89.757 137.826 89.3973 137.909 89.0079 137.909C88.5509 137.909 88.1552 137.82 87.8209 137.642C87.4866 137.464 87.2115 137.227 86.9957 136.931C86.7841 136.635 86.6254 136.305 86.5197 135.941C86.4181 135.573 86.3673 135.2 86.3673 134.824C86.3673 134.384 86.4287 133.971 86.5514 133.586C86.6741 133.201 86.8561 132.862 87.0973 132.57C87.3385 132.274 87.6368 132.043 87.9923 131.878C88.352 131.713 88.7667 131.631 89.2365 131.631C89.7654 131.631 90.2161 131.737 90.5885 131.948C90.9609 132.16 91.2635 132.443 91.4962 132.799C91.7332 133.154 91.9067 133.554 92.0167 133.999C92.1268 134.443 92.1818 134.9 92.1818 135.37V135.795C92.1818 136.273 92.15 136.76 92.0865 137.255C92.0273 137.746 91.9109 138.215 91.7374 138.664C91.5682 139.113 91.3206 139.515 90.9948 139.87C90.6689 140.221 90.2436 140.501 89.7189 140.708C89.1984 140.911 88.5551 141.013 87.7892 141.013H87.6686V140.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M140.923 131.707V141H139.749V133.173L137.381 134.037V132.977L140.739 131.707H140.923ZM148.236 131.707V141H147.061V133.173L144.694 134.037V132.977L148.052 131.707H148.236Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M195.148 131.707V141H193.974V133.173L191.606 134.037V132.977L194.964 131.707H195.148ZM200.315 135.801H201.153C201.564 135.801 201.902 135.734 202.169 135.598C202.44 135.458 202.641 135.27 202.772 135.033C202.907 134.792 202.975 134.521 202.975 134.221C202.975 133.865 202.916 133.567 202.797 133.326C202.679 133.084 202.501 132.903 202.264 132.78C202.027 132.657 201.727 132.596 201.363 132.596C201.033 132.596 200.741 132.661 200.487 132.792C200.237 132.919 200.04 133.101 199.896 133.338C199.757 133.575 199.687 133.855 199.687 134.176H198.513C198.513 133.707 198.631 133.279 198.868 132.894C199.105 132.509 199.437 132.202 199.865 131.974C200.296 131.745 200.796 131.631 201.363 131.631C201.921 131.631 202.41 131.73 202.829 131.929C203.248 132.124 203.574 132.416 203.807 132.805C204.039 133.19 204.156 133.671 204.156 134.246C204.156 134.479 204.101 134.729 203.991 134.995C203.885 135.257 203.718 135.503 203.489 135.731C203.265 135.96 202.973 136.148 202.613 136.296C202.254 136.44 201.822 136.512 201.318 136.512H200.315V135.801ZM200.315 136.766V136.062H201.318C201.907 136.062 202.393 136.131 202.778 136.271C203.163 136.411 203.466 136.597 203.686 136.83C203.91 137.062 204.067 137.318 204.156 137.598C204.249 137.873 204.295 138.148 204.295 138.423C204.295 138.854 204.221 139.237 204.073 139.572C203.929 139.906 203.724 140.19 203.458 140.422C203.195 140.655 202.886 140.831 202.531 140.949C202.175 141.068 201.788 141.127 201.369 141.127C200.967 141.127 200.588 141.07 200.233 140.956C199.882 140.841 199.571 140.676 199.3 140.46C199.029 140.24 198.817 139.972 198.665 139.654C198.513 139.333 198.437 138.967 198.437 138.556H199.611C199.611 138.878 199.681 139.159 199.82 139.4C199.964 139.642 200.167 139.83 200.43 139.965C200.696 140.097 201.009 140.162 201.369 140.162C201.729 140.162 202.038 140.101 202.296 139.978C202.558 139.851 202.759 139.661 202.899 139.407C203.043 139.153 203.115 138.833 203.115 138.448C203.115 138.063 203.034 137.748 202.874 137.502C202.713 137.253 202.484 137.069 202.188 136.95C201.896 136.827 201.551 136.766 201.153 136.766H200.315Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M65.2155 138.499C65.2155 139.062 65.0843 139.54 64.8219 139.934C64.5638 140.323 64.2125 140.619 63.7682 140.822C63.3281 141.025 62.8309 141.127 62.2765 141.127C61.7221 141.127 61.2228 141.025 60.7784 140.822C60.3341 140.619 59.9829 140.323 59.7247 139.934C59.4666 139.54 59.3375 139.062 59.3375 138.499C59.3375 138.131 59.4074 137.794 59.547 137.49C59.6909 137.181 59.8919 136.912 60.15 136.684C60.4124 136.455 60.7213 136.279 61.0768 136.157C61.4365 136.03 61.8322 135.966 62.2638 135.966C62.8309 135.966 63.3365 136.076 63.7809 136.296C64.2252 136.512 64.5743 136.811 64.8282 137.191C65.0864 137.572 65.2155 138.008 65.2155 138.499ZM64.0348 138.474C64.0348 138.131 63.9607 137.828 63.8126 137.566C63.6645 137.299 63.4572 137.092 63.1906 136.944C62.924 136.796 62.615 136.722 62.2638 136.722C61.9041 136.722 61.5931 136.796 61.3307 136.944C61.0726 137.092 60.8715 137.299 60.7277 137.566C60.5838 137.828 60.5118 138.131 60.5118 138.474C60.5118 138.829 60.5817 139.134 60.7213 139.388C60.8652 139.637 61.0683 139.83 61.3307 139.965C61.5973 140.097 61.9126 140.162 62.2765 140.162C62.6404 140.162 62.9536 140.097 63.2159 139.965C63.4783 139.83 63.6793 139.637 63.819 139.388C63.9629 139.134 64.0348 138.829 64.0348 138.474ZM64.9996 134.164C64.9996 134.612 64.8811 135.016 64.6442 135.376C64.4072 135.736 64.0835 136.019 63.673 136.227C63.2625 136.434 62.797 136.538 62.2765 136.538C61.7475 136.538 61.2757 136.434 60.861 136.227C60.4505 136.019 60.1289 135.736 59.8961 135.376C59.6634 135.016 59.547 134.612 59.547 134.164C59.547 133.626 59.6634 133.169 59.8961 132.792C60.1331 132.416 60.4568 132.128 60.8673 131.929C61.2778 131.73 61.7454 131.631 62.2701 131.631C62.7991 131.631 63.2688 131.73 63.6793 131.929C64.0898 132.128 64.4114 132.416 64.6442 132.792C64.8811 133.169 64.9996 133.626 64.9996 134.164ZM63.8253 134.183C63.8253 133.874 63.7597 133.601 63.6285 133.364C63.4974 133.127 63.3154 132.941 63.0826 132.805C62.8499 132.666 62.5791 132.596 62.2701 132.596C61.9612 132.596 61.6904 132.661 61.4576 132.792C61.2291 132.919 61.0493 133.101 60.9181 133.338C60.7911 133.575 60.7277 133.857 60.7277 134.183C60.7277 134.5 60.7911 134.777 60.9181 135.014C61.0493 135.251 61.2312 135.435 61.464 135.566C61.6967 135.698 61.9676 135.763 62.2765 135.763C62.5854 135.763 62.8541 135.698 63.0826 135.566C63.3154 135.435 63.4974 135.251 63.6285 135.014C63.7597 134.777 63.8253 134.5 63.8253 134.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M113.813 131.707V141H112.638V133.173L110.271 134.037V132.977L113.628 131.707H113.813ZM123.067 135.643V137.052C123.067 137.809 123 138.448 122.864 138.969C122.729 139.489 122.534 139.908 122.28 140.226C122.026 140.543 121.72 140.774 121.36 140.917C121.004 141.057 120.602 141.127 120.154 141.127C119.798 141.127 119.47 141.083 119.17 140.994C118.869 140.905 118.599 140.763 118.357 140.568C118.12 140.369 117.917 140.111 117.748 139.794C117.579 139.477 117.45 139.091 117.361 138.639C117.272 138.186 117.228 137.657 117.228 137.052V135.643C117.228 134.885 117.295 134.25 117.431 133.738C117.57 133.226 117.767 132.816 118.021 132.507C118.275 132.194 118.58 131.969 118.935 131.834C119.295 131.699 119.697 131.631 120.141 131.631C120.501 131.631 120.831 131.675 121.131 131.764C121.436 131.849 121.707 131.986 121.944 132.177C122.181 132.363 122.382 132.613 122.547 132.926C122.716 133.235 122.845 133.613 122.934 134.062C123.023 134.511 123.067 135.037 123.067 135.643ZM121.887 137.242V135.446C121.887 135.031 121.861 134.667 121.811 134.354C121.764 134.037 121.694 133.766 121.601 133.542C121.508 133.317 121.389 133.135 121.246 132.996C121.106 132.856 120.943 132.754 120.757 132.691C120.575 132.623 120.37 132.589 120.141 132.589C119.862 132.589 119.614 132.642 119.398 132.748C119.183 132.85 119.001 133.013 118.853 133.237C118.709 133.461 118.599 133.755 118.522 134.119C118.446 134.483 118.408 134.925 118.408 135.446V137.242C118.408 137.657 118.431 138.023 118.478 138.34C118.529 138.658 118.603 138.933 118.7 139.166C118.798 139.394 118.916 139.582 119.056 139.73C119.195 139.879 119.356 139.989 119.538 140.061C119.724 140.128 119.93 140.162 120.154 140.162C120.442 140.162 120.693 140.107 120.909 139.997C121.125 139.887 121.305 139.716 121.449 139.483C121.597 139.246 121.707 138.943 121.779 138.575C121.851 138.203 121.887 137.758 121.887 137.242Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M168.036 131.707V141H166.861V133.173L164.494 134.037V132.977L167.852 131.707H168.036ZM177.545 140.035V141H171.495V140.156L174.523 136.785C174.895 136.37 175.183 136.019 175.386 135.731C175.594 135.439 175.738 135.179 175.818 134.951C175.903 134.718 175.945 134.481 175.945 134.24C175.945 133.935 175.881 133.66 175.755 133.415C175.632 133.165 175.45 132.966 175.209 132.818C174.967 132.67 174.675 132.596 174.333 132.596C173.922 132.596 173.579 132.676 173.304 132.837C173.033 132.993 172.83 133.214 172.695 133.497C172.56 133.781 172.492 134.106 172.492 134.475H171.318C171.318 133.954 171.432 133.478 171.66 133.046C171.889 132.615 172.227 132.272 172.676 132.018C173.124 131.76 173.677 131.631 174.333 131.631C174.917 131.631 175.416 131.735 175.831 131.942C176.245 132.145 176.563 132.433 176.783 132.805C177.007 133.173 177.119 133.605 177.119 134.1C177.119 134.371 177.073 134.646 176.98 134.925C176.891 135.2 176.766 135.475 176.605 135.75C176.449 136.026 176.264 136.296 176.053 136.563C175.846 136.83 175.623 137.092 175.386 137.35L172.911 140.035H177.545Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"223",y:"55",width:"23.5",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M232.376 60.7388V70H230.548V62.8462L228.352 63.5444V62.1035L232.179 60.7388H232.376ZM239.841 60.7388V70H238.013V62.8462L235.816 63.5444V62.1035L239.644 60.7388H239.841Z",fill:"white"}),(0,h.createElement)("rect",{x:"249.5",y:"55",width:"23.5",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M260.742 68.5718V70H254.42V68.7812L257.41 65.5757C257.71 65.2414 257.947 64.9473 258.121 64.6934C258.294 64.4352 258.419 64.2046 258.495 64.0015C258.576 63.7941 258.616 63.5973 258.616 63.4111C258.616 63.1318 258.569 62.8927 258.476 62.6938C258.383 62.4907 258.245 62.3341 258.063 62.2241C257.886 62.1141 257.666 62.0591 257.403 62.0591C257.124 62.0591 256.883 62.1268 256.68 62.2622C256.481 62.3976 256.328 62.5859 256.223 62.8271C256.121 63.0684 256.07 63.3413 256.07 63.646H254.236C254.236 63.0959 254.367 62.5923 254.629 62.1353C254.892 61.674 255.262 61.3079 255.74 61.0371C256.218 60.762 256.785 60.6245 257.441 60.6245C258.089 60.6245 258.635 60.7303 259.079 60.9419C259.528 61.1493 259.866 61.4497 260.095 61.8433C260.327 62.2326 260.444 62.6981 260.444 63.2397C260.444 63.5444 260.395 63.8428 260.298 64.1348C260.201 64.4225 260.061 64.7103 259.879 64.998C259.701 65.2816 259.485 65.5693 259.231 65.8613C258.978 66.1533 258.696 66.4559 258.387 66.769L256.781 68.5718H260.742ZM268.163 60.7578V61.7417L264.589 70H262.659L266.233 62.186H261.631V60.7578H268.163Z",fill:"white"}),(0,h.createElement)("path",{d:"M232.065 86.707V96H230.891V88.1733L228.523 89.0366V87.9766L231.881 86.707H232.065ZM241.574 95.0352V96H235.524V95.1558L238.552 91.7852C238.925 91.3704 239.212 91.0192 239.416 90.7314C239.623 90.4395 239.767 90.1792 239.847 89.9507C239.932 89.7179 239.974 89.481 239.974 89.2397C239.974 88.9351 239.911 88.66 239.784 88.4146C239.661 88.1649 239.479 87.966 239.238 87.8179C238.997 87.6698 238.705 87.5957 238.362 87.5957C237.951 87.5957 237.609 87.6761 237.333 87.8369C237.063 87.9935 236.86 88.2135 236.724 88.4971C236.589 88.7806 236.521 89.1064 236.521 89.4746H235.347C235.347 88.9541 235.461 88.478 235.689 88.0464C235.918 87.6147 236.257 87.272 236.705 87.0181C237.154 86.7599 237.706 86.6309 238.362 86.6309C238.946 86.6309 239.445 86.7345 239.86 86.9419C240.275 87.145 240.592 87.4328 240.812 87.8052C241.036 88.1733 241.148 88.605 241.148 89.1001C241.148 89.3709 241.102 89.646 241.009 89.9253C240.92 90.2004 240.795 90.4754 240.634 90.7505C240.478 91.0256 240.294 91.2964 240.082 91.563C239.875 91.8296 239.653 92.092 239.416 92.3501L236.94 95.0352H241.574Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.761 95.0352V96H254.712V95.1558L257.74 91.7852C258.112 91.3704 258.4 91.0192 258.603 90.7314C258.81 90.4395 258.954 90.1792 259.035 89.9507C259.119 89.7179 259.162 89.481 259.162 89.2397C259.162 88.9351 259.098 88.66 258.971 88.4146C258.848 88.1649 258.667 87.966 258.425 87.8179C258.184 87.6698 257.892 87.5957 257.549 87.5957C257.139 87.5957 256.796 87.6761 256.521 87.8369C256.25 87.9935 256.047 88.2135 255.912 88.4971C255.776 88.7806 255.708 89.1064 255.708 89.4746H254.534C254.534 88.9541 254.648 88.478 254.877 88.0464C255.105 87.6147 255.444 87.272 255.893 87.0181C256.341 86.7599 256.893 86.6309 257.549 86.6309C258.133 86.6309 258.633 86.7345 259.047 86.9419C259.462 87.145 259.779 87.4328 260 87.8052C260.224 88.1733 260.336 88.605 260.336 89.1001C260.336 89.3709 260.289 89.646 260.196 89.9253C260.107 90.2004 259.983 90.4754 259.822 90.7505C259.665 91.0256 259.481 91.2964 259.27 91.563C259.062 91.8296 258.84 92.092 258.603 92.3501L256.127 95.0352H260.761ZM267.845 93.499C267.845 94.0618 267.714 94.54 267.452 94.9336C267.194 95.3229 266.842 95.6191 266.398 95.8223C265.958 96.0254 265.461 96.127 264.906 96.127C264.352 96.127 263.853 96.0254 263.408 95.8223C262.964 95.6191 262.613 95.3229 262.354 94.9336C262.096 94.54 261.967 94.0618 261.967 93.499C261.967 93.1309 262.037 92.7944 262.177 92.4897C262.321 92.1808 262.522 91.9121 262.78 91.6836C263.042 91.4551 263.351 91.2795 263.707 91.1567C264.066 91.0298 264.462 90.9663 264.894 90.9663C265.461 90.9663 265.966 91.0763 266.411 91.2964C266.855 91.5122 267.204 91.8105 267.458 92.1914C267.716 92.5723 267.845 93.0081 267.845 93.499ZM266.665 93.4736C266.665 93.1309 266.59 92.8283 266.442 92.5659C266.294 92.2993 266.087 92.092 265.82 91.9438C265.554 91.7957 265.245 91.7217 264.894 91.7217C264.534 91.7217 264.223 91.7957 263.96 91.9438C263.702 92.092 263.501 92.2993 263.357 92.5659C263.214 92.8283 263.142 93.1309 263.142 93.4736C263.142 93.8291 263.211 94.1338 263.351 94.3877C263.495 94.6374 263.698 94.8299 263.96 94.9653C264.227 95.0965 264.542 95.1621 264.906 95.1621C265.27 95.1621 265.583 95.0965 265.846 94.9653C266.108 94.8299 266.309 94.6374 266.449 94.3877C266.593 94.1338 266.665 93.8291 266.665 93.4736ZM267.629 89.1636C267.629 89.6121 267.511 90.0163 267.274 90.376C267.037 90.7357 266.713 91.0192 266.303 91.2266C265.892 91.4339 265.427 91.5376 264.906 91.5376C264.377 91.5376 263.905 91.4339 263.491 91.2266C263.08 91.0192 262.759 90.7357 262.526 90.376C262.293 90.0163 262.177 89.6121 262.177 89.1636C262.177 88.6261 262.293 88.1691 262.526 87.7925C262.763 87.4159 263.087 87.1281 263.497 86.9292C263.908 86.7303 264.375 86.6309 264.9 86.6309C265.429 86.6309 265.899 86.7303 266.309 86.9292C266.72 87.1281 267.041 87.4159 267.274 87.7925C267.511 88.1691 267.629 88.6261 267.629 89.1636ZM266.455 89.1826C266.455 88.8737 266.389 88.6007 266.258 88.3638C266.127 88.1268 265.945 87.9406 265.712 87.8052C265.48 87.6655 265.209 87.5957 264.9 87.5957C264.591 87.5957 264.32 87.6613 264.087 87.7925C263.859 87.9194 263.679 88.1014 263.548 88.3384C263.421 88.5754 263.357 88.8568 263.357 89.1826C263.357 89.5 263.421 89.7772 263.548 90.0142C263.679 90.2511 263.861 90.4352 264.094 90.5664C264.326 90.6976 264.597 90.7632 264.906 90.7632C265.215 90.7632 265.484 90.6976 265.712 90.5664C265.945 90.4352 266.127 90.2511 266.258 90.0142C266.389 89.7772 266.455 89.5 266.455 89.1826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M232.065 110.707V120H230.891V112.173L228.523 113.037V111.977L231.881 110.707H232.065ZM237.232 114.801H238.07C238.48 114.801 238.819 114.734 239.085 114.598C239.356 114.458 239.557 114.27 239.688 114.033C239.824 113.792 239.892 113.521 239.892 113.221C239.892 112.865 239.832 112.567 239.714 112.326C239.595 112.084 239.418 111.903 239.181 111.78C238.944 111.657 238.643 111.596 238.279 111.596C237.949 111.596 237.657 111.661 237.403 111.792C237.154 111.919 236.957 112.101 236.813 112.338C236.673 112.575 236.604 112.855 236.604 113.176H235.429C235.429 112.707 235.548 112.279 235.785 111.894C236.022 111.509 236.354 111.202 236.781 110.974C237.213 110.745 237.712 110.631 238.279 110.631C238.838 110.631 239.327 110.73 239.746 110.929C240.165 111.124 240.49 111.416 240.723 111.805C240.956 112.19 241.072 112.671 241.072 113.246C241.072 113.479 241.017 113.729 240.907 113.995C240.801 114.257 240.634 114.503 240.406 114.731C240.181 114.96 239.889 115.148 239.53 115.296C239.17 115.44 238.738 115.512 238.235 115.512H237.232V114.801ZM237.232 115.766V115.062H238.235C238.823 115.062 239.31 115.131 239.695 115.271C240.08 115.411 240.382 115.597 240.603 115.83C240.827 116.062 240.983 116.318 241.072 116.598C241.165 116.873 241.212 117.148 241.212 117.423C241.212 117.854 241.138 118.237 240.99 118.572C240.846 118.906 240.641 119.19 240.374 119.422C240.112 119.655 239.803 119.831 239.447 119.949C239.092 120.068 238.705 120.127 238.286 120.127C237.884 120.127 237.505 120.07 237.149 119.956C236.798 119.841 236.487 119.676 236.216 119.46C235.945 119.24 235.734 118.972 235.582 118.654C235.429 118.333 235.353 117.967 235.353 117.556H236.527C236.527 117.878 236.597 118.159 236.737 118.4C236.881 118.642 237.084 118.83 237.346 118.965C237.613 119.097 237.926 119.162 238.286 119.162C238.645 119.162 238.954 119.101 239.212 118.978C239.475 118.851 239.676 118.661 239.815 118.407C239.959 118.153 240.031 117.833 240.031 117.448C240.031 117.063 239.951 116.748 239.79 116.502C239.629 116.253 239.401 116.069 239.104 115.95C238.812 115.827 238.468 115.766 238.07 115.766H237.232Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.761 119.035V120H254.712V119.156L257.74 115.785C258.112 115.37 258.4 115.019 258.603 114.731C258.81 114.439 258.954 114.179 259.035 113.951C259.119 113.718 259.162 113.481 259.162 113.24C259.162 112.935 259.098 112.66 258.971 112.415C258.848 112.165 258.667 111.966 258.425 111.818C258.184 111.67 257.892 111.596 257.549 111.596C257.139 111.596 256.796 111.676 256.521 111.837C256.25 111.993 256.047 112.214 255.912 112.497C255.776 112.781 255.708 113.106 255.708 113.475H254.534C254.534 112.954 254.648 112.478 254.877 112.046C255.105 111.615 255.444 111.272 255.893 111.018C256.341 110.76 256.893 110.631 257.549 110.631C258.133 110.631 258.633 110.735 259.047 110.942C259.462 111.145 259.779 111.433 260 111.805C260.224 112.173 260.336 112.605 260.336 113.1C260.336 113.371 260.289 113.646 260.196 113.925C260.107 114.2 259.983 114.475 259.822 114.75C259.665 115.026 259.481 115.296 259.27 115.563C259.062 115.83 258.84 116.092 258.603 116.35L256.127 119.035H260.761ZM263.186 119.016H263.307C263.984 119.016 264.534 118.921 264.957 118.73C265.38 118.54 265.706 118.284 265.935 117.962C266.163 117.641 266.32 117.279 266.404 116.877C266.489 116.471 266.531 116.054 266.531 115.626V114.211C266.531 113.792 266.483 113.42 266.385 113.094C266.292 112.768 266.161 112.495 265.992 112.275C265.827 112.055 265.638 111.888 265.427 111.773C265.215 111.659 264.991 111.602 264.754 111.602C264.483 111.602 264.24 111.657 264.024 111.767C263.812 111.873 263.632 112.023 263.484 112.218C263.34 112.412 263.23 112.641 263.154 112.903C263.078 113.166 263.04 113.451 263.04 113.76C263.04 114.035 263.074 114.302 263.142 114.56C263.209 114.818 263.313 115.051 263.453 115.258C263.592 115.466 263.766 115.631 263.973 115.753C264.185 115.872 264.432 115.931 264.716 115.931C264.978 115.931 265.224 115.88 265.452 115.779C265.685 115.673 265.89 115.531 266.068 115.354C266.25 115.172 266.394 114.966 266.5 114.738C266.61 114.509 266.673 114.27 266.69 114.021H267.249C267.249 114.372 267.179 114.719 267.039 115.062C266.904 115.4 266.713 115.709 266.468 115.988C266.222 116.268 265.935 116.492 265.604 116.661C265.274 116.826 264.915 116.909 264.525 116.909C264.068 116.909 263.673 116.82 263.338 116.642C263.004 116.464 262.729 116.227 262.513 115.931C262.302 115.635 262.143 115.305 262.037 114.941C261.936 114.573 261.885 114.2 261.885 113.824C261.885 113.384 261.946 112.971 262.069 112.586C262.192 112.201 262.374 111.862 262.615 111.57C262.856 111.274 263.154 111.043 263.51 110.878C263.869 110.713 264.284 110.631 264.754 110.631C265.283 110.631 265.734 110.737 266.106 110.948C266.478 111.16 266.781 111.443 267.014 111.799C267.251 112.154 267.424 112.554 267.534 112.999C267.644 113.443 267.699 113.9 267.699 114.37V114.795C267.699 115.273 267.667 115.76 267.604 116.255C267.545 116.746 267.428 117.215 267.255 117.664C267.086 118.113 266.838 118.515 266.512 118.87C266.186 119.221 265.761 119.501 265.236 119.708C264.716 119.911 264.073 120.013 263.307 120.013H263.186V119.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M231.858 134.492V144.5H230.594V136.071L228.044 137.001V135.859L231.66 134.492H231.858ZM242.304 141.15V142.189H235.112V141.444L239.569 134.547H240.602L239.494 136.543L236.548 141.15H242.304ZM240.916 134.547V144.5H239.651V134.547H240.916Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M256.048 138.901H256.95C257.392 138.901 257.757 138.828 258.044 138.683C258.336 138.532 258.552 138.329 258.693 138.074C258.839 137.814 258.912 137.523 258.912 137.199C258.912 136.816 258.848 136.495 258.721 136.235C258.593 135.976 258.402 135.78 258.146 135.647C257.891 135.515 257.568 135.449 257.176 135.449C256.82 135.449 256.506 135.52 256.232 135.661C255.964 135.798 255.752 135.994 255.597 136.249C255.446 136.504 255.371 136.805 255.371 137.151H254.106C254.106 136.646 254.234 136.185 254.489 135.771C254.744 135.356 255.102 135.025 255.562 134.779C256.027 134.533 256.565 134.41 257.176 134.41C257.777 134.41 258.304 134.517 258.755 134.731C259.206 134.941 259.557 135.256 259.808 135.675C260.058 136.09 260.184 136.607 260.184 137.227C260.184 137.477 260.124 137.746 260.006 138.033C259.892 138.316 259.712 138.58 259.466 138.826C259.224 139.072 258.91 139.275 258.522 139.435C258.135 139.59 257.67 139.667 257.128 139.667H256.048V138.901ZM256.048 139.94V139.182H257.128C257.761 139.182 258.285 139.257 258.7 139.407C259.115 139.558 259.441 139.758 259.678 140.009C259.919 140.259 260.088 140.535 260.184 140.836C260.284 141.132 260.334 141.428 260.334 141.725C260.334 142.189 260.254 142.602 260.095 142.962C259.94 143.322 259.719 143.627 259.432 143.878C259.149 144.129 258.816 144.318 258.434 144.445C258.051 144.573 257.634 144.637 257.183 144.637C256.75 144.637 256.342 144.575 255.959 144.452C255.581 144.329 255.246 144.151 254.954 143.919C254.662 143.682 254.435 143.393 254.271 143.051C254.106 142.704 254.024 142.31 254.024 141.868H255.289C255.289 142.215 255.364 142.518 255.515 142.777C255.67 143.037 255.888 143.24 256.171 143.386C256.458 143.527 256.795 143.598 257.183 143.598C257.57 143.598 257.903 143.532 258.181 143.399C258.463 143.263 258.68 143.058 258.83 142.784C258.985 142.511 259.062 142.167 259.062 141.752C259.062 141.337 258.976 140.998 258.803 140.733C258.63 140.465 258.383 140.266 258.064 140.139C257.75 140.007 257.379 139.94 256.95 139.94H256.048ZM268.325 138.73V140.248C268.325 141.064 268.252 141.752 268.106 142.312C267.961 142.873 267.751 143.324 267.478 143.666C267.204 144.008 266.874 144.256 266.486 144.411C266.104 144.562 265.671 144.637 265.188 144.637C264.805 144.637 264.451 144.589 264.128 144.493C263.804 144.397 263.513 144.245 263.253 144.035C262.998 143.821 262.779 143.543 262.597 143.201C262.414 142.859 262.275 142.445 262.18 141.957C262.084 141.469 262.036 140.9 262.036 140.248V138.73C262.036 137.915 262.109 137.231 262.255 136.68C262.405 136.128 262.617 135.686 262.891 135.354C263.164 135.016 263.492 134.775 263.875 134.629C264.262 134.483 264.695 134.41 265.174 134.41C265.561 134.41 265.917 134.458 266.24 134.554C266.568 134.645 266.86 134.793 267.115 134.998C267.37 135.199 267.587 135.467 267.765 135.805C267.947 136.137 268.086 136.545 268.182 137.028C268.277 137.511 268.325 138.079 268.325 138.73ZM267.054 140.453V138.519C267.054 138.072 267.026 137.68 266.972 137.343C266.922 137.001 266.846 136.709 266.746 136.468C266.646 136.226 266.518 136.03 266.363 135.88C266.213 135.729 266.037 135.62 265.837 135.552C265.641 135.479 265.42 135.442 265.174 135.442C264.873 135.442 264.606 135.499 264.374 135.613C264.142 135.723 263.946 135.898 263.786 136.14C263.631 136.381 263.513 136.698 263.431 137.09C263.349 137.482 263.308 137.958 263.308 138.519V140.453C263.308 140.9 263.333 141.294 263.383 141.636C263.438 141.978 263.517 142.274 263.622 142.524C263.727 142.771 263.854 142.973 264.005 143.133C264.155 143.292 264.328 143.411 264.524 143.488C264.725 143.561 264.946 143.598 265.188 143.598C265.497 143.598 265.769 143.538 266.001 143.42C266.233 143.301 266.427 143.117 266.582 142.866C266.742 142.611 266.86 142.285 266.938 141.889C267.015 141.488 267.054 141.009 267.054 140.453Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1425"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1425"},(0,h.createElement)("rect",{width:"13",height:"13",fill:"white",transform:"translate(96 59)"})))),{ToolBarFields:nr,BlockName:ar,BlockLabel:ir,BlockDescription:or,BlockAdvancedValue:sr,AdvancedFields:cr,FieldWrapper:dr,FieldSettingsWrapper:mr,AdvancedInspectorControl:ur,ValidationToggleGroup:pr,ValidationBlockMessage:fr,ClientSideMacros:Vr,AttributeHelp:Hr}=JetFBComponents,{useInsertMacro:hr,useIsAdvancedValidation:br,useUniqueNameOnDuplicate:Mr}=JetFBHooks,{__:Lr}=wp.i18n,{InspectorControls:gr,useBlockProps:Zr}=wp.blockEditor,{TextControl:yr,ToggleControl:Er,PanelBody:wr,ExternalLink:vr}=wp.components,_r=JSON.parse('{"apiVersion":3,"name":"jet-forms/datetime-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","date"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Datetime Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"is_timestamp":{"type":"boolean","default":false},"min":{"type":"string","default":""},"max":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:kr}=wp.i18n,{createBlock:jr}=wp.blocks,{name:xr,icon:Fr=""}=_r,Br={className:xr.replace("/","-"),icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Fr}}),description:kr("Type in the date and time manually following the input mask or choose the values from the calendar and timer.","jet-form-builder"),edit:function(e){const C=Zr(),[t,l]=hr("min"),[r,n]=hr("max"),{attributes:a,setAttributes:i,isSelected:o,editProps:{uniqKey:s,attrHelp:c}}=e,d=br();if(Mr(),a.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},rr);const m=(0,h.createElement)(h.Fragment,null,Lr("Plain date should be in yyyy-MM-ddThh:mm format.","jet-form-builder")," ",Lr("Or you can use","jet-form-builder")," ",(0,h.createElement)(vr,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},Lr("macros","jet-form-builder"))," ",Lr("and","jet-form-builder")," ",(0,h.createElement)(vr,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},Lr("filters","jet-form-builder")),".");return[(0,h.createElement)(nr,{key:s("ToolBarFields"),...e}),o&&(0,h.createElement)(gr,{key:s("InspectorControls")},(0,h.createElement)(wr,{title:Lr("General","jet-form-builder")},(0,h.createElement)(ir,null),(0,h.createElement)(ar,null),(0,h.createElement)(or,null)),(0,h.createElement)(wr,{title:Lr("Value","jet-form-builder")},(0,h.createElement)(sr,{help:m,style:{marginBottom:"1em"}}),(0,h.createElement)(Vr,null,(0,h.createElement)(ur,{value:a.min,label:Lr("Starting from date","jet-form-builder"),onChangePreset:e=>i({min:e}),onChangeMacros:l},(({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(yr,{id:e,ref:t,className:"jet-fb m-unset",value:a.min,onChange:e=>i({min:e})}),(0,h.createElement)(Hr,null,m)))),(0,h.createElement)(ur,{value:a.max,label:Lr("Limit dates to","jet-form-builder"),onChangePreset:e=>i({max:e}),onChangeMacros:n},(({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(yr,{id:e,ref:r,className:"jet-fb m-unset",value:a.max,onChange:e=>i({max:e})}),(0,h.createElement)(Hr,null,m)))))),(0,h.createElement)(mr,{...e},(0,h.createElement)(Er,{key:s("is_timestamp"),label:Lr("Is Timestamp","jet-form-builder"),checked:a.is_timestamp,help:c("is_timestamp"),onChange:e=>{i({is_timestamp:Boolean(e)})}})),(0,h.createElement)(wr,{title:Lr("Validation","jet-form-builder")},(0,h.createElement)(pr,null),d&&(0,h.createElement)(h.Fragment,null,Boolean(a.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(fr,{name:"date_min"})),Boolean(a.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(fr,{name:"date_max"})),(0,h.createElement)(fr,{name:"empty"}))),(0,h.createElement)(cr,null)),(0,h.createElement)("div",{...C,key:s("viewBlock")},(0,h.createElement)(dr,{key:s("FieldWrapper"),...e},(0,h.createElement)(yr,{onChange:()=>{},className:"jet-form-builder__field-preview",key:s("place_holder_block"),placeholder:'Input type="datetime-local"'})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>jr("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/time-field","jet-forms/date-field"],transform:e=>jr(xr,{...e}),priority:0}]}},Ar=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M0 0H298V144H0V0Z",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M23.5107 33.5439V37.1875C23.3877 37.3698 23.1917 37.5749 22.9229 37.8027C22.654 38.026 22.2826 38.222 21.8086 38.3906C21.3392 38.5547 20.7331 38.6367 19.9902 38.6367C19.3841 38.6367 18.8258 38.5319 18.3154 38.3223C17.8096 38.1081 17.3698 37.7982 16.9961 37.3926C16.627 36.9824 16.3398 36.4857 16.1348 35.9023C15.9342 35.3145 15.834 34.6491 15.834 33.9062V33.1338C15.834 32.391 15.9206 31.7279 16.0938 31.1445C16.2715 30.5612 16.5312 30.0667 16.873 29.6611C17.2148 29.251 17.6341 28.9411 18.1309 28.7314C18.6276 28.5173 19.1973 28.4102 19.8398 28.4102C20.6009 28.4102 21.2367 28.5423 21.7471 28.8066C22.262 29.0664 22.6631 29.4264 22.9502 29.8867C23.2419 30.347 23.4287 30.8711 23.5107 31.459H22.1914C22.1322 31.099 22.0137 30.7708 21.8359 30.4746C21.6628 30.1784 21.4144 29.9414 21.0908 29.7637C20.7673 29.5814 20.3503 29.4902 19.8398 29.4902C19.3796 29.4902 18.9808 29.5745 18.6436 29.7432C18.3063 29.9118 18.0283 30.1533 17.8096 30.4678C17.5908 30.7822 17.4268 31.1628 17.3174 31.6094C17.2126 32.056 17.1602 32.5596 17.1602 33.1201V33.9062C17.1602 34.4805 17.2262 34.9932 17.3584 35.4443C17.4951 35.8955 17.6888 36.2806 17.9395 36.5996C18.1901 36.9141 18.4886 37.1533 18.835 37.3174C19.1859 37.4814 19.5732 37.5635 19.9971 37.5635C20.4665 37.5635 20.847 37.5247 21.1387 37.4473C21.4303 37.3652 21.6582 37.2695 21.8223 37.1602C21.9863 37.0462 22.1117 36.9391 22.1982 36.8389V34.6104H19.8945V33.5439H23.5107ZM28.5762 38.6367C28.0612 38.6367 27.5941 38.5501 27.1748 38.377C26.7601 38.1992 26.4023 37.9508 26.1016 37.6318C25.8053 37.3128 25.5775 36.9346 25.418 36.4971C25.2585 36.0596 25.1787 35.5811 25.1787 35.0615V34.7744C25.1787 34.1729 25.2676 33.6374 25.4453 33.168C25.623 32.694 25.8646 32.293 26.1699 31.9648C26.4753 31.6367 26.8216 31.3883 27.209 31.2197C27.5964 31.0511 27.9974 30.9668 28.4121 30.9668C28.9408 30.9668 29.3965 31.0579 29.7793 31.2402C30.1667 31.4225 30.4834 31.6777 30.7295 32.0059C30.9756 32.3294 31.1579 32.7122 31.2764 33.1543C31.3949 33.5918 31.4541 34.0703 31.4541 34.5898V35.1572H25.9307V34.125H30.1895V34.0293C30.1712 33.7012 30.1029 33.3822 29.9844 33.0723C29.8704 32.7624 29.6882 32.5072 29.4375 32.3066C29.1868 32.1061 28.8451 32.0059 28.4121 32.0059C28.125 32.0059 27.8607 32.0674 27.6191 32.1904C27.3776 32.3089 27.1702 32.4867 26.9971 32.7236C26.8239 32.9606 26.6895 33.25 26.5938 33.5918C26.498 33.9336 26.4502 34.3278 26.4502 34.7744V35.0615C26.4502 35.4124 26.498 35.7428 26.5938 36.0527C26.694 36.3581 26.8376 36.627 27.0244 36.8594C27.2158 37.0918 27.446 37.2741 27.7148 37.4062C27.9883 37.5384 28.2982 37.6045 28.6445 37.6045C29.0911 37.6045 29.4694 37.5133 29.7793 37.3311C30.0892 37.1488 30.3604 36.9049 30.5928 36.5996L31.3584 37.208C31.1989 37.4495 30.9961 37.6797 30.75 37.8984C30.5039 38.1172 30.2008 38.2949 29.8408 38.4316C29.4854 38.5684 29.0638 38.6367 28.5762 38.6367ZM34.1953 32.6826V38.5H32.9307V31.1035H34.127L34.1953 32.6826ZM33.8945 34.5215L33.3682 34.501C33.3727 33.9951 33.4479 33.528 33.5938 33.0996C33.7396 32.6667 33.9447 32.2907 34.209 31.9717C34.4733 31.6527 34.7878 31.4066 35.1523 31.2334C35.5215 31.0557 35.9294 30.9668 36.376 30.9668C36.7406 30.9668 37.0687 31.0169 37.3604 31.1172C37.652 31.2129 37.9004 31.3678 38.1055 31.582C38.3151 31.7962 38.4746 32.0742 38.584 32.416C38.6934 32.7533 38.748 33.1657 38.748 33.6533V38.5H37.4766V33.6396C37.4766 33.2523 37.4196 32.9424 37.3057 32.71C37.1917 32.473 37.0254 32.3021 36.8066 32.1973C36.5879 32.0879 36.319 32.0332 36 32.0332C35.6855 32.0332 35.3984 32.0993 35.1387 32.2314C34.8835 32.3636 34.6624 32.5459 34.4756 32.7783C34.2933 33.0107 34.1497 33.2773 34.0449 33.5781C33.9447 33.8743 33.8945 34.1888 33.8945 34.5215ZM43.7383 38.6367C43.2233 38.6367 42.7562 38.5501 42.3369 38.377C41.9222 38.1992 41.5645 37.9508 41.2637 37.6318C40.9674 37.3128 40.7396 36.9346 40.5801 36.4971C40.4206 36.0596 40.3408 35.5811 40.3408 35.0615V34.7744C40.3408 34.1729 40.4297 33.6374 40.6074 33.168C40.7852 32.694 41.0267 32.293 41.332 31.9648C41.6374 31.6367 41.9837 31.3883 42.3711 31.2197C42.7585 31.0511 43.1595 30.9668 43.5742 30.9668C44.1029 30.9668 44.5586 31.0579 44.9414 31.2402C45.3288 31.4225 45.6455 31.6777 45.8916 32.0059C46.1377 32.3294 46.32 32.7122 46.4385 33.1543C46.557 33.5918 46.6162 34.0703 46.6162 34.5898V35.1572H41.0928V34.125H45.3516V34.0293C45.3333 33.7012 45.265 33.3822 45.1465 33.0723C45.0326 32.7624 44.8503 32.5072 44.5996 32.3066C44.349 32.1061 44.0072 32.0059 43.5742 32.0059C43.2871 32.0059 43.0228 32.0674 42.7812 32.1904C42.5397 32.3089 42.3324 32.4867 42.1592 32.7236C41.986 32.9606 41.8516 33.25 41.7559 33.5918C41.6602 33.9336 41.6123 34.3278 41.6123 34.7744V35.0615C41.6123 35.4124 41.6602 35.7428 41.7559 36.0527C41.8561 36.3581 41.9997 36.627 42.1865 36.8594C42.3779 37.0918 42.6081 37.2741 42.877 37.4062C43.1504 37.5384 43.4603 37.6045 43.8066 37.6045C44.2533 37.6045 44.6315 37.5133 44.9414 37.3311C45.2513 37.1488 45.5225 36.9049 45.7549 36.5996L46.5205 37.208C46.361 37.4495 46.1582 37.6797 45.9121 37.8984C45.666 38.1172 45.363 38.2949 45.0029 38.4316C44.6475 38.5684 44.2259 38.6367 43.7383 38.6367ZM49.3574 32.2656V38.5H48.0928V31.1035H49.3232L49.3574 32.2656ZM51.668 31.0625L51.6611 32.2383C51.5563 32.2155 51.4561 32.2018 51.3604 32.1973C51.2692 32.1882 51.1644 32.1836 51.0459 32.1836C50.7542 32.1836 50.4967 32.2292 50.2734 32.3203C50.0501 32.4115 49.861 32.5391 49.7061 32.7031C49.5511 32.8672 49.4281 33.0632 49.3369 33.291C49.2503 33.5143 49.1934 33.7604 49.166 34.0293L48.8105 34.2344C48.8105 33.7878 48.8538 33.3685 48.9404 32.9766C49.0316 32.5846 49.1706 32.2383 49.3574 31.9375C49.5443 31.6322 49.7812 31.3952 50.0684 31.2266C50.36 31.0534 50.7064 30.9668 51.1074 30.9668C51.1986 30.9668 51.3034 30.9782 51.4219 31.001C51.5404 31.0192 51.6224 31.0397 51.668 31.0625ZM56.9248 37.2354V33.4277C56.9248 33.1361 56.8656 32.8831 56.7471 32.6689C56.6331 32.4502 56.46 32.2816 56.2275 32.1631C55.9951 32.0446 55.708 31.9854 55.3662 31.9854C55.0472 31.9854 54.7669 32.04 54.5254 32.1494C54.2884 32.2588 54.1016 32.4023 53.9648 32.5801C53.8327 32.7578 53.7666 32.9492 53.7666 33.1543H52.502C52.502 32.89 52.5703 32.6279 52.707 32.3682C52.8438 32.1084 53.0397 31.8737 53.2949 31.6641C53.5547 31.4499 53.8646 31.2812 54.2246 31.1582C54.5892 31.0306 54.9948 30.9668 55.4414 30.9668C55.9792 30.9668 56.4531 31.0579 56.8633 31.2402C57.278 31.4225 57.6016 31.6982 57.834 32.0674C58.071 32.432 58.1895 32.89 58.1895 33.4414V36.8867C58.1895 37.1328 58.21 37.3949 58.251 37.6729C58.2965 37.9508 58.3626 38.1901 58.4492 38.3906V38.5H57.1299C57.0661 38.3542 57.016 38.1605 56.9795 37.9189C56.943 37.6729 56.9248 37.445 56.9248 37.2354ZM57.1436 34.0156L57.1572 34.9043H55.8789C55.5189 34.9043 55.1976 34.9339 54.915 34.9932C54.6325 35.0479 54.3955 35.1322 54.2041 35.2461C54.0127 35.36 53.8669 35.5036 53.7666 35.6768C53.6663 35.8454 53.6162 36.0436 53.6162 36.2715C53.6162 36.5039 53.6686 36.7158 53.7734 36.9072C53.8783 37.0986 54.0355 37.2513 54.2451 37.3652C54.4593 37.4746 54.7214 37.5293 55.0312 37.5293C55.4186 37.5293 55.7604 37.4473 56.0566 37.2832C56.3529 37.1191 56.5876 36.9186 56.7607 36.6816C56.9385 36.4447 57.0342 36.2145 57.0479 35.9912L57.5879 36.5996C57.556 36.791 57.4694 37.0029 57.3281 37.2354C57.1868 37.4678 56.9977 37.6911 56.7607 37.9053C56.5283 38.1149 56.2503 38.2904 55.9268 38.4316C55.6077 38.5684 55.2477 38.6367 54.8467 38.6367C54.3454 38.6367 53.9056 38.5387 53.5273 38.3428C53.1536 38.1468 52.862 37.8848 52.6523 37.5566C52.4473 37.224 52.3447 36.8525 52.3447 36.4424C52.3447 36.0459 52.4222 35.6973 52.5771 35.3965C52.7321 35.0911 52.9554 34.8382 53.2471 34.6377C53.5387 34.4326 53.8896 34.2777 54.2998 34.1729C54.71 34.068 55.168 34.0156 55.6738 34.0156H57.1436ZM61.5527 28V38.5H60.2812V28H61.5527ZM68.4297 31.1035V38.5H67.1582V31.1035H68.4297ZM67.0625 29.1416C67.0625 28.9365 67.124 28.7633 67.2471 28.6221C67.3747 28.4808 67.5615 28.4102 67.8076 28.4102C68.0492 28.4102 68.2337 28.4808 68.3613 28.6221C68.4935 28.7633 68.5596 28.9365 68.5596 29.1416C68.5596 29.3376 68.4935 29.5062 68.3613 29.6475C68.2337 29.7842 68.0492 29.8525 67.8076 29.8525C67.5615 29.8525 67.3747 29.7842 67.2471 29.6475C67.124 29.5062 67.0625 29.3376 67.0625 29.1416ZM71.7246 32.6826V38.5H70.46V31.1035H71.6562L71.7246 32.6826ZM71.4238 34.5215L70.8975 34.501C70.902 33.9951 70.9772 33.528 71.123 33.0996C71.2689 32.6667 71.474 32.2907 71.7383 31.9717C72.0026 31.6527 72.3171 31.4066 72.6816 31.2334C73.0508 31.0557 73.4587 30.9668 73.9053 30.9668C74.2699 30.9668 74.598 31.0169 74.8896 31.1172C75.1813 31.2129 75.4297 31.3678 75.6348 31.582C75.8444 31.7962 76.0039 32.0742 76.1133 32.416C76.2227 32.7533 76.2773 33.1657 76.2773 33.6533V38.5H75.0059V33.6396C75.0059 33.2523 74.9489 32.9424 74.835 32.71C74.721 32.473 74.5547 32.3021 74.3359 32.1973C74.1172 32.0879 73.8483 32.0332 73.5293 32.0332C73.2148 32.0332 72.9277 32.0993 72.668 32.2314C72.4128 32.3636 72.1917 32.5459 72.0049 32.7783C71.8226 33.0107 71.679 33.2773 71.5742 33.5781C71.474 33.8743 71.4238 34.1888 71.4238 34.5215ZM80.085 38.5H78.8203V30.3242C78.8203 29.791 78.916 29.3421 79.1074 28.9775C79.3034 28.6084 79.5837 28.3304 79.9482 28.1436C80.3128 27.9521 80.7458 27.8564 81.2471 27.8564C81.3929 27.8564 81.5387 27.8656 81.6846 27.8838C81.835 27.902 81.9808 27.9294 82.1221 27.9658L82.0537 28.998C81.958 28.9753 81.8486 28.9593 81.7256 28.9502C81.6071 28.9411 81.4886 28.9365 81.3701 28.9365C81.1012 28.9365 80.8688 28.9912 80.6729 29.1006C80.4814 29.2054 80.3356 29.3604 80.2354 29.5654C80.1351 29.7705 80.085 30.0234 80.085 30.3242V38.5ZM81.6572 31.1035V32.0742H77.6514V31.1035H81.6572ZM82.7305 34.8838V34.7266C82.7305 34.1934 82.8079 33.6989 82.9629 33.2432C83.1178 32.7829 83.3411 32.3841 83.6328 32.0469C83.9245 31.7051 84.2777 31.4408 84.6924 31.2539C85.1071 31.0625 85.5719 30.9668 86.0869 30.9668C86.6064 30.9668 87.0736 31.0625 87.4883 31.2539C87.9076 31.4408 88.263 31.7051 88.5547 32.0469C88.8509 32.3841 89.0765 32.7829 89.2314 33.2432C89.3864 33.6989 89.4639 34.1934 89.4639 34.7266V34.8838C89.4639 35.417 89.3864 35.9115 89.2314 36.3672C89.0765 36.8229 88.8509 37.2217 88.5547 37.5635C88.263 37.9007 87.9098 38.165 87.4951 38.3564C87.085 38.5433 86.6201 38.6367 86.1006 38.6367C85.5811 38.6367 85.1139 38.5433 84.6992 38.3564C84.2845 38.165 83.929 37.9007 83.6328 37.5635C83.3411 37.2217 83.1178 36.8229 82.9629 36.3672C82.8079 35.9115 82.7305 35.417 82.7305 34.8838ZM83.9951 34.7266V34.8838C83.9951 35.2529 84.0384 35.6016 84.125 35.9297C84.2116 36.2533 84.3415 36.5404 84.5146 36.791C84.6924 37.0417 84.9134 37.2399 85.1777 37.3857C85.4421 37.527 85.7497 37.5977 86.1006 37.5977C86.4469 37.5977 86.75 37.527 87.0098 37.3857C87.2741 37.2399 87.4928 37.0417 87.666 36.791C87.8392 36.5404 87.9691 36.2533 88.0557 35.9297C88.1468 35.6016 88.1924 35.2529 88.1924 34.8838V34.7266C88.1924 34.362 88.1468 34.0179 88.0557 33.6943C87.9691 33.3662 87.8369 33.0768 87.6592 32.8262C87.486 32.571 87.2673 32.3704 87.0029 32.2246C86.7432 32.0788 86.4378 32.0059 86.0869 32.0059C85.7406 32.0059 85.4352 32.0788 85.1709 32.2246C84.9111 32.3704 84.6924 32.571 84.5146 32.8262C84.3415 33.0768 84.2116 33.3662 84.125 33.6943C84.0384 34.0179 83.9951 34.362 83.9951 34.7266ZM92.3145 32.2656V38.5H91.0498V31.1035H92.2803L92.3145 32.2656ZM94.625 31.0625L94.6182 32.2383C94.5133 32.2155 94.4131 32.2018 94.3174 32.1973C94.2262 32.1882 94.1214 32.1836 94.0029 32.1836C93.7113 32.1836 93.4538 32.2292 93.2305 32.3203C93.0072 32.4115 92.818 32.5391 92.6631 32.7031C92.5081 32.8672 92.3851 33.0632 92.2939 33.291C92.2074 33.5143 92.1504 33.7604 92.123 34.0293L91.7676 34.2344C91.7676 33.7878 91.8109 33.3685 91.8975 32.9766C91.9886 32.5846 92.1276 32.2383 92.3145 31.9375C92.5013 31.6322 92.7383 31.3952 93.0254 31.2266C93.3171 31.0534 93.6634 30.9668 94.0645 30.9668C94.1556 30.9668 94.2604 30.9782 94.3789 31.001C94.4974 31.0192 94.5794 31.0397 94.625 31.0625ZM97.0518 32.5732V38.5H95.7803V31.1035H96.9834L97.0518 32.5732ZM96.792 34.5215L96.2041 34.501C96.2087 33.9951 96.2747 33.528 96.4023 33.0996C96.5299 32.6667 96.7191 32.2907 96.9697 31.9717C97.2204 31.6527 97.5326 31.4066 97.9062 31.2334C98.2799 31.0557 98.7129 30.9668 99.2051 30.9668C99.5514 30.9668 99.8704 31.0169 100.162 31.1172C100.454 31.2129 100.707 31.3656 100.921 31.5752C101.135 31.7848 101.301 32.0537 101.42 32.3818C101.538 32.71 101.598 33.1064 101.598 33.5713V38.5H100.333V33.6328C100.333 33.2454 100.267 32.9355 100.135 32.7031C100.007 32.4707 99.8249 32.3021 99.5879 32.1973C99.3509 32.0879 99.0729 32.0332 98.7539 32.0332C98.3802 32.0332 98.068 32.0993 97.8174 32.2314C97.5667 32.3636 97.3662 32.5459 97.2158 32.7783C97.0654 33.0107 96.9561 33.2773 96.8877 33.5781C96.8239 33.8743 96.792 34.1888 96.792 34.5215ZM101.584 33.8242L100.736 34.084C100.741 33.6784 100.807 33.2887 100.935 32.915C101.067 32.5413 101.256 32.2087 101.502 31.917C101.753 31.6253 102.06 31.3952 102.425 31.2266C102.789 31.0534 103.206 30.9668 103.676 30.9668C104.072 30.9668 104.423 31.0192 104.729 31.124C105.038 31.2288 105.298 31.3906 105.508 31.6094C105.722 31.8236 105.884 32.0993 105.993 32.4365C106.103 32.7738 106.157 33.1748 106.157 33.6396V38.5H104.886V33.626C104.886 33.2113 104.82 32.89 104.688 32.6621C104.56 32.4297 104.378 32.2679 104.141 32.1768C103.908 32.0811 103.63 32.0332 103.307 32.0332C103.029 32.0332 102.783 32.0811 102.568 32.1768C102.354 32.2725 102.174 32.4046 102.028 32.5732C101.882 32.7373 101.771 32.9264 101.693 33.1406C101.62 33.3548 101.584 33.5827 101.584 33.8242ZM112.433 37.2354V33.4277C112.433 33.1361 112.373 32.8831 112.255 32.6689C112.141 32.4502 111.968 32.2816 111.735 32.1631C111.503 32.0446 111.216 31.9854 110.874 31.9854C110.555 31.9854 110.275 32.04 110.033 32.1494C109.796 32.2588 109.609 32.4023 109.473 32.5801C109.34 32.7578 109.274 32.9492 109.274 33.1543H108.01C108.01 32.89 108.078 32.6279 108.215 32.3682C108.352 32.1084 108.548 31.8737 108.803 31.6641C109.062 31.4499 109.372 31.2812 109.732 31.1582C110.097 31.0306 110.503 30.9668 110.949 30.9668C111.487 30.9668 111.961 31.0579 112.371 31.2402C112.786 31.4225 113.109 31.6982 113.342 32.0674C113.579 32.432 113.697 32.89 113.697 33.4414V36.8867C113.697 37.1328 113.718 37.3949 113.759 37.6729C113.804 37.9508 113.87 38.1901 113.957 38.3906V38.5H112.638C112.574 38.3542 112.524 38.1605 112.487 37.9189C112.451 37.6729 112.433 37.445 112.433 37.2354ZM112.651 34.0156L112.665 34.9043H111.387C111.027 34.9043 110.705 34.9339 110.423 34.9932C110.14 35.0479 109.903 35.1322 109.712 35.2461C109.521 35.36 109.375 35.5036 109.274 35.6768C109.174 35.8454 109.124 36.0436 109.124 36.2715C109.124 36.5039 109.176 36.7158 109.281 36.9072C109.386 37.0986 109.543 37.2513 109.753 37.3652C109.967 37.4746 110.229 37.5293 110.539 37.5293C110.926 37.5293 111.268 37.4473 111.564 37.2832C111.861 37.1191 112.095 36.9186 112.269 36.6816C112.446 36.4447 112.542 36.2145 112.556 35.9912L113.096 36.5996C113.064 36.791 112.977 37.0029 112.836 37.2354C112.695 37.4678 112.506 37.6911 112.269 37.9053C112.036 38.1149 111.758 38.2904 111.435 38.4316C111.116 38.5684 110.756 38.6367 110.354 38.6367C109.853 38.6367 109.413 38.5387 109.035 38.3428C108.661 38.1468 108.37 37.8848 108.16 37.5566C107.955 37.224 107.853 36.8525 107.853 36.4424C107.853 36.0459 107.93 35.6973 108.085 35.3965C108.24 35.0911 108.463 34.8382 108.755 34.6377C109.047 34.4326 109.397 34.2777 109.808 34.1729C110.218 34.068 110.676 34.0156 111.182 34.0156H112.651ZM118.783 31.1035V32.0742H114.784V31.1035H118.783ZM116.138 29.3057H117.402V36.668C117.402 36.9186 117.441 37.1077 117.519 37.2354C117.596 37.363 117.696 37.4473 117.819 37.4883C117.942 37.5293 118.075 37.5498 118.216 37.5498C118.321 37.5498 118.43 37.5407 118.544 37.5225C118.662 37.4997 118.751 37.4814 118.811 37.4678L118.817 38.5C118.717 38.5319 118.585 38.5615 118.421 38.5889C118.261 38.6208 118.068 38.6367 117.84 38.6367C117.53 38.6367 117.245 38.5752 116.985 38.4521C116.726 38.3291 116.518 38.124 116.363 37.8369C116.213 37.5452 116.138 37.1533 116.138 36.6611V29.3057ZM121.641 31.1035V38.5H120.369V31.1035H121.641ZM120.273 29.1416C120.273 28.9365 120.335 28.7633 120.458 28.6221C120.586 28.4808 120.772 28.4102 121.019 28.4102C121.26 28.4102 121.445 28.4808 121.572 28.6221C121.704 28.7633 121.771 28.9365 121.771 29.1416C121.771 29.3376 121.704 29.5062 121.572 29.6475C121.445 29.7842 121.26 29.8525 121.019 29.8525C120.772 29.8525 120.586 29.7842 120.458 29.6475C120.335 29.5062 120.273 29.3376 120.273 29.1416ZM123.336 34.8838V34.7266C123.336 34.1934 123.413 33.6989 123.568 33.2432C123.723 32.7829 123.947 32.3841 124.238 32.0469C124.53 31.7051 124.883 31.4408 125.298 31.2539C125.713 31.0625 126.177 30.9668 126.692 30.9668C127.212 30.9668 127.679 31.0625 128.094 31.2539C128.513 31.4408 128.868 31.7051 129.16 32.0469C129.456 32.3841 129.682 32.7829 129.837 33.2432C129.992 33.6989 130.069 34.1934 130.069 34.7266V34.8838C130.069 35.417 129.992 35.9115 129.837 36.3672C129.682 36.8229 129.456 37.2217 129.16 37.5635C128.868 37.9007 128.515 38.165 128.101 38.3564C127.69 38.5433 127.226 38.6367 126.706 38.6367C126.187 38.6367 125.719 38.5433 125.305 38.3564C124.89 38.165 124.535 37.9007 124.238 37.5635C123.947 37.2217 123.723 36.8229 123.568 36.3672C123.413 35.9115 123.336 35.417 123.336 34.8838ZM124.601 34.7266V34.8838C124.601 35.2529 124.644 35.6016 124.73 35.9297C124.817 36.2533 124.947 36.5404 125.12 36.791C125.298 37.0417 125.519 37.2399 125.783 37.3857C126.048 37.527 126.355 37.5977 126.706 37.5977C127.052 37.5977 127.355 37.527 127.615 37.3857C127.88 37.2399 128.098 37.0417 128.271 36.791C128.445 36.5404 128.575 36.2533 128.661 35.9297C128.752 35.6016 128.798 35.2529 128.798 34.8838V34.7266C128.798 34.362 128.752 34.0179 128.661 33.6943C128.575 33.3662 128.442 33.0768 128.265 32.8262C128.091 32.571 127.873 32.3704 127.608 32.2246C127.349 32.0788 127.043 32.0059 126.692 32.0059C126.346 32.0059 126.041 32.0788 125.776 32.2246C125.517 32.3704 125.298 32.571 125.12 32.8262C124.947 33.0768 124.817 33.3662 124.73 33.6943C124.644 34.0179 124.601 34.362 124.601 34.7266ZM132.92 32.6826V38.5H131.655V31.1035H132.852L132.92 32.6826ZM132.619 34.5215L132.093 34.501C132.097 33.9951 132.173 33.528 132.318 33.0996C132.464 32.6667 132.669 32.2907 132.934 31.9717C133.198 31.6527 133.512 31.4066 133.877 31.2334C134.246 31.0557 134.654 30.9668 135.101 30.9668C135.465 30.9668 135.793 31.0169 136.085 31.1172C136.377 31.2129 136.625 31.3678 136.83 31.582C137.04 31.7962 137.199 32.0742 137.309 32.416C137.418 32.7533 137.473 33.1657 137.473 33.6533V38.5H136.201V33.6396C136.201 33.2523 136.144 32.9424 136.03 32.71C135.916 32.473 135.75 32.3021 135.531 32.1973C135.312 32.0879 135.044 32.0332 134.725 32.0332C134.41 32.0332 134.123 32.0993 133.863 32.2314C133.608 32.3636 133.387 32.5459 133.2 32.7783C133.018 33.0107 132.874 33.2773 132.77 33.5781C132.669 33.8743 132.619 34.1888 132.619 34.5215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15.5",y:"47",width:"267",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("path",{d:"M27.3867 56.7578V66H26.1616V56.7578H27.3867ZM30.6113 60.5981V66H29.437V59.1318H30.5479L30.6113 60.5981ZM30.332 62.3057L29.8433 62.2866C29.8475 61.8169 29.9173 61.3831 30.0527 60.9854C30.1882 60.5833 30.3786 60.2342 30.624 59.938C30.8695 59.6418 31.1615 59.4132 31.5 59.2524C31.8428 59.0874 32.2215 59.0049 32.6362 59.0049C32.9748 59.0049 33.2795 59.0514 33.5503 59.1445C33.8211 59.2334 34.0518 59.3773 34.2422 59.5762C34.4368 59.7751 34.585 60.0332 34.6865 60.3506C34.7881 60.6637 34.8389 61.0467 34.8389 61.4995V66H33.6582V61.4868C33.6582 61.1271 33.6053 60.8394 33.4995 60.6235C33.3937 60.4035 33.2393 60.2448 33.0361 60.1475C32.833 60.0459 32.5833 59.9951 32.2871 59.9951C31.9951 59.9951 31.7285 60.0565 31.4873 60.1792C31.2503 60.3019 31.0451 60.4712 30.8716 60.687C30.7023 60.9028 30.569 61.1504 30.4717 61.4297C30.3786 61.7048 30.332 61.9967 30.332 62.3057ZM37.7969 60.4521V68.6406H36.6162V59.1318H37.6953L37.7969 60.4521ZM42.4243 62.5088V62.6421C42.4243 63.1414 42.3651 63.6048 42.2466 64.0322C42.1281 64.4554 41.9546 64.8236 41.7261 65.1367C41.5018 65.4499 41.2246 65.6932 40.8945 65.8667C40.5645 66.0402 40.1857 66.127 39.7583 66.127C39.3224 66.127 38.9373 66.055 38.603 65.9111C38.2687 65.7673 37.9852 65.5578 37.7524 65.2827C37.5197 65.0076 37.3335 64.6776 37.1938 64.2925C37.0584 63.9074 36.9653 63.4736 36.9146 62.9912V62.2803C36.9653 61.7725 37.0605 61.3175 37.2002 60.9155C37.3398 60.5135 37.5239 60.1707 37.7524 59.8872C37.9852 59.5994 38.2666 59.3815 38.5967 59.2334C38.9268 59.0811 39.3076 59.0049 39.7393 59.0049C40.1709 59.0049 40.5539 59.0895 40.8882 59.2588C41.2225 59.4238 41.5039 59.6608 41.7324 59.9697C41.9609 60.2786 42.1323 60.6489 42.2466 61.0806C42.3651 61.508 42.4243 61.984 42.4243 62.5088ZM41.2437 62.6421V62.5088C41.2437 62.166 41.2077 61.8444 41.1357 61.5439C41.0638 61.2393 40.9517 60.9727 40.7993 60.7441C40.6512 60.5114 40.4608 60.3294 40.228 60.1982C39.9953 60.0628 39.7181 59.9951 39.3965 59.9951C39.1003 59.9951 38.8421 60.0459 38.6221 60.1475C38.4062 60.249 38.2222 60.3866 38.0698 60.5601C37.9175 60.7293 37.7926 60.924 37.6953 61.144C37.6022 61.3599 37.5324 61.5841 37.4858 61.8169V63.4609C37.5705 63.7572 37.689 64.0365 37.8413 64.2988C37.9937 64.557 38.1968 64.7664 38.4507 64.9272C38.7046 65.0838 39.0241 65.1621 39.4092 65.1621C39.7266 65.1621 39.9995 65.0965 40.228 64.9653C40.4608 64.8299 40.6512 64.6458 40.7993 64.4131C40.9517 64.1803 41.0638 63.9137 41.1357 63.6133C41.2077 63.3086 41.2437 62.9849 41.2437 62.6421ZM48.1245 64.4131V59.1318H49.3052V66H48.1816L48.1245 64.4131ZM48.3467 62.9658L48.8354 62.9531C48.8354 63.4102 48.7868 63.8333 48.6895 64.2227C48.5964 64.6077 48.444 64.9421 48.2324 65.2256C48.0208 65.5091 47.7437 65.7313 47.4009 65.8921C47.0581 66.0487 46.6413 66.127 46.1504 66.127C45.8161 66.127 45.5093 66.0783 45.23 65.981C44.9549 65.8836 44.7179 65.7334 44.519 65.5303C44.3201 65.3271 44.1657 65.0627 44.0557 64.7368C43.9499 64.411 43.897 64.0195 43.897 63.5625V59.1318H45.0713V63.5752C45.0713 63.8841 45.1051 64.1401 45.1729 64.3433C45.2448 64.5422 45.34 64.7008 45.4585 64.8193C45.5812 64.9336 45.7166 65.014 45.8647 65.0605C46.0171 65.1071 46.1737 65.1304 46.3345 65.1304C46.8338 65.1304 47.2295 65.0352 47.5215 64.8447C47.8135 64.6501 48.0229 64.3898 48.1499 64.064C48.2811 63.7339 48.3467 63.3678 48.3467 62.9658ZM53.9707 59.1318V60.0332H50.2573V59.1318H53.9707ZM51.5142 57.4624H52.6885V64.2988C52.6885 64.5316 52.7244 64.7072 52.7964 64.8257C52.8683 64.9442 52.9614 65.0225 53.0757 65.0605C53.1899 65.0986 53.3127 65.1177 53.4438 65.1177C53.5412 65.1177 53.6427 65.1092 53.7485 65.0923C53.8586 65.0711 53.9411 65.0542 53.9961 65.0415L54.0024 66C53.9093 66.0296 53.7866 66.0571 53.6343 66.0825C53.4862 66.1121 53.3063 66.127 53.0947 66.127C52.807 66.127 52.5425 66.0698 52.3013 65.9556C52.0601 65.8413 51.8675 65.6509 51.7236 65.3843C51.584 65.1134 51.5142 64.7495 51.5142 64.2925V57.4624ZM60.1406 66H58.9663V58.5352C58.9663 58.0146 59.0679 57.5745 59.271 57.2148C59.4741 56.8551 59.764 56.5822 60.1406 56.396C60.5173 56.2098 60.9637 56.1167 61.48 56.1167C61.7847 56.1167 62.083 56.1548 62.375 56.231C62.667 56.3029 62.9674 56.3939 63.2764 56.5039L63.0796 57.4941C62.8849 57.418 62.6585 57.346 62.4004 57.2783C62.1465 57.2064 61.8672 57.1704 61.5625 57.1704C61.0589 57.1704 60.695 57.2847 60.4707 57.5132C60.2507 57.7375 60.1406 58.0781 60.1406 58.5352V66ZM61.5435 59.1318V60.0332H57.8809V59.1318H61.5435ZM63.854 59.1318V66H62.6797V59.1318H63.854ZM68.6338 66.127C68.1556 66.127 67.7218 66.0465 67.3325 65.8857C66.9474 65.7207 66.6152 65.4901 66.3359 65.1938C66.0609 64.8976 65.8493 64.5464 65.7012 64.1401C65.5531 63.7339 65.479 63.2896 65.479 62.8071V62.5405C65.479 61.9819 65.5615 61.4847 65.7266 61.0488C65.8916 60.6087 66.1159 60.2363 66.3994 59.9316C66.6829 59.627 67.0046 59.3963 67.3643 59.2397C67.724 59.0832 68.0964 59.0049 68.4814 59.0049C68.9723 59.0049 69.3955 59.0895 69.751 59.2588C70.1107 59.4281 70.4048 59.665 70.6333 59.9697C70.8618 60.2702 71.0311 60.6257 71.1411 61.0361C71.2511 61.4424 71.3062 61.8867 71.3062 62.3691V62.896H66.1772V61.9375H70.1318V61.8486C70.1149 61.5439 70.0514 61.2477 69.9414 60.96C69.8356 60.6722 69.6663 60.4352 69.4336 60.249C69.2008 60.0628 68.8835 59.9697 68.4814 59.9697C68.2148 59.9697 67.9694 60.0269 67.7451 60.1411C67.5208 60.2511 67.3283 60.4162 67.1675 60.6362C67.0067 60.8563 66.8818 61.125 66.793 61.4424C66.7041 61.7598 66.6597 62.1258 66.6597 62.5405V62.8071C66.6597 63.133 66.7041 63.4398 66.793 63.7275C66.8861 64.0111 67.0194 64.2607 67.1929 64.4766C67.3706 64.6924 67.5843 64.8617 67.834 64.9844C68.0879 65.1071 68.3757 65.1685 68.6973 65.1685C69.112 65.1685 69.4632 65.0838 69.751 64.9146C70.0387 64.7453 70.2905 64.5189 70.5063 64.2354L71.2173 64.8003C71.0692 65.0246 70.8809 65.2383 70.6523 65.4414C70.4238 65.6445 70.1424 65.8096 69.8081 65.9365C69.478 66.0635 69.0866 66.127 68.6338 66.127ZM73.9531 56.25V66H72.7725V56.25H73.9531ZM80.1675 64.667V56.25H81.3481V66H80.269L80.1675 64.667ZM75.5464 62.6421V62.5088C75.5464 61.984 75.6099 61.508 75.7368 61.0806C75.868 60.6489 76.0521 60.2786 76.2891 59.9697C76.5303 59.6608 76.8159 59.4238 77.146 59.2588C77.4803 59.0895 77.8527 59.0049 78.2632 59.0049C78.6948 59.0049 79.0715 59.0811 79.3931 59.2334C79.7189 59.3815 79.994 59.5994 80.2183 59.8872C80.4468 60.1707 80.6266 60.5135 80.7578 60.9155C80.889 61.3175 80.98 61.7725 81.0308 62.2803V62.8643C80.9842 63.3678 80.8932 63.8206 80.7578 64.2227C80.6266 64.6247 80.4468 64.9674 80.2183 65.251C79.994 65.5345 79.7189 65.7524 79.3931 65.9048C79.0672 66.0529 78.6864 66.127 78.2505 66.127C77.8485 66.127 77.4803 66.0402 77.146 65.8667C76.8159 65.6932 76.5303 65.4499 76.2891 65.1367C76.0521 64.8236 75.868 64.4554 75.7368 64.0322C75.6099 63.6048 75.5464 63.1414 75.5464 62.6421ZM76.7271 62.5088V62.6421C76.7271 62.9849 76.7609 63.3065 76.8286 63.6069C76.9006 63.9074 77.0106 64.1719 77.1587 64.4004C77.3068 64.6289 77.4951 64.8088 77.7236 64.9399C77.9521 65.0669 78.2251 65.1304 78.5425 65.1304C78.9318 65.1304 79.2513 65.0479 79.501 64.8828C79.7549 64.7178 79.958 64.4998 80.1104 64.229C80.2627 63.9582 80.3812 63.6641 80.4658 63.3467V61.8169C80.415 61.5841 80.341 61.3599 80.2437 61.144C80.1506 60.924 80.0278 60.7293 79.8755 60.5601C79.7274 60.3866 79.5433 60.249 79.3232 60.1475C79.1074 60.0459 78.8514 59.9951 78.5552 59.9951C78.2336 59.9951 77.9564 60.0628 77.7236 60.1982C77.4951 60.3294 77.3068 60.5114 77.1587 60.7441C77.0106 60.9727 76.9006 61.2393 76.8286 61.5439C76.7609 61.8444 76.7271 62.166 76.7271 62.5088Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15.5",y:"47",width:"267",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M57.6997 107V97.9H60.9367C61.6344 97.9 62.2237 98.004 62.7047 98.212C63.1857 98.42 63.5497 98.7407 63.7967 99.174C64.0481 99.6073 64.1737 100.162 64.1737 100.838C64.1737 101.523 64.0502 102.088 63.8032 102.534C63.5562 102.976 63.1944 103.306 62.7177 103.522C62.2411 103.735 61.6604 103.841 60.9757 103.841H59.3637V107H57.6997ZM59.3637 102.45H60.7807C61.3484 102.45 61.7731 102.322 62.0547 102.066C62.3407 101.811 62.4837 101.41 62.4837 100.864C62.4837 100.318 62.3386 99.9193 62.0482 99.668C61.7622 99.4167 61.3267 99.291 60.7417 99.291H59.3637V102.45ZM65.0953 107V100.5H66.6033L66.6423 101.189C66.807 101.007 67.0388 100.825 67.3378 100.643C67.6368 100.461 67.964 100.37 68.3193 100.37C68.4233 100.37 68.5186 100.379 68.6053 100.396L68.4883 101.982C68.393 101.956 68.2976 101.939 68.2023 101.93C68.1113 101.921 68.0203 101.917 67.9293 101.917C67.6563 101.917 67.4071 101.98 67.1818 102.105C66.9565 102.231 66.7983 102.385 66.7073 102.567V107H65.0953ZM72.4051 107.13C71.6207 107.13 70.9664 106.974 70.4421 106.662C69.9221 106.346 69.5321 105.93 69.2721 105.414C69.0121 104.894 68.8821 104.326 68.8821 103.711C68.8821 103.117 69.0034 102.569 69.2461 102.066C69.4931 101.564 69.8527 101.161 70.3251 100.857C70.7974 100.55 71.3737 100.396 72.0541 100.396C72.6781 100.396 73.1981 100.524 73.6141 100.779C74.0301 101.035 74.3421 101.377 74.5501 101.806C74.7581 102.231 74.8621 102.701 74.8621 103.217C74.8621 103.36 74.8534 103.505 74.8361 103.652C74.8187 103.795 74.7927 103.945 74.7581 104.101H70.5591C70.6197 104.504 70.7454 104.831 70.9361 105.082C71.1311 105.329 71.3672 105.511 71.6446 105.628C71.9262 105.745 72.2274 105.804 72.5481 105.804C72.9251 105.804 73.2761 105.756 73.6011 105.661C73.9261 105.561 74.2251 105.431 74.4981 105.271L74.5761 106.636C74.3291 106.766 74.0214 106.881 73.6531 106.98C73.2847 107.08 72.8687 107.13 72.4051 107.13ZM70.5981 103.009H73.2241C73.2241 102.814 73.1872 102.619 73.1136 102.424C73.0399 102.225 72.9164 102.058 72.7431 101.923C72.5741 101.789 72.3444 101.722 72.0541 101.722C71.6381 101.722 71.3109 101.843 71.0726 102.086C70.8342 102.329 70.6761 102.636 70.5981 103.009ZM77.68 107L75.184 100.5H76.77L78.369 104.998L79.968 100.5H81.554L79.058 107H77.68ZM82.3482 107V100.5H83.9602V107H82.3482ZM82.3482 99.512V97.9H83.9602V99.512H82.3482ZM88.4223 107.13C87.716 107.13 87.1136 106.976 86.6153 106.668C86.117 106.361 85.7356 105.951 85.4713 105.44C85.2113 104.929 85.0813 104.37 85.0813 103.763C85.0813 103.152 85.2113 102.589 85.4713 102.073C85.7356 101.557 86.117 101.146 86.6153 100.838C87.1136 100.526 87.716 100.37 88.4223 100.37C89.1286 100.37 89.731 100.526 90.2293 100.838C90.7276 101.146 91.1068 101.557 91.3668 102.073C91.6311 102.589 91.7633 103.152 91.7633 103.763C91.7633 104.37 91.6311 104.929 91.3668 105.44C91.1068 105.951 90.7276 106.361 90.2293 106.668C89.731 106.976 89.1286 107.13 88.4223 107.13ZM88.4223 105.804C88.964 105.804 89.38 105.615 89.6703 105.238C89.965 104.857 90.1123 104.365 90.1123 103.763C90.1123 103.152 89.965 102.656 89.6703 102.274C89.38 101.889 88.964 101.696 88.4223 101.696C87.885 101.696 87.469 101.889 87.1743 102.274C86.8796 102.656 86.7323 103.152 86.7323 103.763C86.7323 104.365 86.8796 104.857 87.1743 105.238C87.469 105.615 87.885 105.804 88.4223 105.804ZM95.5763 107.13C94.9003 107.13 94.3608 106.996 93.9578 106.727C93.5548 106.458 93.2645 106.09 93.0868 105.622C92.9092 105.15 92.8203 104.608 92.8203 103.997V100.5H94.4323V103.997C94.4323 104.599 94.532 105.048 94.7313 105.342C94.935 105.633 95.2643 105.778 95.7193 105.778C96.0833 105.778 96.3845 105.691 96.6228 105.518C96.8655 105.345 97.067 105.102 97.2273 104.79L96.9413 105.609V100.5H98.5533V107H97.0453L96.9673 105.869L97.3183 106.324C97.1623 106.523 96.9153 106.707 96.5773 106.876C96.2437 107.046 95.91 107.13 95.5763 107.13ZM101.904 107.13C101.475 107.13 101.087 107.089 100.741 107.007C100.398 106.924 100.054 106.805 99.7072 106.649L99.8502 105.271C100.184 105.466 100.511 105.624 100.832 105.745C101.157 105.862 101.497 105.921 101.852 105.921C102.173 105.921 102.418 105.869 102.587 105.765C102.756 105.661 102.84 105.496 102.84 105.271C102.84 105.102 102.795 104.963 102.704 104.855C102.617 104.747 102.485 104.649 102.307 104.562C102.13 104.476 101.909 104.383 101.644 104.283C101.246 104.136 100.905 103.975 100.624 103.802C100.346 103.629 100.134 103.421 99.9867 103.178C99.8437 102.931 99.7722 102.628 99.7722 102.268C99.7722 101.895 99.8697 101.566 100.065 101.28C100.26 100.994 100.537 100.771 100.897 100.61C101.256 100.45 101.683 100.37 102.177 100.37C102.589 100.37 102.957 100.415 103.282 100.506C103.612 100.597 103.915 100.721 104.192 100.877L104.049 102.255C103.759 102.051 103.466 101.884 103.172 101.754C102.877 101.62 102.554 101.553 102.203 101.553C101.926 101.553 101.711 101.609 101.56 101.722C101.408 101.835 101.332 101.995 101.332 102.203C101.332 102.454 101.438 102.643 101.651 102.768C101.863 102.894 102.203 103.048 102.671 103.23C102.975 103.347 103.237 103.468 103.458 103.594C103.683 103.72 103.869 103.858 104.017 104.01C104.164 104.162 104.272 104.335 104.342 104.53C104.415 104.721 104.452 104.942 104.452 105.193C104.452 105.605 104.353 105.956 104.153 106.246C103.958 106.532 103.67 106.751 103.289 106.902C102.912 107.054 102.45 107.13 101.904 107.13Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"16",y:"87.5",width:"129.5",height:"30",rx:"15",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"151.5",y:"86.5",width:"131.5",height:"32",rx:"16",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M204.997 107V97.9H206.635L210.522 103.776V97.9H212.186V107H210.821L206.661 100.76V107H204.997ZM216.897 107.13C216.112 107.13 215.458 106.974 214.934 106.662C214.414 106.346 214.024 105.93 213.764 105.414C213.504 104.894 213.374 104.326 213.374 103.711C213.374 103.117 213.495 102.569 213.738 102.066C213.985 101.564 214.344 101.161 214.817 100.857C215.289 100.55 215.865 100.396 216.546 100.396C217.17 100.396 217.69 100.524 218.106 100.779C218.522 101.035 218.834 101.377 219.042 101.806C219.25 102.231 219.354 102.701 219.354 103.217C219.354 103.36 219.345 103.505 219.328 103.652C219.31 103.795 219.284 103.945 219.25 104.101H215.051C215.111 104.504 215.237 104.831 215.428 105.082C215.623 105.329 215.859 105.511 216.136 105.628C216.418 105.745 216.719 105.804 217.04 105.804C217.417 105.804 217.768 105.756 218.093 105.661C218.418 105.561 218.717 105.431 218.99 105.271L219.068 106.636C218.821 106.766 218.513 106.881 218.145 106.98C217.776 107.08 217.36 107.13 216.897 107.13ZM215.09 103.009H217.716C217.716 102.814 217.679 102.619 217.605 102.424C217.532 102.225 217.408 102.058 217.235 101.923C217.066 101.789 216.836 101.722 216.546 101.722C216.13 101.722 215.803 101.843 215.564 102.086C215.326 102.329 215.168 102.636 215.09 103.009ZM219.779 107L221.937 103.75L219.779 100.5H221.703L222.886 102.385L223.978 100.5H225.902L223.744 103.75L225.902 107H223.978L222.795 105.115L221.703 107H219.779ZM228.908 107.13C228.501 107.13 228.169 107.048 227.914 106.883C227.658 106.714 227.469 106.499 227.348 106.239C227.227 105.979 227.166 105.709 227.166 105.427V101.826H226.243L226.386 100.5H227.166V99.07L228.778 98.901V100.5H230.208V101.826H228.778V104.764C228.778 105.093 228.798 105.332 228.837 105.479C228.876 105.622 228.964 105.713 229.103 105.752C229.242 105.787 229.463 105.804 229.766 105.804H230.208L230.065 107.13H228.908Z",fill:"white"})),{BlockClassName:Pr,BlockAddPrevButton:Sr,BlockPrevButtonLabel:Nr}=JetFBComponents,{__:Ir}=wp.i18n,{InspectorControls:Tr,useBlockProps:Or,RichText:Jr}=wp.blockEditor?wp.blockEditor:wp.editor,{TextareaControl:Rr,TextControl:qr,PanelBody:Dr,Button:zr,ToggleControl:Ur}=wp.components,Gr=JSON.parse('{"apiVersion":3,"name":"jet-forms/form-break-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","break","pagebreak","formbreak"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Form Page Break","icon":"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"add_next_button":{"type":"boolean","default":true},"page_break_disabled":{"type":"string","default":"","jfb":{"rich":true}},"label_progress":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:Wr}=wp.i18n,{createBlock:Kr}=wp.blocks,{name:$r,icon:Yr=""}=Gr,Xr={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Yr}}),description:Wr("With the help of Form Break Field, divide one big form into several parts and make those parts appear after filling in the previous part.","jet-form-builder"),edit:function(e){const C=Or(),{attributes:t,setAttributes:l,editProps:{uniqKey:r,attrHelp:n}}=e;return t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ar):[e.isSelected&&(0,h.createElement)(Tr,{key:r("InspectorControls")},(0,h.createElement)(Dr,{title:Ir("Buttons Settings","jet-form-builder")},(0,h.createElement)(Ur,{key:r("add_next_button"),label:Ir('Enable "Next" Button',"jet-form-builder"),checked:t.add_next_button,help:n("add_next_button"),onChange:e=>l({add_next_button:e})}),t.add_next_button&&(0,h.createElement)(qr,{label:Ir("Next Button label","jet-form-builder"),value:t.label,onChange:e=>l({label:e})}),(0,h.createElement)(Sr,null),(0,h.createElement)(Nr,null)),(0,h.createElement)(Dr,{title:Ir("Page Settings","jet-form-builder")},(0,h.createElement)(qr,{label:Ir("Label of progress","jet-form-builder"),value:t.label_progress,help:n("label_progress"),onChange:C=>{e.setAttributes({label_progress:C})}}),(0,h.createElement)(Rr,{key:"page_break_disabled",value:t.page_break_disabled,label:Ir("Validation message","jet-form-builder"),help:n("page_break_disabled"),onChange:e=>{l({page_break_disabled:e})}})),(0,h.createElement)(Dr,{title:Ir("Advanced","jet-form-builder")},(0,h.createElement)(Pr,null))),(0,h.createElement)("div",{...C,key:r("viewBlock")},(0,h.createElement)("div",{className:"jet-form-builder__next-page-wrap jet-form-builder__bottom-line"},t.add_next_button&&(0,h.createElement)(zr,{isSecondary:!0,key:"next_page_button",className:"jet-form-builder__next-page"},(0,h.createElement)(Jr,{placeholder:"Next...",allowedFormats:[],value:t.label,onChange:e=>l({label:e})})),t.add_prev&&(0,h.createElement)(zr,{isSecondary:!0,key:"prev_page_button",className:"jet-form-builder__prev-page"},(0,h.createElement)(Jr,{placeholder:"Prev...",allowedFormats:[],value:t.prev_label,onChange:e=>l({prev_label:e})})),!t.add_next_button&&!t.add_prev&&(0,h.createElement)("span",null,Ir("Form Break","jet-form-builder"))))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Kr("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["jet-forms/submit-field"],isMatch:e=>e.add_next_button,transform:e=>Kr("jet-forms/submit-field",{...e,action_type:"next"}),priority:0},{type:"block",blocks:["core/buttons"],isMatch:e=>e.add_next_button,transform:({label:e=""})=>Kr("core/buttons",{},[Kr("core/button",{text:e})]),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Kr($r,{...e}),priority:0},{type:"block",blocks:["jet-forms/submit-field"],isMatch:e=>"next"===e.action_type,transform:e=>Kr($r,{...e}),priority:0},{type:"block",blocks:["core/buttons"],transform:(e,C)=>Kr($r,{label:C[0]?.attributes?.text||"Next"}),priority:0}]}},Qr=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M47.0752 33.2305V34.748C47.0752 35.5638 47.0023 36.252 46.8564 36.8125C46.7106 37.373 46.501 37.8242 46.2275 38.166C45.9541 38.5078 45.6237 38.7562 45.2363 38.9111C44.8535 39.0615 44.4206 39.1367 43.9375 39.1367C43.5547 39.1367 43.2015 39.0889 42.8779 38.9932C42.5544 38.8975 42.2627 38.7448 42.0029 38.5352C41.7477 38.321 41.529 38.043 41.3467 37.7012C41.1644 37.3594 41.0254 36.9447 40.9297 36.457C40.834 35.9694 40.7861 35.3997 40.7861 34.748V33.2305C40.7861 32.4147 40.859 31.7311 41.0049 31.1797C41.1553 30.6283 41.3672 30.1862 41.6406 29.8535C41.9141 29.5163 42.2422 29.2747 42.625 29.1289C43.0124 28.9831 43.4453 28.9102 43.9238 28.9102C44.3112 28.9102 44.6667 28.958 44.9902 29.0537C45.3184 29.1449 45.61 29.293 45.8652 29.498C46.1204 29.6986 46.3369 29.9674 46.5146 30.3047C46.6969 30.6374 46.8359 31.0452 46.9316 31.5283C47.0273 32.0114 47.0752 32.5788 47.0752 33.2305ZM45.8037 34.9531V33.0186C45.8037 32.5719 45.7764 32.18 45.7217 31.8428C45.6715 31.501 45.5964 31.2093 45.4961 30.9678C45.3958 30.7262 45.2682 30.5303 45.1133 30.3799C44.9629 30.2295 44.7874 30.1201 44.5869 30.0518C44.391 29.9788 44.1699 29.9424 43.9238 29.9424C43.623 29.9424 43.3564 29.9993 43.124 30.1133C42.8916 30.2227 42.6956 30.3981 42.5361 30.6396C42.3812 30.8812 42.2627 31.1979 42.1807 31.5898C42.0986 31.9818 42.0576 32.458 42.0576 33.0186V34.9531C42.0576 35.3997 42.0827 35.7939 42.1328 36.1357C42.1875 36.4775 42.2673 36.7738 42.3721 37.0244C42.4769 37.2705 42.6045 37.4733 42.7549 37.6328C42.9053 37.7923 43.0785 37.9108 43.2744 37.9883C43.4749 38.0612 43.696 38.0977 43.9375 38.0977C44.2474 38.0977 44.5186 38.0384 44.751 37.9199C44.9834 37.8014 45.1771 37.6169 45.332 37.3662C45.4915 37.111 45.61 36.7852 45.6875 36.3887C45.765 35.9876 45.8037 35.5091 45.8037 34.9531ZM52.8584 28.9922V39H51.5938V30.5713L49.0439 31.501V30.3594L52.6602 28.9922H52.8584ZM56.7344 38.3301C56.7344 38.1159 56.8005 37.9359 56.9326 37.79C57.0693 37.6396 57.2653 37.5645 57.5205 37.5645C57.7757 37.5645 57.9694 37.6396 58.1016 37.79C58.2383 37.9359 58.3066 38.1159 58.3066 38.3301C58.3066 38.5397 58.2383 38.7174 58.1016 38.8633C57.9694 39.0091 57.7757 39.082 57.5205 39.082C57.2653 39.082 57.0693 39.0091 56.9326 38.8633C56.8005 38.7174 56.7344 38.5397 56.7344 38.3301ZM71.4248 34.0439V37.6875C71.3018 37.8698 71.1058 38.0749 70.8369 38.3027C70.568 38.526 70.1966 38.722 69.7227 38.8906C69.2533 39.0547 68.6471 39.1367 67.9043 39.1367C67.2982 39.1367 66.7399 39.0319 66.2295 38.8223C65.7236 38.6081 65.2839 38.2982 64.9102 37.8926C64.541 37.4824 64.2539 36.9857 64.0488 36.4023C63.8483 35.8145 63.748 35.1491 63.748 34.4062V33.6338C63.748 32.891 63.8346 32.2279 64.0078 31.6445C64.1855 31.0612 64.4453 30.5667 64.7871 30.1611C65.1289 29.751 65.5482 29.4411 66.0449 29.2314C66.5417 29.0173 67.1113 28.9102 67.7539 28.9102C68.515 28.9102 69.1507 29.0423 69.6611 29.3066C70.1761 29.5664 70.5771 29.9264 70.8643 30.3867C71.1559 30.847 71.3428 31.3711 71.4248 31.959H70.1055C70.0462 31.599 69.9277 31.2708 69.75 30.9746C69.5768 30.6784 69.3285 30.4414 69.0049 30.2637C68.6813 30.0814 68.2643 29.9902 67.7539 29.9902C67.2936 29.9902 66.8949 30.0745 66.5576 30.2432C66.2204 30.4118 65.9424 30.6533 65.7236 30.9678C65.5049 31.2822 65.3408 31.6628 65.2314 32.1094C65.1266 32.556 65.0742 33.0596 65.0742 33.6201V34.4062C65.0742 34.9805 65.1403 35.4932 65.2725 35.9443C65.4092 36.3955 65.6029 36.7806 65.8535 37.0996C66.1042 37.4141 66.4027 37.6533 66.749 37.8174C67.0999 37.9814 67.4873 38.0635 67.9111 38.0635C68.3805 38.0635 68.7611 38.0247 69.0527 37.9473C69.3444 37.8652 69.5723 37.7695 69.7363 37.6602C69.9004 37.5462 70.0257 37.4391 70.1123 37.3389V35.1104H67.8086V34.0439H71.4248ZM76.4902 39.1367C75.9753 39.1367 75.5081 39.0501 75.0889 38.877C74.6742 38.6992 74.3164 38.4508 74.0156 38.1318C73.7194 37.8128 73.4915 37.4346 73.332 36.9971C73.1725 36.5596 73.0928 36.0811 73.0928 35.5615V35.2744C73.0928 34.6729 73.1816 34.1374 73.3594 33.668C73.5371 33.194 73.7786 32.793 74.084 32.4648C74.3893 32.1367 74.7357 31.8883 75.123 31.7197C75.5104 31.5511 75.9115 31.4668 76.3262 31.4668C76.8548 31.4668 77.3105 31.5579 77.6934 31.7402C78.0807 31.9225 78.3975 32.1777 78.6436 32.5059C78.8896 32.8294 79.0719 33.2122 79.1904 33.6543C79.3089 34.0918 79.3682 34.5703 79.3682 35.0898V35.6572H73.8447V34.625H78.1035V34.5293C78.0853 34.2012 78.0169 33.8822 77.8984 33.5723C77.7845 33.2624 77.6022 33.0072 77.3516 32.8066C77.1009 32.6061 76.7591 32.5059 76.3262 32.5059C76.0391 32.5059 75.7747 32.5674 75.5332 32.6904C75.2917 32.8089 75.0843 32.9867 74.9111 33.2236C74.738 33.4606 74.6035 33.75 74.5078 34.0918C74.4121 34.4336 74.3643 34.8278 74.3643 35.2744V35.5615C74.3643 35.9124 74.4121 36.2428 74.5078 36.5527C74.6081 36.8581 74.7516 37.127 74.9385 37.3594C75.1299 37.5918 75.36 37.7741 75.6289 37.9062C75.9023 38.0384 76.2122 38.1045 76.5586 38.1045C77.0052 38.1045 77.3835 38.0133 77.6934 37.8311C78.0033 37.6488 78.2744 37.4049 78.5068 37.0996L79.2725 37.708C79.113 37.9495 78.9102 38.1797 78.6641 38.3984C78.418 38.6172 78.1149 38.7949 77.7549 38.9316C77.3994 39.0684 76.9779 39.1367 76.4902 39.1367ZM82.1094 33.1826V39H80.8447V31.6035H82.041L82.1094 33.1826ZM81.8086 35.0215L81.2822 35.001C81.2868 34.4951 81.362 34.028 81.5078 33.5996C81.6536 33.1667 81.8587 32.7907 82.123 32.4717C82.3874 32.1527 82.7018 31.9066 83.0664 31.7334C83.4355 31.5557 83.8434 31.4668 84.29 31.4668C84.6546 31.4668 84.9827 31.5169 85.2744 31.6172C85.5661 31.7129 85.8145 31.8678 86.0195 32.082C86.2292 32.2962 86.3887 32.5742 86.498 32.916C86.6074 33.2533 86.6621 33.6657 86.6621 34.1533V39H85.3906V34.1396C85.3906 33.7523 85.3337 33.4424 85.2197 33.21C85.1058 32.973 84.9395 32.8021 84.7207 32.6973C84.502 32.5879 84.2331 32.5332 83.9141 32.5332C83.5996 32.5332 83.3125 32.5993 83.0527 32.7314C82.7975 32.8636 82.5765 33.0459 82.3896 33.2783C82.2074 33.5107 82.0638 33.7773 81.959 34.0781C81.8587 34.3743 81.8086 34.6888 81.8086 35.0215ZM91.6523 39.1367C91.1374 39.1367 90.6702 39.0501 90.251 38.877C89.8363 38.6992 89.4785 38.4508 89.1777 38.1318C88.8815 37.8128 88.6536 37.4346 88.4941 36.9971C88.3346 36.5596 88.2549 36.0811 88.2549 35.5615V35.2744C88.2549 34.6729 88.3438 34.1374 88.5215 33.668C88.6992 33.194 88.9408 32.793 89.2461 32.4648C89.5514 32.1367 89.8978 31.8883 90.2852 31.7197C90.6725 31.5511 91.0736 31.4668 91.4883 31.4668C92.0169 31.4668 92.4727 31.5579 92.8555 31.7402C93.2428 31.9225 93.5596 32.1777 93.8057 32.5059C94.0518 32.8294 94.234 33.2122 94.3525 33.6543C94.471 34.0918 94.5303 34.5703 94.5303 35.0898V35.6572H89.0068V34.625H93.2656V34.5293C93.2474 34.2012 93.179 33.8822 93.0605 33.5723C92.9466 33.2624 92.7643 33.0072 92.5137 32.8066C92.263 32.6061 91.9212 32.5059 91.4883 32.5059C91.2012 32.5059 90.9368 32.5674 90.6953 32.6904C90.4538 32.8089 90.2464 32.9867 90.0732 33.2236C89.9001 33.4606 89.7656 33.75 89.6699 34.0918C89.5742 34.4336 89.5264 34.8278 89.5264 35.2744V35.5615C89.5264 35.9124 89.5742 36.2428 89.6699 36.5527C89.7702 36.8581 89.9137 37.127 90.1006 37.3594C90.292 37.5918 90.5221 37.7741 90.791 37.9062C91.0645 38.0384 91.3743 38.1045 91.7207 38.1045C92.1673 38.1045 92.5456 38.0133 92.8555 37.8311C93.1654 37.6488 93.4365 37.4049 93.6689 37.0996L94.4346 37.708C94.2751 37.9495 94.0723 38.1797 93.8262 38.3984C93.5801 38.6172 93.277 38.7949 92.917 38.9316C92.5615 39.0684 92.14 39.1367 91.6523 39.1367ZM97.2715 32.7656V39H96.0068V31.6035H97.2373L97.2715 32.7656ZM99.582 31.5625L99.5752 32.7383C99.4704 32.7155 99.3701 32.7018 99.2744 32.6973C99.1833 32.6882 99.0785 32.6836 98.96 32.6836C98.6683 32.6836 98.4108 32.7292 98.1875 32.8203C97.9642 32.9115 97.7751 33.0391 97.6201 33.2031C97.4652 33.3672 97.3421 33.5632 97.251 33.791C97.1644 34.0143 97.1074 34.2604 97.0801 34.5293L96.7246 34.7344C96.7246 34.2878 96.7679 33.8685 96.8545 33.4766C96.9456 33.0846 97.0846 32.7383 97.2715 32.4375C97.4583 32.1322 97.6953 31.8952 97.9824 31.7266C98.2741 31.5534 98.6204 31.4668 99.0215 31.4668C99.1126 31.4668 99.2174 31.4782 99.3359 31.501C99.4544 31.5192 99.5365 31.5397 99.582 31.5625ZM104.839 37.7354V33.9277C104.839 33.6361 104.78 33.3831 104.661 33.1689C104.547 32.9502 104.374 32.7816 104.142 32.6631C103.909 32.5446 103.622 32.4854 103.28 32.4854C102.961 32.4854 102.681 32.54 102.439 32.6494C102.202 32.7588 102.016 32.9023 101.879 33.0801C101.747 33.2578 101.681 33.4492 101.681 33.6543H100.416C100.416 33.39 100.484 33.1279 100.621 32.8682C100.758 32.6084 100.954 32.3737 101.209 32.1641C101.469 31.9499 101.779 31.7812 102.139 31.6582C102.503 31.5306 102.909 31.4668 103.355 31.4668C103.893 31.4668 104.367 31.5579 104.777 31.7402C105.192 31.9225 105.516 32.1982 105.748 32.5674C105.985 32.932 106.104 33.39 106.104 33.9414V37.3867C106.104 37.6328 106.124 37.8949 106.165 38.1729C106.211 38.4508 106.277 38.6901 106.363 38.8906V39H105.044C104.98 38.8542 104.93 38.6605 104.894 38.4189C104.857 38.1729 104.839 37.945 104.839 37.7354ZM105.058 34.5156L105.071 35.4043H103.793C103.433 35.4043 103.112 35.4339 102.829 35.4932C102.547 35.5479 102.31 35.6322 102.118 35.7461C101.927 35.86 101.781 36.0036 101.681 36.1768C101.58 36.3454 101.53 36.5436 101.53 36.7715C101.53 37.0039 101.583 37.2158 101.688 37.4072C101.792 37.5986 101.95 37.7513 102.159 37.8652C102.373 37.9746 102.635 38.0293 102.945 38.0293C103.333 38.0293 103.674 37.9473 103.971 37.7832C104.267 37.6191 104.502 37.4186 104.675 37.1816C104.853 36.9447 104.948 36.7145 104.962 36.4912L105.502 37.0996C105.47 37.291 105.383 37.5029 105.242 37.7354C105.101 37.9678 104.912 38.1911 104.675 38.4053C104.442 38.6149 104.164 38.7904 103.841 38.9316C103.522 39.0684 103.162 39.1367 102.761 39.1367C102.259 39.1367 101.82 39.0387 101.441 38.8428C101.068 38.6468 100.776 38.3848 100.566 38.0566C100.361 37.724 100.259 37.3525 100.259 36.9424C100.259 36.5459 100.336 36.1973 100.491 35.8965C100.646 35.5911 100.869 35.3382 101.161 35.1377C101.453 34.9326 101.804 34.7777 102.214 34.6729C102.624 34.568 103.082 34.5156 103.588 34.5156H105.058ZM109.467 28.5V39H108.195V28.5H109.467ZM116.344 31.6035V39H115.072V31.6035H116.344ZM114.977 29.6416C114.977 29.4365 115.038 29.2633 115.161 29.1221C115.289 28.9808 115.476 28.9102 115.722 28.9102C115.963 28.9102 116.148 28.9808 116.275 29.1221C116.408 29.2633 116.474 29.4365 116.474 29.6416C116.474 29.8376 116.408 30.0062 116.275 30.1475C116.148 30.2842 115.963 30.3525 115.722 30.3525C115.476 30.3525 115.289 30.2842 115.161 30.1475C115.038 30.0062 114.977 29.8376 114.977 29.6416ZM119.639 33.1826V39H118.374V31.6035H119.57L119.639 33.1826ZM119.338 35.0215L118.812 35.001C118.816 34.4951 118.891 34.028 119.037 33.5996C119.183 33.1667 119.388 32.7907 119.652 32.4717C119.917 32.1527 120.231 31.9066 120.596 31.7334C120.965 31.5557 121.373 31.4668 121.819 31.4668C122.184 31.4668 122.512 31.5169 122.804 31.6172C123.095 31.7129 123.344 31.8678 123.549 32.082C123.758 32.2962 123.918 32.5742 124.027 32.916C124.137 33.2533 124.191 33.6657 124.191 34.1533V39H122.92V34.1396C122.92 33.7523 122.863 33.4424 122.749 33.21C122.635 32.973 122.469 32.8021 122.25 32.6973C122.031 32.5879 121.762 32.5332 121.443 32.5332C121.129 32.5332 120.842 32.5993 120.582 32.7314C120.327 32.8636 120.106 33.0459 119.919 33.2783C119.737 33.5107 119.593 33.7773 119.488 34.0781C119.388 34.3743 119.338 34.6888 119.338 35.0215ZM127.999 39H126.734V30.8242C126.734 30.291 126.83 29.8421 127.021 29.4775C127.217 29.1084 127.498 28.8304 127.862 28.6436C128.227 28.4521 128.66 28.3564 129.161 28.3564C129.307 28.3564 129.453 28.3656 129.599 28.3838C129.749 28.402 129.895 28.4294 130.036 28.4658L129.968 29.498C129.872 29.4753 129.763 29.4593 129.64 29.4502C129.521 29.4411 129.403 29.4365 129.284 29.4365C129.015 29.4365 128.783 29.4912 128.587 29.6006C128.396 29.7054 128.25 29.8604 128.149 30.0654C128.049 30.2705 127.999 30.5234 127.999 30.8242V39ZM129.571 31.6035V32.5742H125.565V31.6035H129.571ZM130.645 35.3838V35.2266C130.645 34.6934 130.722 34.1989 130.877 33.7432C131.032 33.2829 131.255 32.8841 131.547 32.5469C131.839 32.2051 132.192 31.9408 132.606 31.7539C133.021 31.5625 133.486 31.4668 134.001 31.4668C134.521 31.4668 134.988 31.5625 135.402 31.7539C135.822 31.9408 136.177 32.2051 136.469 32.5469C136.765 32.8841 136.991 33.2829 137.146 33.7432C137.3 34.1989 137.378 34.6934 137.378 35.2266V35.3838C137.378 35.917 137.3 36.4115 137.146 36.8672C136.991 37.3229 136.765 37.7217 136.469 38.0635C136.177 38.4007 135.824 38.665 135.409 38.8564C134.999 39.0433 134.534 39.1367 134.015 39.1367C133.495 39.1367 133.028 39.0433 132.613 38.8564C132.199 38.665 131.843 38.4007 131.547 38.0635C131.255 37.7217 131.032 37.3229 130.877 36.8672C130.722 36.4115 130.645 35.917 130.645 35.3838ZM131.909 35.2266V35.3838C131.909 35.7529 131.952 36.1016 132.039 36.4297C132.126 36.7533 132.256 37.0404 132.429 37.291C132.606 37.5417 132.827 37.7399 133.092 37.8857C133.356 38.027 133.664 38.0977 134.015 38.0977C134.361 38.0977 134.664 38.027 134.924 37.8857C135.188 37.7399 135.407 37.5417 135.58 37.291C135.753 37.0404 135.883 36.7533 135.97 36.4297C136.061 36.1016 136.106 35.7529 136.106 35.3838V35.2266C136.106 34.862 136.061 34.5179 135.97 34.1943C135.883 33.8662 135.751 33.5768 135.573 33.3262C135.4 33.071 135.181 32.8704 134.917 32.7246C134.657 32.5788 134.352 32.5059 134.001 32.5059C133.655 32.5059 133.349 32.5788 133.085 32.7246C132.825 32.8704 132.606 33.071 132.429 33.3262C132.256 33.5768 132.126 33.8662 132.039 34.1943C131.952 34.5179 131.909 34.862 131.909 35.2266ZM140.229 32.7656V39H138.964V31.6035H140.194L140.229 32.7656ZM142.539 31.5625L142.532 32.7383C142.427 32.7155 142.327 32.7018 142.231 32.6973C142.14 32.6882 142.035 32.6836 141.917 32.6836C141.625 32.6836 141.368 32.7292 141.145 32.8203C140.921 32.9115 140.732 33.0391 140.577 33.2031C140.422 33.3672 140.299 33.5632 140.208 33.791C140.121 34.0143 140.064 34.2604 140.037 34.5293L139.682 34.7344C139.682 34.2878 139.725 33.8685 139.812 33.4766C139.903 33.0846 140.042 32.7383 140.229 32.4375C140.415 32.1322 140.652 31.8952 140.939 31.7266C141.231 31.5534 141.577 31.4668 141.979 31.4668C142.07 31.4668 142.174 31.4782 142.293 31.501C142.411 31.5192 142.493 31.5397 142.539 31.5625ZM144.966 33.0732V39H143.694V31.6035H144.897L144.966 33.0732ZM144.706 35.0215L144.118 35.001C144.123 34.4951 144.189 34.028 144.316 33.5996C144.444 33.1667 144.633 32.7907 144.884 32.4717C145.134 32.1527 145.447 31.9066 145.82 31.7334C146.194 31.5557 146.627 31.4668 147.119 31.4668C147.465 31.4668 147.785 31.5169 148.076 31.6172C148.368 31.7129 148.621 31.8656 148.835 32.0752C149.049 32.2848 149.215 32.5537 149.334 32.8818C149.452 33.21 149.512 33.6064 149.512 34.0713V39H148.247V34.1328C148.247 33.7454 148.181 33.4355 148.049 33.2031C147.921 32.9707 147.739 32.8021 147.502 32.6973C147.265 32.5879 146.987 32.5332 146.668 32.5332C146.294 32.5332 145.982 32.5993 145.731 32.7314C145.481 32.8636 145.28 33.0459 145.13 33.2783C144.979 33.5107 144.87 33.7773 144.802 34.0781C144.738 34.3743 144.706 34.6888 144.706 35.0215ZM149.498 34.3242L148.65 34.584C148.655 34.1784 148.721 33.7887 148.849 33.415C148.981 33.0413 149.17 32.7087 149.416 32.417C149.667 32.1253 149.974 31.8952 150.339 31.7266C150.703 31.5534 151.12 31.4668 151.59 31.4668C151.986 31.4668 152.337 31.5192 152.643 31.624C152.952 31.7288 153.212 31.8906 153.422 32.1094C153.636 32.3236 153.798 32.5993 153.907 32.9365C154.017 33.2738 154.071 33.6748 154.071 34.1396V39H152.8V34.126C152.8 33.7113 152.734 33.39 152.602 33.1621C152.474 32.9297 152.292 32.7679 152.055 32.6768C151.822 32.5811 151.544 32.5332 151.221 32.5332C150.943 32.5332 150.697 32.5811 150.482 32.6768C150.268 32.7725 150.088 32.9046 149.942 33.0732C149.797 33.2373 149.685 33.4264 149.607 33.6406C149.535 33.8548 149.498 34.0827 149.498 34.3242ZM160.347 37.7354V33.9277C160.347 33.6361 160.287 33.3831 160.169 33.1689C160.055 32.9502 159.882 32.7816 159.649 32.6631C159.417 32.5446 159.13 32.4854 158.788 32.4854C158.469 32.4854 158.189 32.54 157.947 32.6494C157.71 32.7588 157.523 32.9023 157.387 33.0801C157.255 33.2578 157.188 33.4492 157.188 33.6543H155.924C155.924 33.39 155.992 33.1279 156.129 32.8682C156.266 32.6084 156.462 32.3737 156.717 32.1641C156.977 31.9499 157.286 31.7812 157.646 31.6582C158.011 31.5306 158.417 31.4668 158.863 31.4668C159.401 31.4668 159.875 31.5579 160.285 31.7402C160.7 31.9225 161.023 32.1982 161.256 32.5674C161.493 32.932 161.611 33.39 161.611 33.9414V37.3867C161.611 37.6328 161.632 37.8949 161.673 38.1729C161.718 38.4508 161.785 38.6901 161.871 38.8906V39H160.552C160.488 38.8542 160.438 38.6605 160.401 38.4189C160.365 38.1729 160.347 37.945 160.347 37.7354ZM160.565 34.5156L160.579 35.4043H159.301C158.941 35.4043 158.619 35.4339 158.337 35.4932C158.054 35.5479 157.817 35.6322 157.626 35.7461C157.435 35.86 157.289 36.0036 157.188 36.1768C157.088 36.3454 157.038 36.5436 157.038 36.7715C157.038 37.0039 157.09 37.2158 157.195 37.4072C157.3 37.5986 157.457 37.7513 157.667 37.8652C157.881 37.9746 158.143 38.0293 158.453 38.0293C158.84 38.0293 159.182 37.9473 159.479 37.7832C159.775 37.6191 160.009 37.4186 160.183 37.1816C160.36 36.9447 160.456 36.7145 160.47 36.4912L161.01 37.0996C160.978 37.291 160.891 37.5029 160.75 37.7354C160.609 37.9678 160.42 38.1911 160.183 38.4053C159.95 38.6149 159.672 38.7904 159.349 38.9316C159.03 39.0684 158.67 39.1367 158.269 39.1367C157.767 39.1367 157.327 39.0387 156.949 38.8428C156.576 38.6468 156.284 38.3848 156.074 38.0566C155.869 37.724 155.767 37.3525 155.767 36.9424C155.767 36.5459 155.844 36.1973 155.999 35.8965C156.154 35.5911 156.377 35.3382 156.669 35.1377C156.961 34.9326 157.312 34.7777 157.722 34.6729C158.132 34.568 158.59 34.5156 159.096 34.5156H160.565ZM166.697 31.6035V32.5742H162.698V31.6035H166.697ZM164.052 29.8057H165.316V37.168C165.316 37.4186 165.355 37.6077 165.433 37.7354C165.51 37.863 165.61 37.9473 165.733 37.9883C165.856 38.0293 165.989 38.0498 166.13 38.0498C166.235 38.0498 166.344 38.0407 166.458 38.0225C166.576 37.9997 166.665 37.9814 166.725 37.9678L166.731 39C166.631 39.0319 166.499 39.0615 166.335 39.0889C166.175 39.1208 165.982 39.1367 165.754 39.1367C165.444 39.1367 165.159 39.0752 164.899 38.9521C164.64 38.8291 164.432 38.624 164.277 38.3369C164.127 38.0452 164.052 37.6533 164.052 37.1611V29.8057ZM169.555 31.6035V39H168.283V31.6035H169.555ZM168.188 29.6416C168.188 29.4365 168.249 29.2633 168.372 29.1221C168.5 28.9808 168.687 28.9102 168.933 28.9102C169.174 28.9102 169.359 28.9808 169.486 29.1221C169.618 29.2633 169.685 29.4365 169.685 29.6416C169.685 29.8376 169.618 30.0062 169.486 30.1475C169.359 30.2842 169.174 30.3525 168.933 30.3525C168.687 30.3525 168.5 30.2842 168.372 30.1475C168.249 30.0062 168.188 29.8376 168.188 29.6416ZM171.25 35.3838V35.2266C171.25 34.6934 171.327 34.1989 171.482 33.7432C171.637 33.2829 171.861 32.8841 172.152 32.5469C172.444 32.2051 172.797 31.9408 173.212 31.7539C173.627 31.5625 174.091 31.4668 174.606 31.4668C175.126 31.4668 175.593 31.5625 176.008 31.7539C176.427 31.9408 176.783 32.2051 177.074 32.5469C177.37 32.8841 177.596 33.2829 177.751 33.7432C177.906 34.1989 177.983 34.6934 177.983 35.2266V35.3838C177.983 35.917 177.906 36.4115 177.751 36.8672C177.596 37.3229 177.37 37.7217 177.074 38.0635C176.783 38.4007 176.429 38.665 176.015 38.8564C175.604 39.0433 175.14 39.1367 174.62 39.1367C174.101 39.1367 173.633 39.0433 173.219 38.8564C172.804 38.665 172.449 38.4007 172.152 38.0635C171.861 37.7217 171.637 37.3229 171.482 36.8672C171.327 36.4115 171.25 35.917 171.25 35.3838ZM172.515 35.2266V35.3838C172.515 35.7529 172.558 36.1016 172.645 36.4297C172.731 36.7533 172.861 37.0404 173.034 37.291C173.212 37.5417 173.433 37.7399 173.697 37.8857C173.962 38.027 174.269 38.0977 174.62 38.0977C174.966 38.0977 175.27 38.027 175.529 37.8857C175.794 37.7399 176.012 37.5417 176.186 37.291C176.359 37.0404 176.489 36.7533 176.575 36.4297C176.666 36.1016 176.712 35.7529 176.712 35.3838V35.2266C176.712 34.862 176.666 34.5179 176.575 34.1943C176.489 33.8662 176.356 33.5768 176.179 33.3262C176.006 33.071 175.787 32.8704 175.522 32.7246C175.263 32.5788 174.957 32.5059 174.606 32.5059C174.26 32.5059 173.955 32.5788 173.69 32.7246C173.431 32.8704 173.212 33.071 173.034 33.3262C172.861 33.5768 172.731 33.8662 172.645 34.1943C172.558 34.5179 172.515 34.862 172.515 35.2266ZM180.834 33.1826V39H179.569V31.6035H180.766L180.834 33.1826ZM180.533 35.0215L180.007 35.001C180.011 34.4951 180.087 34.028 180.232 33.5996C180.378 33.1667 180.583 32.7907 180.848 32.4717C181.112 32.1527 181.426 31.9066 181.791 31.7334C182.16 31.5557 182.568 31.4668 183.015 31.4668C183.379 31.4668 183.707 31.5169 183.999 31.6172C184.291 31.7129 184.539 31.8678 184.744 32.082C184.954 32.2962 185.113 32.5742 185.223 32.916C185.332 33.2533 185.387 33.6657 185.387 34.1533V39H184.115V34.1396C184.115 33.7523 184.058 33.4424 183.944 33.21C183.83 32.973 183.664 32.8021 183.445 32.6973C183.227 32.5879 182.958 32.5332 182.639 32.5332C182.324 32.5332 182.037 32.5993 181.777 32.7314C181.522 32.8636 181.301 33.0459 181.114 33.2783C180.932 33.5107 180.788 33.7773 180.684 34.0781C180.583 34.3743 180.533 34.6888 180.533 35.0215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15",y:"52",width:"268",height:"40",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M258 72H40",stroke:"#4272F9",strokeWidth:"3",strokeLinecap:"round"}),(0,h.createElement)("path",{d:"M47.0752 109.23V110.748C47.0752 111.564 47.0023 112.252 46.8564 112.812C46.7106 113.373 46.501 113.824 46.2275 114.166C45.9541 114.508 45.6237 114.756 45.2363 114.911C44.8535 115.062 44.4206 115.137 43.9375 115.137C43.5547 115.137 43.2015 115.089 42.8779 114.993C42.5544 114.897 42.2627 114.745 42.0029 114.535C41.7477 114.321 41.529 114.043 41.3467 113.701C41.1644 113.359 41.0254 112.945 40.9297 112.457C40.834 111.969 40.7861 111.4 40.7861 110.748V109.23C40.7861 108.415 40.859 107.731 41.0049 107.18C41.1553 106.628 41.3672 106.186 41.6406 105.854C41.9141 105.516 42.2422 105.275 42.625 105.129C43.0124 104.983 43.4453 104.91 43.9238 104.91C44.3112 104.91 44.6667 104.958 44.9902 105.054C45.3184 105.145 45.61 105.293 45.8652 105.498C46.1204 105.699 46.3369 105.967 46.5146 106.305C46.6969 106.637 46.8359 107.045 46.9316 107.528C47.0273 108.011 47.0752 108.579 47.0752 109.23ZM45.8037 110.953V109.019C45.8037 108.572 45.7764 108.18 45.7217 107.843C45.6715 107.501 45.5964 107.209 45.4961 106.968C45.3958 106.726 45.2682 106.53 45.1133 106.38C44.9629 106.229 44.7874 106.12 44.5869 106.052C44.391 105.979 44.1699 105.942 43.9238 105.942C43.623 105.942 43.3564 105.999 43.124 106.113C42.8916 106.223 42.6956 106.398 42.5361 106.64C42.3812 106.881 42.2627 107.198 42.1807 107.59C42.0986 107.982 42.0576 108.458 42.0576 109.019V110.953C42.0576 111.4 42.0827 111.794 42.1328 112.136C42.1875 112.478 42.2673 112.774 42.3721 113.024C42.4769 113.271 42.6045 113.473 42.7549 113.633C42.9053 113.792 43.0785 113.911 43.2744 113.988C43.4749 114.061 43.696 114.098 43.9375 114.098C44.2474 114.098 44.5186 114.038 44.751 113.92C44.9834 113.801 45.1771 113.617 45.332 113.366C45.4915 113.111 45.61 112.785 45.6875 112.389C45.765 111.988 45.8037 111.509 45.8037 110.953ZM55.2236 113.961V115H48.709V114.091L51.9697 110.461C52.3708 110.014 52.6807 109.636 52.8994 109.326C53.1227 109.012 53.2777 108.731 53.3643 108.485C53.4554 108.235 53.501 107.979 53.501 107.72C53.501 107.392 53.4326 107.095 53.2959 106.831C53.1637 106.562 52.9678 106.348 52.708 106.188C52.4482 106.029 52.1338 105.949 51.7646 105.949C51.3226 105.949 50.9535 106.036 50.6572 106.209C50.3656 106.378 50.1468 106.615 50.001 106.92C49.8551 107.225 49.7822 107.576 49.7822 107.973H48.5176C48.5176 107.412 48.6406 106.899 48.8867 106.435C49.1328 105.97 49.4974 105.601 49.9805 105.327C50.4635 105.049 51.0583 104.91 51.7646 104.91C52.3936 104.91 52.9313 105.022 53.3779 105.245C53.8245 105.464 54.1663 105.774 54.4033 106.175C54.6449 106.571 54.7656 107.036 54.7656 107.569C54.7656 107.861 54.7155 108.157 54.6152 108.458C54.5195 108.754 54.3851 109.05 54.2119 109.347C54.0433 109.643 53.8451 109.935 53.6172 110.222C53.3939 110.509 53.1546 110.791 52.8994 111.069L50.2334 113.961H55.2236ZM56.7344 114.33C56.7344 114.116 56.8005 113.936 56.9326 113.79C57.0693 113.64 57.2653 113.564 57.5205 113.564C57.7757 113.564 57.9694 113.64 58.1016 113.79C58.2383 113.936 58.3066 114.116 58.3066 114.33C58.3066 114.54 58.2383 114.717 58.1016 114.863C57.9694 115.009 57.7757 115.082 57.5205 115.082C57.2653 115.082 57.0693 115.009 56.9326 114.863C56.8005 114.717 56.7344 114.54 56.7344 114.33ZM67.7402 111.097H65.0811V110.023H67.7402C68.2552 110.023 68.6722 109.941 68.9912 109.777C69.3102 109.613 69.5426 109.385 69.6885 109.094C69.8389 108.802 69.9141 108.469 69.9141 108.096C69.9141 107.754 69.8389 107.433 69.6885 107.132C69.5426 106.831 69.3102 106.59 68.9912 106.407C68.6722 106.22 68.2552 106.127 67.7402 106.127H65.3887V115H64.0693V105.047H67.7402C68.4922 105.047 69.1279 105.177 69.6475 105.437C70.167 105.696 70.5612 106.056 70.8301 106.517C71.099 106.972 71.2334 107.494 71.2334 108.082C71.2334 108.72 71.099 109.265 70.8301 109.716C70.5612 110.167 70.167 110.511 69.6475 110.748C69.1279 110.98 68.4922 111.097 67.7402 111.097ZM75.6836 115.137C75.1686 115.137 74.7015 115.05 74.2822 114.877C73.8675 114.699 73.5098 114.451 73.209 114.132C72.9128 113.813 72.6849 113.435 72.5254 112.997C72.3659 112.56 72.2861 112.081 72.2861 111.562V111.274C72.2861 110.673 72.375 110.137 72.5527 109.668C72.7305 109.194 72.972 108.793 73.2773 108.465C73.5827 108.137 73.929 107.888 74.3164 107.72C74.7038 107.551 75.1048 107.467 75.5195 107.467C76.0482 107.467 76.5039 107.558 76.8867 107.74C77.2741 107.923 77.5908 108.178 77.8369 108.506C78.083 108.829 78.2653 109.212 78.3838 109.654C78.5023 110.092 78.5615 110.57 78.5615 111.09V111.657H73.0381V110.625H77.2969V110.529C77.2786 110.201 77.2103 109.882 77.0918 109.572C76.9779 109.262 76.7956 109.007 76.5449 108.807C76.2943 108.606 75.9525 108.506 75.5195 108.506C75.2324 108.506 74.9681 108.567 74.7266 108.69C74.485 108.809 74.2777 108.987 74.1045 109.224C73.9313 109.461 73.7969 109.75 73.7012 110.092C73.6055 110.434 73.5576 110.828 73.5576 111.274V111.562C73.5576 111.912 73.6055 112.243 73.7012 112.553C73.8014 112.858 73.945 113.127 74.1318 113.359C74.3232 113.592 74.5534 113.774 74.8223 113.906C75.0957 114.038 75.4056 114.104 75.752 114.104C76.1986 114.104 76.5768 114.013 76.8867 113.831C77.1966 113.649 77.4678 113.405 77.7002 113.1L78.4658 113.708C78.3063 113.95 78.1035 114.18 77.8574 114.398C77.6113 114.617 77.3083 114.795 76.9482 114.932C76.5928 115.068 76.1712 115.137 75.6836 115.137ZM81.3027 108.766V115H80.0381V107.604H81.2686L81.3027 108.766ZM83.6133 107.562L83.6064 108.738C83.5016 108.715 83.4014 108.702 83.3057 108.697C83.2145 108.688 83.1097 108.684 82.9912 108.684C82.6995 108.684 82.4421 108.729 82.2188 108.82C81.9954 108.911 81.8063 109.039 81.6514 109.203C81.4964 109.367 81.3734 109.563 81.2822 109.791C81.1956 110.014 81.1387 110.26 81.1113 110.529L80.7559 110.734C80.7559 110.288 80.7992 109.868 80.8857 109.477C80.9769 109.085 81.1159 108.738 81.3027 108.438C81.4896 108.132 81.7266 107.895 82.0137 107.727C82.3053 107.553 82.6517 107.467 83.0527 107.467C83.1439 107.467 83.2487 107.478 83.3672 107.501C83.4857 107.519 83.5677 107.54 83.6133 107.562ZM89.0889 113.038C89.0889 112.856 89.0479 112.687 88.9658 112.532C88.8883 112.373 88.7266 112.229 88.4805 112.102C88.2389 111.969 87.8743 111.855 87.3867 111.76C86.9766 111.673 86.6051 111.571 86.2725 111.452C85.9443 111.334 85.6641 111.19 85.4316 111.021C85.2038 110.853 85.0283 110.655 84.9053 110.427C84.7822 110.199 84.7207 109.932 84.7207 109.627C84.7207 109.335 84.7845 109.06 84.9121 108.8C85.0443 108.54 85.2288 108.31 85.4658 108.109C85.7074 107.909 85.9967 107.752 86.334 107.638C86.6712 107.524 87.0472 107.467 87.4619 107.467C88.0544 107.467 88.5602 107.572 88.9795 107.781C89.3988 107.991 89.7201 108.271 89.9434 108.622C90.1667 108.968 90.2783 109.354 90.2783 109.777H89.0137C89.0137 109.572 88.9521 109.374 88.8291 109.183C88.7106 108.987 88.5352 108.825 88.3027 108.697C88.0749 108.57 87.7946 108.506 87.4619 108.506C87.111 108.506 86.8262 108.561 86.6074 108.67C86.3932 108.775 86.236 108.909 86.1357 109.073C86.04 109.237 85.9922 109.41 85.9922 109.593C85.9922 109.729 86.015 109.853 86.0605 109.962C86.1107 110.067 86.1973 110.165 86.3203 110.256C86.4434 110.342 86.6165 110.424 86.8398 110.502C87.0632 110.579 87.348 110.657 87.6943 110.734C88.3005 110.871 88.7995 111.035 89.1914 111.227C89.5833 111.418 89.875 111.653 90.0664 111.931C90.2578 112.209 90.3535 112.546 90.3535 112.942C90.3535 113.266 90.2852 113.562 90.1484 113.831C90.0163 114.1 89.8226 114.332 89.5674 114.528C89.3167 114.72 89.016 114.87 88.665 114.979C88.3187 115.084 87.929 115.137 87.4961 115.137C86.8444 115.137 86.293 115.021 85.8418 114.788C85.3906 114.556 85.0488 114.255 84.8164 113.886C84.584 113.517 84.4678 113.127 84.4678 112.717H85.7393C85.7575 113.063 85.8577 113.339 86.04 113.544C86.2223 113.744 86.4456 113.888 86.71 113.975C86.9743 114.057 87.2363 114.098 87.4961 114.098C87.8424 114.098 88.1318 114.052 88.3643 113.961C88.6012 113.87 88.7812 113.744 88.9043 113.585C89.0273 113.425 89.0889 113.243 89.0889 113.038ZM91.6797 111.384V111.227C91.6797 110.693 91.7572 110.199 91.9121 109.743C92.0671 109.283 92.2904 108.884 92.582 108.547C92.8737 108.205 93.2269 107.941 93.6416 107.754C94.0563 107.562 94.5212 107.467 95.0361 107.467C95.5557 107.467 96.0228 107.562 96.4375 107.754C96.8568 107.941 97.2122 108.205 97.5039 108.547C97.8001 108.884 98.0257 109.283 98.1807 109.743C98.3356 110.199 98.4131 110.693 98.4131 111.227V111.384C98.4131 111.917 98.3356 112.411 98.1807 112.867C98.0257 113.323 97.8001 113.722 97.5039 114.063C97.2122 114.401 96.859 114.665 96.4443 114.856C96.0342 115.043 95.5693 115.137 95.0498 115.137C94.5303 115.137 94.0632 115.043 93.6484 114.856C93.2337 114.665 92.8783 114.401 92.582 114.063C92.2904 113.722 92.0671 113.323 91.9121 112.867C91.7572 112.411 91.6797 111.917 91.6797 111.384ZM92.9443 111.227V111.384C92.9443 111.753 92.9876 112.102 93.0742 112.43C93.1608 112.753 93.2907 113.04 93.4639 113.291C93.6416 113.542 93.8626 113.74 94.127 113.886C94.3913 114.027 94.6989 114.098 95.0498 114.098C95.3962 114.098 95.6992 114.027 95.959 113.886C96.2233 113.74 96.4421 113.542 96.6152 113.291C96.7884 113.04 96.9183 112.753 97.0049 112.43C97.096 112.102 97.1416 111.753 97.1416 111.384V111.227C97.1416 110.862 97.096 110.518 97.0049 110.194C96.9183 109.866 96.7861 109.577 96.6084 109.326C96.4352 109.071 96.2165 108.87 95.9521 108.725C95.6924 108.579 95.387 108.506 95.0361 108.506C94.6898 108.506 94.3844 108.579 94.1201 108.725C93.8604 108.87 93.6416 109.071 93.4639 109.326C93.2907 109.577 93.1608 109.866 93.0742 110.194C92.9876 110.518 92.9443 110.862 92.9443 111.227ZM101.264 109.183V115H99.999V107.604H101.195L101.264 109.183ZM100.963 111.021L100.437 111.001C100.441 110.495 100.516 110.028 100.662 109.6C100.808 109.167 101.013 108.791 101.277 108.472C101.542 108.153 101.856 107.907 102.221 107.733C102.59 107.556 102.998 107.467 103.444 107.467C103.809 107.467 104.137 107.517 104.429 107.617C104.72 107.713 104.969 107.868 105.174 108.082C105.383 108.296 105.543 108.574 105.652 108.916C105.762 109.253 105.816 109.666 105.816 110.153V115H104.545V110.14C104.545 109.752 104.488 109.442 104.374 109.21C104.26 108.973 104.094 108.802 103.875 108.697C103.656 108.588 103.387 108.533 103.068 108.533C102.754 108.533 102.467 108.599 102.207 108.731C101.952 108.864 101.731 109.046 101.544 109.278C101.362 109.511 101.218 109.777 101.113 110.078C101.013 110.374 100.963 110.689 100.963 111.021ZM112.099 113.735V109.928C112.099 109.636 112.039 109.383 111.921 109.169C111.807 108.95 111.634 108.782 111.401 108.663C111.169 108.545 110.882 108.485 110.54 108.485C110.221 108.485 109.941 108.54 109.699 108.649C109.462 108.759 109.275 108.902 109.139 109.08C109.007 109.258 108.94 109.449 108.94 109.654H107.676C107.676 109.39 107.744 109.128 107.881 108.868C108.018 108.608 108.214 108.374 108.469 108.164C108.729 107.95 109.038 107.781 109.398 107.658C109.763 107.531 110.169 107.467 110.615 107.467C111.153 107.467 111.627 107.558 112.037 107.74C112.452 107.923 112.775 108.198 113.008 108.567C113.245 108.932 113.363 109.39 113.363 109.941V113.387C113.363 113.633 113.384 113.895 113.425 114.173C113.47 114.451 113.536 114.69 113.623 114.891V115H112.304C112.24 114.854 112.19 114.66 112.153 114.419C112.117 114.173 112.099 113.945 112.099 113.735ZM112.317 110.516L112.331 111.404H111.053C110.693 111.404 110.371 111.434 110.089 111.493C109.806 111.548 109.569 111.632 109.378 111.746C109.187 111.86 109.041 112.004 108.94 112.177C108.84 112.345 108.79 112.544 108.79 112.771C108.79 113.004 108.842 113.216 108.947 113.407C109.052 113.599 109.209 113.751 109.419 113.865C109.633 113.975 109.895 114.029 110.205 114.029C110.592 114.029 110.934 113.947 111.23 113.783C111.527 113.619 111.761 113.419 111.935 113.182C112.112 112.945 112.208 112.715 112.222 112.491L112.762 113.1C112.73 113.291 112.643 113.503 112.502 113.735C112.361 113.968 112.172 114.191 111.935 114.405C111.702 114.615 111.424 114.79 111.101 114.932C110.782 115.068 110.422 115.137 110.021 115.137C109.519 115.137 109.079 115.039 108.701 114.843C108.327 114.647 108.036 114.385 107.826 114.057C107.621 113.724 107.519 113.353 107.519 112.942C107.519 112.546 107.596 112.197 107.751 111.896C107.906 111.591 108.129 111.338 108.421 111.138C108.713 110.933 109.063 110.778 109.474 110.673C109.884 110.568 110.342 110.516 110.848 110.516H112.317ZM116.727 104.5V115H115.455V104.5H116.727ZM123.604 107.604V115H122.332V107.604H123.604ZM122.236 105.642C122.236 105.437 122.298 105.263 122.421 105.122C122.549 104.981 122.735 104.91 122.981 104.91C123.223 104.91 123.408 104.981 123.535 105.122C123.667 105.263 123.733 105.437 123.733 105.642C123.733 105.838 123.667 106.006 123.535 106.147C123.408 106.284 123.223 106.353 122.981 106.353C122.735 106.353 122.549 106.284 122.421 106.147C122.298 106.006 122.236 105.838 122.236 105.642ZM126.898 109.183V115H125.634V107.604H126.83L126.898 109.183ZM126.598 111.021L126.071 111.001C126.076 110.495 126.151 110.028 126.297 109.6C126.443 109.167 126.648 108.791 126.912 108.472C127.176 108.153 127.491 107.907 127.855 107.733C128.225 107.556 128.632 107.467 129.079 107.467C129.444 107.467 129.772 107.517 130.063 107.617C130.355 107.713 130.604 107.868 130.809 108.082C131.018 108.296 131.178 108.574 131.287 108.916C131.396 109.253 131.451 109.666 131.451 110.153V115H130.18V110.14C130.18 109.752 130.123 109.442 130.009 109.21C129.895 108.973 129.729 108.802 129.51 108.697C129.291 108.588 129.022 108.533 128.703 108.533C128.389 108.533 128.102 108.599 127.842 108.731C127.587 108.864 127.366 109.046 127.179 109.278C126.996 109.511 126.853 109.777 126.748 110.078C126.648 110.374 126.598 110.689 126.598 111.021ZM135.259 115H133.994V106.824C133.994 106.291 134.09 105.842 134.281 105.478C134.477 105.108 134.757 104.83 135.122 104.644C135.487 104.452 135.92 104.356 136.421 104.356C136.567 104.356 136.713 104.366 136.858 104.384C137.009 104.402 137.155 104.429 137.296 104.466L137.228 105.498C137.132 105.475 137.022 105.459 136.899 105.45C136.781 105.441 136.662 105.437 136.544 105.437C136.275 105.437 136.043 105.491 135.847 105.601C135.655 105.705 135.509 105.86 135.409 106.065C135.309 106.271 135.259 106.523 135.259 106.824V115ZM136.831 107.604V108.574H132.825V107.604H136.831ZM137.904 111.384V111.227C137.904 110.693 137.982 110.199 138.137 109.743C138.292 109.283 138.515 108.884 138.807 108.547C139.098 108.205 139.451 107.941 139.866 107.754C140.281 107.562 140.746 107.467 141.261 107.467C141.78 107.467 142.247 107.562 142.662 107.754C143.081 107.941 143.437 108.205 143.729 108.547C144.025 108.884 144.25 109.283 144.405 109.743C144.56 110.199 144.638 110.693 144.638 111.227V111.384C144.638 111.917 144.56 112.411 144.405 112.867C144.25 113.323 144.025 113.722 143.729 114.063C143.437 114.401 143.084 114.665 142.669 114.856C142.259 115.043 141.794 115.137 141.274 115.137C140.755 115.137 140.288 115.043 139.873 114.856C139.458 114.665 139.103 114.401 138.807 114.063C138.515 113.722 138.292 113.323 138.137 112.867C137.982 112.411 137.904 111.917 137.904 111.384ZM139.169 111.227V111.384C139.169 111.753 139.212 112.102 139.299 112.43C139.385 112.753 139.515 113.04 139.688 113.291C139.866 113.542 140.087 113.74 140.352 113.886C140.616 114.027 140.924 114.098 141.274 114.098C141.621 114.098 141.924 114.027 142.184 113.886C142.448 113.74 142.667 113.542 142.84 113.291C143.013 113.04 143.143 112.753 143.229 112.43C143.321 112.102 143.366 111.753 143.366 111.384V111.227C143.366 110.862 143.321 110.518 143.229 110.194C143.143 109.866 143.011 109.577 142.833 109.326C142.66 109.071 142.441 108.87 142.177 108.725C141.917 108.579 141.612 108.506 141.261 108.506C140.914 108.506 140.609 108.579 140.345 108.725C140.085 108.87 139.866 109.071 139.688 109.326C139.515 109.577 139.385 109.866 139.299 110.194C139.212 110.518 139.169 110.862 139.169 111.227ZM147.488 108.766V115H146.224V107.604H147.454L147.488 108.766ZM149.799 107.562L149.792 108.738C149.687 108.715 149.587 108.702 149.491 108.697C149.4 108.688 149.295 108.684 149.177 108.684C148.885 108.684 148.628 108.729 148.404 108.82C148.181 108.911 147.992 109.039 147.837 109.203C147.682 109.367 147.559 109.563 147.468 109.791C147.381 110.014 147.324 110.26 147.297 110.529L146.941 110.734C146.941 110.288 146.985 109.868 147.071 109.477C147.162 109.085 147.301 108.738 147.488 108.438C147.675 108.132 147.912 107.895 148.199 107.727C148.491 107.553 148.837 107.467 149.238 107.467C149.329 107.467 149.434 107.478 149.553 107.501C149.671 107.519 149.753 107.54 149.799 107.562ZM152.226 109.073V115H150.954V107.604H152.157L152.226 109.073ZM151.966 111.021L151.378 111.001C151.382 110.495 151.449 110.028 151.576 109.6C151.704 109.167 151.893 108.791 152.144 108.472C152.394 108.153 152.706 107.907 153.08 107.733C153.454 107.556 153.887 107.467 154.379 107.467C154.725 107.467 155.044 107.517 155.336 107.617C155.628 107.713 155.881 107.866 156.095 108.075C156.309 108.285 156.475 108.554 156.594 108.882C156.712 109.21 156.771 109.606 156.771 110.071V115H155.507V110.133C155.507 109.745 155.441 109.436 155.309 109.203C155.181 108.971 154.999 108.802 154.762 108.697C154.525 108.588 154.247 108.533 153.928 108.533C153.554 108.533 153.242 108.599 152.991 108.731C152.741 108.864 152.54 109.046 152.39 109.278C152.239 109.511 152.13 109.777 152.062 110.078C151.998 110.374 151.966 110.689 151.966 111.021ZM156.758 110.324L155.91 110.584C155.915 110.178 155.981 109.789 156.108 109.415C156.241 109.041 156.43 108.709 156.676 108.417C156.926 108.125 157.234 107.895 157.599 107.727C157.963 107.553 158.38 107.467 158.85 107.467C159.246 107.467 159.597 107.519 159.902 107.624C160.212 107.729 160.472 107.891 160.682 108.109C160.896 108.324 161.058 108.599 161.167 108.937C161.276 109.274 161.331 109.675 161.331 110.14V115H160.06V110.126C160.06 109.711 159.993 109.39 159.861 109.162C159.734 108.93 159.551 108.768 159.314 108.677C159.082 108.581 158.804 108.533 158.48 108.533C158.202 108.533 157.956 108.581 157.742 108.677C157.528 108.772 157.348 108.905 157.202 109.073C157.056 109.237 156.945 109.426 156.867 109.641C156.794 109.855 156.758 110.083 156.758 110.324ZM167.606 113.735V109.928C167.606 109.636 167.547 109.383 167.429 109.169C167.315 108.95 167.142 108.782 166.909 108.663C166.677 108.545 166.39 108.485 166.048 108.485C165.729 108.485 165.449 108.54 165.207 108.649C164.97 108.759 164.783 108.902 164.646 109.08C164.514 109.258 164.448 109.449 164.448 109.654H163.184C163.184 109.39 163.252 109.128 163.389 108.868C163.525 108.608 163.721 108.374 163.977 108.164C164.236 107.95 164.546 107.781 164.906 107.658C165.271 107.531 165.676 107.467 166.123 107.467C166.661 107.467 167.135 107.558 167.545 107.74C167.96 107.923 168.283 108.198 168.516 108.567C168.753 108.932 168.871 109.39 168.871 109.941V113.387C168.871 113.633 168.892 113.895 168.933 114.173C168.978 114.451 169.044 114.69 169.131 114.891V115H167.812C167.748 114.854 167.698 114.66 167.661 114.419C167.625 114.173 167.606 113.945 167.606 113.735ZM167.825 110.516L167.839 111.404H166.561C166.201 111.404 165.879 111.434 165.597 111.493C165.314 111.548 165.077 111.632 164.886 111.746C164.694 111.86 164.549 112.004 164.448 112.177C164.348 112.345 164.298 112.544 164.298 112.771C164.298 113.004 164.35 113.216 164.455 113.407C164.56 113.599 164.717 113.751 164.927 113.865C165.141 113.975 165.403 114.029 165.713 114.029C166.1 114.029 166.442 113.947 166.738 113.783C167.035 113.619 167.269 113.419 167.442 113.182C167.62 112.945 167.716 112.715 167.729 112.491L168.27 113.1C168.238 113.291 168.151 113.503 168.01 113.735C167.868 113.968 167.679 114.191 167.442 114.405C167.21 114.615 166.932 114.79 166.608 114.932C166.289 115.068 165.929 115.137 165.528 115.137C165.027 115.137 164.587 115.039 164.209 114.843C163.835 114.647 163.544 114.385 163.334 114.057C163.129 113.724 163.026 113.353 163.026 112.942C163.026 112.546 163.104 112.197 163.259 111.896C163.414 111.591 163.637 111.338 163.929 111.138C164.22 110.933 164.571 110.778 164.981 110.673C165.392 110.568 165.85 110.516 166.355 110.516H167.825ZM173.957 107.604V108.574H169.958V107.604H173.957ZM171.312 105.806H172.576V113.168C172.576 113.419 172.615 113.608 172.692 113.735C172.77 113.863 172.87 113.947 172.993 113.988C173.116 114.029 173.248 114.05 173.39 114.05C173.494 114.05 173.604 114.041 173.718 114.022C173.836 114 173.925 113.981 173.984 113.968L173.991 115C173.891 115.032 173.759 115.062 173.595 115.089C173.435 115.121 173.242 115.137 173.014 115.137C172.704 115.137 172.419 115.075 172.159 114.952C171.899 114.829 171.692 114.624 171.537 114.337C171.387 114.045 171.312 113.653 171.312 113.161V105.806ZM176.814 107.604V115H175.543V107.604H176.814ZM175.447 105.642C175.447 105.437 175.509 105.263 175.632 105.122C175.759 104.981 175.946 104.91 176.192 104.91C176.434 104.91 176.618 104.981 176.746 105.122C176.878 105.263 176.944 105.437 176.944 105.642C176.944 105.838 176.878 106.006 176.746 106.147C176.618 106.284 176.434 106.353 176.192 106.353C175.946 106.353 175.759 106.284 175.632 106.147C175.509 106.006 175.447 105.838 175.447 105.642ZM178.51 111.384V111.227C178.51 110.693 178.587 110.199 178.742 109.743C178.897 109.283 179.12 108.884 179.412 108.547C179.704 108.205 180.057 107.941 180.472 107.754C180.886 107.562 181.351 107.467 181.866 107.467C182.386 107.467 182.853 107.562 183.268 107.754C183.687 107.941 184.042 108.205 184.334 108.547C184.63 108.884 184.856 109.283 185.011 109.743C185.166 110.199 185.243 110.693 185.243 111.227V111.384C185.243 111.917 185.166 112.411 185.011 112.867C184.856 113.323 184.63 113.722 184.334 114.063C184.042 114.401 183.689 114.665 183.274 114.856C182.864 115.043 182.399 115.137 181.88 115.137C181.36 115.137 180.893 115.043 180.479 114.856C180.064 114.665 179.708 114.401 179.412 114.063C179.12 113.722 178.897 113.323 178.742 112.867C178.587 112.411 178.51 111.917 178.51 111.384ZM179.774 111.227V111.384C179.774 111.753 179.818 112.102 179.904 112.43C179.991 112.753 180.121 113.04 180.294 113.291C180.472 113.542 180.693 113.74 180.957 113.886C181.221 114.027 181.529 114.098 181.88 114.098C182.226 114.098 182.529 114.027 182.789 113.886C183.053 113.74 183.272 113.542 183.445 113.291C183.618 113.04 183.748 112.753 183.835 112.43C183.926 112.102 183.972 111.753 183.972 111.384V111.227C183.972 110.862 183.926 110.518 183.835 110.194C183.748 109.866 183.616 109.577 183.438 109.326C183.265 109.071 183.047 108.87 182.782 108.725C182.522 108.579 182.217 108.506 181.866 108.506C181.52 108.506 181.215 108.579 180.95 108.725C180.69 108.87 180.472 109.071 180.294 109.326C180.121 109.577 179.991 109.866 179.904 110.194C179.818 110.518 179.774 110.862 179.774 111.227ZM188.094 109.183V115H186.829V107.604H188.025L188.094 109.183ZM187.793 111.021L187.267 111.001C187.271 110.495 187.346 110.028 187.492 109.6C187.638 109.167 187.843 108.791 188.107 108.472C188.372 108.153 188.686 107.907 189.051 107.733C189.42 107.556 189.828 107.467 190.274 107.467C190.639 107.467 190.967 107.517 191.259 107.617C191.55 107.713 191.799 107.868 192.004 108.082C192.214 108.296 192.373 108.574 192.482 108.916C192.592 109.253 192.646 109.666 192.646 110.153V115H191.375V110.14C191.375 109.752 191.318 109.442 191.204 109.21C191.09 108.973 190.924 108.802 190.705 108.697C190.486 108.588 190.217 108.533 189.898 108.533C189.584 108.533 189.297 108.599 189.037 108.731C188.782 108.864 188.561 109.046 188.374 109.278C188.192 109.511 188.048 109.777 187.943 110.078C187.843 110.374 187.793 110.689 187.793 111.021Z",fill:"#64748B"})),{AdvancedFields:en}=JetFBComponents,{__:Cn}=wp.i18n,{InspectorControls:tn,useBlockProps:ln}=wp.blockEditor?wp.blockEditor:wp.editor,rn=JSON.parse('{"apiVersion":3,"name":"jet-forms/group-break-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","conditonal"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Group Break Field","icon":"\\n\\n\\n\\n","attributes":{"visibility":{"type":"string","default":""},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:nn}=wp.i18n,{createBlock:an}=wp.blocks,{name:on,icon:sn=""}=rn,cn={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:sn}}),description:nn("Create a break between two fields with a horizontal line. Separate different form parts without dividing form on two pages.","jet-form-builder"),edit:function(e){const C=ln(),{isSelected:t,attributes:l,editProps:{uniqKey:r}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Qr):(0,h.createElement)(h.Fragment,null,t&&(0,h.createElement)(tn,{key:r("InspectorControls")},(0,h.createElement)(en,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{...C},(0,h.createElement)("div",{className:"jet-form-builder__group-break jet-form-builder__bottom-line"},(0,h.createElement)("span",null,Cn("GROUP BREAK","jet-form-builder")))))},useEditProps:["uniqKey"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>an("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["core/separator"],transform:()=>an("core/separator",{}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>an(on,{...e}),priority:0},{type:"block",blocks:["core/separator"],transform:()=>an(on,{}),priority:0}]}},dn=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_274_2880)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{width:"268",height:"143",transform:"translate(15 15)",fill:"white"}),(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V45H15V19Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M37.6562 29.3262V30.3994H32.2695V29.3262H37.6562ZM32.4746 25.0469V35H31.1553V25.0469H32.4746ZM38.8047 25.0469V35H37.4922V25.0469H38.8047ZM44.0273 35.1367C43.5124 35.1367 43.0452 35.0501 42.626 34.877C42.2113 34.6992 41.8535 34.4508 41.5527 34.1318C41.2565 33.8128 41.0286 33.4346 40.8691 32.9971C40.7096 32.5596 40.6299 32.0811 40.6299 31.5615V31.2744C40.6299 30.6729 40.7188 30.1374 40.8965 29.668C41.0742 29.194 41.3158 28.793 41.6211 28.4648C41.9264 28.1367 42.2728 27.8883 42.6602 27.7197C43.0475 27.5511 43.4486 27.4668 43.8633 27.4668C44.3919 27.4668 44.8477 27.5579 45.2305 27.7402C45.6178 27.9225 45.9346 28.1777 46.1807 28.5059C46.4268 28.8294 46.609 29.2122 46.7275 29.6543C46.846 30.0918 46.9053 30.5703 46.9053 31.0898V31.6572H41.3818V30.625H45.6406V30.5293C45.6224 30.2012 45.554 29.8822 45.4355 29.5723C45.3216 29.2624 45.1393 29.0072 44.8887 28.8066C44.638 28.6061 44.2962 28.5059 43.8633 28.5059C43.5762 28.5059 43.3118 28.5674 43.0703 28.6904C42.8288 28.8089 42.6214 28.9867 42.4482 29.2236C42.2751 29.4606 42.1406 29.75 42.0449 30.0918C41.9492 30.4336 41.9014 30.8278 41.9014 31.2744V31.5615C41.9014 31.9124 41.9492 32.2428 42.0449 32.5527C42.1452 32.8581 42.2887 33.127 42.4756 33.3594C42.667 33.5918 42.8971 33.7741 43.166 33.9062C43.4395 34.0384 43.7493 34.1045 44.0957 34.1045C44.5423 34.1045 44.9206 34.0133 45.2305 33.8311C45.5404 33.6488 45.8115 33.4049 46.0439 33.0996L46.8096 33.708C46.6501 33.9495 46.4473 34.1797 46.2012 34.3984C45.9551 34.6172 45.652 34.7949 45.292 34.9316C44.9365 35.0684 44.515 35.1367 44.0273 35.1367ZM52.7432 33.7354V29.9277C52.7432 29.6361 52.6839 29.3831 52.5654 29.1689C52.4515 28.9502 52.2783 28.7816 52.0459 28.6631C51.8135 28.5446 51.5264 28.4854 51.1846 28.4854C50.8656 28.4854 50.5853 28.54 50.3438 28.6494C50.1068 28.7588 49.9199 28.9023 49.7832 29.0801C49.651 29.2578 49.585 29.4492 49.585 29.6543H48.3203C48.3203 29.39 48.3887 29.1279 48.5254 28.8682C48.6621 28.6084 48.8581 28.3737 49.1133 28.1641C49.373 27.9499 49.6829 27.7812 50.043 27.6582C50.4076 27.5306 50.8132 27.4668 51.2598 27.4668C51.7975 27.4668 52.2715 27.5579 52.6816 27.7402C53.0964 27.9225 53.4199 28.1982 53.6523 28.5674C53.8893 28.932 54.0078 29.39 54.0078 29.9414V33.3867C54.0078 33.6328 54.0283 33.8949 54.0693 34.1729C54.1149 34.4508 54.181 34.6901 54.2676 34.8906V35H52.9482C52.8844 34.8542 52.8343 34.6605 52.7979 34.4189C52.7614 34.1729 52.7432 33.945 52.7432 33.7354ZM52.9619 30.5156L52.9756 31.4043H51.6973C51.3372 31.4043 51.016 31.4339 50.7334 31.4932C50.4508 31.5479 50.2139 31.6322 50.0225 31.7461C49.8311 31.86 49.6852 32.0036 49.585 32.1768C49.4847 32.3454 49.4346 32.5436 49.4346 32.7715C49.4346 33.0039 49.487 33.2158 49.5918 33.4072C49.6966 33.5986 49.8538 33.7513 50.0635 33.8652C50.2777 33.9746 50.5397 34.0293 50.8496 34.0293C51.237 34.0293 51.5788 33.9473 51.875 33.7832C52.1712 33.6191 52.4059 33.4186 52.5791 33.1816C52.7568 32.9447 52.8525 32.7145 52.8662 32.4912L53.4062 33.0996C53.3743 33.291 53.2878 33.5029 53.1465 33.7354C53.0052 33.9678 52.8161 34.1911 52.5791 34.4053C52.3467 34.6149 52.0687 34.7904 51.7451 34.9316C51.4261 35.0684 51.0661 35.1367 50.665 35.1367C50.1637 35.1367 49.724 35.0387 49.3457 34.8428C48.972 34.6468 48.6803 34.3848 48.4707 34.0566C48.2656 33.724 48.1631 33.3525 48.1631 32.9424C48.1631 32.5459 48.2406 32.1973 48.3955 31.8965C48.5505 31.5911 48.7738 31.3382 49.0654 31.1377C49.3571 30.9326 49.708 30.7777 50.1182 30.6729C50.5283 30.568 50.9863 30.5156 51.4922 30.5156H52.9619ZM60.6592 33.5645V24.5H61.9307V35H60.7686L60.6592 33.5645ZM55.6826 31.3838V31.2402C55.6826 30.6751 55.751 30.1624 55.8877 29.7021C56.029 29.2373 56.2272 28.8385 56.4824 28.5059C56.7422 28.1732 57.0498 27.918 57.4053 27.7402C57.7653 27.5579 58.1663 27.4668 58.6084 27.4668C59.0732 27.4668 59.4788 27.5488 59.8252 27.7129C60.1761 27.8724 60.4723 28.1071 60.7139 28.417C60.96 28.7223 61.1536 29.0915 61.2949 29.5244C61.4362 29.9574 61.5342 30.4473 61.5889 30.9941V31.623C61.5387 32.1654 61.4408 32.653 61.2949 33.0859C61.1536 33.5189 60.96 33.888 60.7139 34.1934C60.4723 34.4987 60.1761 34.7334 59.8252 34.8975C59.4743 35.057 59.0641 35.1367 58.5947 35.1367C58.1618 35.1367 57.7653 35.0433 57.4053 34.8564C57.0498 34.6696 56.7422 34.4076 56.4824 34.0703C56.2272 33.7331 56.029 33.3366 55.8877 32.8809C55.751 32.4206 55.6826 31.9215 55.6826 31.3838ZM56.9541 31.2402V31.3838C56.9541 31.7529 56.9906 32.0993 57.0635 32.4229C57.141 32.7464 57.2594 33.0312 57.4189 33.2773C57.5785 33.5234 57.7812 33.7171 58.0273 33.8584C58.2734 33.9951 58.5674 34.0635 58.9092 34.0635C59.3285 34.0635 59.6725 33.9746 59.9414 33.7969C60.2148 33.6191 60.4336 33.3844 60.5977 33.0928C60.7617 32.8011 60.8893 32.4844 60.9805 32.1426V30.4951C60.9258 30.2445 60.846 30.0029 60.7412 29.7705C60.641 29.5335 60.5088 29.3239 60.3447 29.1416C60.1852 28.9548 59.987 28.8066 59.75 28.6973C59.5176 28.5879 59.2419 28.5332 58.9229 28.5332C58.5765 28.5332 58.278 28.6061 58.0273 28.752C57.7812 28.8932 57.5785 29.0892 57.4189 29.3398C57.2594 29.5859 57.141 29.873 57.0635 30.2012C56.9906 30.5247 56.9541 30.8711 56.9541 31.2402ZM65.2734 27.6035V35H64.002V27.6035H65.2734ZM63.9062 25.6416C63.9062 25.4365 63.9678 25.2633 64.0908 25.1221C64.2184 24.9808 64.4053 24.9102 64.6514 24.9102C64.8929 24.9102 65.0775 24.9808 65.2051 25.1221C65.3372 25.2633 65.4033 25.4365 65.4033 25.6416C65.4033 25.8376 65.3372 26.0062 65.2051 26.1475C65.0775 26.2842 64.8929 26.3525 64.6514 26.3525C64.4053 26.3525 64.2184 26.2842 64.0908 26.1475C63.9678 26.0062 63.9062 25.8376 63.9062 25.6416ZM68.5684 29.1826V35H67.3037V27.6035H68.5L68.5684 29.1826ZM68.2676 31.0215L67.7412 31.001C67.7458 30.4951 67.821 30.028 67.9668 29.5996C68.1126 29.1667 68.3177 28.7907 68.582 28.4717C68.8464 28.1527 69.1608 27.9066 69.5254 27.7334C69.8945 27.5557 70.3024 27.4668 70.749 27.4668C71.1136 27.4668 71.4417 27.5169 71.7334 27.6172C72.0251 27.7129 72.2734 27.8678 72.4785 28.082C72.6882 28.2962 72.8477 28.5742 72.957 28.916C73.0664 29.2533 73.1211 29.6657 73.1211 30.1533V35H71.8496V30.1396C71.8496 29.7523 71.7926 29.4424 71.6787 29.21C71.5648 28.973 71.3984 28.8021 71.1797 28.6973C70.9609 28.5879 70.6921 28.5332 70.373 28.5332C70.0586 28.5332 69.7715 28.5993 69.5117 28.7314C69.2565 28.8636 69.0355 29.0459 68.8486 29.2783C68.6663 29.5107 68.5228 29.7773 68.418 30.0781C68.3177 30.3743 68.2676 30.6888 68.2676 31.0215ZM79.834 27.6035H80.9824V34.8428C80.9824 35.4945 80.8503 36.0505 80.5859 36.5107C80.3216 36.971 79.9525 37.3197 79.4785 37.5566C79.0091 37.7982 78.4668 37.9189 77.8516 37.9189C77.5964 37.9189 77.2956 37.8779 76.9492 37.7959C76.6074 37.7184 76.2702 37.584 75.9375 37.3926C75.6094 37.2057 75.3337 36.9528 75.1104 36.6338L75.7734 35.8818C76.0833 36.2555 76.4069 36.5153 76.7441 36.6611C77.0859 36.807 77.4232 36.8799 77.7559 36.8799C78.1569 36.8799 78.5033 36.8047 78.7949 36.6543C79.0866 36.5039 79.3122 36.2806 79.4717 35.9844C79.6357 35.6927 79.7178 35.3327 79.7178 34.9043V29.2305L79.834 27.6035ZM74.7412 31.3838V31.2402C74.7412 30.6751 74.8073 30.1624 74.9395 29.7021C75.0762 29.2373 75.2699 28.8385 75.5205 28.5059C75.7757 28.1732 76.0833 27.918 76.4434 27.7402C76.8034 27.5579 77.209 27.4668 77.6602 27.4668C78.125 27.4668 78.5306 27.5488 78.877 27.7129C79.2279 27.8724 79.5241 28.1071 79.7656 28.417C80.0117 28.7223 80.2054 29.0915 80.3467 29.5244C80.488 29.9574 80.5859 30.4473 80.6406 30.9941V31.623C80.5905 32.1654 80.4925 32.653 80.3467 33.0859C80.2054 33.5189 80.0117 33.888 79.7656 34.1934C79.5241 34.4987 79.2279 34.7334 78.877 34.8975C78.526 35.057 78.1159 35.1367 77.6465 35.1367C77.2044 35.1367 76.8034 35.0433 76.4434 34.8564C76.0879 34.6696 75.7826 34.4076 75.5273 34.0703C75.2721 33.7331 75.0762 33.3366 74.9395 32.8809C74.8073 32.4206 74.7412 31.9215 74.7412 31.3838ZM76.0059 31.2402V31.3838C76.0059 31.7529 76.0423 32.0993 76.1152 32.4229C76.1927 32.7464 76.3089 33.0312 76.4639 33.2773C76.6234 33.5234 76.8262 33.7171 77.0723 33.8584C77.3184 33.9951 77.6123 34.0635 77.9541 34.0635C78.3734 34.0635 78.7197 33.9746 78.9932 33.7969C79.2666 33.6191 79.4831 33.3844 79.6426 33.0928C79.8066 32.8011 79.9342 32.4844 80.0254 32.1426V30.4951C79.9753 30.2445 79.8978 30.0029 79.793 29.7705C79.6927 29.5335 79.5605 29.3239 79.3965 29.1416C79.237 28.9548 79.0387 28.8066 78.8018 28.6973C78.5648 28.5879 78.2868 28.5332 77.9678 28.5332C77.6214 28.5332 77.3229 28.6061 77.0723 28.752C76.8262 28.8932 76.6234 29.0892 76.4639 29.3398C76.3089 29.5859 76.1927 29.873 76.1152 30.2012C76.0423 30.5247 76.0059 30.8711 76.0059 31.2402Z",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"55",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"25.5",y:"64.5",width:"247",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"25.5",y:"64.5",width:"247",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("rect",{x:"25",y:"109",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"25.5",y:"118.5",width:"247",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"25.5",y:"118.5",width:"247",height:"29",rx:"3.5",stroke:"#E2E8F0"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_274_2880"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})))),{GeneralFields:mn,AdvancedFields:un,FieldWrapper:pn}=JetFBComponents,{InspectorControls:fn,useBlockProps:Vn}=wp.blockEditor?wp.blockEditor:wp.editor,Hn=JSON.parse('{"apiVersion":3,"name":"jet-forms/heading-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","field","heading"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Heading Field","icon":"\\n\\n","attributes":{"label":{"type":"string","default":"","jfb":{"rich":true}},"desc":{"type":"string","default":"","jfb":{"rich":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:hn}=wp.i18n,{createBlock:bn}=wp.blocks,{name:Mn,icon:Ln=""}=Hn,gn={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ln}}),description:hn("Build a heading for the form that can’t be changed by the users. Add the labels and descriptions to the different parts of the form.","jet-form-builder"),edit:function(e){const C=Vn(),{isSelected:t,attributes:l,editProps:{uniqKey:r}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},dn):[t&&(0,h.createElement)(fn,{key:r("InspectorControls")},(0,h.createElement)(mn,{key:r("GeneralFields"),...e}),(0,h.createElement)(un,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{...C,key:r("viewBlock")},(0,h.createElement)(pn,{key:r("FieldWrapper"),valueIfEmptyLabel:"Heading",...e}))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},__experimentalLabel:(e,{context:C})=>{if("list-view"===C)return e.label||Hn.title},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>bn("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["core/paragraph"],transform:({label:e=""})=>bn("core/paragraph",{content:e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>bn(Mn,{...e}),priority:0},{type:"block",blocks:["core/paragraph"],transform:({content:e=""})=>bn(Mn,{label:e}),priority:0}]}},{ToggleControl:Zn,withFilters:yn}=wp.components,{__:En}=wp.i18n,{useBlockAttributes:wn}=JetFBHooks;let vn=function(){const[e,C]=wn();return(0,h.createElement)(h.Fragment,null,"referer_url"!==e.field_value&&(0,h.createElement)(Zn,{label:En("Render in HTML","jet-form-builder"),checked:e.render,help:En("Enable this option if you use this field in Calculated Field, Conditional Block, Advanced Validation, Global Macros, or Dynamic Value.","jet-form-builder"),onChange:e=>C({render:Boolean(e)})}),(0,h.createElement)(Zn,{label:En("Return the raw value","jet-form-builder"),help:En("If this option is enabled, the value of the field will be JSON-encoded if the value is an array or object","jet-form-builder"),checked:e.return_raw,onChange:e=>C({return_raw:e})}))};vn=yn("jfb.hidden-field.header.controls")(vn);const _n=vn,{__:kn}=wp.i18n,{TextControl:jn,withFilters:xn}=wp.components;let Fn=function({attributes:e,setAttributes:C}){return(0,h.createElement)(h.Fragment,null,["post_meta","user_meta"].includes(e.field_value)&&(0,h.createElement)(jn,{key:"hidden_value_field",label:"Meta Field to Get Value From",value:e.hidden_value_field,onChange:e=>C({hidden_value_field:e})}),"query_var"===e.field_value&&(0,h.createElement)(jn,{key:"query_var_key",label:"Query Variable Key",value:e.query_var_key,onChange:e=>C({query_var_key:e})}),"current_date"===e.field_value&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(jn,{key:"date_format",label:"Format",value:e.date_format,onChange:e=>C({date_format:e})}),(0,h.createElement)("b",null,kn("Example:","jet-form-builder")),(0,h.createElement)("br",null),(0,h.createElement)("i",null,"Y-m-d\\TH:i - "),kn("datetime format","jet-form-builder"),(0,h.createElement)("br",null),(0,h.createElement)("i",null,"U - "),kn("timestamp format","jet-form-builder")),"manual_input"===e.field_value&&(0,h.createElement)(jn,{key:"hidden_value",label:"Value",value:e.hidden_value,onChange:e=>{C({hidden_value:e})}}))};Fn=xn("jfb.hidden-field.field-value.controls")(Fn);const Bn=Fn,{useBlockAttributes:An}=JetFBHooks,{SelectControl:Pn}=wp.components,Sn=function(){const[e,C]=An();return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(_n,{attributes:e,setAttributes:C}),(0,h.createElement)(Pn,{key:"field_value",label:"Field Value",labelPosition:"top",value:e.field_value,onChange:t=>{C({field_value:t}),(t=>{!t||e.name&&"hidden_field_name"!==e.name||C({name:t})})(t)},options:JetFormHiddenField.sources}),(0,h.createElement)(Bn,{attributes:e,setAttributes:C}))},Nn=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("g",{clipPath:"url(#clip0_75_1466)"},(0,h.createElement)("path",{d:"M22.6562 48.3262V49.3994H17.2695V48.3262H22.6562ZM17.4746 44.0469V54H16.1553V44.0469H17.4746ZM23.8047 44.0469V54H22.4922V44.0469H23.8047ZM27.332 46.6035V54H26.0605V46.6035H27.332ZM25.9648 44.6416C25.9648 44.4365 26.0264 44.2633 26.1494 44.1221C26.277 43.9808 26.4639 43.9102 26.71 43.9102C26.9515 43.9102 27.1361 43.9808 27.2637 44.1221C27.3958 44.2633 27.4619 44.4365 27.4619 44.6416C27.4619 44.8376 27.3958 45.0062 27.2637 45.1475C27.1361 45.2842 26.9515 45.3525 26.71 45.3525C26.4639 45.3525 26.277 45.2842 26.1494 45.1475C26.0264 45.0062 25.9648 44.8376 25.9648 44.6416ZM34.0244 52.5645V43.5H35.2959V54H34.1338L34.0244 52.5645ZM29.0479 50.3838V50.2402C29.0479 49.6751 29.1162 49.1624 29.2529 48.7021C29.3942 48.2373 29.5924 47.8385 29.8477 47.5059C30.1074 47.1732 30.415 46.918 30.7705 46.7402C31.1305 46.5579 31.5316 46.4668 31.9736 46.4668C32.4385 46.4668 32.8441 46.5488 33.1904 46.7129C33.5413 46.8724 33.8376 47.1071 34.0791 47.417C34.3252 47.7223 34.5189 48.0915 34.6602 48.5244C34.8014 48.9574 34.8994 49.4473 34.9541 49.9941V50.623C34.904 51.1654 34.806 51.653 34.6602 52.0859C34.5189 52.5189 34.3252 52.888 34.0791 53.1934C33.8376 53.4987 33.5413 53.7334 33.1904 53.8975C32.8395 54.057 32.4294 54.1367 31.96 54.1367C31.527 54.1367 31.1305 54.0433 30.7705 53.8564C30.415 53.6696 30.1074 53.4076 29.8477 53.0703C29.5924 52.7331 29.3942 52.3366 29.2529 51.8809C29.1162 51.4206 29.0479 50.9215 29.0479 50.3838ZM30.3193 50.2402V50.3838C30.3193 50.7529 30.3558 51.0993 30.4287 51.4229C30.5062 51.7464 30.6247 52.0312 30.7842 52.2773C30.9437 52.5234 31.1465 52.7171 31.3926 52.8584C31.6387 52.9951 31.9326 53.0635 32.2744 53.0635C32.6937 53.0635 33.0378 52.9746 33.3066 52.7969C33.5801 52.6191 33.7988 52.3844 33.9629 52.0928C34.127 51.8011 34.2546 51.4844 34.3457 51.1426V49.4951C34.291 49.2445 34.2113 49.0029 34.1064 48.7705C34.0062 48.5335 33.874 48.3239 33.71 48.1416C33.5505 47.9548 33.3522 47.8066 33.1152 47.6973C32.8828 47.5879 32.6071 47.5332 32.2881 47.5332C31.9417 47.5332 31.6432 47.6061 31.3926 47.752C31.1465 47.8932 30.9437 48.0892 30.7842 48.3398C30.6247 48.5859 30.5062 48.873 30.4287 49.2012C30.3558 49.5247 30.3193 49.8711 30.3193 50.2402ZM41.9268 52.5645V43.5H43.1982V54H42.0361L41.9268 52.5645ZM36.9502 50.3838V50.2402C36.9502 49.6751 37.0186 49.1624 37.1553 48.7021C37.2965 48.2373 37.4948 47.8385 37.75 47.5059C38.0098 47.1732 38.3174 46.918 38.6729 46.7402C39.0329 46.5579 39.4339 46.4668 39.876 46.4668C40.3408 46.4668 40.7464 46.5488 41.0928 46.7129C41.4437 46.8724 41.7399 47.1071 41.9814 47.417C42.2275 47.7223 42.4212 48.0915 42.5625 48.5244C42.7038 48.9574 42.8018 49.4473 42.8564 49.9941V50.623C42.8063 51.1654 42.7083 51.653 42.5625 52.0859C42.4212 52.5189 42.2275 52.888 41.9814 53.1934C41.7399 53.4987 41.4437 53.7334 41.0928 53.8975C40.7419 54.057 40.3317 54.1367 39.8623 54.1367C39.4294 54.1367 39.0329 54.0433 38.6729 53.8564C38.3174 53.6696 38.0098 53.4076 37.75 53.0703C37.4948 52.7331 37.2965 52.3366 37.1553 51.8809C37.0186 51.4206 36.9502 50.9215 36.9502 50.3838ZM38.2217 50.2402V50.3838C38.2217 50.7529 38.2581 51.0993 38.3311 51.4229C38.4085 51.7464 38.527 52.0312 38.6865 52.2773C38.846 52.5234 39.0488 52.7171 39.2949 52.8584C39.541 52.9951 39.835 53.0635 40.1768 53.0635C40.596 53.0635 40.9401 52.9746 41.209 52.7969C41.4824 52.6191 41.7012 52.3844 41.8652 52.0928C42.0293 51.8011 42.1569 51.4844 42.248 51.1426V49.4951C42.1934 49.2445 42.1136 49.0029 42.0088 48.7705C41.9085 48.5335 41.7764 48.3239 41.6123 48.1416C41.4528 47.9548 41.2546 47.8066 41.0176 47.6973C40.7852 47.5879 40.5094 47.5332 40.1904 47.5332C39.8441 47.5332 39.5456 47.6061 39.2949 47.752C39.0488 47.8932 38.846 48.0892 38.6865 48.3398C38.527 48.5859 38.4085 48.873 38.3311 49.2012C38.2581 49.5247 38.2217 49.8711 38.2217 50.2402ZM48.2363 54.1367C47.7214 54.1367 47.2542 54.0501 46.835 53.877C46.4202 53.6992 46.0625 53.4508 45.7617 53.1318C45.4655 52.8128 45.2376 52.4346 45.0781 51.9971C44.9186 51.5596 44.8389 51.0811 44.8389 50.5615V50.2744C44.8389 49.6729 44.9277 49.1374 45.1055 48.668C45.2832 48.194 45.5247 47.793 45.8301 47.4648C46.1354 47.1367 46.4818 46.8883 46.8691 46.7197C47.2565 46.5511 47.6576 46.4668 48.0723 46.4668C48.6009 46.4668 49.0566 46.5579 49.4395 46.7402C49.8268 46.9225 50.1436 47.1777 50.3896 47.5059C50.6357 47.8294 50.818 48.2122 50.9365 48.6543C51.055 49.0918 51.1143 49.5703 51.1143 50.0898V50.6572H45.5908V49.625H49.8496V49.5293C49.8314 49.2012 49.763 48.8822 49.6445 48.5723C49.5306 48.2624 49.3483 48.0072 49.0977 47.8066C48.847 47.6061 48.5052 47.5059 48.0723 47.5059C47.7852 47.5059 47.5208 47.5674 47.2793 47.6904C47.0378 47.8089 46.8304 47.9867 46.6572 48.2236C46.484 48.4606 46.3496 48.75 46.2539 49.0918C46.1582 49.4336 46.1104 49.8278 46.1104 50.2744V50.5615C46.1104 50.9124 46.1582 51.2428 46.2539 51.5527C46.3542 51.8581 46.4977 52.127 46.6846 52.3594C46.876 52.5918 47.1061 52.7741 47.375 52.9062C47.6484 53.0384 47.9583 53.1045 48.3047 53.1045C48.7513 53.1045 49.1296 53.0133 49.4395 52.8311C49.7493 52.6488 50.0205 52.4049 50.2529 52.0996L51.0186 52.708C50.859 52.9495 50.6562 53.1797 50.4102 53.3984C50.1641 53.6172 49.861 53.7949 49.501 53.9316C49.1455 54.0684 48.724 54.1367 48.2363 54.1367ZM53.8555 48.1826V54H52.5908V46.6035H53.7871L53.8555 48.1826ZM53.5547 50.0215L53.0283 50.001C53.0329 49.4951 53.1081 49.028 53.2539 48.5996C53.3997 48.1667 53.6048 47.7907 53.8691 47.4717C54.1335 47.1527 54.4479 46.9066 54.8125 46.7334C55.1816 46.5557 55.5895 46.4668 56.0361 46.4668C56.4007 46.4668 56.7288 46.5169 57.0205 46.6172C57.3122 46.7129 57.5605 46.8678 57.7656 47.082C57.9753 47.2962 58.1348 47.5742 58.2441 47.916C58.3535 48.2533 58.4082 48.6657 58.4082 49.1533V54H57.1367V49.1396C57.1367 48.7523 57.0798 48.4424 56.9658 48.21C56.8519 47.973 56.6855 47.8021 56.4668 47.6973C56.248 47.5879 55.9792 47.5332 55.6602 47.5332C55.3457 47.5332 55.0586 47.5993 54.7988 47.7314C54.5436 47.8636 54.3226 48.0459 54.1357 48.2783C53.9535 48.5107 53.8099 48.7773 53.7051 49.0781C53.6048 49.3743 53.5547 49.6888 53.5547 50.0215ZM65.4902 54H64.2256V45.9609C64.2256 45.4004 64.335 44.9264 64.5537 44.5391C64.7725 44.1517 65.0846 43.8577 65.4902 43.6572C65.8958 43.4567 66.3766 43.3564 66.9326 43.3564C67.2607 43.3564 67.582 43.3975 67.8965 43.4795C68.2109 43.557 68.5345 43.6549 68.8672 43.7734L68.6553 44.8398C68.4456 44.7578 68.2018 44.6803 67.9238 44.6074C67.6504 44.5299 67.3496 44.4912 67.0215 44.4912C66.4792 44.4912 66.0872 44.6143 65.8457 44.8604C65.6087 45.1019 65.4902 45.4688 65.4902 45.9609V54ZM67.001 46.6035V47.5742H63.0566V46.6035H67.001ZM69.4893 46.6035V54H68.2246V46.6035H69.4893ZM74.6367 54.1367C74.1217 54.1367 73.6546 54.0501 73.2354 53.877C72.8206 53.6992 72.4629 53.4508 72.1621 53.1318C71.8659 52.8128 71.638 52.4346 71.4785 51.9971C71.319 51.5596 71.2393 51.0811 71.2393 50.5615V50.2744C71.2393 49.6729 71.3281 49.1374 71.5059 48.668C71.6836 48.194 71.9251 47.793 72.2305 47.4648C72.5358 47.1367 72.8822 46.8883 73.2695 46.7197C73.6569 46.5511 74.0579 46.4668 74.4727 46.4668C75.0013 46.4668 75.457 46.5579 75.8398 46.7402C76.2272 46.9225 76.5439 47.1777 76.79 47.5059C77.0361 47.8294 77.2184 48.2122 77.3369 48.6543C77.4554 49.0918 77.5146 49.5703 77.5146 50.0898V50.6572H71.9912V49.625H76.25V49.5293C76.2318 49.2012 76.1634 48.8822 76.0449 48.5723C75.931 48.2624 75.7487 48.0072 75.498 47.8066C75.2474 47.6061 74.9056 47.5059 74.4727 47.5059C74.1855 47.5059 73.9212 47.5674 73.6797 47.6904C73.4382 47.8089 73.2308 47.9867 73.0576 48.2236C72.8844 48.4606 72.75 48.75 72.6543 49.0918C72.5586 49.4336 72.5107 49.8278 72.5107 50.2744V50.5615C72.5107 50.9124 72.5586 51.2428 72.6543 51.5527C72.7546 51.8581 72.8981 52.127 73.085 52.3594C73.2764 52.5918 73.5065 52.7741 73.7754 52.9062C74.0488 53.0384 74.3587 53.1045 74.7051 53.1045C75.1517 53.1045 75.5299 53.0133 75.8398 52.8311C76.1497 52.6488 76.4209 52.4049 76.6533 52.0996L77.4189 52.708C77.2594 52.9495 77.0566 53.1797 76.8105 53.3984C76.5645 53.6172 76.2614 53.7949 75.9014 53.9316C75.5459 54.0684 75.1243 54.1367 74.6367 54.1367ZM80.3652 43.5V54H79.0938V43.5H80.3652ZM87.0576 52.5645V43.5H88.3291V54H87.167L87.0576 52.5645ZM82.0811 50.3838V50.2402C82.0811 49.6751 82.1494 49.1624 82.2861 48.7021C82.4274 48.2373 82.6257 47.8385 82.8809 47.5059C83.1406 47.1732 83.4482 46.918 83.8037 46.7402C84.1637 46.5579 84.5648 46.4668 85.0068 46.4668C85.4717 46.4668 85.8773 46.5488 86.2236 46.7129C86.5745 46.8724 86.8708 47.1071 87.1123 47.417C87.3584 47.7223 87.5521 48.0915 87.6934 48.5244C87.8346 48.9574 87.9326 49.4473 87.9873 49.9941V50.623C87.9372 51.1654 87.8392 51.653 87.6934 52.0859C87.5521 52.5189 87.3584 52.888 87.1123 53.1934C86.8708 53.4987 86.5745 53.7334 86.2236 53.8975C85.8727 54.057 85.4626 54.1367 84.9932 54.1367C84.5602 54.1367 84.1637 54.0433 83.8037 53.8564C83.4482 53.6696 83.1406 53.4076 82.8809 53.0703C82.6257 52.7331 82.4274 52.3366 82.2861 51.8809C82.1494 51.4206 82.0811 50.9215 82.0811 50.3838ZM83.3525 50.2402V50.3838C83.3525 50.7529 83.389 51.0993 83.4619 51.4229C83.5394 51.7464 83.6579 52.0312 83.8174 52.2773C83.9769 52.5234 84.1797 52.7171 84.4258 52.8584C84.6719 52.9951 84.9658 53.0635 85.3076 53.0635C85.7269 53.0635 86.071 52.9746 86.3398 52.7969C86.6133 52.6191 86.832 52.3844 86.9961 52.0928C87.1602 51.8011 87.2878 51.4844 87.3789 51.1426V49.4951C87.3242 49.2445 87.2445 49.0029 87.1396 48.7705C87.0394 48.5335 86.9072 48.3239 86.7432 48.1416C86.5837 47.9548 86.3854 47.8066 86.1484 47.6973C85.916 47.5879 85.6403 47.5332 85.3213 47.5332C84.9749 47.5332 84.6764 47.6061 84.4258 47.752C84.1797 47.8932 83.9769 48.0892 83.8174 48.3398C83.6579 48.5859 83.5394 48.873 83.4619 49.2012C83.389 49.5247 83.3525 49.8711 83.3525 50.2402ZM94.6045 52.0381C94.6045 51.8558 94.5635 51.6872 94.4814 51.5322C94.404 51.3727 94.2422 51.2292 93.9961 51.1016C93.7546 50.9694 93.39 50.8555 92.9023 50.7598C92.4922 50.6732 92.1208 50.5706 91.7881 50.4521C91.46 50.3337 91.1797 50.1901 90.9473 50.0215C90.7194 49.8529 90.5439 49.6546 90.4209 49.4268C90.2979 49.1989 90.2363 48.9323 90.2363 48.627C90.2363 48.3353 90.3001 48.0596 90.4277 47.7998C90.5599 47.54 90.7445 47.3099 90.9814 47.1094C91.223 46.9089 91.5124 46.7516 91.8496 46.6377C92.1868 46.5238 92.5628 46.4668 92.9775 46.4668C93.57 46.4668 94.0758 46.5716 94.4951 46.7812C94.9144 46.9909 95.2357 47.2712 95.459 47.6221C95.6823 47.9684 95.7939 48.3535 95.7939 48.7773H94.5293C94.5293 48.5723 94.4678 48.374 94.3447 48.1826C94.2262 47.9867 94.0508 47.8249 93.8184 47.6973C93.5905 47.5697 93.3102 47.5059 92.9775 47.5059C92.6266 47.5059 92.3418 47.5605 92.123 47.6699C91.9089 47.7747 91.7516 47.9092 91.6514 48.0732C91.5557 48.2373 91.5078 48.4105 91.5078 48.5928C91.5078 48.7295 91.5306 48.8525 91.5762 48.9619C91.6263 49.0667 91.7129 49.1647 91.8359 49.2559C91.959 49.3424 92.1322 49.4245 92.3555 49.502C92.5788 49.5794 92.8636 49.6569 93.21 49.7344C93.8161 49.8711 94.3151 50.0352 94.707 50.2266C95.099 50.418 95.3906 50.6527 95.582 50.9307C95.7734 51.2087 95.8691 51.5459 95.8691 51.9424C95.8691 52.266 95.8008 52.5622 95.6641 52.8311C95.5319 53.0999 95.3382 53.3324 95.083 53.5283C94.8324 53.7197 94.5316 53.8701 94.1807 53.9795C93.8343 54.0843 93.4447 54.1367 93.0117 54.1367C92.36 54.1367 91.8086 54.0205 91.3574 53.7881C90.9062 53.5557 90.5645 53.2549 90.332 52.8857C90.0996 52.5166 89.9834 52.127 89.9834 51.7168H91.2549C91.2731 52.0632 91.3734 52.3389 91.5557 52.5439C91.738 52.7445 91.9613 52.888 92.2256 52.9746C92.4899 53.0566 92.752 53.0977 93.0117 53.0977C93.3581 53.0977 93.6475 53.0521 93.8799 52.9609C94.1169 52.8698 94.2969 52.7445 94.4199 52.585C94.543 52.4255 94.6045 52.2432 94.6045 52.0381Z",fill:"#64748B"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1466)"},(0,h.createElement)("path",{d:"M24.0001 67.25C26.0701 67.25 27.7501 68.93 27.7501 71C27.7501 71.4875 27.6526 71.945 27.4801 72.3725L29.6701 74.5625C30.8026 73.6175 31.6951 72.395 32.2426 71C30.9451 67.7075 27.7426 65.375 23.9926 65.375C22.9426 65.375 21.9376 65.5625 21.0076 65.9L22.6276 67.52C23.0551 67.3475 23.5126 67.25 24.0001 67.25ZM16.5001 65.2025L18.2101 66.9125L18.5551 67.2575C17.3101 68.225 16.3351 69.515 15.7501 71C17.0476 74.2925 20.2501 76.625 24.0001 76.625C25.1626 76.625 26.2726 76.4 27.2851 75.995L27.6001 76.31L29.7976 78.5L30.7501 77.5475L17.4526 64.25L16.5001 65.2025ZM20.6476 69.35L21.8101 70.5125C21.7726 70.67 21.7501 70.835 21.7501 71C21.7501 72.245 22.7551 73.25 24.0001 73.25C24.1651 73.25 24.3301 73.2275 24.4876 73.19L25.6501 74.3525C25.1476 74.6 24.5926 74.75 24.0001 74.75C21.9301 74.75 20.2501 73.07 20.2501 71C20.2501 70.4075 20.4001 69.8525 20.6476 69.35ZM23.8801 68.765L26.2426 71.1275L26.2576 71.0075C26.2576 69.7625 25.2526 68.7575 24.0076 68.7575L23.8801 68.765Z",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M40.0693 65.75V75.5H38.895V65.75H40.0693ZM39.79 71.8057L39.3013 71.7866C39.3055 71.3169 39.3753 70.8831 39.5107 70.4854C39.6462 70.0833 39.8366 69.7342 40.082 69.438C40.3275 69.1418 40.6195 68.9132 40.958 68.7524C41.3008 68.5874 41.6795 68.5049 42.0942 68.5049C42.4328 68.5049 42.7375 68.5514 43.0083 68.6445C43.2791 68.7334 43.5098 68.8773 43.7002 69.0762C43.8949 69.2751 44.043 69.5332 44.1445 69.8506C44.2461 70.1637 44.2969 70.5467 44.2969 70.9995V75.5H43.1162V70.9868C43.1162 70.6271 43.0633 70.3394 42.9575 70.1235C42.8517 69.9035 42.6973 69.7448 42.4941 69.6475C42.291 69.5459 42.0413 69.4951 41.7451 69.4951C41.4531 69.4951 41.1865 69.5565 40.9453 69.6792C40.7083 69.8019 40.5031 69.9712 40.3296 70.187C40.1603 70.4028 40.027 70.6504 39.9297 70.9297C39.8366 71.2048 39.79 71.4967 39.79 71.8057ZM47.3311 68.6318V75.5H46.1504V68.6318H47.3311ZM46.0615 66.8101C46.0615 66.6196 46.1187 66.4588 46.2329 66.3276C46.3514 66.1965 46.5249 66.1309 46.7534 66.1309C46.9777 66.1309 47.1491 66.1965 47.2676 66.3276C47.3903 66.4588 47.4517 66.6196 47.4517 66.8101C47.4517 66.992 47.3903 67.1486 47.2676 67.2798C47.1491 67.4067 46.9777 67.4702 46.7534 67.4702C46.5249 67.4702 46.3514 67.4067 46.2329 67.2798C46.1187 67.1486 46.0615 66.992 46.0615 66.8101ZM53.5454 74.167V65.75H54.7261V75.5H53.647L53.5454 74.167ZM48.9243 72.1421V72.0088C48.9243 71.484 48.9878 71.008 49.1147 70.5806C49.2459 70.1489 49.43 69.7786 49.667 69.4697C49.9082 69.1608 50.1938 68.9238 50.5239 68.7588C50.8582 68.5895 51.2306 68.5049 51.6411 68.5049C52.0728 68.5049 52.4494 68.5811 52.771 68.7334C53.0968 68.8815 53.3719 69.0994 53.5962 69.3872C53.8247 69.6707 54.0046 70.0135 54.1357 70.4155C54.2669 70.8175 54.3579 71.2725 54.4087 71.7803V72.3643C54.3621 72.8678 54.2712 73.3206 54.1357 73.7227C54.0046 74.1247 53.8247 74.4674 53.5962 74.751C53.3719 75.0345 53.0968 75.2524 52.771 75.4048C52.4451 75.5529 52.0643 75.627 51.6284 75.627C51.2264 75.627 50.8582 75.5402 50.5239 75.3667C50.1938 75.1932 49.9082 74.9499 49.667 74.6367C49.43 74.3236 49.2459 73.9554 49.1147 73.5322C48.9878 73.1048 48.9243 72.6414 48.9243 72.1421ZM50.105 72.0088V72.1421C50.105 72.4849 50.1388 72.8065 50.2065 73.1069C50.2785 73.4074 50.3885 73.6719 50.5366 73.9004C50.6847 74.1289 50.873 74.3088 51.1016 74.4399C51.3301 74.5669 51.603 74.6304 51.9204 74.6304C52.3097 74.6304 52.6292 74.5479 52.8789 74.3828C53.1328 74.2178 53.3359 73.9998 53.4883 73.729C53.6406 73.4582 53.7591 73.1641 53.8438 72.8467V71.3169C53.793 71.0841 53.7189 70.8599 53.6216 70.644C53.5285 70.424 53.4058 70.2293 53.2534 70.0601C53.1053 69.8866 52.9212 69.749 52.7012 69.6475C52.4854 69.5459 52.2293 69.4951 51.9331 69.4951C51.6115 69.4951 51.3343 69.5628 51.1016 69.6982C50.873 69.8294 50.6847 70.0114 50.5366 70.2441C50.3885 70.4727 50.2785 70.7393 50.2065 71.0439C50.1388 71.3444 50.105 71.666 50.105 72.0088ZM60.8833 74.167V65.75H62.064V75.5H60.9849L60.8833 74.167ZM56.2622 72.1421V72.0088C56.2622 71.484 56.3257 71.008 56.4526 70.5806C56.5838 70.1489 56.7679 69.7786 57.0049 69.4697C57.2461 69.1608 57.5317 68.9238 57.8618 68.7588C58.1961 68.5895 58.5685 68.5049 58.979 68.5049C59.4106 68.5049 59.7873 68.5811 60.1089 68.7334C60.4347 68.8815 60.7098 69.0994 60.9341 69.3872C61.1626 69.6707 61.3424 70.0135 61.4736 70.4155C61.6048 70.8175 61.6958 71.2725 61.7466 71.7803V72.3643C61.7 72.8678 61.609 73.3206 61.4736 73.7227C61.3424 74.1247 61.1626 74.4674 60.9341 74.751C60.7098 75.0345 60.4347 75.2524 60.1089 75.4048C59.783 75.5529 59.4022 75.627 58.9663 75.627C58.5643 75.627 58.1961 75.5402 57.8618 75.3667C57.5317 75.1932 57.2461 74.9499 57.0049 74.6367C56.7679 74.3236 56.5838 73.9554 56.4526 73.5322C56.3257 73.1048 56.2622 72.6414 56.2622 72.1421ZM57.4429 72.0088V72.1421C57.4429 72.4849 57.4767 72.8065 57.5444 73.1069C57.6164 73.4074 57.7264 73.6719 57.8745 73.9004C58.0226 74.1289 58.2109 74.3088 58.4395 74.4399C58.668 74.5669 58.9409 74.6304 59.2583 74.6304C59.6476 74.6304 59.9671 74.5479 60.2168 74.3828C60.4707 74.2178 60.6738 73.9998 60.8262 73.729C60.9785 73.4582 61.097 73.1641 61.1816 72.8467V71.3169C61.1309 71.0841 61.0568 70.8599 60.9595 70.644C60.8664 70.424 60.7437 70.2293 60.5913 70.0601C60.4432 69.8866 60.2591 69.749 60.0391 69.6475C59.8232 69.5459 59.5672 69.4951 59.271 69.4951C58.9494 69.4951 58.6722 69.5628 58.4395 69.6982C58.2109 69.8294 58.0226 70.0114 57.8745 70.2441C57.7264 70.4727 57.6164 70.7393 57.5444 71.0439C57.4767 71.3444 57.4429 71.666 57.4429 72.0088ZM66.7422 75.627C66.264 75.627 65.8302 75.5465 65.4409 75.3857C65.0558 75.2207 64.7236 74.9901 64.4443 74.6938C64.1693 74.3976 63.9577 74.0464 63.8096 73.6401C63.6615 73.2339 63.5874 72.7896 63.5874 72.3071V72.0405C63.5874 71.4819 63.6699 70.9847 63.835 70.5488C64 70.1087 64.2243 69.7363 64.5078 69.4316C64.7913 69.127 65.113 68.8963 65.4727 68.7397C65.8324 68.5832 66.2048 68.5049 66.5898 68.5049C67.0807 68.5049 67.5039 68.5895 67.8594 68.7588C68.2191 68.9281 68.5132 69.165 68.7417 69.4697C68.9702 69.7702 69.1395 70.1257 69.2495 70.5361C69.3595 70.9424 69.4146 71.3867 69.4146 71.8691V72.396H64.2856V71.4375H68.2402V71.3486C68.2233 71.0439 68.1598 70.7477 68.0498 70.46C67.944 70.1722 67.7747 69.9352 67.542 69.749C67.3092 69.5628 66.9919 69.4697 66.5898 69.4697C66.3232 69.4697 66.0778 69.5269 65.8535 69.6411C65.6292 69.7511 65.4367 69.9162 65.2759 70.1362C65.1151 70.3563 64.9902 70.625 64.9014 70.9424C64.8125 71.2598 64.7681 71.6258 64.7681 72.0405V72.3071C64.7681 72.633 64.8125 72.9398 64.9014 73.2275C64.9945 73.5111 65.1278 73.7607 65.3013 73.9766C65.479 74.1924 65.6927 74.3617 65.9424 74.4844C66.1963 74.6071 66.484 74.6685 66.8057 74.6685C67.2204 74.6685 67.5716 74.5838 67.8594 74.4146C68.1471 74.2453 68.3989 74.0189 68.6147 73.7354L69.3257 74.3003C69.1776 74.5246 68.9893 74.7383 68.7607 74.9414C68.5322 75.1445 68.2508 75.3096 67.9165 75.4365C67.5864 75.5635 67.195 75.627 66.7422 75.627ZM71.96 70.0981V75.5H70.7856V68.6318H71.8965L71.96 70.0981ZM71.6807 71.8057L71.1919 71.7866C71.1961 71.3169 71.266 70.8831 71.4014 70.4854C71.5368 70.0833 71.7272 69.7342 71.9727 69.438C72.2181 69.1418 72.5101 68.9132 72.8486 68.7524C73.1914 68.5874 73.5701 68.5049 73.9849 68.5049C74.3234 68.5049 74.6281 68.5514 74.8989 68.6445C75.1698 68.7334 75.4004 68.8773 75.5908 69.0762C75.7855 69.2751 75.9336 69.5332 76.0352 69.8506C76.1367 70.1637 76.1875 70.5467 76.1875 70.9995V75.5H75.0068V70.9868C75.0068 70.6271 74.9539 70.3394 74.8481 70.1235C74.7424 69.9035 74.5879 69.7448 74.3848 69.6475C74.1816 69.5459 73.932 69.4951 73.6357 69.4951C73.3438 69.4951 73.0771 69.5565 72.8359 69.6792C72.599 69.8019 72.3937 69.9712 72.2202 70.187C72.0509 70.4028 71.9176 70.6504 71.8203 70.9297C71.7272 71.2048 71.6807 71.4967 71.6807 71.8057ZM82.9224 75.5V76.4648H77.1016V75.5H82.9224ZM86.7119 68.6318V69.5332H82.9985V68.6318H86.7119ZM84.2554 66.9624H85.4297V73.7988C85.4297 74.0316 85.4657 74.2072 85.5376 74.3257C85.6095 74.4442 85.7026 74.5225 85.8169 74.5605C85.9312 74.5986 86.0539 74.6177 86.1851 74.6177C86.2824 74.6177 86.384 74.6092 86.4897 74.5923C86.5998 74.5711 86.6823 74.5542 86.7373 74.5415L86.7437 75.5C86.6506 75.5296 86.5278 75.5571 86.3755 75.5825C86.2274 75.6121 86.0475 75.627 85.8359 75.627C85.5482 75.627 85.2837 75.5698 85.0425 75.4556C84.8013 75.3413 84.6087 75.1509 84.4648 74.8843C84.3252 74.6134 84.2554 74.2495 84.2554 73.7925V66.9624ZM92.1392 74.3257V70.79C92.1392 70.5192 92.0841 70.2843 91.9741 70.0854C91.8683 69.8823 91.7075 69.7257 91.4917 69.6157C91.2759 69.5057 91.0093 69.4507 90.6919 69.4507C90.3957 69.4507 90.1354 69.5015 89.9111 69.603C89.6911 69.7046 89.5176 69.8379 89.3906 70.0029C89.2679 70.168 89.2065 70.3457 89.2065 70.5361H88.0322C88.0322 70.2907 88.0957 70.0474 88.2227 69.8062C88.3496 69.5649 88.5316 69.347 88.7686 69.1523C89.0098 68.9535 89.2975 68.7969 89.6318 68.6826C89.9704 68.5641 90.347 68.5049 90.7617 68.5049C91.2611 68.5049 91.7012 68.5895 92.082 68.7588C92.4671 68.9281 92.7676 69.1841 92.9834 69.5269C93.2035 69.8654 93.3135 70.2907 93.3135 70.8027V74.002C93.3135 74.2305 93.3325 74.4738 93.3706 74.7319C93.4129 74.9901 93.4743 75.2122 93.5547 75.3984V75.5H92.3296C92.2703 75.3646 92.2238 75.1847 92.1899 74.9604C92.1561 74.7319 92.1392 74.5203 92.1392 74.3257ZM92.3423 71.3359L92.355 72.1611H91.168C90.8337 72.1611 90.5353 72.1886 90.2729 72.2437C90.0106 72.2944 89.7905 72.3727 89.6128 72.4785C89.4351 72.5843 89.2996 72.7176 89.2065 72.8784C89.1134 73.035 89.0669 73.2191 89.0669 73.4307C89.0669 73.6465 89.1156 73.8433 89.2129 74.021C89.3102 74.1987 89.4562 74.3405 89.6509 74.4463C89.8498 74.5479 90.0931 74.5986 90.3809 74.5986C90.7406 74.5986 91.0579 74.5225 91.333 74.3701C91.6081 74.2178 91.826 74.0316 91.9868 73.8115C92.1519 73.5915 92.2407 73.3778 92.2534 73.1704L92.7549 73.7354C92.7253 73.9131 92.6449 74.1099 92.5137 74.3257C92.3825 74.5415 92.2069 74.7489 91.9868 74.9478C91.771 75.1424 91.5129 75.3053 91.2124 75.4365C90.9162 75.5635 90.5819 75.627 90.2095 75.627C89.744 75.627 89.3356 75.536 88.9844 75.354C88.6374 75.172 88.3665 74.9287 88.1719 74.624C87.9814 74.3151 87.8862 73.9702 87.8862 73.5894C87.8862 73.2212 87.9582 72.8975 88.1021 72.6182C88.2459 72.3346 88.4533 72.0998 88.7241 71.9136C88.995 71.7231 89.3208 71.5793 89.7017 71.4819C90.0825 71.3846 90.5078 71.3359 90.9775 71.3359H92.3423ZM95.9541 68.6318L97.4585 71.1328L98.9819 68.6318H100.359L98.1123 72.0215L100.429 75.5H99.0708L97.4839 72.9229L95.897 75.5H94.5322L96.8428 72.0215L94.6021 68.6318H95.9541ZM106.561 75.5V76.4648H100.74V75.5H106.561ZM108.649 69.9521V78.1406H107.469V68.6318H108.548L108.649 69.9521ZM113.277 72.0088V72.1421C113.277 72.6414 113.218 73.1048 113.099 73.5322C112.981 73.9554 112.807 74.3236 112.579 74.6367C112.354 74.9499 112.077 75.1932 111.747 75.3667C111.417 75.5402 111.038 75.627 110.611 75.627C110.175 75.627 109.79 75.555 109.456 75.4111C109.121 75.2673 108.838 75.0578 108.605 74.7827C108.372 74.5076 108.186 74.1776 108.046 73.7925C107.911 73.4074 107.818 72.9736 107.767 72.4912V71.7803C107.818 71.2725 107.913 70.8175 108.053 70.4155C108.192 70.0135 108.376 69.6707 108.605 69.3872C108.838 69.0994 109.119 68.8815 109.449 68.7334C109.779 68.5811 110.16 68.5049 110.592 68.5049C111.023 68.5049 111.406 68.5895 111.741 68.7588C112.075 68.9238 112.356 69.1608 112.585 69.4697C112.813 69.7786 112.985 70.1489 113.099 70.5806C113.218 71.008 113.277 71.484 113.277 72.0088ZM112.096 72.1421V72.0088C112.096 71.666 112.06 71.3444 111.988 71.0439C111.916 70.7393 111.804 70.4727 111.652 70.2441C111.504 70.0114 111.313 69.8294 111.081 69.6982C110.848 69.5628 110.571 69.4951 110.249 69.4951C109.953 69.4951 109.695 69.5459 109.475 69.6475C109.259 69.749 109.075 69.8866 108.922 70.0601C108.77 70.2293 108.645 70.424 108.548 70.644C108.455 70.8599 108.385 71.0841 108.338 71.3169V72.9609C108.423 73.2572 108.542 73.5365 108.694 73.7988C108.846 74.057 109.049 74.2664 109.303 74.4272C109.557 74.5838 109.877 74.6621 110.262 74.6621C110.579 74.6621 110.852 74.5965 111.081 74.4653C111.313 74.3299 111.504 74.1458 111.652 73.9131C111.804 73.6803 111.916 73.4137 111.988 73.1133C112.06 72.8086 112.096 72.4849 112.096 72.1421ZM117.625 75.627C117.147 75.627 116.713 75.5465 116.324 75.3857C115.939 75.2207 115.606 74.9901 115.327 74.6938C115.052 74.3976 114.84 74.0464 114.692 73.6401C114.544 73.2339 114.47 72.7896 114.47 72.3071V72.0405C114.47 71.4819 114.553 70.9847 114.718 70.5488C114.883 70.1087 115.107 69.7363 115.391 69.4316C115.674 69.127 115.996 68.8963 116.355 68.7397C116.715 68.5832 117.088 68.5049 117.473 68.5049C117.964 68.5049 118.387 68.5895 118.742 68.7588C119.102 68.9281 119.396 69.165 119.625 69.4697C119.853 69.7702 120.022 70.1257 120.132 70.5361C120.242 70.9424 120.297 71.3867 120.297 71.8691V72.396H115.168V71.4375H119.123V71.3486C119.106 71.0439 119.043 70.7477 118.933 70.46C118.827 70.1722 118.658 69.9352 118.425 69.749C118.192 69.5628 117.875 69.4697 117.473 69.4697C117.206 69.4697 116.961 69.5269 116.736 69.6411C116.512 69.7511 116.319 69.9162 116.159 70.1362C115.998 70.3563 115.873 70.625 115.784 70.9424C115.695 71.2598 115.651 71.6258 115.651 72.0405V72.3071C115.651 72.633 115.695 72.9398 115.784 73.2275C115.877 73.5111 116.011 73.7607 116.184 73.9766C116.362 74.1924 116.576 74.3617 116.825 74.4844C117.079 74.6071 117.367 74.6685 117.688 74.6685C118.103 74.6685 118.454 74.5838 118.742 74.4146C119.03 74.2453 119.282 74.0189 119.498 73.7354L120.208 74.3003C120.06 74.5246 119.872 74.7383 119.644 74.9414C119.415 75.1445 119.134 75.3096 118.799 75.4365C118.469 75.5635 118.078 75.627 117.625 75.627ZM122.843 69.7109V75.5H121.668V68.6318H122.811L122.843 69.7109ZM124.988 68.5938L124.982 69.6855C124.885 69.6644 124.792 69.6517 124.703 69.6475C124.618 69.639 124.521 69.6348 124.411 69.6348C124.14 69.6348 123.901 69.6771 123.693 69.7617C123.486 69.8464 123.31 69.9648 123.167 70.1172C123.023 70.2695 122.908 70.4515 122.824 70.6631C122.743 70.8704 122.69 71.099 122.665 71.3486L122.335 71.5391C122.335 71.1243 122.375 70.735 122.456 70.3711C122.54 70.0072 122.669 69.6855 122.843 69.4062C123.016 69.1227 123.236 68.9027 123.503 68.7461C123.774 68.5853 124.095 68.5049 124.468 68.5049C124.552 68.5049 124.65 68.5155 124.76 68.5366C124.87 68.5535 124.946 68.5726 124.988 68.5938ZM128.695 74.6621C128.975 74.6621 129.233 74.605 129.47 74.4907C129.707 74.3765 129.901 74.2199 130.054 74.021C130.206 73.8179 130.293 73.5872 130.314 73.3291H131.431C131.41 73.7354 131.272 74.1141 131.019 74.4653C130.769 74.8123 130.441 75.0938 130.035 75.3096C129.628 75.5212 129.182 75.627 128.695 75.627C128.179 75.627 127.728 75.536 127.343 75.354C126.962 75.172 126.645 74.9224 126.391 74.605C126.141 74.2876 125.953 73.9237 125.826 73.5132C125.703 73.0985 125.642 72.6605 125.642 72.1992V71.9326C125.642 71.4714 125.703 71.0355 125.826 70.625C125.953 70.2103 126.141 69.8442 126.391 69.5269C126.645 69.2095 126.962 68.9598 127.343 68.7778C127.728 68.5959 128.179 68.5049 128.695 68.5049C129.233 68.5049 129.702 68.6149 130.104 68.835C130.507 69.0508 130.822 69.347 131.05 69.7236C131.283 70.096 131.41 70.5192 131.431 70.9932H130.314C130.293 70.7096 130.212 70.4536 130.073 70.2251C129.937 69.9966 129.751 69.8146 129.514 69.6792C129.281 69.5396 129.008 69.4697 128.695 69.4697C128.336 69.4697 128.033 69.5417 127.788 69.6855C127.546 69.8252 127.354 70.0156 127.21 70.2568C127.07 70.4938 126.969 70.7583 126.905 71.0503C126.846 71.3381 126.816 71.6322 126.816 71.9326V72.1992C126.816 72.4997 126.846 72.7959 126.905 73.0879C126.965 73.3799 127.064 73.6444 127.204 73.8813C127.347 74.1183 127.54 74.3088 127.781 74.4526C128.027 74.5923 128.331 74.6621 128.695 74.6621ZM135.602 75.627C135.123 75.627 134.69 75.5465 134.3 75.3857C133.915 75.2207 133.583 74.9901 133.304 74.6938C133.029 74.3976 132.817 74.0464 132.669 73.6401C132.521 73.2339 132.447 72.7896 132.447 72.3071V72.0405C132.447 71.4819 132.529 70.9847 132.694 70.5488C132.859 70.1087 133.084 69.7363 133.367 69.4316C133.651 69.127 133.972 68.8963 134.332 68.7397C134.692 68.5832 135.064 68.5049 135.449 68.5049C135.94 68.5049 136.363 68.5895 136.719 68.7588C137.078 68.9281 137.373 69.165 137.601 69.4697C137.83 69.7702 137.999 70.1257 138.109 70.5361C138.219 70.9424 138.274 71.3867 138.274 71.8691V72.396H133.145V71.4375H137.1V71.3486C137.083 71.0439 137.019 70.7477 136.909 70.46C136.803 70.1722 136.634 69.9352 136.401 69.749C136.169 69.5628 135.851 69.4697 135.449 69.4697C135.183 69.4697 134.937 69.5269 134.713 69.6411C134.489 69.7511 134.296 69.9162 134.135 70.1362C133.974 70.3563 133.85 70.625 133.761 70.9424C133.672 71.2598 133.627 71.6258 133.627 72.0405V72.3071C133.627 72.633 133.672 72.9398 133.761 73.2275C133.854 73.5111 133.987 73.7607 134.161 73.9766C134.338 74.1924 134.552 74.3617 134.802 74.4844C135.056 74.6071 135.343 74.6685 135.665 74.6685C136.08 74.6685 136.431 74.5838 136.719 74.4146C137.007 74.2453 137.258 74.0189 137.474 73.7354L138.185 74.3003C138.037 74.5246 137.849 74.7383 137.62 74.9414C137.392 75.1445 137.11 75.3096 136.776 75.4365C136.446 75.5635 136.054 75.627 135.602 75.627ZM140.819 70.0981V75.5H139.645V68.6318H140.756L140.819 70.0981ZM140.54 71.8057L140.051 71.7866C140.056 71.3169 140.125 70.8831 140.261 70.4854C140.396 70.0833 140.587 69.7342 140.832 69.438C141.077 69.1418 141.369 68.9132 141.708 68.7524C142.051 68.5874 142.43 68.5049 142.844 68.5049C143.183 68.5049 143.487 68.5514 143.758 68.6445C144.029 68.7334 144.26 68.8773 144.45 69.0762C144.645 69.2751 144.793 69.5332 144.895 69.8506C144.996 70.1637 145.047 70.5467 145.047 70.9995V75.5H143.866V70.9868C143.866 70.6271 143.813 70.3394 143.708 70.1235C143.602 69.9035 143.447 69.7448 143.244 69.6475C143.041 69.5459 142.791 69.4951 142.495 69.4951C142.203 69.4951 141.937 69.5565 141.695 69.6792C141.458 69.8019 141.253 69.9712 141.08 70.187C140.91 70.4028 140.777 70.6504 140.68 70.9297C140.587 71.2048 140.54 71.4967 140.54 71.8057ZM149.706 68.6318V69.5332H145.993V68.6318H149.706ZM147.25 66.9624H148.424V73.7988C148.424 74.0316 148.46 74.2072 148.532 74.3257C148.604 74.4442 148.697 74.5225 148.811 74.5605C148.925 74.5986 149.048 74.6177 149.179 74.6177C149.277 74.6177 149.378 74.6092 149.484 74.5923C149.594 74.5711 149.676 74.5542 149.731 74.5415L149.738 75.5C149.645 75.5296 149.522 75.5571 149.37 75.5825C149.222 75.6121 149.042 75.627 148.83 75.627C148.542 75.627 148.278 75.5698 148.037 75.4556C147.795 75.3413 147.603 75.1509 147.459 74.8843C147.319 74.6134 147.25 74.2495 147.25 73.7925V66.9624Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M255.253 71.1011L254.314 70.8599L254.777 66.2578H259.519V67.3433H255.774L255.495 69.8569C255.664 69.7596 255.878 69.6686 256.136 69.584C256.398 69.4993 256.699 69.457 257.037 69.457C257.465 69.457 257.847 69.5311 258.186 69.6792C258.525 69.8231 258.812 70.0304 259.049 70.3013C259.291 70.5721 259.475 70.8979 259.602 71.2788C259.729 71.6597 259.792 72.085 259.792 72.5547C259.792 72.999 259.731 73.4074 259.608 73.7798C259.489 74.1522 259.31 74.478 259.068 74.7573C258.827 75.0324 258.522 75.2461 258.154 75.3984C257.79 75.5508 257.361 75.627 256.866 75.627C256.493 75.627 256.14 75.5762 255.806 75.4746C255.476 75.3688 255.179 75.2101 254.917 74.9985C254.659 74.7827 254.447 74.5161 254.282 74.1987C254.121 73.8771 254.02 73.5005 253.978 73.0688H255.095C255.146 73.4159 255.247 73.7078 255.399 73.9448C255.552 74.1818 255.751 74.3617 255.996 74.4844C256.246 74.6029 256.536 74.6621 256.866 74.6621C257.145 74.6621 257.393 74.6134 257.608 74.5161C257.824 74.4188 258.006 74.2791 258.154 74.0972C258.302 73.9152 258.415 73.6951 258.491 73.437C258.571 73.1789 258.611 72.889 258.611 72.5674C258.611 72.2754 258.571 72.0046 258.491 71.7549C258.41 71.5052 258.29 71.2873 258.129 71.1011C257.972 70.9149 257.78 70.771 257.551 70.6694C257.323 70.5636 257.06 70.5107 256.764 70.5107C256.371 70.5107 256.072 70.5636 255.869 70.6694C255.67 70.7752 255.465 70.9191 255.253 71.1011ZM260.979 68.5239V68.0352C260.979 67.6839 261.055 67.3644 261.208 67.0767C261.36 66.7889 261.578 66.5583 261.861 66.3848C262.145 66.2113 262.481 66.1245 262.871 66.1245C263.268 66.1245 263.607 66.2113 263.886 66.3848C264.17 66.5583 264.388 66.7889 264.54 67.0767C264.692 67.3644 264.769 67.6839 264.769 68.0352V68.5239C264.769 68.8667 264.692 69.182 264.54 69.4697C264.392 69.7575 264.176 69.9881 263.893 70.1616C263.613 70.3351 263.277 70.4219 262.883 70.4219C262.49 70.4219 262.149 70.3351 261.861 70.1616C261.578 69.9881 261.36 69.7575 261.208 69.4697C261.055 69.182 260.979 68.8667 260.979 68.5239ZM261.861 68.0352V68.5239C261.861 68.7186 261.897 68.9027 261.969 69.0762C262.045 69.2497 262.16 69.3914 262.312 69.5015C262.464 69.6073 262.655 69.6602 262.883 69.6602C263.112 69.6602 263.3 69.6073 263.448 69.5015C263.596 69.3914 263.706 69.2497 263.778 69.0762C263.85 68.9027 263.886 68.7186 263.886 68.5239V68.0352C263.886 67.8363 263.848 67.6501 263.772 67.4766C263.7 67.2988 263.588 67.1571 263.436 67.0513C263.287 66.9412 263.099 66.8862 262.871 66.8862C262.646 66.8862 262.458 66.9412 262.306 67.0513C262.158 67.1571 262.045 67.2988 261.969 67.4766C261.897 67.6501 261.861 67.8363 261.861 68.0352ZM265.479 73.729V73.2339C265.479 72.8869 265.556 72.5695 265.708 72.2817C265.86 71.994 266.078 71.7633 266.362 71.5898C266.645 71.4163 266.982 71.3296 267.371 71.3296C267.769 71.3296 268.107 71.4163 268.387 71.5898C268.67 71.7633 268.888 71.994 269.041 72.2817C269.193 72.5695 269.269 72.8869 269.269 73.2339V73.729C269.269 74.076 269.193 74.3934 269.041 74.6812C268.892 74.9689 268.677 75.1995 268.393 75.373C268.114 75.5465 267.777 75.6333 267.384 75.6333C266.99 75.6333 266.652 75.5465 266.368 75.373C266.085 75.1995 265.865 74.9689 265.708 74.6812C265.556 74.3934 265.479 74.076 265.479 73.729ZM266.362 73.2339V73.729C266.362 73.9237 266.398 74.1099 266.47 74.2876C266.546 74.4611 266.66 74.6029 266.812 74.7129C266.965 74.8187 267.155 74.8716 267.384 74.8716C267.612 74.8716 267.801 74.8187 267.949 74.7129C268.101 74.6029 268.213 74.4611 268.285 74.2876C268.357 74.1141 268.393 73.9279 268.393 73.729V73.2339C268.393 73.035 268.355 72.8488 268.279 72.6753C268.207 72.5018 268.095 72.3621 267.942 72.2563C267.794 72.1463 267.604 72.0913 267.371 72.0913C267.147 72.0913 266.958 72.1463 266.806 72.2563C266.658 72.3621 266.546 72.5018 266.47 72.6753C266.398 72.8488 266.362 73.035 266.362 73.2339ZM267.663 67.5718L263.15 74.7954L262.49 74.3765L267.003 67.1528L267.663 67.5718Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip2_75_1466)"},(0,h.createElement)("path",{d:"M24.0001 90.25C26.0701 90.25 27.7501 91.93 27.7501 94C27.7501 94.4875 27.6526 94.945 27.4801 95.3725L29.6701 97.5625C30.8026 96.6175 31.6951 95.395 32.2426 94C30.9451 90.7075 27.7426 88.375 23.9926 88.375C22.9426 88.375 21.9376 88.5625 21.0076 88.9L22.6276 90.52C23.0551 90.3475 23.5126 90.25 24.0001 90.25ZM16.5001 88.2025L18.2101 89.9125L18.5551 90.2575C17.3101 91.225 16.3351 92.515 15.7501 94C17.0476 97.2925 20.2501 99.625 24.0001 99.625C25.1626 99.625 26.2726 99.4 27.2851 98.995L27.6001 99.31L29.7976 101.5L30.7501 100.547L17.4526 87.25L16.5001 88.2025ZM20.6476 92.35L21.8101 93.5125C21.7726 93.67 21.7501 93.835 21.7501 94C21.7501 95.245 22.7551 96.25 24.0001 96.25C24.1651 96.25 24.3301 96.2275 24.4876 96.19L25.6501 97.3525C25.1476 97.6 24.5926 97.75 24.0001 97.75C21.9301 97.75 20.2501 96.07 20.2501 94C20.2501 93.4075 20.4001 92.8525 20.6476 92.35ZM23.8801 91.765L26.2426 94.1275L26.2576 94.0075C26.2576 92.7625 25.2526 91.7575 24.0076 91.7575L23.8801 91.765Z",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M40.0693 88.75V98.5H38.895V88.75H40.0693ZM39.79 94.8057L39.3013 94.7866C39.3055 94.3169 39.3753 93.8831 39.5107 93.4854C39.6462 93.0833 39.8366 92.7342 40.082 92.438C40.3275 92.1418 40.6195 91.9132 40.958 91.7524C41.3008 91.5874 41.6795 91.5049 42.0942 91.5049C42.4328 91.5049 42.7375 91.5514 43.0083 91.6445C43.2791 91.7334 43.5098 91.8773 43.7002 92.0762C43.8949 92.2751 44.043 92.5332 44.1445 92.8506C44.2461 93.1637 44.2969 93.5467 44.2969 93.9995V98.5H43.1162V93.9868C43.1162 93.6271 43.0633 93.3394 42.9575 93.1235C42.8517 92.9035 42.6973 92.7448 42.4941 92.6475C42.291 92.5459 42.0413 92.4951 41.7451 92.4951C41.4531 92.4951 41.1865 92.5565 40.9453 92.6792C40.7083 92.8019 40.5031 92.9712 40.3296 93.187C40.1603 93.4028 40.027 93.6504 39.9297 93.9297C39.8366 94.2048 39.79 94.4967 39.79 94.8057ZM47.3311 91.6318V98.5H46.1504V91.6318H47.3311ZM46.0615 89.8101C46.0615 89.6196 46.1187 89.4588 46.2329 89.3276C46.3514 89.1965 46.5249 89.1309 46.7534 89.1309C46.9777 89.1309 47.1491 89.1965 47.2676 89.3276C47.3903 89.4588 47.4517 89.6196 47.4517 89.8101C47.4517 89.992 47.3903 90.1486 47.2676 90.2798C47.1491 90.4067 46.9777 90.4702 46.7534 90.4702C46.5249 90.4702 46.3514 90.4067 46.2329 90.2798C46.1187 90.1486 46.0615 89.992 46.0615 89.8101ZM53.5454 97.167V88.75H54.7261V98.5H53.647L53.5454 97.167ZM48.9243 95.1421V95.0088C48.9243 94.484 48.9878 94.008 49.1147 93.5806C49.2459 93.1489 49.43 92.7786 49.667 92.4697C49.9082 92.1608 50.1938 91.9238 50.5239 91.7588C50.8582 91.5895 51.2306 91.5049 51.6411 91.5049C52.0728 91.5049 52.4494 91.5811 52.771 91.7334C53.0968 91.8815 53.3719 92.0994 53.5962 92.3872C53.8247 92.6707 54.0046 93.0135 54.1357 93.4155C54.2669 93.8175 54.3579 94.2725 54.4087 94.7803V95.3643C54.3621 95.8678 54.2712 96.3206 54.1357 96.7227C54.0046 97.1247 53.8247 97.4674 53.5962 97.751C53.3719 98.0345 53.0968 98.2524 52.771 98.4048C52.4451 98.5529 52.0643 98.627 51.6284 98.627C51.2264 98.627 50.8582 98.5402 50.5239 98.3667C50.1938 98.1932 49.9082 97.9499 49.667 97.6367C49.43 97.3236 49.2459 96.9554 49.1147 96.5322C48.9878 96.1048 48.9243 95.6414 48.9243 95.1421ZM50.105 95.0088V95.1421C50.105 95.4849 50.1388 95.8065 50.2065 96.1069C50.2785 96.4074 50.3885 96.6719 50.5366 96.9004C50.6847 97.1289 50.873 97.3088 51.1016 97.4399C51.3301 97.5669 51.603 97.6304 51.9204 97.6304C52.3097 97.6304 52.6292 97.5479 52.8789 97.3828C53.1328 97.2178 53.3359 96.9998 53.4883 96.729C53.6406 96.4582 53.7591 96.1641 53.8438 95.8467V94.3169C53.793 94.0841 53.7189 93.8599 53.6216 93.644C53.5285 93.424 53.4058 93.2293 53.2534 93.0601C53.1053 92.8866 52.9212 92.749 52.7012 92.6475C52.4854 92.5459 52.2293 92.4951 51.9331 92.4951C51.6115 92.4951 51.3343 92.5628 51.1016 92.6982C50.873 92.8294 50.6847 93.0114 50.5366 93.2441C50.3885 93.4727 50.2785 93.7393 50.2065 94.0439C50.1388 94.3444 50.105 94.666 50.105 95.0088ZM60.8833 97.167V88.75H62.064V98.5H60.9849L60.8833 97.167ZM56.2622 95.1421V95.0088C56.2622 94.484 56.3257 94.008 56.4526 93.5806C56.5838 93.1489 56.7679 92.7786 57.0049 92.4697C57.2461 92.1608 57.5317 91.9238 57.8618 91.7588C58.1961 91.5895 58.5685 91.5049 58.979 91.5049C59.4106 91.5049 59.7873 91.5811 60.1089 91.7334C60.4347 91.8815 60.7098 92.0994 60.9341 92.3872C61.1626 92.6707 61.3424 93.0135 61.4736 93.4155C61.6048 93.8175 61.6958 94.2725 61.7466 94.7803V95.3643C61.7 95.8678 61.609 96.3206 61.4736 96.7227C61.3424 97.1247 61.1626 97.4674 60.9341 97.751C60.7098 98.0345 60.4347 98.2524 60.1089 98.4048C59.783 98.5529 59.4022 98.627 58.9663 98.627C58.5643 98.627 58.1961 98.5402 57.8618 98.3667C57.5317 98.1932 57.2461 97.9499 57.0049 97.6367C56.7679 97.3236 56.5838 96.9554 56.4526 96.5322C56.3257 96.1048 56.2622 95.6414 56.2622 95.1421ZM57.4429 95.0088V95.1421C57.4429 95.4849 57.4767 95.8065 57.5444 96.1069C57.6164 96.4074 57.7264 96.6719 57.8745 96.9004C58.0226 97.1289 58.2109 97.3088 58.4395 97.4399C58.668 97.5669 58.9409 97.6304 59.2583 97.6304C59.6476 97.6304 59.9671 97.5479 60.2168 97.3828C60.4707 97.2178 60.6738 96.9998 60.8262 96.729C60.9785 96.4582 61.097 96.1641 61.1816 95.8467V94.3169C61.1309 94.0841 61.0568 93.8599 60.9595 93.644C60.8664 93.424 60.7437 93.2293 60.5913 93.0601C60.4432 92.8866 60.2591 92.749 60.0391 92.6475C59.8232 92.5459 59.5672 92.4951 59.271 92.4951C58.9494 92.4951 58.6722 92.5628 58.4395 92.6982C58.2109 92.8294 58.0226 93.0114 57.8745 93.2441C57.7264 93.4727 57.6164 93.7393 57.5444 94.0439C57.4767 94.3444 57.4429 94.666 57.4429 95.0088ZM66.7422 98.627C66.264 98.627 65.8302 98.5465 65.4409 98.3857C65.0558 98.2207 64.7236 97.9901 64.4443 97.6938C64.1693 97.3976 63.9577 97.0464 63.8096 96.6401C63.6615 96.2339 63.5874 95.7896 63.5874 95.3071V95.0405C63.5874 94.4819 63.6699 93.9847 63.835 93.5488C64 93.1087 64.2243 92.7363 64.5078 92.4316C64.7913 92.127 65.113 91.8963 65.4727 91.7397C65.8324 91.5832 66.2048 91.5049 66.5898 91.5049C67.0807 91.5049 67.5039 91.5895 67.8594 91.7588C68.2191 91.9281 68.5132 92.165 68.7417 92.4697C68.9702 92.7702 69.1395 93.1257 69.2495 93.5361C69.3595 93.9424 69.4146 94.3867 69.4146 94.8691V95.396H64.2856V94.4375H68.2402V94.3486C68.2233 94.0439 68.1598 93.7477 68.0498 93.46C67.944 93.1722 67.7747 92.9352 67.542 92.749C67.3092 92.5628 66.9919 92.4697 66.5898 92.4697C66.3232 92.4697 66.0778 92.5269 65.8535 92.6411C65.6292 92.7511 65.4367 92.9162 65.2759 93.1362C65.1151 93.3563 64.9902 93.625 64.9014 93.9424C64.8125 94.2598 64.7681 94.6258 64.7681 95.0405V95.3071C64.7681 95.633 64.8125 95.9398 64.9014 96.2275C64.9945 96.5111 65.1278 96.7607 65.3013 96.9766C65.479 97.1924 65.6927 97.3617 65.9424 97.4844C66.1963 97.6071 66.484 97.6685 66.8057 97.6685C67.2204 97.6685 67.5716 97.5838 67.8594 97.4146C68.1471 97.2453 68.3989 97.0189 68.6147 96.7354L69.3257 97.3003C69.1776 97.5246 68.9893 97.7383 68.7607 97.9414C68.5322 98.1445 68.2508 98.3096 67.9165 98.4365C67.5864 98.5635 67.195 98.627 66.7422 98.627ZM71.96 93.0981V98.5H70.7856V91.6318H71.8965L71.96 93.0981ZM71.6807 94.8057L71.1919 94.7866C71.1961 94.3169 71.266 93.8831 71.4014 93.4854C71.5368 93.0833 71.7272 92.7342 71.9727 92.438C72.2181 92.1418 72.5101 91.9132 72.8486 91.7524C73.1914 91.5874 73.5701 91.5049 73.9849 91.5049C74.3234 91.5049 74.6281 91.5514 74.8989 91.6445C75.1698 91.7334 75.4004 91.8773 75.5908 92.0762C75.7855 92.2751 75.9336 92.5332 76.0352 92.8506C76.1367 93.1637 76.1875 93.5467 76.1875 93.9995V98.5H75.0068V93.9868C75.0068 93.6271 74.9539 93.3394 74.8481 93.1235C74.7424 92.9035 74.5879 92.7448 74.3848 92.6475C74.1816 92.5459 73.932 92.4951 73.6357 92.4951C73.3438 92.4951 73.0771 92.5565 72.8359 92.6792C72.599 92.8019 72.3937 92.9712 72.2202 93.187C72.0509 93.4028 71.9176 93.6504 71.8203 93.9297C71.7272 94.2048 71.6807 94.4967 71.6807 94.8057ZM82.9224 98.5V99.4648H77.1016V98.5H82.9224ZM88.1655 97.167V88.75H89.3462V98.5H88.2671L88.1655 97.167ZM83.5444 95.1421V95.0088C83.5444 94.484 83.6079 94.008 83.7349 93.5806C83.866 93.1489 84.0501 92.7786 84.2871 92.4697C84.5283 92.1608 84.814 91.9238 85.144 91.7588C85.4784 91.5895 85.8507 91.5049 86.2612 91.5049C86.6929 91.5049 87.0695 91.5811 87.3911 91.7334C87.717 91.8815 87.992 92.0994 88.2163 92.3872C88.4448 92.6707 88.6247 93.0135 88.7559 93.4155C88.887 93.8175 88.978 94.2725 89.0288 94.7803V95.3643C88.9823 95.8678 88.8913 96.3206 88.7559 96.7227C88.6247 97.1247 88.4448 97.4674 88.2163 97.751C87.992 98.0345 87.717 98.2524 87.3911 98.4048C87.0653 98.5529 86.6844 98.627 86.2485 98.627C85.8465 98.627 85.4784 98.5402 85.144 98.3667C84.814 98.1932 84.5283 97.9499 84.2871 97.6367C84.0501 97.3236 83.866 96.9554 83.7349 96.5322C83.6079 96.1048 83.5444 95.6414 83.5444 95.1421ZM84.7251 95.0088V95.1421C84.7251 95.4849 84.759 95.8065 84.8267 96.1069C84.8986 96.4074 85.0086 96.6719 85.1567 96.9004C85.3049 97.1289 85.4932 97.3088 85.7217 97.4399C85.9502 97.5669 86.2231 97.6304 86.5405 97.6304C86.9299 97.6304 87.2493 97.5479 87.499 97.3828C87.7529 97.2178 87.9561 96.9998 88.1084 96.729C88.2607 96.4582 88.3792 96.1641 88.4639 95.8467V94.3169C88.4131 94.0841 88.339 93.8599 88.2417 93.644C88.1486 93.424 88.0259 93.2293 87.8735 93.0601C87.7254 92.8866 87.5413 92.749 87.3213 92.6475C87.1055 92.5459 86.8494 92.4951 86.5532 92.4951C86.2316 92.4951 85.9544 92.5628 85.7217 92.6982C85.4932 92.8294 85.3049 93.0114 85.1567 93.2441C85.0086 93.4727 84.8986 93.7393 84.8267 94.0439C84.759 94.3444 84.7251 94.666 84.7251 95.0088ZM94.0244 98.627C93.5462 98.627 93.1125 98.5465 92.7231 98.3857C92.3381 98.2207 92.0059 97.9901 91.7266 97.6938C91.4515 97.3976 91.2399 97.0464 91.0918 96.6401C90.9437 96.2339 90.8696 95.7896 90.8696 95.3071V95.0405C90.8696 94.4819 90.9521 93.9847 91.1172 93.5488C91.2822 93.1087 91.5065 92.7363 91.79 92.4316C92.0736 92.127 92.3952 91.8963 92.7549 91.7397C93.1146 91.5832 93.487 91.5049 93.8721 91.5049C94.363 91.5049 94.7861 91.5895 95.1416 91.7588C95.5013 91.9281 95.7954 92.165 96.0239 92.4697C96.2524 92.7702 96.4217 93.1257 96.5317 93.5361C96.6418 93.9424 96.6968 94.3867 96.6968 94.8691V95.396H91.5679V94.4375H95.5225V94.3486C95.5055 94.0439 95.4421 93.7477 95.332 93.46C95.2262 93.1722 95.057 92.9352 94.8242 92.749C94.5915 92.5628 94.2741 92.4697 93.8721 92.4697C93.6055 92.4697 93.36 92.5269 93.1357 92.6411C92.9115 92.7511 92.7189 92.9162 92.5581 93.1362C92.3973 93.3563 92.2725 93.625 92.1836 93.9424C92.0947 94.2598 92.0503 94.6258 92.0503 95.0405V95.3071C92.0503 95.633 92.0947 95.9398 92.1836 96.2275C92.2767 96.5111 92.41 96.7607 92.5835 96.9766C92.7612 97.1924 92.9749 97.3617 93.2246 97.4844C93.4785 97.6071 93.7663 97.6685 94.0879 97.6685C94.5026 97.6685 94.8538 97.5838 95.1416 97.4146C95.4294 97.2453 95.6812 97.0189 95.897 96.7354L96.6079 97.3003C96.4598 97.5246 96.2715 97.7383 96.043 97.9414C95.8145 98.1445 95.533 98.3096 95.1987 98.4365C94.8687 98.5635 94.4772 98.627 94.0244 98.627ZM99.3438 88.75V98.5H98.1631V88.75H99.3438ZM102.505 91.6318V98.5H101.324V91.6318H102.505ZM101.235 89.8101C101.235 89.6196 101.292 89.4588 101.407 89.3276C101.525 89.1965 101.699 89.1309 101.927 89.1309C102.152 89.1309 102.323 89.1965 102.441 89.3276C102.564 89.4588 102.625 89.6196 102.625 89.8101C102.625 89.992 102.564 90.1486 102.441 90.2798C102.323 90.4067 102.152 90.4702 101.927 90.4702C101.699 90.4702 101.525 90.4067 101.407 90.2798C101.292 90.1486 101.235 89.992 101.235 89.8101ZM106.479 97.4399L108.357 91.6318H109.557L107.088 98.5H106.301L106.479 97.4399ZM104.911 91.6318L106.847 97.4717L106.98 98.5H106.193L103.705 91.6318H104.911ZM113.448 98.627C112.97 98.627 112.536 98.5465 112.147 98.3857C111.762 98.2207 111.43 97.9901 111.15 97.6938C110.875 97.3976 110.664 97.0464 110.516 96.6401C110.368 96.2339 110.293 95.7896 110.293 95.3071V95.0405C110.293 94.4819 110.376 93.9847 110.541 93.5488C110.706 93.1087 110.93 92.7363 111.214 92.4316C111.497 92.127 111.819 91.8963 112.179 91.7397C112.538 91.5832 112.911 91.5049 113.296 91.5049C113.787 91.5049 114.21 91.5895 114.565 91.7588C114.925 91.9281 115.219 92.165 115.448 92.4697C115.676 92.7702 115.846 93.1257 115.956 93.5361C116.066 93.9424 116.121 94.3867 116.121 94.8691V95.396H110.992V94.4375H114.946V94.3486C114.929 94.0439 114.866 93.7477 114.756 93.46C114.65 93.1722 114.481 92.9352 114.248 92.749C114.015 92.5628 113.698 92.4697 113.296 92.4697C113.029 92.4697 112.784 92.5269 112.56 92.6411C112.335 92.7511 112.143 92.9162 111.982 93.1362C111.821 93.3563 111.696 93.625 111.607 93.9424C111.519 94.2598 111.474 94.6258 111.474 95.0405V95.3071C111.474 95.633 111.519 95.9398 111.607 96.2275C111.701 96.5111 111.834 96.7607 112.007 96.9766C112.185 97.1924 112.399 97.3617 112.648 97.4844C112.902 97.6071 113.19 97.6685 113.512 97.6685C113.926 97.6685 114.278 97.5838 114.565 97.4146C114.853 97.2453 115.105 97.0189 115.321 96.7354L116.032 97.3003C115.884 97.5246 115.695 97.7383 115.467 97.9414C115.238 98.1445 114.957 98.3096 114.623 98.4365C114.292 98.5635 113.901 98.627 113.448 98.627ZM118.666 92.7109V98.5H117.492V91.6318H118.634L118.666 92.7109ZM120.812 91.5938L120.805 92.6855C120.708 92.6644 120.615 92.6517 120.526 92.6475C120.441 92.639 120.344 92.6348 120.234 92.6348C119.963 92.6348 119.724 92.6771 119.517 92.7617C119.309 92.8464 119.134 92.9648 118.99 93.1172C118.846 93.2695 118.732 93.4515 118.647 93.6631C118.567 93.8704 118.514 94.099 118.488 94.3486L118.158 94.5391C118.158 94.1243 118.198 93.735 118.279 93.3711C118.363 93.0072 118.493 92.6855 118.666 92.4062C118.84 92.1227 119.06 91.9027 119.326 91.7461C119.597 91.5853 119.919 91.5049 120.291 91.5049C120.376 91.5049 120.473 91.5155 120.583 91.5366C120.693 91.5535 120.769 91.5726 120.812 91.5938ZM123.941 97.7891L125.852 91.6318H127.108L124.354 99.5601C124.29 99.7293 124.205 99.9113 124.1 100.106C123.998 100.305 123.867 100.493 123.706 100.671C123.545 100.849 123.351 100.993 123.122 101.103C122.898 101.217 122.629 101.274 122.316 101.274C122.223 101.274 122.104 101.261 121.96 101.236C121.817 101.21 121.715 101.189 121.656 101.172L121.649 100.22C121.683 100.224 121.736 100.229 121.808 100.233C121.884 100.241 121.937 100.246 121.967 100.246C122.233 100.246 122.46 100.21 122.646 100.138C122.832 100.07 122.989 99.9536 123.116 99.7886C123.247 99.6278 123.359 99.4056 123.452 99.1221L123.941 97.7891ZM122.538 91.6318L124.322 96.9639L124.626 98.2017L123.782 98.6333L121.256 91.6318H122.538Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M257.278 87.7598V89.6958H256.326V87.7598H257.278ZM257.164 98.1255V99.8203H256.218V98.1255H257.164ZM258.434 96.1196C258.434 95.8657 258.376 95.6372 258.262 95.4341C258.148 95.231 257.96 95.0448 257.697 94.8755C257.435 94.7062 257.084 94.5496 256.644 94.4058C256.11 94.2407 255.649 94.0397 255.26 93.8027C254.875 93.5658 254.576 93.2716 254.365 92.9204C254.157 92.5692 254.054 92.1439 254.054 91.6445C254.054 91.124 254.166 90.6755 254.39 90.2988C254.614 89.9222 254.932 89.6323 255.342 89.4292C255.753 89.2261 256.235 89.1245 256.79 89.1245C257.221 89.1245 257.606 89.1901 257.945 89.3213C258.283 89.4482 258.569 89.6387 258.802 89.8926C259.039 90.1465 259.219 90.4575 259.341 90.8257C259.468 91.1938 259.532 91.6191 259.532 92.1016H258.364C258.364 91.818 258.33 91.5578 258.262 91.3208C258.194 91.0838 258.093 90.8786 257.958 90.7051C257.822 90.5273 257.657 90.3919 257.462 90.2988C257.268 90.2015 257.043 90.1528 256.79 90.1528C256.434 90.1528 256.14 90.2142 255.907 90.3369C255.679 90.4596 255.509 90.6331 255.399 90.8574C255.289 91.0775 255.234 91.3335 255.234 91.6255C255.234 91.8963 255.289 92.1333 255.399 92.3364C255.509 92.5396 255.696 92.7236 255.958 92.8887C256.225 93.0495 256.591 93.2082 257.056 93.3647C257.602 93.5382 258.065 93.7435 258.446 93.9805C258.827 94.2132 259.117 94.501 259.316 94.8438C259.515 95.1823 259.614 95.6034 259.614 96.1069C259.614 96.6528 259.492 97.1141 259.246 97.4907C259.001 97.8631 258.656 98.1466 258.211 98.3413C257.767 98.536 257.247 98.6333 256.65 98.6333C256.29 98.6333 255.935 98.5846 255.583 98.4873C255.232 98.39 254.915 98.2313 254.631 98.0112C254.348 97.7869 254.121 97.4928 253.952 97.1289C253.783 96.7607 253.698 96.3101 253.698 95.7769H254.879C254.879 96.1366 254.93 96.4349 255.031 96.6719C255.137 96.9046 255.277 97.0908 255.45 97.2305C255.624 97.3659 255.814 97.4632 256.021 97.5225C256.233 97.5775 256.443 97.605 256.65 97.605C257.031 97.605 257.352 97.5457 257.615 97.4272C257.881 97.3045 258.084 97.131 258.224 96.9067C258.364 96.6825 258.434 96.4201 258.434 96.1196ZM267.136 97.5352V98.5H261.087V97.6558L264.115 94.2852C264.487 93.8704 264.775 93.5192 264.978 93.2314C265.185 92.9395 265.329 92.6792 265.41 92.4507C265.494 92.2179 265.537 91.981 265.537 91.7397C265.537 91.4351 265.473 91.16 265.346 90.9146C265.223 90.6649 265.042 90.466 264.8 90.3179C264.559 90.1698 264.267 90.0957 263.924 90.0957C263.514 90.0957 263.171 90.1761 262.896 90.3369C262.625 90.4935 262.422 90.7135 262.287 90.9971C262.151 91.2806 262.083 91.6064 262.083 91.9746H260.909C260.909 91.4541 261.023 90.978 261.252 90.5464C261.48 90.1147 261.819 89.772 262.268 89.5181C262.716 89.2599 263.268 89.1309 263.924 89.1309C264.508 89.1309 265.008 89.2345 265.422 89.4419C265.837 89.645 266.154 89.9328 266.375 90.3052C266.599 90.6733 266.711 91.105 266.711 91.6001C266.711 91.8709 266.664 92.146 266.571 92.4253C266.482 92.7004 266.358 92.9754 266.197 93.2505C266.04 93.5256 265.856 93.7964 265.645 94.063C265.437 94.3296 265.215 94.592 264.978 94.8501L262.502 97.5352H267.136ZM269.878 94.1011L268.939 93.8599L269.402 89.2578H274.144V90.3433H270.399L270.12 92.8569C270.289 92.7596 270.503 92.6686 270.761 92.584C271.023 92.4993 271.324 92.457 271.662 92.457C272.09 92.457 272.472 92.5311 272.811 92.6792C273.15 92.8231 273.437 93.0304 273.674 93.3013C273.916 93.5721 274.1 93.8979 274.227 94.2788C274.354 94.6597 274.417 95.085 274.417 95.5547C274.417 95.999 274.356 96.4074 274.233 96.7798C274.114 97.1522 273.935 97.478 273.693 97.7573C273.452 98.0324 273.147 98.2461 272.779 98.3984C272.415 98.5508 271.986 98.627 271.491 98.627C271.118 98.627 270.765 98.5762 270.431 98.4746C270.101 98.3688 269.804 98.2101 269.542 97.9985C269.284 97.7827 269.072 97.5161 268.907 97.1987C268.746 96.8771 268.645 96.5005 268.603 96.0688H269.72C269.771 96.4159 269.872 96.7078 270.024 96.9448C270.177 97.1818 270.376 97.3617 270.621 97.4844C270.871 97.6029 271.161 97.6621 271.491 97.6621C271.77 97.6621 272.018 97.6134 272.233 97.5161C272.449 97.4188 272.631 97.2791 272.779 97.0972C272.927 96.9152 273.04 96.6951 273.116 96.437C273.196 96.1789 273.236 95.889 273.236 95.5674C273.236 95.2754 273.196 95.0046 273.116 94.7549C273.035 94.5052 272.915 94.2873 272.754 94.1011C272.597 93.9149 272.405 93.771 272.176 93.6694C271.948 93.5636 271.685 93.5107 271.389 93.5107C270.996 93.5107 270.697 93.5636 270.494 93.6694C270.295 93.7752 270.09 93.9191 269.878 94.1011Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1466"},(0,h.createElement)("rect",{x:"15",y:"41",width:"268",height:"62",rx:"4",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1466"},(0,h.createElement)("rect",{width:"18",height:"18",fill:"white",transform:"translate(15 62)"})),(0,h.createElement)("clipPath",{id:"clip2_75_1466"},(0,h.createElement)("rect",{width:"18",height:"18",fill:"white",transform:"translate(15 85)"})))),{__:In}=wp.i18n,{AdvancedFields:Tn,FieldSettingsWrapper:On,BlockLabel:Jn,BlockDescription:Rn,BlockAdvancedValue:qn,BlockName:Dn}=JetFBComponents,{useBlockAttributes:zn,useUniqueNameOnDuplicate:Un}=JetFBHooks,{InspectorControls:Gn,useBlockProps:Wn,RichText:Kn}=wp.blockEditor,{CardHeader:$n,CardBody:Yn,PanelBody:Xn}=wp.components,{useEffect:Qn}=wp.element,ea=x(L.Card)({name:"StyledCard",class:"s1ip8zmx",propsAsIs:!0});t(6987);const Ca=JSON.parse('{"apiVersion":3,"name":"jet-forms/hidden-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","hidden"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Hidden Field","icon":"\\n\\n","attributes":{"return_raw":{"type":"boolean","default":false},"value":{"type":"object","default":{}},"render":{"type":"boolean","default":true},"field_value":{"type":"string","default":"post_id"},"hidden_value_field":{"type":"string","default":""},"query_var_key":{"type":"string","default":""},"date_format":{"type":"string","default":""},"hidden_value":{"type":"string","default":""},"name":{"type":"string","default":"hidden_field_name"},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false},"random":{"type":"object","default":{"length":10,"upper":true,"lower":true,"numbers":true,"symbols":true}}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:ta}=wp.i18n,{RangeControl:la,CheckboxControl:ra}=wp.components,{ToggleControl:na}=wp.components,{__:aa}=wp.i18n,{addFilter:ia}=wp.hooks;ia("jfb.hidden-field.field-value.controls","jet-form-builder/random-string-controls",(function(e){return C=>{var t;const{attributes:l,setAttributes:r}=C;if("random_string"!==l.field_value)return(0,h.createElement)(e,{...C});const n=Object.values({...l.random,length:void 0}).filter(Boolean).length,a=e=>{const[C]=Object.keys(e);l.random[C]&&1===n||r({random:{...l.random,...e}})};return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(la,{label:ta("String length","jet-form-builder"),value:null!==(t=l.random?.length)&&void 0!==t?t:10,onChange:e=>r({random:{...l.random,length:e}}),allowReset:!0,resetFallbackValue:10,min:1,max:50}),(0,h.createElement)(ra,{label:ta("Uppercase","jet-form-builder"),checked:l.random.upper,onChange:e=>a({upper:e})}),(0,h.createElement)(ra,{label:ta("Lowercase","jet-form-builder"),checked:l.random.lower,onChange:e=>a({lower:e})}),(0,h.createElement)(ra,{label:ta("Numbers","jet-form-builder"),checked:l.random.numbers,onChange:e=>a({numbers:e})}),(0,h.createElement)(ra,{label:ta("Symbols","jet-form-builder"),checked:l.random.symbols,onChange:e=>a({symbols:e})}))}})),ia("jfb.hidden-field.header.controls","jet-form-builder/disable-raw-value-control",(function(e){return C=>{const{attributes:t,setAttributes:l}=C;return"random_string"!==t.field_value?(0,h.createElement)(e,{...C}):(0,h.createElement)(na,{label:aa("Render in HTML","jet-form-builder"),checked:t.render,help:aa("Enable this option if you use this field in Calculated Field, Conditional Block, Advanced Validation, Global Macros, or Dynamic Value.","jet-form-builder"),onChange:e=>l({render:Boolean(e)})})}}));const{__:oa}=wp.i18n,{createBlock:sa}=wp.blocks,{name:ca,icon:da=""}=Ca,ma={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:da}}),description:oa("Insert Hidden field invisible on the frontend with the assigned value to use it in calculations or for other purposes.","jet-form-builder"),edit:function(e){const{attributes:C,setAttributes:t,isSelected:l,editProps:{uniqKey:r}}=e,n=Wn();Un();const[,a]=zn();if(Qn((()=>{"referer_url"===C.field_value&&t({render:!0})}),[C.field_value]),C.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Nn);const{label:i="Please set `Field Value`"}=JetFormHiddenField.sources.find((e=>e.value===C.field_value))||{label:"--",value:""},o=[i];switch(C.field_value){case"post_meta":case"user_meta":o.push(C.hidden_value_field);break;case"query_var":o.push(C.query_var_key);break;case"current_date":o.push(C.date_format);break;case"manual_input":o.push(C.hidden_value)}const s=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return[l&&(0,h.createElement)(Gn,{key:r("InspectorControls")},(0,h.createElement)(Xn,{title:In("General","jet-form-builder")},(0,h.createElement)(Jn,null),(0,h.createElement)(Dn,null),(0,h.createElement)(Rn,null)),(0,h.createElement)(Xn,{title:In("Value","jet-form-builder")},(0,h.createElement)(qn,null)),(0,h.createElement)(On,{...e},(0,h.createElement)(Sn,null)),(0,h.createElement)(Tn,null)),(0,h.createElement)("div",{...n,key:r("viewBlock")},(0,h.createElement)(ea,{elevation:2,className:s?"buddypress-active":""},(0,h.createElement)($n,null,(0,h.createElement)(Kn,{placeholder:"hidden_field_name...",allowedFormats:[],value:C.name,onChange:e=>a({name:e})})),(0,h.createElement)(Yn,null,l&&(0,h.createElement)(Sn,null),!l&&o.join(": "))))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>sa("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>((e.default?.length||Object.keys(e.value)?.length)&&(e.field_value=""),sa(ca,{...e})),priority:0}]}},{Tools:ua}=JetFBActions,pa=ua.withPlaceholder([{value:"all",label:"Any registered user"},{value:"upload_files",label:"Any user, who allowed to upload files"},{value:"edit_posts",label:"Any user, who allowed to edit posts"},{value:"any_user",label:"Any user ( incl. Guest )"}]),fa=ua.withPlaceholder([{value:"id",label:"Attachment ID"},{value:"url",label:"Attachment URL"},{value:"both",label:"Array with attachment ID and URL"},{value:"ids",label:"Array of attachment IDs"}]),Va=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"15.5",y:"47.5",width:"156",height:"29",rx:"3.5",fill:"#E2E8F0"}),(0,h.createElement)("path",{d:"M62.6523 63.561H63.8711C63.8076 64.145 63.6405 64.6676 63.3696 65.1289C63.0988 65.5902 62.7158 65.9562 62.2207 66.2271C61.7256 66.4937 61.1077 66.627 60.3672 66.627C59.8255 66.627 59.3325 66.5254 58.8882 66.3223C58.4481 66.1191 58.0693 65.8314 57.752 65.459C57.4346 65.0824 57.1891 64.6317 57.0156 64.1069C56.8464 63.578 56.7617 62.9897 56.7617 62.3423V61.4219C56.7617 60.7744 56.8464 60.1883 57.0156 59.6636C57.1891 59.1346 57.4367 58.6818 57.7583 58.3052C58.0841 57.9285 58.4756 57.6387 58.9326 57.4355C59.3896 57.2324 59.9038 57.1309 60.4751 57.1309C61.1733 57.1309 61.7637 57.262 62.2461 57.5244C62.7285 57.7868 63.103 58.1507 63.3696 58.6162C63.6405 59.0775 63.8076 59.6128 63.8711 60.2222H62.6523C62.5931 59.7905 62.4831 59.4202 62.3223 59.1113C62.1615 58.7982 61.9329 58.557 61.6367 58.3877C61.3405 58.2184 60.9533 58.1338 60.4751 58.1338C60.0646 58.1338 59.7028 58.2121 59.3896 58.3687C59.0807 58.5252 58.8205 58.7474 58.6089 59.0352C58.4015 59.3229 58.245 59.6678 58.1392 60.0698C58.0334 60.4718 57.9805 60.9183 57.9805 61.4092V62.3423C57.9805 62.7951 58.027 63.2204 58.1201 63.6182C58.2174 64.016 58.3634 64.3651 58.5581 64.6655C58.7528 64.966 59.0003 65.203 59.3008 65.3765C59.6012 65.5457 59.9567 65.6304 60.3672 65.6304C60.8877 65.6304 61.3024 65.5479 61.6113 65.3828C61.9202 65.2178 62.153 64.9808 62.3096 64.6719C62.4704 64.363 62.5846 63.9927 62.6523 63.561ZM66.5371 56.75V66.5H65.3628V56.75H66.5371ZM66.2578 62.8057L65.769 62.7866C65.7733 62.3169 65.8431 61.8831 65.9785 61.4854C66.1139 61.0833 66.3044 60.7342 66.5498 60.438C66.7952 60.1418 67.0872 59.9132 67.4258 59.7524C67.7686 59.5874 68.1473 59.5049 68.562 59.5049C68.9006 59.5049 69.2052 59.5514 69.4761 59.6445C69.7469 59.7334 69.9775 59.8773 70.168 60.0762C70.3626 60.2751 70.5107 60.5332 70.6123 60.8506C70.7139 61.1637 70.7646 61.5467 70.7646 61.9995V66.5H69.584V61.9868C69.584 61.6271 69.5311 61.3394 69.4253 61.1235C69.3195 60.9035 69.165 60.7448 68.9619 60.6475C68.7588 60.5459 68.5091 60.4951 68.2129 60.4951C67.9209 60.4951 67.6543 60.5565 67.4131 60.6792C67.1761 60.8019 66.9709 60.9712 66.7974 61.187C66.6281 61.4028 66.4948 61.6504 66.3975 61.9297C66.3044 62.2048 66.2578 62.4967 66.2578 62.8057ZM72.2119 63.1421V62.9961C72.2119 62.501 72.2839 62.0418 72.4277 61.6187C72.5716 61.1912 72.779 60.821 73.0498 60.5078C73.3206 60.1904 73.6486 59.945 74.0337 59.7715C74.4188 59.5938 74.8504 59.5049 75.3286 59.5049C75.811 59.5049 76.2448 59.5938 76.6299 59.7715C77.0192 59.945 77.3493 60.1904 77.6201 60.5078C77.8952 60.821 78.1047 61.1912 78.2485 61.6187C78.3924 62.0418 78.4644 62.501 78.4644 62.9961V63.1421C78.4644 63.6372 78.3924 64.0964 78.2485 64.5195C78.1047 64.9427 77.8952 65.313 77.6201 65.6304C77.3493 65.9435 77.0213 66.189 76.6362 66.3667C76.2554 66.5402 75.8237 66.627 75.3413 66.627C74.8589 66.627 74.4251 66.5402 74.04 66.3667C73.6549 66.189 73.3249 65.9435 73.0498 65.6304C72.779 65.313 72.5716 64.9427 72.4277 64.5195C72.2839 64.0964 72.2119 63.6372 72.2119 63.1421ZM73.3862 62.9961V63.1421C73.3862 63.4849 73.4264 63.8086 73.5068 64.1133C73.5872 64.4137 73.7078 64.6803 73.8687 64.9131C74.0337 65.1458 74.2389 65.3299 74.4844 65.4653C74.7298 65.5965 75.0155 65.6621 75.3413 65.6621C75.6629 65.6621 75.9443 65.5965 76.1855 65.4653C76.431 65.3299 76.6341 65.1458 76.7949 64.9131C76.9557 64.6803 77.0763 64.4137 77.1567 64.1133C77.2414 63.8086 77.2837 63.4849 77.2837 63.1421V62.9961C77.2837 62.6576 77.2414 62.3381 77.1567 62.0376C77.0763 61.7329 76.9536 61.4642 76.7886 61.2314C76.6278 60.9945 76.4246 60.8083 76.1792 60.6729C75.938 60.5374 75.6545 60.4697 75.3286 60.4697C75.007 60.4697 74.7235 60.5374 74.478 60.6729C74.2368 60.8083 74.0337 60.9945 73.8687 61.2314C73.7078 61.4642 73.5872 61.7329 73.5068 62.0376C73.4264 62.3381 73.3862 62.6576 73.3862 62.9961ZM79.626 63.1421V62.9961C79.626 62.501 79.6979 62.0418 79.8418 61.6187C79.9857 61.1912 80.193 60.821 80.4639 60.5078C80.7347 60.1904 81.0627 59.945 81.4478 59.7715C81.8328 59.5938 82.2645 59.5049 82.7427 59.5049C83.2251 59.5049 83.6589 59.5938 84.0439 59.7715C84.4333 59.945 84.7633 60.1904 85.0342 60.5078C85.3092 60.821 85.5187 61.1912 85.6626 61.6187C85.8065 62.0418 85.8784 62.501 85.8784 62.9961V63.1421C85.8784 63.6372 85.8065 64.0964 85.6626 64.5195C85.5187 64.9427 85.3092 65.313 85.0342 65.6304C84.7633 65.9435 84.4354 66.189 84.0503 66.3667C83.6694 66.5402 83.2378 66.627 82.7554 66.627C82.2729 66.627 81.8392 66.5402 81.4541 66.3667C81.069 66.189 80.7389 65.9435 80.4639 65.6304C80.193 65.313 79.9857 64.9427 79.8418 64.5195C79.6979 64.0964 79.626 63.6372 79.626 63.1421ZM80.8003 62.9961V63.1421C80.8003 63.4849 80.8405 63.8086 80.9209 64.1133C81.0013 64.4137 81.1219 64.6803 81.2827 64.9131C81.4478 65.1458 81.653 65.3299 81.8984 65.4653C82.1439 65.5965 82.4295 65.6621 82.7554 65.6621C83.077 65.6621 83.3584 65.5965 83.5996 65.4653C83.8451 65.3299 84.0482 65.1458 84.209 64.9131C84.3698 64.6803 84.4904 64.4137 84.5708 64.1133C84.6554 63.8086 84.6978 63.4849 84.6978 63.1421V62.9961C84.6978 62.6576 84.6554 62.3381 84.5708 62.0376C84.4904 61.7329 84.3677 61.4642 84.2026 61.2314C84.0418 60.9945 83.8387 60.8083 83.5933 60.6729C83.3521 60.5374 83.0685 60.4697 82.7427 60.4697C82.4211 60.4697 82.1375 60.5374 81.8921 60.6729C81.6509 60.8083 81.4478 60.9945 81.2827 61.2314C81.1219 61.4642 81.0013 61.7329 80.9209 62.0376C80.8405 62.3381 80.8003 62.6576 80.8003 62.9961ZM91.3501 64.6782C91.3501 64.509 91.312 64.3524 91.2358 64.2085C91.1639 64.0604 91.0137 63.9271 90.7852 63.8086C90.5609 63.6859 90.2223 63.5801 89.7695 63.4912C89.3887 63.4108 89.0438 63.3156 88.7349 63.2056C88.4302 63.0955 88.1699 62.9622 87.9541 62.8057C87.7425 62.6491 87.5796 62.465 87.4653 62.2534C87.3511 62.0418 87.2939 61.7943 87.2939 61.5107C87.2939 61.2399 87.3532 60.9839 87.4717 60.7427C87.5944 60.5015 87.7658 60.2878 87.9858 60.1016C88.2101 59.9154 88.4788 59.7694 88.792 59.6636C89.1051 59.5578 89.4543 59.5049 89.8394 59.5049C90.3895 59.5049 90.8592 59.6022 91.2485 59.7969C91.6379 59.9915 91.9362 60.2518 92.1436 60.5776C92.3509 60.8993 92.4546 61.2568 92.4546 61.6504H91.2803C91.2803 61.46 91.2231 61.2759 91.1089 61.0981C90.9989 60.9162 90.8359 60.766 90.6201 60.6475C90.4085 60.529 90.1483 60.4697 89.8394 60.4697C89.5135 60.4697 89.249 60.5205 89.0459 60.6221C88.847 60.7194 88.701 60.8442 88.6079 60.9966C88.519 61.1489 88.4746 61.3097 88.4746 61.479C88.4746 61.606 88.4958 61.7202 88.5381 61.8218C88.5846 61.9191 88.665 62.0101 88.7793 62.0947C88.8936 62.1751 89.0544 62.2513 89.2617 62.3232C89.4691 62.3952 89.7336 62.4671 90.0552 62.5391C90.618 62.666 91.0814 62.8184 91.4453 62.9961C91.8092 63.1738 92.0801 63.3918 92.2578 63.6499C92.4355 63.908 92.5244 64.2212 92.5244 64.5894C92.5244 64.8898 92.4609 65.1649 92.334 65.4146C92.2113 65.6642 92.0314 65.88 91.7944 66.062C91.5617 66.2397 91.2824 66.3794 90.9565 66.481C90.6349 66.5783 90.2731 66.627 89.8711 66.627C89.266 66.627 88.7539 66.519 88.335 66.3032C87.916 66.0874 87.5986 65.8081 87.3828 65.4653C87.167 65.1226 87.0591 64.7607 87.0591 64.3799H88.2397C88.2567 64.7015 88.3498 64.9575 88.519 65.1479C88.6883 65.3341 88.8957 65.4674 89.1411 65.5479C89.3866 65.624 89.6299 65.6621 89.8711 65.6621C90.1927 65.6621 90.4614 65.6198 90.6772 65.5352C90.8973 65.4505 91.0645 65.3341 91.1787 65.186C91.293 65.0379 91.3501 64.8687 91.3501 64.6782ZM96.917 66.627C96.4388 66.627 96.005 66.5465 95.6157 66.3857C95.2306 66.2207 94.8984 65.9901 94.6191 65.6938C94.3441 65.3976 94.1325 65.0464 93.9844 64.6401C93.8363 64.2339 93.7622 63.7896 93.7622 63.3071V63.0405C93.7622 62.4819 93.8447 61.9847 94.0098 61.5488C94.1748 61.1087 94.3991 60.7363 94.6826 60.4316C94.9661 60.127 95.2878 59.8963 95.6475 59.7397C96.0072 59.5832 96.3796 59.5049 96.7646 59.5049C97.2555 59.5049 97.6787 59.5895 98.0342 59.7588C98.3939 59.9281 98.688 60.165 98.9165 60.4697C99.145 60.7702 99.3143 61.1257 99.4243 61.5361C99.5343 61.9424 99.5894 62.3867 99.5894 62.8691V63.396H94.4604V62.4375H98.415V62.3486C98.3981 62.0439 98.3346 61.7477 98.2246 61.46C98.1188 61.1722 97.9495 60.9352 97.7168 60.749C97.484 60.5628 97.1667 60.4697 96.7646 60.4697C96.498 60.4697 96.2526 60.5269 96.0283 60.6411C95.804 60.7511 95.6115 60.9162 95.4507 61.1362C95.2899 61.3563 95.165 61.625 95.0762 61.9424C94.9873 62.2598 94.9429 62.6258 94.9429 63.0405V63.3071C94.9429 63.633 94.9873 63.9398 95.0762 64.2275C95.1693 64.5111 95.3026 64.7607 95.4761 64.9766C95.6538 65.1924 95.8675 65.3617 96.1172 65.4844C96.3711 65.6071 96.6589 65.6685 96.9805 65.6685C97.3952 65.6685 97.7464 65.5838 98.0342 65.4146C98.3219 65.2453 98.5737 65.0189 98.7896 64.7354L99.5005 65.3003C99.3524 65.5246 99.1641 65.7383 98.9355 65.9414C98.707 66.1445 98.4256 66.3096 98.0913 66.4365C97.7612 66.5635 97.3698 66.627 96.917 66.627ZM105.588 57.2578V66.5H104.363V57.2578H105.588ZM109.46 61.4155V62.4185H105.321V61.4155H109.46ZM110.088 57.2578V58.2607H105.321V57.2578H110.088ZM112.646 59.6318V66.5H111.466V59.6318H112.646ZM111.377 57.8101C111.377 57.6196 111.434 57.4588 111.548 57.3276C111.667 57.1965 111.84 57.1309 112.069 57.1309C112.293 57.1309 112.465 57.1965 112.583 57.3276C112.706 57.4588 112.767 57.6196 112.767 57.8101C112.767 57.992 112.706 58.1486 112.583 58.2798C112.465 58.4067 112.293 58.4702 112.069 58.4702C111.84 58.4702 111.667 58.4067 111.548 58.2798C111.434 58.1486 111.377 57.992 111.377 57.8101ZM115.808 56.75V66.5H114.627V56.75H115.808ZM120.543 66.627C120.065 66.627 119.631 66.5465 119.242 66.3857C118.857 66.2207 118.524 65.9901 118.245 65.6938C117.97 65.3976 117.758 65.0464 117.61 64.6401C117.462 64.2339 117.388 63.7896 117.388 63.3071V63.0405C117.388 62.4819 117.471 61.9847 117.636 61.5488C117.801 61.1087 118.025 60.7363 118.309 60.4316C118.592 60.127 118.914 59.8963 119.273 59.7397C119.633 59.5832 120.006 59.5049 120.391 59.5049C120.882 59.5049 121.305 59.5895 121.66 59.7588C122.02 59.9281 122.314 60.165 122.542 60.4697C122.771 60.7702 122.94 61.1257 123.05 61.5361C123.16 61.9424 123.215 62.3867 123.215 62.8691V63.396H118.086V62.4375H122.041V62.3486C122.024 62.0439 121.961 61.7477 121.851 61.46C121.745 61.1722 121.576 60.9352 121.343 60.749C121.11 60.5628 120.793 60.4697 120.391 60.4697C120.124 60.4697 119.879 60.5269 119.654 60.6411C119.43 60.7511 119.237 60.9162 119.077 61.1362C118.916 61.3563 118.791 61.625 118.702 61.9424C118.613 62.2598 118.569 62.6258 118.569 63.0405V63.3071C118.569 63.633 118.613 63.9398 118.702 64.2275C118.795 64.5111 118.929 64.7607 119.102 64.9766C119.28 65.1924 119.493 65.3617 119.743 65.4844C119.997 65.6071 120.285 65.6685 120.606 65.6685C121.021 65.6685 121.372 65.5838 121.66 65.4146C121.948 65.2453 122.2 65.0189 122.416 64.7354L123.126 65.3003C122.978 65.5246 122.79 65.7383 122.562 65.9414C122.333 66.1445 122.052 66.3096 121.717 66.4365C121.387 66.5635 120.996 66.627 120.543 66.627ZM128.585 64.6782C128.585 64.509 128.547 64.3524 128.471 64.2085C128.399 64.0604 128.249 63.9271 128.021 63.8086C127.796 63.6859 127.458 63.5801 127.005 63.4912C126.624 63.4108 126.279 63.3156 125.97 63.2056C125.666 63.0955 125.405 62.9622 125.189 62.8057C124.978 62.6491 124.815 62.465 124.701 62.2534C124.586 62.0418 124.529 61.7943 124.529 61.5107C124.529 61.2399 124.589 60.9839 124.707 60.7427C124.83 60.5015 125.001 60.2878 125.221 60.1016C125.445 59.9154 125.714 59.7694 126.027 59.6636C126.34 59.5578 126.69 59.5049 127.075 59.5049C127.625 59.5049 128.095 59.6022 128.484 59.7969C128.873 59.9915 129.172 60.2518 129.379 60.5776C129.586 60.8993 129.69 61.2568 129.69 61.6504H128.516C128.516 61.46 128.458 61.2759 128.344 61.0981C128.234 60.9162 128.071 60.766 127.855 60.6475C127.644 60.529 127.384 60.4697 127.075 60.4697C126.749 60.4697 126.484 60.5205 126.281 60.6221C126.082 60.7194 125.936 60.8442 125.843 60.9966C125.754 61.1489 125.71 61.3097 125.71 61.479C125.71 61.606 125.731 61.7202 125.773 61.8218C125.82 61.9191 125.9 62.0101 126.015 62.0947C126.129 62.1751 126.29 62.2513 126.497 62.3232C126.704 62.3952 126.969 62.4671 127.291 62.5391C127.853 62.666 128.317 62.8184 128.681 62.9961C129.045 63.1738 129.315 63.3918 129.493 63.6499C129.671 63.908 129.76 64.2212 129.76 64.5894C129.76 64.8898 129.696 65.1649 129.569 65.4146C129.447 65.6642 129.267 65.88 129.03 66.062C128.797 66.2397 128.518 66.3794 128.192 66.481C127.87 66.5783 127.508 66.627 127.106 66.627C126.501 66.627 125.989 66.519 125.57 66.3032C125.151 66.0874 124.834 65.8081 124.618 65.4653C124.402 65.1226 124.294 64.7607 124.294 64.3799H125.475C125.492 64.7015 125.585 64.9575 125.754 65.1479C125.924 65.3341 126.131 65.4674 126.376 65.5479C126.622 65.624 126.865 65.6621 127.106 65.6621C127.428 65.6621 127.697 65.6198 127.913 65.5352C128.133 65.4505 128.3 65.3341 128.414 65.186C128.528 65.0379 128.585 64.8687 128.585 64.6782Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"15.5",y:"47.5",width:"156",height:"29",rx:"3.5",stroke:"#0F172A"}),(0,h.createElement)("path",{d:"M188.182 57.2578V66.5H186.951L182.298 59.3716V66.5H181.073V57.2578H182.298L186.97 64.4053V57.2578H188.182ZM189.864 63.1421V62.9961C189.864 62.501 189.936 62.0418 190.08 61.6187C190.224 61.1912 190.431 60.821 190.702 60.5078C190.973 60.1904 191.301 59.945 191.686 59.7715C192.071 59.5938 192.503 59.5049 192.981 59.5049C193.463 59.5049 193.897 59.5938 194.282 59.7715C194.672 59.945 195.002 60.1904 195.272 60.5078C195.548 60.821 195.757 61.1912 195.901 61.6187C196.045 62.0418 196.117 62.501 196.117 62.9961V63.1421C196.117 63.6372 196.045 64.0964 195.901 64.5195C195.757 64.9427 195.548 65.313 195.272 65.6304C195.002 65.9435 194.674 66.189 194.289 66.3667C193.908 66.5402 193.476 66.627 192.994 66.627C192.511 66.627 192.077 66.5402 191.692 66.3667C191.307 66.189 190.977 65.9435 190.702 65.6304C190.431 65.313 190.224 64.9427 190.08 64.5195C189.936 64.0964 189.864 63.6372 189.864 63.1421ZM191.039 62.9961V63.1421C191.039 63.4849 191.079 63.8086 191.159 64.1133C191.24 64.4137 191.36 64.6803 191.521 64.9131C191.686 65.1458 191.891 65.3299 192.137 65.4653C192.382 65.5965 192.668 65.6621 192.994 65.6621C193.315 65.6621 193.597 65.5965 193.838 65.4653C194.083 65.3299 194.286 65.1458 194.447 64.9131C194.608 64.6803 194.729 64.4137 194.809 64.1133C194.894 63.8086 194.936 63.4849 194.936 63.1421V62.9961C194.936 62.6576 194.894 62.3381 194.809 62.0376C194.729 61.7329 194.606 61.4642 194.441 61.2314C194.28 60.9945 194.077 60.8083 193.832 60.6729C193.59 60.5374 193.307 60.4697 192.981 60.4697C192.659 60.4697 192.376 60.5374 192.13 60.6729C191.889 60.8083 191.686 60.9945 191.521 61.2314C191.36 61.4642 191.24 61.7329 191.159 62.0376C191.079 62.3381 191.039 62.6576 191.039 62.9961ZM202.382 66.5H201.208V59.0352C201.208 58.5146 201.309 58.0745 201.512 57.7148C201.715 57.3551 202.005 57.0822 202.382 56.896C202.758 56.7098 203.205 56.6167 203.721 56.6167C204.026 56.6167 204.324 56.6548 204.616 56.731C204.908 56.8029 205.209 56.8939 205.518 57.0039L205.321 57.9941C205.126 57.918 204.9 57.846 204.642 57.7783C204.388 57.7064 204.108 57.6704 203.804 57.6704C203.3 57.6704 202.936 57.7847 202.712 58.0132C202.492 58.2375 202.382 58.5781 202.382 59.0352V66.5ZM203.785 59.6318V60.5332H200.122V59.6318H203.785ZM206.095 59.6318V66.5H204.921V59.6318H206.095ZM209.301 56.75V66.5H208.12V56.75H209.301ZM214.036 66.627C213.558 66.627 213.124 66.5465 212.735 66.3857C212.35 66.2207 212.018 65.9901 211.738 65.6938C211.463 65.3976 211.252 65.0464 211.104 64.6401C210.955 64.2339 210.881 63.7896 210.881 63.3071V63.0405C210.881 62.4819 210.964 61.9847 211.129 61.5488C211.294 61.1087 211.518 60.7363 211.802 60.4316C212.085 60.127 212.407 59.8963 212.767 59.7397C213.126 59.5832 213.499 59.5049 213.884 59.5049C214.375 59.5049 214.798 59.5895 215.153 59.7588C215.513 59.9281 215.807 60.165 216.036 60.4697C216.264 60.7702 216.433 61.1257 216.543 61.5361C216.653 61.9424 216.708 62.3867 216.708 62.8691V63.396H211.58V62.4375H215.534V62.3486C215.517 62.0439 215.454 61.7477 215.344 61.46C215.238 61.1722 215.069 60.9352 214.836 60.749C214.603 60.5628 214.286 60.4697 213.884 60.4697C213.617 60.4697 213.372 60.5269 213.147 60.6411C212.923 60.7511 212.731 60.9162 212.57 61.1362C212.409 61.3563 212.284 61.625 212.195 61.9424C212.106 62.2598 212.062 62.6258 212.062 63.0405V63.3071C212.062 63.633 212.106 63.9398 212.195 64.2275C212.288 64.5111 212.422 64.7607 212.595 64.9766C212.773 65.1924 212.987 65.3617 213.236 65.4844C213.49 65.6071 213.778 65.6685 214.1 65.6685C214.514 65.6685 214.866 65.5838 215.153 65.4146C215.441 65.2453 215.693 65.0189 215.909 64.7354L216.62 65.3003C216.472 65.5246 216.283 65.7383 216.055 65.9414C215.826 66.1445 215.545 66.3096 215.21 66.4365C214.88 66.5635 214.489 66.627 214.036 66.627ZM224.053 65.6621C224.332 65.6621 224.59 65.605 224.827 65.4907C225.064 65.3765 225.259 65.2199 225.411 65.021C225.563 64.8179 225.65 64.5872 225.671 64.3291H226.789C226.767 64.7354 226.63 65.1141 226.376 65.4653C226.126 65.8123 225.798 66.0938 225.392 66.3096C224.986 66.5212 224.539 66.627 224.053 66.627C223.536 66.627 223.086 66.536 222.701 66.354C222.32 66.172 222.002 65.9224 221.749 65.605C221.499 65.2876 221.311 64.9237 221.184 64.5132C221.061 64.0985 221 63.6605 221 63.1992V62.9326C221 62.4714 221.061 62.0355 221.184 61.625C221.311 61.2103 221.499 60.8442 221.749 60.5269C222.002 60.2095 222.32 59.9598 222.701 59.7778C223.086 59.5959 223.536 59.5049 224.053 59.5049C224.59 59.5049 225.06 59.6149 225.462 59.835C225.864 60.0508 226.179 60.347 226.408 60.7236C226.64 61.096 226.767 61.5192 226.789 61.9932H225.671C225.65 61.7096 225.57 61.4536 225.43 61.2251C225.295 60.9966 225.109 60.8146 224.872 60.6792C224.639 60.5396 224.366 60.4697 224.053 60.4697C223.693 60.4697 223.39 60.5417 223.145 60.6855C222.904 60.8252 222.711 61.0156 222.567 61.2568C222.428 61.4938 222.326 61.7583 222.263 62.0503C222.203 62.3381 222.174 62.6322 222.174 62.9326V63.1992C222.174 63.4997 222.203 63.7959 222.263 64.0879C222.322 64.3799 222.421 64.6444 222.561 64.8813C222.705 65.1183 222.897 65.3088 223.139 65.4526C223.384 65.5923 223.689 65.6621 224.053 65.6621ZM229.283 56.75V66.5H228.109V56.75H229.283ZM229.004 62.8057L228.515 62.7866C228.519 62.3169 228.589 61.8831 228.725 61.4854C228.86 61.0833 229.05 60.7342 229.296 60.438C229.541 60.1418 229.833 59.9132 230.172 59.7524C230.515 59.5874 230.893 59.5049 231.308 59.5049C231.647 59.5049 231.951 59.5514 232.222 59.6445C232.493 59.7334 232.724 59.8773 232.914 60.0762C233.109 60.2751 233.257 60.5332 233.358 60.8506C233.46 61.1637 233.511 61.5467 233.511 61.9995V66.5H232.33V61.9868C232.33 61.6271 232.277 61.3394 232.171 61.1235C232.066 60.9035 231.911 60.7448 231.708 60.6475C231.505 60.5459 231.255 60.4951 230.959 60.4951C230.667 60.4951 230.4 60.5565 230.159 60.6792C229.922 60.8019 229.717 60.9712 229.543 61.187C229.374 61.4028 229.241 61.6504 229.144 61.9297C229.05 62.2048 229.004 62.4967 229.004 62.8057ZM234.958 63.1421V62.9961C234.958 62.501 235.03 62.0418 235.174 61.6187C235.318 61.1912 235.525 60.821 235.796 60.5078C236.067 60.1904 236.395 59.945 236.78 59.7715C237.165 59.5938 237.597 59.5049 238.075 59.5049C238.557 59.5049 238.991 59.5938 239.376 59.7715C239.765 59.945 240.095 60.1904 240.366 60.5078C240.641 60.821 240.851 61.1912 240.995 61.6187C241.139 62.0418 241.21 62.501 241.21 62.9961V63.1421C241.21 63.6372 241.139 64.0964 240.995 64.5195C240.851 64.9427 240.641 65.313 240.366 65.6304C240.095 65.9435 239.767 66.189 239.382 66.3667C239.001 66.5402 238.57 66.627 238.087 66.627C237.605 66.627 237.171 66.5402 236.786 66.3667C236.401 66.189 236.071 65.9435 235.796 65.6304C235.525 65.313 235.318 64.9427 235.174 64.5195C235.03 64.0964 234.958 63.6372 234.958 63.1421ZM236.132 62.9961V63.1421C236.132 63.4849 236.173 63.8086 236.253 64.1133C236.333 64.4137 236.454 64.6803 236.615 64.9131C236.78 65.1458 236.985 65.3299 237.23 65.4653C237.476 65.5965 237.762 65.6621 238.087 65.6621C238.409 65.6621 238.69 65.5965 238.932 65.4653C239.177 65.3299 239.38 65.1458 239.541 64.9131C239.702 64.6803 239.822 64.4137 239.903 64.1133C239.987 63.8086 240.03 63.4849 240.03 63.1421V62.9961C240.03 62.6576 239.987 62.3381 239.903 62.0376C239.822 61.7329 239.7 61.4642 239.535 61.2314C239.374 60.9945 239.171 60.8083 238.925 60.6729C238.684 60.5374 238.401 60.4697 238.075 60.4697C237.753 60.4697 237.47 60.5374 237.224 60.6729C236.983 60.8083 236.78 60.9945 236.615 61.2314C236.454 61.4642 236.333 61.7329 236.253 62.0376C236.173 62.3381 236.132 62.6576 236.132 62.9961ZM246.682 64.6782C246.682 64.509 246.644 64.3524 246.568 64.2085C246.496 64.0604 246.346 63.9271 246.117 63.8086C245.893 63.6859 245.554 63.5801 245.102 63.4912C244.721 63.4108 244.376 63.3156 244.067 63.2056C243.762 63.0955 243.502 62.9622 243.286 62.8057C243.075 62.6491 242.912 62.465 242.797 62.2534C242.683 62.0418 242.626 61.7943 242.626 61.5107C242.626 61.2399 242.685 60.9839 242.804 60.7427C242.926 60.5015 243.098 60.2878 243.318 60.1016C243.542 59.9154 243.811 59.7694 244.124 59.6636C244.437 59.5578 244.786 59.5049 245.171 59.5049C245.722 59.5049 246.191 59.6022 246.581 59.7969C246.97 59.9915 247.268 60.2518 247.476 60.5776C247.683 60.8993 247.787 61.2568 247.787 61.6504H246.612C246.612 61.46 246.555 61.2759 246.441 61.0981C246.331 60.9162 246.168 60.766 245.952 60.6475C245.741 60.529 245.48 60.4697 245.171 60.4697C244.846 60.4697 244.581 60.5205 244.378 60.6221C244.179 60.7194 244.033 60.8442 243.94 60.9966C243.851 61.1489 243.807 61.3097 243.807 61.479C243.807 61.606 243.828 61.7202 243.87 61.8218C243.917 61.9191 243.997 62.0101 244.111 62.0947C244.226 62.1751 244.386 62.2513 244.594 62.3232C244.801 62.3952 245.066 62.4671 245.387 62.5391C245.95 62.666 246.413 62.8184 246.777 62.9961C247.141 63.1738 247.412 63.3918 247.59 63.6499C247.768 63.908 247.856 64.2212 247.856 64.5894C247.856 64.8898 247.793 65.1649 247.666 65.4146C247.543 65.6642 247.363 65.88 247.126 66.062C246.894 66.2397 246.614 66.3794 246.289 66.481C245.967 66.5783 245.605 66.627 245.203 66.627C244.598 66.627 244.086 66.519 243.667 66.3032C243.248 66.0874 242.931 65.8081 242.715 65.4653C242.499 65.1226 242.391 64.7607 242.391 64.3799H243.572C243.589 64.7015 243.682 64.9575 243.851 65.1479C244.02 65.3341 244.228 65.4674 244.473 65.5479C244.719 65.624 244.962 65.6621 245.203 65.6621C245.525 65.6621 245.793 65.6198 246.009 65.5352C246.229 65.4505 246.396 65.3341 246.511 65.186C246.625 65.0379 246.682 64.8687 246.682 64.6782ZM252.249 66.627C251.771 66.627 251.337 66.5465 250.948 66.3857C250.563 66.2207 250.23 65.9901 249.951 65.6938C249.676 65.3976 249.465 65.0464 249.316 64.6401C249.168 64.2339 249.094 63.7896 249.094 63.3071V63.0405C249.094 62.4819 249.177 61.9847 249.342 61.5488C249.507 61.1087 249.731 60.7363 250.015 60.4316C250.298 60.127 250.62 59.8963 250.979 59.7397C251.339 59.5832 251.712 59.5049 252.097 59.5049C252.588 59.5049 253.011 59.5895 253.366 59.7588C253.726 59.9281 254.02 60.165 254.249 60.4697C254.477 60.7702 254.646 61.1257 254.756 61.5361C254.866 61.9424 254.921 62.3867 254.921 62.8691V63.396H249.792V62.4375H253.747V62.3486C253.73 62.0439 253.667 61.7477 253.557 61.46C253.451 61.1722 253.282 60.9352 253.049 60.749C252.816 60.5628 252.499 60.4697 252.097 60.4697C251.83 60.4697 251.585 60.5269 251.36 60.6411C251.136 60.7511 250.944 60.9162 250.783 61.1362C250.622 61.3563 250.497 61.625 250.408 61.9424C250.319 62.2598 250.275 62.6258 250.275 63.0405V63.3071C250.275 63.633 250.319 63.9398 250.408 64.2275C250.501 64.5111 250.635 64.7607 250.808 64.9766C250.986 65.1924 251.2 65.3617 251.449 65.4844C251.703 65.6071 251.991 65.6685 252.312 65.6685C252.727 65.6685 253.078 65.5838 253.366 65.4146C253.654 65.2453 253.906 65.0189 254.122 64.7354L254.833 65.3003C254.684 65.5246 254.496 65.7383 254.268 65.9414C254.039 66.1445 253.758 66.3096 253.423 66.4365C253.093 66.5635 252.702 66.627 252.249 66.627ZM257.467 61.0981V66.5H256.292V59.6318H257.403L257.467 61.0981ZM257.188 62.8057L256.699 62.7866C256.703 62.3169 256.773 61.8831 256.908 61.4854C257.044 61.0833 257.234 60.7342 257.479 60.438C257.725 60.1418 258.017 59.9132 258.355 59.7524C258.698 59.5874 259.077 59.5049 259.492 59.5049C259.83 59.5049 260.135 59.5514 260.406 59.6445C260.677 59.7334 260.907 59.8773 261.098 60.0762C261.292 60.2751 261.44 60.5332 261.542 60.8506C261.644 61.1637 261.694 61.5467 261.694 61.9995V66.5H260.514V61.9868C260.514 61.6271 260.461 61.3394 260.355 61.1235C260.249 60.9035 260.095 60.7448 259.892 60.6475C259.688 60.5459 259.439 60.4951 259.143 60.4951C258.851 60.4951 258.584 60.5565 258.343 60.6792C258.106 60.8019 257.901 60.9712 257.727 61.187C257.558 61.4028 257.424 61.6504 257.327 61.9297C257.234 62.2048 257.188 62.4967 257.188 62.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M16.46 84.7578H17.647L20.6748 92.2925L23.6963 84.7578H24.8896L21.1318 94H20.2051L16.46 84.7578ZM16.0728 84.7578H17.1201L17.2915 90.3945V94H16.0728V84.7578ZM24.2231 84.7578H25.2705V94H24.0518V90.3945L24.2231 84.7578ZM31.2944 92.8257V89.29C31.2944 89.0192 31.2394 88.7843 31.1294 88.5854C31.0236 88.3823 30.8628 88.2257 30.647 88.1157C30.4312 88.0057 30.1646 87.9507 29.8472 87.9507C29.5509 87.9507 29.2907 88.0015 29.0664 88.103C28.8464 88.2046 28.6729 88.3379 28.5459 88.5029C28.4232 88.668 28.3618 88.8457 28.3618 89.0361H27.1875C27.1875 88.7907 27.251 88.5474 27.3779 88.3062C27.5049 88.0649 27.6868 87.847 27.9238 87.6523C28.165 87.4535 28.4528 87.2969 28.7871 87.1826C29.1257 87.0641 29.5023 87.0049 29.917 87.0049C30.4163 87.0049 30.8564 87.0895 31.2373 87.2588C31.6224 87.4281 31.9229 87.6841 32.1387 88.0269C32.3587 88.3654 32.4688 88.7907 32.4688 89.3027V92.502C32.4688 92.7305 32.4878 92.9738 32.5259 93.2319C32.5682 93.4901 32.6296 93.7122 32.71 93.8984V94H31.4849C31.4256 93.8646 31.3791 93.6847 31.3452 93.4604C31.3114 93.2319 31.2944 93.0203 31.2944 92.8257ZM31.4976 89.8359L31.5103 90.6611H30.3232C29.9889 90.6611 29.6906 90.6886 29.4282 90.7437C29.1659 90.7944 28.9458 90.8727 28.7681 90.9785C28.5903 91.0843 28.4549 91.2176 28.3618 91.3784C28.2687 91.535 28.2222 91.7191 28.2222 91.9307C28.2222 92.1465 28.2708 92.3433 28.3682 92.521C28.4655 92.6987 28.6115 92.8405 28.8062 92.9463C29.005 93.0479 29.2484 93.0986 29.5361 93.0986C29.8958 93.0986 30.2132 93.0225 30.4883 92.8701C30.7633 92.7178 30.9813 92.5316 31.1421 92.3115C31.3071 92.0915 31.396 91.8778 31.4087 91.6704L31.9102 92.2354C31.8805 92.4131 31.8001 92.6099 31.6689 92.8257C31.5378 93.0415 31.3621 93.2489 31.1421 93.4478C30.9263 93.6424 30.6681 93.8053 30.3677 93.9365C30.0715 94.0635 29.7371 94.127 29.3647 94.127C28.8993 94.127 28.4909 94.036 28.1396 93.854C27.7926 93.672 27.5218 93.4287 27.3271 93.124C27.1367 92.8151 27.0415 92.4702 27.0415 92.0894C27.0415 91.7212 27.1134 91.3975 27.2573 91.1182C27.4012 90.8346 27.6086 90.5998 27.8794 90.4136C28.1502 90.2231 28.4761 90.0793 28.8569 89.9819C29.2378 89.8846 29.6631 89.8359 30.1328 89.8359H31.4976ZM35.1094 87.1318L36.6138 89.6328L38.1372 87.1318H39.5146L37.2676 90.5215L39.5845 94H38.2261L36.6392 91.4229L35.0522 94H33.6875L35.998 90.5215L33.7573 87.1318H35.1094ZM42.041 87.1318V94H40.8604V87.1318H42.041ZM40.7715 85.3101C40.7715 85.1196 40.8286 84.9588 40.9429 84.8276C41.0614 84.6965 41.2349 84.6309 41.4634 84.6309C41.6877 84.6309 41.859 84.6965 41.9775 84.8276C42.1003 84.9588 42.1616 85.1196 42.1616 85.3101C42.1616 85.492 42.1003 85.6486 41.9775 85.7798C41.859 85.9067 41.6877 85.9702 41.4634 85.9702C41.2349 85.9702 41.0614 85.9067 40.9429 85.7798C40.8286 85.6486 40.7715 85.492 40.7715 85.3101ZM45.0942 88.4966V94H43.9136V87.1318H45.0308L45.0942 88.4966ZM44.853 90.3057L44.3071 90.2866C44.3114 89.8169 44.3727 89.3831 44.4912 88.9854C44.6097 88.5833 44.7853 88.2342 45.0181 87.938C45.2508 87.6418 45.5407 87.4132 45.8877 87.2524C46.2347 87.0874 46.6367 87.0049 47.0938 87.0049C47.4154 87.0049 47.7116 87.0514 47.9824 87.1445C48.2533 87.2334 48.4881 87.3752 48.687 87.5698C48.8859 87.7645 49.0404 88.0142 49.1504 88.3188C49.2604 88.6235 49.3154 88.9917 49.3154 89.4233V94H48.1411V89.4805C48.1411 89.1208 48.0798 88.833 47.957 88.6172C47.8385 88.4014 47.6693 88.2448 47.4492 88.1475C47.2292 88.0459 46.971 87.9951 46.6748 87.9951C46.3278 87.9951 46.0379 88.0565 45.8052 88.1792C45.5724 88.3019 45.3862 88.4712 45.2466 88.687C45.1069 88.9028 45.0054 89.1504 44.9419 89.4297C44.8826 89.7048 44.853 89.9967 44.853 90.3057ZM49.3027 89.6582L48.5156 89.8994C48.5199 89.5228 48.5812 89.161 48.6997 88.814C48.8224 88.467 48.998 88.158 49.2266 87.8872C49.4593 87.6164 49.745 87.4027 50.0835 87.2461C50.422 87.0853 50.8092 87.0049 51.2451 87.0049C51.6133 87.0049 51.9391 87.0535 52.2227 87.1509C52.5104 87.2482 52.7516 87.3984 52.9463 87.6016C53.1452 87.8005 53.2954 88.0565 53.397 88.3696C53.4985 88.6828 53.5493 89.0552 53.5493 89.4868V94H52.3687V89.4741C52.3687 89.089 52.3073 88.7907 52.1846 88.5791C52.0661 88.3633 51.8968 88.2131 51.6768 88.1284C51.4609 88.0396 51.2028 87.9951 50.9023 87.9951C50.6442 87.9951 50.4157 88.0396 50.2168 88.1284C50.0179 88.2173 49.8507 88.34 49.7153 88.4966C49.5799 88.6489 49.4762 88.8245 49.4043 89.0234C49.3366 89.2223 49.3027 89.4339 49.3027 89.6582ZM59.5288 92.4131V87.1318H60.7095V94H59.5859L59.5288 92.4131ZM59.751 90.9658L60.2397 90.9531C60.2397 91.4102 60.1911 91.8333 60.0938 92.2227C60.0007 92.6077 59.8483 92.9421 59.6367 93.2256C59.4251 93.5091 59.1479 93.7313 58.8052 93.8921C58.4624 94.0487 58.0456 94.127 57.5547 94.127C57.2204 94.127 56.9136 94.0783 56.6343 93.981C56.3592 93.8836 56.1222 93.7334 55.9233 93.5303C55.7244 93.3271 55.57 93.0627 55.46 92.7368C55.3542 92.411 55.3013 92.0195 55.3013 91.5625V87.1318H56.4756V91.5752C56.4756 91.8841 56.5094 92.1401 56.5771 92.3433C56.6491 92.5422 56.7443 92.7008 56.8628 92.8193C56.9855 92.9336 57.1209 93.014 57.269 93.0605C57.4214 93.1071 57.578 93.1304 57.7388 93.1304C58.2381 93.1304 58.6338 93.0352 58.9258 92.8447C59.2178 92.6501 59.4272 92.3898 59.5542 92.064C59.6854 91.7339 59.751 91.3678 59.751 90.9658ZM63.6675 88.4966V94H62.4868V87.1318H63.604L63.6675 88.4966ZM63.4263 90.3057L62.8804 90.2866C62.8846 89.8169 62.946 89.3831 63.0645 88.9854C63.1829 88.5833 63.3586 88.2342 63.5913 87.938C63.8241 87.6418 64.1139 87.4132 64.4609 87.2524C64.8079 87.0874 65.21 87.0049 65.667 87.0049C65.9886 87.0049 66.2848 87.0514 66.5557 87.1445C66.8265 87.2334 67.0614 87.3752 67.2603 87.5698C67.4591 87.7645 67.6136 88.0142 67.7236 88.3188C67.8337 88.6235 67.8887 88.9917 67.8887 89.4233V94H66.7144V89.4805C66.7144 89.1208 66.653 88.833 66.5303 88.6172C66.4118 88.4014 66.2425 88.2448 66.0225 88.1475C65.8024 88.0459 65.5443 87.9951 65.248 87.9951C64.901 87.9951 64.6112 88.0565 64.3784 88.1792C64.1457 88.3019 63.9595 88.4712 63.8198 88.687C63.6802 88.9028 63.5786 89.1504 63.5151 89.4297C63.4559 89.7048 63.4263 89.9967 63.4263 90.3057ZM67.876 89.6582L67.0889 89.8994C67.0931 89.5228 67.1545 89.161 67.2729 88.814C67.3957 88.467 67.5713 88.158 67.7998 87.8872C68.0326 87.6164 68.3182 87.4027 68.6567 87.2461C68.9953 87.0853 69.3825 87.0049 69.8184 87.0049C70.1865 87.0049 70.5124 87.0535 70.7959 87.1509C71.0837 87.2482 71.3249 87.3984 71.5195 87.6016C71.7184 87.8005 71.8687 88.0565 71.9702 88.3696C72.0718 88.6828 72.1226 89.0552 72.1226 89.4868V94H70.9419V89.4741C70.9419 89.089 70.8805 88.7907 70.7578 88.5791C70.6393 88.3633 70.4701 88.2131 70.25 88.1284C70.0342 88.0396 69.776 87.9951 69.4756 87.9951C69.2174 87.9951 68.9889 88.0396 68.79 88.1284C68.5911 88.2173 68.424 88.34 68.2886 88.4966C68.1532 88.6489 68.0495 88.8245 67.9775 89.0234C67.9098 89.2223 67.876 89.4339 67.876 89.6582ZM78.6924 94H77.5181V86.5352C77.5181 86.0146 77.6196 85.5745 77.8228 85.2148C78.0259 84.8551 78.3158 84.5822 78.6924 84.396C79.069 84.2098 79.5155 84.1167 80.0317 84.1167C80.3364 84.1167 80.6348 84.1548 80.9268 84.231C81.2188 84.3029 81.5192 84.3939 81.8281 84.5039L81.6313 85.4941C81.4367 85.418 81.2103 85.346 80.9521 85.2783C80.6982 85.2064 80.4189 85.1704 80.1143 85.1704C79.6107 85.1704 79.2467 85.2847 79.0225 85.5132C78.8024 85.7375 78.6924 86.0781 78.6924 86.5352V94ZM80.0952 87.1318V88.0332H76.4326V87.1318H80.0952ZM82.4058 87.1318V94H81.2314V87.1318H82.4058ZM85.6113 84.25V94H84.4307V84.25H85.6113ZM90.3467 94.127C89.8685 94.127 89.4347 94.0465 89.0454 93.8857C88.6603 93.7207 88.3281 93.4901 88.0488 93.1938C87.7738 92.8976 87.5622 92.5464 87.4141 92.1401C87.266 91.7339 87.1919 91.2896 87.1919 90.8071V90.5405C87.1919 89.9819 87.2744 89.4847 87.4395 89.0488C87.6045 88.6087 87.8288 88.2363 88.1123 87.9316C88.3958 87.627 88.7174 87.3963 89.0771 87.2397C89.4368 87.0832 89.8092 87.0049 90.1943 87.0049C90.6852 87.0049 91.1084 87.0895 91.4639 87.2588C91.8236 87.4281 92.1177 87.665 92.3462 87.9697C92.5747 88.2702 92.744 88.6257 92.854 89.0361C92.964 89.4424 93.019 89.8867 93.019 90.3691V90.896H87.8901V89.9375H91.8447V89.8486C91.8278 89.5439 91.7643 89.2477 91.6543 88.96C91.5485 88.6722 91.3792 88.4352 91.1465 88.249C90.9137 88.0628 90.5964 87.9697 90.1943 87.9697C89.9277 87.9697 89.6823 88.0269 89.458 88.1411C89.2337 88.2511 89.0412 88.4162 88.8804 88.6362C88.7196 88.8563 88.5947 89.125 88.5059 89.4424C88.417 89.7598 88.3726 90.1258 88.3726 90.5405V90.8071C88.3726 91.133 88.417 91.4398 88.5059 91.7275C88.599 92.0111 88.7323 92.2607 88.9058 92.4766C89.0835 92.6924 89.2972 92.8617 89.5469 92.9844C89.8008 93.1071 90.0885 93.1685 90.4102 93.1685C90.8249 93.1685 91.1761 93.0838 91.4639 92.9146C91.7516 92.7453 92.0034 92.5189 92.2192 92.2354L92.9302 92.8003C92.7821 93.0246 92.5938 93.2383 92.3652 93.4414C92.1367 93.6445 91.8553 93.8096 91.521 93.9365C91.1909 94.0635 90.7995 94.127 90.3467 94.127ZM101.614 92.1782C101.614 92.009 101.576 91.8524 101.5 91.7085C101.428 91.5604 101.277 91.4271 101.049 91.3086C100.825 91.1859 100.486 91.0801 100.033 90.9912C99.6523 90.9108 99.3075 90.8156 98.9985 90.7056C98.6938 90.5955 98.4336 90.4622 98.2178 90.3057C98.0062 90.1491 97.8433 89.965 97.729 89.7534C97.6147 89.5418 97.5576 89.2943 97.5576 89.0107C97.5576 88.7399 97.6169 88.4839 97.7354 88.2427C97.8581 88.0015 98.0295 87.7878 98.2495 87.6016C98.4738 87.4154 98.7425 87.2694 99.0557 87.1636C99.3688 87.0578 99.7179 87.0049 100.103 87.0049C100.653 87.0049 101.123 87.1022 101.512 87.2969C101.902 87.4915 102.2 87.7518 102.407 88.0776C102.615 88.3993 102.718 88.7568 102.718 89.1504H101.544C101.544 88.96 101.487 88.7759 101.373 88.5981C101.263 88.4162 101.1 88.266 100.884 88.1475C100.672 88.029 100.412 87.9697 100.103 87.9697C99.7772 87.9697 99.5127 88.0205 99.3096 88.1221C99.1107 88.2194 98.9647 88.3442 98.8716 88.4966C98.7827 88.6489 98.7383 88.8097 98.7383 88.979C98.7383 89.106 98.7594 89.2202 98.8018 89.3218C98.8483 89.4191 98.9287 89.5101 99.043 89.5947C99.1572 89.6751 99.318 89.7513 99.5254 89.8232C99.7327 89.8952 99.9972 89.9671 100.319 90.0391C100.882 90.166 101.345 90.3184 101.709 90.4961C102.073 90.6738 102.344 90.8918 102.521 91.1499C102.699 91.408 102.788 91.7212 102.788 92.0894C102.788 92.3898 102.725 92.6649 102.598 92.9146C102.475 93.1642 102.295 93.38 102.058 93.562C101.825 93.7397 101.546 93.8794 101.22 93.981C100.899 94.0783 100.537 94.127 100.135 94.127C99.5296 94.127 99.0176 94.019 98.5986 93.8032C98.1797 93.5874 97.8623 93.3081 97.6465 92.9653C97.4307 92.6226 97.3228 92.2607 97.3228 91.8799H98.5034C98.5203 92.2015 98.6134 92.4575 98.7827 92.6479C98.952 92.8341 99.1593 92.9674 99.4048 93.0479C99.6502 93.124 99.8936 93.1621 100.135 93.1621C100.456 93.1621 100.725 93.1198 100.941 93.0352C101.161 92.9505 101.328 92.8341 101.442 92.686C101.557 92.5379 101.614 92.3687 101.614 92.1782ZM105.606 87.1318V94H104.426V87.1318H105.606ZM104.337 85.3101C104.337 85.1196 104.394 84.9588 104.508 84.8276C104.627 84.6965 104.8 84.6309 105.029 84.6309C105.253 84.6309 105.424 84.6965 105.543 84.8276C105.666 84.9588 105.727 85.1196 105.727 85.3101C105.727 85.492 105.666 85.6486 105.543 85.7798C105.424 85.9067 105.253 85.9702 105.029 85.9702C104.8 85.9702 104.627 85.9067 104.508 85.7798C104.394 85.6486 104.337 85.492 104.337 85.3101ZM112.608 93.0352V94H107.612V93.0352H112.608ZM112.424 87.9634L107.879 94H107.162V93.1367L111.675 87.1318H112.424V87.9634ZM111.903 87.1318V88.103H107.212V87.1318H111.903ZM116.689 94.127C116.211 94.127 115.778 94.0465 115.388 93.8857C115.003 93.7207 114.671 93.4901 114.392 93.1938C114.117 92.8976 113.905 92.5464 113.757 92.1401C113.609 91.7339 113.535 91.2896 113.535 90.8071V90.5405C113.535 89.9819 113.617 89.4847 113.782 89.0488C113.947 88.6087 114.172 88.2363 114.455 87.9316C114.739 87.627 115.06 87.3963 115.42 87.2397C115.78 87.0832 116.152 87.0049 116.537 87.0049C117.028 87.0049 117.451 87.0895 117.807 87.2588C118.166 87.4281 118.46 87.665 118.689 87.9697C118.917 88.2702 119.087 88.6257 119.197 89.0361C119.307 89.4424 119.362 89.8867 119.362 90.3691V90.896H114.233V89.9375H118.188V89.8486C118.171 89.5439 118.107 89.2477 117.997 88.96C117.891 88.6722 117.722 88.4352 117.489 88.249C117.257 88.0628 116.939 87.9697 116.537 87.9697C116.271 87.9697 116.025 88.0269 115.801 88.1411C115.576 88.2511 115.384 88.4162 115.223 88.6362C115.062 88.8563 114.938 89.125 114.849 89.4424C114.76 89.7598 114.715 90.1258 114.715 90.5405V90.8071C114.715 91.133 114.76 91.4398 114.849 91.7275C114.942 92.0111 115.075 92.2607 115.249 92.4766C115.426 92.6924 115.64 92.8617 115.89 92.9844C116.144 93.1071 116.431 93.1685 116.753 93.1685C117.168 93.1685 117.519 93.0838 117.807 92.9146C118.094 92.7453 118.346 92.5189 118.562 92.2354L119.273 92.8003C119.125 93.0246 118.937 93.2383 118.708 93.4414C118.479 93.6445 118.198 93.8096 117.864 93.9365C117.534 94.0635 117.142 94.127 116.689 94.127ZM120.682 93.3779C120.682 93.179 120.743 93.0119 120.866 92.8765C120.993 92.7368 121.175 92.667 121.412 92.667C121.649 92.667 121.829 92.7368 121.952 92.8765C122.079 93.0119 122.142 93.179 122.142 93.3779C122.142 93.5726 122.079 93.7376 121.952 93.873C121.829 94.0085 121.649 94.0762 121.412 94.0762C121.175 94.0762 120.993 94.0085 120.866 93.873C120.743 93.7376 120.682 93.5726 120.682 93.3779ZM120.688 87.7729C120.688 87.5741 120.75 87.4069 120.873 87.2715C121 87.1318 121.181 87.062 121.418 87.062C121.655 87.062 121.835 87.1318 121.958 87.2715C122.085 87.4069 122.148 87.5741 122.148 87.7729C122.148 87.9676 122.085 88.1326 121.958 88.2681C121.835 88.4035 121.655 88.4712 121.418 88.4712C121.181 88.4712 121 88.4035 120.873 88.2681C120.75 88.1326 120.688 87.9676 120.688 87.7729ZM130.838 84.707V94H129.664V86.1733L127.296 87.0366V85.9766L130.654 84.707H130.838ZM140.093 88.6426V90.0518C140.093 90.8092 140.026 91.4482 139.89 91.9688C139.755 92.4893 139.56 92.9082 139.306 93.2256C139.052 93.543 138.745 93.7736 138.386 93.9175C138.03 94.0571 137.628 94.127 137.18 94.127C136.824 94.127 136.496 94.0825 136.196 93.9937C135.895 93.9048 135.625 93.763 135.383 93.5684C135.146 93.3695 134.943 93.1113 134.774 92.7939C134.605 92.4766 134.476 92.0915 134.387 91.6387C134.298 91.1859 134.253 90.6569 134.253 90.0518V88.6426C134.253 87.8851 134.321 87.2503 134.457 86.7383C134.596 86.2262 134.793 85.8158 135.047 85.5068C135.301 85.1937 135.605 84.9694 135.961 84.834C136.321 84.6986 136.723 84.6309 137.167 84.6309C137.527 84.6309 137.857 84.6753 138.157 84.7642C138.462 84.8488 138.733 84.9863 138.97 85.1768C139.207 85.363 139.408 85.6126 139.573 85.9258C139.742 86.2347 139.871 86.6134 139.96 87.062C140.049 87.5106 140.093 88.0374 140.093 88.6426ZM138.913 90.2422V88.4458C138.913 88.0311 138.887 87.6672 138.836 87.354C138.79 87.0366 138.72 86.7658 138.627 86.5415C138.534 86.3172 138.415 86.1353 138.271 85.9956C138.132 85.856 137.969 85.7544 137.783 85.6909C137.601 85.6232 137.396 85.5894 137.167 85.5894C136.888 85.5894 136.64 85.6423 136.424 85.748C136.208 85.8496 136.027 86.0125 135.878 86.2368C135.735 86.4611 135.625 86.7552 135.548 87.1191C135.472 87.4831 135.434 87.9253 135.434 88.4458V90.2422C135.434 90.6569 135.457 91.0229 135.504 91.3403C135.555 91.6577 135.629 91.9328 135.726 92.1655C135.823 92.394 135.942 92.5824 136.082 92.7305C136.221 92.8786 136.382 92.9886 136.564 93.0605C136.75 93.1283 136.955 93.1621 137.18 93.1621C137.467 93.1621 137.719 93.1071 137.935 92.9971C138.151 92.887 138.331 92.7157 138.475 92.4829C138.623 92.2459 138.733 91.9434 138.805 91.5752C138.877 91.2028 138.913 90.7585 138.913 90.2422ZM145.521 84.7578H146.708L149.735 92.2925L152.757 84.7578H153.95L150.192 94H149.266L145.521 84.7578ZM145.133 84.7578H146.181L146.352 90.3945V94H145.133V84.7578ZM153.284 84.7578H154.331V94H153.112V90.3945L153.284 84.7578ZM159.777 89.6772H157.435L157.422 88.6934H159.549C159.9 88.6934 160.207 88.6341 160.469 88.5156C160.732 88.3971 160.935 88.2279 161.079 88.0078C161.227 87.7835 161.301 87.5169 161.301 87.208C161.301 86.8695 161.235 86.5944 161.104 86.3828C160.977 86.167 160.78 86.0104 160.514 85.9131C160.251 85.8115 159.917 85.7607 159.511 85.7607H157.708V94H156.483V84.7578H159.511C159.985 84.7578 160.408 84.8065 160.78 84.9038C161.153 84.9969 161.468 85.145 161.726 85.3481C161.988 85.547 162.187 85.8009 162.323 86.1099C162.458 86.4188 162.526 86.7891 162.526 87.2207C162.526 87.6016 162.429 87.9465 162.234 88.2554C162.039 88.5601 161.768 88.8097 161.421 89.0044C161.079 89.1991 160.677 89.3239 160.215 89.3789L159.777 89.6772ZM159.72 94H156.953L157.645 93.0034H159.72C160.11 93.0034 160.44 92.9357 160.71 92.8003C160.986 92.6649 161.195 92.4744 161.339 92.229C161.483 91.9793 161.555 91.6852 161.555 91.3467C161.555 91.0039 161.493 90.7077 161.371 90.458C161.248 90.2083 161.055 90.0158 160.793 89.8804C160.531 89.745 160.192 89.6772 159.777 89.6772H158.032L158.044 88.6934H160.431L160.691 89.0488C161.136 89.0869 161.512 89.2139 161.821 89.4297C162.13 89.6413 162.365 89.9121 162.526 90.2422C162.691 90.5723 162.773 90.9362 162.773 91.334C162.773 91.9095 162.646 92.3962 162.393 92.7939C162.143 93.1875 161.79 93.488 161.333 93.6953C160.875 93.8984 160.338 94 159.72 94Z",fill:"#64748B"})),{ToolBarFields:Ha,GeneralFields:ha,AdvancedFields:ba,FieldWrapper:Ma,FieldSettingsWrapper:La,ValidationBlockMessage:ga,ValidationToggleGroup:Za,AdvancedInspectorControl:ya,AttributeHelp:Ea}=JetFBComponents,{useIsAdvancedValidation:wa,useUniqueNameOnDuplicate:va}=JetFBHooks,{__:_a}=wp.i18n,{useBlockProps:ka,InspectorControls:ja}=wp.blockEditor,{SelectControl:xa,ToggleControl:Fa,FormTokenField:Ba,TextControl:Aa,__experimentalNumberControl:Pa,__experimentalInputControl:Sa,PanelBody:Na}=wp.components;let{NumberControl:Ia,InputControl:Ta}=wp.components;void 0===Ia&&(Ia=Pa),void 0===Ta&&(Ta=Sa);const Oa=window.jetFormMediaFieldData,Ja=JSON.parse('{"apiVersion":3,"name":"jet-forms/media-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","media","image","file"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Media Field","icon":"\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{"messages":{"max_size":"Maximum file size: %max_size%"}}},"allowed_user_cap":{"type":"string","default":""},"insert_attachment":{"type":"boolean","default":false},"value_format":{"type":"string","default":""},"delete_uploaded_attachment":{"type":"boolean","default":false},"max_files":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max_size":{"type":["number","string"],"default":"","jfb":{"rich":true}},"allowed_mimes":{"type":"array","default":[]},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Ra}=wp.i18n,{createBlock:qa}=wp.blocks,{name:Da,icon:za=""}=Ja,Ua={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:za}}),description:Ra("Gives users the opportunity to upload media files to your website, e.g., users photos or images of the product for sale.","jet-form-builder"),edit:function(e){var C;const t=ka(),l=wa();va();const{attributes:r,setAttributes:n,isSelected:a,editProps:{uniqKey:i,attrHelp:o}}=e,s=!r.allowed_user_cap,c=["id","ids","both"],d=r.insert_attachment&&c.includes(r.value_format);return r.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Va):[(0,h.createElement)(Ha,{key:i("ToolBarFields"),...e}),a&&(0,h.createElement)(ja,{key:i("InspectorControls")},(0,h.createElement)(ha,null),(0,h.createElement)(La,{...e},(0,h.createElement)("div",{className:["jet-form-builder__user-access-control",s?"jet-form-builder__user-access-control--error":""].filter(Boolean).join(" ")},(0,h.createElement)(xa,{key:"allowed_user_cap",label:_a("User access","jet-form-builder"),labelPosition:"top",value:r.allowed_user_cap,onChange:e=>{n({allowed_user_cap:e})},options:pa,required:!0,help:s?_a("Please select who is allowed to upload files.","jet-form-builder"):void 0})),"any_user"!==r.allowed_user_cap&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Fa,{key:"insert_attachment",label:_a("Insert attachment","jet-form-builder"),checked:r.insert_attachment,help:o("insert_attachment"),onChange:e=>{const C=Boolean(e);n({insert_attachment:C,delete_uploaded_attachment:!!C&&r.delete_uploaded_attachment})}}),r.insert_attachment&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(xa,{key:"value_format",label:_a("Field value","jet-form-builder"),labelPosition:"top",value:r.value_format,onChange:e=>{n({value_format:e,delete_uploaded_attachment:!!c.includes(e)&&r.delete_uploaded_attachment})},options:fa,help:_a("If you're using this field for an ACF Gallery, always select **Array of attachment IDs**. For JetEngine, match the format used in the corresponding JetEngine meta field.","jet-form-builder")}),d&&(0,h.createElement)(Fa,{key:"delete_uploaded_attachment",label:_a("Delete removed attachments","jet-form-builder"),checked:r.delete_uploaded_attachment,help:_a("Permanently deletes old attachments from the Media Library after the form is submitted. Enable only if these files are not used anywhere else.","jet-form-builder"),onChange:e=>{n({delete_uploaded_attachment:Boolean(e)})}}))),(0,h.createElement)(ya,{value:r.max_files,label:_a("Maximum allowed files to upload","jet-form-builder"),onChangePreset:e=>n({max_files:e})},(({instanceId:e})=>(0,h.createElement)(Aa,{id:e,className:"jet-fb m-unset",value:r.max_files,onChange:e=>n({max_files:e})}))),(0,h.createElement)(Ea,{name:"max_files"},_a("If not set allow to upload 1 file.","jet-form-builder")),(0,h.createElement)(ya,{value:r.max_size,label:_a("Maximum size in Mb","jet-form-builder"),onChangePreset:e=>n({max_size:e})},(({instanceId:e})=>(0,h.createElement)(Aa,{id:e,className:"jet-fb m-unset",value:r.max_size,onChange:e=>n({max_size:e})}))),(0,h.createElement)(Ea,{name:"max_size"}),(0,h.createElement)(Aa,{label:_a("Maximum file size message","jet-form-builder"),value:null!==(C=r?.validation?.messages?.max_size)&&void 0!==C?C:"Maximum file size: %max_size%",onChange:e=>{n({validation:{messages:{max_size:e}}})},help:_a("Use the %max_size% macro to display the maximum allowed file size","jet-form-builder")}),(0,h.createElement)(Ba,{key:"allowed_mimes",value:r.allowed_mimes,label:_a("Allow MIME types","jet-form-builder"),suggestions:Oa.mime_types,onChange:e=>n({allowed_mimes:e}),tokenizeOnSpace:!0})),(0,h.createElement)(Na,{title:_a("Validation","jet-form-builder")},(0,h.createElement)(Za,null),l&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ga,{name:"max_files"}),(0,h.createElement)(ga,{name:"file_max_size"}),Boolean(r.allowed_mimes.length)&&(0,h.createElement)(ga,{name:"file_ext"}))),(0,h.createElement)(ba,{key:i("AdvancedFields"),...e})),(0,h.createElement)("div",{...t,key:i("viewBlock")},(0,h.createElement)(Ma,{key:i("FieldWrapper"),...e},(0,h.createElement)(Ta,{key:i("place_holder_block_new"),type:"file",className:"jet-form-builder__field-preview",disabled:!0})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>qa("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>qa(Da,{...e}),priority:0}]}},Ga=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M23.8115 49.5469V59.5H22.4854L17.4746 51.8232V59.5H16.1553V49.5469H17.4746L22.5059 57.2441V49.5469H23.8115ZM30.4834 57.791V52.1035H31.7549V59.5H30.5449L30.4834 57.791ZM30.7227 56.2324L31.249 56.2188C31.249 56.7109 31.1966 57.1667 31.0918 57.5859C30.9915 58.0007 30.8275 58.3607 30.5996 58.666C30.3717 58.9714 30.0732 59.2106 29.7041 59.3838C29.335 59.5524 28.8861 59.6367 28.3574 59.6367C27.9974 59.6367 27.667 59.5843 27.3662 59.4795C27.07 59.3747 26.8148 59.2129 26.6006 58.9941C26.3864 58.7754 26.2201 58.4906 26.1016 58.1396C25.9876 57.7887 25.9307 57.3672 25.9307 56.875V52.1035H27.1953V56.8887C27.1953 57.2214 27.2318 57.4971 27.3047 57.7158C27.3822 57.93 27.4847 58.1009 27.6123 58.2285C27.7445 58.3516 27.8903 58.4382 28.0498 58.4883C28.2139 58.5384 28.3825 58.5635 28.5557 58.5635C29.0934 58.5635 29.5195 58.4609 29.834 58.2559C30.1484 58.0462 30.374 57.766 30.5107 57.415C30.652 57.0596 30.7227 56.6654 30.7227 56.2324ZM34.9404 53.5732V59.5H33.6689V52.1035H34.8721L34.9404 53.5732ZM34.6807 55.5215L34.0928 55.501C34.0973 54.9951 34.1634 54.528 34.291 54.0996C34.4186 53.6667 34.6077 53.2907 34.8584 52.9717C35.109 52.6527 35.4212 52.4066 35.7949 52.2334C36.1686 52.0557 36.6016 51.9668 37.0938 51.9668C37.4401 51.9668 37.7591 52.0169 38.0508 52.1172C38.3424 52.2129 38.5954 52.3656 38.8096 52.5752C39.0238 52.7848 39.1901 53.0537 39.3086 53.3818C39.4271 53.71 39.4863 54.1064 39.4863 54.5713V59.5H38.2217V54.6328C38.2217 54.2454 38.1556 53.9355 38.0234 53.7031C37.8958 53.4707 37.7135 53.3021 37.4766 53.1973C37.2396 53.0879 36.9616 53.0332 36.6426 53.0332C36.2689 53.0332 35.9567 53.0993 35.7061 53.2314C35.4554 53.3636 35.2549 53.5459 35.1045 53.7783C34.9541 54.0107 34.8447 54.2773 34.7764 54.5781C34.7126 54.8743 34.6807 55.1888 34.6807 55.5215ZM39.4727 54.8242L38.625 55.084C38.6296 54.6784 38.6956 54.2887 38.8232 53.915C38.9554 53.5413 39.1445 53.2087 39.3906 52.917C39.6413 52.6253 39.9489 52.3952 40.3135 52.2266C40.6781 52.0534 41.0951 51.9668 41.5645 51.9668C41.9609 51.9668 42.3118 52.0192 42.6172 52.124C42.9271 52.2288 43.1868 52.3906 43.3965 52.6094C43.6107 52.8236 43.7725 53.0993 43.8818 53.4365C43.9912 53.7738 44.0459 54.1748 44.0459 54.6396V59.5H42.7744V54.626C42.7744 54.2113 42.7083 53.89 42.5762 53.6621C42.4486 53.4297 42.2663 53.2679 42.0293 53.1768C41.7969 53.0811 41.5189 53.0332 41.1953 53.0332C40.9173 53.0332 40.6712 53.0811 40.457 53.1768C40.2428 53.2725 40.0628 53.4046 39.917 53.5732C39.7712 53.7373 39.6595 53.9264 39.582 54.1406C39.5091 54.3548 39.4727 54.5827 39.4727 54.8242ZM45.9531 49H47.2246V58.0645L47.1152 59.5H45.9531V49ZM52.2217 55.7402V55.8838C52.2217 56.4215 52.1579 56.9206 52.0303 57.3809C51.9027 57.8366 51.7158 58.2331 51.4697 58.5703C51.2236 58.9076 50.9229 59.1696 50.5674 59.3564C50.2119 59.5433 49.804 59.6367 49.3438 59.6367C48.8743 59.6367 48.4619 59.557 48.1064 59.3975C47.7555 59.2334 47.4593 58.9987 47.2178 58.6934C46.9762 58.388 46.7826 58.0189 46.6367 57.5859C46.4954 57.153 46.3975 56.6654 46.3428 56.123V55.4941C46.3975 54.9473 46.4954 54.4574 46.6367 54.0244C46.7826 53.5915 46.9762 53.2223 47.2178 52.917C47.4593 52.6071 47.7555 52.3724 48.1064 52.2129C48.4574 52.0488 48.8652 51.9668 49.3301 51.9668C49.7949 51.9668 50.2074 52.0579 50.5674 52.2402C50.9274 52.418 51.2282 52.6732 51.4697 53.0059C51.7158 53.3385 51.9027 53.7373 52.0303 54.2021C52.1579 54.6624 52.2217 55.1751 52.2217 55.7402ZM50.9502 55.8838V55.7402C50.9502 55.3711 50.916 55.0247 50.8477 54.7012C50.7793 54.373 50.6699 54.0859 50.5195 53.8398C50.3691 53.5892 50.1709 53.3932 49.9248 53.252C49.6787 53.1061 49.3757 53.0332 49.0156 53.0332C48.6966 53.0332 48.4186 53.0879 48.1816 53.1973C47.9492 53.3066 47.751 53.4548 47.5869 53.6416C47.4229 53.8239 47.2884 54.0335 47.1836 54.2705C47.0833 54.5029 47.0081 54.7445 46.958 54.9951V56.6426C47.0309 56.9616 47.1494 57.2692 47.3135 57.5654C47.4821 57.8571 47.7054 58.0964 47.9834 58.2832C48.266 58.4701 48.6146 58.5635 49.0293 58.5635C49.3711 58.5635 49.6628 58.4951 49.9043 58.3584C50.1504 58.2171 50.3486 58.0234 50.499 57.7773C50.654 57.5312 50.7679 57.2464 50.8408 56.9229C50.9137 56.5993 50.9502 56.2529 50.9502 55.8838ZM56.8906 59.6367C56.3757 59.6367 55.9085 59.5501 55.4893 59.377C55.0745 59.1992 54.7168 58.9508 54.416 58.6318C54.1198 58.3128 53.8919 57.9346 53.7324 57.4971C53.5729 57.0596 53.4932 56.5811 53.4932 56.0615V55.7744C53.4932 55.1729 53.582 54.6374 53.7598 54.168C53.9375 53.694 54.179 53.293 54.4844 52.9648C54.7897 52.6367 55.1361 52.3883 55.5234 52.2197C55.9108 52.0511 56.3118 51.9668 56.7266 51.9668C57.2552 51.9668 57.7109 52.0579 58.0938 52.2402C58.4811 52.4225 58.7979 52.6777 59.0439 53.0059C59.29 53.3294 59.4723 53.7122 59.5908 54.1543C59.7093 54.5918 59.7686 55.0703 59.7686 55.5898V56.1572H54.2451V55.125H58.5039V55.0293C58.4857 54.7012 58.4173 54.3822 58.2988 54.0723C58.1849 53.7624 58.0026 53.5072 57.752 53.3066C57.5013 53.1061 57.1595 53.0059 56.7266 53.0059C56.4395 53.0059 56.1751 53.0674 55.9336 53.1904C55.6921 53.3089 55.4847 53.4867 55.3115 53.7236C55.1383 53.9606 55.0039 54.25 54.9082 54.5918C54.8125 54.9336 54.7646 55.3278 54.7646 55.7744V56.0615C54.7646 56.4124 54.8125 56.7428 54.9082 57.0527C55.0085 57.3581 55.152 57.627 55.3389 57.8594C55.5303 58.0918 55.7604 58.2741 56.0293 58.4062C56.3027 58.5384 56.6126 58.6045 56.959 58.6045C57.4056 58.6045 57.7839 58.5133 58.0938 58.3311C58.4036 58.1488 58.6748 57.9049 58.9072 57.5996L59.6729 58.208C59.5133 58.4495 59.3105 58.6797 59.0645 58.8984C58.8184 59.1172 58.5153 59.2949 58.1553 59.4316C57.7998 59.5684 57.3783 59.6367 56.8906 59.6367ZM62.5098 53.2656V59.5H61.2451V52.1035H62.4756L62.5098 53.2656ZM64.8203 52.0625L64.8135 53.2383C64.7087 53.2155 64.6084 53.2018 64.5127 53.1973C64.4215 53.1882 64.3167 53.1836 64.1982 53.1836C63.9066 53.1836 63.6491 53.2292 63.4258 53.3203C63.2025 53.4115 63.0133 53.5391 62.8584 53.7031C62.7035 53.8672 62.5804 54.0632 62.4893 54.291C62.4027 54.5143 62.3457 54.7604 62.3184 55.0293L61.9629 55.2344C61.9629 54.7878 62.0062 54.3685 62.0928 53.9766C62.1839 53.5846 62.3229 53.2383 62.5098 52.9375C62.6966 52.6322 62.9336 52.3952 63.2207 52.2266C63.5124 52.0534 63.8587 51.9668 64.2598 51.9668C64.3509 51.9668 64.4557 51.9782 64.5742 52.001C64.6927 52.0192 64.7747 52.0397 64.8203 52.0625ZM69.127 55.8838V55.7266C69.127 55.1934 69.2044 54.6989 69.3594 54.2432C69.5143 53.7829 69.7376 53.3841 70.0293 53.0469C70.321 52.7051 70.6742 52.4408 71.0889 52.2539C71.5036 52.0625 71.9684 51.9668 72.4834 51.9668C73.0029 51.9668 73.4701 52.0625 73.8848 52.2539C74.304 52.4408 74.6595 52.7051 74.9512 53.0469C75.2474 53.3841 75.473 53.7829 75.6279 54.2432C75.7829 54.6989 75.8604 55.1934 75.8604 55.7266V55.8838C75.8604 56.417 75.7829 56.9115 75.6279 57.3672C75.473 57.8229 75.2474 58.2217 74.9512 58.5635C74.6595 58.9007 74.3063 59.165 73.8916 59.3564C73.4814 59.5433 73.0166 59.6367 72.4971 59.6367C71.9775 59.6367 71.5104 59.5433 71.0957 59.3564C70.681 59.165 70.3255 58.9007 70.0293 58.5635C69.7376 58.2217 69.5143 57.8229 69.3594 57.3672C69.2044 56.9115 69.127 56.417 69.127 55.8838ZM70.3916 55.7266V55.8838C70.3916 56.2529 70.4349 56.6016 70.5215 56.9297C70.6081 57.2533 70.738 57.5404 70.9111 57.791C71.0889 58.0417 71.3099 58.2399 71.5742 58.3857C71.8385 58.527 72.1462 58.5977 72.4971 58.5977C72.8434 58.5977 73.1465 58.527 73.4062 58.3857C73.6706 58.2399 73.8893 58.0417 74.0625 57.791C74.2357 57.5404 74.3656 57.2533 74.4521 56.9297C74.5433 56.6016 74.5889 56.2529 74.5889 55.8838V55.7266C74.5889 55.362 74.5433 55.0179 74.4521 54.6943C74.3656 54.3662 74.2334 54.0768 74.0557 53.8262C73.8825 53.571 73.6637 53.3704 73.3994 53.2246C73.1396 53.0788 72.8343 53.0059 72.4834 53.0059C72.137 53.0059 71.8317 53.0788 71.5674 53.2246C71.3076 53.3704 71.0889 53.571 70.9111 53.8262C70.738 54.0768 70.6081 54.3662 70.5215 54.6943C70.4349 55.0179 70.3916 55.362 70.3916 55.7266ZM79.333 59.5H78.0684V51.3242C78.0684 50.791 78.1641 50.3421 78.3555 49.9775C78.5514 49.6084 78.8317 49.3304 79.1963 49.1436C79.5609 48.9521 79.9938 48.8564 80.4951 48.8564C80.641 48.8564 80.7868 48.8656 80.9326 48.8838C81.083 48.902 81.2288 48.9294 81.3701 48.9658L81.3018 49.998C81.2061 49.9753 81.0967 49.9593 80.9736 49.9502C80.8551 49.9411 80.7367 49.9365 80.6182 49.9365C80.3493 49.9365 80.1169 49.9912 79.9209 50.1006C79.7295 50.2054 79.5837 50.3604 79.4834 50.5654C79.3831 50.7705 79.333 51.0234 79.333 51.3242V59.5ZM80.9053 52.1035V53.0742H76.8994V52.1035H80.9053ZM90.5781 52.1035H91.7266V59.3428C91.7266 59.9945 91.5944 60.5505 91.3301 61.0107C91.0658 61.471 90.6966 61.8197 90.2227 62.0566C89.7533 62.2982 89.2109 62.4189 88.5957 62.4189C88.3405 62.4189 88.0397 62.3779 87.6934 62.2959C87.3516 62.2184 87.0143 62.084 86.6816 61.8926C86.3535 61.7057 86.0778 61.4528 85.8545 61.1338L86.5176 60.3818C86.8275 60.7555 87.151 61.0153 87.4883 61.1611C87.8301 61.307 88.1673 61.3799 88.5 61.3799C88.901 61.3799 89.2474 61.3047 89.5391 61.1543C89.8307 61.0039 90.0563 60.7806 90.2158 60.4844C90.3799 60.1927 90.4619 59.8327 90.4619 59.4043V53.7305L90.5781 52.1035ZM85.4854 55.8838V55.7402C85.4854 55.1751 85.5514 54.6624 85.6836 54.2021C85.8203 53.7373 86.014 53.3385 86.2646 53.0059C86.5199 52.6732 86.8275 52.418 87.1875 52.2402C87.5475 52.0579 87.9531 51.9668 88.4043 51.9668C88.8691 51.9668 89.2747 52.0488 89.6211 52.2129C89.972 52.3724 90.2682 52.6071 90.5098 52.917C90.7559 53.2223 90.9495 53.5915 91.0908 54.0244C91.2321 54.4574 91.3301 54.9473 91.3848 55.4941V56.123C91.3346 56.6654 91.2367 57.153 91.0908 57.5859C90.9495 58.0189 90.7559 58.388 90.5098 58.6934C90.2682 58.9987 89.972 59.2334 89.6211 59.3975C89.2702 59.557 88.86 59.6367 88.3906 59.6367C87.9486 59.6367 87.5475 59.5433 87.1875 59.3564C86.832 59.1696 86.5267 58.9076 86.2715 58.5703C86.0163 58.2331 85.8203 57.8366 85.6836 57.3809C85.5514 56.9206 85.4854 56.4215 85.4854 55.8838ZM86.75 55.7402V55.8838C86.75 56.2529 86.7865 56.5993 86.8594 56.9229C86.9368 57.2464 87.0531 57.5312 87.208 57.7773C87.3675 58.0234 87.5703 58.2171 87.8164 58.3584C88.0625 58.4951 88.3564 58.5635 88.6982 58.5635C89.1175 58.5635 89.4639 58.4746 89.7373 58.2969C90.0107 58.1191 90.2272 57.8844 90.3867 57.5928C90.5508 57.3011 90.6784 56.9844 90.7695 56.6426V54.9951C90.7194 54.7445 90.6419 54.5029 90.5371 54.2705C90.4368 54.0335 90.3047 53.8239 90.1406 53.6416C89.9811 53.4548 89.7829 53.3066 89.5459 53.1973C89.3089 53.0879 89.0309 53.0332 88.7119 53.0332C88.3656 53.0332 88.0671 53.1061 87.8164 53.252C87.5703 53.3932 87.3675 53.5892 87.208 53.8398C87.0531 54.0859 86.9368 54.373 86.8594 54.7012C86.7865 55.0247 86.75 55.3711 86.75 55.7402ZM98.1729 57.791V52.1035H99.4443V59.5H98.2344L98.1729 57.791ZM98.4121 56.2324L98.9385 56.2188C98.9385 56.7109 98.8861 57.1667 98.7812 57.5859C98.681 58.0007 98.5169 58.3607 98.2891 58.666C98.0612 58.9714 97.7627 59.2106 97.3936 59.3838C97.0244 59.5524 96.5755 59.6367 96.0469 59.6367C95.6868 59.6367 95.3564 59.5843 95.0557 59.4795C94.7594 59.3747 94.5042 59.2129 94.29 58.9941C94.0758 58.7754 93.9095 58.4906 93.791 58.1396C93.6771 57.7887 93.6201 57.3672 93.6201 56.875V52.1035H94.8848V56.8887C94.8848 57.2214 94.9212 57.4971 94.9941 57.7158C95.0716 57.93 95.1742 58.1009 95.3018 58.2285C95.4339 58.3516 95.5798 58.4382 95.7393 58.4883C95.9033 58.5384 96.0719 58.5635 96.2451 58.5635C96.7829 58.5635 97.209 58.4609 97.5234 58.2559C97.8379 58.0462 98.0635 57.766 98.2002 57.415C98.3415 57.0596 98.4121 56.6654 98.4121 56.2324ZM104.441 59.6367C103.926 59.6367 103.459 59.5501 103.04 59.377C102.625 59.1992 102.268 58.9508 101.967 58.6318C101.671 58.3128 101.443 57.9346 101.283 57.4971C101.124 57.0596 101.044 56.5811 101.044 56.0615V55.7744C101.044 55.1729 101.133 54.6374 101.311 54.168C101.488 53.694 101.73 53.293 102.035 52.9648C102.34 52.6367 102.687 52.3883 103.074 52.2197C103.462 52.0511 103.863 51.9668 104.277 51.9668C104.806 51.9668 105.262 52.0579 105.645 52.2402C106.032 52.4225 106.349 52.6777 106.595 53.0059C106.841 53.3294 107.023 53.7122 107.142 54.1543C107.26 54.5918 107.319 55.0703 107.319 55.5898V56.1572H101.796V55.125H106.055V55.0293C106.036 54.7012 105.968 54.3822 105.85 54.0723C105.736 53.7624 105.553 53.5072 105.303 53.3066C105.052 53.1061 104.71 53.0059 104.277 53.0059C103.99 53.0059 103.726 53.0674 103.484 53.1904C103.243 53.3089 103.035 53.4867 102.862 53.7236C102.689 53.9606 102.555 54.25 102.459 54.5918C102.363 54.9336 102.315 55.3278 102.315 55.7744V56.0615C102.315 56.4124 102.363 56.7428 102.459 57.0527C102.559 57.3581 102.703 57.627 102.89 57.8594C103.081 58.0918 103.311 58.2741 103.58 58.4062C103.854 58.5384 104.163 58.6045 104.51 58.6045C104.956 58.6045 105.335 58.5133 105.645 58.3311C105.954 58.1488 106.226 57.9049 106.458 57.5996L107.224 58.208C107.064 58.4495 106.861 58.6797 106.615 58.8984C106.369 59.1172 106.066 59.2949 105.706 59.4316C105.351 59.5684 104.929 59.6367 104.441 59.6367ZM113.103 57.5381C113.103 57.3558 113.062 57.1872 112.979 57.0322C112.902 56.8727 112.74 56.7292 112.494 56.6016C112.253 56.4694 111.888 56.3555 111.4 56.2598C110.99 56.1732 110.619 56.0706 110.286 55.9521C109.958 55.8337 109.678 55.6901 109.445 55.5215C109.217 55.3529 109.042 55.1546 108.919 54.9268C108.796 54.6989 108.734 54.4323 108.734 54.127C108.734 53.8353 108.798 53.5596 108.926 53.2998C109.058 53.04 109.243 52.8099 109.479 52.6094C109.721 52.4089 110.01 52.2516 110.348 52.1377C110.685 52.0238 111.061 51.9668 111.476 51.9668C112.068 51.9668 112.574 52.0716 112.993 52.2812C113.412 52.4909 113.734 52.7712 113.957 53.1221C114.18 53.4684 114.292 53.8535 114.292 54.2773H113.027C113.027 54.0723 112.966 53.874 112.843 53.6826C112.724 53.4867 112.549 53.3249 112.316 53.1973C112.089 53.0697 111.808 53.0059 111.476 53.0059C111.125 53.0059 110.84 53.0605 110.621 53.1699C110.407 53.2747 110.25 53.4092 110.149 53.5732C110.054 53.7373 110.006 53.9105 110.006 54.0928C110.006 54.2295 110.029 54.3525 110.074 54.4619C110.124 54.5667 110.211 54.6647 110.334 54.7559C110.457 54.8424 110.63 54.9245 110.854 55.002C111.077 55.0794 111.362 55.1569 111.708 55.2344C112.314 55.3711 112.813 55.5352 113.205 55.7266C113.597 55.918 113.889 56.1527 114.08 56.4307C114.271 56.7087 114.367 57.0459 114.367 57.4424C114.367 57.766 114.299 58.0622 114.162 58.3311C114.03 58.5999 113.836 58.8324 113.581 59.0283C113.33 59.2197 113.03 59.3701 112.679 59.4795C112.332 59.5843 111.943 59.6367 111.51 59.6367C110.858 59.6367 110.307 59.5205 109.855 59.2881C109.404 59.0557 109.062 58.7549 108.83 58.3857C108.598 58.0166 108.481 57.627 108.481 57.2168H109.753C109.771 57.5632 109.871 57.8389 110.054 58.0439C110.236 58.2445 110.459 58.388 110.724 58.4746C110.988 58.5566 111.25 58.5977 111.51 58.5977C111.856 58.5977 112.146 58.5521 112.378 58.4609C112.615 58.3698 112.795 58.2445 112.918 58.085C113.041 57.9255 113.103 57.7432 113.103 57.5381ZM119.125 52.1035V53.0742H115.126V52.1035H119.125ZM116.479 50.3057H117.744V57.668C117.744 57.9186 117.783 58.1077 117.86 58.2354C117.938 58.363 118.038 58.4473 118.161 58.4883C118.284 58.5293 118.416 58.5498 118.558 58.5498C118.662 58.5498 118.772 58.5407 118.886 58.5225C119.004 58.4997 119.093 58.4814 119.152 58.4678L119.159 59.5C119.059 59.5319 118.927 59.5615 118.763 59.5889C118.603 59.6208 118.41 59.6367 118.182 59.6367C117.872 59.6367 117.587 59.5752 117.327 59.4521C117.067 59.3291 116.86 59.124 116.705 58.8369C116.555 58.5452 116.479 58.1533 116.479 57.6611V50.3057ZM124.915 57.5381C124.915 57.3558 124.874 57.1872 124.792 57.0322C124.715 56.8727 124.553 56.7292 124.307 56.6016C124.065 56.4694 123.701 56.3555 123.213 56.2598C122.803 56.1732 122.431 56.0706 122.099 55.9521C121.771 55.8337 121.49 55.6901 121.258 55.5215C121.03 55.3529 120.854 55.1546 120.731 54.9268C120.608 54.6989 120.547 54.4323 120.547 54.127C120.547 53.8353 120.611 53.5596 120.738 53.2998C120.87 53.04 121.055 52.8099 121.292 52.6094C121.534 52.4089 121.823 52.2516 122.16 52.1377C122.497 52.0238 122.873 51.9668 123.288 51.9668C123.881 51.9668 124.386 52.0716 124.806 52.2812C125.225 52.4909 125.546 52.7712 125.77 53.1221C125.993 53.4684 126.104 53.8535 126.104 54.2773H124.84C124.84 54.0723 124.778 53.874 124.655 53.6826C124.537 53.4867 124.361 53.3249 124.129 53.1973C123.901 53.0697 123.621 53.0059 123.288 53.0059C122.937 53.0059 122.652 53.0605 122.434 53.1699C122.219 53.2747 122.062 53.4092 121.962 53.5732C121.866 53.7373 121.818 53.9105 121.818 54.0928C121.818 54.2295 121.841 54.3525 121.887 54.4619C121.937 54.5667 122.023 54.6647 122.146 54.7559C122.27 54.8424 122.443 54.9245 122.666 55.002C122.889 55.0794 123.174 55.1569 123.521 55.2344C124.127 55.3711 124.626 55.5352 125.018 55.7266C125.41 55.918 125.701 56.1527 125.893 56.4307C126.084 56.7087 126.18 57.0459 126.18 57.4424C126.18 57.766 126.111 58.0622 125.975 58.3311C125.842 58.5999 125.649 58.8324 125.394 59.0283C125.143 59.2197 124.842 59.3701 124.491 59.4795C124.145 59.5843 123.755 59.6367 123.322 59.6367C122.671 59.6367 122.119 59.5205 121.668 59.2881C121.217 59.0557 120.875 58.7549 120.643 58.3857C120.41 58.0166 120.294 57.627 120.294 57.2168H121.565C121.584 57.5632 121.684 57.8389 121.866 58.0439C122.049 58.2445 122.272 58.388 122.536 58.4746C122.8 58.5566 123.062 58.5977 123.322 58.5977C123.669 58.5977 123.958 58.5521 124.19 58.4609C124.427 58.3698 124.607 58.2445 124.73 58.085C124.854 57.9255 124.915 57.7432 124.915 57.5381Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"68.5",width:"265",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M27.4819 81.8013H28.3198C28.7303 81.8013 29.0688 81.7336 29.3354 81.5981C29.6063 81.4585 29.8073 81.2702 29.9385 81.0332C30.0739 80.792 30.1416 80.5212 30.1416 80.2207C30.1416 79.8652 30.0824 79.5669 29.9639 79.3257C29.8454 79.0845 29.6676 78.9025 29.4307 78.7798C29.1937 78.6571 28.8932 78.5957 28.5293 78.5957C28.1992 78.5957 27.9072 78.6613 27.6533 78.7925C27.4036 78.9194 27.2069 79.1014 27.063 79.3384C26.9233 79.5754 26.8535 79.8547 26.8535 80.1763H25.6792C25.6792 79.7065 25.7977 79.2791 26.0347 78.894C26.2716 78.509 26.6038 78.2021 27.0312 77.9736C27.4629 77.7451 27.9622 77.6309 28.5293 77.6309C29.0879 77.6309 29.5767 77.7303 29.9956 77.9292C30.4146 78.1239 30.7404 78.4159 30.9731 78.8052C31.2059 79.1903 31.3223 79.6706 31.3223 80.2461C31.3223 80.4788 31.2673 80.7285 31.1572 80.9951C31.0514 81.2575 30.8843 81.5029 30.6558 81.7314C30.4315 81.96 30.1395 82.1483 29.7798 82.2964C29.4201 82.4403 28.9884 82.5122 28.4849 82.5122H27.4819V81.8013ZM27.4819 82.7661V82.0615H28.4849C29.0731 82.0615 29.5597 82.1313 29.9448 82.271C30.3299 82.4106 30.6325 82.5968 30.8525 82.8296C31.0768 83.0623 31.2334 83.3184 31.3223 83.5977C31.4154 83.8727 31.4619 84.1478 31.4619 84.4229C31.4619 84.8545 31.3879 85.2375 31.2397 85.5718C31.0959 85.9061 30.8906 86.1896 30.624 86.4224C30.3617 86.6551 30.0527 86.8307 29.6973 86.9492C29.3418 87.0677 28.9546 87.127 28.5356 87.127C28.1336 87.127 27.7549 87.0698 27.3994 86.9556C27.0482 86.8413 26.7371 86.6763 26.4663 86.4604C26.1955 86.2404 25.9839 85.9717 25.8315 85.6543C25.6792 85.3327 25.603 84.9666 25.603 84.5562H26.7773C26.7773 84.8778 26.8472 85.1592 26.9868 85.4004C27.1307 85.6416 27.3338 85.8299 27.5962 85.9653C27.8628 86.0965 28.1759 86.1621 28.5356 86.1621C28.8953 86.1621 29.2043 86.1007 29.4624 85.978C29.7248 85.8511 29.9258 85.6606 30.0654 85.4067C30.2093 85.1528 30.2812 84.8333 30.2812 84.4482C30.2812 84.0632 30.2008 83.7479 30.04 83.5024C29.8792 83.2528 29.6507 83.0687 29.3545 82.9502C29.0625 82.8275 28.7176 82.7661 28.3198 82.7661H27.4819Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M261.761 85.7886L264.773 91.2693L267.784 85.7886H261.761Z",fill:"#CBD5E1"}),(0,h.createElement)("path",{d:"M267.784 79.2117L264.773 73.7309L261.761 79.2117L267.784 79.2117Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"16",y:"68.5",width:"265",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),{ToolBarFields:Wa,BlockLabel:Ka,BlockDescription:$a,BlockAdvancedValue:Ya,BlockName:Xa,AdvancedFields:Qa,FieldWrapper:ei,FieldSettingsWrapper:Ci,ValidationToggleGroup:ti,ValidationBlockMessage:li,AdvancedInspectorControl:ri,AttributeHelp:ni}=JetFBComponents,{useIsAdvancedValidation:ai,useUniqueNameOnDuplicate:ii}=JetFBHooks,{__:oi}=wp.i18n,{InspectorControls:si,useBlockProps:ci}=wp.blockEditor,{PanelBody:di,TextControl:mi,__experimentalInputControl:ui,__experimentalNumberControl:pi}=wp.components;let{InputControl:fi,NumberControl:Vi}=wp.components;void 0===fi&&(fi=ui),void 0===Vi&&(Vi=pi);const Hi=JSON.parse('{"apiVersion":3,"name":"jet-forms/number-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","media","image","file"],"textdomain":"jet-form-builder","title":"Number Field","icon":"\\n\\n\\n\\n\\n","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max":{"type":["number","string"],"default":"","jfb":{"rich":true}},"step":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:hi}=wp.i18n,{createBlock:bi}=wp.blocks,{name:Mi,icon:Li=""}=Hi,gi={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Li}}),description:hi("Make a bar in the form that will be filled with numbers or set a range with the Min/Max Value options for the user to choose from.","jet-form-builder"),edit:function(e){const C=ci(),t=ai();ii();const{attributes:l,setAttributes:r,isSelected:n,editProps:{uniqKey:a}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ga):[(0,h.createElement)(Wa,{key:a("ToolBarFields"),...e}),n&&(0,h.createElement)(si,{key:a("InspectorControls")},(0,h.createElement)(di,{title:oi("General","jet-form-builder")},(0,h.createElement)(Ka,null),(0,h.createElement)(Xa,null),(0,h.createElement)($a,null)),(0,h.createElement)(di,{title:oi("Value","jet-form-builder")},(0,h.createElement)(Ya,null)),(0,h.createElement)(Ci,{...e},(0,h.createElement)(ri,{value:l.min,label:oi("Min Value","jet-form-builder"),onChangePreset:e=>r({min:e})},(({instanceId:e})=>(0,h.createElement)(mi,{id:e,className:"jet-fb m-unset",value:l.min,onChange:e=>r({min:e})}))),(0,h.createElement)(ni,{name:"min"}),(0,h.createElement)(ri,{value:l.max,label:oi("Max Value","jet-form-builder"),onChangePreset:e=>r({max:e})},(({instanceId:e})=>(0,h.createElement)(mi,{id:e,className:"jet-fb m-unset",value:l.max,onChange:e=>r({max:e})}))),(0,h.createElement)(ni,{name:"max"}),(0,h.createElement)(ri,{value:l.step,label:oi("Step","jet-form-builder"),onChangePreset:e=>r({step:e})},(({instanceId:e})=>(0,h.createElement)(mi,{id:e,className:"jet-fb m-unset",value:l.step,onChange:e=>r({step:e})}))),(0,h.createElement)(ni,{name:"step"})),(0,h.createElement)(di,{title:oi("Validation","jet-form-builder")},(0,h.createElement)(ti,null),t&&(0,h.createElement)(h.Fragment,null,null!==l.min&&(0,h.createElement)(li,{name:"number_min"}),null!==l.max&&(0,h.createElement)(li,{name:"number_max"}),(0,h.createElement)(li,{name:"empty"}))),(0,h.createElement)(Qa,null)),(0,h.createElement)("div",{...C,key:a("viewBlock")},(0,h.createElement)(ei,{key:a("FieldWrapper"),...e},(0,h.createElement)(Vi,{placeholder:l.placeholder,className:"jet-form-builder__field-preview",key:a("place_holder_block"),min:l.min||0,max:l.max||1e3,step:l.step||1})))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>bi("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/range-field"],transform:e=>bi(Mi,{...e}),priority:0}]}},Zi=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M19.8262 57.0967H17.167V56.0234H19.8262C20.3411 56.0234 20.7581 55.9414 21.0771 55.7773C21.3962 55.6133 21.6286 55.3854 21.7744 55.0938C21.9248 54.8021 22 54.4694 22 54.0957C22 53.7539 21.9248 53.4326 21.7744 53.1318C21.6286 52.8311 21.3962 52.5895 21.0771 52.4072C20.7581 52.2204 20.3411 52.127 19.8262 52.127H17.4746V61H16.1553V51.0469H19.8262C20.5781 51.0469 21.2139 51.1768 21.7334 51.4365C22.2529 51.6963 22.6471 52.0563 22.916 52.5166C23.1849 52.9723 23.3193 53.4941 23.3193 54.082C23.3193 54.7201 23.1849 55.2646 22.916 55.7158C22.6471 56.167 22.2529 56.5111 21.7334 56.748C21.2139 56.9805 20.5781 57.0967 19.8262 57.0967ZM26.0605 54.7656V61H24.7959V53.6035H26.0264L26.0605 54.7656ZM28.3711 53.5625L28.3643 54.7383C28.2594 54.7155 28.1592 54.7018 28.0635 54.6973C27.9723 54.6882 27.8675 54.6836 27.749 54.6836C27.4574 54.6836 27.1999 54.7292 26.9766 54.8203C26.7533 54.9115 26.5641 55.0391 26.4092 55.2031C26.2542 55.3672 26.1312 55.5632 26.04 55.791C25.9535 56.0143 25.8965 56.2604 25.8691 56.5293L25.5137 56.7344C25.5137 56.2878 25.557 55.8685 25.6436 55.4766C25.7347 55.0846 25.8737 54.7383 26.0605 54.4375C26.2474 54.1322 26.4844 53.8952 26.7715 53.7266C27.0632 53.5534 27.4095 53.4668 27.8105 53.4668C27.9017 53.4668 28.0065 53.4782 28.125 53.501C28.2435 53.5192 28.3255 53.5397 28.3711 53.5625ZM30.9141 53.6035V61H29.6426V53.6035H30.9141ZM29.5469 51.6416C29.5469 51.4365 29.6084 51.2633 29.7314 51.1221C29.859 50.9808 30.0459 50.9102 30.292 50.9102C30.5335 50.9102 30.7181 50.9808 30.8457 51.1221C30.9779 51.2633 31.0439 51.4365 31.0439 51.6416C31.0439 51.8376 30.9779 52.0062 30.8457 52.1475C30.7181 52.2842 30.5335 52.3525 30.292 52.3525C30.0459 52.3525 29.859 52.2842 29.7314 52.1475C29.6084 52.0062 29.5469 51.8376 29.5469 51.6416ZM35.9043 60.0977C36.2051 60.0977 36.4831 60.0361 36.7383 59.9131C36.9935 59.79 37.2031 59.6214 37.3672 59.4072C37.5312 59.1885 37.6247 58.9401 37.6475 58.6621H38.8506C38.8278 59.0996 38.6797 59.5075 38.4062 59.8857C38.1374 60.2594 37.7842 60.5625 37.3467 60.7949C36.9092 61.0228 36.4284 61.1367 35.9043 61.1367C35.3483 61.1367 34.863 61.0387 34.4482 60.8428C34.0381 60.6468 33.6963 60.3779 33.4229 60.0361C33.154 59.6943 32.9512 59.3024 32.8145 58.8604C32.6823 58.4137 32.6162 57.9421 32.6162 57.4453V57.1582C32.6162 56.6615 32.6823 56.1921 32.8145 55.75C32.9512 55.3034 33.154 54.9092 33.4229 54.5674C33.6963 54.2256 34.0381 53.9567 34.4482 53.7607C34.863 53.5648 35.3483 53.4668 35.9043 53.4668C36.4831 53.4668 36.9889 53.5853 37.4219 53.8223C37.8548 54.0547 38.1943 54.3737 38.4404 54.7793C38.6911 55.1803 38.8278 55.6361 38.8506 56.1465H37.6475C37.6247 55.8411 37.5381 55.5654 37.3877 55.3193C37.2419 55.0732 37.0413 54.8773 36.7861 54.7314C36.5355 54.5811 36.2415 54.5059 35.9043 54.5059C35.5169 54.5059 35.1911 54.5833 34.9268 54.7383C34.667 54.8887 34.4596 55.0938 34.3047 55.3535C34.1543 55.6087 34.0449 55.8936 33.9766 56.208C33.9128 56.5179 33.8809 56.8346 33.8809 57.1582V57.4453C33.8809 57.7689 33.9128 58.0879 33.9766 58.4023C34.0404 58.7168 34.1475 59.0016 34.2979 59.2568C34.4528 59.512 34.6602 59.7171 34.9199 59.8721C35.1842 60.0225 35.5124 60.0977 35.9043 60.0977ZM43.3418 61.1367C42.8268 61.1367 42.3597 61.0501 41.9404 60.877C41.5257 60.6992 41.168 60.4508 40.8672 60.1318C40.571 59.8128 40.3431 59.4346 40.1836 58.9971C40.0241 58.5596 39.9443 58.0811 39.9443 57.5615V57.2744C39.9443 56.6729 40.0332 56.1374 40.2109 55.668C40.3887 55.194 40.6302 54.793 40.9355 54.4648C41.2409 54.1367 41.5872 53.8883 41.9746 53.7197C42.362 53.5511 42.763 53.4668 43.1777 53.4668C43.7064 53.4668 44.1621 53.5579 44.5449 53.7402C44.9323 53.9225 45.249 54.1777 45.4951 54.5059C45.7412 54.8294 45.9235 55.2122 46.042 55.6543C46.1605 56.0918 46.2197 56.5703 46.2197 57.0898V57.6572H40.6963V56.625H44.9551V56.5293C44.9368 56.2012 44.8685 55.8822 44.75 55.5723C44.6361 55.2624 44.4538 55.0072 44.2031 54.8066C43.9525 54.6061 43.6107 54.5059 43.1777 54.5059C42.8906 54.5059 42.6263 54.5674 42.3848 54.6904C42.1432 54.8089 41.9359 54.9867 41.7627 55.2236C41.5895 55.4606 41.4551 55.75 41.3594 56.0918C41.2637 56.4336 41.2158 56.8278 41.2158 57.2744V57.5615C41.2158 57.9124 41.2637 58.2428 41.3594 58.5527C41.4596 58.8581 41.6032 59.127 41.79 59.3594C41.9814 59.5918 42.2116 59.7741 42.4805 59.9062C42.7539 60.0384 43.0638 60.1045 43.4102 60.1045C43.8568 60.1045 44.235 60.0133 44.5449 59.8311C44.8548 59.6488 45.126 59.4049 45.3584 59.0996L46.124 59.708C45.9645 59.9495 45.7617 60.1797 45.5156 60.3984C45.2695 60.6172 44.9665 60.7949 44.6064 60.9316C44.251 61.0684 43.8294 61.1367 43.3418 61.1367ZM52.4336 55.0254V63.8438H51.1621V53.6035H52.3242L52.4336 55.0254ZM57.417 57.2402V57.3838C57.417 57.9215 57.3532 58.4206 57.2256 58.8809C57.098 59.3366 56.9111 59.7331 56.665 60.0703C56.4235 60.4076 56.125 60.6696 55.7695 60.8564C55.4141 61.0433 55.0062 61.1367 54.5459 61.1367C54.0765 61.1367 53.6618 61.0592 53.3018 60.9043C52.9417 60.7493 52.6364 60.5238 52.3857 60.2275C52.1351 59.9313 51.9346 59.5758 51.7842 59.1611C51.6383 58.7464 51.5381 58.2793 51.4834 57.7598V56.9941C51.5381 56.4473 51.6406 55.9574 51.791 55.5244C51.9414 55.0915 52.1396 54.7223 52.3857 54.417C52.6364 54.1071 52.9395 53.8724 53.2949 53.7129C53.6504 53.5488 54.0605 53.4668 54.5254 53.4668C54.9902 53.4668 55.4027 53.5579 55.7627 53.7402C56.1227 53.918 56.4258 54.1732 56.6719 54.5059C56.918 54.8385 57.1025 55.2373 57.2256 55.7021C57.3532 56.1624 57.417 56.6751 57.417 57.2402ZM56.1455 57.3838V57.2402C56.1455 56.8711 56.1068 56.5247 56.0293 56.2012C55.9518 55.873 55.8311 55.5859 55.667 55.3398C55.5075 55.0892 55.3024 54.8932 55.0518 54.752C54.8011 54.6061 54.5026 54.5332 54.1562 54.5332C53.8372 54.5332 53.5592 54.5879 53.3223 54.6973C53.0898 54.8066 52.8916 54.9548 52.7275 55.1416C52.5635 55.3239 52.429 55.5335 52.3242 55.7705C52.224 56.0029 52.1488 56.2445 52.0986 56.4951V58.2656C52.1898 58.5846 52.3174 58.8854 52.4814 59.168C52.6455 59.446 52.8643 59.6715 53.1377 59.8447C53.4111 60.0133 53.7552 60.0977 54.1699 60.0977C54.5117 60.0977 54.8057 60.027 55.0518 59.8857C55.3024 59.7399 55.5075 59.5417 55.667 59.291C55.8311 59.0404 55.9518 58.7533 56.0293 58.4297C56.1068 58.1016 56.1455 57.7529 56.1455 57.3838ZM62.0996 61.1367C61.5846 61.1367 61.1175 61.0501 60.6982 60.877C60.2835 60.6992 59.9258 60.4508 59.625 60.1318C59.3288 59.8128 59.1009 59.4346 58.9414 58.9971C58.7819 58.5596 58.7021 58.0811 58.7021 57.5615V57.2744C58.7021 56.6729 58.791 56.1374 58.9688 55.668C59.1465 55.194 59.388 54.793 59.6934 54.4648C59.9987 54.1367 60.3451 53.8883 60.7324 53.7197C61.1198 53.5511 61.5208 53.4668 61.9355 53.4668C62.4642 53.4668 62.9199 53.5579 63.3027 53.7402C63.6901 53.9225 64.0068 54.1777 64.2529 54.5059C64.499 54.8294 64.6813 55.2122 64.7998 55.6543C64.9183 56.0918 64.9775 56.5703 64.9775 57.0898V57.6572H59.4541V56.625H63.7129V56.5293C63.6947 56.2012 63.6263 55.8822 63.5078 55.5723C63.3939 55.2624 63.2116 55.0072 62.9609 54.8066C62.7103 54.6061 62.3685 54.5059 61.9355 54.5059C61.6484 54.5059 61.3841 54.5674 61.1426 54.6904C60.901 54.8089 60.6937 54.9867 60.5205 55.2236C60.3473 55.4606 60.2129 55.75 60.1172 56.0918C60.0215 56.4336 59.9736 56.8278 59.9736 57.2744V57.5615C59.9736 57.9124 60.0215 58.2428 60.1172 58.5527C60.2174 58.8581 60.361 59.127 60.5479 59.3594C60.7393 59.5918 60.9694 59.7741 61.2383 59.9062C61.5117 60.0384 61.8216 60.1045 62.168 60.1045C62.6146 60.1045 62.9928 60.0133 63.3027 59.8311C63.6126 59.6488 63.8838 59.4049 64.1162 59.0996L64.8818 59.708C64.7223 59.9495 64.5195 60.1797 64.2734 60.3984C64.0273 60.6172 63.7243 60.7949 63.3643 60.9316C63.0088 61.0684 62.5872 61.1367 62.0996 61.1367ZM67.7188 54.7656V61H66.4541V53.6035H67.6846L67.7188 54.7656ZM70.0293 53.5625L70.0225 54.7383C69.9176 54.7155 69.8174 54.7018 69.7217 54.6973C69.6305 54.6882 69.5257 54.6836 69.4072 54.6836C69.1156 54.6836 68.8581 54.7292 68.6348 54.8203C68.4115 54.9115 68.2223 55.0391 68.0674 55.2031C67.9124 55.3672 67.7894 55.5632 67.6982 55.791C67.6117 56.0143 67.5547 56.2604 67.5273 56.5293L67.1719 56.7344C67.1719 56.2878 67.2152 55.8685 67.3018 55.4766C67.3929 55.0846 67.5319 54.7383 67.7188 54.4375C67.9056 54.1322 68.1426 53.8952 68.4297 53.7266C68.7214 53.5534 69.0677 53.4668 69.4688 53.4668C69.5599 53.4668 69.6647 53.4782 69.7832 53.501C69.9017 53.5192 69.9837 53.5397 70.0293 53.5625ZM75.9355 55.1826V61H74.6709V53.6035H75.8672L75.9355 55.1826ZM75.6348 57.0215L75.1084 57.001C75.113 56.4951 75.1882 56.028 75.334 55.5996C75.4798 55.1667 75.6849 54.7907 75.9492 54.4717C76.2135 54.1527 76.528 53.9066 76.8926 53.7334C77.2617 53.5557 77.6696 53.4668 78.1162 53.4668C78.4808 53.4668 78.8089 53.5169 79.1006 53.6172C79.3923 53.7129 79.6406 53.8678 79.8457 54.082C80.0553 54.2962 80.2148 54.5742 80.3242 54.916C80.4336 55.2533 80.4883 55.6657 80.4883 56.1533V61H79.2168V56.1396C79.2168 55.7523 79.1598 55.4424 79.0459 55.21C78.932 54.973 78.7656 54.8021 78.5469 54.6973C78.3281 54.5879 78.0592 54.5332 77.7402 54.5332C77.4258 54.5332 77.1387 54.5993 76.8789 54.7314C76.6237 54.8636 76.4027 55.0459 76.2158 55.2783C76.0335 55.5107 75.89 55.7773 75.7852 56.0781C75.6849 56.3743 75.6348 56.6888 75.6348 57.0215ZM83.7832 53.6035V61H82.5117V53.6035H83.7832ZM82.416 51.6416C82.416 51.4365 82.4775 51.2633 82.6006 51.1221C82.7282 50.9808 82.915 50.9102 83.1611 50.9102C83.4027 50.9102 83.5872 50.9808 83.7148 51.1221C83.847 51.2633 83.9131 51.4365 83.9131 51.6416C83.9131 51.8376 83.847 52.0062 83.7148 52.1475C83.5872 52.2842 83.4027 52.3525 83.1611 52.3525C82.915 52.3525 82.7282 52.2842 82.6006 52.1475C82.4775 52.0062 82.416 51.8376 82.416 51.6416ZM90.6055 53.6035H91.7539V60.8428C91.7539 61.4945 91.6217 62.0505 91.3574 62.5107C91.0931 62.971 90.724 63.3197 90.25 63.5566C89.7806 63.7982 89.2383 63.9189 88.623 63.9189C88.3678 63.9189 88.0671 63.8779 87.7207 63.7959C87.3789 63.7184 87.0417 63.584 86.709 63.3926C86.3809 63.2057 86.1051 62.9528 85.8818 62.6338L86.5449 61.8818C86.8548 62.2555 87.1784 62.5153 87.5156 62.6611C87.8574 62.807 88.1947 62.8799 88.5273 62.8799C88.9284 62.8799 89.2747 62.8047 89.5664 62.6543C89.8581 62.5039 90.0837 62.2806 90.2432 61.9844C90.4072 61.6927 90.4893 61.3327 90.4893 60.9043V55.2305L90.6055 53.6035ZM85.5127 57.3838V57.2402C85.5127 56.6751 85.5788 56.1624 85.7109 55.7021C85.8477 55.2373 86.0413 54.8385 86.292 54.5059C86.5472 54.1732 86.8548 53.918 87.2148 53.7402C87.5749 53.5579 87.9805 53.4668 88.4316 53.4668C88.8965 53.4668 89.3021 53.5488 89.6484 53.7129C89.9993 53.8724 90.2956 54.1071 90.5371 54.417C90.7832 54.7223 90.9769 55.0915 91.1182 55.5244C91.2594 55.9574 91.3574 56.4473 91.4121 56.9941V57.623C91.362 58.1654 91.264 58.653 91.1182 59.0859C90.9769 59.5189 90.7832 59.888 90.5371 60.1934C90.2956 60.4987 89.9993 60.7334 89.6484 60.8975C89.2975 61.057 88.8874 61.1367 88.418 61.1367C87.9759 61.1367 87.5749 61.0433 87.2148 60.8564C86.8594 60.6696 86.554 60.4076 86.2988 60.0703C86.0436 59.7331 85.8477 59.3366 85.7109 58.8809C85.5788 58.4206 85.5127 57.9215 85.5127 57.3838ZM86.7773 57.2402V57.3838C86.7773 57.7529 86.8138 58.0993 86.8867 58.4229C86.9642 58.7464 87.0804 59.0312 87.2354 59.2773C87.3949 59.5234 87.5977 59.7171 87.8438 59.8584C88.0898 59.9951 88.3838 60.0635 88.7256 60.0635C89.1449 60.0635 89.4912 59.9746 89.7646 59.7969C90.0381 59.6191 90.2546 59.3844 90.4141 59.0928C90.5781 58.8011 90.7057 58.4844 90.7969 58.1426V56.4951C90.7467 56.2445 90.6693 56.0029 90.5645 55.7705C90.4642 55.5335 90.332 55.3239 90.168 55.1416C90.0085 54.9548 89.8102 54.8066 89.5732 54.6973C89.3363 54.5879 89.0583 54.5332 88.7393 54.5332C88.3929 54.5332 88.0944 54.6061 87.8438 54.752C87.5977 54.8932 87.3949 55.0892 87.2354 55.3398C87.0804 55.5859 86.9642 55.873 86.8867 56.2012C86.8138 56.5247 86.7773 56.8711 86.7773 57.2402ZM94.9395 50.5V61H93.6748V50.5H94.9395ZM94.6387 57.0215L94.1123 57.001C94.1169 56.4951 94.1921 56.028 94.3379 55.5996C94.4837 55.1667 94.6888 54.7907 94.9531 54.4717C95.2174 54.1527 95.5319 53.9066 95.8965 53.7334C96.2656 53.5557 96.6735 53.4668 97.1201 53.4668C97.4847 53.4668 97.8128 53.5169 98.1045 53.6172C98.3962 53.7129 98.6445 53.8678 98.8496 54.082C99.0592 54.2962 99.2188 54.5742 99.3281 54.916C99.4375 55.2533 99.4922 55.6657 99.4922 56.1533V61H98.2207V56.1396C98.2207 55.7523 98.1637 55.4424 98.0498 55.21C97.9359 54.973 97.7695 54.8021 97.5508 54.6973C97.332 54.5879 97.0632 54.5332 96.7441 54.5332C96.4297 54.5332 96.1426 54.5993 95.8828 54.7314C95.6276 54.8636 95.4066 55.0459 95.2197 55.2783C95.0374 55.5107 94.8939 55.7773 94.7891 56.0781C94.6888 56.3743 94.6387 56.6888 94.6387 57.0215ZM104.482 53.6035V54.5742H100.483V53.6035H104.482ZM101.837 51.8057H103.102V59.168C103.102 59.4186 103.14 59.6077 103.218 59.7354C103.295 59.863 103.396 59.9473 103.519 59.9883C103.642 60.0293 103.774 60.0498 103.915 60.0498C104.02 60.0498 104.129 60.0407 104.243 60.0225C104.362 59.9997 104.451 59.9814 104.51 59.9678L104.517 61C104.416 61.0319 104.284 61.0615 104.12 61.0889C103.961 61.1208 103.767 61.1367 103.539 61.1367C103.229 61.1367 102.944 61.0752 102.685 60.9521C102.425 60.8291 102.217 60.624 102.062 60.3369C101.912 60.0452 101.837 59.6533 101.837 59.1611V51.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M19.8574 78.4336V80.5186H18.832V78.4336H19.8574ZM19.7344 89.5967V91.4219H18.7158V89.5967H19.7344ZM21.1016 87.4365C21.1016 87.1631 21.04 86.917 20.917 86.6982C20.7939 86.4795 20.5911 86.279 20.3086 86.0967C20.026 85.9144 19.6478 85.7458 19.1738 85.5908C18.5996 85.4131 18.1029 85.1966 17.6836 84.9414C17.2689 84.6862 16.9476 84.3695 16.7197 83.9912C16.4964 83.613 16.3848 83.1549 16.3848 82.6172C16.3848 82.0566 16.5055 81.5736 16.7471 81.168C16.9886 80.7624 17.3304 80.4502 17.7725 80.2314C18.2145 80.0127 18.734 79.9033 19.3311 79.9033C19.7959 79.9033 20.2106 79.974 20.5752 80.1152C20.9398 80.252 21.2474 80.457 21.498 80.7305C21.7533 81.0039 21.9469 81.3389 22.0791 81.7354C22.2158 82.1318 22.2842 82.5898 22.2842 83.1094H21.0264C21.0264 82.804 20.9899 82.5238 20.917 82.2686C20.8441 82.0133 20.7347 81.7923 20.5889 81.6055C20.443 81.4141 20.2653 81.2682 20.0557 81.168C19.846 81.0632 19.6045 81.0107 19.3311 81.0107C18.9482 81.0107 18.6315 81.0768 18.3809 81.209C18.1348 81.3411 17.9525 81.528 17.834 81.7695C17.7155 82.0065 17.6562 82.2822 17.6562 82.5967C17.6562 82.8883 17.7155 83.1436 17.834 83.3623C17.9525 83.5811 18.153 83.7793 18.4355 83.957C18.7227 84.1302 19.1169 84.3011 19.6182 84.4697C20.2061 84.6566 20.7051 84.8776 21.1152 85.1328C21.5254 85.3835 21.8376 85.6934 22.0518 86.0625C22.266 86.4271 22.373 86.8805 22.373 87.4229C22.373 88.0107 22.2409 88.5075 21.9766 88.9131C21.7122 89.3141 21.3408 89.6195 20.8623 89.8291C20.3838 90.0387 19.8232 90.1436 19.1807 90.1436C18.7933 90.1436 18.4105 90.0911 18.0322 89.9863C17.654 89.8815 17.3122 89.7106 17.0068 89.4736C16.7015 89.2321 16.4577 88.9154 16.2754 88.5234C16.0931 88.127 16.002 87.6416 16.002 87.0674H17.2734C17.2734 87.4548 17.3281 87.776 17.4375 88.0312C17.5514 88.2819 17.7018 88.4824 17.8887 88.6328C18.0755 88.7786 18.2806 88.8835 18.5039 88.9473C18.7318 89.0065 18.9574 89.0361 19.1807 89.0361C19.5908 89.0361 19.9372 88.9723 20.2197 88.8447C20.5068 88.7126 20.7256 88.5257 20.876 88.2842C21.0264 88.0426 21.1016 87.7601 21.1016 87.4365ZM30.2002 84.2305V85.748C30.2002 86.5638 30.1273 87.252 29.9814 87.8125C29.8356 88.373 29.626 88.8242 29.3525 89.166C29.0791 89.5078 28.7487 89.7562 28.3613 89.9111C27.9785 90.0615 27.5456 90.1367 27.0625 90.1367C26.6797 90.1367 26.3265 90.0889 26.0029 89.9932C25.6794 89.8975 25.3877 89.7448 25.1279 89.5352C24.8727 89.321 24.654 89.043 24.4717 88.7012C24.2894 88.3594 24.1504 87.9447 24.0547 87.457C23.959 86.9694 23.9111 86.3997 23.9111 85.748V84.2305C23.9111 83.4147 23.984 82.7311 24.1299 82.1797C24.2803 81.6283 24.4922 81.1862 24.7656 80.8535C25.0391 80.5163 25.3672 80.2747 25.75 80.1289C26.1374 79.9831 26.5703 79.9102 27.0488 79.9102C27.4362 79.9102 27.7917 79.958 28.1152 80.0537C28.4434 80.1449 28.735 80.293 28.9902 80.498C29.2454 80.6986 29.4619 80.9674 29.6396 81.3047C29.8219 81.6374 29.9609 82.0452 30.0566 82.5283C30.1523 83.0114 30.2002 83.5788 30.2002 84.2305ZM28.9287 85.9531V84.0186C28.9287 83.5719 28.9014 83.18 28.8467 82.8428C28.7965 82.501 28.7214 82.2093 28.6211 81.9678C28.5208 81.7262 28.3932 81.5303 28.2383 81.3799C28.0879 81.2295 27.9124 81.1201 27.7119 81.0518C27.516 80.9788 27.2949 80.9424 27.0488 80.9424C26.748 80.9424 26.4814 80.9993 26.249 81.1133C26.0166 81.2227 25.8206 81.3981 25.6611 81.6396C25.5062 81.8812 25.3877 82.1979 25.3057 82.5898C25.2236 82.9818 25.1826 83.458 25.1826 84.0186V85.9531C25.1826 86.3997 25.2077 86.7939 25.2578 87.1357C25.3125 87.4775 25.3923 87.7738 25.4971 88.0244C25.6019 88.2705 25.7295 88.4733 25.8799 88.6328C26.0303 88.7923 26.2035 88.9108 26.3994 88.9883C26.5999 89.0612 26.821 89.0977 27.0625 89.0977C27.3724 89.0977 27.6436 89.0384 27.876 88.9199C28.1084 88.8014 28.3021 88.6169 28.457 88.3662C28.6165 88.111 28.735 87.7852 28.8125 87.3887C28.89 86.9876 28.9287 86.5091 28.9287 85.9531Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"41",y:"83.5",width:"200",height:"2",rx:"1",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"41",y:"83.5",width:"122",height:"2",rx:"1",fill:"#4272F9"}),(0,h.createElement)("g",{filter:"url(#filter0_d_76_1271)"},(0,h.createElement)("circle",{cx:"163",cy:"84.5",r:"11",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M256.107 78.4336V80.5186H255.082V78.4336H256.107ZM255.984 89.5967V91.4219H254.966V89.5967H255.984ZM257.352 87.4365C257.352 87.1631 257.29 86.917 257.167 86.6982C257.044 86.4795 256.841 86.279 256.559 86.0967C256.276 85.9144 255.898 85.7458 255.424 85.5908C254.85 85.4131 254.353 85.1966 253.934 84.9414C253.519 84.6862 253.198 84.3695 252.97 83.9912C252.746 83.613 252.635 83.1549 252.635 82.6172C252.635 82.0566 252.756 81.5736 252.997 81.168C253.239 80.7624 253.58 80.4502 254.022 80.2314C254.465 80.0127 254.984 79.9033 255.581 79.9033C256.046 79.9033 256.461 79.974 256.825 80.1152C257.19 80.252 257.497 80.457 257.748 80.7305C258.003 81.0039 258.197 81.3389 258.329 81.7354C258.466 82.1318 258.534 82.5898 258.534 83.1094H257.276C257.276 82.804 257.24 82.5238 257.167 82.2686C257.094 82.0133 256.985 81.7923 256.839 81.6055C256.693 81.4141 256.515 81.2682 256.306 81.168C256.096 81.0632 255.854 81.0107 255.581 81.0107C255.198 81.0107 254.882 81.0768 254.631 81.209C254.385 81.3411 254.202 81.528 254.084 81.7695C253.965 82.0065 253.906 82.2822 253.906 82.5967C253.906 82.8883 253.965 83.1436 254.084 83.3623C254.202 83.5811 254.403 83.7793 254.686 83.957C254.973 84.1302 255.367 84.3011 255.868 84.4697C256.456 84.6566 256.955 84.8776 257.365 85.1328C257.775 85.3835 258.088 85.6934 258.302 86.0625C258.516 86.4271 258.623 86.8805 258.623 87.4229C258.623 88.0107 258.491 88.5075 258.227 88.9131C257.962 89.3141 257.591 89.6195 257.112 89.8291C256.634 90.0387 256.073 90.1436 255.431 90.1436C255.043 90.1436 254.66 90.0911 254.282 89.9863C253.904 89.8815 253.562 89.7106 253.257 89.4736C252.951 89.2321 252.708 88.9154 252.525 88.5234C252.343 88.127 252.252 87.6416 252.252 87.0674H253.523C253.523 87.4548 253.578 87.776 253.688 88.0312C253.801 88.2819 253.952 88.4824 254.139 88.6328C254.326 88.7786 254.531 88.8835 254.754 88.9473C254.982 89.0065 255.207 89.0361 255.431 89.0361C255.841 89.0361 256.187 88.9723 256.47 88.8447C256.757 88.7126 256.976 88.5257 257.126 88.2842C257.276 88.0426 257.352 87.7601 257.352 87.4365ZM266.724 88.9609V90H260.209V89.0908L263.47 85.4609C263.871 85.0143 264.181 84.6361 264.399 84.3262C264.623 84.0117 264.778 83.7314 264.864 83.4854C264.955 83.2347 265.001 82.9795 265.001 82.7197C265.001 82.3916 264.933 82.0954 264.796 81.8311C264.664 81.5622 264.468 81.348 264.208 81.1885C263.948 81.029 263.634 80.9492 263.265 80.9492C262.823 80.9492 262.453 81.0358 262.157 81.209C261.866 81.3776 261.647 81.6146 261.501 81.9199C261.355 82.2253 261.282 82.5762 261.282 82.9727H260.018C260.018 82.4121 260.141 81.8994 260.387 81.4346C260.633 80.9697 260.997 80.6006 261.48 80.3271C261.964 80.0492 262.558 79.9102 263.265 79.9102C263.894 79.9102 264.431 80.0218 264.878 80.2451C265.325 80.4639 265.666 80.7738 265.903 81.1748C266.145 81.5713 266.266 82.0361 266.266 82.5693C266.266 82.861 266.215 83.1572 266.115 83.458C266.02 83.7542 265.885 84.0505 265.712 84.3467C265.543 84.6429 265.345 84.9346 265.117 85.2217C264.894 85.5088 264.655 85.7913 264.399 86.0693L261.733 88.9609H266.724ZM272.233 79.9922V90H270.969V81.5713L268.419 82.501V81.3594L272.035 79.9922H272.233ZM282.2 84.2305V85.748C282.2 86.5638 282.127 87.252 281.981 87.8125C281.836 88.373 281.626 88.8242 281.353 89.166C281.079 89.5078 280.749 89.7562 280.361 89.9111C279.979 90.0615 279.546 90.1367 279.062 90.1367C278.68 90.1367 278.326 90.0889 278.003 89.9932C277.679 89.8975 277.388 89.7448 277.128 89.5352C276.873 89.321 276.654 89.043 276.472 88.7012C276.289 88.3594 276.15 87.9447 276.055 87.457C275.959 86.9694 275.911 86.3997 275.911 85.748V84.2305C275.911 83.4147 275.984 82.7311 276.13 82.1797C276.28 81.6283 276.492 81.1862 276.766 80.8535C277.039 80.5163 277.367 80.2747 277.75 80.1289C278.137 79.9831 278.57 79.9102 279.049 79.9102C279.436 79.9102 279.792 79.958 280.115 80.0537C280.443 80.1449 280.735 80.293 280.99 80.498C281.245 80.6986 281.462 80.9674 281.64 81.3047C281.822 81.6374 281.961 82.0452 282.057 82.5283C282.152 83.0114 282.2 83.5788 282.2 84.2305ZM280.929 85.9531V84.0186C280.929 83.5719 280.901 83.18 280.847 82.8428C280.797 82.501 280.721 82.2093 280.621 81.9678C280.521 81.7262 280.393 81.5303 280.238 81.3799C280.088 81.2295 279.912 81.1201 279.712 81.0518C279.516 80.9788 279.295 80.9424 279.049 80.9424C278.748 80.9424 278.481 80.9993 278.249 81.1133C278.017 81.2227 277.821 81.3981 277.661 81.6396C277.506 81.8812 277.388 82.1979 277.306 82.5898C277.224 82.9818 277.183 83.458 277.183 84.0186V85.9531C277.183 86.3997 277.208 86.7939 277.258 87.1357C277.312 87.4775 277.392 87.7738 277.497 88.0244C277.602 88.2705 277.729 88.4733 277.88 88.6328C278.03 88.7923 278.203 88.9108 278.399 88.9883C278.6 89.0612 278.821 89.0977 279.062 89.0977C279.372 89.0977 279.644 89.0384 279.876 88.9199C280.108 88.8014 280.302 88.6169 280.457 88.3662C280.617 88.111 280.735 87.7852 280.812 87.3887C280.89 86.9876 280.929 86.5091 280.929 85.9531Z",fill:"#0F172A"}),(0,h.createElement)("defs",null,(0,h.createElement)("filter",{id:"filter0_d_76_1271",x:"140",y:"65.5",width:"46",height:"46",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB"},(0,h.createElement)("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),(0,h.createElement)("feColorMatrix",{in:"SourceAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",result:"hardAlpha"}),(0,h.createElement)("feOffset",{dy:"4"}),(0,h.createElement)("feGaussianBlur",{stdDeviation:"6"}),(0,h.createElement)("feColorMatrix",{type:"matrix",values:"0 0 0 0 0.258824 0 0 0 0 0.447059 0 0 0 0 0.976471 0 0 0 0.5 0"}),(0,h.createElement)("feBlend",{mode:"normal",in2:"BackgroundImageFix",result:"effect1_dropShadow_76_1271"}),(0,h.createElement)("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_dropShadow_76_1271",result:"shape"})))),{BlockLabel:yi,BlockDescription:Ei,BlockAdvancedValue:wi,BlockName:vi,AdvancedFields:_i,FieldWrapper:ki,ValidationToggleGroup:ji,ValidationBlockMessage:xi,AdvancedInspectorControl:Fi,AttributeHelp:Bi}=JetFBComponents,{useIsAdvancedValidation:Ai,useUniqueNameOnDuplicate:Pi}=JetFBHooks,{__:Si}=wp.i18n,{InspectorControls:Ni,useBlockProps:Ii}=wp.blockEditor,{TextControl:Ti,PanelBody:Oi,__experimentalNumberControl:Ji,__experimentalInputControl:Ri}=wp.components,{useState:qi}=wp.element;let{NumberControl:Di,InputControl:zi}=wp.components;void 0===Di&&(Di=Ji),void 0===zi&&(zi=Ri);const Ui=JSON.parse('{"apiVersion":3,"name":"jet-forms/range-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","range"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Range Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max":{"type":["number","string"],"default":"","jfb":{"rich":true}},"step":{"type":["number","string"],"default":"","jfb":{"rich":true}},"prefix":{"type":"string","default":"","jfb":{"rich":true}},"suffix":{"type":"string","default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Gi}=wp.i18n,{createBlock:Wi}=wp.blocks,{name:Ki,icon:$i=""}=Ui,Yi={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:$i}}),description:Gi("Insert a range with a slider in the form for the users to move it. So the visitors can set the desired price range for products they want to buy.","jet-form-builder"),edit:function(e){const C=Ii(),t=Ai();Pi();const[l,r]=qi(50),{attributes:n,setAttributes:a,editProps:{uniqKey:i,attrHelp:o}}=e;return n.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Zi):[e.isSelected&&(0,h.createElement)(Ni,{key:i("InspectorControls")},(0,h.createElement)(Oi,{title:Si("General","jet-form-builder")},(0,h.createElement)(yi,null),(0,h.createElement)(vi,null),(0,h.createElement)(Ei,null)),(0,h.createElement)(Oi,{title:Si("Value","jet-form-builder")},(0,h.createElement)(wi,null)),(0,h.createElement)(Oi,{title:Si("Field","jet-form-builder"),key:i("PanelBody")},(0,h.createElement)(Fi,{value:n.min,label:Si("Min Value","jet-form-builder"),onChangePreset:e=>a({min:e})},(({instanceId:e})=>(0,h.createElement)(Ti,{id:e,className:"jet-fb m-unset",value:n.min,onChange:e=>a({min:e})}))),(0,h.createElement)(Bi,{name:"min"}),(0,h.createElement)(Fi,{value:n.max,label:Si("Max Value","jet-form-builder"),onChangePreset:e=>a({max:e})},(({instanceId:e})=>(0,h.createElement)(Ti,{id:e,className:"jet-fb m-unset",value:n.max,onChange:e=>a({max:e})}))),(0,h.createElement)(Bi,{name:"max"}),(0,h.createElement)(Fi,{value:n.step,label:Si("Step","jet-form-builder"),onChangePreset:e=>a({step:e})},(({instanceId:e})=>(0,h.createElement)(Ti,{id:e,className:"jet-fb m-unset",value:n.step,onChange:e=>a({step:e})}))),(0,h.createElement)(Bi,{name:"step"}),(0,h.createElement)(Ti,{key:"prefix",label:Si("Value prefix","jet-form-builder"),value:n.prefix,help:o("prefix_suffix"),onChange:e=>{a({prefix:e})}}),(0,h.createElement)(Ti,{key:"suffix",label:Si("Value suffix","jet-form-builder"),value:n.suffix,help:o("prefix_suffix"),onChange:e=>{a({suffix:e})}})),(0,h.createElement)(Oi,{title:Si("Validation","jet-form-builder")},(0,h.createElement)(ji,null),t&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(xi,{name:"empty"}),(0,h.createElement)(xi,{name:"number_max"}),(0,h.createElement)(xi,{name:"number_min"}))),(0,h.createElement)(_i,{key:i("AdvancedFields"),...e})),(0,h.createElement)("div",{...C,key:i("viewBlock")},(0,h.createElement)(ki,{key:i("FieldWrapper"),wrapClasses:["range-wrap"],...e},(0,h.createElement)("div",{className:"range-flex-wrap jet-form-builder__field-preview"},(0,h.createElement)(zi,{key:i("placeholder_block"),type:"range",min:n.min||0,max:n.max||100,step:n.step||1,onChange:r}),(0,h.createElement)("div",{className:"jet-form-builder__field-value"},(0,h.createElement)("span",{className:"jet-form-builder__field-value-prefix"},n.prefix),(0,h.createElement)("span",null,l),(0,h.createElement)("span",{className:"jet-form-builder__field-value-suffix"},n.suffix)))))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Wi("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/number-field"],transform:e=>Wi(Ki,{...e}),priority:0}]}},Xi=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"70",y:"44",width:"158",height:"56",rx:"28",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M99.8051 79.28C99.2384 79.28 98.6551 79.2233 98.0551 79.11C97.4551 79.0033 96.8984 78.8733 96.3851 78.72C95.8717 78.56 95.4651 78.4067 95.1651 78.26L95.4651 75.54C95.9317 75.7667 96.4184 75.9767 96.9251 76.17C97.4317 76.3633 97.9517 76.52 98.4851 76.64C99.0184 76.76 99.5584 76.82 100.105 76.82C100.785 76.82 101.332 76.6867 101.745 76.42C102.158 76.1533 102.365 75.7467 102.365 75.2C102.365 74.78 102.248 74.4433 102.015 74.19C101.782 73.93 101.425 73.7 100.945 73.5C100.465 73.2933 99.8517 73.06 99.1051 72.8C98.3584 72.54 97.6884 72.2467 97.0951 71.92C96.5017 71.5867 96.0317 71.1667 95.6851 70.66C95.3384 70.1533 95.1651 69.5067 95.1651 68.72C95.1651 67.9467 95.3551 67.26 95.7351 66.66C96.1151 66.0533 96.6817 65.58 97.4351 65.24C98.1951 64.8933 99.1384 64.72 100.265 64.72C101.118 64.72 101.932 64.8167 102.705 65.01C103.478 65.1967 104.138 65.4 104.685 65.62L104.425 68.24C103.638 67.8867 102.898 67.62 102.205 67.44C101.518 67.2533 100.818 67.16 100.105 67.16C99.3584 67.16 98.7817 67.2833 98.3751 67.53C97.9684 67.7767 97.7651 68.1467 97.7651 68.64C97.7651 69.0333 97.8784 69.35 98.1051 69.59C98.3317 69.83 98.6551 70.0367 99.0751 70.21C99.4951 70.3767 99.9984 70.5533 100.585 70.74C101.598 71.06 102.448 71.4133 103.135 71.8C103.828 72.18 104.348 72.6433 104.695 73.19C105.048 73.73 105.225 74.4 105.225 75.2C105.225 75.6 105.162 76.0367 105.035 76.51C104.908 76.9767 104.658 77.42 104.285 77.84C103.912 78.26 103.365 78.6067 102.645 78.88C101.932 79.1467 100.985 79.28 99.8051 79.28ZM110.989 79.2C109.949 79.2 109.119 78.9933 108.499 78.58C107.879 78.1667 107.433 77.6 107.159 76.88C106.886 76.1533 106.749 75.32 106.749 74.38V69H109.229V74.38C109.229 75.3067 109.383 75.9967 109.689 76.45C110.003 76.8967 110.509 77.12 111.209 77.12C111.769 77.12 112.233 76.9867 112.599 76.72C112.973 76.4533 113.283 76.08 113.529 75.6L113.089 76.86V69H115.569V79H113.249L113.129 77.26L113.669 77.96C113.429 78.2667 113.049 78.55 112.529 78.81C112.016 79.07 111.503 79.2 110.989 79.2ZM123.085 79.2C122.325 79.2 121.668 79.0767 121.115 78.83C120.561 78.5833 120.045 78.2467 119.565 77.82L120.305 77.3L120.185 79H117.865V64H120.345V70.66L119.745 70.28C120.185 69.8267 120.675 69.4733 121.215 69.22C121.761 68.9667 122.385 68.84 123.085 68.84C124.065 68.84 124.888 69.0767 125.555 69.55C126.221 70.0233 126.725 70.6533 127.065 71.44C127.411 72.2267 127.585 73.0867 127.585 74.02C127.585 74.9533 127.411 75.8133 127.065 76.6C126.725 77.3867 126.221 78.0167 125.555 78.49C124.888 78.9633 124.065 79.2 123.085 79.2ZM122.725 77.16C123.218 77.16 123.638 77.0267 123.985 76.76C124.331 76.4933 124.595 76.1267 124.775 75.66C124.955 75.1867 125.045 74.64 125.045 74.02C125.045 73.4 124.955 72.8567 124.775 72.39C124.595 71.9167 124.331 71.5467 123.985 71.28C123.638 71.0133 123.218 70.88 122.725 70.88C122.145 70.88 121.671 71.0133 121.305 71.28C120.938 71.5467 120.665 71.9167 120.485 72.39C120.311 72.8567 120.225 73.4 120.225 74.02C120.225 74.64 120.311 75.1867 120.485 75.66C120.665 76.1267 120.938 76.4933 121.305 76.76C121.671 77.0267 122.145 77.16 122.725 77.16ZM129.31 79V69H131.43L131.59 70.46L131.23 70.02C131.61 69.72 132.064 69.45 132.59 69.21C133.124 68.9633 133.744 68.84 134.45 68.84C134.984 68.84 135.454 68.92 135.86 69.08C136.274 69.2333 136.627 69.4567 136.92 69.75C137.214 70.0367 137.45 70.38 137.63 70.78L137.03 70.64C137.35 70.0667 137.817 69.6233 138.43 69.31C139.05 68.9967 139.75 68.84 140.53 68.84C141.45 68.84 142.2 69.03 142.78 69.41C143.36 69.79 143.787 70.3267 144.06 71.02C144.334 71.7067 144.47 72.5133 144.47 73.44V79H141.99V73.62C141.99 72.6867 141.844 71.9967 141.55 71.55C141.264 71.1033 140.784 70.88 140.11 70.88C139.777 70.88 139.484 70.94 139.23 71.06C138.984 71.1733 138.777 71.3433 138.61 71.57C138.45 71.79 138.33 72.06 138.25 72.38C138.17 72.6933 138.13 73.0467 138.13 73.44V79H135.65V73.62C135.65 73 135.584 72.4867 135.45 72.08C135.324 71.6733 135.117 71.3733 134.83 71.18C134.55 70.98 134.184 70.88 133.73 70.88C133.15 70.88 132.674 71.0167 132.3 71.29C131.934 71.5567 131.61 71.92 131.33 72.38L131.79 71.04V79H129.31ZM146.693 79V69H149.173V79H146.693ZM146.693 67.48V65H149.173V67.48H146.693ZM154.758 79.2C154.131 79.2 153.621 79.0733 153.228 78.82C152.835 78.56 152.545 78.23 152.358 77.83C152.171 77.43 152.078 77.0133 152.078 76.58V71.04H150.658L150.878 69H152.078V66.8L154.558 66.54V69H156.758V71.04H154.558V75.56C154.558 76.0667 154.588 76.4333 154.648 76.66C154.708 76.88 154.845 77.02 155.058 77.08C155.271 77.1333 155.611 77.16 156.078 77.16H156.758L156.538 79.2H154.758ZM163.465 79V71.04H162.045L162.265 69H163.465V66.88C163.465 66 163.725 65.3 164.245 64.78C164.772 64.26 165.525 64 166.505 64C166.825 64 167.118 64.0167 167.385 64.05C167.658 64.0833 167.905 64.1267 168.125 64.18L167.905 66.18C167.805 66.1467 167.695 66.1233 167.575 66.11C167.455 66.09 167.305 66.08 167.125 66.08C166.765 66.08 166.478 66.1767 166.265 66.37C166.052 66.5633 165.945 66.88 165.945 67.32V69H168.145V71.04H165.945V79H163.465ZM174.104 79.2C173.018 79.2 172.091 78.9633 171.324 78.49C170.558 78.0167 169.971 77.3867 169.564 76.6C169.164 75.8133 168.964 74.9533 168.964 74.02C168.964 73.08 169.164 72.2133 169.564 71.42C169.971 70.6267 170.558 69.9933 171.324 69.52C172.091 69.04 173.018 68.8 174.104 68.8C175.191 68.8 176.118 69.04 176.884 69.52C177.651 69.9933 178.234 70.6267 178.634 71.42C179.041 72.2133 179.244 73.08 179.244 74.02C179.244 74.9533 179.041 75.8133 178.634 76.6C178.234 77.3867 177.651 78.0167 176.884 78.49C176.118 78.9633 175.191 79.2 174.104 79.2ZM174.104 77.16C174.938 77.16 175.578 76.87 176.024 76.29C176.478 75.7033 176.704 74.9467 176.704 74.02C176.704 73.08 176.478 72.3167 176.024 71.73C175.578 71.1367 174.938 70.84 174.104 70.84C173.278 70.84 172.638 71.1367 172.184 71.73C171.731 72.3167 171.504 73.08 171.504 74.02C171.504 74.9467 171.731 75.7033 172.184 76.29C172.638 76.87 173.278 77.16 174.104 77.16ZM180.971 79V69H183.291L183.351 70.06C183.604 69.78 183.961 69.5 184.421 69.22C184.881 68.94 185.384 68.8 185.931 68.8C186.091 68.8 186.237 68.8133 186.371 68.84L186.191 71.28C186.044 71.24 185.897 71.2133 185.751 71.2C185.611 71.1867 185.471 71.18 185.331 71.18C184.911 71.18 184.527 71.2767 184.181 71.47C183.834 71.6633 183.591 71.9 183.451 72.18V79H180.971ZM187.572 79V69H189.692L189.852 70.46L189.492 70.02C189.872 69.72 190.325 69.45 190.852 69.21C191.385 68.9633 192.005 68.84 192.712 68.84C193.245 68.84 193.715 68.92 194.122 69.08C194.535 69.2333 194.889 69.4567 195.182 69.75C195.475 70.0367 195.712 70.38 195.892 70.78L195.292 70.64C195.612 70.0667 196.079 69.6233 196.692 69.31C197.312 68.9967 198.012 68.84 198.792 68.84C199.712 68.84 200.462 69.03 201.042 69.41C201.622 69.79 202.049 70.3267 202.322 71.02C202.595 71.7067 202.732 72.5133 202.732 73.44V79H200.252V73.62C200.252 72.6867 200.105 71.9967 199.812 71.55C199.525 71.1033 199.045 70.88 198.372 70.88C198.039 70.88 197.745 70.94 197.492 71.06C197.245 71.1733 197.039 71.3433 196.872 71.57C196.712 71.79 196.592 72.06 196.512 72.38C196.432 72.6933 196.392 73.0467 196.392 73.44V79H193.912V73.62C193.912 73 193.845 72.4867 193.712 72.08C193.585 71.6733 193.379 71.3733 193.092 71.18C192.812 70.98 192.445 70.88 191.992 70.88C191.412 70.88 190.935 71.0167 190.562 71.29C190.195 71.5567 189.872 71.92 189.592 72.38L190.052 71.04V79H187.572Z",fill:"white"})),{GeneralFields:Qi,AdvancedFields:eo,ActionButtonPlaceholder:Co}=JetFBComponents,{InspectorControls:to}=wp.blockEditor,{useState:lo,useEffect:ro}=wp.element,{withFilters:no}=wp.components,ao=["jet-form-builder__action-button"],io=["jet-form-builder__action-button-wrapper"],oo=no("jet.fb.block.action-button.edit")(Co),so=e=>{var C;const{attributes:t,setAttributes:l}=e,r=()=>{if(!t.action_type)return ao;const e=JetFormActionButton.actions.find((e=>t.action_type===e.value));return e?(t.label||l({label:e.preset_label}),[...ao,e.button_class]):ao},n=()=>{if(!t.action_type)return[...io];const e=JetFormActionButton.actions.find((e=>t.action_type===e.value));return e?[...io,e.wrapper_class]:[...io]},[a,i]=lo(r),[o,s]=lo(n);return ro((()=>{i(r()),s(n())}),[t.action_type]),(0,h.createElement)(oo,{attributes:t,setAttributes:l,setActionAttributes:e=>{var C;const r=JSON.parse(JSON.stringify(t.buttons)),n=null!==(C=r[t.action_type])&&void 0!==C?C:{};r[t.action_type]={...n,...e},l({buttons:r})},actionAttributes:null!==(C=t.buttons[t.action_type])&&void 0!==C?C:{},buttonClasses:a,wrapperClasses:o})},co=JSON.parse('{"apiVersion":3,"name":"jet-forms/submit-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","field","submit","break","next","prev","action","button"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Action Button","icon":"\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"label":{"type":"string","default":"Submit","jfb":{"rich":true}},"action_type":{"type":"string","default":"submit"},"buttons":{"type":"object","default":{}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""}}}'),{__:mo}=wp.i18n,uo={name:"submit",isDefault:!0,title:mo("Action Button","jet-form-builder"),isActive:["action_type"],description:mo("Add the button by clicking which users can submit the form","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M24.8828 29.3223H23.0029C22.9619 29.7415 22.8639 30.0924 22.709 30.375C22.5586 30.6576 22.3376 30.8717 22.0459 31.0176C21.7588 31.1634 21.3851 31.2363 20.9248 31.2363C20.5465 31.2363 20.2207 31.1634 19.9473 31.0176C19.6738 30.8717 19.4505 30.6598 19.2773 30.3818C19.1042 30.1038 18.9766 29.7643 18.8945 29.3633C18.8125 28.9622 18.7715 28.5088 18.7715 28.0029V27.2305C18.7715 26.7018 18.8171 26.237 18.9082 25.8359C18.9993 25.4303 19.1361 25.0931 19.3184 24.8242C19.5007 24.5508 19.7285 24.3457 20.002 24.209C20.2799 24.0723 20.6012 24.0039 20.9658 24.0039C21.4352 24.0039 21.8112 24.0814 22.0938 24.2363C22.3809 24.3867 22.5951 24.6077 22.7363 24.8994C22.8822 25.1911 22.9733 25.5465 23.0098 25.9658H24.8896C24.8258 25.2913 24.639 24.6943 24.3291 24.1748C24.0192 23.6553 23.584 23.2474 23.0234 22.9512C22.4629 22.6504 21.777 22.5 20.9658 22.5C20.3415 22.5 19.7764 22.6117 19.2705 22.835C18.7692 23.0583 18.3385 23.3773 17.9785 23.792C17.623 24.2021 17.3496 24.6989 17.1582 25.2822C16.9668 25.8656 16.8711 26.5195 16.8711 27.2441V28.0029C16.8711 28.7275 16.9645 29.3815 17.1514 29.9648C17.3382 30.5436 17.6071 31.0404 17.958 31.4551C18.3135 31.8652 18.7396 32.182 19.2363 32.4053C19.7376 32.624 20.3005 32.7334 20.9248 32.7334C21.736 32.7334 22.4264 32.5876 22.9961 32.2959C23.5658 32.0042 24.0101 31.6032 24.3291 31.0928C24.6481 30.5778 24.8327 29.9876 24.8828 29.3223Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5371 22.6436L16.2764 32.5967H14.2803L13.5324 30.3818H9.81555L9.07129 32.5967H7.08203L10.8008 22.6436H12.5371ZM10.314 28.8984H13.0316L11.6695 24.8646L10.314 28.8984Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M30.4062 24.127V32.5967H28.5332V24.127H25.4775V22.6436H33.4961V24.127H30.4062Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M36.75 32.5967V22.6436H34.8701V32.5967H36.75Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M46.8398 27.3672V27.8799C46.8398 28.6318 46.7396 29.3086 46.5391 29.9102C46.3385 30.5072 46.0537 31.0153 45.6846 31.4346C45.3154 31.8538 44.8757 32.1751 44.3652 32.3984C43.8548 32.6217 43.2874 32.7334 42.6631 32.7334C42.0479 32.7334 41.4827 32.6217 40.9678 32.3984C40.4574 32.1751 40.0153 31.8538 39.6416 31.4346C39.2679 31.0153 38.9785 30.5072 38.7734 29.9102C38.5684 29.3086 38.4658 28.6318 38.4658 27.8799V27.3672C38.4658 26.6107 38.5684 25.9339 38.7734 25.3369C38.9785 24.7399 39.2656 24.2318 39.6348 23.8125C40.0039 23.3887 40.4437 23.0651 40.9541 22.8418C41.4691 22.6185 42.0342 22.5068 42.6494 22.5068C43.2738 22.5068 43.8411 22.6185 44.3516 22.8418C44.862 23.0651 45.3018 23.3887 45.6709 23.8125C46.0446 24.2318 46.3317 24.7399 46.5322 25.3369C46.7373 25.9339 46.8398 26.6107 46.8398 27.3672ZM44.9395 27.8799V27.3535C44.9395 26.8112 44.8893 26.335 44.7891 25.9248C44.6888 25.5101 44.5407 25.1615 44.3447 24.8789C44.1488 24.5964 43.9072 24.3844 43.6201 24.2432C43.333 24.0973 43.0094 24.0244 42.6494 24.0244C42.2848 24.0244 41.9613 24.0973 41.6787 24.2432C41.4007 24.3844 41.1637 24.5964 40.9678 24.8789C40.7718 25.1615 40.6214 25.5101 40.5166 25.9248C40.4163 26.335 40.3662 26.8112 40.3662 27.3535V27.8799C40.3662 28.4176 40.4163 28.8939 40.5166 29.3086C40.6214 29.7233 40.7718 30.0742 40.9678 30.3613C41.1683 30.6439 41.4098 30.8581 41.6924 31.0039C41.9749 31.1497 42.2985 31.2227 42.6631 31.2227C43.0277 31.2227 43.3512 31.1497 43.6338 31.0039C43.9163 30.8581 44.1533 30.6439 44.3447 30.3613C44.5407 30.0742 44.6888 29.7233 44.7891 29.3086C44.8893 28.8939 44.9395 28.4176 44.9395 27.8799Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M56.4307 32.5967V22.6436H54.5576V29.5547L50.3125 22.6436H48.4326V32.5967H50.3125V25.6924L54.5439 32.5967H56.4307Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M56.8581 44H60C62.2091 44 64 42.2091 64 40V15C64 12.7909 62.2091 11 60 11H4C1.79086 11 0 12.7909 0 15V40C0 42.2091 1.79086 44 4 44H40.778L42.9403 53.0096C43.0578 53.5382 43.3396 53.9897 43.7233 54.3254C44.0972 54.6525 44.5724 54.8763 45.1109 54.9302C45.6268 54.9818 46.1288 54.8712 46.5658 54.6285C47.0573 54.3554 47.415 53.9381 47.6217 53.4573L48.5248 51.4717L51.0479 54.0031L51.0743 54.0278C51.3798 54.3129 51.7296 54.5489 52.1209 54.7228L52.1642 54.742L52.2083 54.7592C52.6273 54.9221 53.0636 55 53.5023 55C53.941 55 54.3773 54.9221 54.7963 54.7592L54.8404 54.742L54.8837 54.7228C55.275 54.5489 55.6249 54.3129 55.9303 54.0278L55.9679 53.9927L56.0036 53.9557C56.6466 53.2906 57 52.4405 57 51.5023C57 50.5641 56.6466 49.714 56.0036 49.0489L55.9907 49.0355L53.4717 46.5248L55.4573 45.6217C55.9381 45.415 56.3554 45.0573 56.6285 44.5658C56.7279 44.3869 56.8051 44.1972 56.8581 44ZM60 13H4C2.89543 13 2 13.8954 2 15V40C2 41.1046 2.89543 42 4 42H40.298L40.0716 41.0566C39.9751 40.6621 39.9762 40.2536 40.0747 39.8594L40.1023 39.7489L40.1423 39.6422C40.2437 39.3718 40.3918 39.1023 40.5984 38.8544L40.6564 38.7847L40.7206 38.7206C41.029 38.4122 41.4173 38.1852 41.8594 38.0747C42.2536 37.9762 42.6621 37.9751 43.0566 38.0716L55.0096 40.9403C55.5382 41.0578 55.9897 41.3396 56.3254 41.7233C56.4015 41.8102 56.4719 41.9026 56.536 42H60C61.1046 42 62 41.1046 62 40V15C62 13.8954 61.1046 13 60 13ZM50.0127 45.9009L54.6555 43.7892C54.7554 43.7492 54.8303 43.6843 54.8802 43.5945C54.9301 43.5046 54.9501 43.4098 54.9401 43.3099C54.9301 43.2101 54.8902 43.1202 54.8203 43.0403C54.7504 42.9604 54.6655 42.9105 54.5657 42.8906L42.5841 40.015C42.5042 39.995 42.4243 39.995 42.3445 40.015C42.2646 40.0349 42.1947 40.0749 42.1348 40.1348C42.0849 40.1947 42.0449 40.2646 42.015 40.3445C41.995 40.4243 41.995 40.5042 42.015 40.5841L44.8906 52.5657C44.9105 52.6655 44.9604 52.7504 45.0403 52.8203C45.1202 52.8902 45.2101 52.9301 45.3099 52.9401C45.4098 52.9501 45.5046 52.9301 45.5945 52.8802C45.6843 52.8303 45.7492 52.7554 45.7892 52.6555L47.9009 48.0127L52.4389 52.5657C52.5887 52.7055 52.7535 52.8153 52.9332 52.8952C53.1129 52.9651 53.3026 53 53.5023 53C53.702 53 53.8917 52.9651 54.0714 52.8952C54.2512 52.8153 54.4159 52.7055 54.5657 52.5657C54.8552 52.2661 55 51.9117 55 51.5023C55 51.0929 54.8552 50.7385 54.5657 50.4389L50.0127 45.9009Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"submit"}},{registerBlockVariation:po}=wp.blocks;po("jet-forms/submit-field",uo);const{__:fo}=wp.i18n,Vo={name:"update",title:fo("Update Field","jet-form-builder"),isActive:["action_type"],description:fo("Update dependent fields without submitting the form","jet-form-builder"),icon:"update-alt",scope:["block","inserter","transform"],attributes:{action_type:"update"}};var Ho;const{registerBlockVariation:ho,getBlockVariations:bo}=wp.blocks;(null!==(Ho=bo?.("jet-forms/submit-field"))&&void 0!==Ho?Ho:[]).some((e=>"update"===e?.name||"update"===e?.attributes?.action_type))||ho("jet-forms/submit-field",Vo);const{__:Mo}=wp.i18n,Lo={name:"next",title:Mo("Next Page","jet-form-builder"),isActive:["action_type"],description:Mo("Go to Next Page button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M48.615 39.6867C48.1972 40.1045 47.5236 40.1045 47.1058 39.6867C46.688 39.2774 46.688 38.5953 47.0973 38.186L53.279 32.0043L47.1058 25.8225C46.688 25.4047 46.688 24.7311 47.1058 24.3133C47.5236 23.8955 48.1972 23.8955 48.615 24.3133L55.7005 31.3989C56.0331 31.7314 56.0331 32.2686 55.7005 32.6011L48.615 39.6867Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M39 54C41.2091 54 43 52.2091 43 50H58C60.2091 50 62 48.2091 62 46V18C62 15.7909 60.2091 14 58 14H43C43 11.7909 41.2091 10 39 10H6C3.79086 10 2 11.7909 2 14V50C2 52.2091 3.79086 54 6 54H39ZM39 12H6C4.89543 12 4 12.8954 4 14V50C4 51.1046 4.89543 52 6 52H39C40.1046 52 41 51.1046 41 50V14C41 12.8954 40.1046 12 39 12ZM43 48V16H58C59.1046 16 60 16.8954 60 18V46C60 47.1046 59.1046 48 58 48H43Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"next"}},{registerBlockVariation:go}=wp.blocks;go("jet-forms/submit-field",Lo);const{__:Zo}=wp.i18n,yo={name:"prev",title:Zo("Prev Page","jet-form-builder"),isActive:["action_type"],description:Zo("Go to Prev Page button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M15.385 39.6867C15.8028 40.1045 16.4764 40.1045 16.8942 39.6867C17.312 39.2774 17.312 38.5953 16.9027 38.186L10.721 32.0043L16.8942 25.8225C17.312 25.4047 17.312 24.7311 16.8942 24.3133C16.4764 23.8955 15.8028 23.8955 15.385 24.3133L8.29947 31.3989C7.96694 31.7314 7.96694 32.2686 8.29947 32.6011L15.385 39.6867Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M25 54C22.7909 54 21 52.2091 21 50H6C3.79086 50 2 48.2091 2 46V18C2 15.7909 3.79086 14 6 14H21C21 11.7909 22.7909 10 25 10H58C60.2091 10 62 11.7909 62 14V50C62 52.2091 60.2091 54 58 54H25ZM25 12H58C59.1046 12 60 12.8954 60 14V50C60 51.1046 59.1046 52 58 52H25C23.8954 52 23 51.1046 23 50V14C23 12.8954 23.8954 12 25 12ZM21 48V16H6C4.89543 16 4 16.8954 4 18V46C4 47.1046 4.89543 48 6 48H21Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"prev"}},{registerBlockVariation:Eo}=wp.blocks;Eo("jet-forms/submit-field",yo);const{__:wo}=wp.i18n,vo={name:"switch-state",title:wo("Change Render State","jet-form-builder"),isActive:(e,C)=>e.action_type===C.action_type,description:wo("Change Render State button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M28 39V46C28 48.2091 26.2091 50 24 50H4C1.79086 50 0 48.2091 0 46V18C0 15.7909 1.79086 14 4 14H24C26.2091 14 28 15.7909 28 18V25H36V18C36 15.7909 37.7909 14 40 14H60C62.2091 14 64 15.7909 64 18V46C64 48.2091 62.2091 50 60 50H40C37.7909 50 36 48.2091 36 46V39H28ZM4 16H24C25.1046 16 26 16.8954 26 18V37H15.4142L20.0711 32.3431C20.4616 31.9526 20.4616 31.3195 20.0711 30.9289C19.6805 30.5384 19.0474 30.5384 18.6569 30.9289L12.2929 37.2929C11.9024 37.6834 11.9024 38.3166 12.2929 38.7071L18.6569 45.0711C19.0474 45.4616 19.6805 45.4616 20.0711 45.0711C20.4616 44.6805 20.4616 44.0474 20.0711 43.6569L15.4142 39H26V46C26 47.1046 25.1046 48 24 48H4C2.89543 48 2 47.1046 2 46V18C2 16.8954 2.89543 16 4 16ZM28 37H36V27H28V37ZM38 46C38 47.1046 38.8954 48 40 48H60C61.1046 48 62 47.1046 62 46V18C62 16.8954 61.1046 16 60 16H40C38.8954 16 38 16.8954 38 18V25H48.5858L43.9289 20.3431C43.5384 19.9526 43.5384 19.3195 43.9289 18.9289C44.3195 18.5384 44.9526 18.5384 45.3431 18.9289L51.7071 25.2929C52.0976 25.6834 52.0976 26.3166 51.7071 26.7071L45.3431 33.0711C44.9526 33.4616 44.3195 33.4616 43.9289 33.0711C43.5384 32.6805 43.5384 32.0474 43.9289 31.6569L48.5858 27H38V46Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"switch-state"}},{__:_o}=wp.i18n,{useSelect:ko}=wp.data,{FormTokenField:jo,PanelBody:xo}=wp.components,{InspectorControls:Fo}=wp.blockEditor,{useUniqKey:Bo}=JetFBHooks,{ActionButtonPlaceholder:Ao}=JetFBComponents,{column:Po}=JetFBActions,So=function(e){const{actionAttributes:C,setActionAttributes:t}=e,l=Bo(),r=ko((e=>Po(e("jet-forms/block-conditions").getSwitchableRenderStates(),"value")),[]);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ao,{...e}),(0,h.createElement)(Fo,null,(0,h.createElement)(xo,{title:_o("Change Render State","jet-form-builder")},(0,h.createElement)(jo,{key:l("switch_on"),label:_o("Switch state","jet-form-builder"),value:C.switch_on,suggestions:r,onChange:e=>t({switch_on:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0}))))},{registerBlockVariation:No}=wp.blocks,{addFilter:Io}=wp.hooks;No("jet-forms/submit-field",vo),Io("jet.fb.block.action-button.edit","jet-form-builder/switch-state-variation",(e=>C=>"switch-state"!==C.attributes?.action_type?(0,h.createElement)(e,{...C}):(0,h.createElement)(So,{...C})));const{createBlock:To,getBlockVariations:Oo}=wp.blocks,{name:Jo,icon:Ro=""}=co;co.attributes.isPreview={type:"boolean",default:!1};const qo={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ro}}),edit:function(e){const{attributes:C,setAttributes:t}=e;return C.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Xi):(0,h.createElement)(h.Fragment,null,(0,h.createElement)(to,null,(0,h.createElement)(Qi,{...e}),(0,h.createElement)(eo,{...e})),(0,h.createElement)(so,{attributes:C,setAttributes:t}))},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>To("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>To(Jo,{...e}),priority:0},{type:"block",blocks:["core/buttons"],transform:(e,C)=>To(Jo,{label:C[0]?.attributes?.text||""}),priority:0}]},__experimentalLabel:(e,{context:C})=>{if("list-view"===C)return(e=>{const C=(e=>{var C;const t=(null!==(C=Oo?.(Jo))&&void 0!==C?C:[]).find((({attributes:C={}})=>C.action_type===e.action_type));return t?.title||co.title})(e),t=e.label?.trim?.()||"";return t&&t!==C?`${C} (${t})`:C||t||co.title})(e)}},Do=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M19.8398 23.9287L16.5449 33H15.1982L18.9922 23.0469H19.8604L19.8398 23.9287ZM22.6016 33L19.2998 23.9287L19.2793 23.0469H20.1475L23.9551 33H22.6016ZM22.4307 29.3154V30.3955H16.8389V29.3154H22.4307ZM29.7588 31.5645V22.5H31.0303V33H29.8682L29.7588 31.5645ZM24.7822 29.3838V29.2402C24.7822 28.6751 24.8506 28.1624 24.9873 27.7021C25.1286 27.2373 25.3268 26.8385 25.582 26.5059C25.8418 26.1732 26.1494 25.918 26.5049 25.7402C26.8649 25.5579 27.266 25.4668 27.708 25.4668C28.1729 25.4668 28.5785 25.5488 28.9248 25.7129C29.2757 25.8724 29.5719 26.1071 29.8135 26.417C30.0596 26.7223 30.2533 27.0915 30.3945 27.5244C30.5358 27.9574 30.6338 28.4473 30.6885 28.9941V29.623C30.6383 30.1654 30.5404 30.653 30.3945 31.0859C30.2533 31.5189 30.0596 31.888 29.8135 32.1934C29.5719 32.4987 29.2757 32.7334 28.9248 32.8975C28.5739 33.057 28.1637 33.1367 27.6943 33.1367C27.2614 33.1367 26.8649 33.0433 26.5049 32.8564C26.1494 32.6696 25.8418 32.4076 25.582 32.0703C25.3268 31.7331 25.1286 31.3366 24.9873 30.8809C24.8506 30.4206 24.7822 29.9215 24.7822 29.3838ZM26.0537 29.2402V29.3838C26.0537 29.7529 26.0902 30.0993 26.1631 30.4229C26.2406 30.7464 26.359 31.0312 26.5186 31.2773C26.6781 31.5234 26.8809 31.7171 27.127 31.8584C27.373 31.9951 27.667 32.0635 28.0088 32.0635C28.4281 32.0635 28.7721 31.9746 29.041 31.7969C29.3145 31.6191 29.5332 31.3844 29.6973 31.0928C29.8613 30.8011 29.9889 30.4844 30.0801 30.1426V28.4951C30.0254 28.2445 29.9456 28.0029 29.8408 27.7705C29.7406 27.5335 29.6084 27.3239 29.4443 27.1416C29.2848 26.9548 29.0866 26.8066 28.8496 26.6973C28.6172 26.5879 28.3415 26.5332 28.0225 26.5332C27.6761 26.5332 27.3776 26.6061 27.127 26.752C26.8809 26.8932 26.6781 27.0892 26.5186 27.3398C26.359 27.5859 26.2406 27.873 26.1631 28.2012C26.0902 28.5247 26.0537 28.8711 26.0537 29.2402ZM37.6611 31.5645V22.5H38.9326V33H37.7705L37.6611 31.5645ZM32.6846 29.3838V29.2402C32.6846 28.6751 32.7529 28.1624 32.8896 27.7021C33.0309 27.2373 33.2292 26.8385 33.4844 26.5059C33.7441 26.1732 34.0518 25.918 34.4072 25.7402C34.7673 25.5579 35.1683 25.4668 35.6104 25.4668C36.0752 25.4668 36.4808 25.5488 36.8271 25.7129C37.1781 25.8724 37.4743 26.1071 37.7158 26.417C37.9619 26.7223 38.1556 27.0915 38.2969 27.5244C38.4382 27.9574 38.5361 28.4473 38.5908 28.9941V29.623C38.5407 30.1654 38.4427 30.653 38.2969 31.0859C38.1556 31.5189 37.9619 31.888 37.7158 32.1934C37.4743 32.4987 37.1781 32.7334 36.8271 32.8975C36.4762 33.057 36.0661 33.1367 35.5967 33.1367C35.1637 33.1367 34.7673 33.0433 34.4072 32.8564C34.0518 32.6696 33.7441 32.4076 33.4844 32.0703C33.2292 31.7331 33.0309 31.3366 32.8896 30.8809C32.7529 30.4206 32.6846 29.9215 32.6846 29.3838ZM33.9561 29.2402V29.3838C33.9561 29.7529 33.9925 30.0993 34.0654 30.4229C34.1429 30.7464 34.2614 31.0312 34.4209 31.2773C34.5804 31.5234 34.7832 31.7171 35.0293 31.8584C35.2754 31.9951 35.5693 32.0635 35.9111 32.0635C36.3304 32.0635 36.6745 31.9746 36.9434 31.7969C37.2168 31.6191 37.4355 31.3844 37.5996 31.0928C37.7637 30.8011 37.8913 30.4844 37.9824 30.1426V28.4951C37.9277 28.2445 37.848 28.0029 37.7432 27.7705C37.6429 27.5335 37.5107 27.3239 37.3467 27.1416C37.1872 26.9548 36.9889 26.8066 36.752 26.6973C36.5195 26.5879 36.2438 26.5332 35.9248 26.5332C35.5785 26.5332 35.2799 26.6061 35.0293 26.752C34.7832 26.8932 34.5804 27.0892 34.4209 27.3398C34.2614 27.5859 34.1429 27.873 34.0654 28.2012C33.9925 28.5247 33.9561 28.8711 33.9561 29.2402ZM42.2754 25.6035V33H41.0039V25.6035H42.2754ZM40.9082 23.6416C40.9082 23.4365 40.9697 23.2633 41.0928 23.1221C41.2204 22.9808 41.4072 22.9102 41.6533 22.9102C41.8949 22.9102 42.0794 22.9808 42.207 23.1221C42.3392 23.2633 42.4053 23.4365 42.4053 23.6416C42.4053 23.8376 42.3392 24.0062 42.207 24.1475C42.0794 24.2842 41.8949 24.3525 41.6533 24.3525C41.4072 24.3525 41.2204 24.2842 41.0928 24.1475C40.9697 24.0062 40.9082 23.8376 40.9082 23.6416ZM47.4023 25.6035V26.5742H43.4033V25.6035H47.4023ZM44.7568 23.8057H46.0215V31.168C46.0215 31.4186 46.0602 31.6077 46.1377 31.7354C46.2152 31.863 46.3154 31.9473 46.4385 31.9883C46.5615 32.0293 46.6937 32.0498 46.835 32.0498C46.9398 32.0498 47.0492 32.0407 47.1631 32.0225C47.2816 31.9997 47.3704 31.9814 47.4297 31.9678L47.4365 33C47.3363 33.0319 47.2041 33.0615 47.04 33.0889C46.8805 33.1208 46.6868 33.1367 46.459 33.1367C46.1491 33.1367 45.8643 33.0752 45.6045 32.9521C45.3447 32.8291 45.1374 32.624 44.9824 32.3369C44.832 32.0452 44.7568 31.6533 44.7568 31.1611V23.8057ZM50.2598 25.6035V33H48.9883V25.6035H50.2598ZM48.8926 23.6416C48.8926 23.4365 48.9541 23.2633 49.0771 23.1221C49.2048 22.9808 49.3916 22.9102 49.6377 22.9102C49.8792 22.9102 50.0638 22.9808 50.1914 23.1221C50.3236 23.2633 50.3896 23.4365 50.3896 23.6416C50.3896 23.8376 50.3236 24.0062 50.1914 24.1475C50.0638 24.2842 49.8792 24.3525 49.6377 24.3525C49.3916 24.3525 49.2048 24.2842 49.0771 24.1475C48.9541 24.0062 48.8926 23.8376 48.8926 23.6416ZM51.9551 29.3838V29.2266C51.9551 28.6934 52.0326 28.1989 52.1875 27.7432C52.3424 27.2829 52.5658 26.8841 52.8574 26.5469C53.1491 26.2051 53.5023 25.9408 53.917 25.7539C54.3317 25.5625 54.7965 25.4668 55.3115 25.4668C55.8311 25.4668 56.2982 25.5625 56.7129 25.7539C57.1322 25.9408 57.4876 26.2051 57.7793 26.5469C58.0755 26.8841 58.3011 27.2829 58.4561 27.7432C58.611 28.1989 58.6885 28.6934 58.6885 29.2266V29.3838C58.6885 29.917 58.611 30.4115 58.4561 30.8672C58.3011 31.3229 58.0755 31.7217 57.7793 32.0635C57.4876 32.4007 57.1344 32.665 56.7197 32.8564C56.3096 33.0433 55.8447 33.1367 55.3252 33.1367C54.8057 33.1367 54.3385 33.0433 53.9238 32.8564C53.5091 32.665 53.1536 32.4007 52.8574 32.0635C52.5658 31.7217 52.3424 31.3229 52.1875 30.8672C52.0326 30.4115 51.9551 29.917 51.9551 29.3838ZM53.2197 29.2266V29.3838C53.2197 29.7529 53.263 30.1016 53.3496 30.4297C53.4362 30.7533 53.5661 31.0404 53.7393 31.291C53.917 31.5417 54.138 31.7399 54.4023 31.8857C54.6667 32.027 54.9743 32.0977 55.3252 32.0977C55.6715 32.0977 55.9746 32.027 56.2344 31.8857C56.4987 31.7399 56.7174 31.5417 56.8906 31.291C57.0638 31.0404 57.1937 30.7533 57.2803 30.4297C57.3714 30.1016 57.417 29.7529 57.417 29.3838V29.2266C57.417 28.862 57.3714 28.5179 57.2803 28.1943C57.1937 27.8662 57.0615 27.5768 56.8838 27.3262C56.7106 27.071 56.4919 26.8704 56.2275 26.7246C55.9678 26.5788 55.6624 26.5059 55.3115 26.5059C54.9652 26.5059 54.6598 26.5788 54.3955 26.7246C54.1357 26.8704 53.917 27.071 53.7393 27.3262C53.5661 27.5768 53.4362 27.8662 53.3496 28.1943C53.263 28.5179 53.2197 28.862 53.2197 29.2266ZM61.5391 27.1826V33H60.2744V25.6035H61.4707L61.5391 27.1826ZM61.2383 29.0215L60.7119 29.001C60.7165 28.4951 60.7917 28.028 60.9375 27.5996C61.0833 27.1667 61.2884 26.7907 61.5527 26.4717C61.8171 26.1527 62.1315 25.9066 62.4961 25.7334C62.8652 25.5557 63.2731 25.4668 63.7197 25.4668C64.0843 25.4668 64.4124 25.5169 64.7041 25.6172C64.9958 25.7129 65.2441 25.8678 65.4492 26.082C65.6589 26.2962 65.8184 26.5742 65.9277 26.916C66.0371 27.2533 66.0918 27.6657 66.0918 28.1533V33H64.8203V28.1396C64.8203 27.7523 64.7633 27.4424 64.6494 27.21C64.5355 26.973 64.3691 26.8021 64.1504 26.6973C63.9316 26.5879 63.6628 26.5332 63.3438 26.5332C63.0293 26.5332 62.7422 26.5993 62.4824 26.7314C62.2272 26.8636 62.0062 27.0459 61.8193 27.2783C61.637 27.5107 61.4935 27.7773 61.3887 28.0781C61.2884 28.3743 61.2383 28.6888 61.2383 29.0215ZM72.374 31.7354V27.9277C72.374 27.6361 72.3148 27.3831 72.1963 27.1689C72.0824 26.9502 71.9092 26.7816 71.6768 26.6631C71.4443 26.5446 71.1572 26.4854 70.8154 26.4854C70.4964 26.4854 70.2161 26.54 69.9746 26.6494C69.7376 26.7588 69.5508 26.9023 69.4141 27.0801C69.2819 27.2578 69.2158 27.4492 69.2158 27.6543H67.9512C67.9512 27.39 68.0195 27.1279 68.1562 26.8682C68.293 26.6084 68.4889 26.3737 68.7441 26.1641C69.0039 25.9499 69.3138 25.7812 69.6738 25.6582C70.0384 25.5306 70.444 25.4668 70.8906 25.4668C71.4284 25.4668 71.9023 25.5579 72.3125 25.7402C72.7272 25.9225 73.0508 26.1982 73.2832 26.5674C73.5202 26.932 73.6387 27.39 73.6387 27.9414V31.3867C73.6387 31.6328 73.6592 31.8949 73.7002 32.1729C73.7458 32.4508 73.8118 32.6901 73.8984 32.8906V33H72.5791C72.5153 32.8542 72.4652 32.6605 72.4287 32.4189C72.3923 32.1729 72.374 31.945 72.374 31.7354ZM72.5928 28.5156L72.6064 29.4043H71.3281C70.9681 29.4043 70.6468 29.4339 70.3643 29.4932C70.0817 29.5479 69.8447 29.6322 69.6533 29.7461C69.4619 29.86 69.3161 30.0036 69.2158 30.1768C69.1156 30.3454 69.0654 30.5436 69.0654 30.7715C69.0654 31.0039 69.1178 31.2158 69.2227 31.4072C69.3275 31.5986 69.4847 31.7513 69.6943 31.8652C69.9085 31.9746 70.1706 32.0293 70.4805 32.0293C70.8678 32.0293 71.2096 31.9473 71.5059 31.7832C71.8021 31.6191 72.0368 31.4186 72.21 31.1816C72.3877 30.9447 72.4834 30.7145 72.4971 30.4912L73.0371 31.0996C73.0052 31.291 72.9186 31.5029 72.7773 31.7354C72.6361 31.9678 72.4469 32.1911 72.21 32.4053C71.9775 32.6149 71.6995 32.7904 71.376 32.9316C71.057 33.0684 70.6969 33.1367 70.2959 33.1367C69.7946 33.1367 69.3548 33.0387 68.9766 32.8428C68.6029 32.6468 68.3112 32.3848 68.1016 32.0566C67.8965 31.724 67.7939 31.3525 67.7939 30.9424C67.7939 30.5459 67.8714 30.1973 68.0264 29.8965C68.1813 29.5911 68.4046 29.3382 68.6963 29.1377C68.988 28.9326 69.3389 28.7777 69.749 28.6729C70.1592 28.568 70.6172 28.5156 71.123 28.5156H72.5928ZM77.002 22.5V33H75.7305V22.5H77.002ZM83.8789 25.6035V33H82.6074V25.6035H83.8789ZM82.5117 23.6416C82.5117 23.4365 82.5732 23.2633 82.6963 23.1221C82.8239 22.9808 83.0107 22.9102 83.2568 22.9102C83.4984 22.9102 83.6829 22.9808 83.8105 23.1221C83.9427 23.2633 84.0088 23.4365 84.0088 23.6416C84.0088 23.8376 83.9427 24.0062 83.8105 24.1475C83.6829 24.2842 83.4984 24.3525 83.2568 24.3525C83.0107 24.3525 82.8239 24.2842 82.6963 24.1475C82.5732 24.0062 82.5117 23.8376 82.5117 23.6416ZM87.1738 27.1826V33H85.9092V25.6035H87.1055L87.1738 27.1826ZM86.873 29.0215L86.3467 29.001C86.3512 28.4951 86.4264 28.028 86.5723 27.5996C86.7181 27.1667 86.9232 26.7907 87.1875 26.4717C87.4518 26.1527 87.7663 25.9066 88.1309 25.7334C88.5 25.5557 88.9079 25.4668 89.3545 25.4668C89.7191 25.4668 90.0472 25.5169 90.3389 25.6172C90.6305 25.7129 90.8789 25.8678 91.084 26.082C91.2936 26.2962 91.4531 26.5742 91.5625 26.916C91.6719 27.2533 91.7266 27.6657 91.7266 28.1533V33H90.4551V28.1396C90.4551 27.7523 90.3981 27.4424 90.2842 27.21C90.1702 26.973 90.0039 26.8021 89.7852 26.6973C89.5664 26.5879 89.2975 26.5332 88.9785 26.5332C88.6641 26.5332 88.377 26.5993 88.1172 26.7314C87.862 26.8636 87.641 27.0459 87.4541 27.2783C87.2718 27.5107 87.1283 27.7773 87.0234 28.0781C86.9232 28.3743 86.873 28.6888 86.873 29.0215ZM95.5342 33H94.2695V24.8242C94.2695 24.291 94.3652 23.8421 94.5566 23.4775C94.7526 23.1084 95.0329 22.8304 95.3975 22.6436C95.762 22.4521 96.195 22.3564 96.6963 22.3564C96.8421 22.3564 96.988 22.3656 97.1338 22.3838C97.2842 22.402 97.43 22.4294 97.5713 22.4658L97.5029 23.498C97.4072 23.4753 97.2979 23.4593 97.1748 23.4502C97.0563 23.4411 96.9378 23.4365 96.8193 23.4365C96.5505 23.4365 96.318 23.4912 96.1221 23.6006C95.9307 23.7054 95.7848 23.8604 95.6846 24.0654C95.5843 24.2705 95.5342 24.5234 95.5342 24.8242V33ZM97.1064 25.6035V26.5742H93.1006V25.6035H97.1064ZM98.1797 29.3838V29.2266C98.1797 28.6934 98.2572 28.1989 98.4121 27.7432C98.5671 27.2829 98.7904 26.8841 99.082 26.5469C99.3737 26.2051 99.7269 25.9408 100.142 25.7539C100.556 25.5625 101.021 25.4668 101.536 25.4668C102.056 25.4668 102.523 25.5625 102.938 25.7539C103.357 25.9408 103.712 26.2051 104.004 26.5469C104.3 26.8841 104.526 27.2829 104.681 27.7432C104.836 28.1989 104.913 28.6934 104.913 29.2266V29.3838C104.913 29.917 104.836 30.4115 104.681 30.8672C104.526 31.3229 104.3 31.7217 104.004 32.0635C103.712 32.4007 103.359 32.665 102.944 32.8564C102.534 33.0433 102.069 33.1367 101.55 33.1367C101.03 33.1367 100.563 33.0433 100.148 32.8564C99.7337 32.665 99.3783 32.4007 99.082 32.0635C98.7904 31.7217 98.5671 31.3229 98.4121 30.8672C98.2572 30.4115 98.1797 29.917 98.1797 29.3838ZM99.4443 29.2266V29.3838C99.4443 29.7529 99.4876 30.1016 99.5742 30.4297C99.6608 30.7533 99.7907 31.0404 99.9639 31.291C100.142 31.5417 100.363 31.7399 100.627 31.8857C100.891 32.027 101.199 32.0977 101.55 32.0977C101.896 32.0977 102.199 32.027 102.459 31.8857C102.723 31.7399 102.942 31.5417 103.115 31.291C103.288 31.0404 103.418 30.7533 103.505 30.4297C103.596 30.1016 103.642 29.7529 103.642 29.3838V29.2266C103.642 28.862 103.596 28.5179 103.505 28.1943C103.418 27.8662 103.286 27.5768 103.108 27.3262C102.935 27.071 102.716 26.8704 102.452 26.7246C102.192 26.5788 101.887 26.5059 101.536 26.5059C101.19 26.5059 100.884 26.5788 100.62 26.7246C100.36 26.8704 100.142 27.071 99.9639 27.3262C99.7907 27.5768 99.6608 27.8662 99.5742 28.1943C99.4876 28.5179 99.4443 28.862 99.4443 29.2266ZM107.764 26.7656V33H106.499V25.6035H107.729L107.764 26.7656ZM110.074 25.5625L110.067 26.7383C109.963 26.7155 109.862 26.7018 109.767 26.6973C109.675 26.6882 109.571 26.6836 109.452 26.6836C109.16 26.6836 108.903 26.7292 108.68 26.8203C108.456 26.9115 108.267 27.0391 108.112 27.2031C107.957 27.3672 107.834 27.5632 107.743 27.791C107.657 28.0143 107.6 28.2604 107.572 28.5293L107.217 28.7344C107.217 28.2878 107.26 27.8685 107.347 27.4766C107.438 27.0846 107.577 26.7383 107.764 26.4375C107.951 26.1322 108.188 25.8952 108.475 25.7266C108.766 25.5534 109.113 25.4668 109.514 25.4668C109.605 25.4668 109.71 25.4782 109.828 25.501C109.947 25.5192 110.029 25.5397 110.074 25.5625ZM112.501 27.0732V33H111.229V25.6035H112.433L112.501 27.0732ZM112.241 29.0215L111.653 29.001C111.658 28.4951 111.724 28.028 111.852 27.5996C111.979 27.1667 112.168 26.7907 112.419 26.4717C112.67 26.1527 112.982 25.9066 113.355 25.7334C113.729 25.5557 114.162 25.4668 114.654 25.4668C115.001 25.4668 115.32 25.5169 115.611 25.6172C115.903 25.7129 116.156 25.8656 116.37 26.0752C116.584 26.2848 116.751 26.5537 116.869 26.8818C116.988 27.21 117.047 27.6064 117.047 28.0713V33H115.782V28.1328C115.782 27.7454 115.716 27.4355 115.584 27.2031C115.456 26.9707 115.274 26.8021 115.037 26.6973C114.8 26.5879 114.522 26.5332 114.203 26.5332C113.829 26.5332 113.517 26.5993 113.267 26.7314C113.016 26.8636 112.815 27.0459 112.665 27.2783C112.515 27.5107 112.405 27.7773 112.337 28.0781C112.273 28.3743 112.241 28.6888 112.241 29.0215ZM117.033 28.3242L116.186 28.584C116.19 28.1784 116.256 27.7887 116.384 27.415C116.516 27.0413 116.705 26.7087 116.951 26.417C117.202 26.1253 117.509 25.8952 117.874 25.7266C118.239 25.5534 118.656 25.4668 119.125 25.4668C119.521 25.4668 119.872 25.5192 120.178 25.624C120.488 25.7288 120.747 25.8906 120.957 26.1094C121.171 26.3236 121.333 26.5993 121.442 26.9365C121.552 27.2738 121.606 27.6748 121.606 28.1396V33H120.335V28.126C120.335 27.7113 120.269 27.39 120.137 27.1621C120.009 26.9297 119.827 26.7679 119.59 26.6768C119.357 26.5811 119.079 26.5332 118.756 26.5332C118.478 26.5332 118.232 26.5811 118.018 26.6768C117.803 26.7725 117.623 26.9046 117.478 27.0732C117.332 27.2373 117.22 27.4264 117.143 27.6406C117.07 27.8548 117.033 28.0827 117.033 28.3242ZM127.882 31.7354V27.9277C127.882 27.6361 127.823 27.3831 127.704 27.1689C127.59 26.9502 127.417 26.7816 127.185 26.6631C126.952 26.5446 126.665 26.4854 126.323 26.4854C126.004 26.4854 125.724 26.54 125.482 26.6494C125.245 26.7588 125.059 26.9023 124.922 27.0801C124.79 27.2578 124.724 27.4492 124.724 27.6543H123.459C123.459 27.39 123.527 27.1279 123.664 26.8682C123.801 26.6084 123.997 26.3737 124.252 26.1641C124.512 25.9499 124.822 25.7812 125.182 25.6582C125.546 25.5306 125.952 25.4668 126.398 25.4668C126.936 25.4668 127.41 25.5579 127.82 25.7402C128.235 25.9225 128.559 26.1982 128.791 26.5674C129.028 26.932 129.146 27.39 129.146 27.9414V31.3867C129.146 31.6328 129.167 31.8949 129.208 32.1729C129.254 32.4508 129.32 32.6901 129.406 32.8906V33H128.087C128.023 32.8542 127.973 32.6605 127.937 32.4189C127.9 32.1729 127.882 31.945 127.882 31.7354ZM128.101 28.5156L128.114 29.4043H126.836C126.476 29.4043 126.155 29.4339 125.872 29.4932C125.59 29.5479 125.353 29.6322 125.161 29.7461C124.97 29.86 124.824 30.0036 124.724 30.1768C124.623 30.3454 124.573 30.5436 124.573 30.7715C124.573 31.0039 124.626 31.2158 124.73 31.4072C124.835 31.5986 124.993 31.7513 125.202 31.8652C125.416 31.9746 125.678 32.0293 125.988 32.0293C126.376 32.0293 126.717 31.9473 127.014 31.7832C127.31 31.6191 127.545 31.4186 127.718 31.1816C127.896 30.9447 127.991 30.7145 128.005 30.4912L128.545 31.0996C128.513 31.291 128.426 31.5029 128.285 31.7354C128.144 31.9678 127.955 32.1911 127.718 32.4053C127.485 32.6149 127.207 32.7904 126.884 32.9316C126.565 33.0684 126.205 33.1367 125.804 33.1367C125.302 33.1367 124.863 33.0387 124.484 32.8428C124.111 32.6468 123.819 32.3848 123.609 32.0566C123.404 31.724 123.302 31.3525 123.302 30.9424C123.302 30.5459 123.379 30.1973 123.534 29.8965C123.689 29.5911 123.912 29.3382 124.204 29.1377C124.496 28.9326 124.847 28.7777 125.257 28.6729C125.667 28.568 126.125 28.5156 126.631 28.5156H128.101ZM134.232 25.6035V26.5742H130.233V25.6035H134.232ZM131.587 23.8057H132.852V31.168C132.852 31.4186 132.89 31.6077 132.968 31.7354C133.045 31.863 133.146 31.9473 133.269 31.9883C133.392 32.0293 133.524 32.0498 133.665 32.0498C133.77 32.0498 133.879 32.0407 133.993 32.0225C134.112 31.9997 134.201 31.9814 134.26 31.9678L134.267 33C134.166 33.0319 134.034 33.0615 133.87 33.0889C133.711 33.1208 133.517 33.1367 133.289 33.1367C132.979 33.1367 132.694 33.0752 132.435 32.9521C132.175 32.8291 131.967 32.624 131.812 32.3369C131.662 32.0452 131.587 31.6533 131.587 31.1611V23.8057ZM137.09 25.6035V33H135.818V25.6035H137.09ZM135.723 23.6416C135.723 23.4365 135.784 23.2633 135.907 23.1221C136.035 22.9808 136.222 22.9102 136.468 22.9102C136.709 22.9102 136.894 22.9808 137.021 23.1221C137.154 23.2633 137.22 23.4365 137.22 23.6416C137.22 23.8376 137.154 24.0062 137.021 24.1475C136.894 24.2842 136.709 24.3525 136.468 24.3525C136.222 24.3525 136.035 24.2842 135.907 24.1475C135.784 24.0062 135.723 23.8376 135.723 23.6416ZM138.785 29.3838V29.2266C138.785 28.6934 138.863 28.1989 139.018 27.7432C139.173 27.2829 139.396 26.8841 139.688 26.5469C139.979 26.2051 140.332 25.9408 140.747 25.7539C141.162 25.5625 141.627 25.4668 142.142 25.4668C142.661 25.4668 143.128 25.5625 143.543 25.7539C143.962 25.9408 144.318 26.2051 144.609 26.5469C144.906 26.8841 145.131 27.2829 145.286 27.7432C145.441 28.1989 145.519 28.6934 145.519 29.2266V29.3838C145.519 29.917 145.441 30.4115 145.286 30.8672C145.131 31.3229 144.906 31.7217 144.609 32.0635C144.318 32.4007 143.965 32.665 143.55 32.8564C143.14 33.0433 142.675 33.1367 142.155 33.1367C141.636 33.1367 141.169 33.0433 140.754 32.8564C140.339 32.665 139.984 32.4007 139.688 32.0635C139.396 31.7217 139.173 31.3229 139.018 30.8672C138.863 30.4115 138.785 29.917 138.785 29.3838ZM140.05 29.2266V29.3838C140.05 29.7529 140.093 30.1016 140.18 30.4297C140.266 30.7533 140.396 31.0404 140.569 31.291C140.747 31.5417 140.968 31.7399 141.232 31.8857C141.497 32.027 141.804 32.0977 142.155 32.0977C142.502 32.0977 142.805 32.027 143.064 31.8857C143.329 31.7399 143.548 31.5417 143.721 31.291C143.894 31.0404 144.024 30.7533 144.11 30.4297C144.201 30.1016 144.247 29.7529 144.247 29.3838V29.2266C144.247 28.862 144.201 28.5179 144.11 28.1943C144.024 27.8662 143.892 27.5768 143.714 27.3262C143.541 27.071 143.322 26.8704 143.058 26.7246C142.798 26.5788 142.493 26.5059 142.142 26.5059C141.795 26.5059 141.49 26.5788 141.226 26.7246C140.966 26.8704 140.747 27.071 140.569 27.3262C140.396 27.5768 140.266 27.8662 140.18 28.1943C140.093 28.5179 140.05 28.862 140.05 29.2266ZM148.369 27.1826V33H147.104V25.6035H148.301L148.369 27.1826ZM148.068 29.0215L147.542 29.001C147.547 28.4951 147.622 28.028 147.768 27.5996C147.913 27.1667 148.118 26.7907 148.383 26.4717C148.647 26.1527 148.962 25.9066 149.326 25.7334C149.695 25.5557 150.103 25.4668 150.55 25.4668C150.914 25.4668 151.243 25.5169 151.534 25.6172C151.826 25.7129 152.074 25.8678 152.279 26.082C152.489 26.2962 152.648 26.5742 152.758 26.916C152.867 27.2533 152.922 27.6657 152.922 28.1533V33H151.65V28.1396C151.65 27.7523 151.593 27.4424 151.479 27.21C151.366 26.973 151.199 26.8021 150.98 26.6973C150.762 26.5879 150.493 26.5332 150.174 26.5332C149.859 26.5332 149.572 26.5993 149.312 26.7314C149.057 26.8636 148.836 27.0459 148.649 27.2783C148.467 27.5107 148.324 27.7773 148.219 28.0781C148.118 28.3743 148.068 28.6888 148.068 29.0215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"42",width:"266",height:"81",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M29.4814 59.3755H27.0122V58.3789H29.4814C29.9596 58.3789 30.3468 58.3027 30.6431 58.1504C30.9393 57.998 31.1551 57.7865 31.2905 57.5156C31.4302 57.2448 31.5 56.9359 31.5 56.5889C31.5 56.2715 31.4302 55.9731 31.2905 55.6938C31.1551 55.4146 30.9393 55.1903 30.6431 55.021C30.3468 54.8475 29.9596 54.7607 29.4814 54.7607H27.2979V63H26.0728V53.7578H29.4814C30.1797 53.7578 30.77 53.8784 31.2524 54.1196C31.7349 54.3608 32.1009 54.6951 32.3506 55.1226C32.6003 55.5457 32.7251 56.0303 32.7251 56.5762C32.7251 57.1686 32.6003 57.6743 32.3506 58.0933C32.1009 58.5122 31.7349 58.8317 31.2524 59.0518C30.77 59.2676 30.1797 59.3755 29.4814 59.3755ZM35.3721 56.1318V63H34.1914V56.1318H35.3721ZM34.1025 54.3101C34.1025 54.1196 34.1597 53.9588 34.2739 53.8276C34.3924 53.6965 34.5659 53.6309 34.7944 53.6309C35.0187 53.6309 35.1901 53.6965 35.3086 53.8276C35.4313 53.9588 35.4927 54.1196 35.4927 54.3101C35.4927 54.492 35.4313 54.6486 35.3086 54.7798C35.1901 54.9067 35.0187 54.9702 34.7944 54.9702C34.5659 54.9702 34.3924 54.9067 34.2739 54.7798C34.1597 54.6486 34.1025 54.492 34.1025 54.3101ZM40.0059 62.1621C40.2852 62.1621 40.5433 62.105 40.7803 61.9907C41.0173 61.8765 41.2119 61.7199 41.3643 61.521C41.5166 61.3179 41.6034 61.0872 41.6245 60.8291H42.7417C42.7205 61.2354 42.583 61.6141 42.3291 61.9653C42.0794 62.3123 41.7515 62.5938 41.3452 62.8096C40.939 63.0212 40.4925 63.127 40.0059 63.127C39.4896 63.127 39.0389 63.036 38.6538 62.854C38.2729 62.672 37.9556 62.4224 37.7017 62.105C37.452 61.7876 37.2637 61.4237 37.1367 61.0132C37.014 60.5985 36.9526 60.1605 36.9526 59.6992V59.4326C36.9526 58.9714 37.014 58.5355 37.1367 58.125C37.2637 57.7103 37.452 57.3442 37.7017 57.0269C37.9556 56.7095 38.2729 56.4598 38.6538 56.2778C39.0389 56.0959 39.4896 56.0049 40.0059 56.0049C40.5433 56.0049 41.013 56.1149 41.415 56.335C41.8171 56.5508 42.1323 56.847 42.3608 57.2236C42.5936 57.596 42.7205 58.0192 42.7417 58.4932H41.6245C41.6034 58.2096 41.5229 57.9536 41.3833 57.7251C41.2479 57.4966 41.0617 57.3146 40.8247 57.1792C40.592 57.0396 40.319 56.9697 40.0059 56.9697C39.6462 56.9697 39.3436 57.0417 39.0981 57.1855C38.8569 57.3252 38.6644 57.5156 38.5205 57.7568C38.3809 57.9938 38.2793 58.2583 38.2158 58.5503C38.1566 58.8381 38.127 59.1322 38.127 59.4326V59.6992C38.127 59.9997 38.1566 60.2959 38.2158 60.5879C38.2751 60.8799 38.3745 61.1444 38.5142 61.3813C38.658 61.6183 38.8506 61.8088 39.0918 61.9526C39.3372 62.0923 39.6419 62.1621 40.0059 62.1621ZM45.2427 53.25V63H44.062V53.25H45.2427ZM49.4385 56.1318L46.4424 59.3374L44.7666 61.0767L44.6714 59.8262L45.8711 58.3916L48.0039 56.1318H49.4385ZM48.3657 63L45.9155 59.7246L46.5249 58.6772L49.7495 63H48.3657ZM55.0435 57.4966V63H53.8628V56.1318H54.98L55.0435 57.4966ZM54.8022 59.3057L54.2563 59.2866C54.2606 58.8169 54.3219 58.3831 54.4404 57.9854C54.5589 57.5833 54.7345 57.2342 54.9673 56.938C55.2 56.6418 55.4899 56.4132 55.8369 56.2524C56.1839 56.0874 56.5859 56.0049 57.043 56.0049C57.3646 56.0049 57.6608 56.0514 57.9316 56.1445C58.2025 56.2334 58.4373 56.3752 58.6362 56.5698C58.8351 56.7645 58.9896 57.0142 59.0996 57.3188C59.2096 57.6235 59.2646 57.9917 59.2646 58.4233V63H58.0903V58.4805C58.0903 58.1208 58.029 57.833 57.9062 57.6172C57.7878 57.4014 57.6185 57.2448 57.3984 57.1475C57.1784 57.0459 56.9202 56.9951 56.624 56.9951C56.277 56.9951 55.9871 57.0565 55.7544 57.1792C55.5216 57.3019 55.3354 57.4712 55.1958 57.687C55.0562 57.9028 54.9546 58.1504 54.8911 58.4297C54.8319 58.7048 54.8022 58.9967 54.8022 59.3057ZM59.252 58.6582L58.4648 58.8994C58.4691 58.5228 58.5304 58.161 58.6489 57.814C58.7716 57.467 58.9473 57.158 59.1758 56.8872C59.4085 56.6164 59.6942 56.4027 60.0327 56.2461C60.3713 56.0853 60.7585 56.0049 61.1943 56.0049C61.5625 56.0049 61.8883 56.0535 62.1719 56.1509C62.4596 56.2482 62.7008 56.3984 62.8955 56.6016C63.0944 56.8005 63.2446 57.0565 63.3462 57.3696C63.4478 57.6828 63.4985 58.0552 63.4985 58.4868V63H62.3179V58.4741C62.3179 58.089 62.2565 57.7907 62.1338 57.5791C62.0153 57.3633 61.846 57.2131 61.626 57.1284C61.4102 57.0396 61.152 56.9951 60.8516 56.9951C60.5934 56.9951 60.3649 57.0396 60.166 57.1284C59.9671 57.2173 59.8 57.34 59.6646 57.4966C59.5291 57.6489 59.4255 57.8245 59.3535 58.0234C59.2858 58.2223 59.252 58.4339 59.252 58.6582ZM68.126 63.127C67.6478 63.127 67.214 63.0465 66.8247 62.8857C66.4396 62.7207 66.1074 62.4901 65.8281 62.1938C65.5531 61.8976 65.3415 61.5464 65.1934 61.1401C65.0452 60.7339 64.9712 60.2896 64.9712 59.8071V59.5405C64.9712 58.9819 65.0537 58.4847 65.2188 58.0488C65.3838 57.6087 65.6081 57.2363 65.8916 56.9316C66.1751 56.627 66.4967 56.3963 66.8564 56.2397C67.2161 56.0832 67.5885 56.0049 67.9736 56.0049C68.4645 56.0049 68.8877 56.0895 69.2432 56.2588C69.6029 56.4281 69.897 56.665 70.1255 56.9697C70.354 57.2702 70.5233 57.6257 70.6333 58.0361C70.7433 58.4424 70.7983 58.8867 70.7983 59.3691V59.896H65.6694V58.9375H69.624V58.8486C69.6071 58.5439 69.5436 58.2477 69.4336 57.96C69.3278 57.6722 69.1585 57.4352 68.9258 57.249C68.693 57.0628 68.3757 56.9697 67.9736 56.9697C67.707 56.9697 67.4616 57.0269 67.2373 57.1411C67.013 57.2511 66.8205 57.4162 66.6597 57.6362C66.4989 57.8563 66.374 58.125 66.2852 58.4424C66.1963 58.7598 66.1519 59.1258 66.1519 59.5405V59.8071C66.1519 60.133 66.1963 60.4398 66.2852 60.7275C66.3783 61.0111 66.5116 61.2607 66.6851 61.4766C66.8628 61.6924 67.0765 61.8617 67.3262 61.9844C67.5801 62.1071 67.8678 62.1685 68.1895 62.1685C68.6042 62.1685 68.9554 62.0838 69.2432 61.9146C69.5309 61.7453 69.7827 61.5189 69.9985 61.2354L70.7095 61.8003C70.5614 62.0246 70.373 62.2383 70.1445 62.4414C69.916 62.6445 69.6346 62.8096 69.3003 62.9365C68.9702 63.0635 68.5788 63.127 68.126 63.127ZM79.5962 61.4131V56.1318H80.7769V63H79.6533L79.5962 61.4131ZM79.8184 59.9658L80.3071 59.9531C80.3071 60.4102 80.2585 60.8333 80.1611 61.2227C80.068 61.6077 79.9157 61.9421 79.7041 62.2256C79.4925 62.5091 79.2153 62.7313 78.8726 62.8921C78.5298 63.0487 78.113 63.127 77.6221 63.127C77.2878 63.127 76.981 63.0783 76.7017 62.981C76.4266 62.8836 76.1896 62.7334 75.9907 62.5303C75.7918 62.3271 75.6374 62.0627 75.5273 61.7368C75.4215 61.411 75.3687 61.0195 75.3687 60.5625V56.1318H76.543V60.5752C76.543 60.8841 76.5768 61.1401 76.6445 61.3433C76.7165 61.5422 76.8117 61.7008 76.9302 61.8193C77.0529 61.9336 77.1883 62.014 77.3364 62.0605C77.4888 62.1071 77.6453 62.1304 77.8062 62.1304C78.3055 62.1304 78.7012 62.0352 78.9932 61.8447C79.2852 61.6501 79.4946 61.3898 79.6216 61.064C79.7528 60.7339 79.8184 60.3678 79.8184 59.9658ZM83.7412 57.4521V65.6406H82.5605V56.1318H83.6396L83.7412 57.4521ZM88.3687 59.5088V59.6421C88.3687 60.1414 88.3094 60.6048 88.1909 61.0322C88.0724 61.4554 87.8989 61.8236 87.6704 62.1367C87.4461 62.4499 87.1689 62.6932 86.8389 62.8667C86.5088 63.0402 86.13 63.127 85.7026 63.127C85.2668 63.127 84.8817 63.055 84.5474 62.9111C84.2131 62.7673 83.9295 62.5578 83.6968 62.2827C83.464 62.0076 83.2778 61.6776 83.1382 61.2925C83.0028 60.9074 82.9097 60.4736 82.8589 59.9912V59.2803C82.9097 58.7725 83.0049 58.3175 83.1445 57.9155C83.2842 57.5135 83.4683 57.1707 83.6968 56.8872C83.9295 56.5994 84.2109 56.3815 84.541 56.2334C84.8711 56.0811 85.252 56.0049 85.6836 56.0049C86.1152 56.0049 86.4982 56.0895 86.8325 56.2588C87.1668 56.4238 87.4482 56.6608 87.6768 56.9697C87.9053 57.2786 88.0767 57.6489 88.1909 58.0806C88.3094 58.508 88.3687 58.984 88.3687 59.5088ZM87.188 59.6421V59.5088C87.188 59.166 87.152 58.8444 87.0801 58.5439C87.0081 58.2393 86.896 57.9727 86.7437 57.7441C86.5955 57.5114 86.4051 57.3294 86.1724 57.1982C85.9396 57.0628 85.6624 56.9951 85.3408 56.9951C85.0446 56.9951 84.7865 57.0459 84.5664 57.1475C84.3506 57.249 84.1665 57.3866 84.0142 57.5601C83.8618 57.7293 83.737 57.924 83.6396 58.144C83.5465 58.3599 83.4767 58.5841 83.4302 58.8169V60.4609C83.5148 60.7572 83.6333 61.0365 83.7856 61.2988C83.938 61.557 84.1411 61.7664 84.395 61.9272C84.6489 62.0838 84.9684 62.1621 85.3535 62.1621C85.6709 62.1621 85.9438 62.0965 86.1724 61.9653C86.4051 61.8299 86.5955 61.6458 86.7437 61.4131C86.896 61.1803 87.0081 60.9137 87.0801 60.6133C87.152 60.3086 87.188 59.9849 87.188 59.6421ZM97.1411 61.8257V58.29C97.1411 58.0192 97.0861 57.7843 96.9761 57.5854C96.8703 57.3823 96.7095 57.2257 96.4937 57.1157C96.2778 57.0057 96.0112 56.9507 95.6938 56.9507C95.3976 56.9507 95.1374 57.0015 94.9131 57.103C94.693 57.2046 94.5195 57.3379 94.3926 57.5029C94.2699 57.668 94.2085 57.8457 94.2085 58.0361H93.0342C93.0342 57.7907 93.0977 57.5474 93.2246 57.3062C93.3516 57.0649 93.5335 56.847 93.7705 56.6523C94.0117 56.4535 94.2995 56.2969 94.6338 56.1826C94.9723 56.0641 95.349 56.0049 95.7637 56.0049C96.263 56.0049 96.7031 56.0895 97.084 56.2588C97.4691 56.4281 97.7695 56.6841 97.9854 57.0269C98.2054 57.3654 98.3154 57.7907 98.3154 58.3027V61.502C98.3154 61.7305 98.3345 61.9738 98.3726 62.2319C98.4149 62.4901 98.4762 62.7122 98.5566 62.8984V63H97.3315C97.2723 62.8646 97.2257 62.6847 97.1919 62.4604C97.158 62.2319 97.1411 62.0203 97.1411 61.8257ZM97.3442 58.8359L97.3569 59.6611H96.1699C95.8356 59.6611 95.5373 59.6886 95.2749 59.7437C95.0125 59.7944 94.7925 59.8727 94.6147 59.9785C94.437 60.0843 94.3016 60.2176 94.2085 60.3784C94.1154 60.535 94.0688 60.7191 94.0688 60.9307C94.0688 61.1465 94.1175 61.3433 94.2148 61.521C94.3122 61.6987 94.4582 61.8405 94.6528 61.9463C94.8517 62.0479 95.0951 62.0986 95.3828 62.0986C95.7425 62.0986 96.0599 62.0225 96.335 61.8701C96.61 61.7178 96.828 61.5316 96.9888 61.3115C97.1538 61.0915 97.2427 60.8778 97.2554 60.6704L97.7568 61.2354C97.7272 61.4131 97.6468 61.6099 97.5156 61.8257C97.3844 62.0415 97.2088 62.2489 96.9888 62.4478C96.7729 62.6424 96.5148 62.8053 96.2144 62.9365C95.9181 63.0635 95.5838 63.127 95.2114 63.127C94.7459 63.127 94.3376 63.036 93.9863 62.854C93.6393 62.672 93.3685 62.4287 93.1738 62.124C92.9834 61.8151 92.8882 61.4702 92.8882 61.0894C92.8882 60.7212 92.9601 60.3975 93.104 60.1182C93.2479 59.8346 93.4552 59.5998 93.7261 59.4136C93.9969 59.2231 94.3228 59.0793 94.7036 58.9819C95.0845 58.8846 95.5098 58.8359 95.9795 58.8359H97.3442ZM103.038 56.1318V57.0332H99.3247V56.1318H103.038ZM100.582 54.4624H101.756V61.2988C101.756 61.5316 101.792 61.7072 101.864 61.8257C101.936 61.9442 102.029 62.0225 102.143 62.0605C102.257 62.0986 102.38 62.1177 102.511 62.1177C102.609 62.1177 102.71 62.1092 102.816 62.0923C102.926 62.0711 103.008 62.0542 103.063 62.0415L103.07 63C102.977 63.0296 102.854 63.0571 102.702 63.0825C102.554 63.1121 102.374 63.127 102.162 63.127C101.874 63.127 101.61 63.0698 101.369 62.9556C101.127 62.8413 100.935 62.6509 100.791 62.3843C100.651 62.1134 100.582 61.7495 100.582 61.2925V54.4624ZM110.516 56.1318V57.0332H106.802V56.1318H110.516ZM108.059 54.4624H109.233V61.2988C109.233 61.5316 109.269 61.7072 109.341 61.8257C109.413 61.9442 109.506 62.0225 109.621 62.0605C109.735 62.0986 109.858 62.1177 109.989 62.1177C110.086 62.1177 110.188 62.1092 110.293 62.0923C110.403 62.0711 110.486 62.0542 110.541 62.0415L110.547 63C110.454 63.0296 110.332 63.0571 110.179 63.0825C110.031 63.1121 109.851 63.127 109.64 63.127C109.352 63.127 109.087 63.0698 108.846 62.9556C108.605 62.8413 108.412 62.6509 108.269 62.3843C108.129 62.1134 108.059 61.7495 108.059 61.2925V54.4624ZM113.067 53.25V63H111.893V53.25H113.067ZM112.788 59.3057L112.299 59.2866C112.304 58.8169 112.373 58.3831 112.509 57.9854C112.644 57.5833 112.835 57.2342 113.08 56.938C113.326 56.6418 113.618 56.4132 113.956 56.2524C114.299 56.0874 114.678 56.0049 115.092 56.0049C115.431 56.0049 115.736 56.0514 116.006 56.1445C116.277 56.2334 116.508 56.3773 116.698 56.5762C116.893 56.7751 117.041 57.0332 117.143 57.3506C117.244 57.6637 117.295 58.0467 117.295 58.4995V63H116.114V58.4868C116.114 58.1271 116.061 57.8394 115.956 57.6235C115.85 57.4035 115.695 57.2448 115.492 57.1475C115.289 57.0459 115.039 56.9951 114.743 56.9951C114.451 56.9951 114.185 57.0565 113.943 57.1792C113.706 57.3019 113.501 57.4712 113.328 57.687C113.158 57.9028 113.025 58.1504 112.928 58.4297C112.835 58.7048 112.788 58.9967 112.788 59.3057ZM121.903 63.127C121.425 63.127 120.991 63.0465 120.602 62.8857C120.217 62.7207 119.885 62.4901 119.605 62.1938C119.33 61.8976 119.119 61.5464 118.971 61.1401C118.823 60.7339 118.749 60.2896 118.749 59.8071V59.5405C118.749 58.9819 118.831 58.4847 118.996 58.0488C119.161 57.6087 119.385 57.2363 119.669 56.9316C119.952 56.627 120.274 56.3963 120.634 56.2397C120.993 56.0832 121.366 56.0049 121.751 56.0049C122.242 56.0049 122.665 56.0895 123.021 56.2588C123.38 56.4281 123.674 56.665 123.903 56.9697C124.131 57.2702 124.301 57.6257 124.411 58.0361C124.521 58.4424 124.576 58.8867 124.576 59.3691V59.896H119.447V58.9375H123.401V58.8486C123.384 58.5439 123.321 58.2477 123.211 57.96C123.105 57.6722 122.936 57.4352 122.703 57.249C122.47 57.0628 122.153 56.9697 121.751 56.9697C121.484 56.9697 121.239 57.0269 121.015 57.1411C120.79 57.2511 120.598 57.4162 120.437 57.6362C120.276 57.8563 120.151 58.125 120.062 58.4424C119.974 58.7598 119.929 59.1258 119.929 59.5405V59.8071C119.929 60.133 119.974 60.4398 120.062 60.7275C120.156 61.0111 120.289 61.2607 120.462 61.4766C120.64 61.6924 120.854 61.8617 121.104 61.9844C121.357 62.1071 121.645 62.1685 121.967 62.1685C122.382 62.1685 122.733 62.0838 123.021 61.9146C123.308 61.7453 123.56 61.5189 123.776 61.2354L124.487 61.8003C124.339 62.0246 124.15 62.2383 123.922 62.4414C123.693 62.6445 123.412 62.8096 123.078 62.9365C122.748 63.0635 122.356 63.127 121.903 63.127ZM133.221 61.8257V58.29C133.221 58.0192 133.166 57.7843 133.056 57.5854C132.95 57.3823 132.79 57.2257 132.574 57.1157C132.358 57.0057 132.091 56.9507 131.774 56.9507C131.478 56.9507 131.217 57.0015 130.993 57.103C130.773 57.2046 130.6 57.3379 130.473 57.5029C130.35 57.668 130.289 57.8457 130.289 58.0361H129.114C129.114 57.7907 129.178 57.5474 129.305 57.3062C129.432 57.0649 129.614 56.847 129.851 56.6523C130.092 56.4535 130.38 56.2969 130.714 56.1826C131.052 56.0641 131.429 56.0049 131.844 56.0049C132.343 56.0049 132.783 56.0895 133.164 56.2588C133.549 56.4281 133.85 56.6841 134.065 57.0269C134.285 57.3654 134.396 57.7907 134.396 58.3027V61.502C134.396 61.7305 134.415 61.9738 134.453 62.2319C134.495 62.4901 134.556 62.7122 134.637 62.8984V63H133.412C133.352 62.8646 133.306 62.6847 133.272 62.4604C133.238 62.2319 133.221 62.0203 133.221 61.8257ZM133.424 58.8359L133.437 59.6611H132.25C131.916 59.6611 131.617 59.6886 131.355 59.7437C131.093 59.7944 130.873 59.8727 130.695 59.9785C130.517 60.0843 130.382 60.2176 130.289 60.3784C130.195 60.535 130.149 60.7191 130.149 60.9307C130.149 61.1465 130.198 61.3433 130.295 61.521C130.392 61.6987 130.538 61.8405 130.733 61.9463C130.932 62.0479 131.175 62.0986 131.463 62.0986C131.823 62.0986 132.14 62.0225 132.415 61.8701C132.69 61.7178 132.908 61.5316 133.069 61.3115C133.234 61.0915 133.323 60.8778 133.335 60.6704L133.837 61.2354C133.807 61.4131 133.727 61.6099 133.596 61.8257C133.465 62.0415 133.289 62.2489 133.069 62.4478C132.853 62.6424 132.595 62.8053 132.294 62.9365C131.998 63.0635 131.664 63.127 131.292 63.127C130.826 63.127 130.418 63.036 130.066 62.854C129.719 62.672 129.449 62.4287 129.254 62.124C129.063 61.8151 128.968 61.4702 128.968 61.0894C128.968 60.7212 129.04 60.3975 129.184 60.1182C129.328 59.8346 129.535 59.5998 129.806 59.4136C130.077 59.2231 130.403 59.0793 130.784 58.9819C131.165 58.8846 131.59 58.8359 132.06 58.8359H133.424ZM137.519 56.1318V63H136.338V56.1318H137.519ZM136.249 54.3101C136.249 54.1196 136.306 53.9588 136.42 53.8276C136.539 53.6965 136.712 53.6309 136.941 53.6309C137.165 53.6309 137.337 53.6965 137.455 53.8276C137.578 53.9588 137.639 54.1196 137.639 54.3101C137.639 54.492 137.578 54.6486 137.455 54.7798C137.337 54.9067 137.165 54.9702 136.941 54.9702C136.712 54.9702 136.539 54.9067 136.42 54.7798C136.306 54.6486 136.249 54.492 136.249 54.3101ZM140.578 57.2109V63H139.404V56.1318H140.546L140.578 57.2109ZM142.724 56.0938L142.717 57.1855C142.62 57.1644 142.527 57.1517 142.438 57.1475C142.353 57.139 142.256 57.1348 142.146 57.1348C141.875 57.1348 141.636 57.1771 141.429 57.2617C141.221 57.3464 141.046 57.4648 140.902 57.6172C140.758 57.7695 140.644 57.9515 140.559 58.1631C140.479 58.3704 140.426 58.599 140.4 58.8486L140.07 59.0391C140.07 58.6243 140.111 58.235 140.191 57.8711C140.276 57.5072 140.405 57.1855 140.578 56.9062C140.752 56.6227 140.972 56.4027 141.238 56.2461C141.509 56.0853 141.831 56.0049 142.203 56.0049C142.288 56.0049 142.385 56.0155 142.495 56.0366C142.605 56.0535 142.681 56.0726 142.724 56.0938ZM144.983 57.4521V65.6406H143.803V56.1318H144.882L144.983 57.4521ZM149.611 59.5088V59.6421C149.611 60.1414 149.552 60.6048 149.433 61.0322C149.315 61.4554 149.141 61.8236 148.913 62.1367C148.688 62.4499 148.411 62.6932 148.081 62.8667C147.751 63.0402 147.372 63.127 146.945 63.127C146.509 63.127 146.124 63.055 145.79 62.9111C145.455 62.7673 145.172 62.5578 144.939 62.2827C144.706 62.0076 144.52 61.6776 144.38 61.2925C144.245 60.9074 144.152 60.4736 144.101 59.9912V59.2803C144.152 58.7725 144.247 58.3175 144.387 57.9155C144.526 57.5135 144.71 57.1707 144.939 56.8872C145.172 56.5994 145.453 56.3815 145.783 56.2334C146.113 56.0811 146.494 56.0049 146.926 56.0049C147.357 56.0049 147.74 56.0895 148.075 56.2588C148.409 56.4238 148.69 56.6608 148.919 56.9697C149.147 57.2786 149.319 57.6489 149.433 58.0806C149.552 58.508 149.611 58.984 149.611 59.5088ZM148.43 59.6421V59.5088C148.43 59.166 148.394 58.8444 148.322 58.5439C148.25 58.2393 148.138 57.9727 147.986 57.7441C147.838 57.5114 147.647 57.3294 147.415 57.1982C147.182 57.0628 146.905 56.9951 146.583 56.9951C146.287 56.9951 146.029 57.0459 145.809 57.1475C145.593 57.249 145.409 57.3866 145.256 57.5601C145.104 57.7293 144.979 57.924 144.882 58.144C144.789 58.3599 144.719 58.5841 144.672 58.8169V60.4609C144.757 60.7572 144.875 61.0365 145.028 61.2988C145.18 61.557 145.383 61.7664 145.637 61.9272C145.891 62.0838 146.211 62.1621 146.596 62.1621C146.913 62.1621 147.186 62.0965 147.415 61.9653C147.647 61.8299 147.838 61.6458 147.986 61.4131C148.138 61.1803 148.25 60.9137 148.322 60.6133C148.394 60.3086 148.43 59.9849 148.43 59.6421ZM150.798 59.6421V59.4961C150.798 59.001 150.87 58.5418 151.014 58.1187C151.158 57.6912 151.365 57.321 151.636 57.0078C151.907 56.6904 152.235 56.445 152.62 56.2715C153.005 56.0938 153.436 56.0049 153.915 56.0049C154.397 56.0049 154.831 56.0938 155.216 56.2715C155.605 56.445 155.935 56.6904 156.206 57.0078C156.481 57.321 156.691 57.6912 156.834 58.1187C156.978 58.5418 157.05 59.001 157.05 59.4961V59.6421C157.05 60.1372 156.978 60.5964 156.834 61.0195C156.691 61.4427 156.481 61.813 156.206 62.1304C155.935 62.4435 155.607 62.689 155.222 62.8667C154.841 63.0402 154.41 63.127 153.927 63.127C153.445 63.127 153.011 63.0402 152.626 62.8667C152.241 62.689 151.911 62.4435 151.636 62.1304C151.365 61.813 151.158 61.4427 151.014 61.0195C150.87 60.5964 150.798 60.1372 150.798 59.6421ZM151.972 59.4961V59.6421C151.972 59.9849 152.012 60.3086 152.093 60.6133C152.173 60.9137 152.294 61.1803 152.455 61.4131C152.62 61.6458 152.825 61.8299 153.07 61.9653C153.316 62.0965 153.601 62.1621 153.927 62.1621C154.249 62.1621 154.53 62.0965 154.771 61.9653C155.017 61.8299 155.22 61.6458 155.381 61.4131C155.542 61.1803 155.662 60.9137 155.743 60.6133C155.827 60.3086 155.87 59.9849 155.87 59.6421V59.4961C155.87 59.1576 155.827 58.8381 155.743 58.5376C155.662 58.2329 155.54 57.9642 155.375 57.7314C155.214 57.4945 155.011 57.3083 154.765 57.1729C154.524 57.0374 154.24 56.9697 153.915 56.9697C153.593 56.9697 153.309 57.0374 153.064 57.1729C152.823 57.3083 152.62 57.4945 152.455 57.7314C152.294 57.9642 152.173 58.2329 152.093 58.5376C152.012 58.8381 151.972 59.1576 151.972 59.4961ZM159.697 57.2109V63H158.523V56.1318H159.666L159.697 57.2109ZM161.843 56.0938L161.836 57.1855C161.739 57.1644 161.646 57.1517 161.557 57.1475C161.472 57.139 161.375 57.1348 161.265 57.1348C160.994 57.1348 160.755 57.1771 160.548 57.2617C160.34 57.3464 160.165 57.4648 160.021 57.6172C159.877 57.7695 159.763 57.9515 159.678 58.1631C159.598 58.3704 159.545 58.599 159.52 58.8486L159.189 59.0391C159.189 58.6243 159.23 58.235 159.31 57.8711C159.395 57.5072 159.524 57.1855 159.697 56.9062C159.871 56.6227 160.091 56.4027 160.357 56.2461C160.628 56.0853 160.95 56.0049 161.322 56.0049C161.407 56.0049 161.504 56.0155 161.614 56.0366C161.724 56.0535 161.8 56.0726 161.843 56.0938ZM166.121 56.1318V57.0332H162.408V56.1318H166.121ZM163.665 54.4624H164.839V61.2988C164.839 61.5316 164.875 61.7072 164.947 61.8257C165.019 61.9442 165.112 62.0225 165.226 62.0605C165.34 62.0986 165.463 62.1177 165.594 62.1177C165.692 62.1177 165.793 62.1092 165.899 62.0923C166.009 62.0711 166.091 62.0542 166.146 62.0415L166.153 63C166.06 63.0296 165.937 63.0571 165.785 63.0825C165.637 63.1121 165.457 63.127 165.245 63.127C164.957 63.127 164.693 63.0698 164.452 62.9556C164.21 62.8413 164.018 62.6509 163.874 62.3843C163.734 62.1134 163.665 61.7495 163.665 61.2925V54.4624ZM168.667 53.7578V64.7139H167.721V53.7578H168.667Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M279 113.496L272.495 120",stroke:"#64748B",strokeLinecap:"round"}),(0,h.createElement)("path",{d:"M279 116.748L275.747 120",stroke:"#64748B",strokeLinecap:"round"}),(0,h.createElement)("rect",{x:"16",y:"42",width:"266",height:"81",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),{ToolBarFields:zo,AdvancedFields:Uo,FieldWrapper:Go,FieldSettingsWrapper:Wo,ValidationToggleGroup:Ko,ValidationBlockMessage:$o,BlockLabel:Yo,BlockDescription:Xo,BlockName:Qo,BlockAdvancedValue:es,EditAdvancedRulesButton:Cs,AdvancedInspectorControl:ts,AttributeHelp:ls}=JetFBComponents,{useIsAdvancedValidation:rs,useUniqueNameOnDuplicate:ns}=JetFBHooks,{__:as}=wp.i18n,{InspectorControls:is,useBlockProps:os}=wp.blockEditor,{TextareaControl:ss,TextControl:cs,PanelBody:ds,__experimentalNumberControl:ms}=wp.components;let{NumberControl:us}=wp.components;void 0===us&&(us=ms);const ps=JSON.parse('{"apiVersion":3,"name":"jet-forms/textarea-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","textarea"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Textarea Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"minlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"maxlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:fs}=wp.i18n,{createBlock:Vs}=wp.blocks,{name:Hs,icon:hs=""}=ps,bs={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:hs}}),description:fs("Give the user enough space to type in a bigger piece of text. Add a text area where the data can be placed in several lines.","jet-form-builder"),edit:function(e){const{attributes:C,setAttributes:t,isSelected:l,editProps:{uniqKey:r}}=e,n=os(),a=rs();return ns(),C.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Do):[(0,h.createElement)(zo,{key:r("ToolBarFields"),...e}),l&&(0,h.createElement)(is,{key:r("InspectorControls")},(0,h.createElement)(ds,{title:as("General","jet-form-builder")},(0,h.createElement)(Yo,null),(0,h.createElement)(Qo,null),(0,h.createElement)(Xo,null)),(0,h.createElement)(ds,{title:as("Value","jet-form-builder")},(0,h.createElement)(es,null)),(0,h.createElement)(Wo,{...e},(0,h.createElement)(ts,{value:C.minlength,label:as("Min length (symbols)","jet-form-builder"),onChangePreset:e=>t({minlength:e})},(({instanceId:e})=>(0,h.createElement)(cs,{id:e,className:"jet-fb m-unset",value:C.minlength,onChange:e=>t({minlength:e})}))),(0,h.createElement)(ls,{name:"minlength"}),(0,h.createElement)(ts,{value:C.maxlength,label:as("Max length (symbols)","jet-form-builder"),onChangePreset:e=>t({maxlength:e})},(({instanceId:e})=>(0,h.createElement)(cs,{id:e,className:"jet-fb m-unset",value:C.maxlength,onChange:e=>t({maxlength:e})}))),(0,h.createElement)(ls,{name:"maxlength"})),(0,h.createElement)(ds,{title:as("Validation","jet-form-builder")},(0,h.createElement)(Ko,null),a&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Cs,null),Boolean(C.minlength)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)($o,{name:"char_min"})),Boolean(C.maxlength)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)($o,{name:"char_max"})),(0,h.createElement)($o,{name:"empty"}))),(0,h.createElement)(Uo,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{key:r("viewBlock"),...n},(0,h.createElement)(Go,{key:r("FieldWrapper"),...e},(0,h.createElement)(ss,{className:"jet-form-builder__field-preview",key:r("place_holder_block"),placeholder:C.placeholder,onChange:()=>{}})))]},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Vs("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/wysiwyg-field"],transform:e=>Vs(Hs,{...e}),priority:0}]}},Ms=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"20.5",width:"22",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.3887 29.4028V30.3677H28.0283V29.4028H34.3887ZM42.9199 29.4028V30.3677H36.5596V29.4028H42.9199Z",fill:"white"}),(0,h.createElement)("path",{d:"M49.8442 33.8779C49.8442 33.679 49.9056 33.5119 50.0283 33.3765C50.1553 33.2368 50.3372 33.167 50.5742 33.167C50.8112 33.167 50.991 33.2368 51.1138 33.3765C51.2407 33.5119 51.3042 33.679 51.3042 33.8779C51.3042 34.0726 51.2407 34.2376 51.1138 34.373C50.991 34.5085 50.8112 34.5762 50.5742 34.5762C50.3372 34.5762 50.1553 34.5085 50.0283 34.373C49.9056 34.2376 49.8442 34.0726 49.8442 33.8779ZM49.8506 28.2729C49.8506 28.0741 49.9119 27.9069 50.0347 27.7715C50.1616 27.6318 50.3436 27.562 50.5806 27.562C50.8175 27.562 50.9974 27.6318 51.1201 27.7715C51.2471 27.9069 51.3105 28.0741 51.3105 28.2729C51.3105 28.4676 51.2471 28.6326 51.1201 28.7681C50.9974 28.9035 50.8175 28.9712 50.5806 28.9712C50.3436 28.9712 50.1616 28.9035 50.0347 28.7681C49.9119 28.6326 49.8506 28.4676 49.8506 28.2729ZM62.7617 29.4028V30.3677H56.4014V29.4028H62.7617ZM71.293 29.4028V30.3677H64.9326V29.4028H71.293ZM76.5044 33.8779C76.5044 33.679 76.5658 33.5119 76.6885 33.3765C76.8154 33.2368 76.9974 33.167 77.2344 33.167C77.4714 33.167 77.6512 33.2368 77.7739 33.3765C77.9009 33.5119 77.9644 33.679 77.9644 33.8779C77.9644 34.0726 77.9009 34.2376 77.7739 34.373C77.6512 34.5085 77.4714 34.5762 77.2344 34.5762C76.9974 34.5762 76.8154 34.5085 76.6885 34.373C76.5658 34.2376 76.5044 34.0726 76.5044 33.8779ZM76.5107 28.2729C76.5107 28.0741 76.5721 27.9069 76.6948 27.7715C76.8218 27.6318 77.0037 27.562 77.2407 27.562C77.4777 27.562 77.6576 27.6318 77.7803 27.7715C77.9072 27.9069 77.9707 28.0741 77.9707 28.2729C77.9707 28.4676 77.9072 28.6326 77.7803 28.7681C77.6576 28.9035 77.4777 28.9712 77.2407 28.9712C77.0037 28.9712 76.8218 28.9035 76.6948 28.7681C76.5721 28.6326 76.5107 28.4676 76.5107 28.2729ZM89.4219 29.4028V30.3677H83.0615V29.4028H89.4219ZM97.9531 29.4028V30.3677H91.5928V29.4028H97.9531Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M260.991 21C256.023 21 252 25.032 252 30C252 34.968 256.023 39 260.991 39C265.968 39 270 34.968 270 30C270 25.032 265.968 21 260.991 21ZM261 37.2C257.022 37.2 253.8 33.978 253.8 30C253.8 26.022 257.022 22.8 261 22.8C264.978 22.8 268.2 26.022 268.2 30C268.2 33.978 264.978 37.2 261 37.2ZM260.802 25.5H260.748C260.388 25.5 260.1 25.788 260.1 26.148V30.396C260.1 30.711 260.262 31.008 260.541 31.17L264.276 33.411C264.582 33.591 264.978 33.501 265.158 33.195C265.347 32.889 265.248 32.484 264.933 32.304L261.45 30.234V26.148C261.45 25.788 261.162 25.5 260.802 25.5V25.5Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("path",{d:"M15 49C15 46.7909 16.7909 45 19 45H279C281.209 45 283 46.7909 283 49V144H15V49Z",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"64.9048",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"104.905",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M42.3906 64.5664V66.166C42.3906 66.86 42.3166 67.4588 42.1685 67.9624C42.0203 68.4618 41.8066 68.8722 41.5273 69.1938C41.2523 69.5112 40.9243 69.7461 40.5435 69.8984C40.1626 70.0508 39.7394 70.127 39.2739 70.127C38.9015 70.127 38.5545 70.0804 38.2329 69.9873C37.9113 69.89 37.6214 69.7397 37.3633 69.5366C37.1094 69.3335 36.8893 69.0775 36.7031 68.7686C36.5212 68.4554 36.3815 68.083 36.2842 67.6514C36.1868 67.2197 36.1382 66.7246 36.1382 66.166V64.5664C36.1382 63.8724 36.2122 63.2778 36.3604 62.7827C36.5127 62.2834 36.7264 61.875 37.0015 61.5576C37.2808 61.2402 37.6108 61.0075 37.9917 60.8594C38.3726 60.707 38.7957 60.6309 39.2612 60.6309C39.6336 60.6309 39.9785 60.6795 40.2959 60.7769C40.6175 60.87 40.9074 61.016 41.1655 61.2148C41.4237 61.4137 41.6437 61.6698 41.8257 61.9829C42.0076 62.2918 42.1473 62.6621 42.2446 63.0938C42.342 63.5212 42.3906 64.012 42.3906 64.5664ZM40.5562 66.4072V64.3188C40.5562 63.9845 40.5371 63.6925 40.499 63.4429C40.4652 63.1932 40.4123 62.9816 40.3403 62.8081C40.2684 62.6304 40.1795 62.4865 40.0737 62.3765C39.9679 62.2664 39.8473 62.186 39.7119 62.1353C39.5765 62.0845 39.4263 62.0591 39.2612 62.0591C39.0539 62.0591 38.8698 62.0993 38.709 62.1797C38.5524 62.2601 38.4191 62.3892 38.3091 62.5669C38.1991 62.7404 38.1144 62.9731 38.0552 63.2651C38.0002 63.5529 37.9727 63.9041 37.9727 64.3188V66.4072C37.9727 66.7415 37.9896 67.0356 38.0234 67.2896C38.0615 67.5435 38.1165 67.7614 38.1885 67.9434C38.2646 68.1211 38.3535 68.2671 38.4551 68.3813C38.5609 68.4914 38.6815 68.5718 38.8169 68.6226C38.9565 68.6733 39.1089 68.6987 39.2739 68.6987C39.4771 68.6987 39.6569 68.6585 39.8135 68.5781C39.9743 68.4935 40.1097 68.3623 40.2197 68.1846C40.334 68.0026 40.4186 67.7656 40.4736 67.4736C40.5286 67.1816 40.5562 66.8262 40.5562 66.4072ZM49.957 68.5718V70H43.6348V68.7812L46.6245 65.5757C46.925 65.2414 47.1619 64.9473 47.3354 64.6934C47.509 64.4352 47.6338 64.2046 47.71 64.0015C47.7904 63.7941 47.8306 63.5973 47.8306 63.4111C47.8306 63.1318 47.784 62.8927 47.6909 62.6938C47.5978 62.4907 47.4603 62.3341 47.2783 62.2241C47.1006 62.1141 46.8805 62.0591 46.6182 62.0591C46.3389 62.0591 46.0977 62.1268 45.8945 62.2622C45.6956 62.3976 45.5433 62.5859 45.4375 62.8271C45.3359 63.0684 45.2852 63.3413 45.2852 63.646H43.4507C43.4507 63.0959 43.5819 62.5923 43.8442 62.1353C44.1066 61.674 44.4769 61.3079 44.9551 61.0371C45.4333 60.762 46.0003 60.6245 46.6562 60.6245C47.3037 60.6245 47.8496 60.7303 48.2939 60.9419C48.7425 61.1493 49.0811 61.4497 49.3096 61.8433C49.5423 62.2326 49.6587 62.6981 49.6587 63.2397C49.6587 63.5444 49.61 63.8428 49.5127 64.1348C49.4154 64.4225 49.2757 64.7103 49.0938 64.998C48.916 65.2816 48.7002 65.5693 48.4463 65.8613C48.1924 66.1533 47.911 66.4559 47.6021 66.769L45.9961 68.5718H49.957Z",fill:"white"}),(0,h.createElement)("path",{d:"M82.4922 68.5718V70H76.1699V68.7812L79.1597 65.5757C79.4601 65.2414 79.6971 64.9473 79.8706 64.6934C80.0441 64.4352 80.1689 64.2046 80.2451 64.0015C80.3255 63.7941 80.3657 63.5973 80.3657 63.4111C80.3657 63.1318 80.3192 62.8927 80.2261 62.6938C80.133 62.4907 79.9954 62.3341 79.8135 62.2241C79.6357 62.1141 79.4157 62.0591 79.1533 62.0591C78.874 62.0591 78.6328 62.1268 78.4297 62.2622C78.2308 62.3976 78.0785 62.5859 77.9727 62.8271C77.8711 63.0684 77.8203 63.3413 77.8203 63.646H75.9858C75.9858 63.0959 76.117 62.5923 76.3794 62.1353C76.6418 61.674 77.012 61.3079 77.4902 61.0371C77.9684 60.762 78.5355 60.6245 79.1914 60.6245C79.8389 60.6245 80.3848 60.7303 80.8291 60.9419C81.2777 61.1493 81.6162 61.4497 81.8447 61.8433C82.0775 62.2326 82.1938 62.6981 82.1938 63.2397C82.1938 63.5444 82.1452 63.8428 82.0479 64.1348C81.9505 64.4225 81.8109 64.7103 81.6289 64.998C81.4512 65.2816 81.2354 65.5693 80.9814 65.8613C80.7275 66.1533 80.4461 66.4559 80.1372 66.769L78.5312 68.5718H82.4922ZM89.9126 60.7578V61.7417L86.3389 70H84.4092L87.9829 62.186H83.3809V60.7578H89.9126Z",fill:"white"}),(0,h.createElement)("path",{d:"M117.541 66.7056H115.186V65.2202H117.541C117.905 65.2202 118.201 65.161 118.43 65.0425C118.658 64.9198 118.825 64.7505 118.931 64.5347C119.037 64.3188 119.09 64.0755 119.09 63.8047C119.09 63.5296 119.037 63.2736 118.931 63.0366C118.825 62.7996 118.658 62.6092 118.43 62.4653C118.201 62.3215 117.905 62.2495 117.541 62.2495H115.846V70H113.942V60.7578H117.541C118.265 60.7578 118.885 60.889 119.401 61.1514C119.921 61.4095 120.319 61.7671 120.594 62.2241C120.869 62.6812 121.007 63.2038 121.007 63.792C121.007 64.3887 120.869 64.9049 120.594 65.3408C120.319 65.7767 119.921 66.1131 119.401 66.3501C118.885 66.5871 118.265 66.7056 117.541 66.7056ZM123.19 60.7578H124.803L127.177 67.5435L129.551 60.7578H131.163L127.824 70H126.529L123.19 60.7578ZM122.321 60.7578H123.927L124.219 67.3721V70H122.321V60.7578ZM130.427 60.7578H132.039V70H130.135V67.3721L130.427 60.7578Z",fill:"white"}),(0,h.createElement)("path",{d:"M42.2573 87.6426V89.0518C42.2573 89.8092 42.1896 90.4482 42.0542 90.9688C41.9188 91.4893 41.7241 91.9082 41.4702 92.2256C41.2163 92.543 40.9095 92.7736 40.5498 92.9175C40.1943 93.0571 39.7923 93.127 39.3438 93.127C38.9883 93.127 38.6603 93.0825 38.3599 92.9937C38.0594 92.9048 37.7886 92.763 37.5474 92.5684C37.3104 92.3695 37.1073 92.1113 36.938 91.7939C36.7687 91.4766 36.6396 91.0915 36.5508 90.6387C36.4619 90.1859 36.4175 89.6569 36.4175 89.0518V87.6426C36.4175 86.8851 36.4852 86.2503 36.6206 85.7383C36.7603 85.2262 36.957 84.8158 37.2109 84.5068C37.4648 84.1937 37.7695 83.9694 38.125 83.834C38.4847 83.6986 38.8867 83.6309 39.3311 83.6309C39.6908 83.6309 40.0208 83.6753 40.3213 83.7642C40.626 83.8488 40.8968 83.9863 41.1338 84.1768C41.3708 84.363 41.5718 84.6126 41.7368 84.9258C41.9061 85.2347 42.0352 85.6134 42.124 86.062C42.2129 86.5106 42.2573 87.0374 42.2573 87.6426ZM41.0767 89.2422V87.4458C41.0767 87.0311 41.0513 86.6672 41.0005 86.354C40.9539 86.0366 40.8841 85.7658 40.791 85.5415C40.6979 85.3172 40.5794 85.1353 40.4355 84.9956C40.2959 84.856 40.133 84.7544 39.9468 84.6909C39.7648 84.6232 39.5596 84.5894 39.3311 84.5894C39.0518 84.5894 38.8042 84.6423 38.5884 84.748C38.3726 84.8496 38.1906 85.0125 38.0425 85.2368C37.8986 85.4611 37.7886 85.7552 37.7124 86.1191C37.6362 86.4831 37.5981 86.9253 37.5981 87.4458V89.2422C37.5981 89.6569 37.6214 90.0229 37.668 90.3403C37.7188 90.6577 37.7928 90.9328 37.8901 91.1655C37.9875 91.394 38.106 91.5824 38.2456 91.7305C38.3853 91.8786 38.5461 91.9886 38.728 92.0605C38.9142 92.1283 39.1195 92.1621 39.3438 92.1621C39.6315 92.1621 39.8833 92.1071 40.0991 91.9971C40.3149 91.887 40.4948 91.7157 40.6387 91.4829C40.7868 91.2459 40.8968 90.9434 40.9688 90.5752C41.0407 90.2028 41.0767 89.7585 41.0767 89.2422ZM45.4819 87.8013H46.3198C46.7303 87.8013 47.0688 87.7336 47.3354 87.5981C47.6063 87.4585 47.8073 87.2702 47.9385 87.0332C48.0739 86.792 48.1416 86.5212 48.1416 86.2207C48.1416 85.8652 48.0824 85.5669 47.9639 85.3257C47.8454 85.0845 47.6676 84.9025 47.4307 84.7798C47.1937 84.6571 46.8932 84.5957 46.5293 84.5957C46.1992 84.5957 45.9072 84.6613 45.6533 84.7925C45.4036 84.9194 45.2069 85.1014 45.063 85.3384C44.9233 85.5754 44.8535 85.8547 44.8535 86.1763H43.6792C43.6792 85.7065 43.7977 85.2791 44.0347 84.894C44.2716 84.509 44.6038 84.2021 45.0312 83.9736C45.4629 83.7451 45.9622 83.6309 46.5293 83.6309C47.0879 83.6309 47.5767 83.7303 47.9956 83.9292C48.4146 84.1239 48.7404 84.4159 48.9731 84.8052C49.2059 85.1903 49.3223 85.6706 49.3223 86.2461C49.3223 86.4788 49.2673 86.7285 49.1572 86.9951C49.0514 87.2575 48.8843 87.5029 48.6558 87.7314C48.4315 87.96 48.1395 88.1483 47.7798 88.2964C47.4201 88.4403 46.9884 88.5122 46.4849 88.5122H45.4819V87.8013ZM45.4819 88.7661V88.0615H46.4849C47.0731 88.0615 47.5597 88.1313 47.9448 88.271C48.3299 88.4106 48.6325 88.5968 48.8525 88.8296C49.0768 89.0623 49.2334 89.3184 49.3223 89.5977C49.4154 89.8727 49.4619 90.1478 49.4619 90.4229C49.4619 90.8545 49.3879 91.2375 49.2397 91.5718C49.0959 91.9061 48.8906 92.1896 48.624 92.4224C48.3617 92.6551 48.0527 92.8307 47.6973 92.9492C47.3418 93.0677 46.9546 93.127 46.5356 93.127C46.1336 93.127 45.7549 93.0698 45.3994 92.9556C45.0482 92.8413 44.7371 92.6763 44.4663 92.4604C44.1955 92.2404 43.9839 91.9717 43.8315 91.6543C43.6792 91.3327 43.603 90.9666 43.603 90.5562H44.7773C44.7773 90.8778 44.8472 91.1592 44.9868 91.4004C45.1307 91.6416 45.3338 91.8299 45.5962 91.9653C45.8628 92.0965 46.1759 92.1621 46.5356 92.1621C46.8953 92.1621 47.2043 92.1007 47.4624 91.978C47.7248 91.8511 47.9258 91.6606 48.0654 91.4067C48.2093 91.1528 48.2812 90.8333 48.2812 90.4482C48.2812 90.0632 48.2008 89.7479 48.04 89.5024C47.8792 89.2528 47.6507 89.0687 47.3545 88.9502C47.0625 88.8275 46.7176 88.7661 46.3198 88.7661H45.4819Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M82.5112 92.0352V93H76.4619V92.1558L79.4897 88.7852C79.8621 88.3704 80.1499 88.0192 80.353 87.7314C80.5604 87.4395 80.7043 87.1792 80.7847 86.9507C80.8693 86.7179 80.9116 86.481 80.9116 86.2397C80.9116 85.9351 80.8481 85.66 80.7212 85.4146C80.5985 85.1649 80.4165 84.966 80.1753 84.8179C79.9341 84.6698 79.6421 84.5957 79.2993 84.5957C78.8888 84.5957 78.5461 84.6761 78.271 84.8369C78.0002 84.9935 77.797 85.2135 77.6616 85.4971C77.5262 85.7806 77.4585 86.1064 77.4585 86.4746H76.2842C76.2842 85.9541 76.3984 85.478 76.627 85.0464C76.8555 84.6147 77.194 84.272 77.6426 84.0181C78.0911 83.7599 78.6434 83.6309 79.2993 83.6309C79.8833 83.6309 80.3826 83.7345 80.7974 83.9419C81.2121 84.145 81.5295 84.4328 81.7495 84.8052C81.9738 85.1733 82.0859 85.605 82.0859 86.1001C82.0859 86.3709 82.0394 86.646 81.9463 86.9253C81.8574 87.2004 81.7326 87.4754 81.5718 87.7505C81.4152 88.0256 81.2311 88.2964 81.0195 88.563C80.8122 88.8296 80.59 89.092 80.353 89.3501L77.8774 92.0352H82.5112ZM89.5952 90.499C89.5952 91.0618 89.464 91.54 89.2017 91.9336C88.9435 92.3229 88.5923 92.6191 88.1479 92.8223C87.7078 93.0254 87.2106 93.127 86.6562 93.127C86.1019 93.127 85.6025 93.0254 85.1582 92.8223C84.7139 92.6191 84.3626 92.3229 84.1045 91.9336C83.8464 91.54 83.7173 91.0618 83.7173 90.499C83.7173 90.1309 83.7871 89.7944 83.9268 89.4897C84.0706 89.1808 84.2716 88.9121 84.5298 88.6836C84.7922 88.4551 85.1011 88.2795 85.4565 88.1567C85.8162 88.0298 86.2119 87.9663 86.6436 87.9663C87.2106 87.9663 87.7163 88.0763 88.1606 88.2964C88.605 88.5122 88.9541 88.8105 89.208 89.1914C89.4661 89.5723 89.5952 90.0081 89.5952 90.499ZM88.4146 90.4736C88.4146 90.1309 88.3405 89.8283 88.1924 89.5659C88.0443 89.2993 87.8369 89.092 87.5703 88.9438C87.3037 88.7957 86.9948 88.7217 86.6436 88.7217C86.2839 88.7217 85.9728 88.7957 85.7104 88.9438C85.4523 89.092 85.2513 89.2993 85.1074 89.5659C84.9635 89.8283 84.8916 90.1309 84.8916 90.4736C84.8916 90.8291 84.9614 91.1338 85.1011 91.3877C85.245 91.6374 85.4481 91.8299 85.7104 91.9653C85.9771 92.0965 86.2923 92.1621 86.6562 92.1621C87.0202 92.1621 87.3333 92.0965 87.5957 91.9653C87.8581 91.8299 88.0591 91.6374 88.1987 91.3877C88.3426 91.1338 88.4146 90.8291 88.4146 90.4736ZM89.3794 86.1636C89.3794 86.6121 89.2609 87.0163 89.0239 87.376C88.7869 87.7357 88.4632 88.0192 88.0527 88.2266C87.6423 88.4339 87.1768 88.5376 86.6562 88.5376C86.1273 88.5376 85.6554 88.4339 85.2407 88.2266C84.8302 88.0192 84.5086 87.7357 84.2759 87.376C84.0431 87.0163 83.9268 86.6121 83.9268 86.1636C83.9268 85.6261 84.0431 85.1691 84.2759 84.7925C84.5129 84.4159 84.8366 84.1281 85.2471 83.9292C85.6576 83.7303 86.1252 83.6309 86.6499 83.6309C87.1789 83.6309 87.6486 83.7303 88.0591 83.9292C88.4696 84.1281 88.7912 84.4159 89.0239 84.7925C89.2609 85.1691 89.3794 85.6261 89.3794 86.1636ZM88.2051 86.1826C88.2051 85.8737 88.1395 85.6007 88.0083 85.3638C87.8771 85.1268 87.6951 84.9406 87.4624 84.8052C87.2297 84.6655 86.9588 84.5957 86.6499 84.5957C86.341 84.5957 86.0701 84.6613 85.8374 84.7925C85.6089 84.9194 85.429 85.1014 85.2979 85.3384C85.1709 85.5754 85.1074 85.8568 85.1074 86.1826C85.1074 86.5 85.1709 86.7772 85.2979 87.0142C85.429 87.2511 85.611 87.4352 85.8438 87.5664C86.0765 87.6976 86.3473 87.7632 86.6562 87.7632C86.9652 87.7632 87.2339 87.6976 87.4624 87.5664C87.6951 87.4352 87.8771 87.2511 88.0083 87.0142C88.1395 86.7772 88.2051 86.5 88.2051 86.1826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M117.579 84.5767L114.52 93H113.269L116.792 83.7578H117.598L117.579 84.5767ZM120.144 93L117.078 84.5767L117.059 83.7578H117.865L121.4 93H120.144ZM119.985 89.5786V90.5815H114.792V89.5786H119.985ZM123.025 83.7578H124.212L127.24 91.2925L130.262 83.7578H131.455L127.697 93H126.771L123.025 83.7578ZM122.638 83.7578H123.686L123.857 89.3945V93H122.638V83.7578ZM130.789 83.7578H131.836V93H130.617V89.3945L130.789 83.7578Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M42.2573 107.643V109.052C42.2573 109.809 42.1896 110.448 42.0542 110.969C41.9188 111.489 41.7241 111.908 41.4702 112.226C41.2163 112.543 40.9095 112.774 40.5498 112.917C40.1943 113.057 39.7923 113.127 39.3438 113.127C38.9883 113.127 38.6603 113.083 38.3599 112.994C38.0594 112.905 37.7886 112.763 37.5474 112.568C37.3104 112.369 37.1073 112.111 36.938 111.794C36.7687 111.477 36.6396 111.091 36.5508 110.639C36.4619 110.186 36.4175 109.657 36.4175 109.052V107.643C36.4175 106.885 36.4852 106.25 36.6206 105.738C36.7603 105.226 36.957 104.816 37.2109 104.507C37.4648 104.194 37.7695 103.969 38.125 103.834C38.4847 103.699 38.8867 103.631 39.3311 103.631C39.6908 103.631 40.0208 103.675 40.3213 103.764C40.626 103.849 40.8968 103.986 41.1338 104.177C41.3708 104.363 41.5718 104.613 41.7368 104.926C41.9061 105.235 42.0352 105.613 42.124 106.062C42.2129 106.511 42.2573 107.037 42.2573 107.643ZM41.0767 109.242V107.446C41.0767 107.031 41.0513 106.667 41.0005 106.354C40.9539 106.037 40.8841 105.766 40.791 105.542C40.6979 105.317 40.5794 105.135 40.4355 104.996C40.2959 104.856 40.133 104.754 39.9468 104.691C39.7648 104.623 39.5596 104.589 39.3311 104.589C39.0518 104.589 38.8042 104.642 38.5884 104.748C38.3726 104.85 38.1906 105.013 38.0425 105.237C37.8986 105.461 37.7886 105.755 37.7124 106.119C37.6362 106.483 37.5981 106.925 37.5981 107.446V109.242C37.5981 109.657 37.6214 110.023 37.668 110.34C37.7188 110.658 37.7928 110.933 37.8901 111.166C37.9875 111.394 38.106 111.582 38.2456 111.73C38.3853 111.879 38.5461 111.989 38.728 112.061C38.9142 112.128 39.1195 112.162 39.3438 112.162C39.6315 112.162 39.8833 112.107 40.0991 111.997C40.3149 111.887 40.4948 111.716 40.6387 111.483C40.7868 111.246 40.8968 110.943 40.9688 110.575C41.0407 110.203 41.0767 109.758 41.0767 109.242ZM50.0142 109.89V110.854H43.3364V110.163L47.4751 103.758H48.4336L47.4053 105.611L44.6694 109.89H50.0142ZM48.7256 103.758V113H47.5513V103.758H48.7256Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M82.5112 112.035V113H76.4619V112.156L79.4897 108.785C79.8621 108.37 80.1499 108.019 80.353 107.731C80.5604 107.439 80.7043 107.179 80.7847 106.951C80.8693 106.718 80.9116 106.481 80.9116 106.24C80.9116 105.935 80.8481 105.66 80.7212 105.415C80.5985 105.165 80.4165 104.966 80.1753 104.818C79.9341 104.67 79.6421 104.596 79.2993 104.596C78.8888 104.596 78.5461 104.676 78.271 104.837C78.0002 104.993 77.797 105.214 77.6616 105.497C77.5262 105.781 77.4585 106.106 77.4585 106.475H76.2842C76.2842 105.954 76.3984 105.478 76.627 105.046C76.8555 104.615 77.194 104.272 77.6426 104.018C78.0911 103.76 78.6434 103.631 79.2993 103.631C79.8833 103.631 80.3826 103.735 80.7974 103.942C81.2121 104.145 81.5295 104.433 81.7495 104.805C81.9738 105.173 82.0859 105.605 82.0859 106.1C82.0859 106.371 82.0394 106.646 81.9463 106.925C81.8574 107.2 81.7326 107.475 81.5718 107.75C81.4152 108.026 81.2311 108.296 81.0195 108.563C80.8122 108.83 80.59 109.092 80.353 109.35L77.8774 112.035H82.5112ZM84.936 112.016H85.0566C85.7337 112.016 86.2839 111.921 86.707 111.73C87.1302 111.54 87.4561 111.284 87.6846 110.962C87.9131 110.641 88.0697 110.279 88.1543 109.877C88.2389 109.471 88.2812 109.054 88.2812 108.626V107.211C88.2812 106.792 88.2326 106.42 88.1353 106.094C88.0422 105.768 87.911 105.495 87.7417 105.275C87.5767 105.055 87.3883 104.888 87.1768 104.773C86.9652 104.659 86.7409 104.602 86.5039 104.602C86.2331 104.602 85.9897 104.657 85.7739 104.767C85.5623 104.873 85.3825 105.023 85.2344 105.218C85.0905 105.412 84.9805 105.641 84.9043 105.903C84.8281 106.166 84.79 106.451 84.79 106.76C84.79 107.035 84.8239 107.302 84.8916 107.56C84.9593 107.818 85.063 108.051 85.2026 108.258C85.3423 108.466 85.5158 108.631 85.7231 108.753C85.9347 108.872 86.1823 108.931 86.4658 108.931C86.7282 108.931 86.9736 108.88 87.2021 108.779C87.4349 108.673 87.6401 108.531 87.8179 108.354C87.9998 108.172 88.1437 107.966 88.2495 107.738C88.3595 107.509 88.423 107.27 88.4399 107.021H88.9985C88.9985 107.372 88.9287 107.719 88.7891 108.062C88.6536 108.4 88.4632 108.709 88.2178 108.988C87.9723 109.268 87.6846 109.492 87.3545 109.661C87.0244 109.826 86.6647 109.909 86.2754 109.909C85.8184 109.909 85.4227 109.82 85.0884 109.642C84.7541 109.464 84.479 109.227 84.2632 108.931C84.0516 108.635 83.8929 108.305 83.7871 107.941C83.6855 107.573 83.6348 107.2 83.6348 106.824C83.6348 106.384 83.6961 105.971 83.8188 105.586C83.9416 105.201 84.1235 104.862 84.3647 104.57C84.606 104.274 84.9043 104.043 85.2598 103.878C85.6195 103.713 86.0342 103.631 86.5039 103.631C87.0329 103.631 87.4836 103.737 87.856 103.948C88.2284 104.16 88.5309 104.443 88.7637 104.799C89.0007 105.154 89.1742 105.554 89.2842 105.999C89.3942 106.443 89.4492 106.9 89.4492 107.37V107.795C89.4492 108.273 89.4175 108.76 89.354 109.255C89.2948 109.746 89.1784 110.215 89.0049 110.664C88.8356 111.113 88.5881 111.515 88.2622 111.87C87.9364 112.221 87.5111 112.501 86.9863 112.708C86.4658 112.911 85.8226 113.013 85.0566 113.013H84.936V112.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M42.2573 127.643V129.052C42.2573 129.809 42.1896 130.448 42.0542 130.969C41.9188 131.489 41.7241 131.908 41.4702 132.226C41.2163 132.543 40.9095 132.774 40.5498 132.917C40.1943 133.057 39.7923 133.127 39.3438 133.127C38.9883 133.127 38.6603 133.083 38.3599 132.994C38.0594 132.905 37.7886 132.763 37.5474 132.568C37.3104 132.369 37.1073 132.111 36.938 131.794C36.7687 131.477 36.6396 131.091 36.5508 130.639C36.4619 130.186 36.4175 129.657 36.4175 129.052V127.643C36.4175 126.885 36.4852 126.25 36.6206 125.738C36.7603 125.226 36.957 124.816 37.2109 124.507C37.4648 124.194 37.7695 123.969 38.125 123.834C38.4847 123.699 38.8867 123.631 39.3311 123.631C39.6908 123.631 40.0208 123.675 40.3213 123.764C40.626 123.849 40.8968 123.986 41.1338 124.177C41.3708 124.363 41.5718 124.613 41.7368 124.926C41.9061 125.235 42.0352 125.613 42.124 126.062C42.2129 126.511 42.2573 127.037 42.2573 127.643ZM41.0767 129.242V127.446C41.0767 127.031 41.0513 126.667 41.0005 126.354C40.9539 126.037 40.8841 125.766 40.791 125.542C40.6979 125.317 40.5794 125.135 40.4355 124.996C40.2959 124.856 40.133 124.754 39.9468 124.691C39.7648 124.623 39.5596 124.589 39.3311 124.589C39.0518 124.589 38.8042 124.642 38.5884 124.748C38.3726 124.85 38.1906 125.013 38.0425 125.237C37.8986 125.461 37.7886 125.755 37.7124 126.119C37.6362 126.483 37.5981 126.925 37.5981 127.446V129.242C37.5981 129.657 37.6214 130.023 37.668 130.34C37.7188 130.658 37.7928 130.933 37.8901 131.166C37.9875 131.394 38.106 131.582 38.2456 131.73C38.3853 131.879 38.5461 131.989 38.728 132.061C38.9142 132.128 39.1195 132.162 39.3438 132.162C39.6315 132.162 39.8833 132.107 40.0991 131.997C40.3149 131.887 40.4948 131.716 40.6387 131.483C40.7868 131.246 40.8968 130.943 40.9688 130.575C41.0407 130.203 41.0767 129.758 41.0767 129.242ZM45.2534 128.601L44.314 128.36L44.7773 123.758H49.519V124.843H45.7739L45.4946 127.357C45.6639 127.26 45.8776 127.169 46.1357 127.084C46.3981 126.999 46.6986 126.957 47.0371 126.957C47.4645 126.957 47.8475 127.031 48.186 127.179C48.5246 127.323 48.8123 127.53 49.0493 127.801C49.2905 128.072 49.4746 128.398 49.6016 128.779C49.7285 129.16 49.792 129.585 49.792 130.055C49.792 130.499 49.7306 130.907 49.6079 131.28C49.4894 131.652 49.3096 131.978 49.0684 132.257C48.8271 132.532 48.5225 132.746 48.1543 132.898C47.7904 133.051 47.3608 133.127 46.8657 133.127C46.4933 133.127 46.14 133.076 45.8057 132.975C45.4756 132.869 45.1794 132.71 44.917 132.499C44.6589 132.283 44.4473 132.016 44.2822 131.699C44.1214 131.377 44.0199 131 43.9775 130.569H45.0947C45.1455 130.916 45.2471 131.208 45.3994 131.445C45.5518 131.682 45.7507 131.862 45.9961 131.984C46.2458 132.103 46.5356 132.162 46.8657 132.162C47.145 132.162 47.3926 132.113 47.6084 132.016C47.8242 131.919 48.0062 131.779 48.1543 131.597C48.3024 131.415 48.4146 131.195 48.4907 130.937C48.5711 130.679 48.6113 130.389 48.6113 130.067C48.6113 129.775 48.5711 129.505 48.4907 129.255C48.4103 129.005 48.2897 128.787 48.1289 128.601C47.9723 128.415 47.7798 128.271 47.5513 128.169C47.3228 128.064 47.0604 128.011 46.7642 128.011C46.3706 128.011 46.0723 128.064 45.8691 128.169C45.6702 128.275 45.465 128.419 45.2534 128.601Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M78.1694 127.801H79.0073C79.4178 127.801 79.7563 127.734 80.0229 127.598C80.2938 127.458 80.4948 127.27 80.626 127.033C80.7614 126.792 80.8291 126.521 80.8291 126.221C80.8291 125.865 80.7699 125.567 80.6514 125.326C80.5329 125.084 80.3551 124.903 80.1182 124.78C79.8812 124.657 79.5807 124.596 79.2168 124.596C78.8867 124.596 78.5947 124.661 78.3408 124.792C78.0911 124.919 77.8944 125.101 77.7505 125.338C77.6108 125.575 77.541 125.855 77.541 126.176H76.3667C76.3667 125.707 76.4852 125.279 76.7222 124.894C76.9591 124.509 77.2913 124.202 77.7188 123.974C78.1504 123.745 78.6497 123.631 79.2168 123.631C79.7754 123.631 80.2642 123.73 80.6831 123.929C81.1021 124.124 81.4279 124.416 81.6606 124.805C81.8934 125.19 82.0098 125.671 82.0098 126.246C82.0098 126.479 81.9548 126.729 81.8447 126.995C81.7389 127.257 81.5718 127.503 81.3433 127.731C81.119 127.96 80.827 128.148 80.4673 128.296C80.1076 128.44 79.6759 128.512 79.1724 128.512H78.1694V127.801ZM78.1694 128.766V128.062H79.1724C79.7606 128.062 80.2472 128.131 80.6323 128.271C81.0174 128.411 81.32 128.597 81.54 128.83C81.7643 129.062 81.9209 129.318 82.0098 129.598C82.1029 129.873 82.1494 130.148 82.1494 130.423C82.1494 130.854 82.0754 131.237 81.9272 131.572C81.7834 131.906 81.5781 132.19 81.3115 132.422C81.0492 132.655 80.7402 132.831 80.3848 132.949C80.0293 133.068 79.6421 133.127 79.2231 133.127C78.8211 133.127 78.4424 133.07 78.0869 132.956C77.7357 132.841 77.4246 132.676 77.1538 132.46C76.883 132.24 76.6714 131.972 76.519 131.654C76.3667 131.333 76.2905 130.967 76.2905 130.556H77.4648C77.4648 130.878 77.5347 131.159 77.6743 131.4C77.8182 131.642 78.0213 131.83 78.2837 131.965C78.5503 132.097 78.8634 132.162 79.2231 132.162C79.5828 132.162 79.8918 132.101 80.1499 131.978C80.4123 131.851 80.6133 131.661 80.7529 131.407C80.8968 131.153 80.9688 130.833 80.9688 130.448C80.9688 130.063 80.8883 129.748 80.7275 129.502C80.5667 129.253 80.3382 129.069 80.042 128.95C79.75 128.827 79.4051 128.766 79.0073 128.766H78.1694ZM89.5698 127.643V129.052C89.5698 129.809 89.5021 130.448 89.3667 130.969C89.2313 131.489 89.0366 131.908 88.7827 132.226C88.5288 132.543 88.222 132.774 87.8623 132.917C87.5068 133.057 87.1048 133.127 86.6562 133.127C86.3008 133.127 85.9728 133.083 85.6724 132.994C85.3719 132.905 85.1011 132.763 84.8599 132.568C84.6229 132.369 84.4198 132.111 84.2505 131.794C84.0812 131.477 83.9521 131.091 83.8633 130.639C83.7744 130.186 83.73 129.657 83.73 129.052V127.643C83.73 126.885 83.7977 126.25 83.9331 125.738C84.0728 125.226 84.2695 124.816 84.5234 124.507C84.7773 124.194 85.082 123.969 85.4375 123.834C85.7972 123.699 86.1992 123.631 86.6436 123.631C87.0033 123.631 87.3333 123.675 87.6338 123.764C87.9385 123.849 88.2093 123.986 88.4463 124.177C88.6833 124.363 88.8843 124.613 89.0493 124.926C89.2186 125.235 89.3477 125.613 89.4365 126.062C89.5254 126.511 89.5698 127.037 89.5698 127.643ZM88.3892 129.242V127.446C88.3892 127.031 88.3638 126.667 88.313 126.354C88.2664 126.037 88.1966 125.766 88.1035 125.542C88.0104 125.317 87.8919 125.135 87.748 124.996C87.6084 124.856 87.4455 124.754 87.2593 124.691C87.0773 124.623 86.8721 124.589 86.6436 124.589C86.3643 124.589 86.1167 124.642 85.9009 124.748C85.6851 124.85 85.5031 125.013 85.355 125.237C85.2111 125.461 85.1011 125.755 85.0249 126.119C84.9487 126.483 84.9106 126.925 84.9106 127.446V129.242C84.9106 129.657 84.9339 130.023 84.9805 130.34C85.0312 130.658 85.1053 130.933 85.2026 131.166C85.3 131.394 85.4185 131.582 85.5581 131.73C85.6978 131.879 85.8586 131.989 86.0405 132.061C86.2267 132.128 86.432 132.162 86.6562 132.162C86.944 132.162 87.1958 132.107 87.4116 131.997C87.6274 131.887 87.8073 131.716 87.9512 131.483C88.0993 131.246 88.2093 130.943 88.2812 130.575C88.3532 130.203 88.3892 129.758 88.3892 129.242Z",fill:"#0F172A"})),{ToolBarFields:Ls,BlockName:gs,BlockLabel:Zs,BlockDescription:ys,BlockAdvancedValue:Es,AdvancedFields:ws,FieldWrapper:vs,AdvancedInspectorControl:_s,ClientSideMacros:ks,ValidationToggleGroup:js,ValidationBlockMessage:xs,AttributeHelp:Fs}=JetFBComponents,{useInsertMacro:Bs,useIsAdvancedValidation:As,useUniqueNameOnDuplicate:Ps}=JetFBHooks,{__:Ss}=wp.i18n,{InspectorControls:Ns,useBlockProps:Is}=wp.blockEditor,{TextControl:Ts,PanelBody:Os,__experimentalInputControl:Js,ExternalLink:Rs}=wp.components;let{InputControl:qs}=wp.components;void 0===qs&&(qs=Js);const Ds=JSON.parse('{"apiVersion":3,"name":"jet-forms/time-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","time"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Time Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"min":{"type":"string","default":""},"max":{"type":"string","default":""},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:zs}=wp.i18n,{createBlock:Us}=wp.blocks,{name:Gs,icon:Ws=""}=Ds,Ks={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ws}}),description:zs("Allow the user to enter the desirable time. Let them type the time manually or choose from the convenient drop-down timer.","jet-form-builder"),edit:function(e){const{isSelected:C,attributes:t,setAttributes:l,editProps:{uniqKey:r}}=e,n=Is(),[a,i]=Bs("min"),[o,s]=Bs("max"),c=As();if(Ps(),t.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ms);const d=(0,h.createElement)(h.Fragment,null,Ss("Plain date should be in hh:mm format.","jet-form-builder")," ",Ss("Or you can use","jet-form-builder")," ",(0,h.createElement)(Rs,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},Ss("macros","jet-form-builder"))," ",Ss("and","jet-form-builder")," ",(0,h.createElement)(Rs,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},Ss("filters","jet-form-builder")),".");return[(0,h.createElement)(Ls,{key:r("ToolBarFields"),...e}),C&&(0,h.createElement)(Ns,{key:r("InspectorControls")},(0,h.createElement)(Os,{title:Ss("General","jet-form-builder")},(0,h.createElement)(Zs,null),(0,h.createElement)(gs,null),(0,h.createElement)(ys,null)),(0,h.createElement)(Os,{title:Ss("Value","jet-form-builder")},(0,h.createElement)(Es,{help:d,style:{marginBottom:"1em"}}),(0,h.createElement)(ks,null,(0,h.createElement)(_s,{value:t.min,label:Ss("Starting from time","jet-form-builder"),onChangePreset:e=>l({min:e}),onChangeMacros:i},(({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ts,{id:e,ref:a,className:"jet-fb m-unset",value:t.min,onChange:e=>l({min:e})}),(0,h.createElement)(Fs,null,d)))),(0,h.createElement)(_s,{value:t.max,label:Ss("Limit time to","jet-form-builder"),onChangePreset:e=>l({max:e}),onChangeMacros:s},(({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ts,{id:e,ref:o,className:"jet-fb m-unset",value:t.max,onChange:e=>l({max:e})}),(0,h.createElement)(Fs,null,d)))))),(0,h.createElement)(Os,{title:Ss("Validation","jet-form-builder")},(0,h.createElement)(js,null),c&&(0,h.createElement)(h.Fragment,null,Boolean(t.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(xs,{name:"date_min"})),Boolean(t.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(xs,{name:"date_max"})),(0,h.createElement)(xs,{name:"empty"}))),(0,h.createElement)(ws,null)),(0,h.createElement)("div",{...n,key:r("viewBlock")},(0,h.createElement)(vs,{key:r("FieldWrapper"),...e},(0,h.createElement)(Ts,{onChange:()=>{},className:"jet-form-builder__field-preview",key:r("place_holder_block"),placeholder:'Input type="time"'})))]},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Us("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/datetime-field","jet-forms/date-field"],transform:e=>Us(Gs,{...e}),priority:0}]}},$s=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,h.createElement)("g",{clipPath:"url(#clip0_75_1400)"},(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V144H15V19Z",fill:"white"}),(0,h.createElement)("path",{d:"M15 8H283.061V85H15V8Z",fill:"url(#paint0_linear_75_1400)"}),(0,h.createElement)("path",{d:"M15 8H283.061V85H15V8Z",fill:"url(#paint1_linear_75_1400)"}),(0,h.createElement)("g",{filter:"url(#filter0_d_75_1400)"},(0,h.createElement)("path",{d:"M219 14.2974C219 15.8887 218.421 17.4148 217.389 18.54C216.358 19.6652 214.959 20.2974 213.5 20.2974C212.041 20.2974 210.642 19.6652 209.611 18.54C208.579 17.4148 208 15.8887 208 14.2974L219 14.2974Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M219.5 14.2974V13.7974L219 13.7974L208 13.7974L207.5 13.7974L207.5 14.2974C207.5 16.0079 208.122 17.6562 209.242 18.8779C210.364 20.101 211.894 20.7974 213.5 20.7974C215.106 20.7974 216.636 20.101 217.758 18.8779C218.878 17.6562 219.5 16.0079 219.5 14.2974Z",stroke:"white"})),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1400)"},(0,h.createElement)("path",{d:"M35.0654 97.4038L33.9281 96.2664C33.7385 96.0769 33.4323 96.0769 33.2428 96.2664L31.7264 97.7829L30.7883 96.8545L30.103 97.5398L30.7932 98.23L26.4578 102.565V104.874H28.7664L33.1018 100.539L33.792 101.229L34.4773 100.544L33.5441 99.6103L35.0606 98.0939C35.255 97.8995 35.255 97.5933 35.0654 97.4038ZM28.363 103.902L27.4298 102.969L31.3473 99.0514L32.2804 99.9846L28.363 103.902Z",fill:"#64748B"})),(0,h.createElement)("circle",{cx:"47.8098",cy:"100.5",r:"7.5",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"272.69",y:"97.584",width:"5.8324",height:"213",rx:"2.9162",transform:"rotate(90 272.69 97.584)",fill:"url(#paint2_linear_75_1400)"}),(0,h.createElement)("circle",{cx:"182",cy:"100.742",r:"5.5",transform:"rotate(90 182 100.742)",fill:"white",stroke:"#64748B"}),(0,h.createElement)("rect",{x:"25.5",y:"114.333",width:"120",height:"19.4134",rx:"2.4162",fill:"white",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M67.4553 127.694L68.8372 120.585H69.5403L68.1536 127.694H67.4553ZM69.4426 127.694L70.8293 120.585H71.5276L70.1409 127.694H69.4426ZM72.1233 123.295H67.0452V122.616H72.1233V123.295ZM71.7571 125.692H66.6741V125.019H71.7571V125.692ZM77.6506 125.302V126.044H72.5139V125.512L75.6975 120.585H76.4348L75.6438 122.011L73.5393 125.302H77.6506ZM76.6594 120.585V127.694H75.7561V120.585H76.6594ZM83.1292 126.952V127.694H78.4758V127.045L80.8049 124.452C81.0914 124.133 81.3127 123.863 81.469 123.642C81.6285 123.417 81.7392 123.217 81.801 123.041C81.8661 122.862 81.8987 122.68 81.8987 122.494C81.8987 122.26 81.8499 122.048 81.7522 121.859C81.6578 121.667 81.5178 121.514 81.3323 121.4C81.1467 121.286 80.9221 121.229 80.6584 121.229C80.3427 121.229 80.079 121.291 79.8674 121.415C79.6591 121.535 79.5028 121.705 79.3987 121.923C79.2945 122.141 79.2424 122.392 79.2424 122.675H78.3391C78.3391 122.274 78.427 121.908 78.6028 121.576C78.7786 121.244 79.039 120.98 79.384 120.785C79.7291 120.587 80.1539 120.487 80.6584 120.487C81.1077 120.487 81.4918 120.567 81.8108 120.727C82.1298 120.883 82.3739 121.104 82.5432 121.391C82.7157 121.674 82.802 122.006 82.802 122.387C82.802 122.595 82.7662 122.807 82.6946 123.021C82.6262 123.233 82.5302 123.445 82.4065 123.656C82.2861 123.868 82.1444 124.076 81.9817 124.281C81.8222 124.486 81.6513 124.688 81.469 124.887L79.5647 126.952H83.1292ZM88.6907 120.585V121.093L85.7463 127.694H84.7942L87.7336 121.327H83.886V120.585H88.6907ZM94.3792 126.952V127.694H89.7258V127.045L92.0549 124.452C92.3414 124.133 92.5627 123.863 92.719 123.642C92.8785 123.417 92.9892 123.217 93.051 123.041C93.1161 122.862 93.1487 122.68 93.1487 122.494C93.1487 122.26 93.0999 122.048 93.0022 121.859C92.9078 121.667 92.7678 121.514 92.5823 121.4C92.3967 121.286 92.1721 121.229 91.9084 121.229C91.5927 121.229 91.329 121.291 91.1174 121.415C90.9091 121.535 90.7528 121.705 90.6487 121.923C90.5445 122.141 90.4924 122.392 90.4924 122.675H89.5891C89.5891 122.274 89.677 121.908 89.8528 121.576C90.0286 121.244 90.289 120.98 90.634 120.785C90.9791 120.587 91.4039 120.487 91.9084 120.487C92.3577 120.487 92.7418 120.567 93.0608 120.727C93.3798 120.883 93.6239 121.104 93.7932 121.391C93.9657 121.674 94.052 122.006 94.052 122.387C94.052 122.595 94.0162 122.807 93.9446 123.021C93.8762 123.233 93.7802 123.445 93.6565 123.656C93.5361 123.868 93.3944 124.076 93.2317 124.281C93.0722 124.486 92.9013 124.688 92.719 124.887L90.8147 126.952H94.3792ZM96.5227 120.585V127.694H95.5803V120.585H96.5227ZM99.5012 123.783V124.555H96.3176V123.783H99.5012ZM99.9846 120.585V121.356H96.3176V120.585H99.9846ZM101.772 126.938H101.865C102.385 126.938 102.809 126.864 103.134 126.718C103.46 126.571 103.71 126.374 103.886 126.127C104.062 125.88 104.182 125.601 104.247 125.292C104.312 124.979 104.345 124.659 104.345 124.33V123.241C104.345 122.919 104.308 122.632 104.233 122.382C104.161 122.131 104.06 121.921 103.93 121.752C103.803 121.583 103.658 121.454 103.495 121.366C103.333 121.278 103.16 121.234 102.978 121.234C102.769 121.234 102.582 121.277 102.416 121.361C102.253 121.443 102.115 121.558 102.001 121.708C101.891 121.858 101.806 122.034 101.747 122.235C101.689 122.437 101.659 122.657 101.659 122.895C101.659 123.106 101.685 123.311 101.738 123.51C101.79 123.708 101.869 123.887 101.977 124.047C102.084 124.206 102.218 124.333 102.377 124.428C102.54 124.519 102.73 124.564 102.948 124.564C103.15 124.564 103.339 124.525 103.515 124.447C103.694 124.366 103.852 124.257 103.989 124.12C104.128 123.98 104.239 123.822 104.321 123.646C104.405 123.471 104.454 123.287 104.467 123.095H104.897C104.897 123.365 104.843 123.632 104.736 123.896C104.631 124.156 104.485 124.394 104.296 124.608C104.107 124.823 103.886 124.996 103.632 125.126C103.378 125.253 103.101 125.316 102.802 125.316C102.45 125.316 102.146 125.248 101.889 125.111C101.632 124.975 101.42 124.792 101.254 124.564C101.091 124.337 100.969 124.083 100.888 123.803C100.81 123.52 100.771 123.233 100.771 122.943C100.771 122.605 100.818 122.287 100.912 121.991C101.007 121.695 101.147 121.435 101.332 121.21C101.518 120.982 101.747 120.805 102.021 120.678C102.297 120.551 102.616 120.487 102.978 120.487C103.385 120.487 103.731 120.569 104.018 120.731C104.304 120.894 104.537 121.112 104.716 121.386C104.898 121.659 105.032 121.967 105.116 122.309C105.201 122.65 105.243 123.002 105.243 123.363V123.69C105.243 124.058 105.219 124.433 105.17 124.813C105.125 125.191 105.035 125.552 104.902 125.897C104.771 126.243 104.581 126.552 104.33 126.825C104.08 127.095 103.753 127.31 103.349 127.47C102.948 127.626 102.454 127.704 101.865 127.704H101.772V126.938Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"152",y:"113.833",width:"120.835",height:"20.4134",rx:"2.9162",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M260.898 122.448L262.695 120.654L264.493 122.448L265.045 121.896L262.695 119.546L260.346 121.896L260.898 122.448Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M264.493 126.043L262.696 127.836L260.898 126.043L260.346 126.595L262.696 128.944L265.045 126.595L264.493 126.043Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M209.882 123.288V124.055H206.034V123.288H209.882ZM206.181 120.232V127.341H205.238V120.232H206.181ZM210.702 120.232V127.341H209.765V120.232H210.702ZM216.894 126.574V127.341H213.129V126.574H216.894ZM213.319 120.232V127.341H212.377V120.232H213.319ZM216.396 123.288V124.055H213.129V123.288H216.396ZM216.845 120.232V121.003H213.129V120.232H216.845ZM218.671 120.232L220.38 122.956L222.089 120.232H223.188L220.941 123.752L223.241 127.341H222.133L220.38 124.563L218.627 127.341H217.519L219.818 123.752L217.572 120.232H218.671Z",fill:"#64748B"})),(0,h.createElement)("defs",null,(0,h.createElement)("filter",{id:"filter0_d_75_1400",x:"204.28",y:"12.3766",width:"16.683",height:"11.683",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB"},(0,h.createElement)("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),(0,h.createElement)("feColorMatrix",{in:"SourceAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",result:"hardAlpha"}),(0,h.createElement)("feOffset",{dx:"-0.878599",dy:"0.920745"}),(0,h.createElement)("feGaussianBlur",{stdDeviation:"0.920745"}),(0,h.createElement)("feComposite",{in2:"hardAlpha",operator:"out"}),(0,h.createElement)("feColorMatrix",{type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"}),(0,h.createElement)("feBlend",{mode:"normal",in2:"BackgroundImageFix",result:"effect1_dropShadow_75_1400"}),(0,h.createElement)("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_dropShadow_75_1400",result:"shape"})),(0,h.createElement)("linearGradient",{id:"paint0_linear_75_1400",x1:"15",y1:"85",x2:"15",y2:"8",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",null),(0,h.createElement)("stop",{offset:"1",stopColor:"#C4C4C4",stopOpacity:"0"})),(0,h.createElement)("linearGradient",{id:"paint1_linear_75_1400",x1:"15",y1:"8",x2:"283.061",y2:"8.00001",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",{stopColor:"#4F46E5",stopOpacity:"0"}),(0,h.createElement)("stop",{offset:"1",stopColor:"#4272F9"})),(0,h.createElement)("linearGradient",{id:"paint2_linear_75_1400",x1:"275.82",y1:"310.274",x2:"275.896",y2:"97.274",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",{offset:"0.0521219",stopColor:"#FF0000"}),(0,h.createElement)("stop",{offset:"0.164776",stopColor:"#FF8A00"}),(0,h.createElement)("stop",{offset:"0.27743",stopColor:"#FFE600"}),(0,h.createElement)("stop",{offset:"0.393479",stopColor:"#14FF00"}),(0,h.createElement)("stop",{offset:"0.493654",stopColor:"#00A3FF"}),(0,h.createElement)("stop",{offset:"0.611759",stopColor:"#0500FF"}),(0,h.createElement)("stop",{offset:"0.722596",stopColor:"#AD00FF"}),(0,h.createElement)("stop",{offset:"0.83525",stopColor:"#FF00C7"}),(0,h.createElement)("stop",{offset:"0.946088",stopColor:"#FF0000"})),(0,h.createElement)("clipPath",{id:"clip0_75_1400"},(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V144H15V19Z",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1400"},(0,h.createElement)("rect",{width:"11.6648",height:"11.6648",fill:"white",transform:"translate(25 94.6675)"})))),{AdvancedFields:Ys,GeneralFields:Xs,ToolBarFields:Qs,FieldWrapper:ec,FieldSettingsWrapper:Cc}=JetFBComponents,{useUniqKey:tc,useUniqueNameOnDuplicate:lc}=JetFBHooks,{__experimentalInputControl:rc}=wp.components,{InspectorControls:nc,useBlockProps:ac}=wp.blockEditor;let{InputControl:ic}=wp.components;void 0===ic&&(ic=rc);const oc=JSON.parse('{"apiVersion":3,"name":"jet-forms/color-picker-field","category":"jet-form-builder-fields","title":"Color Picker Field","icon":"\\n\\n","keywords":["jetformbuilder","field","colorpicker","picker","input"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:sc}=wp.i18n,{createBlock:cc}=wp.blocks,{name:dc,icon:mc}=oc,uc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:mc}}),description:sc("Give your users an opportunity to design your website and pick a certain color in the form with the help of the Color Picker Field.","jet-form-builder"),edit:function(e){const C=ac(),t=tc();lc();const{isSelected:l,attributes:r}=e;return r.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},$s):[(0,h.createElement)(Qs,{key:t("ToolBarFields"),...e}),l&&(0,h.createElement)(nc,{key:t("InspectorControls")},(0,h.createElement)(Xs,null),(0,h.createElement)(Cc,null),(0,h.createElement)(Ys,null)),(0,h.createElement)("div",{...C,key:t("viewBlock")},(0,h.createElement)(ec,{key:t("FieldWrapper"),...e},(0,h.createElement)(ic,{className:"jet-form-builder__field-wrap jet-form-builder__field-preview",type:"color",key:"color_picker_place_holder_block",onChange:()=>{}})))]},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>cc("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>cc(dc,{...e}),priority:0}]}},pc=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M87.1279 46.3447H84.6055L84.5918 45.2852H86.8818C87.2601 45.2852 87.5905 45.2214 87.873 45.0938C88.1556 44.9661 88.3743 44.7839 88.5293 44.5469C88.6888 44.3053 88.7686 44.0182 88.7686 43.6855C88.7686 43.321 88.6979 43.0247 88.5566 42.7969C88.4199 42.5645 88.208 42.3958 87.9209 42.291C87.6383 42.1816 87.2783 42.127 86.8408 42.127H84.8994V51H83.5801V41.0469H86.8408C87.3512 41.0469 87.807 41.0993 88.208 41.2041C88.609 41.3044 88.9486 41.4639 89.2266 41.6826C89.5091 41.8968 89.7233 42.1702 89.8691 42.5029C90.015 42.8356 90.0879 43.2344 90.0879 43.6992C90.0879 44.1094 89.9831 44.4808 89.7734 44.8135C89.5638 45.1416 89.2721 45.4105 88.8984 45.6201C88.5293 45.8298 88.0964 45.9642 87.5996 46.0234L87.1279 46.3447ZM87.0664 51H84.0859L84.8311 49.9268H87.0664C87.4857 49.9268 87.8411 49.8538 88.1328 49.708C88.429 49.5622 88.6546 49.3571 88.8096 49.0928C88.9645 48.8239 89.042 48.5072 89.042 48.1426C89.042 47.7734 88.9759 47.4544 88.8438 47.1855C88.7116 46.9167 88.5042 46.7093 88.2217 46.5635C87.9391 46.4176 87.5745 46.3447 87.1279 46.3447H85.248L85.2617 45.2852H87.832L88.1123 45.668C88.5908 45.709 88.9964 45.8457 89.3291 46.0781C89.6618 46.306 89.9147 46.5977 90.0879 46.9531C90.2656 47.3086 90.3545 47.7005 90.3545 48.1289C90.3545 48.7487 90.2178 49.2728 89.9443 49.7012C89.6755 50.125 89.2949 50.4486 88.8027 50.6719C88.3105 50.8906 87.7318 51 87.0664 51ZM91.7764 47.3838V47.2266C91.7764 46.6934 91.8538 46.1989 92.0088 45.7432C92.1637 45.2829 92.387 44.8841 92.6787 44.5469C92.9704 44.2051 93.3236 43.9408 93.7383 43.7539C94.153 43.5625 94.6178 43.4668 95.1328 43.4668C95.6523 43.4668 96.1195 43.5625 96.5342 43.7539C96.9535 43.9408 97.3089 44.2051 97.6006 44.5469C97.8968 44.8841 98.1224 45.2829 98.2773 45.7432C98.4323 46.1989 98.5098 46.6934 98.5098 47.2266V47.3838C98.5098 47.917 98.4323 48.4115 98.2773 48.8672C98.1224 49.3229 97.8968 49.7217 97.6006 50.0635C97.3089 50.4007 96.9557 50.665 96.541 50.8564C96.1309 51.0433 95.666 51.1367 95.1465 51.1367C94.627 51.1367 94.1598 51.0433 93.7451 50.8564C93.3304 50.665 92.9749 50.4007 92.6787 50.0635C92.387 49.7217 92.1637 49.3229 92.0088 48.8672C91.8538 48.4115 91.7764 47.917 91.7764 47.3838ZM93.041 47.2266V47.3838C93.041 47.7529 93.0843 48.1016 93.1709 48.4297C93.2575 48.7533 93.3874 49.0404 93.5605 49.291C93.7383 49.5417 93.9593 49.7399 94.2236 49.8857C94.488 50.027 94.7956 50.0977 95.1465 50.0977C95.4928 50.0977 95.7959 50.027 96.0557 49.8857C96.32 49.7399 96.5387 49.5417 96.7119 49.291C96.8851 49.0404 97.015 48.7533 97.1016 48.4297C97.1927 48.1016 97.2383 47.7529 97.2383 47.3838V47.2266C97.2383 46.862 97.1927 46.5179 97.1016 46.1943C97.015 45.8662 96.8828 45.5768 96.7051 45.3262C96.5319 45.071 96.3132 44.8704 96.0488 44.7246C95.7891 44.5788 95.4837 44.5059 95.1328 44.5059C94.7865 44.5059 94.4811 44.5788 94.2168 44.7246C93.957 44.8704 93.7383 45.071 93.5605 45.3262C93.3874 45.5768 93.2575 45.8662 93.1709 46.1943C93.0843 46.5179 93.041 46.862 93.041 47.2266ZM99.7607 47.3838V47.2266C99.7607 46.6934 99.8382 46.1989 99.9932 45.7432C100.148 45.2829 100.371 44.8841 100.663 44.5469C100.955 44.2051 101.308 43.9408 101.723 43.7539C102.137 43.5625 102.602 43.4668 103.117 43.4668C103.637 43.4668 104.104 43.5625 104.519 43.7539C104.938 43.9408 105.293 44.2051 105.585 44.5469C105.881 44.8841 106.107 45.2829 106.262 45.7432C106.417 46.1989 106.494 46.6934 106.494 47.2266V47.3838C106.494 47.917 106.417 48.4115 106.262 48.8672C106.107 49.3229 105.881 49.7217 105.585 50.0635C105.293 50.4007 104.94 50.665 104.525 50.8564C104.115 51.0433 103.65 51.1367 103.131 51.1367C102.611 51.1367 102.144 51.0433 101.729 50.8564C101.315 50.665 100.959 50.4007 100.663 50.0635C100.371 49.7217 100.148 49.3229 99.9932 48.8672C99.8382 48.4115 99.7607 47.917 99.7607 47.3838ZM101.025 47.2266V47.3838C101.025 47.7529 101.069 48.1016 101.155 48.4297C101.242 48.7533 101.372 49.0404 101.545 49.291C101.723 49.5417 101.944 49.7399 102.208 49.8857C102.472 50.027 102.78 50.0977 103.131 50.0977C103.477 50.0977 103.78 50.027 104.04 49.8857C104.304 49.7399 104.523 49.5417 104.696 49.291C104.869 49.0404 104.999 48.7533 105.086 48.4297C105.177 48.1016 105.223 47.7529 105.223 47.3838V47.2266C105.223 46.862 105.177 46.5179 105.086 46.1943C104.999 45.8662 104.867 45.5768 104.689 45.3262C104.516 45.071 104.298 44.8704 104.033 44.7246C103.773 44.5788 103.468 44.5059 103.117 44.5059C102.771 44.5059 102.465 44.5788 102.201 44.7246C101.941 44.8704 101.723 45.071 101.545 45.3262C101.372 45.5768 101.242 45.8662 101.155 46.1943C101.069 46.5179 101.025 46.862 101.025 47.2266ZM109.352 40.5V51H108.08V40.5H109.352ZM113.87 43.6035L110.644 47.0557L108.839 48.9287L108.736 47.582L110.028 46.0371L112.325 43.6035H113.87ZM112.715 51L110.076 47.4727L110.732 46.3447L114.205 51H112.715ZM123.01 49.7354V45.9277C123.01 45.6361 122.951 45.3831 122.832 45.1689C122.718 44.9502 122.545 44.7816 122.312 44.6631C122.08 44.5446 121.793 44.4854 121.451 44.4854C121.132 44.4854 120.852 44.54 120.61 44.6494C120.373 44.7588 120.187 44.9023 120.05 45.0801C119.918 45.2578 119.852 45.4492 119.852 45.6543H118.587C118.587 45.39 118.655 45.1279 118.792 44.8682C118.929 44.6084 119.125 44.3737 119.38 44.1641C119.64 43.9499 119.95 43.7812 120.31 43.6582C120.674 43.5306 121.08 43.4668 121.526 43.4668C122.064 43.4668 122.538 43.5579 122.948 43.7402C123.363 43.9225 123.687 44.1982 123.919 44.5674C124.156 44.932 124.274 45.39 124.274 45.9414V49.3867C124.274 49.6328 124.295 49.8949 124.336 50.1729C124.382 50.4508 124.448 50.6901 124.534 50.8906V51H123.215C123.151 50.8542 123.101 50.6605 123.064 50.4189C123.028 50.1729 123.01 49.945 123.01 49.7354ZM123.229 46.5156L123.242 47.4043H121.964C121.604 47.4043 121.283 47.4339 121 47.4932C120.717 47.5479 120.48 47.6322 120.289 47.7461C120.098 47.86 119.952 48.0036 119.852 48.1768C119.751 48.3454 119.701 48.5436 119.701 48.7715C119.701 49.0039 119.754 49.2158 119.858 49.4072C119.963 49.5986 120.12 49.7513 120.33 49.8652C120.544 49.9746 120.806 50.0293 121.116 50.0293C121.504 50.0293 121.845 49.9473 122.142 49.7832C122.438 49.6191 122.673 49.4186 122.846 49.1816C123.023 48.9447 123.119 48.7145 123.133 48.4912L123.673 49.0996C123.641 49.291 123.554 49.5029 123.413 49.7354C123.272 49.9678 123.083 50.1911 122.846 50.4053C122.613 50.6149 122.335 50.7904 122.012 50.9316C121.693 51.0684 121.333 51.1367 120.932 51.1367C120.43 51.1367 119.991 51.0387 119.612 50.8428C119.239 50.6468 118.947 50.3848 118.737 50.0566C118.532 49.724 118.43 49.3525 118.43 48.9424C118.43 48.5459 118.507 48.1973 118.662 47.8965C118.817 47.5911 119.04 47.3382 119.332 47.1377C119.624 46.9326 119.975 46.7777 120.385 46.6729C120.795 46.568 121.253 46.5156 121.759 46.5156H123.229ZM127.528 45.1826V51H126.264V43.6035H127.46L127.528 45.1826ZM127.228 47.0215L126.701 47.001C126.706 46.4951 126.781 46.028 126.927 45.5996C127.073 45.1667 127.278 44.7907 127.542 44.4717C127.806 44.1527 128.121 43.9066 128.485 43.7334C128.854 43.5557 129.262 43.4668 129.709 43.4668C130.074 43.4668 130.402 43.5169 130.693 43.6172C130.985 43.7129 131.233 43.8678 131.438 44.082C131.648 44.2962 131.808 44.5742 131.917 44.916C132.026 45.2533 132.081 45.6657 132.081 46.1533V51H130.81V46.1396C130.81 45.7523 130.753 45.4424 130.639 45.21C130.525 44.973 130.358 44.8021 130.14 44.6973C129.921 44.5879 129.652 44.5332 129.333 44.5332C129.019 44.5332 128.731 44.5993 128.472 44.7314C128.216 44.8636 127.995 45.0459 127.809 45.2783C127.626 45.5107 127.483 45.7773 127.378 46.0781C127.278 46.3743 127.228 46.6888 127.228 47.0215ZM141.836 49.7354V45.9277C141.836 45.6361 141.777 45.3831 141.658 45.1689C141.544 44.9502 141.371 44.7816 141.139 44.6631C140.906 44.5446 140.619 44.4854 140.277 44.4854C139.958 44.4854 139.678 44.54 139.437 44.6494C139.2 44.7588 139.013 44.9023 138.876 45.0801C138.744 45.2578 138.678 45.4492 138.678 45.6543H137.413C137.413 45.39 137.481 45.1279 137.618 44.8682C137.755 44.6084 137.951 44.3737 138.206 44.1641C138.466 43.9499 138.776 43.7812 139.136 43.6582C139.5 43.5306 139.906 43.4668 140.353 43.4668C140.89 43.4668 141.364 43.5579 141.774 43.7402C142.189 43.9225 142.513 44.1982 142.745 44.5674C142.982 44.932 143.101 45.39 143.101 45.9414V49.3867C143.101 49.6328 143.121 49.8949 143.162 50.1729C143.208 50.4508 143.274 50.6901 143.36 50.8906V51H142.041C141.977 50.8542 141.927 50.6605 141.891 50.4189C141.854 50.1729 141.836 49.945 141.836 49.7354ZM142.055 46.5156L142.068 47.4043H140.79C140.43 47.4043 140.109 47.4339 139.826 47.4932C139.544 47.5479 139.307 47.6322 139.115 47.7461C138.924 47.86 138.778 48.0036 138.678 48.1768C138.577 48.3454 138.527 48.5436 138.527 48.7715C138.527 49.0039 138.58 49.2158 138.685 49.4072C138.789 49.5986 138.947 49.7513 139.156 49.8652C139.37 49.9746 139.632 50.0293 139.942 50.0293C140.33 50.0293 140.672 49.9473 140.968 49.7832C141.264 49.6191 141.499 49.4186 141.672 49.1816C141.85 48.9447 141.945 48.7145 141.959 48.4912L142.499 49.0996C142.467 49.291 142.381 49.5029 142.239 49.7354C142.098 49.9678 141.909 50.1911 141.672 50.4053C141.439 50.6149 141.161 50.7904 140.838 50.9316C140.519 51.0684 140.159 51.1367 139.758 51.1367C139.257 51.1367 138.817 51.0387 138.438 50.8428C138.065 50.6468 137.773 50.3848 137.563 50.0566C137.358 49.724 137.256 49.3525 137.256 48.9424C137.256 48.5459 137.333 48.1973 137.488 47.8965C137.643 47.5911 137.867 47.3382 138.158 47.1377C138.45 46.9326 138.801 46.7777 139.211 46.6729C139.621 46.568 140.079 46.5156 140.585 46.5156H142.055ZM146.354 45.0254V53.8438H145.083V43.6035H146.245L146.354 45.0254ZM151.338 47.2402V47.3838C151.338 47.9215 151.274 48.4206 151.146 48.8809C151.019 49.3366 150.832 49.7331 150.586 50.0703C150.344 50.4076 150.046 50.6696 149.69 50.8564C149.335 51.0433 148.927 51.1367 148.467 51.1367C147.997 51.1367 147.583 51.0592 147.223 50.9043C146.863 50.7493 146.557 50.5238 146.307 50.2275C146.056 49.9313 145.855 49.5758 145.705 49.1611C145.559 48.7464 145.459 48.2793 145.404 47.7598V46.9941C145.459 46.4473 145.562 45.9574 145.712 45.5244C145.862 45.0915 146.061 44.7223 146.307 44.417C146.557 44.1071 146.86 43.8724 147.216 43.7129C147.571 43.5488 147.981 43.4668 148.446 43.4668C148.911 43.4668 149.324 43.5579 149.684 43.7402C150.044 43.918 150.347 44.1732 150.593 44.5059C150.839 44.8385 151.023 45.2373 151.146 45.7021C151.274 46.1624 151.338 46.6751 151.338 47.2402ZM150.066 47.3838V47.2402C150.066 46.8711 150.028 46.5247 149.95 46.2012C149.873 45.873 149.752 45.5859 149.588 45.3398C149.428 45.0892 149.223 44.8932 148.973 44.752C148.722 44.6061 148.424 44.5332 148.077 44.5332C147.758 44.5332 147.48 44.5879 147.243 44.6973C147.011 44.8066 146.812 44.9548 146.648 45.1416C146.484 45.3239 146.35 45.5335 146.245 45.7705C146.145 46.0029 146.07 46.2445 146.02 46.4951V48.2656C146.111 48.5846 146.238 48.8854 146.402 49.168C146.566 49.446 146.785 49.6715 147.059 49.8447C147.332 50.0133 147.676 50.0977 148.091 50.0977C148.433 50.0977 148.727 50.027 148.973 49.8857C149.223 49.7399 149.428 49.5417 149.588 49.291C149.752 49.0404 149.873 48.7533 149.95 48.4297C150.028 48.1016 150.066 47.7529 150.066 47.3838ZM154.216 45.0254V53.8438H152.944V43.6035H154.106L154.216 45.0254ZM159.199 47.2402V47.3838C159.199 47.9215 159.135 48.4206 159.008 48.8809C158.88 49.3366 158.693 49.7331 158.447 50.0703C158.206 50.4076 157.907 50.6696 157.552 50.8564C157.196 51.0433 156.788 51.1367 156.328 51.1367C155.859 51.1367 155.444 51.0592 155.084 50.9043C154.724 50.7493 154.419 50.5238 154.168 50.2275C153.917 49.9313 153.717 49.5758 153.566 49.1611C153.421 48.7464 153.32 48.2793 153.266 47.7598V46.9941C153.32 46.4473 153.423 45.9574 153.573 45.5244C153.724 45.0915 153.922 44.7223 154.168 44.417C154.419 44.1071 154.722 43.8724 155.077 43.7129C155.433 43.5488 155.843 43.4668 156.308 43.4668C156.772 43.4668 157.185 43.5579 157.545 43.7402C157.905 43.918 158.208 44.1732 158.454 44.5059C158.7 44.8385 158.885 45.2373 159.008 45.7021C159.135 46.1624 159.199 46.6751 159.199 47.2402ZM157.928 47.3838V47.2402C157.928 46.8711 157.889 46.5247 157.812 46.2012C157.734 45.873 157.613 45.5859 157.449 45.3398C157.29 45.0892 157.085 44.8932 156.834 44.752C156.583 44.6061 156.285 44.5332 155.938 44.5332C155.619 44.5332 155.341 44.5879 155.104 44.6973C154.872 44.8066 154.674 44.9548 154.51 45.1416C154.346 45.3239 154.211 45.5335 154.106 45.7705C154.006 46.0029 153.931 46.2445 153.881 46.4951V48.2656C153.972 48.5846 154.1 48.8854 154.264 49.168C154.428 49.446 154.646 49.6715 154.92 49.8447C155.193 50.0133 155.537 50.0977 155.952 50.0977C156.294 50.0977 156.588 50.027 156.834 49.8857C157.085 49.7399 157.29 49.5417 157.449 49.291C157.613 49.0404 157.734 48.7533 157.812 48.4297C157.889 48.1016 157.928 47.7529 157.928 47.3838ZM160.478 47.3838V47.2266C160.478 46.6934 160.555 46.1989 160.71 45.7432C160.865 45.2829 161.088 44.8841 161.38 44.5469C161.672 44.2051 162.025 43.9408 162.439 43.7539C162.854 43.5625 163.319 43.4668 163.834 43.4668C164.354 43.4668 164.821 43.5625 165.235 43.7539C165.655 43.9408 166.01 44.2051 166.302 44.5469C166.598 44.8841 166.824 45.2829 166.979 45.7432C167.133 46.1989 167.211 46.6934 167.211 47.2266V47.3838C167.211 47.917 167.133 48.4115 166.979 48.8672C166.824 49.3229 166.598 49.7217 166.302 50.0635C166.01 50.4007 165.657 50.665 165.242 50.8564C164.832 51.0433 164.367 51.1367 163.848 51.1367C163.328 51.1367 162.861 51.0433 162.446 50.8564C162.032 50.665 161.676 50.4007 161.38 50.0635C161.088 49.7217 160.865 49.3229 160.71 48.8672C160.555 48.4115 160.478 47.917 160.478 47.3838ZM161.742 47.2266V47.3838C161.742 47.7529 161.785 48.1016 161.872 48.4297C161.959 48.7533 162.089 49.0404 162.262 49.291C162.439 49.5417 162.66 49.7399 162.925 49.8857C163.189 50.027 163.497 50.0977 163.848 50.0977C164.194 50.0977 164.497 50.027 164.757 49.8857C165.021 49.7399 165.24 49.5417 165.413 49.291C165.586 49.0404 165.716 48.7533 165.803 48.4297C165.894 48.1016 165.939 47.7529 165.939 47.3838V47.2266C165.939 46.862 165.894 46.5179 165.803 46.1943C165.716 45.8662 165.584 45.5768 165.406 45.3262C165.233 45.071 165.014 44.8704 164.75 44.7246C164.49 44.5788 164.185 44.5059 163.834 44.5059C163.488 44.5059 163.182 44.5788 162.918 44.7246C162.658 44.8704 162.439 45.071 162.262 45.3262C162.089 45.5768 161.959 45.8662 161.872 46.1943C161.785 46.5179 161.742 46.862 161.742 47.2266ZM170.171 43.6035V51H168.899V43.6035H170.171ZM168.804 41.6416C168.804 41.4365 168.865 41.2633 168.988 41.1221C169.116 40.9808 169.303 40.9102 169.549 40.9102C169.79 40.9102 169.975 40.9808 170.103 41.1221C170.235 41.2633 170.301 41.4365 170.301 41.6416C170.301 41.8376 170.235 42.0062 170.103 42.1475C169.975 42.2842 169.79 42.3525 169.549 42.3525C169.303 42.3525 169.116 42.2842 168.988 42.1475C168.865 42.0062 168.804 41.8376 168.804 41.6416ZM173.466 45.1826V51H172.201V43.6035H173.397L173.466 45.1826ZM173.165 47.0215L172.639 47.001C172.643 46.4951 172.718 46.028 172.864 45.5996C173.01 45.1667 173.215 44.7907 173.479 44.4717C173.744 44.1527 174.058 43.9066 174.423 43.7334C174.792 43.5557 175.2 43.4668 175.646 43.4668C176.011 43.4668 176.339 43.5169 176.631 43.6172C176.923 43.7129 177.171 43.8678 177.376 44.082C177.586 44.2962 177.745 44.5742 177.854 44.916C177.964 45.2533 178.019 45.6657 178.019 46.1533V51H176.747V46.1396C176.747 45.7523 176.69 45.4424 176.576 45.21C176.462 44.973 176.296 44.8021 176.077 44.6973C175.858 44.5879 175.59 44.5332 175.271 44.5332C174.956 44.5332 174.669 44.5993 174.409 44.7314C174.154 44.8636 173.933 45.0459 173.746 45.2783C173.564 45.5107 173.42 45.7773 173.315 46.0781C173.215 46.3743 173.165 46.6888 173.165 47.0215ZM183.036 43.6035V44.5742H179.037V43.6035H183.036ZM180.391 41.8057H181.655V49.168C181.655 49.4186 181.694 49.6077 181.771 49.7354C181.849 49.863 181.949 49.9473 182.072 49.9883C182.195 50.0293 182.327 50.0498 182.469 50.0498C182.574 50.0498 182.683 50.0407 182.797 50.0225C182.915 49.9997 183.004 49.9814 183.063 49.9678L183.07 51C182.97 51.0319 182.838 51.0615 182.674 51.0889C182.514 51.1208 182.321 51.1367 182.093 51.1367C181.783 51.1367 181.498 51.0752 181.238 50.9521C180.979 50.8291 180.771 50.624 180.616 50.3369C180.466 50.0452 180.391 49.6533 180.391 49.1611V41.8057ZM185.777 45.0732V51H184.506V43.6035H185.709L185.777 45.0732ZM185.518 47.0215L184.93 47.001C184.934 46.4951 185 46.028 185.128 45.5996C185.256 45.1667 185.445 44.7907 185.695 44.4717C185.946 44.1527 186.258 43.9066 186.632 43.7334C187.006 43.5557 187.438 43.4668 187.931 43.4668C188.277 43.4668 188.596 43.5169 188.888 43.6172C189.179 43.7129 189.432 43.8656 189.646 44.0752C189.861 44.2848 190.027 44.5537 190.146 44.8818C190.264 45.21 190.323 45.6064 190.323 46.0713V51H189.059V46.1328C189.059 45.7454 188.993 45.4355 188.86 45.2031C188.733 44.9707 188.55 44.8021 188.313 44.6973C188.076 44.5879 187.799 44.5332 187.479 44.5332C187.106 44.5332 186.794 44.5993 186.543 44.7314C186.292 44.8636 186.092 45.0459 185.941 45.2783C185.791 45.5107 185.682 45.7773 185.613 46.0781C185.549 46.3743 185.518 46.6888 185.518 47.0215ZM190.31 46.3242L189.462 46.584C189.466 46.1784 189.533 45.7887 189.66 45.415C189.792 45.0413 189.981 44.7087 190.228 44.417C190.478 44.1253 190.786 43.8952 191.15 43.7266C191.515 43.5534 191.932 43.4668 192.401 43.4668C192.798 43.4668 193.149 43.5192 193.454 43.624C193.764 43.7288 194.024 43.8906 194.233 44.1094C194.448 44.3236 194.609 44.5993 194.719 44.9365C194.828 45.2738 194.883 45.6748 194.883 46.1396V51H193.611V46.126C193.611 45.7113 193.545 45.39 193.413 45.1621C193.285 44.9297 193.103 44.7679 192.866 44.6768C192.634 44.5811 192.356 44.5332 192.032 44.5332C191.754 44.5332 191.508 44.5811 191.294 44.6768C191.08 44.7725 190.9 44.9046 190.754 45.0732C190.608 45.2373 190.496 45.4264 190.419 45.6406C190.346 45.8548 190.31 46.0827 190.31 46.3242ZM199.866 51.1367C199.351 51.1367 198.884 51.0501 198.465 50.877C198.05 50.6992 197.692 50.4508 197.392 50.1318C197.095 49.8128 196.868 49.4346 196.708 48.9971C196.549 48.5596 196.469 48.0811 196.469 47.5615V47.2744C196.469 46.6729 196.558 46.1374 196.735 45.668C196.913 45.194 197.155 44.793 197.46 44.4648C197.765 44.1367 198.112 43.8883 198.499 43.7197C198.886 43.5511 199.287 43.4668 199.702 43.4668C200.231 43.4668 200.687 43.5579 201.069 43.7402C201.457 43.9225 201.773 44.1777 202.02 44.5059C202.266 44.8294 202.448 45.2122 202.566 45.6543C202.685 46.0918 202.744 46.5703 202.744 47.0898V47.6572H197.221V46.625H201.479V46.5293C201.461 46.2012 201.393 45.8822 201.274 45.5723C201.16 45.2624 200.978 45.0072 200.728 44.8066C200.477 44.6061 200.135 44.5059 199.702 44.5059C199.415 44.5059 199.151 44.5674 198.909 44.6904C198.668 44.8089 198.46 44.9867 198.287 45.2236C198.114 45.4606 197.979 45.75 197.884 46.0918C197.788 46.4336 197.74 46.8278 197.74 47.2744V47.5615C197.74 47.9124 197.788 48.2428 197.884 48.5527C197.984 48.8581 198.128 49.127 198.314 49.3594C198.506 49.5918 198.736 49.7741 199.005 49.9062C199.278 50.0384 199.588 50.1045 199.935 50.1045C200.381 50.1045 200.759 50.0133 201.069 49.8311C201.379 49.6488 201.65 49.4049 201.883 49.0996L202.648 49.708C202.489 49.9495 202.286 50.1797 202.04 50.3984C201.794 50.6172 201.491 50.7949 201.131 50.9316C200.775 51.0684 200.354 51.1367 199.866 51.1367ZM205.485 45.1826V51H204.221V43.6035H205.417L205.485 45.1826ZM205.185 47.0215L204.658 47.001C204.663 46.4951 204.738 46.028 204.884 45.5996C205.03 45.1667 205.235 44.7907 205.499 44.4717C205.763 44.1527 206.078 43.9066 206.442 43.7334C206.812 43.5557 207.219 43.4668 207.666 43.4668C208.031 43.4668 208.359 43.5169 208.65 43.6172C208.942 43.7129 209.19 43.8678 209.396 44.082C209.605 44.2962 209.765 44.5742 209.874 44.916C209.983 45.2533 210.038 45.6657 210.038 46.1533V51H208.767V46.1396C208.767 45.7523 208.71 45.4424 208.596 45.21C208.482 44.973 208.315 44.8021 208.097 44.6973C207.878 44.5879 207.609 44.5332 207.29 44.5332C206.976 44.5332 206.688 44.5993 206.429 44.7314C206.174 44.8636 205.952 45.0459 205.766 45.2783C205.583 45.5107 205.44 45.7773 205.335 46.0781C205.235 46.3743 205.185 46.6888 205.185 47.0215ZM215.056 43.6035V44.5742H211.057V43.6035H215.056ZM212.41 41.8057H213.675V49.168C213.675 49.4186 213.714 49.6077 213.791 49.7354C213.868 49.863 213.969 49.9473 214.092 49.9883C214.215 50.0293 214.347 50.0498 214.488 50.0498C214.593 50.0498 214.702 50.0407 214.816 50.0225C214.935 49.9997 215.024 49.9814 215.083 49.9678L215.09 51C214.99 51.0319 214.857 51.0615 214.693 51.0889C214.534 51.1208 214.34 51.1367 214.112 51.1367C213.802 51.1367 213.518 51.0752 213.258 50.9521C212.998 50.8291 212.791 50.624 212.636 50.3369C212.485 50.0452 212.41 49.6533 212.41 49.1611V41.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M63.2007 70.707V80H62.0264V72.1733L59.6587 73.0366V71.9766L63.0166 70.707H63.2007Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"51.7295",y:"64.5",width:"21",height:"21",rx:"10.5",stroke:"#4272F9"}),(0,h.createElement)("rect",{x:"77.7295",y:"74.5",width:"55.7706",height:"1",stroke:"#4272F9"}),(0,h.createElement)("rect",{x:"138",y:"64",width:"22",height:"22",rx:"11",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M152.168 79.0352V80H146.118V79.1558L149.146 75.7852C149.519 75.3704 149.806 75.0192 150.01 74.7314C150.217 74.4395 150.361 74.1792 150.441 73.9507C150.526 73.7179 150.568 73.481 150.568 73.2397C150.568 72.9351 150.505 72.66 150.378 72.4146C150.255 72.1649 150.073 71.966 149.832 71.8179C149.591 71.6698 149.299 71.5957 148.956 71.5957C148.545 71.5957 148.203 71.6761 147.927 71.8369C147.657 71.9935 147.454 72.2135 147.318 72.4971C147.183 72.7806 147.115 73.1064 147.115 73.4746H145.941C145.941 72.9541 146.055 72.478 146.283 72.0464C146.512 71.6147 146.851 71.272 147.299 71.0181C147.748 70.7599 148.3 70.6309 148.956 70.6309C149.54 70.6309 150.039 70.7345 150.454 70.9419C150.869 71.145 151.186 71.4328 151.406 71.8052C151.63 72.1733 151.742 72.605 151.742 73.1001C151.742 73.3709 151.696 73.646 151.603 73.9253C151.514 74.2004 151.389 74.4754 151.228 74.7505C151.072 75.0256 150.888 75.2964 150.676 75.563C150.469 75.8296 150.247 76.092 150.01 76.3501L147.534 79.0352H152.168Z",fill:"white"}),(0,h.createElement)("rect",{x:"164",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"198.936",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"172.734",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"207.67",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"181.468",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"216.404",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"190.202",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("path",{d:"M234.596 74.8013H235.434C235.845 74.8013 236.183 74.7336 236.45 74.5981C236.721 74.4585 236.922 74.2702 237.053 74.0332C237.188 73.792 237.256 73.5212 237.256 73.2207C237.256 72.8652 237.197 72.5669 237.078 72.3257C236.96 72.0845 236.782 71.9025 236.545 71.7798C236.308 71.6571 236.008 71.5957 235.644 71.5957C235.314 71.5957 235.022 71.6613 234.768 71.7925C234.518 71.9194 234.321 72.1014 234.177 72.3384C234.038 72.5754 233.968 72.8547 233.968 73.1763H232.794C232.794 72.7065 232.912 72.2791 233.149 71.894C233.386 71.509 233.718 71.2021 234.146 70.9736C234.577 70.7451 235.077 70.6309 235.644 70.6309C236.202 70.6309 236.691 70.7303 237.11 70.9292C237.529 71.1239 237.855 71.4159 238.088 71.8052C238.32 72.1903 238.437 72.6706 238.437 73.2461C238.437 73.4788 238.382 73.7285 238.272 73.9951C238.166 74.2575 237.999 74.5029 237.77 74.7314C237.546 74.96 237.254 75.1483 236.894 75.2964C236.535 75.4403 236.103 75.5122 235.599 75.5122H234.596V74.8013ZM234.596 75.7661V75.0615H235.599C236.188 75.0615 236.674 75.1313 237.059 75.271C237.444 75.4106 237.747 75.5968 237.967 75.8296C238.191 76.0623 238.348 76.3184 238.437 76.5977C238.53 76.8727 238.576 77.1478 238.576 77.4229C238.576 77.8545 238.502 78.2375 238.354 78.5718C238.21 78.9061 238.005 79.1896 237.739 79.4224C237.476 79.6551 237.167 79.8307 236.812 79.9492C236.456 80.0677 236.069 80.127 235.65 80.127C235.248 80.127 234.869 80.0698 234.514 79.9556C234.163 79.8413 233.852 79.6763 233.581 79.4604C233.31 79.2404 233.098 78.9717 232.946 78.6543C232.794 78.3327 232.718 77.9666 232.718 77.5562H233.892C233.892 77.8778 233.962 78.1592 234.101 78.4004C234.245 78.6416 234.448 78.8299 234.711 78.9653C234.977 79.0965 235.29 79.1621 235.65 79.1621C236.01 79.1621 236.319 79.1007 236.577 78.978C236.839 78.8511 237.04 78.6606 237.18 78.4067C237.324 78.1528 237.396 77.8333 237.396 77.4482C237.396 77.0632 237.315 76.7479 237.155 76.5024C236.994 76.2528 236.765 76.0687 236.469 75.9502C236.177 75.8275 235.832 75.7661 235.434 75.7661H234.596Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"225.271",y:"64.5",width:"21",height:"21",rx:"10.5",stroke:"#64748B"}),(0,h.createElement)("path",{d:"M47.2939 97.8979V101.281C47.1797 101.451 46.9977 101.641 46.748 101.853C46.4984 102.06 46.1535 102.242 45.7134 102.398C45.2775 102.551 44.7147 102.627 44.0249 102.627C43.4621 102.627 42.9437 102.53 42.4697 102.335C42 102.136 41.5916 101.848 41.2446 101.472C40.9019 101.091 40.6353 100.63 40.4448 100.088C40.2586 99.542 40.1655 98.9242 40.1655 98.2344V97.5171C40.1655 96.8273 40.2459 96.2116 40.4067 95.6699C40.5718 95.1283 40.813 94.6691 41.1304 94.2925C41.4478 93.9116 41.8371 93.6239 42.2983 93.4292C42.7596 93.2303 43.2886 93.1309 43.8853 93.1309C44.592 93.1309 45.1823 93.2536 45.6562 93.499C46.1344 93.7402 46.5068 94.0745 46.7734 94.502C47.0443 94.9294 47.2178 95.416 47.2939 95.9619H46.0688C46.0138 95.6276 45.9038 95.3229 45.7388 95.0479C45.578 94.7728 45.3473 94.5527 45.0469 94.3877C44.7464 94.2184 44.3592 94.1338 43.8853 94.1338C43.4578 94.1338 43.0876 94.2121 42.7744 94.3687C42.4613 94.5252 42.2031 94.7495 42 95.0415C41.7969 95.3335 41.6445 95.6868 41.543 96.1016C41.4456 96.5163 41.397 96.9839 41.397 97.5044V98.2344C41.397 98.7676 41.4583 99.2437 41.5811 99.6626C41.708 100.082 41.8879 100.439 42.1206 100.735C42.3534 101.027 42.6305 101.25 42.9521 101.402C43.278 101.554 43.6377 101.63 44.0312 101.63C44.4671 101.63 44.8205 101.594 45.0913 101.522C45.3621 101.446 45.5737 101.357 45.7261 101.256C45.8784 101.15 45.9948 101.051 46.0752 100.958V98.8882H43.936V97.8979H47.2939ZM51.9976 102.627C51.5194 102.627 51.0856 102.547 50.6963 102.386C50.3112 102.221 49.979 101.99 49.6997 101.694C49.4246 101.398 49.2131 101.046 49.0649 100.64C48.9168 100.234 48.8428 99.7896 48.8428 99.3071V99.0405C48.8428 98.4819 48.9253 97.9847 49.0903 97.5488C49.2554 97.1087 49.4797 96.7363 49.7632 96.4316C50.0467 96.127 50.3683 95.8963 50.728 95.7397C51.0877 95.5832 51.4601 95.5049 51.8452 95.5049C52.3361 95.5049 52.7593 95.5895 53.1147 95.7588C53.4744 95.9281 53.7686 96.165 53.9971 96.4697C54.2256 96.7702 54.3949 97.1257 54.5049 97.5361C54.6149 97.9424 54.6699 98.3867 54.6699 98.8691V99.396H49.541V98.4375H53.4956V98.3486C53.4787 98.0439 53.4152 97.7477 53.3052 97.46C53.1994 97.1722 53.0301 96.9352 52.7974 96.749C52.5646 96.5628 52.2472 96.4697 51.8452 96.4697C51.5786 96.4697 51.3332 96.5269 51.1089 96.6411C50.8846 96.7511 50.6921 96.9162 50.5312 97.1362C50.3704 97.3563 50.2456 97.625 50.1567 97.9424C50.0679 98.2598 50.0234 98.6258 50.0234 99.0405V99.3071C50.0234 99.633 50.0679 99.9398 50.1567 100.228C50.2498 100.511 50.3831 100.761 50.5566 100.977C50.7344 101.192 50.9481 101.362 51.1978 101.484C51.4517 101.607 51.7394 101.668 52.061 101.668C52.4757 101.668 52.827 101.584 53.1147 101.415C53.4025 101.245 53.6543 101.019 53.8701 100.735L54.5811 101.3C54.4329 101.525 54.2446 101.738 54.0161 101.941C53.7876 102.145 53.5062 102.31 53.1719 102.437C52.8418 102.563 52.4504 102.627 51.9976 102.627ZM57.2153 97.0981V102.5H56.041V95.6318H57.1519L57.2153 97.0981ZM56.936 98.8057L56.4473 98.7866C56.4515 98.3169 56.5213 97.8831 56.6567 97.4854C56.7922 97.0833 56.9826 96.7342 57.228 96.438C57.4735 96.1418 57.7655 95.9132 58.104 95.7524C58.4468 95.5874 58.8255 95.5049 59.2402 95.5049C59.5788 95.5049 59.8835 95.5514 60.1543 95.6445C60.4251 95.7334 60.6558 95.8773 60.8462 96.0762C61.0409 96.2751 61.189 96.5332 61.2905 96.8506C61.3921 97.1637 61.4429 97.5467 61.4429 97.9995V102.5H60.2622V97.9868C60.2622 97.6271 60.2093 97.3394 60.1035 97.1235C59.9977 96.9035 59.8433 96.7448 59.6401 96.6475C59.437 96.5459 59.1873 96.4951 58.8911 96.4951C58.5991 96.4951 58.3325 96.5565 58.0913 96.6792C57.8543 96.8019 57.6491 96.9712 57.4756 97.187C57.3063 97.4028 57.173 97.6504 57.0757 97.9297C56.9826 98.2048 56.936 98.4967 56.936 98.8057ZM66.0767 102.627C65.5985 102.627 65.1647 102.547 64.7754 102.386C64.3903 102.221 64.0581 101.99 63.7788 101.694C63.5037 101.398 63.2922 101.046 63.144 100.64C62.9959 100.234 62.9219 99.7896 62.9219 99.3071V99.0405C62.9219 98.4819 63.0044 97.9847 63.1694 97.5488C63.3345 97.1087 63.5588 96.7363 63.8423 96.4316C64.1258 96.127 64.4474 95.8963 64.8071 95.7397C65.1668 95.5832 65.5392 95.5049 65.9243 95.5049C66.4152 95.5049 66.8384 95.5895 67.1938 95.7588C67.5535 95.9281 67.8477 96.165 68.0762 96.4697C68.3047 96.7702 68.474 97.1257 68.584 97.5361C68.694 97.9424 68.749 98.3867 68.749 98.8691V99.396H63.6201V98.4375H67.5747V98.3486C67.5578 98.0439 67.4943 97.7477 67.3843 97.46C67.2785 97.1722 67.1092 96.9352 66.8765 96.749C66.6437 96.5628 66.3263 96.4697 65.9243 96.4697C65.6577 96.4697 65.4123 96.5269 65.188 96.6411C64.9637 96.7511 64.7712 96.9162 64.6104 97.1362C64.4495 97.3563 64.3247 97.625 64.2358 97.9424C64.147 98.2598 64.1025 98.6258 64.1025 99.0405V99.3071C64.1025 99.633 64.147 99.9398 64.2358 100.228C64.3289 100.511 64.4622 100.761 64.6357 100.977C64.8135 101.192 65.0272 101.362 65.2769 101.484C65.5308 101.607 65.8185 101.668 66.1401 101.668C66.5549 101.668 66.9061 101.584 67.1938 101.415C67.4816 101.245 67.7334 101.019 67.9492 100.735L68.6602 101.3C68.512 101.525 68.3237 101.738 68.0952 101.941C67.8667 102.145 67.5853 102.31 67.251 102.437C66.9209 102.563 66.5295 102.627 66.0767 102.627ZM71.2944 96.7109V102.5H70.1201V95.6318H71.2627L71.2944 96.7109ZM73.4399 95.5938L73.4336 96.6855C73.3363 96.6644 73.2432 96.6517 73.1543 96.6475C73.0697 96.639 72.9723 96.6348 72.8623 96.6348C72.5915 96.6348 72.3524 96.6771 72.145 96.7617C71.9377 96.8464 71.762 96.9648 71.6182 97.1172C71.4743 97.2695 71.36 97.4515 71.2754 97.6631C71.195 97.8704 71.1421 98.099 71.1167 98.3486L70.7866 98.5391C70.7866 98.1243 70.8268 97.735 70.9072 97.3711C70.9919 97.0072 71.1209 96.6855 71.2944 96.4062C71.4679 96.1227 71.688 95.9027 71.9546 95.7461C72.2254 95.5853 72.547 95.5049 72.9194 95.5049C73.0041 95.5049 73.1014 95.5155 73.2114 95.5366C73.3215 95.5535 73.3976 95.5726 73.4399 95.5938ZM78.3213 101.326V97.79C78.3213 97.5192 78.2663 97.2843 78.1562 97.0854C78.0505 96.8823 77.8896 96.7257 77.6738 96.6157C77.458 96.5057 77.1914 96.4507 76.874 96.4507C76.5778 96.4507 76.3175 96.5015 76.0933 96.603C75.8732 96.7046 75.6997 96.8379 75.5728 97.0029C75.45 97.168 75.3887 97.3457 75.3887 97.5361H74.2144C74.2144 97.2907 74.2778 97.0474 74.4048 96.8062C74.5317 96.5649 74.7137 96.347 74.9507 96.1523C75.1919 95.9535 75.4797 95.7969 75.814 95.6826C76.1525 95.5641 76.5291 95.5049 76.9438 95.5049C77.4432 95.5049 77.8833 95.5895 78.2642 95.7588C78.6493 95.9281 78.9497 96.1841 79.1655 96.5269C79.3856 96.8654 79.4956 97.2907 79.4956 97.8027V101.002C79.4956 101.23 79.5146 101.474 79.5527 101.732C79.5951 101.99 79.6564 102.212 79.7368 102.398V102.5H78.5117C78.4525 102.365 78.4059 102.185 78.3721 101.96C78.3382 101.732 78.3213 101.52 78.3213 101.326ZM78.5244 98.3359L78.5371 99.1611H77.3501C77.0158 99.1611 76.7174 99.1886 76.4551 99.2437C76.1927 99.2944 75.9727 99.3727 75.7949 99.4785C75.6172 99.5843 75.4818 99.7176 75.3887 99.8784C75.2956 100.035 75.249 100.219 75.249 100.431C75.249 100.646 75.2977 100.843 75.395 101.021C75.4924 101.199 75.6383 101.34 75.833 101.446C76.0319 101.548 76.2752 101.599 76.563 101.599C76.9227 101.599 77.2401 101.522 77.5151 101.37C77.7902 101.218 78.0081 101.032 78.1689 100.812C78.334 100.591 78.4229 100.378 78.4355 100.17L78.937 100.735C78.9074 100.913 78.827 101.11 78.6958 101.326C78.5646 101.542 78.389 101.749 78.1689 101.948C77.9531 102.142 77.695 102.305 77.3945 102.437C77.0983 102.563 76.764 102.627 76.3916 102.627C75.9261 102.627 75.5177 102.536 75.1665 102.354C74.8195 102.172 74.5487 101.929 74.354 101.624C74.1636 101.315 74.0684 100.97 74.0684 100.589C74.0684 100.221 74.1403 99.8975 74.2842 99.6182C74.4281 99.3346 74.6354 99.0998 74.9062 98.9136C75.1771 98.7231 75.5029 98.5793 75.8838 98.4819C76.2646 98.3846 76.6899 98.3359 77.1597 98.3359H78.5244ZM82.6187 92.75V102.5H81.438V92.75H82.6187Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M139.955 97.8979V101.281C139.84 101.451 139.658 101.641 139.409 101.853C139.159 102.06 138.814 102.242 138.374 102.398C137.938 102.551 137.375 102.627 136.686 102.627C136.123 102.627 135.604 102.53 135.13 102.335C134.661 102.136 134.252 101.848 133.905 101.472C133.562 101.091 133.296 100.63 133.105 100.088C132.919 99.542 132.826 98.9242 132.826 98.2344V97.5171C132.826 96.8273 132.907 96.2116 133.067 95.6699C133.232 95.1283 133.474 94.6691 133.791 94.2925C134.108 93.9116 134.498 93.6239 134.959 93.4292C135.42 93.2303 135.949 93.1309 136.546 93.1309C137.253 93.1309 137.843 93.2536 138.317 93.499C138.795 93.7402 139.167 94.0745 139.434 94.502C139.705 94.9294 139.878 95.416 139.955 95.9619H138.729C138.674 95.6276 138.564 95.3229 138.399 95.0479C138.239 94.7728 138.008 94.5527 137.708 94.3877C137.407 94.2184 137.02 94.1338 136.546 94.1338C136.118 94.1338 135.748 94.2121 135.435 94.3687C135.122 94.5252 134.864 94.7495 134.661 95.0415C134.458 95.3335 134.305 95.6868 134.204 96.1016C134.106 96.5163 134.058 96.9839 134.058 97.5044V98.2344C134.058 98.7676 134.119 99.2437 134.242 99.6626C134.369 100.082 134.549 100.439 134.781 100.735C135.014 101.027 135.291 101.25 135.613 101.402C135.939 101.554 136.298 101.63 136.692 101.63C137.128 101.63 137.481 101.594 137.752 101.522C138.023 101.446 138.234 101.357 138.387 101.256C138.539 101.15 138.655 101.051 138.736 100.958V98.8882H136.597V97.8979H139.955ZM146.01 100.913V95.6318H147.191V102.5H146.067L146.01 100.913ZM146.232 99.4658L146.721 99.4531C146.721 99.9102 146.673 100.333 146.575 100.723C146.482 101.108 146.33 101.442 146.118 101.726C145.907 102.009 145.629 102.231 145.287 102.392C144.944 102.549 144.527 102.627 144.036 102.627C143.702 102.627 143.395 102.578 143.116 102.481C142.841 102.384 142.604 102.233 142.405 102.03C142.206 101.827 142.051 101.563 141.941 101.237C141.836 100.911 141.783 100.52 141.783 100.062V95.6318H142.957V100.075C142.957 100.384 142.991 100.64 143.059 100.843C143.131 101.042 143.226 101.201 143.344 101.319C143.467 101.434 143.602 101.514 143.75 101.561C143.903 101.607 144.059 101.63 144.22 101.63C144.72 101.63 145.115 101.535 145.407 101.345C145.699 101.15 145.909 100.89 146.036 100.564C146.167 100.234 146.232 99.8678 146.232 99.4658ZM151.831 102.627C151.353 102.627 150.919 102.547 150.53 102.386C150.145 102.221 149.812 101.99 149.533 101.694C149.258 101.398 149.047 101.046 148.898 100.64C148.75 100.234 148.676 99.7896 148.676 99.3071V99.0405C148.676 98.4819 148.759 97.9847 148.924 97.5488C149.089 97.1087 149.313 96.7363 149.597 96.4316C149.88 96.127 150.202 95.8963 150.562 95.7397C150.921 95.5832 151.294 95.5049 151.679 95.5049C152.17 95.5049 152.593 95.5895 152.948 95.7588C153.308 95.9281 153.602 96.165 153.831 96.4697C154.059 96.7702 154.228 97.1257 154.338 97.5361C154.448 97.9424 154.503 98.3867 154.503 98.8691V99.396H149.375V98.4375H153.329V98.3486C153.312 98.0439 153.249 97.7477 153.139 97.46C153.033 97.1722 152.864 96.9352 152.631 96.749C152.398 96.5628 152.081 96.4697 151.679 96.4697C151.412 96.4697 151.167 96.5269 150.942 96.6411C150.718 96.7511 150.526 96.9162 150.365 97.1362C150.204 97.3563 150.079 97.625 149.99 97.9424C149.901 98.2598 149.857 98.6258 149.857 99.0405V99.3071C149.857 99.633 149.901 99.9398 149.99 100.228C150.083 100.511 150.217 100.761 150.39 100.977C150.568 101.192 150.782 101.362 151.031 101.484C151.285 101.607 151.573 101.668 151.895 101.668C152.309 101.668 152.66 101.584 152.948 101.415C153.236 101.245 153.488 101.019 153.704 100.735L154.415 101.3C154.266 101.525 154.078 101.738 153.85 101.941C153.621 102.145 153.34 102.31 153.005 102.437C152.675 102.563 152.284 102.627 151.831 102.627ZM159.874 100.678C159.874 100.509 159.835 100.352 159.759 100.208C159.687 100.06 159.537 99.9271 159.309 99.8086C159.084 99.6859 158.746 99.5801 158.293 99.4912C157.912 99.4108 157.567 99.3156 157.258 99.2056C156.954 99.0955 156.693 98.9622 156.478 98.8057C156.266 98.6491 156.103 98.465 155.989 98.2534C155.875 98.0418 155.817 97.7943 155.817 97.5107C155.817 97.2399 155.877 96.9839 155.995 96.7427C156.118 96.5015 156.289 96.2878 156.509 96.1016C156.734 95.9154 157.002 95.7694 157.315 95.6636C157.629 95.5578 157.978 95.5049 158.363 95.5049C158.913 95.5049 159.383 95.6022 159.772 95.7969C160.161 95.9915 160.46 96.2518 160.667 96.5776C160.874 96.8993 160.978 97.2568 160.978 97.6504H159.804C159.804 97.46 159.747 97.2759 159.632 97.0981C159.522 96.9162 159.359 96.766 159.144 96.6475C158.932 96.529 158.672 96.4697 158.363 96.4697C158.037 96.4697 157.772 96.5205 157.569 96.6221C157.37 96.7194 157.224 96.8442 157.131 96.9966C157.042 97.1489 156.998 97.3097 156.998 97.479C156.998 97.606 157.019 97.7202 157.062 97.8218C157.108 97.9191 157.188 98.0101 157.303 98.0947C157.417 98.1751 157.578 98.2513 157.785 98.3232C157.993 98.3952 158.257 98.4671 158.579 98.5391C159.141 98.666 159.605 98.8184 159.969 98.9961C160.333 99.1738 160.604 99.3918 160.781 99.6499C160.959 99.908 161.048 100.221 161.048 100.589C161.048 100.89 160.984 101.165 160.857 101.415C160.735 101.664 160.555 101.88 160.318 102.062C160.085 102.24 159.806 102.379 159.48 102.481C159.158 102.578 158.797 102.627 158.395 102.627C157.789 102.627 157.277 102.519 156.858 102.303C156.439 102.087 156.122 101.808 155.906 101.465C155.69 101.123 155.583 100.761 155.583 100.38H156.763C156.78 100.701 156.873 100.958 157.042 101.148C157.212 101.334 157.419 101.467 157.665 101.548C157.91 101.624 158.153 101.662 158.395 101.662C158.716 101.662 158.985 101.62 159.201 101.535C159.421 101.451 159.588 101.334 159.702 101.186C159.816 101.038 159.874 100.869 159.874 100.678ZM165.466 95.6318V96.5332H161.752V95.6318H165.466ZM163.009 93.9624H164.184V100.799C164.184 101.032 164.22 101.207 164.292 101.326C164.363 101.444 164.457 101.522 164.571 101.561C164.685 101.599 164.808 101.618 164.939 101.618C165.036 101.618 165.138 101.609 165.244 101.592C165.354 101.571 165.436 101.554 165.491 101.542L165.498 102.5C165.404 102.53 165.282 102.557 165.129 102.583C164.981 102.612 164.801 102.627 164.59 102.627C164.302 102.627 164.038 102.57 163.796 102.456C163.555 102.341 163.363 102.151 163.219 101.884C163.079 101.613 163.009 101.25 163.009 100.792V93.9624Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M226.556 93.7578V103H225.331V93.7578H226.556ZM229.781 97.5981V103H228.606V96.1318H229.717L229.781 97.5981ZM229.501 99.3057L229.013 99.2866C229.017 98.8169 229.087 98.3831 229.222 97.9854C229.358 97.5833 229.548 97.2342 229.793 96.938C230.039 96.6418 230.331 96.4132 230.669 96.2524C231.012 96.0874 231.391 96.0049 231.806 96.0049C232.144 96.0049 232.449 96.0514 232.72 96.1445C232.991 96.2334 233.221 96.3773 233.412 96.5762C233.606 96.7751 233.754 97.0332 233.856 97.3506C233.958 97.6637 234.008 98.0467 234.008 98.4995V103H232.828V98.4868C232.828 98.1271 232.775 97.8394 232.669 97.6235C232.563 97.4035 232.409 97.2448 232.206 97.1475C232.002 97.0459 231.753 96.9951 231.457 96.9951C231.165 96.9951 230.898 97.0565 230.657 97.1792C230.42 97.3019 230.215 97.4712 230.041 97.687C229.872 97.9028 229.738 98.1504 229.641 98.4297C229.548 98.7048 229.501 98.9967 229.501 99.3057ZM237.544 103H236.37V95.4082C236.37 94.9131 236.458 94.4963 236.636 94.1577C236.818 93.8149 237.078 93.5568 237.417 93.3833C237.756 93.2056 238.158 93.1167 238.623 93.1167C238.758 93.1167 238.894 93.1252 239.029 93.1421C239.169 93.159 239.304 93.1844 239.436 93.2183L239.372 94.1768C239.283 94.1556 239.182 94.1408 239.067 94.1323C238.957 94.1239 238.847 94.1196 238.737 94.1196C238.488 94.1196 238.272 94.1704 238.09 94.272C237.912 94.3693 237.777 94.5132 237.684 94.7036C237.59 94.894 237.544 95.1289 237.544 95.4082V103ZM239.004 96.1318V97.0332H235.284V96.1318H239.004ZM240 99.6421V99.4961C240 99.001 240.072 98.5418 240.216 98.1187C240.36 97.6912 240.568 97.321 240.838 97.0078C241.109 96.6904 241.437 96.445 241.822 96.2715C242.207 96.0938 242.639 96.0049 243.117 96.0049C243.6 96.0049 244.033 96.0938 244.418 96.2715C244.808 96.445 245.138 96.6904 245.409 97.0078C245.684 97.321 245.893 97.6912 246.037 98.1187C246.181 98.5418 246.253 99.001 246.253 99.4961V99.6421C246.253 100.137 246.181 100.596 246.037 101.02C245.893 101.443 245.684 101.813 245.409 102.13C245.138 102.444 244.81 102.689 244.425 102.867C244.044 103.04 243.612 103.127 243.13 103.127C242.647 103.127 242.214 103.04 241.829 102.867C241.444 102.689 241.113 102.444 240.838 102.13C240.568 101.813 240.36 101.443 240.216 101.02C240.072 100.596 240 100.137 240 99.6421ZM241.175 99.4961V99.6421C241.175 99.9849 241.215 100.309 241.295 100.613C241.376 100.914 241.496 101.18 241.657 101.413C241.822 101.646 242.028 101.83 242.273 101.965C242.518 102.097 242.804 102.162 243.13 102.162C243.451 102.162 243.733 102.097 243.974 101.965C244.22 101.83 244.423 101.646 244.583 101.413C244.744 101.18 244.865 100.914 244.945 100.613C245.03 100.309 245.072 99.9849 245.072 99.6421V99.4961C245.072 99.1576 245.03 98.8381 244.945 98.5376C244.865 98.2329 244.742 97.9642 244.577 97.7314C244.416 97.4945 244.213 97.3083 243.968 97.1729C243.727 97.0374 243.443 96.9697 243.117 96.9697C242.796 96.9697 242.512 97.0374 242.267 97.1729C242.025 97.3083 241.822 97.4945 241.657 97.7314C241.496 97.9642 241.376 98.2329 241.295 98.5376C241.215 98.8381 241.175 99.1576 241.175 99.4961Z",fill:"#0F172A"})),{FieldSettingsWrapper:fc}=JetFBComponents,{__:Vc}=wp.i18n,{SelectControl:Hc}=wp.components,{InspectorControls:hc,useBlockProps:bc}=wp.blockEditor?wp.blockEditor:wp.editor,{RawHTML:Mc}=wp.element,{useState:Lc,useEffect:gc}=wp.element,Zc=JSON.parse('{"apiVersion":3,"name":"jet-forms/progress-bar","category":"jet-form-builder-elements","keywords":["jetformbuilder","progress","steps","bar","break","form"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Progress Bar","icon":"\\n\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"progress_type":{"type":"string","default":"default"},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:yc}=wp.i18n,{name:Ec,icon:wc=""}=Zc,vc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:wc}}),description:yc("Use the Progress Bar block to add the navigation and show users on what page they are now and how many pages are left to finish the form.","jet-form-builder"),edit:function(e){const C=bc(),{attributes:t,setAttributes:l,editProps:{uniqKey:r}}=e,[n,a]=Lc(""),i=e=>{const C=JetFormProgressBar.progress_types.find((C=>e===C.value));return C?C.html:""};return gc((()=>{a(i(t.progress_type))}),[t.progress_type]),t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},pc):[(0,h.createElement)(hc,{key:r("InspectorControls")},(0,h.createElement)(fc,{key:r("FieldSettingsWrapper"),...e},1{l({progress_type:e}),a(i(e))},options:JetFormProgressBar.progress_types}))),(0,h.createElement)("div",{key:r("viewBlock"),...C},(0,h.createElement)(Mc,null,n))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}}},_c=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_76_1348)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,h.createElement)("rect",{x:"82",y:"29",width:"113",height:"86",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M103.46 54.4844C103.46 54.252 103.424 54.0469 103.351 53.8691C103.282 53.6868 103.159 53.5228 102.981 53.377C102.808 53.2311 102.567 53.0921 102.257 52.96C101.951 52.8278 101.564 52.6934 101.095 52.5566C100.603 52.4108 100.158 52.249 99.7617 52.0713C99.3652 51.889 99.0257 51.6816 98.7432 51.4492C98.4606 51.2168 98.2441 50.9502 98.0938 50.6494C97.9434 50.3486 97.8682 50.0046 97.8682 49.6172C97.8682 49.2298 97.9479 48.8721 98.1074 48.5439C98.2669 48.2158 98.4948 47.931 98.791 47.6895C99.0918 47.4434 99.4495 47.252 99.8643 47.1152C100.279 46.9785 100.742 46.9102 101.252 46.9102C101.999 46.9102 102.633 47.0537 103.152 47.3408C103.676 47.6234 104.075 47.9948 104.349 48.4551C104.622 48.9108 104.759 49.3984 104.759 49.918H103.446C103.446 49.5443 103.367 49.2139 103.207 48.9268C103.048 48.6351 102.806 48.4072 102.482 48.2432C102.159 48.0745 101.749 47.9902 101.252 47.9902C100.783 47.9902 100.395 48.0609 100.09 48.2021C99.7845 48.3434 99.5566 48.5348 99.4062 48.7764C99.2604 49.0179 99.1875 49.2936 99.1875 49.6035C99.1875 49.8132 99.2308 50.0046 99.3174 50.1777C99.4085 50.3464 99.5475 50.5036 99.7344 50.6494C99.9258 50.7952 100.167 50.9297 100.459 51.0527C100.755 51.1758 101.108 51.2943 101.519 51.4082C102.084 51.5677 102.571 51.7454 102.981 51.9414C103.392 52.1374 103.729 52.3584 103.993 52.6045C104.262 52.846 104.46 53.1217 104.588 53.4316C104.72 53.737 104.786 54.0833 104.786 54.4707C104.786 54.8763 104.704 55.2432 104.54 55.5713C104.376 55.8994 104.141 56.1797 103.836 56.4121C103.531 56.6445 103.164 56.8245 102.735 56.9521C102.312 57.0752 101.838 57.1367 101.313 57.1367C100.853 57.1367 100.4 57.0729 99.9531 56.9453C99.5111 56.8177 99.1077 56.6263 98.7432 56.3711C98.3831 56.1159 98.0938 55.8014 97.875 55.4277C97.6608 55.0495 97.5537 54.612 97.5537 54.1152H98.8662C98.8662 54.457 98.9323 54.751 99.0645 54.9971C99.1966 55.2386 99.3766 55.4391 99.6045 55.5986C99.8369 55.7581 100.099 55.8766 100.391 55.9541C100.687 56.027 100.994 56.0635 101.313 56.0635C101.774 56.0635 102.163 55.9997 102.482 55.8721C102.801 55.7445 103.043 55.5622 103.207 55.3252C103.376 55.0882 103.46 54.8079 103.46 54.4844ZM109.373 49.6035V50.5742H105.374V49.6035H109.373ZM106.728 47.8057H107.992V55.168C107.992 55.4186 108.031 55.6077 108.108 55.7354C108.186 55.863 108.286 55.9473 108.409 55.9883C108.532 56.0293 108.664 56.0498 108.806 56.0498C108.91 56.0498 109.02 56.0407 109.134 56.0225C109.252 55.9997 109.341 55.9814 109.4 55.9678L109.407 57C109.307 57.0319 109.175 57.0615 109.011 57.0889C108.851 57.1208 108.658 57.1367 108.43 57.1367C108.12 57.1367 107.835 57.0752 107.575 56.9521C107.315 56.8291 107.108 56.624 106.953 56.3369C106.803 56.0452 106.728 55.6533 106.728 55.1611V47.8057ZM113.926 57.1367C113.411 57.1367 112.944 57.0501 112.524 56.877C112.11 56.6992 111.752 56.4508 111.451 56.1318C111.155 55.8128 110.927 55.4346 110.768 54.9971C110.608 54.5596 110.528 54.0811 110.528 53.5615V53.2744C110.528 52.6729 110.617 52.1374 110.795 51.668C110.973 51.194 111.214 50.793 111.52 50.4648C111.825 50.1367 112.171 49.8883 112.559 49.7197C112.946 49.5511 113.347 49.4668 113.762 49.4668C114.29 49.4668 114.746 49.5579 115.129 49.7402C115.516 49.9225 115.833 50.1777 116.079 50.5059C116.325 50.8294 116.507 51.2122 116.626 51.6543C116.744 52.0918 116.804 52.5703 116.804 53.0898V53.6572H111.28V52.625H115.539V52.5293C115.521 52.2012 115.452 51.8822 115.334 51.5723C115.22 51.2624 115.038 51.0072 114.787 50.8066C114.536 50.6061 114.195 50.5059 113.762 50.5059C113.475 50.5059 113.21 50.5674 112.969 50.6904C112.727 50.8089 112.52 50.9867 112.347 51.2236C112.174 51.4606 112.039 51.75 111.943 52.0918C111.848 52.4336 111.8 52.8278 111.8 53.2744V53.5615C111.8 53.9124 111.848 54.2428 111.943 54.5527C112.044 54.8581 112.187 55.127 112.374 55.3594C112.565 55.5918 112.796 55.7741 113.064 55.9062C113.338 56.0384 113.648 56.1045 113.994 56.1045C114.441 56.1045 114.819 56.0133 115.129 55.8311C115.439 55.6488 115.71 55.4049 115.942 55.0996L116.708 55.708C116.549 55.9495 116.346 56.1797 116.1 56.3984C115.854 56.6172 115.55 56.7949 115.19 56.9316C114.835 57.0684 114.413 57.1367 113.926 57.1367ZM119.545 51.0254V59.8438H118.273V49.6035H119.436L119.545 51.0254ZM124.528 53.2402V53.3838C124.528 53.9215 124.465 54.4206 124.337 54.8809C124.209 55.3366 124.022 55.7331 123.776 56.0703C123.535 56.4076 123.236 56.6696 122.881 56.8564C122.525 57.0433 122.118 57.1367 121.657 57.1367C121.188 57.1367 120.773 57.0592 120.413 56.9043C120.053 56.7493 119.748 56.5238 119.497 56.2275C119.246 55.9313 119.046 55.5758 118.896 55.1611C118.75 54.7464 118.649 54.2793 118.595 53.7598V52.9941C118.649 52.4473 118.752 51.9574 118.902 51.5244C119.053 51.0915 119.251 50.7223 119.497 50.417C119.748 50.1071 120.051 49.8724 120.406 49.7129C120.762 49.5488 121.172 49.4668 121.637 49.4668C122.102 49.4668 122.514 49.5579 122.874 49.7402C123.234 49.918 123.537 50.1732 123.783 50.5059C124.029 50.8385 124.214 51.2373 124.337 51.7021C124.465 52.1624 124.528 52.6751 124.528 53.2402ZM123.257 53.3838V53.2402C123.257 52.8711 123.218 52.5247 123.141 52.2012C123.063 51.873 122.942 51.5859 122.778 51.3398C122.619 51.0892 122.414 50.8932 122.163 50.752C121.912 50.6061 121.614 50.5332 121.268 50.5332C120.949 50.5332 120.671 50.5879 120.434 50.6973C120.201 50.8066 120.003 50.9548 119.839 51.1416C119.675 51.3239 119.54 51.5335 119.436 51.7705C119.335 52.0029 119.26 52.2445 119.21 52.4951V54.2656C119.301 54.5846 119.429 54.8854 119.593 55.168C119.757 55.446 119.976 55.6715 120.249 55.8447C120.522 56.0133 120.867 56.0977 121.281 56.0977C121.623 56.0977 121.917 56.027 122.163 55.8857C122.414 55.7399 122.619 55.5417 122.778 55.291C122.942 55.0404 123.063 54.7533 123.141 54.4297C123.218 54.1016 123.257 53.7529 123.257 53.3838ZM130.161 46.9922V57H128.896V48.5713L126.347 49.501V48.3594L129.963 46.9922H130.161Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"97.5",y:"70.5",width:"82",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"97.5",y:"70.5",width:"82",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("rect",{x:"205",y:"29",width:"113",height:"86",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M226.46 54.4844C226.46 54.252 226.424 54.0469 226.351 53.8691C226.282 53.6868 226.159 53.5228 225.981 53.377C225.808 53.2311 225.567 53.0921 225.257 52.96C224.951 52.8278 224.564 52.6934 224.095 52.5566C223.603 52.4108 223.158 52.249 222.762 52.0713C222.365 51.889 222.026 51.6816 221.743 51.4492C221.461 51.2168 221.244 50.9502 221.094 50.6494C220.943 50.3486 220.868 50.0046 220.868 49.6172C220.868 49.2298 220.948 48.8721 221.107 48.5439C221.267 48.2158 221.495 47.931 221.791 47.6895C222.092 47.4434 222.45 47.252 222.864 47.1152C223.279 46.9785 223.742 46.9102 224.252 46.9102C224.999 46.9102 225.633 47.0537 226.152 47.3408C226.676 47.6234 227.075 47.9948 227.349 48.4551C227.622 48.9108 227.759 49.3984 227.759 49.918H226.446C226.446 49.5443 226.367 49.2139 226.207 48.9268C226.048 48.6351 225.806 48.4072 225.482 48.2432C225.159 48.0745 224.749 47.9902 224.252 47.9902C223.783 47.9902 223.395 48.0609 223.09 48.2021C222.785 48.3434 222.557 48.5348 222.406 48.7764C222.26 49.0179 222.188 49.2936 222.188 49.6035C222.188 49.8132 222.231 50.0046 222.317 50.1777C222.409 50.3464 222.548 50.5036 222.734 50.6494C222.926 50.7952 223.167 50.9297 223.459 51.0527C223.755 51.1758 224.108 51.2943 224.519 51.4082C225.084 51.5677 225.571 51.7454 225.981 51.9414C226.392 52.1374 226.729 52.3584 226.993 52.6045C227.262 52.846 227.46 53.1217 227.588 53.4316C227.72 53.737 227.786 54.0833 227.786 54.4707C227.786 54.8763 227.704 55.2432 227.54 55.5713C227.376 55.8994 227.141 56.1797 226.836 56.4121C226.531 56.6445 226.164 56.8245 225.735 56.9521C225.312 57.0752 224.838 57.1367 224.313 57.1367C223.853 57.1367 223.4 57.0729 222.953 56.9453C222.511 56.8177 222.108 56.6263 221.743 56.3711C221.383 56.1159 221.094 55.8014 220.875 55.4277C220.661 55.0495 220.554 54.612 220.554 54.1152H221.866C221.866 54.457 221.932 54.751 222.064 54.9971C222.197 55.2386 222.377 55.4391 222.604 55.5986C222.837 55.7581 223.099 55.8766 223.391 55.9541C223.687 56.027 223.994 56.0635 224.313 56.0635C224.774 56.0635 225.163 55.9997 225.482 55.8721C225.801 55.7445 226.043 55.5622 226.207 55.3252C226.376 55.0882 226.46 54.8079 226.46 54.4844ZM232.373 49.6035V50.5742H228.374V49.6035H232.373ZM229.728 47.8057H230.992V55.168C230.992 55.4186 231.031 55.6077 231.108 55.7354C231.186 55.863 231.286 55.9473 231.409 55.9883C231.532 56.0293 231.664 56.0498 231.806 56.0498C231.91 56.0498 232.02 56.0407 232.134 56.0225C232.252 55.9997 232.341 55.9814 232.4 55.9678L232.407 57C232.307 57.0319 232.175 57.0615 232.011 57.0889C231.851 57.1208 231.658 57.1367 231.43 57.1367C231.12 57.1367 230.835 57.0752 230.575 56.9521C230.315 56.8291 230.108 56.624 229.953 56.3369C229.803 56.0452 229.728 55.6533 229.728 55.1611V47.8057ZM236.926 57.1367C236.411 57.1367 235.944 57.0501 235.524 56.877C235.11 56.6992 234.752 56.4508 234.451 56.1318C234.155 55.8128 233.927 55.4346 233.768 54.9971C233.608 54.5596 233.528 54.0811 233.528 53.5615V53.2744C233.528 52.6729 233.617 52.1374 233.795 51.668C233.973 51.194 234.214 50.793 234.52 50.4648C234.825 50.1367 235.171 49.8883 235.559 49.7197C235.946 49.5511 236.347 49.4668 236.762 49.4668C237.29 49.4668 237.746 49.5579 238.129 49.7402C238.516 49.9225 238.833 50.1777 239.079 50.5059C239.325 50.8294 239.507 51.2122 239.626 51.6543C239.744 52.0918 239.804 52.5703 239.804 53.0898V53.6572H234.28V52.625H238.539V52.5293C238.521 52.2012 238.452 51.8822 238.334 51.5723C238.22 51.2624 238.038 51.0072 237.787 50.8066C237.536 50.6061 237.195 50.5059 236.762 50.5059C236.475 50.5059 236.21 50.5674 235.969 50.6904C235.727 50.8089 235.52 50.9867 235.347 51.2236C235.174 51.4606 235.039 51.75 234.943 52.0918C234.848 52.4336 234.8 52.8278 234.8 53.2744V53.5615C234.8 53.9124 234.848 54.2428 234.943 54.5527C235.044 54.8581 235.187 55.127 235.374 55.3594C235.565 55.5918 235.796 55.7741 236.064 55.9062C236.338 56.0384 236.648 56.1045 236.994 56.1045C237.441 56.1045 237.819 56.0133 238.129 55.8311C238.439 55.6488 238.71 55.4049 238.942 55.0996L239.708 55.708C239.549 55.9495 239.346 56.1797 239.1 56.3984C238.854 56.6172 238.55 56.7949 238.19 56.9316C237.835 57.0684 237.413 57.1367 236.926 57.1367ZM242.545 51.0254V59.8438H241.273V49.6035H242.436L242.545 51.0254ZM247.528 53.2402V53.3838C247.528 53.9215 247.465 54.4206 247.337 54.8809C247.209 55.3366 247.022 55.7331 246.776 56.0703C246.535 56.4076 246.236 56.6696 245.881 56.8564C245.525 57.0433 245.118 57.1367 244.657 57.1367C244.188 57.1367 243.773 57.0592 243.413 56.9043C243.053 56.7493 242.748 56.5238 242.497 56.2275C242.246 55.9313 242.046 55.5758 241.896 55.1611C241.75 54.7464 241.649 54.2793 241.595 53.7598V52.9941C241.649 52.4473 241.752 51.9574 241.902 51.5244C242.053 51.0915 242.251 50.7223 242.497 50.417C242.748 50.1071 243.051 49.8724 243.406 49.7129C243.762 49.5488 244.172 49.4668 244.637 49.4668C245.102 49.4668 245.514 49.5579 245.874 49.7402C246.234 49.918 246.537 50.1732 246.783 50.5059C247.029 50.8385 247.214 51.2373 247.337 51.7021C247.465 52.1624 247.528 52.6751 247.528 53.2402ZM246.257 53.3838V53.2402C246.257 52.8711 246.218 52.5247 246.141 52.2012C246.063 51.873 245.942 51.5859 245.778 51.3398C245.619 51.0892 245.414 50.8932 245.163 50.752C244.912 50.6061 244.614 50.5332 244.268 50.5332C243.949 50.5332 243.671 50.5879 243.434 50.6973C243.201 50.8066 243.003 50.9548 242.839 51.1416C242.675 51.3239 242.54 51.5335 242.436 51.7705C242.335 52.0029 242.26 52.2445 242.21 52.4951V54.2656C242.301 54.5846 242.429 54.8854 242.593 55.168C242.757 55.446 242.976 55.6715 243.249 55.8447C243.522 56.0133 243.867 56.0977 244.281 56.0977C244.623 56.0977 244.917 56.027 245.163 55.8857C245.414 55.7399 245.619 55.5417 245.778 55.291C245.942 55.0404 246.063 54.7533 246.141 54.4297C246.218 54.1016 246.257 53.7529 246.257 53.3838ZM255.526 55.9609V57H249.012V56.0908L252.272 52.4609C252.674 52.0143 252.983 51.6361 253.202 51.3262C253.425 51.0117 253.58 50.7314 253.667 50.4854C253.758 50.2347 253.804 49.9795 253.804 49.7197C253.804 49.3916 253.735 49.0954 253.599 48.8311C253.466 48.5622 253.271 48.348 253.011 48.1885C252.751 48.029 252.437 47.9492 252.067 47.9492C251.625 47.9492 251.256 48.0358 250.96 48.209C250.668 48.3776 250.45 48.6146 250.304 48.9199C250.158 49.2253 250.085 49.5762 250.085 49.9727H248.82C248.82 49.4121 248.943 48.8994 249.189 48.4346C249.436 47.9697 249.8 47.6006 250.283 47.3271C250.766 47.0492 251.361 46.9102 252.067 46.9102C252.696 46.9102 253.234 47.0218 253.681 47.2451C254.127 47.4639 254.469 47.7738 254.706 48.1748C254.948 48.5713 255.068 49.0361 255.068 49.5693C255.068 49.861 255.018 50.1572 254.918 50.458C254.822 50.7542 254.688 51.0505 254.515 51.3467C254.346 51.6429 254.148 51.9346 253.92 52.2217C253.697 52.5088 253.457 52.7913 253.202 53.0693L250.536 55.9609H255.526Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"220.5",y:"70.5",width:"82",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"220.5",y:"70.5",width:"82",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M15 57C15 54.7909 16.7909 53 19 53H82V91H19C16.7909 91 15 89.2091 15 87V57Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M30.9985 74.1641C30.9985 73.9482 30.9647 73.7578 30.897 73.5928C30.8335 73.4235 30.7192 73.2712 30.5542 73.1357C30.3934 73.0003 30.1691 72.8713 29.8813 72.7485C29.5978 72.6258 29.2381 72.501 28.8022 72.374C28.3452 72.2386 27.9326 72.0884 27.5645 71.9233C27.1963 71.7541 26.881 71.5615 26.6187 71.3457C26.3563 71.1299 26.1553 70.8823 26.0156 70.603C25.876 70.3237 25.8062 70.0042 25.8062 69.6445C25.8062 69.2848 25.8802 68.9526 26.0283 68.6479C26.1764 68.3433 26.388 68.0788 26.6631 67.8545C26.9424 67.626 27.2746 67.4482 27.6597 67.3213C28.0448 67.1943 28.4743 67.1309 28.9482 67.1309C29.6423 67.1309 30.2305 67.2642 30.7129 67.5308C31.1995 67.7931 31.5698 68.138 31.8237 68.5654C32.0776 68.9886 32.2046 69.4414 32.2046 69.9238H30.9858C30.9858 69.5768 30.9118 69.27 30.7637 69.0034C30.6156 68.7326 30.3913 68.521 30.0908 68.3687C29.7904 68.2121 29.4095 68.1338 28.9482 68.1338C28.5124 68.1338 28.1527 68.1994 27.8691 68.3306C27.5856 68.4618 27.374 68.6395 27.2344 68.8638C27.099 69.0881 27.0312 69.3441 27.0312 69.6318C27.0312 69.8265 27.0715 70.0042 27.1519 70.165C27.2365 70.3216 27.3656 70.4676 27.5391 70.603C27.7168 70.7384 27.9411 70.8633 28.2119 70.9775C28.487 71.0918 28.8149 71.2018 29.1958 71.3076C29.7205 71.4557 30.1733 71.6208 30.5542 71.8027C30.9351 71.9847 31.2482 72.1899 31.4937 72.4185C31.7433 72.6427 31.9274 72.8988 32.0459 73.1865C32.1686 73.4701 32.23 73.7917 32.23 74.1514C32.23 74.528 32.1538 74.8687 32.0015 75.1733C31.8491 75.478 31.6312 75.7383 31.3477 75.9541C31.0641 76.1699 30.7235 76.3371 30.3257 76.4556C29.9321 76.5698 29.492 76.627 29.0054 76.627C28.578 76.627 28.1569 76.5677 27.7422 76.4492C27.3317 76.3307 26.9572 76.153 26.6187 75.916C26.2843 75.679 26.0156 75.387 25.8125 75.04C25.6136 74.6888 25.5142 74.2826 25.5142 73.8213H26.7329C26.7329 74.1387 26.7943 74.4116 26.917 74.6401C27.0397 74.8644 27.2069 75.0506 27.4185 75.1987C27.6343 75.3468 27.8776 75.4569 28.1484 75.5288C28.4235 75.5965 28.7091 75.6304 29.0054 75.6304C29.4328 75.6304 29.7946 75.5711 30.0908 75.4526C30.387 75.3341 30.6113 75.1649 30.7637 74.9448C30.9202 74.7248 30.9985 74.4645 30.9985 74.1641ZM36.4893 69.6318V70.5332H32.7759V69.6318H36.4893ZM34.0327 67.9624H35.207V74.7988C35.207 75.0316 35.243 75.2072 35.3149 75.3257C35.3869 75.4442 35.48 75.5225 35.5942 75.5605C35.7085 75.5986 35.8312 75.6177 35.9624 75.6177C36.0597 75.6177 36.1613 75.6092 36.2671 75.5923C36.3771 75.5711 36.4596 75.5542 36.5146 75.5415L36.521 76.5C36.4279 76.5296 36.3052 76.5571 36.1528 76.5825C36.0047 76.6121 35.8249 76.627 35.6133 76.627C35.3255 76.627 35.061 76.5698 34.8198 76.4556C34.5786 76.3413 34.3861 76.1509 34.2422 75.8843C34.1025 75.6134 34.0327 75.2495 34.0327 74.7925V67.9624ZM41.9165 75.3257V71.79C41.9165 71.5192 41.8615 71.2843 41.7515 71.0854C41.6457 70.8823 41.4849 70.7257 41.269 70.6157C41.0532 70.5057 40.7866 70.4507 40.4692 70.4507C40.173 70.4507 39.9128 70.5015 39.6885 70.603C39.4684 70.7046 39.2949 70.8379 39.168 71.0029C39.0452 71.168 38.9839 71.3457 38.9839 71.5361H37.8096C37.8096 71.2907 37.873 71.0474 38 70.8062C38.127 70.5649 38.3089 70.347 38.5459 70.1523C38.7871 69.9535 39.0749 69.7969 39.4092 69.6826C39.7477 69.5641 40.1243 69.5049 40.5391 69.5049C41.0384 69.5049 41.4785 69.5895 41.8594 69.7588C42.2445 69.9281 42.5449 70.1841 42.7607 70.5269C42.9808 70.8654 43.0908 71.2907 43.0908 71.8027V75.002C43.0908 75.2305 43.1099 75.4738 43.1479 75.7319C43.1903 75.9901 43.2516 76.2122 43.332 76.3984V76.5H42.1069C42.0477 76.3646 42.0011 76.1847 41.9673 75.9604C41.9334 75.7319 41.9165 75.5203 41.9165 75.3257ZM42.1196 72.3359L42.1323 73.1611H40.9453C40.611 73.1611 40.3127 73.1886 40.0503 73.2437C39.7879 73.2944 39.5679 73.3727 39.3901 73.4785C39.2124 73.5843 39.077 73.7176 38.9839 73.8784C38.8908 74.035 38.8442 74.2191 38.8442 74.4307C38.8442 74.6465 38.8929 74.8433 38.9902 75.021C39.0876 75.1987 39.2336 75.3405 39.4282 75.4463C39.6271 75.5479 39.8704 75.5986 40.1582 75.5986C40.5179 75.5986 40.8353 75.5225 41.1104 75.3701C41.3854 75.2178 41.6034 75.0316 41.7642 74.8115C41.9292 74.5915 42.0181 74.3778 42.0308 74.1704L42.5322 74.7354C42.5026 74.9131 42.4222 75.1099 42.291 75.3257C42.1598 75.5415 41.9842 75.7489 41.7642 75.9478C41.5483 76.1424 41.2902 76.3053 40.9897 76.4365C40.6935 76.5635 40.3592 76.627 39.9868 76.627C39.5213 76.627 39.113 76.536 38.7617 76.354C38.4147 76.172 38.1439 75.9287 37.9492 75.624C37.7588 75.3151 37.6636 74.9702 37.6636 74.5894C37.6636 74.2212 37.7355 73.8975 37.8794 73.6182C38.0233 73.3346 38.2306 73.0998 38.5015 72.9136C38.7723 72.7231 39.0981 72.5793 39.479 72.4819C39.8599 72.3846 40.2852 72.3359 40.7549 72.3359H42.1196ZM46.1123 70.7109V76.5H44.938V69.6318H46.0806L46.1123 70.7109ZM48.2578 69.5938L48.2515 70.6855C48.1541 70.6644 48.061 70.6517 47.9722 70.6475C47.8875 70.639 47.7902 70.6348 47.6802 70.6348C47.4093 70.6348 47.1702 70.6771 46.9629 70.7617C46.7555 70.8464 46.5799 70.9648 46.436 71.1172C46.2922 71.2695 46.1779 71.4515 46.0933 71.6631C46.0129 71.8704 45.96 72.099 45.9346 72.3486L45.6045 72.5391C45.6045 72.1243 45.6447 71.735 45.7251 71.3711C45.8097 71.0072 45.9388 70.6855 46.1123 70.4062C46.2858 70.1227 46.5059 69.9027 46.7725 69.7461C47.0433 69.5853 47.3649 69.5049 47.7373 69.5049C47.8219 69.5049 47.9193 69.5155 48.0293 69.5366C48.1393 69.5535 48.2155 69.5726 48.2578 69.5938ZM52.5361 69.6318V70.5332H48.8228V69.6318H52.5361ZM50.0796 67.9624H51.2539V74.7988C51.2539 75.0316 51.2899 75.2072 51.3618 75.3257C51.4338 75.4442 51.5269 75.5225 51.6411 75.5605C51.7554 75.5986 51.8781 75.6177 52.0093 75.6177C52.1066 75.6177 52.2082 75.6092 52.314 75.5923C52.424 75.5711 52.5065 75.5542 52.5615 75.5415L52.5679 76.5C52.4748 76.5296 52.3521 76.5571 52.1997 76.5825C52.0516 76.6121 51.8717 76.627 51.6602 76.627C51.3724 76.627 51.1079 76.5698 50.8667 76.4556C50.6255 76.3413 50.4329 76.1509 50.2891 75.8843C50.1494 75.6134 50.0796 75.2495 50.0796 74.7925V67.9624Z",fill:"white"}),(0,h.createElement)("path",{d:"M61.1813 76.5188V67.4813L65.7 72.0001L61.1813 76.5188Z",fill:"white"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_76_1348"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})))),{__:kc}=wp.i18n,{PanelBody:jc}=wp.components,{BlockClassName:xc}=JetFBComponents,{useUniqKey:Fc}=JetFBHooks,{InspectorControls:Bc,useBlockProps:Ac}=wp.blockEditor,Pc=JSON.parse('{"apiVersion":3,"name":"jet-forms/form-break-start","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","break","pagebreak","formbreak","start"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Form Page Start","icon":"\\n\\n\\n","attributes":{"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{name:Sc,icon:Nc=""}=Pc,{__:Ic}=wp.i18n,Tc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Nc}}),description:Ic("Add the Form Page Start block after the two first form fields to start the new page not from the form beginning but from the block.","jet-form-builder"),edit:function(e){const C=Ac({className:"jet-form-builder__bottom-line"}),t=Fc();return e.attributes.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},_c):[(0,h.createElement)(Bc,{key:t("InspectorControls")},(0,h.createElement)(jc,{title:kc("Advanced","jet-form-builder")},(0,h.createElement)(xc,null))),(0,h.createElement)("div",{key:t("viewBlock"),...C},(0,h.createElement)("span",null,kc("Form Break Start","jet-form-builder")))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}}},{__:Oc}=wp.i18n,Jc="jet-forms/media-field",Rc="jet-forms/form-break-field",qc="jet-forms/date-field",Dc="jet-forms/datetime-field",zc="jet-forms/radio-field",Uc="jet-forms/checkbox-field",Gc="jet-forms/select-field",Wc="jet-forms/text-field",Kc=[{attribute:"is_timestamp",to:[qc,Dc],message:Oc("Check this if you want to send value of this field as timestamp instead of plain datetime","jet-form-builder")},{attribute:"default",to:[qc],message:Oc("Plain date should be in yyyy-mm-dd format","jet-form-builder")},{attribute:"default",to:[Dc],message:Oc("Plain datetime should be in yyyy-MM-ddThh:mm format","jet-form-builder")},{attribute:"page_break_disabled",to:[Rc],message:Oc('Text to show if next page button is disabled. For example - "Fill required fields" etc.',"jet-form-builder")},{attribute:"insert_attachment",to:[Jc],message:Oc("If checked new attachment will be inserted for uploaded file.Note: work only for logged-in users!","jet-form-builder")},{attribute:"allowed_mimes",to:[Jc],message:Oc("If no MIME type selected will allow all types. Hold down the Ctrl (windows) / Command (Mac) button to select multiple options.","jet-form-builder")},{attribute:"value_from_meta",to:[zc,Uc,Gc],message:Oc("By default post/term ID is used as value. Here you can set meta field name to use its value as form field value","jet-form-builder")},{attribute:"calculated_value_from_key",to:[zc,Uc,Gc],message:Oc("Here you can set meta field name to use its value as calculated value for current form field","jet-form-builder")},{attribute:"generator_field",to:[zc,Uc,Gc],message:Oc("For Numbers range generator set field with max range value","jet-form-builder"),conditions:{generator_function:"num_range"}},{attribute:"switch_on_change",to:[Gc],message:Oc("Check this to switch page to next on current value change","jet-form-builder")},{attribute:"prefix_suffix",to:["jet-forms/range-field"],message:Oc("For space before or after text use:  ","jet-form-builder")},{attribute:"calc_hidden",to:["jet-forms/repeater-field"],message:Oc("Check this to hide calculated field","jet-form-builder")},{attribute:"input_mask_default",to:[Wc],message:Oc("Examples: (999) 999-9999 - static mask, 9-a{1,3}9{1,3} - mask with dynamic syntax Default masking definitions: 9 - numeric, a - alphabetical, * - alphanumeric","jet-form-builder")},{attribute:"input_mask_datetime_link",to:[Wc],message:"https://robinherbots.github.io/Inputmask/#/documentation/datetime"},{attribute:"default",to:["jet-forms/time-field"],message:Oc("Plain time should be in hh:mm:ss format","jet-form-builder")},{attribute:"label_progress",to:[Rc],message:Oc("To set/change a last progress name add a Form Break Field at the very end of the form.","jet-form-builder")}],{applyFilters:$c}=wp.hooks,Yc=$c("jet.fb.register.editProps",[{name:"uniqKey",callable:e=>C=>`${e.name}/${C}`},{name:"blockName",callable:e=>e.name},{name:"attrHelp",callable:e=>{const C={};return Kc.forEach((t=>{t.to.includes(e.name)&&t.message&&(C[t.attribute]=t)})),(e,t={})=>{if(!(e in C))return"";const l=C[e];if(!("conditions"in l))return l.message;for(const e in l.conditions)if(!(e in t)||l.conditions[e]!==t[e])return;return l.message}}}]),{registerBlockType:Xc}=wp.blocks,{applyFilters:Qc}=wp.hooks,ed=Qc("jet.fb.register.fields",[e,C,r,l,n,a,i,o,s,c,d,m,u,p,f,V,H]),Cd=e=>{if(!e)return;const{metadata:C,settings:t,name:l}=e;t.edit=function(e){const{edit:C}=e.settings,t={};if("useEditProps"in e.settings){const{useEditProps:C}=e.settings;C.forEach((C=>{const l=Yc.find((e=>C===e.name));l&&(t[C]=l.callable(e))})),delete e.settings.useEditProps}return e=>(0,h.createElement)(C,{...e,editProps:{...t}})}(e),t.hasOwnProperty("jfbResolveBlock")||(t.jfbResolveBlock=function(){const e={clientId:this.clientId,name:this.name};return this.attributes?.name?{...e,fields:[{name:this.attributes.name,label:this.attributes.label||this.attributes.name,value:this.attributes.name}]}:e}),!t.hasOwnProperty("__experimentalLabel")&&C.attributes.hasOwnProperty("name")&&(t.__experimentalLabel=(e,{context:t})=>{switch(t){case"list-view":const t=e.name?.trim?.()||"",l=e.label?.trim?.()||"";return t&&l&&t!==l?`${t} (${l})`:t||l||C.title;case"accessibility":return e.name?.length?`${C.title} (${e.name})`:C.title;default:return C.title}}),Xc(l,{...C,...t})};function td(e,C){let{metadata:{title:t}}=e,{metadata:{title:l}}=C;t=t||e.settings?.title,l=l||C.settings?.title;try{return t.localeCompare(l)}catch(e){return 0}}!function(){const e=[];(0,wC.applyFilters)("jet.fb.register.plugins",[Ae,Re,yC,Ye,CC]).forEach((C=>{const{base:{name:t,condition:l=!0}}=C;if(!l)return!1;const r=(0,wC.applyFilters)(`jet.fb.register.plugin.${t}.before`,[]);r&&e.push(...r),e.push(C);const n=(0,wC.applyFilters)(`jet.fb.register.plugin.${t}.after`,[]);n&&e.push(...n)})),e.forEach(vC)}(),function(e=ed){e.sort(td),e.forEach(Qc("jet.fb.register.fields.handler",Cd))}()})()})(); \ No newline at end of file +(()=>{var e={5207(e,C,t){"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".s1ip8zmx.buddypress-active>div{height:auto;}\n",""]);const i=a},8525(e,C,t){"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".mqz01w{gap:1em;}\n.mqjtk22{background-color:#ffffff;}\n",""]);const i=a},5545(e,C,t){"use strict";t.r(C),t.d(C,{default:()=>i});var l=t(6758),r=t.n(l),n=t(935),a=t.n(n)()(r());a.push([e.id,".f13zt8l2{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;gap:12px;}.f13zt8l2 .sortable-chosen{box-shadow:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)) 0 1px 4px;}\n.am4szan{border:1px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));margin-bottom:1px;}.am4szan .components-panel__body-title{background-color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));}.am4szan .components-panel__body-title .components-button{color:var(--wp-components-color-accent-inverted, #fff);}.am4szan.is-opened{background-color:rgba(var(--wp-admin-theme-color--rgb), .07);}.am4szan.is-opened .components-panel__body-title{background-color:transparent;}.am4szan.is-opened .components-panel__body-title .components-button{color:#1e1e1e;}.am4szan .components-panel__body-title:hover{background-color:var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));opacity:0.7;}.am4szan .components-panel__body-title:hover .components-button{color:var(--wp-components-color-accent-inverted, #fff);}\n.s8wdwdc.buddypress-active{height:auto;}\n",""]);const i=a},935(e){"use strict";e.exports=function(e){var C=[];return C.toString=function(){return this.map(function(C){var t="",l=void 0!==C[5];return C[4]&&(t+="@supports (".concat(C[4],") {")),C[2]&&(t+="@media ".concat(C[2]," {")),l&&(t+="@layer".concat(C[5].length>0?" ".concat(C[5]):""," {")),t+=e(C),l&&(t+="}"),C[2]&&(t+="}"),C[4]&&(t+="}"),t}).join("")},C.i=function(e,t,l,r,n){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(l)for(var i=0;i0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=n),t&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=t):c[2]=t),r&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=r):c[4]="".concat(r)),C.push(c))}},C}},6758(e){"use strict";e.exports=function(e){return e[1]}},6987(e,C,t){var l=t(5207);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("6979fc60",l,!1,{})},2065(e,C,t){var l=t(8525);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("cbeea060",l,!1,{})},1669(e,C,t){var l=t(5545);l.__esModule&&(l=l.default),"string"==typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals),(0,t(611).A)("2bfdb416",l,!1,{})},611(e,C,t){"use strict";function l(e,C){for(var t=[],l={},r=0;rp});var r="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!r)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var n={},a=r&&(document.head||document.getElementsByTagName("head")[0]),i=null,o=0,s=!1,c=function(){},d=null,m="data-vue-ssr-id",u="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function p(e,C,t,r){s=t,d=r||{};var a=l(e,C);return f(a),function(C){for(var t=[],r=0;rt.parts.length&&(l.parts.length=t.parts.length)}else{var a=[];for(r=0;r{var C=e&&e.__esModule?()=>e.default:()=>e;return t.d(C,{a:C}),C},t.d=(e,C)=>{for(var l in C)t.o(C,l)&&!t.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:C[l]})},t.o=(e,C)=>Object.prototype.hasOwnProperty.call(e,C),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";var e={};t.r(e),t.d(e,{metadata:()=>YC,name:()=>et,settings:()=>tt});var C={};t.r(C),t.d(C,{metadata:()=>fl,name:()=>El,settings:()=>vl});var l={};t.r(l),t.d(l,{metadata:()=>er,name:()=>lr,settings:()=>nr});var r={};t.r(r),t.d(r,{metadata:()=>jr,name:()=>Br,settings:()=>Pr});var n={};t.r(n),t.d(n,{metadata:()=>Kr,name:()=>Xr,settings:()=>en});var a={};t.r(a),t.d(a,{metadata:()=>an,name:()=>cn,settings:()=>mn});var i={};t.r(i),t.d(i,{metadata:()=>bn,name:()=>gn,settings:()=>yn});var o={};t.r(o),t.d(o,{metadata:()=>la,name:()=>ma,settings:()=>pa});var s={};t.r(s),t.d(s,{metadata:()=>qa,name:()=>Ua,settings:()=>Wa});var c={};t.r(c),t.d(c,{metadata:()=>bi,name:()=>gi,settings:()=>yi});var d={};t.r(d),t.d(d,{metadata:()=>Wi,name:()=>Yi,settings:()=>Qi});var m={};t.r(m),t.d(m,{metadata:()=>uo,name:()=>qo,settings:()=>zo});var u={};t.r(u),t.d(u,{metadata:()=>Vs,name:()=>bs,settings:()=>Ls});var p={};t.r(p),t.d(p,{metadata:()=>Us,name:()=>Ks,settings:()=>Ys});var f={};t.r(f),t.d(f,{metadata:()=>cc,name:()=>uc,settings:()=>fc});var V={};t.r(V),t.d(V,{metadata:()=>Ec,name:()=>vc,settings:()=>kc});var H={};t.r(H),t.d(H,{metadata:()=>Nc,name:()=>Ic,settings:()=>Jc});const h=window.React,b=window.wp.data,M=window.wp.i18n,L=window.wp.components,g=window.jfb.components,Z=window.jfb.actions,y=window.wp.element,E=(0,y.forwardRef)(function({icon:e,size:C=24,...t},l){return(0,y.cloneElement)(e,{width:C,height:C,...t,ref:l})});function w(e){var C=Object.create(null);return function(t){return void 0===C[t]&&(C[t]=e(t)),C[t]}}var v=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_=w(function(e){return v.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),k=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),C={},t=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,t]=e.split("_");C[t]=e}else t.push(e)})});const l=[];for(const e in C)Object.prototype.hasOwnProperty.call(C,e)&&l.push(C[e]);return l.push(...t),l.join(" ")},j=(e,C)=>{const t={};return Object.keys(e).filter((e=>C=>-1===e.indexOf(C))(C)).forEach(C=>{t[C]=e[C]}),t},x=(e,C)=>{},F=function(e){let C="";return t=>{const l=(l,r)=>{const{as:n=e,class:a=C}=l;var i;const o=function(e,C){const t=j(C,["as","class"]);if(!e){const e="function"==typeof _?{default:_}:_;Object.keys(t).forEach(C=>{e.default(C)||delete t[C]})}return t}(void 0===t.propsAsIs?!("string"==typeof n&&-1===n.indexOf("-")&&(i=n[0],i.toUpperCase()!==i)):t.propsAsIs,l);o.ref=r,o.className=t.atomic?k(t.class,o.className||a):k(o.className||a,t.class);const{vars:s}=t;if(s){const e={};for(const C in s){const r=s[C],n=r[0],a=r[1]||"",i="function"==typeof n?n(l):n;x(0,t.name),e[`--${C}`]=`${i}${a}`}const C=o.style||{},r=Object.keys(C);r.length>0&&r.forEach(t=>{e[t]=C[t]}),o.style=e}return e.__wyw_meta&&e!==n?(o.as=n,(0,h.createElement)(e,o)):(0,h.createElement)(n,o)},r=h.forwardRef?(0,h.forwardRef)(l):e=>{const C=j(e,["innerRef"]);return l(C,e.innerRef)};return r.displayName=t.name,r.__wyw_meta={className:t.class||C,extends:e},r}};const B=".components-modal__frame",{ActionModal:A,ActionModalHeaderSlotFill:P,ActionModalFooterSlotFill:S,ActionModalBackButton:N,ActionModalCloseButton:I}=JetFBComponents,{useCurrentAction:T,useActionCallback:O,useUpdateCurrentAction:J,useUpdateCurrentActionMeta:R}=JetFBHooks,q=F("div")({name:"ModalHeading",class:"mqz01w",propsAsIs:!1}),D=F("div")({name:"ModalHeader",class:"mqjtk22",propsAsIs:!1}),z=function(){var e;(0,y.useEffect)(()=>{const e=e=>{(e=>{const C=e.metaKey&&!e.ctrlKey,t=e.ctrlKey&&!e.metaKey;return(C||t)&&"z"===e.key.toLowerCase()&&!e.altKey})(e)&&(e=>{const C=e.composedPath?.();return C?.length?C.some(e=>e instanceof Element&&e.matches?.(B)):e.target?.closest?.(B)})(e)&&e.stopPropagation()};return window.addEventListener("keydown",e,!0),()=>{window.removeEventListener("keydown",e,!0)}},[]);const C=O(),t=R(),{setTypeSettings:l,clearCurrent:r}=J(),{currentAction:n,currentSettings:a}=T(),{editMeta:i}=(0,b.useDispatch)("jet-forms/actions"),{isSettingsModal:o,actionType:s,isShowErrorNotice:c}=(0,b.useSelect)(e=>({isSettingsModal:e("jet-forms/actions").isSettingsModal(),actionType:e("jet-forms/actions").getAction(n.type),isShowErrorNotice:e("jet-forms/actions").getErrorVisibility()}),[n.type]),d=(0,Z.useActionErrors)(o?n:{});if(!o)return null;const m=function(e={},C=""){const t=e?.editor_name;return"string"==typeof t&&t.trim()?t.trim():C}(n,null!==(e=s?.label)&&void 0!==e?e:""),u=Boolean(d.length)&&c;return(0,h.createElement)(A,{size:"large",__experimentalHideHeader:!0,onRequestClose:r,onCancelClick:r,onUpdateClick:()=>{t(n),r()}},(0,h.createElement)(D,{className:"components-modal__header"},(0,h.createElement)(q,{className:"components-modal__header-heading-container"},s.icon&&(0,h.createElement)(E,{icon:s.icon}),(0,h.createElement)("h1",{className:"components-modal__header-heading"},(0,M.sprintf)((0,M.__)("Edit %s","jet-form-builder"),m)),(0,h.createElement)(P.Slot,null)),(0,h.createElement)(N,null),(0,h.createElement)(I,null)),(0,h.createElement)("div",{style:{height:"40px"}}),C&&(0,h.createElement)(C,{settings:a,actionId:n.id,onChange:e=>l(e)}),(0,h.createElement)(S.Fill,null,({updateClick:e,cancelClick:C})=>(0,h.createElement)(g.StickyModalActions,{justify:"space-between"},(0,h.createElement)(L.Flex,{justify:"flex-start",gap:3,style:{flex:1}},(0,h.createElement)(L.Button,{isPrimary:!0,onClick:()=>{d?.length?i({errorsShow:!0}):e()}},(0,M.__)("Update","jet-form-builder")),(0,h.createElement)(L.Button,{isSecondary:!0,onClick:C},(0,M.__)("Cancel","jet-form-builder")),u&&(0,h.createElement)(g.IconText,null,(0,M.__)("You have errors in some fields","jet-form-builder"))),u&&(0,h.createElement)(L.Button,{variant:"tertiary",onClick:e},(0,M.__)("Update anyway","jet-form-builder")))))};t(2065);const U=window.JetFormEditorData.actionConditionSettings,{RepeaterItemContext:G,Repeater:W,RepeaterAddNew:K,AdvancedModalControl:$,RepeaterState:Y,BaseHelp:X}=JetFBComponents,{useRequestEvents:Q,useCurrentAction:ee,useUpdateCurrentAction:Ce,useMetaState:te}=JetFBHooks,{getFormFieldsBlocks:le}=JetFBActions,{SelectControl:re,TextareaControl:ne,ToggleControl:ae,FormTokenField:ie,TabPanel:oe}=wp.components,{__:se}=wp.i18n,{useSelect:ce}=wp.data,{useEffect:de,useState:me,useContext:ue,RawHTML:pe}=wp.element,fe=[{value:"and",label:se("AND (ALL conditions must be met)","jet-form-builder")},{value:"or",label:se("OR (at least ONE condition must be met)","jet-form-builder")}],Ve=window.JetFormEditorData.actionConditionExcludeEvents;function He(e,C){const t=U[e].find(e=>e.value===C);return(e,C="")=>t&&t[e]||C}function he({formFields:e}){const{currentItem:C,changeCurrentItem:t}=ue(G);let l=se("To fulfill this condition, the result of the check must be","jet-form-builder")+" ";l+=C.execute?"TRUE":"FALSE";const r=He("compare_value_formats",C.compare_value_format),n=He("operators",C.operator);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ae,{label:l,checked:C.execute,onChange:e=>{t({execute:e})}}),(0,h.createElement)(re,{label:"Operator",labelPosition:"side",help:n("help"),value:C.operator,options:U.operators,onChange:e=>t({operator:e})}),(0,h.createElement)(re,{label:"Field",labelPosition:"side",value:C.field,options:e,onChange:e=>t({field:e})}),(0,h.createElement)(re,{label:se("Type transform comparing value","jet-form-builder"),labelPosition:"side",value:C.compare_value_format,options:U.compare_value_formats,onChange:e=>{t({compare_value_format:e})}}),r("help").length>0&&(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:r("help")}}),(0,h.createElement)($,{value:C.default,label:se("Value to Compare","jet-form-builder"),macroWithCurrent:!0,onChangePreset:e=>{t({default:e})}},({instanceId:e})=>(0,h.createElement)(ne,{id:e,value:C.default,help:n("need_explode")?U.help_for_exploding_compare:"",onChange:e=>{t({default:e})}})))}function be({events:e}){var C;const{currentAction:t}=ee(),{setCurrentAction:l}=Ce(),[r,n]=me(!1),a=ce(e=>e("jet-forms/events").getHelpMap());return de(()=>{if(Ve[t.type]&&t.events.length){const e=t.events.filter(e=>!Ve[t.type].includes(e));t.events.some(C=>!e.includes(C))&&l({...t,events:e})}},[t,l]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ie,{label:se("Add event","jet-form-builder"),value:null!==(C=t.events)&&void 0!==C?C:[],suggestions:e,onChange:e=>l({...t,events:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0,__experimentalShowHowTo:""}),(0,h.createElement)(X,null,se("Separate with commas, spaces, or press Enter.","jet-form-builder")+" ",(0,h.createElement)("a",{href:"#",role:"button",onClick:()=>n(e=>!e)},se(r?"Hide":"Details","jet-form-builder"))),r&&(0,h.createElement)("ul",{className:"jet-fb-ul-revert-layer"},e.map(e=>(0,h.createElement)("li",{key:e},(0,h.createElement)("b",null,e),": ",(0,h.createElement)(pe,null,a[e])))))}function Me(){var e;const[C,t]=me([]);de(()=>{t(le([],"--"))},[]);const{currentAction:l}=ee(),{setCurrentAction:r,updateCurrentConditions:n}=Ce();return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(re,{key:"SelectControl-operator",label:se("Condition Operator","jet-form-builder"),labelPosition:"side",value:l.condition_operator||"and",options:fe,onChange:e=>r({...l,condition_operator:e})}),(0,h.createElement)(Y,{state:n},(0,h.createElement)(W,{items:null!==(e=l.conditions)&&void 0!==e?e:[]},(0,h.createElement)(he,{formFields:C})),(0,h.createElement)(K,{item:{execute:!0}},se("Add New Condition","jet-form-builder"))))}const Le=function(){var e;let C=Q();const{currentAction:t}=ee(),[l]=te("_jf_gateways",{}),r=ce(e=>e("jet-forms/events").getEventValuesByGateway());if("manual"===l?.mode&&r&&"object"==typeof r){const e=Object.keys(r).filter(e=>!!l?.[e]?.show_on_front).flatMap(e=>{var C;return null!==(C=r?.[e])&&void 0!==C?C:[]});C=Array.from(new Set([...null!=C?C:[],...e]))}if(Ve?.[t.type]){const e=Ve[t.type];C=(null!=C?C:[]).filter(C=>!e.includes(C))}return 1===(null!==(e=C?.length)&&void 0!==e?e:0)?(0,h.createElement)(Me,null):(0,h.createElement)(h.Fragment,null,(0,h.createElement)(oe,{className:"jfb-conditions-tab-panel",initialTabName:"fields",tabs:[{name:"fields",title:se("Fields comparison","jet-form-builder"),edit:(0,h.createElement)(Me,null)},{name:"events",title:se("Events match","jet-form-builder"),edit:(0,h.createElement)(be,{events:C})}]},e=>e.edit))},{__:ge}=wp.i18n,{ActionModal:Ze}=JetFBComponents,{useRequestEvents:ye,useUpdateCurrentActionMeta:Ee,useCurrentAction:we}=JetFBHooks,{useDispatch:ve,useSelect:_e}=wp.data,ke=function(){const e=_e(e=>e("jet-forms/actions").isConditionalModal()),{clearCurrent:C}=ve("jet-forms/actions",[]),t=Ee(),{currentAction:l}=we(),r=ye();if(!e)return null;const n=["width-60"];return 1!==r.length&&n.push("without-margin"),(0,h.createElement)(Ze,{classNames:n,title:ge("Edit Action Conditions & Events","jet-form-builder"),onRequestClose:C,onCancelClick:C,onUpdateClick:()=>{t({...l}),C()}},(0,h.createElement)(Le,null))},je=window.wp.editor,xe=(0,L.withFilters)("jet.fb.action.item")(Z.ListActionItem),Fe=F(g.Sortable)({name:"FlexSortable",class:"f13zt8l2",propsAsIs:!0}),Be=F(je.PluginDocumentSettingPanel)({name:"ActionsPanel",class:"am4szan",propsAsIs:!0}),Ae=F(L.Flex)({name:"StyledFlex",class:"s8wdwdc",propsAsIs:!0});t(1669);const Pe={base:{name:"jf-actions-panel",jfbApiVersion:2},settings:{render:function(){const[e,C]=(0,Z.useActions)(),t=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return(0,h.createElement)(Be,{title:(0,M.__)("Post Submit Actions","jet-form-builder")},(0,h.createElement)(Ae,{direction:"column",gap:3,className:t?"buddypress-active":""},(0,h.createElement)(Fe,{list:e,setList:C,direction:"vertical",handle:".jfb-action-handle",draggable:".jet-form-action.draggable"},e.map((e,C)=>(0,h.createElement)(y.Fragment,{key:e.id},(0,h.createElement)(Z.ActionListItemContext.Provider,{value:{index:C,action:e}},(0,h.createElement)(xe,null))))),(0,h.createElement)(Z.ActionsAfterNewButtonSlotFill.Slot,null,e=>(0,h.createElement)(L.Flex,{className:"jfb-actions-panel--buttons"},(0,h.createElement)(Z.AddActionButton,null),e))),(0,h.createElement)(Z.AllProActionsLink,null),(0,h.createElement)(z,null),(0,h.createElement)(ke,null))}}},{useMetaState:Se}=JetFBHooks,{TextControl:Ne,SelectControl:Ie,ToggleControl:Te}=wp.components,{__:Oe}=wp.i18n,Je=window.JetFormEditorData.argumentsSource||{},{__:Re}=wp.i18n,qe={base:{name:"jf-args-panel",title:Re("Form Settings","jet-form-builder"),jfbTest:2},settings:{render:function(){var e,C,t,l,r,n,a;const[i,o]=Se("_jf_args"),s=window.location.href.includes("post-new.php");let c="label",d="fieldset";var m,u;return s||(c=null!==(m=i?.fields_label_tag)&&void 0!==m?m:"div",d=null!==(u=i?.markup_type)&&void 0!==u?u:"div"),(0,h.useEffect)(()=>{i?.fields_label_tag||o(e=>({...e,fields_label_tag:c}))},[i,c,o]),(0,h.useEffect)(()=>{i?.markup_type||o(e=>({...e,markup_type:d}))},[i,d,o]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ie,{label:Oe("Fields Layout","jet-form-builder"),value:null!==(e=i?.fields_layout)&&void 0!==e?e:"",options:Je.fields_layout,onChange:e=>{o(C=>({...C,fields_layout:e}))}}),(0,h.createElement)(Ne,{label:Oe("Required Mark","jet-form-builder"),value:null!==(C=i?.required_mark)&&void 0!==C?C:"",onChange:e=>{o(C=>({...C,required_mark:e}))}}),(0,h.createElement)(Ie,{label:Oe("Fields label HTML tag","jet-form-builder"),value:null!==(t=i?.fields_label_tag)&&void 0!==t?t:c,options:Je.fields_label_tag,onChange:e=>{o(C=>({...C,fields_label_tag:e}))}}),(0,h.createElement)(Ie,{label:Oe("Markup type","jet-form-builder"),value:null!==(l=i?.markup_type)&&void 0!==l?l:d,options:Je.markup_type,onChange:e=>{o(C=>({...C,markup_type:e}))}}),(0,h.createElement)(Ie,{label:Oe("Submit Type","jet-form-builder"),value:null!==(r=i?.submit_type)&&void 0!==r?r:"",options:Je.submit_type,onChange:e=>{o(C=>({...C,submit_type:e}))}}),(0,h.createElement)(Te,{key:"enable_progress",label:Oe("Enable form pages progress","jet-form-builder"),checked:null!==(n=i?.enable_progress)&&void 0!==n&&n,help:Oe("Displays the progress of a multi-page form","jet-form-builder"),onChange:()=>{o(e=>{const C=!Boolean(e.enable_progress);return{...e,enable_progress:C}})}}),(0,h.createElement)(Te,{key:"clear_on_ajax",label:Oe("Clear data on success submit","jet-form-builder"),checked:null!==(a=i?.clear)&&void 0!==a&&a,help:Oe("Remove input values on successful submit","jet-form-builder"),onChange:()=>{o(e=>({...e,clear:!Boolean(e.clear)}))}}))},icon:"admin-settings"}},{GlobalField:De,AvailableMapField:ze}=JetFBComponents,{withPreset:Ue}=JetFBActions,Ge=Ue(function({value:e,availableFields:C,isMapFieldVisible:t,isVisible:l,onChange:r}){const n=(C,t)=>{r({...e,[t]:C})};return(0,h.createElement)(L.Flex,{direction:"column",gap:4},window.JetFormEditorData.presetConfig.global_fields.map((C,t)=>(0,h.createElement)(De,{key:C.name+t,value:e,index:t,data:C,options:C.options,onChangeValue:n,isVisible:l,position:"general"})),e.from&&C.map((C,l)=>(0,h.createElement)(ze,{key:C+l,fieldsMap:e.fields_map,field:C,index:l,onChangeValue:n,isMapFieldVisible:t,value:e})))}),{useMetaState:We}=JetFBHooks,{getAvailableFields:Ke}=JetFBActions,{__:$e}=wp.i18n,{__:Ye}=wp.i18n,Xe={base:{name:"jf-preset-panel",title:Ye("Preset Settings","jet-form-builder")},settings:{render:function(){var e,C;const{ToggleControl:t}=wp.components,[l,r]=We("_jf_preset"),n=(0,y.useMemo)(()=>l.enabled?Ke([],"preset"):[],[l.enabled]);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(t,{key:"enable_preset",label:$e("Enable","jet-form-builder"),checked:l.enabled,help:"Check this to enable global form preset",onChange:e=>{r(C=>({...C,enabled:e}))}}),l.enabled&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ge,{key:"_jf_preset_general",value:l,onChange:e=>{r(C=>({...C,...e,enabled:C.enabled}))},availableFields:n}),(0,h.createElement)(t,{label:$e("Restrict access","jet-form-builder"),checked:null===(e=l.restricted)||void 0===e||e,help:null===(C=l.restricted)||void 0===C||C?$e("Will set default value from preset only for users who allowed to edit this value","jet-form-builder"):$e("Always set default value from preset. Make sure it can't be accidentally changed from form Actions","jet-form-builder"),onChange:e=>{r(C=>({...C,restricted:e?void 0:e}))}})))},icon:"database-import"}},{TextControl:Qe}=wp.components,{useMetaState:eC}=JetFBHooks,{__:CC}=wp.i18n,tC={base:{name:"jf-messages-panel",title:CC("General Messages Settings","jet-form-builder")},settings:{render:function(){const[e,C]=eC("_jf_messages");return(0,h.createElement)(h.Fragment,null,Object.entries(JetFormEditorData.messagesDefault).map(([t,{label:l,value:r}],n)=>{var a;return(0,h.createElement)(Qe,{key:t+n,label:l,value:null!==(a=e[t])&&void 0!==a?a:r,onChange:e=>C(C=>({...C,[t]:e}))})}))},icon:"format-status"}},{__:lC}=wp.i18n,{__:rC}=wp.i18n,nC={base:{name:"jf-limit-responses-panel",title:rC("Limit Form Responses","jet-form-builder")},settings:{render:function(){const{limitResponses:e}=JetFormEditorData.utmLinks;return(0,h.createElement)("p",null,lC("You’re using free version of JetFormBuilder.","jet-form-builder")+"\n",(0,h.createElement)("a",{href:e,target:"_blank",rel:"noreferrer"},lC("Upgrade","jet-form-builder"))," "+lC("to unlock this feature.","jet-form-builder"))},icon:"lock"}},{__:aC}=wp.i18n,{__:iC}=wp.i18n,oC={base:{name:"jf-schedule-panel",title:iC("Form Schedule","jet-form-builder")},settings:{render:function(){const{scheduleForm:e}=JetFormEditorData.utmLinks;return(0,h.createElement)("p",null,aC("You’re using free version of JetFormBuilder.","jet-form-builder")+"\n",(0,h.createElement)("a",{href:e,target:"_blank",rel:"noreferrer"},aC("Upgrade","jet-form-builder"))," "+aC("to unlock this feature.","jet-form-builder"))},icon:"lock"}},{ActionModalContext:sC,ValidationMetaMessage:cC}=JetFBComponents,{useMetaState:dC,useGroupedValidationMessages:mC}=JetFBHooks,uC=function(){const[e,C]=dC("_jf_validation","{}",[]),t=mC(),[l,r]=(0,y.useState)(()=>{var C;return null!==(C=e.messages)&&void 0!==C?C:{}}),{actionClick:n,onRequestClose:a}=(0,y.useContext)(sC);return(0,y.useEffect)(()=>{n&&C(e=>({...e,messages:l})),null!==n&&a()},[n]),(0,h.createElement)(L.Flex,{gap:4,direction:"column"},t.map((e,C)=>(0,h.createElement)(cC,{key:"message_item"+e.id,message:e,messages:l,update:r,value:l[e.id],className:0!==C?"jet-control-full":"",style:0!==C?{}:{paddingBottom:"5px"}})))},{Button:pC,ToggleControl:fC,__experimentalToggleGroupControl:VC,__experimentalToggleGroupControlOption:HC}=wp.components,{__:hC}=wp.i18n,{useState:bC,useEffect:MC}=wp.element,{useMetaState:LC}=JetFBHooks,{ActionModal:gC}=JetFBComponents,{formats:ZC}=window.jetFormValidation,{__:yC}=wp.i18n,EC={base:{name:"jf-validation-panel",title:yC("Validation","jet-form-builder")},settings:{render:function(){var e,C,t;const[l,r]=LC("_jf_validation"),[n,a]=LC("_jf_args"),[i,o]=bC(!1),[s,c]=bC("render"===n.load_nonce);return MC(()=>{a(e=>({...e,load_nonce:s?"render":"hide"}))},[s]),(0,h.createElement)(h.Fragment,null,(0,h.createElement)(fC,{key:"load_nonce",label:hC("Enable form safety","jet-form-builder"),checked:s,help:hC("Protects the form with a WordPress nonce. Toggle this option off if the form's page's caching can't be disabled","jet-form-builder"),onChange:()=>{c(e=>!e)}}),(0,h.createElement)(fC,{label:hC("Enable csrf protection","jet-form-builder"),checked:null!==(e=n?.use_csrf)&&void 0!==e&&e,onChange:()=>{a(e=>{const C=!Boolean(e.use_csrf);return{...e,use_csrf:C}})}}),(0,h.createElement)(fC,{label:hC("Enable Honeypot protection","jet-form-builder"),checked:null!==(C=n?.use_honeypot)&&void 0!==C&&C,onChange:()=>{a(e=>({...e,use_honeypot:!Boolean(e.use_honeypot)}))}}),(0,h.createElement)(VC,{onChange:e=>r(C=>({...C,type:e})),value:null!==(t=l?.type)&&void 0!==t?t:"browser",label:hC("Validation type","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},ZC.map(e=>(0,h.createElement)(HC,{key:e.value+"_key",label:e.label,value:e.value,"aria-label":e.title,showTooltip:!0}))),"advanced"===l.type&&(0,h.createElement)(pC,{className:"jet-fb-button w-100 jc-center",isSecondary:!0,isSmall:!0,icon:"edit",onClick:()=>o(!0)},hC("Edit validation messages","jet-form-builder")),i&&(0,h.createElement)(gC,{title:"Edit Manual Options",onRequestClose:()=>o(!1),classNames:["width-60"]},(0,h.createElement)(uC,null)))},icon:"shield-alt"}},wC=window.wp.plugins;(0,wC.registerPlugin)("jf-rating-popover",{render:()=>((()=>{const e=jQuery(".interface-interface-skeleton__footer");e.find(".jet-fb-rating-message").remove();const C=(0,M.sprintf)((0,M.__)('Liked JetFormBuilder? Please rate it ★★★★★. For troubleshooting, contact Crocoblock support.',"jet-form-builder"),"https://wordpress.org/support/plugin/jetformbuilder/reviews/?filter=5","https://support.crocoblock.com/support/home/");e.append(`\n\t
    ${C}
    \n`)})(),null)});const vC=window.wp.hooks,_C=e=>{const{base:C,settings:t}=e;C.jfbApiVersion&&1!==C.jfbApiVersion||(t.render=((e,C)=>{const t=e.render;return()=>(0,h.createElement)(je.PluginDocumentSettingPanel,{key:`plugin-panel-${C.name}`,...C},(0,h.createElement)(t,{key:`plugin-render-${C.name}`}))})(t,C)),(0,wC.getPlugin)(C.name)&&(0,wC.unregisterPlugin)(C.name),(0,wC.registerPlugin)(C.name,t)};JetFormEditorData.isActivePro||(0,vC.addFilter)("jet.fb.register.plugin.jf-actions-panel.after","jet-form-builder",e=>(e.push(oC,nC),e),0);const kC=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("g",{clipPath:"url(#clip0_273_2176)"},(0,h.createElement)("path",{d:"M22.4785 28.4268V29.5H17.208V28.4268H22.4785ZM17.4746 19.5469V29.5H16.1553V19.5469H17.4746ZM21.7812 23.8262V24.8994H17.208V23.8262H21.7812ZM22.4102 19.5469V20.627H17.208V19.5469H22.4102ZM24.7754 22.1035L26.3955 24.7969L28.0361 22.1035H29.5195L27.0996 25.7539L29.5947 29.5H28.1318L26.4229 26.7246L24.7139 29.5H23.2441L25.7324 25.7539L23.3193 22.1035H24.7754ZM33.9629 22.1035V23.0742H29.9639V22.1035H33.9629ZM31.3174 20.3057H32.582V27.668C32.582 27.9186 32.6208 28.1077 32.6982 28.2354C32.7757 28.363 32.876 28.4473 32.999 28.4883C33.1221 28.5293 33.2542 28.5498 33.3955 28.5498C33.5003 28.5498 33.6097 28.5407 33.7236 28.5225C33.8421 28.4997 33.931 28.4814 33.9902 28.4678L33.9971 29.5C33.8968 29.5319 33.7646 29.5615 33.6006 29.5889C33.4411 29.6208 33.2474 29.6367 33.0195 29.6367C32.7096 29.6367 32.4248 29.5752 32.165 29.4521C31.9053 29.3291 31.6979 29.124 31.543 28.8369C31.3926 28.5452 31.3174 28.1533 31.3174 27.6611V20.3057ZM36.7109 23.2656V29.5H35.4463V22.1035H36.6768L36.7109 23.2656ZM39.0215 22.0625L39.0146 23.2383C38.9098 23.2155 38.8096 23.2018 38.7139 23.1973C38.6227 23.1882 38.5179 23.1836 38.3994 23.1836C38.1077 23.1836 37.8503 23.2292 37.627 23.3203C37.4036 23.4115 37.2145 23.5391 37.0596 23.7031C36.9046 23.8672 36.7816 24.0632 36.6904 24.291C36.6038 24.5143 36.5469 24.7604 36.5195 25.0293L36.1641 25.2344C36.1641 24.7878 36.2074 24.3685 36.2939 23.9766C36.3851 23.5846 36.5241 23.2383 36.7109 22.9375C36.8978 22.6322 37.1348 22.3952 37.4219 22.2266C37.7135 22.0534 38.0599 21.9668 38.4609 21.9668C38.5521 21.9668 38.6569 21.9782 38.7754 22.001C38.8939 22.0192 38.9759 22.0397 39.0215 22.0625ZM44.2783 28.2354V24.4277C44.2783 24.1361 44.2191 23.8831 44.1006 23.6689C43.9867 23.4502 43.8135 23.2816 43.5811 23.1631C43.3486 23.0446 43.0615 22.9854 42.7197 22.9854C42.4007 22.9854 42.1204 23.04 41.8789 23.1494C41.6419 23.2588 41.4551 23.4023 41.3184 23.5801C41.1862 23.7578 41.1201 23.9492 41.1201 24.1543H39.8555C39.8555 23.89 39.9238 23.6279 40.0605 23.3682C40.1973 23.1084 40.3932 22.8737 40.6484 22.6641C40.9082 22.4499 41.2181 22.2812 41.5781 22.1582C41.9427 22.0306 42.3483 21.9668 42.7949 21.9668C43.3327 21.9668 43.8066 22.0579 44.2168 22.2402C44.6315 22.4225 44.9551 22.6982 45.1875 23.0674C45.4245 23.432 45.543 23.89 45.543 24.4414V27.8867C45.543 28.1328 45.5635 28.3949 45.6045 28.6729C45.6501 28.9508 45.7161 29.1901 45.8027 29.3906V29.5H44.4834C44.4196 29.3542 44.3695 29.1605 44.333 28.9189C44.2965 28.6729 44.2783 28.445 44.2783 28.2354ZM44.4971 25.0156L44.5107 25.9043H43.2324C42.8724 25.9043 42.5511 25.9339 42.2686 25.9932C41.986 26.0479 41.749 26.1322 41.5576 26.2461C41.3662 26.36 41.2204 26.5036 41.1201 26.6768C41.0199 26.8454 40.9697 27.0436 40.9697 27.2715C40.9697 27.5039 41.0221 27.7158 41.127 27.9072C41.2318 28.0986 41.389 28.2513 41.5986 28.3652C41.8128 28.4746 42.0749 28.5293 42.3848 28.5293C42.7721 28.5293 43.1139 28.4473 43.4102 28.2832C43.7064 28.1191 43.9411 27.9186 44.1143 27.6816C44.292 27.4447 44.3877 27.2145 44.4014 26.9912L44.9414 27.5996C44.9095 27.791 44.8229 28.0029 44.6816 28.2354C44.5404 28.4678 44.3512 28.6911 44.1143 28.9053C43.8818 29.1149 43.6038 29.2904 43.2803 29.4316C42.9613 29.5684 42.6012 29.6367 42.2002 29.6367C41.6989 29.6367 41.2591 29.5387 40.8809 29.3428C40.5072 29.1468 40.2155 28.8848 40.0059 28.5566C39.8008 28.224 39.6982 27.8525 39.6982 27.4424C39.6982 27.0459 39.7757 26.6973 39.9307 26.3965C40.0856 26.0911 40.3089 25.8382 40.6006 25.6377C40.8923 25.4326 41.2432 25.2777 41.6533 25.1729C42.0635 25.068 42.5215 25.0156 43.0273 25.0156H44.4971ZM55.3115 27.5381C55.3115 27.3558 55.2705 27.1872 55.1885 27.0322C55.111 26.8727 54.9492 26.7292 54.7031 26.6016C54.4616 26.4694 54.097 26.3555 53.6094 26.2598C53.1992 26.1732 52.8278 26.0706 52.4951 25.9521C52.167 25.8337 51.8867 25.6901 51.6543 25.5215C51.4264 25.3529 51.251 25.1546 51.1279 24.9268C51.0049 24.6989 50.9434 24.4323 50.9434 24.127C50.9434 23.8353 51.0072 23.5596 51.1348 23.2998C51.2669 23.04 51.4515 22.8099 51.6885 22.6094C51.93 22.4089 52.2194 22.2516 52.5566 22.1377C52.8939 22.0238 53.2699 21.9668 53.6846 21.9668C54.277 21.9668 54.7829 22.0716 55.2021 22.2812C55.6214 22.4909 55.9427 22.7712 56.166 23.1221C56.3893 23.4684 56.501 23.8535 56.501 24.2773H55.2363C55.2363 24.0723 55.1748 23.874 55.0518 23.6826C54.9333 23.4867 54.7578 23.3249 54.5254 23.1973C54.2975 23.0697 54.0173 23.0059 53.6846 23.0059C53.3337 23.0059 53.0488 23.0605 52.8301 23.1699C52.6159 23.2747 52.4587 23.4092 52.3584 23.5732C52.2627 23.7373 52.2148 23.9105 52.2148 24.0928C52.2148 24.2295 52.2376 24.3525 52.2832 24.4619C52.3333 24.5667 52.4199 24.6647 52.543 24.7559C52.666 24.8424 52.8392 24.9245 53.0625 25.002C53.2858 25.0794 53.5706 25.1569 53.917 25.2344C54.5231 25.3711 55.0221 25.5352 55.4141 25.7266C55.806 25.918 56.0977 26.1527 56.2891 26.4307C56.4805 26.7087 56.5762 27.0459 56.5762 27.4424C56.5762 27.766 56.5078 28.0622 56.3711 28.3311C56.2389 28.5999 56.0452 28.8324 55.79 29.0283C55.5394 29.2197 55.2386 29.3701 54.8877 29.4795C54.5413 29.5843 54.1517 29.6367 53.7188 29.6367C53.0671 29.6367 52.5156 29.5205 52.0645 29.2881C51.6133 29.0557 51.2715 28.7549 51.0391 28.3857C50.8066 28.0166 50.6904 27.627 50.6904 27.2168H51.9619C51.9801 27.5632 52.0804 27.8389 52.2627 28.0439C52.445 28.2445 52.6683 28.388 52.9326 28.4746C53.1969 28.5566 53.459 28.5977 53.7188 28.5977C54.0651 28.5977 54.3545 28.5521 54.5869 28.4609C54.8239 28.3698 55.0039 28.2445 55.127 28.085C55.25 27.9255 55.3115 27.7432 55.3115 27.5381ZM61.3066 29.6367C60.7917 29.6367 60.3245 29.5501 59.9053 29.377C59.4906 29.1992 59.1328 28.9508 58.832 28.6318C58.5358 28.3128 58.3079 27.9346 58.1484 27.4971C57.9889 27.0596 57.9092 26.5811 57.9092 26.0615V25.7744C57.9092 25.1729 57.998 24.6374 58.1758 24.168C58.3535 23.694 58.5951 23.293 58.9004 22.9648C59.2057 22.6367 59.5521 22.3883 59.9395 22.2197C60.3268 22.0511 60.7279 21.9668 61.1426 21.9668C61.6712 21.9668 62.127 22.0579 62.5098 22.2402C62.8971 22.4225 63.2139 22.6777 63.46 23.0059C63.7061 23.3294 63.8883 23.7122 64.0068 24.1543C64.1253 24.5918 64.1846 25.0703 64.1846 25.5898V26.1572H58.6611V25.125H62.9199V25.0293C62.9017 24.7012 62.8333 24.3822 62.7148 24.0723C62.6009 23.7624 62.4186 23.5072 62.168 23.3066C61.9173 23.1061 61.5755 23.0059 61.1426 23.0059C60.8555 23.0059 60.5911 23.0674 60.3496 23.1904C60.1081 23.3089 59.9007 23.4867 59.7275 23.7236C59.5544 23.9606 59.4199 24.25 59.3242 24.5918C59.2285 24.9336 59.1807 25.3278 59.1807 25.7744V26.0615C59.1807 26.4124 59.2285 26.7428 59.3242 27.0527C59.4245 27.3581 59.568 27.627 59.7549 27.8594C59.9463 28.0918 60.1764 28.2741 60.4453 28.4062C60.7188 28.5384 61.0286 28.6045 61.375 28.6045C61.8216 28.6045 62.1999 28.5133 62.5098 28.3311C62.8197 28.1488 63.0908 27.9049 63.3232 27.5996L64.0889 28.208C63.9294 28.4495 63.7266 28.6797 63.4805 28.8984C63.2344 29.1172 62.9313 29.2949 62.5713 29.4316C62.2158 29.5684 61.7943 29.6367 61.3066 29.6367ZM66.9258 23.2656V29.5H65.6611V22.1035H66.8916L66.9258 23.2656ZM69.2363 22.0625L69.2295 23.2383C69.1247 23.2155 69.0244 23.2018 68.9287 23.1973C68.8376 23.1882 68.7327 23.1836 68.6143 23.1836C68.3226 23.1836 68.0651 23.2292 67.8418 23.3203C67.6185 23.4115 67.4294 23.5391 67.2744 23.7031C67.1195 23.8672 66.9964 24.0632 66.9053 24.291C66.8187 24.5143 66.7617 24.7604 66.7344 25.0293L66.3789 25.2344C66.3789 24.7878 66.4222 24.3685 66.5088 23.9766C66.5999 23.5846 66.7389 23.2383 66.9258 22.9375C67.1126 22.6322 67.3496 22.3952 67.6367 22.2266C67.9284 22.0534 68.2747 21.9668 68.6758 21.9668C68.7669 21.9668 68.8717 21.9782 68.9902 22.001C69.1087 22.0192 69.1908 22.0397 69.2363 22.0625ZM72.7773 28.3584L74.8008 22.1035H76.0928L73.4336 29.5H72.5859L72.7773 28.3584ZM71.0889 22.1035L73.1738 28.3926L73.3174 29.5H72.4697L69.79 22.1035H71.0889ZM78.6836 22.1035V29.5H77.4121V22.1035H78.6836ZM77.3164 20.1416C77.3164 19.9365 77.3779 19.7633 77.501 19.6221C77.6286 19.4808 77.8154 19.4102 78.0615 19.4102C78.3031 19.4102 78.4876 19.4808 78.6152 19.6221C78.7474 19.7633 78.8135 19.9365 78.8135 20.1416C78.8135 20.3376 78.7474 20.5062 78.6152 20.6475C78.4876 20.7842 78.3031 20.8525 78.0615 20.8525C77.8154 20.8525 77.6286 20.7842 77.501 20.6475C77.3779 20.5062 77.3164 20.3376 77.3164 20.1416ZM83.6738 28.5977C83.9746 28.5977 84.2526 28.5361 84.5078 28.4131C84.763 28.29 84.9727 28.1214 85.1367 27.9072C85.3008 27.6885 85.3942 27.4401 85.417 27.1621H86.6201C86.5973 27.5996 86.4492 28.0075 86.1758 28.3857C85.9069 28.7594 85.5537 29.0625 85.1162 29.2949C84.6787 29.5228 84.1979 29.6367 83.6738 29.6367C83.1178 29.6367 82.6325 29.5387 82.2178 29.3428C81.8076 29.1468 81.4658 28.8779 81.1924 28.5361C80.9235 28.1943 80.7207 27.8024 80.584 27.3604C80.4518 26.9137 80.3857 26.4421 80.3857 25.9453V25.6582C80.3857 25.1615 80.4518 24.6921 80.584 24.25C80.7207 23.8034 80.9235 23.4092 81.1924 23.0674C81.4658 22.7256 81.8076 22.4567 82.2178 22.2607C82.6325 22.0648 83.1178 21.9668 83.6738 21.9668C84.2526 21.9668 84.7585 22.0853 85.1914 22.3223C85.6243 22.5547 85.9639 22.8737 86.21 23.2793C86.4606 23.6803 86.5973 24.1361 86.6201 24.6465H85.417C85.3942 24.3411 85.3076 24.0654 85.1572 23.8193C85.0114 23.5732 84.8109 23.3773 84.5557 23.2314C84.305 23.0811 84.0111 23.0059 83.6738 23.0059C83.2865 23.0059 82.9606 23.0833 82.6963 23.2383C82.4365 23.3887 82.2292 23.5938 82.0742 23.8535C81.9238 24.1087 81.8145 24.3936 81.7461 24.708C81.6823 25.0179 81.6504 25.3346 81.6504 25.6582V25.9453C81.6504 26.2689 81.6823 26.5879 81.7461 26.9023C81.8099 27.2168 81.917 27.5016 82.0674 27.7568C82.2223 28.012 82.4297 28.2171 82.6895 28.3721C82.9538 28.5225 83.2819 28.5977 83.6738 28.5977ZM91.1113 29.6367C90.5964 29.6367 90.1292 29.5501 89.71 29.377C89.2952 29.1992 88.9375 28.9508 88.6367 28.6318C88.3405 28.3128 88.1126 27.9346 87.9531 27.4971C87.7936 27.0596 87.7139 26.5811 87.7139 26.0615V25.7744C87.7139 25.1729 87.8027 24.6374 87.9805 24.168C88.1582 23.694 88.3997 23.293 88.7051 22.9648C89.0104 22.6367 89.3568 22.3883 89.7441 22.2197C90.1315 22.0511 90.5326 21.9668 90.9473 21.9668C91.4759 21.9668 91.9316 22.0579 92.3145 22.2402C92.7018 22.4225 93.0186 22.6777 93.2646 23.0059C93.5107 23.3294 93.693 23.7122 93.8115 24.1543C93.93 24.5918 93.9893 25.0703 93.9893 25.5898V26.1572H88.4658V25.125H92.7246V25.0293C92.7064 24.7012 92.638 24.3822 92.5195 24.0723C92.4056 23.7624 92.2233 23.5072 91.9727 23.3066C91.722 23.1061 91.3802 23.0059 90.9473 23.0059C90.6602 23.0059 90.3958 23.0674 90.1543 23.1904C89.9128 23.3089 89.7054 23.4867 89.5322 23.7236C89.359 23.9606 89.2246 24.25 89.1289 24.5918C89.0332 24.9336 88.9854 25.3278 88.9854 25.7744V26.0615C88.9854 26.4124 89.0332 26.7428 89.1289 27.0527C89.2292 27.3581 89.3727 27.627 89.5596 27.8594C89.751 28.0918 89.9811 28.2741 90.25 28.4062C90.5234 28.5384 90.8333 28.6045 91.1797 28.6045C91.6263 28.6045 92.0046 28.5133 92.3145 28.3311C92.6243 28.1488 92.8955 27.9049 93.1279 27.5996L93.8936 28.208C93.734 28.4495 93.5312 28.6797 93.2852 28.8984C93.0391 29.1172 92.736 29.2949 92.376 29.4316C92.0205 29.5684 91.599 29.6367 91.1113 29.6367ZM99.7725 27.5381C99.7725 27.3558 99.7314 27.1872 99.6494 27.0322C99.5719 26.8727 99.4102 26.7292 99.1641 26.6016C98.9225 26.4694 98.5579 26.3555 98.0703 26.2598C97.6602 26.1732 97.2887 26.0706 96.9561 25.9521C96.6279 25.8337 96.3477 25.6901 96.1152 25.5215C95.8874 25.3529 95.7119 25.1546 95.5889 24.9268C95.4658 24.6989 95.4043 24.4323 95.4043 24.127C95.4043 23.8353 95.4681 23.5596 95.5957 23.2998C95.7279 23.04 95.9124 22.8099 96.1494 22.6094C96.391 22.4089 96.6803 22.2516 97.0176 22.1377C97.3548 22.0238 97.7308 21.9668 98.1455 21.9668C98.738 21.9668 99.2438 22.0716 99.6631 22.2812C100.082 22.4909 100.404 22.7712 100.627 23.1221C100.85 23.4684 100.962 23.8535 100.962 24.2773H99.6973C99.6973 24.0723 99.6357 23.874 99.5127 23.6826C99.3942 23.4867 99.2188 23.3249 98.9863 23.1973C98.7585 23.0697 98.4782 23.0059 98.1455 23.0059C97.7946 23.0059 97.5098 23.0605 97.291 23.1699C97.0768 23.2747 96.9196 23.4092 96.8193 23.5732C96.7236 23.7373 96.6758 23.9105 96.6758 24.0928C96.6758 24.2295 96.6986 24.3525 96.7441 24.4619C96.7943 24.5667 96.8809 24.6647 97.0039 24.7559C97.127 24.8424 97.3001 24.9245 97.5234 25.002C97.7467 25.0794 98.0316 25.1569 98.3779 25.2344C98.984 25.3711 99.4831 25.5352 99.875 25.7266C100.267 25.918 100.559 26.1527 100.75 26.4307C100.941 26.7087 101.037 27.0459 101.037 27.4424C101.037 27.766 100.969 28.0622 100.832 28.3311C100.7 28.5999 100.506 28.8324 100.251 29.0283C100 29.2197 99.6995 29.3701 99.3486 29.4795C99.0023 29.5843 98.6126 29.6367 98.1797 29.6367C97.528 29.6367 96.9766 29.5205 96.5254 29.2881C96.0742 29.0557 95.7324 28.7549 95.5 28.3857C95.2676 28.0166 95.1514 27.627 95.1514 27.2168H96.4229C96.4411 27.5632 96.5413 27.8389 96.7236 28.0439C96.9059 28.2445 97.1292 28.388 97.3936 28.4746C97.6579 28.5566 97.9199 28.5977 98.1797 28.5977C98.526 28.5977 98.8154 28.5521 99.0479 28.4609C99.2848 28.3698 99.4648 28.2445 99.5879 28.085C99.7109 27.9255 99.7725 27.7432 99.7725 27.5381Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M29.25 41.25V51.75H18.75V41.25H29.25ZM29.25 39.75H18.75C17.925 39.75 17.25 40.425 17.25 41.25V51.75C17.25 52.575 17.925 53.25 18.75 53.25H29.25C30.075 53.25 30.75 52.575 30.75 51.75V41.25C30.75 40.425 30.075 39.75 29.25 39.75Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M40.3672 46.6772H38.0249L38.0122 45.6934H40.1387C40.4899 45.6934 40.7967 45.6341 41.0591 45.5156C41.3215 45.3971 41.5246 45.2279 41.6685 45.0078C41.8166 44.7835 41.8906 44.5169 41.8906 44.208C41.8906 43.8695 41.825 43.5944 41.6938 43.3828C41.5669 43.167 41.3701 43.0104 41.1035 42.9131C40.8411 42.8115 40.5068 42.7607 40.1006 42.7607H38.2979V51H37.0728V41.7578H40.1006C40.5745 41.7578 40.9977 41.8065 41.3701 41.9038C41.7425 41.9969 42.0578 42.145 42.3159 42.3481C42.5783 42.547 42.7772 42.8009 42.9126 43.1099C43.048 43.4188 43.1157 43.7891 43.1157 44.2207C43.1157 44.6016 43.0184 44.9465 42.8237 45.2554C42.6291 45.5601 42.3582 45.8097 42.0112 46.0044C41.6685 46.1991 41.2664 46.3239 40.8052 46.3789L40.3672 46.6772ZM40.3101 51H37.5425L38.2344 50.0034H40.3101C40.6994 50.0034 41.0295 49.9357 41.3003 49.8003C41.5754 49.6649 41.7848 49.4744 41.9287 49.229C42.0726 48.9793 42.1445 48.6852 42.1445 48.3467C42.1445 48.0039 42.0832 47.7077 41.9604 47.458C41.8377 47.2083 41.6452 47.0158 41.3828 46.8804C41.1204 46.745 40.7819 46.6772 40.3672 46.6772H38.6216L38.6343 45.6934H41.021L41.2812 46.0488C41.7256 46.0869 42.1022 46.2139 42.4111 46.4297C42.7201 46.6413 42.9549 46.9121 43.1157 47.2422C43.2808 47.5723 43.3633 47.9362 43.3633 48.334C43.3633 48.9095 43.2363 49.3962 42.9824 49.7939C42.7327 50.1875 42.3794 50.488 41.9224 50.6953C41.4653 50.8984 40.9279 51 40.3101 51ZM46.1689 45.2109V51H44.9946V44.1318H46.1372L46.1689 45.2109ZM48.3145 44.0938L48.3081 45.1855C48.2108 45.1644 48.1177 45.1517 48.0288 45.1475C47.9442 45.139 47.8468 45.1348 47.7368 45.1348C47.466 45.1348 47.2269 45.1771 47.0195 45.2617C46.8122 45.3464 46.6366 45.4648 46.4927 45.6172C46.3488 45.7695 46.2345 45.9515 46.1499 46.1631C46.0695 46.3704 46.0166 46.599 45.9912 46.8486L45.6611 47.0391C45.6611 46.6243 45.7013 46.235 45.7817 45.8711C45.8664 45.5072 45.9954 45.1855 46.1689 44.9062C46.3424 44.6227 46.5625 44.4027 46.8291 44.2461C47.0999 44.0853 47.4215 44.0049 47.7939 44.0049C47.8786 44.0049 47.9759 44.0155 48.0859 44.0366C48.196 44.0535 48.2721 44.0726 48.3145 44.0938ZM52.123 51.127C51.6449 51.127 51.2111 51.0465 50.8218 50.8857C50.4367 50.7207 50.1045 50.4901 49.8252 50.1938C49.5501 49.8976 49.3385 49.5464 49.1904 49.1401C49.0423 48.7339 48.9683 48.2896 48.9683 47.8071V47.5405C48.9683 46.9819 49.0508 46.4847 49.2158 46.0488C49.3809 45.6087 49.6051 45.2363 49.8887 44.9316C50.1722 44.627 50.4938 44.3963 50.8535 44.2397C51.2132 44.0832 51.5856 44.0049 51.9707 44.0049C52.4616 44.0049 52.8848 44.0895 53.2402 44.2588C53.5999 44.4281 53.894 44.665 54.1226 44.9697C54.3511 45.2702 54.5203 45.6257 54.6304 46.0361C54.7404 46.4424 54.7954 46.8867 54.7954 47.3691V47.896H49.6665V46.9375H53.6211V46.8486C53.6042 46.5439 53.5407 46.2477 53.4307 45.96C53.3249 45.6722 53.1556 45.4352 52.9229 45.249C52.6901 45.0628 52.3727 44.9697 51.9707 44.9697C51.7041 44.9697 51.4587 45.0269 51.2344 45.1411C51.0101 45.2511 50.8175 45.4162 50.6567 45.6362C50.4959 45.8563 50.3711 46.125 50.2822 46.4424C50.1934 46.7598 50.1489 47.1258 50.1489 47.5405V47.8071C50.1489 48.133 50.1934 48.4398 50.2822 48.7275C50.3753 49.0111 50.5086 49.2607 50.6821 49.4766C50.8599 49.6924 51.0736 49.8617 51.3232 49.9844C51.5771 50.1071 51.8649 50.1685 52.1865 50.1685C52.6012 50.1685 52.9525 50.0838 53.2402 49.9146C53.528 49.7453 53.7798 49.5189 53.9956 49.2354L54.7065 49.8003C54.5584 50.0246 54.3701 50.2383 54.1416 50.4414C53.9131 50.6445 53.6317 50.8096 53.2974 50.9365C52.9673 51.0635 52.5758 51.127 52.123 51.127ZM60.2163 49.8257V46.29C60.2163 46.0192 60.1613 45.7843 60.0513 45.5854C59.9455 45.3823 59.7847 45.2257 59.5688 45.1157C59.353 45.0057 59.0864 44.9507 58.769 44.9507C58.4728 44.9507 58.2126 45.0015 57.9883 45.103C57.7682 45.2046 57.5947 45.3379 57.4678 45.5029C57.3451 45.668 57.2837 45.8457 57.2837 46.0361H56.1094C56.1094 45.7907 56.1729 45.5474 56.2998 45.3062C56.4268 45.0649 56.6087 44.847 56.8457 44.6523C57.0869 44.4535 57.3747 44.2969 57.709 44.1826C58.0475 44.0641 58.4242 44.0049 58.8389 44.0049C59.3382 44.0049 59.7783 44.0895 60.1592 44.2588C60.5443 44.4281 60.8447 44.6841 61.0605 45.0269C61.2806 45.3654 61.3906 45.7907 61.3906 46.3027V49.502C61.3906 49.7305 61.4097 49.9738 61.4478 50.2319C61.4901 50.4901 61.5514 50.7122 61.6318 50.8984V51H60.4067C60.3475 50.8646 60.3009 50.6847 60.2671 50.4604C60.2332 50.2319 60.2163 50.0203 60.2163 49.8257ZM60.4194 46.8359L60.4321 47.6611H59.2451C58.9108 47.6611 58.6125 47.6886 58.3501 47.7437C58.0877 47.7944 57.8677 47.8727 57.6899 47.9785C57.5122 48.0843 57.3768 48.2176 57.2837 48.3784C57.1906 48.535 57.144 48.7191 57.144 48.9307C57.144 49.1465 57.1927 49.3433 57.29 49.521C57.3874 49.6987 57.5334 49.8405 57.728 49.9463C57.9269 50.0479 58.1702 50.0986 58.458 50.0986C58.8177 50.0986 59.1351 50.0225 59.4102 49.8701C59.6852 49.7178 59.9032 49.5316 60.064 49.3115C60.229 49.0915 60.3179 48.8778 60.3306 48.6704L60.832 49.2354C60.8024 49.4131 60.722 49.6099 60.5908 49.8257C60.4596 50.0415 60.284 50.2489 60.064 50.4478C59.8481 50.6424 59.59 50.8053 59.2896 50.9365C58.9933 51.0635 58.659 51.127 58.2866 51.127C57.8211 51.127 57.4128 51.036 57.0615 50.854C56.7145 50.672 56.4437 50.4287 56.249 50.124C56.0586 49.8151 55.9634 49.4702 55.9634 49.0894C55.9634 48.7212 56.0353 48.3975 56.1792 48.1182C56.3231 47.8346 56.5304 47.5998 56.8013 47.4136C57.0721 47.2231 57.3979 47.0793 57.7788 46.9819C58.1597 46.8846 58.585 46.8359 59.0547 46.8359H60.4194ZM64.4185 41.25V51H63.2378V41.25H64.4185ZM68.6143 44.1318L65.6182 47.3374L63.9424 49.0767L63.8472 47.8262L65.0469 46.3916L67.1797 44.1318H68.6143ZM67.5415 51L65.0913 47.7246L65.7007 46.6772L68.9253 51H67.5415ZM71.5786 51H70.4043V43.4082C70.4043 42.9131 70.4932 42.4963 70.6709 42.1577C70.8529 41.8149 71.1131 41.5568 71.4517 41.3833C71.7902 41.2056 72.1922 41.1167 72.6577 41.1167C72.7931 41.1167 72.9285 41.1252 73.064 41.1421C73.2036 41.159 73.339 41.1844 73.4702 41.2183L73.4067 42.1768C73.3179 42.1556 73.2163 42.1408 73.1021 42.1323C72.992 42.1239 72.882 42.1196 72.772 42.1196C72.5223 42.1196 72.3065 42.1704 72.1245 42.272C71.9468 42.3693 71.8114 42.5132 71.7183 42.7036C71.6252 42.894 71.5786 43.1289 71.5786 43.4082V51ZM73.0386 44.1318V45.0332H69.3188V44.1318H73.0386ZM78.396 49.8257V46.29C78.396 46.0192 78.341 45.7843 78.231 45.5854C78.1252 45.3823 77.9644 45.2257 77.7485 45.1157C77.5327 45.0057 77.2661 44.9507 76.9487 44.9507C76.6525 44.9507 76.3923 45.0015 76.168 45.103C75.9479 45.2046 75.7744 45.3379 75.6475 45.5029C75.5247 45.668 75.4634 45.8457 75.4634 46.0361H74.2891C74.2891 45.7907 74.3525 45.5474 74.4795 45.3062C74.6064 45.0649 74.7884 44.847 75.0254 44.6523C75.2666 44.4535 75.5544 44.2969 75.8887 44.1826C76.2272 44.0641 76.6038 44.0049 77.0186 44.0049C77.5179 44.0049 77.958 44.0895 78.3389 44.2588C78.724 44.4281 79.0244 44.6841 79.2402 45.0269C79.4603 45.3654 79.5703 45.7907 79.5703 46.3027V49.502C79.5703 49.7305 79.5894 49.9738 79.6274 50.2319C79.6698 50.4901 79.7311 50.7122 79.8115 50.8984V51H78.5864C78.5272 50.8646 78.4806 50.6847 78.4468 50.4604C78.4129 50.2319 78.396 50.0203 78.396 49.8257ZM78.5991 46.8359L78.6118 47.6611H77.4248C77.0905 47.6611 76.7922 47.6886 76.5298 47.7437C76.2674 47.7944 76.0474 47.8727 75.8696 47.9785C75.6919 48.0843 75.5565 48.2176 75.4634 48.3784C75.3703 48.535 75.3237 48.7191 75.3237 48.9307C75.3237 49.1465 75.3724 49.3433 75.4697 49.521C75.5671 49.6987 75.7131 49.8405 75.9077 49.9463C76.1066 50.0479 76.3499 50.0986 76.6377 50.0986C76.9974 50.0986 77.3148 50.0225 77.5898 49.8701C77.8649 49.7178 78.0828 49.5316 78.2437 49.3115C78.4087 49.0915 78.4976 48.8778 78.5103 48.6704L79.0117 49.2354C78.9821 49.4131 78.9017 49.6099 78.7705 49.8257C78.6393 50.0415 78.4637 50.2489 78.2437 50.4478C78.0278 50.6424 77.7697 50.8053 77.4692 50.9365C77.173 51.0635 76.8387 51.127 76.4663 51.127C76.0008 51.127 75.5924 51.036 75.2412 50.854C74.8942 50.672 74.6234 50.4287 74.4287 50.124C74.2383 49.8151 74.1431 49.4702 74.1431 49.0894C74.1431 48.7212 74.215 48.3975 74.3589 48.1182C74.5028 47.8346 74.7101 47.5998 74.981 47.4136C75.2518 47.2231 75.5776 47.0793 75.9585 46.9819C76.3394 46.8846 76.7646 46.8359 77.2344 46.8359H78.5991ZM85.4165 49.1782C85.4165 49.009 85.3784 48.8524 85.3022 48.7085C85.2303 48.5604 85.0801 48.4271 84.8516 48.3086C84.6273 48.1859 84.2887 48.0801 83.8359 47.9912C83.4551 47.9108 83.1102 47.8156 82.8013 47.7056C82.4966 47.5955 82.2363 47.4622 82.0205 47.3057C81.8089 47.1491 81.646 46.965 81.5317 46.7534C81.4175 46.5418 81.3604 46.2943 81.3604 46.0107C81.3604 45.7399 81.4196 45.4839 81.5381 45.2427C81.6608 45.0015 81.8322 44.7878 82.0522 44.6016C82.2765 44.4154 82.5452 44.2694 82.8584 44.1636C83.1715 44.0578 83.5207 44.0049 83.9058 44.0049C84.4559 44.0049 84.9256 44.1022 85.3149 44.2969C85.7043 44.4915 86.0026 44.7518 86.21 45.0776C86.4173 45.3993 86.521 45.7568 86.521 46.1504H85.3467C85.3467 45.96 85.2896 45.7759 85.1753 45.5981C85.0653 45.4162 84.9023 45.266 84.6865 45.1475C84.4749 45.029 84.2147 44.9697 83.9058 44.9697C83.5799 44.9697 83.3154 45.0205 83.1123 45.1221C82.9134 45.2194 82.7674 45.3442 82.6743 45.4966C82.5854 45.6489 82.541 45.8097 82.541 45.979C82.541 46.106 82.5622 46.2202 82.6045 46.3218C82.651 46.4191 82.7314 46.5101 82.8457 46.5947C82.96 46.6751 83.1208 46.7513 83.3281 46.8232C83.5355 46.8952 83.8 46.9671 84.1216 47.0391C84.6844 47.166 85.1478 47.3184 85.5117 47.4961C85.8757 47.6738 86.1465 47.8918 86.3242 48.1499C86.502 48.408 86.5908 48.7212 86.5908 49.0894C86.5908 49.3898 86.5273 49.6649 86.4004 49.9146C86.2777 50.1642 86.0978 50.38 85.8608 50.562C85.6281 50.7397 85.3488 50.8794 85.0229 50.981C84.7013 51.0783 84.3395 51.127 83.9375 51.127C83.3324 51.127 82.8203 51.019 82.4014 50.8032C81.9824 50.5874 81.665 50.3081 81.4492 49.9653C81.2334 49.6226 81.1255 49.2607 81.1255 48.8799H82.3062C82.3231 49.2015 82.4162 49.4575 82.5854 49.6479C82.7547 49.8341 82.9621 49.9674 83.2075 50.0479C83.453 50.124 83.6963 50.1621 83.9375 50.1621C84.2591 50.1621 84.5278 50.1198 84.7437 50.0352C84.9637 49.9505 85.1309 49.8341 85.2451 49.686C85.3594 49.5379 85.4165 49.3687 85.4165 49.1782ZM91.0088 44.1318V45.0332H87.2954V44.1318H91.0088ZM88.5522 42.4624H89.7266V49.2988C89.7266 49.5316 89.7625 49.7072 89.8345 49.8257C89.9064 49.9442 89.9995 50.0225 90.1138 50.0605C90.228 50.0986 90.3507 50.1177 90.4819 50.1177C90.5793 50.1177 90.6808 50.1092 90.7866 50.0923C90.8966 50.0711 90.9792 50.0542 91.0342 50.0415L91.0405 51C90.9474 51.0296 90.8247 51.0571 90.6724 51.0825C90.5243 51.1121 90.3444 51.127 90.1328 51.127C89.8451 51.127 89.5806 51.0698 89.3394 50.9556C89.0981 50.8413 88.9056 50.6509 88.7617 50.3843C88.6221 50.1134 88.5522 49.7495 88.5522 49.2925V42.4624ZM101.546 46.0425V47.147H95.2109V46.0425H101.546ZM98.9688 43.3447V50.0732H97.7944V43.3447H98.9688ZM109.595 40.2598V42.1958H108.643V40.2598H109.595ZM109.48 50.6255V52.3203H108.535V50.6255H109.48ZM110.75 48.6196C110.75 48.3657 110.693 48.1372 110.579 47.9341C110.464 47.731 110.276 47.5448 110.014 47.3755C109.751 47.2062 109.4 47.0496 108.96 46.9058C108.427 46.7407 107.965 46.5397 107.576 46.3027C107.191 46.0658 106.893 45.7716 106.681 45.4204C106.474 45.0692 106.37 44.6439 106.37 44.1445C106.37 43.624 106.482 43.1755 106.707 42.7988C106.931 42.4222 107.248 42.1323 107.659 41.9292C108.069 41.7261 108.552 41.6245 109.106 41.6245C109.538 41.6245 109.923 41.6901 110.261 41.8213C110.6 41.9482 110.885 42.1387 111.118 42.3926C111.355 42.6465 111.535 42.9575 111.658 43.3257C111.785 43.6938 111.848 44.1191 111.848 44.6016H110.68C110.68 44.318 110.646 44.0578 110.579 43.8208C110.511 43.5838 110.409 43.3786 110.274 43.2051C110.139 43.0273 109.973 42.8919 109.779 42.7988C109.584 42.7015 109.36 42.6528 109.106 42.6528C108.75 42.6528 108.456 42.7142 108.224 42.8369C107.995 42.9596 107.826 43.1331 107.716 43.3574C107.606 43.5775 107.551 43.8335 107.551 44.1255C107.551 44.3963 107.606 44.6333 107.716 44.8364C107.826 45.0396 108.012 45.2236 108.274 45.3887C108.541 45.5495 108.907 45.7082 109.373 45.8647C109.918 46.0382 110.382 46.2435 110.763 46.4805C111.144 46.7132 111.433 47.001 111.632 47.3438C111.831 47.6823 111.931 48.1034 111.931 48.6069C111.931 49.1528 111.808 49.6141 111.562 49.9907C111.317 50.3631 110.972 50.6466 110.528 50.8413C110.083 51.036 109.563 51.1333 108.966 51.1333C108.607 51.1333 108.251 51.0846 107.9 50.9873C107.549 50.89 107.231 50.7313 106.948 50.5112C106.664 50.2869 106.438 49.9928 106.269 49.6289C106.099 49.2607 106.015 48.8101 106.015 48.2769H107.195C107.195 48.6366 107.246 48.9349 107.348 49.1719C107.453 49.4046 107.593 49.5908 107.767 49.7305C107.94 49.8659 108.131 49.9632 108.338 50.0225C108.549 50.0775 108.759 50.105 108.966 50.105C109.347 50.105 109.669 50.0457 109.931 49.9272C110.198 49.8045 110.401 49.631 110.541 49.4067C110.68 49.1825 110.75 48.9201 110.75 48.6196ZM117.256 41.707V51H116.082V43.1733L113.714 44.0366V42.9766L117.072 41.707H117.256ZM122.195 46.6011L121.255 46.3599L121.719 41.7578H126.46V42.8433H122.715L122.436 45.3569C122.605 45.2596 122.819 45.1686 123.077 45.084C123.34 44.9993 123.64 44.957 123.979 44.957C124.406 44.957 124.789 45.0311 125.127 45.1792C125.466 45.3231 125.754 45.5304 125.991 45.8013C126.232 46.0721 126.416 46.3979 126.543 46.7788C126.67 47.1597 126.733 47.585 126.733 48.0547C126.733 48.499 126.672 48.9074 126.549 49.2798C126.431 49.6522 126.251 49.978 126.01 50.2573C125.769 50.5324 125.464 50.7461 125.096 50.8984C124.732 51.0508 124.302 51.127 123.807 51.127C123.435 51.127 123.081 51.0762 122.747 50.9746C122.417 50.8688 122.121 50.7101 121.858 50.4985C121.6 50.2827 121.389 50.0161 121.224 49.6987C121.063 49.3771 120.961 49.0005 120.919 48.5688H122.036C122.087 48.9159 122.188 49.2078 122.341 49.4448C122.493 49.6818 122.692 49.8617 122.938 49.9844C123.187 50.1029 123.477 50.1621 123.807 50.1621C124.086 50.1621 124.334 50.1134 124.55 50.0161C124.766 49.9188 124.948 49.7791 125.096 49.5972C125.244 49.4152 125.356 49.1951 125.432 48.937C125.513 48.6789 125.553 48.389 125.553 48.0674C125.553 47.7754 125.513 47.5046 125.432 47.2549C125.352 47.0052 125.231 46.7873 125.07 46.6011C124.914 46.4149 124.721 46.271 124.493 46.1694C124.264 46.0636 124.002 46.0107 123.706 46.0107C123.312 46.0107 123.014 46.0636 122.811 46.1694C122.612 46.2752 122.406 46.4191 122.195 46.6011Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M22.8563 72.4813L28.275 67.0438L27.4688 66.2375L22.8563 70.8687L20.625 68.6375L19.8188 69.4438L22.8563 72.4813ZM18.375 76.25C18.075 76.25 17.8125 76.1375 17.5875 75.9125C17.3625 75.6875 17.25 75.425 17.25 75.125V63.875C17.25 63.575 17.3625 63.3125 17.5875 63.0875C17.8125 62.8625 18.075 62.75 18.375 62.75H29.625C29.925 62.75 30.1875 62.8625 30.4125 63.0875C30.6375 63.3125 30.75 63.575 30.75 63.875V75.125C30.75 75.425 30.6375 75.6875 30.4125 75.9125C30.1875 76.1375 29.925 76.25 29.625 76.25H18.375Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M40.4878 64.7578V74H39.2817V64.7578H40.4878ZM43.4585 64.7578V65.7607H36.3174V64.7578H43.4585ZM45.3438 68.2109V74H44.1694V67.1318H45.312L45.3438 68.2109ZM47.4893 67.0938L47.4829 68.1855C47.3856 68.1644 47.2925 68.1517 47.2036 68.1475C47.119 68.139 47.0216 68.1348 46.9116 68.1348C46.6408 68.1348 46.4017 68.1771 46.1943 68.2617C45.987 68.3464 45.8114 68.4648 45.6675 68.6172C45.5236 68.7695 45.4093 68.9515 45.3247 69.1631C45.2443 69.3704 45.1914 69.599 45.166 69.8486L44.8359 70.0391C44.8359 69.6243 44.8761 69.235 44.9565 68.8711C45.0412 68.5072 45.1702 68.1855 45.3438 67.9062C45.5173 67.6227 45.7373 67.4027 46.0039 67.2461C46.2747 67.0853 46.5964 67.0049 46.9688 67.0049C47.0534 67.0049 47.1507 67.0155 47.2607 67.0366C47.3708 67.0535 47.4469 67.0726 47.4893 67.0938ZM52.3706 72.8257V69.29C52.3706 69.0192 52.3156 68.7843 52.2056 68.5854C52.0998 68.3823 51.939 68.2257 51.7231 68.1157C51.5073 68.0057 51.2407 67.9507 50.9233 67.9507C50.6271 67.9507 50.3669 68.0015 50.1426 68.103C49.9225 68.2046 49.749 68.3379 49.6221 68.5029C49.4993 68.668 49.438 68.8457 49.438 69.0361H48.2637C48.2637 68.7907 48.3271 68.5474 48.4541 68.3062C48.5811 68.0649 48.763 67.847 49 67.6523C49.2412 67.4535 49.529 67.2969 49.8633 67.1826C50.2018 67.0641 50.5785 67.0049 50.9932 67.0049C51.4925 67.0049 51.9326 67.0895 52.3135 67.2588C52.6986 67.4281 52.999 67.6841 53.2148 68.0269C53.4349 68.3654 53.5449 68.7907 53.5449 69.3027V72.502C53.5449 72.7305 53.564 72.9738 53.6021 73.2319C53.6444 73.4901 53.7057 73.7122 53.7861 73.8984V74H52.561C52.5018 73.8646 52.4552 73.6847 52.4214 73.4604C52.3875 73.2319 52.3706 73.0203 52.3706 72.8257ZM52.5737 69.8359L52.5864 70.6611H51.3994C51.0651 70.6611 50.7668 70.6886 50.5044 70.7437C50.242 70.7944 50.022 70.8727 49.8442 70.9785C49.6665 71.0843 49.5311 71.2176 49.438 71.3784C49.3449 71.535 49.2983 71.7191 49.2983 71.9307C49.2983 72.1465 49.347 72.3433 49.4443 72.521C49.5417 72.6987 49.6877 72.8405 49.8823 72.9463C50.0812 73.0479 50.3245 73.0986 50.6123 73.0986C50.972 73.0986 51.2894 73.0225 51.5645 72.8701C51.8395 72.7178 52.0575 72.5316 52.2183 72.3115C52.3833 72.0915 52.4722 71.8778 52.4849 71.6704L52.9863 72.2354C52.9567 72.4131 52.8763 72.6099 52.7451 72.8257C52.6139 73.0415 52.4383 73.2489 52.2183 73.4478C52.0024 73.6424 51.7443 73.8053 51.4438 73.9365C51.1476 74.0635 50.8133 74.127 50.4409 74.127C49.9754 74.127 49.5671 74.036 49.2158 73.854C48.8688 73.672 48.598 73.4287 48.4033 73.124C48.2129 72.8151 48.1177 72.4702 48.1177 72.0894C48.1177 71.7212 48.1896 71.3975 48.3335 71.1182C48.4774 70.8346 48.6847 70.5998 48.9556 70.4136C49.2264 70.2231 49.5522 70.0793 49.9331 69.9819C50.314 69.8846 50.7393 69.8359 51.209 69.8359H52.5737ZM56.5664 68.5981V74H55.3921V67.1318H56.5029L56.5664 68.5981ZM56.2871 70.3057L55.7983 70.2866C55.8026 69.8169 55.8724 69.3831 56.0078 68.9854C56.1432 68.5833 56.3337 68.2342 56.5791 67.938C56.8245 67.6418 57.1165 67.4132 57.4551 67.2524C57.7979 67.0874 58.1766 67.0049 58.5913 67.0049C58.9299 67.0049 59.2345 67.0514 59.5054 67.1445C59.7762 67.2334 60.0068 67.3773 60.1973 67.5762C60.3919 67.7751 60.54 68.0332 60.6416 68.3506C60.7432 68.6637 60.7939 69.0467 60.7939 69.4995V74H59.6133V69.4868C59.6133 69.1271 59.5604 68.8394 59.4546 68.6235C59.3488 68.4035 59.1943 68.2448 58.9912 68.1475C58.7881 68.0459 58.5384 67.9951 58.2422 67.9951C57.9502 67.9951 57.6836 68.0565 57.4424 68.1792C57.2054 68.3019 57.0002 68.4712 56.8267 68.687C56.6574 68.9028 56.5241 69.1504 56.4268 69.4297C56.3337 69.7048 56.2871 69.9967 56.2871 70.3057ZM66.5767 72.1782C66.5767 72.009 66.5386 71.8524 66.4624 71.7085C66.3905 71.5604 66.2402 71.4271 66.0117 71.3086C65.7874 71.1859 65.4489 71.0801 64.9961 70.9912C64.6152 70.9108 64.2703 70.8156 63.9614 70.7056C63.6567 70.5955 63.3965 70.4622 63.1807 70.3057C62.9691 70.1491 62.8062 69.965 62.6919 69.7534C62.5776 69.5418 62.5205 69.2943 62.5205 69.0107C62.5205 68.7399 62.5798 68.4839 62.6982 68.2427C62.821 68.0015 62.9924 67.7878 63.2124 67.6016C63.4367 67.4154 63.7054 67.2694 64.0186 67.1636C64.3317 67.0578 64.6808 67.0049 65.0659 67.0049C65.616 67.0049 66.0858 67.1022 66.4751 67.2969C66.8644 67.4915 67.1628 67.7518 67.3701 68.0776C67.5775 68.3993 67.6812 68.7568 67.6812 69.1504H66.5068C66.5068 68.96 66.4497 68.7759 66.3354 68.5981C66.2254 68.4162 66.0625 68.266 65.8467 68.1475C65.6351 68.029 65.3748 67.9697 65.0659 67.9697C64.7401 67.9697 64.4756 68.0205 64.2725 68.1221C64.0736 68.2194 63.9276 68.3442 63.8345 68.4966C63.7456 68.6489 63.7012 68.8097 63.7012 68.979C63.7012 69.106 63.7223 69.2202 63.7646 69.3218C63.8112 69.4191 63.8916 69.5101 64.0059 69.5947C64.1201 69.6751 64.2809 69.7513 64.4883 69.8232C64.6956 69.8952 64.9601 69.9671 65.2817 70.0391C65.8446 70.166 66.3079 70.3184 66.6719 70.4961C67.0358 70.6738 67.3066 70.8918 67.4844 71.1499C67.6621 71.408 67.751 71.7212 67.751 72.0894C67.751 72.3898 67.6875 72.6649 67.5605 72.9146C67.4378 73.1642 67.258 73.38 67.021 73.562C66.7882 73.7397 66.509 73.8794 66.1831 73.981C65.8615 74.0783 65.4997 74.127 65.0977 74.127C64.4925 74.127 63.9805 74.019 63.5615 73.8032C63.1426 73.5874 62.8252 73.3081 62.6094 72.9653C62.3936 72.6226 62.2856 72.2607 62.2856 71.8799H63.4663C63.4832 72.2015 63.5763 72.4575 63.7456 72.6479C63.9149 72.8341 64.1222 72.9674 64.3677 73.0479C64.6131 73.124 64.8564 73.1621 65.0977 73.1621C65.4193 73.1621 65.688 73.1198 65.9038 73.0352C66.1239 72.9505 66.291 72.8341 66.4053 72.686C66.5195 72.5379 66.5767 72.3687 66.5767 72.1782ZM71.0454 74H69.8711V66.4082C69.8711 65.9131 69.96 65.4963 70.1377 65.1577C70.3197 64.8149 70.5799 64.5568 70.9185 64.3833C71.257 64.2056 71.659 64.1167 72.1245 64.1167C72.2599 64.1167 72.3953 64.1252 72.5308 64.1421C72.6704 64.159 72.8058 64.1844 72.937 64.2183L72.8735 65.1768C72.7847 65.1556 72.6831 65.1408 72.5688 65.1323C72.4588 65.1239 72.3488 65.1196 72.2388 65.1196C71.9891 65.1196 71.7733 65.1704 71.5913 65.272C71.4136 65.3693 71.2782 65.5132 71.1851 65.7036C71.092 65.894 71.0454 66.1289 71.0454 66.4082V74ZM72.5054 67.1318V68.0332H68.7856V67.1318H72.5054ZM76.5107 74.127C76.0326 74.127 75.5988 74.0465 75.2095 73.8857C74.8244 73.7207 74.4922 73.4901 74.2129 73.1938C73.9378 72.8976 73.7262 72.5464 73.5781 72.1401C73.43 71.7339 73.356 71.2896 73.356 70.8071V70.5405C73.356 69.9819 73.4385 69.4847 73.6035 69.0488C73.7686 68.6087 73.9928 68.2363 74.2764 67.9316C74.5599 67.627 74.8815 67.3963 75.2412 67.2397C75.6009 67.0832 75.9733 67.0049 76.3584 67.0049C76.8493 67.0049 77.2725 67.0895 77.6279 67.2588C77.9876 67.4281 78.2817 67.665 78.5103 67.9697C78.7388 68.2702 78.908 68.6257 79.0181 69.0361C79.1281 69.4424 79.1831 69.8867 79.1831 70.3691V70.896H74.0542V69.9375H78.0088V69.8486C77.9919 69.5439 77.9284 69.2477 77.8184 68.96C77.7126 68.6722 77.5433 68.4352 77.3105 68.249C77.0778 68.0628 76.7604 67.9697 76.3584 67.9697C76.0918 67.9697 75.8464 68.0269 75.6221 68.1411C75.3978 68.2511 75.2052 68.4162 75.0444 68.6362C74.8836 68.8563 74.7588 69.125 74.6699 69.4424C74.5811 69.7598 74.5366 70.1258 74.5366 70.5405V70.8071C74.5366 71.133 74.5811 71.4398 74.6699 71.7275C74.763 72.0111 74.8963 72.2607 75.0698 72.4766C75.2476 72.6924 75.4613 72.8617 75.7109 72.9844C75.9648 73.1071 76.2526 73.1685 76.5742 73.1685C76.9889 73.1685 77.3402 73.0838 77.6279 72.9146C77.9157 72.7453 78.1675 72.5189 78.3833 72.2354L79.0942 72.8003C78.9461 73.0246 78.7578 73.2383 78.5293 73.4414C78.3008 73.6445 78.0194 73.8096 77.6851 73.9365C77.355 74.0635 76.9635 74.127 76.5107 74.127ZM81.7285 68.2109V74H80.5542V67.1318H81.6968L81.7285 68.2109ZM83.874 67.0938L83.8677 68.1855C83.7703 68.1644 83.6772 68.1517 83.5884 68.1475C83.5037 68.139 83.4064 68.1348 83.2964 68.1348C83.0256 68.1348 82.7865 68.1771 82.5791 68.2617C82.3717 68.3464 82.1961 68.4648 82.0522 68.6172C81.9084 68.7695 81.7941 68.9515 81.7095 69.1631C81.6291 69.3704 81.5762 69.599 81.5508 69.8486L81.2207 70.0391C81.2207 69.6243 81.2609 69.235 81.3413 68.8711C81.4259 68.5072 81.555 68.1855 81.7285 67.9062C81.902 67.6227 82.1221 67.4027 82.3887 67.2461C82.6595 67.0853 82.9811 67.0049 83.3535 67.0049C83.4382 67.0049 83.5355 67.0155 83.6455 67.0366C83.7555 67.0535 83.8317 67.0726 83.874 67.0938ZM94.1191 69.0425V70.147H87.7842V69.0425H94.1191ZM91.542 66.3447V73.0732H90.3677V66.3447H91.542ZM102.168 63.2598V65.1958H101.216V63.2598H102.168ZM102.054 73.6255V75.3203H101.108V73.6255H102.054ZM103.323 71.6196C103.323 71.3657 103.266 71.1372 103.152 70.9341C103.038 70.731 102.849 70.5448 102.587 70.3755C102.325 70.2062 101.973 70.0496 101.533 69.9058C101 69.7407 100.539 69.5397 100.149 69.3027C99.7643 69.0658 99.466 68.7716 99.2544 68.4204C99.047 68.0692 98.9434 67.6439 98.9434 67.1445C98.9434 66.624 99.0555 66.1755 99.2798 65.7988C99.5041 65.4222 99.8215 65.1323 100.232 64.9292C100.642 64.7261 101.125 64.6245 101.679 64.6245C102.111 64.6245 102.496 64.6901 102.834 64.8213C103.173 64.9482 103.459 65.1387 103.691 65.3926C103.928 65.6465 104.108 65.9575 104.231 66.3257C104.358 66.6938 104.421 67.1191 104.421 67.6016H103.253C103.253 67.318 103.22 67.0578 103.152 66.8208C103.084 66.5838 102.983 66.3786 102.847 66.2051C102.712 66.0273 102.547 65.8919 102.352 65.7988C102.157 65.7015 101.933 65.6528 101.679 65.6528C101.324 65.6528 101.03 65.7142 100.797 65.8369C100.568 65.9596 100.399 66.1331 100.289 66.3574C100.179 66.5775 100.124 66.8335 100.124 67.1255C100.124 67.3963 100.179 67.6333 100.289 67.8364C100.399 68.0396 100.585 68.2236 100.848 68.3887C101.114 68.5495 101.48 68.7082 101.946 68.8647C102.492 69.0382 102.955 69.2435 103.336 69.4805C103.717 69.7132 104.007 70.001 104.206 70.3438C104.404 70.6823 104.504 71.1034 104.504 71.6069C104.504 72.1528 104.381 72.6141 104.136 72.9907C103.89 73.3631 103.545 73.6466 103.101 73.8413C102.657 74.036 102.136 74.1333 101.54 74.1333C101.18 74.1333 100.824 74.0846 100.473 73.9873C100.122 73.89 99.8045 73.7313 99.521 73.5112C99.2375 73.2869 99.0111 72.9928 98.8418 72.6289C98.6725 72.2607 98.5879 71.8101 98.5879 71.2769H99.7686C99.7686 71.6366 99.8193 71.9349 99.9209 72.1719C100.027 72.4046 100.166 72.5908 100.34 72.7305C100.513 72.8659 100.704 72.9632 100.911 73.0225C101.123 73.0775 101.332 73.105 101.54 73.105C101.92 73.105 102.242 73.0457 102.504 72.9272C102.771 72.8045 102.974 72.631 103.114 72.4067C103.253 72.1825 103.323 71.9201 103.323 71.6196ZM107.684 68.8013H108.522C108.932 68.8013 109.271 68.7336 109.538 68.5981C109.808 68.4585 110.009 68.2702 110.141 68.0332C110.276 67.792 110.344 67.5212 110.344 67.2207C110.344 66.8652 110.285 66.5669 110.166 66.3257C110.048 66.0845 109.87 65.9025 109.633 65.7798C109.396 65.6571 109.095 65.5957 108.731 65.5957C108.401 65.5957 108.109 65.6613 107.855 65.7925C107.606 65.9194 107.409 66.1014 107.265 66.3384C107.125 66.5754 107.056 66.8547 107.056 67.1763H105.881C105.881 66.7065 106 66.2791 106.237 65.894C106.474 65.509 106.806 65.2021 107.233 64.9736C107.665 64.7451 108.164 64.6309 108.731 64.6309C109.29 64.6309 109.779 64.7303 110.198 64.9292C110.617 65.1239 110.943 65.4159 111.175 65.8052C111.408 66.1903 111.524 66.6706 111.524 67.2461C111.524 67.4788 111.469 67.7285 111.359 67.9951C111.254 68.2575 111.086 68.5029 110.858 68.7314C110.634 68.96 110.342 69.1483 109.982 69.2964C109.622 69.4403 109.191 69.5122 108.687 69.5122H107.684V68.8013ZM107.684 69.7661V69.0615H108.687C109.275 69.0615 109.762 69.1313 110.147 69.271C110.532 69.4106 110.835 69.5968 111.055 69.8296C111.279 70.0623 111.436 70.3184 111.524 70.5977C111.618 70.8727 111.664 71.1478 111.664 71.4229C111.664 71.8545 111.59 72.2375 111.442 72.5718C111.298 72.9061 111.093 73.1896 110.826 73.4224C110.564 73.6551 110.255 73.8307 109.899 73.9492C109.544 74.0677 109.157 74.127 108.738 74.127C108.336 74.127 107.957 74.0698 107.602 73.9556C107.25 73.8413 106.939 73.6763 106.668 73.4604C106.398 73.2404 106.186 72.9717 106.034 72.6543C105.881 72.3327 105.805 71.9666 105.805 71.5562H106.979C106.979 71.8778 107.049 72.1592 107.189 72.4004C107.333 72.6416 107.536 72.8299 107.798 72.9653C108.065 73.0965 108.378 73.1621 108.738 73.1621C109.097 73.1621 109.406 73.1007 109.665 72.978C109.927 72.8511 110.128 72.6606 110.268 72.4067C110.411 72.1528 110.483 71.8333 110.483 71.4482C110.483 71.0632 110.403 70.7479 110.242 70.5024C110.081 70.2528 109.853 70.0687 109.557 69.9502C109.265 69.8275 108.92 69.7661 108.522 69.7661H107.684ZM119.084 68.6426V70.0518C119.084 70.8092 119.017 71.4482 118.881 71.9688C118.746 72.4893 118.551 72.9082 118.297 73.2256C118.043 73.543 117.737 73.7736 117.377 73.9175C117.021 74.0571 116.619 74.127 116.171 74.127C115.815 74.127 115.487 74.0825 115.187 73.9937C114.887 73.9048 114.616 73.763 114.375 73.5684C114.138 73.3695 113.934 73.1113 113.765 72.7939C113.596 72.4766 113.467 72.0915 113.378 71.6387C113.289 71.1859 113.245 70.6569 113.245 70.0518V68.6426C113.245 67.8851 113.312 67.2503 113.448 66.7383C113.587 66.2262 113.784 65.8158 114.038 65.5068C114.292 65.1937 114.597 64.9694 114.952 64.834C115.312 64.6986 115.714 64.6309 116.158 64.6309C116.518 64.6309 116.848 64.6753 117.148 64.7642C117.453 64.8488 117.724 64.9863 117.961 65.1768C118.198 65.363 118.399 65.6126 118.564 65.9258C118.733 66.2347 118.862 66.6134 118.951 67.062C119.04 67.5106 119.084 68.0374 119.084 68.6426ZM117.904 70.2422V68.4458C117.904 68.0311 117.878 67.6672 117.828 67.354C117.781 67.0366 117.711 66.7658 117.618 66.5415C117.525 66.3172 117.407 66.1353 117.263 65.9956C117.123 65.856 116.96 65.7544 116.774 65.6909C116.592 65.6232 116.387 65.5894 116.158 65.5894C115.879 65.5894 115.631 65.6423 115.416 65.748C115.2 65.8496 115.018 66.0125 114.87 66.2368C114.726 66.4611 114.616 66.7552 114.54 67.1191C114.463 67.4831 114.425 67.9253 114.425 68.4458V70.2422C114.425 70.6569 114.449 71.0229 114.495 71.3403C114.546 71.6577 114.62 71.9328 114.717 72.1655C114.815 72.394 114.933 72.5824 115.073 72.7305C115.212 72.8786 115.373 72.9886 115.555 73.0605C115.741 73.1283 115.947 73.1621 116.171 73.1621C116.459 73.1621 116.71 73.1071 116.926 72.9971C117.142 72.887 117.322 72.7157 117.466 72.4829C117.614 72.2459 117.724 71.9434 117.796 71.5752C117.868 71.2028 117.904 70.7585 117.904 70.2422Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"15",y:"88.5",width:"268",height:"38",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M31.6523 108.561H32.8711C32.8076 109.145 32.6405 109.668 32.3696 110.129C32.0988 110.59 31.7158 110.956 31.2207 111.227C30.7256 111.494 30.1077 111.627 29.3672 111.627C28.8255 111.627 28.3325 111.525 27.8882 111.322C27.4481 111.119 27.0693 110.831 26.752 110.459C26.4346 110.082 26.1891 109.632 26.0156 109.107C25.8464 108.578 25.7617 107.99 25.7617 107.342V106.422C25.7617 105.774 25.8464 105.188 26.0156 104.664C26.1891 104.135 26.4367 103.682 26.7583 103.305C27.0841 102.929 27.4756 102.639 27.9326 102.436C28.3896 102.232 28.9038 102.131 29.4751 102.131C30.1733 102.131 30.7637 102.262 31.2461 102.524C31.7285 102.787 32.103 103.151 32.3696 103.616C32.6405 104.077 32.8076 104.613 32.8711 105.222H31.6523C31.5931 104.791 31.4831 104.42 31.3223 104.111C31.1615 103.798 30.9329 103.557 30.6367 103.388C30.3405 103.218 29.9533 103.134 29.4751 103.134C29.0646 103.134 28.7028 103.212 28.3896 103.369C28.0807 103.525 27.8205 103.747 27.6089 104.035C27.4015 104.323 27.245 104.668 27.1392 105.07C27.0334 105.472 26.9805 105.918 26.9805 106.409V107.342C26.9805 107.795 27.027 108.22 27.1201 108.618C27.2174 109.016 27.3634 109.365 27.5581 109.666C27.7528 109.966 28.0003 110.203 28.3008 110.376C28.6012 110.546 28.9567 110.63 29.3672 110.63C29.8877 110.63 30.3024 110.548 30.6113 110.383C30.9202 110.218 31.153 109.981 31.3096 109.672C31.4704 109.363 31.5846 108.993 31.6523 108.561ZM38.4126 110.326V106.79C38.4126 106.519 38.3576 106.284 38.2476 106.085C38.1418 105.882 37.981 105.726 37.7651 105.616C37.5493 105.506 37.2827 105.451 36.9653 105.451C36.6691 105.451 36.4089 105.501 36.1846 105.603C35.9645 105.705 35.791 105.838 35.6641 106.003C35.5413 106.168 35.48 106.346 35.48 106.536H34.3057C34.3057 106.291 34.3691 106.047 34.4961 105.806C34.623 105.565 34.805 105.347 35.042 105.152C35.2832 104.953 35.571 104.797 35.9053 104.683C36.2438 104.564 36.6204 104.505 37.0352 104.505C37.5345 104.505 37.9746 104.59 38.3555 104.759C38.7406 104.928 39.041 105.184 39.2568 105.527C39.4769 105.865 39.5869 106.291 39.5869 106.803V110.002C39.5869 110.23 39.606 110.474 39.644 110.732C39.6864 110.99 39.7477 111.212 39.8281 111.398V111.5H38.603C38.5438 111.365 38.4972 111.185 38.4634 110.96C38.4295 110.732 38.4126 110.52 38.4126 110.326ZM38.6157 107.336L38.6284 108.161H37.4414C37.1071 108.161 36.8088 108.189 36.5464 108.244C36.284 108.294 36.064 108.373 35.8862 108.479C35.7085 108.584 35.5731 108.718 35.48 108.878C35.3869 109.035 35.3403 109.219 35.3403 109.431C35.3403 109.646 35.389 109.843 35.4863 110.021C35.5837 110.199 35.7297 110.34 35.9243 110.446C36.1232 110.548 36.3665 110.599 36.6543 110.599C37.014 110.599 37.3314 110.522 37.6064 110.37C37.8815 110.218 38.0994 110.032 38.2603 109.812C38.4253 109.591 38.5142 109.378 38.5269 109.17L39.0283 109.735C38.9987 109.913 38.9183 110.11 38.7871 110.326C38.6559 110.542 38.4803 110.749 38.2603 110.948C38.0444 111.142 37.7863 111.305 37.4858 111.437C37.1896 111.563 36.8553 111.627 36.4829 111.627C36.0174 111.627 35.609 111.536 35.2578 111.354C34.9108 111.172 34.64 110.929 34.4453 110.624C34.2549 110.315 34.1597 109.97 34.1597 109.589C34.1597 109.221 34.2316 108.897 34.3755 108.618C34.5194 108.335 34.7267 108.1 34.9976 107.914C35.2684 107.723 35.5942 107.579 35.9751 107.482C36.356 107.385 36.7812 107.336 37.251 107.336H38.6157ZM42.71 101.75V111.5H41.5293V101.75H42.71ZM47.3438 110.662C47.623 110.662 47.8812 110.605 48.1182 110.491C48.3551 110.376 48.5498 110.22 48.7021 110.021C48.8545 109.818 48.9412 109.587 48.9624 109.329H50.0796C50.0584 109.735 49.9209 110.114 49.667 110.465C49.4173 110.812 49.0894 111.094 48.6831 111.31C48.2769 111.521 47.8304 111.627 47.3438 111.627C46.8275 111.627 46.3768 111.536 45.9917 111.354C45.6108 111.172 45.2935 110.922 45.0396 110.605C44.7899 110.288 44.6016 109.924 44.4746 109.513C44.3519 109.098 44.2905 108.66 44.2905 108.199V107.933C44.2905 107.471 44.3519 107.035 44.4746 106.625C44.6016 106.21 44.7899 105.844 45.0396 105.527C45.2935 105.209 45.6108 104.96 45.9917 104.778C46.3768 104.596 46.8275 104.505 47.3438 104.505C47.8812 104.505 48.3509 104.615 48.7529 104.835C49.1549 105.051 49.4702 105.347 49.6987 105.724C49.9315 106.096 50.0584 106.519 50.0796 106.993H48.9624C48.9412 106.71 48.8608 106.454 48.7212 106.225C48.5858 105.997 48.3996 105.815 48.1626 105.679C47.9299 105.54 47.6569 105.47 47.3438 105.47C46.984 105.47 46.6815 105.542 46.436 105.686C46.1948 105.825 46.0023 106.016 45.8584 106.257C45.7188 106.494 45.6172 106.758 45.5537 107.05C45.4945 107.338 45.4648 107.632 45.4648 107.933V108.199C45.4648 108.5 45.4945 108.796 45.5537 109.088C45.613 109.38 45.7124 109.644 45.8521 109.881C45.9959 110.118 46.1885 110.309 46.4297 110.453C46.6751 110.592 46.9798 110.662 47.3438 110.662ZM55.6021 109.913V104.632H56.7827V111.5H55.6592L55.6021 109.913ZM55.8242 108.466L56.313 108.453C56.313 108.91 56.2643 109.333 56.167 109.723C56.0739 110.108 55.9215 110.442 55.71 110.726C55.4984 111.009 55.2212 111.231 54.8784 111.392C54.5356 111.549 54.1188 111.627 53.6279 111.627C53.2936 111.627 52.9868 111.578 52.7075 111.481C52.4325 111.384 52.1955 111.233 51.9966 111.03C51.7977 110.827 51.6432 110.563 51.5332 110.237C51.4274 109.911 51.3745 109.52 51.3745 109.062V104.632H52.5488V109.075C52.5488 109.384 52.5827 109.64 52.6504 109.843C52.7223 110.042 52.8175 110.201 52.936 110.319C53.0588 110.434 53.1942 110.514 53.3423 110.561C53.4946 110.607 53.6512 110.63 53.812 110.63C54.3114 110.63 54.707 110.535 54.999 110.345C55.291 110.15 55.5005 109.89 55.6274 109.564C55.7586 109.234 55.8242 108.868 55.8242 108.466ZM59.8486 101.75V111.5H58.668V101.75H59.8486ZM65.7837 110.326V106.79C65.7837 106.519 65.7287 106.284 65.6187 106.085C65.5129 105.882 65.3521 105.726 65.1362 105.616C64.9204 105.506 64.6538 105.451 64.3364 105.451C64.0402 105.451 63.7799 105.501 63.5557 105.603C63.3356 105.705 63.1621 105.838 63.0352 106.003C62.9124 106.168 62.8511 106.346 62.8511 106.536H61.6768C61.6768 106.291 61.7402 106.047 61.8672 105.806C61.9941 105.565 62.1761 105.347 62.4131 105.152C62.6543 104.953 62.9421 104.797 63.2764 104.683C63.6149 104.564 63.9915 104.505 64.4062 104.505C64.9056 104.505 65.3457 104.59 65.7266 104.759C66.1117 104.928 66.4121 105.184 66.6279 105.527C66.848 105.865 66.958 106.291 66.958 106.803V110.002C66.958 110.23 66.9771 110.474 67.0151 110.732C67.0575 110.99 67.1188 111.212 67.1992 111.398V111.5H65.9741C65.9149 111.365 65.8683 111.185 65.8345 110.96C65.8006 110.732 65.7837 110.52 65.7837 110.326ZM65.9868 107.336L65.9995 108.161H64.8125C64.4782 108.161 64.1799 108.189 63.9175 108.244C63.6551 108.294 63.4351 108.373 63.2573 108.479C63.0796 108.584 62.9442 108.718 62.8511 108.878C62.758 109.035 62.7114 109.219 62.7114 109.431C62.7114 109.646 62.7601 109.843 62.8574 110.021C62.9548 110.199 63.1007 110.34 63.2954 110.446C63.4943 110.548 63.7376 110.599 64.0254 110.599C64.3851 110.599 64.7025 110.522 64.9775 110.37C65.2526 110.218 65.4705 110.032 65.6313 109.812C65.7964 109.591 65.8853 109.378 65.8979 109.17L66.3994 109.735C66.3698 109.913 66.2894 110.11 66.1582 110.326C66.027 110.542 65.8514 110.749 65.6313 110.948C65.4155 111.142 65.1574 111.305 64.8569 111.437C64.5607 111.563 64.2264 111.627 63.854 111.627C63.3885 111.627 62.9801 111.536 62.6289 111.354C62.2819 111.172 62.0111 110.929 61.8164 110.624C61.626 110.315 61.5308 109.97 61.5308 109.589C61.5308 109.221 61.6027 108.897 61.7466 108.618C61.8905 108.335 62.0978 108.1 62.3687 107.914C62.6395 107.723 62.9653 107.579 63.3462 107.482C63.7271 107.385 64.1523 107.336 64.6221 107.336H65.9868ZM71.6807 104.632V105.533H67.9673V104.632H71.6807ZM69.2241 102.962H70.3984V109.799C70.3984 110.032 70.4344 110.207 70.5063 110.326C70.5783 110.444 70.6714 110.522 70.7856 110.561C70.8999 110.599 71.0226 110.618 71.1538 110.618C71.2511 110.618 71.3527 110.609 71.4585 110.592C71.5685 110.571 71.651 110.554 71.7061 110.542L71.7124 111.5C71.6193 111.53 71.4966 111.557 71.3442 111.583C71.1961 111.612 71.0163 111.627 70.8047 111.627C70.5169 111.627 70.2524 111.57 70.0112 111.456C69.77 111.341 69.5775 111.151 69.4336 110.884C69.2939 110.613 69.2241 110.25 69.2241 109.792V102.962ZM75.9082 111.627C75.43 111.627 74.9963 111.547 74.6069 111.386C74.2218 111.221 73.8896 110.99 73.6104 110.694C73.3353 110.398 73.1237 110.046 72.9756 109.64C72.8275 109.234 72.7534 108.79 72.7534 108.307V108.041C72.7534 107.482 72.8359 106.985 73.001 106.549C73.166 106.109 73.3903 105.736 73.6738 105.432C73.9574 105.127 74.279 104.896 74.6387 104.74C74.9984 104.583 75.3708 104.505 75.7559 104.505C76.2467 104.505 76.6699 104.59 77.0254 104.759C77.3851 104.928 77.6792 105.165 77.9077 105.47C78.1362 105.77 78.3055 106.126 78.4155 106.536C78.5256 106.942 78.5806 107.387 78.5806 107.869V108.396H73.4517V107.438H77.4062V107.349C77.3893 107.044 77.3258 106.748 77.2158 106.46C77.11 106.172 76.9408 105.935 76.708 105.749C76.4753 105.563 76.1579 105.47 75.7559 105.47C75.4893 105.47 75.2438 105.527 75.0195 105.641C74.7952 105.751 74.6027 105.916 74.4419 106.136C74.2811 106.356 74.1562 106.625 74.0674 106.942C73.9785 107.26 73.9341 107.626 73.9341 108.041V108.307C73.9341 108.633 73.9785 108.94 74.0674 109.228C74.1605 109.511 74.2938 109.761 74.4673 109.977C74.645 110.192 74.8587 110.362 75.1084 110.484C75.3623 110.607 75.6501 110.668 75.9717 110.668C76.3864 110.668 76.7376 110.584 77.0254 110.415C77.3132 110.245 77.5649 110.019 77.7808 109.735L78.4917 110.3C78.3436 110.525 78.1553 110.738 77.9268 110.941C77.6982 111.145 77.4168 111.31 77.0825 111.437C76.7524 111.563 76.361 111.627 75.9082 111.627ZM84.2808 110.167V101.75H85.4614V111.5H84.3823L84.2808 110.167ZM79.6597 108.142V108.009C79.6597 107.484 79.7231 107.008 79.8501 106.581C79.9813 106.149 80.1654 105.779 80.4023 105.47C80.6436 105.161 80.9292 104.924 81.2593 104.759C81.5936 104.59 81.966 104.505 82.3765 104.505C82.8081 104.505 83.1847 104.581 83.5063 104.733C83.8322 104.882 84.1073 105.099 84.3315 105.387C84.5601 105.671 84.7399 106.014 84.8711 106.416C85.0023 106.818 85.0933 107.272 85.144 107.78V108.364C85.0975 108.868 85.0065 109.321 84.8711 109.723C84.7399 110.125 84.5601 110.467 84.3315 110.751C84.1073 111.035 83.8322 111.252 83.5063 111.405C83.1805 111.553 82.7996 111.627 82.3638 111.627C81.9618 111.627 81.5936 111.54 81.2593 111.367C80.9292 111.193 80.6436 110.95 80.4023 110.637C80.1654 110.324 79.9813 109.955 79.8501 109.532C79.7231 109.105 79.6597 108.641 79.6597 108.142ZM80.8403 108.009V108.142C80.8403 108.485 80.8742 108.806 80.9419 109.107C81.0138 109.407 81.1239 109.672 81.272 109.9C81.4201 110.129 81.6084 110.309 81.8369 110.44C82.0654 110.567 82.3384 110.63 82.6558 110.63C83.0451 110.63 83.3646 110.548 83.6143 110.383C83.8682 110.218 84.0713 110 84.2236 109.729C84.376 109.458 84.4945 109.164 84.5791 108.847V107.317C84.5283 107.084 84.4543 106.86 84.3569 106.644C84.2638 106.424 84.1411 106.229 83.9888 106.06C83.8407 105.887 83.6566 105.749 83.4365 105.647C83.2207 105.546 82.9647 105.495 82.6685 105.495C82.3468 105.495 82.0697 105.563 81.8369 105.698C81.6084 105.829 81.4201 106.011 81.272 106.244C81.1239 106.473 81.0138 106.739 80.9419 107.044C80.8742 107.344 80.8403 107.666 80.8403 108.009ZM91.6885 105.952V114.141H90.5078V104.632H91.5869L91.6885 105.952ZM96.3159 108.009V108.142C96.3159 108.641 96.2567 109.105 96.1382 109.532C96.0197 109.955 95.8462 110.324 95.6177 110.637C95.3934 110.95 95.1162 111.193 94.7861 111.367C94.4561 111.54 94.0773 111.627 93.6499 111.627C93.214 111.627 92.8289 111.555 92.4946 111.411C92.1603 111.267 91.8768 111.058 91.644 110.783C91.4113 110.508 91.2251 110.178 91.0854 109.792C90.95 109.407 90.8569 108.974 90.8062 108.491V107.78C90.8569 107.272 90.9521 106.818 91.0918 106.416C91.2314 106.014 91.4155 105.671 91.644 105.387C91.8768 105.099 92.1582 104.882 92.4883 104.733C92.8184 104.581 93.1992 104.505 93.6309 104.505C94.0625 104.505 94.4455 104.59 94.7798 104.759C95.1141 104.924 95.3955 105.161 95.624 105.47C95.8525 105.779 96.0239 106.149 96.1382 106.581C96.2567 107.008 96.3159 107.484 96.3159 108.009ZM95.1353 108.142V108.009C95.1353 107.666 95.0993 107.344 95.0273 107.044C94.9554 106.739 94.8433 106.473 94.6909 106.244C94.5428 106.011 94.3524 105.829 94.1196 105.698C93.8869 105.563 93.6097 105.495 93.2881 105.495C92.9919 105.495 92.7337 105.546 92.5137 105.647C92.2979 105.749 92.1138 105.887 91.9614 106.06C91.8091 106.229 91.6842 106.424 91.5869 106.644C91.4938 106.86 91.424 107.084 91.3774 107.317V108.961C91.4621 109.257 91.5806 109.536 91.7329 109.799C91.8853 110.057 92.0884 110.266 92.3423 110.427C92.5962 110.584 92.9157 110.662 93.3008 110.662C93.6182 110.662 93.8911 110.597 94.1196 110.465C94.3524 110.33 94.5428 110.146 94.6909 109.913C94.8433 109.68 94.9554 109.414 95.0273 109.113C95.0993 108.809 95.1353 108.485 95.1353 108.142ZM98.9883 105.711V111.5H97.814V104.632H98.9565L98.9883 105.711ZM101.134 104.594L101.127 105.686C101.03 105.664 100.937 105.652 100.848 105.647C100.764 105.639 100.666 105.635 100.556 105.635C100.285 105.635 100.046 105.677 99.8389 105.762C99.6315 105.846 99.4559 105.965 99.312 106.117C99.1681 106.27 99.0539 106.451 98.9692 106.663C98.8888 106.87 98.8359 107.099 98.8105 107.349L98.4805 107.539C98.4805 107.124 98.5207 106.735 98.6011 106.371C98.6857 106.007 98.8148 105.686 98.9883 105.406C99.1618 105.123 99.3818 104.903 99.6484 104.746C99.9193 104.585 100.241 104.505 100.613 104.505C100.698 104.505 100.795 104.515 100.905 104.537C101.015 104.554 101.091 104.573 101.134 104.594ZM103.495 104.632V111.5H102.314V104.632H103.495ZM102.226 102.81C102.226 102.62 102.283 102.459 102.397 102.328C102.515 102.196 102.689 102.131 102.917 102.131C103.142 102.131 103.313 102.196 103.432 102.328C103.554 102.459 103.616 102.62 103.616 102.81C103.616 102.992 103.554 103.149 103.432 103.28C103.313 103.407 103.142 103.47 102.917 103.47C102.689 103.47 102.515 103.407 102.397 103.28C102.283 103.149 102.226 102.992 102.226 102.81ZM108.129 110.662C108.408 110.662 108.666 110.605 108.903 110.491C109.14 110.376 109.335 110.22 109.487 110.021C109.64 109.818 109.726 109.587 109.748 109.329H110.865C110.844 109.735 110.706 110.114 110.452 110.465C110.202 110.812 109.875 111.094 109.468 111.31C109.062 111.521 108.616 111.627 108.129 111.627C107.613 111.627 107.162 111.536 106.777 111.354C106.396 111.172 106.079 110.922 105.825 110.605C105.575 110.288 105.387 109.924 105.26 109.513C105.137 109.098 105.076 108.66 105.076 108.199V107.933C105.076 107.471 105.137 107.035 105.26 106.625C105.387 106.21 105.575 105.844 105.825 105.527C106.079 105.209 106.396 104.96 106.777 104.778C107.162 104.596 107.613 104.505 108.129 104.505C108.666 104.505 109.136 104.615 109.538 104.835C109.94 105.051 110.255 105.347 110.484 105.724C110.717 106.096 110.844 106.519 110.865 106.993H109.748C109.726 106.71 109.646 106.454 109.506 106.225C109.371 105.997 109.185 105.815 108.948 105.679C108.715 105.54 108.442 105.47 108.129 105.47C107.769 105.47 107.467 105.542 107.221 105.686C106.98 105.825 106.787 106.016 106.644 106.257C106.504 106.494 106.402 106.758 106.339 107.05C106.28 107.338 106.25 107.632 106.25 107.933V108.199C106.25 108.5 106.28 108.796 106.339 109.088C106.398 109.38 106.498 109.644 106.637 109.881C106.781 110.118 106.974 110.309 107.215 110.453C107.46 110.592 107.765 110.662 108.129 110.662ZM115.035 111.627C114.557 111.627 114.123 111.547 113.734 111.386C113.349 111.221 113.017 110.99 112.737 110.694C112.462 110.398 112.251 110.046 112.103 109.64C111.954 109.234 111.88 108.79 111.88 108.307V108.041C111.88 107.482 111.963 106.985 112.128 106.549C112.293 106.109 112.517 105.736 112.801 105.432C113.084 105.127 113.406 104.896 113.766 104.74C114.125 104.583 114.498 104.505 114.883 104.505C115.374 104.505 115.797 104.59 116.152 104.759C116.512 104.928 116.806 105.165 117.035 105.47C117.263 105.77 117.432 106.126 117.542 106.536C117.653 106.942 117.708 107.387 117.708 107.869V108.396H112.579V107.438H116.533V107.349C116.516 107.044 116.453 106.748 116.343 106.46C116.237 106.172 116.068 105.935 115.835 105.749C115.602 105.563 115.285 105.47 114.883 105.47C114.616 105.47 114.371 105.527 114.146 105.641C113.922 105.751 113.73 105.916 113.569 106.136C113.408 106.356 113.283 106.625 113.194 106.942C113.105 107.26 113.061 107.626 113.061 108.041V108.307C113.061 108.633 113.105 108.94 113.194 109.228C113.287 109.511 113.421 109.761 113.594 109.977C113.772 110.192 113.986 110.362 114.235 110.484C114.489 110.607 114.777 110.668 115.099 110.668C115.513 110.668 115.865 110.584 116.152 110.415C116.44 110.245 116.692 110.019 116.908 109.735L117.619 110.3C117.471 110.525 117.282 110.738 117.054 110.941C116.825 111.145 116.544 111.31 116.209 111.437C115.879 111.563 115.488 111.627 115.035 111.627ZM119.028 110.878C119.028 110.679 119.089 110.512 119.212 110.376C119.339 110.237 119.521 110.167 119.758 110.167C119.995 110.167 120.175 110.237 120.297 110.376C120.424 110.512 120.488 110.679 120.488 110.878C120.488 111.073 120.424 111.238 120.297 111.373C120.175 111.508 119.995 111.576 119.758 111.576C119.521 111.576 119.339 111.508 119.212 111.373C119.089 111.238 119.028 111.073 119.028 110.878ZM119.034 105.273C119.034 105.074 119.096 104.907 119.218 104.771C119.345 104.632 119.527 104.562 119.764 104.562C120.001 104.562 120.181 104.632 120.304 104.771C120.431 104.907 120.494 105.074 120.494 105.273C120.494 105.468 120.431 105.633 120.304 105.768C120.181 105.903 120.001 105.971 119.764 105.971C119.527 105.971 119.345 105.903 119.218 105.768C119.096 105.633 119.034 105.468 119.034 105.273Z",fill:"white"}),(0,h.createElement)("path",{d:"M131.45 100.792V102.664H130.459V100.792H131.45ZM131.329 111.157V112.865H130.339V111.157H131.329ZM132.027 109.075C132.027 108.834 131.983 108.629 131.894 108.459C131.809 108.29 131.67 108.14 131.475 108.009C131.285 107.878 131.027 107.751 130.701 107.628C130.151 107.416 129.666 107.192 129.247 106.955C128.832 106.714 128.509 106.416 128.276 106.06C128.043 105.7 127.927 105.245 127.927 104.695C127.927 104.171 128.052 103.716 128.301 103.331C128.551 102.945 128.896 102.649 129.336 102.442C129.78 102.23 130.297 102.125 130.885 102.125C131.333 102.125 131.74 102.192 132.104 102.328C132.467 102.459 132.781 102.653 133.043 102.912C133.305 103.166 133.506 103.477 133.646 103.845C133.786 104.213 133.855 104.634 133.855 105.108H132.034C132.034 104.854 132.006 104.63 131.951 104.435C131.896 104.24 131.816 104.077 131.71 103.946C131.608 103.815 131.486 103.718 131.342 103.654C131.198 103.587 131.039 103.553 130.866 103.553C130.608 103.553 130.396 103.604 130.231 103.705C130.066 103.807 129.945 103.944 129.869 104.118C129.797 104.287 129.761 104.482 129.761 104.702C129.761 104.917 129.799 105.106 129.875 105.267C129.956 105.427 130.093 105.576 130.288 105.711C130.483 105.842 130.749 105.978 131.088 106.117C131.638 106.329 132.12 106.557 132.535 106.803C132.95 107.048 133.274 107.349 133.506 107.704C133.739 108.06 133.855 108.512 133.855 109.062C133.855 109.608 133.729 110.074 133.475 110.459C133.221 110.84 132.865 111.132 132.408 111.335C131.951 111.534 131.422 111.633 130.821 111.633C130.432 111.633 130.045 111.583 129.66 111.481C129.275 111.375 128.925 111.206 128.612 110.973C128.299 110.74 128.049 110.431 127.863 110.046C127.677 109.657 127.584 109.179 127.584 108.612H129.412C129.412 108.921 129.452 109.179 129.533 109.386C129.613 109.589 129.719 109.752 129.85 109.875C129.986 109.993 130.138 110.078 130.307 110.129C130.476 110.18 130.648 110.205 130.821 110.205C131.092 110.205 131.314 110.156 131.488 110.059C131.666 109.962 131.799 109.828 131.888 109.659C131.981 109.486 132.027 109.291 132.027 109.075ZM141.422 110.072V111.5H135.1V110.281L138.089 107.076C138.39 106.741 138.627 106.447 138.8 106.193C138.974 105.935 139.099 105.705 139.175 105.501C139.255 105.294 139.295 105.097 139.295 104.911C139.295 104.632 139.249 104.393 139.156 104.194C139.063 103.991 138.925 103.834 138.743 103.724C138.565 103.614 138.345 103.559 138.083 103.559C137.804 103.559 137.562 103.627 137.359 103.762C137.16 103.898 137.008 104.086 136.902 104.327C136.801 104.568 136.75 104.841 136.75 105.146H134.916C134.916 104.596 135.047 104.092 135.309 103.635C135.571 103.174 135.942 102.808 136.42 102.537C136.898 102.262 137.465 102.125 138.121 102.125C138.769 102.125 139.314 102.23 139.759 102.442C140.207 102.649 140.546 102.95 140.774 103.343C141.007 103.733 141.124 104.198 141.124 104.74C141.124 105.044 141.075 105.343 140.978 105.635C140.88 105.923 140.741 106.21 140.559 106.498C140.381 106.782 140.165 107.069 139.911 107.361C139.657 107.653 139.376 107.956 139.067 108.269L137.461 110.072H141.422ZM148.785 106.066V107.666C148.785 108.36 148.711 108.959 148.563 109.462C148.415 109.962 148.201 110.372 147.922 110.694C147.647 111.011 147.319 111.246 146.938 111.398C146.557 111.551 146.134 111.627 145.668 111.627C145.296 111.627 144.949 111.58 144.627 111.487C144.306 111.39 144.016 111.24 143.758 111.037C143.504 110.833 143.284 110.577 143.098 110.269C142.916 109.955 142.776 109.583 142.679 109.151C142.581 108.72 142.533 108.225 142.533 107.666V106.066C142.533 105.372 142.607 104.778 142.755 104.283C142.907 103.783 143.121 103.375 143.396 103.058C143.675 102.74 144.005 102.507 144.386 102.359C144.767 102.207 145.19 102.131 145.656 102.131C146.028 102.131 146.373 102.18 146.69 102.277C147.012 102.37 147.302 102.516 147.56 102.715C147.818 102.914 148.038 103.17 148.22 103.483C148.402 103.792 148.542 104.162 148.639 104.594C148.736 105.021 148.785 105.512 148.785 106.066ZM146.951 107.907V105.819C146.951 105.485 146.932 105.193 146.894 104.943C146.86 104.693 146.807 104.482 146.735 104.308C146.663 104.13 146.574 103.986 146.468 103.876C146.362 103.766 146.242 103.686 146.106 103.635C145.971 103.584 145.821 103.559 145.656 103.559C145.448 103.559 145.264 103.599 145.104 103.68C144.947 103.76 144.814 103.889 144.704 104.067C144.594 104.24 144.509 104.473 144.45 104.765C144.395 105.053 144.367 105.404 144.367 105.819V107.907C144.367 108.242 144.384 108.536 144.418 108.79C144.456 109.043 144.511 109.261 144.583 109.443C144.659 109.621 144.748 109.767 144.85 109.881C144.955 109.991 145.076 110.072 145.211 110.123C145.351 110.173 145.503 110.199 145.668 110.199C145.872 110.199 146.051 110.159 146.208 110.078C146.369 109.993 146.504 109.862 146.614 109.685C146.729 109.503 146.813 109.266 146.868 108.974C146.923 108.682 146.951 108.326 146.951 107.907ZM156.25 106.066V107.666C156.25 108.36 156.176 108.959 156.028 109.462C155.88 109.962 155.666 110.372 155.387 110.694C155.112 111.011 154.784 111.246 154.403 111.398C154.022 111.551 153.599 111.627 153.133 111.627C152.761 111.627 152.414 111.58 152.092 111.487C151.771 111.39 151.481 111.24 151.223 111.037C150.969 110.833 150.749 110.577 150.562 110.269C150.381 109.955 150.241 109.583 150.144 109.151C150.046 108.72 149.998 108.225 149.998 107.666V106.066C149.998 105.372 150.072 104.778 150.22 104.283C150.372 103.783 150.586 103.375 150.861 103.058C151.14 102.74 151.47 102.507 151.851 102.359C152.232 102.207 152.655 102.131 153.121 102.131C153.493 102.131 153.838 102.18 154.155 102.277C154.477 102.37 154.767 102.516 155.025 102.715C155.283 102.914 155.503 103.17 155.685 103.483C155.867 103.792 156.007 104.162 156.104 104.594C156.201 105.021 156.25 105.512 156.25 106.066ZM154.416 107.907V105.819C154.416 105.485 154.396 105.193 154.358 104.943C154.325 104.693 154.272 104.482 154.2 104.308C154.128 104.13 154.039 103.986 153.933 103.876C153.827 103.766 153.707 103.686 153.571 103.635C153.436 103.584 153.286 103.559 153.121 103.559C152.913 103.559 152.729 103.599 152.568 103.68C152.412 103.76 152.278 103.889 152.168 104.067C152.058 104.24 151.974 104.473 151.915 104.765C151.86 105.053 151.832 105.404 151.832 105.819V107.907C151.832 108.242 151.849 108.536 151.883 108.79C151.921 109.043 151.976 109.261 152.048 109.443C152.124 109.621 152.213 109.767 152.314 109.881C152.42 109.991 152.541 110.072 152.676 110.123C152.816 110.173 152.968 110.199 153.133 110.199C153.336 110.199 153.516 110.159 153.673 110.078C153.834 109.993 153.969 109.862 154.079 109.685C154.193 109.503 154.278 109.266 154.333 108.974C154.388 108.682 154.416 108.326 154.416 107.907ZM157.659 110.618C157.659 110.347 157.752 110.12 157.938 109.938C158.129 109.757 158.381 109.666 158.694 109.666C159.007 109.666 159.257 109.757 159.443 109.938C159.633 110.12 159.729 110.347 159.729 110.618C159.729 110.889 159.633 111.115 159.443 111.297C159.257 111.479 159.007 111.57 158.694 111.57C158.381 111.57 158.129 111.479 157.938 111.297C157.752 111.115 157.659 110.889 157.659 110.618ZM167.485 106.066V107.666C167.485 108.36 167.411 108.959 167.263 109.462C167.115 109.962 166.901 110.372 166.622 110.694C166.347 111.011 166.019 111.246 165.638 111.398C165.257 111.551 164.834 111.627 164.369 111.627C163.996 111.627 163.649 111.58 163.328 111.487C163.006 111.39 162.716 111.24 162.458 111.037C162.204 110.833 161.984 110.577 161.798 110.269C161.616 109.955 161.476 109.583 161.379 109.151C161.282 108.72 161.233 108.225 161.233 107.666V106.066C161.233 105.372 161.307 104.778 161.455 104.283C161.607 103.783 161.821 103.375 162.096 103.058C162.375 102.74 162.706 102.507 163.086 102.359C163.467 102.207 163.89 102.131 164.356 102.131C164.728 102.131 165.073 102.18 165.391 102.277C165.712 102.37 166.002 102.516 166.26 102.715C166.518 102.914 166.738 103.17 166.92 103.483C167.102 103.792 167.242 104.162 167.339 104.594C167.437 105.021 167.485 105.512 167.485 106.066ZM165.651 107.907V105.819C165.651 105.485 165.632 105.193 165.594 104.943C165.56 104.693 165.507 104.482 165.435 104.308C165.363 104.13 165.274 103.986 165.168 103.876C165.063 103.766 164.942 103.686 164.807 103.635C164.671 103.584 164.521 103.559 164.356 103.559C164.149 103.559 163.965 103.599 163.804 103.68C163.647 103.76 163.514 103.889 163.404 104.067C163.294 104.24 163.209 104.473 163.15 104.765C163.095 105.053 163.067 105.404 163.067 105.819V107.907C163.067 108.242 163.084 108.536 163.118 108.79C163.156 109.043 163.211 109.261 163.283 109.443C163.359 109.621 163.448 109.767 163.55 109.881C163.656 109.991 163.776 110.072 163.912 110.123C164.051 110.173 164.204 110.199 164.369 110.199C164.572 110.199 164.752 110.159 164.908 110.078C165.069 109.993 165.204 109.862 165.314 109.685C165.429 109.503 165.513 109.266 165.568 108.974C165.623 108.682 165.651 108.326 165.651 107.907ZM174.95 106.066V107.666C174.95 108.36 174.876 108.959 174.728 109.462C174.58 109.962 174.366 110.372 174.087 110.694C173.812 111.011 173.484 111.246 173.103 111.398C172.722 111.551 172.299 111.627 171.833 111.627C171.461 111.627 171.114 111.58 170.792 111.487C170.471 111.39 170.181 111.24 169.923 111.037C169.669 110.833 169.449 110.577 169.263 110.269C169.081 109.955 168.941 109.583 168.844 109.151C168.746 108.72 168.698 108.225 168.698 107.666V106.066C168.698 105.372 168.772 104.778 168.92 104.283C169.072 103.783 169.286 103.375 169.561 103.058C169.84 102.74 170.17 102.507 170.551 102.359C170.932 102.207 171.355 102.131 171.821 102.131C172.193 102.131 172.538 102.18 172.855 102.277C173.177 102.37 173.467 102.516 173.725 102.715C173.983 102.914 174.203 103.17 174.385 103.483C174.567 103.792 174.707 104.162 174.804 104.594C174.902 105.021 174.95 105.512 174.95 106.066ZM173.116 107.907V105.819C173.116 105.485 173.097 105.193 173.059 104.943C173.025 104.693 172.972 104.482 172.9 104.308C172.828 104.13 172.739 103.986 172.633 103.876C172.528 103.766 172.407 103.686 172.271 103.635C172.136 103.584 171.986 103.559 171.821 103.559C171.613 103.559 171.429 103.599 171.269 103.68C171.112 103.76 170.979 103.889 170.869 104.067C170.759 104.24 170.674 104.473 170.615 104.765C170.56 105.053 170.532 105.404 170.532 105.819V107.907C170.532 108.242 170.549 108.536 170.583 108.79C170.621 109.043 170.676 109.261 170.748 109.443C170.824 109.621 170.913 109.767 171.015 109.881C171.12 109.991 171.241 110.072 171.376 110.123C171.516 110.173 171.668 110.199 171.833 110.199C172.037 110.199 172.216 110.159 172.373 110.078C172.534 109.993 172.669 109.862 172.779 109.685C172.894 109.503 172.978 109.266 173.033 108.974C173.088 108.682 173.116 108.326 173.116 107.907Z",fill:"white"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_273_2176"},(0,h.createElement)("rect",{x:"15",y:"16.5",width:"268",height:"110",rx:"4",fill:"white"})))),{AdvancedFields:jC,FieldWrapper:xC,FieldSettingsWrapper:FC,ToolBarFields:BC,BlockName:AC,BlockDescription:PC,BlockLabel:SC,MacrosFields:NC,ClientSideMacros:IC}=JetFBComponents,{useUniqueNameOnDuplicate:TC}=JetFBHooks,{__:OC}=wp.i18n,{InspectorControls:JC,useBlockProps:RC}=wp.blockEditor,{TextControl:qC,TextareaControl:DC,ToggleControl:zC,PanelBody:UC,SelectControl:GC,__experimentalNumberControl:WC}=wp.components,KC=WC,$C={calc_hidden:OC("Check this to hide calculated field","jet-form-builder")},YC=JSON.parse('{"apiVersion":3,"name":"jet-forms/calculated-field","category":"jet-form-builder-fields","title":"Calculated Field","description":"Calculate and display your number values","icon":"\\n\\n","keywords":["jetformbuilder","field","calculated"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"validation":{"type":"object","default":{}},"value_type":{"type":"string","default":"number"},"date_format":{"type":"string","default":"YYYY-MM-DD"},"separate_decimals":{"type":"string","default":"."},"separate_thousands":{"type":"string","default":""},"calc_formula":{"type":"string","default":""},"precision":{"type":"number","default":2},"calc_prefix":{"type":"string","default":"","jfb":{"rich":true}},"calc_suffix":{"type":"string","default":"","jfb":{"rich":true}},"calc_hidden":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"placeholder":{"type":"string","default":""},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:XC}=wp.i18n,{createBlock:QC}=wp.blocks,{name:et,icon:Ct}=YC,tt={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ct}}),description:XC("Pull out the values from the form fields and meta fields and use them to calculate the formula of any complexity you've set before.","jet-form-builder"),edit:function(e){const C=RC();TC();const{attributes:t,setAttributes:l,isSelected:r,editProps:{uniqKey:n}}=e,a=(0,h.useRef)(null);return t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},kC):[(0,h.createElement)(BC,{key:n("ToolBarFields"),...e},(0,h.createElement)(IC,{withThis:!0},(0,h.createElement)(NC,{onClick:(e,C,r)=>{const n="option-label"===r?e.replace(/%$/,"::label%"):e,i=t.calc_formula||"",o=a.current;if(o){const e=o.selectionStart,C=o.selectionEnd,t=i.slice(0,e)+n+i.slice(C);l({calc_formula:t}),setTimeout(()=>{o.focus(),o.selectionStart=o.selectionEnd=e+n.length})}}}))),r&&(0,h.createElement)(JC,{key:n("InspectorControls")},(0,h.createElement)(UC,{title:OC("General","jet-form-builder"),key:"jet-form-general-fields"},(0,h.createElement)(SC,null),(0,h.createElement)(AC,null),(0,h.createElement)(PC,null)),(0,h.createElement)(FC,{...e},"date"!==t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:JetFormCalculatedField.field_desc}})):null,(0,h.createElement)(GC,{label:OC("Value type","jet-form-builder"),labelPosition:"top",value:t.value_type,onChange:e=>l({value_type:e}),options:[{value:"number",label:OC("as Number","jet-form-builder")},{value:"string",label:OC("as String","jet-form-builder")},{value:"date",label:OC("as Date","jet-form-builder")}]}),"date"===t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)(qC,{key:"calc_date_format",label:OC("Date Format","jet-form-builder"),value:t.date_format,onChange:e=>l({date_format:e})}),(0,h.createElement)("p",{className:"components-base-control__help",style:{marginTop:"0px",color:"rgb(117, 117, 117)"},dangerouslySetInnerHTML:{__html:JetFormCalculatedField.date_format}})):null,"number"===t.value_type?(0,h.createElement)(h.Fragment,null,(0,h.createElement)(KC,{label:OC("Decimal Places Number","jet-form-builder"),labelPosition:"top",key:"precision",value:t.precision,onChange:e=>{l({precision:parseInt(e)})}}),(0,h.createElement)(qC,{key:"calc_separate_decimals",label:OC("Decimals separator","jet-form-builder"),value:t.separate_decimals,onChange:e=>l({separate_decimals:e})}),(0,h.createElement)(qC,{key:"calc_separate_thousands",label:OC("Thousands separator","jet-form-builder"),value:t.separate_thousands,onChange:e=>l({separate_thousands:e})}),(0,h.createElement)(qC,{key:"calc_prefix",label:OC("Calculated Value Prefix","jet-form-builder"),value:t.calc_prefix,help:OC("For space before or after text use:  ","jet-form-builder"),onChange:e=>{l({calc_prefix:e})}}),(0,h.createElement)(qC,{key:"calc_suffix",label:OC("Calculated Value Suffix","jet-form-builder"),value:t.calc_suffix,help:OC("For space before or after text use:  ","jet-form-builder"),onChange:e=>{l({calc_suffix:e})}})):null,(0,h.createElement)(zC,{key:"calc_hidden",label:OC("Hidden","jet-form-builder"),checked:t.calc_hidden,help:$C.calc_hidden,onChange:e=>{l({calc_hidden:Boolean(e)})}})),(0,h.createElement)(jC,{key:n("JetForm-advanced"),...e})),(0,h.createElement)("div",{...C,key:n("viewBlock")},(0,h.createElement)(xC,{key:n("FieldWrapper"),...e},(0,h.createElement)("div",{className:"jet-form-builder__calculated-field"},(0,h.createElement)("div",{className:"calc-prefix"},t.calc_prefix),(0,h.createElement)("div",{className:"calc-formula"},t.calc_formula),(0,h.createElement)("div",{className:"calc-suffix"},t.calc_suffix)),e.isSelected&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(DC,{key:"calc_formula",value:t.calc_formula,onChange:e=>{l({calc_formula:e})},ref:a}),(0,h.createElement)("div",{className:"jet-form-builder__calculated-field_info"},OC("You may use JavaScript's built-in ","jet-form-builder"),(0,h.createElement)("a",{href:"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math",target:"_blank",rel:"noopener noreferrer"},OC("Math","jet-form-builder")),OC(" object (e.g., Math.sqrt(16) returns 4) to perform more sophisticated operations.","jet-form-builder"),(0,h.createElement)("br",null),OC("You can also explore","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters",target:"_blank",rel:"noopener noreferrer"},OC("Filters","jet-form-builder")),", ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros",target:"_blank",rel:"noopener noreferrer"},OC("External Macros","jet-form-builder"))," ",OC("and","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Field-Attributes",target:"_blank",rel:"noopener noreferrer"},OC("Field Attributes","jet-form-builder"))," ",OC("for deeper customization.","jet-form-builder"),(0,h.createElement)("br",null),OC("Additionally, you can use the ternary operator (?:) for conditional calculations. For example: ((%field_one% + %field_two%) > 20) ? 10 : 5","jet-form-builder"),(0,h.createElement)("br",null),OC("For more details on using calculated fields, check out the Block Field section or read our in-depth guide","jet-form-builder")," ",(0,h.createElement)("a",{href:"https://jetformbuilder.com/features/calculated-field",target:"_blank",rel:"noopener noreferrer"},OC("here","jet-form-builder")),"."))))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/number-field"],transform:e=>QC("jet-forms/number-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/number-field","jet-forms/text-field"],transform:e=>QC(et,{...e}),priority:0}]}};Object.defineProperty(yt,"name",{value:"default",configurable:!0});const{Repeater:lt,RepeaterAddNew:rt,RepeaterAddOrOperator:nt,ConditionItem:at,RepeaterState:it,ToggleControl:ot,ConditionsRepeaterContextProvider:st}=JetFBComponents,{useState:ct}=wp.element,{useBlockAttributes:dt,useBlockConditions:mt,useUniqKey:ut,useOnUpdateModal:pt}=JetFBHooks;let{SelectControl:ft,withFilters:Vt,Button:Ht,ToggleGroupControl:ht,__experimentalToggleGroupControl:bt}=wp.components;const{__:Mt}=wp.i18n,{addFilter:Lt}=wp.hooks;ht=ht||bt;const gt=e=>e.func_type&&e?.func_settings?.hasOwnProperty(e.func_type)?e?.func_settings[e.func_type]:{};Lt("jet.fb.block.condition.settings","jet-form-builder",e=>C=>{var t;const{current:l,settings:r,update:n}=C;return["show","hide"].includes(l.func_type)?(0,h.createElement)(ot,{checked:null!==(t=r?.dom)&&void 0!==t&&t,onChange:e=>n({dom:Boolean(e)})},Mt("Remove hidden elements from page HTML","jet-form-builder")+" ",(0,h.createElement)(Ht,{isLink:!0,onClick:()=>{},label:Mt("If this block is removed from the HTML, then when sending the form, the values from the inner fields will be empty","jet-form-builder"),showTooltip:!0},"(?)")):(0,h.createElement)(e,{...C})});const Zt=Vt("jet.fb.block.condition.settings")(()=>null);function yt(){var e;const[C,t]=dt(),[l,r]=ct(()=>C),{functions:n}=mt(),a=ut(),i=e=>{const C="function"==typeof e?e(l.conditions):e;r(e=>({...e,conditions:C}))};pt(()=>t(l));const o=gt(l);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ft,{key:a("SelectControl-operator"),label:Mt("Which function need execute?","jet-form-builder"),labelPosition:"side",value:l.func_type,options:n,onChange:e=>r(C=>({...C,func_type:e}))}),(0,h.createElement)(Zt,{current:l,settings:o,update:e=>r(C=>{var t;return{...C,func_settings:{...null!==(t=C?.func_settings)&&void 0!==t?t:{},[C.func_type]:{...o,...e}}}})}),(0,h.createElement)(st,null,(0,h.createElement)(lt,{items:null!==(e=l.conditions)&&void 0!==e?e:[],onSetState:i},(0,h.createElement)(at,null))),(0,h.createElement)(it,{state:i},(0,h.createElement)(ht,{style:{display:"flex"},hideLabelFromVision:!0,className:"jfb-toggle-group-control jfb-toggle-group-control--no-gap"},(0,h.createElement)(rt,null,Mt("Add Condition","jet-form-builder")),Boolean(l?.conditions?.length)&&(0,h.createElement)(nt,null,Mt("Add OR Operator","jet-form-builder")))))}const{ActionModal:Et}=JetFBComponents;function wt(e){const{setShowModal:C}=e;return(0,h.createElement)(Et,{classNames:["width-60"],onRequestClose:()=>C(!1),title:"Conditional Logic"},(0,h.createElement)(yt,null))}const{createContext:vt}=wp.element,_t=vt({showModal:!1,setShowModal:()=>{}}),{DetailsContainer:kt,HoverContainer:jt,HumanReadableConditions:xt}=JetFBComponents,{useBlockAttributes:Ft}=JetFBHooks,{useState:Bt,useContext:At}=wp.element,{__:Pt}=wp.i18n,{Button:St}=wp.components,Nt=function({group:e}){const[C,t]=Bt(!1),{setShowModal:l}=At(_t),[r,n]=Ft(),a=e.map(({condition:e})=>e),i=e.map(({index:e})=>e);return(0,h.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>t(!0),onFocus:()=>t(!0),onMouseOut:()=>t(!1),onBlur:()=>t(!1)},(0,h.createElement)(jt,{isHover:C},(0,h.createElement)(St,{isSmall:!0,isSecondary:!0,icon:"edit",onClick:()=>{n(({conditions:e})=>e.map((e,C)=>(e.__visible=C===i[0],e))),l(e=>!e)}},Pt("Edit","jet-form-builder")),(0,h.createElement)(St,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{n({conditions:r.conditions.filter((e,C)=>!i.includes(C))})}},Pt("Delete","jet-form-builder"))),(0,h.createElement)(kt,null,(0,h.createElement)(xt,{conditions:a,showWarning:!0})))},{DetailsContainer:It,HoverContainer:Tt}=JetFBComponents,{useBlockAttributes:Ot}=JetFBHooks,{useContext:Jt,useState:Rt}=wp.element,{__:qt}=wp.i18n,{Button:Dt}=wp.components,zt=function(){const{setShowModal:e}=Jt(_t),[C,t]=Ot(),[l,r]=Rt(!1);return(0,h.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>r(!0),onFocus:()=>r(!0),onMouseOut:()=>r(!1),onBlur:()=>r(!1)},(0,h.createElement)(Tt,{isHover:l},(0,h.createElement)(Dt,{isSmall:!0,isSecondary:!0,icon:"plus-alt2",onClick:()=>{t({conditions:[...JSON.parse(JSON.stringify(C.conditions)),{__visible:!0}]}),e(e=>!e)}},qt("Add new","jet-form-builder"))),(0,h.createElement)(It,null,(0,h.createElement)("span",{"data-title":qt("You have no conditions in this block.","jet-form-builder")}),(0,h.createElement)("span",{"data-title":qt("Please click here to add new.","jet-form-builder")})))},{__:Ut}=wp.i18n,{Children:Gt,cloneElement:Wt}=wp.element,{ContainersList:Kt}=JetFBComponents,$t=e=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)("b",null,Ut("OR","jet-form-builder")),(0,h.createElement)(Nt,{group:e})),Yt=function({attributes:e}){return Boolean(e?.conditions?.length)?(0,h.createElement)(Kt,null,Gt.map((e=>{let C={},t=0,l=0;for(const n of e){var r;n.hasOwnProperty("or_operator")?(t++,l++):(C[t]=null!==(r=C[t])&&void 0!==r?r:[],C[t].push({condition:n,index:l}),l++)}C=Object.values(C);const n=C.filter((e,C)=>0!==C);return[(0,h.createElement)(Nt,{group:C[0],key:"first_item"}),...n.map($t)]})(e.conditions),Wt)):(0,h.createElement)(zt,null)},Xt=(0,h.createElement)("svg",{width:"298",height:"149",viewBox:"0 0 298 149",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"149",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M18.7734 19.9922L20.749 13.0469H21.7061L21.1523 15.7471L19.0264 23H18.0762L18.7734 19.9922ZM16.7295 13.0469L18.3018 19.8555L18.7734 23H17.8301L15.417 13.0469H16.7295ZM24.2627 19.8486L25.8008 13.0469H27.1201L24.7139 23H23.7705L24.2627 19.8486ZM21.8496 13.0469L23.7705 19.9922L24.4678 23H23.5176L21.4668 15.7471L20.9062 13.0469H21.8496ZM29.6562 12.5V23H28.3916V12.5H29.6562ZM29.3555 19.0215L28.8291 19.001C28.8337 18.4951 28.9089 18.028 29.0547 17.5996C29.2005 17.1667 29.4056 16.7907 29.6699 16.4717C29.9342 16.1527 30.2487 15.9066 30.6133 15.7334C30.9824 15.5557 31.3903 15.4668 31.8369 15.4668C32.2015 15.4668 32.5296 15.5169 32.8213 15.6172C33.113 15.7129 33.3613 15.8678 33.5664 16.082C33.776 16.2962 33.9355 16.5742 34.0449 16.916C34.1543 17.2533 34.209 17.6657 34.209 18.1533V23H32.9375V18.1396C32.9375 17.7523 32.8805 17.4424 32.7666 17.21C32.6527 16.973 32.4863 16.8021 32.2676 16.6973C32.0488 16.5879 31.7799 16.5332 31.4609 16.5332C31.1465 16.5332 30.8594 16.5993 30.5996 16.7314C30.3444 16.8636 30.1234 17.0459 29.9365 17.2783C29.7542 17.5107 29.6107 17.7773 29.5059 18.0781C29.4056 18.3743 29.3555 18.6888 29.3555 19.0215ZM40.4639 21.7354V17.9277C40.4639 17.6361 40.4046 17.3831 40.2861 17.1689C40.1722 16.9502 39.999 16.7816 39.7666 16.6631C39.5342 16.5446 39.2471 16.4854 38.9053 16.4854C38.5863 16.4854 38.306 16.54 38.0645 16.6494C37.8275 16.7588 37.6406 16.9023 37.5039 17.0801C37.3717 17.2578 37.3057 17.4492 37.3057 17.6543H36.041C36.041 17.39 36.1094 17.1279 36.2461 16.8682C36.3828 16.6084 36.5788 16.3737 36.834 16.1641C37.0938 15.9499 37.4036 15.7812 37.7637 15.6582C38.1283 15.5306 38.5339 15.4668 38.9805 15.4668C39.5182 15.4668 39.9922 15.5579 40.4023 15.7402C40.8171 15.9225 41.1406 16.1982 41.373 16.5674C41.61 16.932 41.7285 17.39 41.7285 17.9414V21.3867C41.7285 21.6328 41.749 21.8949 41.79 22.1729C41.8356 22.4508 41.9017 22.6901 41.9883 22.8906V23H40.6689C40.6051 22.8542 40.555 22.6605 40.5186 22.4189C40.4821 22.1729 40.4639 21.945 40.4639 21.7354ZM40.6826 18.5156L40.6963 19.4043H39.418C39.0579 19.4043 38.7367 19.4339 38.4541 19.4932C38.1715 19.5479 37.9346 19.6322 37.7432 19.7461C37.5518 19.86 37.4059 20.0036 37.3057 20.1768C37.2054 20.3454 37.1553 20.5436 37.1553 20.7715C37.1553 21.0039 37.2077 21.2158 37.3125 21.4072C37.4173 21.5986 37.5745 21.7513 37.7842 21.8652C37.9984 21.9746 38.2604 22.0293 38.5703 22.0293C38.9577 22.0293 39.2995 21.9473 39.5957 21.7832C39.8919 21.6191 40.1266 21.4186 40.2998 21.1816C40.4775 20.9447 40.5732 20.7145 40.5869 20.4912L41.127 21.0996C41.0951 21.291 41.0085 21.5029 40.8672 21.7354C40.7259 21.9678 40.5368 22.1911 40.2998 22.4053C40.0674 22.6149 39.7894 22.7904 39.4658 22.9316C39.1468 23.0684 38.7868 23.1367 38.3857 23.1367C37.8844 23.1367 37.4447 23.0387 37.0664 22.8428C36.6927 22.6468 36.401 22.3848 36.1914 22.0566C35.9863 21.724 35.8838 21.3525 35.8838 20.9424C35.8838 20.5459 35.9613 20.1973 36.1162 19.8965C36.2712 19.5911 36.4945 19.3382 36.7861 19.1377C37.0778 18.9326 37.4287 18.7777 37.8389 18.6729C38.249 18.568 38.707 18.5156 39.2129 18.5156H40.6826ZM46.8145 15.6035V16.5742H42.8154V15.6035H46.8145ZM44.1689 13.8057H45.4336V21.168C45.4336 21.4186 45.4723 21.6077 45.5498 21.7354C45.6273 21.863 45.7275 21.9473 45.8506 21.9883C45.9736 22.0293 46.1058 22.0498 46.2471 22.0498C46.3519 22.0498 46.4613 22.0407 46.5752 22.0225C46.6937 21.9997 46.7826 21.9814 46.8418 21.9678L46.8486 23C46.7484 23.0319 46.6162 23.0615 46.4521 23.0889C46.2926 23.1208 46.099 23.1367 45.8711 23.1367C45.5612 23.1367 45.2764 23.0752 45.0166 22.9521C44.7568 22.8291 44.5495 22.624 44.3945 22.3369C44.2441 22.0452 44.1689 21.6533 44.1689 21.1611V13.8057ZM54.8672 15.6035V16.5742H50.8682V15.6035H54.8672ZM52.2217 13.8057H53.4863V21.168C53.4863 21.4186 53.5251 21.6077 53.6025 21.7354C53.68 21.863 53.7803 21.9473 53.9033 21.9883C54.0264 22.0293 54.1585 22.0498 54.2998 22.0498C54.4046 22.0498 54.514 22.0407 54.6279 22.0225C54.7464 21.9997 54.8353 21.9814 54.8945 21.9678L54.9014 23C54.8011 23.0319 54.6689 23.0615 54.5049 23.0889C54.3454 23.1208 54.1517 23.1367 53.9238 23.1367C53.6139 23.1367 53.3291 23.0752 53.0693 22.9521C52.8096 22.8291 52.6022 22.624 52.4473 22.3369C52.2969 22.0452 52.2217 21.6533 52.2217 21.1611V13.8057ZM57.6152 16.7656V23H56.3506V15.6035H57.5811L57.6152 16.7656ZM59.9258 15.5625L59.9189 16.7383C59.8141 16.7155 59.7139 16.7018 59.6182 16.6973C59.527 16.6882 59.4222 16.6836 59.3037 16.6836C59.012 16.6836 58.7546 16.7292 58.5312 16.8203C58.3079 16.9115 58.1188 17.0391 57.9639 17.2031C57.8089 17.3672 57.6859 17.5632 57.5947 17.791C57.5081 18.0143 57.4512 18.2604 57.4238 18.5293L57.0684 18.7344C57.0684 18.2878 57.1117 17.8685 57.1982 17.4766C57.2894 17.0846 57.4284 16.7383 57.6152 16.4375C57.8021 16.1322 58.0391 15.8952 58.3262 15.7266C58.6178 15.5534 58.9642 15.4668 59.3652 15.4668C59.4564 15.4668 59.5612 15.4782 59.6797 15.501C59.7982 15.5192 59.8802 15.5397 59.9258 15.5625ZM65.1826 21.7354V17.9277C65.1826 17.6361 65.1234 17.3831 65.0049 17.1689C64.891 16.9502 64.7178 16.7816 64.4854 16.6631C64.2529 16.5446 63.9658 16.4854 63.624 16.4854C63.305 16.4854 63.0247 16.54 62.7832 16.6494C62.5462 16.7588 62.3594 16.9023 62.2227 17.0801C62.0905 17.2578 62.0244 17.4492 62.0244 17.6543H60.7598C60.7598 17.39 60.8281 17.1279 60.9648 16.8682C61.1016 16.6084 61.2975 16.3737 61.5527 16.1641C61.8125 15.9499 62.1224 15.7812 62.4824 15.6582C62.847 15.5306 63.2526 15.4668 63.6992 15.4668C64.237 15.4668 64.7109 15.5579 65.1211 15.7402C65.5358 15.9225 65.8594 16.1982 66.0918 16.5674C66.3288 16.932 66.4473 17.39 66.4473 17.9414V21.3867C66.4473 21.6328 66.4678 21.8949 66.5088 22.1729C66.5544 22.4508 66.6204 22.6901 66.707 22.8906V23H65.3877C65.3239 22.8542 65.2738 22.6605 65.2373 22.4189C65.2008 22.1729 65.1826 21.945 65.1826 21.7354ZM65.4014 18.5156L65.415 19.4043H64.1367C63.7767 19.4043 63.4554 19.4339 63.1729 19.4932C62.8903 19.5479 62.6533 19.6322 62.4619 19.7461C62.2705 19.86 62.1247 20.0036 62.0244 20.1768C61.9242 20.3454 61.874 20.5436 61.874 20.7715C61.874 21.0039 61.9264 21.2158 62.0312 21.4072C62.1361 21.5986 62.2933 21.7513 62.5029 21.8652C62.7171 21.9746 62.9792 22.0293 63.2891 22.0293C63.6764 22.0293 64.0182 21.9473 64.3145 21.7832C64.6107 21.6191 64.8454 21.4186 65.0186 21.1816C65.1963 20.9447 65.292 20.7145 65.3057 20.4912L65.8457 21.0996C65.8138 21.291 65.7272 21.5029 65.5859 21.7354C65.4447 21.9678 65.2555 22.1911 65.0186 22.4053C64.7861 22.6149 64.5081 22.7904 64.1846 22.9316C63.8656 23.0684 63.5055 23.1367 63.1045 23.1367C62.6032 23.1367 62.1634 23.0387 61.7852 22.8428C61.4115 22.6468 61.1198 22.3848 60.9102 22.0566C60.7051 21.724 60.6025 21.3525 60.6025 20.9424C60.6025 20.5459 60.68 20.1973 60.835 19.8965C60.9899 19.5911 61.2132 19.3382 61.5049 19.1377C61.7965 18.9326 62.1475 18.7777 62.5576 18.6729C62.9678 18.568 63.4258 18.5156 63.9316 18.5156H65.4014ZM69.7012 17.1826V23H68.4365V15.6035H69.6328L69.7012 17.1826ZM69.4004 19.0215L68.874 19.001C68.8786 18.4951 68.9538 18.028 69.0996 17.5996C69.2454 17.1667 69.4505 16.7907 69.7148 16.4717C69.9792 16.1527 70.2936 15.9066 70.6582 15.7334C71.0273 15.5557 71.4352 15.4668 71.8818 15.4668C72.2464 15.4668 72.5745 15.5169 72.8662 15.6172C73.1579 15.7129 73.4062 15.8678 73.6113 16.082C73.821 16.2962 73.9805 16.5742 74.0898 16.916C74.1992 17.2533 74.2539 17.6657 74.2539 18.1533V23H72.9824V18.1396C72.9824 17.7523 72.9255 17.4424 72.8115 17.21C72.6976 16.973 72.5312 16.8021 72.3125 16.6973C72.0938 16.5879 71.8249 16.5332 71.5059 16.5332C71.1914 16.5332 70.9043 16.5993 70.6445 16.7314C70.3893 16.8636 70.1683 17.0459 69.9814 17.2783C69.7992 17.5107 69.6556 17.7773 69.5508 18.0781C69.4505 18.3743 69.4004 18.6888 69.4004 19.0215ZM80.4814 21.0381C80.4814 20.8558 80.4404 20.6872 80.3584 20.5322C80.2809 20.3727 80.1191 20.2292 79.873 20.1016C79.6315 19.9694 79.2669 19.8555 78.7793 19.7598C78.3691 19.6732 77.9977 19.5706 77.665 19.4521C77.3369 19.3337 77.0566 19.1901 76.8242 19.0215C76.5964 18.8529 76.4209 18.6546 76.2979 18.4268C76.1748 18.1989 76.1133 17.9323 76.1133 17.627C76.1133 17.3353 76.1771 17.0596 76.3047 16.7998C76.4368 16.54 76.6214 16.3099 76.8584 16.1094C77.0999 15.9089 77.3893 15.7516 77.7266 15.6377C78.0638 15.5238 78.4398 15.4668 78.8545 15.4668C79.4469 15.4668 79.9528 15.5716 80.3721 15.7812C80.7913 15.9909 81.1126 16.2712 81.3359 16.6221C81.5592 16.9684 81.6709 17.3535 81.6709 17.7773H80.4062C80.4062 17.5723 80.3447 17.374 80.2217 17.1826C80.1032 16.9867 79.9277 16.8249 79.6953 16.6973C79.4674 16.5697 79.1872 16.5059 78.8545 16.5059C78.5036 16.5059 78.2188 16.5605 78 16.6699C77.7858 16.7747 77.6286 16.9092 77.5283 17.0732C77.4326 17.2373 77.3848 17.4105 77.3848 17.5928C77.3848 17.7295 77.4076 17.8525 77.4531 17.9619C77.5033 18.0667 77.5898 18.1647 77.7129 18.2559C77.8359 18.3424 78.0091 18.4245 78.2324 18.502C78.4557 18.5794 78.7406 18.6569 79.0869 18.7344C79.693 18.8711 80.1921 19.0352 80.584 19.2266C80.9759 19.418 81.2676 19.6527 81.459 19.9307C81.6504 20.2087 81.7461 20.5459 81.7461 20.9424C81.7461 21.266 81.6777 21.5622 81.541 21.8311C81.4089 22.0999 81.2152 22.3324 80.96 22.5283C80.7093 22.7197 80.4085 22.8701 80.0576 22.9795C79.7113 23.0843 79.3216 23.1367 78.8887 23.1367C78.237 23.1367 77.6855 23.0205 77.2344 22.7881C76.7832 22.5557 76.4414 22.2549 76.209 21.8857C75.9766 21.5166 75.8604 21.127 75.8604 20.7168H77.1318C77.1501 21.0632 77.2503 21.3389 77.4326 21.5439C77.6149 21.7445 77.8382 21.888 78.1025 21.9746C78.3669 22.0566 78.6289 22.0977 78.8887 22.0977C79.235 22.0977 79.5244 22.0521 79.7568 21.9609C79.9938 21.8698 80.1738 21.7445 80.2969 21.585C80.4199 21.4255 80.4814 21.2432 80.4814 21.0381ZM84.6719 17.0254V25.8438H83.4004V15.6035H84.5625L84.6719 17.0254ZM89.6553 19.2402V19.3838C89.6553 19.9215 89.5915 20.4206 89.4639 20.8809C89.3363 21.3366 89.1494 21.7331 88.9033 22.0703C88.6618 22.4076 88.3633 22.6696 88.0078 22.8564C87.6523 23.0433 87.2445 23.1367 86.7842 23.1367C86.3148 23.1367 85.9001 23.0592 85.54 22.9043C85.18 22.7493 84.8747 22.5238 84.624 22.2275C84.3734 21.9313 84.1729 21.5758 84.0225 21.1611C83.8766 20.7464 83.7764 20.2793 83.7217 19.7598V18.9941C83.7764 18.4473 83.8789 17.9574 84.0293 17.5244C84.1797 17.0915 84.3779 16.7223 84.624 16.417C84.8747 16.1071 85.1777 15.8724 85.5332 15.7129C85.8887 15.5488 86.2988 15.4668 86.7637 15.4668C87.2285 15.4668 87.641 15.5579 88.001 15.7402C88.361 15.918 88.6641 16.1732 88.9102 16.5059C89.1562 16.8385 89.3408 17.2373 89.4639 17.7021C89.5915 18.1624 89.6553 18.6751 89.6553 19.2402ZM88.3838 19.3838V19.2402C88.3838 18.8711 88.3451 18.5247 88.2676 18.2012C88.1901 17.873 88.0693 17.5859 87.9053 17.3398C87.7458 17.0892 87.5407 16.8932 87.29 16.752C87.0394 16.6061 86.7409 16.5332 86.3945 16.5332C86.0755 16.5332 85.7975 16.5879 85.5605 16.6973C85.3281 16.8066 85.1299 16.9548 84.9658 17.1416C84.8018 17.3239 84.6673 17.5335 84.5625 17.7705C84.4622 18.0029 84.387 18.2445 84.3369 18.4951V20.2656C84.4281 20.5846 84.5557 20.8854 84.7197 21.168C84.8838 21.446 85.1025 21.6715 85.376 21.8447C85.6494 22.0133 85.9935 22.0977 86.4082 22.0977C86.75 22.0977 87.0439 22.027 87.29 21.8857C87.5407 21.7399 87.7458 21.5417 87.9053 21.291C88.0693 21.0404 88.1901 20.7533 88.2676 20.4297C88.3451 20.1016 88.3838 19.7529 88.3838 19.3838ZM90.9336 19.3838V19.2266C90.9336 18.6934 91.0111 18.1989 91.166 17.7432C91.321 17.2829 91.5443 16.8841 91.8359 16.5469C92.1276 16.2051 92.4808 15.9408 92.8955 15.7539C93.3102 15.5625 93.7751 15.4668 94.29 15.4668C94.8096 15.4668 95.2767 15.5625 95.6914 15.7539C96.1107 15.9408 96.4661 16.2051 96.7578 16.5469C97.054 16.8841 97.2796 17.2829 97.4346 17.7432C97.5895 18.1989 97.667 18.6934 97.667 19.2266V19.3838C97.667 19.917 97.5895 20.4115 97.4346 20.8672C97.2796 21.3229 97.054 21.7217 96.7578 22.0635C96.4661 22.4007 96.113 22.665 95.6982 22.8564C95.2881 23.0433 94.8232 23.1367 94.3037 23.1367C93.7842 23.1367 93.3171 23.0433 92.9023 22.8564C92.4876 22.665 92.1322 22.4007 91.8359 22.0635C91.5443 21.7217 91.321 21.3229 91.166 20.8672C91.0111 20.4115 90.9336 19.917 90.9336 19.3838ZM92.1982 19.2266V19.3838C92.1982 19.7529 92.2415 20.1016 92.3281 20.4297C92.4147 20.7533 92.5446 21.0404 92.7178 21.291C92.8955 21.5417 93.1165 21.7399 93.3809 21.8857C93.6452 22.027 93.9528 22.0977 94.3037 22.0977C94.6501 22.0977 94.9531 22.027 95.2129 21.8857C95.4772 21.7399 95.696 21.5417 95.8691 21.291C96.0423 21.0404 96.1722 20.7533 96.2588 20.4297C96.3499 20.1016 96.3955 19.7529 96.3955 19.3838V19.2266C96.3955 18.862 96.3499 18.5179 96.2588 18.1943C96.1722 17.8662 96.04 17.5768 95.8623 17.3262C95.6891 17.071 95.4704 16.8704 95.2061 16.7246C94.9463 16.5788 94.641 16.5059 94.29 16.5059C93.9437 16.5059 93.6383 16.5788 93.374 16.7246C93.1143 16.8704 92.8955 17.071 92.7178 17.3262C92.5446 17.5768 92.4147 17.8662 92.3281 18.1943C92.2415 18.5179 92.1982 18.862 92.1982 19.2266ZM100.518 16.7656V23H99.2529V15.6035H100.483L100.518 16.7656ZM102.828 15.5625L102.821 16.7383C102.716 16.7155 102.616 16.7018 102.521 16.6973C102.429 16.6882 102.325 16.6836 102.206 16.6836C101.914 16.6836 101.657 16.7292 101.434 16.8203C101.21 16.9115 101.021 17.0391 100.866 17.2031C100.711 17.3672 100.588 17.5632 100.497 17.791C100.41 18.0143 100.354 18.2604 100.326 18.5293L99.9707 18.7344C99.9707 18.2878 100.014 17.8685 100.101 17.4766C100.192 17.0846 100.331 16.7383 100.518 16.4375C100.704 16.1322 100.941 15.8952 101.229 15.7266C101.52 15.5534 101.867 15.4668 102.268 15.4668C102.359 15.4668 102.464 15.4782 102.582 15.501C102.701 15.5192 102.783 15.5397 102.828 15.5625ZM107.436 15.6035V16.5742H103.437V15.6035H107.436ZM104.79 13.8057H106.055V21.168C106.055 21.4186 106.093 21.6077 106.171 21.7354C106.248 21.863 106.349 21.9473 106.472 21.9883C106.595 22.0293 106.727 22.0498 106.868 22.0498C106.973 22.0498 107.082 22.0407 107.196 22.0225C107.315 21.9997 107.404 21.9814 107.463 21.9678L107.47 23C107.369 23.0319 107.237 23.0615 107.073 23.0889C106.914 23.1208 106.72 23.1367 106.492 23.1367C106.182 23.1367 105.897 23.0752 105.638 22.9521C105.378 22.8291 105.171 22.624 105.016 22.3369C104.865 22.0452 104.79 21.6533 104.79 21.1611V13.8057ZM114.265 21.6875L116.165 15.6035H116.999L116.835 16.8135L114.9 23H114.087L114.265 21.6875ZM112.986 15.6035L114.606 21.7559L114.723 23H113.868L111.722 15.6035H112.986ZM118.817 21.708L120.362 15.6035H121.62L119.474 23H118.626L118.817 21.708ZM117.184 15.6035L119.043 21.585L119.255 23H118.448L116.459 16.7998L116.295 15.6035H117.184ZM124.293 15.6035V23H123.021V15.6035H124.293ZM122.926 13.6416C122.926 13.4365 122.987 13.2633 123.11 13.1221C123.238 12.9808 123.425 12.9102 123.671 12.9102C123.912 12.9102 124.097 12.9808 124.225 13.1221C124.357 13.2633 124.423 13.4365 124.423 13.6416C124.423 13.8376 124.357 14.0062 124.225 14.1475C124.097 14.2842 123.912 14.3525 123.671 14.3525C123.425 14.3525 123.238 14.2842 123.11 14.1475C122.987 14.0062 122.926 13.8376 122.926 13.6416ZM127.697 12.5V23H126.426V12.5H127.697ZM131.102 12.5V23H129.83V12.5H131.102ZM138.683 22.2344L140.74 15.6035H142.094L139.127 24.1416C139.059 24.3239 138.967 24.5199 138.854 24.7295C138.744 24.9437 138.603 25.1465 138.43 25.3379C138.257 25.5293 138.047 25.6842 137.801 25.8027C137.559 25.9258 137.27 25.9873 136.933 25.9873C136.832 25.9873 136.705 25.9736 136.55 25.9463C136.395 25.9189 136.285 25.8962 136.222 25.8779L136.215 24.8525C136.251 24.8571 136.308 24.8617 136.386 24.8662C136.468 24.8753 136.525 24.8799 136.557 24.8799C136.844 24.8799 137.088 24.8411 137.288 24.7637C137.489 24.6908 137.657 24.5654 137.794 24.3877C137.935 24.2145 138.056 23.9753 138.156 23.6699L138.683 22.2344ZM137.172 15.6035L139.093 21.3457L139.421 22.6787L138.512 23.1436L135.791 15.6035H137.172ZM142.791 19.3838V19.2266C142.791 18.6934 142.868 18.1989 143.023 17.7432C143.178 17.2829 143.402 16.8841 143.693 16.5469C143.985 16.2051 144.338 15.9408 144.753 15.7539C145.168 15.5625 145.632 15.4668 146.147 15.4668C146.667 15.4668 147.134 15.5625 147.549 15.7539C147.968 15.9408 148.324 16.2051 148.615 16.5469C148.911 16.8841 149.137 17.2829 149.292 17.7432C149.447 18.1989 149.524 18.6934 149.524 19.2266V19.3838C149.524 19.917 149.447 20.4115 149.292 20.8672C149.137 21.3229 148.911 21.7217 148.615 22.0635C148.324 22.4007 147.97 22.665 147.556 22.8564C147.146 23.0433 146.681 23.1367 146.161 23.1367C145.642 23.1367 145.174 23.0433 144.76 22.8564C144.345 22.665 143.99 22.4007 143.693 22.0635C143.402 21.7217 143.178 21.3229 143.023 20.8672C142.868 20.4115 142.791 19.917 142.791 19.3838ZM144.056 19.2266V19.3838C144.056 19.7529 144.099 20.1016 144.186 20.4297C144.272 20.7533 144.402 21.0404 144.575 21.291C144.753 21.5417 144.974 21.7399 145.238 21.8857C145.503 22.027 145.81 22.0977 146.161 22.0977C146.507 22.0977 146.811 22.027 147.07 21.8857C147.335 21.7399 147.553 21.5417 147.727 21.291C147.9 21.0404 148.03 20.7533 148.116 20.4297C148.207 20.1016 148.253 19.7529 148.253 19.3838V19.2266C148.253 18.862 148.207 18.5179 148.116 18.1943C148.03 17.8662 147.897 17.5768 147.72 17.3262C147.547 17.071 147.328 16.8704 147.063 16.7246C146.804 16.5788 146.498 16.5059 146.147 16.5059C145.801 16.5059 145.496 16.5788 145.231 16.7246C144.972 16.8704 144.753 17.071 144.575 17.3262C144.402 17.5768 144.272 17.8662 144.186 18.1943C144.099 18.5179 144.056 18.862 144.056 19.2266ZM155.636 21.291V15.6035H156.907V23H155.697L155.636 21.291ZM155.875 19.7324L156.401 19.7188C156.401 20.2109 156.349 20.6667 156.244 21.0859C156.144 21.5007 155.98 21.8607 155.752 22.166C155.524 22.4714 155.226 22.7106 154.856 22.8838C154.487 23.0524 154.038 23.1367 153.51 23.1367C153.15 23.1367 152.819 23.0843 152.519 22.9795C152.222 22.8747 151.967 22.7129 151.753 22.4941C151.539 22.2754 151.372 21.9906 151.254 21.6396C151.14 21.2887 151.083 20.8672 151.083 20.375V15.6035H152.348V20.3887C152.348 20.7214 152.384 20.9971 152.457 21.2158C152.535 21.43 152.637 21.6009 152.765 21.7285C152.897 21.8516 153.043 21.9382 153.202 21.9883C153.366 22.0384 153.535 22.0635 153.708 22.0635C154.246 22.0635 154.672 21.9609 154.986 21.7559C155.301 21.5462 155.526 21.266 155.663 20.915C155.804 20.5596 155.875 20.1654 155.875 19.7324ZM166.833 21.291V15.6035H168.104V23H166.895L166.833 21.291ZM167.072 19.7324L167.599 19.7188C167.599 20.2109 167.546 20.6667 167.441 21.0859C167.341 21.5007 167.177 21.8607 166.949 22.166C166.721 22.4714 166.423 22.7106 166.054 22.8838C165.685 23.0524 165.236 23.1367 164.707 23.1367C164.347 23.1367 164.017 23.0843 163.716 22.9795C163.42 22.8747 163.164 22.7129 162.95 22.4941C162.736 22.2754 162.57 21.9906 162.451 21.6396C162.337 21.2887 162.28 20.8672 162.28 20.375V15.6035H163.545V20.3887C163.545 20.7214 163.581 20.9971 163.654 21.2158C163.732 21.43 163.834 21.6009 163.962 21.7285C164.094 21.8516 164.24 21.9382 164.399 21.9883C164.563 22.0384 164.732 22.0635 164.905 22.0635C165.443 22.0635 165.869 21.9609 166.184 21.7559C166.498 21.5462 166.724 21.266 166.86 20.915C167.002 20.5596 167.072 20.1654 167.072 19.7324ZM174.339 21.0381C174.339 20.8558 174.298 20.6872 174.216 20.5322C174.138 20.3727 173.977 20.2292 173.73 20.1016C173.489 19.9694 173.124 19.8555 172.637 19.7598C172.227 19.6732 171.855 19.5706 171.522 19.4521C171.194 19.3337 170.914 19.1901 170.682 19.0215C170.454 18.8529 170.278 18.6546 170.155 18.4268C170.032 18.1989 169.971 17.9323 169.971 17.627C169.971 17.3353 170.035 17.0596 170.162 16.7998C170.294 16.54 170.479 16.3099 170.716 16.1094C170.957 15.9089 171.247 15.7516 171.584 15.6377C171.921 15.5238 172.297 15.4668 172.712 15.4668C173.304 15.4668 173.81 15.5716 174.229 15.7812C174.649 15.9909 174.97 16.2712 175.193 16.6221C175.417 16.9684 175.528 17.3535 175.528 17.7773H174.264C174.264 17.5723 174.202 17.374 174.079 17.1826C173.961 16.9867 173.785 16.8249 173.553 16.6973C173.325 16.5697 173.045 16.5059 172.712 16.5059C172.361 16.5059 172.076 16.5605 171.857 16.6699C171.643 16.7747 171.486 16.9092 171.386 17.0732C171.29 17.2373 171.242 17.4105 171.242 17.5928C171.242 17.7295 171.265 17.8525 171.311 17.9619C171.361 18.0667 171.447 18.1647 171.57 18.2559C171.693 18.3424 171.867 18.4245 172.09 18.502C172.313 18.5794 172.598 18.6569 172.944 18.7344C173.55 18.8711 174.049 19.0352 174.441 19.2266C174.833 19.418 175.125 19.6527 175.316 19.9307C175.508 20.2087 175.604 20.5459 175.604 20.9424C175.604 21.266 175.535 21.5622 175.398 21.8311C175.266 22.0999 175.073 22.3324 174.817 22.5283C174.567 22.7197 174.266 22.8701 173.915 22.9795C173.569 23.0843 173.179 23.1367 172.746 23.1367C172.094 23.1367 171.543 23.0205 171.092 22.7881C170.641 22.5557 170.299 22.2549 170.066 21.8857C169.834 21.5166 169.718 21.127 169.718 20.7168H170.989C171.007 21.0632 171.108 21.3389 171.29 21.5439C171.472 21.7445 171.696 21.888 171.96 21.9746C172.224 22.0566 172.486 22.0977 172.746 22.0977C173.092 22.0977 173.382 22.0521 173.614 21.9609C173.851 21.8698 174.031 21.7445 174.154 21.585C174.277 21.4255 174.339 21.2432 174.339 21.0381ZM180.334 23.1367C179.819 23.1367 179.352 23.0501 178.933 22.877C178.518 22.6992 178.16 22.4508 177.859 22.1318C177.563 21.8128 177.335 21.4346 177.176 20.9971C177.016 20.5596 176.937 20.0811 176.937 19.5615V19.2744C176.937 18.6729 177.025 18.1374 177.203 17.668C177.381 17.194 177.622 16.793 177.928 16.4648C178.233 16.1367 178.579 15.8883 178.967 15.7197C179.354 15.5511 179.755 15.4668 180.17 15.4668C180.699 15.4668 181.154 15.5579 181.537 15.7402C181.924 15.9225 182.241 16.1777 182.487 16.5059C182.733 16.8294 182.916 17.2122 183.034 17.6543C183.153 18.0918 183.212 18.5703 183.212 19.0898V19.6572H177.688V18.625H181.947V18.5293C181.929 18.2012 181.861 17.8822 181.742 17.5723C181.628 17.2624 181.446 17.0072 181.195 16.8066C180.945 16.6061 180.603 16.5059 180.17 16.5059C179.883 16.5059 179.618 16.5674 179.377 16.6904C179.135 16.8089 178.928 16.9867 178.755 17.2236C178.582 17.4606 178.447 17.75 178.352 18.0918C178.256 18.4336 178.208 18.8278 178.208 19.2744V19.5615C178.208 19.9124 178.256 20.2428 178.352 20.5527C178.452 20.8581 178.595 21.127 178.782 21.3594C178.974 21.5918 179.204 21.7741 179.473 21.9062C179.746 22.0384 180.056 22.1045 180.402 22.1045C180.849 22.1045 181.227 22.0133 181.537 21.8311C181.847 21.6488 182.118 21.4049 182.351 21.0996L183.116 21.708C182.957 21.9495 182.754 22.1797 182.508 22.3984C182.262 22.6172 181.959 22.7949 181.599 22.9316C181.243 23.0684 180.822 23.1367 180.334 23.1367ZM187.437 20.1973H186.165C186.17 19.7598 186.208 19.402 186.281 19.124C186.359 18.8415 186.484 18.584 186.657 18.3516C186.83 18.1191 187.061 17.8548 187.348 17.5586C187.557 17.3444 187.749 17.1439 187.922 16.957C188.1 16.7656 188.243 16.5605 188.353 16.3418C188.462 16.1185 188.517 15.8519 188.517 15.542C188.517 15.2275 188.46 14.9564 188.346 14.7285C188.236 14.5007 188.072 14.3252 187.854 14.2021C187.639 14.0791 187.373 14.0176 187.054 14.0176C186.789 14.0176 186.539 14.0654 186.302 14.1611C186.065 14.2568 185.873 14.4049 185.728 14.6055C185.582 14.8014 185.507 15.0589 185.502 15.3779H184.237C184.246 14.863 184.374 14.4209 184.62 14.0518C184.871 13.6826 185.208 13.4001 185.632 13.2041C186.056 13.0081 186.53 12.9102 187.054 12.9102C187.632 12.9102 188.125 13.015 188.53 13.2246C188.94 13.4342 189.253 13.735 189.467 14.127C189.681 14.5143 189.788 14.9746 189.788 15.5078C189.788 15.918 189.704 16.2962 189.535 16.6426C189.371 16.9844 189.159 17.3057 188.899 17.6064C188.64 17.9072 188.364 18.1943 188.072 18.4678C187.822 18.7002 187.653 18.9622 187.566 19.2539C187.48 19.5456 187.437 19.86 187.437 20.1973ZM186.11 22.3643C186.11 22.1592 186.174 21.986 186.302 21.8447C186.429 21.7035 186.614 21.6328 186.855 21.6328C187.102 21.6328 187.288 21.7035 187.416 21.8447C187.544 21.986 187.607 22.1592 187.607 22.3643C187.607 22.5602 187.544 22.7288 187.416 22.8701C187.288 23.0114 187.102 23.082 186.855 23.082C186.614 23.082 186.429 23.0114 186.302 22.8701C186.174 22.7288 186.11 22.5602 186.11 22.3643Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M24 32.5C19.86 32.5 16.5 35.86 16.5 40C16.5 44.14 19.86 47.5 24 47.5C28.14 47.5 31.5 44.14 31.5 40C31.5 35.86 28.14 32.5 24 32.5ZM24 46C20.685 46 18 43.315 18 40C18 36.685 20.685 34 24 34C27.315 34 30 36.685 30 40C30 43.315 27.315 46 24 46Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M40.4814 40.8755H38.0122V39.8789H40.4814C40.9596 39.8789 41.3468 39.8027 41.6431 39.6504C41.9393 39.498 42.1551 39.2865 42.2905 39.0156C42.4302 38.7448 42.5 38.4359 42.5 38.0889C42.5 37.7715 42.4302 37.4731 42.2905 37.1938C42.1551 36.9146 41.9393 36.6903 41.6431 36.521C41.3468 36.3475 40.9596 36.2607 40.4814 36.2607H38.2979V44.5H37.0728V35.2578H40.4814C41.1797 35.2578 41.77 35.3784 42.2524 35.6196C42.7349 35.8608 43.1009 36.1951 43.3506 36.6226C43.6003 37.0457 43.7251 37.5303 43.7251 38.0762C43.7251 38.6686 43.6003 39.1743 43.3506 39.5933C43.1009 40.0122 42.7349 40.3317 42.2524 40.5518C41.77 40.7676 41.1797 40.8755 40.4814 40.8755ZM49.2983 42.9131V37.6318H50.479V44.5H49.3555L49.2983 42.9131ZM49.5205 41.4658L50.0093 41.4531C50.0093 41.9102 49.9606 42.3333 49.8633 42.7227C49.7702 43.1077 49.6178 43.4421 49.4062 43.7256C49.1947 44.0091 48.9175 44.2313 48.5747 44.3921C48.2319 44.5487 47.8151 44.627 47.3242 44.627C46.9899 44.627 46.6831 44.5783 46.4038 44.481C46.1287 44.3836 45.8918 44.2334 45.6929 44.0303C45.494 43.8271 45.3395 43.5627 45.2295 43.2368C45.1237 42.911 45.0708 42.5195 45.0708 42.0625V37.6318H46.2451V42.0752C46.2451 42.3841 46.279 42.6401 46.3467 42.8433C46.4186 43.0422 46.5138 43.2008 46.6323 43.3193C46.755 43.4336 46.8905 43.514 47.0386 43.5605C47.1909 43.6071 47.3475 43.6304 47.5083 43.6304C48.0076 43.6304 48.4033 43.5352 48.6953 43.3447C48.9873 43.1501 49.1968 42.8898 49.3237 42.564C49.4549 42.2339 49.5205 41.8678 49.5205 41.4658ZM52.2627 34.75H53.4434V43.167L53.3418 44.5H52.2627V34.75ZM58.0835 41.0088V41.1421C58.0835 41.6414 58.0243 42.1048 57.9058 42.5322C57.7873 42.9554 57.6138 43.3236 57.3853 43.6367C57.1567 43.9499 56.8774 44.1932 56.5474 44.3667C56.2173 44.5402 55.8385 44.627 55.4111 44.627C54.9753 44.627 54.5923 44.5529 54.2622 44.4048C53.9364 44.2524 53.6613 44.0345 53.437 43.751C53.2127 43.4674 53.0329 43.1247 52.8975 42.7227C52.7663 42.3206 52.6753 41.8678 52.6245 41.3643V40.7803C52.6753 40.2725 52.7663 39.8175 52.8975 39.4155C53.0329 39.0135 53.2127 38.6707 53.437 38.3872C53.6613 38.0994 53.9364 37.8815 54.2622 37.7334C54.5881 37.5811 54.9668 37.5049 55.3984 37.5049C55.8301 37.5049 56.2131 37.5895 56.5474 37.7588C56.8817 37.9238 57.161 38.1608 57.3853 38.4697C57.6138 38.7786 57.7873 39.1489 57.9058 39.5806C58.0243 40.008 58.0835 40.484 58.0835 41.0088ZM56.9028 41.1421V41.0088C56.9028 40.666 56.8711 40.3444 56.8076 40.0439C56.7441 39.7393 56.6426 39.4727 56.5029 39.2441C56.3633 39.0114 56.1792 38.8294 55.9507 38.6982C55.7222 38.5628 55.4408 38.4951 55.1064 38.4951C54.8102 38.4951 54.5521 38.5459 54.332 38.6475C54.1162 38.749 53.9321 38.8866 53.7798 39.0601C53.6274 39.2293 53.5026 39.424 53.4053 39.644C53.3122 39.8599 53.2424 40.0841 53.1958 40.3169V41.8467C53.2635 42.1429 53.3735 42.4285 53.5259 42.7036C53.6825 42.9744 53.8898 43.1966 54.1479 43.3701C54.4103 43.5436 54.734 43.6304 55.1191 43.6304C55.4365 43.6304 55.7074 43.5669 55.9316 43.4399C56.1602 43.3088 56.3442 43.1289 56.4839 42.9004C56.6278 42.6719 56.7336 42.4074 56.8013 42.1069C56.869 41.8065 56.9028 41.4849 56.9028 41.1421ZM60.8447 34.75V44.5H59.6641V34.75H60.8447ZM64.0059 37.6318V44.5H62.8252V37.6318H64.0059ZM62.7363 35.8101C62.7363 35.6196 62.7935 35.4588 62.9077 35.3276C63.0262 35.1965 63.1997 35.1309 63.4282 35.1309C63.6525 35.1309 63.8239 35.1965 63.9424 35.3276C64.0651 35.4588 64.1265 35.6196 64.1265 35.8101C64.1265 35.992 64.0651 36.1486 63.9424 36.2798C63.8239 36.4067 63.6525 36.4702 63.4282 36.4702C63.1997 36.4702 63.0262 36.4067 62.9077 36.2798C62.7935 36.1486 62.7363 35.992 62.7363 35.8101ZM68.6396 43.6621C68.9189 43.6621 69.1771 43.605 69.4141 43.4907C69.651 43.3765 69.8457 43.2199 69.998 43.021C70.1504 42.8179 70.2371 42.5872 70.2583 42.3291H71.3755C71.3543 42.7354 71.2168 43.1141 70.9629 43.4653C70.7132 43.8123 70.3853 44.0938 69.979 44.3096C69.5728 44.5212 69.1263 44.627 68.6396 44.627C68.1234 44.627 67.6727 44.536 67.2876 44.354C66.9067 44.172 66.5894 43.9224 66.3354 43.605C66.0858 43.2876 65.8975 42.9237 65.7705 42.5132C65.6478 42.0985 65.5864 41.6605 65.5864 41.1992V40.9326C65.5864 40.4714 65.6478 40.0355 65.7705 39.625C65.8975 39.2103 66.0858 38.8442 66.3354 38.5269C66.5894 38.2095 66.9067 37.9598 67.2876 37.7778C67.6727 37.5959 68.1234 37.5049 68.6396 37.5049C69.1771 37.5049 69.6468 37.6149 70.0488 37.835C70.4508 38.0508 70.7661 38.347 70.9946 38.7236C71.2274 39.096 71.3543 39.5192 71.3755 39.9932H70.2583C70.2371 39.7096 70.1567 39.4536 70.0171 39.2251C69.8817 38.9966 69.6955 38.8146 69.4585 38.6792C69.2257 38.5396 68.9528 38.4697 68.6396 38.4697C68.2799 38.4697 67.9774 38.5417 67.7319 38.6855C67.4907 38.8252 67.2982 39.0156 67.1543 39.2568C67.0146 39.4938 66.9131 39.7583 66.8496 40.0503C66.7904 40.3381 66.7607 40.6322 66.7607 40.9326V41.1992C66.7607 41.4997 66.7904 41.7959 66.8496 42.0879C66.9089 42.3799 67.0083 42.6444 67.1479 42.8813C67.2918 43.1183 67.4844 43.3088 67.7256 43.4526C67.971 43.5923 68.2757 43.6621 68.6396 43.6621Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M24 59.25C21.93 59.25 20.25 60.93 20.25 63C20.25 65.07 21.93 66.75 24 66.75C26.07 66.75 27.75 65.07 27.75 63C27.75 60.93 26.07 59.25 24 59.25ZM24 55.5C19.86 55.5 16.5 58.86 16.5 63C16.5 67.14 19.86 70.5 24 70.5C28.14 70.5 31.5 67.14 31.5 63C31.5 58.86 28.14 55.5 24 55.5ZM24 69C20.685 69 18 66.315 18 63C18 59.685 20.685 57 24 57C27.315 57 30 59.685 30 63C30 66.315 27.315 69 24 69Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M42.6523 64.561H43.8711C43.8076 65.145 43.6405 65.6676 43.3696 66.1289C43.0988 66.5902 42.7158 66.9562 42.2207 67.2271C41.7256 67.4937 41.1077 67.627 40.3672 67.627C39.8255 67.627 39.3325 67.5254 38.8882 67.3223C38.4481 67.1191 38.0693 66.8314 37.752 66.459C37.4346 66.0824 37.1891 65.6317 37.0156 65.1069C36.8464 64.578 36.7617 63.9897 36.7617 63.3423V62.4219C36.7617 61.7744 36.8464 61.1883 37.0156 60.6636C37.1891 60.1346 37.4367 59.6818 37.7583 59.3052C38.0841 58.9285 38.4756 58.6387 38.9326 58.4355C39.3896 58.2324 39.9038 58.1309 40.4751 58.1309C41.1733 58.1309 41.7637 58.262 42.2461 58.5244C42.7285 58.7868 43.103 59.1507 43.3696 59.6162C43.6405 60.0775 43.8076 60.6128 43.8711 61.2222H42.6523C42.5931 60.7905 42.4831 60.4202 42.3223 60.1113C42.1615 59.7982 41.9329 59.557 41.6367 59.3877C41.3405 59.2184 40.9533 59.1338 40.4751 59.1338C40.0646 59.1338 39.7028 59.2121 39.3896 59.3687C39.0807 59.5252 38.8205 59.7474 38.6089 60.0352C38.4015 60.3229 38.245 60.6678 38.1392 61.0698C38.0334 61.4718 37.9805 61.9183 37.9805 62.4092V63.3423C37.9805 63.7951 38.027 64.2204 38.1201 64.6182C38.2174 65.016 38.3634 65.3651 38.5581 65.6655C38.7528 65.966 39.0003 66.203 39.3008 66.3765C39.6012 66.5457 39.9567 66.6304 40.3672 66.6304C40.8877 66.6304 41.3024 66.5479 41.6113 66.3828C41.9202 66.2178 42.153 65.9808 42.3096 65.6719C42.4704 65.363 42.5846 64.9927 42.6523 64.561ZM49.4126 66.3257V62.79C49.4126 62.5192 49.3576 62.2843 49.2476 62.0854C49.1418 61.8823 48.981 61.7257 48.7651 61.6157C48.5493 61.5057 48.2827 61.4507 47.9653 61.4507C47.6691 61.4507 47.4089 61.5015 47.1846 61.603C46.9645 61.7046 46.791 61.8379 46.6641 62.0029C46.5413 62.168 46.48 62.3457 46.48 62.5361H45.3057C45.3057 62.2907 45.3691 62.0474 45.4961 61.8062C45.623 61.5649 45.805 61.347 46.042 61.1523C46.2832 60.9535 46.571 60.7969 46.9053 60.6826C47.2438 60.5641 47.6204 60.5049 48.0352 60.5049C48.5345 60.5049 48.9746 60.5895 49.3555 60.7588C49.7406 60.9281 50.041 61.1841 50.2568 61.5269C50.4769 61.8654 50.5869 62.2907 50.5869 62.8027V66.002C50.5869 66.2305 50.606 66.4738 50.644 66.7319C50.6864 66.9901 50.7477 67.2122 50.8281 67.3984V67.5H49.603C49.5438 67.3646 49.4972 67.1847 49.4634 66.9604C49.4295 66.7319 49.4126 66.5203 49.4126 66.3257ZM49.6157 63.3359L49.6284 64.1611H48.4414C48.1071 64.1611 47.8088 64.1886 47.5464 64.2437C47.284 64.2944 47.064 64.3727 46.8862 64.4785C46.7085 64.5843 46.5731 64.7176 46.48 64.8784C46.3869 65.035 46.3403 65.2191 46.3403 65.4307C46.3403 65.6465 46.389 65.8433 46.4863 66.021C46.5837 66.1987 46.7297 66.3405 46.9243 66.4463C47.1232 66.5479 47.3665 66.5986 47.6543 66.5986C48.014 66.5986 48.3314 66.5225 48.6064 66.3701C48.8815 66.2178 49.0994 66.0316 49.2603 65.8115C49.4253 65.5915 49.5142 65.3778 49.5269 65.1704L50.0283 65.7354C49.9987 65.9131 49.9183 66.1099 49.7871 66.3257C49.6559 66.5415 49.4803 66.7489 49.2603 66.9478C49.0444 67.1424 48.7863 67.3053 48.4858 67.4365C48.1896 67.5635 47.8553 67.627 47.4829 67.627C47.0174 67.627 46.609 67.536 46.2578 67.354C45.9108 67.172 45.64 66.9287 45.4453 66.624C45.2549 66.3151 45.1597 65.9702 45.1597 65.5894C45.1597 65.2212 45.2316 64.8975 45.3755 64.6182C45.5194 64.3346 45.7267 64.0998 45.9976 63.9136C46.2684 63.7231 46.5942 63.5793 46.9751 63.4819C47.356 63.3846 47.7812 63.3359 48.251 63.3359H49.6157ZM53.6084 61.7109V67.5H52.4341V60.6318H53.5767L53.6084 61.7109ZM55.7539 60.5938L55.7476 61.6855C55.6502 61.6644 55.5571 61.6517 55.4683 61.6475C55.3836 61.639 55.2863 61.6348 55.1763 61.6348C54.9054 61.6348 54.6663 61.6771 54.459 61.7617C54.2516 61.8464 54.076 61.9648 53.9321 62.1172C53.7882 62.2695 53.674 62.4515 53.5894 62.6631C53.509 62.8704 53.4561 63.099 53.4307 63.3486L53.1006 63.5391C53.1006 63.1243 53.1408 62.735 53.2212 62.3711C53.3058 62.0072 53.4349 61.6855 53.6084 61.4062C53.7819 61.1227 54.002 60.9027 54.2686 60.7461C54.5394 60.5853 54.861 60.5049 55.2334 60.5049C55.318 60.5049 55.4154 60.5155 55.5254 60.5366C55.6354 60.5535 55.7116 60.5726 55.7539 60.5938Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M49.8262 86.0967H47.167V85.0234H49.8262C50.3411 85.0234 50.7581 84.9414 51.0771 84.7773C51.3962 84.6133 51.6286 84.3854 51.7744 84.0938C51.9248 83.8021 52 83.4694 52 83.0957C52 82.7539 51.9248 82.4326 51.7744 82.1318C51.6286 81.8311 51.3962 81.5895 51.0771 81.4072C50.7581 81.2204 50.3411 81.127 49.8262 81.127H47.4746V90H46.1553V80.0469H49.8262C50.5781 80.0469 51.2139 80.1768 51.7334 80.4365C52.2529 80.6963 52.6471 81.0563 52.916 81.5166C53.1849 81.9723 53.3193 82.4941 53.3193 83.082C53.3193 83.7201 53.1849 84.2646 52.916 84.7158C52.6471 85.167 52.2529 85.5111 51.7334 85.748C51.2139 85.9805 50.5781 86.0967 49.8262 86.0967ZM59.0752 88.7354V84.9277C59.0752 84.6361 59.016 84.3831 58.8975 84.1689C58.7835 83.9502 58.6104 83.7816 58.3779 83.6631C58.1455 83.5446 57.8584 83.4854 57.5166 83.4854C57.1976 83.4854 56.9173 83.54 56.6758 83.6494C56.4388 83.7588 56.252 83.9023 56.1152 84.0801C55.9831 84.2578 55.917 84.4492 55.917 84.6543H54.6523C54.6523 84.39 54.7207 84.1279 54.8574 83.8682C54.9941 83.6084 55.1901 83.3737 55.4453 83.1641C55.7051 82.9499 56.015 82.7812 56.375 82.6582C56.7396 82.5306 57.1452 82.4668 57.5918 82.4668C58.1296 82.4668 58.6035 82.5579 59.0137 82.7402C59.4284 82.9225 59.752 83.1982 59.9844 83.5674C60.2214 83.932 60.3398 84.39 60.3398 84.9414V88.3867C60.3398 88.6328 60.3604 88.8949 60.4014 89.1729C60.4469 89.4508 60.513 89.6901 60.5996 89.8906V90H59.2803C59.2165 89.8542 59.1663 89.6605 59.1299 89.4189C59.0934 89.1729 59.0752 88.945 59.0752 88.7354ZM59.2939 85.5156L59.3076 86.4043H58.0293C57.6693 86.4043 57.348 86.4339 57.0654 86.4932C56.7829 86.5479 56.5459 86.6322 56.3545 86.7461C56.1631 86.86 56.0173 87.0036 55.917 87.1768C55.8167 87.3454 55.7666 87.5436 55.7666 87.7715C55.7666 88.0039 55.819 88.2158 55.9238 88.4072C56.0286 88.5986 56.1859 88.7513 56.3955 88.8652C56.6097 88.9746 56.8717 89.0293 57.1816 89.0293C57.569 89.0293 57.9108 88.9473 58.207 88.7832C58.5033 88.6191 58.738 88.4186 58.9111 88.1816C59.0889 87.9447 59.1846 87.7145 59.1982 87.4912L59.7383 88.0996C59.7064 88.291 59.6198 88.5029 59.4785 88.7354C59.3372 88.9678 59.1481 89.1911 58.9111 89.4053C58.6787 89.6149 58.4007 89.7904 58.0771 89.9316C57.7581 90.0684 57.3981 90.1367 56.9971 90.1367C56.4958 90.1367 56.056 90.0387 55.6777 89.8428C55.304 89.6468 55.0124 89.3848 54.8027 89.0566C54.5977 88.724 54.4951 88.3525 54.4951 87.9424C54.4951 87.5459 54.5726 87.1973 54.7275 86.8965C54.8825 86.5911 55.1058 86.3382 55.3975 86.1377C55.6891 85.9326 56.04 85.7777 56.4502 85.6729C56.8604 85.568 57.3184 85.5156 57.8242 85.5156H59.2939ZM63.5938 83.7656V90H62.3291V82.6035H63.5596L63.5938 83.7656ZM65.9043 82.5625L65.8975 83.7383C65.7926 83.7155 65.6924 83.7018 65.5967 83.6973C65.5055 83.6882 65.4007 83.6836 65.2822 83.6836C64.9906 83.6836 64.7331 83.7292 64.5098 83.8203C64.2865 83.9115 64.0973 84.0391 63.9424 84.2031C63.7874 84.3672 63.6644 84.5632 63.5732 84.791C63.4867 85.0143 63.4297 85.2604 63.4023 85.5293L63.0469 85.7344C63.0469 85.2878 63.0902 84.8685 63.1768 84.4766C63.2679 84.0846 63.4069 83.7383 63.5938 83.4375C63.7806 83.1322 64.0176 82.8952 64.3047 82.7266C64.5964 82.5534 64.9427 82.4668 65.3438 82.4668C65.4349 82.4668 65.5397 82.4782 65.6582 82.501C65.7767 82.5192 65.8587 82.5397 65.9043 82.5625ZM68.3447 79.5V90H67.0732V79.5H68.3447ZM72.8633 82.6035L69.6367 86.0557L67.832 87.9287L67.7295 86.582L69.0215 85.0371L71.3184 82.6035H72.8633ZM71.708 90L69.0693 86.4727L69.7256 85.3447L73.1982 90H71.708ZM75.543 82.6035V90H74.2715V82.6035H75.543ZM74.1758 80.6416C74.1758 80.4365 74.2373 80.2633 74.3604 80.1221C74.488 79.9808 74.6748 79.9102 74.9209 79.9102C75.1624 79.9102 75.347 79.9808 75.4746 80.1221C75.6068 80.2633 75.6729 80.4365 75.6729 80.6416C75.6729 80.8376 75.6068 81.0062 75.4746 81.1475C75.347 81.2842 75.1624 81.3525 74.9209 81.3525C74.6748 81.3525 74.488 81.2842 74.3604 81.1475C74.2373 81.0062 74.1758 80.8376 74.1758 80.6416ZM78.8379 84.1826V90H77.5732V82.6035H78.7695L78.8379 84.1826ZM78.5371 86.0215L78.0107 86.001C78.0153 85.4951 78.0905 85.028 78.2363 84.5996C78.3822 84.1667 78.5872 83.7907 78.8516 83.4717C79.1159 83.1527 79.4303 82.9066 79.7949 82.7334C80.1641 82.5557 80.5719 82.4668 81.0186 82.4668C81.3831 82.4668 81.7113 82.5169 82.0029 82.6172C82.2946 82.7129 82.543 82.8678 82.748 83.082C82.9577 83.2962 83.1172 83.5742 83.2266 83.916C83.3359 84.2533 83.3906 84.6657 83.3906 85.1533V90H82.1191V85.1396C82.1191 84.7523 82.0622 84.4424 81.9482 84.21C81.8343 83.973 81.668 83.8021 81.4492 83.6973C81.2305 83.5879 80.9616 83.5332 80.6426 83.5332C80.3281 83.5332 80.041 83.5993 79.7812 83.7314C79.526 83.8636 79.305 84.0459 79.1182 84.2783C78.9359 84.5107 78.7923 84.7773 78.6875 85.0781C78.5872 85.3743 78.5371 85.6888 78.5371 86.0215ZM90.1035 82.6035H91.252V89.8428C91.252 90.4945 91.1198 91.0505 90.8555 91.5107C90.5911 91.971 90.222 92.3197 89.748 92.5566C89.2786 92.7982 88.7363 92.9189 88.1211 92.9189C87.8659 92.9189 87.5651 92.8779 87.2188 92.7959C86.877 92.7184 86.5397 92.584 86.207 92.3926C85.8789 92.2057 85.6032 91.9528 85.3799 91.6338L86.043 90.8818C86.3529 91.2555 86.6764 91.5153 87.0137 91.6611C87.3555 91.807 87.6927 91.8799 88.0254 91.8799C88.4264 91.8799 88.7728 91.8047 89.0645 91.6543C89.3561 91.5039 89.5817 91.2806 89.7412 90.9844C89.9053 90.6927 89.9873 90.3327 89.9873 89.9043V84.2305L90.1035 82.6035ZM85.0107 86.3838V86.2402C85.0107 85.6751 85.0768 85.1624 85.209 84.7021C85.3457 84.2373 85.5394 83.8385 85.79 83.5059C86.0452 83.1732 86.3529 82.918 86.7129 82.7402C87.0729 82.5579 87.4785 82.4668 87.9297 82.4668C88.3945 82.4668 88.8001 82.5488 89.1465 82.7129C89.4974 82.8724 89.7936 83.1071 90.0352 83.417C90.2812 83.7223 90.4749 84.0915 90.6162 84.5244C90.7575 84.9574 90.8555 85.4473 90.9102 85.9941V86.623C90.86 87.1654 90.762 87.653 90.6162 88.0859C90.4749 88.5189 90.2812 88.888 90.0352 89.1934C89.7936 89.4987 89.4974 89.7334 89.1465 89.8975C88.7956 90.057 88.3854 90.1367 87.916 90.1367C87.474 90.1367 87.0729 90.0433 86.7129 89.8564C86.3574 89.6696 86.0521 89.4076 85.7969 89.0703C85.5417 88.7331 85.3457 88.3366 85.209 87.8809C85.0768 87.4206 85.0107 86.9215 85.0107 86.3838ZM86.2754 86.2402V86.3838C86.2754 86.7529 86.3118 87.0993 86.3848 87.4229C86.4622 87.7464 86.5785 88.0312 86.7334 88.2773C86.8929 88.5234 87.0957 88.7171 87.3418 88.8584C87.5879 88.9951 87.8818 89.0635 88.2236 89.0635C88.6429 89.0635 88.9893 88.9746 89.2627 88.7969C89.5361 88.6191 89.7526 88.3844 89.9121 88.0928C90.0762 87.8011 90.2038 87.4844 90.2949 87.1426V85.4951C90.2448 85.2445 90.1673 85.0029 90.0625 84.7705C89.9622 84.5335 89.8301 84.3239 89.666 84.1416C89.5065 83.9548 89.3083 83.8066 89.0713 83.6973C88.8343 83.5879 88.5563 83.5332 88.2373 83.5332C87.891 83.5332 87.5924 83.6061 87.3418 83.752C87.0957 83.8932 86.8929 84.0892 86.7334 84.3398C86.5785 84.5859 86.4622 84.873 86.3848 85.2012C86.3118 85.5247 86.2754 85.8711 86.2754 86.2402ZM97.9102 84.0254V92.8438H96.6387V82.6035H97.8008L97.9102 84.0254ZM102.894 86.2402V86.3838C102.894 86.9215 102.83 87.4206 102.702 87.8809C102.575 88.3366 102.388 88.7331 102.142 89.0703C101.9 89.4076 101.602 89.6696 101.246 89.8564C100.891 90.0433 100.483 90.1367 100.022 90.1367C99.5531 90.1367 99.1383 90.0592 98.7783 89.9043C98.4183 89.7493 98.113 89.5238 97.8623 89.2275C97.6117 88.9313 97.4111 88.5758 97.2607 88.1611C97.1149 87.7464 97.0146 87.2793 96.96 86.7598V85.9941C97.0146 85.4473 97.1172 84.9574 97.2676 84.5244C97.418 84.0915 97.6162 83.7223 97.8623 83.417C98.113 83.1071 98.416 82.8724 98.7715 82.7129C99.127 82.5488 99.5371 82.4668 100.002 82.4668C100.467 82.4668 100.879 82.5579 101.239 82.7402C101.599 82.918 101.902 83.1732 102.148 83.5059C102.395 83.8385 102.579 84.2373 102.702 84.7021C102.83 85.1624 102.894 85.6751 102.894 86.2402ZM101.622 86.3838V86.2402C101.622 85.8711 101.583 85.5247 101.506 85.2012C101.428 84.873 101.308 84.5859 101.144 84.3398C100.984 84.0892 100.779 83.8932 100.528 83.752C100.278 83.6061 99.9792 83.5332 99.6328 83.5332C99.3138 83.5332 99.0358 83.5879 98.7988 83.6973C98.5664 83.8066 98.3682 83.9548 98.2041 84.1416C98.04 84.3239 97.9056 84.5335 97.8008 84.7705C97.7005 85.0029 97.6253 85.2445 97.5752 85.4951V87.2656C97.6663 87.5846 97.7939 87.8854 97.958 88.168C98.1221 88.446 98.3408 88.6715 98.6143 88.8447C98.8877 89.0133 99.2318 89.0977 99.6465 89.0977C99.9883 89.0977 100.282 89.027 100.528 88.8857C100.779 88.7399 100.984 88.5417 101.144 88.291C101.308 88.0404 101.428 87.7533 101.506 87.4297C101.583 87.1016 101.622 86.7529 101.622 86.3838ZM105.881 79.5V90H104.609V79.5H105.881ZM112.272 88.7354V84.9277C112.272 84.6361 112.213 84.3831 112.095 84.1689C111.981 83.9502 111.808 83.7816 111.575 83.6631C111.343 83.5446 111.056 83.4854 110.714 83.4854C110.395 83.4854 110.115 83.54 109.873 83.6494C109.636 83.7588 109.449 83.9023 109.312 84.0801C109.18 84.2578 109.114 84.4492 109.114 84.6543H107.85C107.85 84.39 107.918 84.1279 108.055 83.8682C108.191 83.6084 108.387 83.3737 108.643 83.1641C108.902 82.9499 109.212 82.7812 109.572 82.6582C109.937 82.5306 110.342 82.4668 110.789 82.4668C111.327 82.4668 111.801 82.5579 112.211 82.7402C112.626 82.9225 112.949 83.1982 113.182 83.5674C113.419 83.932 113.537 84.39 113.537 84.9414V88.3867C113.537 88.6328 113.558 88.8949 113.599 89.1729C113.644 89.4508 113.71 89.6901 113.797 89.8906V90H112.478C112.414 89.8542 112.364 89.6605 112.327 89.4189C112.291 89.1729 112.272 88.945 112.272 88.7354ZM112.491 85.5156L112.505 86.4043H111.227C110.867 86.4043 110.545 86.4339 110.263 86.4932C109.98 86.5479 109.743 86.6322 109.552 86.7461C109.36 86.86 109.215 87.0036 109.114 87.1768C109.014 87.3454 108.964 87.5436 108.964 87.7715C108.964 88.0039 109.016 88.2158 109.121 88.4072C109.226 88.5986 109.383 88.7513 109.593 88.8652C109.807 88.9746 110.069 89.0293 110.379 89.0293C110.766 89.0293 111.108 88.9473 111.404 88.7832C111.701 88.6191 111.935 88.4186 112.108 88.1816C112.286 87.9447 112.382 87.7145 112.396 87.4912L112.936 88.0996C112.904 88.291 112.817 88.5029 112.676 88.7354C112.535 88.9678 112.345 89.1911 112.108 89.4053C111.876 89.6149 111.598 89.7904 111.274 89.9316C110.955 90.0684 110.595 90.1367 110.194 90.1367C109.693 90.1367 109.253 90.0387 108.875 89.8428C108.501 89.6468 108.21 89.3848 108 89.0566C107.795 88.724 107.692 88.3525 107.692 87.9424C107.692 87.5459 107.77 87.1973 107.925 86.8965C108.08 86.5911 108.303 86.3382 108.595 86.1377C108.886 85.9326 109.237 85.7777 109.647 85.6729C110.058 85.568 110.516 85.5156 111.021 85.5156H112.491ZM118.486 89.0977C118.787 89.0977 119.065 89.0361 119.32 88.9131C119.576 88.79 119.785 88.6214 119.949 88.4072C120.113 88.1885 120.207 87.9401 120.229 87.6621H121.433C121.41 88.0996 121.262 88.5075 120.988 88.8857C120.719 89.2594 120.366 89.5625 119.929 89.7949C119.491 90.0228 119.01 90.1367 118.486 90.1367C117.93 90.1367 117.445 90.0387 117.03 89.8428C116.62 89.6468 116.278 89.3779 116.005 89.0361C115.736 88.6943 115.533 88.3024 115.396 87.8604C115.264 87.4137 115.198 86.9421 115.198 86.4453V86.1582C115.198 85.6615 115.264 85.1921 115.396 84.75C115.533 84.3034 115.736 83.9092 116.005 83.5674C116.278 83.2256 116.62 82.9567 117.03 82.7607C117.445 82.5648 117.93 82.4668 118.486 82.4668C119.065 82.4668 119.571 82.5853 120.004 82.8223C120.437 83.0547 120.776 83.3737 121.022 83.7793C121.273 84.1803 121.41 84.6361 121.433 85.1465H120.229C120.207 84.8411 120.12 84.5654 119.97 84.3193C119.824 84.0732 119.623 83.8773 119.368 83.7314C119.118 83.5811 118.824 83.5059 118.486 83.5059C118.099 83.5059 117.773 83.5833 117.509 83.7383C117.249 83.8887 117.042 84.0938 116.887 84.3535C116.736 84.6087 116.627 84.8936 116.559 85.208C116.495 85.5179 116.463 85.8346 116.463 86.1582V86.4453C116.463 86.7689 116.495 87.0879 116.559 87.4023C116.622 87.7168 116.729 88.0016 116.88 88.2568C117.035 88.512 117.242 88.7171 117.502 88.8721C117.766 89.0225 118.094 89.0977 118.486 89.0977ZM125.924 90.1367C125.409 90.1367 124.942 90.0501 124.522 89.877C124.108 89.6992 123.75 89.4508 123.449 89.1318C123.153 88.8128 122.925 88.4346 122.766 87.9971C122.606 87.5596 122.526 87.0811 122.526 86.5615V86.2744C122.526 85.6729 122.615 85.1374 122.793 84.668C122.971 84.194 123.212 83.793 123.518 83.4648C123.823 83.1367 124.169 82.8883 124.557 82.7197C124.944 82.5511 125.345 82.4668 125.76 82.4668C126.288 82.4668 126.744 82.5579 127.127 82.7402C127.514 82.9225 127.831 83.1777 128.077 83.5059C128.323 83.8294 128.506 84.2122 128.624 84.6543C128.743 85.0918 128.802 85.5703 128.802 86.0898V86.6572H123.278V85.625H127.537V85.5293C127.519 85.2012 127.451 84.8822 127.332 84.5723C127.218 84.2624 127.036 84.0072 126.785 83.8066C126.535 83.6061 126.193 83.5059 125.76 83.5059C125.473 83.5059 125.208 83.5674 124.967 83.6904C124.725 83.8089 124.518 83.9867 124.345 84.2236C124.172 84.4606 124.037 84.75 123.941 85.0918C123.846 85.4336 123.798 85.8278 123.798 86.2744V86.5615C123.798 86.9124 123.846 87.2428 123.941 87.5527C124.042 87.8581 124.185 88.127 124.372 88.3594C124.563 88.5918 124.794 88.7741 125.062 88.9062C125.336 89.0384 125.646 89.1045 125.992 89.1045C126.439 89.1045 126.817 89.0133 127.127 88.8311C127.437 88.6488 127.708 88.4049 127.94 88.0996L128.706 88.708C128.547 88.9495 128.344 89.1797 128.098 89.3984C127.852 89.6172 127.549 89.7949 127.188 89.9316C126.833 90.0684 126.411 90.1367 125.924 90.1367ZM133.026 87.1973H131.755C131.759 86.7598 131.798 86.402 131.871 86.124C131.949 85.8415 132.074 85.584 132.247 85.3516C132.42 85.1191 132.65 84.8548 132.938 84.5586C133.147 84.3444 133.339 84.1439 133.512 83.957C133.689 83.7656 133.833 83.5605 133.942 83.3418C134.052 83.1185 134.106 82.8519 134.106 82.542C134.106 82.2275 134.049 81.9564 133.936 81.7285C133.826 81.5007 133.662 81.3252 133.443 81.2021C133.229 81.0791 132.963 81.0176 132.644 81.0176C132.379 81.0176 132.129 81.0654 131.892 81.1611C131.655 81.2568 131.463 81.4049 131.317 81.6055C131.172 81.8014 131.096 82.0589 131.092 82.3779H129.827C129.836 81.863 129.964 81.4209 130.21 81.0518C130.461 80.6826 130.798 80.4001 131.222 80.2041C131.646 80.0081 132.119 79.9102 132.644 79.9102C133.222 79.9102 133.715 80.015 134.12 80.2246C134.53 80.4342 134.842 80.735 135.057 81.127C135.271 81.5143 135.378 81.9746 135.378 82.5078C135.378 82.918 135.294 83.2962 135.125 83.6426C134.961 83.9844 134.749 84.3057 134.489 84.6064C134.229 84.9072 133.954 85.1943 133.662 85.4678C133.411 85.7002 133.243 85.9622 133.156 86.2539C133.07 86.5456 133.026 86.86 133.026 87.1973ZM131.7 89.3643C131.7 89.1592 131.764 88.986 131.892 88.8447C132.019 88.7035 132.204 88.6328 132.445 88.6328C132.691 88.6328 132.878 88.7035 133.006 88.8447C133.133 88.986 133.197 89.1592 133.197 89.3643C133.197 89.5602 133.133 89.7288 133.006 89.8701C132.878 90.0114 132.691 90.082 132.445 90.082C132.204 90.082 132.019 90.0114 131.892 89.8701C131.764 89.7288 131.7 89.5602 131.7 89.3643Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M54 99.5C49.86 99.5 46.5 102.86 46.5 107C46.5 111.14 49.86 114.5 54 114.5C58.14 114.5 61.5 111.14 61.5 107C61.5 102.86 58.14 99.5 54 99.5ZM54 113C50.685 113 48 110.315 48 107C48 103.685 50.685 101 54 101C57.315 101 60 103.685 60 107C60 110.315 57.315 113 54 113Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M67.498 102.258L69.8975 106.898L72.3032 102.258H73.6934L70.5068 108.047V111.5H69.2817V108.047L66.0952 102.258H67.498ZM77.1338 111.627C76.6556 111.627 76.2218 111.547 75.8325 111.386C75.4474 111.221 75.1152 110.99 74.8359 110.694C74.5609 110.398 74.3493 110.046 74.2012 109.64C74.0531 109.234 73.979 108.79 73.979 108.307V108.041C73.979 107.482 74.0615 106.985 74.2266 106.549C74.3916 106.109 74.6159 105.736 74.8994 105.432C75.1829 105.127 75.5046 104.896 75.8643 104.74C76.224 104.583 76.5964 104.505 76.9814 104.505C77.4723 104.505 77.8955 104.59 78.251 104.759C78.6107 104.928 78.9048 105.165 79.1333 105.47C79.3618 105.77 79.5311 106.126 79.6411 106.536C79.7511 106.942 79.8062 107.387 79.8062 107.869V108.396H74.6772V107.438H78.6318V107.349C78.6149 107.044 78.5514 106.748 78.4414 106.46C78.3356 106.172 78.1663 105.935 77.9336 105.749C77.7008 105.563 77.3835 105.47 76.9814 105.47C76.7148 105.47 76.4694 105.527 76.2451 105.641C76.0208 105.751 75.8283 105.916 75.6675 106.136C75.5067 106.356 75.3818 106.625 75.293 106.942C75.2041 107.26 75.1597 107.626 75.1597 108.041V108.307C75.1597 108.633 75.2041 108.94 75.293 109.228C75.3861 109.511 75.5194 109.761 75.6929 109.977C75.8706 110.192 76.0843 110.362 76.334 110.484C76.5879 110.607 76.8757 110.668 77.1973 110.668C77.612 110.668 77.9632 110.584 78.251 110.415C78.5387 110.245 78.7905 110.019 79.0063 109.735L79.7173 110.3C79.5692 110.525 79.3809 110.738 79.1523 110.941C78.9238 111.145 78.6424 111.31 78.3081 111.437C77.978 111.563 77.5866 111.627 77.1338 111.627ZM85.1763 109.678C85.1763 109.509 85.1382 109.352 85.062 109.208C84.9901 109.06 84.8398 108.927 84.6113 108.809C84.387 108.686 84.0485 108.58 83.5957 108.491C83.2148 108.411 82.87 108.316 82.561 108.206C82.2563 108.096 81.9961 107.962 81.7803 107.806C81.5687 107.649 81.4058 107.465 81.2915 107.253C81.1772 107.042 81.1201 106.794 81.1201 106.511C81.1201 106.24 81.1794 105.984 81.2979 105.743C81.4206 105.501 81.592 105.288 81.812 105.102C82.0363 104.915 82.305 104.769 82.6182 104.664C82.9313 104.558 83.2804 104.505 83.6655 104.505C84.2157 104.505 84.6854 104.602 85.0747 104.797C85.464 104.992 85.7624 105.252 85.9697 105.578C86.1771 105.899 86.2808 106.257 86.2808 106.65H85.1064C85.1064 106.46 85.0493 106.276 84.9351 106.098C84.825 105.916 84.6621 105.766 84.4463 105.647C84.2347 105.529 83.9744 105.47 83.6655 105.47C83.3397 105.47 83.0752 105.521 82.8721 105.622C82.6732 105.719 82.5272 105.844 82.4341 105.997C82.3452 106.149 82.3008 106.31 82.3008 106.479C82.3008 106.606 82.3219 106.72 82.3643 106.822C82.4108 106.919 82.4912 107.01 82.6055 107.095C82.7197 107.175 82.8805 107.251 83.0879 107.323C83.2952 107.395 83.5597 107.467 83.8813 107.539C84.4442 107.666 84.9076 107.818 85.2715 107.996C85.6354 108.174 85.9062 108.392 86.084 108.65C86.2617 108.908 86.3506 109.221 86.3506 109.589C86.3506 109.89 86.2871 110.165 86.1602 110.415C86.0374 110.664 85.8576 110.88 85.6206 111.062C85.3879 111.24 85.1086 111.379 84.7827 111.481C84.4611 111.578 84.0993 111.627 83.6973 111.627C83.0921 111.627 82.5801 111.519 82.1611 111.303C81.7422 111.087 81.4248 110.808 81.209 110.465C80.9932 110.123 80.8853 109.761 80.8853 109.38H82.0659C82.0828 109.701 82.1759 109.958 82.3452 110.148C82.5145 110.334 82.7218 110.467 82.9673 110.548C83.2127 110.624 83.4561 110.662 83.6973 110.662C84.0189 110.662 84.2876 110.62 84.5034 110.535C84.7235 110.451 84.8906 110.334 85.0049 110.186C85.1191 110.038 85.1763 109.869 85.1763 109.678Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M54 122.5C49.86 122.5 46.5 125.86 46.5 130C46.5 134.14 49.86 137.5 54 137.5C58.14 137.5 61.5 134.14 61.5 130C61.5 125.86 58.14 122.5 54 122.5ZM54 136C50.685 136 48 133.315 48 130C48 126.685 50.685 124 54 124C57.315 124 60 126.685 60 130C60 133.315 57.315 136 54 136Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M74.1821 125.258V134.5H72.9507L68.2979 127.372V134.5H67.0728V125.258H68.2979L72.9697 132.405V125.258H74.1821ZM75.8643 131.142V130.996C75.8643 130.501 75.9362 130.042 76.0801 129.619C76.224 129.191 76.4313 128.821 76.7021 128.508C76.973 128.19 77.3009 127.945 77.686 127.771C78.0711 127.594 78.5028 127.505 78.981 127.505C79.4634 127.505 79.8971 127.594 80.2822 127.771C80.6715 127.945 81.0016 128.19 81.2725 128.508C81.5475 128.821 81.757 129.191 81.9009 129.619C82.0448 130.042 82.1167 130.501 82.1167 130.996V131.142C82.1167 131.637 82.0448 132.096 81.9009 132.52C81.757 132.943 81.5475 133.313 81.2725 133.63C81.0016 133.944 80.6737 134.189 80.2886 134.367C79.9077 134.54 79.4761 134.627 78.9937 134.627C78.5112 134.627 78.0775 134.54 77.6924 134.367C77.3073 134.189 76.9772 133.944 76.7021 133.63C76.4313 133.313 76.224 132.943 76.0801 132.52C75.9362 132.096 75.8643 131.637 75.8643 131.142ZM77.0386 130.996V131.142C77.0386 131.485 77.0788 131.809 77.1592 132.113C77.2396 132.414 77.3602 132.68 77.521 132.913C77.686 133.146 77.8913 133.33 78.1367 133.465C78.3822 133.597 78.6678 133.662 78.9937 133.662C79.3153 133.662 79.5967 133.597 79.8379 133.465C80.0833 133.33 80.2865 133.146 80.4473 132.913C80.6081 132.68 80.7287 132.414 80.8091 132.113C80.8937 131.809 80.936 131.485 80.936 131.142V130.996C80.936 130.658 80.8937 130.338 80.8091 130.038C80.7287 129.733 80.606 129.464 80.4409 129.231C80.2801 128.994 80.077 128.808 79.8315 128.673C79.5903 128.537 79.3068 128.47 78.981 128.47C78.6593 128.47 78.3758 128.537 78.1304 128.673C77.8892 128.808 77.686 128.994 77.521 129.231C77.3602 129.464 77.2396 129.733 77.1592 130.038C77.0788 130.338 77.0386 130.658 77.0386 130.996Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M39.7071 84.2929C40.0976 84.6834 40.0976 85.3166 39.7071 85.7071L33.3431 92.0711C32.9526 92.4616 32.3195 92.4616 31.9289 92.0711C31.5384 91.6805 31.5384 91.0474 31.9289 90.6569L37.5858 85L31.9289 79.3431C31.5384 78.9526 31.5384 78.3195 31.9289 77.9289C32.3195 77.5384 32.9526 77.5384 33.3431 77.9289L39.7071 84.2929ZM25 70V75H23V70H25ZM34 84H39V86H34V84ZM25 75C25 79.9706 29.0294 84 34 84V86C27.9249 86 23 81.0751 23 75H25Z",fill:"#4272F9"})),{getCurrentInnerBlocks:Qt}=JetFBActions,{__:el}=wp.i18n,{useSelect:Cl}=wp.data,{BlockControls:tl,InnerBlocks:ll,useBlockProps:rl,InspectorControls:nl}=wp.blockEditor,{Button:al,ToolbarGroup:il,TextControl:ol,PanelBody:sl,Tip:cl}=wp.components,{useState:dl,useEffect:ml,RawHTML:ul}=wp.element;function pl(e){return e.some(({name:e})=>e.includes("form-break-field"))}const fl=JSON.parse('{"apiVersion":3,"name":"jet-forms/conditional-block","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","conditonal"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Conditional Block","icon":"\\n\\n\\n\\n","attributes":{"name":{"type":"string","default":""},"last_page_name":{"type":"string","default":""},"func_type":{"type":"string","default":""},"func_settings":{"type":"object","default":{}},"conditions":{"type":"array","default":[]},"className":{"type":"string","default":""},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"providesContext":{"jet-forms/conditional-block--name":"name","jet-forms/conditional-block--last_page_name":"last_page_name"}}'),{InnerBlocks:Vl}=wp.blockEditor?wp.blockEditor:wp.editor;function Hl(){return(0,h.createElement)(Vl.Content,null)}const{dispatch:hl}=wp.data,{Tools:bl}=JetFBActions,Ml={attributes:fl.attributes,supports:fl.supports,save:Hl,isEligible(e){const{func_type:C=!1,conditions:t=[]}=e;return!1===C&&t?.length},migrate(e,C){const t={};let l=null;const[r]=C||[],n=[],a=e.conditions.sort(e=>"show"===e.type?-1:1);for(const e of a){var i;e.type=null!==(i=e.type)&&void 0!==i?i:"show","set_value"!==e.type?["show","hide"].includes(e.type)&&(null===l&&(l=e.type),delete e.type,"hide"===l&&Object.keys(t).length&&(t[e.field+"_or"]={or_operator:!0}),t[e.field]=e):n.push(e)}return n.length&&"object"==typeof r&&function(e,C){if(!e.name.includes("jet-forms/")||!e.attributes.hasOwnProperty("value"))return;const{updateBlock:t}=hl("core/block-editor"),l=[];for(const{field:e,operator:t,set_value:r,value:n}of C){const C={id:bl.getRandomID(),conditions:[{field:e,operator:t,value:n}],to_set:null!=r?r:""};l.push(C)}setTimeout(()=>{t(e.clientId,{attributes:{value:{groups:l}}})})}(r,n),l=null!=l?l:"show",{...e,func_type:l,conditions:Object.values(t)}}},{__:Ll,sprintf:gl}=wp.i18n,{createBlock:Zl,createBlocksFromInnerBlocksTemplate:yl}=wp.blocks,{name:El,icon:wl=""}=fl,vl={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:wl}}),description:Ll("Utilize the Conditional Visibility functionality allowing to make fields of the form invisible to the users until some conditions are met.","jet-form-builder"),edit:function(e){const C=rl(),{setAttributes:t,attributes:l,clientId:r,editProps:{uniqKey:n}}=e;ml(()=>{t({name:r})},[r,t]);const a=Qt(),i=a.reduce((e,{name:C})=>e+C,""),[o,s]=dl(!1),[c,d]=dl(()=>pl(a));ml(()=>{d(pl(a))},[i]);const m=Cl(e=>e("jet-forms/block-conditions").getFunctionDisplay(l.func_type||"show"),[l.func_type]),u=l?.conditions?.length?(0,h.createElement)("span",{className:"dashicon dashicons dashicons-randomize","data-count":l.conditions.reduce((e,C)=>C?.or_operator?e:e+1,0)}):(0,h.createElement)("span",{className:"dashicon dashicons dashicons-randomize"});return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Xt):(0,h.createElement)(h.Fragment,null,(0,h.createElement)("div",{...C},(0,h.createElement)("div",{className:"jet-form-builder__conditional"},(0,h.createElement)(ll,{key:n("conditional-fields")}))),o&&(0,h.createElement)(wt,{key:n("ConditionsModal"),setShowModal:s}),(0,h.createElement)(tl,null,(0,h.createElement)(il,{key:n("ToolbarGroup")},(0,h.createElement)(al,{className:"jet-fb-button",key:n("randomize"),isTertiary:!0,isSmall:!0,icon:u,onClick:()=>s(!0)}))),(0,h.createElement)(nl,null,(0,h.createElement)(sl,{title:el("Conditions","jet-form-builder"),initialOpen:!0},(0,h.createElement)("p",{className:"jet-fb flex ai-center gap-05em"},(0,h.createElement)("b",null,m),(0,h.createElement)(al,{isTertiary:!0,isSmall:!0,icon:"edit",onClick:()=>s(!0)})),(0,h.createElement)(_t.Provider,{value:{showModal:o,setShowModal:s}},(0,h.createElement)(Yt,{attributes:l}))),c&&(0,h.createElement)(sl,{title:el("Multistep","jet-form-builder")},(0,h.createElement)(ol,{label:el("Last Page Name","jet-form-builder"),key:n("last_page_name"),value:l.last_page_name,help:el('The value of this field will be set as the name of the last page with the "Progress Bar" block.',"jet-form-builder"),onChange:e=>t({last_page_name:e})}))),(0,h.createElement)(nl,{group:"advanced"},(0,h.createElement)("div",{style:{marginBottom:"1.5em"}},(0,h.createElement)(cl,null,(0,h.createElement)(ul,null,el("Add the CSS class jet-form-builder--hidden to make this block hidden by default.","jet-form-builder")))),(0,h.createElement)(ol,{label:el("Additional CSS class(es)","jet-form-builder"),help:el("Separate multiple classes with spaces.","jet-form-builder"),value:l.class_name,onChange:e=>t({class_name:e})})))},save:Hl,useEditProps:["uniqKey"],jfbGetFields:()=>[],__experimentalLabel:(e,{context:C})=>{var t;if("list-view"!==C)return;const l=wp.data.select("jet-forms/block-conditions").getFunction(e?.func_type),r=l?.label,n=null!==(t=e?.conditions?.reduce((e,C)=>C?.or_operator?e:e+1,0))&&void 0!==t?t:0;return gl(Ll("%1$s %2$d condition(s)","jet-form-builder"),r,n)},example:{attributes:{isPreview:!0}},transforms:{from:[{type:"block",blocks:["*"],isMultiBlock:!0,__experimentalConvert:e=>{const C=e.map(({name:e,attributes:C,innerBlocks:t})=>[e,{...C},t]);return Zl(El,{},yl(C))},priority:0}]},deprecated:[Ml]},_l=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_75_1407)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"20.5",width:"22",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.3887 29.4028V30.3677H28.0283V29.4028H34.3887ZM42.9199 29.4028V30.3677H36.5596V29.4028H42.9199Z",fill:"white"}),(0,h.createElement)("path",{d:"M49.8442 33.8779C49.8442 33.679 49.9056 33.5119 50.0283 33.3765C50.1553 33.2368 50.3372 33.167 50.5742 33.167C50.8112 33.167 50.991 33.2368 51.1138 33.3765C51.2407 33.5119 51.3042 33.679 51.3042 33.8779C51.3042 34.0726 51.2407 34.2376 51.1138 34.373C50.991 34.5085 50.8112 34.5762 50.5742 34.5762C50.3372 34.5762 50.1553 34.5085 50.0283 34.373C49.9056 34.2376 49.8442 34.0726 49.8442 33.8779ZM49.8506 28.2729C49.8506 28.0741 49.9119 27.9069 50.0347 27.7715C50.1616 27.6318 50.3436 27.562 50.5806 27.562C50.8175 27.562 50.9974 27.6318 51.1201 27.7715C51.2471 27.9069 51.3105 28.0741 51.3105 28.2729C51.3105 28.4676 51.2471 28.6326 51.1201 28.7681C50.9974 28.9035 50.8175 28.9712 50.5806 28.9712C50.3436 28.9712 50.1616 28.9035 50.0347 28.7681C49.9119 28.6326 49.8506 28.4676 49.8506 28.2729ZM62.7617 29.4028V30.3677H56.4014V29.4028H62.7617ZM71.293 29.4028V30.3677H64.9326V29.4028H71.293ZM76.5044 33.8779C76.5044 33.679 76.5658 33.5119 76.6885 33.3765C76.8154 33.2368 76.9974 33.167 77.2344 33.167C77.4714 33.167 77.6512 33.2368 77.7739 33.3765C77.9009 33.5119 77.9644 33.679 77.9644 33.8779C77.9644 34.0726 77.9009 34.2376 77.7739 34.373C77.6512 34.5085 77.4714 34.5762 77.2344 34.5762C76.9974 34.5762 76.8154 34.5085 76.6885 34.373C76.5658 34.2376 76.5044 34.0726 76.5044 33.8779ZM76.5107 28.2729C76.5107 28.0741 76.5721 27.9069 76.6948 27.7715C76.8218 27.6318 77.0037 27.562 77.2407 27.562C77.4777 27.562 77.6576 27.6318 77.7803 27.7715C77.9072 27.9069 77.9707 28.0741 77.9707 28.2729C77.9707 28.4676 77.9072 28.6326 77.7803 28.7681C77.6576 28.9035 77.4777 28.9712 77.2407 28.9712C77.0037 28.9712 76.8218 28.9035 76.6948 28.7681C76.5721 28.6326 76.5107 28.4676 76.5107 28.2729ZM89.4219 29.4028V30.3677H83.0615V29.4028H89.4219ZM97.9531 29.4028V30.3677H91.5928V29.4028H97.9531Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270 24V38C270 39.1 269.1 40 268 40H254C252.89 40 252 39.1 252 38L252.01 24C252.01 22.9 252.89 22 254 22H255V20H257V22H265V20H267V22H268C269.1 22 270 22.9 270 24ZM254 26H268V24H254V26ZM268 38V28H254V38H268Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"15",y:"45",width:"268",height:"231",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M26.6948 57.7578H28.3071L30.6812 64.5435L33.0552 57.7578H34.6675L31.3286 67H30.0337L26.6948 57.7578ZM25.8252 57.7578H27.4312L27.7231 64.3721V67H25.8252V57.7578ZM33.9312 57.7578H35.5435V67H33.6392V64.3721L33.9312 57.7578ZM40.8057 65.4512V62.3916C40.8057 62.1715 40.7697 61.9832 40.6978 61.8267C40.6258 61.6659 40.5137 61.541 40.3613 61.4521C40.2132 61.3633 40.0207 61.3188 39.7837 61.3188C39.5806 61.3188 39.4049 61.3548 39.2568 61.4268C39.1087 61.4945 38.9945 61.5939 38.9141 61.7251C38.8337 61.8521 38.7935 62.0023 38.7935 62.1758H36.9653C36.9653 61.8838 37.033 61.6066 37.1685 61.3442C37.3039 61.0819 37.5007 60.8512 37.7588 60.6523C38.0169 60.4492 38.3237 60.2905 38.6792 60.1763C39.0389 60.062 39.4409 60.0049 39.8853 60.0049C40.4185 60.0049 40.8924 60.0938 41.3071 60.2715C41.7218 60.4492 42.0477 60.7158 42.2847 61.0713C42.5259 61.4268 42.6465 61.8711 42.6465 62.4043V65.3433C42.6465 65.7199 42.6698 66.0288 42.7163 66.27C42.7629 66.507 42.8306 66.7144 42.9194 66.8921V67H41.0723C40.9834 66.8138 40.9157 66.5811 40.8691 66.3018C40.8268 66.0182 40.8057 65.7347 40.8057 65.4512ZM41.0469 62.8169L41.0596 63.8516H40.0376C39.7964 63.8516 39.5869 63.8791 39.4092 63.9341C39.2314 63.9891 39.0854 64.0674 38.9712 64.1689C38.8569 64.2663 38.7723 64.3805 38.7173 64.5117C38.6665 64.6429 38.6411 64.7868 38.6411 64.9434C38.6411 65.0999 38.6771 65.2417 38.749 65.3687C38.821 65.4914 38.9246 65.5887 39.0601 65.6606C39.1955 65.7284 39.3542 65.7622 39.5361 65.7622C39.8112 65.7622 40.0503 65.7072 40.2534 65.5972C40.4565 65.4871 40.6131 65.3517 40.7231 65.1909C40.8374 65.0301 40.8966 64.8778 40.9009 64.7339L41.3833 65.5083C41.3156 65.6818 41.2225 65.8617 41.104 66.0479C40.9897 66.234 40.8438 66.4097 40.666 66.5747C40.4883 66.7355 40.2746 66.8688 40.0249 66.9746C39.7752 67.0762 39.479 67.127 39.1362 67.127C38.7004 67.127 38.3047 67.0402 37.9492 66.8667C37.598 66.689 37.3187 66.4456 37.1113 66.1367C36.9082 65.8236 36.8066 65.4681 36.8066 65.0703C36.8066 64.7106 36.8743 64.3911 37.0098 64.1118C37.1452 63.8325 37.3441 63.5977 37.6064 63.4072C37.873 63.2126 38.2052 63.0666 38.603 62.9692C39.0008 62.8677 39.4621 62.8169 39.9868 62.8169H41.0469ZM45.8838 61.6299V67H44.0557V60.1318H45.7759L45.8838 61.6299ZM47.9531 60.0874L47.9214 61.7822C47.8325 61.7695 47.7246 61.759 47.5977 61.7505C47.4749 61.7378 47.3628 61.7314 47.2612 61.7314C47.0031 61.7314 46.7788 61.7653 46.5884 61.833C46.4022 61.8965 46.2456 61.9917 46.1187 62.1187C45.9959 62.2456 45.9028 62.4001 45.8394 62.582C45.7801 62.764 45.7463 62.9714 45.7378 63.2041L45.3696 63.0898C45.3696 62.6455 45.4141 62.2371 45.5029 61.8647C45.5918 61.4881 45.7209 61.1602 45.8901 60.8809C46.0636 60.6016 46.2752 60.3857 46.5249 60.2334C46.7746 60.0811 47.0602 60.0049 47.3818 60.0049C47.4834 60.0049 47.5871 60.0133 47.6929 60.0303C47.7987 60.043 47.8854 60.062 47.9531 60.0874ZM51.5269 65.6987C51.7511 65.6987 51.95 65.6564 52.1235 65.5718C52.297 65.4829 52.4325 65.3602 52.5298 65.2036C52.6313 65.0428 52.6842 64.8545 52.6885 64.6387H54.4087C54.4045 65.1211 54.2754 65.5506 54.0215 65.9272C53.7676 66.2996 53.4269 66.5938 52.9995 66.8096C52.5721 67.0212 52.0939 67.127 51.5649 67.127C51.0317 67.127 50.5662 67.0381 50.1685 66.8604C49.7749 66.6826 49.4469 66.4372 49.1846 66.124C48.9222 65.8066 48.7254 65.4385 48.5942 65.0195C48.4631 64.5964 48.3975 64.1436 48.3975 63.6611V63.4771C48.3975 62.9904 48.4631 62.5376 48.5942 62.1187C48.7254 61.6955 48.9222 61.3273 49.1846 61.0142C49.4469 60.6968 49.7749 60.4492 50.1685 60.2715C50.562 60.0938 51.0233 60.0049 51.5522 60.0049C52.1151 60.0049 52.6081 60.1128 53.0312 60.3286C53.4587 60.5444 53.793 60.8534 54.0342 61.2554C54.2796 61.6532 54.4045 62.125 54.4087 62.6709H52.6885C52.6842 62.4424 52.6356 62.235 52.5425 62.0488C52.4536 61.8626 52.3224 61.7145 52.1489 61.6045C51.9797 61.4902 51.7702 61.4331 51.5205 61.4331C51.2539 61.4331 51.036 61.4902 50.8667 61.6045C50.6974 61.7145 50.5662 61.8669 50.4731 62.0615C50.38 62.252 50.3145 62.4699 50.2764 62.7153C50.2425 62.9565 50.2256 63.2104 50.2256 63.4771V63.6611C50.2256 63.9277 50.2425 64.1838 50.2764 64.4292C50.3102 64.6746 50.3737 64.8926 50.4668 65.083C50.5641 65.2734 50.6974 65.4237 50.8667 65.5337C51.036 65.6437 51.256 65.6987 51.5269 65.6987ZM57.2524 57.25V67H55.4243V57.25H57.2524ZM56.9922 63.3247H56.4907C56.495 62.8465 56.5584 62.4064 56.6812 62.0044C56.8039 61.5981 56.9795 61.2469 57.208 60.9507C57.4365 60.6502 57.7095 60.4175 58.0269 60.2524C58.3485 60.0874 58.7039 60.0049 59.0933 60.0049C59.4318 60.0049 59.7386 60.0535 60.0137 60.1509C60.293 60.244 60.5321 60.3963 60.731 60.6079C60.9341 60.8153 61.0907 61.0882 61.2007 61.4268C61.3107 61.7653 61.3657 62.1758 61.3657 62.6582V67H59.5249V62.6455C59.5249 62.3408 59.4805 62.1017 59.3916 61.9282C59.307 61.7505 59.1821 61.6257 59.0171 61.5537C58.8563 61.4775 58.6574 61.4395 58.4204 61.4395C58.158 61.4395 57.9338 61.4881 57.7476 61.5854C57.5656 61.6828 57.4196 61.8182 57.3096 61.9917C57.1995 62.161 57.1191 62.3599 57.0684 62.5884C57.0176 62.8169 56.9922 63.0623 56.9922 63.3247ZM72.2393 65.5718V67H65.917V65.7812L68.9067 62.5757C69.2072 62.2414 69.4442 61.9473 69.6177 61.6934C69.7912 61.4352 69.916 61.2046 69.9922 61.0015C70.0726 60.7941 70.1128 60.5973 70.1128 60.4111C70.1128 60.1318 70.0662 59.8927 69.9731 59.6938C69.88 59.4907 69.7425 59.3341 69.5605 59.2241C69.3828 59.1141 69.1628 59.0591 68.9004 59.0591C68.6211 59.0591 68.3799 59.1268 68.1768 59.2622C67.9779 59.3976 67.8255 59.5859 67.7197 59.8271C67.6182 60.0684 67.5674 60.3413 67.5674 60.646H65.7329C65.7329 60.0959 65.8641 59.5923 66.1265 59.1353C66.3888 58.674 66.7591 58.3079 67.2373 58.0371C67.7155 57.762 68.2826 57.6245 68.9385 57.6245C69.5859 57.6245 70.1318 57.7303 70.5762 57.9419C71.0247 58.1493 71.3633 58.4497 71.5918 58.8433C71.8245 59.2326 71.9409 59.6981 71.9409 60.2397C71.9409 60.5444 71.8923 60.8428 71.7949 61.1348C71.6976 61.4225 71.5579 61.7103 71.376 61.998C71.1982 62.2816 70.9824 62.5693 70.7285 62.8613C70.4746 63.1533 70.1932 63.4559 69.8843 63.769L68.2783 65.5718H72.2393ZM79.6025 61.5664V63.166C79.6025 63.86 79.5285 64.4588 79.3804 64.9624C79.2323 65.4618 79.0186 65.8722 78.7393 66.1938C78.4642 66.5112 78.1362 66.7461 77.7554 66.8984C77.3745 67.0508 76.9513 67.127 76.4858 67.127C76.1134 67.127 75.7664 67.0804 75.4448 66.9873C75.1232 66.89 74.8333 66.7397 74.5752 66.5366C74.3213 66.3335 74.1012 66.0775 73.915 65.7686C73.7331 65.4554 73.5934 65.083 73.4961 64.6514C73.3988 64.2197 73.3501 63.7246 73.3501 63.166V61.5664C73.3501 60.8724 73.4242 60.2778 73.5723 59.7827C73.7246 59.2834 73.9383 58.875 74.2134 58.5576C74.4927 58.2402 74.8228 58.0075 75.2036 57.8594C75.5845 57.707 76.0076 57.6309 76.4731 57.6309C76.8455 57.6309 77.1904 57.6795 77.5078 57.7769C77.8294 57.87 78.1193 58.016 78.3774 58.2148C78.6356 58.4137 78.8556 58.6698 79.0376 58.9829C79.2196 59.2918 79.3592 59.6621 79.4565 60.0938C79.5539 60.5212 79.6025 61.012 79.6025 61.5664ZM77.7681 63.4072V61.3188C77.7681 60.9845 77.749 60.6925 77.7109 60.4429C77.6771 60.1932 77.6242 59.9816 77.5522 59.8081C77.4803 59.6304 77.3914 59.4865 77.2856 59.3765C77.1799 59.2664 77.0592 59.186 76.9238 59.1353C76.7884 59.0845 76.6382 59.0591 76.4731 59.0591C76.2658 59.0591 76.0817 59.0993 75.9209 59.1797C75.7643 59.2601 75.631 59.3892 75.521 59.5669C75.411 59.7404 75.3263 59.9731 75.2671 60.2651C75.2121 60.5529 75.1846 60.9041 75.1846 61.3188V63.4072C75.1846 63.7415 75.2015 64.0356 75.2354 64.2896C75.2734 64.5435 75.3285 64.7614 75.4004 64.9434C75.4766 65.1211 75.5654 65.2671 75.667 65.3813C75.7728 65.4914 75.8934 65.5718 76.0288 65.6226C76.1685 65.6733 76.3208 65.6987 76.4858 65.6987C76.689 65.6987 76.8688 65.6585 77.0254 65.5781C77.1862 65.4935 77.3216 65.3623 77.4316 65.1846C77.5459 65.0026 77.6305 64.7656 77.6855 64.4736C77.7406 64.1816 77.7681 63.8262 77.7681 63.4072ZM87.1689 65.5718V67H80.8467V65.7812L83.8364 62.5757C84.1369 62.2414 84.3739 61.9473 84.5474 61.6934C84.7209 61.4352 84.8457 61.2046 84.9219 61.0015C85.0023 60.7941 85.0425 60.5973 85.0425 60.4111C85.0425 60.1318 84.9959 59.8927 84.9028 59.6938C84.8097 59.4907 84.6722 59.3341 84.4902 59.2241C84.3125 59.1141 84.0924 59.0591 83.8301 59.0591C83.5508 59.0591 83.3096 59.1268 83.1064 59.2622C82.9076 59.3976 82.7552 59.5859 82.6494 59.8271C82.5479 60.0684 82.4971 60.3413 82.4971 60.646H80.6626C80.6626 60.0959 80.7938 59.5923 81.0562 59.1353C81.3185 58.674 81.6888 58.3079 82.167 58.0371C82.6452 57.762 83.2122 57.6245 83.8682 57.6245C84.5156 57.6245 85.0615 57.7303 85.5059 57.9419C85.9544 58.1493 86.293 58.4497 86.5215 58.8433C86.7542 59.2326 86.8706 59.6981 86.8706 60.2397C86.8706 60.5444 86.8219 60.8428 86.7246 61.1348C86.6273 61.4225 86.4876 61.7103 86.3057 61.998C86.1279 62.2816 85.9121 62.5693 85.6582 62.8613C85.4043 63.1533 85.1229 63.4559 84.814 63.769L83.208 65.5718H87.1689ZM92.7676 57.7388V67H90.9395V59.8462L88.7432 60.5444V59.1035L92.5708 57.7388H92.7676Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1407)"},(0,h.createElement)("path",{d:"M99.7917 61.4167L102.5 64.1251L105.208 61.4167H99.7917Z",fill:"#64748B"})),(0,h.createElement)("path",{d:"M249.167 62.4999L249.93 63.2637L252.958 60.2412L252.958 66.8333L254.042 66.8333L254.042 60.2412L257.07 63.2637L257.833 62.4999L253.5 58.1666L249.167 62.4999Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270.833 62.5001L270.07 61.7363L267.042 64.7588L267.042 58.1667L265.958 58.1667L265.958 64.7588L262.93 61.7363L262.167 62.5001L266.5 66.8334L270.833 62.5001Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M37.3305 89.6641C37.3305 89.4482 37.2967 89.2578 37.2289 89.0928C37.1655 88.9235 37.0512 88.7712 36.8862 88.6357C36.7254 88.5003 36.5011 88.3713 36.2133 88.2485C35.9298 88.1258 35.5701 88.001 35.1342 87.874C34.6772 87.7386 34.2646 87.5884 33.8964 87.4233C33.5283 87.2541 33.213 87.0615 32.9506 86.8457C32.6883 86.6299 32.4873 86.3823 32.3476 86.103C32.208 85.8237 32.1381 85.5042 32.1381 85.1445C32.1381 84.7848 32.2122 84.4526 32.3603 84.1479C32.5084 83.8433 32.72 83.5788 32.9951 83.3545C33.2744 83.126 33.6066 82.9482 33.9916 82.8213C34.3767 82.6943 34.8063 82.6309 35.2802 82.6309C35.9742 82.6309 36.5624 82.7642 37.0449 83.0308C37.5315 83.2931 37.9018 83.638 38.1557 84.0654C38.4096 84.4886 38.5366 84.9414 38.5366 85.4238H37.3178C37.3178 85.0768 37.2438 84.77 37.0956 84.5034C36.9475 84.2326 36.7233 84.021 36.4228 83.8687C36.1223 83.7121 35.7415 83.6338 35.2802 83.6338C34.8443 83.6338 34.4846 83.6994 34.2011 83.8306C33.9176 83.9618 33.706 84.1395 33.5664 84.3638C33.4309 84.5881 33.3632 84.8441 33.3632 85.1318C33.3632 85.3265 33.4034 85.5042 33.4838 85.665C33.5685 85.8216 33.6975 85.9676 33.871 86.103C34.0488 86.2384 34.2731 86.3633 34.5439 86.4775C34.819 86.5918 35.1469 86.7018 35.5278 86.8076C36.0525 86.9557 36.5053 87.1208 36.8862 87.3027C37.267 87.4847 37.5802 87.6899 37.8256 87.9185C38.0753 88.1427 38.2594 88.3988 38.3779 88.6865C38.5006 88.9701 38.562 89.2917 38.562 89.6514C38.562 90.028 38.4858 90.3687 38.3334 90.6733C38.1811 90.978 37.9632 91.2383 37.6796 91.4541C37.3961 91.6699 37.0554 91.8371 36.6577 91.9556C36.2641 92.0698 35.824 92.127 35.3373 92.127C34.9099 92.127 34.4889 92.0677 34.0742 91.9492C33.6637 91.8307 33.2892 91.653 32.9506 91.416C32.6163 91.179 32.3476 90.887 32.1445 90.54C31.9456 90.1888 31.8461 89.7826 31.8461 89.3213H33.0649C33.0649 89.6387 33.1262 89.9116 33.249 90.1401C33.3717 90.3644 33.5388 90.5506 33.7504 90.6987C33.9663 90.8468 34.2096 90.9569 34.4804 91.0288C34.7555 91.0965 35.0411 91.1304 35.3373 91.1304C35.7648 91.1304 36.1266 91.0711 36.4228 90.9526C36.719 90.8341 36.9433 90.6649 37.0956 90.4448C37.2522 90.2248 37.3305 89.9645 37.3305 89.6641ZM44.1479 90.4131V85.1318H45.3286V92H44.205L44.1479 90.4131ZM44.3701 88.9658L44.8588 88.9531C44.8588 89.4102 44.8102 89.8333 44.7128 90.2227C44.6197 90.6077 44.4674 90.9421 44.2558 91.2256C44.0442 91.5091 43.767 91.7313 43.4243 91.8921C43.0815 92.0487 42.6647 92.127 42.1738 92.127C41.8395 92.127 41.5327 92.0783 41.2534 91.981C40.9783 91.8836 40.7413 91.7334 40.5424 91.5303C40.3435 91.3271 40.1891 91.0627 40.079 90.7368C39.9733 90.411 39.9204 90.0195 39.9204 89.5625V85.1318H41.0947V89.5752C41.0947 89.8841 41.1285 90.1401 41.1962 90.3433C41.2682 90.5422 41.3634 90.7008 41.4819 90.8193C41.6046 90.9336 41.74 91.014 41.8881 91.0605C42.0405 91.1071 42.197 91.1304 42.3579 91.1304C42.8572 91.1304 43.2529 91.0352 43.5449 90.8447C43.8369 90.6501 44.0463 90.3898 44.1733 90.064C44.3045 89.7339 44.3701 89.3678 44.3701 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M109.587 82.7578V92H108.381V82.7578H109.587ZM112.558 82.7578V83.7607H105.417V82.7578H112.558ZM117.344 90.4131V85.1318H118.525V92H117.401L117.344 90.4131ZM117.566 88.9658L118.055 88.9531C118.055 89.4102 118.006 89.8333 117.909 90.2227C117.816 90.6077 117.663 90.9421 117.452 91.2256C117.24 91.5091 116.963 91.7313 116.62 91.8921C116.278 92.0487 115.861 92.127 115.37 92.127C115.036 92.127 114.729 92.0783 114.449 91.981C114.174 91.8836 113.937 91.7334 113.738 91.5303C113.54 91.3271 113.385 91.0627 113.275 90.7368C113.169 90.411 113.116 90.0195 113.116 89.5625V85.1318H114.291V89.5752C114.291 89.8841 114.325 90.1401 114.392 90.3433C114.464 90.5422 114.559 90.7008 114.678 90.8193C114.801 90.9336 114.936 91.014 115.084 91.0605C115.237 91.1071 115.393 91.1304 115.554 91.1304C116.053 91.1304 116.449 91.0352 116.741 90.8447C117.033 90.6501 117.242 90.3898 117.369 90.064C117.501 89.7339 117.566 89.3678 117.566 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M182.77 82.7578V92H181.564V82.7578H182.77ZM185.74 82.7578V83.7607H178.599V82.7578H185.74ZM188.108 82.25V92H186.934V82.25H188.108ZM187.829 88.3057L187.34 88.2866C187.344 87.8169 187.414 87.3831 187.55 86.9854C187.685 86.5833 187.875 86.2342 188.121 85.938C188.366 85.6418 188.658 85.4132 188.997 85.2524C189.34 85.0874 189.718 85.0049 190.133 85.0049C190.472 85.0049 190.776 85.0514 191.047 85.1445C191.318 85.2334 191.549 85.3773 191.739 85.5762C191.934 85.7751 192.082 86.0332 192.183 86.3506C192.285 86.6637 192.336 87.0467 192.336 87.4995V92H191.155V87.4868C191.155 87.1271 191.102 86.8394 190.996 86.6235C190.89 86.4035 190.736 86.2448 190.533 86.1475C190.33 86.0459 190.08 85.9951 189.784 85.9951C189.492 85.9951 189.225 86.0565 188.984 86.1792C188.747 86.3019 188.542 86.4712 188.368 86.687C188.199 86.9028 188.066 87.1504 187.968 87.4297C187.875 87.7048 187.829 87.9967 187.829 88.3057Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M257.826 89.6641C257.826 89.4482 257.792 89.2578 257.724 89.0928C257.661 88.9235 257.546 88.7712 257.381 88.6357C257.22 88.5003 256.996 88.3713 256.708 88.2485C256.425 88.1258 256.065 88.001 255.629 87.874C255.172 87.7386 254.76 87.5884 254.392 87.4233C254.023 87.2541 253.708 87.0615 253.446 86.8457C253.183 86.6299 252.982 86.3823 252.843 86.103C252.703 85.8237 252.633 85.5042 252.633 85.1445C252.633 84.7848 252.707 84.4526 252.855 84.1479C253.004 83.8433 253.215 83.5788 253.49 83.3545C253.769 83.126 254.102 82.9482 254.487 82.8213C254.872 82.6943 255.301 82.6309 255.775 82.6309C256.469 82.6309 257.058 82.7642 257.54 83.0308C258.027 83.2931 258.397 83.638 258.651 84.0654C258.905 84.4886 259.032 84.9414 259.032 85.4238H257.813C257.813 85.0768 257.739 84.77 257.591 84.5034C257.443 84.2326 257.218 84.021 256.918 83.8687C256.617 83.7121 256.237 83.6338 255.775 83.6338C255.339 83.6338 254.98 83.6994 254.696 83.8306C254.413 83.9618 254.201 84.1395 254.061 84.3638C253.926 84.5881 253.858 84.8441 253.858 85.1318C253.858 85.3265 253.899 85.5042 253.979 85.665C254.064 85.8216 254.193 85.9676 254.366 86.103C254.544 86.2384 254.768 86.3633 255.039 86.4775C255.314 86.5918 255.642 86.7018 256.023 86.8076C256.548 86.9557 257 87.1208 257.381 87.3027C257.762 87.4847 258.075 87.6899 258.321 87.9185C258.57 88.1427 258.755 88.3988 258.873 88.6865C258.996 88.9701 259.057 89.2917 259.057 89.6514C259.057 90.028 258.981 90.3687 258.829 90.6733C258.676 90.978 258.458 91.2383 258.175 91.4541C257.891 91.6699 257.551 91.8371 257.153 91.9556C256.759 92.0698 256.319 92.127 255.832 92.127C255.405 92.127 254.984 92.0677 254.569 91.9492C254.159 91.8307 253.784 91.653 253.446 91.416C253.111 91.179 252.843 90.887 252.64 90.54C252.441 90.1888 252.341 89.7826 252.341 89.3213H253.56C253.56 89.6387 253.621 89.9116 253.744 90.1401C253.867 90.3644 254.034 90.5506 254.246 90.6987C254.461 90.8468 254.705 90.9569 254.976 91.0288C255.251 91.0965 255.536 91.1304 255.832 91.1304C256.26 91.1304 256.622 91.0711 256.918 90.9526C257.214 90.8341 257.438 90.6649 257.591 90.4448C257.747 90.2248 257.826 89.9645 257.826 89.6641ZM264.491 90.8257V87.29C264.491 87.0192 264.436 86.7843 264.326 86.5854C264.22 86.3823 264.059 86.2257 263.843 86.1157C263.627 86.0057 263.361 85.9507 263.043 85.9507C262.747 85.9507 262.487 86.0015 262.263 86.103C262.043 86.2046 261.869 86.3379 261.742 86.5029C261.619 86.668 261.558 86.8457 261.558 87.0361H260.384C260.384 86.7907 260.447 86.5474 260.574 86.3062C260.701 86.0649 260.883 85.847 261.12 85.6523C261.361 85.4535 261.649 85.2969 261.983 85.1826C262.322 85.0641 262.699 85.0049 263.113 85.0049C263.613 85.0049 264.053 85.0895 264.434 85.2588C264.819 85.4281 265.119 85.6841 265.335 86.0269C265.555 86.3654 265.665 86.7907 265.665 87.3027V90.502C265.665 90.7305 265.684 90.9738 265.722 91.2319C265.764 91.4901 265.826 91.7122 265.906 91.8984V92H264.681C264.622 91.8646 264.575 91.6847 264.541 91.4604C264.508 91.2319 264.491 91.0203 264.491 90.8257ZM264.694 87.8359L264.706 88.6611H263.519C263.185 88.6611 262.887 88.6886 262.624 88.7437C262.362 88.7944 262.142 88.8727 261.964 88.9785C261.787 89.0843 261.651 89.2176 261.558 89.3784C261.465 89.535 261.418 89.7191 261.418 89.9307C261.418 90.1465 261.467 90.3433 261.564 90.521C261.662 90.6987 261.808 90.8405 262.002 90.9463C262.201 91.0479 262.445 91.0986 262.732 91.0986C263.092 91.0986 263.409 91.0225 263.685 90.8701C263.96 90.7178 264.178 90.5316 264.338 90.3115C264.503 90.0915 264.592 89.8778 264.605 89.6704L265.106 90.2354C265.077 90.4131 264.996 90.6099 264.865 90.8257C264.734 91.0415 264.558 91.2489 264.338 91.4478C264.123 91.6424 263.864 91.8053 263.564 91.9365C263.268 92.0635 262.933 92.127 262.561 92.127C262.095 92.127 261.687 92.036 261.336 91.854C260.989 91.672 260.718 91.4287 260.523 91.124C260.333 90.8151 260.238 90.4702 260.238 90.0894C260.238 89.7212 260.31 89.3975 260.454 89.1182C260.597 88.8346 260.805 88.5998 261.076 88.4136C261.346 88.2231 261.672 88.0793 262.053 87.9819C262.434 87.8846 262.859 87.8359 263.329 87.8359H264.694Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M67.5966 82.7578H68.7836L71.8115 90.2925L74.833 82.7578H76.0263L72.2685 92H71.3417L67.5966 82.7578ZM67.2094 82.7578H68.2568L68.4282 88.3945V92H67.2094V82.7578ZM75.3598 82.7578H76.4072V92H75.1884V88.3945L75.3598 82.7578ZM78.0703 88.6421V88.4961C78.0703 88.001 78.1422 87.5418 78.2861 87.1187C78.43 86.6912 78.6373 86.321 78.9081 86.0078C79.179 85.6904 79.5069 85.445 79.892 85.2715C80.2771 85.0938 80.7088 85.0049 81.187 85.0049C81.6694 85.0049 82.1031 85.0938 82.4882 85.2715C82.8775 85.445 83.2076 85.6904 83.4785 86.0078C83.7535 86.321 83.963 86.6912 84.1069 87.1187C84.2508 87.5418 84.3227 88.001 84.3227 88.4961V88.6421C84.3227 89.1372 84.2508 89.5964 84.1069 90.0195C83.963 90.4427 83.7535 90.813 83.4785 91.1304C83.2076 91.4435 82.8797 91.689 82.4946 91.8667C82.1137 92.0402 81.6821 92.127 81.1997 92.127C80.7172 92.127 80.2835 92.0402 79.8984 91.8667C79.5133 91.689 79.1832 91.4435 78.9081 91.1304C78.6373 90.813 78.43 90.4427 78.2861 90.0195C78.1422 89.5964 78.0703 89.1372 78.0703 88.6421ZM79.2446 88.4961V88.6421C79.2446 88.9849 79.2848 89.3086 79.3652 89.6133C79.4456 89.9137 79.5662 90.1803 79.727 90.4131C79.892 90.6458 80.0973 90.8299 80.3427 90.9653C80.5882 91.0965 80.8738 91.1621 81.1997 91.1621C81.5213 91.1621 81.8027 91.0965 82.0439 90.9653C82.2893 90.8299 82.4925 90.6458 82.6533 90.4131C82.8141 90.1803 82.9347 89.9137 83.0151 89.6133C83.0997 89.3086 83.142 88.9849 83.142 88.6421V88.4961C83.142 88.1576 83.0997 87.8381 83.0151 87.5376C82.9347 87.2329 82.812 86.9642 82.6469 86.7314C82.4861 86.4945 82.283 86.3083 82.0375 86.1729C81.7963 86.0374 81.5128 85.9697 81.187 85.9697C80.8653 85.9697 80.5818 86.0374 80.3364 86.1729C80.0952 86.3083 79.892 86.4945 79.727 86.7314C79.5662 86.9642 79.4456 87.2329 79.3652 87.5376C79.2848 87.8381 79.2446 88.1576 79.2446 88.4961Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M143.389 89.207L145.223 82.7578H146.112L145.598 85.2651L143.624 92H142.741L143.389 89.207ZM141.491 82.7578L142.951 89.0801L143.389 92H142.513L140.272 82.7578H141.491ZM148.486 89.0737L149.914 82.7578H151.139L148.905 92H148.029L148.486 89.0737ZM146.245 82.7578L148.029 89.207L148.676 92H147.794L145.89 85.2651L145.369 82.7578H146.245ZM154.967 92.127C154.489 92.127 154.055 92.0465 153.666 91.8857C153.281 91.7207 152.948 91.4901 152.669 91.1938C152.394 90.8976 152.182 90.5464 152.034 90.1401C151.886 89.7339 151.812 89.2896 151.812 88.8071V88.5405C151.812 87.9819 151.895 87.4847 152.06 87.0488C152.225 86.6087 152.449 86.2363 152.733 85.9316C153.016 85.627 153.338 85.3963 153.697 85.2397C154.057 85.0832 154.43 85.0049 154.815 85.0049C155.306 85.0049 155.729 85.0895 156.084 85.2588C156.444 85.4281 156.738 85.665 156.966 85.9697C157.195 86.2702 157.364 86.6257 157.474 87.0361C157.584 87.4424 157.639 87.8867 157.639 88.3691V88.896H152.51V87.9375H156.465V87.8486C156.448 87.5439 156.385 87.2477 156.275 86.96C156.169 86.6722 156 86.4352 155.767 86.249C155.534 86.0628 155.217 85.9697 154.815 85.9697C154.548 85.9697 154.303 86.0269 154.078 86.1411C153.854 86.2511 153.661 86.4162 153.501 86.6362C153.34 86.8563 153.215 87.125 153.126 87.4424C153.037 87.7598 152.993 88.1258 152.993 88.5405V88.8071C152.993 89.133 153.037 89.4398 153.126 89.7275C153.219 90.0111 153.353 90.2607 153.526 90.4766C153.704 90.6924 153.918 90.8617 154.167 90.9844C154.421 91.1071 154.709 91.1685 155.03 91.1685C155.445 91.1685 155.796 91.0838 156.084 90.9146C156.372 90.7453 156.624 90.5189 156.84 90.2354L157.55 90.8003C157.402 91.0246 157.214 91.2383 156.986 91.4414C156.757 91.6445 156.476 91.8096 156.141 91.9365C155.811 92.0635 155.42 92.127 154.967 92.127Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M219.066 82.7578V92H217.841V82.7578H219.066ZM222.938 86.9155V87.9185H218.8V86.9155H222.938ZM223.567 82.7578V83.7607H218.8V82.7578H223.567ZM225.858 86.2109V92H224.684V85.1318H225.826L225.858 86.2109ZM228.004 85.0938L227.997 86.1855C227.9 86.1644 227.807 86.1517 227.718 86.1475C227.633 86.139 227.536 86.1348 227.426 86.1348C227.155 86.1348 226.916 86.1771 226.709 86.2617C226.501 86.3464 226.326 86.4648 226.182 86.6172C226.038 86.7695 225.924 86.9515 225.839 87.1631C225.759 87.3704 225.706 87.599 225.68 87.8486L225.35 88.0391C225.35 87.6243 225.391 87.235 225.471 86.8711C225.556 86.5072 225.685 86.1855 225.858 85.9062C226.032 85.6227 226.252 85.4027 226.518 85.2461C226.789 85.0853 227.111 85.0049 227.483 85.0049C227.568 85.0049 227.665 85.0155 227.775 85.0366C227.885 85.0535 227.961 85.0726 228.004 85.0938Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"212",y:"100",width:"21",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{opacity:"0.4",d:"M38.289 114.035V115H32.2397V114.156L35.2675 110.785C35.6399 110.37 35.9277 110.019 36.1308 109.731C36.3382 109.439 36.482 109.179 36.5624 108.951C36.6471 108.718 36.6894 108.481 36.6894 108.24C36.6894 107.935 36.6259 107.66 36.499 107.415C36.3762 107.165 36.1943 106.966 35.9531 106.818C35.7119 106.67 35.4199 106.596 35.0771 106.596C34.6666 106.596 34.3238 106.676 34.0488 106.837C33.7779 106.993 33.5748 107.214 33.4394 107.497C33.304 107.781 33.2363 108.106 33.2363 108.475H32.062C32.062 107.954 32.1762 107.478 32.4047 107.046C32.6332 106.615 32.9718 106.272 33.4204 106.018C33.8689 105.76 34.4212 105.631 35.0771 105.631C35.6611 105.631 36.1604 105.735 36.5751 105.942C36.9899 106.145 37.3072 106.433 37.5273 106.805C37.7516 107.173 37.8637 107.605 37.8637 108.1C37.8637 108.371 37.8172 108.646 37.7241 108.925C37.6352 109.2 37.5104 109.475 37.3496 109.75C37.193 110.026 37.0089 110.296 36.7973 110.563C36.59 110.83 36.3678 111.092 36.1308 111.35L33.6552 114.035H38.289ZM45.373 112.499C45.373 113.062 45.2418 113.54 44.9794 113.934C44.7213 114.323 44.3701 114.619 43.9257 114.822C43.4856 115.025 42.9884 115.127 42.434 115.127C41.8797 115.127 41.3803 115.025 40.936 114.822C40.4916 114.619 40.1404 114.323 39.8823 113.934C39.6241 113.54 39.4951 113.062 39.4951 112.499C39.4951 112.131 39.5649 111.794 39.7045 111.49C39.8484 111.181 40.0494 110.912 40.3076 110.684C40.5699 110.455 40.8789 110.279 41.2343 110.157C41.594 110.03 41.9897 109.966 42.4213 109.966C42.9884 109.966 43.4941 110.076 43.9384 110.296C44.3828 110.512 44.7319 110.811 44.9858 111.191C45.2439 111.572 45.373 112.008 45.373 112.499ZM44.1923 112.474C44.1923 112.131 44.1183 111.828 43.9702 111.566C43.822 111.299 43.6147 111.092 43.3481 110.944C43.0815 110.796 42.7726 110.722 42.4213 110.722C42.0616 110.722 41.7506 110.796 41.4882 110.944C41.2301 111.092 41.0291 111.299 40.8852 111.566C40.7413 111.828 40.6694 112.131 40.6694 112.474C40.6694 112.829 40.7392 113.134 40.8789 113.388C41.0227 113.637 41.2259 113.83 41.4882 113.965C41.7548 114.097 42.0701 114.162 42.434 114.162C42.798 114.162 43.1111 114.097 43.3735 113.965C43.6359 113.83 43.8369 113.637 43.9765 113.388C44.1204 113.134 44.1923 112.829 44.1923 112.474ZM45.1572 108.164C45.1572 108.612 45.0387 109.016 44.8017 109.376C44.5647 109.736 44.241 110.019 43.8305 110.227C43.42 110.434 42.9545 110.538 42.434 110.538C41.9051 110.538 41.4332 110.434 41.0185 110.227C40.608 110.019 40.2864 109.736 40.0537 109.376C39.8209 109.016 39.7045 108.612 39.7045 108.164C39.7045 107.626 39.8209 107.169 40.0537 106.792C40.2906 106.416 40.6144 106.128 41.0248 105.929C41.4353 105.73 41.9029 105.631 42.4277 105.631C42.9567 105.631 43.4264 105.73 43.8369 105.929C44.2473 106.128 44.569 106.416 44.8017 106.792C45.0387 107.169 45.1572 107.626 45.1572 108.164ZM43.9829 108.183C43.9829 107.874 43.9173 107.601 43.7861 107.364C43.6549 107.127 43.4729 106.941 43.2402 106.805C43.0074 106.666 42.7366 106.596 42.4277 106.596C42.1188 106.596 41.8479 106.661 41.6152 106.792C41.3867 106.919 41.2068 107.101 41.0756 107.338C40.9487 107.575 40.8852 107.857 40.8852 108.183C40.8852 108.5 40.9487 108.777 41.0756 109.014C41.2068 109.251 41.3888 109.435 41.6215 109.566C41.8543 109.698 42.1251 109.763 42.434 109.763C42.7429 109.763 43.0117 109.698 43.2402 109.566C43.4729 109.435 43.6549 109.251 43.7861 109.014C43.9173 108.777 43.9829 108.5 43.9829 108.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M115.427 114.035V115H109.378V114.156L112.405 110.785C112.778 110.37 113.066 110.019 113.269 109.731C113.476 109.439 113.62 109.179 113.7 108.951C113.785 108.718 113.827 108.481 113.827 108.24C113.827 107.935 113.764 107.66 113.637 107.415C113.514 107.165 113.332 106.966 113.091 106.818C112.85 106.67 112.558 106.596 112.215 106.596C111.805 106.596 111.462 106.676 111.187 106.837C110.916 106.993 110.713 107.214 110.577 107.497C110.442 107.781 110.374 108.106 110.374 108.475H109.2C109.2 107.954 109.314 107.478 109.543 107.046C109.771 106.615 110.11 106.272 110.558 106.018C111.007 105.76 111.559 105.631 112.215 105.631C112.799 105.631 113.298 105.735 113.713 105.942C114.128 106.145 114.445 106.433 114.665 106.805C114.89 107.173 115.002 107.605 115.002 108.1C115.002 108.371 114.955 108.646 114.862 108.925C114.773 109.2 114.648 109.475 114.487 109.75C114.331 110.026 114.147 110.296 113.935 110.563C113.728 110.83 113.506 111.092 113.269 111.35L110.793 114.035H115.427Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M189.098 111.89V112.854H182.421V112.163L186.559 105.758H187.518L186.489 107.611L183.754 111.89H189.098ZM187.81 105.758V115H186.635V105.758H187.81Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.841 105.745H260.942V106.742H260.841C260.219 106.742 259.698 106.843 259.279 107.046C258.86 107.245 258.528 107.514 258.283 107.853C258.037 108.187 257.859 108.563 257.749 108.982C257.644 109.401 257.591 109.827 257.591 110.258V111.617C257.591 112.027 257.639 112.391 257.737 112.708C257.834 113.022 257.967 113.286 258.137 113.502C258.306 113.718 258.496 113.881 258.708 113.991C258.924 114.101 259.148 114.156 259.381 114.156C259.652 114.156 259.893 114.105 260.104 114.003C260.316 113.898 260.494 113.752 260.638 113.565C260.786 113.375 260.898 113.151 260.974 112.893C261.05 112.634 261.088 112.351 261.088 112.042C261.088 111.767 261.054 111.502 260.987 111.249C260.919 110.99 260.815 110.762 260.676 110.563C260.536 110.36 260.36 110.201 260.149 110.087C259.942 109.968 259.694 109.909 259.406 109.909C259.08 109.909 258.776 109.99 258.492 110.15C258.213 110.307 257.982 110.514 257.8 110.772C257.623 111.026 257.521 111.304 257.496 111.604L256.873 111.598C256.933 111.124 257.043 110.72 257.204 110.385C257.369 110.047 257.572 109.772 257.813 109.56C258.058 109.344 258.331 109.188 258.632 109.09C258.936 108.989 259.258 108.938 259.597 108.938C260.058 108.938 260.456 109.025 260.79 109.198C261.124 109.372 261.399 109.604 261.615 109.896C261.831 110.184 261.99 110.51 262.091 110.874C262.197 111.234 262.25 111.604 262.25 111.985C262.25 112.421 262.189 112.829 262.066 113.21C261.943 113.591 261.759 113.925 261.514 114.213C261.272 114.501 260.974 114.725 260.619 114.886C260.263 115.047 259.851 115.127 259.381 115.127C258.881 115.127 258.446 115.025 258.073 114.822C257.701 114.615 257.392 114.34 257.146 113.997C256.901 113.654 256.717 113.273 256.594 112.854C256.471 112.436 256.41 112.01 256.41 111.579V111.026C256.41 110.375 256.476 109.736 256.607 109.109C256.738 108.483 256.964 107.916 257.286 107.408C257.612 106.9 258.063 106.496 258.638 106.196C259.214 105.895 259.948 105.745 260.841 105.745Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M76.4897 105.707V115H75.3154V107.173L72.9477 108.037V106.977L76.3056 105.707H76.4897Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M147.826 109.801H148.664C149.074 109.801 149.413 109.734 149.679 109.598C149.95 109.458 150.151 109.27 150.282 109.033C150.418 108.792 150.486 108.521 150.486 108.221C150.486 107.865 150.426 107.567 150.308 107.326C150.189 107.084 150.012 106.903 149.775 106.78C149.538 106.657 149.237 106.596 148.873 106.596C148.543 106.596 148.251 106.661 147.997 106.792C147.748 106.919 147.551 107.101 147.407 107.338C147.267 107.575 147.197 107.855 147.197 108.176H146.023C146.023 107.707 146.142 107.279 146.379 106.894C146.616 106.509 146.948 106.202 147.375 105.974C147.807 105.745 148.306 105.631 148.873 105.631C149.432 105.631 149.921 105.73 150.34 105.929C150.758 106.124 151.084 106.416 151.317 106.805C151.55 107.19 151.666 107.671 151.666 108.246C151.666 108.479 151.611 108.729 151.501 108.995C151.395 109.257 151.228 109.503 151 109.731C150.775 109.96 150.483 110.148 150.124 110.296C149.764 110.44 149.332 110.512 148.829 110.512H147.826V109.801ZM147.826 110.766V110.062H148.829C149.417 110.062 149.904 110.131 150.289 110.271C150.674 110.411 150.976 110.597 151.196 110.83C151.421 111.062 151.577 111.318 151.666 111.598C151.759 111.873 151.806 112.148 151.806 112.423C151.806 112.854 151.732 113.237 151.584 113.572C151.44 113.906 151.235 114.19 150.968 114.422C150.706 114.655 150.397 114.831 150.041 114.949C149.686 115.068 149.299 115.127 148.88 115.127C148.478 115.127 148.099 115.07 147.743 114.956C147.392 114.841 147.081 114.676 146.81 114.46C146.539 114.24 146.328 113.972 146.175 113.654C146.023 113.333 145.947 112.967 145.947 112.556H147.121C147.121 112.878 147.191 113.159 147.331 113.4C147.475 113.642 147.678 113.83 147.94 113.965C148.207 114.097 148.52 114.162 148.88 114.162C149.239 114.162 149.548 114.101 149.806 113.978C150.069 113.851 150.27 113.661 150.409 113.407C150.553 113.153 150.625 112.833 150.625 112.448C150.625 112.063 150.545 111.748 150.384 111.502C150.223 111.253 149.995 111.069 149.698 110.95C149.406 110.827 149.062 110.766 148.664 110.766H147.826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M221.104 110.792L219.644 110.442L220.171 105.758H225.363V107.237H221.675L221.447 109.287C221.569 109.215 221.756 109.139 222.005 109.059C222.255 108.974 222.534 108.932 222.843 108.932C223.292 108.932 223.689 109.001 224.036 109.141C224.383 109.281 224.678 109.484 224.919 109.75C225.164 110.017 225.35 110.343 225.477 110.728C225.604 111.113 225.668 111.549 225.668 112.036C225.668 112.446 225.604 112.838 225.477 113.21C225.35 113.578 225.158 113.908 224.9 114.2C224.642 114.488 224.318 114.714 223.929 114.879C223.539 115.044 223.078 115.127 222.545 115.127C222.147 115.127 221.762 115.068 221.389 114.949C221.021 114.831 220.689 114.655 220.393 114.422C220.101 114.19 219.866 113.908 219.688 113.578C219.515 113.244 219.424 112.863 219.415 112.436H221.231C221.256 112.698 221.324 112.924 221.434 113.115C221.548 113.301 221.698 113.445 221.885 113.546C222.071 113.648 222.289 113.699 222.538 113.699C222.771 113.699 222.97 113.654 223.135 113.565C223.3 113.477 223.433 113.354 223.535 113.197C223.637 113.036 223.711 112.85 223.757 112.639C223.808 112.423 223.833 112.19 223.833 111.94C223.833 111.691 223.804 111.464 223.744 111.261C223.685 111.058 223.594 110.882 223.472 110.734C223.349 110.586 223.192 110.472 223.002 110.392C222.816 110.311 222.598 110.271 222.348 110.271C222.009 110.271 221.747 110.324 221.561 110.43C221.379 110.535 221.227 110.656 221.104 110.792Z",fill:"white"}),(0,h.createElement)("path",{d:"M41.8627 128.758V129.418L38.0351 138H36.7973L40.6186 129.723H35.6166V128.758H41.8627Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M110.539 137.016H110.66C111.337 137.016 111.887 136.921 112.31 136.73C112.733 136.54 113.059 136.284 113.288 135.962C113.516 135.641 113.673 135.279 113.758 134.877C113.842 134.471 113.884 134.054 113.884 133.626V132.211C113.884 131.792 113.836 131.42 113.738 131.094C113.645 130.768 113.514 130.495 113.345 130.275C113.18 130.055 112.992 129.888 112.78 129.773C112.568 129.659 112.344 129.602 112.107 129.602C111.836 129.602 111.593 129.657 111.377 129.767C111.166 129.873 110.986 130.023 110.838 130.218C110.694 130.412 110.584 130.641 110.508 130.903C110.431 131.166 110.393 131.451 110.393 131.76C110.393 132.035 110.427 132.302 110.495 132.56C110.563 132.818 110.666 133.051 110.806 133.258C110.946 133.466 111.119 133.631 111.326 133.753C111.538 133.872 111.786 133.931 112.069 133.931C112.331 133.931 112.577 133.88 112.805 133.779C113.038 133.673 113.243 133.531 113.421 133.354C113.603 133.172 113.747 132.966 113.853 132.738C113.963 132.509 114.026 132.27 114.043 132.021H114.602C114.602 132.372 114.532 132.719 114.392 133.062C114.257 133.4 114.066 133.709 113.821 133.988C113.576 134.268 113.288 134.492 112.958 134.661C112.628 134.826 112.268 134.909 111.879 134.909C111.422 134.909 111.026 134.82 110.692 134.642C110.357 134.464 110.082 134.227 109.866 133.931C109.655 133.635 109.496 133.305 109.39 132.941C109.289 132.573 109.238 132.2 109.238 131.824C109.238 131.384 109.299 130.971 109.422 130.586C109.545 130.201 109.727 129.862 109.968 129.57C110.209 129.274 110.508 129.043 110.863 128.878C111.223 128.713 111.637 128.631 112.107 128.631C112.636 128.631 113.087 128.737 113.459 128.948C113.832 129.16 114.134 129.443 114.367 129.799C114.604 130.154 114.777 130.554 114.887 130.999C114.997 131.443 115.052 131.9 115.052 132.37V132.795C115.052 133.273 115.021 133.76 114.957 134.255C114.898 134.746 114.782 135.215 114.608 135.664C114.439 136.113 114.191 136.515 113.865 136.87C113.54 137.221 113.114 137.501 112.59 137.708C112.069 137.911 111.426 138.013 110.66 138.013H110.539V137.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M183.055 128.707V138H181.881V130.173L179.513 131.037V129.977L182.871 128.707H183.055ZM190.368 128.707V138H189.194V130.173L186.826 131.037V129.977L190.184 128.707H190.368Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M256.537 128.707V138H255.363V130.173L252.995 131.037V129.977L256.353 128.707H256.537ZM261.704 132.801H262.542C262.952 132.801 263.291 132.734 263.558 132.598C263.828 132.458 264.029 132.27 264.161 132.033C264.296 131.792 264.364 131.521 264.364 131.221C264.364 130.865 264.304 130.567 264.186 130.326C264.067 130.084 263.89 129.903 263.653 129.78C263.416 129.657 263.115 129.596 262.751 129.596C262.421 129.596 262.129 129.661 261.875 129.792C261.626 129.919 261.429 130.101 261.285 130.338C261.145 130.575 261.076 130.855 261.076 131.176H259.901C259.901 130.707 260.02 130.279 260.257 129.894C260.494 129.509 260.826 129.202 261.253 128.974C261.685 128.745 262.184 128.631 262.751 128.631C263.31 128.631 263.799 128.73 264.218 128.929C264.637 129.124 264.963 129.416 265.195 129.805C265.428 130.19 265.544 130.671 265.544 131.246C265.544 131.479 265.489 131.729 265.379 131.995C265.274 132.257 265.106 132.503 264.878 132.731C264.654 132.96 264.362 133.148 264.002 133.296C263.642 133.44 263.211 133.512 262.707 133.512H261.704V132.801ZM261.704 133.766V133.062H262.707C263.295 133.062 263.782 133.131 264.167 133.271C264.552 133.411 264.855 133.597 265.075 133.83C265.299 134.062 265.456 134.318 265.544 134.598C265.637 134.873 265.684 135.148 265.684 135.423C265.684 135.854 265.61 136.237 265.462 136.572C265.318 136.906 265.113 137.19 264.846 137.422C264.584 137.655 264.275 137.831 263.919 137.949C263.564 138.068 263.177 138.127 262.758 138.127C262.356 138.127 261.977 138.07 261.622 137.956C261.27 137.841 260.959 137.676 260.688 137.46C260.418 137.24 260.206 136.972 260.054 136.654C259.901 136.333 259.825 135.967 259.825 135.556H260.999C260.999 135.878 261.069 136.159 261.209 136.4C261.353 136.642 261.556 136.83 261.818 136.965C262.085 137.097 262.398 137.162 262.758 137.162C263.117 137.162 263.426 137.101 263.685 136.978C263.947 136.851 264.148 136.661 264.288 136.407C264.431 136.153 264.503 135.833 264.503 135.448C264.503 135.063 264.423 134.748 264.262 134.502C264.101 134.253 263.873 134.069 263.577 133.95C263.285 133.827 262.94 133.766 262.542 133.766H261.704Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M78.4575 135.499C78.4575 136.062 78.3263 136.54 78.0639 136.934C77.8058 137.323 77.4545 137.619 77.0102 137.822C76.5701 138.025 76.0729 138.127 75.5185 138.127C74.9641 138.127 74.4648 138.025 74.0205 137.822C73.5761 137.619 73.2249 137.323 72.9667 136.934C72.7086 136.54 72.5795 136.062 72.5795 135.499C72.5795 135.131 72.6494 134.794 72.789 134.49C72.9329 134.181 73.1339 133.912 73.392 133.684C73.6544 133.455 73.9633 133.279 74.3188 133.157C74.6785 133.03 75.0742 132.966 75.5058 132.966C76.0729 132.966 76.5786 133.076 77.0229 133.296C77.4672 133.512 77.8164 133.811 78.0703 134.191C78.3284 134.572 78.4575 135.008 78.4575 135.499ZM77.2768 135.474C77.2768 135.131 77.2027 134.828 77.0546 134.566C76.9065 134.299 76.6992 134.092 76.4326 133.944C76.166 133.796 75.857 133.722 75.5058 133.722C75.1461 133.722 74.8351 133.796 74.5727 133.944C74.3146 134.092 74.1136 134.299 73.9697 134.566C73.8258 134.828 73.7539 135.131 73.7539 135.474C73.7539 135.829 73.8237 136.134 73.9633 136.388C74.1072 136.637 74.3103 136.83 74.5727 136.965C74.8393 137.097 75.1546 137.162 75.5185 137.162C75.8824 137.162 76.1956 137.097 76.458 136.965C76.7203 136.83 76.9213 136.637 77.061 136.388C77.2049 136.134 77.2768 135.829 77.2768 135.474ZM78.2416 131.164C78.2416 131.612 78.1232 132.016 77.8862 132.376C77.6492 132.736 77.3255 133.019 76.915 133.227C76.5045 133.434 76.039 133.538 75.5185 133.538C74.9895 133.538 74.5177 133.434 74.103 133.227C73.6925 133.019 73.3709 132.736 73.1381 132.376C72.9054 132.016 72.789 131.612 72.789 131.164C72.789 130.626 72.9054 130.169 73.1381 129.792C73.3751 129.416 73.6988 129.128 74.1093 128.929C74.5198 128.73 74.9874 128.631 75.5122 128.631C76.0411 128.631 76.5109 128.73 76.9213 128.929C77.3318 129.128 77.6534 129.416 77.8862 129.792C78.1232 130.169 78.2416 130.626 78.2416 131.164ZM77.0673 131.183C77.0673 130.874 77.0017 130.601 76.8706 130.364C76.7394 130.127 76.5574 129.941 76.3247 129.805C76.0919 129.666 75.8211 129.596 75.5122 129.596C75.2032 129.596 74.9324 129.661 74.6997 129.792C74.4711 129.919 74.2913 130.101 74.1601 130.338C74.0331 130.575 73.9697 130.857 73.9697 131.183C73.9697 131.5 74.0331 131.777 74.1601 132.014C74.2913 132.251 74.4733 132.435 74.706 132.566C74.9387 132.698 75.2096 132.763 75.5185 132.763C75.8274 132.763 76.0961 132.698 76.3247 132.566C76.5574 132.435 76.7394 132.251 76.8706 132.014C77.0017 131.777 77.0673 131.5 77.0673 131.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M146.315 128.707V138H145.141V130.173L142.773 131.037V129.977L146.131 128.707H146.315ZM155.57 132.643V134.052C155.57 134.809 155.502 135.448 155.367 135.969C155.231 136.489 155.037 136.908 154.783 137.226C154.529 137.543 154.222 137.774 153.862 137.917C153.507 138.057 153.105 138.127 152.656 138.127C152.301 138.127 151.973 138.083 151.673 137.994C151.372 137.905 151.101 137.763 150.86 137.568C150.623 137.369 150.42 137.111 150.251 136.794C150.081 136.477 149.952 136.091 149.863 135.639C149.775 135.186 149.73 134.657 149.73 134.052V132.643C149.73 131.885 149.798 131.25 149.933 130.738C150.073 130.226 150.27 129.816 150.524 129.507C150.778 129.194 151.082 128.969 151.438 128.834C151.797 128.699 152.199 128.631 152.644 128.631C153.003 128.631 153.334 128.675 153.634 128.764C153.939 128.849 154.209 128.986 154.446 129.177C154.683 129.363 154.884 129.613 155.05 129.926C155.219 130.235 155.348 130.613 155.437 131.062C155.526 131.511 155.57 132.037 155.57 132.643ZM154.389 134.242V132.446C154.389 132.031 154.364 131.667 154.313 131.354C154.267 131.037 154.197 130.766 154.104 130.542C154.011 130.317 153.892 130.135 153.748 129.996C153.609 129.856 153.446 129.754 153.259 129.691C153.078 129.623 152.872 129.589 152.644 129.589C152.364 129.589 152.117 129.642 151.901 129.748C151.685 129.85 151.503 130.013 151.355 130.237C151.211 130.461 151.101 130.755 151.025 131.119C150.949 131.483 150.911 131.925 150.911 132.446V134.242C150.911 134.657 150.934 135.023 150.981 135.34C151.031 135.658 151.105 135.933 151.203 136.166C151.3 136.394 151.419 136.582 151.558 136.73C151.698 136.879 151.859 136.989 152.041 137.061C152.227 137.128 152.432 137.162 152.656 137.162C152.944 137.162 153.196 137.107 153.412 136.997C153.628 136.887 153.807 136.716 153.951 136.483C154.099 136.246 154.209 135.943 154.281 135.575C154.353 135.203 154.389 134.758 154.389 134.242Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M219.796 128.707V138H218.622V130.173L216.254 131.037V129.977L219.612 128.707H219.796ZM229.305 137.035V138H223.256V137.156L226.284 133.785C226.656 133.37 226.944 133.019 227.147 132.731C227.354 132.439 227.498 132.179 227.578 131.951C227.663 131.718 227.705 131.481 227.705 131.24C227.705 130.935 227.642 130.66 227.515 130.415C227.392 130.165 227.21 129.966 226.969 129.818C226.728 129.67 226.436 129.596 226.093 129.596C225.683 129.596 225.34 129.676 225.065 129.837C224.794 129.993 224.591 130.214 224.455 130.497C224.32 130.781 224.252 131.106 224.252 131.475H223.078C223.078 130.954 223.192 130.478 223.421 130.046C223.649 129.615 223.988 129.272 224.436 129.018C224.885 128.76 225.437 128.631 226.093 128.631C226.677 128.631 227.176 128.735 227.591 128.942C228.006 129.145 228.323 129.433 228.543 129.805C228.768 130.173 228.88 130.605 228.88 131.1C228.88 131.371 228.833 131.646 228.74 131.925C228.651 132.2 228.526 132.475 228.366 132.75C228.209 133.026 228.025 133.296 227.813 133.563C227.606 133.83 227.384 134.092 227.147 134.35L224.671 137.035H229.305Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1407"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1407"},(0,h.createElement)("rect",{width:"13",height:"13",fill:"white",transform:"translate(96 56)"})))),{ToolBarFields:kl,BlockLabel:jl,BlockName:xl,BlockDescription:Fl,BlockAdvancedValue:Bl,AdvancedFields:Al,FieldWrapper:Pl,FieldSettingsWrapper:Sl,AdvancedInspectorControl:Nl,ClientSideMacros:Il,ValidationToggleGroup:Tl,ValidationBlockMessage:Ol,AttributeHelp:Jl}=JetFBComponents,{useInsertMacro:Rl,useIsAdvancedValidation:ql,useUniqueNameOnDuplicate:Dl}=JetFBHooks,{__:zl}=wp.i18n,{InspectorControls:Ul,useBlockProps:Gl}=wp.blockEditor,{TextControl:Wl,ToggleControl:Kl,PanelBody:$l,__experimentalInputControl:Yl,ExternalLink:Xl}=wp.components;let{InputControl:Ql}=wp.components;void 0===Ql&&(Ql=Yl);const er=JSON.parse('{"apiVersion":3,"name":"jet-forms/date-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","date"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Date Field","icon":"\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":"string","default":"","jfb":{"macro":true,"dynamic":true}},"max":{"type":"string","default":""},"is_timestamp":{"type":"boolean","default":false},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Cr}=wp.i18n,{createBlock:tr}=wp.blocks,{name:lr,icon:rr=""}=er,nr={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:rr}}),description:Cr("Insert the date manually with Date Field, utilizing a drop-down calendar to choose the date from there conveniently.","jet-form-builder"),edit:function(e){const C=Gl(),[t,l]=Rl("min"),[r,n]=Rl("max"),{attributes:a,isSelected:i,setAttributes:o,editProps:{uniqKey:s,blockName:c,attrHelp:d}}=e,m=ql();if(Dl(),a.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},_l);const u=(0,h.createElement)(h.Fragment,null,zl("Plain date should be in yyyy-mm-dd format.","jet-form-builder")," ",zl("Or you can use","jet-form-builder")," ",(0,h.createElement)(Xl,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},zl("macros","jet-form-builder"))," ",zl("and","jet-form-builder")," ",(0,h.createElement)(Xl,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},zl("filters","jet-form-builder")),".");return[(0,h.createElement)(kl,{key:s("JetForm-toolbar"),...e}),i&&(0,h.createElement)(Ul,{key:s("InspectorControls")},(0,h.createElement)($l,{title:zl("General","jet-form-builder")},(0,h.createElement)(jl,null),(0,h.createElement)(xl,null),(0,h.createElement)(Fl,null)),(0,h.createElement)($l,{title:zl("Value","jet-form-builder")},(0,h.createElement)(Bl,{help:u,style:{marginBottom:"1em"}}),(0,h.createElement)(Il,null,(0,h.createElement)(Nl,{value:a.min,label:zl("Starting from date","jet-form-builder"),onChangePreset:e=>o({min:e}),onChangeMacros:l},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Wl,{id:e,ref:t,className:"jet-fb m-unset",value:a.min,onChange:e=>o({min:e})}),(0,h.createElement)(Jl,null,u))),(0,h.createElement)(Nl,{value:a.max,label:zl("Limit dates to","jet-form-builder"),onChangePreset:e=>o({max:e}),onChangeMacros:n},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Wl,{id:e,ref:r,className:"jet-fb m-unset",value:a.max,onChange:e=>o({max:e})}),(0,h.createElement)(Jl,null,u))))),(0,h.createElement)(Sl,{...e},(0,h.createElement)(Kl,{key:"is_timestamp",label:zl("Is Timestamp","jet-form-builder"),checked:a.is_timestamp,help:d("is_timestamp"),onChange:e=>{o({is_timestamp:Boolean(e)})}})),(0,h.createElement)($l,{title:zl("Validation","jet-form-builder")},(0,h.createElement)(Tl,null),m&&(0,h.createElement)(h.Fragment,null,Boolean(a.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ol,{name:"date_min"})),Boolean(a.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ol,{name:"date_max"})),(0,h.createElement)(Ol,{name:"empty"}))),(0,h.createElement)(Al,null)),(0,h.createElement)("div",{...C,key:s("viewBlock")},(0,h.createElement)(Pl,{key:s("FieldWrapper"),...e},(0,h.createElement)(Wl,{onChange:()=>{},className:"jet-form-builder__field-preview",key:`place_holder_block_${c}`,placeholder:'Input type="date"'})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>tr("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/time-field","jet-forms/datetime-field"],transform:e=>tr(lr,{...e}),priority:0}]}},ar=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_75_1425)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M31.5698 29.1426V30.5518C31.5698 31.3092 31.5021 31.9482 31.3667 32.4688C31.2313 32.9893 31.0366 33.4082 30.7827 33.7256C30.5288 34.043 30.222 34.2736 29.8623 34.4175C29.5068 34.5571 29.1048 34.627 28.6562 34.627C28.3008 34.627 27.9728 34.5825 27.6724 34.4937C27.3719 34.4048 27.1011 34.263 26.8599 34.0684C26.6229 33.8695 26.4198 33.6113 26.2505 33.2939C26.0812 32.9766 25.9521 32.5915 25.8633 32.1387C25.7744 31.6859 25.73 31.1569 25.73 30.5518V29.1426C25.73 28.3851 25.7977 27.7503 25.9331 27.2383C26.0728 26.7262 26.2695 26.3158 26.5234 26.0068C26.7773 25.6937 27.082 25.4694 27.4375 25.334C27.7972 25.1986 28.1992 25.1309 28.6436 25.1309C29.0033 25.1309 29.3333 25.1753 29.6338 25.2642C29.9385 25.3488 30.2093 25.4863 30.4463 25.6768C30.6833 25.863 30.8843 26.1126 31.0493 26.4258C31.2186 26.7347 31.3477 27.1134 31.4365 27.562C31.5254 28.0106 31.5698 28.5374 31.5698 29.1426ZM30.3892 30.7422V28.9458C30.3892 28.5311 30.3638 28.1672 30.313 27.854C30.2664 27.5366 30.1966 27.2658 30.1035 27.0415C30.0104 26.8172 29.8919 26.6353 29.748 26.4956C29.6084 26.356 29.4455 26.2544 29.2593 26.1909C29.0773 26.1232 28.8721 26.0894 28.6436 26.0894C28.3643 26.0894 28.1167 26.1423 27.9009 26.248C27.6851 26.3496 27.5031 26.5125 27.355 26.7368C27.2111 26.9611 27.1011 27.2552 27.0249 27.6191C26.9487 27.9831 26.9106 28.4253 26.9106 28.9458V30.7422C26.9106 31.1569 26.9339 31.5229 26.9805 31.8403C27.0312 32.1577 27.1053 32.4328 27.2026 32.6655C27.3 32.894 27.4185 33.0824 27.5581 33.2305C27.6978 33.3786 27.8586 33.4886 28.0405 33.5605C28.2267 33.6283 28.432 33.6621 28.6562 33.6621C28.944 33.6621 29.1958 33.6071 29.4116 33.4971C29.6274 33.387 29.8073 33.2157 29.9512 32.9829C30.0993 32.7459 30.2093 32.4434 30.2812 32.0752C30.3532 31.7028 30.3892 31.2585 30.3892 30.7422ZM34.7944 29.3013H35.6323C36.0428 29.3013 36.3813 29.2336 36.6479 29.0981C36.9188 28.9585 37.1198 28.7702 37.251 28.5332C37.3864 28.292 37.4541 28.0212 37.4541 27.7207C37.4541 27.3652 37.3949 27.0669 37.2764 26.8257C37.1579 26.5845 36.9801 26.4025 36.7432 26.2798C36.5062 26.1571 36.2057 26.0957 35.8418 26.0957C35.5117 26.0957 35.2197 26.1613 34.9658 26.2925C34.7161 26.4194 34.5194 26.6014 34.3755 26.8384C34.2358 27.0754 34.166 27.3547 34.166 27.6763H32.9917C32.9917 27.2065 33.1102 26.7791 33.3472 26.394C33.5841 26.009 33.9163 25.7021 34.3438 25.4736C34.7754 25.2451 35.2747 25.1309 35.8418 25.1309C36.4004 25.1309 36.8892 25.2303 37.3081 25.4292C37.7271 25.6239 38.0529 25.9159 38.2856 26.3052C38.5184 26.6903 38.6348 27.1706 38.6348 27.7461C38.6348 27.9788 38.5798 28.2285 38.4697 28.4951C38.3639 28.7575 38.1968 29.0029 37.9683 29.2314C37.744 29.46 37.452 29.6483 37.0923 29.7964C36.7326 29.9403 36.3009 30.0122 35.7974 30.0122H34.7944V29.3013ZM34.7944 30.2661V29.5615H35.7974C36.3856 29.5615 36.8722 29.6313 37.2573 29.771C37.6424 29.9106 37.945 30.0968 38.165 30.3296C38.3893 30.5623 38.5459 30.8184 38.6348 31.0977C38.7279 31.3727 38.7744 31.6478 38.7744 31.9229C38.7744 32.3545 38.7004 32.7375 38.5522 33.0718C38.4084 33.4061 38.2031 33.6896 37.9365 33.9224C37.6742 34.1551 37.3652 34.3307 37.0098 34.4492C36.6543 34.5677 36.2671 34.627 35.8481 34.627C35.4461 34.627 35.0674 34.5698 34.7119 34.4556C34.3607 34.3413 34.0496 34.1763 33.7788 33.9604C33.508 33.7404 33.2964 33.4717 33.144 33.1543C32.9917 32.8327 32.9155 32.4666 32.9155 32.0562H34.0898C34.0898 32.3778 34.1597 32.6592 34.2993 32.9004C34.4432 33.1416 34.6463 33.3299 34.9087 33.4653C35.1753 33.5965 35.4884 33.6621 35.8481 33.6621C36.2078 33.6621 36.5168 33.6007 36.7749 33.478C37.0373 33.3511 37.2383 33.1606 37.3779 32.9067C37.5218 32.6528 37.5938 32.3333 37.5938 31.9482C37.5938 31.5632 37.5133 31.2479 37.3525 31.0024C37.1917 30.7528 36.9632 30.5687 36.667 30.4502C36.375 30.3275 36.0301 30.2661 35.6323 30.2661H34.7944Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M46.9829 25.2578L43.1299 35.2935H42.1206L45.98 25.2578H46.9829Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"50",y:"20.5",width:"19",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M57.2241 33.167V24.75H58.4048V34.5H57.3257L57.2241 33.167ZM52.603 31.1421V31.0088C52.603 30.484 52.6665 30.008 52.7935 29.5806C52.9246 29.1489 53.1087 28.7786 53.3457 28.4697C53.5869 28.1608 53.8726 27.9238 54.2026 27.7588C54.5369 27.5895 54.9093 27.5049 55.3198 27.5049C55.7515 27.5049 56.1281 27.5811 56.4497 27.7334C56.7756 27.8815 57.0506 28.0994 57.2749 28.3872C57.5034 28.6707 57.6833 29.0135 57.8145 29.4155C57.9456 29.8175 58.0366 30.2725 58.0874 30.7803V31.3643C58.0409 31.8678 57.9499 32.3206 57.8145 32.7227C57.6833 33.1247 57.5034 33.4674 57.2749 33.751C57.0506 34.0345 56.7756 34.2524 56.4497 34.4048C56.1239 34.5529 55.743 34.627 55.3071 34.627C54.9051 34.627 54.5369 34.5402 54.2026 34.3667C53.8726 34.1932 53.5869 33.9499 53.3457 33.6367C53.1087 33.3236 52.9246 32.9554 52.7935 32.5322C52.6665 32.1048 52.603 31.6414 52.603 31.1421ZM53.7837 31.0088V31.1421C53.7837 31.4849 53.8175 31.8065 53.8853 32.1069C53.9572 32.4074 54.0672 32.6719 54.2153 32.9004C54.3634 33.1289 54.5518 33.3088 54.7803 33.4399C55.0088 33.5669 55.2817 33.6304 55.5991 33.6304C55.9884 33.6304 56.3079 33.5479 56.5576 33.3828C56.8115 33.2178 57.0146 32.9998 57.167 32.729C57.3193 32.4582 57.4378 32.1641 57.5225 31.8467V30.3169C57.4717 30.0841 57.3976 29.8599 57.3003 29.644C57.2072 29.424 57.0845 29.2293 56.9321 29.0601C56.784 28.8866 56.5999 28.749 56.3799 28.6475C56.1641 28.5459 55.908 28.4951 55.6118 28.4951C55.2902 28.4951 55.013 28.5628 54.7803 28.6982C54.5518 28.8294 54.3634 29.0114 54.2153 29.2441C54.0672 29.4727 53.9572 29.7393 53.8853 30.0439C53.8175 30.3444 53.7837 30.666 53.7837 31.0088ZM64.562 33.167V24.75H65.7427V34.5H64.6636L64.562 33.167ZM59.9409 31.1421V31.0088C59.9409 30.484 60.0044 30.008 60.1313 29.5806C60.2625 29.1489 60.4466 28.7786 60.6836 28.4697C60.9248 28.1608 61.2104 27.9238 61.5405 27.7588C61.8748 27.5895 62.2472 27.5049 62.6577 27.5049C63.0894 27.5049 63.466 27.5811 63.7876 27.7334C64.1134 27.8815 64.3885 28.0994 64.6128 28.3872C64.8413 28.6707 65.0212 29.0135 65.1523 29.4155C65.2835 29.8175 65.3745 30.2725 65.4253 30.7803V31.3643C65.3787 31.8678 65.2878 32.3206 65.1523 32.7227C65.0212 33.1247 64.8413 33.4674 64.6128 33.751C64.3885 34.0345 64.1134 34.2524 63.7876 34.4048C63.4618 34.5529 63.0809 34.627 62.645 34.627C62.243 34.627 61.8748 34.5402 61.5405 34.3667C61.2104 34.1932 60.9248 33.9499 60.6836 33.6367C60.4466 33.3236 60.2625 32.9554 60.1313 32.5322C60.0044 32.1048 59.9409 31.6414 59.9409 31.1421ZM61.1216 31.0088V31.1421C61.1216 31.4849 61.1554 31.8065 61.2231 32.1069C61.2951 32.4074 61.4051 32.6719 61.5532 32.9004C61.7013 33.1289 61.8896 33.3088 62.1182 33.4399C62.3467 33.5669 62.6196 33.6304 62.937 33.6304C63.3263 33.6304 63.6458 33.5479 63.8955 33.3828C64.1494 33.2178 64.3525 32.9998 64.5049 32.729C64.6572 32.4582 64.7757 32.1641 64.8604 31.8467V30.3169C64.8096 30.0841 64.7355 29.8599 64.6382 29.644C64.5451 29.424 64.4224 29.2293 64.27 29.0601C64.1219 28.8866 63.9378 28.749 63.7178 28.6475C63.502 28.5459 63.2459 28.4951 62.9497 28.4951C62.6281 28.4951 62.3509 28.5628 62.1182 28.6982C61.8896 28.8294 61.7013 29.0114 61.5532 29.2441C61.4051 29.4727 61.2951 29.7393 61.2231 30.0439C61.1554 30.3444 61.1216 30.666 61.1216 31.0088Z",fill:"white"}),(0,h.createElement)("path",{d:"M75.9829 25.2578L72.1299 35.2935H71.1206L74.98 25.2578H75.9829Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M81.8247 33.7891L83.7354 27.6318H84.9922L82.2373 35.5601C82.1738 35.7293 82.0892 35.9113 81.9834 36.106C81.8818 36.3049 81.7507 36.4932 81.5898 36.6709C81.429 36.8486 81.2344 36.9925 81.0059 37.1025C80.7816 37.2168 80.5129 37.2739 80.1997 37.2739C80.1066 37.2739 79.9881 37.2612 79.8442 37.2358C79.7004 37.2104 79.5988 37.1893 79.5396 37.1724L79.5332 36.2202C79.5671 36.2244 79.62 36.2287 79.6919 36.2329C79.7681 36.2414 79.821 36.2456 79.8506 36.2456C80.1172 36.2456 80.3436 36.2096 80.5298 36.1377C80.716 36.07 80.8726 35.9536 80.9995 35.7886C81.1307 35.6278 81.2428 35.4056 81.3359 35.1221L81.8247 33.7891ZM80.4219 27.6318L82.2056 32.9639L82.5103 34.2017L81.666 34.6333L79.1396 27.6318H80.4219ZM87.9819 33.7891L89.8926 27.6318H91.1494L88.3945 35.5601C88.3311 35.7293 88.2464 35.9113 88.1406 36.106C88.0391 36.3049 87.9079 36.4932 87.7471 36.6709C87.5863 36.8486 87.3916 36.9925 87.1631 37.1025C86.9388 37.2168 86.6701 37.2739 86.3569 37.2739C86.2638 37.2739 86.1453 37.2612 86.0015 37.2358C85.8576 37.2104 85.756 37.1893 85.6968 37.1724L85.6904 36.2202C85.7243 36.2244 85.7772 36.2287 85.8491 36.2329C85.9253 36.2414 85.9782 36.2456 86.0078 36.2456C86.2744 36.2456 86.5008 36.2096 86.687 36.1377C86.8732 36.07 87.0298 35.9536 87.1567 35.7886C87.2879 35.6278 87.4001 35.4056 87.4932 35.1221L87.9819 33.7891ZM86.5791 27.6318L88.3628 32.9639L88.6675 34.2017L87.8232 34.6333L85.2969 27.6318H86.5791ZM94.1392 33.7891L96.0498 27.6318H97.3066L94.5518 35.5601C94.4883 35.7293 94.4036 35.9113 94.2979 36.106C94.1963 36.3049 94.0651 36.4932 93.9043 36.6709C93.7435 36.8486 93.5488 36.9925 93.3203 37.1025C93.096 37.2168 92.8273 37.2739 92.5142 37.2739C92.4211 37.2739 92.3026 37.2612 92.1587 37.2358C92.0148 37.2104 91.9132 37.1893 91.854 37.1724L91.8477 36.2202C91.8815 36.2244 91.9344 36.2287 92.0063 36.2329C92.0825 36.2414 92.1354 36.2456 92.165 36.2456C92.4316 36.2456 92.658 36.2096 92.8442 36.1377C93.0304 36.07 93.187 35.9536 93.314 35.7886C93.4451 35.6278 93.5573 35.4056 93.6504 35.1221L94.1392 33.7891ZM92.7363 27.6318L94.52 32.9639L94.8247 34.2017L93.9805 34.6333L91.4541 27.6318H92.7363ZM100.296 33.7891L102.207 27.6318H103.464L100.709 35.5601C100.646 35.7293 100.561 35.9113 100.455 36.106C100.354 36.3049 100.222 36.4932 100.062 36.6709C99.9007 36.8486 99.7061 36.9925 99.4775 37.1025C99.2533 37.2168 98.9845 37.2739 98.6714 37.2739C98.5783 37.2739 98.4598 37.2612 98.3159 37.2358C98.172 37.2104 98.0705 37.1893 98.0112 37.1724L98.0049 36.2202C98.0387 36.2244 98.0916 36.2287 98.1636 36.2329C98.2397 36.2414 98.2926 36.2456 98.3223 36.2456C98.5889 36.2456 98.8153 36.2096 99.0015 36.1377C99.1877 36.07 99.3442 35.9536 99.4712 35.7886C99.6024 35.6278 99.7145 35.4056 99.8076 35.1221L100.296 33.7891ZM98.8936 27.6318L100.677 32.9639L100.982 34.2017L100.138 34.6333L97.6113 27.6318H98.8936Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M270 24V38C270 39.1 269.1 40 268 40H254C252.89 40 252 39.1 252 38L252.01 24C252.01 22.9 252.89 22 254 22H255V20H257V22H265V20H267V22H268C269.1 22 270 22.9 270 24ZM254 26H268V24H254V26ZM268 38V28H254V38H268Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"15",y:"45",width:"268",height:"189",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M26.6948 60.7578H28.3071L30.6812 67.5435L33.0552 60.7578H34.6675L31.3286 70H30.0337L26.6948 60.7578ZM25.8252 60.7578H27.4312L27.7231 67.3721V70H25.8252V60.7578ZM33.9312 60.7578H35.5435V70H33.6392V67.3721L33.9312 60.7578ZM40.8057 68.4512V65.3916C40.8057 65.1715 40.7697 64.9832 40.6978 64.8267C40.6258 64.6659 40.5137 64.541 40.3613 64.4521C40.2132 64.3633 40.0207 64.3188 39.7837 64.3188C39.5806 64.3188 39.4049 64.3548 39.2568 64.4268C39.1087 64.4945 38.9945 64.5939 38.9141 64.7251C38.8337 64.8521 38.7935 65.0023 38.7935 65.1758H36.9653C36.9653 64.8838 37.033 64.6066 37.1685 64.3442C37.3039 64.0819 37.5007 63.8512 37.7588 63.6523C38.0169 63.4492 38.3237 63.2905 38.6792 63.1763C39.0389 63.062 39.4409 63.0049 39.8853 63.0049C40.4185 63.0049 40.8924 63.0938 41.3071 63.2715C41.7218 63.4492 42.0477 63.7158 42.2847 64.0713C42.5259 64.4268 42.6465 64.8711 42.6465 65.4043V68.3433C42.6465 68.7199 42.6698 69.0288 42.7163 69.27C42.7629 69.507 42.8306 69.7144 42.9194 69.8921V70H41.0723C40.9834 69.8138 40.9157 69.5811 40.8691 69.3018C40.8268 69.0182 40.8057 68.7347 40.8057 68.4512ZM41.0469 65.8169L41.0596 66.8516H40.0376C39.7964 66.8516 39.5869 66.8791 39.4092 66.9341C39.2314 66.9891 39.0854 67.0674 38.9712 67.1689C38.8569 67.2663 38.7723 67.3805 38.7173 67.5117C38.6665 67.6429 38.6411 67.7868 38.6411 67.9434C38.6411 68.0999 38.6771 68.2417 38.749 68.3687C38.821 68.4914 38.9246 68.5887 39.0601 68.6606C39.1955 68.7284 39.3542 68.7622 39.5361 68.7622C39.8112 68.7622 40.0503 68.7072 40.2534 68.5972C40.4565 68.4871 40.6131 68.3517 40.7231 68.1909C40.8374 68.0301 40.8966 67.8778 40.9009 67.7339L41.3833 68.5083C41.3156 68.6818 41.2225 68.8617 41.104 69.0479C40.9897 69.234 40.8438 69.4097 40.666 69.5747C40.4883 69.7355 40.2746 69.8688 40.0249 69.9746C39.7752 70.0762 39.479 70.127 39.1362 70.127C38.7004 70.127 38.3047 70.0402 37.9492 69.8667C37.598 69.689 37.3187 69.4456 37.1113 69.1367C36.9082 68.8236 36.8066 68.4681 36.8066 68.0703C36.8066 67.7106 36.8743 67.3911 37.0098 67.1118C37.1452 66.8325 37.3441 66.5977 37.6064 66.4072C37.873 66.2126 38.2052 66.0666 38.603 65.9692C39.0008 65.8677 39.4621 65.8169 39.9868 65.8169H41.0469ZM45.8838 64.6299V70H44.0557V63.1318H45.7759L45.8838 64.6299ZM47.9531 63.0874L47.9214 64.7822C47.8325 64.7695 47.7246 64.759 47.5977 64.7505C47.4749 64.7378 47.3628 64.7314 47.2612 64.7314C47.0031 64.7314 46.7788 64.7653 46.5884 64.833C46.4022 64.8965 46.2456 64.9917 46.1187 65.1187C45.9959 65.2456 45.9028 65.4001 45.8394 65.582C45.7801 65.764 45.7463 65.9714 45.7378 66.2041L45.3696 66.0898C45.3696 65.6455 45.4141 65.2371 45.5029 64.8647C45.5918 64.4881 45.7209 64.1602 45.8901 63.8809C46.0636 63.6016 46.2752 63.3857 46.5249 63.2334C46.7746 63.0811 47.0602 63.0049 47.3818 63.0049C47.4834 63.0049 47.5871 63.0133 47.6929 63.0303C47.7987 63.043 47.8854 63.062 47.9531 63.0874ZM51.5269 68.6987C51.7511 68.6987 51.95 68.6564 52.1235 68.5718C52.297 68.4829 52.4325 68.3602 52.5298 68.2036C52.6313 68.0428 52.6842 67.8545 52.6885 67.6387H54.4087C54.4045 68.1211 54.2754 68.5506 54.0215 68.9272C53.7676 69.2996 53.4269 69.5938 52.9995 69.8096C52.5721 70.0212 52.0939 70.127 51.5649 70.127C51.0317 70.127 50.5662 70.0381 50.1685 69.8604C49.7749 69.6826 49.4469 69.4372 49.1846 69.124C48.9222 68.8066 48.7254 68.4385 48.5942 68.0195C48.4631 67.5964 48.3975 67.1436 48.3975 66.6611V66.4771C48.3975 65.9904 48.4631 65.5376 48.5942 65.1187C48.7254 64.6955 48.9222 64.3273 49.1846 64.0142C49.4469 63.6968 49.7749 63.4492 50.1685 63.2715C50.562 63.0938 51.0233 63.0049 51.5522 63.0049C52.1151 63.0049 52.6081 63.1128 53.0312 63.3286C53.4587 63.5444 53.793 63.8534 54.0342 64.2554C54.2796 64.6532 54.4045 65.125 54.4087 65.6709H52.6885C52.6842 65.4424 52.6356 65.235 52.5425 65.0488C52.4536 64.8626 52.3224 64.7145 52.1489 64.6045C51.9797 64.4902 51.7702 64.4331 51.5205 64.4331C51.2539 64.4331 51.036 64.4902 50.8667 64.6045C50.6974 64.7145 50.5662 64.8669 50.4731 65.0615C50.38 65.252 50.3145 65.4699 50.2764 65.7153C50.2425 65.9565 50.2256 66.2104 50.2256 66.4771V66.6611C50.2256 66.9277 50.2425 67.1838 50.2764 67.4292C50.3102 67.6746 50.3737 67.8926 50.4668 68.083C50.5641 68.2734 50.6974 68.4237 50.8667 68.5337C51.036 68.6437 51.256 68.6987 51.5269 68.6987ZM57.2524 60.25V70H55.4243V60.25H57.2524ZM56.9922 66.3247H56.4907C56.495 65.8465 56.5584 65.4064 56.6812 65.0044C56.8039 64.5981 56.9795 64.2469 57.208 63.9507C57.4365 63.6502 57.7095 63.4175 58.0269 63.2524C58.3485 63.0874 58.7039 63.0049 59.0933 63.0049C59.4318 63.0049 59.7386 63.0535 60.0137 63.1509C60.293 63.244 60.5321 63.3963 60.731 63.6079C60.9341 63.8153 61.0907 64.0882 61.2007 64.4268C61.3107 64.7653 61.3657 65.1758 61.3657 65.6582V70H59.5249V65.6455C59.5249 65.3408 59.4805 65.1017 59.3916 64.9282C59.307 64.7505 59.1821 64.6257 59.0171 64.5537C58.8563 64.4775 58.6574 64.4395 58.4204 64.4395C58.158 64.4395 57.9338 64.4881 57.7476 64.5854C57.5656 64.6828 57.4196 64.8182 57.3096 64.9917C57.1995 65.161 57.1191 65.3599 57.0684 65.5884C57.0176 65.8169 56.9922 66.0623 56.9922 66.3247ZM72.2393 68.5718V70H65.917V68.7812L68.9067 65.5757C69.2072 65.2414 69.4442 64.9473 69.6177 64.6934C69.7912 64.4352 69.916 64.2046 69.9922 64.0015C70.0726 63.7941 70.1128 63.5973 70.1128 63.4111C70.1128 63.1318 70.0662 62.8927 69.9731 62.6938C69.88 62.4907 69.7425 62.3341 69.5605 62.2241C69.3828 62.1141 69.1628 62.0591 68.9004 62.0591C68.6211 62.0591 68.3799 62.1268 68.1768 62.2622C67.9779 62.3976 67.8255 62.5859 67.7197 62.8271C67.6182 63.0684 67.5674 63.3413 67.5674 63.646H65.7329C65.7329 63.0959 65.8641 62.5923 66.1265 62.1353C66.3888 61.674 66.7591 61.3079 67.2373 61.0371C67.7155 60.762 68.2826 60.6245 68.9385 60.6245C69.5859 60.6245 70.1318 60.7303 70.5762 60.9419C71.0247 61.1493 71.3633 61.4497 71.5918 61.8433C71.8245 62.2326 71.9409 62.6981 71.9409 63.2397C71.9409 63.5444 71.8923 63.8428 71.7949 64.1348C71.6976 64.4225 71.5579 64.7103 71.376 64.998C71.1982 65.2816 70.9824 65.5693 70.7285 65.8613C70.4746 66.1533 70.1932 66.4559 69.8843 66.769L68.2783 68.5718H72.2393ZM79.6025 64.5664V66.166C79.6025 66.86 79.5285 67.4588 79.3804 67.9624C79.2323 68.4618 79.0186 68.8722 78.7393 69.1938C78.4642 69.5112 78.1362 69.7461 77.7554 69.8984C77.3745 70.0508 76.9513 70.127 76.4858 70.127C76.1134 70.127 75.7664 70.0804 75.4448 69.9873C75.1232 69.89 74.8333 69.7397 74.5752 69.5366C74.3213 69.3335 74.1012 69.0775 73.915 68.7686C73.7331 68.4554 73.5934 68.083 73.4961 67.6514C73.3988 67.2197 73.3501 66.7246 73.3501 66.166V64.5664C73.3501 63.8724 73.4242 63.2778 73.5723 62.7827C73.7246 62.2834 73.9383 61.875 74.2134 61.5576C74.4927 61.2402 74.8228 61.0075 75.2036 60.8594C75.5845 60.707 76.0076 60.6309 76.4731 60.6309C76.8455 60.6309 77.1904 60.6795 77.5078 60.7769C77.8294 60.87 78.1193 61.016 78.3774 61.2148C78.6356 61.4137 78.8556 61.6698 79.0376 61.9829C79.2196 62.2918 79.3592 62.6621 79.4565 63.0938C79.5539 63.5212 79.6025 64.012 79.6025 64.5664ZM77.7681 66.4072V64.3188C77.7681 63.9845 77.749 63.6925 77.7109 63.4429C77.6771 63.1932 77.6242 62.9816 77.5522 62.8081C77.4803 62.6304 77.3914 62.4865 77.2856 62.3765C77.1799 62.2664 77.0592 62.186 76.9238 62.1353C76.7884 62.0845 76.6382 62.0591 76.4731 62.0591C76.2658 62.0591 76.0817 62.0993 75.9209 62.1797C75.7643 62.2601 75.631 62.3892 75.521 62.5669C75.411 62.7404 75.3263 62.9731 75.2671 63.2651C75.2121 63.5529 75.1846 63.9041 75.1846 64.3188V66.4072C75.1846 66.7415 75.2015 67.0356 75.2354 67.2896C75.2734 67.5435 75.3285 67.7614 75.4004 67.9434C75.4766 68.1211 75.5654 68.2671 75.667 68.3813C75.7728 68.4914 75.8934 68.5718 76.0288 68.6226C76.1685 68.6733 76.3208 68.6987 76.4858 68.6987C76.689 68.6987 76.8688 68.6585 77.0254 68.5781C77.1862 68.4935 77.3216 68.3623 77.4316 68.1846C77.5459 68.0026 77.6305 67.7656 77.6855 67.4736C77.7406 67.1816 77.7681 66.8262 77.7681 66.4072ZM87.1689 68.5718V70H80.8467V68.7812L83.8364 65.5757C84.1369 65.2414 84.3739 64.9473 84.5474 64.6934C84.7209 64.4352 84.8457 64.2046 84.9219 64.0015C85.0023 63.7941 85.0425 63.5973 85.0425 63.4111C85.0425 63.1318 84.9959 62.8927 84.9028 62.6938C84.8097 62.4907 84.6722 62.3341 84.4902 62.2241C84.3125 62.1141 84.0924 62.0591 83.8301 62.0591C83.5508 62.0591 83.3096 62.1268 83.1064 62.2622C82.9076 62.3976 82.7552 62.5859 82.6494 62.8271C82.5479 63.0684 82.4971 63.3413 82.4971 63.646H80.6626C80.6626 63.0959 80.7938 62.5923 81.0562 62.1353C81.3185 61.674 81.6888 61.3079 82.167 61.0371C82.6452 60.762 83.2122 60.6245 83.8682 60.6245C84.5156 60.6245 85.0615 60.7303 85.5059 60.9419C85.9544 61.1493 86.293 61.4497 86.5215 61.8433C86.7542 62.2326 86.8706 62.6981 86.8706 63.2397C86.8706 63.5444 86.8219 63.8428 86.7246 64.1348C86.6273 64.4225 86.4876 64.7103 86.3057 64.998C86.1279 65.2816 85.9121 65.5693 85.6582 65.8613C85.4043 66.1533 85.1229 66.4559 84.814 66.769L83.208 68.5718H87.1689ZM92.7676 60.7388V70H90.9395V62.8462L88.7432 63.5444V62.1035L92.5708 60.7388H92.7676Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1425)"},(0,h.createElement)("path",{d:"M99.7917 64.4167L102.5 67.1251L105.208 64.4167H99.7917Z",fill:"#64748B"})),(0,h.createElement)("path",{d:"M184.167 65.4999L184.93 66.2637L187.958 63.2412L187.958 69.8333L189.042 69.8333L189.042 63.2412L192.07 66.2637L192.833 65.4999L188.5 61.1666L184.167 65.4999Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M205.833 65.5001L205.07 64.7363L202.042 67.7588L202.042 61.1667L200.958 61.1667L200.958 67.7588L197.93 64.7363L197.167 65.5001L201.5 69.8334L205.833 65.5001Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M33.7192 89.6641C33.7192 89.4482 33.6853 89.2578 33.6176 89.0928C33.5541 88.9235 33.4399 88.7712 33.2748 88.6357C33.114 88.5003 32.8898 88.3713 32.602 88.2485C32.3185 88.1258 31.9588 88.001 31.5229 87.874C31.0659 87.7386 30.6533 87.5884 30.2851 87.4233C29.9169 87.2541 29.6017 87.0615 29.3393 86.8457C29.0769 86.6299 28.8759 86.3823 28.7363 86.103C28.5966 85.8237 28.5268 85.5042 28.5268 85.1445C28.5268 84.7848 28.6009 84.4526 28.749 84.1479C28.8971 83.8433 29.1087 83.5788 29.3837 83.3545C29.663 83.126 29.9952 82.9482 30.3803 82.8213C30.7654 82.6943 31.1949 82.6309 31.6689 82.6309C32.3629 82.6309 32.9511 82.7642 33.4335 83.0308C33.9202 83.2931 34.2905 83.638 34.5444 84.0654C34.7983 84.4886 34.9252 84.9414 34.9252 85.4238H33.7065C33.7065 85.0768 33.6324 84.77 33.4843 84.5034C33.3362 84.2326 33.1119 84.021 32.8115 83.8687C32.511 83.7121 32.1302 83.6338 31.6689 83.6338C31.233 83.6338 30.8733 83.6994 30.5898 83.8306C30.3063 83.9618 30.0947 84.1395 29.955 84.3638C29.8196 84.5881 29.7519 84.8441 29.7519 85.1318C29.7519 85.3265 29.7921 85.5042 29.8725 85.665C29.9571 85.8216 30.0862 85.9676 30.2597 86.103C30.4374 86.2384 30.6617 86.3633 30.9326 86.4775C31.2076 86.5918 31.5356 86.7018 31.9164 86.8076C32.4412 86.9557 32.894 87.1208 33.2748 87.3027C33.6557 87.4847 33.9689 87.6899 34.2143 87.9185C34.464 88.1427 34.6481 88.3988 34.7665 88.6865C34.8893 88.9701 34.9506 89.2917 34.9506 89.6514C34.9506 90.028 34.8745 90.3687 34.7221 90.6733C34.5698 90.978 34.3518 91.2383 34.0683 91.4541C33.7848 91.6699 33.4441 91.8371 33.0463 91.9556C32.6528 92.0698 32.2127 92.127 31.726 92.127C31.2986 92.127 30.8775 92.0677 30.4628 91.9492C30.0524 91.8307 29.6778 91.653 29.3393 91.416C29.005 91.179 28.7363 90.887 28.5331 90.54C28.3343 90.1888 28.2348 89.7826 28.2348 89.3213H29.4536C29.4536 89.6387 29.5149 89.9116 29.6376 90.1401C29.7604 90.3644 29.9275 90.5506 30.1391 90.6987C30.3549 90.8468 30.5983 90.9569 30.8691 91.0288C31.1442 91.0965 31.4298 91.1304 31.726 91.1304C32.1534 91.1304 32.5152 91.0711 32.8115 90.9526C33.1077 90.8341 33.332 90.6649 33.4843 90.4448C33.6409 90.2248 33.7192 89.9645 33.7192 89.6641ZM40.5366 90.4131V85.1318H41.7172V92H40.5937L40.5366 90.4131ZM40.7587 88.9658L41.2475 88.9531C41.2475 89.4102 41.1988 89.8333 41.1015 90.2227C41.0084 90.6077 40.8561 90.9421 40.6445 91.2256C40.4329 91.5091 40.1557 91.7313 39.8129 91.8921C39.4702 92.0487 39.0533 92.127 38.5624 92.127C38.2281 92.127 37.9213 92.0783 37.642 91.981C37.367 91.8836 37.13 91.7334 36.9311 91.5303C36.7322 91.3271 36.5777 91.0627 36.4677 90.7368C36.3619 90.411 36.309 90.0195 36.309 89.5625V85.1318H37.4833V89.5752C37.4833 89.8841 37.5172 90.1401 37.5849 90.3433C37.6568 90.5422 37.7521 90.7008 37.8706 90.8193C37.9933 90.9336 38.1287 91.014 38.2768 91.0605C38.4291 91.1071 38.5857 91.1304 38.7465 91.1304C39.2459 91.1304 39.6415 91.0352 39.9335 90.8447C40.2255 90.6501 40.435 90.3898 40.562 90.064C40.6931 89.7339 40.7587 89.3678 40.7587 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M86.7169 82.7578V92H85.5108V82.7578H86.7169ZM89.6876 82.7578V83.7607H82.5465V82.7578H89.6876ZM94.4737 90.4131V85.1318H95.6544V92H94.5308L94.4737 90.4131ZM94.6959 88.9658L95.1846 88.9531C95.1846 89.4102 95.136 89.8333 95.0386 90.2227C94.9455 90.6077 94.7932 90.9421 94.5816 91.2256C94.37 91.5091 94.0928 91.7313 93.7501 91.8921C93.4073 92.0487 92.9905 92.127 92.4996 92.127C92.1653 92.127 91.8585 92.0783 91.5792 91.981C91.3041 91.8836 91.0671 91.7334 90.8682 91.5303C90.6693 91.3271 90.5149 91.0627 90.4049 90.7368C90.2991 90.411 90.2462 90.0195 90.2462 89.5625V85.1318H91.4205V89.5752C91.4205 89.8841 91.4543 90.1401 91.522 90.3433C91.594 90.5422 91.6892 90.7008 91.8077 90.8193C91.9304 90.9336 92.0658 91.014 92.2139 91.0605C92.3663 91.1071 92.5229 91.1304 92.6837 91.1304C93.183 91.1304 93.5787 91.0352 93.8707 90.8447C94.1627 90.6501 94.3721 90.3898 94.4991 90.064C94.6303 89.7339 94.6959 89.3678 94.6959 88.9658Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M140.637 82.7578V92H139.431V82.7578H140.637ZM143.608 82.7578V83.7607H136.467V82.7578H143.608ZM145.976 82.25V92H144.801V82.25H145.976ZM145.696 88.3057L145.208 88.2866C145.212 87.8169 145.282 87.3831 145.417 86.9854C145.553 86.5833 145.743 86.2342 145.988 85.938C146.234 85.6418 146.526 85.4132 146.864 85.2524C147.207 85.0874 147.586 85.0049 148.001 85.0049C148.339 85.0049 148.644 85.0514 148.915 85.1445C149.186 85.2334 149.416 85.3773 149.607 85.5762C149.801 85.7751 149.949 86.0332 150.051 86.3506C150.153 86.6637 150.203 87.0467 150.203 87.4995V92H149.023V87.4868C149.023 87.1271 148.97 86.8394 148.864 86.6235C148.758 86.4035 148.604 86.2448 148.401 86.1475C148.197 86.0459 147.948 85.9951 147.652 85.9951C147.36 85.9951 147.093 86.0565 146.852 86.1792C146.615 86.3019 146.41 86.4712 146.236 86.687C146.067 86.9028 145.933 87.1504 145.836 87.4297C145.743 87.7048 145.696 87.9967 145.696 88.3057Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M196.437 89.6641C196.437 89.4482 196.403 89.2578 196.335 89.0928C196.272 88.9235 196.158 88.7712 195.992 88.6357C195.832 88.5003 195.607 88.3713 195.32 88.2485C195.036 88.1258 194.676 88.001 194.241 87.874C193.784 87.7386 193.371 87.5884 193.003 87.4233C192.635 87.2541 192.319 87.0615 192.057 86.8457C191.795 86.6299 191.594 86.3823 191.454 86.103C191.314 85.8237 191.244 85.5042 191.244 85.1445C191.244 84.7848 191.319 84.4526 191.467 84.1479C191.615 83.8433 191.826 83.5788 192.101 83.3545C192.381 83.126 192.713 82.9482 193.098 82.8213C193.483 82.6943 193.913 82.6309 194.387 82.6309C195.081 82.6309 195.669 82.7642 196.151 83.0308C196.638 83.2931 197.008 83.638 197.262 84.0654C197.516 84.4886 197.643 84.9414 197.643 85.4238H196.424C196.424 85.0768 196.35 84.77 196.202 84.5034C196.054 84.2326 195.83 84.021 195.529 83.8687C195.229 83.7121 194.848 83.6338 194.387 83.6338C193.951 83.6338 193.591 83.6994 193.307 83.8306C193.024 83.9618 192.812 84.1395 192.673 84.3638C192.537 84.5881 192.47 84.8441 192.47 85.1318C192.47 85.3265 192.51 85.5042 192.59 85.665C192.675 85.8216 192.804 85.9676 192.977 86.103C193.155 86.2384 193.379 86.3633 193.65 86.4775C193.925 86.5918 194.253 86.7018 194.634 86.8076C195.159 86.9557 195.612 87.1208 195.992 87.3027C196.373 87.4847 196.687 87.6899 196.932 87.9185C197.182 88.1427 197.366 88.3988 197.484 88.6865C197.607 88.9701 197.668 89.2917 197.668 89.6514C197.668 90.028 197.592 90.3687 197.44 90.6733C197.287 90.978 197.069 91.2383 196.786 91.4541C196.502 91.6699 196.162 91.8371 195.764 91.9556C195.37 92.0698 194.93 92.127 194.444 92.127C194.016 92.127 193.595 92.0677 193.18 91.9492C192.77 91.8307 192.395 91.653 192.057 91.416C191.723 91.179 191.454 90.887 191.251 90.54C191.052 90.1888 190.952 89.7826 190.952 89.3213H192.171C192.171 89.6387 192.233 89.9116 192.355 90.1401C192.478 90.3644 192.645 90.5506 192.857 90.6987C193.073 90.8468 193.316 90.9569 193.587 91.0288C193.862 91.0965 194.147 91.1304 194.444 91.1304C194.871 91.1304 195.233 91.0711 195.529 90.9526C195.825 90.8341 196.05 90.6649 196.202 90.4448C196.359 90.2248 196.437 89.9645 196.437 89.6641ZM203.102 90.8257V87.29C203.102 87.0192 203.047 86.7843 202.937 86.5854C202.831 86.3823 202.67 86.2257 202.454 86.1157C202.239 86.0057 201.972 85.9507 201.655 85.9507C201.358 85.9507 201.098 86.0015 200.874 86.103C200.654 86.2046 200.48 86.3379 200.353 86.5029C200.231 86.668 200.169 86.8457 200.169 87.0361H198.995C198.995 86.7907 199.058 86.5474 199.185 86.3062C199.312 86.0649 199.494 85.847 199.731 85.6523C199.972 85.4535 200.26 85.2969 200.595 85.1826C200.933 85.0641 201.31 85.0049 201.724 85.0049C202.224 85.0049 202.664 85.0895 203.045 85.2588C203.43 85.4281 203.73 85.6841 203.946 86.0269C204.166 86.3654 204.276 86.7907 204.276 87.3027V90.502C204.276 90.7305 204.295 90.9738 204.333 91.2319C204.376 91.4901 204.437 91.7122 204.517 91.8984V92H203.292C203.233 91.8646 203.187 91.6847 203.153 91.4604C203.119 91.2319 203.102 91.0203 203.102 90.8257ZM203.305 87.8359L203.318 88.6611H202.131C201.796 88.6611 201.498 88.6886 201.236 88.7437C200.973 88.7944 200.753 88.8727 200.576 88.9785C200.398 89.0843 200.262 89.2176 200.169 89.3784C200.076 89.535 200.03 89.7191 200.03 89.9307C200.03 90.1465 200.078 90.3433 200.176 90.521C200.273 90.6987 200.419 90.8405 200.614 90.9463C200.812 91.0479 201.056 91.0986 201.344 91.0986C201.703 91.0986 202.021 91.0225 202.296 90.8701C202.571 90.7178 202.789 90.5316 202.95 90.3115C203.115 90.0915 203.203 89.8778 203.216 89.6704L203.718 90.2354C203.688 90.4131 203.608 90.6099 203.476 90.8257C203.345 91.0415 203.17 91.2489 202.95 91.4478C202.734 91.6424 202.476 91.8053 202.175 91.9365C201.879 92.0635 201.545 92.127 201.172 92.127C200.707 92.127 200.298 92.036 199.947 91.854C199.6 91.672 199.329 91.4287 199.135 91.124C198.944 90.8151 198.849 90.4702 198.849 90.0894C198.849 89.7212 198.921 89.3975 199.065 89.1182C199.209 88.8346 199.416 88.5998 199.687 88.4136C199.958 88.2231 200.284 88.0793 200.664 87.9819C201.045 87.8846 201.471 87.8359 201.94 87.8359H203.305Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M54.3552 82.7578H55.5422L58.57 90.2925L61.5915 82.7578H62.7849L59.027 92H58.1003L54.3552 82.7578ZM53.968 82.7578H55.0153L55.1867 88.3945V92H53.968V82.7578ZM62.1184 82.7578H63.1657V92H61.947V88.3945L62.1184 82.7578ZM64.8288 88.6421V88.4961C64.8288 88.001 64.9007 87.5418 65.0446 87.1187C65.1885 86.6912 65.3959 86.321 65.6667 86.0078C65.9375 85.6904 66.2655 85.445 66.6506 85.2715C67.0357 85.0938 67.4673 85.0049 67.9455 85.0049C68.4279 85.0049 68.8617 85.0938 69.2468 85.2715C69.6361 85.445 69.9662 85.6904 70.237 86.0078C70.5121 86.321 70.7215 86.6912 70.8654 87.1187C71.0093 87.5418 71.0812 88.001 71.0812 88.4961V88.6421C71.0812 89.1372 71.0093 89.5964 70.8654 90.0195C70.7215 90.4427 70.5121 90.813 70.237 91.1304C69.9662 91.4435 69.6382 91.689 69.2531 91.8667C68.8723 92.0402 68.4406 92.127 67.9582 92.127C67.4758 92.127 67.042 92.0402 66.6569 91.8667C66.2718 91.689 65.9418 91.4435 65.6667 91.1304C65.3959 90.813 65.1885 90.4427 65.0446 90.0195C64.9007 89.5964 64.8288 89.1372 64.8288 88.6421ZM66.0031 88.4961V88.6421C66.0031 88.9849 66.0433 89.3086 66.1237 89.6133C66.2041 89.9137 66.3247 90.1803 66.4855 90.4131C66.6506 90.6458 66.8558 90.8299 67.1013 90.9653C67.3467 91.0965 67.6324 91.1621 67.9582 91.1621C68.2798 91.1621 68.5612 91.0965 68.8024 90.9653C69.0479 90.8299 69.251 90.6458 69.4118 90.4131C69.5726 90.1803 69.6932 89.9137 69.7736 89.6133C69.8583 89.3086 69.9006 88.9849 69.9006 88.6421V88.4961C69.9006 88.1576 69.8583 87.8381 69.7736 87.5376C69.6932 87.2329 69.5705 86.9642 69.4055 86.7314C69.2447 86.4945 69.0415 86.3083 68.7961 86.1729C68.5549 86.0374 68.2713 85.9697 67.9455 85.9697C67.6239 85.9697 67.3404 86.0374 67.0949 86.1729C66.8537 86.3083 66.6506 86.4945 66.4855 86.7314C66.3247 86.9642 66.2041 87.2329 66.1237 87.5376C66.0433 87.8381 66.0031 88.1576 66.0031 88.4961Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M110.886 89.207L112.721 82.7578H113.609L113.095 85.2651L111.121 92H110.239L110.886 89.207ZM108.988 82.7578L110.448 89.0801L110.886 92H110.01L107.769 82.7578H108.988ZM115.983 89.0737L117.411 82.7578H118.637L116.402 92H115.526L115.983 89.0737ZM113.742 82.7578L115.526 89.207L116.174 92H115.291L113.387 85.2651L112.867 82.7578H113.742ZM122.464 92.127C121.986 92.127 121.552 92.0465 121.163 91.8857C120.778 91.7207 120.446 91.4901 120.166 91.1938C119.891 90.8976 119.68 90.5464 119.532 90.1401C119.383 89.7339 119.309 89.2896 119.309 88.8071V88.5405C119.309 87.9819 119.392 87.4847 119.557 87.0488C119.722 86.6087 119.946 86.2363 120.23 85.9316C120.513 85.627 120.835 85.3963 121.195 85.2397C121.554 85.0832 121.927 85.0049 122.312 85.0049C122.803 85.0049 123.226 85.0895 123.581 85.2588C123.941 85.4281 124.235 85.665 124.464 85.9697C124.692 86.2702 124.861 86.6257 124.972 87.0361C125.082 87.4424 125.137 87.8867 125.137 88.3691V88.896H120.008V87.9375H123.962V87.8486C123.945 87.5439 123.882 87.2477 123.772 86.96C123.666 86.6722 123.497 86.4352 123.264 86.249C123.031 86.0628 122.714 85.9697 122.312 85.9697C122.045 85.9697 121.8 86.0269 121.576 86.1411C121.351 86.2511 121.159 86.4162 120.998 86.6362C120.837 86.8563 120.712 87.125 120.623 87.4424C120.534 87.7598 120.49 88.1258 120.49 88.5405V88.8071C120.49 89.133 120.534 89.4398 120.623 89.7275C120.716 90.0111 120.85 90.2607 121.023 90.4766C121.201 90.6924 121.415 90.8617 121.664 90.9844C121.918 91.1071 122.206 91.1685 122.528 91.1685C122.942 91.1685 123.294 91.0838 123.581 90.9146C123.869 90.7453 124.121 90.5189 124.337 90.2354L125.048 90.8003C124.9 91.0246 124.711 91.2383 124.483 91.4414C124.254 91.6445 123.973 91.8096 123.638 91.9365C123.308 92.0635 122.917 92.127 122.464 92.127Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M167.305 82.7578V92H166.08V82.7578H167.305ZM171.177 86.9155V87.9185H167.038V86.9155H171.177ZM171.805 82.7578V83.7607H167.038V82.7578H171.805ZM174.097 86.2109V92H172.922V85.1318H174.065L174.097 86.2109ZM176.242 85.0938L176.236 86.1855C176.138 86.1644 176.045 86.1517 175.956 86.1475C175.872 86.139 175.775 86.1348 175.664 86.1348C175.394 86.1348 175.155 86.1771 174.947 86.2617C174.74 86.3464 174.564 86.4648 174.42 86.6172C174.276 86.7695 174.162 86.9515 174.078 87.1631C173.997 87.3704 173.944 87.599 173.919 87.8486L173.589 88.0391C173.589 87.6243 173.629 87.235 173.709 86.8711C173.794 86.5072 173.923 86.1855 174.097 85.9062C174.27 85.6227 174.49 85.4027 174.757 85.2461C175.028 85.0853 175.349 85.0049 175.722 85.0049C175.806 85.0049 175.904 85.0155 176.014 85.0366C176.124 85.0535 176.2 85.0726 176.242 85.0938Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"160.002",y:"100",width:"20.9999",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.6777 115.035V116H28.6284V115.156L31.6562 111.785C32.0286 111.37 32.3164 111.019 32.5195 110.731C32.7269 110.439 32.8707 110.179 32.9511 109.951C33.0358 109.718 33.0781 109.481 33.0781 109.24C33.0781 108.935 33.0146 108.66 32.8877 108.415C32.7649 108.165 32.583 107.966 32.3418 107.818C32.1006 107.67 31.8086 107.596 31.4658 107.596C31.0553 107.596 30.7125 107.676 30.4375 107.837C30.1666 107.993 29.9635 108.214 29.8281 108.497C29.6927 108.781 29.625 109.106 29.625 109.475H28.4507C28.4507 108.954 28.5649 108.478 28.7934 108.046C29.0219 107.615 29.3605 107.272 29.8091 107.018C30.2576 106.76 30.8099 106.631 31.4658 106.631C32.0498 106.631 32.5491 106.735 32.9638 106.942C33.3786 107.145 33.6959 107.433 33.916 107.805C34.1403 108.173 34.2524 108.605 34.2524 109.1C34.2524 109.371 34.2059 109.646 34.1128 109.925C34.0239 110.2 33.8991 110.475 33.7383 110.75C33.5817 111.026 33.3976 111.296 33.186 111.563C32.9786 111.83 32.7565 112.092 32.5195 112.35L30.0439 115.035H34.6777ZM41.7617 113.499C41.7617 114.062 41.6305 114.54 41.3681 114.934C41.11 115.323 40.7588 115.619 40.3144 115.822C39.8743 116.025 39.3771 116.127 38.8227 116.127C38.2684 116.127 37.769 116.025 37.3247 115.822C36.8803 115.619 36.5291 115.323 36.271 114.934C36.0128 114.54 35.8838 114.062 35.8838 113.499C35.8838 113.131 35.9536 112.794 36.0932 112.49C36.2371 112.181 36.4381 111.912 36.6963 111.684C36.9586 111.455 37.2675 111.279 37.623 111.157C37.9827 111.03 38.3784 110.966 38.81 110.966C39.3771 110.966 39.8828 111.076 40.3271 111.296C40.7715 111.512 41.1206 111.811 41.3745 112.191C41.6326 112.572 41.7617 113.008 41.7617 113.499ZM40.581 113.474C40.581 113.131 40.507 112.828 40.3589 112.566C40.2107 112.299 40.0034 112.092 39.7368 111.944C39.4702 111.796 39.1613 111.722 38.81 111.722C38.4503 111.722 38.1393 111.796 37.8769 111.944C37.6188 112.092 37.4178 112.299 37.2739 112.566C37.13 112.828 37.0581 113.131 37.0581 113.474C37.0581 113.829 37.1279 114.134 37.2675 114.388C37.4114 114.637 37.6146 114.83 37.8769 114.965C38.1435 115.097 38.4588 115.162 38.8227 115.162C39.1867 115.162 39.4998 115.097 39.7622 114.965C40.0245 114.83 40.2256 114.637 40.3652 114.388C40.5091 114.134 40.581 113.829 40.581 113.474ZM41.5459 109.164C41.5459 109.612 41.4274 110.016 41.1904 110.376C40.9534 110.736 40.6297 111.019 40.2192 111.227C39.8087 111.434 39.3432 111.538 38.8227 111.538C38.2938 111.538 37.8219 111.434 37.4072 111.227C36.9967 111.019 36.6751 110.736 36.4424 110.376C36.2096 110.016 36.0932 109.612 36.0932 109.164C36.0932 108.626 36.2096 108.169 36.4424 107.792C36.6793 107.416 37.0031 107.128 37.4135 106.929C37.824 106.73 38.2916 106.631 38.8164 106.631C39.3453 106.631 39.8151 106.73 40.2256 106.929C40.636 107.128 40.9577 107.416 41.1904 107.792C41.4274 108.169 41.5459 108.626 41.5459 109.164ZM40.3716 109.183C40.3716 108.874 40.306 108.601 40.1748 108.364C40.0436 108.127 39.8616 107.941 39.6289 107.805C39.3961 107.666 39.1253 107.596 38.8164 107.596C38.5075 107.596 38.2366 107.661 38.0039 107.792C37.7754 107.919 37.5955 108.101 37.4643 108.338C37.3374 108.575 37.2739 108.857 37.2739 109.183C37.2739 109.5 37.3374 109.777 37.4643 110.014C37.5955 110.251 37.7775 110.435 38.0102 110.566C38.243 110.698 38.5138 110.763 38.8227 110.763C39.1316 110.763 39.4004 110.698 39.6289 110.566C39.8616 110.435 40.0436 110.251 40.1748 110.014C40.306 109.777 40.3716 109.5 40.3716 109.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M92.5573 115.035V116H86.508V115.156L89.5359 111.785C89.9083 111.37 90.196 111.019 90.3991 110.731C90.6065 110.439 90.7504 110.179 90.8308 109.951C90.9154 109.718 90.9577 109.481 90.9577 109.24C90.9577 108.935 90.8943 108.66 90.7673 108.415C90.6446 108.165 90.4626 107.966 90.2214 107.818C89.9802 107.67 89.6882 107.596 89.3454 107.596C88.9349 107.596 88.5922 107.676 88.3171 107.837C88.0463 107.993 87.8432 108.214 87.7077 108.497C87.5723 108.781 87.5046 109.106 87.5046 109.475H86.3303C86.3303 108.954 86.4446 108.478 86.6731 108.046C86.9016 107.615 87.2401 107.272 87.6887 107.018C88.1373 106.76 88.6895 106.631 89.3454 106.631C89.9294 106.631 90.4288 106.735 90.8435 106.942C91.2582 107.145 91.5756 107.433 91.7956 107.805C92.0199 108.173 92.1321 108.605 92.1321 109.1C92.1321 109.371 92.0855 109.646 91.9924 109.925C91.9035 110.2 91.7787 110.475 91.6179 110.75C91.4613 111.026 91.2772 111.296 91.0656 111.563C90.8583 111.83 90.6361 112.092 90.3991 112.35L87.9236 115.035H92.5573Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M146.97 112.89V113.854H140.292V113.163L144.431 106.758H145.389L144.361 108.611L141.625 112.89H146.97ZM145.681 106.758V116H144.507V106.758H145.681Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M199.452 106.745H199.554V107.742H199.452C198.83 107.742 198.309 107.843 197.89 108.046C197.472 108.245 197.139 108.514 196.894 108.853C196.648 109.187 196.471 109.563 196.361 109.982C196.255 110.401 196.202 110.827 196.202 111.258V112.617C196.202 113.027 196.251 113.391 196.348 113.708C196.445 114.022 196.579 114.286 196.748 114.502C196.917 114.718 197.108 114.881 197.319 114.991C197.535 115.101 197.759 115.156 197.992 115.156C198.263 115.156 198.504 115.105 198.716 115.003C198.927 114.898 199.105 114.752 199.249 114.565C199.397 114.375 199.509 114.151 199.585 113.893C199.661 113.634 199.7 113.351 199.7 113.042C199.7 112.767 199.666 112.502 199.598 112.249C199.53 111.99 199.427 111.762 199.287 111.563C199.147 111.36 198.972 111.201 198.76 111.087C198.553 110.968 198.305 110.909 198.017 110.909C197.692 110.909 197.387 110.99 197.103 111.15C196.824 111.307 196.593 111.514 196.411 111.772C196.234 112.026 196.132 112.304 196.107 112.604L195.485 112.598C195.544 112.124 195.654 111.72 195.815 111.385C195.98 111.047 196.183 110.772 196.424 110.56C196.67 110.344 196.943 110.188 197.243 110.09C197.548 109.989 197.869 109.938 198.208 109.938C198.669 109.938 199.067 110.025 199.401 110.198C199.736 110.372 200.011 110.604 200.226 110.896C200.442 111.184 200.601 111.51 200.702 111.874C200.808 112.234 200.861 112.604 200.861 112.985C200.861 113.421 200.8 113.829 200.677 114.21C200.554 114.591 200.37 114.925 200.125 115.213C199.884 115.501 199.585 115.725 199.23 115.886C198.874 116.047 198.462 116.127 197.992 116.127C197.493 116.127 197.057 116.025 196.684 115.822C196.312 115.615 196.003 115.34 195.758 114.997C195.512 114.654 195.328 114.273 195.205 113.854C195.083 113.436 195.021 113.01 195.021 112.579V112.026C195.021 111.375 195.087 110.736 195.218 110.109C195.349 109.483 195.576 108.916 195.897 108.408C196.223 107.9 196.674 107.496 197.249 107.196C197.825 106.895 198.559 106.745 199.452 106.745Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M63.2484 106.707V116H62.0741V108.173L59.7064 109.037V107.977L63.0643 106.707H63.2484Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M115.324 110.801H116.162C116.573 110.801 116.911 110.734 117.178 110.598C117.449 110.458 117.65 110.27 117.781 110.033C117.916 109.792 117.984 109.521 117.984 109.221C117.984 108.865 117.925 108.567 117.806 108.326C117.688 108.084 117.51 107.903 117.273 107.78C117.036 107.657 116.735 107.596 116.372 107.596C116.041 107.596 115.749 107.661 115.496 107.792C115.246 107.919 115.049 108.101 114.905 108.338C114.766 108.575 114.696 108.855 114.696 109.176H113.521C113.521 108.707 113.64 108.279 113.877 107.894C114.114 107.509 114.446 107.202 114.874 106.974C115.305 106.745 115.804 106.631 116.372 106.631C116.93 106.631 117.419 106.73 117.838 106.929C118.257 107.124 118.583 107.416 118.815 107.805C119.048 108.19 119.165 108.671 119.165 109.246C119.165 109.479 119.11 109.729 118.999 109.995C118.894 110.257 118.727 110.503 118.498 110.731C118.274 110.96 117.982 111.148 117.622 111.296C117.262 111.44 116.831 111.512 116.327 111.512H115.324V110.801ZM115.324 111.766V111.062H116.327C116.915 111.062 117.402 111.131 117.787 111.271C118.172 111.411 118.475 111.597 118.695 111.83C118.919 112.062 119.076 112.318 119.165 112.598C119.258 112.873 119.304 113.148 119.304 113.423C119.304 113.854 119.23 114.237 119.082 114.572C118.938 114.906 118.733 115.19 118.466 115.422C118.204 115.655 117.895 115.831 117.54 115.949C117.184 116.068 116.797 116.127 116.378 116.127C115.976 116.127 115.597 116.07 115.242 115.956C114.89 115.841 114.579 115.676 114.309 115.46C114.038 115.24 113.826 114.972 113.674 114.654C113.521 114.333 113.445 113.967 113.445 113.556H114.62C114.62 113.878 114.689 114.159 114.829 114.4C114.973 114.642 115.176 114.83 115.438 114.965C115.705 115.097 116.018 115.162 116.378 115.162C116.738 115.162 117.047 115.101 117.305 114.978C117.567 114.851 117.768 114.661 117.908 114.407C118.052 114.153 118.124 113.833 118.124 113.448C118.124 113.063 118.043 112.748 117.882 112.502C117.721 112.253 117.493 112.069 117.197 111.95C116.905 111.827 116.56 111.766 116.162 111.766H115.324Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M169.344 111.792L167.884 111.442L168.411 106.758H173.603V108.237H169.915L169.687 110.287C169.81 110.215 169.996 110.139 170.246 110.059C170.495 109.974 170.775 109.932 171.083 109.932C171.532 109.932 171.93 110.001 172.277 110.141C172.624 110.281 172.918 110.484 173.159 110.75C173.405 111.017 173.591 111.343 173.718 111.728C173.845 112.113 173.908 112.549 173.908 113.036C173.908 113.446 173.845 113.838 173.718 114.21C173.591 114.578 173.398 114.908 173.14 115.2C172.882 115.488 172.558 115.714 172.169 115.879C171.78 116.044 171.318 116.127 170.785 116.127C170.387 116.127 170.002 116.068 169.63 115.949C169.262 115.831 168.929 115.655 168.633 115.422C168.341 115.19 168.106 114.908 167.929 114.578C167.755 114.244 167.664 113.863 167.656 113.436H169.471C169.497 113.698 169.564 113.924 169.674 114.115C169.789 114.301 169.939 114.445 170.125 114.546C170.311 114.648 170.529 114.699 170.779 114.699C171.012 114.699 171.21 114.654 171.375 114.565C171.54 114.477 171.674 114.354 171.775 114.197C171.877 114.036 171.951 113.85 171.998 113.639C172.048 113.423 172.074 113.19 172.074 112.94C172.074 112.691 172.044 112.464 171.985 112.261C171.926 112.058 171.835 111.882 171.712 111.734C171.589 111.586 171.433 111.472 171.242 111.392C171.056 111.311 170.838 111.271 170.588 111.271C170.25 111.271 169.987 111.324 169.801 111.43C169.619 111.535 169.467 111.656 169.344 111.792Z",fill:"white"}),(0,h.createElement)("path",{d:"M38.2515 131.758V132.418L34.4238 141H33.186L37.0073 132.723H32.0054V131.758H38.2515Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M87.6686 140.016H87.7892C88.4663 140.016 89.0164 139.921 89.4396 139.73C89.8628 139.54 90.1886 139.284 90.4171 138.962C90.6456 138.641 90.8022 138.279 90.8868 137.877C90.9715 137.471 91.0138 137.054 91.0138 136.626V135.211C91.0138 134.792 90.9651 134.42 90.8678 134.094C90.7747 133.768 90.6435 133.495 90.4742 133.275C90.3092 133.055 90.1209 132.888 89.9093 132.773C89.6977 132.659 89.4734 132.602 89.2365 132.602C88.9656 132.602 88.7223 132.657 88.5065 132.767C88.2949 132.873 88.115 133.023 87.9669 133.218C87.823 133.412 87.713 133.641 87.6368 133.903C87.5607 134.166 87.5226 134.451 87.5226 134.76C87.5226 135.035 87.5564 135.302 87.6241 135.56C87.6919 135.818 87.7955 136.051 87.9352 136.258C88.0748 136.466 88.2483 136.631 88.4557 136.753C88.6673 136.872 88.9148 136.931 89.1984 136.931C89.4607 136.931 89.7062 136.88 89.9347 136.779C90.1674 136.673 90.3727 136.531 90.5504 136.354C90.7324 136.172 90.8763 135.966 90.9821 135.738C91.0921 135.509 91.1556 135.27 91.1725 135.021H91.7311C91.7311 135.372 91.6613 135.719 91.5216 136.062C91.3862 136.4 91.1958 136.709 90.9503 136.988C90.7049 137.268 90.4171 137.492 90.087 137.661C89.757 137.826 89.3973 137.909 89.0079 137.909C88.5509 137.909 88.1552 137.82 87.8209 137.642C87.4866 137.464 87.2115 137.227 86.9957 136.931C86.7841 136.635 86.6254 136.305 86.5197 135.941C86.4181 135.573 86.3673 135.2 86.3673 134.824C86.3673 134.384 86.4287 133.971 86.5514 133.586C86.6741 133.201 86.8561 132.862 87.0973 132.57C87.3385 132.274 87.6368 132.043 87.9923 131.878C88.352 131.713 88.7667 131.631 89.2365 131.631C89.7654 131.631 90.2161 131.737 90.5885 131.948C90.9609 132.16 91.2635 132.443 91.4962 132.799C91.7332 133.154 91.9067 133.554 92.0167 133.999C92.1268 134.443 92.1818 134.9 92.1818 135.37V135.795C92.1818 136.273 92.15 136.76 92.0865 137.255C92.0273 137.746 91.9109 138.215 91.7374 138.664C91.5682 139.113 91.3206 139.515 90.9948 139.87C90.6689 140.221 90.2436 140.501 89.7189 140.708C89.1984 140.911 88.5551 141.013 87.7892 141.013H87.6686V140.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M140.923 131.707V141H139.749V133.173L137.381 134.037V132.977L140.739 131.707H140.923ZM148.236 131.707V141H147.061V133.173L144.694 134.037V132.977L148.052 131.707H148.236Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M195.148 131.707V141H193.974V133.173L191.606 134.037V132.977L194.964 131.707H195.148ZM200.315 135.801H201.153C201.564 135.801 201.902 135.734 202.169 135.598C202.44 135.458 202.641 135.27 202.772 135.033C202.907 134.792 202.975 134.521 202.975 134.221C202.975 133.865 202.916 133.567 202.797 133.326C202.679 133.084 202.501 132.903 202.264 132.78C202.027 132.657 201.727 132.596 201.363 132.596C201.033 132.596 200.741 132.661 200.487 132.792C200.237 132.919 200.04 133.101 199.896 133.338C199.757 133.575 199.687 133.855 199.687 134.176H198.513C198.513 133.707 198.631 133.279 198.868 132.894C199.105 132.509 199.437 132.202 199.865 131.974C200.296 131.745 200.796 131.631 201.363 131.631C201.921 131.631 202.41 131.73 202.829 131.929C203.248 132.124 203.574 132.416 203.807 132.805C204.039 133.19 204.156 133.671 204.156 134.246C204.156 134.479 204.101 134.729 203.991 134.995C203.885 135.257 203.718 135.503 203.489 135.731C203.265 135.96 202.973 136.148 202.613 136.296C202.254 136.44 201.822 136.512 201.318 136.512H200.315V135.801ZM200.315 136.766V136.062H201.318C201.907 136.062 202.393 136.131 202.778 136.271C203.163 136.411 203.466 136.597 203.686 136.83C203.91 137.062 204.067 137.318 204.156 137.598C204.249 137.873 204.295 138.148 204.295 138.423C204.295 138.854 204.221 139.237 204.073 139.572C203.929 139.906 203.724 140.19 203.458 140.422C203.195 140.655 202.886 140.831 202.531 140.949C202.175 141.068 201.788 141.127 201.369 141.127C200.967 141.127 200.588 141.07 200.233 140.956C199.882 140.841 199.571 140.676 199.3 140.46C199.029 140.24 198.817 139.972 198.665 139.654C198.513 139.333 198.437 138.967 198.437 138.556H199.611C199.611 138.878 199.681 139.159 199.82 139.4C199.964 139.642 200.167 139.83 200.43 139.965C200.696 140.097 201.009 140.162 201.369 140.162C201.729 140.162 202.038 140.101 202.296 139.978C202.558 139.851 202.759 139.661 202.899 139.407C203.043 139.153 203.115 138.833 203.115 138.448C203.115 138.063 203.034 137.748 202.874 137.502C202.713 137.253 202.484 137.069 202.188 136.95C201.896 136.827 201.551 136.766 201.153 136.766H200.315Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M65.2155 138.499C65.2155 139.062 65.0843 139.54 64.8219 139.934C64.5638 140.323 64.2125 140.619 63.7682 140.822C63.3281 141.025 62.8309 141.127 62.2765 141.127C61.7221 141.127 61.2228 141.025 60.7784 140.822C60.3341 140.619 59.9829 140.323 59.7247 139.934C59.4666 139.54 59.3375 139.062 59.3375 138.499C59.3375 138.131 59.4074 137.794 59.547 137.49C59.6909 137.181 59.8919 136.912 60.15 136.684C60.4124 136.455 60.7213 136.279 61.0768 136.157C61.4365 136.03 61.8322 135.966 62.2638 135.966C62.8309 135.966 63.3365 136.076 63.7809 136.296C64.2252 136.512 64.5743 136.811 64.8282 137.191C65.0864 137.572 65.2155 138.008 65.2155 138.499ZM64.0348 138.474C64.0348 138.131 63.9607 137.828 63.8126 137.566C63.6645 137.299 63.4572 137.092 63.1906 136.944C62.924 136.796 62.615 136.722 62.2638 136.722C61.9041 136.722 61.5931 136.796 61.3307 136.944C61.0726 137.092 60.8715 137.299 60.7277 137.566C60.5838 137.828 60.5118 138.131 60.5118 138.474C60.5118 138.829 60.5817 139.134 60.7213 139.388C60.8652 139.637 61.0683 139.83 61.3307 139.965C61.5973 140.097 61.9126 140.162 62.2765 140.162C62.6404 140.162 62.9536 140.097 63.2159 139.965C63.4783 139.83 63.6793 139.637 63.819 139.388C63.9629 139.134 64.0348 138.829 64.0348 138.474ZM64.9996 134.164C64.9996 134.612 64.8811 135.016 64.6442 135.376C64.4072 135.736 64.0835 136.019 63.673 136.227C63.2625 136.434 62.797 136.538 62.2765 136.538C61.7475 136.538 61.2757 136.434 60.861 136.227C60.4505 136.019 60.1289 135.736 59.8961 135.376C59.6634 135.016 59.547 134.612 59.547 134.164C59.547 133.626 59.6634 133.169 59.8961 132.792C60.1331 132.416 60.4568 132.128 60.8673 131.929C61.2778 131.73 61.7454 131.631 62.2701 131.631C62.7991 131.631 63.2688 131.73 63.6793 131.929C64.0898 132.128 64.4114 132.416 64.6442 132.792C64.8811 133.169 64.9996 133.626 64.9996 134.164ZM63.8253 134.183C63.8253 133.874 63.7597 133.601 63.6285 133.364C63.4974 133.127 63.3154 132.941 63.0826 132.805C62.8499 132.666 62.5791 132.596 62.2701 132.596C61.9612 132.596 61.6904 132.661 61.4576 132.792C61.2291 132.919 61.0493 133.101 60.9181 133.338C60.7911 133.575 60.7277 133.857 60.7277 134.183C60.7277 134.5 60.7911 134.777 60.9181 135.014C61.0493 135.251 61.2312 135.435 61.464 135.566C61.6967 135.698 61.9676 135.763 62.2765 135.763C62.5854 135.763 62.8541 135.698 63.0826 135.566C63.3154 135.435 63.4974 135.251 63.6285 135.014C63.7597 134.777 63.8253 134.5 63.8253 134.183Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M113.813 131.707V141H112.638V133.173L110.271 134.037V132.977L113.628 131.707H113.813ZM123.067 135.643V137.052C123.067 137.809 123 138.448 122.864 138.969C122.729 139.489 122.534 139.908 122.28 140.226C122.026 140.543 121.72 140.774 121.36 140.917C121.004 141.057 120.602 141.127 120.154 141.127C119.798 141.127 119.47 141.083 119.17 140.994C118.869 140.905 118.599 140.763 118.357 140.568C118.12 140.369 117.917 140.111 117.748 139.794C117.579 139.477 117.45 139.091 117.361 138.639C117.272 138.186 117.228 137.657 117.228 137.052V135.643C117.228 134.885 117.295 134.25 117.431 133.738C117.57 133.226 117.767 132.816 118.021 132.507C118.275 132.194 118.58 131.969 118.935 131.834C119.295 131.699 119.697 131.631 120.141 131.631C120.501 131.631 120.831 131.675 121.131 131.764C121.436 131.849 121.707 131.986 121.944 132.177C122.181 132.363 122.382 132.613 122.547 132.926C122.716 133.235 122.845 133.613 122.934 134.062C123.023 134.511 123.067 135.037 123.067 135.643ZM121.887 137.242V135.446C121.887 135.031 121.861 134.667 121.811 134.354C121.764 134.037 121.694 133.766 121.601 133.542C121.508 133.317 121.389 133.135 121.246 132.996C121.106 132.856 120.943 132.754 120.757 132.691C120.575 132.623 120.37 132.589 120.141 132.589C119.862 132.589 119.614 132.642 119.398 132.748C119.183 132.85 119.001 133.013 118.853 133.237C118.709 133.461 118.599 133.755 118.522 134.119C118.446 134.483 118.408 134.925 118.408 135.446V137.242C118.408 137.657 118.431 138.023 118.478 138.34C118.529 138.658 118.603 138.933 118.7 139.166C118.798 139.394 118.916 139.582 119.056 139.73C119.195 139.879 119.356 139.989 119.538 140.061C119.724 140.128 119.93 140.162 120.154 140.162C120.442 140.162 120.693 140.107 120.909 139.997C121.125 139.887 121.305 139.716 121.449 139.483C121.597 139.246 121.707 138.943 121.779 138.575C121.851 138.203 121.887 137.758 121.887 137.242Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M168.036 131.707V141H166.861V133.173L164.494 134.037V132.977L167.852 131.707H168.036ZM177.545 140.035V141H171.495V140.156L174.523 136.785C174.895 136.37 175.183 136.019 175.386 135.731C175.594 135.439 175.738 135.179 175.818 134.951C175.903 134.718 175.945 134.481 175.945 134.24C175.945 133.935 175.881 133.66 175.755 133.415C175.632 133.165 175.45 132.966 175.209 132.818C174.967 132.67 174.675 132.596 174.333 132.596C173.922 132.596 173.579 132.676 173.304 132.837C173.033 132.993 172.83 133.214 172.695 133.497C172.56 133.781 172.492 134.106 172.492 134.475H171.318C171.318 133.954 171.432 133.478 171.66 133.046C171.889 132.615 172.227 132.272 172.676 132.018C173.124 131.76 173.677 131.631 174.333 131.631C174.917 131.631 175.416 131.735 175.831 131.942C176.245 132.145 176.563 132.433 176.783 132.805C177.007 133.173 177.119 133.605 177.119 134.1C177.119 134.371 177.073 134.646 176.98 134.925C176.891 135.2 176.766 135.475 176.605 135.75C176.449 136.026 176.264 136.296 176.053 136.563C175.846 136.83 175.623 137.092 175.386 137.35L172.911 140.035H177.545Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"223",y:"55",width:"23.5",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M232.376 60.7388V70H230.548V62.8462L228.352 63.5444V62.1035L232.179 60.7388H232.376ZM239.841 60.7388V70H238.013V62.8462L235.816 63.5444V62.1035L239.644 60.7388H239.841Z",fill:"white"}),(0,h.createElement)("rect",{x:"249.5",y:"55",width:"23.5",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M260.742 68.5718V70H254.42V68.7812L257.41 65.5757C257.71 65.2414 257.947 64.9473 258.121 64.6934C258.294 64.4352 258.419 64.2046 258.495 64.0015C258.576 63.7941 258.616 63.5973 258.616 63.4111C258.616 63.1318 258.569 62.8927 258.476 62.6938C258.383 62.4907 258.245 62.3341 258.063 62.2241C257.886 62.1141 257.666 62.0591 257.403 62.0591C257.124 62.0591 256.883 62.1268 256.68 62.2622C256.481 62.3976 256.328 62.5859 256.223 62.8271C256.121 63.0684 256.07 63.3413 256.07 63.646H254.236C254.236 63.0959 254.367 62.5923 254.629 62.1353C254.892 61.674 255.262 61.3079 255.74 61.0371C256.218 60.762 256.785 60.6245 257.441 60.6245C258.089 60.6245 258.635 60.7303 259.079 60.9419C259.528 61.1493 259.866 61.4497 260.095 61.8433C260.327 62.2326 260.444 62.6981 260.444 63.2397C260.444 63.5444 260.395 63.8428 260.298 64.1348C260.201 64.4225 260.061 64.7103 259.879 64.998C259.701 65.2816 259.485 65.5693 259.231 65.8613C258.978 66.1533 258.696 66.4559 258.387 66.769L256.781 68.5718H260.742ZM268.163 60.7578V61.7417L264.589 70H262.659L266.233 62.186H261.631V60.7578H268.163Z",fill:"white"}),(0,h.createElement)("path",{d:"M232.065 86.707V96H230.891V88.1733L228.523 89.0366V87.9766L231.881 86.707H232.065ZM241.574 95.0352V96H235.524V95.1558L238.552 91.7852C238.925 91.3704 239.212 91.0192 239.416 90.7314C239.623 90.4395 239.767 90.1792 239.847 89.9507C239.932 89.7179 239.974 89.481 239.974 89.2397C239.974 88.9351 239.911 88.66 239.784 88.4146C239.661 88.1649 239.479 87.966 239.238 87.8179C238.997 87.6698 238.705 87.5957 238.362 87.5957C237.951 87.5957 237.609 87.6761 237.333 87.8369C237.063 87.9935 236.86 88.2135 236.724 88.4971C236.589 88.7806 236.521 89.1064 236.521 89.4746H235.347C235.347 88.9541 235.461 88.478 235.689 88.0464C235.918 87.6147 236.257 87.272 236.705 87.0181C237.154 86.7599 237.706 86.6309 238.362 86.6309C238.946 86.6309 239.445 86.7345 239.86 86.9419C240.275 87.145 240.592 87.4328 240.812 87.8052C241.036 88.1733 241.148 88.605 241.148 89.1001C241.148 89.3709 241.102 89.646 241.009 89.9253C240.92 90.2004 240.795 90.4754 240.634 90.7505C240.478 91.0256 240.294 91.2964 240.082 91.563C239.875 91.8296 239.653 92.092 239.416 92.3501L236.94 95.0352H241.574Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.761 95.0352V96H254.712V95.1558L257.74 91.7852C258.112 91.3704 258.4 91.0192 258.603 90.7314C258.81 90.4395 258.954 90.1792 259.035 89.9507C259.119 89.7179 259.162 89.481 259.162 89.2397C259.162 88.9351 259.098 88.66 258.971 88.4146C258.848 88.1649 258.667 87.966 258.425 87.8179C258.184 87.6698 257.892 87.5957 257.549 87.5957C257.139 87.5957 256.796 87.6761 256.521 87.8369C256.25 87.9935 256.047 88.2135 255.912 88.4971C255.776 88.7806 255.708 89.1064 255.708 89.4746H254.534C254.534 88.9541 254.648 88.478 254.877 88.0464C255.105 87.6147 255.444 87.272 255.893 87.0181C256.341 86.7599 256.893 86.6309 257.549 86.6309C258.133 86.6309 258.633 86.7345 259.047 86.9419C259.462 87.145 259.779 87.4328 260 87.8052C260.224 88.1733 260.336 88.605 260.336 89.1001C260.336 89.3709 260.289 89.646 260.196 89.9253C260.107 90.2004 259.983 90.4754 259.822 90.7505C259.665 91.0256 259.481 91.2964 259.27 91.563C259.062 91.8296 258.84 92.092 258.603 92.3501L256.127 95.0352H260.761ZM267.845 93.499C267.845 94.0618 267.714 94.54 267.452 94.9336C267.194 95.3229 266.842 95.6191 266.398 95.8223C265.958 96.0254 265.461 96.127 264.906 96.127C264.352 96.127 263.853 96.0254 263.408 95.8223C262.964 95.6191 262.613 95.3229 262.354 94.9336C262.096 94.54 261.967 94.0618 261.967 93.499C261.967 93.1309 262.037 92.7944 262.177 92.4897C262.321 92.1808 262.522 91.9121 262.78 91.6836C263.042 91.4551 263.351 91.2795 263.707 91.1567C264.066 91.0298 264.462 90.9663 264.894 90.9663C265.461 90.9663 265.966 91.0763 266.411 91.2964C266.855 91.5122 267.204 91.8105 267.458 92.1914C267.716 92.5723 267.845 93.0081 267.845 93.499ZM266.665 93.4736C266.665 93.1309 266.59 92.8283 266.442 92.5659C266.294 92.2993 266.087 92.092 265.82 91.9438C265.554 91.7957 265.245 91.7217 264.894 91.7217C264.534 91.7217 264.223 91.7957 263.96 91.9438C263.702 92.092 263.501 92.2993 263.357 92.5659C263.214 92.8283 263.142 93.1309 263.142 93.4736C263.142 93.8291 263.211 94.1338 263.351 94.3877C263.495 94.6374 263.698 94.8299 263.96 94.9653C264.227 95.0965 264.542 95.1621 264.906 95.1621C265.27 95.1621 265.583 95.0965 265.846 94.9653C266.108 94.8299 266.309 94.6374 266.449 94.3877C266.593 94.1338 266.665 93.8291 266.665 93.4736ZM267.629 89.1636C267.629 89.6121 267.511 90.0163 267.274 90.376C267.037 90.7357 266.713 91.0192 266.303 91.2266C265.892 91.4339 265.427 91.5376 264.906 91.5376C264.377 91.5376 263.905 91.4339 263.491 91.2266C263.08 91.0192 262.759 90.7357 262.526 90.376C262.293 90.0163 262.177 89.6121 262.177 89.1636C262.177 88.6261 262.293 88.1691 262.526 87.7925C262.763 87.4159 263.087 87.1281 263.497 86.9292C263.908 86.7303 264.375 86.6309 264.9 86.6309C265.429 86.6309 265.899 86.7303 266.309 86.9292C266.72 87.1281 267.041 87.4159 267.274 87.7925C267.511 88.1691 267.629 88.6261 267.629 89.1636ZM266.455 89.1826C266.455 88.8737 266.389 88.6007 266.258 88.3638C266.127 88.1268 265.945 87.9406 265.712 87.8052C265.48 87.6655 265.209 87.5957 264.9 87.5957C264.591 87.5957 264.32 87.6613 264.087 87.7925C263.859 87.9194 263.679 88.1014 263.548 88.3384C263.421 88.5754 263.357 88.8568 263.357 89.1826C263.357 89.5 263.421 89.7772 263.548 90.0142C263.679 90.2511 263.861 90.4352 264.094 90.5664C264.326 90.6976 264.597 90.7632 264.906 90.7632C265.215 90.7632 265.484 90.6976 265.712 90.5664C265.945 90.4352 266.127 90.2511 266.258 90.0142C266.389 89.7772 266.455 89.5 266.455 89.1826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M232.065 110.707V120H230.891V112.173L228.523 113.037V111.977L231.881 110.707H232.065ZM237.232 114.801H238.07C238.48 114.801 238.819 114.734 239.085 114.598C239.356 114.458 239.557 114.27 239.688 114.033C239.824 113.792 239.892 113.521 239.892 113.221C239.892 112.865 239.832 112.567 239.714 112.326C239.595 112.084 239.418 111.903 239.181 111.78C238.944 111.657 238.643 111.596 238.279 111.596C237.949 111.596 237.657 111.661 237.403 111.792C237.154 111.919 236.957 112.101 236.813 112.338C236.673 112.575 236.604 112.855 236.604 113.176H235.429C235.429 112.707 235.548 112.279 235.785 111.894C236.022 111.509 236.354 111.202 236.781 110.974C237.213 110.745 237.712 110.631 238.279 110.631C238.838 110.631 239.327 110.73 239.746 110.929C240.165 111.124 240.49 111.416 240.723 111.805C240.956 112.19 241.072 112.671 241.072 113.246C241.072 113.479 241.017 113.729 240.907 113.995C240.801 114.257 240.634 114.503 240.406 114.731C240.181 114.96 239.889 115.148 239.53 115.296C239.17 115.44 238.738 115.512 238.235 115.512H237.232V114.801ZM237.232 115.766V115.062H238.235C238.823 115.062 239.31 115.131 239.695 115.271C240.08 115.411 240.382 115.597 240.603 115.83C240.827 116.062 240.983 116.318 241.072 116.598C241.165 116.873 241.212 117.148 241.212 117.423C241.212 117.854 241.138 118.237 240.99 118.572C240.846 118.906 240.641 119.19 240.374 119.422C240.112 119.655 239.803 119.831 239.447 119.949C239.092 120.068 238.705 120.127 238.286 120.127C237.884 120.127 237.505 120.07 237.149 119.956C236.798 119.841 236.487 119.676 236.216 119.46C235.945 119.24 235.734 118.972 235.582 118.654C235.429 118.333 235.353 117.967 235.353 117.556H236.527C236.527 117.878 236.597 118.159 236.737 118.4C236.881 118.642 237.084 118.83 237.346 118.965C237.613 119.097 237.926 119.162 238.286 119.162C238.645 119.162 238.954 119.101 239.212 118.978C239.475 118.851 239.676 118.661 239.815 118.407C239.959 118.153 240.031 117.833 240.031 117.448C240.031 117.063 239.951 116.748 239.79 116.502C239.629 116.253 239.401 116.069 239.104 115.95C238.812 115.827 238.468 115.766 238.07 115.766H237.232Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M260.761 119.035V120H254.712V119.156L257.74 115.785C258.112 115.37 258.4 115.019 258.603 114.731C258.81 114.439 258.954 114.179 259.035 113.951C259.119 113.718 259.162 113.481 259.162 113.24C259.162 112.935 259.098 112.66 258.971 112.415C258.848 112.165 258.667 111.966 258.425 111.818C258.184 111.67 257.892 111.596 257.549 111.596C257.139 111.596 256.796 111.676 256.521 111.837C256.25 111.993 256.047 112.214 255.912 112.497C255.776 112.781 255.708 113.106 255.708 113.475H254.534C254.534 112.954 254.648 112.478 254.877 112.046C255.105 111.615 255.444 111.272 255.893 111.018C256.341 110.76 256.893 110.631 257.549 110.631C258.133 110.631 258.633 110.735 259.047 110.942C259.462 111.145 259.779 111.433 260 111.805C260.224 112.173 260.336 112.605 260.336 113.1C260.336 113.371 260.289 113.646 260.196 113.925C260.107 114.2 259.983 114.475 259.822 114.75C259.665 115.026 259.481 115.296 259.27 115.563C259.062 115.83 258.84 116.092 258.603 116.35L256.127 119.035H260.761ZM263.186 119.016H263.307C263.984 119.016 264.534 118.921 264.957 118.73C265.38 118.54 265.706 118.284 265.935 117.962C266.163 117.641 266.32 117.279 266.404 116.877C266.489 116.471 266.531 116.054 266.531 115.626V114.211C266.531 113.792 266.483 113.42 266.385 113.094C266.292 112.768 266.161 112.495 265.992 112.275C265.827 112.055 265.638 111.888 265.427 111.773C265.215 111.659 264.991 111.602 264.754 111.602C264.483 111.602 264.24 111.657 264.024 111.767C263.812 111.873 263.632 112.023 263.484 112.218C263.34 112.412 263.23 112.641 263.154 112.903C263.078 113.166 263.04 113.451 263.04 113.76C263.04 114.035 263.074 114.302 263.142 114.56C263.209 114.818 263.313 115.051 263.453 115.258C263.592 115.466 263.766 115.631 263.973 115.753C264.185 115.872 264.432 115.931 264.716 115.931C264.978 115.931 265.224 115.88 265.452 115.779C265.685 115.673 265.89 115.531 266.068 115.354C266.25 115.172 266.394 114.966 266.5 114.738C266.61 114.509 266.673 114.27 266.69 114.021H267.249C267.249 114.372 267.179 114.719 267.039 115.062C266.904 115.4 266.713 115.709 266.468 115.988C266.222 116.268 265.935 116.492 265.604 116.661C265.274 116.826 264.915 116.909 264.525 116.909C264.068 116.909 263.673 116.82 263.338 116.642C263.004 116.464 262.729 116.227 262.513 115.931C262.302 115.635 262.143 115.305 262.037 114.941C261.936 114.573 261.885 114.2 261.885 113.824C261.885 113.384 261.946 112.971 262.069 112.586C262.192 112.201 262.374 111.862 262.615 111.57C262.856 111.274 263.154 111.043 263.51 110.878C263.869 110.713 264.284 110.631 264.754 110.631C265.283 110.631 265.734 110.737 266.106 110.948C266.478 111.16 266.781 111.443 267.014 111.799C267.251 112.154 267.424 112.554 267.534 112.999C267.644 113.443 267.699 113.9 267.699 114.37V114.795C267.699 115.273 267.667 115.76 267.604 116.255C267.545 116.746 267.428 117.215 267.255 117.664C267.086 118.113 266.838 118.515 266.512 118.87C266.186 119.221 265.761 119.501 265.236 119.708C264.716 119.911 264.073 120.013 263.307 120.013H263.186V119.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M231.858 134.492V144.5H230.594V136.071L228.044 137.001V135.859L231.66 134.492H231.858ZM242.304 141.15V142.189H235.112V141.444L239.569 134.547H240.602L239.494 136.543L236.548 141.15H242.304ZM240.916 134.547V144.5H239.651V134.547H240.916Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M256.048 138.901H256.95C257.392 138.901 257.757 138.828 258.044 138.683C258.336 138.532 258.552 138.329 258.693 138.074C258.839 137.814 258.912 137.523 258.912 137.199C258.912 136.816 258.848 136.495 258.721 136.235C258.593 135.976 258.402 135.78 258.146 135.647C257.891 135.515 257.568 135.449 257.176 135.449C256.82 135.449 256.506 135.52 256.232 135.661C255.964 135.798 255.752 135.994 255.597 136.249C255.446 136.504 255.371 136.805 255.371 137.151H254.106C254.106 136.646 254.234 136.185 254.489 135.771C254.744 135.356 255.102 135.025 255.562 134.779C256.027 134.533 256.565 134.41 257.176 134.41C257.777 134.41 258.304 134.517 258.755 134.731C259.206 134.941 259.557 135.256 259.808 135.675C260.058 136.09 260.184 136.607 260.184 137.227C260.184 137.477 260.124 137.746 260.006 138.033C259.892 138.316 259.712 138.58 259.466 138.826C259.224 139.072 258.91 139.275 258.522 139.435C258.135 139.59 257.67 139.667 257.128 139.667H256.048V138.901ZM256.048 139.94V139.182H257.128C257.761 139.182 258.285 139.257 258.7 139.407C259.115 139.558 259.441 139.758 259.678 140.009C259.919 140.259 260.088 140.535 260.184 140.836C260.284 141.132 260.334 141.428 260.334 141.725C260.334 142.189 260.254 142.602 260.095 142.962C259.94 143.322 259.719 143.627 259.432 143.878C259.149 144.129 258.816 144.318 258.434 144.445C258.051 144.573 257.634 144.637 257.183 144.637C256.75 144.637 256.342 144.575 255.959 144.452C255.581 144.329 255.246 144.151 254.954 143.919C254.662 143.682 254.435 143.393 254.271 143.051C254.106 142.704 254.024 142.31 254.024 141.868H255.289C255.289 142.215 255.364 142.518 255.515 142.777C255.67 143.037 255.888 143.24 256.171 143.386C256.458 143.527 256.795 143.598 257.183 143.598C257.57 143.598 257.903 143.532 258.181 143.399C258.463 143.263 258.68 143.058 258.83 142.784C258.985 142.511 259.062 142.167 259.062 141.752C259.062 141.337 258.976 140.998 258.803 140.733C258.63 140.465 258.383 140.266 258.064 140.139C257.75 140.007 257.379 139.94 256.95 139.94H256.048ZM268.325 138.73V140.248C268.325 141.064 268.252 141.752 268.106 142.312C267.961 142.873 267.751 143.324 267.478 143.666C267.204 144.008 266.874 144.256 266.486 144.411C266.104 144.562 265.671 144.637 265.188 144.637C264.805 144.637 264.451 144.589 264.128 144.493C263.804 144.397 263.513 144.245 263.253 144.035C262.998 143.821 262.779 143.543 262.597 143.201C262.414 142.859 262.275 142.445 262.18 141.957C262.084 141.469 262.036 140.9 262.036 140.248V138.73C262.036 137.915 262.109 137.231 262.255 136.68C262.405 136.128 262.617 135.686 262.891 135.354C263.164 135.016 263.492 134.775 263.875 134.629C264.262 134.483 264.695 134.41 265.174 134.41C265.561 134.41 265.917 134.458 266.24 134.554C266.568 134.645 266.86 134.793 267.115 134.998C267.37 135.199 267.587 135.467 267.765 135.805C267.947 136.137 268.086 136.545 268.182 137.028C268.277 137.511 268.325 138.079 268.325 138.73ZM267.054 140.453V138.519C267.054 138.072 267.026 137.68 266.972 137.343C266.922 137.001 266.846 136.709 266.746 136.468C266.646 136.226 266.518 136.03 266.363 135.88C266.213 135.729 266.037 135.62 265.837 135.552C265.641 135.479 265.42 135.442 265.174 135.442C264.873 135.442 264.606 135.499 264.374 135.613C264.142 135.723 263.946 135.898 263.786 136.14C263.631 136.381 263.513 136.698 263.431 137.09C263.349 137.482 263.308 137.958 263.308 138.519V140.453C263.308 140.9 263.333 141.294 263.383 141.636C263.438 141.978 263.517 142.274 263.622 142.524C263.727 142.771 263.854 142.973 264.005 143.133C264.155 143.292 264.328 143.411 264.524 143.488C264.725 143.561 264.946 143.598 265.188 143.598C265.497 143.598 265.769 143.538 266.001 143.42C266.233 143.301 266.427 143.117 266.582 142.866C266.742 142.611 266.86 142.285 266.938 141.889C267.015 141.488 267.054 141.009 267.054 140.453Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1425"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1425"},(0,h.createElement)("rect",{width:"13",height:"13",fill:"white",transform:"translate(96 59)"})))),{ToolBarFields:ir,BlockName:or,BlockLabel:sr,BlockDescription:cr,BlockAdvancedValue:dr,AdvancedFields:mr,FieldWrapper:ur,FieldSettingsWrapper:pr,AdvancedInspectorControl:fr,ValidationToggleGroup:Vr,ValidationBlockMessage:Hr,ClientSideMacros:hr,AttributeHelp:br}=JetFBComponents,{useInsertMacro:Mr,useIsAdvancedValidation:Lr,useUniqueNameOnDuplicate:gr}=JetFBHooks,{__:Zr}=wp.i18n,{InspectorControls:yr,useBlockProps:Er}=wp.blockEditor,{TextControl:wr,ToggleControl:vr,PanelBody:_r,ExternalLink:kr}=wp.components,jr=JSON.parse('{"apiVersion":3,"name":"jet-forms/datetime-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","date"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Datetime Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"is_timestamp":{"type":"boolean","default":false},"min":{"type":"string","default":""},"max":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:xr}=wp.i18n,{createBlock:Fr}=wp.blocks,{name:Br,icon:Ar=""}=jr,Pr={className:Br.replace("/","-"),icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ar}}),description:xr("Type in the date and time manually following the input mask or choose the values from the calendar and timer.","jet-form-builder"),edit:function(e){const C=Er(),[t,l]=Mr("min"),[r,n]=Mr("max"),{attributes:a,setAttributes:i,isSelected:o,editProps:{uniqKey:s,attrHelp:c}}=e,d=Lr();if(gr(),a.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},ar);const m=(0,h.createElement)(h.Fragment,null,Zr("Plain date should be in yyyy-MM-ddThh:mm format.","jet-form-builder")," ",Zr("Or you can use","jet-form-builder")," ",(0,h.createElement)(kr,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},Zr("macros","jet-form-builder"))," ",Zr("and","jet-form-builder")," ",(0,h.createElement)(kr,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},Zr("filters","jet-form-builder")),".");return[(0,h.createElement)(ir,{key:s("ToolBarFields"),...e}),o&&(0,h.createElement)(yr,{key:s("InspectorControls")},(0,h.createElement)(_r,{title:Zr("General","jet-form-builder")},(0,h.createElement)(sr,null),(0,h.createElement)(or,null),(0,h.createElement)(cr,null)),(0,h.createElement)(_r,{title:Zr("Value","jet-form-builder")},(0,h.createElement)(dr,{help:m,style:{marginBottom:"1em"}}),(0,h.createElement)(hr,null,(0,h.createElement)(fr,{value:a.min,label:Zr("Starting from date","jet-form-builder"),onChangePreset:e=>i({min:e}),onChangeMacros:l},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(wr,{id:e,ref:t,className:"jet-fb m-unset",value:a.min,onChange:e=>i({min:e})}),(0,h.createElement)(br,null,m))),(0,h.createElement)(fr,{value:a.max,label:Zr("Limit dates to","jet-form-builder"),onChangePreset:e=>i({max:e}),onChangeMacros:n},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(wr,{id:e,ref:r,className:"jet-fb m-unset",value:a.max,onChange:e=>i({max:e})}),(0,h.createElement)(br,null,m))))),(0,h.createElement)(pr,{...e},(0,h.createElement)(vr,{key:s("is_timestamp"),label:Zr("Is Timestamp","jet-form-builder"),checked:a.is_timestamp,help:c("is_timestamp"),onChange:e=>{i({is_timestamp:Boolean(e)})}})),(0,h.createElement)(_r,{title:Zr("Validation","jet-form-builder")},(0,h.createElement)(Vr,null),d&&(0,h.createElement)(h.Fragment,null,Boolean(a.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Hr,{name:"date_min"})),Boolean(a.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Hr,{name:"date_max"})),(0,h.createElement)(Hr,{name:"empty"}))),(0,h.createElement)(mr,null)),(0,h.createElement)("div",{...C,key:s("viewBlock")},(0,h.createElement)(ur,{key:s("FieldWrapper"),...e},(0,h.createElement)(wr,{onChange:()=>{},className:"jet-form-builder__field-preview",key:s("place_holder_block"),placeholder:'Input type="datetime-local"'})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Fr("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/time-field","jet-forms/date-field"],transform:e=>Fr(Br,{...e}),priority:0}]}},Sr=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M0 0H298V144H0V0Z",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M23.5107 33.5439V37.1875C23.3877 37.3698 23.1917 37.5749 22.9229 37.8027C22.654 38.026 22.2826 38.222 21.8086 38.3906C21.3392 38.5547 20.7331 38.6367 19.9902 38.6367C19.3841 38.6367 18.8258 38.5319 18.3154 38.3223C17.8096 38.1081 17.3698 37.7982 16.9961 37.3926C16.627 36.9824 16.3398 36.4857 16.1348 35.9023C15.9342 35.3145 15.834 34.6491 15.834 33.9062V33.1338C15.834 32.391 15.9206 31.7279 16.0938 31.1445C16.2715 30.5612 16.5312 30.0667 16.873 29.6611C17.2148 29.251 17.6341 28.9411 18.1309 28.7314C18.6276 28.5173 19.1973 28.4102 19.8398 28.4102C20.6009 28.4102 21.2367 28.5423 21.7471 28.8066C22.262 29.0664 22.6631 29.4264 22.9502 29.8867C23.2419 30.347 23.4287 30.8711 23.5107 31.459H22.1914C22.1322 31.099 22.0137 30.7708 21.8359 30.4746C21.6628 30.1784 21.4144 29.9414 21.0908 29.7637C20.7673 29.5814 20.3503 29.4902 19.8398 29.4902C19.3796 29.4902 18.9808 29.5745 18.6436 29.7432C18.3063 29.9118 18.0283 30.1533 17.8096 30.4678C17.5908 30.7822 17.4268 31.1628 17.3174 31.6094C17.2126 32.056 17.1602 32.5596 17.1602 33.1201V33.9062C17.1602 34.4805 17.2262 34.9932 17.3584 35.4443C17.4951 35.8955 17.6888 36.2806 17.9395 36.5996C18.1901 36.9141 18.4886 37.1533 18.835 37.3174C19.1859 37.4814 19.5732 37.5635 19.9971 37.5635C20.4665 37.5635 20.847 37.5247 21.1387 37.4473C21.4303 37.3652 21.6582 37.2695 21.8223 37.1602C21.9863 37.0462 22.1117 36.9391 22.1982 36.8389V34.6104H19.8945V33.5439H23.5107ZM28.5762 38.6367C28.0612 38.6367 27.5941 38.5501 27.1748 38.377C26.7601 38.1992 26.4023 37.9508 26.1016 37.6318C25.8053 37.3128 25.5775 36.9346 25.418 36.4971C25.2585 36.0596 25.1787 35.5811 25.1787 35.0615V34.7744C25.1787 34.1729 25.2676 33.6374 25.4453 33.168C25.623 32.694 25.8646 32.293 26.1699 31.9648C26.4753 31.6367 26.8216 31.3883 27.209 31.2197C27.5964 31.0511 27.9974 30.9668 28.4121 30.9668C28.9408 30.9668 29.3965 31.0579 29.7793 31.2402C30.1667 31.4225 30.4834 31.6777 30.7295 32.0059C30.9756 32.3294 31.1579 32.7122 31.2764 33.1543C31.3949 33.5918 31.4541 34.0703 31.4541 34.5898V35.1572H25.9307V34.125H30.1895V34.0293C30.1712 33.7012 30.1029 33.3822 29.9844 33.0723C29.8704 32.7624 29.6882 32.5072 29.4375 32.3066C29.1868 32.1061 28.8451 32.0059 28.4121 32.0059C28.125 32.0059 27.8607 32.0674 27.6191 32.1904C27.3776 32.3089 27.1702 32.4867 26.9971 32.7236C26.8239 32.9606 26.6895 33.25 26.5938 33.5918C26.498 33.9336 26.4502 34.3278 26.4502 34.7744V35.0615C26.4502 35.4124 26.498 35.7428 26.5938 36.0527C26.694 36.3581 26.8376 36.627 27.0244 36.8594C27.2158 37.0918 27.446 37.2741 27.7148 37.4062C27.9883 37.5384 28.2982 37.6045 28.6445 37.6045C29.0911 37.6045 29.4694 37.5133 29.7793 37.3311C30.0892 37.1488 30.3604 36.9049 30.5928 36.5996L31.3584 37.208C31.1989 37.4495 30.9961 37.6797 30.75 37.8984C30.5039 38.1172 30.2008 38.2949 29.8408 38.4316C29.4854 38.5684 29.0638 38.6367 28.5762 38.6367ZM34.1953 32.6826V38.5H32.9307V31.1035H34.127L34.1953 32.6826ZM33.8945 34.5215L33.3682 34.501C33.3727 33.9951 33.4479 33.528 33.5938 33.0996C33.7396 32.6667 33.9447 32.2907 34.209 31.9717C34.4733 31.6527 34.7878 31.4066 35.1523 31.2334C35.5215 31.0557 35.9294 30.9668 36.376 30.9668C36.7406 30.9668 37.0687 31.0169 37.3604 31.1172C37.652 31.2129 37.9004 31.3678 38.1055 31.582C38.3151 31.7962 38.4746 32.0742 38.584 32.416C38.6934 32.7533 38.748 33.1657 38.748 33.6533V38.5H37.4766V33.6396C37.4766 33.2523 37.4196 32.9424 37.3057 32.71C37.1917 32.473 37.0254 32.3021 36.8066 32.1973C36.5879 32.0879 36.319 32.0332 36 32.0332C35.6855 32.0332 35.3984 32.0993 35.1387 32.2314C34.8835 32.3636 34.6624 32.5459 34.4756 32.7783C34.2933 33.0107 34.1497 33.2773 34.0449 33.5781C33.9447 33.8743 33.8945 34.1888 33.8945 34.5215ZM43.7383 38.6367C43.2233 38.6367 42.7562 38.5501 42.3369 38.377C41.9222 38.1992 41.5645 37.9508 41.2637 37.6318C40.9674 37.3128 40.7396 36.9346 40.5801 36.4971C40.4206 36.0596 40.3408 35.5811 40.3408 35.0615V34.7744C40.3408 34.1729 40.4297 33.6374 40.6074 33.168C40.7852 32.694 41.0267 32.293 41.332 31.9648C41.6374 31.6367 41.9837 31.3883 42.3711 31.2197C42.7585 31.0511 43.1595 30.9668 43.5742 30.9668C44.1029 30.9668 44.5586 31.0579 44.9414 31.2402C45.3288 31.4225 45.6455 31.6777 45.8916 32.0059C46.1377 32.3294 46.32 32.7122 46.4385 33.1543C46.557 33.5918 46.6162 34.0703 46.6162 34.5898V35.1572H41.0928V34.125H45.3516V34.0293C45.3333 33.7012 45.265 33.3822 45.1465 33.0723C45.0326 32.7624 44.8503 32.5072 44.5996 32.3066C44.349 32.1061 44.0072 32.0059 43.5742 32.0059C43.2871 32.0059 43.0228 32.0674 42.7812 32.1904C42.5397 32.3089 42.3324 32.4867 42.1592 32.7236C41.986 32.9606 41.8516 33.25 41.7559 33.5918C41.6602 33.9336 41.6123 34.3278 41.6123 34.7744V35.0615C41.6123 35.4124 41.6602 35.7428 41.7559 36.0527C41.8561 36.3581 41.9997 36.627 42.1865 36.8594C42.3779 37.0918 42.6081 37.2741 42.877 37.4062C43.1504 37.5384 43.4603 37.6045 43.8066 37.6045C44.2533 37.6045 44.6315 37.5133 44.9414 37.3311C45.2513 37.1488 45.5225 36.9049 45.7549 36.5996L46.5205 37.208C46.361 37.4495 46.1582 37.6797 45.9121 37.8984C45.666 38.1172 45.363 38.2949 45.0029 38.4316C44.6475 38.5684 44.2259 38.6367 43.7383 38.6367ZM49.3574 32.2656V38.5H48.0928V31.1035H49.3232L49.3574 32.2656ZM51.668 31.0625L51.6611 32.2383C51.5563 32.2155 51.4561 32.2018 51.3604 32.1973C51.2692 32.1882 51.1644 32.1836 51.0459 32.1836C50.7542 32.1836 50.4967 32.2292 50.2734 32.3203C50.0501 32.4115 49.861 32.5391 49.7061 32.7031C49.5511 32.8672 49.4281 33.0632 49.3369 33.291C49.2503 33.5143 49.1934 33.7604 49.166 34.0293L48.8105 34.2344C48.8105 33.7878 48.8538 33.3685 48.9404 32.9766C49.0316 32.5846 49.1706 32.2383 49.3574 31.9375C49.5443 31.6322 49.7812 31.3952 50.0684 31.2266C50.36 31.0534 50.7064 30.9668 51.1074 30.9668C51.1986 30.9668 51.3034 30.9782 51.4219 31.001C51.5404 31.0192 51.6224 31.0397 51.668 31.0625ZM56.9248 37.2354V33.4277C56.9248 33.1361 56.8656 32.8831 56.7471 32.6689C56.6331 32.4502 56.46 32.2816 56.2275 32.1631C55.9951 32.0446 55.708 31.9854 55.3662 31.9854C55.0472 31.9854 54.7669 32.04 54.5254 32.1494C54.2884 32.2588 54.1016 32.4023 53.9648 32.5801C53.8327 32.7578 53.7666 32.9492 53.7666 33.1543H52.502C52.502 32.89 52.5703 32.6279 52.707 32.3682C52.8438 32.1084 53.0397 31.8737 53.2949 31.6641C53.5547 31.4499 53.8646 31.2812 54.2246 31.1582C54.5892 31.0306 54.9948 30.9668 55.4414 30.9668C55.9792 30.9668 56.4531 31.0579 56.8633 31.2402C57.278 31.4225 57.6016 31.6982 57.834 32.0674C58.071 32.432 58.1895 32.89 58.1895 33.4414V36.8867C58.1895 37.1328 58.21 37.3949 58.251 37.6729C58.2965 37.9508 58.3626 38.1901 58.4492 38.3906V38.5H57.1299C57.0661 38.3542 57.016 38.1605 56.9795 37.9189C56.943 37.6729 56.9248 37.445 56.9248 37.2354ZM57.1436 34.0156L57.1572 34.9043H55.8789C55.5189 34.9043 55.1976 34.9339 54.915 34.9932C54.6325 35.0479 54.3955 35.1322 54.2041 35.2461C54.0127 35.36 53.8669 35.5036 53.7666 35.6768C53.6663 35.8454 53.6162 36.0436 53.6162 36.2715C53.6162 36.5039 53.6686 36.7158 53.7734 36.9072C53.8783 37.0986 54.0355 37.2513 54.2451 37.3652C54.4593 37.4746 54.7214 37.5293 55.0312 37.5293C55.4186 37.5293 55.7604 37.4473 56.0566 37.2832C56.3529 37.1191 56.5876 36.9186 56.7607 36.6816C56.9385 36.4447 57.0342 36.2145 57.0479 35.9912L57.5879 36.5996C57.556 36.791 57.4694 37.0029 57.3281 37.2354C57.1868 37.4678 56.9977 37.6911 56.7607 37.9053C56.5283 38.1149 56.2503 38.2904 55.9268 38.4316C55.6077 38.5684 55.2477 38.6367 54.8467 38.6367C54.3454 38.6367 53.9056 38.5387 53.5273 38.3428C53.1536 38.1468 52.862 37.8848 52.6523 37.5566C52.4473 37.224 52.3447 36.8525 52.3447 36.4424C52.3447 36.0459 52.4222 35.6973 52.5771 35.3965C52.7321 35.0911 52.9554 34.8382 53.2471 34.6377C53.5387 34.4326 53.8896 34.2777 54.2998 34.1729C54.71 34.068 55.168 34.0156 55.6738 34.0156H57.1436ZM61.5527 28V38.5H60.2812V28H61.5527ZM68.4297 31.1035V38.5H67.1582V31.1035H68.4297ZM67.0625 29.1416C67.0625 28.9365 67.124 28.7633 67.2471 28.6221C67.3747 28.4808 67.5615 28.4102 67.8076 28.4102C68.0492 28.4102 68.2337 28.4808 68.3613 28.6221C68.4935 28.7633 68.5596 28.9365 68.5596 29.1416C68.5596 29.3376 68.4935 29.5062 68.3613 29.6475C68.2337 29.7842 68.0492 29.8525 67.8076 29.8525C67.5615 29.8525 67.3747 29.7842 67.2471 29.6475C67.124 29.5062 67.0625 29.3376 67.0625 29.1416ZM71.7246 32.6826V38.5H70.46V31.1035H71.6562L71.7246 32.6826ZM71.4238 34.5215L70.8975 34.501C70.902 33.9951 70.9772 33.528 71.123 33.0996C71.2689 32.6667 71.474 32.2907 71.7383 31.9717C72.0026 31.6527 72.3171 31.4066 72.6816 31.2334C73.0508 31.0557 73.4587 30.9668 73.9053 30.9668C74.2699 30.9668 74.598 31.0169 74.8896 31.1172C75.1813 31.2129 75.4297 31.3678 75.6348 31.582C75.8444 31.7962 76.0039 32.0742 76.1133 32.416C76.2227 32.7533 76.2773 33.1657 76.2773 33.6533V38.5H75.0059V33.6396C75.0059 33.2523 74.9489 32.9424 74.835 32.71C74.721 32.473 74.5547 32.3021 74.3359 32.1973C74.1172 32.0879 73.8483 32.0332 73.5293 32.0332C73.2148 32.0332 72.9277 32.0993 72.668 32.2314C72.4128 32.3636 72.1917 32.5459 72.0049 32.7783C71.8226 33.0107 71.679 33.2773 71.5742 33.5781C71.474 33.8743 71.4238 34.1888 71.4238 34.5215ZM80.085 38.5H78.8203V30.3242C78.8203 29.791 78.916 29.3421 79.1074 28.9775C79.3034 28.6084 79.5837 28.3304 79.9482 28.1436C80.3128 27.9521 80.7458 27.8564 81.2471 27.8564C81.3929 27.8564 81.5387 27.8656 81.6846 27.8838C81.835 27.902 81.9808 27.9294 82.1221 27.9658L82.0537 28.998C81.958 28.9753 81.8486 28.9593 81.7256 28.9502C81.6071 28.9411 81.4886 28.9365 81.3701 28.9365C81.1012 28.9365 80.8688 28.9912 80.6729 29.1006C80.4814 29.2054 80.3356 29.3604 80.2354 29.5654C80.1351 29.7705 80.085 30.0234 80.085 30.3242V38.5ZM81.6572 31.1035V32.0742H77.6514V31.1035H81.6572ZM82.7305 34.8838V34.7266C82.7305 34.1934 82.8079 33.6989 82.9629 33.2432C83.1178 32.7829 83.3411 32.3841 83.6328 32.0469C83.9245 31.7051 84.2777 31.4408 84.6924 31.2539C85.1071 31.0625 85.5719 30.9668 86.0869 30.9668C86.6064 30.9668 87.0736 31.0625 87.4883 31.2539C87.9076 31.4408 88.263 31.7051 88.5547 32.0469C88.8509 32.3841 89.0765 32.7829 89.2314 33.2432C89.3864 33.6989 89.4639 34.1934 89.4639 34.7266V34.8838C89.4639 35.417 89.3864 35.9115 89.2314 36.3672C89.0765 36.8229 88.8509 37.2217 88.5547 37.5635C88.263 37.9007 87.9098 38.165 87.4951 38.3564C87.085 38.5433 86.6201 38.6367 86.1006 38.6367C85.5811 38.6367 85.1139 38.5433 84.6992 38.3564C84.2845 38.165 83.929 37.9007 83.6328 37.5635C83.3411 37.2217 83.1178 36.8229 82.9629 36.3672C82.8079 35.9115 82.7305 35.417 82.7305 34.8838ZM83.9951 34.7266V34.8838C83.9951 35.2529 84.0384 35.6016 84.125 35.9297C84.2116 36.2533 84.3415 36.5404 84.5146 36.791C84.6924 37.0417 84.9134 37.2399 85.1777 37.3857C85.4421 37.527 85.7497 37.5977 86.1006 37.5977C86.4469 37.5977 86.75 37.527 87.0098 37.3857C87.2741 37.2399 87.4928 37.0417 87.666 36.791C87.8392 36.5404 87.9691 36.2533 88.0557 35.9297C88.1468 35.6016 88.1924 35.2529 88.1924 34.8838V34.7266C88.1924 34.362 88.1468 34.0179 88.0557 33.6943C87.9691 33.3662 87.8369 33.0768 87.6592 32.8262C87.486 32.571 87.2673 32.3704 87.0029 32.2246C86.7432 32.0788 86.4378 32.0059 86.0869 32.0059C85.7406 32.0059 85.4352 32.0788 85.1709 32.2246C84.9111 32.3704 84.6924 32.571 84.5146 32.8262C84.3415 33.0768 84.2116 33.3662 84.125 33.6943C84.0384 34.0179 83.9951 34.362 83.9951 34.7266ZM92.3145 32.2656V38.5H91.0498V31.1035H92.2803L92.3145 32.2656ZM94.625 31.0625L94.6182 32.2383C94.5133 32.2155 94.4131 32.2018 94.3174 32.1973C94.2262 32.1882 94.1214 32.1836 94.0029 32.1836C93.7113 32.1836 93.4538 32.2292 93.2305 32.3203C93.0072 32.4115 92.818 32.5391 92.6631 32.7031C92.5081 32.8672 92.3851 33.0632 92.2939 33.291C92.2074 33.5143 92.1504 33.7604 92.123 34.0293L91.7676 34.2344C91.7676 33.7878 91.8109 33.3685 91.8975 32.9766C91.9886 32.5846 92.1276 32.2383 92.3145 31.9375C92.5013 31.6322 92.7383 31.3952 93.0254 31.2266C93.3171 31.0534 93.6634 30.9668 94.0645 30.9668C94.1556 30.9668 94.2604 30.9782 94.3789 31.001C94.4974 31.0192 94.5794 31.0397 94.625 31.0625ZM97.0518 32.5732V38.5H95.7803V31.1035H96.9834L97.0518 32.5732ZM96.792 34.5215L96.2041 34.501C96.2087 33.9951 96.2747 33.528 96.4023 33.0996C96.5299 32.6667 96.7191 32.2907 96.9697 31.9717C97.2204 31.6527 97.5326 31.4066 97.9062 31.2334C98.2799 31.0557 98.7129 30.9668 99.2051 30.9668C99.5514 30.9668 99.8704 31.0169 100.162 31.1172C100.454 31.2129 100.707 31.3656 100.921 31.5752C101.135 31.7848 101.301 32.0537 101.42 32.3818C101.538 32.71 101.598 33.1064 101.598 33.5713V38.5H100.333V33.6328C100.333 33.2454 100.267 32.9355 100.135 32.7031C100.007 32.4707 99.8249 32.3021 99.5879 32.1973C99.3509 32.0879 99.0729 32.0332 98.7539 32.0332C98.3802 32.0332 98.068 32.0993 97.8174 32.2314C97.5667 32.3636 97.3662 32.5459 97.2158 32.7783C97.0654 33.0107 96.9561 33.2773 96.8877 33.5781C96.8239 33.8743 96.792 34.1888 96.792 34.5215ZM101.584 33.8242L100.736 34.084C100.741 33.6784 100.807 33.2887 100.935 32.915C101.067 32.5413 101.256 32.2087 101.502 31.917C101.753 31.6253 102.06 31.3952 102.425 31.2266C102.789 31.0534 103.206 30.9668 103.676 30.9668C104.072 30.9668 104.423 31.0192 104.729 31.124C105.038 31.2288 105.298 31.3906 105.508 31.6094C105.722 31.8236 105.884 32.0993 105.993 32.4365C106.103 32.7738 106.157 33.1748 106.157 33.6396V38.5H104.886V33.626C104.886 33.2113 104.82 32.89 104.688 32.6621C104.56 32.4297 104.378 32.2679 104.141 32.1768C103.908 32.0811 103.63 32.0332 103.307 32.0332C103.029 32.0332 102.783 32.0811 102.568 32.1768C102.354 32.2725 102.174 32.4046 102.028 32.5732C101.882 32.7373 101.771 32.9264 101.693 33.1406C101.62 33.3548 101.584 33.5827 101.584 33.8242ZM112.433 37.2354V33.4277C112.433 33.1361 112.373 32.8831 112.255 32.6689C112.141 32.4502 111.968 32.2816 111.735 32.1631C111.503 32.0446 111.216 31.9854 110.874 31.9854C110.555 31.9854 110.275 32.04 110.033 32.1494C109.796 32.2588 109.609 32.4023 109.473 32.5801C109.34 32.7578 109.274 32.9492 109.274 33.1543H108.01C108.01 32.89 108.078 32.6279 108.215 32.3682C108.352 32.1084 108.548 31.8737 108.803 31.6641C109.062 31.4499 109.372 31.2812 109.732 31.1582C110.097 31.0306 110.503 30.9668 110.949 30.9668C111.487 30.9668 111.961 31.0579 112.371 31.2402C112.786 31.4225 113.109 31.6982 113.342 32.0674C113.579 32.432 113.697 32.89 113.697 33.4414V36.8867C113.697 37.1328 113.718 37.3949 113.759 37.6729C113.804 37.9508 113.87 38.1901 113.957 38.3906V38.5H112.638C112.574 38.3542 112.524 38.1605 112.487 37.9189C112.451 37.6729 112.433 37.445 112.433 37.2354ZM112.651 34.0156L112.665 34.9043H111.387C111.027 34.9043 110.705 34.9339 110.423 34.9932C110.14 35.0479 109.903 35.1322 109.712 35.2461C109.521 35.36 109.375 35.5036 109.274 35.6768C109.174 35.8454 109.124 36.0436 109.124 36.2715C109.124 36.5039 109.176 36.7158 109.281 36.9072C109.386 37.0986 109.543 37.2513 109.753 37.3652C109.967 37.4746 110.229 37.5293 110.539 37.5293C110.926 37.5293 111.268 37.4473 111.564 37.2832C111.861 37.1191 112.095 36.9186 112.269 36.6816C112.446 36.4447 112.542 36.2145 112.556 35.9912L113.096 36.5996C113.064 36.791 112.977 37.0029 112.836 37.2354C112.695 37.4678 112.506 37.6911 112.269 37.9053C112.036 38.1149 111.758 38.2904 111.435 38.4316C111.116 38.5684 110.756 38.6367 110.354 38.6367C109.853 38.6367 109.413 38.5387 109.035 38.3428C108.661 38.1468 108.37 37.8848 108.16 37.5566C107.955 37.224 107.853 36.8525 107.853 36.4424C107.853 36.0459 107.93 35.6973 108.085 35.3965C108.24 35.0911 108.463 34.8382 108.755 34.6377C109.047 34.4326 109.397 34.2777 109.808 34.1729C110.218 34.068 110.676 34.0156 111.182 34.0156H112.651ZM118.783 31.1035V32.0742H114.784V31.1035H118.783ZM116.138 29.3057H117.402V36.668C117.402 36.9186 117.441 37.1077 117.519 37.2354C117.596 37.363 117.696 37.4473 117.819 37.4883C117.942 37.5293 118.075 37.5498 118.216 37.5498C118.321 37.5498 118.43 37.5407 118.544 37.5225C118.662 37.4997 118.751 37.4814 118.811 37.4678L118.817 38.5C118.717 38.5319 118.585 38.5615 118.421 38.5889C118.261 38.6208 118.068 38.6367 117.84 38.6367C117.53 38.6367 117.245 38.5752 116.985 38.4521C116.726 38.3291 116.518 38.124 116.363 37.8369C116.213 37.5452 116.138 37.1533 116.138 36.6611V29.3057ZM121.641 31.1035V38.5H120.369V31.1035H121.641ZM120.273 29.1416C120.273 28.9365 120.335 28.7633 120.458 28.6221C120.586 28.4808 120.772 28.4102 121.019 28.4102C121.26 28.4102 121.445 28.4808 121.572 28.6221C121.704 28.7633 121.771 28.9365 121.771 29.1416C121.771 29.3376 121.704 29.5062 121.572 29.6475C121.445 29.7842 121.26 29.8525 121.019 29.8525C120.772 29.8525 120.586 29.7842 120.458 29.6475C120.335 29.5062 120.273 29.3376 120.273 29.1416ZM123.336 34.8838V34.7266C123.336 34.1934 123.413 33.6989 123.568 33.2432C123.723 32.7829 123.947 32.3841 124.238 32.0469C124.53 31.7051 124.883 31.4408 125.298 31.2539C125.713 31.0625 126.177 30.9668 126.692 30.9668C127.212 30.9668 127.679 31.0625 128.094 31.2539C128.513 31.4408 128.868 31.7051 129.16 32.0469C129.456 32.3841 129.682 32.7829 129.837 33.2432C129.992 33.6989 130.069 34.1934 130.069 34.7266V34.8838C130.069 35.417 129.992 35.9115 129.837 36.3672C129.682 36.8229 129.456 37.2217 129.16 37.5635C128.868 37.9007 128.515 38.165 128.101 38.3564C127.69 38.5433 127.226 38.6367 126.706 38.6367C126.187 38.6367 125.719 38.5433 125.305 38.3564C124.89 38.165 124.535 37.9007 124.238 37.5635C123.947 37.2217 123.723 36.8229 123.568 36.3672C123.413 35.9115 123.336 35.417 123.336 34.8838ZM124.601 34.7266V34.8838C124.601 35.2529 124.644 35.6016 124.73 35.9297C124.817 36.2533 124.947 36.5404 125.12 36.791C125.298 37.0417 125.519 37.2399 125.783 37.3857C126.048 37.527 126.355 37.5977 126.706 37.5977C127.052 37.5977 127.355 37.527 127.615 37.3857C127.88 37.2399 128.098 37.0417 128.271 36.791C128.445 36.5404 128.575 36.2533 128.661 35.9297C128.752 35.6016 128.798 35.2529 128.798 34.8838V34.7266C128.798 34.362 128.752 34.0179 128.661 33.6943C128.575 33.3662 128.442 33.0768 128.265 32.8262C128.091 32.571 127.873 32.3704 127.608 32.2246C127.349 32.0788 127.043 32.0059 126.692 32.0059C126.346 32.0059 126.041 32.0788 125.776 32.2246C125.517 32.3704 125.298 32.571 125.12 32.8262C124.947 33.0768 124.817 33.3662 124.73 33.6943C124.644 34.0179 124.601 34.362 124.601 34.7266ZM132.92 32.6826V38.5H131.655V31.1035H132.852L132.92 32.6826ZM132.619 34.5215L132.093 34.501C132.097 33.9951 132.173 33.528 132.318 33.0996C132.464 32.6667 132.669 32.2907 132.934 31.9717C133.198 31.6527 133.512 31.4066 133.877 31.2334C134.246 31.0557 134.654 30.9668 135.101 30.9668C135.465 30.9668 135.793 31.0169 136.085 31.1172C136.377 31.2129 136.625 31.3678 136.83 31.582C137.04 31.7962 137.199 32.0742 137.309 32.416C137.418 32.7533 137.473 33.1657 137.473 33.6533V38.5H136.201V33.6396C136.201 33.2523 136.144 32.9424 136.03 32.71C135.916 32.473 135.75 32.3021 135.531 32.1973C135.312 32.0879 135.044 32.0332 134.725 32.0332C134.41 32.0332 134.123 32.0993 133.863 32.2314C133.608 32.3636 133.387 32.5459 133.2 32.7783C133.018 33.0107 132.874 33.2773 132.77 33.5781C132.669 33.8743 132.619 34.1888 132.619 34.5215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15.5",y:"47",width:"267",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("path",{d:"M27.3867 56.7578V66H26.1616V56.7578H27.3867ZM30.6113 60.5981V66H29.437V59.1318H30.5479L30.6113 60.5981ZM30.332 62.3057L29.8433 62.2866C29.8475 61.8169 29.9173 61.3831 30.0527 60.9854C30.1882 60.5833 30.3786 60.2342 30.624 59.938C30.8695 59.6418 31.1615 59.4132 31.5 59.2524C31.8428 59.0874 32.2215 59.0049 32.6362 59.0049C32.9748 59.0049 33.2795 59.0514 33.5503 59.1445C33.8211 59.2334 34.0518 59.3773 34.2422 59.5762C34.4368 59.7751 34.585 60.0332 34.6865 60.3506C34.7881 60.6637 34.8389 61.0467 34.8389 61.4995V66H33.6582V61.4868C33.6582 61.1271 33.6053 60.8394 33.4995 60.6235C33.3937 60.4035 33.2393 60.2448 33.0361 60.1475C32.833 60.0459 32.5833 59.9951 32.2871 59.9951C31.9951 59.9951 31.7285 60.0565 31.4873 60.1792C31.2503 60.3019 31.0451 60.4712 30.8716 60.687C30.7023 60.9028 30.569 61.1504 30.4717 61.4297C30.3786 61.7048 30.332 61.9967 30.332 62.3057ZM37.7969 60.4521V68.6406H36.6162V59.1318H37.6953L37.7969 60.4521ZM42.4243 62.5088V62.6421C42.4243 63.1414 42.3651 63.6048 42.2466 64.0322C42.1281 64.4554 41.9546 64.8236 41.7261 65.1367C41.5018 65.4499 41.2246 65.6932 40.8945 65.8667C40.5645 66.0402 40.1857 66.127 39.7583 66.127C39.3224 66.127 38.9373 66.055 38.603 65.9111C38.2687 65.7673 37.9852 65.5578 37.7524 65.2827C37.5197 65.0076 37.3335 64.6776 37.1938 64.2925C37.0584 63.9074 36.9653 63.4736 36.9146 62.9912V62.2803C36.9653 61.7725 37.0605 61.3175 37.2002 60.9155C37.3398 60.5135 37.5239 60.1707 37.7524 59.8872C37.9852 59.5994 38.2666 59.3815 38.5967 59.2334C38.9268 59.0811 39.3076 59.0049 39.7393 59.0049C40.1709 59.0049 40.5539 59.0895 40.8882 59.2588C41.2225 59.4238 41.5039 59.6608 41.7324 59.9697C41.9609 60.2786 42.1323 60.6489 42.2466 61.0806C42.3651 61.508 42.4243 61.984 42.4243 62.5088ZM41.2437 62.6421V62.5088C41.2437 62.166 41.2077 61.8444 41.1357 61.5439C41.0638 61.2393 40.9517 60.9727 40.7993 60.7441C40.6512 60.5114 40.4608 60.3294 40.228 60.1982C39.9953 60.0628 39.7181 59.9951 39.3965 59.9951C39.1003 59.9951 38.8421 60.0459 38.6221 60.1475C38.4062 60.249 38.2222 60.3866 38.0698 60.5601C37.9175 60.7293 37.7926 60.924 37.6953 61.144C37.6022 61.3599 37.5324 61.5841 37.4858 61.8169V63.4609C37.5705 63.7572 37.689 64.0365 37.8413 64.2988C37.9937 64.557 38.1968 64.7664 38.4507 64.9272C38.7046 65.0838 39.0241 65.1621 39.4092 65.1621C39.7266 65.1621 39.9995 65.0965 40.228 64.9653C40.4608 64.8299 40.6512 64.6458 40.7993 64.4131C40.9517 64.1803 41.0638 63.9137 41.1357 63.6133C41.2077 63.3086 41.2437 62.9849 41.2437 62.6421ZM48.1245 64.4131V59.1318H49.3052V66H48.1816L48.1245 64.4131ZM48.3467 62.9658L48.8354 62.9531C48.8354 63.4102 48.7868 63.8333 48.6895 64.2227C48.5964 64.6077 48.444 64.9421 48.2324 65.2256C48.0208 65.5091 47.7437 65.7313 47.4009 65.8921C47.0581 66.0487 46.6413 66.127 46.1504 66.127C45.8161 66.127 45.5093 66.0783 45.23 65.981C44.9549 65.8836 44.7179 65.7334 44.519 65.5303C44.3201 65.3271 44.1657 65.0627 44.0557 64.7368C43.9499 64.411 43.897 64.0195 43.897 63.5625V59.1318H45.0713V63.5752C45.0713 63.8841 45.1051 64.1401 45.1729 64.3433C45.2448 64.5422 45.34 64.7008 45.4585 64.8193C45.5812 64.9336 45.7166 65.014 45.8647 65.0605C46.0171 65.1071 46.1737 65.1304 46.3345 65.1304C46.8338 65.1304 47.2295 65.0352 47.5215 64.8447C47.8135 64.6501 48.0229 64.3898 48.1499 64.064C48.2811 63.7339 48.3467 63.3678 48.3467 62.9658ZM53.9707 59.1318V60.0332H50.2573V59.1318H53.9707ZM51.5142 57.4624H52.6885V64.2988C52.6885 64.5316 52.7244 64.7072 52.7964 64.8257C52.8683 64.9442 52.9614 65.0225 53.0757 65.0605C53.1899 65.0986 53.3127 65.1177 53.4438 65.1177C53.5412 65.1177 53.6427 65.1092 53.7485 65.0923C53.8586 65.0711 53.9411 65.0542 53.9961 65.0415L54.0024 66C53.9093 66.0296 53.7866 66.0571 53.6343 66.0825C53.4862 66.1121 53.3063 66.127 53.0947 66.127C52.807 66.127 52.5425 66.0698 52.3013 65.9556C52.0601 65.8413 51.8675 65.6509 51.7236 65.3843C51.584 65.1134 51.5142 64.7495 51.5142 64.2925V57.4624ZM60.1406 66H58.9663V58.5352C58.9663 58.0146 59.0679 57.5745 59.271 57.2148C59.4741 56.8551 59.764 56.5822 60.1406 56.396C60.5173 56.2098 60.9637 56.1167 61.48 56.1167C61.7847 56.1167 62.083 56.1548 62.375 56.231C62.667 56.3029 62.9674 56.3939 63.2764 56.5039L63.0796 57.4941C62.8849 57.418 62.6585 57.346 62.4004 57.2783C62.1465 57.2064 61.8672 57.1704 61.5625 57.1704C61.0589 57.1704 60.695 57.2847 60.4707 57.5132C60.2507 57.7375 60.1406 58.0781 60.1406 58.5352V66ZM61.5435 59.1318V60.0332H57.8809V59.1318H61.5435ZM63.854 59.1318V66H62.6797V59.1318H63.854ZM68.6338 66.127C68.1556 66.127 67.7218 66.0465 67.3325 65.8857C66.9474 65.7207 66.6152 65.4901 66.3359 65.1938C66.0609 64.8976 65.8493 64.5464 65.7012 64.1401C65.5531 63.7339 65.479 63.2896 65.479 62.8071V62.5405C65.479 61.9819 65.5615 61.4847 65.7266 61.0488C65.8916 60.6087 66.1159 60.2363 66.3994 59.9316C66.6829 59.627 67.0046 59.3963 67.3643 59.2397C67.724 59.0832 68.0964 59.0049 68.4814 59.0049C68.9723 59.0049 69.3955 59.0895 69.751 59.2588C70.1107 59.4281 70.4048 59.665 70.6333 59.9697C70.8618 60.2702 71.0311 60.6257 71.1411 61.0361C71.2511 61.4424 71.3062 61.8867 71.3062 62.3691V62.896H66.1772V61.9375H70.1318V61.8486C70.1149 61.5439 70.0514 61.2477 69.9414 60.96C69.8356 60.6722 69.6663 60.4352 69.4336 60.249C69.2008 60.0628 68.8835 59.9697 68.4814 59.9697C68.2148 59.9697 67.9694 60.0269 67.7451 60.1411C67.5208 60.2511 67.3283 60.4162 67.1675 60.6362C67.0067 60.8563 66.8818 61.125 66.793 61.4424C66.7041 61.7598 66.6597 62.1258 66.6597 62.5405V62.8071C66.6597 63.133 66.7041 63.4398 66.793 63.7275C66.8861 64.0111 67.0194 64.2607 67.1929 64.4766C67.3706 64.6924 67.5843 64.8617 67.834 64.9844C68.0879 65.1071 68.3757 65.1685 68.6973 65.1685C69.112 65.1685 69.4632 65.0838 69.751 64.9146C70.0387 64.7453 70.2905 64.5189 70.5063 64.2354L71.2173 64.8003C71.0692 65.0246 70.8809 65.2383 70.6523 65.4414C70.4238 65.6445 70.1424 65.8096 69.8081 65.9365C69.478 66.0635 69.0866 66.127 68.6338 66.127ZM73.9531 56.25V66H72.7725V56.25H73.9531ZM80.1675 64.667V56.25H81.3481V66H80.269L80.1675 64.667ZM75.5464 62.6421V62.5088C75.5464 61.984 75.6099 61.508 75.7368 61.0806C75.868 60.6489 76.0521 60.2786 76.2891 59.9697C76.5303 59.6608 76.8159 59.4238 77.146 59.2588C77.4803 59.0895 77.8527 59.0049 78.2632 59.0049C78.6948 59.0049 79.0715 59.0811 79.3931 59.2334C79.7189 59.3815 79.994 59.5994 80.2183 59.8872C80.4468 60.1707 80.6266 60.5135 80.7578 60.9155C80.889 61.3175 80.98 61.7725 81.0308 62.2803V62.8643C80.9842 63.3678 80.8932 63.8206 80.7578 64.2227C80.6266 64.6247 80.4468 64.9674 80.2183 65.251C79.994 65.5345 79.7189 65.7524 79.3931 65.9048C79.0672 66.0529 78.6864 66.127 78.2505 66.127C77.8485 66.127 77.4803 66.0402 77.146 65.8667C76.8159 65.6932 76.5303 65.4499 76.2891 65.1367C76.0521 64.8236 75.868 64.4554 75.7368 64.0322C75.6099 63.6048 75.5464 63.1414 75.5464 62.6421ZM76.7271 62.5088V62.6421C76.7271 62.9849 76.7609 63.3065 76.8286 63.6069C76.9006 63.9074 77.0106 64.1719 77.1587 64.4004C77.3068 64.6289 77.4951 64.8088 77.7236 64.9399C77.9521 65.0669 78.2251 65.1304 78.5425 65.1304C78.9318 65.1304 79.2513 65.0479 79.501 64.8828C79.7549 64.7178 79.958 64.4998 80.1104 64.229C80.2627 63.9582 80.3812 63.6641 80.4658 63.3467V61.8169C80.415 61.5841 80.341 61.3599 80.2437 61.144C80.1506 60.924 80.0278 60.7293 79.8755 60.5601C79.7274 60.3866 79.5433 60.249 79.3232 60.1475C79.1074 60.0459 78.8514 59.9951 78.5552 59.9951C78.2336 59.9951 77.9564 60.0628 77.7236 60.1982C77.4951 60.3294 77.3068 60.5114 77.1587 60.7441C77.0106 60.9727 76.9006 61.2393 76.8286 61.5439C76.7609 61.8444 76.7271 62.166 76.7271 62.5088Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15.5",y:"47",width:"267",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M57.6997 107V97.9H60.9367C61.6344 97.9 62.2237 98.004 62.7047 98.212C63.1857 98.42 63.5497 98.7407 63.7967 99.174C64.0481 99.6073 64.1737 100.162 64.1737 100.838C64.1737 101.523 64.0502 102.088 63.8032 102.534C63.5562 102.976 63.1944 103.306 62.7177 103.522C62.2411 103.735 61.6604 103.841 60.9757 103.841H59.3637V107H57.6997ZM59.3637 102.45H60.7807C61.3484 102.45 61.7731 102.322 62.0547 102.066C62.3407 101.811 62.4837 101.41 62.4837 100.864C62.4837 100.318 62.3386 99.9193 62.0482 99.668C61.7622 99.4167 61.3267 99.291 60.7417 99.291H59.3637V102.45ZM65.0953 107V100.5H66.6033L66.6423 101.189C66.807 101.007 67.0388 100.825 67.3378 100.643C67.6368 100.461 67.964 100.37 68.3193 100.37C68.4233 100.37 68.5186 100.379 68.6053 100.396L68.4883 101.982C68.393 101.956 68.2976 101.939 68.2023 101.93C68.1113 101.921 68.0203 101.917 67.9293 101.917C67.6563 101.917 67.4071 101.98 67.1818 102.105C66.9565 102.231 66.7983 102.385 66.7073 102.567V107H65.0953ZM72.4051 107.13C71.6207 107.13 70.9664 106.974 70.4421 106.662C69.9221 106.346 69.5321 105.93 69.2721 105.414C69.0121 104.894 68.8821 104.326 68.8821 103.711C68.8821 103.117 69.0034 102.569 69.2461 102.066C69.4931 101.564 69.8527 101.161 70.3251 100.857C70.7974 100.55 71.3737 100.396 72.0541 100.396C72.6781 100.396 73.1981 100.524 73.6141 100.779C74.0301 101.035 74.3421 101.377 74.5501 101.806C74.7581 102.231 74.8621 102.701 74.8621 103.217C74.8621 103.36 74.8534 103.505 74.8361 103.652C74.8187 103.795 74.7927 103.945 74.7581 104.101H70.5591C70.6197 104.504 70.7454 104.831 70.9361 105.082C71.1311 105.329 71.3672 105.511 71.6446 105.628C71.9262 105.745 72.2274 105.804 72.5481 105.804C72.9251 105.804 73.2761 105.756 73.6011 105.661C73.9261 105.561 74.2251 105.431 74.4981 105.271L74.5761 106.636C74.3291 106.766 74.0214 106.881 73.6531 106.98C73.2847 107.08 72.8687 107.13 72.4051 107.13ZM70.5981 103.009H73.2241C73.2241 102.814 73.1872 102.619 73.1136 102.424C73.0399 102.225 72.9164 102.058 72.7431 101.923C72.5741 101.789 72.3444 101.722 72.0541 101.722C71.6381 101.722 71.3109 101.843 71.0726 102.086C70.8342 102.329 70.6761 102.636 70.5981 103.009ZM77.68 107L75.184 100.5H76.77L78.369 104.998L79.968 100.5H81.554L79.058 107H77.68ZM82.3482 107V100.5H83.9602V107H82.3482ZM82.3482 99.512V97.9H83.9602V99.512H82.3482ZM88.4223 107.13C87.716 107.13 87.1136 106.976 86.6153 106.668C86.117 106.361 85.7356 105.951 85.4713 105.44C85.2113 104.929 85.0813 104.37 85.0813 103.763C85.0813 103.152 85.2113 102.589 85.4713 102.073C85.7356 101.557 86.117 101.146 86.6153 100.838C87.1136 100.526 87.716 100.37 88.4223 100.37C89.1286 100.37 89.731 100.526 90.2293 100.838C90.7276 101.146 91.1068 101.557 91.3668 102.073C91.6311 102.589 91.7633 103.152 91.7633 103.763C91.7633 104.37 91.6311 104.929 91.3668 105.44C91.1068 105.951 90.7276 106.361 90.2293 106.668C89.731 106.976 89.1286 107.13 88.4223 107.13ZM88.4223 105.804C88.964 105.804 89.38 105.615 89.6703 105.238C89.965 104.857 90.1123 104.365 90.1123 103.763C90.1123 103.152 89.965 102.656 89.6703 102.274C89.38 101.889 88.964 101.696 88.4223 101.696C87.885 101.696 87.469 101.889 87.1743 102.274C86.8796 102.656 86.7323 103.152 86.7323 103.763C86.7323 104.365 86.8796 104.857 87.1743 105.238C87.469 105.615 87.885 105.804 88.4223 105.804ZM95.5763 107.13C94.9003 107.13 94.3608 106.996 93.9578 106.727C93.5548 106.458 93.2645 106.09 93.0868 105.622C92.9092 105.15 92.8203 104.608 92.8203 103.997V100.5H94.4323V103.997C94.4323 104.599 94.532 105.048 94.7313 105.342C94.935 105.633 95.2643 105.778 95.7193 105.778C96.0833 105.778 96.3845 105.691 96.6228 105.518C96.8655 105.345 97.067 105.102 97.2273 104.79L96.9413 105.609V100.5H98.5533V107H97.0453L96.9673 105.869L97.3183 106.324C97.1623 106.523 96.9153 106.707 96.5773 106.876C96.2437 107.046 95.91 107.13 95.5763 107.13ZM101.904 107.13C101.475 107.13 101.087 107.089 100.741 107.007C100.398 106.924 100.054 106.805 99.7072 106.649L99.8502 105.271C100.184 105.466 100.511 105.624 100.832 105.745C101.157 105.862 101.497 105.921 101.852 105.921C102.173 105.921 102.418 105.869 102.587 105.765C102.756 105.661 102.84 105.496 102.84 105.271C102.84 105.102 102.795 104.963 102.704 104.855C102.617 104.747 102.485 104.649 102.307 104.562C102.13 104.476 101.909 104.383 101.644 104.283C101.246 104.136 100.905 103.975 100.624 103.802C100.346 103.629 100.134 103.421 99.9867 103.178C99.8437 102.931 99.7722 102.628 99.7722 102.268C99.7722 101.895 99.8697 101.566 100.065 101.28C100.26 100.994 100.537 100.771 100.897 100.61C101.256 100.45 101.683 100.37 102.177 100.37C102.589 100.37 102.957 100.415 103.282 100.506C103.612 100.597 103.915 100.721 104.192 100.877L104.049 102.255C103.759 102.051 103.466 101.884 103.172 101.754C102.877 101.62 102.554 101.553 102.203 101.553C101.926 101.553 101.711 101.609 101.56 101.722C101.408 101.835 101.332 101.995 101.332 102.203C101.332 102.454 101.438 102.643 101.651 102.768C101.863 102.894 102.203 103.048 102.671 103.23C102.975 103.347 103.237 103.468 103.458 103.594C103.683 103.72 103.869 103.858 104.017 104.01C104.164 104.162 104.272 104.335 104.342 104.53C104.415 104.721 104.452 104.942 104.452 105.193C104.452 105.605 104.353 105.956 104.153 106.246C103.958 106.532 103.67 106.751 103.289 106.902C102.912 107.054 102.45 107.13 101.904 107.13Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"16",y:"87.5",width:"129.5",height:"30",rx:"15",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("rect",{x:"151.5",y:"86.5",width:"131.5",height:"32",rx:"16",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M204.997 107V97.9H206.635L210.522 103.776V97.9H212.186V107H210.821L206.661 100.76V107H204.997ZM216.897 107.13C216.112 107.13 215.458 106.974 214.934 106.662C214.414 106.346 214.024 105.93 213.764 105.414C213.504 104.894 213.374 104.326 213.374 103.711C213.374 103.117 213.495 102.569 213.738 102.066C213.985 101.564 214.344 101.161 214.817 100.857C215.289 100.55 215.865 100.396 216.546 100.396C217.17 100.396 217.69 100.524 218.106 100.779C218.522 101.035 218.834 101.377 219.042 101.806C219.25 102.231 219.354 102.701 219.354 103.217C219.354 103.36 219.345 103.505 219.328 103.652C219.31 103.795 219.284 103.945 219.25 104.101H215.051C215.111 104.504 215.237 104.831 215.428 105.082C215.623 105.329 215.859 105.511 216.136 105.628C216.418 105.745 216.719 105.804 217.04 105.804C217.417 105.804 217.768 105.756 218.093 105.661C218.418 105.561 218.717 105.431 218.99 105.271L219.068 106.636C218.821 106.766 218.513 106.881 218.145 106.98C217.776 107.08 217.36 107.13 216.897 107.13ZM215.09 103.009H217.716C217.716 102.814 217.679 102.619 217.605 102.424C217.532 102.225 217.408 102.058 217.235 101.923C217.066 101.789 216.836 101.722 216.546 101.722C216.13 101.722 215.803 101.843 215.564 102.086C215.326 102.329 215.168 102.636 215.09 103.009ZM219.779 107L221.937 103.75L219.779 100.5H221.703L222.886 102.385L223.978 100.5H225.902L223.744 103.75L225.902 107H223.978L222.795 105.115L221.703 107H219.779ZM228.908 107.13C228.501 107.13 228.169 107.048 227.914 106.883C227.658 106.714 227.469 106.499 227.348 106.239C227.227 105.979 227.166 105.709 227.166 105.427V101.826H226.243L226.386 100.5H227.166V99.07L228.778 98.901V100.5H230.208V101.826H228.778V104.764C228.778 105.093 228.798 105.332 228.837 105.479C228.876 105.622 228.964 105.713 229.103 105.752C229.242 105.787 229.463 105.804 229.766 105.804H230.208L230.065 107.13H228.908Z",fill:"white"})),{BlockClassName:Nr,BlockAddPrevButton:Ir,BlockPrevButtonLabel:Tr}=JetFBComponents,{__:Or}=wp.i18n,{InspectorControls:Jr,useBlockProps:Rr,RichText:qr}=wp.blockEditor?wp.blockEditor:wp.editor,{TextareaControl:Dr,TextControl:zr,PanelBody:Ur,Button:Gr,ToggleControl:Wr}=wp.components,Kr=JSON.parse('{"apiVersion":3,"name":"jet-forms/form-break-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","break","pagebreak","formbreak"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Form Page Break","icon":"\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"add_next_button":{"type":"boolean","default":true},"page_break_disabled":{"type":"string","default":"","jfb":{"rich":true}},"label_progress":{"type":"string","default":""},"label":{"type":"string","default":"","jfb":{"rich":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:$r}=wp.i18n,{createBlock:Yr}=wp.blocks,{name:Xr,icon:Qr=""}=Kr,en={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Qr}}),description:$r("With the help of Form Break Field, divide one big form into several parts and make those parts appear after filling in the previous part.","jet-form-builder"),edit:function(e){const C=Rr(),{attributes:t,setAttributes:l,editProps:{uniqKey:r,attrHelp:n}}=e;return t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Sr):[e.isSelected&&(0,h.createElement)(Jr,{key:r("InspectorControls")},(0,h.createElement)(Ur,{title:Or("Buttons Settings","jet-form-builder")},(0,h.createElement)(Wr,{key:r("add_next_button"),label:Or('Enable "Next" Button',"jet-form-builder"),checked:t.add_next_button,help:n("add_next_button"),onChange:e=>l({add_next_button:e})}),t.add_next_button&&(0,h.createElement)(zr,{label:Or("Next Button label","jet-form-builder"),value:t.label,onChange:e=>l({label:e})}),(0,h.createElement)(Ir,null),(0,h.createElement)(Tr,null)),(0,h.createElement)(Ur,{title:Or("Page Settings","jet-form-builder")},(0,h.createElement)(zr,{label:Or("Label of progress","jet-form-builder"),value:t.label_progress,help:n("label_progress"),onChange:C=>{e.setAttributes({label_progress:C})}}),(0,h.createElement)(Dr,{key:"page_break_disabled",value:t.page_break_disabled,label:Or("Validation message","jet-form-builder"),help:n("page_break_disabled"),onChange:e=>{l({page_break_disabled:e})}})),(0,h.createElement)(Ur,{title:Or("Advanced","jet-form-builder")},(0,h.createElement)(Nr,null))),(0,h.createElement)("div",{...C,key:r("viewBlock")},(0,h.createElement)("div",{className:"jet-form-builder__next-page-wrap jet-form-builder__bottom-line"},t.add_next_button&&(0,h.createElement)(Gr,{isSecondary:!0,key:"next_page_button",className:"jet-form-builder__next-page"},(0,h.createElement)(qr,{placeholder:"Next...",allowedFormats:[],value:t.label,onChange:e=>l({label:e})})),t.add_prev&&(0,h.createElement)(Gr,{isSecondary:!0,key:"prev_page_button",className:"jet-form-builder__prev-page"},(0,h.createElement)(qr,{placeholder:"Prev...",allowedFormats:[],value:t.prev_label,onChange:e=>l({prev_label:e})})),!t.add_next_button&&!t.add_prev&&(0,h.createElement)("span",null,Or("Form Break","jet-form-builder"))))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Yr("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["jet-forms/submit-field"],isMatch:e=>e.add_next_button,transform:e=>Yr("jet-forms/submit-field",{...e,action_type:"next"}),priority:0},{type:"block",blocks:["core/buttons"],isMatch:e=>e.add_next_button,transform:({label:e=""})=>Yr("core/buttons",{},[Yr("core/button",{text:e})]),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Yr(Xr,{...e}),priority:0},{type:"block",blocks:["jet-forms/submit-field"],isMatch:e=>"next"===e.action_type,transform:e=>Yr(Xr,{...e}),priority:0},{type:"block",blocks:["core/buttons"],transform:(e,C)=>Yr(Xr,{label:C[0]?.attributes?.text||"Next"}),priority:0}]}},Cn=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M47.0752 33.2305V34.748C47.0752 35.5638 47.0023 36.252 46.8564 36.8125C46.7106 37.373 46.501 37.8242 46.2275 38.166C45.9541 38.5078 45.6237 38.7562 45.2363 38.9111C44.8535 39.0615 44.4206 39.1367 43.9375 39.1367C43.5547 39.1367 43.2015 39.0889 42.8779 38.9932C42.5544 38.8975 42.2627 38.7448 42.0029 38.5352C41.7477 38.321 41.529 38.043 41.3467 37.7012C41.1644 37.3594 41.0254 36.9447 40.9297 36.457C40.834 35.9694 40.7861 35.3997 40.7861 34.748V33.2305C40.7861 32.4147 40.859 31.7311 41.0049 31.1797C41.1553 30.6283 41.3672 30.1862 41.6406 29.8535C41.9141 29.5163 42.2422 29.2747 42.625 29.1289C43.0124 28.9831 43.4453 28.9102 43.9238 28.9102C44.3112 28.9102 44.6667 28.958 44.9902 29.0537C45.3184 29.1449 45.61 29.293 45.8652 29.498C46.1204 29.6986 46.3369 29.9674 46.5146 30.3047C46.6969 30.6374 46.8359 31.0452 46.9316 31.5283C47.0273 32.0114 47.0752 32.5788 47.0752 33.2305ZM45.8037 34.9531V33.0186C45.8037 32.5719 45.7764 32.18 45.7217 31.8428C45.6715 31.501 45.5964 31.2093 45.4961 30.9678C45.3958 30.7262 45.2682 30.5303 45.1133 30.3799C44.9629 30.2295 44.7874 30.1201 44.5869 30.0518C44.391 29.9788 44.1699 29.9424 43.9238 29.9424C43.623 29.9424 43.3564 29.9993 43.124 30.1133C42.8916 30.2227 42.6956 30.3981 42.5361 30.6396C42.3812 30.8812 42.2627 31.1979 42.1807 31.5898C42.0986 31.9818 42.0576 32.458 42.0576 33.0186V34.9531C42.0576 35.3997 42.0827 35.7939 42.1328 36.1357C42.1875 36.4775 42.2673 36.7738 42.3721 37.0244C42.4769 37.2705 42.6045 37.4733 42.7549 37.6328C42.9053 37.7923 43.0785 37.9108 43.2744 37.9883C43.4749 38.0612 43.696 38.0977 43.9375 38.0977C44.2474 38.0977 44.5186 38.0384 44.751 37.9199C44.9834 37.8014 45.1771 37.6169 45.332 37.3662C45.4915 37.111 45.61 36.7852 45.6875 36.3887C45.765 35.9876 45.8037 35.5091 45.8037 34.9531ZM52.8584 28.9922V39H51.5938V30.5713L49.0439 31.501V30.3594L52.6602 28.9922H52.8584ZM56.7344 38.3301C56.7344 38.1159 56.8005 37.9359 56.9326 37.79C57.0693 37.6396 57.2653 37.5645 57.5205 37.5645C57.7757 37.5645 57.9694 37.6396 58.1016 37.79C58.2383 37.9359 58.3066 38.1159 58.3066 38.3301C58.3066 38.5397 58.2383 38.7174 58.1016 38.8633C57.9694 39.0091 57.7757 39.082 57.5205 39.082C57.2653 39.082 57.0693 39.0091 56.9326 38.8633C56.8005 38.7174 56.7344 38.5397 56.7344 38.3301ZM71.4248 34.0439V37.6875C71.3018 37.8698 71.1058 38.0749 70.8369 38.3027C70.568 38.526 70.1966 38.722 69.7227 38.8906C69.2533 39.0547 68.6471 39.1367 67.9043 39.1367C67.2982 39.1367 66.7399 39.0319 66.2295 38.8223C65.7236 38.6081 65.2839 38.2982 64.9102 37.8926C64.541 37.4824 64.2539 36.9857 64.0488 36.4023C63.8483 35.8145 63.748 35.1491 63.748 34.4062V33.6338C63.748 32.891 63.8346 32.2279 64.0078 31.6445C64.1855 31.0612 64.4453 30.5667 64.7871 30.1611C65.1289 29.751 65.5482 29.4411 66.0449 29.2314C66.5417 29.0173 67.1113 28.9102 67.7539 28.9102C68.515 28.9102 69.1507 29.0423 69.6611 29.3066C70.1761 29.5664 70.5771 29.9264 70.8643 30.3867C71.1559 30.847 71.3428 31.3711 71.4248 31.959H70.1055C70.0462 31.599 69.9277 31.2708 69.75 30.9746C69.5768 30.6784 69.3285 30.4414 69.0049 30.2637C68.6813 30.0814 68.2643 29.9902 67.7539 29.9902C67.2936 29.9902 66.8949 30.0745 66.5576 30.2432C66.2204 30.4118 65.9424 30.6533 65.7236 30.9678C65.5049 31.2822 65.3408 31.6628 65.2314 32.1094C65.1266 32.556 65.0742 33.0596 65.0742 33.6201V34.4062C65.0742 34.9805 65.1403 35.4932 65.2725 35.9443C65.4092 36.3955 65.6029 36.7806 65.8535 37.0996C66.1042 37.4141 66.4027 37.6533 66.749 37.8174C67.0999 37.9814 67.4873 38.0635 67.9111 38.0635C68.3805 38.0635 68.7611 38.0247 69.0527 37.9473C69.3444 37.8652 69.5723 37.7695 69.7363 37.6602C69.9004 37.5462 70.0257 37.4391 70.1123 37.3389V35.1104H67.8086V34.0439H71.4248ZM76.4902 39.1367C75.9753 39.1367 75.5081 39.0501 75.0889 38.877C74.6742 38.6992 74.3164 38.4508 74.0156 38.1318C73.7194 37.8128 73.4915 37.4346 73.332 36.9971C73.1725 36.5596 73.0928 36.0811 73.0928 35.5615V35.2744C73.0928 34.6729 73.1816 34.1374 73.3594 33.668C73.5371 33.194 73.7786 32.793 74.084 32.4648C74.3893 32.1367 74.7357 31.8883 75.123 31.7197C75.5104 31.5511 75.9115 31.4668 76.3262 31.4668C76.8548 31.4668 77.3105 31.5579 77.6934 31.7402C78.0807 31.9225 78.3975 32.1777 78.6436 32.5059C78.8896 32.8294 79.0719 33.2122 79.1904 33.6543C79.3089 34.0918 79.3682 34.5703 79.3682 35.0898V35.6572H73.8447V34.625H78.1035V34.5293C78.0853 34.2012 78.0169 33.8822 77.8984 33.5723C77.7845 33.2624 77.6022 33.0072 77.3516 32.8066C77.1009 32.6061 76.7591 32.5059 76.3262 32.5059C76.0391 32.5059 75.7747 32.5674 75.5332 32.6904C75.2917 32.8089 75.0843 32.9867 74.9111 33.2236C74.738 33.4606 74.6035 33.75 74.5078 34.0918C74.4121 34.4336 74.3643 34.8278 74.3643 35.2744V35.5615C74.3643 35.9124 74.4121 36.2428 74.5078 36.5527C74.6081 36.8581 74.7516 37.127 74.9385 37.3594C75.1299 37.5918 75.36 37.7741 75.6289 37.9062C75.9023 38.0384 76.2122 38.1045 76.5586 38.1045C77.0052 38.1045 77.3835 38.0133 77.6934 37.8311C78.0033 37.6488 78.2744 37.4049 78.5068 37.0996L79.2725 37.708C79.113 37.9495 78.9102 38.1797 78.6641 38.3984C78.418 38.6172 78.1149 38.7949 77.7549 38.9316C77.3994 39.0684 76.9779 39.1367 76.4902 39.1367ZM82.1094 33.1826V39H80.8447V31.6035H82.041L82.1094 33.1826ZM81.8086 35.0215L81.2822 35.001C81.2868 34.4951 81.362 34.028 81.5078 33.5996C81.6536 33.1667 81.8587 32.7907 82.123 32.4717C82.3874 32.1527 82.7018 31.9066 83.0664 31.7334C83.4355 31.5557 83.8434 31.4668 84.29 31.4668C84.6546 31.4668 84.9827 31.5169 85.2744 31.6172C85.5661 31.7129 85.8145 31.8678 86.0195 32.082C86.2292 32.2962 86.3887 32.5742 86.498 32.916C86.6074 33.2533 86.6621 33.6657 86.6621 34.1533V39H85.3906V34.1396C85.3906 33.7523 85.3337 33.4424 85.2197 33.21C85.1058 32.973 84.9395 32.8021 84.7207 32.6973C84.502 32.5879 84.2331 32.5332 83.9141 32.5332C83.5996 32.5332 83.3125 32.5993 83.0527 32.7314C82.7975 32.8636 82.5765 33.0459 82.3896 33.2783C82.2074 33.5107 82.0638 33.7773 81.959 34.0781C81.8587 34.3743 81.8086 34.6888 81.8086 35.0215ZM91.6523 39.1367C91.1374 39.1367 90.6702 39.0501 90.251 38.877C89.8363 38.6992 89.4785 38.4508 89.1777 38.1318C88.8815 37.8128 88.6536 37.4346 88.4941 36.9971C88.3346 36.5596 88.2549 36.0811 88.2549 35.5615V35.2744C88.2549 34.6729 88.3438 34.1374 88.5215 33.668C88.6992 33.194 88.9408 32.793 89.2461 32.4648C89.5514 32.1367 89.8978 31.8883 90.2852 31.7197C90.6725 31.5511 91.0736 31.4668 91.4883 31.4668C92.0169 31.4668 92.4727 31.5579 92.8555 31.7402C93.2428 31.9225 93.5596 32.1777 93.8057 32.5059C94.0518 32.8294 94.234 33.2122 94.3525 33.6543C94.471 34.0918 94.5303 34.5703 94.5303 35.0898V35.6572H89.0068V34.625H93.2656V34.5293C93.2474 34.2012 93.179 33.8822 93.0605 33.5723C92.9466 33.2624 92.7643 33.0072 92.5137 32.8066C92.263 32.6061 91.9212 32.5059 91.4883 32.5059C91.2012 32.5059 90.9368 32.5674 90.6953 32.6904C90.4538 32.8089 90.2464 32.9867 90.0732 33.2236C89.9001 33.4606 89.7656 33.75 89.6699 34.0918C89.5742 34.4336 89.5264 34.8278 89.5264 35.2744V35.5615C89.5264 35.9124 89.5742 36.2428 89.6699 36.5527C89.7702 36.8581 89.9137 37.127 90.1006 37.3594C90.292 37.5918 90.5221 37.7741 90.791 37.9062C91.0645 38.0384 91.3743 38.1045 91.7207 38.1045C92.1673 38.1045 92.5456 38.0133 92.8555 37.8311C93.1654 37.6488 93.4365 37.4049 93.6689 37.0996L94.4346 37.708C94.2751 37.9495 94.0723 38.1797 93.8262 38.3984C93.5801 38.6172 93.277 38.7949 92.917 38.9316C92.5615 39.0684 92.14 39.1367 91.6523 39.1367ZM97.2715 32.7656V39H96.0068V31.6035H97.2373L97.2715 32.7656ZM99.582 31.5625L99.5752 32.7383C99.4704 32.7155 99.3701 32.7018 99.2744 32.6973C99.1833 32.6882 99.0785 32.6836 98.96 32.6836C98.6683 32.6836 98.4108 32.7292 98.1875 32.8203C97.9642 32.9115 97.7751 33.0391 97.6201 33.2031C97.4652 33.3672 97.3421 33.5632 97.251 33.791C97.1644 34.0143 97.1074 34.2604 97.0801 34.5293L96.7246 34.7344C96.7246 34.2878 96.7679 33.8685 96.8545 33.4766C96.9456 33.0846 97.0846 32.7383 97.2715 32.4375C97.4583 32.1322 97.6953 31.8952 97.9824 31.7266C98.2741 31.5534 98.6204 31.4668 99.0215 31.4668C99.1126 31.4668 99.2174 31.4782 99.3359 31.501C99.4544 31.5192 99.5365 31.5397 99.582 31.5625ZM104.839 37.7354V33.9277C104.839 33.6361 104.78 33.3831 104.661 33.1689C104.547 32.9502 104.374 32.7816 104.142 32.6631C103.909 32.5446 103.622 32.4854 103.28 32.4854C102.961 32.4854 102.681 32.54 102.439 32.6494C102.202 32.7588 102.016 32.9023 101.879 33.0801C101.747 33.2578 101.681 33.4492 101.681 33.6543H100.416C100.416 33.39 100.484 33.1279 100.621 32.8682C100.758 32.6084 100.954 32.3737 101.209 32.1641C101.469 31.9499 101.779 31.7812 102.139 31.6582C102.503 31.5306 102.909 31.4668 103.355 31.4668C103.893 31.4668 104.367 31.5579 104.777 31.7402C105.192 31.9225 105.516 32.1982 105.748 32.5674C105.985 32.932 106.104 33.39 106.104 33.9414V37.3867C106.104 37.6328 106.124 37.8949 106.165 38.1729C106.211 38.4508 106.277 38.6901 106.363 38.8906V39H105.044C104.98 38.8542 104.93 38.6605 104.894 38.4189C104.857 38.1729 104.839 37.945 104.839 37.7354ZM105.058 34.5156L105.071 35.4043H103.793C103.433 35.4043 103.112 35.4339 102.829 35.4932C102.547 35.5479 102.31 35.6322 102.118 35.7461C101.927 35.86 101.781 36.0036 101.681 36.1768C101.58 36.3454 101.53 36.5436 101.53 36.7715C101.53 37.0039 101.583 37.2158 101.688 37.4072C101.792 37.5986 101.95 37.7513 102.159 37.8652C102.373 37.9746 102.635 38.0293 102.945 38.0293C103.333 38.0293 103.674 37.9473 103.971 37.7832C104.267 37.6191 104.502 37.4186 104.675 37.1816C104.853 36.9447 104.948 36.7145 104.962 36.4912L105.502 37.0996C105.47 37.291 105.383 37.5029 105.242 37.7354C105.101 37.9678 104.912 38.1911 104.675 38.4053C104.442 38.6149 104.164 38.7904 103.841 38.9316C103.522 39.0684 103.162 39.1367 102.761 39.1367C102.259 39.1367 101.82 39.0387 101.441 38.8428C101.068 38.6468 100.776 38.3848 100.566 38.0566C100.361 37.724 100.259 37.3525 100.259 36.9424C100.259 36.5459 100.336 36.1973 100.491 35.8965C100.646 35.5911 100.869 35.3382 101.161 35.1377C101.453 34.9326 101.804 34.7777 102.214 34.6729C102.624 34.568 103.082 34.5156 103.588 34.5156H105.058ZM109.467 28.5V39H108.195V28.5H109.467ZM116.344 31.6035V39H115.072V31.6035H116.344ZM114.977 29.6416C114.977 29.4365 115.038 29.2633 115.161 29.1221C115.289 28.9808 115.476 28.9102 115.722 28.9102C115.963 28.9102 116.148 28.9808 116.275 29.1221C116.408 29.2633 116.474 29.4365 116.474 29.6416C116.474 29.8376 116.408 30.0062 116.275 30.1475C116.148 30.2842 115.963 30.3525 115.722 30.3525C115.476 30.3525 115.289 30.2842 115.161 30.1475C115.038 30.0062 114.977 29.8376 114.977 29.6416ZM119.639 33.1826V39H118.374V31.6035H119.57L119.639 33.1826ZM119.338 35.0215L118.812 35.001C118.816 34.4951 118.891 34.028 119.037 33.5996C119.183 33.1667 119.388 32.7907 119.652 32.4717C119.917 32.1527 120.231 31.9066 120.596 31.7334C120.965 31.5557 121.373 31.4668 121.819 31.4668C122.184 31.4668 122.512 31.5169 122.804 31.6172C123.095 31.7129 123.344 31.8678 123.549 32.082C123.758 32.2962 123.918 32.5742 124.027 32.916C124.137 33.2533 124.191 33.6657 124.191 34.1533V39H122.92V34.1396C122.92 33.7523 122.863 33.4424 122.749 33.21C122.635 32.973 122.469 32.8021 122.25 32.6973C122.031 32.5879 121.762 32.5332 121.443 32.5332C121.129 32.5332 120.842 32.5993 120.582 32.7314C120.327 32.8636 120.106 33.0459 119.919 33.2783C119.737 33.5107 119.593 33.7773 119.488 34.0781C119.388 34.3743 119.338 34.6888 119.338 35.0215ZM127.999 39H126.734V30.8242C126.734 30.291 126.83 29.8421 127.021 29.4775C127.217 29.1084 127.498 28.8304 127.862 28.6436C128.227 28.4521 128.66 28.3564 129.161 28.3564C129.307 28.3564 129.453 28.3656 129.599 28.3838C129.749 28.402 129.895 28.4294 130.036 28.4658L129.968 29.498C129.872 29.4753 129.763 29.4593 129.64 29.4502C129.521 29.4411 129.403 29.4365 129.284 29.4365C129.015 29.4365 128.783 29.4912 128.587 29.6006C128.396 29.7054 128.25 29.8604 128.149 30.0654C128.049 30.2705 127.999 30.5234 127.999 30.8242V39ZM129.571 31.6035V32.5742H125.565V31.6035H129.571ZM130.645 35.3838V35.2266C130.645 34.6934 130.722 34.1989 130.877 33.7432C131.032 33.2829 131.255 32.8841 131.547 32.5469C131.839 32.2051 132.192 31.9408 132.606 31.7539C133.021 31.5625 133.486 31.4668 134.001 31.4668C134.521 31.4668 134.988 31.5625 135.402 31.7539C135.822 31.9408 136.177 32.2051 136.469 32.5469C136.765 32.8841 136.991 33.2829 137.146 33.7432C137.3 34.1989 137.378 34.6934 137.378 35.2266V35.3838C137.378 35.917 137.3 36.4115 137.146 36.8672C136.991 37.3229 136.765 37.7217 136.469 38.0635C136.177 38.4007 135.824 38.665 135.409 38.8564C134.999 39.0433 134.534 39.1367 134.015 39.1367C133.495 39.1367 133.028 39.0433 132.613 38.8564C132.199 38.665 131.843 38.4007 131.547 38.0635C131.255 37.7217 131.032 37.3229 130.877 36.8672C130.722 36.4115 130.645 35.917 130.645 35.3838ZM131.909 35.2266V35.3838C131.909 35.7529 131.952 36.1016 132.039 36.4297C132.126 36.7533 132.256 37.0404 132.429 37.291C132.606 37.5417 132.827 37.7399 133.092 37.8857C133.356 38.027 133.664 38.0977 134.015 38.0977C134.361 38.0977 134.664 38.027 134.924 37.8857C135.188 37.7399 135.407 37.5417 135.58 37.291C135.753 37.0404 135.883 36.7533 135.97 36.4297C136.061 36.1016 136.106 35.7529 136.106 35.3838V35.2266C136.106 34.862 136.061 34.5179 135.97 34.1943C135.883 33.8662 135.751 33.5768 135.573 33.3262C135.4 33.071 135.181 32.8704 134.917 32.7246C134.657 32.5788 134.352 32.5059 134.001 32.5059C133.655 32.5059 133.349 32.5788 133.085 32.7246C132.825 32.8704 132.606 33.071 132.429 33.3262C132.256 33.5768 132.126 33.8662 132.039 34.1943C131.952 34.5179 131.909 34.862 131.909 35.2266ZM140.229 32.7656V39H138.964V31.6035H140.194L140.229 32.7656ZM142.539 31.5625L142.532 32.7383C142.427 32.7155 142.327 32.7018 142.231 32.6973C142.14 32.6882 142.035 32.6836 141.917 32.6836C141.625 32.6836 141.368 32.7292 141.145 32.8203C140.921 32.9115 140.732 33.0391 140.577 33.2031C140.422 33.3672 140.299 33.5632 140.208 33.791C140.121 34.0143 140.064 34.2604 140.037 34.5293L139.682 34.7344C139.682 34.2878 139.725 33.8685 139.812 33.4766C139.903 33.0846 140.042 32.7383 140.229 32.4375C140.415 32.1322 140.652 31.8952 140.939 31.7266C141.231 31.5534 141.577 31.4668 141.979 31.4668C142.07 31.4668 142.174 31.4782 142.293 31.501C142.411 31.5192 142.493 31.5397 142.539 31.5625ZM144.966 33.0732V39H143.694V31.6035H144.897L144.966 33.0732ZM144.706 35.0215L144.118 35.001C144.123 34.4951 144.189 34.028 144.316 33.5996C144.444 33.1667 144.633 32.7907 144.884 32.4717C145.134 32.1527 145.447 31.9066 145.82 31.7334C146.194 31.5557 146.627 31.4668 147.119 31.4668C147.465 31.4668 147.785 31.5169 148.076 31.6172C148.368 31.7129 148.621 31.8656 148.835 32.0752C149.049 32.2848 149.215 32.5537 149.334 32.8818C149.452 33.21 149.512 33.6064 149.512 34.0713V39H148.247V34.1328C148.247 33.7454 148.181 33.4355 148.049 33.2031C147.921 32.9707 147.739 32.8021 147.502 32.6973C147.265 32.5879 146.987 32.5332 146.668 32.5332C146.294 32.5332 145.982 32.5993 145.731 32.7314C145.481 32.8636 145.28 33.0459 145.13 33.2783C144.979 33.5107 144.87 33.7773 144.802 34.0781C144.738 34.3743 144.706 34.6888 144.706 35.0215ZM149.498 34.3242L148.65 34.584C148.655 34.1784 148.721 33.7887 148.849 33.415C148.981 33.0413 149.17 32.7087 149.416 32.417C149.667 32.1253 149.974 31.8952 150.339 31.7266C150.703 31.5534 151.12 31.4668 151.59 31.4668C151.986 31.4668 152.337 31.5192 152.643 31.624C152.952 31.7288 153.212 31.8906 153.422 32.1094C153.636 32.3236 153.798 32.5993 153.907 32.9365C154.017 33.2738 154.071 33.6748 154.071 34.1396V39H152.8V34.126C152.8 33.7113 152.734 33.39 152.602 33.1621C152.474 32.9297 152.292 32.7679 152.055 32.6768C151.822 32.5811 151.544 32.5332 151.221 32.5332C150.943 32.5332 150.697 32.5811 150.482 32.6768C150.268 32.7725 150.088 32.9046 149.942 33.0732C149.797 33.2373 149.685 33.4264 149.607 33.6406C149.535 33.8548 149.498 34.0827 149.498 34.3242ZM160.347 37.7354V33.9277C160.347 33.6361 160.287 33.3831 160.169 33.1689C160.055 32.9502 159.882 32.7816 159.649 32.6631C159.417 32.5446 159.13 32.4854 158.788 32.4854C158.469 32.4854 158.189 32.54 157.947 32.6494C157.71 32.7588 157.523 32.9023 157.387 33.0801C157.255 33.2578 157.188 33.4492 157.188 33.6543H155.924C155.924 33.39 155.992 33.1279 156.129 32.8682C156.266 32.6084 156.462 32.3737 156.717 32.1641C156.977 31.9499 157.286 31.7812 157.646 31.6582C158.011 31.5306 158.417 31.4668 158.863 31.4668C159.401 31.4668 159.875 31.5579 160.285 31.7402C160.7 31.9225 161.023 32.1982 161.256 32.5674C161.493 32.932 161.611 33.39 161.611 33.9414V37.3867C161.611 37.6328 161.632 37.8949 161.673 38.1729C161.718 38.4508 161.785 38.6901 161.871 38.8906V39H160.552C160.488 38.8542 160.438 38.6605 160.401 38.4189C160.365 38.1729 160.347 37.945 160.347 37.7354ZM160.565 34.5156L160.579 35.4043H159.301C158.941 35.4043 158.619 35.4339 158.337 35.4932C158.054 35.5479 157.817 35.6322 157.626 35.7461C157.435 35.86 157.289 36.0036 157.188 36.1768C157.088 36.3454 157.038 36.5436 157.038 36.7715C157.038 37.0039 157.09 37.2158 157.195 37.4072C157.3 37.5986 157.457 37.7513 157.667 37.8652C157.881 37.9746 158.143 38.0293 158.453 38.0293C158.84 38.0293 159.182 37.9473 159.479 37.7832C159.775 37.6191 160.009 37.4186 160.183 37.1816C160.36 36.9447 160.456 36.7145 160.47 36.4912L161.01 37.0996C160.978 37.291 160.891 37.5029 160.75 37.7354C160.609 37.9678 160.42 38.1911 160.183 38.4053C159.95 38.6149 159.672 38.7904 159.349 38.9316C159.03 39.0684 158.67 39.1367 158.269 39.1367C157.767 39.1367 157.327 39.0387 156.949 38.8428C156.576 38.6468 156.284 38.3848 156.074 38.0566C155.869 37.724 155.767 37.3525 155.767 36.9424C155.767 36.5459 155.844 36.1973 155.999 35.8965C156.154 35.5911 156.377 35.3382 156.669 35.1377C156.961 34.9326 157.312 34.7777 157.722 34.6729C158.132 34.568 158.59 34.5156 159.096 34.5156H160.565ZM166.697 31.6035V32.5742H162.698V31.6035H166.697ZM164.052 29.8057H165.316V37.168C165.316 37.4186 165.355 37.6077 165.433 37.7354C165.51 37.863 165.61 37.9473 165.733 37.9883C165.856 38.0293 165.989 38.0498 166.13 38.0498C166.235 38.0498 166.344 38.0407 166.458 38.0225C166.576 37.9997 166.665 37.9814 166.725 37.9678L166.731 39C166.631 39.0319 166.499 39.0615 166.335 39.0889C166.175 39.1208 165.982 39.1367 165.754 39.1367C165.444 39.1367 165.159 39.0752 164.899 38.9521C164.64 38.8291 164.432 38.624 164.277 38.3369C164.127 38.0452 164.052 37.6533 164.052 37.1611V29.8057ZM169.555 31.6035V39H168.283V31.6035H169.555ZM168.188 29.6416C168.188 29.4365 168.249 29.2633 168.372 29.1221C168.5 28.9808 168.687 28.9102 168.933 28.9102C169.174 28.9102 169.359 28.9808 169.486 29.1221C169.618 29.2633 169.685 29.4365 169.685 29.6416C169.685 29.8376 169.618 30.0062 169.486 30.1475C169.359 30.2842 169.174 30.3525 168.933 30.3525C168.687 30.3525 168.5 30.2842 168.372 30.1475C168.249 30.0062 168.188 29.8376 168.188 29.6416ZM171.25 35.3838V35.2266C171.25 34.6934 171.327 34.1989 171.482 33.7432C171.637 33.2829 171.861 32.8841 172.152 32.5469C172.444 32.2051 172.797 31.9408 173.212 31.7539C173.627 31.5625 174.091 31.4668 174.606 31.4668C175.126 31.4668 175.593 31.5625 176.008 31.7539C176.427 31.9408 176.783 32.2051 177.074 32.5469C177.37 32.8841 177.596 33.2829 177.751 33.7432C177.906 34.1989 177.983 34.6934 177.983 35.2266V35.3838C177.983 35.917 177.906 36.4115 177.751 36.8672C177.596 37.3229 177.37 37.7217 177.074 38.0635C176.783 38.4007 176.429 38.665 176.015 38.8564C175.604 39.0433 175.14 39.1367 174.62 39.1367C174.101 39.1367 173.633 39.0433 173.219 38.8564C172.804 38.665 172.449 38.4007 172.152 38.0635C171.861 37.7217 171.637 37.3229 171.482 36.8672C171.327 36.4115 171.25 35.917 171.25 35.3838ZM172.515 35.2266V35.3838C172.515 35.7529 172.558 36.1016 172.645 36.4297C172.731 36.7533 172.861 37.0404 173.034 37.291C173.212 37.5417 173.433 37.7399 173.697 37.8857C173.962 38.027 174.269 38.0977 174.62 38.0977C174.966 38.0977 175.27 38.027 175.529 37.8857C175.794 37.7399 176.012 37.5417 176.186 37.291C176.359 37.0404 176.489 36.7533 176.575 36.4297C176.666 36.1016 176.712 35.7529 176.712 35.3838V35.2266C176.712 34.862 176.666 34.5179 176.575 34.1943C176.489 33.8662 176.356 33.5768 176.179 33.3262C176.006 33.071 175.787 32.8704 175.522 32.7246C175.263 32.5788 174.957 32.5059 174.606 32.5059C174.26 32.5059 173.955 32.5788 173.69 32.7246C173.431 32.8704 173.212 33.071 173.034 33.3262C172.861 33.5768 172.731 33.8662 172.645 34.1943C172.558 34.5179 172.515 34.862 172.515 35.2266ZM180.834 33.1826V39H179.569V31.6035H180.766L180.834 33.1826ZM180.533 35.0215L180.007 35.001C180.011 34.4951 180.087 34.028 180.232 33.5996C180.378 33.1667 180.583 32.7907 180.848 32.4717C181.112 32.1527 181.426 31.9066 181.791 31.7334C182.16 31.5557 182.568 31.4668 183.015 31.4668C183.379 31.4668 183.707 31.5169 183.999 31.6172C184.291 31.7129 184.539 31.8678 184.744 32.082C184.954 32.2962 185.113 32.5742 185.223 32.916C185.332 33.2533 185.387 33.6657 185.387 34.1533V39H184.115V34.1396C184.115 33.7523 184.058 33.4424 183.944 33.21C183.83 32.973 183.664 32.8021 183.445 32.6973C183.227 32.5879 182.958 32.5332 182.639 32.5332C182.324 32.5332 182.037 32.5993 181.777 32.7314C181.522 32.8636 181.301 33.0459 181.114 33.2783C180.932 33.5107 180.788 33.7773 180.684 34.0781C180.583 34.3743 180.533 34.6888 180.533 35.0215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"15",y:"52",width:"268",height:"40",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M258 72H40",stroke:"#4272F9",strokeWidth:"3",strokeLinecap:"round"}),(0,h.createElement)("path",{d:"M47.0752 109.23V110.748C47.0752 111.564 47.0023 112.252 46.8564 112.812C46.7106 113.373 46.501 113.824 46.2275 114.166C45.9541 114.508 45.6237 114.756 45.2363 114.911C44.8535 115.062 44.4206 115.137 43.9375 115.137C43.5547 115.137 43.2015 115.089 42.8779 114.993C42.5544 114.897 42.2627 114.745 42.0029 114.535C41.7477 114.321 41.529 114.043 41.3467 113.701C41.1644 113.359 41.0254 112.945 40.9297 112.457C40.834 111.969 40.7861 111.4 40.7861 110.748V109.23C40.7861 108.415 40.859 107.731 41.0049 107.18C41.1553 106.628 41.3672 106.186 41.6406 105.854C41.9141 105.516 42.2422 105.275 42.625 105.129C43.0124 104.983 43.4453 104.91 43.9238 104.91C44.3112 104.91 44.6667 104.958 44.9902 105.054C45.3184 105.145 45.61 105.293 45.8652 105.498C46.1204 105.699 46.3369 105.967 46.5146 106.305C46.6969 106.637 46.8359 107.045 46.9316 107.528C47.0273 108.011 47.0752 108.579 47.0752 109.23ZM45.8037 110.953V109.019C45.8037 108.572 45.7764 108.18 45.7217 107.843C45.6715 107.501 45.5964 107.209 45.4961 106.968C45.3958 106.726 45.2682 106.53 45.1133 106.38C44.9629 106.229 44.7874 106.12 44.5869 106.052C44.391 105.979 44.1699 105.942 43.9238 105.942C43.623 105.942 43.3564 105.999 43.124 106.113C42.8916 106.223 42.6956 106.398 42.5361 106.64C42.3812 106.881 42.2627 107.198 42.1807 107.59C42.0986 107.982 42.0576 108.458 42.0576 109.019V110.953C42.0576 111.4 42.0827 111.794 42.1328 112.136C42.1875 112.478 42.2673 112.774 42.3721 113.024C42.4769 113.271 42.6045 113.473 42.7549 113.633C42.9053 113.792 43.0785 113.911 43.2744 113.988C43.4749 114.061 43.696 114.098 43.9375 114.098C44.2474 114.098 44.5186 114.038 44.751 113.92C44.9834 113.801 45.1771 113.617 45.332 113.366C45.4915 113.111 45.61 112.785 45.6875 112.389C45.765 111.988 45.8037 111.509 45.8037 110.953ZM55.2236 113.961V115H48.709V114.091L51.9697 110.461C52.3708 110.014 52.6807 109.636 52.8994 109.326C53.1227 109.012 53.2777 108.731 53.3643 108.485C53.4554 108.235 53.501 107.979 53.501 107.72C53.501 107.392 53.4326 107.095 53.2959 106.831C53.1637 106.562 52.9678 106.348 52.708 106.188C52.4482 106.029 52.1338 105.949 51.7646 105.949C51.3226 105.949 50.9535 106.036 50.6572 106.209C50.3656 106.378 50.1468 106.615 50.001 106.92C49.8551 107.225 49.7822 107.576 49.7822 107.973H48.5176C48.5176 107.412 48.6406 106.899 48.8867 106.435C49.1328 105.97 49.4974 105.601 49.9805 105.327C50.4635 105.049 51.0583 104.91 51.7646 104.91C52.3936 104.91 52.9313 105.022 53.3779 105.245C53.8245 105.464 54.1663 105.774 54.4033 106.175C54.6449 106.571 54.7656 107.036 54.7656 107.569C54.7656 107.861 54.7155 108.157 54.6152 108.458C54.5195 108.754 54.3851 109.05 54.2119 109.347C54.0433 109.643 53.8451 109.935 53.6172 110.222C53.3939 110.509 53.1546 110.791 52.8994 111.069L50.2334 113.961H55.2236ZM56.7344 114.33C56.7344 114.116 56.8005 113.936 56.9326 113.79C57.0693 113.64 57.2653 113.564 57.5205 113.564C57.7757 113.564 57.9694 113.64 58.1016 113.79C58.2383 113.936 58.3066 114.116 58.3066 114.33C58.3066 114.54 58.2383 114.717 58.1016 114.863C57.9694 115.009 57.7757 115.082 57.5205 115.082C57.2653 115.082 57.0693 115.009 56.9326 114.863C56.8005 114.717 56.7344 114.54 56.7344 114.33ZM67.7402 111.097H65.0811V110.023H67.7402C68.2552 110.023 68.6722 109.941 68.9912 109.777C69.3102 109.613 69.5426 109.385 69.6885 109.094C69.8389 108.802 69.9141 108.469 69.9141 108.096C69.9141 107.754 69.8389 107.433 69.6885 107.132C69.5426 106.831 69.3102 106.59 68.9912 106.407C68.6722 106.22 68.2552 106.127 67.7402 106.127H65.3887V115H64.0693V105.047H67.7402C68.4922 105.047 69.1279 105.177 69.6475 105.437C70.167 105.696 70.5612 106.056 70.8301 106.517C71.099 106.972 71.2334 107.494 71.2334 108.082C71.2334 108.72 71.099 109.265 70.8301 109.716C70.5612 110.167 70.167 110.511 69.6475 110.748C69.1279 110.98 68.4922 111.097 67.7402 111.097ZM75.6836 115.137C75.1686 115.137 74.7015 115.05 74.2822 114.877C73.8675 114.699 73.5098 114.451 73.209 114.132C72.9128 113.813 72.6849 113.435 72.5254 112.997C72.3659 112.56 72.2861 112.081 72.2861 111.562V111.274C72.2861 110.673 72.375 110.137 72.5527 109.668C72.7305 109.194 72.972 108.793 73.2773 108.465C73.5827 108.137 73.929 107.888 74.3164 107.72C74.7038 107.551 75.1048 107.467 75.5195 107.467C76.0482 107.467 76.5039 107.558 76.8867 107.74C77.2741 107.923 77.5908 108.178 77.8369 108.506C78.083 108.829 78.2653 109.212 78.3838 109.654C78.5023 110.092 78.5615 110.57 78.5615 111.09V111.657H73.0381V110.625H77.2969V110.529C77.2786 110.201 77.2103 109.882 77.0918 109.572C76.9779 109.262 76.7956 109.007 76.5449 108.807C76.2943 108.606 75.9525 108.506 75.5195 108.506C75.2324 108.506 74.9681 108.567 74.7266 108.69C74.485 108.809 74.2777 108.987 74.1045 109.224C73.9313 109.461 73.7969 109.75 73.7012 110.092C73.6055 110.434 73.5576 110.828 73.5576 111.274V111.562C73.5576 111.912 73.6055 112.243 73.7012 112.553C73.8014 112.858 73.945 113.127 74.1318 113.359C74.3232 113.592 74.5534 113.774 74.8223 113.906C75.0957 114.038 75.4056 114.104 75.752 114.104C76.1986 114.104 76.5768 114.013 76.8867 113.831C77.1966 113.649 77.4678 113.405 77.7002 113.1L78.4658 113.708C78.3063 113.95 78.1035 114.18 77.8574 114.398C77.6113 114.617 77.3083 114.795 76.9482 114.932C76.5928 115.068 76.1712 115.137 75.6836 115.137ZM81.3027 108.766V115H80.0381V107.604H81.2686L81.3027 108.766ZM83.6133 107.562L83.6064 108.738C83.5016 108.715 83.4014 108.702 83.3057 108.697C83.2145 108.688 83.1097 108.684 82.9912 108.684C82.6995 108.684 82.4421 108.729 82.2188 108.82C81.9954 108.911 81.8063 109.039 81.6514 109.203C81.4964 109.367 81.3734 109.563 81.2822 109.791C81.1956 110.014 81.1387 110.26 81.1113 110.529L80.7559 110.734C80.7559 110.288 80.7992 109.868 80.8857 109.477C80.9769 109.085 81.1159 108.738 81.3027 108.438C81.4896 108.132 81.7266 107.895 82.0137 107.727C82.3053 107.553 82.6517 107.467 83.0527 107.467C83.1439 107.467 83.2487 107.478 83.3672 107.501C83.4857 107.519 83.5677 107.54 83.6133 107.562ZM89.0889 113.038C89.0889 112.856 89.0479 112.687 88.9658 112.532C88.8883 112.373 88.7266 112.229 88.4805 112.102C88.2389 111.969 87.8743 111.855 87.3867 111.76C86.9766 111.673 86.6051 111.571 86.2725 111.452C85.9443 111.334 85.6641 111.19 85.4316 111.021C85.2038 110.853 85.0283 110.655 84.9053 110.427C84.7822 110.199 84.7207 109.932 84.7207 109.627C84.7207 109.335 84.7845 109.06 84.9121 108.8C85.0443 108.54 85.2288 108.31 85.4658 108.109C85.7074 107.909 85.9967 107.752 86.334 107.638C86.6712 107.524 87.0472 107.467 87.4619 107.467C88.0544 107.467 88.5602 107.572 88.9795 107.781C89.3988 107.991 89.7201 108.271 89.9434 108.622C90.1667 108.968 90.2783 109.354 90.2783 109.777H89.0137C89.0137 109.572 88.9521 109.374 88.8291 109.183C88.7106 108.987 88.5352 108.825 88.3027 108.697C88.0749 108.57 87.7946 108.506 87.4619 108.506C87.111 108.506 86.8262 108.561 86.6074 108.67C86.3932 108.775 86.236 108.909 86.1357 109.073C86.04 109.237 85.9922 109.41 85.9922 109.593C85.9922 109.729 86.015 109.853 86.0605 109.962C86.1107 110.067 86.1973 110.165 86.3203 110.256C86.4434 110.342 86.6165 110.424 86.8398 110.502C87.0632 110.579 87.348 110.657 87.6943 110.734C88.3005 110.871 88.7995 111.035 89.1914 111.227C89.5833 111.418 89.875 111.653 90.0664 111.931C90.2578 112.209 90.3535 112.546 90.3535 112.942C90.3535 113.266 90.2852 113.562 90.1484 113.831C90.0163 114.1 89.8226 114.332 89.5674 114.528C89.3167 114.72 89.016 114.87 88.665 114.979C88.3187 115.084 87.929 115.137 87.4961 115.137C86.8444 115.137 86.293 115.021 85.8418 114.788C85.3906 114.556 85.0488 114.255 84.8164 113.886C84.584 113.517 84.4678 113.127 84.4678 112.717H85.7393C85.7575 113.063 85.8577 113.339 86.04 113.544C86.2223 113.744 86.4456 113.888 86.71 113.975C86.9743 114.057 87.2363 114.098 87.4961 114.098C87.8424 114.098 88.1318 114.052 88.3643 113.961C88.6012 113.87 88.7812 113.744 88.9043 113.585C89.0273 113.425 89.0889 113.243 89.0889 113.038ZM91.6797 111.384V111.227C91.6797 110.693 91.7572 110.199 91.9121 109.743C92.0671 109.283 92.2904 108.884 92.582 108.547C92.8737 108.205 93.2269 107.941 93.6416 107.754C94.0563 107.562 94.5212 107.467 95.0361 107.467C95.5557 107.467 96.0228 107.562 96.4375 107.754C96.8568 107.941 97.2122 108.205 97.5039 108.547C97.8001 108.884 98.0257 109.283 98.1807 109.743C98.3356 110.199 98.4131 110.693 98.4131 111.227V111.384C98.4131 111.917 98.3356 112.411 98.1807 112.867C98.0257 113.323 97.8001 113.722 97.5039 114.063C97.2122 114.401 96.859 114.665 96.4443 114.856C96.0342 115.043 95.5693 115.137 95.0498 115.137C94.5303 115.137 94.0632 115.043 93.6484 114.856C93.2337 114.665 92.8783 114.401 92.582 114.063C92.2904 113.722 92.0671 113.323 91.9121 112.867C91.7572 112.411 91.6797 111.917 91.6797 111.384ZM92.9443 111.227V111.384C92.9443 111.753 92.9876 112.102 93.0742 112.43C93.1608 112.753 93.2907 113.04 93.4639 113.291C93.6416 113.542 93.8626 113.74 94.127 113.886C94.3913 114.027 94.6989 114.098 95.0498 114.098C95.3962 114.098 95.6992 114.027 95.959 113.886C96.2233 113.74 96.4421 113.542 96.6152 113.291C96.7884 113.04 96.9183 112.753 97.0049 112.43C97.096 112.102 97.1416 111.753 97.1416 111.384V111.227C97.1416 110.862 97.096 110.518 97.0049 110.194C96.9183 109.866 96.7861 109.577 96.6084 109.326C96.4352 109.071 96.2165 108.87 95.9521 108.725C95.6924 108.579 95.387 108.506 95.0361 108.506C94.6898 108.506 94.3844 108.579 94.1201 108.725C93.8604 108.87 93.6416 109.071 93.4639 109.326C93.2907 109.577 93.1608 109.866 93.0742 110.194C92.9876 110.518 92.9443 110.862 92.9443 111.227ZM101.264 109.183V115H99.999V107.604H101.195L101.264 109.183ZM100.963 111.021L100.437 111.001C100.441 110.495 100.516 110.028 100.662 109.6C100.808 109.167 101.013 108.791 101.277 108.472C101.542 108.153 101.856 107.907 102.221 107.733C102.59 107.556 102.998 107.467 103.444 107.467C103.809 107.467 104.137 107.517 104.429 107.617C104.72 107.713 104.969 107.868 105.174 108.082C105.383 108.296 105.543 108.574 105.652 108.916C105.762 109.253 105.816 109.666 105.816 110.153V115H104.545V110.14C104.545 109.752 104.488 109.442 104.374 109.21C104.26 108.973 104.094 108.802 103.875 108.697C103.656 108.588 103.387 108.533 103.068 108.533C102.754 108.533 102.467 108.599 102.207 108.731C101.952 108.864 101.731 109.046 101.544 109.278C101.362 109.511 101.218 109.777 101.113 110.078C101.013 110.374 100.963 110.689 100.963 111.021ZM112.099 113.735V109.928C112.099 109.636 112.039 109.383 111.921 109.169C111.807 108.95 111.634 108.782 111.401 108.663C111.169 108.545 110.882 108.485 110.54 108.485C110.221 108.485 109.941 108.54 109.699 108.649C109.462 108.759 109.275 108.902 109.139 109.08C109.007 109.258 108.94 109.449 108.94 109.654H107.676C107.676 109.39 107.744 109.128 107.881 108.868C108.018 108.608 108.214 108.374 108.469 108.164C108.729 107.95 109.038 107.781 109.398 107.658C109.763 107.531 110.169 107.467 110.615 107.467C111.153 107.467 111.627 107.558 112.037 107.74C112.452 107.923 112.775 108.198 113.008 108.567C113.245 108.932 113.363 109.39 113.363 109.941V113.387C113.363 113.633 113.384 113.895 113.425 114.173C113.47 114.451 113.536 114.69 113.623 114.891V115H112.304C112.24 114.854 112.19 114.66 112.153 114.419C112.117 114.173 112.099 113.945 112.099 113.735ZM112.317 110.516L112.331 111.404H111.053C110.693 111.404 110.371 111.434 110.089 111.493C109.806 111.548 109.569 111.632 109.378 111.746C109.187 111.86 109.041 112.004 108.94 112.177C108.84 112.345 108.79 112.544 108.79 112.771C108.79 113.004 108.842 113.216 108.947 113.407C109.052 113.599 109.209 113.751 109.419 113.865C109.633 113.975 109.895 114.029 110.205 114.029C110.592 114.029 110.934 113.947 111.23 113.783C111.527 113.619 111.761 113.419 111.935 113.182C112.112 112.945 112.208 112.715 112.222 112.491L112.762 113.1C112.73 113.291 112.643 113.503 112.502 113.735C112.361 113.968 112.172 114.191 111.935 114.405C111.702 114.615 111.424 114.79 111.101 114.932C110.782 115.068 110.422 115.137 110.021 115.137C109.519 115.137 109.079 115.039 108.701 114.843C108.327 114.647 108.036 114.385 107.826 114.057C107.621 113.724 107.519 113.353 107.519 112.942C107.519 112.546 107.596 112.197 107.751 111.896C107.906 111.591 108.129 111.338 108.421 111.138C108.713 110.933 109.063 110.778 109.474 110.673C109.884 110.568 110.342 110.516 110.848 110.516H112.317ZM116.727 104.5V115H115.455V104.5H116.727ZM123.604 107.604V115H122.332V107.604H123.604ZM122.236 105.642C122.236 105.437 122.298 105.263 122.421 105.122C122.549 104.981 122.735 104.91 122.981 104.91C123.223 104.91 123.408 104.981 123.535 105.122C123.667 105.263 123.733 105.437 123.733 105.642C123.733 105.838 123.667 106.006 123.535 106.147C123.408 106.284 123.223 106.353 122.981 106.353C122.735 106.353 122.549 106.284 122.421 106.147C122.298 106.006 122.236 105.838 122.236 105.642ZM126.898 109.183V115H125.634V107.604H126.83L126.898 109.183ZM126.598 111.021L126.071 111.001C126.076 110.495 126.151 110.028 126.297 109.6C126.443 109.167 126.648 108.791 126.912 108.472C127.176 108.153 127.491 107.907 127.855 107.733C128.225 107.556 128.632 107.467 129.079 107.467C129.444 107.467 129.772 107.517 130.063 107.617C130.355 107.713 130.604 107.868 130.809 108.082C131.018 108.296 131.178 108.574 131.287 108.916C131.396 109.253 131.451 109.666 131.451 110.153V115H130.18V110.14C130.18 109.752 130.123 109.442 130.009 109.21C129.895 108.973 129.729 108.802 129.51 108.697C129.291 108.588 129.022 108.533 128.703 108.533C128.389 108.533 128.102 108.599 127.842 108.731C127.587 108.864 127.366 109.046 127.179 109.278C126.996 109.511 126.853 109.777 126.748 110.078C126.648 110.374 126.598 110.689 126.598 111.021ZM135.259 115H133.994V106.824C133.994 106.291 134.09 105.842 134.281 105.478C134.477 105.108 134.757 104.83 135.122 104.644C135.487 104.452 135.92 104.356 136.421 104.356C136.567 104.356 136.713 104.366 136.858 104.384C137.009 104.402 137.155 104.429 137.296 104.466L137.228 105.498C137.132 105.475 137.022 105.459 136.899 105.45C136.781 105.441 136.662 105.437 136.544 105.437C136.275 105.437 136.043 105.491 135.847 105.601C135.655 105.705 135.509 105.86 135.409 106.065C135.309 106.271 135.259 106.523 135.259 106.824V115ZM136.831 107.604V108.574H132.825V107.604H136.831ZM137.904 111.384V111.227C137.904 110.693 137.982 110.199 138.137 109.743C138.292 109.283 138.515 108.884 138.807 108.547C139.098 108.205 139.451 107.941 139.866 107.754C140.281 107.562 140.746 107.467 141.261 107.467C141.78 107.467 142.247 107.562 142.662 107.754C143.081 107.941 143.437 108.205 143.729 108.547C144.025 108.884 144.25 109.283 144.405 109.743C144.56 110.199 144.638 110.693 144.638 111.227V111.384C144.638 111.917 144.56 112.411 144.405 112.867C144.25 113.323 144.025 113.722 143.729 114.063C143.437 114.401 143.084 114.665 142.669 114.856C142.259 115.043 141.794 115.137 141.274 115.137C140.755 115.137 140.288 115.043 139.873 114.856C139.458 114.665 139.103 114.401 138.807 114.063C138.515 113.722 138.292 113.323 138.137 112.867C137.982 112.411 137.904 111.917 137.904 111.384ZM139.169 111.227V111.384C139.169 111.753 139.212 112.102 139.299 112.43C139.385 112.753 139.515 113.04 139.688 113.291C139.866 113.542 140.087 113.74 140.352 113.886C140.616 114.027 140.924 114.098 141.274 114.098C141.621 114.098 141.924 114.027 142.184 113.886C142.448 113.74 142.667 113.542 142.84 113.291C143.013 113.04 143.143 112.753 143.229 112.43C143.321 112.102 143.366 111.753 143.366 111.384V111.227C143.366 110.862 143.321 110.518 143.229 110.194C143.143 109.866 143.011 109.577 142.833 109.326C142.66 109.071 142.441 108.87 142.177 108.725C141.917 108.579 141.612 108.506 141.261 108.506C140.914 108.506 140.609 108.579 140.345 108.725C140.085 108.87 139.866 109.071 139.688 109.326C139.515 109.577 139.385 109.866 139.299 110.194C139.212 110.518 139.169 110.862 139.169 111.227ZM147.488 108.766V115H146.224V107.604H147.454L147.488 108.766ZM149.799 107.562L149.792 108.738C149.687 108.715 149.587 108.702 149.491 108.697C149.4 108.688 149.295 108.684 149.177 108.684C148.885 108.684 148.628 108.729 148.404 108.82C148.181 108.911 147.992 109.039 147.837 109.203C147.682 109.367 147.559 109.563 147.468 109.791C147.381 110.014 147.324 110.26 147.297 110.529L146.941 110.734C146.941 110.288 146.985 109.868 147.071 109.477C147.162 109.085 147.301 108.738 147.488 108.438C147.675 108.132 147.912 107.895 148.199 107.727C148.491 107.553 148.837 107.467 149.238 107.467C149.329 107.467 149.434 107.478 149.553 107.501C149.671 107.519 149.753 107.54 149.799 107.562ZM152.226 109.073V115H150.954V107.604H152.157L152.226 109.073ZM151.966 111.021L151.378 111.001C151.382 110.495 151.449 110.028 151.576 109.6C151.704 109.167 151.893 108.791 152.144 108.472C152.394 108.153 152.706 107.907 153.08 107.733C153.454 107.556 153.887 107.467 154.379 107.467C154.725 107.467 155.044 107.517 155.336 107.617C155.628 107.713 155.881 107.866 156.095 108.075C156.309 108.285 156.475 108.554 156.594 108.882C156.712 109.21 156.771 109.606 156.771 110.071V115H155.507V110.133C155.507 109.745 155.441 109.436 155.309 109.203C155.181 108.971 154.999 108.802 154.762 108.697C154.525 108.588 154.247 108.533 153.928 108.533C153.554 108.533 153.242 108.599 152.991 108.731C152.741 108.864 152.54 109.046 152.39 109.278C152.239 109.511 152.13 109.777 152.062 110.078C151.998 110.374 151.966 110.689 151.966 111.021ZM156.758 110.324L155.91 110.584C155.915 110.178 155.981 109.789 156.108 109.415C156.241 109.041 156.43 108.709 156.676 108.417C156.926 108.125 157.234 107.895 157.599 107.727C157.963 107.553 158.38 107.467 158.85 107.467C159.246 107.467 159.597 107.519 159.902 107.624C160.212 107.729 160.472 107.891 160.682 108.109C160.896 108.324 161.058 108.599 161.167 108.937C161.276 109.274 161.331 109.675 161.331 110.14V115H160.06V110.126C160.06 109.711 159.993 109.39 159.861 109.162C159.734 108.93 159.551 108.768 159.314 108.677C159.082 108.581 158.804 108.533 158.48 108.533C158.202 108.533 157.956 108.581 157.742 108.677C157.528 108.772 157.348 108.905 157.202 109.073C157.056 109.237 156.945 109.426 156.867 109.641C156.794 109.855 156.758 110.083 156.758 110.324ZM167.606 113.735V109.928C167.606 109.636 167.547 109.383 167.429 109.169C167.315 108.95 167.142 108.782 166.909 108.663C166.677 108.545 166.39 108.485 166.048 108.485C165.729 108.485 165.449 108.54 165.207 108.649C164.97 108.759 164.783 108.902 164.646 109.08C164.514 109.258 164.448 109.449 164.448 109.654H163.184C163.184 109.39 163.252 109.128 163.389 108.868C163.525 108.608 163.721 108.374 163.977 108.164C164.236 107.95 164.546 107.781 164.906 107.658C165.271 107.531 165.676 107.467 166.123 107.467C166.661 107.467 167.135 107.558 167.545 107.74C167.96 107.923 168.283 108.198 168.516 108.567C168.753 108.932 168.871 109.39 168.871 109.941V113.387C168.871 113.633 168.892 113.895 168.933 114.173C168.978 114.451 169.044 114.69 169.131 114.891V115H167.812C167.748 114.854 167.698 114.66 167.661 114.419C167.625 114.173 167.606 113.945 167.606 113.735ZM167.825 110.516L167.839 111.404H166.561C166.201 111.404 165.879 111.434 165.597 111.493C165.314 111.548 165.077 111.632 164.886 111.746C164.694 111.86 164.549 112.004 164.448 112.177C164.348 112.345 164.298 112.544 164.298 112.771C164.298 113.004 164.35 113.216 164.455 113.407C164.56 113.599 164.717 113.751 164.927 113.865C165.141 113.975 165.403 114.029 165.713 114.029C166.1 114.029 166.442 113.947 166.738 113.783C167.035 113.619 167.269 113.419 167.442 113.182C167.62 112.945 167.716 112.715 167.729 112.491L168.27 113.1C168.238 113.291 168.151 113.503 168.01 113.735C167.868 113.968 167.679 114.191 167.442 114.405C167.21 114.615 166.932 114.79 166.608 114.932C166.289 115.068 165.929 115.137 165.528 115.137C165.027 115.137 164.587 115.039 164.209 114.843C163.835 114.647 163.544 114.385 163.334 114.057C163.129 113.724 163.026 113.353 163.026 112.942C163.026 112.546 163.104 112.197 163.259 111.896C163.414 111.591 163.637 111.338 163.929 111.138C164.22 110.933 164.571 110.778 164.981 110.673C165.392 110.568 165.85 110.516 166.355 110.516H167.825ZM173.957 107.604V108.574H169.958V107.604H173.957ZM171.312 105.806H172.576V113.168C172.576 113.419 172.615 113.608 172.692 113.735C172.77 113.863 172.87 113.947 172.993 113.988C173.116 114.029 173.248 114.05 173.39 114.05C173.494 114.05 173.604 114.041 173.718 114.022C173.836 114 173.925 113.981 173.984 113.968L173.991 115C173.891 115.032 173.759 115.062 173.595 115.089C173.435 115.121 173.242 115.137 173.014 115.137C172.704 115.137 172.419 115.075 172.159 114.952C171.899 114.829 171.692 114.624 171.537 114.337C171.387 114.045 171.312 113.653 171.312 113.161V105.806ZM176.814 107.604V115H175.543V107.604H176.814ZM175.447 105.642C175.447 105.437 175.509 105.263 175.632 105.122C175.759 104.981 175.946 104.91 176.192 104.91C176.434 104.91 176.618 104.981 176.746 105.122C176.878 105.263 176.944 105.437 176.944 105.642C176.944 105.838 176.878 106.006 176.746 106.147C176.618 106.284 176.434 106.353 176.192 106.353C175.946 106.353 175.759 106.284 175.632 106.147C175.509 106.006 175.447 105.838 175.447 105.642ZM178.51 111.384V111.227C178.51 110.693 178.587 110.199 178.742 109.743C178.897 109.283 179.12 108.884 179.412 108.547C179.704 108.205 180.057 107.941 180.472 107.754C180.886 107.562 181.351 107.467 181.866 107.467C182.386 107.467 182.853 107.562 183.268 107.754C183.687 107.941 184.042 108.205 184.334 108.547C184.63 108.884 184.856 109.283 185.011 109.743C185.166 110.199 185.243 110.693 185.243 111.227V111.384C185.243 111.917 185.166 112.411 185.011 112.867C184.856 113.323 184.63 113.722 184.334 114.063C184.042 114.401 183.689 114.665 183.274 114.856C182.864 115.043 182.399 115.137 181.88 115.137C181.36 115.137 180.893 115.043 180.479 114.856C180.064 114.665 179.708 114.401 179.412 114.063C179.12 113.722 178.897 113.323 178.742 112.867C178.587 112.411 178.51 111.917 178.51 111.384ZM179.774 111.227V111.384C179.774 111.753 179.818 112.102 179.904 112.43C179.991 112.753 180.121 113.04 180.294 113.291C180.472 113.542 180.693 113.74 180.957 113.886C181.221 114.027 181.529 114.098 181.88 114.098C182.226 114.098 182.529 114.027 182.789 113.886C183.053 113.74 183.272 113.542 183.445 113.291C183.618 113.04 183.748 112.753 183.835 112.43C183.926 112.102 183.972 111.753 183.972 111.384V111.227C183.972 110.862 183.926 110.518 183.835 110.194C183.748 109.866 183.616 109.577 183.438 109.326C183.265 109.071 183.047 108.87 182.782 108.725C182.522 108.579 182.217 108.506 181.866 108.506C181.52 108.506 181.215 108.579 180.95 108.725C180.69 108.87 180.472 109.071 180.294 109.326C180.121 109.577 179.991 109.866 179.904 110.194C179.818 110.518 179.774 110.862 179.774 111.227ZM188.094 109.183V115H186.829V107.604H188.025L188.094 109.183ZM187.793 111.021L187.267 111.001C187.271 110.495 187.346 110.028 187.492 109.6C187.638 109.167 187.843 108.791 188.107 108.472C188.372 108.153 188.686 107.907 189.051 107.733C189.42 107.556 189.828 107.467 190.274 107.467C190.639 107.467 190.967 107.517 191.259 107.617C191.55 107.713 191.799 107.868 192.004 108.082C192.214 108.296 192.373 108.574 192.482 108.916C192.592 109.253 192.646 109.666 192.646 110.153V115H191.375V110.14C191.375 109.752 191.318 109.442 191.204 109.21C191.09 108.973 190.924 108.802 190.705 108.697C190.486 108.588 190.217 108.533 189.898 108.533C189.584 108.533 189.297 108.599 189.037 108.731C188.782 108.864 188.561 109.046 188.374 109.278C188.192 109.511 188.048 109.777 187.943 110.078C187.843 110.374 187.793 110.689 187.793 111.021Z",fill:"#64748B"})),{AdvancedFields:tn}=JetFBComponents,{__:ln}=wp.i18n,{InspectorControls:rn,useBlockProps:nn}=wp.blockEditor?wp.blockEditor:wp.editor,an=JSON.parse('{"apiVersion":3,"name":"jet-forms/group-break-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","conditonal"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Group Break Field","icon":"\\n\\n\\n\\n","attributes":{"visibility":{"type":"string","default":""},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:on}=wp.i18n,{createBlock:sn}=wp.blocks,{name:cn,icon:dn=""}=an,mn={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:dn}}),description:on("Create a break between two fields with a horizontal line. Separate different form parts without dividing form on two pages.","jet-form-builder"),edit:function(e){const C=nn(),{isSelected:t,attributes:l,editProps:{uniqKey:r}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Cn):(0,h.createElement)(h.Fragment,null,t&&(0,h.createElement)(rn,{key:r("InspectorControls")},(0,h.createElement)(tn,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{...C},(0,h.createElement)("div",{className:"jet-form-builder__group-break jet-form-builder__bottom-line"},(0,h.createElement)("span",null,ln("GROUP BREAK","jet-form-builder")))))},useEditProps:["uniqKey"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>sn("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["core/separator"],transform:()=>sn("core/separator",{}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>sn(cn,{...e}),priority:0},{type:"block",blocks:["core/separator"],transform:()=>sn(cn,{}),priority:0}]}},un=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_274_2880)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{width:"268",height:"143",transform:"translate(15 15)",fill:"white"}),(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V45H15V19Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M37.6562 29.3262V30.3994H32.2695V29.3262H37.6562ZM32.4746 25.0469V35H31.1553V25.0469H32.4746ZM38.8047 25.0469V35H37.4922V25.0469H38.8047ZM44.0273 35.1367C43.5124 35.1367 43.0452 35.0501 42.626 34.877C42.2113 34.6992 41.8535 34.4508 41.5527 34.1318C41.2565 33.8128 41.0286 33.4346 40.8691 32.9971C40.7096 32.5596 40.6299 32.0811 40.6299 31.5615V31.2744C40.6299 30.6729 40.7188 30.1374 40.8965 29.668C41.0742 29.194 41.3158 28.793 41.6211 28.4648C41.9264 28.1367 42.2728 27.8883 42.6602 27.7197C43.0475 27.5511 43.4486 27.4668 43.8633 27.4668C44.3919 27.4668 44.8477 27.5579 45.2305 27.7402C45.6178 27.9225 45.9346 28.1777 46.1807 28.5059C46.4268 28.8294 46.609 29.2122 46.7275 29.6543C46.846 30.0918 46.9053 30.5703 46.9053 31.0898V31.6572H41.3818V30.625H45.6406V30.5293C45.6224 30.2012 45.554 29.8822 45.4355 29.5723C45.3216 29.2624 45.1393 29.0072 44.8887 28.8066C44.638 28.6061 44.2962 28.5059 43.8633 28.5059C43.5762 28.5059 43.3118 28.5674 43.0703 28.6904C42.8288 28.8089 42.6214 28.9867 42.4482 29.2236C42.2751 29.4606 42.1406 29.75 42.0449 30.0918C41.9492 30.4336 41.9014 30.8278 41.9014 31.2744V31.5615C41.9014 31.9124 41.9492 32.2428 42.0449 32.5527C42.1452 32.8581 42.2887 33.127 42.4756 33.3594C42.667 33.5918 42.8971 33.7741 43.166 33.9062C43.4395 34.0384 43.7493 34.1045 44.0957 34.1045C44.5423 34.1045 44.9206 34.0133 45.2305 33.8311C45.5404 33.6488 45.8115 33.4049 46.0439 33.0996L46.8096 33.708C46.6501 33.9495 46.4473 34.1797 46.2012 34.3984C45.9551 34.6172 45.652 34.7949 45.292 34.9316C44.9365 35.0684 44.515 35.1367 44.0273 35.1367ZM52.7432 33.7354V29.9277C52.7432 29.6361 52.6839 29.3831 52.5654 29.1689C52.4515 28.9502 52.2783 28.7816 52.0459 28.6631C51.8135 28.5446 51.5264 28.4854 51.1846 28.4854C50.8656 28.4854 50.5853 28.54 50.3438 28.6494C50.1068 28.7588 49.9199 28.9023 49.7832 29.0801C49.651 29.2578 49.585 29.4492 49.585 29.6543H48.3203C48.3203 29.39 48.3887 29.1279 48.5254 28.8682C48.6621 28.6084 48.8581 28.3737 49.1133 28.1641C49.373 27.9499 49.6829 27.7812 50.043 27.6582C50.4076 27.5306 50.8132 27.4668 51.2598 27.4668C51.7975 27.4668 52.2715 27.5579 52.6816 27.7402C53.0964 27.9225 53.4199 28.1982 53.6523 28.5674C53.8893 28.932 54.0078 29.39 54.0078 29.9414V33.3867C54.0078 33.6328 54.0283 33.8949 54.0693 34.1729C54.1149 34.4508 54.181 34.6901 54.2676 34.8906V35H52.9482C52.8844 34.8542 52.8343 34.6605 52.7979 34.4189C52.7614 34.1729 52.7432 33.945 52.7432 33.7354ZM52.9619 30.5156L52.9756 31.4043H51.6973C51.3372 31.4043 51.016 31.4339 50.7334 31.4932C50.4508 31.5479 50.2139 31.6322 50.0225 31.7461C49.8311 31.86 49.6852 32.0036 49.585 32.1768C49.4847 32.3454 49.4346 32.5436 49.4346 32.7715C49.4346 33.0039 49.487 33.2158 49.5918 33.4072C49.6966 33.5986 49.8538 33.7513 50.0635 33.8652C50.2777 33.9746 50.5397 34.0293 50.8496 34.0293C51.237 34.0293 51.5788 33.9473 51.875 33.7832C52.1712 33.6191 52.4059 33.4186 52.5791 33.1816C52.7568 32.9447 52.8525 32.7145 52.8662 32.4912L53.4062 33.0996C53.3743 33.291 53.2878 33.5029 53.1465 33.7354C53.0052 33.9678 52.8161 34.1911 52.5791 34.4053C52.3467 34.6149 52.0687 34.7904 51.7451 34.9316C51.4261 35.0684 51.0661 35.1367 50.665 35.1367C50.1637 35.1367 49.724 35.0387 49.3457 34.8428C48.972 34.6468 48.6803 34.3848 48.4707 34.0566C48.2656 33.724 48.1631 33.3525 48.1631 32.9424C48.1631 32.5459 48.2406 32.1973 48.3955 31.8965C48.5505 31.5911 48.7738 31.3382 49.0654 31.1377C49.3571 30.9326 49.708 30.7777 50.1182 30.6729C50.5283 30.568 50.9863 30.5156 51.4922 30.5156H52.9619ZM60.6592 33.5645V24.5H61.9307V35H60.7686L60.6592 33.5645ZM55.6826 31.3838V31.2402C55.6826 30.6751 55.751 30.1624 55.8877 29.7021C56.029 29.2373 56.2272 28.8385 56.4824 28.5059C56.7422 28.1732 57.0498 27.918 57.4053 27.7402C57.7653 27.5579 58.1663 27.4668 58.6084 27.4668C59.0732 27.4668 59.4788 27.5488 59.8252 27.7129C60.1761 27.8724 60.4723 28.1071 60.7139 28.417C60.96 28.7223 61.1536 29.0915 61.2949 29.5244C61.4362 29.9574 61.5342 30.4473 61.5889 30.9941V31.623C61.5387 32.1654 61.4408 32.653 61.2949 33.0859C61.1536 33.5189 60.96 33.888 60.7139 34.1934C60.4723 34.4987 60.1761 34.7334 59.8252 34.8975C59.4743 35.057 59.0641 35.1367 58.5947 35.1367C58.1618 35.1367 57.7653 35.0433 57.4053 34.8564C57.0498 34.6696 56.7422 34.4076 56.4824 34.0703C56.2272 33.7331 56.029 33.3366 55.8877 32.8809C55.751 32.4206 55.6826 31.9215 55.6826 31.3838ZM56.9541 31.2402V31.3838C56.9541 31.7529 56.9906 32.0993 57.0635 32.4229C57.141 32.7464 57.2594 33.0312 57.4189 33.2773C57.5785 33.5234 57.7812 33.7171 58.0273 33.8584C58.2734 33.9951 58.5674 34.0635 58.9092 34.0635C59.3285 34.0635 59.6725 33.9746 59.9414 33.7969C60.2148 33.6191 60.4336 33.3844 60.5977 33.0928C60.7617 32.8011 60.8893 32.4844 60.9805 32.1426V30.4951C60.9258 30.2445 60.846 30.0029 60.7412 29.7705C60.641 29.5335 60.5088 29.3239 60.3447 29.1416C60.1852 28.9548 59.987 28.8066 59.75 28.6973C59.5176 28.5879 59.2419 28.5332 58.9229 28.5332C58.5765 28.5332 58.278 28.6061 58.0273 28.752C57.7812 28.8932 57.5785 29.0892 57.4189 29.3398C57.2594 29.5859 57.141 29.873 57.0635 30.2012C56.9906 30.5247 56.9541 30.8711 56.9541 31.2402ZM65.2734 27.6035V35H64.002V27.6035H65.2734ZM63.9062 25.6416C63.9062 25.4365 63.9678 25.2633 64.0908 25.1221C64.2184 24.9808 64.4053 24.9102 64.6514 24.9102C64.8929 24.9102 65.0775 24.9808 65.2051 25.1221C65.3372 25.2633 65.4033 25.4365 65.4033 25.6416C65.4033 25.8376 65.3372 26.0062 65.2051 26.1475C65.0775 26.2842 64.8929 26.3525 64.6514 26.3525C64.4053 26.3525 64.2184 26.2842 64.0908 26.1475C63.9678 26.0062 63.9062 25.8376 63.9062 25.6416ZM68.5684 29.1826V35H67.3037V27.6035H68.5L68.5684 29.1826ZM68.2676 31.0215L67.7412 31.001C67.7458 30.4951 67.821 30.028 67.9668 29.5996C68.1126 29.1667 68.3177 28.7907 68.582 28.4717C68.8464 28.1527 69.1608 27.9066 69.5254 27.7334C69.8945 27.5557 70.3024 27.4668 70.749 27.4668C71.1136 27.4668 71.4417 27.5169 71.7334 27.6172C72.0251 27.7129 72.2734 27.8678 72.4785 28.082C72.6882 28.2962 72.8477 28.5742 72.957 28.916C73.0664 29.2533 73.1211 29.6657 73.1211 30.1533V35H71.8496V30.1396C71.8496 29.7523 71.7926 29.4424 71.6787 29.21C71.5648 28.973 71.3984 28.8021 71.1797 28.6973C70.9609 28.5879 70.6921 28.5332 70.373 28.5332C70.0586 28.5332 69.7715 28.5993 69.5117 28.7314C69.2565 28.8636 69.0355 29.0459 68.8486 29.2783C68.6663 29.5107 68.5228 29.7773 68.418 30.0781C68.3177 30.3743 68.2676 30.6888 68.2676 31.0215ZM79.834 27.6035H80.9824V34.8428C80.9824 35.4945 80.8503 36.0505 80.5859 36.5107C80.3216 36.971 79.9525 37.3197 79.4785 37.5566C79.0091 37.7982 78.4668 37.9189 77.8516 37.9189C77.5964 37.9189 77.2956 37.8779 76.9492 37.7959C76.6074 37.7184 76.2702 37.584 75.9375 37.3926C75.6094 37.2057 75.3337 36.9528 75.1104 36.6338L75.7734 35.8818C76.0833 36.2555 76.4069 36.5153 76.7441 36.6611C77.0859 36.807 77.4232 36.8799 77.7559 36.8799C78.1569 36.8799 78.5033 36.8047 78.7949 36.6543C79.0866 36.5039 79.3122 36.2806 79.4717 35.9844C79.6357 35.6927 79.7178 35.3327 79.7178 34.9043V29.2305L79.834 27.6035ZM74.7412 31.3838V31.2402C74.7412 30.6751 74.8073 30.1624 74.9395 29.7021C75.0762 29.2373 75.2699 28.8385 75.5205 28.5059C75.7757 28.1732 76.0833 27.918 76.4434 27.7402C76.8034 27.5579 77.209 27.4668 77.6602 27.4668C78.125 27.4668 78.5306 27.5488 78.877 27.7129C79.2279 27.8724 79.5241 28.1071 79.7656 28.417C80.0117 28.7223 80.2054 29.0915 80.3467 29.5244C80.488 29.9574 80.5859 30.4473 80.6406 30.9941V31.623C80.5905 32.1654 80.4925 32.653 80.3467 33.0859C80.2054 33.5189 80.0117 33.888 79.7656 34.1934C79.5241 34.4987 79.2279 34.7334 78.877 34.8975C78.526 35.057 78.1159 35.1367 77.6465 35.1367C77.2044 35.1367 76.8034 35.0433 76.4434 34.8564C76.0879 34.6696 75.7826 34.4076 75.5273 34.0703C75.2721 33.7331 75.0762 33.3366 74.9395 32.8809C74.8073 32.4206 74.7412 31.9215 74.7412 31.3838ZM76.0059 31.2402V31.3838C76.0059 31.7529 76.0423 32.0993 76.1152 32.4229C76.1927 32.7464 76.3089 33.0312 76.4639 33.2773C76.6234 33.5234 76.8262 33.7171 77.0723 33.8584C77.3184 33.9951 77.6123 34.0635 77.9541 34.0635C78.3734 34.0635 78.7197 33.9746 78.9932 33.7969C79.2666 33.6191 79.4831 33.3844 79.6426 33.0928C79.8066 32.8011 79.9342 32.4844 80.0254 32.1426V30.4951C79.9753 30.2445 79.8978 30.0029 79.793 29.7705C79.6927 29.5335 79.5605 29.3239 79.3965 29.1416C79.237 28.9548 79.0387 28.8066 78.8018 28.6973C78.5648 28.5879 78.2868 28.5332 77.9678 28.5332C77.6214 28.5332 77.3229 28.6061 77.0723 28.752C76.8262 28.8932 76.6234 29.0892 76.4639 29.3398C76.3089 29.5859 76.1927 29.873 76.1152 30.2012C76.0423 30.5247 76.0059 30.8711 76.0059 31.2402Z",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"55",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"25.5",y:"64.5",width:"247",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"25.5",y:"64.5",width:"247",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("rect",{x:"25",y:"109",width:"79",height:"4",rx:"2",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"25.5",y:"118.5",width:"247",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"25.5",y:"118.5",width:"247",height:"29",rx:"3.5",stroke:"#E2E8F0"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_274_2880"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})))),{GeneralFields:pn,AdvancedFields:fn,FieldWrapper:Vn}=JetFBComponents,{InspectorControls:Hn,useBlockProps:hn}=wp.blockEditor?wp.blockEditor:wp.editor,bn=JSON.parse('{"apiVersion":3,"name":"jet-forms/heading-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","field","heading"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Heading Field","icon":"\\n\\n","attributes":{"label":{"type":"string","default":"","jfb":{"rich":true}},"desc":{"type":"string","default":"","jfb":{"rich":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:Mn}=wp.i18n,{createBlock:Ln}=wp.blocks,{name:gn,icon:Zn=""}=bn,yn={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Zn}}),description:Mn("Build a heading for the form that can’t be changed by the users. Add the labels and descriptions to the different parts of the form.","jet-form-builder"),edit:function(e){const C=hn(),{isSelected:t,attributes:l,editProps:{uniqKey:r}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},un):[t&&(0,h.createElement)(Hn,{key:r("InspectorControls")},(0,h.createElement)(pn,{key:r("GeneralFields"),...e}),(0,h.createElement)(fn,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{...C,key:r("viewBlock")},(0,h.createElement)(Vn,{key:r("FieldWrapper"),valueIfEmptyLabel:"Heading",...e}))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},__experimentalLabel:(e,{context:C})=>{if("list-view"===C)return e.label||bn.title},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Ln("jet-forms/text-field",{...e}),priority:0},{type:"block",blocks:["core/paragraph"],transform:({label:e=""})=>Ln("core/paragraph",{content:e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Ln(gn,{...e}),priority:0},{type:"block",blocks:["core/paragraph"],transform:({content:e=""})=>Ln(gn,{label:e}),priority:0}]}},{ToggleControl:En,withFilters:wn}=wp.components,{__:vn}=wp.i18n,{useBlockAttributes:_n}=JetFBHooks;let kn=function(){const[e,C]=_n();return(0,h.createElement)(h.Fragment,null,"referer_url"!==e.field_value&&(0,h.createElement)(En,{label:vn("Render in HTML","jet-form-builder"),checked:e.render,help:vn("Enable this option if you use this field in Calculated Field, Conditional Block, Advanced Validation, Global Macros, or Dynamic Value.","jet-form-builder"),onChange:e=>C({render:Boolean(e)})}),(0,h.createElement)(En,{label:vn("Return the raw value","jet-form-builder"),help:vn("If this option is enabled, the value of the field will be JSON-encoded if the value is an array or object","jet-form-builder"),checked:e.return_raw,onChange:e=>C({return_raw:e})}))};kn=wn("jfb.hidden-field.header.controls")(kn);const jn=kn,{__:xn}=wp.i18n,{TextControl:Fn,withFilters:Bn}=wp.components;let An=function({attributes:e,setAttributes:C}){return(0,h.createElement)(h.Fragment,null,["post_meta","user_meta"].includes(e.field_value)&&(0,h.createElement)(Fn,{key:"hidden_value_field",label:"Meta Field to Get Value From",value:e.hidden_value_field,onChange:e=>C({hidden_value_field:e})}),"query_var"===e.field_value&&(0,h.createElement)(Fn,{key:"query_var_key",label:"Query Variable Key",value:e.query_var_key,onChange:e=>C({query_var_key:e})}),"current_date"===e.field_value&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Fn,{key:"date_format",label:"Format",value:e.date_format,onChange:e=>C({date_format:e})}),(0,h.createElement)("b",null,xn("Example:","jet-form-builder")),(0,h.createElement)("br",null),(0,h.createElement)("i",null,"Y-m-d\\TH:i - "),xn("datetime format","jet-form-builder"),(0,h.createElement)("br",null),(0,h.createElement)("i",null,"U - "),xn("timestamp format","jet-form-builder")),"manual_input"===e.field_value&&(0,h.createElement)(Fn,{key:"hidden_value",label:"Value",value:e.hidden_value,onChange:e=>{C({hidden_value:e})}}))};An=Bn("jfb.hidden-field.field-value.controls")(An);const Pn=An,{useBlockAttributes:Sn}=JetFBHooks,{SelectControl:Nn}=wp.components,In=function(){const[e,C]=Sn();return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(jn,{attributes:e,setAttributes:C}),(0,h.createElement)(Nn,{key:"field_value",label:"Field Value",labelPosition:"top",value:e.field_value,onChange:t=>{C({field_value:t}),(t=>{!t||e.name&&"hidden_field_name"!==e.name||C({name:t})})(t)},options:JetFormHiddenField.sources}),(0,h.createElement)(Pn,{attributes:e,setAttributes:C}))},Tn=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("g",{clipPath:"url(#clip0_75_1466)"},(0,h.createElement)("path",{d:"M22.6562 48.3262V49.3994H17.2695V48.3262H22.6562ZM17.4746 44.0469V54H16.1553V44.0469H17.4746ZM23.8047 44.0469V54H22.4922V44.0469H23.8047ZM27.332 46.6035V54H26.0605V46.6035H27.332ZM25.9648 44.6416C25.9648 44.4365 26.0264 44.2633 26.1494 44.1221C26.277 43.9808 26.4639 43.9102 26.71 43.9102C26.9515 43.9102 27.1361 43.9808 27.2637 44.1221C27.3958 44.2633 27.4619 44.4365 27.4619 44.6416C27.4619 44.8376 27.3958 45.0062 27.2637 45.1475C27.1361 45.2842 26.9515 45.3525 26.71 45.3525C26.4639 45.3525 26.277 45.2842 26.1494 45.1475C26.0264 45.0062 25.9648 44.8376 25.9648 44.6416ZM34.0244 52.5645V43.5H35.2959V54H34.1338L34.0244 52.5645ZM29.0479 50.3838V50.2402C29.0479 49.6751 29.1162 49.1624 29.2529 48.7021C29.3942 48.2373 29.5924 47.8385 29.8477 47.5059C30.1074 47.1732 30.415 46.918 30.7705 46.7402C31.1305 46.5579 31.5316 46.4668 31.9736 46.4668C32.4385 46.4668 32.8441 46.5488 33.1904 46.7129C33.5413 46.8724 33.8376 47.1071 34.0791 47.417C34.3252 47.7223 34.5189 48.0915 34.6602 48.5244C34.8014 48.9574 34.8994 49.4473 34.9541 49.9941V50.623C34.904 51.1654 34.806 51.653 34.6602 52.0859C34.5189 52.5189 34.3252 52.888 34.0791 53.1934C33.8376 53.4987 33.5413 53.7334 33.1904 53.8975C32.8395 54.057 32.4294 54.1367 31.96 54.1367C31.527 54.1367 31.1305 54.0433 30.7705 53.8564C30.415 53.6696 30.1074 53.4076 29.8477 53.0703C29.5924 52.7331 29.3942 52.3366 29.2529 51.8809C29.1162 51.4206 29.0479 50.9215 29.0479 50.3838ZM30.3193 50.2402V50.3838C30.3193 50.7529 30.3558 51.0993 30.4287 51.4229C30.5062 51.7464 30.6247 52.0312 30.7842 52.2773C30.9437 52.5234 31.1465 52.7171 31.3926 52.8584C31.6387 52.9951 31.9326 53.0635 32.2744 53.0635C32.6937 53.0635 33.0378 52.9746 33.3066 52.7969C33.5801 52.6191 33.7988 52.3844 33.9629 52.0928C34.127 51.8011 34.2546 51.4844 34.3457 51.1426V49.4951C34.291 49.2445 34.2113 49.0029 34.1064 48.7705C34.0062 48.5335 33.874 48.3239 33.71 48.1416C33.5505 47.9548 33.3522 47.8066 33.1152 47.6973C32.8828 47.5879 32.6071 47.5332 32.2881 47.5332C31.9417 47.5332 31.6432 47.6061 31.3926 47.752C31.1465 47.8932 30.9437 48.0892 30.7842 48.3398C30.6247 48.5859 30.5062 48.873 30.4287 49.2012C30.3558 49.5247 30.3193 49.8711 30.3193 50.2402ZM41.9268 52.5645V43.5H43.1982V54H42.0361L41.9268 52.5645ZM36.9502 50.3838V50.2402C36.9502 49.6751 37.0186 49.1624 37.1553 48.7021C37.2965 48.2373 37.4948 47.8385 37.75 47.5059C38.0098 47.1732 38.3174 46.918 38.6729 46.7402C39.0329 46.5579 39.4339 46.4668 39.876 46.4668C40.3408 46.4668 40.7464 46.5488 41.0928 46.7129C41.4437 46.8724 41.7399 47.1071 41.9814 47.417C42.2275 47.7223 42.4212 48.0915 42.5625 48.5244C42.7038 48.9574 42.8018 49.4473 42.8564 49.9941V50.623C42.8063 51.1654 42.7083 51.653 42.5625 52.0859C42.4212 52.5189 42.2275 52.888 41.9814 53.1934C41.7399 53.4987 41.4437 53.7334 41.0928 53.8975C40.7419 54.057 40.3317 54.1367 39.8623 54.1367C39.4294 54.1367 39.0329 54.0433 38.6729 53.8564C38.3174 53.6696 38.0098 53.4076 37.75 53.0703C37.4948 52.7331 37.2965 52.3366 37.1553 51.8809C37.0186 51.4206 36.9502 50.9215 36.9502 50.3838ZM38.2217 50.2402V50.3838C38.2217 50.7529 38.2581 51.0993 38.3311 51.4229C38.4085 51.7464 38.527 52.0312 38.6865 52.2773C38.846 52.5234 39.0488 52.7171 39.2949 52.8584C39.541 52.9951 39.835 53.0635 40.1768 53.0635C40.596 53.0635 40.9401 52.9746 41.209 52.7969C41.4824 52.6191 41.7012 52.3844 41.8652 52.0928C42.0293 51.8011 42.1569 51.4844 42.248 51.1426V49.4951C42.1934 49.2445 42.1136 49.0029 42.0088 48.7705C41.9085 48.5335 41.7764 48.3239 41.6123 48.1416C41.4528 47.9548 41.2546 47.8066 41.0176 47.6973C40.7852 47.5879 40.5094 47.5332 40.1904 47.5332C39.8441 47.5332 39.5456 47.6061 39.2949 47.752C39.0488 47.8932 38.846 48.0892 38.6865 48.3398C38.527 48.5859 38.4085 48.873 38.3311 49.2012C38.2581 49.5247 38.2217 49.8711 38.2217 50.2402ZM48.2363 54.1367C47.7214 54.1367 47.2542 54.0501 46.835 53.877C46.4202 53.6992 46.0625 53.4508 45.7617 53.1318C45.4655 52.8128 45.2376 52.4346 45.0781 51.9971C44.9186 51.5596 44.8389 51.0811 44.8389 50.5615V50.2744C44.8389 49.6729 44.9277 49.1374 45.1055 48.668C45.2832 48.194 45.5247 47.793 45.8301 47.4648C46.1354 47.1367 46.4818 46.8883 46.8691 46.7197C47.2565 46.5511 47.6576 46.4668 48.0723 46.4668C48.6009 46.4668 49.0566 46.5579 49.4395 46.7402C49.8268 46.9225 50.1436 47.1777 50.3896 47.5059C50.6357 47.8294 50.818 48.2122 50.9365 48.6543C51.055 49.0918 51.1143 49.5703 51.1143 50.0898V50.6572H45.5908V49.625H49.8496V49.5293C49.8314 49.2012 49.763 48.8822 49.6445 48.5723C49.5306 48.2624 49.3483 48.0072 49.0977 47.8066C48.847 47.6061 48.5052 47.5059 48.0723 47.5059C47.7852 47.5059 47.5208 47.5674 47.2793 47.6904C47.0378 47.8089 46.8304 47.9867 46.6572 48.2236C46.484 48.4606 46.3496 48.75 46.2539 49.0918C46.1582 49.4336 46.1104 49.8278 46.1104 50.2744V50.5615C46.1104 50.9124 46.1582 51.2428 46.2539 51.5527C46.3542 51.8581 46.4977 52.127 46.6846 52.3594C46.876 52.5918 47.1061 52.7741 47.375 52.9062C47.6484 53.0384 47.9583 53.1045 48.3047 53.1045C48.7513 53.1045 49.1296 53.0133 49.4395 52.8311C49.7493 52.6488 50.0205 52.4049 50.2529 52.0996L51.0186 52.708C50.859 52.9495 50.6562 53.1797 50.4102 53.3984C50.1641 53.6172 49.861 53.7949 49.501 53.9316C49.1455 54.0684 48.724 54.1367 48.2363 54.1367ZM53.8555 48.1826V54H52.5908V46.6035H53.7871L53.8555 48.1826ZM53.5547 50.0215L53.0283 50.001C53.0329 49.4951 53.1081 49.028 53.2539 48.5996C53.3997 48.1667 53.6048 47.7907 53.8691 47.4717C54.1335 47.1527 54.4479 46.9066 54.8125 46.7334C55.1816 46.5557 55.5895 46.4668 56.0361 46.4668C56.4007 46.4668 56.7288 46.5169 57.0205 46.6172C57.3122 46.7129 57.5605 46.8678 57.7656 47.082C57.9753 47.2962 58.1348 47.5742 58.2441 47.916C58.3535 48.2533 58.4082 48.6657 58.4082 49.1533V54H57.1367V49.1396C57.1367 48.7523 57.0798 48.4424 56.9658 48.21C56.8519 47.973 56.6855 47.8021 56.4668 47.6973C56.248 47.5879 55.9792 47.5332 55.6602 47.5332C55.3457 47.5332 55.0586 47.5993 54.7988 47.7314C54.5436 47.8636 54.3226 48.0459 54.1357 48.2783C53.9535 48.5107 53.8099 48.7773 53.7051 49.0781C53.6048 49.3743 53.5547 49.6888 53.5547 50.0215ZM65.4902 54H64.2256V45.9609C64.2256 45.4004 64.335 44.9264 64.5537 44.5391C64.7725 44.1517 65.0846 43.8577 65.4902 43.6572C65.8958 43.4567 66.3766 43.3564 66.9326 43.3564C67.2607 43.3564 67.582 43.3975 67.8965 43.4795C68.2109 43.557 68.5345 43.6549 68.8672 43.7734L68.6553 44.8398C68.4456 44.7578 68.2018 44.6803 67.9238 44.6074C67.6504 44.5299 67.3496 44.4912 67.0215 44.4912C66.4792 44.4912 66.0872 44.6143 65.8457 44.8604C65.6087 45.1019 65.4902 45.4688 65.4902 45.9609V54ZM67.001 46.6035V47.5742H63.0566V46.6035H67.001ZM69.4893 46.6035V54H68.2246V46.6035H69.4893ZM74.6367 54.1367C74.1217 54.1367 73.6546 54.0501 73.2354 53.877C72.8206 53.6992 72.4629 53.4508 72.1621 53.1318C71.8659 52.8128 71.638 52.4346 71.4785 51.9971C71.319 51.5596 71.2393 51.0811 71.2393 50.5615V50.2744C71.2393 49.6729 71.3281 49.1374 71.5059 48.668C71.6836 48.194 71.9251 47.793 72.2305 47.4648C72.5358 47.1367 72.8822 46.8883 73.2695 46.7197C73.6569 46.5511 74.0579 46.4668 74.4727 46.4668C75.0013 46.4668 75.457 46.5579 75.8398 46.7402C76.2272 46.9225 76.5439 47.1777 76.79 47.5059C77.0361 47.8294 77.2184 48.2122 77.3369 48.6543C77.4554 49.0918 77.5146 49.5703 77.5146 50.0898V50.6572H71.9912V49.625H76.25V49.5293C76.2318 49.2012 76.1634 48.8822 76.0449 48.5723C75.931 48.2624 75.7487 48.0072 75.498 47.8066C75.2474 47.6061 74.9056 47.5059 74.4727 47.5059C74.1855 47.5059 73.9212 47.5674 73.6797 47.6904C73.4382 47.8089 73.2308 47.9867 73.0576 48.2236C72.8844 48.4606 72.75 48.75 72.6543 49.0918C72.5586 49.4336 72.5107 49.8278 72.5107 50.2744V50.5615C72.5107 50.9124 72.5586 51.2428 72.6543 51.5527C72.7546 51.8581 72.8981 52.127 73.085 52.3594C73.2764 52.5918 73.5065 52.7741 73.7754 52.9062C74.0488 53.0384 74.3587 53.1045 74.7051 53.1045C75.1517 53.1045 75.5299 53.0133 75.8398 52.8311C76.1497 52.6488 76.4209 52.4049 76.6533 52.0996L77.4189 52.708C77.2594 52.9495 77.0566 53.1797 76.8105 53.3984C76.5645 53.6172 76.2614 53.7949 75.9014 53.9316C75.5459 54.0684 75.1243 54.1367 74.6367 54.1367ZM80.3652 43.5V54H79.0938V43.5H80.3652ZM87.0576 52.5645V43.5H88.3291V54H87.167L87.0576 52.5645ZM82.0811 50.3838V50.2402C82.0811 49.6751 82.1494 49.1624 82.2861 48.7021C82.4274 48.2373 82.6257 47.8385 82.8809 47.5059C83.1406 47.1732 83.4482 46.918 83.8037 46.7402C84.1637 46.5579 84.5648 46.4668 85.0068 46.4668C85.4717 46.4668 85.8773 46.5488 86.2236 46.7129C86.5745 46.8724 86.8708 47.1071 87.1123 47.417C87.3584 47.7223 87.5521 48.0915 87.6934 48.5244C87.8346 48.9574 87.9326 49.4473 87.9873 49.9941V50.623C87.9372 51.1654 87.8392 51.653 87.6934 52.0859C87.5521 52.5189 87.3584 52.888 87.1123 53.1934C86.8708 53.4987 86.5745 53.7334 86.2236 53.8975C85.8727 54.057 85.4626 54.1367 84.9932 54.1367C84.5602 54.1367 84.1637 54.0433 83.8037 53.8564C83.4482 53.6696 83.1406 53.4076 82.8809 53.0703C82.6257 52.7331 82.4274 52.3366 82.2861 51.8809C82.1494 51.4206 82.0811 50.9215 82.0811 50.3838ZM83.3525 50.2402V50.3838C83.3525 50.7529 83.389 51.0993 83.4619 51.4229C83.5394 51.7464 83.6579 52.0312 83.8174 52.2773C83.9769 52.5234 84.1797 52.7171 84.4258 52.8584C84.6719 52.9951 84.9658 53.0635 85.3076 53.0635C85.7269 53.0635 86.071 52.9746 86.3398 52.7969C86.6133 52.6191 86.832 52.3844 86.9961 52.0928C87.1602 51.8011 87.2878 51.4844 87.3789 51.1426V49.4951C87.3242 49.2445 87.2445 49.0029 87.1396 48.7705C87.0394 48.5335 86.9072 48.3239 86.7432 48.1416C86.5837 47.9548 86.3854 47.8066 86.1484 47.6973C85.916 47.5879 85.6403 47.5332 85.3213 47.5332C84.9749 47.5332 84.6764 47.6061 84.4258 47.752C84.1797 47.8932 83.9769 48.0892 83.8174 48.3398C83.6579 48.5859 83.5394 48.873 83.4619 49.2012C83.389 49.5247 83.3525 49.8711 83.3525 50.2402ZM94.6045 52.0381C94.6045 51.8558 94.5635 51.6872 94.4814 51.5322C94.404 51.3727 94.2422 51.2292 93.9961 51.1016C93.7546 50.9694 93.39 50.8555 92.9023 50.7598C92.4922 50.6732 92.1208 50.5706 91.7881 50.4521C91.46 50.3337 91.1797 50.1901 90.9473 50.0215C90.7194 49.8529 90.5439 49.6546 90.4209 49.4268C90.2979 49.1989 90.2363 48.9323 90.2363 48.627C90.2363 48.3353 90.3001 48.0596 90.4277 47.7998C90.5599 47.54 90.7445 47.3099 90.9814 47.1094C91.223 46.9089 91.5124 46.7516 91.8496 46.6377C92.1868 46.5238 92.5628 46.4668 92.9775 46.4668C93.57 46.4668 94.0758 46.5716 94.4951 46.7812C94.9144 46.9909 95.2357 47.2712 95.459 47.6221C95.6823 47.9684 95.7939 48.3535 95.7939 48.7773H94.5293C94.5293 48.5723 94.4678 48.374 94.3447 48.1826C94.2262 47.9867 94.0508 47.8249 93.8184 47.6973C93.5905 47.5697 93.3102 47.5059 92.9775 47.5059C92.6266 47.5059 92.3418 47.5605 92.123 47.6699C91.9089 47.7747 91.7516 47.9092 91.6514 48.0732C91.5557 48.2373 91.5078 48.4105 91.5078 48.5928C91.5078 48.7295 91.5306 48.8525 91.5762 48.9619C91.6263 49.0667 91.7129 49.1647 91.8359 49.2559C91.959 49.3424 92.1322 49.4245 92.3555 49.502C92.5788 49.5794 92.8636 49.6569 93.21 49.7344C93.8161 49.8711 94.3151 50.0352 94.707 50.2266C95.099 50.418 95.3906 50.6527 95.582 50.9307C95.7734 51.2087 95.8691 51.5459 95.8691 51.9424C95.8691 52.266 95.8008 52.5622 95.6641 52.8311C95.5319 53.0999 95.3382 53.3324 95.083 53.5283C94.8324 53.7197 94.5316 53.8701 94.1807 53.9795C93.8343 54.0843 93.4447 54.1367 93.0117 54.1367C92.36 54.1367 91.8086 54.0205 91.3574 53.7881C90.9062 53.5557 90.5645 53.2549 90.332 52.8857C90.0996 52.5166 89.9834 52.127 89.9834 51.7168H91.2549C91.2731 52.0632 91.3734 52.3389 91.5557 52.5439C91.738 52.7445 91.9613 52.888 92.2256 52.9746C92.4899 53.0566 92.752 53.0977 93.0117 53.0977C93.3581 53.0977 93.6475 53.0521 93.8799 52.9609C94.1169 52.8698 94.2969 52.7445 94.4199 52.585C94.543 52.4255 94.6045 52.2432 94.6045 52.0381Z",fill:"#64748B"}),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1466)"},(0,h.createElement)("path",{d:"M24.0001 67.25C26.0701 67.25 27.7501 68.93 27.7501 71C27.7501 71.4875 27.6526 71.945 27.4801 72.3725L29.6701 74.5625C30.8026 73.6175 31.6951 72.395 32.2426 71C30.9451 67.7075 27.7426 65.375 23.9926 65.375C22.9426 65.375 21.9376 65.5625 21.0076 65.9L22.6276 67.52C23.0551 67.3475 23.5126 67.25 24.0001 67.25ZM16.5001 65.2025L18.2101 66.9125L18.5551 67.2575C17.3101 68.225 16.3351 69.515 15.7501 71C17.0476 74.2925 20.2501 76.625 24.0001 76.625C25.1626 76.625 26.2726 76.4 27.2851 75.995L27.6001 76.31L29.7976 78.5L30.7501 77.5475L17.4526 64.25L16.5001 65.2025ZM20.6476 69.35L21.8101 70.5125C21.7726 70.67 21.7501 70.835 21.7501 71C21.7501 72.245 22.7551 73.25 24.0001 73.25C24.1651 73.25 24.3301 73.2275 24.4876 73.19L25.6501 74.3525C25.1476 74.6 24.5926 74.75 24.0001 74.75C21.9301 74.75 20.2501 73.07 20.2501 71C20.2501 70.4075 20.4001 69.8525 20.6476 69.35ZM23.8801 68.765L26.2426 71.1275L26.2576 71.0075C26.2576 69.7625 25.2526 68.7575 24.0076 68.7575L23.8801 68.765Z",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M40.0693 65.75V75.5H38.895V65.75H40.0693ZM39.79 71.8057L39.3013 71.7866C39.3055 71.3169 39.3753 70.8831 39.5107 70.4854C39.6462 70.0833 39.8366 69.7342 40.082 69.438C40.3275 69.1418 40.6195 68.9132 40.958 68.7524C41.3008 68.5874 41.6795 68.5049 42.0942 68.5049C42.4328 68.5049 42.7375 68.5514 43.0083 68.6445C43.2791 68.7334 43.5098 68.8773 43.7002 69.0762C43.8949 69.2751 44.043 69.5332 44.1445 69.8506C44.2461 70.1637 44.2969 70.5467 44.2969 70.9995V75.5H43.1162V70.9868C43.1162 70.6271 43.0633 70.3394 42.9575 70.1235C42.8517 69.9035 42.6973 69.7448 42.4941 69.6475C42.291 69.5459 42.0413 69.4951 41.7451 69.4951C41.4531 69.4951 41.1865 69.5565 40.9453 69.6792C40.7083 69.8019 40.5031 69.9712 40.3296 70.187C40.1603 70.4028 40.027 70.6504 39.9297 70.9297C39.8366 71.2048 39.79 71.4967 39.79 71.8057ZM47.3311 68.6318V75.5H46.1504V68.6318H47.3311ZM46.0615 66.8101C46.0615 66.6196 46.1187 66.4588 46.2329 66.3276C46.3514 66.1965 46.5249 66.1309 46.7534 66.1309C46.9777 66.1309 47.1491 66.1965 47.2676 66.3276C47.3903 66.4588 47.4517 66.6196 47.4517 66.8101C47.4517 66.992 47.3903 67.1486 47.2676 67.2798C47.1491 67.4067 46.9777 67.4702 46.7534 67.4702C46.5249 67.4702 46.3514 67.4067 46.2329 67.2798C46.1187 67.1486 46.0615 66.992 46.0615 66.8101ZM53.5454 74.167V65.75H54.7261V75.5H53.647L53.5454 74.167ZM48.9243 72.1421V72.0088C48.9243 71.484 48.9878 71.008 49.1147 70.5806C49.2459 70.1489 49.43 69.7786 49.667 69.4697C49.9082 69.1608 50.1938 68.9238 50.5239 68.7588C50.8582 68.5895 51.2306 68.5049 51.6411 68.5049C52.0728 68.5049 52.4494 68.5811 52.771 68.7334C53.0968 68.8815 53.3719 69.0994 53.5962 69.3872C53.8247 69.6707 54.0046 70.0135 54.1357 70.4155C54.2669 70.8175 54.3579 71.2725 54.4087 71.7803V72.3643C54.3621 72.8678 54.2712 73.3206 54.1357 73.7227C54.0046 74.1247 53.8247 74.4674 53.5962 74.751C53.3719 75.0345 53.0968 75.2524 52.771 75.4048C52.4451 75.5529 52.0643 75.627 51.6284 75.627C51.2264 75.627 50.8582 75.5402 50.5239 75.3667C50.1938 75.1932 49.9082 74.9499 49.667 74.6367C49.43 74.3236 49.2459 73.9554 49.1147 73.5322C48.9878 73.1048 48.9243 72.6414 48.9243 72.1421ZM50.105 72.0088V72.1421C50.105 72.4849 50.1388 72.8065 50.2065 73.1069C50.2785 73.4074 50.3885 73.6719 50.5366 73.9004C50.6847 74.1289 50.873 74.3088 51.1016 74.4399C51.3301 74.5669 51.603 74.6304 51.9204 74.6304C52.3097 74.6304 52.6292 74.5479 52.8789 74.3828C53.1328 74.2178 53.3359 73.9998 53.4883 73.729C53.6406 73.4582 53.7591 73.1641 53.8438 72.8467V71.3169C53.793 71.0841 53.7189 70.8599 53.6216 70.644C53.5285 70.424 53.4058 70.2293 53.2534 70.0601C53.1053 69.8866 52.9212 69.749 52.7012 69.6475C52.4854 69.5459 52.2293 69.4951 51.9331 69.4951C51.6115 69.4951 51.3343 69.5628 51.1016 69.6982C50.873 69.8294 50.6847 70.0114 50.5366 70.2441C50.3885 70.4727 50.2785 70.7393 50.2065 71.0439C50.1388 71.3444 50.105 71.666 50.105 72.0088ZM60.8833 74.167V65.75H62.064V75.5H60.9849L60.8833 74.167ZM56.2622 72.1421V72.0088C56.2622 71.484 56.3257 71.008 56.4526 70.5806C56.5838 70.1489 56.7679 69.7786 57.0049 69.4697C57.2461 69.1608 57.5317 68.9238 57.8618 68.7588C58.1961 68.5895 58.5685 68.5049 58.979 68.5049C59.4106 68.5049 59.7873 68.5811 60.1089 68.7334C60.4347 68.8815 60.7098 69.0994 60.9341 69.3872C61.1626 69.6707 61.3424 70.0135 61.4736 70.4155C61.6048 70.8175 61.6958 71.2725 61.7466 71.7803V72.3643C61.7 72.8678 61.609 73.3206 61.4736 73.7227C61.3424 74.1247 61.1626 74.4674 60.9341 74.751C60.7098 75.0345 60.4347 75.2524 60.1089 75.4048C59.783 75.5529 59.4022 75.627 58.9663 75.627C58.5643 75.627 58.1961 75.5402 57.8618 75.3667C57.5317 75.1932 57.2461 74.9499 57.0049 74.6367C56.7679 74.3236 56.5838 73.9554 56.4526 73.5322C56.3257 73.1048 56.2622 72.6414 56.2622 72.1421ZM57.4429 72.0088V72.1421C57.4429 72.4849 57.4767 72.8065 57.5444 73.1069C57.6164 73.4074 57.7264 73.6719 57.8745 73.9004C58.0226 74.1289 58.2109 74.3088 58.4395 74.4399C58.668 74.5669 58.9409 74.6304 59.2583 74.6304C59.6476 74.6304 59.9671 74.5479 60.2168 74.3828C60.4707 74.2178 60.6738 73.9998 60.8262 73.729C60.9785 73.4582 61.097 73.1641 61.1816 72.8467V71.3169C61.1309 71.0841 61.0568 70.8599 60.9595 70.644C60.8664 70.424 60.7437 70.2293 60.5913 70.0601C60.4432 69.8866 60.2591 69.749 60.0391 69.6475C59.8232 69.5459 59.5672 69.4951 59.271 69.4951C58.9494 69.4951 58.6722 69.5628 58.4395 69.6982C58.2109 69.8294 58.0226 70.0114 57.8745 70.2441C57.7264 70.4727 57.6164 70.7393 57.5444 71.0439C57.4767 71.3444 57.4429 71.666 57.4429 72.0088ZM66.7422 75.627C66.264 75.627 65.8302 75.5465 65.4409 75.3857C65.0558 75.2207 64.7236 74.9901 64.4443 74.6938C64.1693 74.3976 63.9577 74.0464 63.8096 73.6401C63.6615 73.2339 63.5874 72.7896 63.5874 72.3071V72.0405C63.5874 71.4819 63.6699 70.9847 63.835 70.5488C64 70.1087 64.2243 69.7363 64.5078 69.4316C64.7913 69.127 65.113 68.8963 65.4727 68.7397C65.8324 68.5832 66.2048 68.5049 66.5898 68.5049C67.0807 68.5049 67.5039 68.5895 67.8594 68.7588C68.2191 68.9281 68.5132 69.165 68.7417 69.4697C68.9702 69.7702 69.1395 70.1257 69.2495 70.5361C69.3595 70.9424 69.4146 71.3867 69.4146 71.8691V72.396H64.2856V71.4375H68.2402V71.3486C68.2233 71.0439 68.1598 70.7477 68.0498 70.46C67.944 70.1722 67.7747 69.9352 67.542 69.749C67.3092 69.5628 66.9919 69.4697 66.5898 69.4697C66.3232 69.4697 66.0778 69.5269 65.8535 69.6411C65.6292 69.7511 65.4367 69.9162 65.2759 70.1362C65.1151 70.3563 64.9902 70.625 64.9014 70.9424C64.8125 71.2598 64.7681 71.6258 64.7681 72.0405V72.3071C64.7681 72.633 64.8125 72.9398 64.9014 73.2275C64.9945 73.5111 65.1278 73.7607 65.3013 73.9766C65.479 74.1924 65.6927 74.3617 65.9424 74.4844C66.1963 74.6071 66.484 74.6685 66.8057 74.6685C67.2204 74.6685 67.5716 74.5838 67.8594 74.4146C68.1471 74.2453 68.3989 74.0189 68.6147 73.7354L69.3257 74.3003C69.1776 74.5246 68.9893 74.7383 68.7607 74.9414C68.5322 75.1445 68.2508 75.3096 67.9165 75.4365C67.5864 75.5635 67.195 75.627 66.7422 75.627ZM71.96 70.0981V75.5H70.7856V68.6318H71.8965L71.96 70.0981ZM71.6807 71.8057L71.1919 71.7866C71.1961 71.3169 71.266 70.8831 71.4014 70.4854C71.5368 70.0833 71.7272 69.7342 71.9727 69.438C72.2181 69.1418 72.5101 68.9132 72.8486 68.7524C73.1914 68.5874 73.5701 68.5049 73.9849 68.5049C74.3234 68.5049 74.6281 68.5514 74.8989 68.6445C75.1698 68.7334 75.4004 68.8773 75.5908 69.0762C75.7855 69.2751 75.9336 69.5332 76.0352 69.8506C76.1367 70.1637 76.1875 70.5467 76.1875 70.9995V75.5H75.0068V70.9868C75.0068 70.6271 74.9539 70.3394 74.8481 70.1235C74.7424 69.9035 74.5879 69.7448 74.3848 69.6475C74.1816 69.5459 73.932 69.4951 73.6357 69.4951C73.3438 69.4951 73.0771 69.5565 72.8359 69.6792C72.599 69.8019 72.3937 69.9712 72.2202 70.187C72.0509 70.4028 71.9176 70.6504 71.8203 70.9297C71.7272 71.2048 71.6807 71.4967 71.6807 71.8057ZM82.9224 75.5V76.4648H77.1016V75.5H82.9224ZM86.7119 68.6318V69.5332H82.9985V68.6318H86.7119ZM84.2554 66.9624H85.4297V73.7988C85.4297 74.0316 85.4657 74.2072 85.5376 74.3257C85.6095 74.4442 85.7026 74.5225 85.8169 74.5605C85.9312 74.5986 86.0539 74.6177 86.1851 74.6177C86.2824 74.6177 86.384 74.6092 86.4897 74.5923C86.5998 74.5711 86.6823 74.5542 86.7373 74.5415L86.7437 75.5C86.6506 75.5296 86.5278 75.5571 86.3755 75.5825C86.2274 75.6121 86.0475 75.627 85.8359 75.627C85.5482 75.627 85.2837 75.5698 85.0425 75.4556C84.8013 75.3413 84.6087 75.1509 84.4648 74.8843C84.3252 74.6134 84.2554 74.2495 84.2554 73.7925V66.9624ZM92.1392 74.3257V70.79C92.1392 70.5192 92.0841 70.2843 91.9741 70.0854C91.8683 69.8823 91.7075 69.7257 91.4917 69.6157C91.2759 69.5057 91.0093 69.4507 90.6919 69.4507C90.3957 69.4507 90.1354 69.5015 89.9111 69.603C89.6911 69.7046 89.5176 69.8379 89.3906 70.0029C89.2679 70.168 89.2065 70.3457 89.2065 70.5361H88.0322C88.0322 70.2907 88.0957 70.0474 88.2227 69.8062C88.3496 69.5649 88.5316 69.347 88.7686 69.1523C89.0098 68.9535 89.2975 68.7969 89.6318 68.6826C89.9704 68.5641 90.347 68.5049 90.7617 68.5049C91.2611 68.5049 91.7012 68.5895 92.082 68.7588C92.4671 68.9281 92.7676 69.1841 92.9834 69.5269C93.2035 69.8654 93.3135 70.2907 93.3135 70.8027V74.002C93.3135 74.2305 93.3325 74.4738 93.3706 74.7319C93.4129 74.9901 93.4743 75.2122 93.5547 75.3984V75.5H92.3296C92.2703 75.3646 92.2238 75.1847 92.1899 74.9604C92.1561 74.7319 92.1392 74.5203 92.1392 74.3257ZM92.3423 71.3359L92.355 72.1611H91.168C90.8337 72.1611 90.5353 72.1886 90.2729 72.2437C90.0106 72.2944 89.7905 72.3727 89.6128 72.4785C89.4351 72.5843 89.2996 72.7176 89.2065 72.8784C89.1134 73.035 89.0669 73.2191 89.0669 73.4307C89.0669 73.6465 89.1156 73.8433 89.2129 74.021C89.3102 74.1987 89.4562 74.3405 89.6509 74.4463C89.8498 74.5479 90.0931 74.5986 90.3809 74.5986C90.7406 74.5986 91.0579 74.5225 91.333 74.3701C91.6081 74.2178 91.826 74.0316 91.9868 73.8115C92.1519 73.5915 92.2407 73.3778 92.2534 73.1704L92.7549 73.7354C92.7253 73.9131 92.6449 74.1099 92.5137 74.3257C92.3825 74.5415 92.2069 74.7489 91.9868 74.9478C91.771 75.1424 91.5129 75.3053 91.2124 75.4365C90.9162 75.5635 90.5819 75.627 90.2095 75.627C89.744 75.627 89.3356 75.536 88.9844 75.354C88.6374 75.172 88.3665 74.9287 88.1719 74.624C87.9814 74.3151 87.8862 73.9702 87.8862 73.5894C87.8862 73.2212 87.9582 72.8975 88.1021 72.6182C88.2459 72.3346 88.4533 72.0998 88.7241 71.9136C88.995 71.7231 89.3208 71.5793 89.7017 71.4819C90.0825 71.3846 90.5078 71.3359 90.9775 71.3359H92.3423ZM95.9541 68.6318L97.4585 71.1328L98.9819 68.6318H100.359L98.1123 72.0215L100.429 75.5H99.0708L97.4839 72.9229L95.897 75.5H94.5322L96.8428 72.0215L94.6021 68.6318H95.9541ZM106.561 75.5V76.4648H100.74V75.5H106.561ZM108.649 69.9521V78.1406H107.469V68.6318H108.548L108.649 69.9521ZM113.277 72.0088V72.1421C113.277 72.6414 113.218 73.1048 113.099 73.5322C112.981 73.9554 112.807 74.3236 112.579 74.6367C112.354 74.9499 112.077 75.1932 111.747 75.3667C111.417 75.5402 111.038 75.627 110.611 75.627C110.175 75.627 109.79 75.555 109.456 75.4111C109.121 75.2673 108.838 75.0578 108.605 74.7827C108.372 74.5076 108.186 74.1776 108.046 73.7925C107.911 73.4074 107.818 72.9736 107.767 72.4912V71.7803C107.818 71.2725 107.913 70.8175 108.053 70.4155C108.192 70.0135 108.376 69.6707 108.605 69.3872C108.838 69.0994 109.119 68.8815 109.449 68.7334C109.779 68.5811 110.16 68.5049 110.592 68.5049C111.023 68.5049 111.406 68.5895 111.741 68.7588C112.075 68.9238 112.356 69.1608 112.585 69.4697C112.813 69.7786 112.985 70.1489 113.099 70.5806C113.218 71.008 113.277 71.484 113.277 72.0088ZM112.096 72.1421V72.0088C112.096 71.666 112.06 71.3444 111.988 71.0439C111.916 70.7393 111.804 70.4727 111.652 70.2441C111.504 70.0114 111.313 69.8294 111.081 69.6982C110.848 69.5628 110.571 69.4951 110.249 69.4951C109.953 69.4951 109.695 69.5459 109.475 69.6475C109.259 69.749 109.075 69.8866 108.922 70.0601C108.77 70.2293 108.645 70.424 108.548 70.644C108.455 70.8599 108.385 71.0841 108.338 71.3169V72.9609C108.423 73.2572 108.542 73.5365 108.694 73.7988C108.846 74.057 109.049 74.2664 109.303 74.4272C109.557 74.5838 109.877 74.6621 110.262 74.6621C110.579 74.6621 110.852 74.5965 111.081 74.4653C111.313 74.3299 111.504 74.1458 111.652 73.9131C111.804 73.6803 111.916 73.4137 111.988 73.1133C112.06 72.8086 112.096 72.4849 112.096 72.1421ZM117.625 75.627C117.147 75.627 116.713 75.5465 116.324 75.3857C115.939 75.2207 115.606 74.9901 115.327 74.6938C115.052 74.3976 114.84 74.0464 114.692 73.6401C114.544 73.2339 114.47 72.7896 114.47 72.3071V72.0405C114.47 71.4819 114.553 70.9847 114.718 70.5488C114.883 70.1087 115.107 69.7363 115.391 69.4316C115.674 69.127 115.996 68.8963 116.355 68.7397C116.715 68.5832 117.088 68.5049 117.473 68.5049C117.964 68.5049 118.387 68.5895 118.742 68.7588C119.102 68.9281 119.396 69.165 119.625 69.4697C119.853 69.7702 120.022 70.1257 120.132 70.5361C120.242 70.9424 120.297 71.3867 120.297 71.8691V72.396H115.168V71.4375H119.123V71.3486C119.106 71.0439 119.043 70.7477 118.933 70.46C118.827 70.1722 118.658 69.9352 118.425 69.749C118.192 69.5628 117.875 69.4697 117.473 69.4697C117.206 69.4697 116.961 69.5269 116.736 69.6411C116.512 69.7511 116.319 69.9162 116.159 70.1362C115.998 70.3563 115.873 70.625 115.784 70.9424C115.695 71.2598 115.651 71.6258 115.651 72.0405V72.3071C115.651 72.633 115.695 72.9398 115.784 73.2275C115.877 73.5111 116.011 73.7607 116.184 73.9766C116.362 74.1924 116.576 74.3617 116.825 74.4844C117.079 74.6071 117.367 74.6685 117.688 74.6685C118.103 74.6685 118.454 74.5838 118.742 74.4146C119.03 74.2453 119.282 74.0189 119.498 73.7354L120.208 74.3003C120.06 74.5246 119.872 74.7383 119.644 74.9414C119.415 75.1445 119.134 75.3096 118.799 75.4365C118.469 75.5635 118.078 75.627 117.625 75.627ZM122.843 69.7109V75.5H121.668V68.6318H122.811L122.843 69.7109ZM124.988 68.5938L124.982 69.6855C124.885 69.6644 124.792 69.6517 124.703 69.6475C124.618 69.639 124.521 69.6348 124.411 69.6348C124.14 69.6348 123.901 69.6771 123.693 69.7617C123.486 69.8464 123.31 69.9648 123.167 70.1172C123.023 70.2695 122.908 70.4515 122.824 70.6631C122.743 70.8704 122.69 71.099 122.665 71.3486L122.335 71.5391C122.335 71.1243 122.375 70.735 122.456 70.3711C122.54 70.0072 122.669 69.6855 122.843 69.4062C123.016 69.1227 123.236 68.9027 123.503 68.7461C123.774 68.5853 124.095 68.5049 124.468 68.5049C124.552 68.5049 124.65 68.5155 124.76 68.5366C124.87 68.5535 124.946 68.5726 124.988 68.5938ZM128.695 74.6621C128.975 74.6621 129.233 74.605 129.47 74.4907C129.707 74.3765 129.901 74.2199 130.054 74.021C130.206 73.8179 130.293 73.5872 130.314 73.3291H131.431C131.41 73.7354 131.272 74.1141 131.019 74.4653C130.769 74.8123 130.441 75.0938 130.035 75.3096C129.628 75.5212 129.182 75.627 128.695 75.627C128.179 75.627 127.728 75.536 127.343 75.354C126.962 75.172 126.645 74.9224 126.391 74.605C126.141 74.2876 125.953 73.9237 125.826 73.5132C125.703 73.0985 125.642 72.6605 125.642 72.1992V71.9326C125.642 71.4714 125.703 71.0355 125.826 70.625C125.953 70.2103 126.141 69.8442 126.391 69.5269C126.645 69.2095 126.962 68.9598 127.343 68.7778C127.728 68.5959 128.179 68.5049 128.695 68.5049C129.233 68.5049 129.702 68.6149 130.104 68.835C130.507 69.0508 130.822 69.347 131.05 69.7236C131.283 70.096 131.41 70.5192 131.431 70.9932H130.314C130.293 70.7096 130.212 70.4536 130.073 70.2251C129.937 69.9966 129.751 69.8146 129.514 69.6792C129.281 69.5396 129.008 69.4697 128.695 69.4697C128.336 69.4697 128.033 69.5417 127.788 69.6855C127.546 69.8252 127.354 70.0156 127.21 70.2568C127.07 70.4938 126.969 70.7583 126.905 71.0503C126.846 71.3381 126.816 71.6322 126.816 71.9326V72.1992C126.816 72.4997 126.846 72.7959 126.905 73.0879C126.965 73.3799 127.064 73.6444 127.204 73.8813C127.347 74.1183 127.54 74.3088 127.781 74.4526C128.027 74.5923 128.331 74.6621 128.695 74.6621ZM135.602 75.627C135.123 75.627 134.69 75.5465 134.3 75.3857C133.915 75.2207 133.583 74.9901 133.304 74.6938C133.029 74.3976 132.817 74.0464 132.669 73.6401C132.521 73.2339 132.447 72.7896 132.447 72.3071V72.0405C132.447 71.4819 132.529 70.9847 132.694 70.5488C132.859 70.1087 133.084 69.7363 133.367 69.4316C133.651 69.127 133.972 68.8963 134.332 68.7397C134.692 68.5832 135.064 68.5049 135.449 68.5049C135.94 68.5049 136.363 68.5895 136.719 68.7588C137.078 68.9281 137.373 69.165 137.601 69.4697C137.83 69.7702 137.999 70.1257 138.109 70.5361C138.219 70.9424 138.274 71.3867 138.274 71.8691V72.396H133.145V71.4375H137.1V71.3486C137.083 71.0439 137.019 70.7477 136.909 70.46C136.803 70.1722 136.634 69.9352 136.401 69.749C136.169 69.5628 135.851 69.4697 135.449 69.4697C135.183 69.4697 134.937 69.5269 134.713 69.6411C134.489 69.7511 134.296 69.9162 134.135 70.1362C133.974 70.3563 133.85 70.625 133.761 70.9424C133.672 71.2598 133.627 71.6258 133.627 72.0405V72.3071C133.627 72.633 133.672 72.9398 133.761 73.2275C133.854 73.5111 133.987 73.7607 134.161 73.9766C134.338 74.1924 134.552 74.3617 134.802 74.4844C135.056 74.6071 135.343 74.6685 135.665 74.6685C136.08 74.6685 136.431 74.5838 136.719 74.4146C137.007 74.2453 137.258 74.0189 137.474 73.7354L138.185 74.3003C138.037 74.5246 137.849 74.7383 137.62 74.9414C137.392 75.1445 137.11 75.3096 136.776 75.4365C136.446 75.5635 136.054 75.627 135.602 75.627ZM140.819 70.0981V75.5H139.645V68.6318H140.756L140.819 70.0981ZM140.54 71.8057L140.051 71.7866C140.056 71.3169 140.125 70.8831 140.261 70.4854C140.396 70.0833 140.587 69.7342 140.832 69.438C141.077 69.1418 141.369 68.9132 141.708 68.7524C142.051 68.5874 142.43 68.5049 142.844 68.5049C143.183 68.5049 143.487 68.5514 143.758 68.6445C144.029 68.7334 144.26 68.8773 144.45 69.0762C144.645 69.2751 144.793 69.5332 144.895 69.8506C144.996 70.1637 145.047 70.5467 145.047 70.9995V75.5H143.866V70.9868C143.866 70.6271 143.813 70.3394 143.708 70.1235C143.602 69.9035 143.447 69.7448 143.244 69.6475C143.041 69.5459 142.791 69.4951 142.495 69.4951C142.203 69.4951 141.937 69.5565 141.695 69.6792C141.458 69.8019 141.253 69.9712 141.08 70.187C140.91 70.4028 140.777 70.6504 140.68 70.9297C140.587 71.2048 140.54 71.4967 140.54 71.8057ZM149.706 68.6318V69.5332H145.993V68.6318H149.706ZM147.25 66.9624H148.424V73.7988C148.424 74.0316 148.46 74.2072 148.532 74.3257C148.604 74.4442 148.697 74.5225 148.811 74.5605C148.925 74.5986 149.048 74.6177 149.179 74.6177C149.277 74.6177 149.378 74.6092 149.484 74.5923C149.594 74.5711 149.676 74.5542 149.731 74.5415L149.738 75.5C149.645 75.5296 149.522 75.5571 149.37 75.5825C149.222 75.6121 149.042 75.627 148.83 75.627C148.542 75.627 148.278 75.5698 148.037 75.4556C147.795 75.3413 147.603 75.1509 147.459 74.8843C147.319 74.6134 147.25 74.2495 147.25 73.7925V66.9624Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M255.253 71.1011L254.314 70.8599L254.777 66.2578H259.519V67.3433H255.774L255.495 69.8569C255.664 69.7596 255.878 69.6686 256.136 69.584C256.398 69.4993 256.699 69.457 257.037 69.457C257.465 69.457 257.847 69.5311 258.186 69.6792C258.525 69.8231 258.812 70.0304 259.049 70.3013C259.291 70.5721 259.475 70.8979 259.602 71.2788C259.729 71.6597 259.792 72.085 259.792 72.5547C259.792 72.999 259.731 73.4074 259.608 73.7798C259.489 74.1522 259.31 74.478 259.068 74.7573C258.827 75.0324 258.522 75.2461 258.154 75.3984C257.79 75.5508 257.361 75.627 256.866 75.627C256.493 75.627 256.14 75.5762 255.806 75.4746C255.476 75.3688 255.179 75.2101 254.917 74.9985C254.659 74.7827 254.447 74.5161 254.282 74.1987C254.121 73.8771 254.02 73.5005 253.978 73.0688H255.095C255.146 73.4159 255.247 73.7078 255.399 73.9448C255.552 74.1818 255.751 74.3617 255.996 74.4844C256.246 74.6029 256.536 74.6621 256.866 74.6621C257.145 74.6621 257.393 74.6134 257.608 74.5161C257.824 74.4188 258.006 74.2791 258.154 74.0972C258.302 73.9152 258.415 73.6951 258.491 73.437C258.571 73.1789 258.611 72.889 258.611 72.5674C258.611 72.2754 258.571 72.0046 258.491 71.7549C258.41 71.5052 258.29 71.2873 258.129 71.1011C257.972 70.9149 257.78 70.771 257.551 70.6694C257.323 70.5636 257.06 70.5107 256.764 70.5107C256.371 70.5107 256.072 70.5636 255.869 70.6694C255.67 70.7752 255.465 70.9191 255.253 71.1011ZM260.979 68.5239V68.0352C260.979 67.6839 261.055 67.3644 261.208 67.0767C261.36 66.7889 261.578 66.5583 261.861 66.3848C262.145 66.2113 262.481 66.1245 262.871 66.1245C263.268 66.1245 263.607 66.2113 263.886 66.3848C264.17 66.5583 264.388 66.7889 264.54 67.0767C264.692 67.3644 264.769 67.6839 264.769 68.0352V68.5239C264.769 68.8667 264.692 69.182 264.54 69.4697C264.392 69.7575 264.176 69.9881 263.893 70.1616C263.613 70.3351 263.277 70.4219 262.883 70.4219C262.49 70.4219 262.149 70.3351 261.861 70.1616C261.578 69.9881 261.36 69.7575 261.208 69.4697C261.055 69.182 260.979 68.8667 260.979 68.5239ZM261.861 68.0352V68.5239C261.861 68.7186 261.897 68.9027 261.969 69.0762C262.045 69.2497 262.16 69.3914 262.312 69.5015C262.464 69.6073 262.655 69.6602 262.883 69.6602C263.112 69.6602 263.3 69.6073 263.448 69.5015C263.596 69.3914 263.706 69.2497 263.778 69.0762C263.85 68.9027 263.886 68.7186 263.886 68.5239V68.0352C263.886 67.8363 263.848 67.6501 263.772 67.4766C263.7 67.2988 263.588 67.1571 263.436 67.0513C263.287 66.9412 263.099 66.8862 262.871 66.8862C262.646 66.8862 262.458 66.9412 262.306 67.0513C262.158 67.1571 262.045 67.2988 261.969 67.4766C261.897 67.6501 261.861 67.8363 261.861 68.0352ZM265.479 73.729V73.2339C265.479 72.8869 265.556 72.5695 265.708 72.2817C265.86 71.994 266.078 71.7633 266.362 71.5898C266.645 71.4163 266.982 71.3296 267.371 71.3296C267.769 71.3296 268.107 71.4163 268.387 71.5898C268.67 71.7633 268.888 71.994 269.041 72.2817C269.193 72.5695 269.269 72.8869 269.269 73.2339V73.729C269.269 74.076 269.193 74.3934 269.041 74.6812C268.892 74.9689 268.677 75.1995 268.393 75.373C268.114 75.5465 267.777 75.6333 267.384 75.6333C266.99 75.6333 266.652 75.5465 266.368 75.373C266.085 75.1995 265.865 74.9689 265.708 74.6812C265.556 74.3934 265.479 74.076 265.479 73.729ZM266.362 73.2339V73.729C266.362 73.9237 266.398 74.1099 266.47 74.2876C266.546 74.4611 266.66 74.6029 266.812 74.7129C266.965 74.8187 267.155 74.8716 267.384 74.8716C267.612 74.8716 267.801 74.8187 267.949 74.7129C268.101 74.6029 268.213 74.4611 268.285 74.2876C268.357 74.1141 268.393 73.9279 268.393 73.729V73.2339C268.393 73.035 268.355 72.8488 268.279 72.6753C268.207 72.5018 268.095 72.3621 267.942 72.2563C267.794 72.1463 267.604 72.0913 267.371 72.0913C267.147 72.0913 266.958 72.1463 266.806 72.2563C266.658 72.3621 266.546 72.5018 266.47 72.6753C266.398 72.8488 266.362 73.035 266.362 73.2339ZM267.663 67.5718L263.15 74.7954L262.49 74.3765L267.003 67.1528L267.663 67.5718Z",fill:"#0F172A"}),(0,h.createElement)("g",{clipPath:"url(#clip2_75_1466)"},(0,h.createElement)("path",{d:"M24.0001 90.25C26.0701 90.25 27.7501 91.93 27.7501 94C27.7501 94.4875 27.6526 94.945 27.4801 95.3725L29.6701 97.5625C30.8026 96.6175 31.6951 95.395 32.2426 94C30.9451 90.7075 27.7426 88.375 23.9926 88.375C22.9426 88.375 21.9376 88.5625 21.0076 88.9L22.6276 90.52C23.0551 90.3475 23.5126 90.25 24.0001 90.25ZM16.5001 88.2025L18.2101 89.9125L18.5551 90.2575C17.3101 91.225 16.3351 92.515 15.7501 94C17.0476 97.2925 20.2501 99.625 24.0001 99.625C25.1626 99.625 26.2726 99.4 27.2851 98.995L27.6001 99.31L29.7976 101.5L30.7501 100.547L17.4526 87.25L16.5001 88.2025ZM20.6476 92.35L21.8101 93.5125C21.7726 93.67 21.7501 93.835 21.7501 94C21.7501 95.245 22.7551 96.25 24.0001 96.25C24.1651 96.25 24.3301 96.2275 24.4876 96.19L25.6501 97.3525C25.1476 97.6 24.5926 97.75 24.0001 97.75C21.9301 97.75 20.2501 96.07 20.2501 94C20.2501 93.4075 20.4001 92.8525 20.6476 92.35ZM23.8801 91.765L26.2426 94.1275L26.2576 94.0075C26.2576 92.7625 25.2526 91.7575 24.0076 91.7575L23.8801 91.765Z",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M40.0693 88.75V98.5H38.895V88.75H40.0693ZM39.79 94.8057L39.3013 94.7866C39.3055 94.3169 39.3753 93.8831 39.5107 93.4854C39.6462 93.0833 39.8366 92.7342 40.082 92.438C40.3275 92.1418 40.6195 91.9132 40.958 91.7524C41.3008 91.5874 41.6795 91.5049 42.0942 91.5049C42.4328 91.5049 42.7375 91.5514 43.0083 91.6445C43.2791 91.7334 43.5098 91.8773 43.7002 92.0762C43.8949 92.2751 44.043 92.5332 44.1445 92.8506C44.2461 93.1637 44.2969 93.5467 44.2969 93.9995V98.5H43.1162V93.9868C43.1162 93.6271 43.0633 93.3394 42.9575 93.1235C42.8517 92.9035 42.6973 92.7448 42.4941 92.6475C42.291 92.5459 42.0413 92.4951 41.7451 92.4951C41.4531 92.4951 41.1865 92.5565 40.9453 92.6792C40.7083 92.8019 40.5031 92.9712 40.3296 93.187C40.1603 93.4028 40.027 93.6504 39.9297 93.9297C39.8366 94.2048 39.79 94.4967 39.79 94.8057ZM47.3311 91.6318V98.5H46.1504V91.6318H47.3311ZM46.0615 89.8101C46.0615 89.6196 46.1187 89.4588 46.2329 89.3276C46.3514 89.1965 46.5249 89.1309 46.7534 89.1309C46.9777 89.1309 47.1491 89.1965 47.2676 89.3276C47.3903 89.4588 47.4517 89.6196 47.4517 89.8101C47.4517 89.992 47.3903 90.1486 47.2676 90.2798C47.1491 90.4067 46.9777 90.4702 46.7534 90.4702C46.5249 90.4702 46.3514 90.4067 46.2329 90.2798C46.1187 90.1486 46.0615 89.992 46.0615 89.8101ZM53.5454 97.167V88.75H54.7261V98.5H53.647L53.5454 97.167ZM48.9243 95.1421V95.0088C48.9243 94.484 48.9878 94.008 49.1147 93.5806C49.2459 93.1489 49.43 92.7786 49.667 92.4697C49.9082 92.1608 50.1938 91.9238 50.5239 91.7588C50.8582 91.5895 51.2306 91.5049 51.6411 91.5049C52.0728 91.5049 52.4494 91.5811 52.771 91.7334C53.0968 91.8815 53.3719 92.0994 53.5962 92.3872C53.8247 92.6707 54.0046 93.0135 54.1357 93.4155C54.2669 93.8175 54.3579 94.2725 54.4087 94.7803V95.3643C54.3621 95.8678 54.2712 96.3206 54.1357 96.7227C54.0046 97.1247 53.8247 97.4674 53.5962 97.751C53.3719 98.0345 53.0968 98.2524 52.771 98.4048C52.4451 98.5529 52.0643 98.627 51.6284 98.627C51.2264 98.627 50.8582 98.5402 50.5239 98.3667C50.1938 98.1932 49.9082 97.9499 49.667 97.6367C49.43 97.3236 49.2459 96.9554 49.1147 96.5322C48.9878 96.1048 48.9243 95.6414 48.9243 95.1421ZM50.105 95.0088V95.1421C50.105 95.4849 50.1388 95.8065 50.2065 96.1069C50.2785 96.4074 50.3885 96.6719 50.5366 96.9004C50.6847 97.1289 50.873 97.3088 51.1016 97.4399C51.3301 97.5669 51.603 97.6304 51.9204 97.6304C52.3097 97.6304 52.6292 97.5479 52.8789 97.3828C53.1328 97.2178 53.3359 96.9998 53.4883 96.729C53.6406 96.4582 53.7591 96.1641 53.8438 95.8467V94.3169C53.793 94.0841 53.7189 93.8599 53.6216 93.644C53.5285 93.424 53.4058 93.2293 53.2534 93.0601C53.1053 92.8866 52.9212 92.749 52.7012 92.6475C52.4854 92.5459 52.2293 92.4951 51.9331 92.4951C51.6115 92.4951 51.3343 92.5628 51.1016 92.6982C50.873 92.8294 50.6847 93.0114 50.5366 93.2441C50.3885 93.4727 50.2785 93.7393 50.2065 94.0439C50.1388 94.3444 50.105 94.666 50.105 95.0088ZM60.8833 97.167V88.75H62.064V98.5H60.9849L60.8833 97.167ZM56.2622 95.1421V95.0088C56.2622 94.484 56.3257 94.008 56.4526 93.5806C56.5838 93.1489 56.7679 92.7786 57.0049 92.4697C57.2461 92.1608 57.5317 91.9238 57.8618 91.7588C58.1961 91.5895 58.5685 91.5049 58.979 91.5049C59.4106 91.5049 59.7873 91.5811 60.1089 91.7334C60.4347 91.8815 60.7098 92.0994 60.9341 92.3872C61.1626 92.6707 61.3424 93.0135 61.4736 93.4155C61.6048 93.8175 61.6958 94.2725 61.7466 94.7803V95.3643C61.7 95.8678 61.609 96.3206 61.4736 96.7227C61.3424 97.1247 61.1626 97.4674 60.9341 97.751C60.7098 98.0345 60.4347 98.2524 60.1089 98.4048C59.783 98.5529 59.4022 98.627 58.9663 98.627C58.5643 98.627 58.1961 98.5402 57.8618 98.3667C57.5317 98.1932 57.2461 97.9499 57.0049 97.6367C56.7679 97.3236 56.5838 96.9554 56.4526 96.5322C56.3257 96.1048 56.2622 95.6414 56.2622 95.1421ZM57.4429 95.0088V95.1421C57.4429 95.4849 57.4767 95.8065 57.5444 96.1069C57.6164 96.4074 57.7264 96.6719 57.8745 96.9004C58.0226 97.1289 58.2109 97.3088 58.4395 97.4399C58.668 97.5669 58.9409 97.6304 59.2583 97.6304C59.6476 97.6304 59.9671 97.5479 60.2168 97.3828C60.4707 97.2178 60.6738 96.9998 60.8262 96.729C60.9785 96.4582 61.097 96.1641 61.1816 95.8467V94.3169C61.1309 94.0841 61.0568 93.8599 60.9595 93.644C60.8664 93.424 60.7437 93.2293 60.5913 93.0601C60.4432 92.8866 60.2591 92.749 60.0391 92.6475C59.8232 92.5459 59.5672 92.4951 59.271 92.4951C58.9494 92.4951 58.6722 92.5628 58.4395 92.6982C58.2109 92.8294 58.0226 93.0114 57.8745 93.2441C57.7264 93.4727 57.6164 93.7393 57.5444 94.0439C57.4767 94.3444 57.4429 94.666 57.4429 95.0088ZM66.7422 98.627C66.264 98.627 65.8302 98.5465 65.4409 98.3857C65.0558 98.2207 64.7236 97.9901 64.4443 97.6938C64.1693 97.3976 63.9577 97.0464 63.8096 96.6401C63.6615 96.2339 63.5874 95.7896 63.5874 95.3071V95.0405C63.5874 94.4819 63.6699 93.9847 63.835 93.5488C64 93.1087 64.2243 92.7363 64.5078 92.4316C64.7913 92.127 65.113 91.8963 65.4727 91.7397C65.8324 91.5832 66.2048 91.5049 66.5898 91.5049C67.0807 91.5049 67.5039 91.5895 67.8594 91.7588C68.2191 91.9281 68.5132 92.165 68.7417 92.4697C68.9702 92.7702 69.1395 93.1257 69.2495 93.5361C69.3595 93.9424 69.4146 94.3867 69.4146 94.8691V95.396H64.2856V94.4375H68.2402V94.3486C68.2233 94.0439 68.1598 93.7477 68.0498 93.46C67.944 93.1722 67.7747 92.9352 67.542 92.749C67.3092 92.5628 66.9919 92.4697 66.5898 92.4697C66.3232 92.4697 66.0778 92.5269 65.8535 92.6411C65.6292 92.7511 65.4367 92.9162 65.2759 93.1362C65.1151 93.3563 64.9902 93.625 64.9014 93.9424C64.8125 94.2598 64.7681 94.6258 64.7681 95.0405V95.3071C64.7681 95.633 64.8125 95.9398 64.9014 96.2275C64.9945 96.5111 65.1278 96.7607 65.3013 96.9766C65.479 97.1924 65.6927 97.3617 65.9424 97.4844C66.1963 97.6071 66.484 97.6685 66.8057 97.6685C67.2204 97.6685 67.5716 97.5838 67.8594 97.4146C68.1471 97.2453 68.3989 97.0189 68.6147 96.7354L69.3257 97.3003C69.1776 97.5246 68.9893 97.7383 68.7607 97.9414C68.5322 98.1445 68.2508 98.3096 67.9165 98.4365C67.5864 98.5635 67.195 98.627 66.7422 98.627ZM71.96 93.0981V98.5H70.7856V91.6318H71.8965L71.96 93.0981ZM71.6807 94.8057L71.1919 94.7866C71.1961 94.3169 71.266 93.8831 71.4014 93.4854C71.5368 93.0833 71.7272 92.7342 71.9727 92.438C72.2181 92.1418 72.5101 91.9132 72.8486 91.7524C73.1914 91.5874 73.5701 91.5049 73.9849 91.5049C74.3234 91.5049 74.6281 91.5514 74.8989 91.6445C75.1698 91.7334 75.4004 91.8773 75.5908 92.0762C75.7855 92.2751 75.9336 92.5332 76.0352 92.8506C76.1367 93.1637 76.1875 93.5467 76.1875 93.9995V98.5H75.0068V93.9868C75.0068 93.6271 74.9539 93.3394 74.8481 93.1235C74.7424 92.9035 74.5879 92.7448 74.3848 92.6475C74.1816 92.5459 73.932 92.4951 73.6357 92.4951C73.3438 92.4951 73.0771 92.5565 72.8359 92.6792C72.599 92.8019 72.3937 92.9712 72.2202 93.187C72.0509 93.4028 71.9176 93.6504 71.8203 93.9297C71.7272 94.2048 71.6807 94.4967 71.6807 94.8057ZM82.9224 98.5V99.4648H77.1016V98.5H82.9224ZM88.1655 97.167V88.75H89.3462V98.5H88.2671L88.1655 97.167ZM83.5444 95.1421V95.0088C83.5444 94.484 83.6079 94.008 83.7349 93.5806C83.866 93.1489 84.0501 92.7786 84.2871 92.4697C84.5283 92.1608 84.814 91.9238 85.144 91.7588C85.4784 91.5895 85.8507 91.5049 86.2612 91.5049C86.6929 91.5049 87.0695 91.5811 87.3911 91.7334C87.717 91.8815 87.992 92.0994 88.2163 92.3872C88.4448 92.6707 88.6247 93.0135 88.7559 93.4155C88.887 93.8175 88.978 94.2725 89.0288 94.7803V95.3643C88.9823 95.8678 88.8913 96.3206 88.7559 96.7227C88.6247 97.1247 88.4448 97.4674 88.2163 97.751C87.992 98.0345 87.717 98.2524 87.3911 98.4048C87.0653 98.5529 86.6844 98.627 86.2485 98.627C85.8465 98.627 85.4784 98.5402 85.144 98.3667C84.814 98.1932 84.5283 97.9499 84.2871 97.6367C84.0501 97.3236 83.866 96.9554 83.7349 96.5322C83.6079 96.1048 83.5444 95.6414 83.5444 95.1421ZM84.7251 95.0088V95.1421C84.7251 95.4849 84.759 95.8065 84.8267 96.1069C84.8986 96.4074 85.0086 96.6719 85.1567 96.9004C85.3049 97.1289 85.4932 97.3088 85.7217 97.4399C85.9502 97.5669 86.2231 97.6304 86.5405 97.6304C86.9299 97.6304 87.2493 97.5479 87.499 97.3828C87.7529 97.2178 87.9561 96.9998 88.1084 96.729C88.2607 96.4582 88.3792 96.1641 88.4639 95.8467V94.3169C88.4131 94.0841 88.339 93.8599 88.2417 93.644C88.1486 93.424 88.0259 93.2293 87.8735 93.0601C87.7254 92.8866 87.5413 92.749 87.3213 92.6475C87.1055 92.5459 86.8494 92.4951 86.5532 92.4951C86.2316 92.4951 85.9544 92.5628 85.7217 92.6982C85.4932 92.8294 85.3049 93.0114 85.1567 93.2441C85.0086 93.4727 84.8986 93.7393 84.8267 94.0439C84.759 94.3444 84.7251 94.666 84.7251 95.0088ZM94.0244 98.627C93.5462 98.627 93.1125 98.5465 92.7231 98.3857C92.3381 98.2207 92.0059 97.9901 91.7266 97.6938C91.4515 97.3976 91.2399 97.0464 91.0918 96.6401C90.9437 96.2339 90.8696 95.7896 90.8696 95.3071V95.0405C90.8696 94.4819 90.9521 93.9847 91.1172 93.5488C91.2822 93.1087 91.5065 92.7363 91.79 92.4316C92.0736 92.127 92.3952 91.8963 92.7549 91.7397C93.1146 91.5832 93.487 91.5049 93.8721 91.5049C94.363 91.5049 94.7861 91.5895 95.1416 91.7588C95.5013 91.9281 95.7954 92.165 96.0239 92.4697C96.2524 92.7702 96.4217 93.1257 96.5317 93.5361C96.6418 93.9424 96.6968 94.3867 96.6968 94.8691V95.396H91.5679V94.4375H95.5225V94.3486C95.5055 94.0439 95.4421 93.7477 95.332 93.46C95.2262 93.1722 95.057 92.9352 94.8242 92.749C94.5915 92.5628 94.2741 92.4697 93.8721 92.4697C93.6055 92.4697 93.36 92.5269 93.1357 92.6411C92.9115 92.7511 92.7189 92.9162 92.5581 93.1362C92.3973 93.3563 92.2725 93.625 92.1836 93.9424C92.0947 94.2598 92.0503 94.6258 92.0503 95.0405V95.3071C92.0503 95.633 92.0947 95.9398 92.1836 96.2275C92.2767 96.5111 92.41 96.7607 92.5835 96.9766C92.7612 97.1924 92.9749 97.3617 93.2246 97.4844C93.4785 97.6071 93.7663 97.6685 94.0879 97.6685C94.5026 97.6685 94.8538 97.5838 95.1416 97.4146C95.4294 97.2453 95.6812 97.0189 95.897 96.7354L96.6079 97.3003C96.4598 97.5246 96.2715 97.7383 96.043 97.9414C95.8145 98.1445 95.533 98.3096 95.1987 98.4365C94.8687 98.5635 94.4772 98.627 94.0244 98.627ZM99.3438 88.75V98.5H98.1631V88.75H99.3438ZM102.505 91.6318V98.5H101.324V91.6318H102.505ZM101.235 89.8101C101.235 89.6196 101.292 89.4588 101.407 89.3276C101.525 89.1965 101.699 89.1309 101.927 89.1309C102.152 89.1309 102.323 89.1965 102.441 89.3276C102.564 89.4588 102.625 89.6196 102.625 89.8101C102.625 89.992 102.564 90.1486 102.441 90.2798C102.323 90.4067 102.152 90.4702 101.927 90.4702C101.699 90.4702 101.525 90.4067 101.407 90.2798C101.292 90.1486 101.235 89.992 101.235 89.8101ZM106.479 97.4399L108.357 91.6318H109.557L107.088 98.5H106.301L106.479 97.4399ZM104.911 91.6318L106.847 97.4717L106.98 98.5H106.193L103.705 91.6318H104.911ZM113.448 98.627C112.97 98.627 112.536 98.5465 112.147 98.3857C111.762 98.2207 111.43 97.9901 111.15 97.6938C110.875 97.3976 110.664 97.0464 110.516 96.6401C110.368 96.2339 110.293 95.7896 110.293 95.3071V95.0405C110.293 94.4819 110.376 93.9847 110.541 93.5488C110.706 93.1087 110.93 92.7363 111.214 92.4316C111.497 92.127 111.819 91.8963 112.179 91.7397C112.538 91.5832 112.911 91.5049 113.296 91.5049C113.787 91.5049 114.21 91.5895 114.565 91.7588C114.925 91.9281 115.219 92.165 115.448 92.4697C115.676 92.7702 115.846 93.1257 115.956 93.5361C116.066 93.9424 116.121 94.3867 116.121 94.8691V95.396H110.992V94.4375H114.946V94.3486C114.929 94.0439 114.866 93.7477 114.756 93.46C114.65 93.1722 114.481 92.9352 114.248 92.749C114.015 92.5628 113.698 92.4697 113.296 92.4697C113.029 92.4697 112.784 92.5269 112.56 92.6411C112.335 92.7511 112.143 92.9162 111.982 93.1362C111.821 93.3563 111.696 93.625 111.607 93.9424C111.519 94.2598 111.474 94.6258 111.474 95.0405V95.3071C111.474 95.633 111.519 95.9398 111.607 96.2275C111.701 96.5111 111.834 96.7607 112.007 96.9766C112.185 97.1924 112.399 97.3617 112.648 97.4844C112.902 97.6071 113.19 97.6685 113.512 97.6685C113.926 97.6685 114.278 97.5838 114.565 97.4146C114.853 97.2453 115.105 97.0189 115.321 96.7354L116.032 97.3003C115.884 97.5246 115.695 97.7383 115.467 97.9414C115.238 98.1445 114.957 98.3096 114.623 98.4365C114.292 98.5635 113.901 98.627 113.448 98.627ZM118.666 92.7109V98.5H117.492V91.6318H118.634L118.666 92.7109ZM120.812 91.5938L120.805 92.6855C120.708 92.6644 120.615 92.6517 120.526 92.6475C120.441 92.639 120.344 92.6348 120.234 92.6348C119.963 92.6348 119.724 92.6771 119.517 92.7617C119.309 92.8464 119.134 92.9648 118.99 93.1172C118.846 93.2695 118.732 93.4515 118.647 93.6631C118.567 93.8704 118.514 94.099 118.488 94.3486L118.158 94.5391C118.158 94.1243 118.198 93.735 118.279 93.3711C118.363 93.0072 118.493 92.6855 118.666 92.4062C118.84 92.1227 119.06 91.9027 119.326 91.7461C119.597 91.5853 119.919 91.5049 120.291 91.5049C120.376 91.5049 120.473 91.5155 120.583 91.5366C120.693 91.5535 120.769 91.5726 120.812 91.5938ZM123.941 97.7891L125.852 91.6318H127.108L124.354 99.5601C124.29 99.7293 124.205 99.9113 124.1 100.106C123.998 100.305 123.867 100.493 123.706 100.671C123.545 100.849 123.351 100.993 123.122 101.103C122.898 101.217 122.629 101.274 122.316 101.274C122.223 101.274 122.104 101.261 121.96 101.236C121.817 101.21 121.715 101.189 121.656 101.172L121.649 100.22C121.683 100.224 121.736 100.229 121.808 100.233C121.884 100.241 121.937 100.246 121.967 100.246C122.233 100.246 122.46 100.21 122.646 100.138C122.832 100.07 122.989 99.9536 123.116 99.7886C123.247 99.6278 123.359 99.4056 123.452 99.1221L123.941 97.7891ZM122.538 91.6318L124.322 96.9639L124.626 98.2017L123.782 98.6333L121.256 91.6318H122.538Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M257.278 87.7598V89.6958H256.326V87.7598H257.278ZM257.164 98.1255V99.8203H256.218V98.1255H257.164ZM258.434 96.1196C258.434 95.8657 258.376 95.6372 258.262 95.4341C258.148 95.231 257.96 95.0448 257.697 94.8755C257.435 94.7062 257.084 94.5496 256.644 94.4058C256.11 94.2407 255.649 94.0397 255.26 93.8027C254.875 93.5658 254.576 93.2716 254.365 92.9204C254.157 92.5692 254.054 92.1439 254.054 91.6445C254.054 91.124 254.166 90.6755 254.39 90.2988C254.614 89.9222 254.932 89.6323 255.342 89.4292C255.753 89.2261 256.235 89.1245 256.79 89.1245C257.221 89.1245 257.606 89.1901 257.945 89.3213C258.283 89.4482 258.569 89.6387 258.802 89.8926C259.039 90.1465 259.219 90.4575 259.341 90.8257C259.468 91.1938 259.532 91.6191 259.532 92.1016H258.364C258.364 91.818 258.33 91.5578 258.262 91.3208C258.194 91.0838 258.093 90.8786 257.958 90.7051C257.822 90.5273 257.657 90.3919 257.462 90.2988C257.268 90.2015 257.043 90.1528 256.79 90.1528C256.434 90.1528 256.14 90.2142 255.907 90.3369C255.679 90.4596 255.509 90.6331 255.399 90.8574C255.289 91.0775 255.234 91.3335 255.234 91.6255C255.234 91.8963 255.289 92.1333 255.399 92.3364C255.509 92.5396 255.696 92.7236 255.958 92.8887C256.225 93.0495 256.591 93.2082 257.056 93.3647C257.602 93.5382 258.065 93.7435 258.446 93.9805C258.827 94.2132 259.117 94.501 259.316 94.8438C259.515 95.1823 259.614 95.6034 259.614 96.1069C259.614 96.6528 259.492 97.1141 259.246 97.4907C259.001 97.8631 258.656 98.1466 258.211 98.3413C257.767 98.536 257.247 98.6333 256.65 98.6333C256.29 98.6333 255.935 98.5846 255.583 98.4873C255.232 98.39 254.915 98.2313 254.631 98.0112C254.348 97.7869 254.121 97.4928 253.952 97.1289C253.783 96.7607 253.698 96.3101 253.698 95.7769H254.879C254.879 96.1366 254.93 96.4349 255.031 96.6719C255.137 96.9046 255.277 97.0908 255.45 97.2305C255.624 97.3659 255.814 97.4632 256.021 97.5225C256.233 97.5775 256.443 97.605 256.65 97.605C257.031 97.605 257.352 97.5457 257.615 97.4272C257.881 97.3045 258.084 97.131 258.224 96.9067C258.364 96.6825 258.434 96.4201 258.434 96.1196ZM267.136 97.5352V98.5H261.087V97.6558L264.115 94.2852C264.487 93.8704 264.775 93.5192 264.978 93.2314C265.185 92.9395 265.329 92.6792 265.41 92.4507C265.494 92.2179 265.537 91.981 265.537 91.7397C265.537 91.4351 265.473 91.16 265.346 90.9146C265.223 90.6649 265.042 90.466 264.8 90.3179C264.559 90.1698 264.267 90.0957 263.924 90.0957C263.514 90.0957 263.171 90.1761 262.896 90.3369C262.625 90.4935 262.422 90.7135 262.287 90.9971C262.151 91.2806 262.083 91.6064 262.083 91.9746H260.909C260.909 91.4541 261.023 90.978 261.252 90.5464C261.48 90.1147 261.819 89.772 262.268 89.5181C262.716 89.2599 263.268 89.1309 263.924 89.1309C264.508 89.1309 265.008 89.2345 265.422 89.4419C265.837 89.645 266.154 89.9328 266.375 90.3052C266.599 90.6733 266.711 91.105 266.711 91.6001C266.711 91.8709 266.664 92.146 266.571 92.4253C266.482 92.7004 266.358 92.9754 266.197 93.2505C266.04 93.5256 265.856 93.7964 265.645 94.063C265.437 94.3296 265.215 94.592 264.978 94.8501L262.502 97.5352H267.136ZM269.878 94.1011L268.939 93.8599L269.402 89.2578H274.144V90.3433H270.399L270.12 92.8569C270.289 92.7596 270.503 92.6686 270.761 92.584C271.023 92.4993 271.324 92.457 271.662 92.457C272.09 92.457 272.472 92.5311 272.811 92.6792C273.15 92.8231 273.437 93.0304 273.674 93.3013C273.916 93.5721 274.1 93.8979 274.227 94.2788C274.354 94.6597 274.417 95.085 274.417 95.5547C274.417 95.999 274.356 96.4074 274.233 96.7798C274.114 97.1522 273.935 97.478 273.693 97.7573C273.452 98.0324 273.147 98.2461 272.779 98.3984C272.415 98.5508 271.986 98.627 271.491 98.627C271.118 98.627 270.765 98.5762 270.431 98.4746C270.101 98.3688 269.804 98.2101 269.542 97.9985C269.284 97.7827 269.072 97.5161 268.907 97.1987C268.746 96.8771 268.645 96.5005 268.603 96.0688H269.72C269.771 96.4159 269.872 96.7078 270.024 96.9448C270.177 97.1818 270.376 97.3617 270.621 97.4844C270.871 97.6029 271.161 97.6621 271.491 97.6621C271.77 97.6621 272.018 97.6134 272.233 97.5161C272.449 97.4188 272.631 97.2791 272.779 97.0972C272.927 96.9152 273.04 96.6951 273.116 96.437C273.196 96.1789 273.236 95.889 273.236 95.5674C273.236 95.2754 273.196 95.0046 273.116 94.7549C273.035 94.5052 272.915 94.2873 272.754 94.1011C272.597 93.9149 272.405 93.771 272.176 93.6694C271.948 93.5636 271.685 93.5107 271.389 93.5107C270.996 93.5107 270.697 93.5636 270.494 93.6694C270.295 93.7752 270.09 93.9191 269.878 94.1011Z",fill:"#0F172A"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_75_1466"},(0,h.createElement)("rect",{x:"15",y:"41",width:"268",height:"62",rx:"4",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1466"},(0,h.createElement)("rect",{width:"18",height:"18",fill:"white",transform:"translate(15 62)"})),(0,h.createElement)("clipPath",{id:"clip2_75_1466"},(0,h.createElement)("rect",{width:"18",height:"18",fill:"white",transform:"translate(15 85)"})))),{__:On}=wp.i18n,{AdvancedFields:Jn,FieldSettingsWrapper:Rn,BlockLabel:qn,BlockDescription:Dn,BlockAdvancedValue:zn,BlockName:Un}=JetFBComponents,{useBlockAttributes:Gn,useUniqueNameOnDuplicate:Wn}=JetFBHooks,{InspectorControls:Kn,useBlockProps:$n,RichText:Yn}=wp.blockEditor,{CardHeader:Xn,CardBody:Qn,PanelBody:ea}=wp.components,{useEffect:Ca}=wp.element,ta=F(L.Card)({name:"StyledCard",class:"s1ip8zmx",propsAsIs:!0});t(6987);const la=JSON.parse('{"apiVersion":3,"name":"jet-forms/hidden-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","hidden"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Hidden Field","icon":"\\n\\n","attributes":{"return_raw":{"type":"boolean","default":false},"value":{"type":"object","default":{}},"render":{"type":"boolean","default":true},"field_value":{"type":"string","default":"post_id"},"hidden_value_field":{"type":"string","default":""},"query_var_key":{"type":"string","default":""},"date_format":{"type":"string","default":""},"hidden_value":{"type":"string","default":""},"name":{"type":"string","default":"hidden_field_name"},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false},"random":{"type":"object","default":{"length":10,"upper":true,"lower":true,"numbers":true,"symbols":true}}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:ra}=wp.i18n,{RangeControl:na,CheckboxControl:aa}=wp.components,{ToggleControl:ia}=wp.components,{__:oa}=wp.i18n,{addFilter:sa}=wp.hooks;sa("jfb.hidden-field.field-value.controls","jet-form-builder/random-string-controls",function(e){return C=>{var t;const{attributes:l,setAttributes:r}=C;if("random_string"!==l.field_value)return(0,h.createElement)(e,{...C});const n=Object.values({...l.random,length:void 0}).filter(Boolean).length,a=e=>{const[C]=Object.keys(e);l.random[C]&&1===n||r({random:{...l.random,...e}})};return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(na,{label:ra("String length","jet-form-builder"),value:null!==(t=l.random?.length)&&void 0!==t?t:10,onChange:e=>r({random:{...l.random,length:e}}),allowReset:!0,resetFallbackValue:10,min:1,max:50}),(0,h.createElement)(aa,{label:ra("Uppercase","jet-form-builder"),checked:l.random.upper,onChange:e=>a({upper:e})}),(0,h.createElement)(aa,{label:ra("Lowercase","jet-form-builder"),checked:l.random.lower,onChange:e=>a({lower:e})}),(0,h.createElement)(aa,{label:ra("Numbers","jet-form-builder"),checked:l.random.numbers,onChange:e=>a({numbers:e})}),(0,h.createElement)(aa,{label:ra("Symbols","jet-form-builder"),checked:l.random.symbols,onChange:e=>a({symbols:e})}))}}),sa("jfb.hidden-field.header.controls","jet-form-builder/disable-raw-value-control",function(e){return C=>{const{attributes:t,setAttributes:l}=C;return"random_string"!==t.field_value?(0,h.createElement)(e,{...C}):(0,h.createElement)(ia,{label:oa("Render in HTML","jet-form-builder"),checked:t.render,help:oa("Enable this option if you use this field in Calculated Field, Conditional Block, Advanced Validation, Global Macros, or Dynamic Value.","jet-form-builder"),onChange:e=>l({render:Boolean(e)})})}});const{__:ca}=wp.i18n,{createBlock:da}=wp.blocks,{name:ma,icon:ua=""}=la,pa={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:ua}}),description:ca("Insert Hidden field invisible on the frontend with the assigned value to use it in calculations or for other purposes.","jet-form-builder"),edit:function(e){const{attributes:C,setAttributes:t,isSelected:l,editProps:{uniqKey:r}}=e,n=$n();Wn();const[,a]=Gn();if(Ca(()=>{"referer_url"===C.field_value&&t({render:!0})},[C.field_value]),C.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Tn);const{label:i="Please set `Field Value`"}=JetFormHiddenField.sources.find(e=>e.value===C.field_value)||{label:"--",value:""},o=[i];switch(C.field_value){case"post_meta":case"user_meta":o.push(C.hidden_value_field);break;case"query_var":o.push(C.query_var_key);break;case"current_date":o.push(C.date_format);break;case"manual_input":o.push(C.hidden_value)}const s=document.body.classList.contains("wp-admin")&&(document.body.classList.contains("buddypress")||document.body.classList.contains("theme-buddyboss-theme"));return[l&&(0,h.createElement)(Kn,{key:r("InspectorControls")},(0,h.createElement)(ea,{title:On("General","jet-form-builder")},(0,h.createElement)(qn,null),(0,h.createElement)(Un,null),(0,h.createElement)(Dn,null)),(0,h.createElement)(ea,{title:On("Value","jet-form-builder")},(0,h.createElement)(zn,null)),(0,h.createElement)(Rn,{...e},(0,h.createElement)(In,null)),(0,h.createElement)(Jn,null)),(0,h.createElement)("div",{...n,key:r("viewBlock")},(0,h.createElement)(ta,{elevation:2,className:s?"buddypress-active":""},(0,h.createElement)(Xn,null,(0,h.createElement)(Yn,{placeholder:"hidden_field_name...",allowedFormats:[],value:C.name,onChange:e=>a({name:e})})),(0,h.createElement)(Qn,null,l&&(0,h.createElement)(In,null),!l&&o.join(": "))))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>da("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>((e.default?.length||Object.keys(e.value)?.length)&&(e.field_value=""),da(ma,{...e})),priority:0}]}},{Tools:fa}=JetFBActions,Va=fa.withPlaceholder([{value:"all",label:"Any registered user"},{value:"upload_files",label:"Any user, who allowed to upload files"},{value:"edit_posts",label:"Any user, who allowed to edit posts"},{value:"any_user",label:"Any user ( incl. Guest )"}]),Ha=fa.withPlaceholder([{value:"id",label:"Attachment ID"},{value:"url",label:"Attachment URL"},{value:"both",label:"Array with attachment ID and URL"},{value:"ids",label:"Array of attachment IDs"}]),ha=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"15.5",y:"47.5",width:"156",height:"29",rx:"3.5",fill:"#E2E8F0"}),(0,h.createElement)("path",{d:"M62.6523 63.561H63.8711C63.8076 64.145 63.6405 64.6676 63.3696 65.1289C63.0988 65.5902 62.7158 65.9562 62.2207 66.2271C61.7256 66.4937 61.1077 66.627 60.3672 66.627C59.8255 66.627 59.3325 66.5254 58.8882 66.3223C58.4481 66.1191 58.0693 65.8314 57.752 65.459C57.4346 65.0824 57.1891 64.6317 57.0156 64.1069C56.8464 63.578 56.7617 62.9897 56.7617 62.3423V61.4219C56.7617 60.7744 56.8464 60.1883 57.0156 59.6636C57.1891 59.1346 57.4367 58.6818 57.7583 58.3052C58.0841 57.9285 58.4756 57.6387 58.9326 57.4355C59.3896 57.2324 59.9038 57.1309 60.4751 57.1309C61.1733 57.1309 61.7637 57.262 62.2461 57.5244C62.7285 57.7868 63.103 58.1507 63.3696 58.6162C63.6405 59.0775 63.8076 59.6128 63.8711 60.2222H62.6523C62.5931 59.7905 62.4831 59.4202 62.3223 59.1113C62.1615 58.7982 61.9329 58.557 61.6367 58.3877C61.3405 58.2184 60.9533 58.1338 60.4751 58.1338C60.0646 58.1338 59.7028 58.2121 59.3896 58.3687C59.0807 58.5252 58.8205 58.7474 58.6089 59.0352C58.4015 59.3229 58.245 59.6678 58.1392 60.0698C58.0334 60.4718 57.9805 60.9183 57.9805 61.4092V62.3423C57.9805 62.7951 58.027 63.2204 58.1201 63.6182C58.2174 64.016 58.3634 64.3651 58.5581 64.6655C58.7528 64.966 59.0003 65.203 59.3008 65.3765C59.6012 65.5457 59.9567 65.6304 60.3672 65.6304C60.8877 65.6304 61.3024 65.5479 61.6113 65.3828C61.9202 65.2178 62.153 64.9808 62.3096 64.6719C62.4704 64.363 62.5846 63.9927 62.6523 63.561ZM66.5371 56.75V66.5H65.3628V56.75H66.5371ZM66.2578 62.8057L65.769 62.7866C65.7733 62.3169 65.8431 61.8831 65.9785 61.4854C66.1139 61.0833 66.3044 60.7342 66.5498 60.438C66.7952 60.1418 67.0872 59.9132 67.4258 59.7524C67.7686 59.5874 68.1473 59.5049 68.562 59.5049C68.9006 59.5049 69.2052 59.5514 69.4761 59.6445C69.7469 59.7334 69.9775 59.8773 70.168 60.0762C70.3626 60.2751 70.5107 60.5332 70.6123 60.8506C70.7139 61.1637 70.7646 61.5467 70.7646 61.9995V66.5H69.584V61.9868C69.584 61.6271 69.5311 61.3394 69.4253 61.1235C69.3195 60.9035 69.165 60.7448 68.9619 60.6475C68.7588 60.5459 68.5091 60.4951 68.2129 60.4951C67.9209 60.4951 67.6543 60.5565 67.4131 60.6792C67.1761 60.8019 66.9709 60.9712 66.7974 61.187C66.6281 61.4028 66.4948 61.6504 66.3975 61.9297C66.3044 62.2048 66.2578 62.4967 66.2578 62.8057ZM72.2119 63.1421V62.9961C72.2119 62.501 72.2839 62.0418 72.4277 61.6187C72.5716 61.1912 72.779 60.821 73.0498 60.5078C73.3206 60.1904 73.6486 59.945 74.0337 59.7715C74.4188 59.5938 74.8504 59.5049 75.3286 59.5049C75.811 59.5049 76.2448 59.5938 76.6299 59.7715C77.0192 59.945 77.3493 60.1904 77.6201 60.5078C77.8952 60.821 78.1047 61.1912 78.2485 61.6187C78.3924 62.0418 78.4644 62.501 78.4644 62.9961V63.1421C78.4644 63.6372 78.3924 64.0964 78.2485 64.5195C78.1047 64.9427 77.8952 65.313 77.6201 65.6304C77.3493 65.9435 77.0213 66.189 76.6362 66.3667C76.2554 66.5402 75.8237 66.627 75.3413 66.627C74.8589 66.627 74.4251 66.5402 74.04 66.3667C73.6549 66.189 73.3249 65.9435 73.0498 65.6304C72.779 65.313 72.5716 64.9427 72.4277 64.5195C72.2839 64.0964 72.2119 63.6372 72.2119 63.1421ZM73.3862 62.9961V63.1421C73.3862 63.4849 73.4264 63.8086 73.5068 64.1133C73.5872 64.4137 73.7078 64.6803 73.8687 64.9131C74.0337 65.1458 74.2389 65.3299 74.4844 65.4653C74.7298 65.5965 75.0155 65.6621 75.3413 65.6621C75.6629 65.6621 75.9443 65.5965 76.1855 65.4653C76.431 65.3299 76.6341 65.1458 76.7949 64.9131C76.9557 64.6803 77.0763 64.4137 77.1567 64.1133C77.2414 63.8086 77.2837 63.4849 77.2837 63.1421V62.9961C77.2837 62.6576 77.2414 62.3381 77.1567 62.0376C77.0763 61.7329 76.9536 61.4642 76.7886 61.2314C76.6278 60.9945 76.4246 60.8083 76.1792 60.6729C75.938 60.5374 75.6545 60.4697 75.3286 60.4697C75.007 60.4697 74.7235 60.5374 74.478 60.6729C74.2368 60.8083 74.0337 60.9945 73.8687 61.2314C73.7078 61.4642 73.5872 61.7329 73.5068 62.0376C73.4264 62.3381 73.3862 62.6576 73.3862 62.9961ZM79.626 63.1421V62.9961C79.626 62.501 79.6979 62.0418 79.8418 61.6187C79.9857 61.1912 80.193 60.821 80.4639 60.5078C80.7347 60.1904 81.0627 59.945 81.4478 59.7715C81.8328 59.5938 82.2645 59.5049 82.7427 59.5049C83.2251 59.5049 83.6589 59.5938 84.0439 59.7715C84.4333 59.945 84.7633 60.1904 85.0342 60.5078C85.3092 60.821 85.5187 61.1912 85.6626 61.6187C85.8065 62.0418 85.8784 62.501 85.8784 62.9961V63.1421C85.8784 63.6372 85.8065 64.0964 85.6626 64.5195C85.5187 64.9427 85.3092 65.313 85.0342 65.6304C84.7633 65.9435 84.4354 66.189 84.0503 66.3667C83.6694 66.5402 83.2378 66.627 82.7554 66.627C82.2729 66.627 81.8392 66.5402 81.4541 66.3667C81.069 66.189 80.7389 65.9435 80.4639 65.6304C80.193 65.313 79.9857 64.9427 79.8418 64.5195C79.6979 64.0964 79.626 63.6372 79.626 63.1421ZM80.8003 62.9961V63.1421C80.8003 63.4849 80.8405 63.8086 80.9209 64.1133C81.0013 64.4137 81.1219 64.6803 81.2827 64.9131C81.4478 65.1458 81.653 65.3299 81.8984 65.4653C82.1439 65.5965 82.4295 65.6621 82.7554 65.6621C83.077 65.6621 83.3584 65.5965 83.5996 65.4653C83.8451 65.3299 84.0482 65.1458 84.209 64.9131C84.3698 64.6803 84.4904 64.4137 84.5708 64.1133C84.6554 63.8086 84.6978 63.4849 84.6978 63.1421V62.9961C84.6978 62.6576 84.6554 62.3381 84.5708 62.0376C84.4904 61.7329 84.3677 61.4642 84.2026 61.2314C84.0418 60.9945 83.8387 60.8083 83.5933 60.6729C83.3521 60.5374 83.0685 60.4697 82.7427 60.4697C82.4211 60.4697 82.1375 60.5374 81.8921 60.6729C81.6509 60.8083 81.4478 60.9945 81.2827 61.2314C81.1219 61.4642 81.0013 61.7329 80.9209 62.0376C80.8405 62.3381 80.8003 62.6576 80.8003 62.9961ZM91.3501 64.6782C91.3501 64.509 91.312 64.3524 91.2358 64.2085C91.1639 64.0604 91.0137 63.9271 90.7852 63.8086C90.5609 63.6859 90.2223 63.5801 89.7695 63.4912C89.3887 63.4108 89.0438 63.3156 88.7349 63.2056C88.4302 63.0955 88.1699 62.9622 87.9541 62.8057C87.7425 62.6491 87.5796 62.465 87.4653 62.2534C87.3511 62.0418 87.2939 61.7943 87.2939 61.5107C87.2939 61.2399 87.3532 60.9839 87.4717 60.7427C87.5944 60.5015 87.7658 60.2878 87.9858 60.1016C88.2101 59.9154 88.4788 59.7694 88.792 59.6636C89.1051 59.5578 89.4543 59.5049 89.8394 59.5049C90.3895 59.5049 90.8592 59.6022 91.2485 59.7969C91.6379 59.9915 91.9362 60.2518 92.1436 60.5776C92.3509 60.8993 92.4546 61.2568 92.4546 61.6504H91.2803C91.2803 61.46 91.2231 61.2759 91.1089 61.0981C90.9989 60.9162 90.8359 60.766 90.6201 60.6475C90.4085 60.529 90.1483 60.4697 89.8394 60.4697C89.5135 60.4697 89.249 60.5205 89.0459 60.6221C88.847 60.7194 88.701 60.8442 88.6079 60.9966C88.519 61.1489 88.4746 61.3097 88.4746 61.479C88.4746 61.606 88.4958 61.7202 88.5381 61.8218C88.5846 61.9191 88.665 62.0101 88.7793 62.0947C88.8936 62.1751 89.0544 62.2513 89.2617 62.3232C89.4691 62.3952 89.7336 62.4671 90.0552 62.5391C90.618 62.666 91.0814 62.8184 91.4453 62.9961C91.8092 63.1738 92.0801 63.3918 92.2578 63.6499C92.4355 63.908 92.5244 64.2212 92.5244 64.5894C92.5244 64.8898 92.4609 65.1649 92.334 65.4146C92.2113 65.6642 92.0314 65.88 91.7944 66.062C91.5617 66.2397 91.2824 66.3794 90.9565 66.481C90.6349 66.5783 90.2731 66.627 89.8711 66.627C89.266 66.627 88.7539 66.519 88.335 66.3032C87.916 66.0874 87.5986 65.8081 87.3828 65.4653C87.167 65.1226 87.0591 64.7607 87.0591 64.3799H88.2397C88.2567 64.7015 88.3498 64.9575 88.519 65.1479C88.6883 65.3341 88.8957 65.4674 89.1411 65.5479C89.3866 65.624 89.6299 65.6621 89.8711 65.6621C90.1927 65.6621 90.4614 65.6198 90.6772 65.5352C90.8973 65.4505 91.0645 65.3341 91.1787 65.186C91.293 65.0379 91.3501 64.8687 91.3501 64.6782ZM96.917 66.627C96.4388 66.627 96.005 66.5465 95.6157 66.3857C95.2306 66.2207 94.8984 65.9901 94.6191 65.6938C94.3441 65.3976 94.1325 65.0464 93.9844 64.6401C93.8363 64.2339 93.7622 63.7896 93.7622 63.3071V63.0405C93.7622 62.4819 93.8447 61.9847 94.0098 61.5488C94.1748 61.1087 94.3991 60.7363 94.6826 60.4316C94.9661 60.127 95.2878 59.8963 95.6475 59.7397C96.0072 59.5832 96.3796 59.5049 96.7646 59.5049C97.2555 59.5049 97.6787 59.5895 98.0342 59.7588C98.3939 59.9281 98.688 60.165 98.9165 60.4697C99.145 60.7702 99.3143 61.1257 99.4243 61.5361C99.5343 61.9424 99.5894 62.3867 99.5894 62.8691V63.396H94.4604V62.4375H98.415V62.3486C98.3981 62.0439 98.3346 61.7477 98.2246 61.46C98.1188 61.1722 97.9495 60.9352 97.7168 60.749C97.484 60.5628 97.1667 60.4697 96.7646 60.4697C96.498 60.4697 96.2526 60.5269 96.0283 60.6411C95.804 60.7511 95.6115 60.9162 95.4507 61.1362C95.2899 61.3563 95.165 61.625 95.0762 61.9424C94.9873 62.2598 94.9429 62.6258 94.9429 63.0405V63.3071C94.9429 63.633 94.9873 63.9398 95.0762 64.2275C95.1693 64.5111 95.3026 64.7607 95.4761 64.9766C95.6538 65.1924 95.8675 65.3617 96.1172 65.4844C96.3711 65.6071 96.6589 65.6685 96.9805 65.6685C97.3952 65.6685 97.7464 65.5838 98.0342 65.4146C98.3219 65.2453 98.5737 65.0189 98.7896 64.7354L99.5005 65.3003C99.3524 65.5246 99.1641 65.7383 98.9355 65.9414C98.707 66.1445 98.4256 66.3096 98.0913 66.4365C97.7612 66.5635 97.3698 66.627 96.917 66.627ZM105.588 57.2578V66.5H104.363V57.2578H105.588ZM109.46 61.4155V62.4185H105.321V61.4155H109.46ZM110.088 57.2578V58.2607H105.321V57.2578H110.088ZM112.646 59.6318V66.5H111.466V59.6318H112.646ZM111.377 57.8101C111.377 57.6196 111.434 57.4588 111.548 57.3276C111.667 57.1965 111.84 57.1309 112.069 57.1309C112.293 57.1309 112.465 57.1965 112.583 57.3276C112.706 57.4588 112.767 57.6196 112.767 57.8101C112.767 57.992 112.706 58.1486 112.583 58.2798C112.465 58.4067 112.293 58.4702 112.069 58.4702C111.84 58.4702 111.667 58.4067 111.548 58.2798C111.434 58.1486 111.377 57.992 111.377 57.8101ZM115.808 56.75V66.5H114.627V56.75H115.808ZM120.543 66.627C120.065 66.627 119.631 66.5465 119.242 66.3857C118.857 66.2207 118.524 65.9901 118.245 65.6938C117.97 65.3976 117.758 65.0464 117.61 64.6401C117.462 64.2339 117.388 63.7896 117.388 63.3071V63.0405C117.388 62.4819 117.471 61.9847 117.636 61.5488C117.801 61.1087 118.025 60.7363 118.309 60.4316C118.592 60.127 118.914 59.8963 119.273 59.7397C119.633 59.5832 120.006 59.5049 120.391 59.5049C120.882 59.5049 121.305 59.5895 121.66 59.7588C122.02 59.9281 122.314 60.165 122.542 60.4697C122.771 60.7702 122.94 61.1257 123.05 61.5361C123.16 61.9424 123.215 62.3867 123.215 62.8691V63.396H118.086V62.4375H122.041V62.3486C122.024 62.0439 121.961 61.7477 121.851 61.46C121.745 61.1722 121.576 60.9352 121.343 60.749C121.11 60.5628 120.793 60.4697 120.391 60.4697C120.124 60.4697 119.879 60.5269 119.654 60.6411C119.43 60.7511 119.237 60.9162 119.077 61.1362C118.916 61.3563 118.791 61.625 118.702 61.9424C118.613 62.2598 118.569 62.6258 118.569 63.0405V63.3071C118.569 63.633 118.613 63.9398 118.702 64.2275C118.795 64.5111 118.929 64.7607 119.102 64.9766C119.28 65.1924 119.493 65.3617 119.743 65.4844C119.997 65.6071 120.285 65.6685 120.606 65.6685C121.021 65.6685 121.372 65.5838 121.66 65.4146C121.948 65.2453 122.2 65.0189 122.416 64.7354L123.126 65.3003C122.978 65.5246 122.79 65.7383 122.562 65.9414C122.333 66.1445 122.052 66.3096 121.717 66.4365C121.387 66.5635 120.996 66.627 120.543 66.627ZM128.585 64.6782C128.585 64.509 128.547 64.3524 128.471 64.2085C128.399 64.0604 128.249 63.9271 128.021 63.8086C127.796 63.6859 127.458 63.5801 127.005 63.4912C126.624 63.4108 126.279 63.3156 125.97 63.2056C125.666 63.0955 125.405 62.9622 125.189 62.8057C124.978 62.6491 124.815 62.465 124.701 62.2534C124.586 62.0418 124.529 61.7943 124.529 61.5107C124.529 61.2399 124.589 60.9839 124.707 60.7427C124.83 60.5015 125.001 60.2878 125.221 60.1016C125.445 59.9154 125.714 59.7694 126.027 59.6636C126.34 59.5578 126.69 59.5049 127.075 59.5049C127.625 59.5049 128.095 59.6022 128.484 59.7969C128.873 59.9915 129.172 60.2518 129.379 60.5776C129.586 60.8993 129.69 61.2568 129.69 61.6504H128.516C128.516 61.46 128.458 61.2759 128.344 61.0981C128.234 60.9162 128.071 60.766 127.855 60.6475C127.644 60.529 127.384 60.4697 127.075 60.4697C126.749 60.4697 126.484 60.5205 126.281 60.6221C126.082 60.7194 125.936 60.8442 125.843 60.9966C125.754 61.1489 125.71 61.3097 125.71 61.479C125.71 61.606 125.731 61.7202 125.773 61.8218C125.82 61.9191 125.9 62.0101 126.015 62.0947C126.129 62.1751 126.29 62.2513 126.497 62.3232C126.704 62.3952 126.969 62.4671 127.291 62.5391C127.853 62.666 128.317 62.8184 128.681 62.9961C129.045 63.1738 129.315 63.3918 129.493 63.6499C129.671 63.908 129.76 64.2212 129.76 64.5894C129.76 64.8898 129.696 65.1649 129.569 65.4146C129.447 65.6642 129.267 65.88 129.03 66.062C128.797 66.2397 128.518 66.3794 128.192 66.481C127.87 66.5783 127.508 66.627 127.106 66.627C126.501 66.627 125.989 66.519 125.57 66.3032C125.151 66.0874 124.834 65.8081 124.618 65.4653C124.402 65.1226 124.294 64.7607 124.294 64.3799H125.475C125.492 64.7015 125.585 64.9575 125.754 65.1479C125.924 65.3341 126.131 65.4674 126.376 65.5479C126.622 65.624 126.865 65.6621 127.106 65.6621C127.428 65.6621 127.697 65.6198 127.913 65.5352C128.133 65.4505 128.3 65.3341 128.414 65.186C128.528 65.0379 128.585 64.8687 128.585 64.6782Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"15.5",y:"47.5",width:"156",height:"29",rx:"3.5",stroke:"#0F172A"}),(0,h.createElement)("path",{d:"M188.182 57.2578V66.5H186.951L182.298 59.3716V66.5H181.073V57.2578H182.298L186.97 64.4053V57.2578H188.182ZM189.864 63.1421V62.9961C189.864 62.501 189.936 62.0418 190.08 61.6187C190.224 61.1912 190.431 60.821 190.702 60.5078C190.973 60.1904 191.301 59.945 191.686 59.7715C192.071 59.5938 192.503 59.5049 192.981 59.5049C193.463 59.5049 193.897 59.5938 194.282 59.7715C194.672 59.945 195.002 60.1904 195.272 60.5078C195.548 60.821 195.757 61.1912 195.901 61.6187C196.045 62.0418 196.117 62.501 196.117 62.9961V63.1421C196.117 63.6372 196.045 64.0964 195.901 64.5195C195.757 64.9427 195.548 65.313 195.272 65.6304C195.002 65.9435 194.674 66.189 194.289 66.3667C193.908 66.5402 193.476 66.627 192.994 66.627C192.511 66.627 192.077 66.5402 191.692 66.3667C191.307 66.189 190.977 65.9435 190.702 65.6304C190.431 65.313 190.224 64.9427 190.08 64.5195C189.936 64.0964 189.864 63.6372 189.864 63.1421ZM191.039 62.9961V63.1421C191.039 63.4849 191.079 63.8086 191.159 64.1133C191.24 64.4137 191.36 64.6803 191.521 64.9131C191.686 65.1458 191.891 65.3299 192.137 65.4653C192.382 65.5965 192.668 65.6621 192.994 65.6621C193.315 65.6621 193.597 65.5965 193.838 65.4653C194.083 65.3299 194.286 65.1458 194.447 64.9131C194.608 64.6803 194.729 64.4137 194.809 64.1133C194.894 63.8086 194.936 63.4849 194.936 63.1421V62.9961C194.936 62.6576 194.894 62.3381 194.809 62.0376C194.729 61.7329 194.606 61.4642 194.441 61.2314C194.28 60.9945 194.077 60.8083 193.832 60.6729C193.59 60.5374 193.307 60.4697 192.981 60.4697C192.659 60.4697 192.376 60.5374 192.13 60.6729C191.889 60.8083 191.686 60.9945 191.521 61.2314C191.36 61.4642 191.24 61.7329 191.159 62.0376C191.079 62.3381 191.039 62.6576 191.039 62.9961ZM202.382 66.5H201.208V59.0352C201.208 58.5146 201.309 58.0745 201.512 57.7148C201.715 57.3551 202.005 57.0822 202.382 56.896C202.758 56.7098 203.205 56.6167 203.721 56.6167C204.026 56.6167 204.324 56.6548 204.616 56.731C204.908 56.8029 205.209 56.8939 205.518 57.0039L205.321 57.9941C205.126 57.918 204.9 57.846 204.642 57.7783C204.388 57.7064 204.108 57.6704 203.804 57.6704C203.3 57.6704 202.936 57.7847 202.712 58.0132C202.492 58.2375 202.382 58.5781 202.382 59.0352V66.5ZM203.785 59.6318V60.5332H200.122V59.6318H203.785ZM206.095 59.6318V66.5H204.921V59.6318H206.095ZM209.301 56.75V66.5H208.12V56.75H209.301ZM214.036 66.627C213.558 66.627 213.124 66.5465 212.735 66.3857C212.35 66.2207 212.018 65.9901 211.738 65.6938C211.463 65.3976 211.252 65.0464 211.104 64.6401C210.955 64.2339 210.881 63.7896 210.881 63.3071V63.0405C210.881 62.4819 210.964 61.9847 211.129 61.5488C211.294 61.1087 211.518 60.7363 211.802 60.4316C212.085 60.127 212.407 59.8963 212.767 59.7397C213.126 59.5832 213.499 59.5049 213.884 59.5049C214.375 59.5049 214.798 59.5895 215.153 59.7588C215.513 59.9281 215.807 60.165 216.036 60.4697C216.264 60.7702 216.433 61.1257 216.543 61.5361C216.653 61.9424 216.708 62.3867 216.708 62.8691V63.396H211.58V62.4375H215.534V62.3486C215.517 62.0439 215.454 61.7477 215.344 61.46C215.238 61.1722 215.069 60.9352 214.836 60.749C214.603 60.5628 214.286 60.4697 213.884 60.4697C213.617 60.4697 213.372 60.5269 213.147 60.6411C212.923 60.7511 212.731 60.9162 212.57 61.1362C212.409 61.3563 212.284 61.625 212.195 61.9424C212.106 62.2598 212.062 62.6258 212.062 63.0405V63.3071C212.062 63.633 212.106 63.9398 212.195 64.2275C212.288 64.5111 212.422 64.7607 212.595 64.9766C212.773 65.1924 212.987 65.3617 213.236 65.4844C213.49 65.6071 213.778 65.6685 214.1 65.6685C214.514 65.6685 214.866 65.5838 215.153 65.4146C215.441 65.2453 215.693 65.0189 215.909 64.7354L216.62 65.3003C216.472 65.5246 216.283 65.7383 216.055 65.9414C215.826 66.1445 215.545 66.3096 215.21 66.4365C214.88 66.5635 214.489 66.627 214.036 66.627ZM224.053 65.6621C224.332 65.6621 224.59 65.605 224.827 65.4907C225.064 65.3765 225.259 65.2199 225.411 65.021C225.563 64.8179 225.65 64.5872 225.671 64.3291H226.789C226.767 64.7354 226.63 65.1141 226.376 65.4653C226.126 65.8123 225.798 66.0938 225.392 66.3096C224.986 66.5212 224.539 66.627 224.053 66.627C223.536 66.627 223.086 66.536 222.701 66.354C222.32 66.172 222.002 65.9224 221.749 65.605C221.499 65.2876 221.311 64.9237 221.184 64.5132C221.061 64.0985 221 63.6605 221 63.1992V62.9326C221 62.4714 221.061 62.0355 221.184 61.625C221.311 61.2103 221.499 60.8442 221.749 60.5269C222.002 60.2095 222.32 59.9598 222.701 59.7778C223.086 59.5959 223.536 59.5049 224.053 59.5049C224.59 59.5049 225.06 59.6149 225.462 59.835C225.864 60.0508 226.179 60.347 226.408 60.7236C226.64 61.096 226.767 61.5192 226.789 61.9932H225.671C225.65 61.7096 225.57 61.4536 225.43 61.2251C225.295 60.9966 225.109 60.8146 224.872 60.6792C224.639 60.5396 224.366 60.4697 224.053 60.4697C223.693 60.4697 223.39 60.5417 223.145 60.6855C222.904 60.8252 222.711 61.0156 222.567 61.2568C222.428 61.4938 222.326 61.7583 222.263 62.0503C222.203 62.3381 222.174 62.6322 222.174 62.9326V63.1992C222.174 63.4997 222.203 63.7959 222.263 64.0879C222.322 64.3799 222.421 64.6444 222.561 64.8813C222.705 65.1183 222.897 65.3088 223.139 65.4526C223.384 65.5923 223.689 65.6621 224.053 65.6621ZM229.283 56.75V66.5H228.109V56.75H229.283ZM229.004 62.8057L228.515 62.7866C228.519 62.3169 228.589 61.8831 228.725 61.4854C228.86 61.0833 229.05 60.7342 229.296 60.438C229.541 60.1418 229.833 59.9132 230.172 59.7524C230.515 59.5874 230.893 59.5049 231.308 59.5049C231.647 59.5049 231.951 59.5514 232.222 59.6445C232.493 59.7334 232.724 59.8773 232.914 60.0762C233.109 60.2751 233.257 60.5332 233.358 60.8506C233.46 61.1637 233.511 61.5467 233.511 61.9995V66.5H232.33V61.9868C232.33 61.6271 232.277 61.3394 232.171 61.1235C232.066 60.9035 231.911 60.7448 231.708 60.6475C231.505 60.5459 231.255 60.4951 230.959 60.4951C230.667 60.4951 230.4 60.5565 230.159 60.6792C229.922 60.8019 229.717 60.9712 229.543 61.187C229.374 61.4028 229.241 61.6504 229.144 61.9297C229.05 62.2048 229.004 62.4967 229.004 62.8057ZM234.958 63.1421V62.9961C234.958 62.501 235.03 62.0418 235.174 61.6187C235.318 61.1912 235.525 60.821 235.796 60.5078C236.067 60.1904 236.395 59.945 236.78 59.7715C237.165 59.5938 237.597 59.5049 238.075 59.5049C238.557 59.5049 238.991 59.5938 239.376 59.7715C239.765 59.945 240.095 60.1904 240.366 60.5078C240.641 60.821 240.851 61.1912 240.995 61.6187C241.139 62.0418 241.21 62.501 241.21 62.9961V63.1421C241.21 63.6372 241.139 64.0964 240.995 64.5195C240.851 64.9427 240.641 65.313 240.366 65.6304C240.095 65.9435 239.767 66.189 239.382 66.3667C239.001 66.5402 238.57 66.627 238.087 66.627C237.605 66.627 237.171 66.5402 236.786 66.3667C236.401 66.189 236.071 65.9435 235.796 65.6304C235.525 65.313 235.318 64.9427 235.174 64.5195C235.03 64.0964 234.958 63.6372 234.958 63.1421ZM236.132 62.9961V63.1421C236.132 63.4849 236.173 63.8086 236.253 64.1133C236.333 64.4137 236.454 64.6803 236.615 64.9131C236.78 65.1458 236.985 65.3299 237.23 65.4653C237.476 65.5965 237.762 65.6621 238.087 65.6621C238.409 65.6621 238.69 65.5965 238.932 65.4653C239.177 65.3299 239.38 65.1458 239.541 64.9131C239.702 64.6803 239.822 64.4137 239.903 64.1133C239.987 63.8086 240.03 63.4849 240.03 63.1421V62.9961C240.03 62.6576 239.987 62.3381 239.903 62.0376C239.822 61.7329 239.7 61.4642 239.535 61.2314C239.374 60.9945 239.171 60.8083 238.925 60.6729C238.684 60.5374 238.401 60.4697 238.075 60.4697C237.753 60.4697 237.47 60.5374 237.224 60.6729C236.983 60.8083 236.78 60.9945 236.615 61.2314C236.454 61.4642 236.333 61.7329 236.253 62.0376C236.173 62.3381 236.132 62.6576 236.132 62.9961ZM246.682 64.6782C246.682 64.509 246.644 64.3524 246.568 64.2085C246.496 64.0604 246.346 63.9271 246.117 63.8086C245.893 63.6859 245.554 63.5801 245.102 63.4912C244.721 63.4108 244.376 63.3156 244.067 63.2056C243.762 63.0955 243.502 62.9622 243.286 62.8057C243.075 62.6491 242.912 62.465 242.797 62.2534C242.683 62.0418 242.626 61.7943 242.626 61.5107C242.626 61.2399 242.685 60.9839 242.804 60.7427C242.926 60.5015 243.098 60.2878 243.318 60.1016C243.542 59.9154 243.811 59.7694 244.124 59.6636C244.437 59.5578 244.786 59.5049 245.171 59.5049C245.722 59.5049 246.191 59.6022 246.581 59.7969C246.97 59.9915 247.268 60.2518 247.476 60.5776C247.683 60.8993 247.787 61.2568 247.787 61.6504H246.612C246.612 61.46 246.555 61.2759 246.441 61.0981C246.331 60.9162 246.168 60.766 245.952 60.6475C245.741 60.529 245.48 60.4697 245.171 60.4697C244.846 60.4697 244.581 60.5205 244.378 60.6221C244.179 60.7194 244.033 60.8442 243.94 60.9966C243.851 61.1489 243.807 61.3097 243.807 61.479C243.807 61.606 243.828 61.7202 243.87 61.8218C243.917 61.9191 243.997 62.0101 244.111 62.0947C244.226 62.1751 244.386 62.2513 244.594 62.3232C244.801 62.3952 245.066 62.4671 245.387 62.5391C245.95 62.666 246.413 62.8184 246.777 62.9961C247.141 63.1738 247.412 63.3918 247.59 63.6499C247.768 63.908 247.856 64.2212 247.856 64.5894C247.856 64.8898 247.793 65.1649 247.666 65.4146C247.543 65.6642 247.363 65.88 247.126 66.062C246.894 66.2397 246.614 66.3794 246.289 66.481C245.967 66.5783 245.605 66.627 245.203 66.627C244.598 66.627 244.086 66.519 243.667 66.3032C243.248 66.0874 242.931 65.8081 242.715 65.4653C242.499 65.1226 242.391 64.7607 242.391 64.3799H243.572C243.589 64.7015 243.682 64.9575 243.851 65.1479C244.02 65.3341 244.228 65.4674 244.473 65.5479C244.719 65.624 244.962 65.6621 245.203 65.6621C245.525 65.6621 245.793 65.6198 246.009 65.5352C246.229 65.4505 246.396 65.3341 246.511 65.186C246.625 65.0379 246.682 64.8687 246.682 64.6782ZM252.249 66.627C251.771 66.627 251.337 66.5465 250.948 66.3857C250.563 66.2207 250.23 65.9901 249.951 65.6938C249.676 65.3976 249.465 65.0464 249.316 64.6401C249.168 64.2339 249.094 63.7896 249.094 63.3071V63.0405C249.094 62.4819 249.177 61.9847 249.342 61.5488C249.507 61.1087 249.731 60.7363 250.015 60.4316C250.298 60.127 250.62 59.8963 250.979 59.7397C251.339 59.5832 251.712 59.5049 252.097 59.5049C252.588 59.5049 253.011 59.5895 253.366 59.7588C253.726 59.9281 254.02 60.165 254.249 60.4697C254.477 60.7702 254.646 61.1257 254.756 61.5361C254.866 61.9424 254.921 62.3867 254.921 62.8691V63.396H249.792V62.4375H253.747V62.3486C253.73 62.0439 253.667 61.7477 253.557 61.46C253.451 61.1722 253.282 60.9352 253.049 60.749C252.816 60.5628 252.499 60.4697 252.097 60.4697C251.83 60.4697 251.585 60.5269 251.36 60.6411C251.136 60.7511 250.944 60.9162 250.783 61.1362C250.622 61.3563 250.497 61.625 250.408 61.9424C250.319 62.2598 250.275 62.6258 250.275 63.0405V63.3071C250.275 63.633 250.319 63.9398 250.408 64.2275C250.501 64.5111 250.635 64.7607 250.808 64.9766C250.986 65.1924 251.2 65.3617 251.449 65.4844C251.703 65.6071 251.991 65.6685 252.312 65.6685C252.727 65.6685 253.078 65.5838 253.366 65.4146C253.654 65.2453 253.906 65.0189 254.122 64.7354L254.833 65.3003C254.684 65.5246 254.496 65.7383 254.268 65.9414C254.039 66.1445 253.758 66.3096 253.423 66.4365C253.093 66.5635 252.702 66.627 252.249 66.627ZM257.467 61.0981V66.5H256.292V59.6318H257.403L257.467 61.0981ZM257.188 62.8057L256.699 62.7866C256.703 62.3169 256.773 61.8831 256.908 61.4854C257.044 61.0833 257.234 60.7342 257.479 60.438C257.725 60.1418 258.017 59.9132 258.355 59.7524C258.698 59.5874 259.077 59.5049 259.492 59.5049C259.83 59.5049 260.135 59.5514 260.406 59.6445C260.677 59.7334 260.907 59.8773 261.098 60.0762C261.292 60.2751 261.44 60.5332 261.542 60.8506C261.644 61.1637 261.694 61.5467 261.694 61.9995V66.5H260.514V61.9868C260.514 61.6271 260.461 61.3394 260.355 61.1235C260.249 60.9035 260.095 60.7448 259.892 60.6475C259.688 60.5459 259.439 60.4951 259.143 60.4951C258.851 60.4951 258.584 60.5565 258.343 60.6792C258.106 60.8019 257.901 60.9712 257.727 61.187C257.558 61.4028 257.424 61.6504 257.327 61.9297C257.234 62.2048 257.188 62.4967 257.188 62.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M16.46 84.7578H17.647L20.6748 92.2925L23.6963 84.7578H24.8896L21.1318 94H20.2051L16.46 84.7578ZM16.0728 84.7578H17.1201L17.2915 90.3945V94H16.0728V84.7578ZM24.2231 84.7578H25.2705V94H24.0518V90.3945L24.2231 84.7578ZM31.2944 92.8257V89.29C31.2944 89.0192 31.2394 88.7843 31.1294 88.5854C31.0236 88.3823 30.8628 88.2257 30.647 88.1157C30.4312 88.0057 30.1646 87.9507 29.8472 87.9507C29.5509 87.9507 29.2907 88.0015 29.0664 88.103C28.8464 88.2046 28.6729 88.3379 28.5459 88.5029C28.4232 88.668 28.3618 88.8457 28.3618 89.0361H27.1875C27.1875 88.7907 27.251 88.5474 27.3779 88.3062C27.5049 88.0649 27.6868 87.847 27.9238 87.6523C28.165 87.4535 28.4528 87.2969 28.7871 87.1826C29.1257 87.0641 29.5023 87.0049 29.917 87.0049C30.4163 87.0049 30.8564 87.0895 31.2373 87.2588C31.6224 87.4281 31.9229 87.6841 32.1387 88.0269C32.3587 88.3654 32.4688 88.7907 32.4688 89.3027V92.502C32.4688 92.7305 32.4878 92.9738 32.5259 93.2319C32.5682 93.4901 32.6296 93.7122 32.71 93.8984V94H31.4849C31.4256 93.8646 31.3791 93.6847 31.3452 93.4604C31.3114 93.2319 31.2944 93.0203 31.2944 92.8257ZM31.4976 89.8359L31.5103 90.6611H30.3232C29.9889 90.6611 29.6906 90.6886 29.4282 90.7437C29.1659 90.7944 28.9458 90.8727 28.7681 90.9785C28.5903 91.0843 28.4549 91.2176 28.3618 91.3784C28.2687 91.535 28.2222 91.7191 28.2222 91.9307C28.2222 92.1465 28.2708 92.3433 28.3682 92.521C28.4655 92.6987 28.6115 92.8405 28.8062 92.9463C29.005 93.0479 29.2484 93.0986 29.5361 93.0986C29.8958 93.0986 30.2132 93.0225 30.4883 92.8701C30.7633 92.7178 30.9813 92.5316 31.1421 92.3115C31.3071 92.0915 31.396 91.8778 31.4087 91.6704L31.9102 92.2354C31.8805 92.4131 31.8001 92.6099 31.6689 92.8257C31.5378 93.0415 31.3621 93.2489 31.1421 93.4478C30.9263 93.6424 30.6681 93.8053 30.3677 93.9365C30.0715 94.0635 29.7371 94.127 29.3647 94.127C28.8993 94.127 28.4909 94.036 28.1396 93.854C27.7926 93.672 27.5218 93.4287 27.3271 93.124C27.1367 92.8151 27.0415 92.4702 27.0415 92.0894C27.0415 91.7212 27.1134 91.3975 27.2573 91.1182C27.4012 90.8346 27.6086 90.5998 27.8794 90.4136C28.1502 90.2231 28.4761 90.0793 28.8569 89.9819C29.2378 89.8846 29.6631 89.8359 30.1328 89.8359H31.4976ZM35.1094 87.1318L36.6138 89.6328L38.1372 87.1318H39.5146L37.2676 90.5215L39.5845 94H38.2261L36.6392 91.4229L35.0522 94H33.6875L35.998 90.5215L33.7573 87.1318H35.1094ZM42.041 87.1318V94H40.8604V87.1318H42.041ZM40.7715 85.3101C40.7715 85.1196 40.8286 84.9588 40.9429 84.8276C41.0614 84.6965 41.2349 84.6309 41.4634 84.6309C41.6877 84.6309 41.859 84.6965 41.9775 84.8276C42.1003 84.9588 42.1616 85.1196 42.1616 85.3101C42.1616 85.492 42.1003 85.6486 41.9775 85.7798C41.859 85.9067 41.6877 85.9702 41.4634 85.9702C41.2349 85.9702 41.0614 85.9067 40.9429 85.7798C40.8286 85.6486 40.7715 85.492 40.7715 85.3101ZM45.0942 88.4966V94H43.9136V87.1318H45.0308L45.0942 88.4966ZM44.853 90.3057L44.3071 90.2866C44.3114 89.8169 44.3727 89.3831 44.4912 88.9854C44.6097 88.5833 44.7853 88.2342 45.0181 87.938C45.2508 87.6418 45.5407 87.4132 45.8877 87.2524C46.2347 87.0874 46.6367 87.0049 47.0938 87.0049C47.4154 87.0049 47.7116 87.0514 47.9824 87.1445C48.2533 87.2334 48.4881 87.3752 48.687 87.5698C48.8859 87.7645 49.0404 88.0142 49.1504 88.3188C49.2604 88.6235 49.3154 88.9917 49.3154 89.4233V94H48.1411V89.4805C48.1411 89.1208 48.0798 88.833 47.957 88.6172C47.8385 88.4014 47.6693 88.2448 47.4492 88.1475C47.2292 88.0459 46.971 87.9951 46.6748 87.9951C46.3278 87.9951 46.0379 88.0565 45.8052 88.1792C45.5724 88.3019 45.3862 88.4712 45.2466 88.687C45.1069 88.9028 45.0054 89.1504 44.9419 89.4297C44.8826 89.7048 44.853 89.9967 44.853 90.3057ZM49.3027 89.6582L48.5156 89.8994C48.5199 89.5228 48.5812 89.161 48.6997 88.814C48.8224 88.467 48.998 88.158 49.2266 87.8872C49.4593 87.6164 49.745 87.4027 50.0835 87.2461C50.422 87.0853 50.8092 87.0049 51.2451 87.0049C51.6133 87.0049 51.9391 87.0535 52.2227 87.1509C52.5104 87.2482 52.7516 87.3984 52.9463 87.6016C53.1452 87.8005 53.2954 88.0565 53.397 88.3696C53.4985 88.6828 53.5493 89.0552 53.5493 89.4868V94H52.3687V89.4741C52.3687 89.089 52.3073 88.7907 52.1846 88.5791C52.0661 88.3633 51.8968 88.2131 51.6768 88.1284C51.4609 88.0396 51.2028 87.9951 50.9023 87.9951C50.6442 87.9951 50.4157 88.0396 50.2168 88.1284C50.0179 88.2173 49.8507 88.34 49.7153 88.4966C49.5799 88.6489 49.4762 88.8245 49.4043 89.0234C49.3366 89.2223 49.3027 89.4339 49.3027 89.6582ZM59.5288 92.4131V87.1318H60.7095V94H59.5859L59.5288 92.4131ZM59.751 90.9658L60.2397 90.9531C60.2397 91.4102 60.1911 91.8333 60.0938 92.2227C60.0007 92.6077 59.8483 92.9421 59.6367 93.2256C59.4251 93.5091 59.1479 93.7313 58.8052 93.8921C58.4624 94.0487 58.0456 94.127 57.5547 94.127C57.2204 94.127 56.9136 94.0783 56.6343 93.981C56.3592 93.8836 56.1222 93.7334 55.9233 93.5303C55.7244 93.3271 55.57 93.0627 55.46 92.7368C55.3542 92.411 55.3013 92.0195 55.3013 91.5625V87.1318H56.4756V91.5752C56.4756 91.8841 56.5094 92.1401 56.5771 92.3433C56.6491 92.5422 56.7443 92.7008 56.8628 92.8193C56.9855 92.9336 57.1209 93.014 57.269 93.0605C57.4214 93.1071 57.578 93.1304 57.7388 93.1304C58.2381 93.1304 58.6338 93.0352 58.9258 92.8447C59.2178 92.6501 59.4272 92.3898 59.5542 92.064C59.6854 91.7339 59.751 91.3678 59.751 90.9658ZM63.6675 88.4966V94H62.4868V87.1318H63.604L63.6675 88.4966ZM63.4263 90.3057L62.8804 90.2866C62.8846 89.8169 62.946 89.3831 63.0645 88.9854C63.1829 88.5833 63.3586 88.2342 63.5913 87.938C63.8241 87.6418 64.1139 87.4132 64.4609 87.2524C64.8079 87.0874 65.21 87.0049 65.667 87.0049C65.9886 87.0049 66.2848 87.0514 66.5557 87.1445C66.8265 87.2334 67.0614 87.3752 67.2603 87.5698C67.4591 87.7645 67.6136 88.0142 67.7236 88.3188C67.8337 88.6235 67.8887 88.9917 67.8887 89.4233V94H66.7144V89.4805C66.7144 89.1208 66.653 88.833 66.5303 88.6172C66.4118 88.4014 66.2425 88.2448 66.0225 88.1475C65.8024 88.0459 65.5443 87.9951 65.248 87.9951C64.901 87.9951 64.6112 88.0565 64.3784 88.1792C64.1457 88.3019 63.9595 88.4712 63.8198 88.687C63.6802 88.9028 63.5786 89.1504 63.5151 89.4297C63.4559 89.7048 63.4263 89.9967 63.4263 90.3057ZM67.876 89.6582L67.0889 89.8994C67.0931 89.5228 67.1545 89.161 67.2729 88.814C67.3957 88.467 67.5713 88.158 67.7998 87.8872C68.0326 87.6164 68.3182 87.4027 68.6567 87.2461C68.9953 87.0853 69.3825 87.0049 69.8184 87.0049C70.1865 87.0049 70.5124 87.0535 70.7959 87.1509C71.0837 87.2482 71.3249 87.3984 71.5195 87.6016C71.7184 87.8005 71.8687 88.0565 71.9702 88.3696C72.0718 88.6828 72.1226 89.0552 72.1226 89.4868V94H70.9419V89.4741C70.9419 89.089 70.8805 88.7907 70.7578 88.5791C70.6393 88.3633 70.4701 88.2131 70.25 88.1284C70.0342 88.0396 69.776 87.9951 69.4756 87.9951C69.2174 87.9951 68.9889 88.0396 68.79 88.1284C68.5911 88.2173 68.424 88.34 68.2886 88.4966C68.1532 88.6489 68.0495 88.8245 67.9775 89.0234C67.9098 89.2223 67.876 89.4339 67.876 89.6582ZM78.6924 94H77.5181V86.5352C77.5181 86.0146 77.6196 85.5745 77.8228 85.2148C78.0259 84.8551 78.3158 84.5822 78.6924 84.396C79.069 84.2098 79.5155 84.1167 80.0317 84.1167C80.3364 84.1167 80.6348 84.1548 80.9268 84.231C81.2188 84.3029 81.5192 84.3939 81.8281 84.5039L81.6313 85.4941C81.4367 85.418 81.2103 85.346 80.9521 85.2783C80.6982 85.2064 80.4189 85.1704 80.1143 85.1704C79.6107 85.1704 79.2467 85.2847 79.0225 85.5132C78.8024 85.7375 78.6924 86.0781 78.6924 86.5352V94ZM80.0952 87.1318V88.0332H76.4326V87.1318H80.0952ZM82.4058 87.1318V94H81.2314V87.1318H82.4058ZM85.6113 84.25V94H84.4307V84.25H85.6113ZM90.3467 94.127C89.8685 94.127 89.4347 94.0465 89.0454 93.8857C88.6603 93.7207 88.3281 93.4901 88.0488 93.1938C87.7738 92.8976 87.5622 92.5464 87.4141 92.1401C87.266 91.7339 87.1919 91.2896 87.1919 90.8071V90.5405C87.1919 89.9819 87.2744 89.4847 87.4395 89.0488C87.6045 88.6087 87.8288 88.2363 88.1123 87.9316C88.3958 87.627 88.7174 87.3963 89.0771 87.2397C89.4368 87.0832 89.8092 87.0049 90.1943 87.0049C90.6852 87.0049 91.1084 87.0895 91.4639 87.2588C91.8236 87.4281 92.1177 87.665 92.3462 87.9697C92.5747 88.2702 92.744 88.6257 92.854 89.0361C92.964 89.4424 93.019 89.8867 93.019 90.3691V90.896H87.8901V89.9375H91.8447V89.8486C91.8278 89.5439 91.7643 89.2477 91.6543 88.96C91.5485 88.6722 91.3792 88.4352 91.1465 88.249C90.9137 88.0628 90.5964 87.9697 90.1943 87.9697C89.9277 87.9697 89.6823 88.0269 89.458 88.1411C89.2337 88.2511 89.0412 88.4162 88.8804 88.6362C88.7196 88.8563 88.5947 89.125 88.5059 89.4424C88.417 89.7598 88.3726 90.1258 88.3726 90.5405V90.8071C88.3726 91.133 88.417 91.4398 88.5059 91.7275C88.599 92.0111 88.7323 92.2607 88.9058 92.4766C89.0835 92.6924 89.2972 92.8617 89.5469 92.9844C89.8008 93.1071 90.0885 93.1685 90.4102 93.1685C90.8249 93.1685 91.1761 93.0838 91.4639 92.9146C91.7516 92.7453 92.0034 92.5189 92.2192 92.2354L92.9302 92.8003C92.7821 93.0246 92.5938 93.2383 92.3652 93.4414C92.1367 93.6445 91.8553 93.8096 91.521 93.9365C91.1909 94.0635 90.7995 94.127 90.3467 94.127ZM101.614 92.1782C101.614 92.009 101.576 91.8524 101.5 91.7085C101.428 91.5604 101.277 91.4271 101.049 91.3086C100.825 91.1859 100.486 91.0801 100.033 90.9912C99.6523 90.9108 99.3075 90.8156 98.9985 90.7056C98.6938 90.5955 98.4336 90.4622 98.2178 90.3057C98.0062 90.1491 97.8433 89.965 97.729 89.7534C97.6147 89.5418 97.5576 89.2943 97.5576 89.0107C97.5576 88.7399 97.6169 88.4839 97.7354 88.2427C97.8581 88.0015 98.0295 87.7878 98.2495 87.6016C98.4738 87.4154 98.7425 87.2694 99.0557 87.1636C99.3688 87.0578 99.7179 87.0049 100.103 87.0049C100.653 87.0049 101.123 87.1022 101.512 87.2969C101.902 87.4915 102.2 87.7518 102.407 88.0776C102.615 88.3993 102.718 88.7568 102.718 89.1504H101.544C101.544 88.96 101.487 88.7759 101.373 88.5981C101.263 88.4162 101.1 88.266 100.884 88.1475C100.672 88.029 100.412 87.9697 100.103 87.9697C99.7772 87.9697 99.5127 88.0205 99.3096 88.1221C99.1107 88.2194 98.9647 88.3442 98.8716 88.4966C98.7827 88.6489 98.7383 88.8097 98.7383 88.979C98.7383 89.106 98.7594 89.2202 98.8018 89.3218C98.8483 89.4191 98.9287 89.5101 99.043 89.5947C99.1572 89.6751 99.318 89.7513 99.5254 89.8232C99.7327 89.8952 99.9972 89.9671 100.319 90.0391C100.882 90.166 101.345 90.3184 101.709 90.4961C102.073 90.6738 102.344 90.8918 102.521 91.1499C102.699 91.408 102.788 91.7212 102.788 92.0894C102.788 92.3898 102.725 92.6649 102.598 92.9146C102.475 93.1642 102.295 93.38 102.058 93.562C101.825 93.7397 101.546 93.8794 101.22 93.981C100.899 94.0783 100.537 94.127 100.135 94.127C99.5296 94.127 99.0176 94.019 98.5986 93.8032C98.1797 93.5874 97.8623 93.3081 97.6465 92.9653C97.4307 92.6226 97.3228 92.2607 97.3228 91.8799H98.5034C98.5203 92.2015 98.6134 92.4575 98.7827 92.6479C98.952 92.8341 99.1593 92.9674 99.4048 93.0479C99.6502 93.124 99.8936 93.1621 100.135 93.1621C100.456 93.1621 100.725 93.1198 100.941 93.0352C101.161 92.9505 101.328 92.8341 101.442 92.686C101.557 92.5379 101.614 92.3687 101.614 92.1782ZM105.606 87.1318V94H104.426V87.1318H105.606ZM104.337 85.3101C104.337 85.1196 104.394 84.9588 104.508 84.8276C104.627 84.6965 104.8 84.6309 105.029 84.6309C105.253 84.6309 105.424 84.6965 105.543 84.8276C105.666 84.9588 105.727 85.1196 105.727 85.3101C105.727 85.492 105.666 85.6486 105.543 85.7798C105.424 85.9067 105.253 85.9702 105.029 85.9702C104.8 85.9702 104.627 85.9067 104.508 85.7798C104.394 85.6486 104.337 85.492 104.337 85.3101ZM112.608 93.0352V94H107.612V93.0352H112.608ZM112.424 87.9634L107.879 94H107.162V93.1367L111.675 87.1318H112.424V87.9634ZM111.903 87.1318V88.103H107.212V87.1318H111.903ZM116.689 94.127C116.211 94.127 115.778 94.0465 115.388 93.8857C115.003 93.7207 114.671 93.4901 114.392 93.1938C114.117 92.8976 113.905 92.5464 113.757 92.1401C113.609 91.7339 113.535 91.2896 113.535 90.8071V90.5405C113.535 89.9819 113.617 89.4847 113.782 89.0488C113.947 88.6087 114.172 88.2363 114.455 87.9316C114.739 87.627 115.06 87.3963 115.42 87.2397C115.78 87.0832 116.152 87.0049 116.537 87.0049C117.028 87.0049 117.451 87.0895 117.807 87.2588C118.166 87.4281 118.46 87.665 118.689 87.9697C118.917 88.2702 119.087 88.6257 119.197 89.0361C119.307 89.4424 119.362 89.8867 119.362 90.3691V90.896H114.233V89.9375H118.188V89.8486C118.171 89.5439 118.107 89.2477 117.997 88.96C117.891 88.6722 117.722 88.4352 117.489 88.249C117.257 88.0628 116.939 87.9697 116.537 87.9697C116.271 87.9697 116.025 88.0269 115.801 88.1411C115.576 88.2511 115.384 88.4162 115.223 88.6362C115.062 88.8563 114.938 89.125 114.849 89.4424C114.76 89.7598 114.715 90.1258 114.715 90.5405V90.8071C114.715 91.133 114.76 91.4398 114.849 91.7275C114.942 92.0111 115.075 92.2607 115.249 92.4766C115.426 92.6924 115.64 92.8617 115.89 92.9844C116.144 93.1071 116.431 93.1685 116.753 93.1685C117.168 93.1685 117.519 93.0838 117.807 92.9146C118.094 92.7453 118.346 92.5189 118.562 92.2354L119.273 92.8003C119.125 93.0246 118.937 93.2383 118.708 93.4414C118.479 93.6445 118.198 93.8096 117.864 93.9365C117.534 94.0635 117.142 94.127 116.689 94.127ZM120.682 93.3779C120.682 93.179 120.743 93.0119 120.866 92.8765C120.993 92.7368 121.175 92.667 121.412 92.667C121.649 92.667 121.829 92.7368 121.952 92.8765C122.079 93.0119 122.142 93.179 122.142 93.3779C122.142 93.5726 122.079 93.7376 121.952 93.873C121.829 94.0085 121.649 94.0762 121.412 94.0762C121.175 94.0762 120.993 94.0085 120.866 93.873C120.743 93.7376 120.682 93.5726 120.682 93.3779ZM120.688 87.7729C120.688 87.5741 120.75 87.4069 120.873 87.2715C121 87.1318 121.181 87.062 121.418 87.062C121.655 87.062 121.835 87.1318 121.958 87.2715C122.085 87.4069 122.148 87.5741 122.148 87.7729C122.148 87.9676 122.085 88.1326 121.958 88.2681C121.835 88.4035 121.655 88.4712 121.418 88.4712C121.181 88.4712 121 88.4035 120.873 88.2681C120.75 88.1326 120.688 87.9676 120.688 87.7729ZM130.838 84.707V94H129.664V86.1733L127.296 87.0366V85.9766L130.654 84.707H130.838ZM140.093 88.6426V90.0518C140.093 90.8092 140.026 91.4482 139.89 91.9688C139.755 92.4893 139.56 92.9082 139.306 93.2256C139.052 93.543 138.745 93.7736 138.386 93.9175C138.03 94.0571 137.628 94.127 137.18 94.127C136.824 94.127 136.496 94.0825 136.196 93.9937C135.895 93.9048 135.625 93.763 135.383 93.5684C135.146 93.3695 134.943 93.1113 134.774 92.7939C134.605 92.4766 134.476 92.0915 134.387 91.6387C134.298 91.1859 134.253 90.6569 134.253 90.0518V88.6426C134.253 87.8851 134.321 87.2503 134.457 86.7383C134.596 86.2262 134.793 85.8158 135.047 85.5068C135.301 85.1937 135.605 84.9694 135.961 84.834C136.321 84.6986 136.723 84.6309 137.167 84.6309C137.527 84.6309 137.857 84.6753 138.157 84.7642C138.462 84.8488 138.733 84.9863 138.97 85.1768C139.207 85.363 139.408 85.6126 139.573 85.9258C139.742 86.2347 139.871 86.6134 139.96 87.062C140.049 87.5106 140.093 88.0374 140.093 88.6426ZM138.913 90.2422V88.4458C138.913 88.0311 138.887 87.6672 138.836 87.354C138.79 87.0366 138.72 86.7658 138.627 86.5415C138.534 86.3172 138.415 86.1353 138.271 85.9956C138.132 85.856 137.969 85.7544 137.783 85.6909C137.601 85.6232 137.396 85.5894 137.167 85.5894C136.888 85.5894 136.64 85.6423 136.424 85.748C136.208 85.8496 136.027 86.0125 135.878 86.2368C135.735 86.4611 135.625 86.7552 135.548 87.1191C135.472 87.4831 135.434 87.9253 135.434 88.4458V90.2422C135.434 90.6569 135.457 91.0229 135.504 91.3403C135.555 91.6577 135.629 91.9328 135.726 92.1655C135.823 92.394 135.942 92.5824 136.082 92.7305C136.221 92.8786 136.382 92.9886 136.564 93.0605C136.75 93.1283 136.955 93.1621 137.18 93.1621C137.467 93.1621 137.719 93.1071 137.935 92.9971C138.151 92.887 138.331 92.7157 138.475 92.4829C138.623 92.2459 138.733 91.9434 138.805 91.5752C138.877 91.2028 138.913 90.7585 138.913 90.2422ZM145.521 84.7578H146.708L149.735 92.2925L152.757 84.7578H153.95L150.192 94H149.266L145.521 84.7578ZM145.133 84.7578H146.181L146.352 90.3945V94H145.133V84.7578ZM153.284 84.7578H154.331V94H153.112V90.3945L153.284 84.7578ZM159.777 89.6772H157.435L157.422 88.6934H159.549C159.9 88.6934 160.207 88.6341 160.469 88.5156C160.732 88.3971 160.935 88.2279 161.079 88.0078C161.227 87.7835 161.301 87.5169 161.301 87.208C161.301 86.8695 161.235 86.5944 161.104 86.3828C160.977 86.167 160.78 86.0104 160.514 85.9131C160.251 85.8115 159.917 85.7607 159.511 85.7607H157.708V94H156.483V84.7578H159.511C159.985 84.7578 160.408 84.8065 160.78 84.9038C161.153 84.9969 161.468 85.145 161.726 85.3481C161.988 85.547 162.187 85.8009 162.323 86.1099C162.458 86.4188 162.526 86.7891 162.526 87.2207C162.526 87.6016 162.429 87.9465 162.234 88.2554C162.039 88.5601 161.768 88.8097 161.421 89.0044C161.079 89.1991 160.677 89.3239 160.215 89.3789L159.777 89.6772ZM159.72 94H156.953L157.645 93.0034H159.72C160.11 93.0034 160.44 92.9357 160.71 92.8003C160.986 92.6649 161.195 92.4744 161.339 92.229C161.483 91.9793 161.555 91.6852 161.555 91.3467C161.555 91.0039 161.493 90.7077 161.371 90.458C161.248 90.2083 161.055 90.0158 160.793 89.8804C160.531 89.745 160.192 89.6772 159.777 89.6772H158.032L158.044 88.6934H160.431L160.691 89.0488C161.136 89.0869 161.512 89.2139 161.821 89.4297C162.13 89.6413 162.365 89.9121 162.526 90.2422C162.691 90.5723 162.773 90.9362 162.773 91.334C162.773 91.9095 162.646 92.3962 162.393 92.7939C162.143 93.1875 161.79 93.488 161.333 93.6953C160.875 93.8984 160.338 94 159.72 94Z",fill:"#64748B"})),{ToolBarFields:ba,GeneralFields:Ma,AdvancedFields:La,FieldWrapper:ga,FieldSettingsWrapper:Za,ValidationBlockMessage:ya,ValidationToggleGroup:Ea,AdvancedInspectorControl:wa,AttributeHelp:va}=JetFBComponents,{useIsAdvancedValidation:_a,useUniqueNameOnDuplicate:ka}=JetFBHooks,{__:ja}=wp.i18n,{useBlockProps:xa,InspectorControls:Fa}=wp.blockEditor,{SelectControl:Ba,ToggleControl:Aa,FormTokenField:Pa,TextControl:Sa,__experimentalNumberControl:Na,__experimentalInputControl:Ia,PanelBody:Ta}=wp.components;let{NumberControl:Oa,InputControl:Ja}=wp.components;void 0===Oa&&(Oa=Na),void 0===Ja&&(Ja=Ia);const Ra=window.jetFormMediaFieldData,qa=JSON.parse('{"apiVersion":3,"name":"jet-forms/media-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","media","image","file"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Media Field","icon":"\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{"messages":{"max_size":"Maximum file size: %max_size%"}}},"allowed_user_cap":{"type":"string","default":""},"insert_attachment":{"type":"boolean","default":false},"value_format":{"type":"string","default":""},"delete_uploaded_attachment":{"type":"boolean","default":false},"max_files":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max_size":{"type":["number","string"],"default":"","jfb":{"rich":true}},"allowed_mimes":{"type":"array","default":[]},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Da}=wp.i18n,{createBlock:za}=wp.blocks,{name:Ua,icon:Ga=""}=qa,Wa={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ga}}),description:Da("Gives users the opportunity to upload media files to your website, e.g., users photos or images of the product for sale.","jet-form-builder"),edit:function(e){var C;const t=xa(),l=_a();ka();const{attributes:r,setAttributes:n,isSelected:a,editProps:{uniqKey:i,attrHelp:o}}=e,s=!r.allowed_user_cap,c=["id","ids","both"],d=r.insert_attachment&&c.includes(r.value_format);return r.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},ha):[(0,h.createElement)(ba,{key:i("ToolBarFields"),...e}),a&&(0,h.createElement)(Fa,{key:i("InspectorControls")},(0,h.createElement)(Ma,null),(0,h.createElement)(Za,{...e},(0,h.createElement)("div",{className:["jet-form-builder__user-access-control",s?"jet-form-builder__user-access-control--error":""].filter(Boolean).join(" ")},(0,h.createElement)(Ba,{key:"allowed_user_cap",label:ja("User access","jet-form-builder"),labelPosition:"top",value:r.allowed_user_cap,onChange:e=>{n({allowed_user_cap:e})},options:Va,required:!0,help:s?ja("Please select who is allowed to upload files.","jet-form-builder"):void 0})),"any_user"!==r.allowed_user_cap&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Aa,{key:"insert_attachment",label:ja("Insert attachment","jet-form-builder"),checked:r.insert_attachment,help:o("insert_attachment"),onChange:e=>{const C=Boolean(e);n({insert_attachment:C,delete_uploaded_attachment:!!C&&r.delete_uploaded_attachment})}}),r.insert_attachment&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Ba,{key:"value_format",label:ja("Field value","jet-form-builder"),labelPosition:"top",value:r.value_format,onChange:e=>{n({value_format:e,delete_uploaded_attachment:!!c.includes(e)&&r.delete_uploaded_attachment})},options:Ha,help:ja("If you're using this field for an ACF Gallery, always select **Array of attachment IDs**. For JetEngine, match the format used in the corresponding JetEngine meta field.","jet-form-builder")}),d&&(0,h.createElement)(Aa,{key:"delete_uploaded_attachment",label:ja("Delete removed attachments","jet-form-builder"),checked:r.delete_uploaded_attachment,help:ja("Permanently deletes old attachments from the Media Library after the form is submitted. Enable only if these files are not used anywhere else.","jet-form-builder"),onChange:e=>{n({delete_uploaded_attachment:Boolean(e)})}}))),(0,h.createElement)(wa,{value:r.max_files,label:ja("Maximum allowed files to upload","jet-form-builder"),onChangePreset:e=>n({max_files:e})},({instanceId:e})=>(0,h.createElement)(Sa,{id:e,className:"jet-fb m-unset",value:r.max_files,onChange:e=>n({max_files:e})})),(0,h.createElement)(va,{name:"max_files"},ja("If not set allow to upload 1 file.","jet-form-builder")),(0,h.createElement)(wa,{value:r.max_size,label:ja("Maximum size in Mb","jet-form-builder"),onChangePreset:e=>n({max_size:e})},({instanceId:e})=>(0,h.createElement)(Sa,{id:e,className:"jet-fb m-unset",value:r.max_size,onChange:e=>n({max_size:e})})),(0,h.createElement)(va,{name:"max_size"}),(0,h.createElement)(Sa,{label:ja("Maximum file size message","jet-form-builder"),value:null!==(C=r?.validation?.messages?.max_size)&&void 0!==C?C:"Maximum file size: %max_size%",onChange:e=>{n({validation:{messages:{max_size:e}}})},help:ja("Use the %max_size% macro to display the maximum allowed file size","jet-form-builder")}),(0,h.createElement)(Pa,{key:"allowed_mimes",value:r.allowed_mimes,label:ja("Allow MIME types","jet-form-builder"),suggestions:Ra.mime_types,onChange:e=>n({allowed_mimes:e}),tokenizeOnSpace:!0})),(0,h.createElement)(Ta,{title:ja("Validation","jet-form-builder")},(0,h.createElement)(Ea,null),l&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ya,{name:"max_files"}),(0,h.createElement)(ya,{name:"file_max_size"}),Boolean(r.allowed_mimes.length)&&(0,h.createElement)(ya,{name:"file_ext"}))),(0,h.createElement)(La,{key:i("AdvancedFields"),...e})),(0,h.createElement)("div",{...t,key:i("viewBlock")},(0,h.createElement)(ga,{key:i("FieldWrapper"),...e},(0,h.createElement)(Ja,{key:i("place_holder_block_new"),type:"file",className:"jet-form-builder__field-preview",disabled:!0})))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>za("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>za(Ua,{...e}),priority:0}]}},Ka=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M23.8115 49.5469V59.5H22.4854L17.4746 51.8232V59.5H16.1553V49.5469H17.4746L22.5059 57.2441V49.5469H23.8115ZM30.4834 57.791V52.1035H31.7549V59.5H30.5449L30.4834 57.791ZM30.7227 56.2324L31.249 56.2188C31.249 56.7109 31.1966 57.1667 31.0918 57.5859C30.9915 58.0007 30.8275 58.3607 30.5996 58.666C30.3717 58.9714 30.0732 59.2106 29.7041 59.3838C29.335 59.5524 28.8861 59.6367 28.3574 59.6367C27.9974 59.6367 27.667 59.5843 27.3662 59.4795C27.07 59.3747 26.8148 59.2129 26.6006 58.9941C26.3864 58.7754 26.2201 58.4906 26.1016 58.1396C25.9876 57.7887 25.9307 57.3672 25.9307 56.875V52.1035H27.1953V56.8887C27.1953 57.2214 27.2318 57.4971 27.3047 57.7158C27.3822 57.93 27.4847 58.1009 27.6123 58.2285C27.7445 58.3516 27.8903 58.4382 28.0498 58.4883C28.2139 58.5384 28.3825 58.5635 28.5557 58.5635C29.0934 58.5635 29.5195 58.4609 29.834 58.2559C30.1484 58.0462 30.374 57.766 30.5107 57.415C30.652 57.0596 30.7227 56.6654 30.7227 56.2324ZM34.9404 53.5732V59.5H33.6689V52.1035H34.8721L34.9404 53.5732ZM34.6807 55.5215L34.0928 55.501C34.0973 54.9951 34.1634 54.528 34.291 54.0996C34.4186 53.6667 34.6077 53.2907 34.8584 52.9717C35.109 52.6527 35.4212 52.4066 35.7949 52.2334C36.1686 52.0557 36.6016 51.9668 37.0938 51.9668C37.4401 51.9668 37.7591 52.0169 38.0508 52.1172C38.3424 52.2129 38.5954 52.3656 38.8096 52.5752C39.0238 52.7848 39.1901 53.0537 39.3086 53.3818C39.4271 53.71 39.4863 54.1064 39.4863 54.5713V59.5H38.2217V54.6328C38.2217 54.2454 38.1556 53.9355 38.0234 53.7031C37.8958 53.4707 37.7135 53.3021 37.4766 53.1973C37.2396 53.0879 36.9616 53.0332 36.6426 53.0332C36.2689 53.0332 35.9567 53.0993 35.7061 53.2314C35.4554 53.3636 35.2549 53.5459 35.1045 53.7783C34.9541 54.0107 34.8447 54.2773 34.7764 54.5781C34.7126 54.8743 34.6807 55.1888 34.6807 55.5215ZM39.4727 54.8242L38.625 55.084C38.6296 54.6784 38.6956 54.2887 38.8232 53.915C38.9554 53.5413 39.1445 53.2087 39.3906 52.917C39.6413 52.6253 39.9489 52.3952 40.3135 52.2266C40.6781 52.0534 41.0951 51.9668 41.5645 51.9668C41.9609 51.9668 42.3118 52.0192 42.6172 52.124C42.9271 52.2288 43.1868 52.3906 43.3965 52.6094C43.6107 52.8236 43.7725 53.0993 43.8818 53.4365C43.9912 53.7738 44.0459 54.1748 44.0459 54.6396V59.5H42.7744V54.626C42.7744 54.2113 42.7083 53.89 42.5762 53.6621C42.4486 53.4297 42.2663 53.2679 42.0293 53.1768C41.7969 53.0811 41.5189 53.0332 41.1953 53.0332C40.9173 53.0332 40.6712 53.0811 40.457 53.1768C40.2428 53.2725 40.0628 53.4046 39.917 53.5732C39.7712 53.7373 39.6595 53.9264 39.582 54.1406C39.5091 54.3548 39.4727 54.5827 39.4727 54.8242ZM45.9531 49H47.2246V58.0645L47.1152 59.5H45.9531V49ZM52.2217 55.7402V55.8838C52.2217 56.4215 52.1579 56.9206 52.0303 57.3809C51.9027 57.8366 51.7158 58.2331 51.4697 58.5703C51.2236 58.9076 50.9229 59.1696 50.5674 59.3564C50.2119 59.5433 49.804 59.6367 49.3438 59.6367C48.8743 59.6367 48.4619 59.557 48.1064 59.3975C47.7555 59.2334 47.4593 58.9987 47.2178 58.6934C46.9762 58.388 46.7826 58.0189 46.6367 57.5859C46.4954 57.153 46.3975 56.6654 46.3428 56.123V55.4941C46.3975 54.9473 46.4954 54.4574 46.6367 54.0244C46.7826 53.5915 46.9762 53.2223 47.2178 52.917C47.4593 52.6071 47.7555 52.3724 48.1064 52.2129C48.4574 52.0488 48.8652 51.9668 49.3301 51.9668C49.7949 51.9668 50.2074 52.0579 50.5674 52.2402C50.9274 52.418 51.2282 52.6732 51.4697 53.0059C51.7158 53.3385 51.9027 53.7373 52.0303 54.2021C52.1579 54.6624 52.2217 55.1751 52.2217 55.7402ZM50.9502 55.8838V55.7402C50.9502 55.3711 50.916 55.0247 50.8477 54.7012C50.7793 54.373 50.6699 54.0859 50.5195 53.8398C50.3691 53.5892 50.1709 53.3932 49.9248 53.252C49.6787 53.1061 49.3757 53.0332 49.0156 53.0332C48.6966 53.0332 48.4186 53.0879 48.1816 53.1973C47.9492 53.3066 47.751 53.4548 47.5869 53.6416C47.4229 53.8239 47.2884 54.0335 47.1836 54.2705C47.0833 54.5029 47.0081 54.7445 46.958 54.9951V56.6426C47.0309 56.9616 47.1494 57.2692 47.3135 57.5654C47.4821 57.8571 47.7054 58.0964 47.9834 58.2832C48.266 58.4701 48.6146 58.5635 49.0293 58.5635C49.3711 58.5635 49.6628 58.4951 49.9043 58.3584C50.1504 58.2171 50.3486 58.0234 50.499 57.7773C50.654 57.5312 50.7679 57.2464 50.8408 56.9229C50.9137 56.5993 50.9502 56.2529 50.9502 55.8838ZM56.8906 59.6367C56.3757 59.6367 55.9085 59.5501 55.4893 59.377C55.0745 59.1992 54.7168 58.9508 54.416 58.6318C54.1198 58.3128 53.8919 57.9346 53.7324 57.4971C53.5729 57.0596 53.4932 56.5811 53.4932 56.0615V55.7744C53.4932 55.1729 53.582 54.6374 53.7598 54.168C53.9375 53.694 54.179 53.293 54.4844 52.9648C54.7897 52.6367 55.1361 52.3883 55.5234 52.2197C55.9108 52.0511 56.3118 51.9668 56.7266 51.9668C57.2552 51.9668 57.7109 52.0579 58.0938 52.2402C58.4811 52.4225 58.7979 52.6777 59.0439 53.0059C59.29 53.3294 59.4723 53.7122 59.5908 54.1543C59.7093 54.5918 59.7686 55.0703 59.7686 55.5898V56.1572H54.2451V55.125H58.5039V55.0293C58.4857 54.7012 58.4173 54.3822 58.2988 54.0723C58.1849 53.7624 58.0026 53.5072 57.752 53.3066C57.5013 53.1061 57.1595 53.0059 56.7266 53.0059C56.4395 53.0059 56.1751 53.0674 55.9336 53.1904C55.6921 53.3089 55.4847 53.4867 55.3115 53.7236C55.1383 53.9606 55.0039 54.25 54.9082 54.5918C54.8125 54.9336 54.7646 55.3278 54.7646 55.7744V56.0615C54.7646 56.4124 54.8125 56.7428 54.9082 57.0527C55.0085 57.3581 55.152 57.627 55.3389 57.8594C55.5303 58.0918 55.7604 58.2741 56.0293 58.4062C56.3027 58.5384 56.6126 58.6045 56.959 58.6045C57.4056 58.6045 57.7839 58.5133 58.0938 58.3311C58.4036 58.1488 58.6748 57.9049 58.9072 57.5996L59.6729 58.208C59.5133 58.4495 59.3105 58.6797 59.0645 58.8984C58.8184 59.1172 58.5153 59.2949 58.1553 59.4316C57.7998 59.5684 57.3783 59.6367 56.8906 59.6367ZM62.5098 53.2656V59.5H61.2451V52.1035H62.4756L62.5098 53.2656ZM64.8203 52.0625L64.8135 53.2383C64.7087 53.2155 64.6084 53.2018 64.5127 53.1973C64.4215 53.1882 64.3167 53.1836 64.1982 53.1836C63.9066 53.1836 63.6491 53.2292 63.4258 53.3203C63.2025 53.4115 63.0133 53.5391 62.8584 53.7031C62.7035 53.8672 62.5804 54.0632 62.4893 54.291C62.4027 54.5143 62.3457 54.7604 62.3184 55.0293L61.9629 55.2344C61.9629 54.7878 62.0062 54.3685 62.0928 53.9766C62.1839 53.5846 62.3229 53.2383 62.5098 52.9375C62.6966 52.6322 62.9336 52.3952 63.2207 52.2266C63.5124 52.0534 63.8587 51.9668 64.2598 51.9668C64.3509 51.9668 64.4557 51.9782 64.5742 52.001C64.6927 52.0192 64.7747 52.0397 64.8203 52.0625ZM69.127 55.8838V55.7266C69.127 55.1934 69.2044 54.6989 69.3594 54.2432C69.5143 53.7829 69.7376 53.3841 70.0293 53.0469C70.321 52.7051 70.6742 52.4408 71.0889 52.2539C71.5036 52.0625 71.9684 51.9668 72.4834 51.9668C73.0029 51.9668 73.4701 52.0625 73.8848 52.2539C74.304 52.4408 74.6595 52.7051 74.9512 53.0469C75.2474 53.3841 75.473 53.7829 75.6279 54.2432C75.7829 54.6989 75.8604 55.1934 75.8604 55.7266V55.8838C75.8604 56.417 75.7829 56.9115 75.6279 57.3672C75.473 57.8229 75.2474 58.2217 74.9512 58.5635C74.6595 58.9007 74.3063 59.165 73.8916 59.3564C73.4814 59.5433 73.0166 59.6367 72.4971 59.6367C71.9775 59.6367 71.5104 59.5433 71.0957 59.3564C70.681 59.165 70.3255 58.9007 70.0293 58.5635C69.7376 58.2217 69.5143 57.8229 69.3594 57.3672C69.2044 56.9115 69.127 56.417 69.127 55.8838ZM70.3916 55.7266V55.8838C70.3916 56.2529 70.4349 56.6016 70.5215 56.9297C70.6081 57.2533 70.738 57.5404 70.9111 57.791C71.0889 58.0417 71.3099 58.2399 71.5742 58.3857C71.8385 58.527 72.1462 58.5977 72.4971 58.5977C72.8434 58.5977 73.1465 58.527 73.4062 58.3857C73.6706 58.2399 73.8893 58.0417 74.0625 57.791C74.2357 57.5404 74.3656 57.2533 74.4521 56.9297C74.5433 56.6016 74.5889 56.2529 74.5889 55.8838V55.7266C74.5889 55.362 74.5433 55.0179 74.4521 54.6943C74.3656 54.3662 74.2334 54.0768 74.0557 53.8262C73.8825 53.571 73.6637 53.3704 73.3994 53.2246C73.1396 53.0788 72.8343 53.0059 72.4834 53.0059C72.137 53.0059 71.8317 53.0788 71.5674 53.2246C71.3076 53.3704 71.0889 53.571 70.9111 53.8262C70.738 54.0768 70.6081 54.3662 70.5215 54.6943C70.4349 55.0179 70.3916 55.362 70.3916 55.7266ZM79.333 59.5H78.0684V51.3242C78.0684 50.791 78.1641 50.3421 78.3555 49.9775C78.5514 49.6084 78.8317 49.3304 79.1963 49.1436C79.5609 48.9521 79.9938 48.8564 80.4951 48.8564C80.641 48.8564 80.7868 48.8656 80.9326 48.8838C81.083 48.902 81.2288 48.9294 81.3701 48.9658L81.3018 49.998C81.2061 49.9753 81.0967 49.9593 80.9736 49.9502C80.8551 49.9411 80.7367 49.9365 80.6182 49.9365C80.3493 49.9365 80.1169 49.9912 79.9209 50.1006C79.7295 50.2054 79.5837 50.3604 79.4834 50.5654C79.3831 50.7705 79.333 51.0234 79.333 51.3242V59.5ZM80.9053 52.1035V53.0742H76.8994V52.1035H80.9053ZM90.5781 52.1035H91.7266V59.3428C91.7266 59.9945 91.5944 60.5505 91.3301 61.0107C91.0658 61.471 90.6966 61.8197 90.2227 62.0566C89.7533 62.2982 89.2109 62.4189 88.5957 62.4189C88.3405 62.4189 88.0397 62.3779 87.6934 62.2959C87.3516 62.2184 87.0143 62.084 86.6816 61.8926C86.3535 61.7057 86.0778 61.4528 85.8545 61.1338L86.5176 60.3818C86.8275 60.7555 87.151 61.0153 87.4883 61.1611C87.8301 61.307 88.1673 61.3799 88.5 61.3799C88.901 61.3799 89.2474 61.3047 89.5391 61.1543C89.8307 61.0039 90.0563 60.7806 90.2158 60.4844C90.3799 60.1927 90.4619 59.8327 90.4619 59.4043V53.7305L90.5781 52.1035ZM85.4854 55.8838V55.7402C85.4854 55.1751 85.5514 54.6624 85.6836 54.2021C85.8203 53.7373 86.014 53.3385 86.2646 53.0059C86.5199 52.6732 86.8275 52.418 87.1875 52.2402C87.5475 52.0579 87.9531 51.9668 88.4043 51.9668C88.8691 51.9668 89.2747 52.0488 89.6211 52.2129C89.972 52.3724 90.2682 52.6071 90.5098 52.917C90.7559 53.2223 90.9495 53.5915 91.0908 54.0244C91.2321 54.4574 91.3301 54.9473 91.3848 55.4941V56.123C91.3346 56.6654 91.2367 57.153 91.0908 57.5859C90.9495 58.0189 90.7559 58.388 90.5098 58.6934C90.2682 58.9987 89.972 59.2334 89.6211 59.3975C89.2702 59.557 88.86 59.6367 88.3906 59.6367C87.9486 59.6367 87.5475 59.5433 87.1875 59.3564C86.832 59.1696 86.5267 58.9076 86.2715 58.5703C86.0163 58.2331 85.8203 57.8366 85.6836 57.3809C85.5514 56.9206 85.4854 56.4215 85.4854 55.8838ZM86.75 55.7402V55.8838C86.75 56.2529 86.7865 56.5993 86.8594 56.9229C86.9368 57.2464 87.0531 57.5312 87.208 57.7773C87.3675 58.0234 87.5703 58.2171 87.8164 58.3584C88.0625 58.4951 88.3564 58.5635 88.6982 58.5635C89.1175 58.5635 89.4639 58.4746 89.7373 58.2969C90.0107 58.1191 90.2272 57.8844 90.3867 57.5928C90.5508 57.3011 90.6784 56.9844 90.7695 56.6426V54.9951C90.7194 54.7445 90.6419 54.5029 90.5371 54.2705C90.4368 54.0335 90.3047 53.8239 90.1406 53.6416C89.9811 53.4548 89.7829 53.3066 89.5459 53.1973C89.3089 53.0879 89.0309 53.0332 88.7119 53.0332C88.3656 53.0332 88.0671 53.1061 87.8164 53.252C87.5703 53.3932 87.3675 53.5892 87.208 53.8398C87.0531 54.0859 86.9368 54.373 86.8594 54.7012C86.7865 55.0247 86.75 55.3711 86.75 55.7402ZM98.1729 57.791V52.1035H99.4443V59.5H98.2344L98.1729 57.791ZM98.4121 56.2324L98.9385 56.2188C98.9385 56.7109 98.8861 57.1667 98.7812 57.5859C98.681 58.0007 98.5169 58.3607 98.2891 58.666C98.0612 58.9714 97.7627 59.2106 97.3936 59.3838C97.0244 59.5524 96.5755 59.6367 96.0469 59.6367C95.6868 59.6367 95.3564 59.5843 95.0557 59.4795C94.7594 59.3747 94.5042 59.2129 94.29 58.9941C94.0758 58.7754 93.9095 58.4906 93.791 58.1396C93.6771 57.7887 93.6201 57.3672 93.6201 56.875V52.1035H94.8848V56.8887C94.8848 57.2214 94.9212 57.4971 94.9941 57.7158C95.0716 57.93 95.1742 58.1009 95.3018 58.2285C95.4339 58.3516 95.5798 58.4382 95.7393 58.4883C95.9033 58.5384 96.0719 58.5635 96.2451 58.5635C96.7829 58.5635 97.209 58.4609 97.5234 58.2559C97.8379 58.0462 98.0635 57.766 98.2002 57.415C98.3415 57.0596 98.4121 56.6654 98.4121 56.2324ZM104.441 59.6367C103.926 59.6367 103.459 59.5501 103.04 59.377C102.625 59.1992 102.268 58.9508 101.967 58.6318C101.671 58.3128 101.443 57.9346 101.283 57.4971C101.124 57.0596 101.044 56.5811 101.044 56.0615V55.7744C101.044 55.1729 101.133 54.6374 101.311 54.168C101.488 53.694 101.73 53.293 102.035 52.9648C102.34 52.6367 102.687 52.3883 103.074 52.2197C103.462 52.0511 103.863 51.9668 104.277 51.9668C104.806 51.9668 105.262 52.0579 105.645 52.2402C106.032 52.4225 106.349 52.6777 106.595 53.0059C106.841 53.3294 107.023 53.7122 107.142 54.1543C107.26 54.5918 107.319 55.0703 107.319 55.5898V56.1572H101.796V55.125H106.055V55.0293C106.036 54.7012 105.968 54.3822 105.85 54.0723C105.736 53.7624 105.553 53.5072 105.303 53.3066C105.052 53.1061 104.71 53.0059 104.277 53.0059C103.99 53.0059 103.726 53.0674 103.484 53.1904C103.243 53.3089 103.035 53.4867 102.862 53.7236C102.689 53.9606 102.555 54.25 102.459 54.5918C102.363 54.9336 102.315 55.3278 102.315 55.7744V56.0615C102.315 56.4124 102.363 56.7428 102.459 57.0527C102.559 57.3581 102.703 57.627 102.89 57.8594C103.081 58.0918 103.311 58.2741 103.58 58.4062C103.854 58.5384 104.163 58.6045 104.51 58.6045C104.956 58.6045 105.335 58.5133 105.645 58.3311C105.954 58.1488 106.226 57.9049 106.458 57.5996L107.224 58.208C107.064 58.4495 106.861 58.6797 106.615 58.8984C106.369 59.1172 106.066 59.2949 105.706 59.4316C105.351 59.5684 104.929 59.6367 104.441 59.6367ZM113.103 57.5381C113.103 57.3558 113.062 57.1872 112.979 57.0322C112.902 56.8727 112.74 56.7292 112.494 56.6016C112.253 56.4694 111.888 56.3555 111.4 56.2598C110.99 56.1732 110.619 56.0706 110.286 55.9521C109.958 55.8337 109.678 55.6901 109.445 55.5215C109.217 55.3529 109.042 55.1546 108.919 54.9268C108.796 54.6989 108.734 54.4323 108.734 54.127C108.734 53.8353 108.798 53.5596 108.926 53.2998C109.058 53.04 109.243 52.8099 109.479 52.6094C109.721 52.4089 110.01 52.2516 110.348 52.1377C110.685 52.0238 111.061 51.9668 111.476 51.9668C112.068 51.9668 112.574 52.0716 112.993 52.2812C113.412 52.4909 113.734 52.7712 113.957 53.1221C114.18 53.4684 114.292 53.8535 114.292 54.2773H113.027C113.027 54.0723 112.966 53.874 112.843 53.6826C112.724 53.4867 112.549 53.3249 112.316 53.1973C112.089 53.0697 111.808 53.0059 111.476 53.0059C111.125 53.0059 110.84 53.0605 110.621 53.1699C110.407 53.2747 110.25 53.4092 110.149 53.5732C110.054 53.7373 110.006 53.9105 110.006 54.0928C110.006 54.2295 110.029 54.3525 110.074 54.4619C110.124 54.5667 110.211 54.6647 110.334 54.7559C110.457 54.8424 110.63 54.9245 110.854 55.002C111.077 55.0794 111.362 55.1569 111.708 55.2344C112.314 55.3711 112.813 55.5352 113.205 55.7266C113.597 55.918 113.889 56.1527 114.08 56.4307C114.271 56.7087 114.367 57.0459 114.367 57.4424C114.367 57.766 114.299 58.0622 114.162 58.3311C114.03 58.5999 113.836 58.8324 113.581 59.0283C113.33 59.2197 113.03 59.3701 112.679 59.4795C112.332 59.5843 111.943 59.6367 111.51 59.6367C110.858 59.6367 110.307 59.5205 109.855 59.2881C109.404 59.0557 109.062 58.7549 108.83 58.3857C108.598 58.0166 108.481 57.627 108.481 57.2168H109.753C109.771 57.5632 109.871 57.8389 110.054 58.0439C110.236 58.2445 110.459 58.388 110.724 58.4746C110.988 58.5566 111.25 58.5977 111.51 58.5977C111.856 58.5977 112.146 58.5521 112.378 58.4609C112.615 58.3698 112.795 58.2445 112.918 58.085C113.041 57.9255 113.103 57.7432 113.103 57.5381ZM119.125 52.1035V53.0742H115.126V52.1035H119.125ZM116.479 50.3057H117.744V57.668C117.744 57.9186 117.783 58.1077 117.86 58.2354C117.938 58.363 118.038 58.4473 118.161 58.4883C118.284 58.5293 118.416 58.5498 118.558 58.5498C118.662 58.5498 118.772 58.5407 118.886 58.5225C119.004 58.4997 119.093 58.4814 119.152 58.4678L119.159 59.5C119.059 59.5319 118.927 59.5615 118.763 59.5889C118.603 59.6208 118.41 59.6367 118.182 59.6367C117.872 59.6367 117.587 59.5752 117.327 59.4521C117.067 59.3291 116.86 59.124 116.705 58.8369C116.555 58.5452 116.479 58.1533 116.479 57.6611V50.3057ZM124.915 57.5381C124.915 57.3558 124.874 57.1872 124.792 57.0322C124.715 56.8727 124.553 56.7292 124.307 56.6016C124.065 56.4694 123.701 56.3555 123.213 56.2598C122.803 56.1732 122.431 56.0706 122.099 55.9521C121.771 55.8337 121.49 55.6901 121.258 55.5215C121.03 55.3529 120.854 55.1546 120.731 54.9268C120.608 54.6989 120.547 54.4323 120.547 54.127C120.547 53.8353 120.611 53.5596 120.738 53.2998C120.87 53.04 121.055 52.8099 121.292 52.6094C121.534 52.4089 121.823 52.2516 122.16 52.1377C122.497 52.0238 122.873 51.9668 123.288 51.9668C123.881 51.9668 124.386 52.0716 124.806 52.2812C125.225 52.4909 125.546 52.7712 125.77 53.1221C125.993 53.4684 126.104 53.8535 126.104 54.2773H124.84C124.84 54.0723 124.778 53.874 124.655 53.6826C124.537 53.4867 124.361 53.3249 124.129 53.1973C123.901 53.0697 123.621 53.0059 123.288 53.0059C122.937 53.0059 122.652 53.0605 122.434 53.1699C122.219 53.2747 122.062 53.4092 121.962 53.5732C121.866 53.7373 121.818 53.9105 121.818 54.0928C121.818 54.2295 121.841 54.3525 121.887 54.4619C121.937 54.5667 122.023 54.6647 122.146 54.7559C122.27 54.8424 122.443 54.9245 122.666 55.002C122.889 55.0794 123.174 55.1569 123.521 55.2344C124.127 55.3711 124.626 55.5352 125.018 55.7266C125.41 55.918 125.701 56.1527 125.893 56.4307C126.084 56.7087 126.18 57.0459 126.18 57.4424C126.18 57.766 126.111 58.0622 125.975 58.3311C125.842 58.5999 125.649 58.8324 125.394 59.0283C125.143 59.2197 124.842 59.3701 124.491 59.4795C124.145 59.5843 123.755 59.6367 123.322 59.6367C122.671 59.6367 122.119 59.5205 121.668 59.2881C121.217 59.0557 120.875 58.7549 120.643 58.3857C120.41 58.0166 120.294 57.627 120.294 57.2168H121.565C121.584 57.5632 121.684 57.8389 121.866 58.0439C122.049 58.2445 122.272 58.388 122.536 58.4746C122.8 58.5566 123.062 58.5977 123.322 58.5977C123.669 58.5977 123.958 58.5521 124.19 58.4609C124.427 58.3698 124.607 58.2445 124.73 58.085C124.854 57.9255 124.915 57.7432 124.915 57.5381Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"68.5",width:"265",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M27.4819 81.8013H28.3198C28.7303 81.8013 29.0688 81.7336 29.3354 81.5981C29.6063 81.4585 29.8073 81.2702 29.9385 81.0332C30.0739 80.792 30.1416 80.5212 30.1416 80.2207C30.1416 79.8652 30.0824 79.5669 29.9639 79.3257C29.8454 79.0845 29.6676 78.9025 29.4307 78.7798C29.1937 78.6571 28.8932 78.5957 28.5293 78.5957C28.1992 78.5957 27.9072 78.6613 27.6533 78.7925C27.4036 78.9194 27.2069 79.1014 27.063 79.3384C26.9233 79.5754 26.8535 79.8547 26.8535 80.1763H25.6792C25.6792 79.7065 25.7977 79.2791 26.0347 78.894C26.2716 78.509 26.6038 78.2021 27.0312 77.9736C27.4629 77.7451 27.9622 77.6309 28.5293 77.6309C29.0879 77.6309 29.5767 77.7303 29.9956 77.9292C30.4146 78.1239 30.7404 78.4159 30.9731 78.8052C31.2059 79.1903 31.3223 79.6706 31.3223 80.2461C31.3223 80.4788 31.2673 80.7285 31.1572 80.9951C31.0514 81.2575 30.8843 81.5029 30.6558 81.7314C30.4315 81.96 30.1395 82.1483 29.7798 82.2964C29.4201 82.4403 28.9884 82.5122 28.4849 82.5122H27.4819V81.8013ZM27.4819 82.7661V82.0615H28.4849C29.0731 82.0615 29.5597 82.1313 29.9448 82.271C30.3299 82.4106 30.6325 82.5968 30.8525 82.8296C31.0768 83.0623 31.2334 83.3184 31.3223 83.5977C31.4154 83.8727 31.4619 84.1478 31.4619 84.4229C31.4619 84.8545 31.3879 85.2375 31.2397 85.5718C31.0959 85.9061 30.8906 86.1896 30.624 86.4224C30.3617 86.6551 30.0527 86.8307 29.6973 86.9492C29.3418 87.0677 28.9546 87.127 28.5356 87.127C28.1336 87.127 27.7549 87.0698 27.3994 86.9556C27.0482 86.8413 26.7371 86.6763 26.4663 86.4604C26.1955 86.2404 25.9839 85.9717 25.8315 85.6543C25.6792 85.3327 25.603 84.9666 25.603 84.5562H26.7773C26.7773 84.8778 26.8472 85.1592 26.9868 85.4004C27.1307 85.6416 27.3338 85.8299 27.5962 85.9653C27.8628 86.0965 28.1759 86.1621 28.5356 86.1621C28.8953 86.1621 29.2043 86.1007 29.4624 85.978C29.7248 85.8511 29.9258 85.6606 30.0654 85.4067C30.2093 85.1528 30.2812 84.8333 30.2812 84.4482C30.2812 84.0632 30.2008 83.7479 30.04 83.5024C29.8792 83.2528 29.6507 83.0687 29.3545 82.9502C29.0625 82.8275 28.7176 82.7661 28.3198 82.7661H27.4819Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M261.761 85.7886L264.773 91.2693L267.784 85.7886H261.761Z",fill:"#CBD5E1"}),(0,h.createElement)("path",{d:"M267.784 79.2117L264.773 73.7309L261.761 79.2117L267.784 79.2117Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"16",y:"68.5",width:"265",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),{ToolBarFields:$a,BlockLabel:Ya,BlockDescription:Xa,BlockAdvancedValue:Qa,BlockName:ei,AdvancedFields:Ci,FieldWrapper:ti,FieldSettingsWrapper:li,ValidationToggleGroup:ri,ValidationBlockMessage:ni,AdvancedInspectorControl:ai,AttributeHelp:ii}=JetFBComponents,{useIsAdvancedValidation:oi,useUniqueNameOnDuplicate:si}=JetFBHooks,{__:ci}=wp.i18n,{InspectorControls:di,useBlockProps:mi}=wp.blockEditor,{PanelBody:ui,TextControl:pi,__experimentalInputControl:fi,__experimentalNumberControl:Vi}=wp.components;let{InputControl:Hi,NumberControl:hi}=wp.components;void 0===Hi&&(Hi=fi),void 0===hi&&(hi=Vi);const bi=JSON.parse('{"apiVersion":3,"name":"jet-forms/number-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","media","image","file"],"textdomain":"jet-form-builder","title":"Number Field","icon":"\\n\\n\\n\\n\\n","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max":{"type":["number","string"],"default":"","jfb":{"rich":true}},"step":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Mi}=wp.i18n,{createBlock:Li}=wp.blocks,{name:gi,icon:Zi=""}=bi,yi={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Zi}}),description:Mi("Make a bar in the form that will be filled with numbers or set a range with the Min/Max Value options for the user to choose from.","jet-form-builder"),edit:function(e){const C=mi(),t=oi();si();const{attributes:l,setAttributes:r,isSelected:n,editProps:{uniqKey:a}}=e;return l.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ka):[(0,h.createElement)($a,{key:a("ToolBarFields"),...e}),n&&(0,h.createElement)(di,{key:a("InspectorControls")},(0,h.createElement)(ui,{title:ci("General","jet-form-builder")},(0,h.createElement)(Ya,null),(0,h.createElement)(ei,null),(0,h.createElement)(Xa,null)),(0,h.createElement)(ui,{title:ci("Value","jet-form-builder")},(0,h.createElement)(Qa,null)),(0,h.createElement)(li,{...e},(0,h.createElement)(ai,{value:l.min,label:ci("Min Value","jet-form-builder"),onChangePreset:e=>r({min:e})},({instanceId:e})=>(0,h.createElement)(pi,{id:e,className:"jet-fb m-unset",value:l.min,onChange:e=>r({min:e})})),(0,h.createElement)(ii,{name:"min"}),(0,h.createElement)(ai,{value:l.max,label:ci("Max Value","jet-form-builder"),onChangePreset:e=>r({max:e})},({instanceId:e})=>(0,h.createElement)(pi,{id:e,className:"jet-fb m-unset",value:l.max,onChange:e=>r({max:e})})),(0,h.createElement)(ii,{name:"max"}),(0,h.createElement)(ai,{value:l.step,label:ci("Step","jet-form-builder"),onChangePreset:e=>r({step:e})},({instanceId:e})=>(0,h.createElement)(pi,{id:e,className:"jet-fb m-unset",value:l.step,onChange:e=>r({step:e})})),(0,h.createElement)(ii,{name:"step"})),(0,h.createElement)(ui,{title:ci("Validation","jet-form-builder")},(0,h.createElement)(ri,null),t&&(0,h.createElement)(h.Fragment,null,null!==l.min&&(0,h.createElement)(ni,{name:"number_min"}),null!==l.max&&(0,h.createElement)(ni,{name:"number_max"}),(0,h.createElement)(ni,{name:"empty"}))),(0,h.createElement)(Ci,null)),(0,h.createElement)("div",{...C,key:a("viewBlock")},(0,h.createElement)(ti,{key:a("FieldWrapper"),...e},(0,h.createElement)(hi,{placeholder:l.placeholder,className:"jet-form-builder__field-preview",key:a("place_holder_block"),min:l.min||0,max:l.max||1e3,step:l.step||1})))]},useEditProps:["uniqKey","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Li("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/range-field"],transform:e=>Li(gi,{...e}),priority:0}]}},Ei=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M19.8262 57.0967H17.167V56.0234H19.8262C20.3411 56.0234 20.7581 55.9414 21.0771 55.7773C21.3962 55.6133 21.6286 55.3854 21.7744 55.0938C21.9248 54.8021 22 54.4694 22 54.0957C22 53.7539 21.9248 53.4326 21.7744 53.1318C21.6286 52.8311 21.3962 52.5895 21.0771 52.4072C20.7581 52.2204 20.3411 52.127 19.8262 52.127H17.4746V61H16.1553V51.0469H19.8262C20.5781 51.0469 21.2139 51.1768 21.7334 51.4365C22.2529 51.6963 22.6471 52.0563 22.916 52.5166C23.1849 52.9723 23.3193 53.4941 23.3193 54.082C23.3193 54.7201 23.1849 55.2646 22.916 55.7158C22.6471 56.167 22.2529 56.5111 21.7334 56.748C21.2139 56.9805 20.5781 57.0967 19.8262 57.0967ZM26.0605 54.7656V61H24.7959V53.6035H26.0264L26.0605 54.7656ZM28.3711 53.5625L28.3643 54.7383C28.2594 54.7155 28.1592 54.7018 28.0635 54.6973C27.9723 54.6882 27.8675 54.6836 27.749 54.6836C27.4574 54.6836 27.1999 54.7292 26.9766 54.8203C26.7533 54.9115 26.5641 55.0391 26.4092 55.2031C26.2542 55.3672 26.1312 55.5632 26.04 55.791C25.9535 56.0143 25.8965 56.2604 25.8691 56.5293L25.5137 56.7344C25.5137 56.2878 25.557 55.8685 25.6436 55.4766C25.7347 55.0846 25.8737 54.7383 26.0605 54.4375C26.2474 54.1322 26.4844 53.8952 26.7715 53.7266C27.0632 53.5534 27.4095 53.4668 27.8105 53.4668C27.9017 53.4668 28.0065 53.4782 28.125 53.501C28.2435 53.5192 28.3255 53.5397 28.3711 53.5625ZM30.9141 53.6035V61H29.6426V53.6035H30.9141ZM29.5469 51.6416C29.5469 51.4365 29.6084 51.2633 29.7314 51.1221C29.859 50.9808 30.0459 50.9102 30.292 50.9102C30.5335 50.9102 30.7181 50.9808 30.8457 51.1221C30.9779 51.2633 31.0439 51.4365 31.0439 51.6416C31.0439 51.8376 30.9779 52.0062 30.8457 52.1475C30.7181 52.2842 30.5335 52.3525 30.292 52.3525C30.0459 52.3525 29.859 52.2842 29.7314 52.1475C29.6084 52.0062 29.5469 51.8376 29.5469 51.6416ZM35.9043 60.0977C36.2051 60.0977 36.4831 60.0361 36.7383 59.9131C36.9935 59.79 37.2031 59.6214 37.3672 59.4072C37.5312 59.1885 37.6247 58.9401 37.6475 58.6621H38.8506C38.8278 59.0996 38.6797 59.5075 38.4062 59.8857C38.1374 60.2594 37.7842 60.5625 37.3467 60.7949C36.9092 61.0228 36.4284 61.1367 35.9043 61.1367C35.3483 61.1367 34.863 61.0387 34.4482 60.8428C34.0381 60.6468 33.6963 60.3779 33.4229 60.0361C33.154 59.6943 32.9512 59.3024 32.8145 58.8604C32.6823 58.4137 32.6162 57.9421 32.6162 57.4453V57.1582C32.6162 56.6615 32.6823 56.1921 32.8145 55.75C32.9512 55.3034 33.154 54.9092 33.4229 54.5674C33.6963 54.2256 34.0381 53.9567 34.4482 53.7607C34.863 53.5648 35.3483 53.4668 35.9043 53.4668C36.4831 53.4668 36.9889 53.5853 37.4219 53.8223C37.8548 54.0547 38.1943 54.3737 38.4404 54.7793C38.6911 55.1803 38.8278 55.6361 38.8506 56.1465H37.6475C37.6247 55.8411 37.5381 55.5654 37.3877 55.3193C37.2419 55.0732 37.0413 54.8773 36.7861 54.7314C36.5355 54.5811 36.2415 54.5059 35.9043 54.5059C35.5169 54.5059 35.1911 54.5833 34.9268 54.7383C34.667 54.8887 34.4596 55.0938 34.3047 55.3535C34.1543 55.6087 34.0449 55.8936 33.9766 56.208C33.9128 56.5179 33.8809 56.8346 33.8809 57.1582V57.4453C33.8809 57.7689 33.9128 58.0879 33.9766 58.4023C34.0404 58.7168 34.1475 59.0016 34.2979 59.2568C34.4528 59.512 34.6602 59.7171 34.9199 59.8721C35.1842 60.0225 35.5124 60.0977 35.9043 60.0977ZM43.3418 61.1367C42.8268 61.1367 42.3597 61.0501 41.9404 60.877C41.5257 60.6992 41.168 60.4508 40.8672 60.1318C40.571 59.8128 40.3431 59.4346 40.1836 58.9971C40.0241 58.5596 39.9443 58.0811 39.9443 57.5615V57.2744C39.9443 56.6729 40.0332 56.1374 40.2109 55.668C40.3887 55.194 40.6302 54.793 40.9355 54.4648C41.2409 54.1367 41.5872 53.8883 41.9746 53.7197C42.362 53.5511 42.763 53.4668 43.1777 53.4668C43.7064 53.4668 44.1621 53.5579 44.5449 53.7402C44.9323 53.9225 45.249 54.1777 45.4951 54.5059C45.7412 54.8294 45.9235 55.2122 46.042 55.6543C46.1605 56.0918 46.2197 56.5703 46.2197 57.0898V57.6572H40.6963V56.625H44.9551V56.5293C44.9368 56.2012 44.8685 55.8822 44.75 55.5723C44.6361 55.2624 44.4538 55.0072 44.2031 54.8066C43.9525 54.6061 43.6107 54.5059 43.1777 54.5059C42.8906 54.5059 42.6263 54.5674 42.3848 54.6904C42.1432 54.8089 41.9359 54.9867 41.7627 55.2236C41.5895 55.4606 41.4551 55.75 41.3594 56.0918C41.2637 56.4336 41.2158 56.8278 41.2158 57.2744V57.5615C41.2158 57.9124 41.2637 58.2428 41.3594 58.5527C41.4596 58.8581 41.6032 59.127 41.79 59.3594C41.9814 59.5918 42.2116 59.7741 42.4805 59.9062C42.7539 60.0384 43.0638 60.1045 43.4102 60.1045C43.8568 60.1045 44.235 60.0133 44.5449 59.8311C44.8548 59.6488 45.126 59.4049 45.3584 59.0996L46.124 59.708C45.9645 59.9495 45.7617 60.1797 45.5156 60.3984C45.2695 60.6172 44.9665 60.7949 44.6064 60.9316C44.251 61.0684 43.8294 61.1367 43.3418 61.1367ZM52.4336 55.0254V63.8438H51.1621V53.6035H52.3242L52.4336 55.0254ZM57.417 57.2402V57.3838C57.417 57.9215 57.3532 58.4206 57.2256 58.8809C57.098 59.3366 56.9111 59.7331 56.665 60.0703C56.4235 60.4076 56.125 60.6696 55.7695 60.8564C55.4141 61.0433 55.0062 61.1367 54.5459 61.1367C54.0765 61.1367 53.6618 61.0592 53.3018 60.9043C52.9417 60.7493 52.6364 60.5238 52.3857 60.2275C52.1351 59.9313 51.9346 59.5758 51.7842 59.1611C51.6383 58.7464 51.5381 58.2793 51.4834 57.7598V56.9941C51.5381 56.4473 51.6406 55.9574 51.791 55.5244C51.9414 55.0915 52.1396 54.7223 52.3857 54.417C52.6364 54.1071 52.9395 53.8724 53.2949 53.7129C53.6504 53.5488 54.0605 53.4668 54.5254 53.4668C54.9902 53.4668 55.4027 53.5579 55.7627 53.7402C56.1227 53.918 56.4258 54.1732 56.6719 54.5059C56.918 54.8385 57.1025 55.2373 57.2256 55.7021C57.3532 56.1624 57.417 56.6751 57.417 57.2402ZM56.1455 57.3838V57.2402C56.1455 56.8711 56.1068 56.5247 56.0293 56.2012C55.9518 55.873 55.8311 55.5859 55.667 55.3398C55.5075 55.0892 55.3024 54.8932 55.0518 54.752C54.8011 54.6061 54.5026 54.5332 54.1562 54.5332C53.8372 54.5332 53.5592 54.5879 53.3223 54.6973C53.0898 54.8066 52.8916 54.9548 52.7275 55.1416C52.5635 55.3239 52.429 55.5335 52.3242 55.7705C52.224 56.0029 52.1488 56.2445 52.0986 56.4951V58.2656C52.1898 58.5846 52.3174 58.8854 52.4814 59.168C52.6455 59.446 52.8643 59.6715 53.1377 59.8447C53.4111 60.0133 53.7552 60.0977 54.1699 60.0977C54.5117 60.0977 54.8057 60.027 55.0518 59.8857C55.3024 59.7399 55.5075 59.5417 55.667 59.291C55.8311 59.0404 55.9518 58.7533 56.0293 58.4297C56.1068 58.1016 56.1455 57.7529 56.1455 57.3838ZM62.0996 61.1367C61.5846 61.1367 61.1175 61.0501 60.6982 60.877C60.2835 60.6992 59.9258 60.4508 59.625 60.1318C59.3288 59.8128 59.1009 59.4346 58.9414 58.9971C58.7819 58.5596 58.7021 58.0811 58.7021 57.5615V57.2744C58.7021 56.6729 58.791 56.1374 58.9688 55.668C59.1465 55.194 59.388 54.793 59.6934 54.4648C59.9987 54.1367 60.3451 53.8883 60.7324 53.7197C61.1198 53.5511 61.5208 53.4668 61.9355 53.4668C62.4642 53.4668 62.9199 53.5579 63.3027 53.7402C63.6901 53.9225 64.0068 54.1777 64.2529 54.5059C64.499 54.8294 64.6813 55.2122 64.7998 55.6543C64.9183 56.0918 64.9775 56.5703 64.9775 57.0898V57.6572H59.4541V56.625H63.7129V56.5293C63.6947 56.2012 63.6263 55.8822 63.5078 55.5723C63.3939 55.2624 63.2116 55.0072 62.9609 54.8066C62.7103 54.6061 62.3685 54.5059 61.9355 54.5059C61.6484 54.5059 61.3841 54.5674 61.1426 54.6904C60.901 54.8089 60.6937 54.9867 60.5205 55.2236C60.3473 55.4606 60.2129 55.75 60.1172 56.0918C60.0215 56.4336 59.9736 56.8278 59.9736 57.2744V57.5615C59.9736 57.9124 60.0215 58.2428 60.1172 58.5527C60.2174 58.8581 60.361 59.127 60.5479 59.3594C60.7393 59.5918 60.9694 59.7741 61.2383 59.9062C61.5117 60.0384 61.8216 60.1045 62.168 60.1045C62.6146 60.1045 62.9928 60.0133 63.3027 59.8311C63.6126 59.6488 63.8838 59.4049 64.1162 59.0996L64.8818 59.708C64.7223 59.9495 64.5195 60.1797 64.2734 60.3984C64.0273 60.6172 63.7243 60.7949 63.3643 60.9316C63.0088 61.0684 62.5872 61.1367 62.0996 61.1367ZM67.7188 54.7656V61H66.4541V53.6035H67.6846L67.7188 54.7656ZM70.0293 53.5625L70.0225 54.7383C69.9176 54.7155 69.8174 54.7018 69.7217 54.6973C69.6305 54.6882 69.5257 54.6836 69.4072 54.6836C69.1156 54.6836 68.8581 54.7292 68.6348 54.8203C68.4115 54.9115 68.2223 55.0391 68.0674 55.2031C67.9124 55.3672 67.7894 55.5632 67.6982 55.791C67.6117 56.0143 67.5547 56.2604 67.5273 56.5293L67.1719 56.7344C67.1719 56.2878 67.2152 55.8685 67.3018 55.4766C67.3929 55.0846 67.5319 54.7383 67.7188 54.4375C67.9056 54.1322 68.1426 53.8952 68.4297 53.7266C68.7214 53.5534 69.0677 53.4668 69.4688 53.4668C69.5599 53.4668 69.6647 53.4782 69.7832 53.501C69.9017 53.5192 69.9837 53.5397 70.0293 53.5625ZM75.9355 55.1826V61H74.6709V53.6035H75.8672L75.9355 55.1826ZM75.6348 57.0215L75.1084 57.001C75.113 56.4951 75.1882 56.028 75.334 55.5996C75.4798 55.1667 75.6849 54.7907 75.9492 54.4717C76.2135 54.1527 76.528 53.9066 76.8926 53.7334C77.2617 53.5557 77.6696 53.4668 78.1162 53.4668C78.4808 53.4668 78.8089 53.5169 79.1006 53.6172C79.3923 53.7129 79.6406 53.8678 79.8457 54.082C80.0553 54.2962 80.2148 54.5742 80.3242 54.916C80.4336 55.2533 80.4883 55.6657 80.4883 56.1533V61H79.2168V56.1396C79.2168 55.7523 79.1598 55.4424 79.0459 55.21C78.932 54.973 78.7656 54.8021 78.5469 54.6973C78.3281 54.5879 78.0592 54.5332 77.7402 54.5332C77.4258 54.5332 77.1387 54.5993 76.8789 54.7314C76.6237 54.8636 76.4027 55.0459 76.2158 55.2783C76.0335 55.5107 75.89 55.7773 75.7852 56.0781C75.6849 56.3743 75.6348 56.6888 75.6348 57.0215ZM83.7832 53.6035V61H82.5117V53.6035H83.7832ZM82.416 51.6416C82.416 51.4365 82.4775 51.2633 82.6006 51.1221C82.7282 50.9808 82.915 50.9102 83.1611 50.9102C83.4027 50.9102 83.5872 50.9808 83.7148 51.1221C83.847 51.2633 83.9131 51.4365 83.9131 51.6416C83.9131 51.8376 83.847 52.0062 83.7148 52.1475C83.5872 52.2842 83.4027 52.3525 83.1611 52.3525C82.915 52.3525 82.7282 52.2842 82.6006 52.1475C82.4775 52.0062 82.416 51.8376 82.416 51.6416ZM90.6055 53.6035H91.7539V60.8428C91.7539 61.4945 91.6217 62.0505 91.3574 62.5107C91.0931 62.971 90.724 63.3197 90.25 63.5566C89.7806 63.7982 89.2383 63.9189 88.623 63.9189C88.3678 63.9189 88.0671 63.8779 87.7207 63.7959C87.3789 63.7184 87.0417 63.584 86.709 63.3926C86.3809 63.2057 86.1051 62.9528 85.8818 62.6338L86.5449 61.8818C86.8548 62.2555 87.1784 62.5153 87.5156 62.6611C87.8574 62.807 88.1947 62.8799 88.5273 62.8799C88.9284 62.8799 89.2747 62.8047 89.5664 62.6543C89.8581 62.5039 90.0837 62.2806 90.2432 61.9844C90.4072 61.6927 90.4893 61.3327 90.4893 60.9043V55.2305L90.6055 53.6035ZM85.5127 57.3838V57.2402C85.5127 56.6751 85.5788 56.1624 85.7109 55.7021C85.8477 55.2373 86.0413 54.8385 86.292 54.5059C86.5472 54.1732 86.8548 53.918 87.2148 53.7402C87.5749 53.5579 87.9805 53.4668 88.4316 53.4668C88.8965 53.4668 89.3021 53.5488 89.6484 53.7129C89.9993 53.8724 90.2956 54.1071 90.5371 54.417C90.7832 54.7223 90.9769 55.0915 91.1182 55.5244C91.2594 55.9574 91.3574 56.4473 91.4121 56.9941V57.623C91.362 58.1654 91.264 58.653 91.1182 59.0859C90.9769 59.5189 90.7832 59.888 90.5371 60.1934C90.2956 60.4987 89.9993 60.7334 89.6484 60.8975C89.2975 61.057 88.8874 61.1367 88.418 61.1367C87.9759 61.1367 87.5749 61.0433 87.2148 60.8564C86.8594 60.6696 86.554 60.4076 86.2988 60.0703C86.0436 59.7331 85.8477 59.3366 85.7109 58.8809C85.5788 58.4206 85.5127 57.9215 85.5127 57.3838ZM86.7773 57.2402V57.3838C86.7773 57.7529 86.8138 58.0993 86.8867 58.4229C86.9642 58.7464 87.0804 59.0312 87.2354 59.2773C87.3949 59.5234 87.5977 59.7171 87.8438 59.8584C88.0898 59.9951 88.3838 60.0635 88.7256 60.0635C89.1449 60.0635 89.4912 59.9746 89.7646 59.7969C90.0381 59.6191 90.2546 59.3844 90.4141 59.0928C90.5781 58.8011 90.7057 58.4844 90.7969 58.1426V56.4951C90.7467 56.2445 90.6693 56.0029 90.5645 55.7705C90.4642 55.5335 90.332 55.3239 90.168 55.1416C90.0085 54.9548 89.8102 54.8066 89.5732 54.6973C89.3363 54.5879 89.0583 54.5332 88.7393 54.5332C88.3929 54.5332 88.0944 54.6061 87.8438 54.752C87.5977 54.8932 87.3949 55.0892 87.2354 55.3398C87.0804 55.5859 86.9642 55.873 86.8867 56.2012C86.8138 56.5247 86.7773 56.8711 86.7773 57.2402ZM94.9395 50.5V61H93.6748V50.5H94.9395ZM94.6387 57.0215L94.1123 57.001C94.1169 56.4951 94.1921 56.028 94.3379 55.5996C94.4837 55.1667 94.6888 54.7907 94.9531 54.4717C95.2174 54.1527 95.5319 53.9066 95.8965 53.7334C96.2656 53.5557 96.6735 53.4668 97.1201 53.4668C97.4847 53.4668 97.8128 53.5169 98.1045 53.6172C98.3962 53.7129 98.6445 53.8678 98.8496 54.082C99.0592 54.2962 99.2188 54.5742 99.3281 54.916C99.4375 55.2533 99.4922 55.6657 99.4922 56.1533V61H98.2207V56.1396C98.2207 55.7523 98.1637 55.4424 98.0498 55.21C97.9359 54.973 97.7695 54.8021 97.5508 54.6973C97.332 54.5879 97.0632 54.5332 96.7441 54.5332C96.4297 54.5332 96.1426 54.5993 95.8828 54.7314C95.6276 54.8636 95.4066 55.0459 95.2197 55.2783C95.0374 55.5107 94.8939 55.7773 94.7891 56.0781C94.6888 56.3743 94.6387 56.6888 94.6387 57.0215ZM104.482 53.6035V54.5742H100.483V53.6035H104.482ZM101.837 51.8057H103.102V59.168C103.102 59.4186 103.14 59.6077 103.218 59.7354C103.295 59.863 103.396 59.9473 103.519 59.9883C103.642 60.0293 103.774 60.0498 103.915 60.0498C104.02 60.0498 104.129 60.0407 104.243 60.0225C104.362 59.9997 104.451 59.9814 104.51 59.9678L104.517 61C104.416 61.0319 104.284 61.0615 104.12 61.0889C103.961 61.1208 103.767 61.1367 103.539 61.1367C103.229 61.1367 102.944 61.0752 102.685 60.9521C102.425 60.8291 102.217 60.624 102.062 60.3369C101.912 60.0452 101.837 59.6533 101.837 59.1611V51.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M19.8574 78.4336V80.5186H18.832V78.4336H19.8574ZM19.7344 89.5967V91.4219H18.7158V89.5967H19.7344ZM21.1016 87.4365C21.1016 87.1631 21.04 86.917 20.917 86.6982C20.7939 86.4795 20.5911 86.279 20.3086 86.0967C20.026 85.9144 19.6478 85.7458 19.1738 85.5908C18.5996 85.4131 18.1029 85.1966 17.6836 84.9414C17.2689 84.6862 16.9476 84.3695 16.7197 83.9912C16.4964 83.613 16.3848 83.1549 16.3848 82.6172C16.3848 82.0566 16.5055 81.5736 16.7471 81.168C16.9886 80.7624 17.3304 80.4502 17.7725 80.2314C18.2145 80.0127 18.734 79.9033 19.3311 79.9033C19.7959 79.9033 20.2106 79.974 20.5752 80.1152C20.9398 80.252 21.2474 80.457 21.498 80.7305C21.7533 81.0039 21.9469 81.3389 22.0791 81.7354C22.2158 82.1318 22.2842 82.5898 22.2842 83.1094H21.0264C21.0264 82.804 20.9899 82.5238 20.917 82.2686C20.8441 82.0133 20.7347 81.7923 20.5889 81.6055C20.443 81.4141 20.2653 81.2682 20.0557 81.168C19.846 81.0632 19.6045 81.0107 19.3311 81.0107C18.9482 81.0107 18.6315 81.0768 18.3809 81.209C18.1348 81.3411 17.9525 81.528 17.834 81.7695C17.7155 82.0065 17.6562 82.2822 17.6562 82.5967C17.6562 82.8883 17.7155 83.1436 17.834 83.3623C17.9525 83.5811 18.153 83.7793 18.4355 83.957C18.7227 84.1302 19.1169 84.3011 19.6182 84.4697C20.2061 84.6566 20.7051 84.8776 21.1152 85.1328C21.5254 85.3835 21.8376 85.6934 22.0518 86.0625C22.266 86.4271 22.373 86.8805 22.373 87.4229C22.373 88.0107 22.2409 88.5075 21.9766 88.9131C21.7122 89.3141 21.3408 89.6195 20.8623 89.8291C20.3838 90.0387 19.8232 90.1436 19.1807 90.1436C18.7933 90.1436 18.4105 90.0911 18.0322 89.9863C17.654 89.8815 17.3122 89.7106 17.0068 89.4736C16.7015 89.2321 16.4577 88.9154 16.2754 88.5234C16.0931 88.127 16.002 87.6416 16.002 87.0674H17.2734C17.2734 87.4548 17.3281 87.776 17.4375 88.0312C17.5514 88.2819 17.7018 88.4824 17.8887 88.6328C18.0755 88.7786 18.2806 88.8835 18.5039 88.9473C18.7318 89.0065 18.9574 89.0361 19.1807 89.0361C19.5908 89.0361 19.9372 88.9723 20.2197 88.8447C20.5068 88.7126 20.7256 88.5257 20.876 88.2842C21.0264 88.0426 21.1016 87.7601 21.1016 87.4365ZM30.2002 84.2305V85.748C30.2002 86.5638 30.1273 87.252 29.9814 87.8125C29.8356 88.373 29.626 88.8242 29.3525 89.166C29.0791 89.5078 28.7487 89.7562 28.3613 89.9111C27.9785 90.0615 27.5456 90.1367 27.0625 90.1367C26.6797 90.1367 26.3265 90.0889 26.0029 89.9932C25.6794 89.8975 25.3877 89.7448 25.1279 89.5352C24.8727 89.321 24.654 89.043 24.4717 88.7012C24.2894 88.3594 24.1504 87.9447 24.0547 87.457C23.959 86.9694 23.9111 86.3997 23.9111 85.748V84.2305C23.9111 83.4147 23.984 82.7311 24.1299 82.1797C24.2803 81.6283 24.4922 81.1862 24.7656 80.8535C25.0391 80.5163 25.3672 80.2747 25.75 80.1289C26.1374 79.9831 26.5703 79.9102 27.0488 79.9102C27.4362 79.9102 27.7917 79.958 28.1152 80.0537C28.4434 80.1449 28.735 80.293 28.9902 80.498C29.2454 80.6986 29.4619 80.9674 29.6396 81.3047C29.8219 81.6374 29.9609 82.0452 30.0566 82.5283C30.1523 83.0114 30.2002 83.5788 30.2002 84.2305ZM28.9287 85.9531V84.0186C28.9287 83.5719 28.9014 83.18 28.8467 82.8428C28.7965 82.501 28.7214 82.2093 28.6211 81.9678C28.5208 81.7262 28.3932 81.5303 28.2383 81.3799C28.0879 81.2295 27.9124 81.1201 27.7119 81.0518C27.516 80.9788 27.2949 80.9424 27.0488 80.9424C26.748 80.9424 26.4814 80.9993 26.249 81.1133C26.0166 81.2227 25.8206 81.3981 25.6611 81.6396C25.5062 81.8812 25.3877 82.1979 25.3057 82.5898C25.2236 82.9818 25.1826 83.458 25.1826 84.0186V85.9531C25.1826 86.3997 25.2077 86.7939 25.2578 87.1357C25.3125 87.4775 25.3923 87.7738 25.4971 88.0244C25.6019 88.2705 25.7295 88.4733 25.8799 88.6328C26.0303 88.7923 26.2035 88.9108 26.3994 88.9883C26.5999 89.0612 26.821 89.0977 27.0625 89.0977C27.3724 89.0977 27.6436 89.0384 27.876 88.9199C28.1084 88.8014 28.3021 88.6169 28.457 88.3662C28.6165 88.111 28.735 87.7852 28.8125 87.3887C28.89 86.9876 28.9287 86.5091 28.9287 85.9531Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"41",y:"83.5",width:"200",height:"2",rx:"1",fill:"#CBD5E1"}),(0,h.createElement)("rect",{x:"41",y:"83.5",width:"122",height:"2",rx:"1",fill:"#4272F9"}),(0,h.createElement)("g",{filter:"url(#filter0_d_76_1271)"},(0,h.createElement)("circle",{cx:"163",cy:"84.5",r:"11",fill:"#4272F9"})),(0,h.createElement)("path",{d:"M256.107 78.4336V80.5186H255.082V78.4336H256.107ZM255.984 89.5967V91.4219H254.966V89.5967H255.984ZM257.352 87.4365C257.352 87.1631 257.29 86.917 257.167 86.6982C257.044 86.4795 256.841 86.279 256.559 86.0967C256.276 85.9144 255.898 85.7458 255.424 85.5908C254.85 85.4131 254.353 85.1966 253.934 84.9414C253.519 84.6862 253.198 84.3695 252.97 83.9912C252.746 83.613 252.635 83.1549 252.635 82.6172C252.635 82.0566 252.756 81.5736 252.997 81.168C253.239 80.7624 253.58 80.4502 254.022 80.2314C254.465 80.0127 254.984 79.9033 255.581 79.9033C256.046 79.9033 256.461 79.974 256.825 80.1152C257.19 80.252 257.497 80.457 257.748 80.7305C258.003 81.0039 258.197 81.3389 258.329 81.7354C258.466 82.1318 258.534 82.5898 258.534 83.1094H257.276C257.276 82.804 257.24 82.5238 257.167 82.2686C257.094 82.0133 256.985 81.7923 256.839 81.6055C256.693 81.4141 256.515 81.2682 256.306 81.168C256.096 81.0632 255.854 81.0107 255.581 81.0107C255.198 81.0107 254.882 81.0768 254.631 81.209C254.385 81.3411 254.202 81.528 254.084 81.7695C253.965 82.0065 253.906 82.2822 253.906 82.5967C253.906 82.8883 253.965 83.1436 254.084 83.3623C254.202 83.5811 254.403 83.7793 254.686 83.957C254.973 84.1302 255.367 84.3011 255.868 84.4697C256.456 84.6566 256.955 84.8776 257.365 85.1328C257.775 85.3835 258.088 85.6934 258.302 86.0625C258.516 86.4271 258.623 86.8805 258.623 87.4229C258.623 88.0107 258.491 88.5075 258.227 88.9131C257.962 89.3141 257.591 89.6195 257.112 89.8291C256.634 90.0387 256.073 90.1436 255.431 90.1436C255.043 90.1436 254.66 90.0911 254.282 89.9863C253.904 89.8815 253.562 89.7106 253.257 89.4736C252.951 89.2321 252.708 88.9154 252.525 88.5234C252.343 88.127 252.252 87.6416 252.252 87.0674H253.523C253.523 87.4548 253.578 87.776 253.688 88.0312C253.801 88.2819 253.952 88.4824 254.139 88.6328C254.326 88.7786 254.531 88.8835 254.754 88.9473C254.982 89.0065 255.207 89.0361 255.431 89.0361C255.841 89.0361 256.187 88.9723 256.47 88.8447C256.757 88.7126 256.976 88.5257 257.126 88.2842C257.276 88.0426 257.352 87.7601 257.352 87.4365ZM266.724 88.9609V90H260.209V89.0908L263.47 85.4609C263.871 85.0143 264.181 84.6361 264.399 84.3262C264.623 84.0117 264.778 83.7314 264.864 83.4854C264.955 83.2347 265.001 82.9795 265.001 82.7197C265.001 82.3916 264.933 82.0954 264.796 81.8311C264.664 81.5622 264.468 81.348 264.208 81.1885C263.948 81.029 263.634 80.9492 263.265 80.9492C262.823 80.9492 262.453 81.0358 262.157 81.209C261.866 81.3776 261.647 81.6146 261.501 81.9199C261.355 82.2253 261.282 82.5762 261.282 82.9727H260.018C260.018 82.4121 260.141 81.8994 260.387 81.4346C260.633 80.9697 260.997 80.6006 261.48 80.3271C261.964 80.0492 262.558 79.9102 263.265 79.9102C263.894 79.9102 264.431 80.0218 264.878 80.2451C265.325 80.4639 265.666 80.7738 265.903 81.1748C266.145 81.5713 266.266 82.0361 266.266 82.5693C266.266 82.861 266.215 83.1572 266.115 83.458C266.02 83.7542 265.885 84.0505 265.712 84.3467C265.543 84.6429 265.345 84.9346 265.117 85.2217C264.894 85.5088 264.655 85.7913 264.399 86.0693L261.733 88.9609H266.724ZM272.233 79.9922V90H270.969V81.5713L268.419 82.501V81.3594L272.035 79.9922H272.233ZM282.2 84.2305V85.748C282.2 86.5638 282.127 87.252 281.981 87.8125C281.836 88.373 281.626 88.8242 281.353 89.166C281.079 89.5078 280.749 89.7562 280.361 89.9111C279.979 90.0615 279.546 90.1367 279.062 90.1367C278.68 90.1367 278.326 90.0889 278.003 89.9932C277.679 89.8975 277.388 89.7448 277.128 89.5352C276.873 89.321 276.654 89.043 276.472 88.7012C276.289 88.3594 276.15 87.9447 276.055 87.457C275.959 86.9694 275.911 86.3997 275.911 85.748V84.2305C275.911 83.4147 275.984 82.7311 276.13 82.1797C276.28 81.6283 276.492 81.1862 276.766 80.8535C277.039 80.5163 277.367 80.2747 277.75 80.1289C278.137 79.9831 278.57 79.9102 279.049 79.9102C279.436 79.9102 279.792 79.958 280.115 80.0537C280.443 80.1449 280.735 80.293 280.99 80.498C281.245 80.6986 281.462 80.9674 281.64 81.3047C281.822 81.6374 281.961 82.0452 282.057 82.5283C282.152 83.0114 282.2 83.5788 282.2 84.2305ZM280.929 85.9531V84.0186C280.929 83.5719 280.901 83.18 280.847 82.8428C280.797 82.501 280.721 82.2093 280.621 81.9678C280.521 81.7262 280.393 81.5303 280.238 81.3799C280.088 81.2295 279.912 81.1201 279.712 81.0518C279.516 80.9788 279.295 80.9424 279.049 80.9424C278.748 80.9424 278.481 80.9993 278.249 81.1133C278.017 81.2227 277.821 81.3981 277.661 81.6396C277.506 81.8812 277.388 82.1979 277.306 82.5898C277.224 82.9818 277.183 83.458 277.183 84.0186V85.9531C277.183 86.3997 277.208 86.7939 277.258 87.1357C277.312 87.4775 277.392 87.7738 277.497 88.0244C277.602 88.2705 277.729 88.4733 277.88 88.6328C278.03 88.7923 278.203 88.9108 278.399 88.9883C278.6 89.0612 278.821 89.0977 279.062 89.0977C279.372 89.0977 279.644 89.0384 279.876 88.9199C280.108 88.8014 280.302 88.6169 280.457 88.3662C280.617 88.111 280.735 87.7852 280.812 87.3887C280.89 86.9876 280.929 86.5091 280.929 85.9531Z",fill:"#0F172A"}),(0,h.createElement)("defs",null,(0,h.createElement)("filter",{id:"filter0_d_76_1271",x:"140",y:"65.5",width:"46",height:"46",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB"},(0,h.createElement)("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),(0,h.createElement)("feColorMatrix",{in:"SourceAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",result:"hardAlpha"}),(0,h.createElement)("feOffset",{dy:"4"}),(0,h.createElement)("feGaussianBlur",{stdDeviation:"6"}),(0,h.createElement)("feColorMatrix",{type:"matrix",values:"0 0 0 0 0.258824 0 0 0 0 0.447059 0 0 0 0 0.976471 0 0 0 0.5 0"}),(0,h.createElement)("feBlend",{mode:"normal",in2:"BackgroundImageFix",result:"effect1_dropShadow_76_1271"}),(0,h.createElement)("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_dropShadow_76_1271",result:"shape"})))),{BlockLabel:wi,BlockDescription:vi,BlockAdvancedValue:_i,BlockName:ki,AdvancedFields:ji,FieldWrapper:xi,ValidationToggleGroup:Fi,ValidationBlockMessage:Bi,AdvancedInspectorControl:Ai,AttributeHelp:Pi}=JetFBComponents,{useIsAdvancedValidation:Si,useUniqueNameOnDuplicate:Ni}=JetFBHooks,{__:Ii}=wp.i18n,{InspectorControls:Ti,useBlockProps:Oi}=wp.blockEditor,{TextControl:Ji,PanelBody:Ri,__experimentalNumberControl:qi,__experimentalInputControl:Di}=wp.components,{useState:zi}=wp.element;let{NumberControl:Ui,InputControl:Gi}=wp.components;void 0===Ui&&(Ui=qi),void 0===Gi&&(Gi=Di);const Wi=JSON.parse('{"apiVersion":3,"name":"jet-forms/range-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","range"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Range Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"min":{"type":["number","string"],"default":"","jfb":{"rich":true}},"max":{"type":["number","string"],"default":"","jfb":{"rich":true}},"step":{"type":["number","string"],"default":"","jfb":{"rich":true}},"prefix":{"type":"string","default":"","jfb":{"rich":true}},"suffix":{"type":"string","default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Ki}=wp.i18n,{createBlock:$i}=wp.blocks,{name:Yi,icon:Xi=""}=Wi,Qi={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Xi}}),description:Ki("Insert a range with a slider in the form for the users to move it. So the visitors can set the desired price range for products they want to buy.","jet-form-builder"),edit:function(e){const C=Oi(),t=Si();Ni();const[l,r]=zi(50),{attributes:n,setAttributes:a,editProps:{uniqKey:i,attrHelp:o}}=e;return n.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Ei):[e.isSelected&&(0,h.createElement)(Ti,{key:i("InspectorControls")},(0,h.createElement)(Ri,{title:Ii("General","jet-form-builder")},(0,h.createElement)(wi,null),(0,h.createElement)(ki,null),(0,h.createElement)(vi,null)),(0,h.createElement)(Ri,{title:Ii("Value","jet-form-builder")},(0,h.createElement)(_i,null)),(0,h.createElement)(Ri,{title:Ii("Field","jet-form-builder"),key:i("PanelBody")},(0,h.createElement)(Ai,{value:n.min,label:Ii("Min Value","jet-form-builder"),onChangePreset:e=>a({min:e})},({instanceId:e})=>(0,h.createElement)(Ji,{id:e,className:"jet-fb m-unset",value:n.min,onChange:e=>a({min:e})})),(0,h.createElement)(Pi,{name:"min"}),(0,h.createElement)(Ai,{value:n.max,label:Ii("Max Value","jet-form-builder"),onChangePreset:e=>a({max:e})},({instanceId:e})=>(0,h.createElement)(Ji,{id:e,className:"jet-fb m-unset",value:n.max,onChange:e=>a({max:e})})),(0,h.createElement)(Pi,{name:"max"}),(0,h.createElement)(Ai,{value:n.step,label:Ii("Step","jet-form-builder"),onChangePreset:e=>a({step:e})},({instanceId:e})=>(0,h.createElement)(Ji,{id:e,className:"jet-fb m-unset",value:n.step,onChange:e=>a({step:e})})),(0,h.createElement)(Pi,{name:"step"}),(0,h.createElement)(Ji,{key:"prefix",label:Ii("Value prefix","jet-form-builder"),value:n.prefix,help:o("prefix_suffix"),onChange:e=>{a({prefix:e})}}),(0,h.createElement)(Ji,{key:"suffix",label:Ii("Value suffix","jet-form-builder"),value:n.suffix,help:o("prefix_suffix"),onChange:e=>{a({suffix:e})}})),(0,h.createElement)(Ri,{title:Ii("Validation","jet-form-builder")},(0,h.createElement)(Fi,null),t&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Bi,{name:"empty"}),(0,h.createElement)(Bi,{name:"number_max"}),(0,h.createElement)(Bi,{name:"number_min"}))),(0,h.createElement)(ji,{key:i("AdvancedFields"),...e})),(0,h.createElement)("div",{...C,key:i("viewBlock")},(0,h.createElement)(xi,{key:i("FieldWrapper"),wrapClasses:["range-wrap"],...e},(0,h.createElement)("div",{className:"range-flex-wrap jet-form-builder__field-preview"},(0,h.createElement)(Gi,{key:i("placeholder_block"),type:"range",min:n.min||0,max:n.max||100,step:n.step||1,onChange:r}),(0,h.createElement)("div",{className:"jet-form-builder__field-value"},(0,h.createElement)("span",{className:"jet-form-builder__field-value-prefix"},n.prefix),(0,h.createElement)("span",null,l),(0,h.createElement)("span",{className:"jet-form-builder__field-value-suffix"},n.suffix)))))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>$i("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/number-field"],transform:e=>$i(Yi,{...e}),priority:0}]}},eo=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"70",y:"44",width:"158",height:"56",rx:"28",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M99.8051 79.28C99.2384 79.28 98.6551 79.2233 98.0551 79.11C97.4551 79.0033 96.8984 78.8733 96.3851 78.72C95.8717 78.56 95.4651 78.4067 95.1651 78.26L95.4651 75.54C95.9317 75.7667 96.4184 75.9767 96.9251 76.17C97.4317 76.3633 97.9517 76.52 98.4851 76.64C99.0184 76.76 99.5584 76.82 100.105 76.82C100.785 76.82 101.332 76.6867 101.745 76.42C102.158 76.1533 102.365 75.7467 102.365 75.2C102.365 74.78 102.248 74.4433 102.015 74.19C101.782 73.93 101.425 73.7 100.945 73.5C100.465 73.2933 99.8517 73.06 99.1051 72.8C98.3584 72.54 97.6884 72.2467 97.0951 71.92C96.5017 71.5867 96.0317 71.1667 95.6851 70.66C95.3384 70.1533 95.1651 69.5067 95.1651 68.72C95.1651 67.9467 95.3551 67.26 95.7351 66.66C96.1151 66.0533 96.6817 65.58 97.4351 65.24C98.1951 64.8933 99.1384 64.72 100.265 64.72C101.118 64.72 101.932 64.8167 102.705 65.01C103.478 65.1967 104.138 65.4 104.685 65.62L104.425 68.24C103.638 67.8867 102.898 67.62 102.205 67.44C101.518 67.2533 100.818 67.16 100.105 67.16C99.3584 67.16 98.7817 67.2833 98.3751 67.53C97.9684 67.7767 97.7651 68.1467 97.7651 68.64C97.7651 69.0333 97.8784 69.35 98.1051 69.59C98.3317 69.83 98.6551 70.0367 99.0751 70.21C99.4951 70.3767 99.9984 70.5533 100.585 70.74C101.598 71.06 102.448 71.4133 103.135 71.8C103.828 72.18 104.348 72.6433 104.695 73.19C105.048 73.73 105.225 74.4 105.225 75.2C105.225 75.6 105.162 76.0367 105.035 76.51C104.908 76.9767 104.658 77.42 104.285 77.84C103.912 78.26 103.365 78.6067 102.645 78.88C101.932 79.1467 100.985 79.28 99.8051 79.28ZM110.989 79.2C109.949 79.2 109.119 78.9933 108.499 78.58C107.879 78.1667 107.433 77.6 107.159 76.88C106.886 76.1533 106.749 75.32 106.749 74.38V69H109.229V74.38C109.229 75.3067 109.383 75.9967 109.689 76.45C110.003 76.8967 110.509 77.12 111.209 77.12C111.769 77.12 112.233 76.9867 112.599 76.72C112.973 76.4533 113.283 76.08 113.529 75.6L113.089 76.86V69H115.569V79H113.249L113.129 77.26L113.669 77.96C113.429 78.2667 113.049 78.55 112.529 78.81C112.016 79.07 111.503 79.2 110.989 79.2ZM123.085 79.2C122.325 79.2 121.668 79.0767 121.115 78.83C120.561 78.5833 120.045 78.2467 119.565 77.82L120.305 77.3L120.185 79H117.865V64H120.345V70.66L119.745 70.28C120.185 69.8267 120.675 69.4733 121.215 69.22C121.761 68.9667 122.385 68.84 123.085 68.84C124.065 68.84 124.888 69.0767 125.555 69.55C126.221 70.0233 126.725 70.6533 127.065 71.44C127.411 72.2267 127.585 73.0867 127.585 74.02C127.585 74.9533 127.411 75.8133 127.065 76.6C126.725 77.3867 126.221 78.0167 125.555 78.49C124.888 78.9633 124.065 79.2 123.085 79.2ZM122.725 77.16C123.218 77.16 123.638 77.0267 123.985 76.76C124.331 76.4933 124.595 76.1267 124.775 75.66C124.955 75.1867 125.045 74.64 125.045 74.02C125.045 73.4 124.955 72.8567 124.775 72.39C124.595 71.9167 124.331 71.5467 123.985 71.28C123.638 71.0133 123.218 70.88 122.725 70.88C122.145 70.88 121.671 71.0133 121.305 71.28C120.938 71.5467 120.665 71.9167 120.485 72.39C120.311 72.8567 120.225 73.4 120.225 74.02C120.225 74.64 120.311 75.1867 120.485 75.66C120.665 76.1267 120.938 76.4933 121.305 76.76C121.671 77.0267 122.145 77.16 122.725 77.16ZM129.31 79V69H131.43L131.59 70.46L131.23 70.02C131.61 69.72 132.064 69.45 132.59 69.21C133.124 68.9633 133.744 68.84 134.45 68.84C134.984 68.84 135.454 68.92 135.86 69.08C136.274 69.2333 136.627 69.4567 136.92 69.75C137.214 70.0367 137.45 70.38 137.63 70.78L137.03 70.64C137.35 70.0667 137.817 69.6233 138.43 69.31C139.05 68.9967 139.75 68.84 140.53 68.84C141.45 68.84 142.2 69.03 142.78 69.41C143.36 69.79 143.787 70.3267 144.06 71.02C144.334 71.7067 144.47 72.5133 144.47 73.44V79H141.99V73.62C141.99 72.6867 141.844 71.9967 141.55 71.55C141.264 71.1033 140.784 70.88 140.11 70.88C139.777 70.88 139.484 70.94 139.23 71.06C138.984 71.1733 138.777 71.3433 138.61 71.57C138.45 71.79 138.33 72.06 138.25 72.38C138.17 72.6933 138.13 73.0467 138.13 73.44V79H135.65V73.62C135.65 73 135.584 72.4867 135.45 72.08C135.324 71.6733 135.117 71.3733 134.83 71.18C134.55 70.98 134.184 70.88 133.73 70.88C133.15 70.88 132.674 71.0167 132.3 71.29C131.934 71.5567 131.61 71.92 131.33 72.38L131.79 71.04V79H129.31ZM146.693 79V69H149.173V79H146.693ZM146.693 67.48V65H149.173V67.48H146.693ZM154.758 79.2C154.131 79.2 153.621 79.0733 153.228 78.82C152.835 78.56 152.545 78.23 152.358 77.83C152.171 77.43 152.078 77.0133 152.078 76.58V71.04H150.658L150.878 69H152.078V66.8L154.558 66.54V69H156.758V71.04H154.558V75.56C154.558 76.0667 154.588 76.4333 154.648 76.66C154.708 76.88 154.845 77.02 155.058 77.08C155.271 77.1333 155.611 77.16 156.078 77.16H156.758L156.538 79.2H154.758ZM163.465 79V71.04H162.045L162.265 69H163.465V66.88C163.465 66 163.725 65.3 164.245 64.78C164.772 64.26 165.525 64 166.505 64C166.825 64 167.118 64.0167 167.385 64.05C167.658 64.0833 167.905 64.1267 168.125 64.18L167.905 66.18C167.805 66.1467 167.695 66.1233 167.575 66.11C167.455 66.09 167.305 66.08 167.125 66.08C166.765 66.08 166.478 66.1767 166.265 66.37C166.052 66.5633 165.945 66.88 165.945 67.32V69H168.145V71.04H165.945V79H163.465ZM174.104 79.2C173.018 79.2 172.091 78.9633 171.324 78.49C170.558 78.0167 169.971 77.3867 169.564 76.6C169.164 75.8133 168.964 74.9533 168.964 74.02C168.964 73.08 169.164 72.2133 169.564 71.42C169.971 70.6267 170.558 69.9933 171.324 69.52C172.091 69.04 173.018 68.8 174.104 68.8C175.191 68.8 176.118 69.04 176.884 69.52C177.651 69.9933 178.234 70.6267 178.634 71.42C179.041 72.2133 179.244 73.08 179.244 74.02C179.244 74.9533 179.041 75.8133 178.634 76.6C178.234 77.3867 177.651 78.0167 176.884 78.49C176.118 78.9633 175.191 79.2 174.104 79.2ZM174.104 77.16C174.938 77.16 175.578 76.87 176.024 76.29C176.478 75.7033 176.704 74.9467 176.704 74.02C176.704 73.08 176.478 72.3167 176.024 71.73C175.578 71.1367 174.938 70.84 174.104 70.84C173.278 70.84 172.638 71.1367 172.184 71.73C171.731 72.3167 171.504 73.08 171.504 74.02C171.504 74.9467 171.731 75.7033 172.184 76.29C172.638 76.87 173.278 77.16 174.104 77.16ZM180.971 79V69H183.291L183.351 70.06C183.604 69.78 183.961 69.5 184.421 69.22C184.881 68.94 185.384 68.8 185.931 68.8C186.091 68.8 186.237 68.8133 186.371 68.84L186.191 71.28C186.044 71.24 185.897 71.2133 185.751 71.2C185.611 71.1867 185.471 71.18 185.331 71.18C184.911 71.18 184.527 71.2767 184.181 71.47C183.834 71.6633 183.591 71.9 183.451 72.18V79H180.971ZM187.572 79V69H189.692L189.852 70.46L189.492 70.02C189.872 69.72 190.325 69.45 190.852 69.21C191.385 68.9633 192.005 68.84 192.712 68.84C193.245 68.84 193.715 68.92 194.122 69.08C194.535 69.2333 194.889 69.4567 195.182 69.75C195.475 70.0367 195.712 70.38 195.892 70.78L195.292 70.64C195.612 70.0667 196.079 69.6233 196.692 69.31C197.312 68.9967 198.012 68.84 198.792 68.84C199.712 68.84 200.462 69.03 201.042 69.41C201.622 69.79 202.049 70.3267 202.322 71.02C202.595 71.7067 202.732 72.5133 202.732 73.44V79H200.252V73.62C200.252 72.6867 200.105 71.9967 199.812 71.55C199.525 71.1033 199.045 70.88 198.372 70.88C198.039 70.88 197.745 70.94 197.492 71.06C197.245 71.1733 197.039 71.3433 196.872 71.57C196.712 71.79 196.592 72.06 196.512 72.38C196.432 72.6933 196.392 73.0467 196.392 73.44V79H193.912V73.62C193.912 73 193.845 72.4867 193.712 72.08C193.585 71.6733 193.379 71.3733 193.092 71.18C192.812 70.98 192.445 70.88 191.992 70.88C191.412 70.88 190.935 71.0167 190.562 71.29C190.195 71.5567 189.872 71.92 189.592 72.38L190.052 71.04V79H187.572Z",fill:"white"})),{GeneralFields:Co,AdvancedFields:to,ActionButtonPlaceholder:lo}=JetFBComponents,{InspectorControls:ro}=wp.blockEditor,{useState:no,useEffect:ao}=wp.element,{withFilters:io}=wp.components,oo=["jet-form-builder__action-button"],so=["jet-form-builder__action-button-wrapper"],co=io("jet.fb.block.action-button.edit")(lo),mo=e=>{var C;const{attributes:t,setAttributes:l}=e,r=()=>{if(!t.action_type)return oo;const e=JetFormActionButton.actions.find(e=>t.action_type===e.value);return e?(t.label||l({label:e.preset_label}),[...oo,e.button_class]):oo},n=()=>{if(!t.action_type)return[...so];const e=JetFormActionButton.actions.find(e=>t.action_type===e.value);return e?[...so,e.wrapper_class]:[...so]},[a,i]=no(r),[o,s]=no(n);return ao(()=>{i(r()),s(n())},[t.action_type]),(0,h.createElement)(co,{attributes:t,setAttributes:l,setActionAttributes:e=>{var C;const r=JSON.parse(JSON.stringify(t.buttons)),n=null!==(C=r[t.action_type])&&void 0!==C?C:{};r[t.action_type]={...n,...e},l({buttons:r})},actionAttributes:null!==(C=t.buttons[t.action_type])&&void 0!==C?C:{},buttonClasses:a,wrapperClasses:o})},uo=JSON.parse('{"apiVersion":3,"name":"jet-forms/submit-field","category":"jet-form-builder-elements","keywords":["jetformbuilder","field","submit","break","next","prev","action","button"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Action Button","icon":"\\n\\n\\n\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"label":{"type":"string","default":"Submit","jfb":{"rich":true}},"action_type":{"type":"string","default":"submit"},"buttons":{"type":"object","default":{}},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""}}}'),{__:po}=wp.i18n,fo={name:"submit",isDefault:!0,title:po("Action Button","jet-form-builder"),isActive:["action_type"],description:po("Add the button by clicking which users can submit the form","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M24.8828 29.3223H23.0029C22.9619 29.7415 22.8639 30.0924 22.709 30.375C22.5586 30.6576 22.3376 30.8717 22.0459 31.0176C21.7588 31.1634 21.3851 31.2363 20.9248 31.2363C20.5465 31.2363 20.2207 31.1634 19.9473 31.0176C19.6738 30.8717 19.4505 30.6598 19.2773 30.3818C19.1042 30.1038 18.9766 29.7643 18.8945 29.3633C18.8125 28.9622 18.7715 28.5088 18.7715 28.0029V27.2305C18.7715 26.7018 18.8171 26.237 18.9082 25.8359C18.9993 25.4303 19.1361 25.0931 19.3184 24.8242C19.5007 24.5508 19.7285 24.3457 20.002 24.209C20.2799 24.0723 20.6012 24.0039 20.9658 24.0039C21.4352 24.0039 21.8112 24.0814 22.0938 24.2363C22.3809 24.3867 22.5951 24.6077 22.7363 24.8994C22.8822 25.1911 22.9733 25.5465 23.0098 25.9658H24.8896C24.8258 25.2913 24.639 24.6943 24.3291 24.1748C24.0192 23.6553 23.584 23.2474 23.0234 22.9512C22.4629 22.6504 21.777 22.5 20.9658 22.5C20.3415 22.5 19.7764 22.6117 19.2705 22.835C18.7692 23.0583 18.3385 23.3773 17.9785 23.792C17.623 24.2021 17.3496 24.6989 17.1582 25.2822C16.9668 25.8656 16.8711 26.5195 16.8711 27.2441V28.0029C16.8711 28.7275 16.9645 29.3815 17.1514 29.9648C17.3382 30.5436 17.6071 31.0404 17.958 31.4551C18.3135 31.8652 18.7396 32.182 19.2363 32.4053C19.7376 32.624 20.3005 32.7334 20.9248 32.7334C21.736 32.7334 22.4264 32.5876 22.9961 32.2959C23.5658 32.0042 24.0101 31.6032 24.3291 31.0928C24.6481 30.5778 24.8327 29.9876 24.8828 29.3223Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5371 22.6436L16.2764 32.5967H14.2803L13.5324 30.3818H9.81555L9.07129 32.5967H7.08203L10.8008 22.6436H12.5371ZM10.314 28.8984H13.0316L11.6695 24.8646L10.314 28.8984Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M30.4062 24.127V32.5967H28.5332V24.127H25.4775V22.6436H33.4961V24.127H30.4062Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M36.75 32.5967V22.6436H34.8701V32.5967H36.75Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M46.8398 27.3672V27.8799C46.8398 28.6318 46.7396 29.3086 46.5391 29.9102C46.3385 30.5072 46.0537 31.0153 45.6846 31.4346C45.3154 31.8538 44.8757 32.1751 44.3652 32.3984C43.8548 32.6217 43.2874 32.7334 42.6631 32.7334C42.0479 32.7334 41.4827 32.6217 40.9678 32.3984C40.4574 32.1751 40.0153 31.8538 39.6416 31.4346C39.2679 31.0153 38.9785 30.5072 38.7734 29.9102C38.5684 29.3086 38.4658 28.6318 38.4658 27.8799V27.3672C38.4658 26.6107 38.5684 25.9339 38.7734 25.3369C38.9785 24.7399 39.2656 24.2318 39.6348 23.8125C40.0039 23.3887 40.4437 23.0651 40.9541 22.8418C41.4691 22.6185 42.0342 22.5068 42.6494 22.5068C43.2738 22.5068 43.8411 22.6185 44.3516 22.8418C44.862 23.0651 45.3018 23.3887 45.6709 23.8125C46.0446 24.2318 46.3317 24.7399 46.5322 25.3369C46.7373 25.9339 46.8398 26.6107 46.8398 27.3672ZM44.9395 27.8799V27.3535C44.9395 26.8112 44.8893 26.335 44.7891 25.9248C44.6888 25.5101 44.5407 25.1615 44.3447 24.8789C44.1488 24.5964 43.9072 24.3844 43.6201 24.2432C43.333 24.0973 43.0094 24.0244 42.6494 24.0244C42.2848 24.0244 41.9613 24.0973 41.6787 24.2432C41.4007 24.3844 41.1637 24.5964 40.9678 24.8789C40.7718 25.1615 40.6214 25.5101 40.5166 25.9248C40.4163 26.335 40.3662 26.8112 40.3662 27.3535V27.8799C40.3662 28.4176 40.4163 28.8939 40.5166 29.3086C40.6214 29.7233 40.7718 30.0742 40.9678 30.3613C41.1683 30.6439 41.4098 30.8581 41.6924 31.0039C41.9749 31.1497 42.2985 31.2227 42.6631 31.2227C43.0277 31.2227 43.3512 31.1497 43.6338 31.0039C43.9163 30.8581 44.1533 30.6439 44.3447 30.3613C44.5407 30.0742 44.6888 29.7233 44.7891 29.3086C44.8893 28.8939 44.9395 28.4176 44.9395 27.8799Z",fill:"currentColor"}),(0,h.createElement)("path",{d:"M56.4307 32.5967V22.6436H54.5576V29.5547L50.3125 22.6436H48.4326V32.5967H50.3125V25.6924L54.5439 32.5967H56.4307Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M56.8581 44H60C62.2091 44 64 42.2091 64 40V15C64 12.7909 62.2091 11 60 11H4C1.79086 11 0 12.7909 0 15V40C0 42.2091 1.79086 44 4 44H40.778L42.9403 53.0096C43.0578 53.5382 43.3396 53.9897 43.7233 54.3254C44.0972 54.6525 44.5724 54.8763 45.1109 54.9302C45.6268 54.9818 46.1288 54.8712 46.5658 54.6285C47.0573 54.3554 47.415 53.9381 47.6217 53.4573L48.5248 51.4717L51.0479 54.0031L51.0743 54.0278C51.3798 54.3129 51.7296 54.5489 52.1209 54.7228L52.1642 54.742L52.2083 54.7592C52.6273 54.9221 53.0636 55 53.5023 55C53.941 55 54.3773 54.9221 54.7963 54.7592L54.8404 54.742L54.8837 54.7228C55.275 54.5489 55.6249 54.3129 55.9303 54.0278L55.9679 53.9927L56.0036 53.9557C56.6466 53.2906 57 52.4405 57 51.5023C57 50.5641 56.6466 49.714 56.0036 49.0489L55.9907 49.0355L53.4717 46.5248L55.4573 45.6217C55.9381 45.415 56.3554 45.0573 56.6285 44.5658C56.7279 44.3869 56.8051 44.1972 56.8581 44ZM60 13H4C2.89543 13 2 13.8954 2 15V40C2 41.1046 2.89543 42 4 42H40.298L40.0716 41.0566C39.9751 40.6621 39.9762 40.2536 40.0747 39.8594L40.1023 39.7489L40.1423 39.6422C40.2437 39.3718 40.3918 39.1023 40.5984 38.8544L40.6564 38.7847L40.7206 38.7206C41.029 38.4122 41.4173 38.1852 41.8594 38.0747C42.2536 37.9762 42.6621 37.9751 43.0566 38.0716L55.0096 40.9403C55.5382 41.0578 55.9897 41.3396 56.3254 41.7233C56.4015 41.8102 56.4719 41.9026 56.536 42H60C61.1046 42 62 41.1046 62 40V15C62 13.8954 61.1046 13 60 13ZM50.0127 45.9009L54.6555 43.7892C54.7554 43.7492 54.8303 43.6843 54.8802 43.5945C54.9301 43.5046 54.9501 43.4098 54.9401 43.3099C54.9301 43.2101 54.8902 43.1202 54.8203 43.0403C54.7504 42.9604 54.6655 42.9105 54.5657 42.8906L42.5841 40.015C42.5042 39.995 42.4243 39.995 42.3445 40.015C42.2646 40.0349 42.1947 40.0749 42.1348 40.1348C42.0849 40.1947 42.0449 40.2646 42.015 40.3445C41.995 40.4243 41.995 40.5042 42.015 40.5841L44.8906 52.5657C44.9105 52.6655 44.9604 52.7504 45.0403 52.8203C45.1202 52.8902 45.2101 52.9301 45.3099 52.9401C45.4098 52.9501 45.5046 52.9301 45.5945 52.8802C45.6843 52.8303 45.7492 52.7554 45.7892 52.6555L47.9009 48.0127L52.4389 52.5657C52.5887 52.7055 52.7535 52.8153 52.9332 52.8952C53.1129 52.9651 53.3026 53 53.5023 53C53.702 53 53.8917 52.9651 54.0714 52.8952C54.2512 52.8153 54.4159 52.7055 54.5657 52.5657C54.8552 52.2661 55 51.9117 55 51.5023C55 51.0929 54.8552 50.7385 54.5657 50.4389L50.0127 45.9009Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"submit"}},{registerBlockVariation:Vo}=wp.blocks;Vo("jet-forms/submit-field",fo);const{__:Ho}=wp.i18n,ho={name:"update",title:Ho("Update Field","jet-form-builder"),isActive:["action_type"],description:Ho("Update dependent fields without submitting the form","jet-form-builder"),icon:"update-alt",scope:["block","inserter","transform"],attributes:{action_type:"update"}};var bo;const{registerBlockVariation:Mo,getBlockVariations:Lo}=wp.blocks;(null!==(bo=Lo?.("jet-forms/submit-field"))&&void 0!==bo?bo:[]).some(e=>"update"===e?.name||"update"===e?.attributes?.action_type)||Mo("jet-forms/submit-field",ho);const{__:go}=wp.i18n,Zo={name:"next",title:go("Next Page","jet-form-builder"),isActive:["action_type"],description:go("Go to Next Page button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M48.615 39.6867C48.1972 40.1045 47.5236 40.1045 47.1058 39.6867C46.688 39.2774 46.688 38.5953 47.0973 38.186L53.279 32.0043L47.1058 25.8225C46.688 25.4047 46.688 24.7311 47.1058 24.3133C47.5236 23.8955 48.1972 23.8955 48.615 24.3133L55.7005 31.3989C56.0331 31.7314 56.0331 32.2686 55.7005 32.6011L48.615 39.6867Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M39 54C41.2091 54 43 52.2091 43 50H58C60.2091 50 62 48.2091 62 46V18C62 15.7909 60.2091 14 58 14H43C43 11.7909 41.2091 10 39 10H6C3.79086 10 2 11.7909 2 14V50C2 52.2091 3.79086 54 6 54H39ZM39 12H6C4.89543 12 4 12.8954 4 14V50C4 51.1046 4.89543 52 6 52H39C40.1046 52 41 51.1046 41 50V14C41 12.8954 40.1046 12 39 12ZM43 48V16H58C59.1046 16 60 16.8954 60 18V46C60 47.1046 59.1046 48 58 48H43Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"next"}},{registerBlockVariation:yo}=wp.blocks;yo("jet-forms/submit-field",Zo);const{__:Eo}=wp.i18n,wo={name:"prev",title:Eo("Prev Page","jet-form-builder"),isActive:["action_type"],description:Eo("Go to Prev Page button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{d:"M15.385 39.6867C15.8028 40.1045 16.4764 40.1045 16.8942 39.6867C17.312 39.2774 17.312 38.5953 16.9027 38.186L10.721 32.0043L16.8942 25.8225C17.312 25.4047 17.312 24.7311 16.8942 24.3133C16.4764 23.8955 15.8028 23.8955 15.385 24.3133L8.29947 31.3989C7.96694 31.7314 7.96694 32.2686 8.29947 32.6011L15.385 39.6867Z",fill:"currentColor"}),(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M25 54C22.7909 54 21 52.2091 21 50H6C3.79086 50 2 48.2091 2 46V18C2 15.7909 3.79086 14 6 14H21C21 11.7909 22.7909 10 25 10H58C60.2091 10 62 11.7909 62 14V50C62 52.2091 60.2091 54 58 54H25ZM25 12H58C59.1046 12 60 12.8954 60 14V50C60 51.1046 59.1046 52 58 52H25C23.8954 52 23 51.1046 23 50V14C23 12.8954 23.8954 12 25 12ZM21 48V16H6C4.89543 16 4 16.8954 4 18V46C4 47.1046 4.89543 48 6 48H21Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"prev"}},{registerBlockVariation:vo}=wp.blocks;vo("jet-forms/submit-field",wo);const{__:_o}=wp.i18n,ko={name:"switch-state",title:_o("Change Render State","jet-form-builder"),isActive:(e,C)=>e.action_type===C.action_type,description:_o("Change Render State button","jet-form-builder"),icon:(0,h.createElement)("svg",{width:"64",height:"64",viewBox:"0 0 64 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M28 39V46C28 48.2091 26.2091 50 24 50H4C1.79086 50 0 48.2091 0 46V18C0 15.7909 1.79086 14 4 14H24C26.2091 14 28 15.7909 28 18V25H36V18C36 15.7909 37.7909 14 40 14H60C62.2091 14 64 15.7909 64 18V46C64 48.2091 62.2091 50 60 50H40C37.7909 50 36 48.2091 36 46V39H28ZM4 16H24C25.1046 16 26 16.8954 26 18V37H15.4142L20.0711 32.3431C20.4616 31.9526 20.4616 31.3195 20.0711 30.9289C19.6805 30.5384 19.0474 30.5384 18.6569 30.9289L12.2929 37.2929C11.9024 37.6834 11.9024 38.3166 12.2929 38.7071L18.6569 45.0711C19.0474 45.4616 19.6805 45.4616 20.0711 45.0711C20.4616 44.6805 20.4616 44.0474 20.0711 43.6569L15.4142 39H26V46C26 47.1046 25.1046 48 24 48H4C2.89543 48 2 47.1046 2 46V18C2 16.8954 2.89543 16 4 16ZM28 37H36V27H28V37ZM38 46C38 47.1046 38.8954 48 40 48H60C61.1046 48 62 47.1046 62 46V18C62 16.8954 61.1046 16 60 16H40C38.8954 16 38 16.8954 38 18V25H48.5858L43.9289 20.3431C43.5384 19.9526 43.5384 19.3195 43.9289 18.9289C44.3195 18.5384 44.9526 18.5384 45.3431 18.9289L51.7071 25.2929C52.0976 25.6834 52.0976 26.3166 51.7071 26.7071L45.3431 33.0711C44.9526 33.4616 44.3195 33.4616 43.9289 33.0711C43.5384 32.6805 43.5384 32.0474 43.9289 31.6569L48.5858 27H38V46Z",fill:"currentColor"})),scope:["block","inserter","transform"],attributes:{action_type:"switch-state"}},{__:jo}=wp.i18n,{useSelect:xo}=wp.data,{FormTokenField:Fo,PanelBody:Bo}=wp.components,{InspectorControls:Ao}=wp.blockEditor,{useUniqKey:Po}=JetFBHooks,{ActionButtonPlaceholder:So}=JetFBComponents,{column:No}=JetFBActions,Io=function(e){const{actionAttributes:C,setActionAttributes:t}=e,l=Po(),r=xo(e=>No(e("jet-forms/block-conditions").getSwitchableRenderStates(),"value"),[]);return(0,h.createElement)(h.Fragment,null,(0,h.createElement)(So,{...e}),(0,h.createElement)(Ao,null,(0,h.createElement)(Bo,{title:jo("Change Render State","jet-form-builder")},(0,h.createElement)(Fo,{key:l("switch_on"),label:jo("Switch state","jet-form-builder"),value:C.switch_on,suggestions:r,onChange:e=>t({switch_on:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0}))))},{registerBlockVariation:To}=wp.blocks,{addFilter:Oo}=wp.hooks;To("jet-forms/submit-field",ko),Oo("jet.fb.block.action-button.edit","jet-form-builder/switch-state-variation",e=>C=>"switch-state"!==C.attributes?.action_type?(0,h.createElement)(e,{...C}):(0,h.createElement)(Io,{...C}));const{createBlock:Jo,getBlockVariations:Ro}=wp.blocks,{name:qo,icon:Do=""}=uo;uo.attributes.isPreview={type:"boolean",default:!1};const zo={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Do}}),edit:function(e){const{attributes:C,setAttributes:t}=e;return C.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},eo):(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ro,null,(0,h.createElement)(Co,{...e}),(0,h.createElement)(to,{...e})),(0,h.createElement)(mo,{attributes:C,setAttributes:t}))},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Jo("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Jo(qo,{...e}),priority:0},{type:"block",blocks:["core/buttons"],transform:(e,C)=>Jo(qo,{label:C[0]?.attributes?.text||""}),priority:0}]},__experimentalLabel:(e,{context:C})=>{if("list-view"===C)return(e=>{const C=(e=>{var C;const t=(null!==(C=Ro?.(qo))&&void 0!==C?C:[]).find(({attributes:C={}})=>C.action_type===e.action_type);return t?.title||uo.title})(e),t=e.label?.trim?.()||"";return t&&t!==C?`${C} (${t})`:C||t||uo.title})(e)}},Uo=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M19.8398 23.9287L16.5449 33H15.1982L18.9922 23.0469H19.8604L19.8398 23.9287ZM22.6016 33L19.2998 23.9287L19.2793 23.0469H20.1475L23.9551 33H22.6016ZM22.4307 29.3154V30.3955H16.8389V29.3154H22.4307ZM29.7588 31.5645V22.5H31.0303V33H29.8682L29.7588 31.5645ZM24.7822 29.3838V29.2402C24.7822 28.6751 24.8506 28.1624 24.9873 27.7021C25.1286 27.2373 25.3268 26.8385 25.582 26.5059C25.8418 26.1732 26.1494 25.918 26.5049 25.7402C26.8649 25.5579 27.266 25.4668 27.708 25.4668C28.1729 25.4668 28.5785 25.5488 28.9248 25.7129C29.2757 25.8724 29.5719 26.1071 29.8135 26.417C30.0596 26.7223 30.2533 27.0915 30.3945 27.5244C30.5358 27.9574 30.6338 28.4473 30.6885 28.9941V29.623C30.6383 30.1654 30.5404 30.653 30.3945 31.0859C30.2533 31.5189 30.0596 31.888 29.8135 32.1934C29.5719 32.4987 29.2757 32.7334 28.9248 32.8975C28.5739 33.057 28.1637 33.1367 27.6943 33.1367C27.2614 33.1367 26.8649 33.0433 26.5049 32.8564C26.1494 32.6696 25.8418 32.4076 25.582 32.0703C25.3268 31.7331 25.1286 31.3366 24.9873 30.8809C24.8506 30.4206 24.7822 29.9215 24.7822 29.3838ZM26.0537 29.2402V29.3838C26.0537 29.7529 26.0902 30.0993 26.1631 30.4229C26.2406 30.7464 26.359 31.0312 26.5186 31.2773C26.6781 31.5234 26.8809 31.7171 27.127 31.8584C27.373 31.9951 27.667 32.0635 28.0088 32.0635C28.4281 32.0635 28.7721 31.9746 29.041 31.7969C29.3145 31.6191 29.5332 31.3844 29.6973 31.0928C29.8613 30.8011 29.9889 30.4844 30.0801 30.1426V28.4951C30.0254 28.2445 29.9456 28.0029 29.8408 27.7705C29.7406 27.5335 29.6084 27.3239 29.4443 27.1416C29.2848 26.9548 29.0866 26.8066 28.8496 26.6973C28.6172 26.5879 28.3415 26.5332 28.0225 26.5332C27.6761 26.5332 27.3776 26.6061 27.127 26.752C26.8809 26.8932 26.6781 27.0892 26.5186 27.3398C26.359 27.5859 26.2406 27.873 26.1631 28.2012C26.0902 28.5247 26.0537 28.8711 26.0537 29.2402ZM37.6611 31.5645V22.5H38.9326V33H37.7705L37.6611 31.5645ZM32.6846 29.3838V29.2402C32.6846 28.6751 32.7529 28.1624 32.8896 27.7021C33.0309 27.2373 33.2292 26.8385 33.4844 26.5059C33.7441 26.1732 34.0518 25.918 34.4072 25.7402C34.7673 25.5579 35.1683 25.4668 35.6104 25.4668C36.0752 25.4668 36.4808 25.5488 36.8271 25.7129C37.1781 25.8724 37.4743 26.1071 37.7158 26.417C37.9619 26.7223 38.1556 27.0915 38.2969 27.5244C38.4382 27.9574 38.5361 28.4473 38.5908 28.9941V29.623C38.5407 30.1654 38.4427 30.653 38.2969 31.0859C38.1556 31.5189 37.9619 31.888 37.7158 32.1934C37.4743 32.4987 37.1781 32.7334 36.8271 32.8975C36.4762 33.057 36.0661 33.1367 35.5967 33.1367C35.1637 33.1367 34.7673 33.0433 34.4072 32.8564C34.0518 32.6696 33.7441 32.4076 33.4844 32.0703C33.2292 31.7331 33.0309 31.3366 32.8896 30.8809C32.7529 30.4206 32.6846 29.9215 32.6846 29.3838ZM33.9561 29.2402V29.3838C33.9561 29.7529 33.9925 30.0993 34.0654 30.4229C34.1429 30.7464 34.2614 31.0312 34.4209 31.2773C34.5804 31.5234 34.7832 31.7171 35.0293 31.8584C35.2754 31.9951 35.5693 32.0635 35.9111 32.0635C36.3304 32.0635 36.6745 31.9746 36.9434 31.7969C37.2168 31.6191 37.4355 31.3844 37.5996 31.0928C37.7637 30.8011 37.8913 30.4844 37.9824 30.1426V28.4951C37.9277 28.2445 37.848 28.0029 37.7432 27.7705C37.6429 27.5335 37.5107 27.3239 37.3467 27.1416C37.1872 26.9548 36.9889 26.8066 36.752 26.6973C36.5195 26.5879 36.2438 26.5332 35.9248 26.5332C35.5785 26.5332 35.2799 26.6061 35.0293 26.752C34.7832 26.8932 34.5804 27.0892 34.4209 27.3398C34.2614 27.5859 34.1429 27.873 34.0654 28.2012C33.9925 28.5247 33.9561 28.8711 33.9561 29.2402ZM42.2754 25.6035V33H41.0039V25.6035H42.2754ZM40.9082 23.6416C40.9082 23.4365 40.9697 23.2633 41.0928 23.1221C41.2204 22.9808 41.4072 22.9102 41.6533 22.9102C41.8949 22.9102 42.0794 22.9808 42.207 23.1221C42.3392 23.2633 42.4053 23.4365 42.4053 23.6416C42.4053 23.8376 42.3392 24.0062 42.207 24.1475C42.0794 24.2842 41.8949 24.3525 41.6533 24.3525C41.4072 24.3525 41.2204 24.2842 41.0928 24.1475C40.9697 24.0062 40.9082 23.8376 40.9082 23.6416ZM47.4023 25.6035V26.5742H43.4033V25.6035H47.4023ZM44.7568 23.8057H46.0215V31.168C46.0215 31.4186 46.0602 31.6077 46.1377 31.7354C46.2152 31.863 46.3154 31.9473 46.4385 31.9883C46.5615 32.0293 46.6937 32.0498 46.835 32.0498C46.9398 32.0498 47.0492 32.0407 47.1631 32.0225C47.2816 31.9997 47.3704 31.9814 47.4297 31.9678L47.4365 33C47.3363 33.0319 47.2041 33.0615 47.04 33.0889C46.8805 33.1208 46.6868 33.1367 46.459 33.1367C46.1491 33.1367 45.8643 33.0752 45.6045 32.9521C45.3447 32.8291 45.1374 32.624 44.9824 32.3369C44.832 32.0452 44.7568 31.6533 44.7568 31.1611V23.8057ZM50.2598 25.6035V33H48.9883V25.6035H50.2598ZM48.8926 23.6416C48.8926 23.4365 48.9541 23.2633 49.0771 23.1221C49.2048 22.9808 49.3916 22.9102 49.6377 22.9102C49.8792 22.9102 50.0638 22.9808 50.1914 23.1221C50.3236 23.2633 50.3896 23.4365 50.3896 23.6416C50.3896 23.8376 50.3236 24.0062 50.1914 24.1475C50.0638 24.2842 49.8792 24.3525 49.6377 24.3525C49.3916 24.3525 49.2048 24.2842 49.0771 24.1475C48.9541 24.0062 48.8926 23.8376 48.8926 23.6416ZM51.9551 29.3838V29.2266C51.9551 28.6934 52.0326 28.1989 52.1875 27.7432C52.3424 27.2829 52.5658 26.8841 52.8574 26.5469C53.1491 26.2051 53.5023 25.9408 53.917 25.7539C54.3317 25.5625 54.7965 25.4668 55.3115 25.4668C55.8311 25.4668 56.2982 25.5625 56.7129 25.7539C57.1322 25.9408 57.4876 26.2051 57.7793 26.5469C58.0755 26.8841 58.3011 27.2829 58.4561 27.7432C58.611 28.1989 58.6885 28.6934 58.6885 29.2266V29.3838C58.6885 29.917 58.611 30.4115 58.4561 30.8672C58.3011 31.3229 58.0755 31.7217 57.7793 32.0635C57.4876 32.4007 57.1344 32.665 56.7197 32.8564C56.3096 33.0433 55.8447 33.1367 55.3252 33.1367C54.8057 33.1367 54.3385 33.0433 53.9238 32.8564C53.5091 32.665 53.1536 32.4007 52.8574 32.0635C52.5658 31.7217 52.3424 31.3229 52.1875 30.8672C52.0326 30.4115 51.9551 29.917 51.9551 29.3838ZM53.2197 29.2266V29.3838C53.2197 29.7529 53.263 30.1016 53.3496 30.4297C53.4362 30.7533 53.5661 31.0404 53.7393 31.291C53.917 31.5417 54.138 31.7399 54.4023 31.8857C54.6667 32.027 54.9743 32.0977 55.3252 32.0977C55.6715 32.0977 55.9746 32.027 56.2344 31.8857C56.4987 31.7399 56.7174 31.5417 56.8906 31.291C57.0638 31.0404 57.1937 30.7533 57.2803 30.4297C57.3714 30.1016 57.417 29.7529 57.417 29.3838V29.2266C57.417 28.862 57.3714 28.5179 57.2803 28.1943C57.1937 27.8662 57.0615 27.5768 56.8838 27.3262C56.7106 27.071 56.4919 26.8704 56.2275 26.7246C55.9678 26.5788 55.6624 26.5059 55.3115 26.5059C54.9652 26.5059 54.6598 26.5788 54.3955 26.7246C54.1357 26.8704 53.917 27.071 53.7393 27.3262C53.5661 27.5768 53.4362 27.8662 53.3496 28.1943C53.263 28.5179 53.2197 28.862 53.2197 29.2266ZM61.5391 27.1826V33H60.2744V25.6035H61.4707L61.5391 27.1826ZM61.2383 29.0215L60.7119 29.001C60.7165 28.4951 60.7917 28.028 60.9375 27.5996C61.0833 27.1667 61.2884 26.7907 61.5527 26.4717C61.8171 26.1527 62.1315 25.9066 62.4961 25.7334C62.8652 25.5557 63.2731 25.4668 63.7197 25.4668C64.0843 25.4668 64.4124 25.5169 64.7041 25.6172C64.9958 25.7129 65.2441 25.8678 65.4492 26.082C65.6589 26.2962 65.8184 26.5742 65.9277 26.916C66.0371 27.2533 66.0918 27.6657 66.0918 28.1533V33H64.8203V28.1396C64.8203 27.7523 64.7633 27.4424 64.6494 27.21C64.5355 26.973 64.3691 26.8021 64.1504 26.6973C63.9316 26.5879 63.6628 26.5332 63.3438 26.5332C63.0293 26.5332 62.7422 26.5993 62.4824 26.7314C62.2272 26.8636 62.0062 27.0459 61.8193 27.2783C61.637 27.5107 61.4935 27.7773 61.3887 28.0781C61.2884 28.3743 61.2383 28.6888 61.2383 29.0215ZM72.374 31.7354V27.9277C72.374 27.6361 72.3148 27.3831 72.1963 27.1689C72.0824 26.9502 71.9092 26.7816 71.6768 26.6631C71.4443 26.5446 71.1572 26.4854 70.8154 26.4854C70.4964 26.4854 70.2161 26.54 69.9746 26.6494C69.7376 26.7588 69.5508 26.9023 69.4141 27.0801C69.2819 27.2578 69.2158 27.4492 69.2158 27.6543H67.9512C67.9512 27.39 68.0195 27.1279 68.1562 26.8682C68.293 26.6084 68.4889 26.3737 68.7441 26.1641C69.0039 25.9499 69.3138 25.7812 69.6738 25.6582C70.0384 25.5306 70.444 25.4668 70.8906 25.4668C71.4284 25.4668 71.9023 25.5579 72.3125 25.7402C72.7272 25.9225 73.0508 26.1982 73.2832 26.5674C73.5202 26.932 73.6387 27.39 73.6387 27.9414V31.3867C73.6387 31.6328 73.6592 31.8949 73.7002 32.1729C73.7458 32.4508 73.8118 32.6901 73.8984 32.8906V33H72.5791C72.5153 32.8542 72.4652 32.6605 72.4287 32.4189C72.3923 32.1729 72.374 31.945 72.374 31.7354ZM72.5928 28.5156L72.6064 29.4043H71.3281C70.9681 29.4043 70.6468 29.4339 70.3643 29.4932C70.0817 29.5479 69.8447 29.6322 69.6533 29.7461C69.4619 29.86 69.3161 30.0036 69.2158 30.1768C69.1156 30.3454 69.0654 30.5436 69.0654 30.7715C69.0654 31.0039 69.1178 31.2158 69.2227 31.4072C69.3275 31.5986 69.4847 31.7513 69.6943 31.8652C69.9085 31.9746 70.1706 32.0293 70.4805 32.0293C70.8678 32.0293 71.2096 31.9473 71.5059 31.7832C71.8021 31.6191 72.0368 31.4186 72.21 31.1816C72.3877 30.9447 72.4834 30.7145 72.4971 30.4912L73.0371 31.0996C73.0052 31.291 72.9186 31.5029 72.7773 31.7354C72.6361 31.9678 72.4469 32.1911 72.21 32.4053C71.9775 32.6149 71.6995 32.7904 71.376 32.9316C71.057 33.0684 70.6969 33.1367 70.2959 33.1367C69.7946 33.1367 69.3548 33.0387 68.9766 32.8428C68.6029 32.6468 68.3112 32.3848 68.1016 32.0566C67.8965 31.724 67.7939 31.3525 67.7939 30.9424C67.7939 30.5459 67.8714 30.1973 68.0264 29.8965C68.1813 29.5911 68.4046 29.3382 68.6963 29.1377C68.988 28.9326 69.3389 28.7777 69.749 28.6729C70.1592 28.568 70.6172 28.5156 71.123 28.5156H72.5928ZM77.002 22.5V33H75.7305V22.5H77.002ZM83.8789 25.6035V33H82.6074V25.6035H83.8789ZM82.5117 23.6416C82.5117 23.4365 82.5732 23.2633 82.6963 23.1221C82.8239 22.9808 83.0107 22.9102 83.2568 22.9102C83.4984 22.9102 83.6829 22.9808 83.8105 23.1221C83.9427 23.2633 84.0088 23.4365 84.0088 23.6416C84.0088 23.8376 83.9427 24.0062 83.8105 24.1475C83.6829 24.2842 83.4984 24.3525 83.2568 24.3525C83.0107 24.3525 82.8239 24.2842 82.6963 24.1475C82.5732 24.0062 82.5117 23.8376 82.5117 23.6416ZM87.1738 27.1826V33H85.9092V25.6035H87.1055L87.1738 27.1826ZM86.873 29.0215L86.3467 29.001C86.3512 28.4951 86.4264 28.028 86.5723 27.5996C86.7181 27.1667 86.9232 26.7907 87.1875 26.4717C87.4518 26.1527 87.7663 25.9066 88.1309 25.7334C88.5 25.5557 88.9079 25.4668 89.3545 25.4668C89.7191 25.4668 90.0472 25.5169 90.3389 25.6172C90.6305 25.7129 90.8789 25.8678 91.084 26.082C91.2936 26.2962 91.4531 26.5742 91.5625 26.916C91.6719 27.2533 91.7266 27.6657 91.7266 28.1533V33H90.4551V28.1396C90.4551 27.7523 90.3981 27.4424 90.2842 27.21C90.1702 26.973 90.0039 26.8021 89.7852 26.6973C89.5664 26.5879 89.2975 26.5332 88.9785 26.5332C88.6641 26.5332 88.377 26.5993 88.1172 26.7314C87.862 26.8636 87.641 27.0459 87.4541 27.2783C87.2718 27.5107 87.1283 27.7773 87.0234 28.0781C86.9232 28.3743 86.873 28.6888 86.873 29.0215ZM95.5342 33H94.2695V24.8242C94.2695 24.291 94.3652 23.8421 94.5566 23.4775C94.7526 23.1084 95.0329 22.8304 95.3975 22.6436C95.762 22.4521 96.195 22.3564 96.6963 22.3564C96.8421 22.3564 96.988 22.3656 97.1338 22.3838C97.2842 22.402 97.43 22.4294 97.5713 22.4658L97.5029 23.498C97.4072 23.4753 97.2979 23.4593 97.1748 23.4502C97.0563 23.4411 96.9378 23.4365 96.8193 23.4365C96.5505 23.4365 96.318 23.4912 96.1221 23.6006C95.9307 23.7054 95.7848 23.8604 95.6846 24.0654C95.5843 24.2705 95.5342 24.5234 95.5342 24.8242V33ZM97.1064 25.6035V26.5742H93.1006V25.6035H97.1064ZM98.1797 29.3838V29.2266C98.1797 28.6934 98.2572 28.1989 98.4121 27.7432C98.5671 27.2829 98.7904 26.8841 99.082 26.5469C99.3737 26.2051 99.7269 25.9408 100.142 25.7539C100.556 25.5625 101.021 25.4668 101.536 25.4668C102.056 25.4668 102.523 25.5625 102.938 25.7539C103.357 25.9408 103.712 26.2051 104.004 26.5469C104.3 26.8841 104.526 27.2829 104.681 27.7432C104.836 28.1989 104.913 28.6934 104.913 29.2266V29.3838C104.913 29.917 104.836 30.4115 104.681 30.8672C104.526 31.3229 104.3 31.7217 104.004 32.0635C103.712 32.4007 103.359 32.665 102.944 32.8564C102.534 33.0433 102.069 33.1367 101.55 33.1367C101.03 33.1367 100.563 33.0433 100.148 32.8564C99.7337 32.665 99.3783 32.4007 99.082 32.0635C98.7904 31.7217 98.5671 31.3229 98.4121 30.8672C98.2572 30.4115 98.1797 29.917 98.1797 29.3838ZM99.4443 29.2266V29.3838C99.4443 29.7529 99.4876 30.1016 99.5742 30.4297C99.6608 30.7533 99.7907 31.0404 99.9639 31.291C100.142 31.5417 100.363 31.7399 100.627 31.8857C100.891 32.027 101.199 32.0977 101.55 32.0977C101.896 32.0977 102.199 32.027 102.459 31.8857C102.723 31.7399 102.942 31.5417 103.115 31.291C103.288 31.0404 103.418 30.7533 103.505 30.4297C103.596 30.1016 103.642 29.7529 103.642 29.3838V29.2266C103.642 28.862 103.596 28.5179 103.505 28.1943C103.418 27.8662 103.286 27.5768 103.108 27.3262C102.935 27.071 102.716 26.8704 102.452 26.7246C102.192 26.5788 101.887 26.5059 101.536 26.5059C101.19 26.5059 100.884 26.5788 100.62 26.7246C100.36 26.8704 100.142 27.071 99.9639 27.3262C99.7907 27.5768 99.6608 27.8662 99.5742 28.1943C99.4876 28.5179 99.4443 28.862 99.4443 29.2266ZM107.764 26.7656V33H106.499V25.6035H107.729L107.764 26.7656ZM110.074 25.5625L110.067 26.7383C109.963 26.7155 109.862 26.7018 109.767 26.6973C109.675 26.6882 109.571 26.6836 109.452 26.6836C109.16 26.6836 108.903 26.7292 108.68 26.8203C108.456 26.9115 108.267 27.0391 108.112 27.2031C107.957 27.3672 107.834 27.5632 107.743 27.791C107.657 28.0143 107.6 28.2604 107.572 28.5293L107.217 28.7344C107.217 28.2878 107.26 27.8685 107.347 27.4766C107.438 27.0846 107.577 26.7383 107.764 26.4375C107.951 26.1322 108.188 25.8952 108.475 25.7266C108.766 25.5534 109.113 25.4668 109.514 25.4668C109.605 25.4668 109.71 25.4782 109.828 25.501C109.947 25.5192 110.029 25.5397 110.074 25.5625ZM112.501 27.0732V33H111.229V25.6035H112.433L112.501 27.0732ZM112.241 29.0215L111.653 29.001C111.658 28.4951 111.724 28.028 111.852 27.5996C111.979 27.1667 112.168 26.7907 112.419 26.4717C112.67 26.1527 112.982 25.9066 113.355 25.7334C113.729 25.5557 114.162 25.4668 114.654 25.4668C115.001 25.4668 115.32 25.5169 115.611 25.6172C115.903 25.7129 116.156 25.8656 116.37 26.0752C116.584 26.2848 116.751 26.5537 116.869 26.8818C116.988 27.21 117.047 27.6064 117.047 28.0713V33H115.782V28.1328C115.782 27.7454 115.716 27.4355 115.584 27.2031C115.456 26.9707 115.274 26.8021 115.037 26.6973C114.8 26.5879 114.522 26.5332 114.203 26.5332C113.829 26.5332 113.517 26.5993 113.267 26.7314C113.016 26.8636 112.815 27.0459 112.665 27.2783C112.515 27.5107 112.405 27.7773 112.337 28.0781C112.273 28.3743 112.241 28.6888 112.241 29.0215ZM117.033 28.3242L116.186 28.584C116.19 28.1784 116.256 27.7887 116.384 27.415C116.516 27.0413 116.705 26.7087 116.951 26.417C117.202 26.1253 117.509 25.8952 117.874 25.7266C118.239 25.5534 118.656 25.4668 119.125 25.4668C119.521 25.4668 119.872 25.5192 120.178 25.624C120.488 25.7288 120.747 25.8906 120.957 26.1094C121.171 26.3236 121.333 26.5993 121.442 26.9365C121.552 27.2738 121.606 27.6748 121.606 28.1396V33H120.335V28.126C120.335 27.7113 120.269 27.39 120.137 27.1621C120.009 26.9297 119.827 26.7679 119.59 26.6768C119.357 26.5811 119.079 26.5332 118.756 26.5332C118.478 26.5332 118.232 26.5811 118.018 26.6768C117.803 26.7725 117.623 26.9046 117.478 27.0732C117.332 27.2373 117.22 27.4264 117.143 27.6406C117.07 27.8548 117.033 28.0827 117.033 28.3242ZM127.882 31.7354V27.9277C127.882 27.6361 127.823 27.3831 127.704 27.1689C127.59 26.9502 127.417 26.7816 127.185 26.6631C126.952 26.5446 126.665 26.4854 126.323 26.4854C126.004 26.4854 125.724 26.54 125.482 26.6494C125.245 26.7588 125.059 26.9023 124.922 27.0801C124.79 27.2578 124.724 27.4492 124.724 27.6543H123.459C123.459 27.39 123.527 27.1279 123.664 26.8682C123.801 26.6084 123.997 26.3737 124.252 26.1641C124.512 25.9499 124.822 25.7812 125.182 25.6582C125.546 25.5306 125.952 25.4668 126.398 25.4668C126.936 25.4668 127.41 25.5579 127.82 25.7402C128.235 25.9225 128.559 26.1982 128.791 26.5674C129.028 26.932 129.146 27.39 129.146 27.9414V31.3867C129.146 31.6328 129.167 31.8949 129.208 32.1729C129.254 32.4508 129.32 32.6901 129.406 32.8906V33H128.087C128.023 32.8542 127.973 32.6605 127.937 32.4189C127.9 32.1729 127.882 31.945 127.882 31.7354ZM128.101 28.5156L128.114 29.4043H126.836C126.476 29.4043 126.155 29.4339 125.872 29.4932C125.59 29.5479 125.353 29.6322 125.161 29.7461C124.97 29.86 124.824 30.0036 124.724 30.1768C124.623 30.3454 124.573 30.5436 124.573 30.7715C124.573 31.0039 124.626 31.2158 124.73 31.4072C124.835 31.5986 124.993 31.7513 125.202 31.8652C125.416 31.9746 125.678 32.0293 125.988 32.0293C126.376 32.0293 126.717 31.9473 127.014 31.7832C127.31 31.6191 127.545 31.4186 127.718 31.1816C127.896 30.9447 127.991 30.7145 128.005 30.4912L128.545 31.0996C128.513 31.291 128.426 31.5029 128.285 31.7354C128.144 31.9678 127.955 32.1911 127.718 32.4053C127.485 32.6149 127.207 32.7904 126.884 32.9316C126.565 33.0684 126.205 33.1367 125.804 33.1367C125.302 33.1367 124.863 33.0387 124.484 32.8428C124.111 32.6468 123.819 32.3848 123.609 32.0566C123.404 31.724 123.302 31.3525 123.302 30.9424C123.302 30.5459 123.379 30.1973 123.534 29.8965C123.689 29.5911 123.912 29.3382 124.204 29.1377C124.496 28.9326 124.847 28.7777 125.257 28.6729C125.667 28.568 126.125 28.5156 126.631 28.5156H128.101ZM134.232 25.6035V26.5742H130.233V25.6035H134.232ZM131.587 23.8057H132.852V31.168C132.852 31.4186 132.89 31.6077 132.968 31.7354C133.045 31.863 133.146 31.9473 133.269 31.9883C133.392 32.0293 133.524 32.0498 133.665 32.0498C133.77 32.0498 133.879 32.0407 133.993 32.0225C134.112 31.9997 134.201 31.9814 134.26 31.9678L134.267 33C134.166 33.0319 134.034 33.0615 133.87 33.0889C133.711 33.1208 133.517 33.1367 133.289 33.1367C132.979 33.1367 132.694 33.0752 132.435 32.9521C132.175 32.8291 131.967 32.624 131.812 32.3369C131.662 32.0452 131.587 31.6533 131.587 31.1611V23.8057ZM137.09 25.6035V33H135.818V25.6035H137.09ZM135.723 23.6416C135.723 23.4365 135.784 23.2633 135.907 23.1221C136.035 22.9808 136.222 22.9102 136.468 22.9102C136.709 22.9102 136.894 22.9808 137.021 23.1221C137.154 23.2633 137.22 23.4365 137.22 23.6416C137.22 23.8376 137.154 24.0062 137.021 24.1475C136.894 24.2842 136.709 24.3525 136.468 24.3525C136.222 24.3525 136.035 24.2842 135.907 24.1475C135.784 24.0062 135.723 23.8376 135.723 23.6416ZM138.785 29.3838V29.2266C138.785 28.6934 138.863 28.1989 139.018 27.7432C139.173 27.2829 139.396 26.8841 139.688 26.5469C139.979 26.2051 140.332 25.9408 140.747 25.7539C141.162 25.5625 141.627 25.4668 142.142 25.4668C142.661 25.4668 143.128 25.5625 143.543 25.7539C143.962 25.9408 144.318 26.2051 144.609 26.5469C144.906 26.8841 145.131 27.2829 145.286 27.7432C145.441 28.1989 145.519 28.6934 145.519 29.2266V29.3838C145.519 29.917 145.441 30.4115 145.286 30.8672C145.131 31.3229 144.906 31.7217 144.609 32.0635C144.318 32.4007 143.965 32.665 143.55 32.8564C143.14 33.0433 142.675 33.1367 142.155 33.1367C141.636 33.1367 141.169 33.0433 140.754 32.8564C140.339 32.665 139.984 32.4007 139.688 32.0635C139.396 31.7217 139.173 31.3229 139.018 30.8672C138.863 30.4115 138.785 29.917 138.785 29.3838ZM140.05 29.2266V29.3838C140.05 29.7529 140.093 30.1016 140.18 30.4297C140.266 30.7533 140.396 31.0404 140.569 31.291C140.747 31.5417 140.968 31.7399 141.232 31.8857C141.497 32.027 141.804 32.0977 142.155 32.0977C142.502 32.0977 142.805 32.027 143.064 31.8857C143.329 31.7399 143.548 31.5417 143.721 31.291C143.894 31.0404 144.024 30.7533 144.11 30.4297C144.201 30.1016 144.247 29.7529 144.247 29.3838V29.2266C144.247 28.862 144.201 28.5179 144.11 28.1943C144.024 27.8662 143.892 27.5768 143.714 27.3262C143.541 27.071 143.322 26.8704 143.058 26.7246C142.798 26.5788 142.493 26.5059 142.142 26.5059C141.795 26.5059 141.49 26.5788 141.226 26.7246C140.966 26.8704 140.747 27.071 140.569 27.3262C140.396 27.5768 140.266 27.8662 140.18 28.1943C140.093 28.5179 140.05 28.862 140.05 29.2266ZM148.369 27.1826V33H147.104V25.6035H148.301L148.369 27.1826ZM148.068 29.0215L147.542 29.001C147.547 28.4951 147.622 28.028 147.768 27.5996C147.913 27.1667 148.118 26.7907 148.383 26.4717C148.647 26.1527 148.962 25.9066 149.326 25.7334C149.695 25.5557 150.103 25.4668 150.55 25.4668C150.914 25.4668 151.243 25.5169 151.534 25.6172C151.826 25.7129 152.074 25.8678 152.279 26.082C152.489 26.2962 152.648 26.5742 152.758 26.916C152.867 27.2533 152.922 27.6657 152.922 28.1533V33H151.65V28.1396C151.65 27.7523 151.593 27.4424 151.479 27.21C151.366 26.973 151.199 26.8021 150.98 26.6973C150.762 26.5879 150.493 26.5332 150.174 26.5332C149.859 26.5332 149.572 26.5993 149.312 26.7314C149.057 26.8636 148.836 27.0459 148.649 27.2783C148.467 27.5107 148.324 27.7773 148.219 28.0781C148.118 28.3743 148.068 28.6888 148.068 29.0215Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"42",width:"266",height:"81",rx:"3",fill:"white"}),(0,h.createElement)("path",{d:"M29.4814 59.3755H27.0122V58.3789H29.4814C29.9596 58.3789 30.3468 58.3027 30.6431 58.1504C30.9393 57.998 31.1551 57.7865 31.2905 57.5156C31.4302 57.2448 31.5 56.9359 31.5 56.5889C31.5 56.2715 31.4302 55.9731 31.2905 55.6938C31.1551 55.4146 30.9393 55.1903 30.6431 55.021C30.3468 54.8475 29.9596 54.7607 29.4814 54.7607H27.2979V63H26.0728V53.7578H29.4814C30.1797 53.7578 30.77 53.8784 31.2524 54.1196C31.7349 54.3608 32.1009 54.6951 32.3506 55.1226C32.6003 55.5457 32.7251 56.0303 32.7251 56.5762C32.7251 57.1686 32.6003 57.6743 32.3506 58.0933C32.1009 58.5122 31.7349 58.8317 31.2524 59.0518C30.77 59.2676 30.1797 59.3755 29.4814 59.3755ZM35.3721 56.1318V63H34.1914V56.1318H35.3721ZM34.1025 54.3101C34.1025 54.1196 34.1597 53.9588 34.2739 53.8276C34.3924 53.6965 34.5659 53.6309 34.7944 53.6309C35.0187 53.6309 35.1901 53.6965 35.3086 53.8276C35.4313 53.9588 35.4927 54.1196 35.4927 54.3101C35.4927 54.492 35.4313 54.6486 35.3086 54.7798C35.1901 54.9067 35.0187 54.9702 34.7944 54.9702C34.5659 54.9702 34.3924 54.9067 34.2739 54.7798C34.1597 54.6486 34.1025 54.492 34.1025 54.3101ZM40.0059 62.1621C40.2852 62.1621 40.5433 62.105 40.7803 61.9907C41.0173 61.8765 41.2119 61.7199 41.3643 61.521C41.5166 61.3179 41.6034 61.0872 41.6245 60.8291H42.7417C42.7205 61.2354 42.583 61.6141 42.3291 61.9653C42.0794 62.3123 41.7515 62.5938 41.3452 62.8096C40.939 63.0212 40.4925 63.127 40.0059 63.127C39.4896 63.127 39.0389 63.036 38.6538 62.854C38.2729 62.672 37.9556 62.4224 37.7017 62.105C37.452 61.7876 37.2637 61.4237 37.1367 61.0132C37.014 60.5985 36.9526 60.1605 36.9526 59.6992V59.4326C36.9526 58.9714 37.014 58.5355 37.1367 58.125C37.2637 57.7103 37.452 57.3442 37.7017 57.0269C37.9556 56.7095 38.2729 56.4598 38.6538 56.2778C39.0389 56.0959 39.4896 56.0049 40.0059 56.0049C40.5433 56.0049 41.013 56.1149 41.415 56.335C41.8171 56.5508 42.1323 56.847 42.3608 57.2236C42.5936 57.596 42.7205 58.0192 42.7417 58.4932H41.6245C41.6034 58.2096 41.5229 57.9536 41.3833 57.7251C41.2479 57.4966 41.0617 57.3146 40.8247 57.1792C40.592 57.0396 40.319 56.9697 40.0059 56.9697C39.6462 56.9697 39.3436 57.0417 39.0981 57.1855C38.8569 57.3252 38.6644 57.5156 38.5205 57.7568C38.3809 57.9938 38.2793 58.2583 38.2158 58.5503C38.1566 58.8381 38.127 59.1322 38.127 59.4326V59.6992C38.127 59.9997 38.1566 60.2959 38.2158 60.5879C38.2751 60.8799 38.3745 61.1444 38.5142 61.3813C38.658 61.6183 38.8506 61.8088 39.0918 61.9526C39.3372 62.0923 39.6419 62.1621 40.0059 62.1621ZM45.2427 53.25V63H44.062V53.25H45.2427ZM49.4385 56.1318L46.4424 59.3374L44.7666 61.0767L44.6714 59.8262L45.8711 58.3916L48.0039 56.1318H49.4385ZM48.3657 63L45.9155 59.7246L46.5249 58.6772L49.7495 63H48.3657ZM55.0435 57.4966V63H53.8628V56.1318H54.98L55.0435 57.4966ZM54.8022 59.3057L54.2563 59.2866C54.2606 58.8169 54.3219 58.3831 54.4404 57.9854C54.5589 57.5833 54.7345 57.2342 54.9673 56.938C55.2 56.6418 55.4899 56.4132 55.8369 56.2524C56.1839 56.0874 56.5859 56.0049 57.043 56.0049C57.3646 56.0049 57.6608 56.0514 57.9316 56.1445C58.2025 56.2334 58.4373 56.3752 58.6362 56.5698C58.8351 56.7645 58.9896 57.0142 59.0996 57.3188C59.2096 57.6235 59.2646 57.9917 59.2646 58.4233V63H58.0903V58.4805C58.0903 58.1208 58.029 57.833 57.9062 57.6172C57.7878 57.4014 57.6185 57.2448 57.3984 57.1475C57.1784 57.0459 56.9202 56.9951 56.624 56.9951C56.277 56.9951 55.9871 57.0565 55.7544 57.1792C55.5216 57.3019 55.3354 57.4712 55.1958 57.687C55.0562 57.9028 54.9546 58.1504 54.8911 58.4297C54.8319 58.7048 54.8022 58.9967 54.8022 59.3057ZM59.252 58.6582L58.4648 58.8994C58.4691 58.5228 58.5304 58.161 58.6489 57.814C58.7716 57.467 58.9473 57.158 59.1758 56.8872C59.4085 56.6164 59.6942 56.4027 60.0327 56.2461C60.3713 56.0853 60.7585 56.0049 61.1943 56.0049C61.5625 56.0049 61.8883 56.0535 62.1719 56.1509C62.4596 56.2482 62.7008 56.3984 62.8955 56.6016C63.0944 56.8005 63.2446 57.0565 63.3462 57.3696C63.4478 57.6828 63.4985 58.0552 63.4985 58.4868V63H62.3179V58.4741C62.3179 58.089 62.2565 57.7907 62.1338 57.5791C62.0153 57.3633 61.846 57.2131 61.626 57.1284C61.4102 57.0396 61.152 56.9951 60.8516 56.9951C60.5934 56.9951 60.3649 57.0396 60.166 57.1284C59.9671 57.2173 59.8 57.34 59.6646 57.4966C59.5291 57.6489 59.4255 57.8245 59.3535 58.0234C59.2858 58.2223 59.252 58.4339 59.252 58.6582ZM68.126 63.127C67.6478 63.127 67.214 63.0465 66.8247 62.8857C66.4396 62.7207 66.1074 62.4901 65.8281 62.1938C65.5531 61.8976 65.3415 61.5464 65.1934 61.1401C65.0452 60.7339 64.9712 60.2896 64.9712 59.8071V59.5405C64.9712 58.9819 65.0537 58.4847 65.2188 58.0488C65.3838 57.6087 65.6081 57.2363 65.8916 56.9316C66.1751 56.627 66.4967 56.3963 66.8564 56.2397C67.2161 56.0832 67.5885 56.0049 67.9736 56.0049C68.4645 56.0049 68.8877 56.0895 69.2432 56.2588C69.6029 56.4281 69.897 56.665 70.1255 56.9697C70.354 57.2702 70.5233 57.6257 70.6333 58.0361C70.7433 58.4424 70.7983 58.8867 70.7983 59.3691V59.896H65.6694V58.9375H69.624V58.8486C69.6071 58.5439 69.5436 58.2477 69.4336 57.96C69.3278 57.6722 69.1585 57.4352 68.9258 57.249C68.693 57.0628 68.3757 56.9697 67.9736 56.9697C67.707 56.9697 67.4616 57.0269 67.2373 57.1411C67.013 57.2511 66.8205 57.4162 66.6597 57.6362C66.4989 57.8563 66.374 58.125 66.2852 58.4424C66.1963 58.7598 66.1519 59.1258 66.1519 59.5405V59.8071C66.1519 60.133 66.1963 60.4398 66.2852 60.7275C66.3783 61.0111 66.5116 61.2607 66.6851 61.4766C66.8628 61.6924 67.0765 61.8617 67.3262 61.9844C67.5801 62.1071 67.8678 62.1685 68.1895 62.1685C68.6042 62.1685 68.9554 62.0838 69.2432 61.9146C69.5309 61.7453 69.7827 61.5189 69.9985 61.2354L70.7095 61.8003C70.5614 62.0246 70.373 62.2383 70.1445 62.4414C69.916 62.6445 69.6346 62.8096 69.3003 62.9365C68.9702 63.0635 68.5788 63.127 68.126 63.127ZM79.5962 61.4131V56.1318H80.7769V63H79.6533L79.5962 61.4131ZM79.8184 59.9658L80.3071 59.9531C80.3071 60.4102 80.2585 60.8333 80.1611 61.2227C80.068 61.6077 79.9157 61.9421 79.7041 62.2256C79.4925 62.5091 79.2153 62.7313 78.8726 62.8921C78.5298 63.0487 78.113 63.127 77.6221 63.127C77.2878 63.127 76.981 63.0783 76.7017 62.981C76.4266 62.8836 76.1896 62.7334 75.9907 62.5303C75.7918 62.3271 75.6374 62.0627 75.5273 61.7368C75.4215 61.411 75.3687 61.0195 75.3687 60.5625V56.1318H76.543V60.5752C76.543 60.8841 76.5768 61.1401 76.6445 61.3433C76.7165 61.5422 76.8117 61.7008 76.9302 61.8193C77.0529 61.9336 77.1883 62.014 77.3364 62.0605C77.4888 62.1071 77.6453 62.1304 77.8062 62.1304C78.3055 62.1304 78.7012 62.0352 78.9932 61.8447C79.2852 61.6501 79.4946 61.3898 79.6216 61.064C79.7528 60.7339 79.8184 60.3678 79.8184 59.9658ZM83.7412 57.4521V65.6406H82.5605V56.1318H83.6396L83.7412 57.4521ZM88.3687 59.5088V59.6421C88.3687 60.1414 88.3094 60.6048 88.1909 61.0322C88.0724 61.4554 87.8989 61.8236 87.6704 62.1367C87.4461 62.4499 87.1689 62.6932 86.8389 62.8667C86.5088 63.0402 86.13 63.127 85.7026 63.127C85.2668 63.127 84.8817 63.055 84.5474 62.9111C84.2131 62.7673 83.9295 62.5578 83.6968 62.2827C83.464 62.0076 83.2778 61.6776 83.1382 61.2925C83.0028 60.9074 82.9097 60.4736 82.8589 59.9912V59.2803C82.9097 58.7725 83.0049 58.3175 83.1445 57.9155C83.2842 57.5135 83.4683 57.1707 83.6968 56.8872C83.9295 56.5994 84.2109 56.3815 84.541 56.2334C84.8711 56.0811 85.252 56.0049 85.6836 56.0049C86.1152 56.0049 86.4982 56.0895 86.8325 56.2588C87.1668 56.4238 87.4482 56.6608 87.6768 56.9697C87.9053 57.2786 88.0767 57.6489 88.1909 58.0806C88.3094 58.508 88.3687 58.984 88.3687 59.5088ZM87.188 59.6421V59.5088C87.188 59.166 87.152 58.8444 87.0801 58.5439C87.0081 58.2393 86.896 57.9727 86.7437 57.7441C86.5955 57.5114 86.4051 57.3294 86.1724 57.1982C85.9396 57.0628 85.6624 56.9951 85.3408 56.9951C85.0446 56.9951 84.7865 57.0459 84.5664 57.1475C84.3506 57.249 84.1665 57.3866 84.0142 57.5601C83.8618 57.7293 83.737 57.924 83.6396 58.144C83.5465 58.3599 83.4767 58.5841 83.4302 58.8169V60.4609C83.5148 60.7572 83.6333 61.0365 83.7856 61.2988C83.938 61.557 84.1411 61.7664 84.395 61.9272C84.6489 62.0838 84.9684 62.1621 85.3535 62.1621C85.6709 62.1621 85.9438 62.0965 86.1724 61.9653C86.4051 61.8299 86.5955 61.6458 86.7437 61.4131C86.896 61.1803 87.0081 60.9137 87.0801 60.6133C87.152 60.3086 87.188 59.9849 87.188 59.6421ZM97.1411 61.8257V58.29C97.1411 58.0192 97.0861 57.7843 96.9761 57.5854C96.8703 57.3823 96.7095 57.2257 96.4937 57.1157C96.2778 57.0057 96.0112 56.9507 95.6938 56.9507C95.3976 56.9507 95.1374 57.0015 94.9131 57.103C94.693 57.2046 94.5195 57.3379 94.3926 57.5029C94.2699 57.668 94.2085 57.8457 94.2085 58.0361H93.0342C93.0342 57.7907 93.0977 57.5474 93.2246 57.3062C93.3516 57.0649 93.5335 56.847 93.7705 56.6523C94.0117 56.4535 94.2995 56.2969 94.6338 56.1826C94.9723 56.0641 95.349 56.0049 95.7637 56.0049C96.263 56.0049 96.7031 56.0895 97.084 56.2588C97.4691 56.4281 97.7695 56.6841 97.9854 57.0269C98.2054 57.3654 98.3154 57.7907 98.3154 58.3027V61.502C98.3154 61.7305 98.3345 61.9738 98.3726 62.2319C98.4149 62.4901 98.4762 62.7122 98.5566 62.8984V63H97.3315C97.2723 62.8646 97.2257 62.6847 97.1919 62.4604C97.158 62.2319 97.1411 62.0203 97.1411 61.8257ZM97.3442 58.8359L97.3569 59.6611H96.1699C95.8356 59.6611 95.5373 59.6886 95.2749 59.7437C95.0125 59.7944 94.7925 59.8727 94.6147 59.9785C94.437 60.0843 94.3016 60.2176 94.2085 60.3784C94.1154 60.535 94.0688 60.7191 94.0688 60.9307C94.0688 61.1465 94.1175 61.3433 94.2148 61.521C94.3122 61.6987 94.4582 61.8405 94.6528 61.9463C94.8517 62.0479 95.0951 62.0986 95.3828 62.0986C95.7425 62.0986 96.0599 62.0225 96.335 61.8701C96.61 61.7178 96.828 61.5316 96.9888 61.3115C97.1538 61.0915 97.2427 60.8778 97.2554 60.6704L97.7568 61.2354C97.7272 61.4131 97.6468 61.6099 97.5156 61.8257C97.3844 62.0415 97.2088 62.2489 96.9888 62.4478C96.7729 62.6424 96.5148 62.8053 96.2144 62.9365C95.9181 63.0635 95.5838 63.127 95.2114 63.127C94.7459 63.127 94.3376 63.036 93.9863 62.854C93.6393 62.672 93.3685 62.4287 93.1738 62.124C92.9834 61.8151 92.8882 61.4702 92.8882 61.0894C92.8882 60.7212 92.9601 60.3975 93.104 60.1182C93.2479 59.8346 93.4552 59.5998 93.7261 59.4136C93.9969 59.2231 94.3228 59.0793 94.7036 58.9819C95.0845 58.8846 95.5098 58.8359 95.9795 58.8359H97.3442ZM103.038 56.1318V57.0332H99.3247V56.1318H103.038ZM100.582 54.4624H101.756V61.2988C101.756 61.5316 101.792 61.7072 101.864 61.8257C101.936 61.9442 102.029 62.0225 102.143 62.0605C102.257 62.0986 102.38 62.1177 102.511 62.1177C102.609 62.1177 102.71 62.1092 102.816 62.0923C102.926 62.0711 103.008 62.0542 103.063 62.0415L103.07 63C102.977 63.0296 102.854 63.0571 102.702 63.0825C102.554 63.1121 102.374 63.127 102.162 63.127C101.874 63.127 101.61 63.0698 101.369 62.9556C101.127 62.8413 100.935 62.6509 100.791 62.3843C100.651 62.1134 100.582 61.7495 100.582 61.2925V54.4624ZM110.516 56.1318V57.0332H106.802V56.1318H110.516ZM108.059 54.4624H109.233V61.2988C109.233 61.5316 109.269 61.7072 109.341 61.8257C109.413 61.9442 109.506 62.0225 109.621 62.0605C109.735 62.0986 109.858 62.1177 109.989 62.1177C110.086 62.1177 110.188 62.1092 110.293 62.0923C110.403 62.0711 110.486 62.0542 110.541 62.0415L110.547 63C110.454 63.0296 110.332 63.0571 110.179 63.0825C110.031 63.1121 109.851 63.127 109.64 63.127C109.352 63.127 109.087 63.0698 108.846 62.9556C108.605 62.8413 108.412 62.6509 108.269 62.3843C108.129 62.1134 108.059 61.7495 108.059 61.2925V54.4624ZM113.067 53.25V63H111.893V53.25H113.067ZM112.788 59.3057L112.299 59.2866C112.304 58.8169 112.373 58.3831 112.509 57.9854C112.644 57.5833 112.835 57.2342 113.08 56.938C113.326 56.6418 113.618 56.4132 113.956 56.2524C114.299 56.0874 114.678 56.0049 115.092 56.0049C115.431 56.0049 115.736 56.0514 116.006 56.1445C116.277 56.2334 116.508 56.3773 116.698 56.5762C116.893 56.7751 117.041 57.0332 117.143 57.3506C117.244 57.6637 117.295 58.0467 117.295 58.4995V63H116.114V58.4868C116.114 58.1271 116.061 57.8394 115.956 57.6235C115.85 57.4035 115.695 57.2448 115.492 57.1475C115.289 57.0459 115.039 56.9951 114.743 56.9951C114.451 56.9951 114.185 57.0565 113.943 57.1792C113.706 57.3019 113.501 57.4712 113.328 57.687C113.158 57.9028 113.025 58.1504 112.928 58.4297C112.835 58.7048 112.788 58.9967 112.788 59.3057ZM121.903 63.127C121.425 63.127 120.991 63.0465 120.602 62.8857C120.217 62.7207 119.885 62.4901 119.605 62.1938C119.33 61.8976 119.119 61.5464 118.971 61.1401C118.823 60.7339 118.749 60.2896 118.749 59.8071V59.5405C118.749 58.9819 118.831 58.4847 118.996 58.0488C119.161 57.6087 119.385 57.2363 119.669 56.9316C119.952 56.627 120.274 56.3963 120.634 56.2397C120.993 56.0832 121.366 56.0049 121.751 56.0049C122.242 56.0049 122.665 56.0895 123.021 56.2588C123.38 56.4281 123.674 56.665 123.903 56.9697C124.131 57.2702 124.301 57.6257 124.411 58.0361C124.521 58.4424 124.576 58.8867 124.576 59.3691V59.896H119.447V58.9375H123.401V58.8486C123.384 58.5439 123.321 58.2477 123.211 57.96C123.105 57.6722 122.936 57.4352 122.703 57.249C122.47 57.0628 122.153 56.9697 121.751 56.9697C121.484 56.9697 121.239 57.0269 121.015 57.1411C120.79 57.2511 120.598 57.4162 120.437 57.6362C120.276 57.8563 120.151 58.125 120.062 58.4424C119.974 58.7598 119.929 59.1258 119.929 59.5405V59.8071C119.929 60.133 119.974 60.4398 120.062 60.7275C120.156 61.0111 120.289 61.2607 120.462 61.4766C120.64 61.6924 120.854 61.8617 121.104 61.9844C121.357 62.1071 121.645 62.1685 121.967 62.1685C122.382 62.1685 122.733 62.0838 123.021 61.9146C123.308 61.7453 123.56 61.5189 123.776 61.2354L124.487 61.8003C124.339 62.0246 124.15 62.2383 123.922 62.4414C123.693 62.6445 123.412 62.8096 123.078 62.9365C122.748 63.0635 122.356 63.127 121.903 63.127ZM133.221 61.8257V58.29C133.221 58.0192 133.166 57.7843 133.056 57.5854C132.95 57.3823 132.79 57.2257 132.574 57.1157C132.358 57.0057 132.091 56.9507 131.774 56.9507C131.478 56.9507 131.217 57.0015 130.993 57.103C130.773 57.2046 130.6 57.3379 130.473 57.5029C130.35 57.668 130.289 57.8457 130.289 58.0361H129.114C129.114 57.7907 129.178 57.5474 129.305 57.3062C129.432 57.0649 129.614 56.847 129.851 56.6523C130.092 56.4535 130.38 56.2969 130.714 56.1826C131.052 56.0641 131.429 56.0049 131.844 56.0049C132.343 56.0049 132.783 56.0895 133.164 56.2588C133.549 56.4281 133.85 56.6841 134.065 57.0269C134.285 57.3654 134.396 57.7907 134.396 58.3027V61.502C134.396 61.7305 134.415 61.9738 134.453 62.2319C134.495 62.4901 134.556 62.7122 134.637 62.8984V63H133.412C133.352 62.8646 133.306 62.6847 133.272 62.4604C133.238 62.2319 133.221 62.0203 133.221 61.8257ZM133.424 58.8359L133.437 59.6611H132.25C131.916 59.6611 131.617 59.6886 131.355 59.7437C131.093 59.7944 130.873 59.8727 130.695 59.9785C130.517 60.0843 130.382 60.2176 130.289 60.3784C130.195 60.535 130.149 60.7191 130.149 60.9307C130.149 61.1465 130.198 61.3433 130.295 61.521C130.392 61.6987 130.538 61.8405 130.733 61.9463C130.932 62.0479 131.175 62.0986 131.463 62.0986C131.823 62.0986 132.14 62.0225 132.415 61.8701C132.69 61.7178 132.908 61.5316 133.069 61.3115C133.234 61.0915 133.323 60.8778 133.335 60.6704L133.837 61.2354C133.807 61.4131 133.727 61.6099 133.596 61.8257C133.465 62.0415 133.289 62.2489 133.069 62.4478C132.853 62.6424 132.595 62.8053 132.294 62.9365C131.998 63.0635 131.664 63.127 131.292 63.127C130.826 63.127 130.418 63.036 130.066 62.854C129.719 62.672 129.449 62.4287 129.254 62.124C129.063 61.8151 128.968 61.4702 128.968 61.0894C128.968 60.7212 129.04 60.3975 129.184 60.1182C129.328 59.8346 129.535 59.5998 129.806 59.4136C130.077 59.2231 130.403 59.0793 130.784 58.9819C131.165 58.8846 131.59 58.8359 132.06 58.8359H133.424ZM137.519 56.1318V63H136.338V56.1318H137.519ZM136.249 54.3101C136.249 54.1196 136.306 53.9588 136.42 53.8276C136.539 53.6965 136.712 53.6309 136.941 53.6309C137.165 53.6309 137.337 53.6965 137.455 53.8276C137.578 53.9588 137.639 54.1196 137.639 54.3101C137.639 54.492 137.578 54.6486 137.455 54.7798C137.337 54.9067 137.165 54.9702 136.941 54.9702C136.712 54.9702 136.539 54.9067 136.42 54.7798C136.306 54.6486 136.249 54.492 136.249 54.3101ZM140.578 57.2109V63H139.404V56.1318H140.546L140.578 57.2109ZM142.724 56.0938L142.717 57.1855C142.62 57.1644 142.527 57.1517 142.438 57.1475C142.353 57.139 142.256 57.1348 142.146 57.1348C141.875 57.1348 141.636 57.1771 141.429 57.2617C141.221 57.3464 141.046 57.4648 140.902 57.6172C140.758 57.7695 140.644 57.9515 140.559 58.1631C140.479 58.3704 140.426 58.599 140.4 58.8486L140.07 59.0391C140.07 58.6243 140.111 58.235 140.191 57.8711C140.276 57.5072 140.405 57.1855 140.578 56.9062C140.752 56.6227 140.972 56.4027 141.238 56.2461C141.509 56.0853 141.831 56.0049 142.203 56.0049C142.288 56.0049 142.385 56.0155 142.495 56.0366C142.605 56.0535 142.681 56.0726 142.724 56.0938ZM144.983 57.4521V65.6406H143.803V56.1318H144.882L144.983 57.4521ZM149.611 59.5088V59.6421C149.611 60.1414 149.552 60.6048 149.433 61.0322C149.315 61.4554 149.141 61.8236 148.913 62.1367C148.688 62.4499 148.411 62.6932 148.081 62.8667C147.751 63.0402 147.372 63.127 146.945 63.127C146.509 63.127 146.124 63.055 145.79 62.9111C145.455 62.7673 145.172 62.5578 144.939 62.2827C144.706 62.0076 144.52 61.6776 144.38 61.2925C144.245 60.9074 144.152 60.4736 144.101 59.9912V59.2803C144.152 58.7725 144.247 58.3175 144.387 57.9155C144.526 57.5135 144.71 57.1707 144.939 56.8872C145.172 56.5994 145.453 56.3815 145.783 56.2334C146.113 56.0811 146.494 56.0049 146.926 56.0049C147.357 56.0049 147.74 56.0895 148.075 56.2588C148.409 56.4238 148.69 56.6608 148.919 56.9697C149.147 57.2786 149.319 57.6489 149.433 58.0806C149.552 58.508 149.611 58.984 149.611 59.5088ZM148.43 59.6421V59.5088C148.43 59.166 148.394 58.8444 148.322 58.5439C148.25 58.2393 148.138 57.9727 147.986 57.7441C147.838 57.5114 147.647 57.3294 147.415 57.1982C147.182 57.0628 146.905 56.9951 146.583 56.9951C146.287 56.9951 146.029 57.0459 145.809 57.1475C145.593 57.249 145.409 57.3866 145.256 57.5601C145.104 57.7293 144.979 57.924 144.882 58.144C144.789 58.3599 144.719 58.5841 144.672 58.8169V60.4609C144.757 60.7572 144.875 61.0365 145.028 61.2988C145.18 61.557 145.383 61.7664 145.637 61.9272C145.891 62.0838 146.211 62.1621 146.596 62.1621C146.913 62.1621 147.186 62.0965 147.415 61.9653C147.647 61.8299 147.838 61.6458 147.986 61.4131C148.138 61.1803 148.25 60.9137 148.322 60.6133C148.394 60.3086 148.43 59.9849 148.43 59.6421ZM150.798 59.6421V59.4961C150.798 59.001 150.87 58.5418 151.014 58.1187C151.158 57.6912 151.365 57.321 151.636 57.0078C151.907 56.6904 152.235 56.445 152.62 56.2715C153.005 56.0938 153.436 56.0049 153.915 56.0049C154.397 56.0049 154.831 56.0938 155.216 56.2715C155.605 56.445 155.935 56.6904 156.206 57.0078C156.481 57.321 156.691 57.6912 156.834 58.1187C156.978 58.5418 157.05 59.001 157.05 59.4961V59.6421C157.05 60.1372 156.978 60.5964 156.834 61.0195C156.691 61.4427 156.481 61.813 156.206 62.1304C155.935 62.4435 155.607 62.689 155.222 62.8667C154.841 63.0402 154.41 63.127 153.927 63.127C153.445 63.127 153.011 63.0402 152.626 62.8667C152.241 62.689 151.911 62.4435 151.636 62.1304C151.365 61.813 151.158 61.4427 151.014 61.0195C150.87 60.5964 150.798 60.1372 150.798 59.6421ZM151.972 59.4961V59.6421C151.972 59.9849 152.012 60.3086 152.093 60.6133C152.173 60.9137 152.294 61.1803 152.455 61.4131C152.62 61.6458 152.825 61.8299 153.07 61.9653C153.316 62.0965 153.601 62.1621 153.927 62.1621C154.249 62.1621 154.53 62.0965 154.771 61.9653C155.017 61.8299 155.22 61.6458 155.381 61.4131C155.542 61.1803 155.662 60.9137 155.743 60.6133C155.827 60.3086 155.87 59.9849 155.87 59.6421V59.4961C155.87 59.1576 155.827 58.8381 155.743 58.5376C155.662 58.2329 155.54 57.9642 155.375 57.7314C155.214 57.4945 155.011 57.3083 154.765 57.1729C154.524 57.0374 154.24 56.9697 153.915 56.9697C153.593 56.9697 153.309 57.0374 153.064 57.1729C152.823 57.3083 152.62 57.4945 152.455 57.7314C152.294 57.9642 152.173 58.2329 152.093 58.5376C152.012 58.8381 151.972 59.1576 151.972 59.4961ZM159.697 57.2109V63H158.523V56.1318H159.666L159.697 57.2109ZM161.843 56.0938L161.836 57.1855C161.739 57.1644 161.646 57.1517 161.557 57.1475C161.472 57.139 161.375 57.1348 161.265 57.1348C160.994 57.1348 160.755 57.1771 160.548 57.2617C160.34 57.3464 160.165 57.4648 160.021 57.6172C159.877 57.7695 159.763 57.9515 159.678 58.1631C159.598 58.3704 159.545 58.599 159.52 58.8486L159.189 59.0391C159.189 58.6243 159.23 58.235 159.31 57.8711C159.395 57.5072 159.524 57.1855 159.697 56.9062C159.871 56.6227 160.091 56.4027 160.357 56.2461C160.628 56.0853 160.95 56.0049 161.322 56.0049C161.407 56.0049 161.504 56.0155 161.614 56.0366C161.724 56.0535 161.8 56.0726 161.843 56.0938ZM166.121 56.1318V57.0332H162.408V56.1318H166.121ZM163.665 54.4624H164.839V61.2988C164.839 61.5316 164.875 61.7072 164.947 61.8257C165.019 61.9442 165.112 62.0225 165.226 62.0605C165.34 62.0986 165.463 62.1177 165.594 62.1177C165.692 62.1177 165.793 62.1092 165.899 62.0923C166.009 62.0711 166.091 62.0542 166.146 62.0415L166.153 63C166.06 63.0296 165.937 63.0571 165.785 63.0825C165.637 63.1121 165.457 63.127 165.245 63.127C164.957 63.127 164.693 63.0698 164.452 62.9556C164.21 62.8413 164.018 62.6509 163.874 62.3843C163.734 62.1134 163.665 61.7495 163.665 61.2925V54.4624ZM168.667 53.7578V64.7139H167.721V53.7578H168.667Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M279 113.496L272.495 120",stroke:"#64748B",strokeLinecap:"round"}),(0,h.createElement)("path",{d:"M279 116.748L275.747 120",stroke:"#64748B",strokeLinecap:"round"}),(0,h.createElement)("rect",{x:"16",y:"42",width:"266",height:"81",rx:"3",stroke:"#4272F9",strokeWidth:"2"})),{ToolBarFields:Go,AdvancedFields:Wo,FieldWrapper:Ko,FieldSettingsWrapper:$o,ValidationToggleGroup:Yo,ValidationBlockMessage:Xo,BlockLabel:Qo,BlockDescription:es,BlockName:Cs,BlockAdvancedValue:ts,EditAdvancedRulesButton:ls,AdvancedInspectorControl:rs,AttributeHelp:ns}=JetFBComponents,{useIsAdvancedValidation:as,useUniqueNameOnDuplicate:is}=JetFBHooks,{__:os}=wp.i18n,{InspectorControls:ss,useBlockProps:cs}=wp.blockEditor,{TextareaControl:ds,TextControl:ms,PanelBody:us,__experimentalNumberControl:ps}=wp.components;let{NumberControl:fs}=wp.components;void 0===fs&&(fs=ps);const Vs=JSON.parse('{"apiVersion":3,"name":"jet-forms/textarea-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","textarea"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Textarea Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"minlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"maxlength":{"type":["number","string"],"default":"","jfb":{"rich":true}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"placeholder":{"type":"string","default":""},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Hs}=wp.i18n,{createBlock:hs}=wp.blocks,{name:bs,icon:Ms=""}=Vs,Ls={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Ms}}),description:Hs("Give the user enough space to type in a bigger piece of text. Add a text area where the data can be placed in several lines.","jet-form-builder"),edit:function(e){const{attributes:C,setAttributes:t,isSelected:l,editProps:{uniqKey:r}}=e,n=cs(),a=as();return is(),C.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Uo):[(0,h.createElement)(Go,{key:r("ToolBarFields"),...e}),l&&(0,h.createElement)(ss,{key:r("InspectorControls")},(0,h.createElement)(us,{title:os("General","jet-form-builder")},(0,h.createElement)(Qo,null),(0,h.createElement)(Cs,null),(0,h.createElement)(es,null)),(0,h.createElement)(us,{title:os("Value","jet-form-builder")},(0,h.createElement)(ts,null)),(0,h.createElement)($o,{...e},(0,h.createElement)(rs,{value:C.minlength,label:os("Min length (symbols)","jet-form-builder"),onChangePreset:e=>t({minlength:e})},({instanceId:e})=>(0,h.createElement)(ms,{id:e,className:"jet-fb m-unset",value:C.minlength,onChange:e=>t({minlength:e})})),(0,h.createElement)(ns,{name:"minlength"}),(0,h.createElement)(rs,{value:C.maxlength,label:os("Max length (symbols)","jet-form-builder"),onChangePreset:e=>t({maxlength:e})},({instanceId:e})=>(0,h.createElement)(ms,{id:e,className:"jet-fb m-unset",value:C.maxlength,onChange:e=>t({maxlength:e})})),(0,h.createElement)(ns,{name:"maxlength"})),(0,h.createElement)(us,{title:os("Validation","jet-form-builder")},(0,h.createElement)(Yo,null),a&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(ls,null),Boolean(C.minlength)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Xo,{name:"char_min"})),Boolean(C.maxlength)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Xo,{name:"char_max"})),(0,h.createElement)(Xo,{name:"empty"}))),(0,h.createElement)(Wo,{key:r("AdvancedFields"),...e})),(0,h.createElement)("div",{key:r("viewBlock"),...n},(0,h.createElement)(Ko,{key:r("FieldWrapper"),...e},(0,h.createElement)(ds,{className:"jet-form-builder__field-preview",key:r("place_holder_block"),placeholder:C.placeholder,onChange:()=>{}})))]},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>hs("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/wysiwyg-field"],transform:e=>hs(bs,{...e}),priority:0}]}},gs=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"20.5",width:"22",height:"19",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M34.3887 29.4028V30.3677H28.0283V29.4028H34.3887ZM42.9199 29.4028V30.3677H36.5596V29.4028H42.9199Z",fill:"white"}),(0,h.createElement)("path",{d:"M49.8442 33.8779C49.8442 33.679 49.9056 33.5119 50.0283 33.3765C50.1553 33.2368 50.3372 33.167 50.5742 33.167C50.8112 33.167 50.991 33.2368 51.1138 33.3765C51.2407 33.5119 51.3042 33.679 51.3042 33.8779C51.3042 34.0726 51.2407 34.2376 51.1138 34.373C50.991 34.5085 50.8112 34.5762 50.5742 34.5762C50.3372 34.5762 50.1553 34.5085 50.0283 34.373C49.9056 34.2376 49.8442 34.0726 49.8442 33.8779ZM49.8506 28.2729C49.8506 28.0741 49.9119 27.9069 50.0347 27.7715C50.1616 27.6318 50.3436 27.562 50.5806 27.562C50.8175 27.562 50.9974 27.6318 51.1201 27.7715C51.2471 27.9069 51.3105 28.0741 51.3105 28.2729C51.3105 28.4676 51.2471 28.6326 51.1201 28.7681C50.9974 28.9035 50.8175 28.9712 50.5806 28.9712C50.3436 28.9712 50.1616 28.9035 50.0347 28.7681C49.9119 28.6326 49.8506 28.4676 49.8506 28.2729ZM62.7617 29.4028V30.3677H56.4014V29.4028H62.7617ZM71.293 29.4028V30.3677H64.9326V29.4028H71.293ZM76.5044 33.8779C76.5044 33.679 76.5658 33.5119 76.6885 33.3765C76.8154 33.2368 76.9974 33.167 77.2344 33.167C77.4714 33.167 77.6512 33.2368 77.7739 33.3765C77.9009 33.5119 77.9644 33.679 77.9644 33.8779C77.9644 34.0726 77.9009 34.2376 77.7739 34.373C77.6512 34.5085 77.4714 34.5762 77.2344 34.5762C76.9974 34.5762 76.8154 34.5085 76.6885 34.373C76.5658 34.2376 76.5044 34.0726 76.5044 33.8779ZM76.5107 28.2729C76.5107 28.0741 76.5721 27.9069 76.6948 27.7715C76.8218 27.6318 77.0037 27.562 77.2407 27.562C77.4777 27.562 77.6576 27.6318 77.7803 27.7715C77.9072 27.9069 77.9707 28.0741 77.9707 28.2729C77.9707 28.4676 77.9072 28.6326 77.7803 28.7681C77.6576 28.9035 77.4777 28.9712 77.2407 28.9712C77.0037 28.9712 76.8218 28.9035 76.6948 28.7681C76.5721 28.6326 76.5107 28.4676 76.5107 28.2729ZM89.4219 29.4028V30.3677H83.0615V29.4028H89.4219ZM97.9531 29.4028V30.3677H91.5928V29.4028H97.9531Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M260.991 21C256.023 21 252 25.032 252 30C252 34.968 256.023 39 260.991 39C265.968 39 270 34.968 270 30C270 25.032 265.968 21 260.991 21ZM261 37.2C257.022 37.2 253.8 33.978 253.8 30C253.8 26.022 257.022 22.8 261 22.8C264.978 22.8 268.2 26.022 268.2 30C268.2 33.978 264.978 37.2 261 37.2ZM260.802 25.5H260.748C260.388 25.5 260.1 25.788 260.1 26.148V30.396C260.1 30.711 260.262 31.008 260.541 31.17L264.276 33.411C264.582 33.591 264.978 33.501 265.158 33.195C265.347 32.889 265.248 32.484 264.933 32.304L261.45 30.234V26.148C261.45 25.788 261.162 25.5 260.802 25.5V25.5Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"16",y:"16",width:"266",height:"28",rx:"3",stroke:"#4272F9",strokeWidth:"2"}),(0,h.createElement)("path",{d:"M15 49C15 46.7909 16.7909 45 19 45H279C281.209 45 283 46.7909 283 49V144H15V49Z",fill:"white"}),(0,h.createElement)("rect",{x:"25",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"64.9048",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"104.905",y:"55",width:"36",height:"21",rx:"4",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M42.3906 64.5664V66.166C42.3906 66.86 42.3166 67.4588 42.1685 67.9624C42.0203 68.4618 41.8066 68.8722 41.5273 69.1938C41.2523 69.5112 40.9243 69.7461 40.5435 69.8984C40.1626 70.0508 39.7394 70.127 39.2739 70.127C38.9015 70.127 38.5545 70.0804 38.2329 69.9873C37.9113 69.89 37.6214 69.7397 37.3633 69.5366C37.1094 69.3335 36.8893 69.0775 36.7031 68.7686C36.5212 68.4554 36.3815 68.083 36.2842 67.6514C36.1868 67.2197 36.1382 66.7246 36.1382 66.166V64.5664C36.1382 63.8724 36.2122 63.2778 36.3604 62.7827C36.5127 62.2834 36.7264 61.875 37.0015 61.5576C37.2808 61.2402 37.6108 61.0075 37.9917 60.8594C38.3726 60.707 38.7957 60.6309 39.2612 60.6309C39.6336 60.6309 39.9785 60.6795 40.2959 60.7769C40.6175 60.87 40.9074 61.016 41.1655 61.2148C41.4237 61.4137 41.6437 61.6698 41.8257 61.9829C42.0076 62.2918 42.1473 62.6621 42.2446 63.0938C42.342 63.5212 42.3906 64.012 42.3906 64.5664ZM40.5562 66.4072V64.3188C40.5562 63.9845 40.5371 63.6925 40.499 63.4429C40.4652 63.1932 40.4123 62.9816 40.3403 62.8081C40.2684 62.6304 40.1795 62.4865 40.0737 62.3765C39.9679 62.2664 39.8473 62.186 39.7119 62.1353C39.5765 62.0845 39.4263 62.0591 39.2612 62.0591C39.0539 62.0591 38.8698 62.0993 38.709 62.1797C38.5524 62.2601 38.4191 62.3892 38.3091 62.5669C38.1991 62.7404 38.1144 62.9731 38.0552 63.2651C38.0002 63.5529 37.9727 63.9041 37.9727 64.3188V66.4072C37.9727 66.7415 37.9896 67.0356 38.0234 67.2896C38.0615 67.5435 38.1165 67.7614 38.1885 67.9434C38.2646 68.1211 38.3535 68.2671 38.4551 68.3813C38.5609 68.4914 38.6815 68.5718 38.8169 68.6226C38.9565 68.6733 39.1089 68.6987 39.2739 68.6987C39.4771 68.6987 39.6569 68.6585 39.8135 68.5781C39.9743 68.4935 40.1097 68.3623 40.2197 68.1846C40.334 68.0026 40.4186 67.7656 40.4736 67.4736C40.5286 67.1816 40.5562 66.8262 40.5562 66.4072ZM49.957 68.5718V70H43.6348V68.7812L46.6245 65.5757C46.925 65.2414 47.1619 64.9473 47.3354 64.6934C47.509 64.4352 47.6338 64.2046 47.71 64.0015C47.7904 63.7941 47.8306 63.5973 47.8306 63.4111C47.8306 63.1318 47.784 62.8927 47.6909 62.6938C47.5978 62.4907 47.4603 62.3341 47.2783 62.2241C47.1006 62.1141 46.8805 62.0591 46.6182 62.0591C46.3389 62.0591 46.0977 62.1268 45.8945 62.2622C45.6956 62.3976 45.5433 62.5859 45.4375 62.8271C45.3359 63.0684 45.2852 63.3413 45.2852 63.646H43.4507C43.4507 63.0959 43.5819 62.5923 43.8442 62.1353C44.1066 61.674 44.4769 61.3079 44.9551 61.0371C45.4333 60.762 46.0003 60.6245 46.6562 60.6245C47.3037 60.6245 47.8496 60.7303 48.2939 60.9419C48.7425 61.1493 49.0811 61.4497 49.3096 61.8433C49.5423 62.2326 49.6587 62.6981 49.6587 63.2397C49.6587 63.5444 49.61 63.8428 49.5127 64.1348C49.4154 64.4225 49.2757 64.7103 49.0938 64.998C48.916 65.2816 48.7002 65.5693 48.4463 65.8613C48.1924 66.1533 47.911 66.4559 47.6021 66.769L45.9961 68.5718H49.957Z",fill:"white"}),(0,h.createElement)("path",{d:"M82.4922 68.5718V70H76.1699V68.7812L79.1597 65.5757C79.4601 65.2414 79.6971 64.9473 79.8706 64.6934C80.0441 64.4352 80.1689 64.2046 80.2451 64.0015C80.3255 63.7941 80.3657 63.5973 80.3657 63.4111C80.3657 63.1318 80.3192 62.8927 80.2261 62.6938C80.133 62.4907 79.9954 62.3341 79.8135 62.2241C79.6357 62.1141 79.4157 62.0591 79.1533 62.0591C78.874 62.0591 78.6328 62.1268 78.4297 62.2622C78.2308 62.3976 78.0785 62.5859 77.9727 62.8271C77.8711 63.0684 77.8203 63.3413 77.8203 63.646H75.9858C75.9858 63.0959 76.117 62.5923 76.3794 62.1353C76.6418 61.674 77.012 61.3079 77.4902 61.0371C77.9684 60.762 78.5355 60.6245 79.1914 60.6245C79.8389 60.6245 80.3848 60.7303 80.8291 60.9419C81.2777 61.1493 81.6162 61.4497 81.8447 61.8433C82.0775 62.2326 82.1938 62.6981 82.1938 63.2397C82.1938 63.5444 82.1452 63.8428 82.0479 64.1348C81.9505 64.4225 81.8109 64.7103 81.6289 64.998C81.4512 65.2816 81.2354 65.5693 80.9814 65.8613C80.7275 66.1533 80.4461 66.4559 80.1372 66.769L78.5312 68.5718H82.4922ZM89.9126 60.7578V61.7417L86.3389 70H84.4092L87.9829 62.186H83.3809V60.7578H89.9126Z",fill:"white"}),(0,h.createElement)("path",{d:"M117.541 66.7056H115.186V65.2202H117.541C117.905 65.2202 118.201 65.161 118.43 65.0425C118.658 64.9198 118.825 64.7505 118.931 64.5347C119.037 64.3188 119.09 64.0755 119.09 63.8047C119.09 63.5296 119.037 63.2736 118.931 63.0366C118.825 62.7996 118.658 62.6092 118.43 62.4653C118.201 62.3215 117.905 62.2495 117.541 62.2495H115.846V70H113.942V60.7578H117.541C118.265 60.7578 118.885 60.889 119.401 61.1514C119.921 61.4095 120.319 61.7671 120.594 62.2241C120.869 62.6812 121.007 63.2038 121.007 63.792C121.007 64.3887 120.869 64.9049 120.594 65.3408C120.319 65.7767 119.921 66.1131 119.401 66.3501C118.885 66.5871 118.265 66.7056 117.541 66.7056ZM123.19 60.7578H124.803L127.177 67.5435L129.551 60.7578H131.163L127.824 70H126.529L123.19 60.7578ZM122.321 60.7578H123.927L124.219 67.3721V70H122.321V60.7578ZM130.427 60.7578H132.039V70H130.135V67.3721L130.427 60.7578Z",fill:"white"}),(0,h.createElement)("path",{d:"M42.2573 87.6426V89.0518C42.2573 89.8092 42.1896 90.4482 42.0542 90.9688C41.9188 91.4893 41.7241 91.9082 41.4702 92.2256C41.2163 92.543 40.9095 92.7736 40.5498 92.9175C40.1943 93.0571 39.7923 93.127 39.3438 93.127C38.9883 93.127 38.6603 93.0825 38.3599 92.9937C38.0594 92.9048 37.7886 92.763 37.5474 92.5684C37.3104 92.3695 37.1073 92.1113 36.938 91.7939C36.7687 91.4766 36.6396 91.0915 36.5508 90.6387C36.4619 90.1859 36.4175 89.6569 36.4175 89.0518V87.6426C36.4175 86.8851 36.4852 86.2503 36.6206 85.7383C36.7603 85.2262 36.957 84.8158 37.2109 84.5068C37.4648 84.1937 37.7695 83.9694 38.125 83.834C38.4847 83.6986 38.8867 83.6309 39.3311 83.6309C39.6908 83.6309 40.0208 83.6753 40.3213 83.7642C40.626 83.8488 40.8968 83.9863 41.1338 84.1768C41.3708 84.363 41.5718 84.6126 41.7368 84.9258C41.9061 85.2347 42.0352 85.6134 42.124 86.062C42.2129 86.5106 42.2573 87.0374 42.2573 87.6426ZM41.0767 89.2422V87.4458C41.0767 87.0311 41.0513 86.6672 41.0005 86.354C40.9539 86.0366 40.8841 85.7658 40.791 85.5415C40.6979 85.3172 40.5794 85.1353 40.4355 84.9956C40.2959 84.856 40.133 84.7544 39.9468 84.6909C39.7648 84.6232 39.5596 84.5894 39.3311 84.5894C39.0518 84.5894 38.8042 84.6423 38.5884 84.748C38.3726 84.8496 38.1906 85.0125 38.0425 85.2368C37.8986 85.4611 37.7886 85.7552 37.7124 86.1191C37.6362 86.4831 37.5981 86.9253 37.5981 87.4458V89.2422C37.5981 89.6569 37.6214 90.0229 37.668 90.3403C37.7188 90.6577 37.7928 90.9328 37.8901 91.1655C37.9875 91.394 38.106 91.5824 38.2456 91.7305C38.3853 91.8786 38.5461 91.9886 38.728 92.0605C38.9142 92.1283 39.1195 92.1621 39.3438 92.1621C39.6315 92.1621 39.8833 92.1071 40.0991 91.9971C40.3149 91.887 40.4948 91.7157 40.6387 91.4829C40.7868 91.2459 40.8968 90.9434 40.9688 90.5752C41.0407 90.2028 41.0767 89.7585 41.0767 89.2422ZM45.4819 87.8013H46.3198C46.7303 87.8013 47.0688 87.7336 47.3354 87.5981C47.6063 87.4585 47.8073 87.2702 47.9385 87.0332C48.0739 86.792 48.1416 86.5212 48.1416 86.2207C48.1416 85.8652 48.0824 85.5669 47.9639 85.3257C47.8454 85.0845 47.6676 84.9025 47.4307 84.7798C47.1937 84.6571 46.8932 84.5957 46.5293 84.5957C46.1992 84.5957 45.9072 84.6613 45.6533 84.7925C45.4036 84.9194 45.2069 85.1014 45.063 85.3384C44.9233 85.5754 44.8535 85.8547 44.8535 86.1763H43.6792C43.6792 85.7065 43.7977 85.2791 44.0347 84.894C44.2716 84.509 44.6038 84.2021 45.0312 83.9736C45.4629 83.7451 45.9622 83.6309 46.5293 83.6309C47.0879 83.6309 47.5767 83.7303 47.9956 83.9292C48.4146 84.1239 48.7404 84.4159 48.9731 84.8052C49.2059 85.1903 49.3223 85.6706 49.3223 86.2461C49.3223 86.4788 49.2673 86.7285 49.1572 86.9951C49.0514 87.2575 48.8843 87.5029 48.6558 87.7314C48.4315 87.96 48.1395 88.1483 47.7798 88.2964C47.4201 88.4403 46.9884 88.5122 46.4849 88.5122H45.4819V87.8013ZM45.4819 88.7661V88.0615H46.4849C47.0731 88.0615 47.5597 88.1313 47.9448 88.271C48.3299 88.4106 48.6325 88.5968 48.8525 88.8296C49.0768 89.0623 49.2334 89.3184 49.3223 89.5977C49.4154 89.8727 49.4619 90.1478 49.4619 90.4229C49.4619 90.8545 49.3879 91.2375 49.2397 91.5718C49.0959 91.9061 48.8906 92.1896 48.624 92.4224C48.3617 92.6551 48.0527 92.8307 47.6973 92.9492C47.3418 93.0677 46.9546 93.127 46.5356 93.127C46.1336 93.127 45.7549 93.0698 45.3994 92.9556C45.0482 92.8413 44.7371 92.6763 44.4663 92.4604C44.1955 92.2404 43.9839 91.9717 43.8315 91.6543C43.6792 91.3327 43.603 90.9666 43.603 90.5562H44.7773C44.7773 90.8778 44.8472 91.1592 44.9868 91.4004C45.1307 91.6416 45.3338 91.8299 45.5962 91.9653C45.8628 92.0965 46.1759 92.1621 46.5356 92.1621C46.8953 92.1621 47.2043 92.1007 47.4624 91.978C47.7248 91.8511 47.9258 91.6606 48.0654 91.4067C48.2093 91.1528 48.2812 90.8333 48.2812 90.4482C48.2812 90.0632 48.2008 89.7479 48.04 89.5024C47.8792 89.2528 47.6507 89.0687 47.3545 88.9502C47.0625 88.8275 46.7176 88.7661 46.3198 88.7661H45.4819Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M82.5112 92.0352V93H76.4619V92.1558L79.4897 88.7852C79.8621 88.3704 80.1499 88.0192 80.353 87.7314C80.5604 87.4395 80.7043 87.1792 80.7847 86.9507C80.8693 86.7179 80.9116 86.481 80.9116 86.2397C80.9116 85.9351 80.8481 85.66 80.7212 85.4146C80.5985 85.1649 80.4165 84.966 80.1753 84.8179C79.9341 84.6698 79.6421 84.5957 79.2993 84.5957C78.8888 84.5957 78.5461 84.6761 78.271 84.8369C78.0002 84.9935 77.797 85.2135 77.6616 85.4971C77.5262 85.7806 77.4585 86.1064 77.4585 86.4746H76.2842C76.2842 85.9541 76.3984 85.478 76.627 85.0464C76.8555 84.6147 77.194 84.272 77.6426 84.0181C78.0911 83.7599 78.6434 83.6309 79.2993 83.6309C79.8833 83.6309 80.3826 83.7345 80.7974 83.9419C81.2121 84.145 81.5295 84.4328 81.7495 84.8052C81.9738 85.1733 82.0859 85.605 82.0859 86.1001C82.0859 86.3709 82.0394 86.646 81.9463 86.9253C81.8574 87.2004 81.7326 87.4754 81.5718 87.7505C81.4152 88.0256 81.2311 88.2964 81.0195 88.563C80.8122 88.8296 80.59 89.092 80.353 89.3501L77.8774 92.0352H82.5112ZM89.5952 90.499C89.5952 91.0618 89.464 91.54 89.2017 91.9336C88.9435 92.3229 88.5923 92.6191 88.1479 92.8223C87.7078 93.0254 87.2106 93.127 86.6562 93.127C86.1019 93.127 85.6025 93.0254 85.1582 92.8223C84.7139 92.6191 84.3626 92.3229 84.1045 91.9336C83.8464 91.54 83.7173 91.0618 83.7173 90.499C83.7173 90.1309 83.7871 89.7944 83.9268 89.4897C84.0706 89.1808 84.2716 88.9121 84.5298 88.6836C84.7922 88.4551 85.1011 88.2795 85.4565 88.1567C85.8162 88.0298 86.2119 87.9663 86.6436 87.9663C87.2106 87.9663 87.7163 88.0763 88.1606 88.2964C88.605 88.5122 88.9541 88.8105 89.208 89.1914C89.4661 89.5723 89.5952 90.0081 89.5952 90.499ZM88.4146 90.4736C88.4146 90.1309 88.3405 89.8283 88.1924 89.5659C88.0443 89.2993 87.8369 89.092 87.5703 88.9438C87.3037 88.7957 86.9948 88.7217 86.6436 88.7217C86.2839 88.7217 85.9728 88.7957 85.7104 88.9438C85.4523 89.092 85.2513 89.2993 85.1074 89.5659C84.9635 89.8283 84.8916 90.1309 84.8916 90.4736C84.8916 90.8291 84.9614 91.1338 85.1011 91.3877C85.245 91.6374 85.4481 91.8299 85.7104 91.9653C85.9771 92.0965 86.2923 92.1621 86.6562 92.1621C87.0202 92.1621 87.3333 92.0965 87.5957 91.9653C87.8581 91.8299 88.0591 91.6374 88.1987 91.3877C88.3426 91.1338 88.4146 90.8291 88.4146 90.4736ZM89.3794 86.1636C89.3794 86.6121 89.2609 87.0163 89.0239 87.376C88.7869 87.7357 88.4632 88.0192 88.0527 88.2266C87.6423 88.4339 87.1768 88.5376 86.6562 88.5376C86.1273 88.5376 85.6554 88.4339 85.2407 88.2266C84.8302 88.0192 84.5086 87.7357 84.2759 87.376C84.0431 87.0163 83.9268 86.6121 83.9268 86.1636C83.9268 85.6261 84.0431 85.1691 84.2759 84.7925C84.5129 84.4159 84.8366 84.1281 85.2471 83.9292C85.6576 83.7303 86.1252 83.6309 86.6499 83.6309C87.1789 83.6309 87.6486 83.7303 88.0591 83.9292C88.4696 84.1281 88.7912 84.4159 89.0239 84.7925C89.2609 85.1691 89.3794 85.6261 89.3794 86.1636ZM88.2051 86.1826C88.2051 85.8737 88.1395 85.6007 88.0083 85.3638C87.8771 85.1268 87.6951 84.9406 87.4624 84.8052C87.2297 84.6655 86.9588 84.5957 86.6499 84.5957C86.341 84.5957 86.0701 84.6613 85.8374 84.7925C85.6089 84.9194 85.429 85.1014 85.2979 85.3384C85.1709 85.5754 85.1074 85.8568 85.1074 86.1826C85.1074 86.5 85.1709 86.7772 85.2979 87.0142C85.429 87.2511 85.611 87.4352 85.8438 87.5664C86.0765 87.6976 86.3473 87.7632 86.6562 87.7632C86.9652 87.7632 87.2339 87.6976 87.4624 87.5664C87.6951 87.4352 87.8771 87.2511 88.0083 87.0142C88.1395 86.7772 88.2051 86.5 88.2051 86.1826Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M117.579 84.5767L114.52 93H113.269L116.792 83.7578H117.598L117.579 84.5767ZM120.144 93L117.078 84.5767L117.059 83.7578H117.865L121.4 93H120.144ZM119.985 89.5786V90.5815H114.792V89.5786H119.985ZM123.025 83.7578H124.212L127.24 91.2925L130.262 83.7578H131.455L127.697 93H126.771L123.025 83.7578ZM122.638 83.7578H123.686L123.857 89.3945V93H122.638V83.7578ZM130.789 83.7578H131.836V93H130.617V89.3945L130.789 83.7578Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M42.2573 107.643V109.052C42.2573 109.809 42.1896 110.448 42.0542 110.969C41.9188 111.489 41.7241 111.908 41.4702 112.226C41.2163 112.543 40.9095 112.774 40.5498 112.917C40.1943 113.057 39.7923 113.127 39.3438 113.127C38.9883 113.127 38.6603 113.083 38.3599 112.994C38.0594 112.905 37.7886 112.763 37.5474 112.568C37.3104 112.369 37.1073 112.111 36.938 111.794C36.7687 111.477 36.6396 111.091 36.5508 110.639C36.4619 110.186 36.4175 109.657 36.4175 109.052V107.643C36.4175 106.885 36.4852 106.25 36.6206 105.738C36.7603 105.226 36.957 104.816 37.2109 104.507C37.4648 104.194 37.7695 103.969 38.125 103.834C38.4847 103.699 38.8867 103.631 39.3311 103.631C39.6908 103.631 40.0208 103.675 40.3213 103.764C40.626 103.849 40.8968 103.986 41.1338 104.177C41.3708 104.363 41.5718 104.613 41.7368 104.926C41.9061 105.235 42.0352 105.613 42.124 106.062C42.2129 106.511 42.2573 107.037 42.2573 107.643ZM41.0767 109.242V107.446C41.0767 107.031 41.0513 106.667 41.0005 106.354C40.9539 106.037 40.8841 105.766 40.791 105.542C40.6979 105.317 40.5794 105.135 40.4355 104.996C40.2959 104.856 40.133 104.754 39.9468 104.691C39.7648 104.623 39.5596 104.589 39.3311 104.589C39.0518 104.589 38.8042 104.642 38.5884 104.748C38.3726 104.85 38.1906 105.013 38.0425 105.237C37.8986 105.461 37.7886 105.755 37.7124 106.119C37.6362 106.483 37.5981 106.925 37.5981 107.446V109.242C37.5981 109.657 37.6214 110.023 37.668 110.34C37.7188 110.658 37.7928 110.933 37.8901 111.166C37.9875 111.394 38.106 111.582 38.2456 111.73C38.3853 111.879 38.5461 111.989 38.728 112.061C38.9142 112.128 39.1195 112.162 39.3438 112.162C39.6315 112.162 39.8833 112.107 40.0991 111.997C40.3149 111.887 40.4948 111.716 40.6387 111.483C40.7868 111.246 40.8968 110.943 40.9688 110.575C41.0407 110.203 41.0767 109.758 41.0767 109.242ZM50.0142 109.89V110.854H43.3364V110.163L47.4751 103.758H48.4336L47.4053 105.611L44.6694 109.89H50.0142ZM48.7256 103.758V113H47.5513V103.758H48.7256Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M82.5112 112.035V113H76.4619V112.156L79.4897 108.785C79.8621 108.37 80.1499 108.019 80.353 107.731C80.5604 107.439 80.7043 107.179 80.7847 106.951C80.8693 106.718 80.9116 106.481 80.9116 106.24C80.9116 105.935 80.8481 105.66 80.7212 105.415C80.5985 105.165 80.4165 104.966 80.1753 104.818C79.9341 104.67 79.6421 104.596 79.2993 104.596C78.8888 104.596 78.5461 104.676 78.271 104.837C78.0002 104.993 77.797 105.214 77.6616 105.497C77.5262 105.781 77.4585 106.106 77.4585 106.475H76.2842C76.2842 105.954 76.3984 105.478 76.627 105.046C76.8555 104.615 77.194 104.272 77.6426 104.018C78.0911 103.76 78.6434 103.631 79.2993 103.631C79.8833 103.631 80.3826 103.735 80.7974 103.942C81.2121 104.145 81.5295 104.433 81.7495 104.805C81.9738 105.173 82.0859 105.605 82.0859 106.1C82.0859 106.371 82.0394 106.646 81.9463 106.925C81.8574 107.2 81.7326 107.475 81.5718 107.75C81.4152 108.026 81.2311 108.296 81.0195 108.563C80.8122 108.83 80.59 109.092 80.353 109.35L77.8774 112.035H82.5112ZM84.936 112.016H85.0566C85.7337 112.016 86.2839 111.921 86.707 111.73C87.1302 111.54 87.4561 111.284 87.6846 110.962C87.9131 110.641 88.0697 110.279 88.1543 109.877C88.2389 109.471 88.2812 109.054 88.2812 108.626V107.211C88.2812 106.792 88.2326 106.42 88.1353 106.094C88.0422 105.768 87.911 105.495 87.7417 105.275C87.5767 105.055 87.3883 104.888 87.1768 104.773C86.9652 104.659 86.7409 104.602 86.5039 104.602C86.2331 104.602 85.9897 104.657 85.7739 104.767C85.5623 104.873 85.3825 105.023 85.2344 105.218C85.0905 105.412 84.9805 105.641 84.9043 105.903C84.8281 106.166 84.79 106.451 84.79 106.76C84.79 107.035 84.8239 107.302 84.8916 107.56C84.9593 107.818 85.063 108.051 85.2026 108.258C85.3423 108.466 85.5158 108.631 85.7231 108.753C85.9347 108.872 86.1823 108.931 86.4658 108.931C86.7282 108.931 86.9736 108.88 87.2021 108.779C87.4349 108.673 87.6401 108.531 87.8179 108.354C87.9998 108.172 88.1437 107.966 88.2495 107.738C88.3595 107.509 88.423 107.27 88.4399 107.021H88.9985C88.9985 107.372 88.9287 107.719 88.7891 108.062C88.6536 108.4 88.4632 108.709 88.2178 108.988C87.9723 109.268 87.6846 109.492 87.3545 109.661C87.0244 109.826 86.6647 109.909 86.2754 109.909C85.8184 109.909 85.4227 109.82 85.0884 109.642C84.7541 109.464 84.479 109.227 84.2632 108.931C84.0516 108.635 83.8929 108.305 83.7871 107.941C83.6855 107.573 83.6348 107.2 83.6348 106.824C83.6348 106.384 83.6961 105.971 83.8188 105.586C83.9416 105.201 84.1235 104.862 84.3647 104.57C84.606 104.274 84.9043 104.043 85.2598 103.878C85.6195 103.713 86.0342 103.631 86.5039 103.631C87.0329 103.631 87.4836 103.737 87.856 103.948C88.2284 104.16 88.5309 104.443 88.7637 104.799C89.0007 105.154 89.1742 105.554 89.2842 105.999C89.3942 106.443 89.4492 106.9 89.4492 107.37V107.795C89.4492 108.273 89.4175 108.76 89.354 109.255C89.2948 109.746 89.1784 110.215 89.0049 110.664C88.8356 111.113 88.5881 111.515 88.2622 111.87C87.9364 112.221 87.5111 112.501 86.9863 112.708C86.4658 112.911 85.8226 113.013 85.0566 113.013H84.936V112.016Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M42.2573 127.643V129.052C42.2573 129.809 42.1896 130.448 42.0542 130.969C41.9188 131.489 41.7241 131.908 41.4702 132.226C41.2163 132.543 40.9095 132.774 40.5498 132.917C40.1943 133.057 39.7923 133.127 39.3438 133.127C38.9883 133.127 38.6603 133.083 38.3599 132.994C38.0594 132.905 37.7886 132.763 37.5474 132.568C37.3104 132.369 37.1073 132.111 36.938 131.794C36.7687 131.477 36.6396 131.091 36.5508 130.639C36.4619 130.186 36.4175 129.657 36.4175 129.052V127.643C36.4175 126.885 36.4852 126.25 36.6206 125.738C36.7603 125.226 36.957 124.816 37.2109 124.507C37.4648 124.194 37.7695 123.969 38.125 123.834C38.4847 123.699 38.8867 123.631 39.3311 123.631C39.6908 123.631 40.0208 123.675 40.3213 123.764C40.626 123.849 40.8968 123.986 41.1338 124.177C41.3708 124.363 41.5718 124.613 41.7368 124.926C41.9061 125.235 42.0352 125.613 42.124 126.062C42.2129 126.511 42.2573 127.037 42.2573 127.643ZM41.0767 129.242V127.446C41.0767 127.031 41.0513 126.667 41.0005 126.354C40.9539 126.037 40.8841 125.766 40.791 125.542C40.6979 125.317 40.5794 125.135 40.4355 124.996C40.2959 124.856 40.133 124.754 39.9468 124.691C39.7648 124.623 39.5596 124.589 39.3311 124.589C39.0518 124.589 38.8042 124.642 38.5884 124.748C38.3726 124.85 38.1906 125.013 38.0425 125.237C37.8986 125.461 37.7886 125.755 37.7124 126.119C37.6362 126.483 37.5981 126.925 37.5981 127.446V129.242C37.5981 129.657 37.6214 130.023 37.668 130.34C37.7188 130.658 37.7928 130.933 37.8901 131.166C37.9875 131.394 38.106 131.582 38.2456 131.73C38.3853 131.879 38.5461 131.989 38.728 132.061C38.9142 132.128 39.1195 132.162 39.3438 132.162C39.6315 132.162 39.8833 132.107 40.0991 131.997C40.3149 131.887 40.4948 131.716 40.6387 131.483C40.7868 131.246 40.8968 130.943 40.9688 130.575C41.0407 130.203 41.0767 129.758 41.0767 129.242ZM45.2534 128.601L44.314 128.36L44.7773 123.758H49.519V124.843H45.7739L45.4946 127.357C45.6639 127.26 45.8776 127.169 46.1357 127.084C46.3981 126.999 46.6986 126.957 47.0371 126.957C47.4645 126.957 47.8475 127.031 48.186 127.179C48.5246 127.323 48.8123 127.53 49.0493 127.801C49.2905 128.072 49.4746 128.398 49.6016 128.779C49.7285 129.16 49.792 129.585 49.792 130.055C49.792 130.499 49.7306 130.907 49.6079 131.28C49.4894 131.652 49.3096 131.978 49.0684 132.257C48.8271 132.532 48.5225 132.746 48.1543 132.898C47.7904 133.051 47.3608 133.127 46.8657 133.127C46.4933 133.127 46.14 133.076 45.8057 132.975C45.4756 132.869 45.1794 132.71 44.917 132.499C44.6589 132.283 44.4473 132.016 44.2822 131.699C44.1214 131.377 44.0199 131 43.9775 130.569H45.0947C45.1455 130.916 45.2471 131.208 45.3994 131.445C45.5518 131.682 45.7507 131.862 45.9961 131.984C46.2458 132.103 46.5356 132.162 46.8657 132.162C47.145 132.162 47.3926 132.113 47.6084 132.016C47.8242 131.919 48.0062 131.779 48.1543 131.597C48.3024 131.415 48.4146 131.195 48.4907 130.937C48.5711 130.679 48.6113 130.389 48.6113 130.067C48.6113 129.775 48.5711 129.505 48.4907 129.255C48.4103 129.005 48.2897 128.787 48.1289 128.601C47.9723 128.415 47.7798 128.271 47.5513 128.169C47.3228 128.064 47.0604 128.011 46.7642 128.011C46.3706 128.011 46.0723 128.064 45.8691 128.169C45.6702 128.275 45.465 128.419 45.2534 128.601Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M78.1694 127.801H79.0073C79.4178 127.801 79.7563 127.734 80.0229 127.598C80.2938 127.458 80.4948 127.27 80.626 127.033C80.7614 126.792 80.8291 126.521 80.8291 126.221C80.8291 125.865 80.7699 125.567 80.6514 125.326C80.5329 125.084 80.3551 124.903 80.1182 124.78C79.8812 124.657 79.5807 124.596 79.2168 124.596C78.8867 124.596 78.5947 124.661 78.3408 124.792C78.0911 124.919 77.8944 125.101 77.7505 125.338C77.6108 125.575 77.541 125.855 77.541 126.176H76.3667C76.3667 125.707 76.4852 125.279 76.7222 124.894C76.9591 124.509 77.2913 124.202 77.7188 123.974C78.1504 123.745 78.6497 123.631 79.2168 123.631C79.7754 123.631 80.2642 123.73 80.6831 123.929C81.1021 124.124 81.4279 124.416 81.6606 124.805C81.8934 125.19 82.0098 125.671 82.0098 126.246C82.0098 126.479 81.9548 126.729 81.8447 126.995C81.7389 127.257 81.5718 127.503 81.3433 127.731C81.119 127.96 80.827 128.148 80.4673 128.296C80.1076 128.44 79.6759 128.512 79.1724 128.512H78.1694V127.801ZM78.1694 128.766V128.062H79.1724C79.7606 128.062 80.2472 128.131 80.6323 128.271C81.0174 128.411 81.32 128.597 81.54 128.83C81.7643 129.062 81.9209 129.318 82.0098 129.598C82.1029 129.873 82.1494 130.148 82.1494 130.423C82.1494 130.854 82.0754 131.237 81.9272 131.572C81.7834 131.906 81.5781 132.19 81.3115 132.422C81.0492 132.655 80.7402 132.831 80.3848 132.949C80.0293 133.068 79.6421 133.127 79.2231 133.127C78.8211 133.127 78.4424 133.07 78.0869 132.956C77.7357 132.841 77.4246 132.676 77.1538 132.46C76.883 132.24 76.6714 131.972 76.519 131.654C76.3667 131.333 76.2905 130.967 76.2905 130.556H77.4648C77.4648 130.878 77.5347 131.159 77.6743 131.4C77.8182 131.642 78.0213 131.83 78.2837 131.965C78.5503 132.097 78.8634 132.162 79.2231 132.162C79.5828 132.162 79.8918 132.101 80.1499 131.978C80.4123 131.851 80.6133 131.661 80.7529 131.407C80.8968 131.153 80.9688 130.833 80.9688 130.448C80.9688 130.063 80.8883 129.748 80.7275 129.502C80.5667 129.253 80.3382 129.069 80.042 128.95C79.75 128.827 79.4051 128.766 79.0073 128.766H78.1694ZM89.5698 127.643V129.052C89.5698 129.809 89.5021 130.448 89.3667 130.969C89.2313 131.489 89.0366 131.908 88.7827 132.226C88.5288 132.543 88.222 132.774 87.8623 132.917C87.5068 133.057 87.1048 133.127 86.6562 133.127C86.3008 133.127 85.9728 133.083 85.6724 132.994C85.3719 132.905 85.1011 132.763 84.8599 132.568C84.6229 132.369 84.4198 132.111 84.2505 131.794C84.0812 131.477 83.9521 131.091 83.8633 130.639C83.7744 130.186 83.73 129.657 83.73 129.052V127.643C83.73 126.885 83.7977 126.25 83.9331 125.738C84.0728 125.226 84.2695 124.816 84.5234 124.507C84.7773 124.194 85.082 123.969 85.4375 123.834C85.7972 123.699 86.1992 123.631 86.6436 123.631C87.0033 123.631 87.3333 123.675 87.6338 123.764C87.9385 123.849 88.2093 123.986 88.4463 124.177C88.6833 124.363 88.8843 124.613 89.0493 124.926C89.2186 125.235 89.3477 125.613 89.4365 126.062C89.5254 126.511 89.5698 127.037 89.5698 127.643ZM88.3892 129.242V127.446C88.3892 127.031 88.3638 126.667 88.313 126.354C88.2664 126.037 88.1966 125.766 88.1035 125.542C88.0104 125.317 87.8919 125.135 87.748 124.996C87.6084 124.856 87.4455 124.754 87.2593 124.691C87.0773 124.623 86.8721 124.589 86.6436 124.589C86.3643 124.589 86.1167 124.642 85.9009 124.748C85.6851 124.85 85.5031 125.013 85.355 125.237C85.2111 125.461 85.1011 125.755 85.0249 126.119C84.9487 126.483 84.9106 126.925 84.9106 127.446V129.242C84.9106 129.657 84.9339 130.023 84.9805 130.34C85.0312 130.658 85.1053 130.933 85.2026 131.166C85.3 131.394 85.4185 131.582 85.5581 131.73C85.6978 131.879 85.8586 131.989 86.0405 132.061C86.2267 132.128 86.432 132.162 86.6562 132.162C86.944 132.162 87.1958 132.107 87.4116 131.997C87.6274 131.887 87.8073 131.716 87.9512 131.483C88.0993 131.246 88.2093 130.943 88.2812 130.575C88.3532 130.203 88.3892 129.758 88.3892 129.242Z",fill:"#0F172A"})),{ToolBarFields:Zs,BlockName:ys,BlockLabel:Es,BlockDescription:ws,BlockAdvancedValue:vs,AdvancedFields:_s,FieldWrapper:ks,AdvancedInspectorControl:js,ClientSideMacros:xs,ValidationToggleGroup:Fs,ValidationBlockMessage:Bs,AttributeHelp:As}=JetFBComponents,{useInsertMacro:Ps,useIsAdvancedValidation:Ss,useUniqueNameOnDuplicate:Ns}=JetFBHooks,{__:Is}=wp.i18n,{InspectorControls:Ts,useBlockProps:Os}=wp.blockEditor,{TextControl:Js,PanelBody:Rs,__experimentalInputControl:qs,ExternalLink:Ds}=wp.components;let{InputControl:zs}=wp.components;void 0===zs&&(zs=qs);const Us=JSON.parse('{"apiVersion":3,"name":"jet-forms/time-field","category":"jet-form-builder-fields","keywords":["jetformbuilder","field","time"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"title":"Time Field","icon":"\\n\\n\\n","attributes":{"value":{"type":"object","default":{}},"min":{"type":"string","default":""},"max":{"type":"string","default":""},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:Gs}=wp.i18n,{createBlock:Ws}=wp.blocks,{name:Ks,icon:$s=""}=Us,Ys={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:$s}}),description:Gs("Allow the user to enter the desirable time. Let them type the time manually or choose from the convenient drop-down timer.","jet-form-builder"),edit:function(e){const{isSelected:C,attributes:t,setAttributes:l,editProps:{uniqKey:r}}=e,n=Os(),[a,i]=Ps("min"),[o,s]=Ps("max"),c=Ss();if(Ns(),t.isPreview)return(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},gs);const d=(0,h.createElement)(h.Fragment,null,Is("Plain date should be in hh:mm format.","jet-form-builder")," ",Is("Or you can use","jet-form-builder")," ",(0,h.createElement)(Ds,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---External-Macros#ctcurrentdate"},Is("macros","jet-form-builder"))," ",Is("and","jet-form-builder")," ",(0,h.createElement)(Ds,{href:"https://github.com/Crocoblock/jetformbuilder/wiki/Frontend-Macros---Filters"},Is("filters","jet-form-builder")),".");return[(0,h.createElement)(Zs,{key:r("ToolBarFields"),...e}),C&&(0,h.createElement)(Ts,{key:r("InspectorControls")},(0,h.createElement)(Rs,{title:Is("General","jet-form-builder")},(0,h.createElement)(Es,null),(0,h.createElement)(ys,null),(0,h.createElement)(ws,null)),(0,h.createElement)(Rs,{title:Is("Value","jet-form-builder")},(0,h.createElement)(vs,{help:d,style:{marginBottom:"1em"}}),(0,h.createElement)(xs,null,(0,h.createElement)(js,{value:t.min,label:Is("Starting from time","jet-form-builder"),onChangePreset:e=>l({min:e}),onChangeMacros:i},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Js,{id:e,ref:a,className:"jet-fb m-unset",value:t.min,onChange:e=>l({min:e})}),(0,h.createElement)(As,null,d))),(0,h.createElement)(js,{value:t.max,label:Is("Limit time to","jet-form-builder"),onChangePreset:e=>l({max:e}),onChangeMacros:s},({instanceId:e})=>(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Js,{id:e,ref:o,className:"jet-fb m-unset",value:t.max,onChange:e=>l({max:e})}),(0,h.createElement)(As,null,d))))),(0,h.createElement)(Rs,{title:Is("Validation","jet-form-builder")},(0,h.createElement)(Fs,null),c&&(0,h.createElement)(h.Fragment,null,Boolean(t.min)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Bs,{name:"date_min"})),Boolean(t.max)&&(0,h.createElement)(h.Fragment,null,(0,h.createElement)(Bs,{name:"date_max"})),(0,h.createElement)(Bs,{name:"empty"}))),(0,h.createElement)(_s,null)),(0,h.createElement)("div",{...n,key:r("viewBlock")},(0,h.createElement)(ks,{key:r("FieldWrapper"),...e},(0,h.createElement)(Js,{onChange:()=>{},className:"jet-form-builder__field-preview",key:r("place_holder_block"),placeholder:'Input type="time"'})))]},useEditProps:["uniqKey","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>Ws("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field","jet-forms/datetime-field","jet-forms/date-field"],transform:e=>Ws(Ks,{...e}),priority:0}]}},Xs=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,h.createElement)("g",{clipPath:"url(#clip0_75_1400)"},(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V144H15V19Z",fill:"white"}),(0,h.createElement)("path",{d:"M15 8H283.061V85H15V8Z",fill:"url(#paint0_linear_75_1400)"}),(0,h.createElement)("path",{d:"M15 8H283.061V85H15V8Z",fill:"url(#paint1_linear_75_1400)"}),(0,h.createElement)("g",{filter:"url(#filter0_d_75_1400)"},(0,h.createElement)("path",{d:"M219 14.2974C219 15.8887 218.421 17.4148 217.389 18.54C216.358 19.6652 214.959 20.2974 213.5 20.2974C212.041 20.2974 210.642 19.6652 209.611 18.54C208.579 17.4148 208 15.8887 208 14.2974L219 14.2974Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M219.5 14.2974V13.7974L219 13.7974L208 13.7974L207.5 13.7974L207.5 14.2974C207.5 16.0079 208.122 17.6562 209.242 18.8779C210.364 20.101 211.894 20.7974 213.5 20.7974C215.106 20.7974 216.636 20.101 217.758 18.8779C218.878 17.6562 219.5 16.0079 219.5 14.2974Z",stroke:"white"})),(0,h.createElement)("g",{clipPath:"url(#clip1_75_1400)"},(0,h.createElement)("path",{d:"M35.0654 97.4038L33.9281 96.2664C33.7385 96.0769 33.4323 96.0769 33.2428 96.2664L31.7264 97.7829L30.7883 96.8545L30.103 97.5398L30.7932 98.23L26.4578 102.565V104.874H28.7664L33.1018 100.539L33.792 101.229L34.4773 100.544L33.5441 99.6103L35.0606 98.0939C35.255 97.8995 35.255 97.5933 35.0654 97.4038ZM28.363 103.902L27.4298 102.969L31.3473 99.0514L32.2804 99.9846L28.363 103.902Z",fill:"#64748B"})),(0,h.createElement)("circle",{cx:"47.8098",cy:"100.5",r:"7.5",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"272.69",y:"97.584",width:"5.8324",height:"213",rx:"2.9162",transform:"rotate(90 272.69 97.584)",fill:"url(#paint2_linear_75_1400)"}),(0,h.createElement)("circle",{cx:"182",cy:"100.742",r:"5.5",transform:"rotate(90 182 100.742)",fill:"white",stroke:"#64748B"}),(0,h.createElement)("rect",{x:"25.5",y:"114.333",width:"120",height:"19.4134",rx:"2.4162",fill:"white",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M67.4553 127.694L68.8372 120.585H69.5403L68.1536 127.694H67.4553ZM69.4426 127.694L70.8293 120.585H71.5276L70.1409 127.694H69.4426ZM72.1233 123.295H67.0452V122.616H72.1233V123.295ZM71.7571 125.692H66.6741V125.019H71.7571V125.692ZM77.6506 125.302V126.044H72.5139V125.512L75.6975 120.585H76.4348L75.6438 122.011L73.5393 125.302H77.6506ZM76.6594 120.585V127.694H75.7561V120.585H76.6594ZM83.1292 126.952V127.694H78.4758V127.045L80.8049 124.452C81.0914 124.133 81.3127 123.863 81.469 123.642C81.6285 123.417 81.7392 123.217 81.801 123.041C81.8661 122.862 81.8987 122.68 81.8987 122.494C81.8987 122.26 81.8499 122.048 81.7522 121.859C81.6578 121.667 81.5178 121.514 81.3323 121.4C81.1467 121.286 80.9221 121.229 80.6584 121.229C80.3427 121.229 80.079 121.291 79.8674 121.415C79.6591 121.535 79.5028 121.705 79.3987 121.923C79.2945 122.141 79.2424 122.392 79.2424 122.675H78.3391C78.3391 122.274 78.427 121.908 78.6028 121.576C78.7786 121.244 79.039 120.98 79.384 120.785C79.7291 120.587 80.1539 120.487 80.6584 120.487C81.1077 120.487 81.4918 120.567 81.8108 120.727C82.1298 120.883 82.3739 121.104 82.5432 121.391C82.7157 121.674 82.802 122.006 82.802 122.387C82.802 122.595 82.7662 122.807 82.6946 123.021C82.6262 123.233 82.5302 123.445 82.4065 123.656C82.2861 123.868 82.1444 124.076 81.9817 124.281C81.8222 124.486 81.6513 124.688 81.469 124.887L79.5647 126.952H83.1292ZM88.6907 120.585V121.093L85.7463 127.694H84.7942L87.7336 121.327H83.886V120.585H88.6907ZM94.3792 126.952V127.694H89.7258V127.045L92.0549 124.452C92.3414 124.133 92.5627 123.863 92.719 123.642C92.8785 123.417 92.9892 123.217 93.051 123.041C93.1161 122.862 93.1487 122.68 93.1487 122.494C93.1487 122.26 93.0999 122.048 93.0022 121.859C92.9078 121.667 92.7678 121.514 92.5823 121.4C92.3967 121.286 92.1721 121.229 91.9084 121.229C91.5927 121.229 91.329 121.291 91.1174 121.415C90.9091 121.535 90.7528 121.705 90.6487 121.923C90.5445 122.141 90.4924 122.392 90.4924 122.675H89.5891C89.5891 122.274 89.677 121.908 89.8528 121.576C90.0286 121.244 90.289 120.98 90.634 120.785C90.9791 120.587 91.4039 120.487 91.9084 120.487C92.3577 120.487 92.7418 120.567 93.0608 120.727C93.3798 120.883 93.6239 121.104 93.7932 121.391C93.9657 121.674 94.052 122.006 94.052 122.387C94.052 122.595 94.0162 122.807 93.9446 123.021C93.8762 123.233 93.7802 123.445 93.6565 123.656C93.5361 123.868 93.3944 124.076 93.2317 124.281C93.0722 124.486 92.9013 124.688 92.719 124.887L90.8147 126.952H94.3792ZM96.5227 120.585V127.694H95.5803V120.585H96.5227ZM99.5012 123.783V124.555H96.3176V123.783H99.5012ZM99.9846 120.585V121.356H96.3176V120.585H99.9846ZM101.772 126.938H101.865C102.385 126.938 102.809 126.864 103.134 126.718C103.46 126.571 103.71 126.374 103.886 126.127C104.062 125.88 104.182 125.601 104.247 125.292C104.312 124.979 104.345 124.659 104.345 124.33V123.241C104.345 122.919 104.308 122.632 104.233 122.382C104.161 122.131 104.06 121.921 103.93 121.752C103.803 121.583 103.658 121.454 103.495 121.366C103.333 121.278 103.16 121.234 102.978 121.234C102.769 121.234 102.582 121.277 102.416 121.361C102.253 121.443 102.115 121.558 102.001 121.708C101.891 121.858 101.806 122.034 101.747 122.235C101.689 122.437 101.659 122.657 101.659 122.895C101.659 123.106 101.685 123.311 101.738 123.51C101.79 123.708 101.869 123.887 101.977 124.047C102.084 124.206 102.218 124.333 102.377 124.428C102.54 124.519 102.73 124.564 102.948 124.564C103.15 124.564 103.339 124.525 103.515 124.447C103.694 124.366 103.852 124.257 103.989 124.12C104.128 123.98 104.239 123.822 104.321 123.646C104.405 123.471 104.454 123.287 104.467 123.095H104.897C104.897 123.365 104.843 123.632 104.736 123.896C104.631 124.156 104.485 124.394 104.296 124.608C104.107 124.823 103.886 124.996 103.632 125.126C103.378 125.253 103.101 125.316 102.802 125.316C102.45 125.316 102.146 125.248 101.889 125.111C101.632 124.975 101.42 124.792 101.254 124.564C101.091 124.337 100.969 124.083 100.888 123.803C100.81 123.52 100.771 123.233 100.771 122.943C100.771 122.605 100.818 122.287 100.912 121.991C101.007 121.695 101.147 121.435 101.332 121.21C101.518 120.982 101.747 120.805 102.021 120.678C102.297 120.551 102.616 120.487 102.978 120.487C103.385 120.487 103.731 120.569 104.018 120.731C104.304 120.894 104.537 121.112 104.716 121.386C104.898 121.659 105.032 121.967 105.116 122.309C105.201 122.65 105.243 123.002 105.243 123.363V123.69C105.243 124.058 105.219 124.433 105.17 124.813C105.125 125.191 105.035 125.552 104.902 125.897C104.771 126.243 104.581 126.552 104.33 126.825C104.08 127.095 103.753 127.31 103.349 127.47C102.948 127.626 102.454 127.704 101.865 127.704H101.772V126.938Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"152",y:"113.833",width:"120.835",height:"20.4134",rx:"2.9162",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M260.898 122.448L262.695 120.654L264.493 122.448L265.045 121.896L262.695 119.546L260.346 121.896L260.898 122.448Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M264.493 126.043L262.696 127.836L260.898 126.043L260.346 126.595L262.696 128.944L265.045 126.595L264.493 126.043Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M209.882 123.288V124.055H206.034V123.288H209.882ZM206.181 120.232V127.341H205.238V120.232H206.181ZM210.702 120.232V127.341H209.765V120.232H210.702ZM216.894 126.574V127.341H213.129V126.574H216.894ZM213.319 120.232V127.341H212.377V120.232H213.319ZM216.396 123.288V124.055H213.129V123.288H216.396ZM216.845 120.232V121.003H213.129V120.232H216.845ZM218.671 120.232L220.38 122.956L222.089 120.232H223.188L220.941 123.752L223.241 127.341H222.133L220.38 124.563L218.627 127.341H217.519L219.818 123.752L217.572 120.232H218.671Z",fill:"#64748B"})),(0,h.createElement)("defs",null,(0,h.createElement)("filter",{id:"filter0_d_75_1400",x:"204.28",y:"12.3766",width:"16.683",height:"11.683",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB"},(0,h.createElement)("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),(0,h.createElement)("feColorMatrix",{in:"SourceAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",result:"hardAlpha"}),(0,h.createElement)("feOffset",{dx:"-0.878599",dy:"0.920745"}),(0,h.createElement)("feGaussianBlur",{stdDeviation:"0.920745"}),(0,h.createElement)("feComposite",{in2:"hardAlpha",operator:"out"}),(0,h.createElement)("feColorMatrix",{type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"}),(0,h.createElement)("feBlend",{mode:"normal",in2:"BackgroundImageFix",result:"effect1_dropShadow_75_1400"}),(0,h.createElement)("feBlend",{mode:"normal",in:"SourceGraphic",in2:"effect1_dropShadow_75_1400",result:"shape"})),(0,h.createElement)("linearGradient",{id:"paint0_linear_75_1400",x1:"15",y1:"85",x2:"15",y2:"8",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",null),(0,h.createElement)("stop",{offset:"1",stopColor:"#C4C4C4",stopOpacity:"0"})),(0,h.createElement)("linearGradient",{id:"paint1_linear_75_1400",x1:"15",y1:"8",x2:"283.061",y2:"8.00001",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",{stopColor:"#4F46E5",stopOpacity:"0"}),(0,h.createElement)("stop",{offset:"1",stopColor:"#4272F9"})),(0,h.createElement)("linearGradient",{id:"paint2_linear_75_1400",x1:"275.82",y1:"310.274",x2:"275.896",y2:"97.274",gradientUnits:"userSpaceOnUse"},(0,h.createElement)("stop",{offset:"0.0521219",stopColor:"#FF0000"}),(0,h.createElement)("stop",{offset:"0.164776",stopColor:"#FF8A00"}),(0,h.createElement)("stop",{offset:"0.27743",stopColor:"#FFE600"}),(0,h.createElement)("stop",{offset:"0.393479",stopColor:"#14FF00"}),(0,h.createElement)("stop",{offset:"0.493654",stopColor:"#00A3FF"}),(0,h.createElement)("stop",{offset:"0.611759",stopColor:"#0500FF"}),(0,h.createElement)("stop",{offset:"0.722596",stopColor:"#AD00FF"}),(0,h.createElement)("stop",{offset:"0.83525",stopColor:"#FF00C7"}),(0,h.createElement)("stop",{offset:"0.946088",stopColor:"#FF0000"})),(0,h.createElement)("clipPath",{id:"clip0_75_1400"},(0,h.createElement)("path",{d:"M15 19C15 16.7909 16.7909 15 19 15H279C281.209 15 283 16.7909 283 19V144H15V19Z",fill:"white"})),(0,h.createElement)("clipPath",{id:"clip1_75_1400"},(0,h.createElement)("rect",{width:"11.6648",height:"11.6648",fill:"white",transform:"translate(25 94.6675)"})))),{AdvancedFields:Qs,GeneralFields:ec,ToolBarFields:Cc,FieldWrapper:tc,FieldSettingsWrapper:lc}=JetFBComponents,{useUniqKey:rc,useUniqueNameOnDuplicate:nc}=JetFBHooks,{__experimentalInputControl:ac}=wp.components,{InspectorControls:ic,useBlockProps:oc}=wp.blockEditor;let{InputControl:sc}=wp.components;void 0===sc&&(sc=ac);const cc=JSON.parse('{"apiVersion":3,"name":"jet-forms/color-picker-field","category":"jet-form-builder-fields","title":"Color Picker Field","icon":"\\n\\n","keywords":["jetformbuilder","field","colorpicker","picker","input"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false,"jetFBSanitizeValue":true},"attributes":{"value":{"type":"object","default":{}},"validation":{"type":"object","default":{}},"label":{"type":"string","default":"","jfb":{"rich":true}},"name":{"type":"string","default":"field_name"},"desc":{"type":"string","default":"","jfb":{"rich":true}},"default":{"type":"string","default":"","jfb":{"rich-no-preset":true}},"required":{"type":"boolean","default":false},"add_prev":{"type":"boolean","default":false},"prev_label":{"type":"string","default":"","jfb":{"rich":true}},"visibility":{"type":"string","default":""},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}},"usesContext":["jet-forms/repeater-field--name","jet-forms/repeater-row--default","jet-forms/repeater-row--current-index"]}'),{__:dc}=wp.i18n,{createBlock:mc}=wp.blocks,{name:uc,icon:pc}=cc,fc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:pc}}),description:dc("Give your users an opportunity to design your website and pick a certain color in the form with the help of the Color Picker Field.","jet-form-builder"),edit:function(e){const C=oc(),t=rc();nc();const{isSelected:l,attributes:r}=e;return r.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Xs):[(0,h.createElement)(Cc,{key:t("ToolBarFields"),...e}),l&&(0,h.createElement)(ic,{key:t("InspectorControls")},(0,h.createElement)(ec,null),(0,h.createElement)(lc,null),(0,h.createElement)(Qs,null)),(0,h.createElement)("div",{...C,key:t("viewBlock")},(0,h.createElement)(tc,{key:t("FieldWrapper"),...e},(0,h.createElement)(sc,{className:"jet-form-builder__field-wrap jet-form-builder__field-preview",type:"color",key:"color_picker_place_holder_block",onChange:()=>{}})))]},useEditProps:["uniqKey","blockName","attrHelp"],example:{attributes:{isPreview:!0}},transforms:{to:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>mc("jet-forms/text-field",{...e}),priority:0}],from:[{type:"block",blocks:["jet-forms/text-field"],transform:e=>mc(uc,{...e}),priority:0}]}},Vc=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#F1F5F9"}),(0,h.createElement)("path",{d:"M87.1279 46.3447H84.6055L84.5918 45.2852H86.8818C87.2601 45.2852 87.5905 45.2214 87.873 45.0938C88.1556 44.9661 88.3743 44.7839 88.5293 44.5469C88.6888 44.3053 88.7686 44.0182 88.7686 43.6855C88.7686 43.321 88.6979 43.0247 88.5566 42.7969C88.4199 42.5645 88.208 42.3958 87.9209 42.291C87.6383 42.1816 87.2783 42.127 86.8408 42.127H84.8994V51H83.5801V41.0469H86.8408C87.3512 41.0469 87.807 41.0993 88.208 41.2041C88.609 41.3044 88.9486 41.4639 89.2266 41.6826C89.5091 41.8968 89.7233 42.1702 89.8691 42.5029C90.015 42.8356 90.0879 43.2344 90.0879 43.6992C90.0879 44.1094 89.9831 44.4808 89.7734 44.8135C89.5638 45.1416 89.2721 45.4105 88.8984 45.6201C88.5293 45.8298 88.0964 45.9642 87.5996 46.0234L87.1279 46.3447ZM87.0664 51H84.0859L84.8311 49.9268H87.0664C87.4857 49.9268 87.8411 49.8538 88.1328 49.708C88.429 49.5622 88.6546 49.3571 88.8096 49.0928C88.9645 48.8239 89.042 48.5072 89.042 48.1426C89.042 47.7734 88.9759 47.4544 88.8438 47.1855C88.7116 46.9167 88.5042 46.7093 88.2217 46.5635C87.9391 46.4176 87.5745 46.3447 87.1279 46.3447H85.248L85.2617 45.2852H87.832L88.1123 45.668C88.5908 45.709 88.9964 45.8457 89.3291 46.0781C89.6618 46.306 89.9147 46.5977 90.0879 46.9531C90.2656 47.3086 90.3545 47.7005 90.3545 48.1289C90.3545 48.7487 90.2178 49.2728 89.9443 49.7012C89.6755 50.125 89.2949 50.4486 88.8027 50.6719C88.3105 50.8906 87.7318 51 87.0664 51ZM91.7764 47.3838V47.2266C91.7764 46.6934 91.8538 46.1989 92.0088 45.7432C92.1637 45.2829 92.387 44.8841 92.6787 44.5469C92.9704 44.2051 93.3236 43.9408 93.7383 43.7539C94.153 43.5625 94.6178 43.4668 95.1328 43.4668C95.6523 43.4668 96.1195 43.5625 96.5342 43.7539C96.9535 43.9408 97.3089 44.2051 97.6006 44.5469C97.8968 44.8841 98.1224 45.2829 98.2773 45.7432C98.4323 46.1989 98.5098 46.6934 98.5098 47.2266V47.3838C98.5098 47.917 98.4323 48.4115 98.2773 48.8672C98.1224 49.3229 97.8968 49.7217 97.6006 50.0635C97.3089 50.4007 96.9557 50.665 96.541 50.8564C96.1309 51.0433 95.666 51.1367 95.1465 51.1367C94.627 51.1367 94.1598 51.0433 93.7451 50.8564C93.3304 50.665 92.9749 50.4007 92.6787 50.0635C92.387 49.7217 92.1637 49.3229 92.0088 48.8672C91.8538 48.4115 91.7764 47.917 91.7764 47.3838ZM93.041 47.2266V47.3838C93.041 47.7529 93.0843 48.1016 93.1709 48.4297C93.2575 48.7533 93.3874 49.0404 93.5605 49.291C93.7383 49.5417 93.9593 49.7399 94.2236 49.8857C94.488 50.027 94.7956 50.0977 95.1465 50.0977C95.4928 50.0977 95.7959 50.027 96.0557 49.8857C96.32 49.7399 96.5387 49.5417 96.7119 49.291C96.8851 49.0404 97.015 48.7533 97.1016 48.4297C97.1927 48.1016 97.2383 47.7529 97.2383 47.3838V47.2266C97.2383 46.862 97.1927 46.5179 97.1016 46.1943C97.015 45.8662 96.8828 45.5768 96.7051 45.3262C96.5319 45.071 96.3132 44.8704 96.0488 44.7246C95.7891 44.5788 95.4837 44.5059 95.1328 44.5059C94.7865 44.5059 94.4811 44.5788 94.2168 44.7246C93.957 44.8704 93.7383 45.071 93.5605 45.3262C93.3874 45.5768 93.2575 45.8662 93.1709 46.1943C93.0843 46.5179 93.041 46.862 93.041 47.2266ZM99.7607 47.3838V47.2266C99.7607 46.6934 99.8382 46.1989 99.9932 45.7432C100.148 45.2829 100.371 44.8841 100.663 44.5469C100.955 44.2051 101.308 43.9408 101.723 43.7539C102.137 43.5625 102.602 43.4668 103.117 43.4668C103.637 43.4668 104.104 43.5625 104.519 43.7539C104.938 43.9408 105.293 44.2051 105.585 44.5469C105.881 44.8841 106.107 45.2829 106.262 45.7432C106.417 46.1989 106.494 46.6934 106.494 47.2266V47.3838C106.494 47.917 106.417 48.4115 106.262 48.8672C106.107 49.3229 105.881 49.7217 105.585 50.0635C105.293 50.4007 104.94 50.665 104.525 50.8564C104.115 51.0433 103.65 51.1367 103.131 51.1367C102.611 51.1367 102.144 51.0433 101.729 50.8564C101.315 50.665 100.959 50.4007 100.663 50.0635C100.371 49.7217 100.148 49.3229 99.9932 48.8672C99.8382 48.4115 99.7607 47.917 99.7607 47.3838ZM101.025 47.2266V47.3838C101.025 47.7529 101.069 48.1016 101.155 48.4297C101.242 48.7533 101.372 49.0404 101.545 49.291C101.723 49.5417 101.944 49.7399 102.208 49.8857C102.472 50.027 102.78 50.0977 103.131 50.0977C103.477 50.0977 103.78 50.027 104.04 49.8857C104.304 49.7399 104.523 49.5417 104.696 49.291C104.869 49.0404 104.999 48.7533 105.086 48.4297C105.177 48.1016 105.223 47.7529 105.223 47.3838V47.2266C105.223 46.862 105.177 46.5179 105.086 46.1943C104.999 45.8662 104.867 45.5768 104.689 45.3262C104.516 45.071 104.298 44.8704 104.033 44.7246C103.773 44.5788 103.468 44.5059 103.117 44.5059C102.771 44.5059 102.465 44.5788 102.201 44.7246C101.941 44.8704 101.723 45.071 101.545 45.3262C101.372 45.5768 101.242 45.8662 101.155 46.1943C101.069 46.5179 101.025 46.862 101.025 47.2266ZM109.352 40.5V51H108.08V40.5H109.352ZM113.87 43.6035L110.644 47.0557L108.839 48.9287L108.736 47.582L110.028 46.0371L112.325 43.6035H113.87ZM112.715 51L110.076 47.4727L110.732 46.3447L114.205 51H112.715ZM123.01 49.7354V45.9277C123.01 45.6361 122.951 45.3831 122.832 45.1689C122.718 44.9502 122.545 44.7816 122.312 44.6631C122.08 44.5446 121.793 44.4854 121.451 44.4854C121.132 44.4854 120.852 44.54 120.61 44.6494C120.373 44.7588 120.187 44.9023 120.05 45.0801C119.918 45.2578 119.852 45.4492 119.852 45.6543H118.587C118.587 45.39 118.655 45.1279 118.792 44.8682C118.929 44.6084 119.125 44.3737 119.38 44.1641C119.64 43.9499 119.95 43.7812 120.31 43.6582C120.674 43.5306 121.08 43.4668 121.526 43.4668C122.064 43.4668 122.538 43.5579 122.948 43.7402C123.363 43.9225 123.687 44.1982 123.919 44.5674C124.156 44.932 124.274 45.39 124.274 45.9414V49.3867C124.274 49.6328 124.295 49.8949 124.336 50.1729C124.382 50.4508 124.448 50.6901 124.534 50.8906V51H123.215C123.151 50.8542 123.101 50.6605 123.064 50.4189C123.028 50.1729 123.01 49.945 123.01 49.7354ZM123.229 46.5156L123.242 47.4043H121.964C121.604 47.4043 121.283 47.4339 121 47.4932C120.717 47.5479 120.48 47.6322 120.289 47.7461C120.098 47.86 119.952 48.0036 119.852 48.1768C119.751 48.3454 119.701 48.5436 119.701 48.7715C119.701 49.0039 119.754 49.2158 119.858 49.4072C119.963 49.5986 120.12 49.7513 120.33 49.8652C120.544 49.9746 120.806 50.0293 121.116 50.0293C121.504 50.0293 121.845 49.9473 122.142 49.7832C122.438 49.6191 122.673 49.4186 122.846 49.1816C123.023 48.9447 123.119 48.7145 123.133 48.4912L123.673 49.0996C123.641 49.291 123.554 49.5029 123.413 49.7354C123.272 49.9678 123.083 50.1911 122.846 50.4053C122.613 50.6149 122.335 50.7904 122.012 50.9316C121.693 51.0684 121.333 51.1367 120.932 51.1367C120.43 51.1367 119.991 51.0387 119.612 50.8428C119.239 50.6468 118.947 50.3848 118.737 50.0566C118.532 49.724 118.43 49.3525 118.43 48.9424C118.43 48.5459 118.507 48.1973 118.662 47.8965C118.817 47.5911 119.04 47.3382 119.332 47.1377C119.624 46.9326 119.975 46.7777 120.385 46.6729C120.795 46.568 121.253 46.5156 121.759 46.5156H123.229ZM127.528 45.1826V51H126.264V43.6035H127.46L127.528 45.1826ZM127.228 47.0215L126.701 47.001C126.706 46.4951 126.781 46.028 126.927 45.5996C127.073 45.1667 127.278 44.7907 127.542 44.4717C127.806 44.1527 128.121 43.9066 128.485 43.7334C128.854 43.5557 129.262 43.4668 129.709 43.4668C130.074 43.4668 130.402 43.5169 130.693 43.6172C130.985 43.7129 131.233 43.8678 131.438 44.082C131.648 44.2962 131.808 44.5742 131.917 44.916C132.026 45.2533 132.081 45.6657 132.081 46.1533V51H130.81V46.1396C130.81 45.7523 130.753 45.4424 130.639 45.21C130.525 44.973 130.358 44.8021 130.14 44.6973C129.921 44.5879 129.652 44.5332 129.333 44.5332C129.019 44.5332 128.731 44.5993 128.472 44.7314C128.216 44.8636 127.995 45.0459 127.809 45.2783C127.626 45.5107 127.483 45.7773 127.378 46.0781C127.278 46.3743 127.228 46.6888 127.228 47.0215ZM141.836 49.7354V45.9277C141.836 45.6361 141.777 45.3831 141.658 45.1689C141.544 44.9502 141.371 44.7816 141.139 44.6631C140.906 44.5446 140.619 44.4854 140.277 44.4854C139.958 44.4854 139.678 44.54 139.437 44.6494C139.2 44.7588 139.013 44.9023 138.876 45.0801C138.744 45.2578 138.678 45.4492 138.678 45.6543H137.413C137.413 45.39 137.481 45.1279 137.618 44.8682C137.755 44.6084 137.951 44.3737 138.206 44.1641C138.466 43.9499 138.776 43.7812 139.136 43.6582C139.5 43.5306 139.906 43.4668 140.353 43.4668C140.89 43.4668 141.364 43.5579 141.774 43.7402C142.189 43.9225 142.513 44.1982 142.745 44.5674C142.982 44.932 143.101 45.39 143.101 45.9414V49.3867C143.101 49.6328 143.121 49.8949 143.162 50.1729C143.208 50.4508 143.274 50.6901 143.36 50.8906V51H142.041C141.977 50.8542 141.927 50.6605 141.891 50.4189C141.854 50.1729 141.836 49.945 141.836 49.7354ZM142.055 46.5156L142.068 47.4043H140.79C140.43 47.4043 140.109 47.4339 139.826 47.4932C139.544 47.5479 139.307 47.6322 139.115 47.7461C138.924 47.86 138.778 48.0036 138.678 48.1768C138.577 48.3454 138.527 48.5436 138.527 48.7715C138.527 49.0039 138.58 49.2158 138.685 49.4072C138.789 49.5986 138.947 49.7513 139.156 49.8652C139.37 49.9746 139.632 50.0293 139.942 50.0293C140.33 50.0293 140.672 49.9473 140.968 49.7832C141.264 49.6191 141.499 49.4186 141.672 49.1816C141.85 48.9447 141.945 48.7145 141.959 48.4912L142.499 49.0996C142.467 49.291 142.381 49.5029 142.239 49.7354C142.098 49.9678 141.909 50.1911 141.672 50.4053C141.439 50.6149 141.161 50.7904 140.838 50.9316C140.519 51.0684 140.159 51.1367 139.758 51.1367C139.257 51.1367 138.817 51.0387 138.438 50.8428C138.065 50.6468 137.773 50.3848 137.563 50.0566C137.358 49.724 137.256 49.3525 137.256 48.9424C137.256 48.5459 137.333 48.1973 137.488 47.8965C137.643 47.5911 137.867 47.3382 138.158 47.1377C138.45 46.9326 138.801 46.7777 139.211 46.6729C139.621 46.568 140.079 46.5156 140.585 46.5156H142.055ZM146.354 45.0254V53.8438H145.083V43.6035H146.245L146.354 45.0254ZM151.338 47.2402V47.3838C151.338 47.9215 151.274 48.4206 151.146 48.8809C151.019 49.3366 150.832 49.7331 150.586 50.0703C150.344 50.4076 150.046 50.6696 149.69 50.8564C149.335 51.0433 148.927 51.1367 148.467 51.1367C147.997 51.1367 147.583 51.0592 147.223 50.9043C146.863 50.7493 146.557 50.5238 146.307 50.2275C146.056 49.9313 145.855 49.5758 145.705 49.1611C145.559 48.7464 145.459 48.2793 145.404 47.7598V46.9941C145.459 46.4473 145.562 45.9574 145.712 45.5244C145.862 45.0915 146.061 44.7223 146.307 44.417C146.557 44.1071 146.86 43.8724 147.216 43.7129C147.571 43.5488 147.981 43.4668 148.446 43.4668C148.911 43.4668 149.324 43.5579 149.684 43.7402C150.044 43.918 150.347 44.1732 150.593 44.5059C150.839 44.8385 151.023 45.2373 151.146 45.7021C151.274 46.1624 151.338 46.6751 151.338 47.2402ZM150.066 47.3838V47.2402C150.066 46.8711 150.028 46.5247 149.95 46.2012C149.873 45.873 149.752 45.5859 149.588 45.3398C149.428 45.0892 149.223 44.8932 148.973 44.752C148.722 44.6061 148.424 44.5332 148.077 44.5332C147.758 44.5332 147.48 44.5879 147.243 44.6973C147.011 44.8066 146.812 44.9548 146.648 45.1416C146.484 45.3239 146.35 45.5335 146.245 45.7705C146.145 46.0029 146.07 46.2445 146.02 46.4951V48.2656C146.111 48.5846 146.238 48.8854 146.402 49.168C146.566 49.446 146.785 49.6715 147.059 49.8447C147.332 50.0133 147.676 50.0977 148.091 50.0977C148.433 50.0977 148.727 50.027 148.973 49.8857C149.223 49.7399 149.428 49.5417 149.588 49.291C149.752 49.0404 149.873 48.7533 149.95 48.4297C150.028 48.1016 150.066 47.7529 150.066 47.3838ZM154.216 45.0254V53.8438H152.944V43.6035H154.106L154.216 45.0254ZM159.199 47.2402V47.3838C159.199 47.9215 159.135 48.4206 159.008 48.8809C158.88 49.3366 158.693 49.7331 158.447 50.0703C158.206 50.4076 157.907 50.6696 157.552 50.8564C157.196 51.0433 156.788 51.1367 156.328 51.1367C155.859 51.1367 155.444 51.0592 155.084 50.9043C154.724 50.7493 154.419 50.5238 154.168 50.2275C153.917 49.9313 153.717 49.5758 153.566 49.1611C153.421 48.7464 153.32 48.2793 153.266 47.7598V46.9941C153.32 46.4473 153.423 45.9574 153.573 45.5244C153.724 45.0915 153.922 44.7223 154.168 44.417C154.419 44.1071 154.722 43.8724 155.077 43.7129C155.433 43.5488 155.843 43.4668 156.308 43.4668C156.772 43.4668 157.185 43.5579 157.545 43.7402C157.905 43.918 158.208 44.1732 158.454 44.5059C158.7 44.8385 158.885 45.2373 159.008 45.7021C159.135 46.1624 159.199 46.6751 159.199 47.2402ZM157.928 47.3838V47.2402C157.928 46.8711 157.889 46.5247 157.812 46.2012C157.734 45.873 157.613 45.5859 157.449 45.3398C157.29 45.0892 157.085 44.8932 156.834 44.752C156.583 44.6061 156.285 44.5332 155.938 44.5332C155.619 44.5332 155.341 44.5879 155.104 44.6973C154.872 44.8066 154.674 44.9548 154.51 45.1416C154.346 45.3239 154.211 45.5335 154.106 45.7705C154.006 46.0029 153.931 46.2445 153.881 46.4951V48.2656C153.972 48.5846 154.1 48.8854 154.264 49.168C154.428 49.446 154.646 49.6715 154.92 49.8447C155.193 50.0133 155.537 50.0977 155.952 50.0977C156.294 50.0977 156.588 50.027 156.834 49.8857C157.085 49.7399 157.29 49.5417 157.449 49.291C157.613 49.0404 157.734 48.7533 157.812 48.4297C157.889 48.1016 157.928 47.7529 157.928 47.3838ZM160.478 47.3838V47.2266C160.478 46.6934 160.555 46.1989 160.71 45.7432C160.865 45.2829 161.088 44.8841 161.38 44.5469C161.672 44.2051 162.025 43.9408 162.439 43.7539C162.854 43.5625 163.319 43.4668 163.834 43.4668C164.354 43.4668 164.821 43.5625 165.235 43.7539C165.655 43.9408 166.01 44.2051 166.302 44.5469C166.598 44.8841 166.824 45.2829 166.979 45.7432C167.133 46.1989 167.211 46.6934 167.211 47.2266V47.3838C167.211 47.917 167.133 48.4115 166.979 48.8672C166.824 49.3229 166.598 49.7217 166.302 50.0635C166.01 50.4007 165.657 50.665 165.242 50.8564C164.832 51.0433 164.367 51.1367 163.848 51.1367C163.328 51.1367 162.861 51.0433 162.446 50.8564C162.032 50.665 161.676 50.4007 161.38 50.0635C161.088 49.7217 160.865 49.3229 160.71 48.8672C160.555 48.4115 160.478 47.917 160.478 47.3838ZM161.742 47.2266V47.3838C161.742 47.7529 161.785 48.1016 161.872 48.4297C161.959 48.7533 162.089 49.0404 162.262 49.291C162.439 49.5417 162.66 49.7399 162.925 49.8857C163.189 50.027 163.497 50.0977 163.848 50.0977C164.194 50.0977 164.497 50.027 164.757 49.8857C165.021 49.7399 165.24 49.5417 165.413 49.291C165.586 49.0404 165.716 48.7533 165.803 48.4297C165.894 48.1016 165.939 47.7529 165.939 47.3838V47.2266C165.939 46.862 165.894 46.5179 165.803 46.1943C165.716 45.8662 165.584 45.5768 165.406 45.3262C165.233 45.071 165.014 44.8704 164.75 44.7246C164.49 44.5788 164.185 44.5059 163.834 44.5059C163.488 44.5059 163.182 44.5788 162.918 44.7246C162.658 44.8704 162.439 45.071 162.262 45.3262C162.089 45.5768 161.959 45.8662 161.872 46.1943C161.785 46.5179 161.742 46.862 161.742 47.2266ZM170.171 43.6035V51H168.899V43.6035H170.171ZM168.804 41.6416C168.804 41.4365 168.865 41.2633 168.988 41.1221C169.116 40.9808 169.303 40.9102 169.549 40.9102C169.79 40.9102 169.975 40.9808 170.103 41.1221C170.235 41.2633 170.301 41.4365 170.301 41.6416C170.301 41.8376 170.235 42.0062 170.103 42.1475C169.975 42.2842 169.79 42.3525 169.549 42.3525C169.303 42.3525 169.116 42.2842 168.988 42.1475C168.865 42.0062 168.804 41.8376 168.804 41.6416ZM173.466 45.1826V51H172.201V43.6035H173.397L173.466 45.1826ZM173.165 47.0215L172.639 47.001C172.643 46.4951 172.718 46.028 172.864 45.5996C173.01 45.1667 173.215 44.7907 173.479 44.4717C173.744 44.1527 174.058 43.9066 174.423 43.7334C174.792 43.5557 175.2 43.4668 175.646 43.4668C176.011 43.4668 176.339 43.5169 176.631 43.6172C176.923 43.7129 177.171 43.8678 177.376 44.082C177.586 44.2962 177.745 44.5742 177.854 44.916C177.964 45.2533 178.019 45.6657 178.019 46.1533V51H176.747V46.1396C176.747 45.7523 176.69 45.4424 176.576 45.21C176.462 44.973 176.296 44.8021 176.077 44.6973C175.858 44.5879 175.59 44.5332 175.271 44.5332C174.956 44.5332 174.669 44.5993 174.409 44.7314C174.154 44.8636 173.933 45.0459 173.746 45.2783C173.564 45.5107 173.42 45.7773 173.315 46.0781C173.215 46.3743 173.165 46.6888 173.165 47.0215ZM183.036 43.6035V44.5742H179.037V43.6035H183.036ZM180.391 41.8057H181.655V49.168C181.655 49.4186 181.694 49.6077 181.771 49.7354C181.849 49.863 181.949 49.9473 182.072 49.9883C182.195 50.0293 182.327 50.0498 182.469 50.0498C182.574 50.0498 182.683 50.0407 182.797 50.0225C182.915 49.9997 183.004 49.9814 183.063 49.9678L183.07 51C182.97 51.0319 182.838 51.0615 182.674 51.0889C182.514 51.1208 182.321 51.1367 182.093 51.1367C181.783 51.1367 181.498 51.0752 181.238 50.9521C180.979 50.8291 180.771 50.624 180.616 50.3369C180.466 50.0452 180.391 49.6533 180.391 49.1611V41.8057ZM185.777 45.0732V51H184.506V43.6035H185.709L185.777 45.0732ZM185.518 47.0215L184.93 47.001C184.934 46.4951 185 46.028 185.128 45.5996C185.256 45.1667 185.445 44.7907 185.695 44.4717C185.946 44.1527 186.258 43.9066 186.632 43.7334C187.006 43.5557 187.438 43.4668 187.931 43.4668C188.277 43.4668 188.596 43.5169 188.888 43.6172C189.179 43.7129 189.432 43.8656 189.646 44.0752C189.861 44.2848 190.027 44.5537 190.146 44.8818C190.264 45.21 190.323 45.6064 190.323 46.0713V51H189.059V46.1328C189.059 45.7454 188.993 45.4355 188.86 45.2031C188.733 44.9707 188.55 44.8021 188.313 44.6973C188.076 44.5879 187.799 44.5332 187.479 44.5332C187.106 44.5332 186.794 44.5993 186.543 44.7314C186.292 44.8636 186.092 45.0459 185.941 45.2783C185.791 45.5107 185.682 45.7773 185.613 46.0781C185.549 46.3743 185.518 46.6888 185.518 47.0215ZM190.31 46.3242L189.462 46.584C189.466 46.1784 189.533 45.7887 189.66 45.415C189.792 45.0413 189.981 44.7087 190.228 44.417C190.478 44.1253 190.786 43.8952 191.15 43.7266C191.515 43.5534 191.932 43.4668 192.401 43.4668C192.798 43.4668 193.149 43.5192 193.454 43.624C193.764 43.7288 194.024 43.8906 194.233 44.1094C194.448 44.3236 194.609 44.5993 194.719 44.9365C194.828 45.2738 194.883 45.6748 194.883 46.1396V51H193.611V46.126C193.611 45.7113 193.545 45.39 193.413 45.1621C193.285 44.9297 193.103 44.7679 192.866 44.6768C192.634 44.5811 192.356 44.5332 192.032 44.5332C191.754 44.5332 191.508 44.5811 191.294 44.6768C191.08 44.7725 190.9 44.9046 190.754 45.0732C190.608 45.2373 190.496 45.4264 190.419 45.6406C190.346 45.8548 190.31 46.0827 190.31 46.3242ZM199.866 51.1367C199.351 51.1367 198.884 51.0501 198.465 50.877C198.05 50.6992 197.692 50.4508 197.392 50.1318C197.095 49.8128 196.868 49.4346 196.708 48.9971C196.549 48.5596 196.469 48.0811 196.469 47.5615V47.2744C196.469 46.6729 196.558 46.1374 196.735 45.668C196.913 45.194 197.155 44.793 197.46 44.4648C197.765 44.1367 198.112 43.8883 198.499 43.7197C198.886 43.5511 199.287 43.4668 199.702 43.4668C200.231 43.4668 200.687 43.5579 201.069 43.7402C201.457 43.9225 201.773 44.1777 202.02 44.5059C202.266 44.8294 202.448 45.2122 202.566 45.6543C202.685 46.0918 202.744 46.5703 202.744 47.0898V47.6572H197.221V46.625H201.479V46.5293C201.461 46.2012 201.393 45.8822 201.274 45.5723C201.16 45.2624 200.978 45.0072 200.728 44.8066C200.477 44.6061 200.135 44.5059 199.702 44.5059C199.415 44.5059 199.151 44.5674 198.909 44.6904C198.668 44.8089 198.46 44.9867 198.287 45.2236C198.114 45.4606 197.979 45.75 197.884 46.0918C197.788 46.4336 197.74 46.8278 197.74 47.2744V47.5615C197.74 47.9124 197.788 48.2428 197.884 48.5527C197.984 48.8581 198.128 49.127 198.314 49.3594C198.506 49.5918 198.736 49.7741 199.005 49.9062C199.278 50.0384 199.588 50.1045 199.935 50.1045C200.381 50.1045 200.759 50.0133 201.069 49.8311C201.379 49.6488 201.65 49.4049 201.883 49.0996L202.648 49.708C202.489 49.9495 202.286 50.1797 202.04 50.3984C201.794 50.6172 201.491 50.7949 201.131 50.9316C200.775 51.0684 200.354 51.1367 199.866 51.1367ZM205.485 45.1826V51H204.221V43.6035H205.417L205.485 45.1826ZM205.185 47.0215L204.658 47.001C204.663 46.4951 204.738 46.028 204.884 45.5996C205.03 45.1667 205.235 44.7907 205.499 44.4717C205.763 44.1527 206.078 43.9066 206.442 43.7334C206.812 43.5557 207.219 43.4668 207.666 43.4668C208.031 43.4668 208.359 43.5169 208.65 43.6172C208.942 43.7129 209.19 43.8678 209.396 44.082C209.605 44.2962 209.765 44.5742 209.874 44.916C209.983 45.2533 210.038 45.6657 210.038 46.1533V51H208.767V46.1396C208.767 45.7523 208.71 45.4424 208.596 45.21C208.482 44.973 208.315 44.8021 208.097 44.6973C207.878 44.5879 207.609 44.5332 207.29 44.5332C206.976 44.5332 206.688 44.5993 206.429 44.7314C206.174 44.8636 205.952 45.0459 205.766 45.2783C205.583 45.5107 205.44 45.7773 205.335 46.0781C205.235 46.3743 205.185 46.6888 205.185 47.0215ZM215.056 43.6035V44.5742H211.057V43.6035H215.056ZM212.41 41.8057H213.675V49.168C213.675 49.4186 213.714 49.6077 213.791 49.7354C213.868 49.863 213.969 49.9473 214.092 49.9883C214.215 50.0293 214.347 50.0498 214.488 50.0498C214.593 50.0498 214.702 50.0407 214.816 50.0225C214.935 49.9997 215.024 49.9814 215.083 49.9678L215.09 51C214.99 51.0319 214.857 51.0615 214.693 51.0889C214.534 51.1208 214.34 51.1367 214.112 51.1367C213.802 51.1367 213.518 51.0752 213.258 50.9521C212.998 50.8291 212.791 50.624 212.636 50.3369C212.485 50.0452 212.41 49.6533 212.41 49.1611V41.8057Z",fill:"#64748B"}),(0,h.createElement)("path",{d:"M63.2007 70.707V80H62.0264V72.1733L59.6587 73.0366V71.9766L63.0166 70.707H63.2007Z",fill:"#4272F9"}),(0,h.createElement)("rect",{x:"51.7295",y:"64.5",width:"21",height:"21",rx:"10.5",stroke:"#4272F9"}),(0,h.createElement)("rect",{x:"77.7295",y:"74.5",width:"55.7706",height:"1",stroke:"#4272F9"}),(0,h.createElement)("rect",{x:"138",y:"64",width:"22",height:"22",rx:"11",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M152.168 79.0352V80H146.118V79.1558L149.146 75.7852C149.519 75.3704 149.806 75.0192 150.01 74.7314C150.217 74.4395 150.361 74.1792 150.441 73.9507C150.526 73.7179 150.568 73.481 150.568 73.2397C150.568 72.9351 150.505 72.66 150.378 72.4146C150.255 72.1649 150.073 71.966 149.832 71.8179C149.591 71.6698 149.299 71.5957 148.956 71.5957C148.545 71.5957 148.203 71.6761 147.927 71.8369C147.657 71.9935 147.454 72.2135 147.318 72.4971C147.183 72.7806 147.115 73.1064 147.115 73.4746H145.941C145.941 72.9541 146.055 72.478 146.283 72.0464C146.512 71.6147 146.851 71.272 147.299 71.0181C147.748 70.7599 148.3 70.6309 148.956 70.6309C149.54 70.6309 150.039 70.7345 150.454 70.9419C150.869 71.145 151.186 71.4328 151.406 71.8052C151.63 72.1733 151.742 72.605 151.742 73.1001C151.742 73.3709 151.696 73.646 151.603 73.9253C151.514 74.2004 151.389 74.4754 151.228 74.7505C151.072 75.0256 150.888 75.2964 150.676 75.563C150.469 75.8296 150.247 76.092 150.01 76.3501L147.534 79.0352H152.168Z",fill:"white"}),(0,h.createElement)("rect",{x:"164",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"198.936",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"172.734",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"207.67",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"181.468",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"216.404",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("rect",{x:"190.202",y:"74",width:"4.36697",height:"2",fill:"#64748B"}),(0,h.createElement)("path",{d:"M234.596 74.8013H235.434C235.845 74.8013 236.183 74.7336 236.45 74.5981C236.721 74.4585 236.922 74.2702 237.053 74.0332C237.188 73.792 237.256 73.5212 237.256 73.2207C237.256 72.8652 237.197 72.5669 237.078 72.3257C236.96 72.0845 236.782 71.9025 236.545 71.7798C236.308 71.6571 236.008 71.5957 235.644 71.5957C235.314 71.5957 235.022 71.6613 234.768 71.7925C234.518 71.9194 234.321 72.1014 234.177 72.3384C234.038 72.5754 233.968 72.8547 233.968 73.1763H232.794C232.794 72.7065 232.912 72.2791 233.149 71.894C233.386 71.509 233.718 71.2021 234.146 70.9736C234.577 70.7451 235.077 70.6309 235.644 70.6309C236.202 70.6309 236.691 70.7303 237.11 70.9292C237.529 71.1239 237.855 71.4159 238.088 71.8052C238.32 72.1903 238.437 72.6706 238.437 73.2461C238.437 73.4788 238.382 73.7285 238.272 73.9951C238.166 74.2575 237.999 74.5029 237.77 74.7314C237.546 74.96 237.254 75.1483 236.894 75.2964C236.535 75.4403 236.103 75.5122 235.599 75.5122H234.596V74.8013ZM234.596 75.7661V75.0615H235.599C236.188 75.0615 236.674 75.1313 237.059 75.271C237.444 75.4106 237.747 75.5968 237.967 75.8296C238.191 76.0623 238.348 76.3184 238.437 76.5977C238.53 76.8727 238.576 77.1478 238.576 77.4229C238.576 77.8545 238.502 78.2375 238.354 78.5718C238.21 78.9061 238.005 79.1896 237.739 79.4224C237.476 79.6551 237.167 79.8307 236.812 79.9492C236.456 80.0677 236.069 80.127 235.65 80.127C235.248 80.127 234.869 80.0698 234.514 79.9556C234.163 79.8413 233.852 79.6763 233.581 79.4604C233.31 79.2404 233.098 78.9717 232.946 78.6543C232.794 78.3327 232.718 77.9666 232.718 77.5562H233.892C233.892 77.8778 233.962 78.1592 234.101 78.4004C234.245 78.6416 234.448 78.8299 234.711 78.9653C234.977 79.0965 235.29 79.1621 235.65 79.1621C236.01 79.1621 236.319 79.1007 236.577 78.978C236.839 78.8511 237.04 78.6606 237.18 78.4067C237.324 78.1528 237.396 77.8333 237.396 77.4482C237.396 77.0632 237.315 76.7479 237.155 76.5024C236.994 76.2528 236.765 76.0687 236.469 75.9502C236.177 75.8275 235.832 75.7661 235.434 75.7661H234.596Z",fill:"#64748B"}),(0,h.createElement)("rect",{x:"225.271",y:"64.5",width:"21",height:"21",rx:"10.5",stroke:"#64748B"}),(0,h.createElement)("path",{d:"M47.2939 97.8979V101.281C47.1797 101.451 46.9977 101.641 46.748 101.853C46.4984 102.06 46.1535 102.242 45.7134 102.398C45.2775 102.551 44.7147 102.627 44.0249 102.627C43.4621 102.627 42.9437 102.53 42.4697 102.335C42 102.136 41.5916 101.848 41.2446 101.472C40.9019 101.091 40.6353 100.63 40.4448 100.088C40.2586 99.542 40.1655 98.9242 40.1655 98.2344V97.5171C40.1655 96.8273 40.2459 96.2116 40.4067 95.6699C40.5718 95.1283 40.813 94.6691 41.1304 94.2925C41.4478 93.9116 41.8371 93.6239 42.2983 93.4292C42.7596 93.2303 43.2886 93.1309 43.8853 93.1309C44.592 93.1309 45.1823 93.2536 45.6562 93.499C46.1344 93.7402 46.5068 94.0745 46.7734 94.502C47.0443 94.9294 47.2178 95.416 47.2939 95.9619H46.0688C46.0138 95.6276 45.9038 95.3229 45.7388 95.0479C45.578 94.7728 45.3473 94.5527 45.0469 94.3877C44.7464 94.2184 44.3592 94.1338 43.8853 94.1338C43.4578 94.1338 43.0876 94.2121 42.7744 94.3687C42.4613 94.5252 42.2031 94.7495 42 95.0415C41.7969 95.3335 41.6445 95.6868 41.543 96.1016C41.4456 96.5163 41.397 96.9839 41.397 97.5044V98.2344C41.397 98.7676 41.4583 99.2437 41.5811 99.6626C41.708 100.082 41.8879 100.439 42.1206 100.735C42.3534 101.027 42.6305 101.25 42.9521 101.402C43.278 101.554 43.6377 101.63 44.0312 101.63C44.4671 101.63 44.8205 101.594 45.0913 101.522C45.3621 101.446 45.5737 101.357 45.7261 101.256C45.8784 101.15 45.9948 101.051 46.0752 100.958V98.8882H43.936V97.8979H47.2939ZM51.9976 102.627C51.5194 102.627 51.0856 102.547 50.6963 102.386C50.3112 102.221 49.979 101.99 49.6997 101.694C49.4246 101.398 49.2131 101.046 49.0649 100.64C48.9168 100.234 48.8428 99.7896 48.8428 99.3071V99.0405C48.8428 98.4819 48.9253 97.9847 49.0903 97.5488C49.2554 97.1087 49.4797 96.7363 49.7632 96.4316C50.0467 96.127 50.3683 95.8963 50.728 95.7397C51.0877 95.5832 51.4601 95.5049 51.8452 95.5049C52.3361 95.5049 52.7593 95.5895 53.1147 95.7588C53.4744 95.9281 53.7686 96.165 53.9971 96.4697C54.2256 96.7702 54.3949 97.1257 54.5049 97.5361C54.6149 97.9424 54.6699 98.3867 54.6699 98.8691V99.396H49.541V98.4375H53.4956V98.3486C53.4787 98.0439 53.4152 97.7477 53.3052 97.46C53.1994 97.1722 53.0301 96.9352 52.7974 96.749C52.5646 96.5628 52.2472 96.4697 51.8452 96.4697C51.5786 96.4697 51.3332 96.5269 51.1089 96.6411C50.8846 96.7511 50.6921 96.9162 50.5312 97.1362C50.3704 97.3563 50.2456 97.625 50.1567 97.9424C50.0679 98.2598 50.0234 98.6258 50.0234 99.0405V99.3071C50.0234 99.633 50.0679 99.9398 50.1567 100.228C50.2498 100.511 50.3831 100.761 50.5566 100.977C50.7344 101.192 50.9481 101.362 51.1978 101.484C51.4517 101.607 51.7394 101.668 52.061 101.668C52.4757 101.668 52.827 101.584 53.1147 101.415C53.4025 101.245 53.6543 101.019 53.8701 100.735L54.5811 101.3C54.4329 101.525 54.2446 101.738 54.0161 101.941C53.7876 102.145 53.5062 102.31 53.1719 102.437C52.8418 102.563 52.4504 102.627 51.9976 102.627ZM57.2153 97.0981V102.5H56.041V95.6318H57.1519L57.2153 97.0981ZM56.936 98.8057L56.4473 98.7866C56.4515 98.3169 56.5213 97.8831 56.6567 97.4854C56.7922 97.0833 56.9826 96.7342 57.228 96.438C57.4735 96.1418 57.7655 95.9132 58.104 95.7524C58.4468 95.5874 58.8255 95.5049 59.2402 95.5049C59.5788 95.5049 59.8835 95.5514 60.1543 95.6445C60.4251 95.7334 60.6558 95.8773 60.8462 96.0762C61.0409 96.2751 61.189 96.5332 61.2905 96.8506C61.3921 97.1637 61.4429 97.5467 61.4429 97.9995V102.5H60.2622V97.9868C60.2622 97.6271 60.2093 97.3394 60.1035 97.1235C59.9977 96.9035 59.8433 96.7448 59.6401 96.6475C59.437 96.5459 59.1873 96.4951 58.8911 96.4951C58.5991 96.4951 58.3325 96.5565 58.0913 96.6792C57.8543 96.8019 57.6491 96.9712 57.4756 97.187C57.3063 97.4028 57.173 97.6504 57.0757 97.9297C56.9826 98.2048 56.936 98.4967 56.936 98.8057ZM66.0767 102.627C65.5985 102.627 65.1647 102.547 64.7754 102.386C64.3903 102.221 64.0581 101.99 63.7788 101.694C63.5037 101.398 63.2922 101.046 63.144 100.64C62.9959 100.234 62.9219 99.7896 62.9219 99.3071V99.0405C62.9219 98.4819 63.0044 97.9847 63.1694 97.5488C63.3345 97.1087 63.5588 96.7363 63.8423 96.4316C64.1258 96.127 64.4474 95.8963 64.8071 95.7397C65.1668 95.5832 65.5392 95.5049 65.9243 95.5049C66.4152 95.5049 66.8384 95.5895 67.1938 95.7588C67.5535 95.9281 67.8477 96.165 68.0762 96.4697C68.3047 96.7702 68.474 97.1257 68.584 97.5361C68.694 97.9424 68.749 98.3867 68.749 98.8691V99.396H63.6201V98.4375H67.5747V98.3486C67.5578 98.0439 67.4943 97.7477 67.3843 97.46C67.2785 97.1722 67.1092 96.9352 66.8765 96.749C66.6437 96.5628 66.3263 96.4697 65.9243 96.4697C65.6577 96.4697 65.4123 96.5269 65.188 96.6411C64.9637 96.7511 64.7712 96.9162 64.6104 97.1362C64.4495 97.3563 64.3247 97.625 64.2358 97.9424C64.147 98.2598 64.1025 98.6258 64.1025 99.0405V99.3071C64.1025 99.633 64.147 99.9398 64.2358 100.228C64.3289 100.511 64.4622 100.761 64.6357 100.977C64.8135 101.192 65.0272 101.362 65.2769 101.484C65.5308 101.607 65.8185 101.668 66.1401 101.668C66.5549 101.668 66.9061 101.584 67.1938 101.415C67.4816 101.245 67.7334 101.019 67.9492 100.735L68.6602 101.3C68.512 101.525 68.3237 101.738 68.0952 101.941C67.8667 102.145 67.5853 102.31 67.251 102.437C66.9209 102.563 66.5295 102.627 66.0767 102.627ZM71.2944 96.7109V102.5H70.1201V95.6318H71.2627L71.2944 96.7109ZM73.4399 95.5938L73.4336 96.6855C73.3363 96.6644 73.2432 96.6517 73.1543 96.6475C73.0697 96.639 72.9723 96.6348 72.8623 96.6348C72.5915 96.6348 72.3524 96.6771 72.145 96.7617C71.9377 96.8464 71.762 96.9648 71.6182 97.1172C71.4743 97.2695 71.36 97.4515 71.2754 97.6631C71.195 97.8704 71.1421 98.099 71.1167 98.3486L70.7866 98.5391C70.7866 98.1243 70.8268 97.735 70.9072 97.3711C70.9919 97.0072 71.1209 96.6855 71.2944 96.4062C71.4679 96.1227 71.688 95.9027 71.9546 95.7461C72.2254 95.5853 72.547 95.5049 72.9194 95.5049C73.0041 95.5049 73.1014 95.5155 73.2114 95.5366C73.3215 95.5535 73.3976 95.5726 73.4399 95.5938ZM78.3213 101.326V97.79C78.3213 97.5192 78.2663 97.2843 78.1562 97.0854C78.0505 96.8823 77.8896 96.7257 77.6738 96.6157C77.458 96.5057 77.1914 96.4507 76.874 96.4507C76.5778 96.4507 76.3175 96.5015 76.0933 96.603C75.8732 96.7046 75.6997 96.8379 75.5728 97.0029C75.45 97.168 75.3887 97.3457 75.3887 97.5361H74.2144C74.2144 97.2907 74.2778 97.0474 74.4048 96.8062C74.5317 96.5649 74.7137 96.347 74.9507 96.1523C75.1919 95.9535 75.4797 95.7969 75.814 95.6826C76.1525 95.5641 76.5291 95.5049 76.9438 95.5049C77.4432 95.5049 77.8833 95.5895 78.2642 95.7588C78.6493 95.9281 78.9497 96.1841 79.1655 96.5269C79.3856 96.8654 79.4956 97.2907 79.4956 97.8027V101.002C79.4956 101.23 79.5146 101.474 79.5527 101.732C79.5951 101.99 79.6564 102.212 79.7368 102.398V102.5H78.5117C78.4525 102.365 78.4059 102.185 78.3721 101.96C78.3382 101.732 78.3213 101.52 78.3213 101.326ZM78.5244 98.3359L78.5371 99.1611H77.3501C77.0158 99.1611 76.7174 99.1886 76.4551 99.2437C76.1927 99.2944 75.9727 99.3727 75.7949 99.4785C75.6172 99.5843 75.4818 99.7176 75.3887 99.8784C75.2956 100.035 75.249 100.219 75.249 100.431C75.249 100.646 75.2977 100.843 75.395 101.021C75.4924 101.199 75.6383 101.34 75.833 101.446C76.0319 101.548 76.2752 101.599 76.563 101.599C76.9227 101.599 77.2401 101.522 77.5151 101.37C77.7902 101.218 78.0081 101.032 78.1689 100.812C78.334 100.591 78.4229 100.378 78.4355 100.17L78.937 100.735C78.9074 100.913 78.827 101.11 78.6958 101.326C78.5646 101.542 78.389 101.749 78.1689 101.948C77.9531 102.142 77.695 102.305 77.3945 102.437C77.0983 102.563 76.764 102.627 76.3916 102.627C75.9261 102.627 75.5177 102.536 75.1665 102.354C74.8195 102.172 74.5487 101.929 74.354 101.624C74.1636 101.315 74.0684 100.97 74.0684 100.589C74.0684 100.221 74.1403 99.8975 74.2842 99.6182C74.4281 99.3346 74.6354 99.0998 74.9062 98.9136C75.1771 98.7231 75.5029 98.5793 75.8838 98.4819C76.2646 98.3846 76.6899 98.3359 77.1597 98.3359H78.5244ZM82.6187 92.75V102.5H81.438V92.75H82.6187Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M139.955 97.8979V101.281C139.84 101.451 139.658 101.641 139.409 101.853C139.159 102.06 138.814 102.242 138.374 102.398C137.938 102.551 137.375 102.627 136.686 102.627C136.123 102.627 135.604 102.53 135.13 102.335C134.661 102.136 134.252 101.848 133.905 101.472C133.562 101.091 133.296 100.63 133.105 100.088C132.919 99.542 132.826 98.9242 132.826 98.2344V97.5171C132.826 96.8273 132.907 96.2116 133.067 95.6699C133.232 95.1283 133.474 94.6691 133.791 94.2925C134.108 93.9116 134.498 93.6239 134.959 93.4292C135.42 93.2303 135.949 93.1309 136.546 93.1309C137.253 93.1309 137.843 93.2536 138.317 93.499C138.795 93.7402 139.167 94.0745 139.434 94.502C139.705 94.9294 139.878 95.416 139.955 95.9619H138.729C138.674 95.6276 138.564 95.3229 138.399 95.0479C138.239 94.7728 138.008 94.5527 137.708 94.3877C137.407 94.2184 137.02 94.1338 136.546 94.1338C136.118 94.1338 135.748 94.2121 135.435 94.3687C135.122 94.5252 134.864 94.7495 134.661 95.0415C134.458 95.3335 134.305 95.6868 134.204 96.1016C134.106 96.5163 134.058 96.9839 134.058 97.5044V98.2344C134.058 98.7676 134.119 99.2437 134.242 99.6626C134.369 100.082 134.549 100.439 134.781 100.735C135.014 101.027 135.291 101.25 135.613 101.402C135.939 101.554 136.298 101.63 136.692 101.63C137.128 101.63 137.481 101.594 137.752 101.522C138.023 101.446 138.234 101.357 138.387 101.256C138.539 101.15 138.655 101.051 138.736 100.958V98.8882H136.597V97.8979H139.955ZM146.01 100.913V95.6318H147.191V102.5H146.067L146.01 100.913ZM146.232 99.4658L146.721 99.4531C146.721 99.9102 146.673 100.333 146.575 100.723C146.482 101.108 146.33 101.442 146.118 101.726C145.907 102.009 145.629 102.231 145.287 102.392C144.944 102.549 144.527 102.627 144.036 102.627C143.702 102.627 143.395 102.578 143.116 102.481C142.841 102.384 142.604 102.233 142.405 102.03C142.206 101.827 142.051 101.563 141.941 101.237C141.836 100.911 141.783 100.52 141.783 100.062V95.6318H142.957V100.075C142.957 100.384 142.991 100.64 143.059 100.843C143.131 101.042 143.226 101.201 143.344 101.319C143.467 101.434 143.602 101.514 143.75 101.561C143.903 101.607 144.059 101.63 144.22 101.63C144.72 101.63 145.115 101.535 145.407 101.345C145.699 101.15 145.909 100.89 146.036 100.564C146.167 100.234 146.232 99.8678 146.232 99.4658ZM151.831 102.627C151.353 102.627 150.919 102.547 150.53 102.386C150.145 102.221 149.812 101.99 149.533 101.694C149.258 101.398 149.047 101.046 148.898 100.64C148.75 100.234 148.676 99.7896 148.676 99.3071V99.0405C148.676 98.4819 148.759 97.9847 148.924 97.5488C149.089 97.1087 149.313 96.7363 149.597 96.4316C149.88 96.127 150.202 95.8963 150.562 95.7397C150.921 95.5832 151.294 95.5049 151.679 95.5049C152.17 95.5049 152.593 95.5895 152.948 95.7588C153.308 95.9281 153.602 96.165 153.831 96.4697C154.059 96.7702 154.228 97.1257 154.338 97.5361C154.448 97.9424 154.503 98.3867 154.503 98.8691V99.396H149.375V98.4375H153.329V98.3486C153.312 98.0439 153.249 97.7477 153.139 97.46C153.033 97.1722 152.864 96.9352 152.631 96.749C152.398 96.5628 152.081 96.4697 151.679 96.4697C151.412 96.4697 151.167 96.5269 150.942 96.6411C150.718 96.7511 150.526 96.9162 150.365 97.1362C150.204 97.3563 150.079 97.625 149.99 97.9424C149.901 98.2598 149.857 98.6258 149.857 99.0405V99.3071C149.857 99.633 149.901 99.9398 149.99 100.228C150.083 100.511 150.217 100.761 150.39 100.977C150.568 101.192 150.782 101.362 151.031 101.484C151.285 101.607 151.573 101.668 151.895 101.668C152.309 101.668 152.66 101.584 152.948 101.415C153.236 101.245 153.488 101.019 153.704 100.735L154.415 101.3C154.266 101.525 154.078 101.738 153.85 101.941C153.621 102.145 153.34 102.31 153.005 102.437C152.675 102.563 152.284 102.627 151.831 102.627ZM159.874 100.678C159.874 100.509 159.835 100.352 159.759 100.208C159.687 100.06 159.537 99.9271 159.309 99.8086C159.084 99.6859 158.746 99.5801 158.293 99.4912C157.912 99.4108 157.567 99.3156 157.258 99.2056C156.954 99.0955 156.693 98.9622 156.478 98.8057C156.266 98.6491 156.103 98.465 155.989 98.2534C155.875 98.0418 155.817 97.7943 155.817 97.5107C155.817 97.2399 155.877 96.9839 155.995 96.7427C156.118 96.5015 156.289 96.2878 156.509 96.1016C156.734 95.9154 157.002 95.7694 157.315 95.6636C157.629 95.5578 157.978 95.5049 158.363 95.5049C158.913 95.5049 159.383 95.6022 159.772 95.7969C160.161 95.9915 160.46 96.2518 160.667 96.5776C160.874 96.8993 160.978 97.2568 160.978 97.6504H159.804C159.804 97.46 159.747 97.2759 159.632 97.0981C159.522 96.9162 159.359 96.766 159.144 96.6475C158.932 96.529 158.672 96.4697 158.363 96.4697C158.037 96.4697 157.772 96.5205 157.569 96.6221C157.37 96.7194 157.224 96.8442 157.131 96.9966C157.042 97.1489 156.998 97.3097 156.998 97.479C156.998 97.606 157.019 97.7202 157.062 97.8218C157.108 97.9191 157.188 98.0101 157.303 98.0947C157.417 98.1751 157.578 98.2513 157.785 98.3232C157.993 98.3952 158.257 98.4671 158.579 98.5391C159.141 98.666 159.605 98.8184 159.969 98.9961C160.333 99.1738 160.604 99.3918 160.781 99.6499C160.959 99.908 161.048 100.221 161.048 100.589C161.048 100.89 160.984 101.165 160.857 101.415C160.735 101.664 160.555 101.88 160.318 102.062C160.085 102.24 159.806 102.379 159.48 102.481C159.158 102.578 158.797 102.627 158.395 102.627C157.789 102.627 157.277 102.519 156.858 102.303C156.439 102.087 156.122 101.808 155.906 101.465C155.69 101.123 155.583 100.761 155.583 100.38H156.763C156.78 100.701 156.873 100.958 157.042 101.148C157.212 101.334 157.419 101.467 157.665 101.548C157.91 101.624 158.153 101.662 158.395 101.662C158.716 101.662 158.985 101.62 159.201 101.535C159.421 101.451 159.588 101.334 159.702 101.186C159.816 101.038 159.874 100.869 159.874 100.678ZM165.466 95.6318V96.5332H161.752V95.6318H165.466ZM163.009 93.9624H164.184V100.799C164.184 101.032 164.22 101.207 164.292 101.326C164.363 101.444 164.457 101.522 164.571 101.561C164.685 101.599 164.808 101.618 164.939 101.618C165.036 101.618 165.138 101.609 165.244 101.592C165.354 101.571 165.436 101.554 165.491 101.542L165.498 102.5C165.404 102.53 165.282 102.557 165.129 102.583C164.981 102.612 164.801 102.627 164.59 102.627C164.302 102.627 164.038 102.57 163.796 102.456C163.555 102.341 163.363 102.151 163.219 101.884C163.079 101.613 163.009 101.25 163.009 100.792V93.9624Z",fill:"#0F172A"}),(0,h.createElement)("path",{d:"M226.556 93.7578V103H225.331V93.7578H226.556ZM229.781 97.5981V103H228.606V96.1318H229.717L229.781 97.5981ZM229.501 99.3057L229.013 99.2866C229.017 98.8169 229.087 98.3831 229.222 97.9854C229.358 97.5833 229.548 97.2342 229.793 96.938C230.039 96.6418 230.331 96.4132 230.669 96.2524C231.012 96.0874 231.391 96.0049 231.806 96.0049C232.144 96.0049 232.449 96.0514 232.72 96.1445C232.991 96.2334 233.221 96.3773 233.412 96.5762C233.606 96.7751 233.754 97.0332 233.856 97.3506C233.958 97.6637 234.008 98.0467 234.008 98.4995V103H232.828V98.4868C232.828 98.1271 232.775 97.8394 232.669 97.6235C232.563 97.4035 232.409 97.2448 232.206 97.1475C232.002 97.0459 231.753 96.9951 231.457 96.9951C231.165 96.9951 230.898 97.0565 230.657 97.1792C230.42 97.3019 230.215 97.4712 230.041 97.687C229.872 97.9028 229.738 98.1504 229.641 98.4297C229.548 98.7048 229.501 98.9967 229.501 99.3057ZM237.544 103H236.37V95.4082C236.37 94.9131 236.458 94.4963 236.636 94.1577C236.818 93.8149 237.078 93.5568 237.417 93.3833C237.756 93.2056 238.158 93.1167 238.623 93.1167C238.758 93.1167 238.894 93.1252 239.029 93.1421C239.169 93.159 239.304 93.1844 239.436 93.2183L239.372 94.1768C239.283 94.1556 239.182 94.1408 239.067 94.1323C238.957 94.1239 238.847 94.1196 238.737 94.1196C238.488 94.1196 238.272 94.1704 238.09 94.272C237.912 94.3693 237.777 94.5132 237.684 94.7036C237.59 94.894 237.544 95.1289 237.544 95.4082V103ZM239.004 96.1318V97.0332H235.284V96.1318H239.004ZM240 99.6421V99.4961C240 99.001 240.072 98.5418 240.216 98.1187C240.36 97.6912 240.568 97.321 240.838 97.0078C241.109 96.6904 241.437 96.445 241.822 96.2715C242.207 96.0938 242.639 96.0049 243.117 96.0049C243.6 96.0049 244.033 96.0938 244.418 96.2715C244.808 96.445 245.138 96.6904 245.409 97.0078C245.684 97.321 245.893 97.6912 246.037 98.1187C246.181 98.5418 246.253 99.001 246.253 99.4961V99.6421C246.253 100.137 246.181 100.596 246.037 101.02C245.893 101.443 245.684 101.813 245.409 102.13C245.138 102.444 244.81 102.689 244.425 102.867C244.044 103.04 243.612 103.127 243.13 103.127C242.647 103.127 242.214 103.04 241.829 102.867C241.444 102.689 241.113 102.444 240.838 102.13C240.568 101.813 240.36 101.443 240.216 101.02C240.072 100.596 240 100.137 240 99.6421ZM241.175 99.4961V99.6421C241.175 99.9849 241.215 100.309 241.295 100.613C241.376 100.914 241.496 101.18 241.657 101.413C241.822 101.646 242.028 101.83 242.273 101.965C242.518 102.097 242.804 102.162 243.13 102.162C243.451 102.162 243.733 102.097 243.974 101.965C244.22 101.83 244.423 101.646 244.583 101.413C244.744 101.18 244.865 100.914 244.945 100.613C245.03 100.309 245.072 99.9849 245.072 99.6421V99.4961C245.072 99.1576 245.03 98.8381 244.945 98.5376C244.865 98.2329 244.742 97.9642 244.577 97.7314C244.416 97.4945 244.213 97.3083 243.968 97.1729C243.727 97.0374 243.443 96.9697 243.117 96.9697C242.796 96.9697 242.512 97.0374 242.267 97.1729C242.025 97.3083 241.822 97.4945 241.657 97.7314C241.496 97.9642 241.376 98.2329 241.295 98.5376C241.215 98.8381 241.175 99.1576 241.175 99.4961Z",fill:"#0F172A"})),{FieldSettingsWrapper:Hc}=JetFBComponents,{__:hc}=wp.i18n,{SelectControl:bc}=wp.components,{InspectorControls:Mc,useBlockProps:Lc}=wp.blockEditor?wp.blockEditor:wp.editor,{RawHTML:gc}=wp.element,{useState:Zc,useEffect:yc}=wp.element,Ec=JSON.parse('{"apiVersion":3,"name":"jet-forms/progress-bar","category":"jet-form-builder-elements","keywords":["jetformbuilder","progress","steps","bar","break","form"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Progress Bar","icon":"\\n\\n\\n\\n\\n\\n","attributes":{"validation":{"type":"object","default":{}},"progress_type":{"type":"string","default":"default"},"class_name":{"type":"string","default":""},"className":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{__:wc}=wp.i18n,{name:vc,icon:_c=""}=Ec,kc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:_c}}),description:wc("Use the Progress Bar block to add the navigation and show users on what page they are now and how many pages are left to finish the form.","jet-form-builder"),edit:function(e){const C=Lc(),{attributes:t,setAttributes:l,editProps:{uniqKey:r}}=e,[n,a]=Zc(""),i=e=>{const C=JetFormProgressBar.progress_types.find(C=>e===C.value);return C?C.html:""};return yc(()=>{a(i(t.progress_type))},[t.progress_type]),t.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},Vc):[(0,h.createElement)(Mc,{key:r("InspectorControls")},(0,h.createElement)(Hc,{key:r("FieldSettingsWrapper"),...e},1{l({progress_type:e}),a(i(e))},options:JetFormProgressBar.progress_types}))),(0,h.createElement)("div",{key:r("viewBlock"),...C},(0,h.createElement)(gc,null,n))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}}},jc=(0,h.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,h.createElement)("g",{clipPath:"url(#clip0_76_1348)"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,h.createElement)("rect",{x:"82",y:"29",width:"113",height:"86",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M103.46 54.4844C103.46 54.252 103.424 54.0469 103.351 53.8691C103.282 53.6868 103.159 53.5228 102.981 53.377C102.808 53.2311 102.567 53.0921 102.257 52.96C101.951 52.8278 101.564 52.6934 101.095 52.5566C100.603 52.4108 100.158 52.249 99.7617 52.0713C99.3652 51.889 99.0257 51.6816 98.7432 51.4492C98.4606 51.2168 98.2441 50.9502 98.0938 50.6494C97.9434 50.3486 97.8682 50.0046 97.8682 49.6172C97.8682 49.2298 97.9479 48.8721 98.1074 48.5439C98.2669 48.2158 98.4948 47.931 98.791 47.6895C99.0918 47.4434 99.4495 47.252 99.8643 47.1152C100.279 46.9785 100.742 46.9102 101.252 46.9102C101.999 46.9102 102.633 47.0537 103.152 47.3408C103.676 47.6234 104.075 47.9948 104.349 48.4551C104.622 48.9108 104.759 49.3984 104.759 49.918H103.446C103.446 49.5443 103.367 49.2139 103.207 48.9268C103.048 48.6351 102.806 48.4072 102.482 48.2432C102.159 48.0745 101.749 47.9902 101.252 47.9902C100.783 47.9902 100.395 48.0609 100.09 48.2021C99.7845 48.3434 99.5566 48.5348 99.4062 48.7764C99.2604 49.0179 99.1875 49.2936 99.1875 49.6035C99.1875 49.8132 99.2308 50.0046 99.3174 50.1777C99.4085 50.3464 99.5475 50.5036 99.7344 50.6494C99.9258 50.7952 100.167 50.9297 100.459 51.0527C100.755 51.1758 101.108 51.2943 101.519 51.4082C102.084 51.5677 102.571 51.7454 102.981 51.9414C103.392 52.1374 103.729 52.3584 103.993 52.6045C104.262 52.846 104.46 53.1217 104.588 53.4316C104.72 53.737 104.786 54.0833 104.786 54.4707C104.786 54.8763 104.704 55.2432 104.54 55.5713C104.376 55.8994 104.141 56.1797 103.836 56.4121C103.531 56.6445 103.164 56.8245 102.735 56.9521C102.312 57.0752 101.838 57.1367 101.313 57.1367C100.853 57.1367 100.4 57.0729 99.9531 56.9453C99.5111 56.8177 99.1077 56.6263 98.7432 56.3711C98.3831 56.1159 98.0938 55.8014 97.875 55.4277C97.6608 55.0495 97.5537 54.612 97.5537 54.1152H98.8662C98.8662 54.457 98.9323 54.751 99.0645 54.9971C99.1966 55.2386 99.3766 55.4391 99.6045 55.5986C99.8369 55.7581 100.099 55.8766 100.391 55.9541C100.687 56.027 100.994 56.0635 101.313 56.0635C101.774 56.0635 102.163 55.9997 102.482 55.8721C102.801 55.7445 103.043 55.5622 103.207 55.3252C103.376 55.0882 103.46 54.8079 103.46 54.4844ZM109.373 49.6035V50.5742H105.374V49.6035H109.373ZM106.728 47.8057H107.992V55.168C107.992 55.4186 108.031 55.6077 108.108 55.7354C108.186 55.863 108.286 55.9473 108.409 55.9883C108.532 56.0293 108.664 56.0498 108.806 56.0498C108.91 56.0498 109.02 56.0407 109.134 56.0225C109.252 55.9997 109.341 55.9814 109.4 55.9678L109.407 57C109.307 57.0319 109.175 57.0615 109.011 57.0889C108.851 57.1208 108.658 57.1367 108.43 57.1367C108.12 57.1367 107.835 57.0752 107.575 56.9521C107.315 56.8291 107.108 56.624 106.953 56.3369C106.803 56.0452 106.728 55.6533 106.728 55.1611V47.8057ZM113.926 57.1367C113.411 57.1367 112.944 57.0501 112.524 56.877C112.11 56.6992 111.752 56.4508 111.451 56.1318C111.155 55.8128 110.927 55.4346 110.768 54.9971C110.608 54.5596 110.528 54.0811 110.528 53.5615V53.2744C110.528 52.6729 110.617 52.1374 110.795 51.668C110.973 51.194 111.214 50.793 111.52 50.4648C111.825 50.1367 112.171 49.8883 112.559 49.7197C112.946 49.5511 113.347 49.4668 113.762 49.4668C114.29 49.4668 114.746 49.5579 115.129 49.7402C115.516 49.9225 115.833 50.1777 116.079 50.5059C116.325 50.8294 116.507 51.2122 116.626 51.6543C116.744 52.0918 116.804 52.5703 116.804 53.0898V53.6572H111.28V52.625H115.539V52.5293C115.521 52.2012 115.452 51.8822 115.334 51.5723C115.22 51.2624 115.038 51.0072 114.787 50.8066C114.536 50.6061 114.195 50.5059 113.762 50.5059C113.475 50.5059 113.21 50.5674 112.969 50.6904C112.727 50.8089 112.52 50.9867 112.347 51.2236C112.174 51.4606 112.039 51.75 111.943 52.0918C111.848 52.4336 111.8 52.8278 111.8 53.2744V53.5615C111.8 53.9124 111.848 54.2428 111.943 54.5527C112.044 54.8581 112.187 55.127 112.374 55.3594C112.565 55.5918 112.796 55.7741 113.064 55.9062C113.338 56.0384 113.648 56.1045 113.994 56.1045C114.441 56.1045 114.819 56.0133 115.129 55.8311C115.439 55.6488 115.71 55.4049 115.942 55.0996L116.708 55.708C116.549 55.9495 116.346 56.1797 116.1 56.3984C115.854 56.6172 115.55 56.7949 115.19 56.9316C114.835 57.0684 114.413 57.1367 113.926 57.1367ZM119.545 51.0254V59.8438H118.273V49.6035H119.436L119.545 51.0254ZM124.528 53.2402V53.3838C124.528 53.9215 124.465 54.4206 124.337 54.8809C124.209 55.3366 124.022 55.7331 123.776 56.0703C123.535 56.4076 123.236 56.6696 122.881 56.8564C122.525 57.0433 122.118 57.1367 121.657 57.1367C121.188 57.1367 120.773 57.0592 120.413 56.9043C120.053 56.7493 119.748 56.5238 119.497 56.2275C119.246 55.9313 119.046 55.5758 118.896 55.1611C118.75 54.7464 118.649 54.2793 118.595 53.7598V52.9941C118.649 52.4473 118.752 51.9574 118.902 51.5244C119.053 51.0915 119.251 50.7223 119.497 50.417C119.748 50.1071 120.051 49.8724 120.406 49.7129C120.762 49.5488 121.172 49.4668 121.637 49.4668C122.102 49.4668 122.514 49.5579 122.874 49.7402C123.234 49.918 123.537 50.1732 123.783 50.5059C124.029 50.8385 124.214 51.2373 124.337 51.7021C124.465 52.1624 124.528 52.6751 124.528 53.2402ZM123.257 53.3838V53.2402C123.257 52.8711 123.218 52.5247 123.141 52.2012C123.063 51.873 122.942 51.5859 122.778 51.3398C122.619 51.0892 122.414 50.8932 122.163 50.752C121.912 50.6061 121.614 50.5332 121.268 50.5332C120.949 50.5332 120.671 50.5879 120.434 50.6973C120.201 50.8066 120.003 50.9548 119.839 51.1416C119.675 51.3239 119.54 51.5335 119.436 51.7705C119.335 52.0029 119.26 52.2445 119.21 52.4951V54.2656C119.301 54.5846 119.429 54.8854 119.593 55.168C119.757 55.446 119.976 55.6715 120.249 55.8447C120.522 56.0133 120.867 56.0977 121.281 56.0977C121.623 56.0977 121.917 56.027 122.163 55.8857C122.414 55.7399 122.619 55.5417 122.778 55.291C122.942 55.0404 123.063 54.7533 123.141 54.4297C123.218 54.1016 123.257 53.7529 123.257 53.3838ZM130.161 46.9922V57H128.896V48.5713L126.347 49.501V48.3594L129.963 46.9922H130.161Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"97.5",y:"70.5",width:"82",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"97.5",y:"70.5",width:"82",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("rect",{x:"205",y:"29",width:"113",height:"86",rx:"4",fill:"white"}),(0,h.createElement)("path",{d:"M226.46 54.4844C226.46 54.252 226.424 54.0469 226.351 53.8691C226.282 53.6868 226.159 53.5228 225.981 53.377C225.808 53.2311 225.567 53.0921 225.257 52.96C224.951 52.8278 224.564 52.6934 224.095 52.5566C223.603 52.4108 223.158 52.249 222.762 52.0713C222.365 51.889 222.026 51.6816 221.743 51.4492C221.461 51.2168 221.244 50.9502 221.094 50.6494C220.943 50.3486 220.868 50.0046 220.868 49.6172C220.868 49.2298 220.948 48.8721 221.107 48.5439C221.267 48.2158 221.495 47.931 221.791 47.6895C222.092 47.4434 222.45 47.252 222.864 47.1152C223.279 46.9785 223.742 46.9102 224.252 46.9102C224.999 46.9102 225.633 47.0537 226.152 47.3408C226.676 47.6234 227.075 47.9948 227.349 48.4551C227.622 48.9108 227.759 49.3984 227.759 49.918H226.446C226.446 49.5443 226.367 49.2139 226.207 48.9268C226.048 48.6351 225.806 48.4072 225.482 48.2432C225.159 48.0745 224.749 47.9902 224.252 47.9902C223.783 47.9902 223.395 48.0609 223.09 48.2021C222.785 48.3434 222.557 48.5348 222.406 48.7764C222.26 49.0179 222.188 49.2936 222.188 49.6035C222.188 49.8132 222.231 50.0046 222.317 50.1777C222.409 50.3464 222.548 50.5036 222.734 50.6494C222.926 50.7952 223.167 50.9297 223.459 51.0527C223.755 51.1758 224.108 51.2943 224.519 51.4082C225.084 51.5677 225.571 51.7454 225.981 51.9414C226.392 52.1374 226.729 52.3584 226.993 52.6045C227.262 52.846 227.46 53.1217 227.588 53.4316C227.72 53.737 227.786 54.0833 227.786 54.4707C227.786 54.8763 227.704 55.2432 227.54 55.5713C227.376 55.8994 227.141 56.1797 226.836 56.4121C226.531 56.6445 226.164 56.8245 225.735 56.9521C225.312 57.0752 224.838 57.1367 224.313 57.1367C223.853 57.1367 223.4 57.0729 222.953 56.9453C222.511 56.8177 222.108 56.6263 221.743 56.3711C221.383 56.1159 221.094 55.8014 220.875 55.4277C220.661 55.0495 220.554 54.612 220.554 54.1152H221.866C221.866 54.457 221.932 54.751 222.064 54.9971C222.197 55.2386 222.377 55.4391 222.604 55.5986C222.837 55.7581 223.099 55.8766 223.391 55.9541C223.687 56.027 223.994 56.0635 224.313 56.0635C224.774 56.0635 225.163 55.9997 225.482 55.8721C225.801 55.7445 226.043 55.5622 226.207 55.3252C226.376 55.0882 226.46 54.8079 226.46 54.4844ZM232.373 49.6035V50.5742H228.374V49.6035H232.373ZM229.728 47.8057H230.992V55.168C230.992 55.4186 231.031 55.6077 231.108 55.7354C231.186 55.863 231.286 55.9473 231.409 55.9883C231.532 56.0293 231.664 56.0498 231.806 56.0498C231.91 56.0498 232.02 56.0407 232.134 56.0225C232.252 55.9997 232.341 55.9814 232.4 55.9678L232.407 57C232.307 57.0319 232.175 57.0615 232.011 57.0889C231.851 57.1208 231.658 57.1367 231.43 57.1367C231.12 57.1367 230.835 57.0752 230.575 56.9521C230.315 56.8291 230.108 56.624 229.953 56.3369C229.803 56.0452 229.728 55.6533 229.728 55.1611V47.8057ZM236.926 57.1367C236.411 57.1367 235.944 57.0501 235.524 56.877C235.11 56.6992 234.752 56.4508 234.451 56.1318C234.155 55.8128 233.927 55.4346 233.768 54.9971C233.608 54.5596 233.528 54.0811 233.528 53.5615V53.2744C233.528 52.6729 233.617 52.1374 233.795 51.668C233.973 51.194 234.214 50.793 234.52 50.4648C234.825 50.1367 235.171 49.8883 235.559 49.7197C235.946 49.5511 236.347 49.4668 236.762 49.4668C237.29 49.4668 237.746 49.5579 238.129 49.7402C238.516 49.9225 238.833 50.1777 239.079 50.5059C239.325 50.8294 239.507 51.2122 239.626 51.6543C239.744 52.0918 239.804 52.5703 239.804 53.0898V53.6572H234.28V52.625H238.539V52.5293C238.521 52.2012 238.452 51.8822 238.334 51.5723C238.22 51.2624 238.038 51.0072 237.787 50.8066C237.536 50.6061 237.195 50.5059 236.762 50.5059C236.475 50.5059 236.21 50.5674 235.969 50.6904C235.727 50.8089 235.52 50.9867 235.347 51.2236C235.174 51.4606 235.039 51.75 234.943 52.0918C234.848 52.4336 234.8 52.8278 234.8 53.2744V53.5615C234.8 53.9124 234.848 54.2428 234.943 54.5527C235.044 54.8581 235.187 55.127 235.374 55.3594C235.565 55.5918 235.796 55.7741 236.064 55.9062C236.338 56.0384 236.648 56.1045 236.994 56.1045C237.441 56.1045 237.819 56.0133 238.129 55.8311C238.439 55.6488 238.71 55.4049 238.942 55.0996L239.708 55.708C239.549 55.9495 239.346 56.1797 239.1 56.3984C238.854 56.6172 238.55 56.7949 238.19 56.9316C237.835 57.0684 237.413 57.1367 236.926 57.1367ZM242.545 51.0254V59.8438H241.273V49.6035H242.436L242.545 51.0254ZM247.528 53.2402V53.3838C247.528 53.9215 247.465 54.4206 247.337 54.8809C247.209 55.3366 247.022 55.7331 246.776 56.0703C246.535 56.4076 246.236 56.6696 245.881 56.8564C245.525 57.0433 245.118 57.1367 244.657 57.1367C244.188 57.1367 243.773 57.0592 243.413 56.9043C243.053 56.7493 242.748 56.5238 242.497 56.2275C242.246 55.9313 242.046 55.5758 241.896 55.1611C241.75 54.7464 241.649 54.2793 241.595 53.7598V52.9941C241.649 52.4473 241.752 51.9574 241.902 51.5244C242.053 51.0915 242.251 50.7223 242.497 50.417C242.748 50.1071 243.051 49.8724 243.406 49.7129C243.762 49.5488 244.172 49.4668 244.637 49.4668C245.102 49.4668 245.514 49.5579 245.874 49.7402C246.234 49.918 246.537 50.1732 246.783 50.5059C247.029 50.8385 247.214 51.2373 247.337 51.7021C247.465 52.1624 247.528 52.6751 247.528 53.2402ZM246.257 53.3838V53.2402C246.257 52.8711 246.218 52.5247 246.141 52.2012C246.063 51.873 245.942 51.5859 245.778 51.3398C245.619 51.0892 245.414 50.8932 245.163 50.752C244.912 50.6061 244.614 50.5332 244.268 50.5332C243.949 50.5332 243.671 50.5879 243.434 50.6973C243.201 50.8066 243.003 50.9548 242.839 51.1416C242.675 51.3239 242.54 51.5335 242.436 51.7705C242.335 52.0029 242.26 52.2445 242.21 52.4951V54.2656C242.301 54.5846 242.429 54.8854 242.593 55.168C242.757 55.446 242.976 55.6715 243.249 55.8447C243.522 56.0133 243.867 56.0977 244.281 56.0977C244.623 56.0977 244.917 56.027 245.163 55.8857C245.414 55.7399 245.619 55.5417 245.778 55.291C245.942 55.0404 246.063 54.7533 246.141 54.4297C246.218 54.1016 246.257 53.7529 246.257 53.3838ZM255.526 55.9609V57H249.012V56.0908L252.272 52.4609C252.674 52.0143 252.983 51.6361 253.202 51.3262C253.425 51.0117 253.58 50.7314 253.667 50.4854C253.758 50.2347 253.804 49.9795 253.804 49.7197C253.804 49.3916 253.735 49.0954 253.599 48.8311C253.466 48.5622 253.271 48.348 253.011 48.1885C252.751 48.029 252.437 47.9492 252.067 47.9492C251.625 47.9492 251.256 48.0358 250.96 48.209C250.668 48.3776 250.45 48.6146 250.304 48.9199C250.158 49.2253 250.085 49.5762 250.085 49.9727H248.82C248.82 49.4121 248.943 48.8994 249.189 48.4346C249.436 47.9697 249.8 47.6006 250.283 47.3271C250.766 47.0492 251.361 46.9102 252.067 46.9102C252.696 46.9102 253.234 47.0218 253.681 47.2451C254.127 47.4639 254.469 47.7738 254.706 48.1748C254.948 48.5713 255.068 49.0361 255.068 49.5693C255.068 49.861 255.018 50.1572 254.918 50.458C254.822 50.7542 254.688 51.0505 254.515 51.3467C254.346 51.6429 254.148 51.9346 253.92 52.2217C253.697 52.5088 253.457 52.7913 253.202 53.0693L250.536 55.9609H255.526Z",fill:"#0F172A"}),(0,h.createElement)("rect",{x:"220.5",y:"70.5",width:"82",height:"29",rx:"3.5",fill:"white"}),(0,h.createElement)("rect",{x:"220.5",y:"70.5",width:"82",height:"29",rx:"3.5",stroke:"#E2E8F0"}),(0,h.createElement)("path",{d:"M15 57C15 54.7909 16.7909 53 19 53H82V91H19C16.7909 91 15 89.2091 15 87V57Z",fill:"#4272F9"}),(0,h.createElement)("path",{d:"M30.9985 74.1641C30.9985 73.9482 30.9647 73.7578 30.897 73.5928C30.8335 73.4235 30.7192 73.2712 30.5542 73.1357C30.3934 73.0003 30.1691 72.8713 29.8813 72.7485C29.5978 72.6258 29.2381 72.501 28.8022 72.374C28.3452 72.2386 27.9326 72.0884 27.5645 71.9233C27.1963 71.7541 26.881 71.5615 26.6187 71.3457C26.3563 71.1299 26.1553 70.8823 26.0156 70.603C25.876 70.3237 25.8062 70.0042 25.8062 69.6445C25.8062 69.2848 25.8802 68.9526 26.0283 68.6479C26.1764 68.3433 26.388 68.0788 26.6631 67.8545C26.9424 67.626 27.2746 67.4482 27.6597 67.3213C28.0448 67.1943 28.4743 67.1309 28.9482 67.1309C29.6423 67.1309 30.2305 67.2642 30.7129 67.5308C31.1995 67.7931 31.5698 68.138 31.8237 68.5654C32.0776 68.9886 32.2046 69.4414 32.2046 69.9238H30.9858C30.9858 69.5768 30.9118 69.27 30.7637 69.0034C30.6156 68.7326 30.3913 68.521 30.0908 68.3687C29.7904 68.2121 29.4095 68.1338 28.9482 68.1338C28.5124 68.1338 28.1527 68.1994 27.8691 68.3306C27.5856 68.4618 27.374 68.6395 27.2344 68.8638C27.099 69.0881 27.0312 69.3441 27.0312 69.6318C27.0312 69.8265 27.0715 70.0042 27.1519 70.165C27.2365 70.3216 27.3656 70.4676 27.5391 70.603C27.7168 70.7384 27.9411 70.8633 28.2119 70.9775C28.487 71.0918 28.8149 71.2018 29.1958 71.3076C29.7205 71.4557 30.1733 71.6208 30.5542 71.8027C30.9351 71.9847 31.2482 72.1899 31.4937 72.4185C31.7433 72.6427 31.9274 72.8988 32.0459 73.1865C32.1686 73.4701 32.23 73.7917 32.23 74.1514C32.23 74.528 32.1538 74.8687 32.0015 75.1733C31.8491 75.478 31.6312 75.7383 31.3477 75.9541C31.0641 76.1699 30.7235 76.3371 30.3257 76.4556C29.9321 76.5698 29.492 76.627 29.0054 76.627C28.578 76.627 28.1569 76.5677 27.7422 76.4492C27.3317 76.3307 26.9572 76.153 26.6187 75.916C26.2843 75.679 26.0156 75.387 25.8125 75.04C25.6136 74.6888 25.5142 74.2826 25.5142 73.8213H26.7329C26.7329 74.1387 26.7943 74.4116 26.917 74.6401C27.0397 74.8644 27.2069 75.0506 27.4185 75.1987C27.6343 75.3468 27.8776 75.4569 28.1484 75.5288C28.4235 75.5965 28.7091 75.6304 29.0054 75.6304C29.4328 75.6304 29.7946 75.5711 30.0908 75.4526C30.387 75.3341 30.6113 75.1649 30.7637 74.9448C30.9202 74.7248 30.9985 74.4645 30.9985 74.1641ZM36.4893 69.6318V70.5332H32.7759V69.6318H36.4893ZM34.0327 67.9624H35.207V74.7988C35.207 75.0316 35.243 75.2072 35.3149 75.3257C35.3869 75.4442 35.48 75.5225 35.5942 75.5605C35.7085 75.5986 35.8312 75.6177 35.9624 75.6177C36.0597 75.6177 36.1613 75.6092 36.2671 75.5923C36.3771 75.5711 36.4596 75.5542 36.5146 75.5415L36.521 76.5C36.4279 76.5296 36.3052 76.5571 36.1528 76.5825C36.0047 76.6121 35.8249 76.627 35.6133 76.627C35.3255 76.627 35.061 76.5698 34.8198 76.4556C34.5786 76.3413 34.3861 76.1509 34.2422 75.8843C34.1025 75.6134 34.0327 75.2495 34.0327 74.7925V67.9624ZM41.9165 75.3257V71.79C41.9165 71.5192 41.8615 71.2843 41.7515 71.0854C41.6457 70.8823 41.4849 70.7257 41.269 70.6157C41.0532 70.5057 40.7866 70.4507 40.4692 70.4507C40.173 70.4507 39.9128 70.5015 39.6885 70.603C39.4684 70.7046 39.2949 70.8379 39.168 71.0029C39.0452 71.168 38.9839 71.3457 38.9839 71.5361H37.8096C37.8096 71.2907 37.873 71.0474 38 70.8062C38.127 70.5649 38.3089 70.347 38.5459 70.1523C38.7871 69.9535 39.0749 69.7969 39.4092 69.6826C39.7477 69.5641 40.1243 69.5049 40.5391 69.5049C41.0384 69.5049 41.4785 69.5895 41.8594 69.7588C42.2445 69.9281 42.5449 70.1841 42.7607 70.5269C42.9808 70.8654 43.0908 71.2907 43.0908 71.8027V75.002C43.0908 75.2305 43.1099 75.4738 43.1479 75.7319C43.1903 75.9901 43.2516 76.2122 43.332 76.3984V76.5H42.1069C42.0477 76.3646 42.0011 76.1847 41.9673 75.9604C41.9334 75.7319 41.9165 75.5203 41.9165 75.3257ZM42.1196 72.3359L42.1323 73.1611H40.9453C40.611 73.1611 40.3127 73.1886 40.0503 73.2437C39.7879 73.2944 39.5679 73.3727 39.3901 73.4785C39.2124 73.5843 39.077 73.7176 38.9839 73.8784C38.8908 74.035 38.8442 74.2191 38.8442 74.4307C38.8442 74.6465 38.8929 74.8433 38.9902 75.021C39.0876 75.1987 39.2336 75.3405 39.4282 75.4463C39.6271 75.5479 39.8704 75.5986 40.1582 75.5986C40.5179 75.5986 40.8353 75.5225 41.1104 75.3701C41.3854 75.2178 41.6034 75.0316 41.7642 74.8115C41.9292 74.5915 42.0181 74.3778 42.0308 74.1704L42.5322 74.7354C42.5026 74.9131 42.4222 75.1099 42.291 75.3257C42.1598 75.5415 41.9842 75.7489 41.7642 75.9478C41.5483 76.1424 41.2902 76.3053 40.9897 76.4365C40.6935 76.5635 40.3592 76.627 39.9868 76.627C39.5213 76.627 39.113 76.536 38.7617 76.354C38.4147 76.172 38.1439 75.9287 37.9492 75.624C37.7588 75.3151 37.6636 74.9702 37.6636 74.5894C37.6636 74.2212 37.7355 73.8975 37.8794 73.6182C38.0233 73.3346 38.2306 73.0998 38.5015 72.9136C38.7723 72.7231 39.0981 72.5793 39.479 72.4819C39.8599 72.3846 40.2852 72.3359 40.7549 72.3359H42.1196ZM46.1123 70.7109V76.5H44.938V69.6318H46.0806L46.1123 70.7109ZM48.2578 69.5938L48.2515 70.6855C48.1541 70.6644 48.061 70.6517 47.9722 70.6475C47.8875 70.639 47.7902 70.6348 47.6802 70.6348C47.4093 70.6348 47.1702 70.6771 46.9629 70.7617C46.7555 70.8464 46.5799 70.9648 46.436 71.1172C46.2922 71.2695 46.1779 71.4515 46.0933 71.6631C46.0129 71.8704 45.96 72.099 45.9346 72.3486L45.6045 72.5391C45.6045 72.1243 45.6447 71.735 45.7251 71.3711C45.8097 71.0072 45.9388 70.6855 46.1123 70.4062C46.2858 70.1227 46.5059 69.9027 46.7725 69.7461C47.0433 69.5853 47.3649 69.5049 47.7373 69.5049C47.8219 69.5049 47.9193 69.5155 48.0293 69.5366C48.1393 69.5535 48.2155 69.5726 48.2578 69.5938ZM52.5361 69.6318V70.5332H48.8228V69.6318H52.5361ZM50.0796 67.9624H51.2539V74.7988C51.2539 75.0316 51.2899 75.2072 51.3618 75.3257C51.4338 75.4442 51.5269 75.5225 51.6411 75.5605C51.7554 75.5986 51.8781 75.6177 52.0093 75.6177C52.1066 75.6177 52.2082 75.6092 52.314 75.5923C52.424 75.5711 52.5065 75.5542 52.5615 75.5415L52.5679 76.5C52.4748 76.5296 52.3521 76.5571 52.1997 76.5825C52.0516 76.6121 51.8717 76.627 51.6602 76.627C51.3724 76.627 51.1079 76.5698 50.8667 76.4556C50.6255 76.3413 50.4329 76.1509 50.2891 75.8843C50.1494 75.6134 50.0796 75.2495 50.0796 74.7925V67.9624Z",fill:"white"}),(0,h.createElement)("path",{d:"M61.1813 76.5188V67.4813L65.7 72.0001L61.1813 76.5188Z",fill:"white"})),(0,h.createElement)("defs",null,(0,h.createElement)("clipPath",{id:"clip0_76_1348"},(0,h.createElement)("rect",{width:"298",height:"144",fill:"white"})))),{__:xc}=wp.i18n,{PanelBody:Fc}=wp.components,{BlockClassName:Bc}=JetFBComponents,{useUniqKey:Ac}=JetFBHooks,{InspectorControls:Pc,useBlockProps:Sc}=wp.blockEditor,Nc=JSON.parse('{"apiVersion":3,"name":"jet-forms/form-break-start","category":"jet-form-builder-elements","keywords":["jetformbuilder","block","break","pagebreak","formbreak","start"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"title":"Form Page Start","icon":"\\n\\n\\n","attributes":{"class_name":{"type":"string","default":""},"isPreview":{"type":"boolean","default":false}}}'),{name:Ic,icon:Tc=""}=Nc,{__:Oc}=wp.i18n,Jc={icon:(0,h.createElement)("span",{dangerouslySetInnerHTML:{__html:Tc}}),description:Oc("Add the Form Page Start block after the two first form fields to start the new page not from the form beginning but from the block.","jet-form-builder"),edit:function(e){const C=Sc({className:"jet-form-builder__bottom-line"}),t=Ac();return e.attributes.isPreview?(0,h.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},jc):[(0,h.createElement)(Pc,{key:t("InspectorControls")},(0,h.createElement)(Fc,{title:xc("Advanced","jet-form-builder")},(0,h.createElement)(Bc,null))),(0,h.createElement)("div",{key:t("viewBlock"),...C},(0,h.createElement)("span",null,xc("Form Break Start","jet-form-builder")))]},useEditProps:["uniqKey","attrHelp","blockName"],example:{attributes:{isPreview:!0}}},{__:Rc}=wp.i18n,qc="jet-forms/media-field",Dc="jet-forms/form-break-field",zc="jet-forms/date-field",Uc="jet-forms/datetime-field",Gc="jet-forms/radio-field",Wc="jet-forms/checkbox-field",Kc="jet-forms/select-field",$c="jet-forms/text-field",Yc=[{attribute:"is_timestamp",to:[zc,Uc],message:Rc("Check this if you want to send value of this field as timestamp instead of plain datetime","jet-form-builder")},{attribute:"default",to:[zc],message:Rc("Plain date should be in yyyy-mm-dd format","jet-form-builder")},{attribute:"default",to:[Uc],message:Rc("Plain datetime should be in yyyy-MM-ddThh:mm format","jet-form-builder")},{attribute:"page_break_disabled",to:[Dc],message:Rc('Text to show if next page button is disabled. For example - "Fill required fields" etc.',"jet-form-builder")},{attribute:"insert_attachment",to:[qc],message:Rc("If checked new attachment will be inserted for uploaded file.Note: work only for logged-in users!","jet-form-builder")},{attribute:"allowed_mimes",to:[qc],message:Rc("If no MIME type selected will allow all types. Hold down the Ctrl (windows) / Command (Mac) button to select multiple options.","jet-form-builder")},{attribute:"value_from_meta",to:[Gc,Wc,Kc],message:Rc("By default post/term ID is used as value. Here you can set meta field name to use its value as form field value","jet-form-builder")},{attribute:"calculated_value_from_key",to:[Gc,Wc,Kc],message:Rc("Here you can set meta field name to use its value as calculated value for current form field","jet-form-builder")},{attribute:"generator_field",to:[Gc,Wc,Kc],message:Rc("For Numbers range generator set field with max range value","jet-form-builder"),conditions:{generator_function:"num_range"}},{attribute:"switch_on_change",to:[Kc],message:Rc("Check this to switch page to next on current value change","jet-form-builder")},{attribute:"prefix_suffix",to:["jet-forms/range-field"],message:Rc("For space before or after text use:  ","jet-form-builder")},{attribute:"calc_hidden",to:["jet-forms/repeater-field"],message:Rc("Check this to hide calculated field","jet-form-builder")},{attribute:"input_mask_default",to:[$c],message:Rc("Examples: (999) 999-9999 - static mask, 9-a{1,3}9{1,3} - mask with dynamic syntax Default masking definitions: 9 - numeric, a - alphabetical, * - alphanumeric","jet-form-builder")},{attribute:"input_mask_datetime_link",to:[$c],message:"https://robinherbots.github.io/Inputmask/#/documentation/datetime"},{attribute:"default",to:["jet-forms/time-field"],message:Rc("Plain time should be in hh:mm:ss format","jet-form-builder")},{attribute:"label_progress",to:[Dc],message:Rc("To set/change a last progress name add a Form Break Field at the very end of the form.","jet-form-builder")}],{applyFilters:Xc}=wp.hooks,Qc=Xc("jet.fb.register.editProps",[{name:"uniqKey",callable:e=>C=>`${e.name}/${C}`},{name:"blockName",callable:e=>e.name},{name:"attrHelp",callable:e=>{const C={};return Yc.forEach(t=>{t.to.includes(e.name)&&t.message&&(C[t.attribute]=t)}),(e,t={})=>{if(!(e in C))return"";const l=C[e];if(!("conditions"in l))return l.message;for(const e in l.conditions)if(!(e in t)||l.conditions[e]!==t[e])return;return l.message}}}]),{registerBlockType:ed}=wp.blocks,{applyFilters:Cd}=wp.hooks,td=Cd("jet.fb.register.fields",[e,C,r,l,n,a,i,o,s,c,d,m,u,p,f,V,H]),ld=e=>{if(!e)return;const{metadata:C,settings:t,name:l}=e;t.edit=function(e){const{edit:C}=e.settings,t={};if("useEditProps"in e.settings){const{useEditProps:C}=e.settings;C.forEach(C=>{const l=Qc.find(e=>C===e.name);l&&(t[C]=l.callable(e))}),delete e.settings.useEditProps}return e=>(0,h.createElement)(C,{...e,editProps:{...t}})}(e),t.hasOwnProperty("jfbResolveBlock")||(t.jfbResolveBlock=function(){const e={clientId:this.clientId,name:this.name};return this.attributes?.name?{...e,fields:[{name:this.attributes.name,label:this.attributes.label||this.attributes.name,value:this.attributes.name}]}:e}),!t.hasOwnProperty("__experimentalLabel")&&C.attributes.hasOwnProperty("name")&&(t.__experimentalLabel=(e,{context:t})=>{switch(t){case"list-view":const t=e.name?.trim?.()||"",l=e.label?.trim?.()||"";return t&&l&&t!==l?`${t} (${l})`:t||l||C.title;case"accessibility":return e.name?.length?`${C.title} (${e.name})`:C.title;default:return C.title}}),ed(l,{...C,...t})};function rd(e,C){let{metadata:{title:t}}=e,{metadata:{title:l}}=C;t=t||e.settings?.title,l=l||C.settings?.title;try{return t.localeCompare(l)}catch(e){return 0}}!function(){const e=[];(0,vC.applyFilters)("jet.fb.register.plugins",[Pe,qe,EC,Xe,tC]).forEach(C=>{const{base:{name:t,condition:l=!0}}=C;if(!l)return!1;const r=(0,vC.applyFilters)(`jet.fb.register.plugin.${t}.before`,[]);r&&e.push(...r),e.push(C);const n=(0,vC.applyFilters)(`jet.fb.register.plugin.${t}.after`,[]);n&&e.push(...n)}),e.forEach(_C)}(),function(e=td){e.sort(rd),e.forEach(Cd("jet.fb.register.fields.handler",ld))}()})()})(); \ No newline at end of file diff --git a/assets/build/editor/package.asset.php b/assets/build/editor/package.asset.php index 84bed3937..282deb735 100644 --- a/assets/build/editor/package.asset.php +++ b/assets/build/editor/package.asset.php @@ -1 +1 @@ - array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => 'ddb9526e3d4ea2dccb93'); + array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '84dd167a2e5aa9a15f3b'); diff --git a/assets/build/editor/package.js b/assets/build/editor/package.js index 5473186e6..763c34c1f 100644 --- a/assets/build/editor/package.js +++ b/assets/build/editor/package.js @@ -1 +1 @@ -(()=>{var e={115:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(6758),l=n.n(r),o=n(935),a=n.n(o)()(l());a.push([e.id,".syma2t4{height:40px;min-height:40px;line-height:1.5;}\n",""]);const i=a},483:(e,t,n)=>{var r=n(4239);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(611).A)("62ebcc8a",r,!1,{})},611:(e,t,n)=>{"use strict";function r(e,t){for(var n=[],r={},l=0;lf});var l="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!l)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},a=l&&(document.head||document.getElementsByTagName("head")[0]),i=null,s=0,c=!1,u=function(){},d=null,m="data-vue-ssr-id",p="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(e,t,n,l){c=n,d=l||{};var a=r(e,t);return h(a),function(t){for(var n=[],l=0;ln.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(l=0;l{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n})).join("")},t.i=function(e,n,r,l,o){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(r)for(var i=0;i0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=o),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),l&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=l):u[4]="".concat(l)),t.push(u))}},t}},4023:(e,t,n)=>{var r=n(115);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(611).A)("55433ea3",r,!1,{})},4180:()=>{const e=()=>{const{select:e}=wp.data;return e("core/editor").getEditedPostAttribute("meta")},t=(t,n)=>{const{dispatch:r}=wp.data,{editPost:l}=r("core/editor");l({meta:{...e(),[t]:JSON.stringify(n)}})},n=e=>{const t=[];for(const[n,{active:r=!1}]of Object.entries(e))r&&t.push(+n);return t};wp.domReady((()=>(async()=>{await(async()=>new Promise((e=>{const t=setInterval((()=>{wp.data.select("core/editor").getCurrentPostType()&&(clearInterval(t),e())}),100)})))();let r={},l=[];try{[r={},l=[]]=(()=>{const t=e();let n={},r=[];try{n=JSON.parse(t._jf_gateways)}catch(e){return[]}if(1===n.last_migrate)throw"migrated";try{r=JSON.parse(t._jf_actions)}catch(e){return[n]}return[n,r]})()}catch(e){return}r.last_migrate=1,t("_jf_gateways",r);const o=[];try{o.push(...((e,t)=>{var r,l,o,a;const i=n(null!==(r=e.notifications_success)&&void 0!==r?r:{}),s=n(null!==(l=e.notifications_failed)&&void 0!==l?l:{}),c=n(null!==(o=e.notifications_before)&&void 0!==o?o:{}),u=null!==(a=e.use_success_redirect)&&void 0!==a&&a;let d=!1;if(!(i.length||s.length||c.length||u))throw"nothing_to_migrate";return t.map((e=>{var t;return e.events=null!==(t=e.events)&&void 0!==t?t:[],i.includes(e.id)&&e.events.push("GATEWAY.SUCCESS"),s.includes(e.id)&&e.events.push("GATEWAY.FAILED"),c.includes(e.id)&&e.events.push("DEFAULT.PROCESS"),u&&!d&&"redirect_to_page"===e.type&&(e.events.push("GATEWAY.SUCCESS"),d=!0),e}))})(r,l))}catch(e){return}t("_jf_actions",o)})()))},4239:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(6758),l=n.n(r),o=n(935),a=n.n(o)()(l());a.push([e.id,".sfqmk5y svg{height:24px;width:24px;}\n",""]);const i=a},6758:e=>{"use strict";e.exports=function(e){return e[1]}}},t={};function n(r){var l=t[r];if(void 0!==l)return l.exports;var o=t[r]={id:r,exports:{}};return e[r](o,o.exports,n),o.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";const e=window.React,{createContext:t}=wp.element,r=t({name:"",data:{},index:0}),l=window.jfb.components,o=window.wp.element,{createContext:a}=wp.element,i=a({actionClick:null,onRequestClose:()=>{}}),{createSlotFill:s}=wp.components,c=s("JFBActionModalFooter"),u=window.wp.components,d=window.wp.i18n,{Slot:m}=c;let{ToggleGroupControl:p,__experimentalToggleGroupControl:f}=wp.components;p=p||f;const h=function({onRequestClose:t,children:n,title:r="",classNames:l=[],className:a="",onUpdateClick:s,onCancelClick:c,updateBtnLabel:f="Update",updateBtnProps:h={},cancelBtnProps:b={},cancelBtnLabel:g="Cancel",fixedHeight:y="",...v}){const w=["jet-form-edit-modal",...l,a],[_,E]=(0,o.useState)(null),C=()=>{s&&s(),E(!0)},k=()=>{c&&c(),E(!1)};let S={};return y&&(S={height:y},w.push("jet-modal-fixed-height")),(0,e.createElement)(u.Modal,{onRequestClose:t,className:w.join(" "),title:r,style:S,...v},!n&&(0,e.createElement)("div",{className:"jet-form-edit-modal__content"},(0,d.__)("Action callback is not found.","jet-form-builder")),n&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"jet-form-edit-modal__wrapper"},(0,e.createElement)(i.Provider,{value:{actionClick:_,onRequestClose:t}},(0,e.createElement)("div",{className:"jet-form-edit-modal__content"},"function"==typeof n&&n({actionClick:_,onRequestClose:t}),"function"!=typeof n&&n))),(0,e.createElement)(m,{fillProps:{updateClick:C,cancelClick:k}},(t=>Boolean(t?.length)?t:(0,e.createElement)(p,{className:"jet-form-edit-modal__actions jfb-toggle-group-control",hideLabelFromVision:!0},(0,e.createElement)(u.Button,{isPrimary:!0,onClick:C,...h},f),(0,e.createElement)(u.Button,{isSecondary:!0,style:{margin:"0 0 0 10px"},onClick:k,...b},g))))))},{RawHTML:b,useContext:g}=wp.element;function y(e,t){return e?.length?e.map((e=>"object"==typeof e?e[t]:e)):[]}const v=(0,window.wp.hooks.applyFilters)("jet.fb.tools.convertSymbols",{checkCyrRegex:/[а-яёїєґі]/i,cyrRegex:/[а-яёїєґі]/gi,charsMap:{а:"a",б:"b",в:"v",г:"g",д:"d",е:"e",ё:"io",ж:"zh",з:"z",и:"i",й:"i",к:"k",л:"l",м:"m",н:"n",о:"o",п:"p",р:"r",с:"s",т:"t",у:"u",ф:"f",х:"kh",ц:"ts",ч:"ch",ш:"sh",щ:"shch",ы:"y",э:"e",ю:"iu",я:"ia",ї:"i",є:"ie",ґ:"g",і:"i"}});function w(e){return v.checkCyrRegex.test(e)&&(e=e.replace(v.cyrRegex,(function(e){return void 0===v.charsMap[e]?"":v.charsMap[e]}))),e}function _(e){let t=e.toLowerCase();t=t.normalize("NFD").replace(/[\u0300-\u036f]/g,""),t=w(t);const n=t.match(/\b(\w+)\b/g);t="";for(const[e,r]of Object.entries(n)){t+=(0===+e?"":"_")+r;const l=+e+1===n.length;if(t.length>60)return t+(l?"":"__")}return t}function E(...e){const t=[],n=e=>{e.forEach((e=>{if(e&&(Array.isArray(e)&&n(e),"string"==typeof e&&t.push(e.trim()),"object"==typeof e))for(const n in e)e[n]&&t.push((n+"").trim())}))};return n(e),t.join(" ")}function C(e){return null==e||("object"!=typeof e||Array.isArray(e)?"number"==typeof e?0===e:!e?.length:!Object.keys(e)?.length)}const k=class{static withPlaceholder(e,t="--",n=""){return[{label:t,value:n},...e]}static getRandomID(){return Math.floor(8999*Math.random())+1e3}},{select:S}=wp.data,j=function(e){const t=(n,r=null)=>{(n=n||S("core/block-editor").getBlocks()).forEach((n=>{if(e(n,r),n.innerBlocks.length){const e="jet-forms/repeater-field"===n.name?n:r;return void t(n.innerBlocks,e)}if("core/block"!==n.name)return;let l=S("core/block-editor")?.__unstableGetClientIdsTree?.(n.clientId);if(!l?.length)return;const o=l.map((({clientId:e})=>e));l=S("core/block-editor").getBlocksByClientId(o),t(l)}))};t()},{applyFilters:x}=wp.hooks,{select:N}=wp.data,F=function(e=[],t=!1,n=!1,r="default"){let l=[];const o=["submit","form-break","heading","group-break","conditional",...e];return j((e=>{if(e.name.includes("jet-forms/")&&!o.find((t=>e.name.includes(t)))){const t=N("core/blocks").getBlockType(e.name);let{fields:n=[]}=t.jfbResolveBlock.call(e,r);t.hasOwnProperty("jfbGetFields")&&(n=t.jfbGetFields.call(e,r)),l.push(...n.filter((e=>!l.some((({value:t})=>t===e.value)))))}})),l=t?[{value:"",label:t},...l]:l,n?l:x("jet.fb.getFormFieldsBlocks",l,r)},T=function(e=[],t="default"){const n=[],r=F(e,!1,!1,t);return r&&r.forEach((e=>n.push(e.name))),n},{__:B}=wp.i18n,{applyFilters:I}=wp.hooks,{select:A}=wp.data,O=function(e=!1,t=!1,n="default"){const r=["submit","form-break","heading","group-break","conditional"];let l=[];const o=wp.data.select("core/block-editor").getSelectedBlock();return j((e=>{if(e.name.includes("jet-forms/")&&o?.clientId!==e.clientId&&!r.find((t=>e.name.includes(t)))){const t=A("core/blocks").getBlockType(e.name);let{fields:r=[]}=t.jfbResolveBlock.call(e,n);t.hasOwnProperty("jfbGetFields")&&(r=t.jfbGetFields.call(e,n)),l.push(...r.filter((e=>!l.some((({value:t})=>t===e.value)))))}})),l=e?[{value:"",label:e},...l]:l,t?l:I("jet.fb.getFormFieldsBlocks",l,n)},R=function(e){const t=wp.data.select("core/block-editor").getBlock(e);return t?t.innerBlocks:[]},{addFilter:M}=wp.hooks,P=function(e=!1,t=""){const n=window.JetFormEditorData.gateways;if(!e)return n;if(!n[e])return!1;const r=n[e];return e=>r[e]?r[e]:t},L=function(e,t=""){const n=P("labels");return r=>n(e)?n(e)[r]:t},G=function(e,t="cred"){return window.JetFBGatewaysList&&window.JetFBGatewaysList[e]&&window.JetFBGatewaysList[e][t]},D=function(t,n,r="cred"){if(!G(t,r))return null;const l=window.JetFBGatewaysList[t][r];return(0,e.createElement)(l,{...n})},{useState:q,useEffect:V}=wp.element,{useDispatch:J}=wp.data,$=function(e,t={}){const[n,r]=q(!1),l=J(wp.notices.store);return V((()=>{n&&l.createWarningNotice(e,{type:"snackbar",...t})}),[n]),r},{useSelect:U}=wp.data,H=function(e){const t=U((e=>e("core/editor").getEditedPostAttribute("meta")||{}));return JSON.parse(t[e]||"{}")},W=function(e){const{actionClick:t,onRequestClose:n}=(0,o.useContext)(i);(0,o.useEffect)((()=>{t&&e(),null!==t&&n()}),[t])},{applyFilters:z}=wp.hooks,Y=(e,t)=>{t.forEach((t=>{e(t),t.innerBlocks.length&&Y(e,t.innerBlocks)}))},K=window.jfb.actions,X=function(e){const t=e("jet-forms/gateways"),n=t.getCurrentRequestId(),r=t.getGatewaySpecific(),l=t.getScenario(),o=t.getGatewayId(),{id:a="PAY_NOW"}=l,{use_global:i=!1}=r,s=(0,K.globalTab)({slug:o}),c=P("additional")(o),u=e("jet-forms/actions").getLoading(n),d=P("labels"),m=L(o),p=function(e){return d(`${o}.${e}`)};return{gatewayGeneral:t.getGateway(),gatewayRequest:t.getCurrentRequest(),scenarioSource:c[a]||{},currentScenario:l[a]||{},CURRENT_SCENARIO:a,gatewayScenario:l,additionalSourceGateway:c,gatewaySpecific:r,gatewayRequestId:n,loadingGateway:u,getSpecificOrGlobal:(e,t="")=>i?s[e]||t:r[e]||t,globalGatewayLabel:d,specificGatewayLabel:m,customGatewayLabel:p,scenarioLabel:function(e){return p(`scenario.${a}.${e}`)}}},{useSelect:Z}=wp.data,Q=function(){const e=Z((e=>e("jet-forms/events").getAlwaysTypes())),t=[];for(const{value:n}of e)t.push(n);return[...new Set(t)]},{useSelect:ee}=wp.data,te=function(){var e;const t=H("_jf_gateways"),{scenario:n={}}=null!==(e=t[t?.gateway])&&void 0!==e?e:{};return ee((e=>{const r=e("jet-forms/events").getGatewayTypes(),l=[];for(const e of r){const r=!e.gateway||e.gateway===t.gateway,o=!e.scenario||e.scenario===n?.id;r&&o&&l.push(e.value)}return[...new Set(l)]}),[t.gateway,n?.id])},{useSelect:ne}=wp.data,re=function({index:e}){const t=H("_jf_actions"),n=ne((e=>e("jet-forms/actions").getActionsMap()),[]);t.splice(e,1);const r=[];for(const e of t){const t=n?.[e.type]?.provideEvents;if("function"!=typeof t)continue;const{[e.type]:l={}}=e.settings;r.push(...t(l))}return[...new Set(r)]},{useSelect:le}=wp.data,{useSelect:oe}=wp.data,ae=function(e){const t=[...Q(),...te(),...re(e),...le((e=>e("jet-forms/events").getDynamicTypes().map((({value:e})=>e))))];return oe((n=>n("jet-forms/events").filterList(e.type,t)))},{useSelect:ie}=wp.data,{useSelect:se}=wp.data,ce=function(){const[e,t]=se((e=>[e("jet-forms/block-conditions").getOperators(),e("jet-forms/block-conditions").getFunctions()]),[]);return{operators:e,functions:t}},{useBlockEditContext:ue}=wp.blockEditor,de=function(){const{clientId:e}=ue();return t=>t+"-"+e},me=window.wp.blockEditor,pe=window.wp.data,fe=function(e=null){const t=(0,me.useBlockEditContext)();let{clientId:n}=t;e&&(n=e);const r=(0,pe.useSelect)((e=>e("core/block-editor").getBlockAttributes(n)),[n]),{updateBlock:l}=(0,pe.useDispatch)("core/block-editor");return[r,e=>{e="object"==typeof e?e:e(r),e=(0,pe.select)("jet-forms/fields").getSanitizedAttributes(e,t),l(n,{attributes:e})}]},he=function(e){const t=(0,me.useBlockProps)()["data-type"];return(0,pe.useSelect)((n=>!!n("core/blocks").getBlockType(t).attributes[e]),[e,t])},{applyFilters:be}=wp.hooks,ge=function(t){return function(n){return(0,e.createElement)(t,{key:"wrapped-preset-editor",...n,parseValue:()=>{let e={};if("object"==typeof n.value)e={...n.value};else if(n.value&&"string"==typeof n.value)try{if(e=JSON.parse(n.value),"number"==typeof e)throw new Error}catch(t){e={}}return e.jet_preset=!0,e},isVisible:(e,t,n)=>(t.position&&n===t.position||!t.position||"query_var"!==e.from)&&((e,t)=>!t.condition&&!t.custom_condition||(t.custom_condition?"query_var"===t.custom_condition?"post"===e.from&&"query_var"===e.post_from||"user"===e.from&&"query_var"===e.user_from||"term"===e.from&&"query_var"===e.term_from||"query_var"===e.from:be("jet.fb.preset.editor.custom.condition",!1,t.custom_condition,e):!t.condition||e[t.condition.field]===t.condition.value))(e,t),isMapFieldVisible:(e,t,n)=>!((t.condition||t.parent_condition)&&(t.parent_condition&&!t.condition?e[t.parent_condition.field]!==t.parent_condition.value:t.parent_condition&&t.condition?!e.fields_map||!e.fields_map[n]||e.fields_map[n][t.condition.field]!==t.condition.value||e[t.parent_condition.field]!==t.parent_condition.value:!t.parent_condition&&t.condition&&(!e.fields_map||!e.fields_map[n]||e.fields_map[n][t.condition.field]!==t.condition.value))),isCurrentFieldVisible:(e,t,n)=>!((t.condition||t.parent_condition)&&(t.position&&n!==t.position||(t.parent_condition&&!t.condition?e[t.parent_condition.field]!==t.parent_condition.value:t.parent_condition&&t.condition?e["current_field_"+t.condition.field]!==t.condition.value||e[t.parent_condition.field]!==t.parent_condition.value:!t.parent_condition&&t.condition&&e["current_field_"+t.condition.field]!==t.condition.value))),excludeOptions:e=>{const t=[...e];return t.forEach(((e,r)=>{n.excludeSources&&n.excludeSources.includes(e.value)&&t.splice(r,1)})),t}})}},ye=function({data:t,value:n,index:r,onChangeValue:o,isVisible:a,excludeOptions:i=e=>e,position:s}){switch(t.type){case"text":return a(n,t,s)&&(0,e.createElement)("div",{key:"field_"+t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledTextControl,{key:t.name+r,label:t.label,value:n[t.name],onChange:e=>{o(e,t.name)}}));case"select":return a(n,t,s)&&(0,e.createElement)("div",{key:"field_"+t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledSelectControl,{key:t.name+r,options:i(t.options),label:t.label,value:n[t.name],onChange:e=>{o(e,t.name)}}))}return null};function ve(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var we=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_e=ve((function(e){return we.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91})),Ee=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach((e=>{(e?e.split(" "):[]).forEach((e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)}))}));const r=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&r.push(t[e]);return r.push(...n),r.join(" ")},Ce=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach((t=>{n[t]=e[t]})),n},ke=function(t){let n="";return r=>{const l=(l,o)=>{const{as:a=t,class:i=n}=l;var s;const c=function(e,t){const n=Ce(t,["as","class"]);if(!e){const e="function"==typeof _e?{default:_e}:_e;Object.keys(n).forEach((t=>{e.default(t)||delete n[t]}))}return n}(void 0===r.propsAsIs?!("string"==typeof a&&-1===a.indexOf("-")&&(s=a[0],s.toUpperCase()!==s)):r.propsAsIs,l);c.ref=o,c.className=r.atomic?Ee(r.class,c.className||i):Ee(c.className||i,r.class);const{vars:u}=r;if(u){const e={};for(const t in u){const n=u[t],o=n[0],a=n[1]||"",i="function"==typeof o?o(l):o;r.name,e[`--${t}`]=`${i}${a}`}const t=c.style||{},n=Object.keys(t);n.length>0&&n.forEach((n=>{e[n]=t[n]})),c.style=e}return t.__wyw_meta&&t!==a?(c.as=a,(0,e.createElement)(t,c)):(0,e.createElement)(a,c)},o=e.forwardRef?(0,e.forwardRef)(l):e=>{const t=Ce(e,["innerRef"]);return l(t,e.innerRef)};return o.displayName=r.name,o.__wyw_meta={className:r.class||n,extends:t},o}};const Se=ke("select")({name:"StyledSelect",class:"syma2t4",propsAsIs:!1}),je=function({id:t,label:n,onChange:r,options:l=[],value:o}){return!C(l)&&(0,e.createElement)(Se,{id:t,className:"components-select-control__input",onChange:e=>{r(e.target.value)},value:o},(0,e.createElement)("option",{key:`${n}-placeholder`,value:""},"--"),l.map(((t,n)=>!C(t.values)&&(0,e.createElement)("optgroup",{key:`${t.label}-${n}`,label:t.label},t.values.map(((t,r)=>(0,e.createElement)("option",{key:`${t.value}-${r}-${n}`,value:t.value,disabled:t.disabled},t.label)))))))};n(4023);const xe=function({data:t,value:n,index:r,currentState:o,onChangeValue:a,isCurrentFieldVisible:i}){switch(t.type){case"text":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledTextControl,{key:"control_"+t.name+r,placeholder:t.label,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}));case"select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledSelectControl,{key:"control_"+t.name+r,options:t.options,label:t.label,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}));case"custom_select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(u.CustomSelectControl,{className:"jet-custom-select-control",label:t.label,options:t.options,onChange:({selectedItem:e})=>{n=e.key,a(n,"current_field_"+t.name)},value:t.options.find((e=>e.key===n))}));case"grouped_select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r},(0,e.createElement)(l.Label,null,t.label),(0,e.createElement)(je,{options:t.options,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}))}return null},{createContext:Ne}=wp.element,Fe=Ne({});let Te=function({value:t,onChange:n,parseValue:r,excludeOptions:a,isCurrentFieldVisible:i,isVisible:s}){var c,m;const p="dynamic",f=r(t),h=(0,o.useContext)(Fe),b=(e,t)=>{n((()=>JSON.stringify({...f,[t]:e})))};return(0,e.createElement)(l.StyledFlexControl,{direction:"column",gap:4},window.JetFormEditorData.presetConfig.global_fields.map(((t,n)=>(0,e.createElement)(ye,{key:`current_field_${t.name}_${n}`,value:f,index:n,data:t,excludeOptions:a,onChangeValue:b,isVisible:s,position:p}))),window.JetFormEditorData.presetConfig.map_fields.map(((t,n)=>(0,e.createElement)(xe,{key:`current_field_${t.name}_${n}`,currentState:f,value:f["current_field_"+t.name],index:n,data:t,onChangeValue:b,isCurrentFieldVisible:i,position:p}))),h?.show&&(0,e.createElement)(u.ToggleControl,{label:(0,d.__)("Restrict access","jet-form-builder"),help:null===(c=f.restricted)||void 0===c||c?(0,d.__)("Will set default value from preset only for users who allowed to edit this value","jet-form-builder"):(0,d.__)("Always set default value from preset. Make sure it can't be accidentally changed from form Actions","jet-form-builder"),checked:null===(m=f.restricted)||void 0===m||m,onChange:e=>{b(e?void 0:e,"restricted")}}))};Te=ge(Te);const Be=Te,{SelectControl:Ie,TextControl:Ae}=wp.components;class Oe extends wp.element.Component{constructor(e){super(e),this.fieldTypes=this.props.fieldTypes,this.taxonomiesList=this.props.taxonomiesList,this.className=this.props.className,this.metaProp=this.props.metaProp?this.props.metaProp:"post_meta",this.termsProp=this.props.termsProp?this.props.termsProp:"post_terms",this.index=this.props.index,this.init(),this.bindFunctions(),this.state={type:this.getFieldType(this.props.fieldValue)}}bindFunctions(){this.onChangeType=this.onChangeType.bind(this),this.onChangeValue=this.onChangeValue.bind(this)}init(){if(this.id=`inspector-select-control-${this.index}`,this.preparedTaxes=[],this.taxPrefix="jet_tax__",this.taxonomiesList)for(let e=0;e{const t=wp.data.select(De).getBlockType(`jet-forms/${e}`);return{title:t.title,icon:t.icon.src}})))}},Ve=class{constructor(){this.items=[]}push(e){this.items.push(new qe(e))}},{messages:Je}=window.jetFormValidation,{useState:$e}=wp.element,Ue=Je.sort(((e,t)=>e.supported.length-t.supported.length));function He(){const e=new Ve;for(const t of Ue)e.push(t);return e.items}const We=function(e,t){1>=e.label.length||e.name&&"field_name"!==e.name||t({name:_(e.label)})},{BaseControl:ze}=wp.components,{RichText:Ye}=wp.blockEditor;let{__experimentalUseFocusOutside:Ke,useFocusOutside:Xe}=wp.compose;Xe=Xe||Ke;const{__:Ze}=wp.i18n;function Qe(t){return(0,e.createElement)("small",{style:{whiteSpace:"nowrap",padding:"0.2em 0.8em 0 0",color:"#8e8a8a"}},t)}const{Button:et,Popover:tt,PanelBody:nt}=wp.components,{useState:rt}=wp.element,{__:lt}=wp.i18n,{TextControl:ot}=wp.components,at=function({label:t,help:n}){const[r,l]=fe();return he("placeholder")?(0,e.createElement)(ot,{label:null!=t?t:lt("Placeholder","jet-form-builder"),value:r.placeholder,help:null!=n?n:"",onChange:e=>l({placeholder:e})}):null},{__:it}=wp.i18n,{ToggleControl:st}=wp.components,ct=function({label:t,help:n}){const[r,l]=fe();return he("add_prev")?(0,e.createElement)(st,{label:null!=t?t:it("Add Prev Page Button","jet-form-builder"),help:null!=n?n:it('It is recommended to use the "Action Button" block with the "Go to Prev Page" type',"jet-form-builder"),checked:r.add_prev,onChange:e=>l({add_prev:e})}):null},ut=function({children:t,className:n="",style:r={},...l}){return(0,e.createElement)("p",{className:"jet-fb-base-control__help"+(n?` ${n}`:""),style:{fontSize:"12px",fontStyle:"normal",color:"rgb(117, 117, 117)",marginTop:"0px",...r},...l},t)},{useBlockEditContext:dt}=wp.blockEditor,{useSelect:mt}=wp.data,{__:pt}=wp.i18n,ft=function({name:t=!1,children:n=null}){const{name:r}=dt(),l=mt((e=>{var n;if(!1===t)return!1;const l=e("core/blocks").getBlockType(r);return null!==(n=l.attributes[t]?.jfb)&&void 0!==n&&n}),[r,t]);return l?(0,e.createElement)(ut,{className:"jet-fb mb-24"},n&&(0,e.createElement)(e.Fragment,null,n," "),l?.shortcode&&!l.rich&&!n&&pt("You can use shortcodes here.","jet-form-builder"),l?.shortcode&&!l.rich&&n&&pt("You can also use shortcodes here.","jet-form-builder")):Boolean(n)&&(0,e.createElement)(ut,{className:"jet-fb mb-24"},n)},{__:ht}=wp.i18n,{TextControl:bt}=wp.components,gt=function({label:t,help:n}){const[r,l]=fe();return r.add_prev?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(bt,{label:null!=t?t:ht("Prev Page Button Label","jet-form-builder"),value:r.prev_label,className:"jet-fb m-unset",onChange:e=>l({prev_label:e})}),(0,e.createElement)(ft,{name:"prev_label"},null!=n?n:"")):null},{__:yt}=wp.i18n,{SelectControl:vt}=wp.components,wt=function({label:t,help:n}){const[r,l]=fe();return he("visibility")?(0,e.createElement)(vt,{options:[{value:"all",label:yt("For all","jet-form-builder")},{value:"logged_id",label:yt("Only for logged in users","jet-form-builder")},{value:"not_logged_in",label:yt("Only for NOT-logged in users","jet-form-builder")}],label:null!=t?t:yt("Field Visibility","jet-form-builder"),help:null!=n?n:"",value:r.visibility,onChange:e=>l({visibility:e})}):null},{__:_t}=wp.i18n,{TextControl:Et}=wp.components,Ct=function({label:t,help:n}){const[r,l]=fe();return(0,e.createElement)(Et,{label:null!=t?t:_t("CSS Class Name","jet-form-builder"),value:r.class_name,help:null!=n?n:"",onChange:e=>l({class_name:e})})},{InspectorAdvancedControls:kt}=wp.blockEditor,{__:St}=wp.i18n,{TextControl:jt}=wp.components;let{__experimentalUseFocusOutside:xt,useFocusOutside:Nt}=wp.compose;Nt=Nt||xt;const Ft=function({label:t,help:n}){const[r,l]=fe(),o=Nt((function(){We(r,l)}));return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(jt,{label:null!=t?t:St("Field Label","jet-form-builder"),className:"jet-fb m-unset",value:r.label,onChange:e=>l({label:e}),...o}),(0,e.createElement)(ft,{name:"label"},null!=n?n:""))},Tt={};for(const{id:e,name:t}of window.jetFormActionTypes)Tt[e]=t;const{__:Bt}=wp.i18n,{TextControl:It,Icon:At,Flex:Ot,Tooltip:Rt}=wp.components,{useInstanceId:Mt}=wp.compose,Pt=function t({label:n,help:r}){const[l,o]=fe(),{message:a}=function(){const{clientId:e}=(0,me.useBlockEditContext)(),t=(0,K.useRequestFields)({returnOnEmptyCurrentAction:!1}),{inFormFields:n,hasParent:r,fieldNames:l}=(0,pe.useSelect)((t=>{var n;const r=t("jet-forms/fields").getBlockById(e);return{hasParent:!!r?.parentBlock,fieldNames:null!==(n=r?.fields?.map?.((({value:e})=>e)))&&void 0!==n?n:[],inFormFields:t("jet-forms/fields").isUniqueName(e)}}),[e]);if(!n)return{error:"not_unique_in_fields",message:(0,d.__)("The form field name must be unique. Please change it","jet-form-builder")};if(r)return{};const o=t.find((({value:e})=>l.includes(e)));return o?{error:"not_unique_in_actions",message:o?.from?(0,d.sprintf)((0,d.__)("The %s action already uses this field name. Please change it","jet-form-builder"),Tt[o.from]):(0,d.__)("The form field name must be unique. Please change it","jet-form-builder")}:{}}(),i=Mt(t,"AdvancedInspectorControl");return he("name")?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ot,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,e.createElement)("label",{htmlFor:i,className:"jet-fb label"},null!=n?n:Bt("Form field name","jet-form-builder")),!!a&&(0,e.createElement)(Rt,{text:a,delay:200,placement:"top"},(0,e.createElement)(At,{icon:"warning",style:{color:"orange",cursor:"help"}}))),(0,e.createElement)(It,{id:i,value:l.name,help:null!=r?r:Bt("Should contain only lowercase Latin letters, numbers, “-”, or “_”. No spaces allowed.","jet-form-builder"),onChange:e=>o({name:e})})):null},{__:Lt}=wp.i18n,{TextControl:Gt}=wp.components,Dt=function({label:t,help:n}){const[r,l]=fe();return he("desc")?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Gt,{label:null!=t?t:Lt("Field Description","jet-form-builder"),value:r.desc,className:"jet-fb m-unset",onChange:e=>l({desc:e})}),(0,e.createElement)(ft,{name:"desc"},null!=n?n:"")):null},qt=function({value:t,onChange:n,title:r}){const[a,i]=(0,o.useState)(!1),[s,c]=(0,o.useState)(t);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(u.Button,{icon:"database",variant:"tertiary",isSmall:!0,className:"jet-fb-is-thick",onClick:()=>i(!0)}),a&&(0,e.createElement)(u.Modal,{size:"medium",title:null!=r?r:(0,d.__)("Edit Preset","jet-form-builder"),onRequestClose:()=>i(!1),className:l.ModalFooterStyle},(0,e.createElement)(Be,{key:"dynamic_key_preset",value:s,onChange:c}),(0,e.createElement)(l.StickyModalActions,null,(0,e.createElement)(u.Button,{isPrimary:!0,onClick:()=>{n(s),i(!1)}},(0,d.__)("Update","jet-form-builder")),(0,e.createElement)(u.Button,{isSecondary:!0,onClick:()=>{i(!1)}},(0,d.__)("Cancel","jet-form-builder")))))},{createContext:Vt}=wp.element,Jt=Vt(!1),{useState:$t,useRef:Ut}=wp.element,{Button:Ht,Popover:Wt}=wp.components,zt=function({children:t,...n}){const[r,l]=$t(!1),o=Ut();return(0,e.createElement)(Jt.Provider,{value:{showPopover:r,setShowPopover:l}},(0,e.createElement)(Ht,{ref:o,icon:"admin-tools",variant:"tertiary",isSmall:!0,className:"jet-fb-is-thick",onClick:()=>l((e=>!e)),...n}),r&&(0,e.createElement)(Wt,{anchor:o.current,position:"top-start",noArrow:!1,variant:"toolbar",onFocusOutside:e=>{e.relatedTarget!==o.current&&l(!1)},onClose:()=>l(!1)},t))},{createContext:Yt}=wp.element,Kt=Yt([]),{createContext:Xt}=wp.element,Zt=Xt({name:""});function Qt(){}Qt.prototype={fullName(){},fullHelp(){}};const en=Qt,{useState:tn}=wp.element,{Button:nn}=wp.components,rn=function({current:t,children:n}){const[r,l]=tn(!1);if(!(t instanceof en))return(0,e.createElement)("li",null,(0,e.createElement)(Zt.Provider,{value:t},n));const o=t.fullHelp.bind(t);return(0,e.createElement)("li",null,(0,e.createElement)(Zt.Provider,{value:t},(0,e.createElement)("div",{style:{display:"flex",alignItems:"center",gap:"0.6em"}},(0,e.createElement)(nn,{isSmall:!0,variant:"tertiary",icon:r?"arrow-down":"arrow-right",className:"jet-fb-is-thick",onClick:()=>l((e=>!e))}),n),r&&(0,e.createElement)(o,null)))},{Children:ln,cloneElement:on}=wp.element,{PanelBody:an}=wp.components,sn=function({title:t,items:n,children:r,initialOpen:l}){const o=n.map(((t,n)=>(0,e.createElement)(rn,{key:n,current:t})));return(0,e.createElement)(an,{title:t,initialOpen:l},(0,e.createElement)("ul",{style:{padding:"0 0.5em"}},ln.map(o,(e=>on(e,{},r)))))},{useContext:cn}=wp.element,{__:un}=wp.i18n,dn=function({children:t,fields:n,...r}){var l,o;const a=cn(Kt),i=[...null!==(l=a.beforeFields)&&void 0!==l?l:[],...n,...null!==(o=a.afterFields)&&void 0!==o?o:[]];return i.length||a?.extra?.length||a?.filters?.length?(0,e.createElement)(zt,{...r},Boolean(i.length)&&(0,e.createElement)(sn,{title:un("Fields:","jet-form-builder"),items:i,initialOpen:!0},t),Boolean(a?.extra?.length)&&(0,e.createElement)(sn,{title:un("Extra macros:","jet-form-builder"),items:a.extra},t),Boolean(a?.filters?.length)&&(0,e.createElement)(sn,{title:un("Filters:","jet-form-builder"),items:a.filters},t)):null},{useContext:mn}=wp.element,{Button:pn}=wp.components,fn=function({onClick:t}){const n=mn(Zt),r=n.fullName?n.fullName():`%${n.value}%`,l="function"==typeof n.label?n.label():n.label||r,o=Boolean(n.is_repeater)?`${l} (repeater)`:l,a=Boolean(n.is_repeater_child)?"- ":"";return n.supports_option_label?(0,e.createElement)("div",{className:"jet-fb-macro-field-item",style:{whiteSpace:"nowrap"}},(0,e.createElement)("div",{className:"jet-fb-macro-field-item__label"},o),(0,e.createElement)("div",{className:"jet-fb-macro-field-item__formats"},"- ",(0,e.createElement)(pn,{isLink:!0,onClick:()=>t(r,n)},"Format: value")," ",(0,e.createElement)("br",null),"- ",(0,e.createElement)(pn,{isLink:!0,onClick:()=>t(r,n,"option-label")},"Format: label value"))):(0,e.createElement)(e.Fragment,null,a,(0,e.createElement)(pn,{style:{whiteSpace:"nowrap"},isLink:!0,onClick:()=>t(r,n)},o))},hn=window.jfb.blocksToActions,bn=["jet-forms/checkbox-field","jet-forms/radio-field","jet-forms/select-field"];function gn(e){return bn.includes(e?.name)}function yn(e={}){return e.name||e.field_name||e.fieldName||""}const vn=function({onClick:t=()=>{},withCurrent:n=!1,...r}){const l=(0,hn.useFields)({excludeCurrent:!n}),o=(0,pe.useSelect)((e=>{const t=e("core/block-editor");return function(e=[]){const t={},n=(e,r=null)=>{(e||[]).forEach((e=>{const l=yn(e?.attributes),o="jet-forms/repeater-field"===e?.name;l&&(t[l]={is_repeater:o,is_repeater_child:Boolean(r)&&!o,repeater_name:r?yn(r.attributes):"",supports_option_label:gn(e)});const a=o?e:r;e?.innerBlocks?.length&&n(e.innerBlocks,a)}))};return n(e),t}(t?.getBlocks?.()||[])}),[]),a=(l||[]).map((e=>{const t=o?.[e?.value];return t?{...e,...t}:e}));return(0,e.createElement)(dn,{withCurrent:n,fields:a,...r},(0,e.createElement)(fn,{onClick:t}))},{Flex:wn}=wp.components,_n=function({label:t,children:n,...r}){return(0,e.createElement)(wn,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,e.createElement)("label",{className:"jet-fb label",...r},t),n)},{FlexItem:En}=wp.components,{useInstanceId:Cn}=wp.compose,kn=function({children:t,value:n,label:r,onChangePreset:l=!1,onChangeMacros:o=!1}){const a=Cn(En,"jfb-AdvancedInspectorControl");return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(_n,{label:r,htmlFor:a},!1!==l&&(0,e.createElement)(qt,{value:n,onChange:l}),!1!==o&&(0,e.createElement)(vn,{onClick:o})),"function"==typeof t?t({instanceId:a}):t)};function Sn(){en.call(this)}Sn.prototype=Object.create(en.prototype),Sn.prototype.isServerSide=!1,Sn.prototype.isClientSide=!1,Sn.prototype.name="",Sn.prototype.namespace="CT",Sn.prototype.help=null,Sn.prototype.fullHelp=function(){return this.help},Sn.prototype.fullName=function(){return`%${this.namespace}::${this.name}%`};const jn=Sn,{useSelect:xn}=wp.data,{__:Nn}=wp.i18n,Fn=new jn;Fn.fullName=()=>"%this%",Fn.fullHelp=()=>Nn("Returns current field value","jet-form-builder");const Tn=function({children:t,withThis:n=!1}){const r=xn((e=>e("jet-forms/macros").getClientMacros()),[]),l=xn((e=>e("jet-forms/macros").getClientFilters()),[]),o=n?{extra:r,afterFields:[Fn],filters:l}:{extra:r,filters:l};return(0,e.createElement)(Kt.Provider,{value:o},t)};function Bn(e,t,n){const r=n.selectionStart,l=n.selectionEnd;(e=null!=e?e:"").length||(t=`'${t}'`);let o=e.slice(0,r);const a=e.slice(l);return o+=t,setTimeout((()=>{n.focus(),n.selectionStart=o.length,n.selectionEnd=o.length})),o+a}const{useRef:In}=wp.element,An=function(e){var t;const[n,r]=fe(),l=null!==(t=n[e])&&void 0!==t?t:"",o=In();return[o,t=>{r({[e]:Bn(l,t,o.current)})}]},{__:On}=wp.i18n,{TextControl:Rn}=wp.components,Mn=function({label:t,help:n,hasMacro:r=!0}){const[l,o]=fe(),[a,i]=An("default");return he("default")?(0,e.createElement)(Fe.Provider,{value:{show:!0}},(0,e.createElement)(Tn,null,(0,e.createElement)(kn,{value:l.default,label:null!=t?t:On("Default Value","jet-form-builder"),onChangePreset:e=>o({default:e}),onChangeMacros:!!r&&i},(({instanceId:t})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Rn,{ref:a,id:t,value:l.default,className:"jet-fb m-unset",onChange:e=>o({default:e})}),(0,e.createElement)(ft,{name:"default"},null!=n?n:"")))))):null},{PanelBody:Pn}=wp.components,{__:Ln}=wp.i18n,{BlockControls:Gn}=wp.blockEditor,{useCopyToClipboard:Dn}=wp.compose,{TextControl:qn,ToolbarGroup:Vn,ToolbarItem:Jn,ToolbarButton:$n}=wp.components,Un=function({children:t=null}){const n=de(),[r,l]=fe(),o=$(`Copied "${r.name}" to clipboard.`),a=Dn(r.name,(()=>o(!0)));return(0,e.createElement)(Gn,{key:n("ToolBarFields-BlockControls")},(0,e.createElement)(Vn,{key:n("ToolBarFields-ToolbarGroup"),className:"jet-fb-block-toolbar"},(0,e.createElement)($n,{isSmall:!0,icon:"admin-page",showTooltip:!0,shortcut:"Copy name",ref:a}),(0,e.createElement)(Jn,{as:qn,value:r.name,onChange:e=>l({name:e})}),t))},{__:Hn}=wp.i18n,{ToolbarButton:Wn}=wp.components,{BlockControls:zn}=wp.blockEditor,{SVG:Yn,Path:Kn}=wp.primitives,Xn=function(){const[t,n]=fe();return he("required")?(0,e.createElement)(zn,{group:"block"},(0,e.createElement)(Wn,{icon:(0,e.createElement)(Yn,{xmlns:"http://www.w3.org/2000/svg",width:"24px",height:"24px",viewBox:"0 0 24 24",fill:"none"},(0,e.createElement)(Kn,{d:"M12 4L12 20",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Kn,{d:"M17.3137 6.00024L6.00001 17.314",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Kn,{d:"M20 12L4 12",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Kn,{d:"M17.3137 17.3137L6.00001 6.00001",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),title:t.required?Hn("Click to make this field optional","jet-form-builder"):Hn("Click to make this field required","jet-form-builder"),onClick:()=>n({required:!t.required}),isActive:t.required})):null},{__:Zn}=wp.i18n,{PanelBody:Qn}=wp.components,{applyFilters:er}=wp.hooks,{useBlockProps:tr}=wp.blockEditor,{applyFilters:nr}=wp.hooks,rr=()=>nr("jet.fb.register.fields.controls",{}),lr=window.wp.compose,or=(0,lr.compose)((0,pe.withSelect)(X))((function({initialLabel:t="Valid",label:n="InValid",apiArgs:r={},gatewayRequestId:l,loadingGateway:o,onLoading:a=()=>{},onSuccess:i=()=>{},onFail:s=()=>{},isHidden:c=!1}){return(0,e.createElement)(K.FetchApiButton,{id:l,loadingState:o,initialLabel:t,label:n,apiArgs:r,onFail:s,onLoading:a,onSuccess:i,isHidden:c})})),ar="CLEAR_GATEWAY",ir="CLEAR_SCENARIO",sr="SET_CURRENT_GATEWAY_SCENARIO",cr="SET_CURRENT_GATEWAY",ur="SET_CURRENT_GATEWAY_SPECIFIC",dr="SET_CURRENT_GATEWAY_INNER",mr="SET_CURRENT_REQUEST",pr="SET_CURRENT_SCENARIO",fr="REGISTER_EVENT_TYPE",hr="HARD_SET_CURRENT_GATEWAY",br="HARD_SET_CURRENT_GATEWAY_SPECIFIC",gr={getCurrentRequestId:e=>e.currentRequest.id,getCurrentRequest:e=>e.currentRequest,getScenario:e=>e.currentScenario,getScenarioId:e=>e.currentScenario?.id,getGatewayId:e=>e.currentGateway?.gateway,getGateway:e=>e.currentGateway,getEventTypes:e=>e.eventTypes},yr={...gr,getGatewaySpecific:e=>e.currentGateway[gr.getGatewayId(e)]||{}},vr={[ar]:e=>({...e,currentGateway:{}}),[ir]:e=>({...e,currentScenario:{}}),[sr]:(e,t)=>({...e,currentScenario:{...e.currentScenario,...t.item||{}}}),[cr]:(e,t)=>({...e,currentGateway:{...e.currentGateway,...t.item}}),[ur]:(e,t)=>({...e,currentGateway:{...e.currentGateway,[e.currentGateway.gateway]:{...yr.getGatewaySpecific(e),...t.item}}}),[dr]:(e,t)=>{const{key:n,value:r}=t.item;return{...e,currentGateway:{...e.currentGateway,[n]:{...e.currentGateway[n]||{},...r}}}},[mr]:(e,t)=>{const n=[yr.getGatewayId(e),t.item?.id].filter((e=>e));return t.item.id=n.join("/"),{...e,currentRequest:t.item}},[pr]:(e,t)=>({...e,currentScenario:{...e.currentScenario,[e.currentScenario?.id]:{...e.currentScenario[e.currentScenario?.id]||{},...t.item||{}}}}),[hr]:(e,t)=>(t.item&&(e.currentGateway[t.item]=t.value),{...e}),[br]:(e,t)=>(t.item&&e.currentGateway?.gateway&&(e.currentGateway[e.currentGateway?.gateway]={},e.currentGateway[e.currentGateway?.gateway][t.item]=t.value),{...e}),[fr]:(e,t)=>{var n,r;const l={...t.item,gateway:null!==(n=t.item?.gateway)&&void 0!==n?n:e.currentGateway?.gateway,scenario:null!==(r=t.item?.scenario)&&void 0!==r?r:e.currentScenario?.id};return e.eventTypes.push(l),e}},wr={currentRequest:{id:-1},currentGateway:{},currentScenario:{},eventTypes:[]},_r={clearGateway:()=>({type:ar}),clearScenario:()=>({type:ir}),setRequest:e=>({type:mr,item:e}),setGateway:e=>({type:cr,item:e}),setGatewayInner:e=>({type:dr,item:e}),setGatewaySpecific:e=>({type:ur,item:e}),setScenario:e=>({type:sr,item:e}),setCurrentScenario:e=>({type:pr,item:e}),registerEventType:e=>({type:fr,item:e}),hardSetGateway:(e,t="")=>({type:hr,item:e,value:t}),hardSetGatewaySpecific:(e,t="")=>({type:br,item:e,value:t})},{createReduxStore:Er}=wp.data,Cr=Er("jet-forms/gateways",{reducer:function(e=wr,t){const n=vr[t?.type];return n?n(e,t):e},actions:_r,selectors:yr}),kr="REGISTER",Sr="UNREGISTER",jr="LOCK_ACTIONS",xr="CLEAR_DYNAMIC_EVENTS",Nr={getTypeIndex:(e,t)=>e.types.findIndex((e=>e.value===t)),getTypes:e=>e.types,getGatewayTypes:e=>e.types.filter((e=>"gateway"in e)),getAlwaysTypes:e=>e.types.filter((e=>"always"in e)),getDynamicTypes:e=>e.types.filter((({isDynamic:e})=>e)),getType(e,t){const n=Nr.getTypeIndex(e,t);return e.types[n]},getUnsupported(e,t){var n;const r=null!==(n=e.lockedActions[t])&&void 0!==n&&n;return!1===r?[]:r.unsupported},getSupported(e,t){var n;const r=null!==(n=e.lockedActions[t])&&void 0!==n&&n;return!1===r?[]:r.supported},isValid(e,t,n){const r=Nr.getUnsupported(e,t);if(r.length&&r.includes(n))return!1;const l=Nr.getSupported(e,t);return!l.length||l.includes(n)},filterList:(e,t,n)=>n.filter((n=>Nr.isValid(e,t,n))),getHelpMap(e){const t={};for(const{value:n,help:r}of e.types)t[n]=r;return t},getEventValuesByGateway(e){const t={};for(const n of e.types){if(!n.gateway)continue;const e=n.gateway;t[e]||(t[e]=[]),t[e].push(n.value)}return t}},Fr={...Nr},Tr={[kr](e,t){const{types:n}=e;for(const r of t.items){r.title=r.label;const t=Fr.getTypeIndex(e,r.value);-1===t?n.push({...r}):n[t]={...r}}return{...e,types:n}},[jr](e){for(const{id:n,self:r}of window.jetFormActionTypes){var t;const l=null!==(t=window[r])&&void 0!==t&&t;if(!1===l)continue;const{__unsupported_events:o,__supported_events:a}=l,i={unsupported:e.types.filter((({self:e})=>o.includes(e))).map((({value:e})=>e)),supported:e.types.filter((({self:e})=>a.includes(e))).map((({value:e})=>e))};(i.supported.length||i.unsupported.length)&&(e.lockedActions[n]=i)}return e},[Sr](e,t){const{types:n}=t;return e.types=e.types.filter((({value:e})=>!n.includes(e))),e},[xr]:e=>(e.types=e.types.filter((({isDynamic:e=!1})=>!e)),e)},Br={types:[],labels:{},lockedActions:{}},Ir={register:e=>({type:kr,items:e}),lockActions:()=>({type:jr}),unRegister:e=>({type:Sr,types:e}),clearDynamicEvents:()=>({type:xr})},{createReduxStore:Ar}=wp.data,Or=Ar("jet-forms/events",{reducer:function(e=Br,t){const n=Tr[t?.type];return n?n(e,t):e},actions:Ir,selectors:Fr}),Rr="REGISTER",Mr="ADD_RENDER_STATE",Pr="ADD_RENDER_STATES",Lr="DELETE_RENDER_STATES",{doAction:Gr}=wp.hooks,Dr={...{[Rr](e,t){const{operators:n,functions:r,render_states:l}=t.items;return e.operators=[...n],e.functions=[...r],e.renderStates=[...l],Gr("jet.fb.change.blockConditions.renderState",e.renderStates),e},[Mr]:(e,t)=>(e.renderStates.push(t.item),Gr("jet.fb.change.blockConditions.renderState",e.renderStates),e),[Pr](e,t){for(const n of t.items)e.renderStates.push(n);return Gr("jet.fb.change.blockConditions.renderState",e.renderStates),e},[Lr](e,t){const n=Array.isArray(t.items)?[...t.items]:[t.items];return e.renderStates=e.renderStates.filter((({value:e})=>!n.includes(e))),Gr("jet.fb.change.blockConditions.renderState",e.renderStates),e}}},{__:qr}=wp.i18n,Vr=function(e,t="code"){var n;if(!function(e){let t;try{t=JSON.parse(e)}catch(e){return!1}return!!t?.jet_preset}(e=null!=e?e:""))return e;const r=JSON.parse(e),l=qr("Preset from","jet-form-builder"),o=null!==(n=r?.from)&&void 0!==n?n:"(empty)";let a;switch(t){case"code":a=`${o}`;break;case"b":a=`${o}`}return[l,a].join(" ")},{select:Jr}=wp.data,{__:$r}=wp.i18n,Ur=function(e){const t=Jr("jet-forms/block-conditions").getOperator(e?.operator);return t?[`${e?.field||"(no field)"}`,t.label].join(" "):""},Hr={functions:[],operators:[],conditionReaders:{default(e){const t=Jr("jet-forms/block-conditions").getOperator(e?.operator);if(!t)return"";const n=e?.field||"(no field)",r=Vr(e.value,"b")||"(no value)";return[`${n}`,t.label,`${r}`].join(" ")},empty:Ur,not_empty:Ur,render_state(e){var t;const n=(null!==(t=e?.render_state)&&void 0!==t?t:[]).map((e=>`${e}`));return[1===n.length?$r("Is render state","jet-form-builder"):$r("One of the render states","jet-form-builder"),n.join(", ")].join(": ")}},renderStates:[]},Wr={register:e=>({type:Rr,items:e}),addRenderState:e=>({type:Mr,item:e}),addRenderStates:e=>({type:Pr,items:e}),deleteRenderStates:e=>({type:Lr,items:e})},zr={getFunctions:e=>e.functions,getOperators:e=>e.operators,getRenderStates:e=>e.renderStates,getSwitchableRenderStates:e=>e.renderStates.filter((({is_custom:e=!1,can_be_switched:t=!1})=>e||t)),getCustomRenderStates:e=>e.renderStates.filter((({is_custom:e=!1})=>e)),getOperator(e,t){const n=e.operators.findIndex((({value:e})=>e===t));return-1!==n&&e.operators[n]},readCondition(e,t){var n;const{operator:r=""}=t;if(!r)return"";const l=null!==(n=e.conditionReaders[r])&&void 0!==n&&n;return"function"==typeof l?l(t):e.conditionReaders.default(t)},getFunction:(e,t)=>e.functions.find((({value:e})=>e===t)),getFunctionDisplay:(e,t)=>zr.getFunction(e,t)?.display},Yr={...zr},{createReduxStore:Kr}=wp.data,Xr=Kr("jet-forms/block-conditions",{reducer:function(e=Hr,t){const n=Dr[t?.type];return n?n(e,t):e},actions:Wr,selectors:Yr}),Zr="REGISTER_MACRO",Qr={[Zr](e,t){const{items:n,isClient:r}=t,l=Array.isArray(n)?n:[n];for(const e of l)if(!(e instanceof jn))throw new Error("^^^ Invalid macro item ^^^");return r?e.clientMacros.push(...l):e.serverMacros.push(...l),e}},{__:el}=wp.i18n;function tl(){jn.call(this),this.name="CurrentDate",this.isClientSide=!0,this.fullHelp=()=>(0,e.createElement)(e.Fragment,null,el("Returns the current timestamp. Replacing","jet-form-builder")," ",(0,e.createElement)("code",null,"Date.now()"))}tl.prototype=Object.create(jn.prototype);const nl=tl,{__:rl}=wp.i18n;function ll(){jn.call(this),this.name="Min_In_Sec",this.isClientSide=!0,this.help=rl("Number of milliseconds in one minute","jet-form-builder")}ll.prototype=Object.create(jn.prototype);const ol=ll,{__:al}=wp.i18n;function il(){jn.call(this),this.name="Month_In_Sec",this.isClientSide=!0,this.help=al("Number of milliseconds in one month","jet-form-builder")}il.prototype=Object.create(jn.prototype);const sl=il,{__:cl}=wp.i18n;function ul(){jn.call(this),this.name="Day_In_Sec",this.isClientSide=!0,this.help=cl("Number of milliseconds in one day","jet-form-builder")}ul.prototype=Object.create(jn.prototype);const dl=ul,{__:ml}=wp.i18n;function pl(){jn.call(this),this.name="Year_In_Sec",this.isClientSide=!0,this.help=ml("Number of milliseconds in one year","jet-form-builder")}pl.prototype=Object.create(jn.prototype);const fl=pl,{__:hl}=wp.i18n;function bl(){en.call(this)}bl.prototype=Object.create(en.prototype),bl.prototype.docArgument=!1,bl.prototype.help=null,bl.prototype.isServerSide=!1,bl.prototype.isClientSide=!1,bl.prototype.getArgumentsList=function(){if(!this.docArgument||!this.docArgument.length)return null;const e=Array.isArray(this.docArgument)?this.docArgument:[this.docArgument],t=[];for(const n of e)switch(n){case"string":case String:t.push(hl("String","jet-form-builder"));break;case"number":case Number:t.push(hl("Number","jet-form-builder"));break;case"array":case Array:t.push(hl("Array","jet-form-builder"));break;case"any":t.push(hl("Anything","jet-form-builder"))}return t.join(" | ")},bl.prototype.fullHelp=function(){if(!this.docArgument&&!this.help)return null;const t=this.help,n=this.getArgumentsList();return(0,e.createElement)(e.Fragment,null,n&&(0,e.createElement)("div",{style:{marginBottom:"0.5em"}},hl("Arguments:","jet-form-builder")+" ",(0,e.createElement)("code",null,n)),"function"!=typeof t?t:(0,e.createElement)(t,null))};const gl=bl,{__:yl}=wp.i18n;function vl(){gl.call(this),this.label=()=>yl("addDay","jet-form-builder"),this.fullName=()=>"|addDay",this.docArgument=Number,this.isClientSide=!0,this.help=yl("Adds the passed number of days via an argument to a macro that returns a date or a timestamp.","jet-form-builder")}vl.prototype=Object.create(gl.prototype);const wl=vl,{__:_l}=wp.i18n;function El(){gl.call(this),this.label=()=>_l("addMonth","jet-form-builder"),this.fullName=()=>"|addMonth",this.docArgument=Number,this.isClientSide=!0,this.help=_l("Adds the passed number of months via an argument to a macro that returns a date or a timestamp.","jet-form-builder")}El.prototype=Object.create(gl.prototype);const Cl=El,{__:kl}=wp.i18n;function Sl(){gl.call(this),this.label=()=>kl("addYear","jet-form-builder"),this.fullName=()=>"|addYear",this.docArgument=Number,this.isClientSide=!0,this.help=kl("Adds the passed number of years through an argument to a macro that returns a date or a timestamp.","jet-form-builder")}Sl.prototype=Object.create(gl.prototype);const jl=Sl,{__:xl}=wp.i18n;function Nl(){gl.call(this),this.label=()=>xl("ifEmpty","jet-form-builder"),this.fullName=()=>"|ifEmpty",this.docArgument="any",this.isClientSide=!0,this.help=xl("If the macro returns an empty value, then the filter returns the value passed in the argument","jet-form-builder")}Nl.prototype=Object.create(gl.prototype);const Fl=Nl,{__:Tl}=wp.i18n;function Bl(){gl.call(this),this.label=()=>Tl("length","jet-form-builder"),this.fullName=()=>"|length",this.isClientSide=!0,this.help=Tl("Returns the length of a string or array","jet-form-builder")}Bl.prototype=Object.create(gl.prototype);const Il=Bl,{__:Al}=wp.i18n;function Ol(){gl.call(this),this.label=()=>Al("toDate","jet-form-builder"),this.fullName=()=>"|toDate",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Al("Formats the timestamp according to the Date Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Al("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"2022-02-24"),(0,e.createElement)("hr",null),Al("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Al(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Al(").","jet-form-builder"),(0,e.createElement)("hr",null),Al("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toDate(false)"))}Ol.prototype=Object.create(gl.prototype);const Rl=Ol,{__:Ml}=wp.i18n;function Pl(){gl.call(this),this.label=()=>Ml("toDateTime","jet-form-builder"),this.fullName=()=>"|toDateTime",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Ml("Formats the timestamp according to the Datetime Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Ml("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"2022-02-24T04:25"),(0,e.createElement)("hr",null),Ml("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Ml(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Ml(").","jet-form-builder"),(0,e.createElement)("hr",null),Ml("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toDateTime(false)"))}Pl.prototype=Object.create(gl.prototype);const Ll=Pl,{__:Gl}=wp.i18n;function Dl(){gl.call(this),this.label=()=>Gl("toTime","jet-form-builder"),this.fullName=()=>"|toTime",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Gl("Formats the timestamp according to the Time Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Gl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"04:25"),(0,e.createElement)("hr",null),Gl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Gl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Gl(").","jet-form-builder"),(0,e.createElement)("hr",null),Gl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toTime(false)"))}Dl.prototype=Object.create(gl.prototype);const ql=Dl,{__:Vl}=wp.i18n;function Jl(){gl.call(this),this.label=()=>Vl("subDay","jet-form-builder"),this.fullName=()=>"|subDay",this.docArgument=Number,this.isClientSide=!0,this.help=Vl("Subtracts the number of days by argument from a macro that returns a date or timestamp.","jet-form-builder")}Jl.prototype=Object.create(gl.prototype);const $l=Jl,{__:Ul}=wp.i18n;function Hl(){gl.call(this),this.label=()=>Ul("subMonth","jet-form-builder"),this.fullName=()=>"|subMonth",this.docArgument=Number,this.isClientSide=!0,this.help=Ul("Subtracts the number of months by argument from a macro that returns a date or timestamp.","jet-form-builder")}Hl.prototype=Object.create(gl.prototype);const Wl=Hl,{__:zl}=wp.i18n;function Yl(){gl.call(this),this.label=()=>zl("subYear","jet-form-builder"),this.fullName=()=>"|subYear",this.docArgument=Number,this.isClientSide=!0,this.help=zl("Subtracts the number of years by argument from a macro that returns a date or timestamp.","jet-form-builder")}Yl.prototype=Object.create(gl.prototype);const Kl=Yl,{__:Xl}=wp.i18n;function Zl(){gl.call(this),this.label=()=>Xl("toDayInMs","jet-form-builder"),this.fullName=()=>"|toDayInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Xl("Converts a number of days into milliseconds.","jet-form-builder"))}Zl.prototype=Object.create(gl.prototype);const Ql=Zl,{__:eo}=wp.i18n;function to(){gl.call(this),this.label=()=>eo("toHourInMs","jet-form-builder"),this.fullName=()=>"|toHourInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,eo("Converts a number of hours into milliseconds.","jet-form-builder"))}to.prototype=Object.create(gl.prototype);const no=to,{__:ro}=wp.i18n;function lo(){gl.call(this),this.label=()=>ro("toMinuteInMs","jet-form-builder"),this.fullName=()=>"|toMinuteInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,ro("Converts a number of minutes into milliseconds.","jet-form-builder"))}lo.prototype=Object.create(gl.prototype);const oo=lo,{__:ao}=wp.i18n;function io(){gl.call(this),this.label=()=>ao("toMonthInMs","jet-form-builder"),this.fullName=()=>"|toMonthInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,ao("Converts a number of months into milliseconds.","jet-form-builder"))}io.prototype=Object.create(gl.prototype);const so=io,{__:co}=wp.i18n;function uo(){gl.call(this),this.label=()=>co("toWeekInMs","jet-form-builder"),this.fullName=()=>"|toWeekInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,co("Converts a number of weeks into milliseconds.","jet-form-builder"))}uo.prototype=Object.create(gl.prototype);const mo=uo,{__:po}=wp.i18n;function fo(){gl.call(this),this.label=()=>po("toYearInMs","jet-form-builder"),this.fullName=()=>"|toYearInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,po("Converts a number of years into milliseconds.","jet-form-builder"))}fo.prototype=Object.create(gl.prototype);const ho=fo,{__:bo}=wp.i18n;function go(){gl.call(this),this.label=()=>bo("Timestamp","jet-form-builder"),this.fullName=()=>"|T",this.isClientSide=!0,this.help=bo("Returns the time stamp. Usually used in conjunction with Date & Datetime and Time Field.","jet-form-builder",'Example\nFor Date Field\n%date_field|T%\nResult if date_field is filled with value "2022-10-22"')}go.prototype=Object.create(gl.prototype);const yo=go,vo={macros:[new nl,new ol,new dl,new sl,new fl],filters:[new Fl,new yo,new Il,new wl,new Cl,new jl,new $l,new Wl,new Kl,new Rl,new Ll,new ql,new oo,new no,new Ql,new mo,new so,new ho]},wo={registerMacro:(e,t=!0)=>({type:Zr,items:e,isClient:t})},_o={getClientMacros:e=>e.macros.filter((function(e){return e.isClientSide})),getServerMacros:e=>e.macros.filter((function(e){return e.isServerSide})),getClientFilters:e=>e.filters.filter((function(e){return e.isClientSide})),getServerFilters:e=>e.filters.filter((function(e){return e.isServerSide}))},{createReduxStore:Eo}=wp.data,Co=Eo("jet-forms/macros",{reducer:function(e=vo,t){const n=Qr[t?.type];return n?n(e,t):e},actions:wo,selectors:_o}),ko="REGISTER",So={[ko](e,t){const{messages:n,ssr_callbacks:r,formats:l,rule_types:o}=t.items;return e.messages=JSON.parse(JSON.stringify(n)),e.ssrCallbacks=JSON.parse(JSON.stringify(r)),e.formats=JSON.parse(JSON.stringify(l)),e.ruleTypes=JSON.parse(JSON.stringify(o)),e}},jo={...So},{select:xo}=wp.data,{__:No}=wp.i18n,Fo={messages:[],ssrCallbacks:[],formats:[],ruleTypes:[],ruleReaders:{default(e){const t=xo("jet-forms/validation").getRule(e.type);if(!t)return"";let n=e?.field||e?.value||"";return n=Vr(n,"b")||"(no value)",[t.label,`${n}`].join(" ")},ssr:e=>[No("Function:","jet-form-builder"),e?.value].join(" ")}},To={register:e=>({type:ko,items:e})},Bo={...{getRule(e,t){const n=e.ruleTypes.findIndex((({value:e})=>e===t));return-1!==n&&e.ruleTypes[n]},readRule(e,t){var n;const{type:r=""}=t;if(!r)return"";const l=null!==(n=e.ruleReaders[r])&&void 0!==n&&n;return"function"==typeof l?l(t):e.ruleReaders.default(t)}}},{createReduxStore:Io}=wp.data,Ao=Io("jet-forms/validation",{reducer:function(e=Fo,t){const n=jo[t?.type];return n?n(e,t):e},actions:To,selectors:Bo}),Oo="SET_BLOCKS",Ro="SET_BLOCKS_FIRST",Mo="TOGGLE_EXECUTE",Po={...{[Oo](e,t){const n=[];for(const r in t.blockMap)t.blockMap.hasOwnProperty(r)&&!e.blockMap.hasOwnProperty(r)&&n.push(r);return{...e,blocks:t.blocks,blockMap:t.blockMap,recentlyAdded:n}},[Ro]:(e,t)=>({...e,blocks:t.blocks,blockMap:t.blockMap}),[Mo]:e=>({...e,executed:!0})}},Lo={blocks:[],blockMap:{},executed:!1,recentlyAdded:[],sanitizers:{name:[e=>e.replace(/[^\w\-]/gi,""),e=>"children"===e?"_"+e:e]}},{select:Go}=wp.data,Do=function(){const e=[],t={};return j(((n,r)=>{var l;if(!n?.name?.includes("jet-forms/"))return;const o=Go("core/blocks").getBlockType(n.name),a=o.jfbResolveBlock.call(n);if(o.hasOwnProperty("jfbGetFields")&&(a.fields=o.jfbGetFields.call(n)),!r?.name)return e.push(a),void(t[a.clientId]=a);const i=null!==(l=t[r?.clientId])&&void 0!==l&&l;i&&(Object.defineProperty(a,"parentBlock",{get:()=>i}),i.innerBlocks=i?.innerBlocks||[],i.innerBlocks.push(a),t[a.clientId]=a)})),{blocks:e,blockMap:t}},{select:qo,dispatch:Vo}=wp.data,Jo={setBlocks(e=null){null===e&&(e=Do());const t=qo(Ko).isExecuted();return t||Vo(Ko).toggleExecute(),{type:t?Oo:Ro,blocks:e.blocks,blockMap:e.blockMap}},toggleExecute:()=>({type:Mo})},$o={getBlocks:e=>e.blocks,getBlockMap:e=>e.blockMap,getFields(e,{withInner:t=!0,currentId:n=!1}){const r=[],l=e=>{for(const o of e)o.fields?.length&&o.clientId!==n&&r.push(...o.fields),t&&o.innerBlocks?.length&&l(o.innerBlocks)};return l(e.blocks),r},isExecuted:e=>e.executed,isRecentlyAdded:(e,t)=>-1!==e.recentlyAdded.indexOf(t),getUniqueNames(e,t){var n,r;const l=null!==(n=e.blockMap[t])&&void 0!==n&&n;if(!l)return{hasChanged:!1};let o=!1;const a=null!==(r=l?.fields?.map?.((({value:e})=>e)))&&void 0!==r?r:[],i=l.hasOwnProperty("parentBlock")?l.parentBlock.innerBlocks:e.blocks,s=e=>{for(const t of e){const n=a.indexOf(t.value);-1!==n&&("field_name"!==t.value?(a[n]=`${a[n]}_copy`,o=!0,s(e)):o=!0)}};for(const e of i){var c;t!==e.clientId&&s(null!==(c=e?.fields)&&void 0!==c?c:[])}return{hasChanged:o,names:a.join("|")}},getSanitizedAttributes(e,t,{name:n}={}){for(const o in t){var r,l;if(!t.hasOwnProperty(o))continue;const a=null!==(r=null!==(l=e.sanitizers?.[n]?.[o])&&void 0!==l?l:e.sanitizers?.[o])&&void 0!==r&&r;if(a?.length)for(const e of a)"function"==typeof e&&(t[o]=e(t[o]))}return t},isUniqueName(e,t){const{hasChanged:n}=$o.getUniqueNames(e,t);return!n},getBlock:(e,t)=>e.blocks.find((({name:e,clientId:n})=>[e,n].includes(t))),getBlockByName(e,t){if(!t)return!1;const n=e=>{for(const r of e){if(r.fields.some((({value:e})=>e===t)))return r;r.innerBlocks?.length&&n(r.innerBlocks)}};return n(e.blocks),!1},getBlockNameByName(e,t){var n;const r=$o.getBlockByName(e,t);return null!==(n=r?.name)&&void 0!==n?n:""},getBlockById(e,t){var n;return null!==(n=e.blockMap[t])&&void 0!==n&&n}},Uo={...$o},{createReduxStore:Ho,dispatch:Wo,select:zo,subscribe:Yo}=wp.data,Ko="jet-forms/fields";let Xo,Zo;Yo((()=>{const{debounce:e}=window._,{setBlocks:t}=Wo(Ko);e((()=>{const e=zo("core/block-editor").getGlobalBlockCount();if(Xo!==e)return Xo=e,void t();const n=Do(),r=JSON.stringify(n.blocks);r!==Zo&&(Zo=r,t(n))}),100)()}));const Qo=Ho(Ko,{reducer:function(e=Lo,t){const n=Po[t?.type];return n?n(e,t):e},actions:Jo,selectors:Uo});n(4180);const{register:ea,dispatch:ta}=wp.data,{addAction:na}=wp.hooks;[Cr,Or,Xr,Co,Ao,Qo].forEach(ea),ta("jet-forms/events").register(window.jetFormEvents.types),ta("jet-forms/events").lockActions(),ta("jet-forms/validation").register(window.jetFormValidation),na("jet.fb.change.blockConditions.renderState","jet-form-builder/events",(function(e){ta("jet-forms/events").clearDynamicEvents();const t=e.map((({value:e})=>({value:e="ON."+e,label:e,isDynamic:!0})));ta("jet-forms/events").register(t)})),ta("jet-forms/block-conditions").register(window.jetFormBlockConditions);const{createContext:ra}=wp.element,la=ra(!1),{createContext:oa}=wp.element,aa=oa({currentItem:{},changeCurrentItem:()=>{},currentIndex:-1}),ia=(0,o.createContext)({isSupported:e=>!1,render:({children:e})=>e}),sa=(0,o.createContext)({isSupported:e=>!1,render:({currentItem:e,index:t})=>null}),ca=(0,o.createContext)({edit:e=>!0,move:e=>!0,clone:e=>!0,delete:e=>!0}),{createContext:ua}=wp.element,da=ua({}),{ToggleControl:ma}=wp.components,{__:pa}=wp.i18n,{useState:fa}=wp.element,{useContext:ha}=wp.element,ba=function(e){if(void 0===e)return null;const t=ha(la),n=function({oldIndex:t,newIndex:n}){e((e=>{const r=JSON.parse(JSON.stringify(e));return[r[n],r[t]]=[r[t],r[n]],r}))};return{changeCurrentItem:function(t,n){e((e=>{const r=JSON.parse(JSON.stringify(e));return r[n]={...e[n],...t},r}))},toggleVisible:function(t){e((e=>{const n=JSON.parse(JSON.stringify(e));return n[t].__visible=!n[t].__visible,n}))},moveDown:function(e){n({oldIndex:e,newIndex:e+1})},moveUp:function(e){n({oldIndex:e,newIndex:e-1})},cloneItem:function(t){e((e=>{const n=JSON.parse(JSON.stringify(e)),[r,l]=[n.slice(0,t+1),n.slice(t+1)];return[...r,n[t],...l]}))},addNewItem:function(t){e((e=>[...e,{__visible:!0,...t}]))},removeOption:function(n){t&&!(e=>confirm((0,d.sprintf)((0,d.__)("Are you sure you want to remove item %d?","jet-form-builder"),e+1)))(n)||e((e=>{const t=JSON.parse(JSON.stringify(e));return t.splice(n,1),t}))}}},{createContext:ga}=wp.element,ya=ga(!1),{Button:va}=wp.components,{useContext:wa}=wp.element,_a=function(t){var n;const{item:r,onSetState:l,functions:o,children:a}=t,{addNewItem:i}=null!==(n=null!=o?o:ba(l))&&void 0!==n?n:wa(ya);return(0,e.createElement)(va,{icon:"plus-alt2",isSecondary:!0,onClick:()=>i(r)},a)};let{Card:Ea,Button:Ca,CardHeader:ka,CardBody:Sa,ToggleGroupControl:ja,__experimentalToggleGroupControl:xa}=wp.components;const{useContext:Na}=wp.element,{__:Fa}=wp.i18n;ja=ja||xa;const Ta=function(t){var n;const{items:r,onSetState:l,functions:o,children:a}=t,{cloneItem:i,moveUp:s,moveDown:c,toggleVisible:u,changeCurrentItem:d,removeOption:m}=null!==(n=null!=o?o:ba(l))&&void 0!==n?n:Na(ya),{isSupported:p,render:f}=Na(sa),{edit:h,move:b,clone:g,delete:y}=Na(ca),v=({currentItem:t,index:n})=>p(t)?(0,e.createElement)(f,{currentItem:t,index:n}):(0,e.createElement)("span",{className:"repeater-item-title"},`#${n+1}`);return(0,e.createElement)("div",{className:"jet-form-builder__repeater-component",key:"jet-form-builder-repeater"},r.map(((t,n)=>(0,e.createElement)(Ea,{size:"small",elevation:2,className:"jet-form-builder__repeater-component-item",key:`jet-form-builder__repeater-component-item-${n}`},(0,e.createElement)(ka,{className:"repeater__item__header"},(0,e.createElement)("div",{className:"repeater-item__left-heading"},(0,e.createElement)(ja,{className:"repeater-action-buttons jet-fb-toggle-group-control",hideLabelFromVision:!0},(!h||h(t))&&(0,e.createElement)(Ca,{variant:"tertiary",isSmall:!0,icon:t.__visible?"no-alt":"edit",onClick:()=>u(n),className:"repeater-action-button jet-fb-is-thick"}),(!b||b(t))&&(0,e.createElement)(Ca,{variant:"tertiary",isSmall:!0,isSecondary:!0,disabled:!Boolean(n),icon:"arrow-up-alt2",onClick:()=>s(n),className:"repeater-action-button jet-fb-is-thick"}),(!b||b(t))&&(0,e.createElement)(Ca,{variant:"tertiary",isSmall:!0,isSecondary:!0,disabled:!(nc(n),className:"repeater-action-button jet-fb-is-thick"})),(0,e.createElement)(v,{currentItem:t,index:n})),(0,e.createElement)(ja,{className:"jet-fb-toggle-group-control",hideLabelFromVision:!0},(!g||g(t))&&(0,e.createElement)(Ca,{variant:"tertiary",isSmall:!0,isSecondary:!0,onClick:()=>i(n),className:"jet-fb-is-thick",icon:"admin-page"}),(!y||y(t))&&(0,e.createElement)(zt,{icon:"trash",isDestructive:!0},(0,e.createElement)(Jt.Consumer,null,(({setShowPopover:t})=>(0,e.createElement)("div",{style:{padding:"0.5em",width:"max-content"}},(0,e.createElement)("span",null,Fa("Delete this item?","jet-form-builder"))," ",(0,e.createElement)(Ca,{isLink:!0,isDestructive:!0,onClick:()=>m(n)},Fa("Yes","jet-form-builder"))," / ",(0,e.createElement)(Ca,{isLink:!0,onClick:()=>t(!1)},Fa("No","jet-form-builder")))))))),t.__visible&&(0,e.createElement)(Sa,{className:"repeater-item__content",key:`jet-form-builder__card-body-${n}`},(()=>{const r={currentItem:t,changeCurrentItem:e=>d(e,n),currentIndex:n};return(0,e.createElement)(aa.Provider,{value:r},!a&&"Set up your Repeater Template, please.","function"==typeof a?a(r):a)})())))))},{__experimentalToggleGroupControl:Ba,__experimentalToggleGroupControlOption:Ia}=wp.components,{__:Aa}=wp.i18n;let{formats:Oa}=window.jetFormValidation;const Ra=window.jfb.data,{messages:Ma}=window.jetFormValidation,Pa=function(e){return Ma.find((({id:t})=>e===t))},{TextControl:La}=wp.components,Ga=ke((0,o.forwardRef)((function({icon:e,size:t=24,...n},r){return(0,o.cloneElement)(e,{width:t,height:t,...n,ref:r})})))({name:"StyledIcon",class:"sfqmk5y",propsAsIs:!0});n(483);const{createContext:Da}=wp.element,qa=Da({FieldSelect:null,property:""}),Va=function({state:t,children:n}){const r=ba(t);return(0,e.createElement)(ya.Provider,{value:r},n)},Ja=window.wp.apiFetch;var $a=n.n(Ja);const{rest_add_state:Ua,rest_delete_state:Ha}=window.jetFormBlockConditions,{Fill:Wa}=c,za=({setShowModal:t,changeCurrentItem:n,currentItem:r})=>{var l;const[a,i]=(0,o.useState)(!1),[s,c]=(0,o.useState)({}),[m,p]=(0,o.useState)("");let f=[...null!==(l=r.render_state)&&void 0!==l?l:[]];const{addRenderState:b,deleteRenderStates:g}=(0,pe.useDispatch)("jet-forms/block-conditions"),y=(0,pe.useSelect)((e=>e("jet-forms/block-conditions").getCustomRenderStates()),[a,s]);return(0,e.createElement)(h,{title:(0,d.__)("Register custom render state","jet-form-builder"),onRequestClose:()=>t(!1),classNames:["width-45"]},(0,e.createElement)("div",{className:"jet-fb with-button"},(0,e.createElement)(u.TextControl,{value:m,onChange:e=>p(e),placeholder:(0,d.__)("Set your custom state name","jet-form-builder")}),(0,e.createElement)(u.Button,{variant:"secondary",onClick:()=>{i(!0),Ua.data={value:m},$a()(Ua).then((e=>{var r;r=e.state,b(r),f.push(r.value),n({render_state:f}),i(!1),t(!1)})).catch((e=>{console.error(e),i(!1)}))},disabled:a,isBusy:a,style:{padding:"7px 12px",height:"unset"}},(0,d.__)("Add","jet-form-builder"))),Boolean(y?.length)&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",{className:"jet-fb flex mb-05-em"},(0,d.__)("Manage your custom states:","jet-form-builder")),(0,e.createElement)("div",{className:"jet-fb-buttons-flex"},y.map((t=>{var r;return(0,e.createElement)(u.Button,{key:t.value,icon:"no-alt",iconPosition:"right",onClick:()=>{return e=t.value,Ha.data={list:[e]},c((t=>({...t,[e]:!0}))),void $a()(Ha).then((()=>{(e=>{g(e),f=f.filter((t=>t!==e)),n({render_state:f})})(e)})).catch(console.error).finally((()=>{c((t=>({...t,[e]:!1})))}));var e},isBusy:null!==(r=s[t.value])&&void 0!==r&&r},t.label)})))),(0,e.createElement)(Wa,null,(0,e.createElement)("span",null)))},{Button:Ya,BaseControl:Ka,FormTokenField:Xa}=wp.components,{__:Za}=wp.i18n,{useState:Qa}=wp.element,{useSelect:ei}=wp.data,ti=({currentItem:t,changeCurrentItem:n})=>{const[r,l]=Qa(!1),o=ei((e=>y(e("jet-forms/block-conditions").getRenderStates(),"value")),[r]);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ka,{label:Za("Render State","jet-form-builder"),className:"control-flex"},(0,e.createElement)("div",null,(0,e.createElement)("label",{className:"jet-fb label mb-05-em"},Za("Add render state","jet-form-builder")),(0,e.createElement)("div",{className:"jet-fb with-button clear-label"},(0,e.createElement)(Xa,{value:t.render_state,suggestions:o,onChange:e=>n({render_state:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0}),(0,e.createElement)(Ya,{label:Za("New render state","jet-form-builder"),variant:"secondary",icon:"plus-alt2",onClick:()=>l(!0)})))),r&&(0,e.createElement)(za,{setShowModal:l,changeCurrentItem:n,currentItem:t}))},ni=function({children:t,value:n,label:r,onChangePreset:l=!1,onChangeMacros:o=!1,macroWithCurrent:a=!1}){const i=(0,lr.useInstanceId)(u.FlexItem,"jfb-AdvancedModalControl");return(0,e.createElement)("div",{className:"components-base-control"},(0,e.createElement)(u.Flex,{align:"flex-start",className:"components-base-control__field"},(0,e.createElement)(u.FlexItem,{isBlock:!0},(0,e.createElement)(u.Flex,{align:"center",justify:"flex-start"},(0,e.createElement)("label",{htmlFor:i,className:"jet-fb label"},r),!1!==l&&(0,e.createElement)(qt,{value:n,onChange:l}),!1!==o&&(0,e.createElement)(vn,{onClick:o,withCurrent:a}))),(0,e.createElement)(u.FlexItem,{isBlock:!0,style:{flex:3,marginLeft:"unset"}},"function"==typeof t?t({instanceId:i}):t)))},{TextareaControl:ri,withFilters:li}=wp.components,{__:oi}=wp.i18n,ai=li("jet.fb.block.conditions.options")((t=>{const{currentItem:n,changeCurrentItem:r}=t,l=de();return["empty","not_empty"].includes(n.operator)?null:"render_state"===n.operator?(0,e.createElement)(ti,{key:l("RenderStateOptions"),changeCurrentItem:r,currentItem:n}):(0,e.createElement)(Tn,null,(0,e.createElement)(ni,{value:n.value,label:oi("Value to compare","jet-form-builder"),onChangePreset:e=>r({value:e}),onChangeMacros:e=>{var t;return r({value:(null!==(t=n.value)&&void 0!==t?t:"")+e})}},(({instanceId:t})=>(0,e.createElement)(ri,{id:t,value:n.value,onChange:e=>r({value:e})}))))})),{SelectControl:ii,withFilters:si}=wp.components,{__:ci}=wp.i18n,ui=si("jet.fb.block.conditions.options")((t=>{const{currentItem:n,changeCurrentItem:r}=t,l=(0,hn.useFields)({placeholder:"--"});return"render_state"===n.operator?null:(0,e.createElement)(ii,{label:ci("Field","jet-form-builder"),labelPosition:"side",value:n.field,options:l,onChange:e=>{r({field:e})}})})),{useContext:di}=wp.element,{SelectControl:mi}=wp.components,{__:pi}=wp.i18n,fi=function(){const{currentItem:t,changeCurrentItem:n}=di(aa),r=de(),{operators:l}=ce();return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ui,{currentItem:t,changeCurrentItem:n}),(0,e.createElement)(mi,{key:r("SelectControl-operator"),label:pi("Operator","jet-form-builder"),labelPosition:"side",value:t.operator,options:l,onChange:e=>n({operator:e})}),(0,e.createElement)(ai,{currentItem:t,changeCurrentItem:n}))},{select:hi}=wp.data,bi=function(e){return hi("jet-forms/block-conditions").readCondition(e)},{__:gi}=wp.i18n,yi=function({children:t}){return(0,e.createElement)(sa.Provider,{value:{isSupported:()=>!0,render:({currentItem:t})=>(0,e.createElement)("span",{className:"repeater-item-title",dangerouslySetInnerHTML:{__html:t?.or_operator?gi("OR","jet-form-builder"):bi(t)}})}},(0,e.createElement)(ca.Provider,{value:{edit:e=>!e.or_operator}},t))},{__:vi}=wp.i18n,{useState:wi,useContext:_i,Fragment:Ei,useEffect:Ci,useRef:ki}=wp.element,{SelectControl:Si,TextareaControl:ji,FlexItem:xi,Flex:Ni,ToggleControl:Fi}=wp.components,Ti=[{key:"commas",render:()=>(0,e.createElement)("li",null,vi("If this field supports multiple values, you can separate them with commas. If a string value is expected, wrap it in single quotes like '%value_field%'.","jet-form-builder"))}],Bi=[{value:"on_change",label:vi("On change conditions result","jet-form-builder"),help:vi("The value will be applied if condition check-ups return a result different from the first check-up's cached value","jet-form-builder")},{value:"once",label:vi("Once","jet-form-builder"),help:vi("The value will be applied only the first time the condition is matched","jet-form-builder")},{value:"always",label:vi("Always","jet-form-builder"),help:vi("The value will be applied every time the condition is matched","jet-form-builder")}],Ii=e=>Bi.find((t=>t.value===(null!=e?e:"on_change"))).help,Ai=function(){var t,n,r,l;const{current:o,update:a}=_i(da),[i,s]=wi((()=>o)),c=ki(null),[u,d]=wi((()=>Ii(i.frequency)));Ci((()=>{d(Ii(i.frequency))}),[i.frequency]);const m=e=>{s((t=>({...t,...e})))};return W((()=>a(i))),(0,e.createElement)(Ei,null,(0,e.createElement)(Ni,{align:"flex-start"},(0,e.createElement)(xi,{isBlock:!0},(0,e.createElement)(Ni,{align:"center",justify:"flex-start"},(0,e.createElement)("span",{className:"jet-fb label"},vi("Value to set","jet-form-builder")),(0,e.createElement)(qt,{value:i.to_set,onChange:e=>m({to_set:e})}),(0,e.createElement)(Tn,{withThis:!0},(0,e.createElement)(vn,{onClick:e=>(e=>{const t=c.current;if(t){const n=t.selectionStart,r=t.selectionEnd,l=i.to_set||"",o=l.slice(0,n)+e+l.slice(r);m({to_set:`${o}`}),setTimeout((()=>{t.focus(),t.selectionStart=t.selectionEnd=n+e.length}),0)}})(e)}))),(0,e.createElement)(ut,null,(0,e.createElement)("ul",null,Ti.map((t=>(0,e.createElement)(Ei,{key:t.key},t.render())))))),(0,e.createElement)(xi,{isBlock:!0,style:{flex:3,marginLeft:"unset"}},(0,e.createElement)(ji,{className:"jet-control-clear",hideLabelFromVision:!0,value:null!==(t=i.to_set)&&void 0!==t?t:"",onChange:e=>m({to_set:e}),ref:c}))),(0,e.createElement)(Si,{options:Bi,value:null!==(n=i.frequency)&&void 0!==n?n:"on_change",label:vi("Apply type","jet-form-builder"),labelPosition:"side",onChange:e=>m({frequency:e}),help:u}),(0,e.createElement)(Va,{state:e=>{var t;m({conditions:"function"==typeof e?e(null!==(t=i.conditions)&&void 0!==t?t:[]):e})}},(0,e.createElement)(yi,null,(0,e.createElement)(Ta,{items:null!==(r=i.conditions)&&void 0!==r?r:[]},(0,e.createElement)(fi,null))),(0,e.createElement)("div",{className:"jet-fb flex jc-space-between ai-center"},(0,e.createElement)(_a,null,vi("Add New Condition","jet-form-builder")),(0,e.createElement)(Fi,{className:"jet-fb m-unset clear-control",label:vi("Set value only if field is empty","jet-form-builder"),checked:null!==(l=i.set_on_empty)&&void 0!==l&&l,onChange:e=>m({set_on_empty:e})}))))},{__:Oi}=wp.i18n,{Children:Ri,cloneElement:Mi}=wp.element,Pi=function({conditions:t,showWarning:n=!1}){let r=[],l="";return Boolean(t?.length)&&(l=bi(t[0]),r=t.filter(((e,t)=>0!==t)).map(((t,n)=>(0,e.createElement)("span",{key:n,"data-title":Oi("And","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:bi(t)}})))),l?(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Oi("If","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:l}}),Ri.map(r,Mi)):n&&(0,e.createElement)("span",{"data-title":Oi("The condition is not fully configured.","jet-form-builder")})},Li=function({isHover:t=!1,children:n}){return(0,e.createElement)("div",{className:["jet-fb",t?"show":"hide","p-absolute","wh-100","flex-center","gap-05em"].join(" "),style:{backgroundColor:"#ffffffcc",transition:"0.3s"}},n)},Gi=function({children:t}){return(0,e.createElement)("div",{className:["jet-fb","flex","flex-dir-column","container","gap-1em"].join(" ")},t)},{__:Di}=wp.i18n,{useState:qi}=wp.element,{Button:Vi}=wp.components,Ji=function({current:t,update:n,isOpenModal:r,setOpenModal:l}){const[o,a]=qi(!1),[i,s]=qi(!1),c=1>=Object.keys(t)?.length;return(0,e.createElement)(da.Provider,{value:{update:e=>{n((n=>{const r=JSON.parse(JSON.stringify(n.groups));for(const n in r)r.hasOwnProperty(n)&&t.id===r[n].id&&(r[n]={...r[n],...e});return{groups:r}}))},current:t}},(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>s(!0),onFocus:()=>s(!0),onMouseOut:()=>s(!1),onBlur:()=>s(!1)},(0,e.createElement)(Li,{isHover:i},(0,e.createElement)(Vi,{isSmall:!0,isSecondary:!0,icon:o?"no-alt":"edit",onClick:()=>a((e=>!e))},Di("Edit","jet-form-builder")),(0,e.createElement)(Vi,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{n((e=>({groups:JSON.parse(JSON.stringify(e.groups)).filter((({id:e})=>e!==t.id))})))}},Di("Delete","jet-form-builder"))),(0,e.createElement)(Gi,null,c?(0,e.createElement)("div",{"data-title":Di("This value item is empty","jet-form-builder")}):(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Di("Set","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:Vr(t.to_set)}}),(0,e.createElement)(Pi,{conditions:t?.conditions})))),(o||r===t.id)&&(0,e.createElement)(h,{classNames:["width-60"],onRequestClose:()=>{a(!1),l(!1)},title:Di("Edit Dynamic Value","jet-form-builder")},(0,e.createElement)(Ai,null)))},$i=function({children:t,...n}){return(0,e.createElement)("div",{className:"jet-fb flex flex-dir-column gap-default",style:{marginBottom:"1em"},...n},t)},{__:Ui}=wp.i18n,{useState:Hi}=wp.element,{Button:Wi}=wp.components,zi=function(){var t,n;const[r,l]=fe(),o=de(),a=null!==(t=r.value)&&void 0!==t?t:{},i=null!==(n=a.groups)&&void 0!==n?n:[],[s,c]=Hi(!1);if(!he("value"))return null;const u=i.filter(((e,t)=>0!==t)),d=e=>{l({...r,value:{...a,..."function"==typeof e?e(a):e}})};return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ut,null,Ui("Or use a condition-dependent value","jet-form-builder")+" ",(0,e.createElement)(Wi,{isLink:!0,onClick:()=>{},label:Ui("Former Set Value functionality, moved from the Conditional Block","jet-form-builder"),showTooltip:!0},"(?)")),Boolean(i.length)?(0,e.createElement)($i,null,(0,e.createElement)(Ji,{key:o(i[0].id),current:i[0],update:d,isOpenModal:s,setOpenModal:c}),Boolean(u.length)&&u.map((t=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",null,Ui("OR","jet-form-builder")),(0,e.createElement)(Ji,{key:o(t.id),current:t,update:d,isOpenModal:s,setOpenModal:c}))))):null,(0,e.createElement)(Wi,{icon:"plus-alt2",isSecondary:!0,onClick:()=>{const e=k.getRandomID();d({groups:[...i,{id:e,conditions:[{__visible:!0}]}]}),c(e)}},Ui("Add Dynamic Value","jet-form-builder")))},{Button:Yi}=wp.components,{useContext:Ki}=wp.element,{SelectControl:Xi}=wp.components,{useContext:Zi,useMemo:Qi}=wp.element,{__:es}=wp.i18n,ts=function(){const{currentItem:t,changeCurrentItem:n}=Zi(aa),r=Qi((()=>O(es("Custom value","jet-form-builder"))),[]);return(0,e.createElement)(Xi,{labelPosition:"side",options:r,label:es("Choose field","jet-form-builder"),value:t.field,onChange:e=>n({field:e})})},{SelectControl:ns,TextareaControl:rs,TextControl:ls,withFilters:os}=wp.components,{useContext:as,useState:is,useEffect:ss}=wp.element,{__:cs}=wp.i18n,{addFilter:us}=wp.hooks,{rule_types:ds,ssr_callbacks:ms}=window.jetFormValidation,ps=ms.map((({value:e})=>e));function fs(e){var t;const n=ds.findIndex((({value:t})=>t===e)),r=cs("Enter value","jet-form-builder");return-1===n?r:null!==(t=ds[n]?.control_label)&&void 0!==t?t:r}us("jet.fb.advanced.rule.controls","jet-form-builder",(t=>n=>{const{currentItem:r,changeCurrentItem:l}=n,[o,a]=is(!1),[i]=(0,K.useActions)(),s=i.some((e=>"save_record"===e.type&&(void 0===e.is_execute||!0===e.is_execute)))?"success":"error";if("ssr"!==r.type)return(0,e.createElement)(t,{...n});const c=r.value||"custom_jfb_field_validation";return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ns,{labelPosition:"side",options:k.withPlaceholder(ms,cs("Custom function","jet-form-builder")),label:cs("Choose callback","jet-form-builder"),value:r.value,onChange:e=>l({value:e})}),"is_field_value_unique"===r.value&&(0,e.createElement)(u.Notice,{status:s,isDismissible:!1},cs("This callback requires the Save Form Record action to work correctly.","jet-form-builder")),"is_user_password_valid"===r.value&&(0,e.createElement)(u.Notice,{status:"success",isDismissible:!1},cs("Works only for logged users.","jet-form-builder")),!ps.includes(r.value)&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ls,{label:cs("Function name","jet-form-builder"),value:r.value,onChange:e=>l({value:e})}),(0,e.createElement)(ut,null,cs("Example of registering a function below.","jet-form-builder")+" ",(0,e.createElement)("a",{href:"javascript:void(0)",onClick:()=>a((e=>!e))},cs(o?"Hide":"Show","jet-form-builder"))),o&&(0,e.createElement)("pre",null,`/**\n * To get all the values of the fields in the form, you can use the expression:\n * jet_fb_request_handler()->get_request() or $context->get_request()\n *\n * If the field is located in the middle of the repeater, then only\n * jet_fb_request_handler()->get_request(), but $context->get_request() \n * will return the values of all fields of the current repeater element\n *\n * @param $value mixed\n * @param $context \\Jet_Form_Builder\\Request\\Parser_Context\n *\n * @return bool\n */\nfunction ${c}( $value, $context ): bool {\n\t// your logic\n\treturn true;\n}`)))}));const hs=os("jet.fb.advanced.rule.controls")((function({currentItem:t,changeCurrentItem:n}){const[r,l]=is((()=>fs(t.type)));switch(ss((()=>{l(fs(t.type))}),[t.type]),t.type){case"equal":case"contain":case"contain_not":case"regexp":case"regexp_not":return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ts,null),!Boolean(t.field)&&(0,e.createElement)(ni,{value:t.value,label:r,onChangePreset:e=>n({value:e}),onChangeMacros:e=>{var r;return n({value:(null!==(r=t.value)&&void 0!==r?r:"")+e})}},(({instanceId:r})=>(0,e.createElement)(rs,{id:r,value:t.value,onChange:e=>n({value:e})}))));default:return null}})),bs=function(){const{currentItem:t,changeCurrentItem:n}=as(aa);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ns,{labelPosition:"side",options:k.withPlaceholder(ds),label:cs("Rule type","jet-form-builder"),value:t.type,onChange:e=>n({type:e})}),(0,e.createElement)(hs,{currentItem:t,changeCurrentItem:n}),(0,e.createElement)(rs,{label:cs("Error message","jet-form-builder"),value:t.message,onChange:e=>n({message:e})}))},{select:gs}=wp.data,ys=function(e){return gs("jet-forms/validation").readRule(e)},{useState:vs}=wp.element,{__:ws}=wp.i18n,_s=function(){const[t,n]=fe(),[r,l]=vs((()=>{var e;return null!==(e=t.validation?.rules)&&void 0!==e?e:[]}));return W((()=>{n((e=>({...e,validation:{...t.validation,rules:r}})))})),(0,e.createElement)(Va,{state:l},(0,e.createElement)(sa.Provider,{value:{isSupported:()=>!0,render:({currentItem:t})=>(0,e.createElement)("span",{className:"repeater-item-title",dangerouslySetInnerHTML:{__html:ys(t)}})}},(0,e.createElement)(Ta,{items:r},(0,e.createElement)(bs,null))),(0,e.createElement)(_a,null,ws("Add Rule","jet-form-builder")))},{createContext:Es}=wp.element,Cs=Es({showModal:!1,setShowModal:()=>{}}),{useContext:ks,useState:Ss}=wp.element,{__:js}=wp.i18n,{Button:xs}=wp.components,Ns=function(){const{setShowModal:t}=ks(Cs),[n,r]=fe(),[l,o]=Ss(!1);return(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>o(!0),onFocus:()=>o(!0),onMouseOut:()=>o(!1),onBlur:()=>o(!1)},(0,e.createElement)(Li,{isHover:l},(0,e.createElement)(xs,{isSmall:!0,isSecondary:!0,icon:"plus-alt2",onClick:()=>{r({validation:{...n.validation,rules:[{__visible:!0}]}}),t((e=>!e))}},js("Add new","jet-form-builder"))),(0,e.createElement)(Gi,null,(0,e.createElement)("span",{"data-title":js("You have no rules for this field.","jet-form-builder")}),(0,e.createElement)("span",{"data-title":js("Please click here to add new.","jet-form-builder")})))},{__:Fs}=wp.i18n,Ts=function({rule:t}){return t.type?(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Fs("Rule:","jet-form-builder"),dangerouslySetInnerHTML:{__html:ys(t)}}),Boolean(t.message)&&(0,e.createElement)("span",{"data-title":Fs("Message:","jet-form-builder"),dangerouslySetInnerHTML:{__html:t.message}})):(0,e.createElement)("span",{"data-title":Fs("The rule is not fully configured.","jet-form-builder")})},{useContext:Bs,useState:Is}=wp.element,{__:As}=wp.i18n,{Button:Os}=wp.components,Rs=function({rule:t,index:n=0}){const{setShowModal:r}=Bs(Cs),[l,o]=fe(),[a,i]=Is(!1);return(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>i(!0),onFocus:()=>i(!0),onMouseOut:()=>i(!1),onBlur:()=>i(!1)},(0,e.createElement)(Li,{isHover:a},(0,e.createElement)(Os,{isSmall:!0,isSecondary:!0,icon:"edit",onClick:()=>{o({validation:{...l.validation,rules:l.validation.rules.map(((e,t)=>(e.__visible=n===t,e)))}}),r((e=>!e))}},As("Edit","jet-form-builder")),(0,e.createElement)(Os,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{o({validation:{...l.validation,rules:l.validation.rules.filter(((e,t)=>t!==n))}})}},As("Delete","jet-form-builder"))),(0,e.createElement)(Gi,null,(0,e.createElement)(Ts,{rule:t})))},{__:Ms}=wp.i18n,{Children:Ps,cloneElement:Ls}=wp.element;const Gs=function(){const[t]=fe();return t?.validation?.rules?.length?(0,e.createElement)($i,null,Ps.map(function(t){const n=t.filter(((e,t)=>0!==t));return[(0,e.createElement)(Rs,{rule:t[0],key:"first_item"}),...n.map(((t,n)=>((t,n)=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",null,Ms("AND","jet-form-builder")),(0,e.createElement)(Rs,{rule:t,index:n})))(t,n+1)))]}(t.validation.rules),Ls)):(0,e.createElement)(Ns,null)},{useState:Ds}=wp.element,{__:qs}=wp.i18n,{useBlockProps:Vs}=wp.blockEditor,{TextControl:Js,SelectControl:$s,ToggleControl:Us,BaseControl:Hs,__experimentalNumberControl:Ws}=wp.components;let{NumberControl:zs}=wp.components;void 0===zs&&(zs=Ws);const{FormToggle:Ys,BaseControl:Ks,Flex:Xs}=wp.components,{useInstanceId:Zs}=wp.compose,{useBlockProps:Qs}=wp.blockEditor,{useEffect:ec}=wp.element,{useSelect:tc}=wp.data,{useBlockProps:nc}=wp.blockEditor,{useSelect:rc}=wp.data,{CustomSelectControl:lc,Icon:oc}=wp.components,{useBlockEditContext:ac}=wp.blockEditor,{Children:ic,cloneElement:sc,useContext:cc}=wp.element,{useSelect:uc}=wp.data,{useBlockEditContext:dc}=wp.blockEditor;let{__experimentalToggleGroupControl:mc,__experimentalToggleGroupControlOptionIcon:pc,__experimentalToolbarContext:fc,ToggleGroupControl:hc,ToggleGroupControlOptionIcon:bc,ToolbarItem:gc,ToolbarGroup:yc,ToolbarContext:vc}=wp.components;function wc({value:t}){const{name:n}=dc(),r=cc(vc),[,l]=fe(),{variations:o,components:a}=uc((t=>{const{getBlockVariations:l}=t("core/blocks"),o=l(n,"block");return{variations:o,components:o.map((t=>{var n;return(null!==(n=r?.currentId)&&void 0!==n?n:r?.baseId)?(0,e.createElement)(gc,{key:t.name,as:bc,value:t.name,label:t.title,icon:t.icon}):(0,e.createElement)(bc,{key:t.name,value:t.name,label:t.title,icon:t.icon})}))}}),[]);return o.length?(0,e.createElement)("div",{className:"jfb-variations-toolbar-toggle"},(0,e.createElement)(hc,{hideLabelFromVision:!0,onChange:e=>l({...o.find((({name:t})=>t===e)).attributes}),value:t,isBlock:!0},ic.map(a,sc))):null}hc=hc||mc,bc=bc||pc,vc=vc||fc;const{useSelect:_c}=wp.data,{useBlockEditContext:Ec}=wp.blockEditor,{get:Cc}=window._,{useBlockProps:kc,RichText:Sc}=wp.blockEditor,{Button:jc}=wp.components,{createContext:xc}=wp.element,Nc=xc({}),{useContext:Fc}=wp.element,{useState:Tc}=wp.element,{get:Bc}=window._,{useSelect:Ic,useDispatch:Ac}=wp.data;var Oc,Rc,Mc;window.JetFBComponents={...null!==(Oc=window?.JetFBComponents)&&void 0!==Oc?Oc:{},BaseLabel:_n,ActionFieldsMap:function({fields:t=[],label:n="[Empty label]",children:a=null,plainHelp:i="",customHelp:s=!1}){return(0,e.createElement)(l.RowControl,{align:"flex-start"},(0,e.createElement)(l.Label,null,n),(0,e.createElement)(l.RowControlEnd,null,s&&"function"==typeof s&&s(),Boolean(i.length)&&(0,e.createElement)("span",{className:"description-controls"},i),t.map((([t,n],l)=>(0,e.createElement)(o.Fragment,{key:`field_in_map_${t+l}`},(0,e.createElement)(r.Provider,{value:{name:t,data:n,index:l}},"function"==typeof a?a({fieldId:t,fieldData:n,index:l}):a))))))},ActionModal:h,ActionModalContext:i,SafeDeleteContext:la,RepeaterItemContext:aa,RepeaterBodyContext:ia,RepeaterHeadContext:sa,RepeaterButtonsContext:ca,ActionFieldsMapContext:r,CurrentPropertyMapContext:qa,BlockValueItemContext:da,DynamicPropertySelect:function({dynamic:t=[],parseValue:n=null,children:a=null,properties:i=null}){const{source:s,settings:c,setMapField:u}=(0,o.useContext)(K.CurrentActionEditContext);i=null!=i?i:s.properties;const{name:d,index:m}=(0,o.useContext)(r),{fields_map:p={}}=c;function f(e){var r;for(const t of i)if(e===t.value)return e;return n?n(e):null!==(r=t[0])&&void 0!==r?r:""}const[h,b]=(0,o.useState)((()=>{var e;return f(null!==(e=p[d])&&void 0!==e?e:"")})),g=(0,e.createElement)(l.StyledSelectControl,{key:d+m,value:h,options:i,help:(()=>{var e;const t=i.find((({value:e})=>e===h));return null!==(e=t?.help)&&void 0!==e?e:""})(),onChange:e=>{const n=f(e);b(n),u({nameField:d,value:t.includes(e)?"":e})}});return(0,e.createElement)(qa.Provider,{value:{FieldSelect:g,property:h}},a&&a,!a&&g)},SafeDeleteToggle:function(t){const[n,r]=fa(!0);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ma,{label:pa("Safe deleting","jet-form-builder"),checked:n,onChange:r}),(0,e.createElement)(la.Provider,{value:n},t.children))},RepeaterAddNew:_a,RepeaterAddOrOperator:function(t){var n;const{onSetState:r,functions:l,children:o}=t,{addNewItem:a}=null!==(n=null!=l?l:ba(r))&&void 0!==n?n:Ki(ya);return(0,e.createElement)(Yi,{isSecondary:!0,icon:"randomize",onClick:()=>a({__visible:!1,or_operator:!0})},o)},Repeater:Ta,WrapperRequiredControl:function({children:t,labelKey:n="label",requiredKey:l="required",helpKey:o="help",field:a=[]}){let{name:i,data:s}=g(r);return a.length&&([i,s]=a),(0,e.createElement)("div",{className:"jet-user-meta__row",key:"user_meta_"+i},(0,e.createElement)("div",{className:"jet-field-map__row-label"},(0,e.createElement)("span",{className:"fields-map__label"},s.hasOwnProperty(n)&&s[n]&&s[n],!s.hasOwnProperty(n)&&s),s.hasOwnProperty(l)&&s[l]&&(0,e.createElement)("span",{className:"fields-map__required"}," *"),s[o]&&(0,e.createElement)("p",{className:"components-base-control__help",style:{color:"rgb(117, 117, 117)",margin:"1em 0 0 0"}},(0,e.createElement)(b,null,s[o]))),t)},DynamicPreset:Be,JetFieldsMapControl:Re,FieldWithPreset:function({children:t=null,ModalEditor:n,triggerClasses:r=[],baseControlProps:l={}}){const[o,a]=Ge(!1),i=()=>{a((e=>!e))},s=["jet-form-dynamic-preset__trigger",...r].join(" ");return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Le,{className:"jet-form-dynamic-preset",...l},t,(0,e.createElement)("div",{className:s,onClick:i},(0,e.createElement)(Pe,{viewBox:"0 0 54 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)(Me,{d:"M42.6396 26.4347C37.8682 27.3436 32.5666 28.0252 27.1894 28.0252C21.8121 28.0252 16.4348 27.3436 11.7391 26.4347C6.96774 25.4502 3.18093 23.8597 0.37868 21.9663L0.37868 28.0252C0.37868 29.5399 1.59046 31.1304 3.78682 32.4179C5.98317 33.7054 9.46704 34.9172 13.6325 35.5988C17.798 36.2805 22.115 36.8106 27.1894 36.8106C32.2637 36.8106 36.6564 36.5077 40.7462 35.5988C44.8359 34.69 48.3198 33.7054 50.5162 32.4179C52.7125 31.1304 54 29.5399 54 28.0252L54 21.9663C51.122 23.8597 47.3352 25.4502 42.6396 26.4347ZM42.6396 53.5484C37.8682 54.5329 32.5666 55.1388 27.1894 55.1388C21.8121 55.1388 16.4348 54.5329 11.7391 53.5484C7.04348 52.5638 3.18093 51.0491 0.378682 49.1556L0.378682 55.1388C0.378683 56.7293 1.59046 58.3197 3.78682 59.5315C6.36186 60.819 9.46705 62.1066 13.6325 62.7125C17.7223 63.697 22.115 64 27.1894 64C32.2637 64 36.6564 63.697 40.7462 62.7125C44.8359 61.8036 48.3198 60.819 50.5162 59.5315C52.7125 57.9411 54 56.7293 54 54.8359L54 48.8527C51.122 51.0491 47.3352 52.2608 42.6396 53.5484ZM42.6396 39.9915C37.8682 40.9004 32.5666 41.582 27.1894 41.582C21.8121 41.582 16.4348 40.9004 11.7391 39.9915C6.96774 39.007 3.18093 37.4922 0.378681 35.5988L0.378681 41.582C0.378681 43.1725 1.59046 44.6872 3.78682 45.9747C6.36185 47.2622 9.46705 48.474 13.6325 49.1556C17.7223 50.0645 22.115 50.3674 27.1894 50.3674C32.2637 50.3674 36.6564 50.0645 40.7462 49.1556C44.8359 48.1711 48.3198 47.2622 50.5162 45.9747C52.7125 44.3843 54 43.1725 54 41.582L54 35.5988C51.122 37.4922 47.3352 39.007 42.6396 39.9915ZM40.4432 2.12337C36.3535 1.13879 31.885 0.835848 26.8864 0.835849C21.8878 0.835849 17.4194 1.13879 13.2539 2.12337C9.08836 3.10794 5.68022 4.01678 3.48387 5.3043C1.28751 6.59181 -3.4782e-06 8.10654 -3.33916e-06 9.697L-2.95513e-06 14.0897C-2.81609e-06 15.6802 1.28752 17.2706 3.48387 18.5582C6.05891 19.7699 9.1641 21.0575 13.2539 21.6633C17.3436 22.2692 21.8121 22.9509 26.8864 22.9509C31.9607 22.9509 36.3535 22.9509 40.4432 22.345C44.533 21.7391 48.0169 20.4516 50.2132 19.164C52.7125 17.5736 54 15.9831 54 14.3927L54 9.99995C54 8.40948 52.7125 6.81902 50.5162 5.60724C48.3198 4.39546 44.533 2.72926 40.4432 2.12337Z",fill:"#7E8993"})))),o&&(0,e.createElement)(h,{onRequestClose:i,classNames:["width-60"],title:"Edit Preset"},(t=>(0,e.createElement)(n,{...t}))))},GlobalField:ye,AvailableMapField:function({fieldsMap:t,field:n,index:r,value:a,onChangeValue:i,isMapFieldVisible:s}){let c=null;t||(t={}),c=t[n],c&&"object"==typeof c||(c={});const d=({field:t,name:n,index:r,fIndex:o,children:a})=>(0,e.createElement)(u.Card,{key:t+n+r+o,size:"extraSmall",style:{marginBottom:"10px"}},(0,e.createElement)(u.CardHeader,null,(0,e.createElement)("span",{className:"jet-label-overflow"},t)),(0,e.createElement)(l.StyledCardBodyControl,{key:t+n+r+o,className:"jet-form-preset__fields-map-item"},a));return(0,e.createElement)(o.Fragment,{key:`map_field_preset_${n+r}`},window.JetFormEditorData.presetConfig.map_fields.map(((o,m)=>{const p={field:n,name:o.name,index:r,fIndex:m},f="control_"+n+o.name+r+m;switch(o.type){case"text":return s(a,o,n)&&function({field:t,name:n,index:r,fIndex:o},a){return(0,e.createElement)(u.Card,{key:t+n+r+o,size:"extraSmall",style:{marginBottom:"10px"}},(0,e.createElement)(u.CardHeader,null,(0,e.createElement)("span",{className:"jet-label-overflow"},t)),(0,e.createElement)(l.StyledCardBodyControl,{key:t+n+r+o,className:"jet-form-preset__fields-map-item"},a))}(p,(0,e.createElement)(l.StyledTextControl,{key:f+"TextControl",placeholder:o.label,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));case"select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(l.StyledSelectControl,{options:o.options,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));case"custom_select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(u.CustomSelectControl,{options:o.options,onChange:({selectedItem:e})=>{c[o.name]=e.key,i({...t,[n]:c},"fields_map")},value:o.options.find((e=>e.key===c[o.name]))}));case"grouped_select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(je,{options:o.options,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));default:return null}})))},MapField:xe,FieldWrapper:function(t){const{attributes:n,children:r,wrapClasses:l=[],valueIfEmptyLabel:o="",setAttributes:a,childrenPosition:i="between"}=t,s=de(),c=H("_jf_args"),u=Xe((function(){We(n,a)}));function d(){return(0,e.createElement)(ze.VisualLabel,null,Qe(Ze("input label:","jet-form-builder")),(0,e.createElement)("div",{className:"jet-form-builder__label"},(0,e.createElement)(Ye,{key:s("rich-label"),placeholder:"Label...",allowedFormats:[],value:n.label?n.label:o,onChange:e=>a({label:e}),isSelected:!1,...u}),n.required&&(0,e.createElement)("span",{className:"jet-form-builder__required"},c.required_mark?c.required_mark:"*")))}function m(){return(0,e.createElement)("div",{className:"jet-form-builder__desc--wrapper"},Qe(Ze("input description:","jet-form-builder")),(0,e.createElement)(ze,{key:"custom_help_description",className:"jet-form-builder__desc"},(0,e.createElement)("div",{className:"components-base-control__help"},(0,e.createElement)(Ye,{key:s("rich-description"),tagName:"small",placeholder:"Description...",allowedFormats:[],value:n.desc,onChange:e=>a({desc:e}),style:{marginTop:"0px"}}))))}return"row"===c.fields_layout&&l.push("jet-form-builder-row__flex"),n?.crocoblock_styles?._uniqueClassName&&l.push(n.crocoblock_styles._uniqueClassName),(0,e.createElement)(ze,{key:s("placeHolder_block"),className:E("jet-form-builder__field-wrap","jet-form-builder-row",l)},"row"!==c.fields_layout&&(0,e.createElement)(e.Fragment,null,"top"===i&&r,d(),"between"===i&&r,m(),"bottom"===i&&r),"row"===c.fields_layout&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"jet-form-builder-row__flex--label"},d(),m()),(0,e.createElement)("div",{className:"jet-form-builder-row__flex--content"},r)))},MacrosInserter:function({children:t,fields:n,onFieldClick:r,customMacros:l,zIndex:o=1e6,...a}){const[i,s]=rt((()=>!1));return(0,e.createElement)("div",{className:"jet-form-editor__macros-inserter"},(0,e.createElement)(et,{isTertiary:!0,isSmall:!0,icon:i?"no-alt":"admin-tools",label:"Insert macros",className:"jet-form-editor__macros-trigger",onClick:()=>{s((e=>!e))}}),i&&(0,e.createElement)(tt,{style:{zIndex:o},position:"bottom left",...a},n.length&&(0,e.createElement)(nt,{title:"Form Fields"},n.map((t=>(0,e.createElement)("div",{key:"field_"+t.name},(0,e.createElement)(et,{isLink:!0,onClick:()=>{r(t.name)}},"%"+t.name+"%"))))),l&&(0,e.createElement)(nt,{title:"Custom Macros"},l.map((t=>(0,e.createElement)("div",{key:"macros_"+t},(0,e.createElement)(et,{isLink:!0,onClick:()=>{r(t)}},"%"+t+"%")))))))},RepeaterWithState:function({children:t,ItemHeading:n,repeaterClasses:r=[],repeaterItemClasses:l=[],newItem:a,addNewButtonLabel:i="Add New",items:s=[],isSaveAction:c,onSaveItems:m,onUnMount:p,onAddNewItem:f,onRemoveItem:h,help:b={helpSource:{},helpVisible:()=>!1,helpKey:""},additionalControls:g=null}){const y=["jet-form-builder__repeater-component",...r].join(" "),v=["jet-form-builder__repeater-component-item",...l].join(" "),[w,_]=(0,o.useState)([]);(0,o.useEffect)((()=>{_(s&&s.length>0?s.map((e=>(e.__visible=!1,e))):[{...a,__visible:!0}])}),[]);const[E,C]=(0,o.useState)(!0),k=(e,t)=>{_((n=>{const r=JSON.parse(JSON.stringify(n));return r[t]={...n[t],...e},r}))},S=({oldIndex:e,newIndex:t})=>{_((n=>{const r=JSON.parse(JSON.stringify(n));return[r[t],r[e]]=[r[e],r[t]],r}))},j=e=>!(e{if(!0===c){for(const e in w)for(const t in w[e])t.startsWith("__")&&delete w[e][t];m(w),p()}else!1===c&&p()}),[c]);const x=e=>`jet-form-builder-repeater__item_${e}`,{helpSource:N,helpVisible:F,helpKey:T}=b,B=F(w)&&N&&N[T];return(0,e.createElement)("div",{className:y,key:"jet-form-builder-repeater"},B&&(0,e.createElement)("p",null,N[T].label),0(0,e.createElement)(u.Card,{elevation:2,className:v,key:x(l)},(0,e.createElement)(u.CardHeader,{className:"repeater__item__header"},(0,e.createElement)("div",{className:"repeater-item__left-heading"},(0,e.createElement)(u.ButtonGroup,{className:"repeater-action-buttons"},(0,e.createElement)(u.Button,{isSmall:!0,icon:r.__visible?"no-alt":"edit",onClick:()=>(e=>{_((t=>{const n=JSON.parse(JSON.stringify(t));return n[e].__visible=!n[e].__visible,n}))})(l),className:"repeater-action-button"}),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,disabled:!Boolean(l),icon:"arrow-up-alt2",onClick:()=>(e=>{S({oldIndex:e,newIndex:e-1})})(l),className:"repeater-action-button"}),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,disabled:j(l),icon:"arrow-down-alt2",onClick:()=>(e=>{S({oldIndex:e,newIndex:e+1})})(l),className:"repeater-action-button"})),(0,e.createElement)("span",{className:"repeater-item-title"},n&&(0,e.createElement)(n,{currentItem:r,index:l,changeCurrentItem:e=>k(e,l)}),!n&&`#${l+1}`)),(0,e.createElement)(u.ButtonGroup,null,(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,onClick:()=>(e=>{_((t=>{const n=JSON.parse(JSON.stringify(t)),[r,l]=[n.slice(0,e+1),n.slice(e+1)];return[...r,n[e],...l]}))})(l)},(0,d.__)("Clone","jet-form-builder")),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,isDestructive:!0,onClick:()=>(e=>{E&&!(e=>confirm((0,d.sprintf)((0,d.__)("Are you sure you want to remove item %d?","jet-form-builder"),e+1)))(e)||h&&!h(e,w)||_((t=>{const n=JSON.parse(JSON.stringify(t));return n.splice(e,1),n}))})(l)},(0,d.__)("Delete","jet-form-builder")))),r.__visible&&(0,e.createElement)(u.CardBody,{className:"repeater-item__content"},t&&(0,e.createElement)(o.Fragment,{key:`repeater-component__item_${l}`},"function"==typeof t&&t({currentItem:r,changeCurrentItem:e=>k(e,l),currentIndex:l}),"function"!=typeof t&&t),!t&&"Set up your Repeater Template, please.")))),1{return e=a,f&&f(e,w),void _((t=>[...t,{...e,__visible:!0}]));var e}},i))},AdvancedFields:function(){return(0,e.createElement)(kt,null,(0,e.createElement)(at,null),(0,e.createElement)(ct,null),(0,e.createElement)(gt,null),(0,e.createElement)(wt,null),(0,e.createElement)(Ct,null))},GeneralFields:function({hasMacro:t=!0}){return(0,e.createElement)(Pn,{title:Ln("General","jet-form-builder"),key:"jet-form-general-fields"},(0,e.createElement)(Ft,null),(0,e.createElement)(Pt,null),(0,e.createElement)(Dt,null),(0,e.createElement)(Mn,{hasMacro:t}))},ToolBarFields:function({children:t=null}){return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Un,null,t),(0,e.createElement)(Xn,null))},FieldControl:function(t){const{setAttributes:n,attributes:r}=t,l=function({type:e,attributes:t,attrsSettings:n={}}){const r=Vs()["data-type"],l=rr();return l[e]?l[e].attrs.filter((({attrName:e,label:l,...o})=>{const a=e in t,i=(e=>{if(!e.condition)return!0;if(r&&e.condition.blockName){if("string"==typeof e.condition.blockName&&r!==e.condition.blockName)return!1;if("object"==typeof e.condition.blockName&&e.condition.blockName.length&&!e.condition.blockName.includes(r))return!1}return!(!function(){if("object"!=typeof e.condition.attr)return!0;const{operator:n="and",items:r={}}=e.condition.attr;if("or"===n.toLowerCase())for(const e in r)if(r[e]===t[e])return!0;return"and"!==n.toLowerCase()||function(){for(const e in r)if(r[e]!==t[e])return!1;return!0}()}()||"string"==typeof e.condition.attr&&e.condition.attr&&!t[e.condition.attr]||"string"==typeof e.condition&&!t[e.condition])})(o),s=e in n&&"show"in n[e]&&!1===n[e].show;return a&&i&&!s})):[]}(t),o=(e,t)=>{n({[t]:e})};return l.map((({help:t="",attrName:n,label:l,...a})=>{switch(a.type){case"text":return(0,e.createElement)(Js,{key:`${a.type}-${n}-TextControl`,label:l,help:t,value:r[n],onChange:e=>o(e,n)});case"select":return(0,e.createElement)($s,{key:`${a.type}-${n}-SelectControl`,label:l,help:t,value:r[n],options:a.options,onChange:e=>{o(e,n)}});case"toggle":return(0,e.createElement)(Us,{key:`${a.type}-${n}-ToggleControl`,label:l,help:t,checked:r[n],onChange:e=>{o(e,n)}});case"number":return(0,e.createElement)(Hs,{key:`${a.type}-${n}-BaseControl`,label:l},(0,e.createElement)(zs,{key:`${a.type}-${n}-NumberControl`,value:r[n],onChange:e=>{o(Number(e),n)}}),(0,e.createElement)("p",{className:"components-base-control__help",style:{color:"rgb(117, 117, 117)"}},t));default:return null}}))},HorizontalLine:function(t){return(0,e.createElement)("hr",{style:{...t}})},FieldSettingsWrapper:function(t){const{title:n,children:r}=t,l=tr()["data-type"].replace("/","-"),o=er(`jet.fb.render.settings.${l}`,null);return(r||o)&&(0,e.createElement)(Qn,{title:n||Zn("Field","jet-form-builder")},r,o)},GroupedSelectControl:je,BaseHelp:ut,GatewayFetchButton:or,ValidationToggleGroup:function({excludeBrowser:t=!1}){var n;const[r,l]=fe(),o=de();return Oa=Oa.filter((({value:e})=>"browser"!==e||!t)),(0,e.createElement)(Ba,{onChange:e=>l((t=>({...t,validation:{...r.validation,type:e}}))),value:null!==(n=r.validation?.type)&&void 0!==n?n:"inherit",label:Aa("Validation type","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},(0,e.createElement)(Ia,{label:Aa("Inherit","jet-form-builder"),value:"inherit","aria-label":Aa("Inherit from form's args","jet-form-builder"),showTooltip:!0}),Oa.map((t=>(0,e.createElement)(Ia,{key:o(t.value+"_key"),label:t.label,value:t.value,"aria-label":t.title,showTooltip:!0}))))},ValidationBlockMessage:function({name:t}){var n,r,l;const o=de(),[a,i]=fe(),[s]=(0,Ra.useMetaState)("_jf_validation","{}",[]),c=!a.validation?.type,u=c?null!==(n=s?.messages)&&void 0!==n?n:{}:null!==(r=a.validation?.messages)&&void 0!==r?r:{},d=Pa(t);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(La,{disabled:c,key:o("massage_"+t),label:d?.label,help:d?.help,value:null!==(l=u[t])&&void 0!==l?l:d?.initial,onChange:e=>i((n=>({...n,validation:{...a.validation,messages:{...u,[t]:e}}})))}))},ValidationMetaMessage:function({message:t,update:n,value:r=null,help:o=null}){const a=Pa(t.id);return(0,e.createElement)(l.StyledFlexControl,{direction:"column"},(0,e.createElement)(u.Flex,null,(0,e.createElement)(l.Label,{htmlFor:t.id},a.label),(0,e.createElement)(u.Flex,{style:{width:"auto"}},t.blocks.map((t=>(0,e.createElement)(u.Tooltip,{key:"message_block_item"+t.title,text:t.title,delay:200,placement:"top"},(0,e.createElement)(Ga,{icon:t.icon})))))),(0,e.createElement)(l.StyledTextControl,{className:l.ClearBaseControlStyle,id:t.id,help:null!=o?o:a?.help,value:null!=r?r:a?.initial,onChange:e=>n((n=>({...n,[t.id]:e})))}))},DynamicValues:zi,EditAdvancedRulesButton:function(){const[t,n]=Ds(!1);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Cs.Provider,{value:{showModal:t,setShowModal:n}},(0,e.createElement)("div",{className:"jet-fb mb-24"},(0,e.createElement)(Gs,null))),t&&(0,e.createElement)(h,{title:qs("Edit Advanced Rules","jet-form-builder"),classNames:["width-60"],onRequestClose:()=>n(!1)},(0,e.createElement)(_s,null)))},RepeaterStateContext:ya,RepeaterState:Va,BlockLabel:Ft,BlockName:Pt,BlockDescription:Dt,BlockDefaultValue:Mn,BlockPlaceholder:at,BlockAddPrevButton:ct,BlockPrevButtonLabel:gt,BlockVisibility:wt,BlockClassName:Ct,BlockAdvancedValue:function({help:t,label:n,hasMacro:r=!0,...l}){return(0,e.createElement)("div",{...l},(0,e.createElement)(Mn,{help:t,label:n,hasMacro:r}),(0,e.createElement)("hr",null),(0,e.createElement)(zi,null))},MacrosFields:vn,MacrosButtonTemplate:zt,MacrosFieldsTemplate:dn,ShowPopoverContext:Jt,PopoverItem:Zt,PresetButton:qt,ConditionItem:fi,AdvancedInspectorControl:kn,AdvancedModalControl:ni,ClientSideMacros:Tn,ToggleControl:function t({checked:n=!1,disabled:r=!1,onChange:l=()=>{},children:o=null,help:a=null,flexLabelProps:i={},outsideLabel:s=null,__nextHasNoMarginBottom:c=!1,...u}){const d=a,m=`inspector-jfb-toggle-control-${Zs(t)}`;return(0,e.createElement)(Ks,{id:m},(0,e.createElement)(Xs,{direction:"column"},(0,e.createElement)(Xs,{gap:3,align:"flex-start",justify:"flex-start",...i},(0,e.createElement)(Ys,{id:m,checked:n,onChange:e=>l(e.target.checked),disabled:r,...u}),(0,e.createElement)("label",{htmlFor:m},o),s),"string"==typeof d?(0,e.createElement)(ut,null,d):d&&(0,e.createElement)(d,null)))},DetailsContainer:Gi,HoverContainer:Li,ContainersList:$i,HumanReadableConditions:Pi,ConditionsRepeaterContextProvider:yi,ServerSideMacros:function({children:t}){const n=(0,K.useRequestFields)();return(0,e.createElement)(Kt.Provider,{value:{afterFields:n}},t)},SelectVariations:function({value:t}){const{name:n}=ac(),[,r]=fe(),{variations:l,rawVariations:o}=rc((t=>{const{getBlockVariations:r}=t("core/blocks"),l=r(n,"block"),o=[],a={};for(const t of l)o.push({key:t.name,name:(0,e.createElement)("span",{className:"jet-fb flex gap-1em ai-center"},(0,e.createElement)(oc,{icon:t.icon}),t.title)}),a[t.name]=t;return{variations:o,rawVariations:a}}),[n]);return l.length?(0,e.createElement)(lc,{__nextUnconstrainedWidth:!0,hideLabelFromVision:!0,options:l,size:"__unstable-large",onChange:({selectedItem:e})=>r({...o[e.key].attributes}),value:l.find((({key:e})=>e===t))}):null},ToggleGroupVariations:function(t){const n=cc(vc);return n?.currentId?(0,e.createElement)(yc,{className:"jet-fb toggle-toolbar-group"},(0,e.createElement)(wc,{...t})):(0,e.createElement)(wc,{...t})},AttributeHelp:ft,ActionButtonPlaceholder:function(t){const n=kc();return(0,e.createElement)("div",{...n},(0,e.createElement)("div",{className:t.wrapperClasses.join(" ")},(0,e.createElement)(jc,{isPrimary:!0,className:t.buttonClasses.join(" ")},(0,e.createElement)(Sc,{placeholder:"Input Submit label...",allowedFormats:[],value:t.attributes.label,onChange:e=>t.setAttributes({label:e})}))))},ActionModalFooterSlotFill:c,ScopedAttributesProvider:function({children:t}){const[n,r]=fe(),[l,o]=Tc((()=>n));return(0,e.createElement)(Nc.Provider,{value:{realAttributes:n,setRealAttributes:r,attributes:l,setAttributes:o}},t)}},window.JetFBActions={...null!==(Rc=window?.JetFBActions)&&void 0!==Rc?Rc:{},withPreset:ge,getInnerBlocks:R,getAvailableFieldsString:function(e){const t=T([e]),n=[];return t.forEach((function(e){n.push("%FIELD::"+e+"%")})),B("Available fields: ","jet-form-builder")+n.join(", ")},getAvailableFields:T,getFormFieldsBlocks:F,getFieldsWithoutCurrent:O,gatewayAttr:P,gatewayLabel:L,registerGateway:function(e,t,n="cred"){window.JetFBGatewaysList=window.JetFBGatewaysList||{},window.JetFBGatewaysList[e]=window.JetFBGatewaysList[e]||{},window.JetFBGatewaysList[e][n]=t},Tools:k,event:e=>{const t=new Event(e);return()=>document.dispatchEvent(t)},listen:(e,t)=>{document.addEventListener(e,t)},renderGateway:D,renderGatewayWithPlaceholder:function(e,t,n="cred",r=null){return G(e,n)?(t.Placeholder=r,D(e,t,n)):r},maybeCyrToLatin:w,getConvertedName:_,getBlockControls:function(e="all"){if(!e)return!1;const t=rr();return"all"===e?t:!!(t[e]&&t[e].attrs&&Array.isArray(t[e].attrs)&&0{e.includes(n.name)&&t.push(n)})),t},convertObjectToOptionsList:function(e=[],{usePlaceholder:t=!0,label:n="--",value:r=""}={}){const l={label:n,value:r};if(!e)return t?[l]:[];const o=Object.entries(e).map((e=>({value:e.value,label:e.label})));return t?[l,...o]:o},appendField:function(e,t=[]){M("jet.fb.register.fields","jet-form-builder",(n=>n.map((n=>t.length&&!t.includes(n.name)?n:e(n)))))},insertMacro:Bn,column:y,getCurrentInnerBlocks:function(){const{"data-block":e}=Qs();return R(e)},humanReadableCondition:bi,assetUrl:function(e=""){return JetFormEditorData.assetsUrl+e},set:function(e,t,n){const r=JSON.parse(JSON.stringify(e));let l,o=r;for(let e=0;e{function t(){e.call(this)}return t.prototype=Object.create(e.prototype),t}},window.JetFBHooks={...null!==(Mc=window?.JetFBHooks)&&void 0!==Mc?Mc:{},useSelectPostMeta:H,useSuccessNotice:$,useEvents:ae,useRequestEvents:function(){const e=ie((e=>e("jet-forms/actions").getCurrentAction()));return ae(e)},useBlockConditions:ce,useUniqKey:de,useBlockAttributes:fe,useIsAdvancedValidation:function(){const{type:e}=H("_jf_validation"),[t]=fe();return t.validation?.type?"advanced"===t.validation?.type:"advanced"===e},useGroupedValidationMessages:function(){const[e]=$e(He);return e},withSelectFormFields:(e=[],t=!1,n=!1)=>r=>{let l=[];const o=["submit","form-break","heading","group-break","conditional",...e];return Y((e=>{e.name.includes("jet-forms/")&&e.attributes.name&&!o.find((t=>e.name.includes(t)))&&l.push({blockName:e.name,name:e.attributes.name,label:e.attributes.label||e.attributes.name,value:e.attributes.name})}),r("core/block-editor").getBlocks()),l=t?[{value:"",label:t},...l]:l,{formFields:n?l:z("jet.fb.getFormFieldsBlocks",l)}},withSelectGateways:X,withDispatchGateways:function(e){const t=e("jet-forms/gateways");return{setGatewayRequest:t.setRequest,setGatewayScenario:t.setScenario,setScenario:t.setCurrentScenario,setGateway:t.setGateway,setGatewayInner:t.setGatewayInner,setGatewaySpecific:t.setGatewaySpecific,clearGateway:t.clearGateway,clearScenario:t.clearScenario}},useOnUpdateModal:W,useInsertMacro:An,useIsHasAttribute:he,useUniqueNameOnDuplicate:function(e=null){const t=nc(),[,n]=fe(),r=t["data-block"],l=tc((e=>{if(!e(Ko).isRecentlyAdded(r))return!1;const{hasChanged:t,names:n}=e(Ko).getUniqueNames(r);return!!t&&n}),[r]);ec((()=>{l&&("function"!=typeof e?n({name:l.split("|")[0]}):e(l))}),[l])},useSupport:function(e){const{name:t}=Ec();return _c((n=>{const r=n("core/blocks").getBlockType(t);return Cc(r,["supports",e],!1)}),[t,e])},useScopedAttributesContext:function(){return Fc(Nc)},useOpenEditorPanel:function(e){const{enableComplementaryArea:t}=Ac("core/interface"),{toggleEditorPanelOpened:n}=Ac("core/edit-post"),r=Ic((t=>t("core/edit-post").isEditorPanelOpened(e)),[e]);return()=>{t("core/edit-post","edit-post/document"),!r&&n(e)}}}})()})(); \ No newline at end of file +(()=>{var e={4180(){const e=()=>{const{select:e}=wp.data;return e("core/editor").getEditedPostAttribute("meta")},t=(t,n)=>{const{dispatch:r}=wp.data,{editPost:l}=r("core/editor");l({meta:{...e(),[t]:JSON.stringify(n)}})},n=e=>{const t=[];for(const[n,{active:r=!1}]of Object.entries(e))r&&t.push(+n);return t};wp.domReady(()=>(async()=>{await(async()=>new Promise(e=>{const t=setInterval(()=>{wp.data.select("core/editor").getCurrentPostType()&&(clearInterval(t),e())},100)}))();let r={},l=[];try{[r={},l=[]]=(()=>{const t=e();let n={},r=[];try{n=JSON.parse(t._jf_gateways)}catch(e){return[]}if(1===n.last_migrate)throw"migrated";try{r=JSON.parse(t._jf_actions)}catch(e){return[n]}return[n,r]})()}catch(e){return}r.last_migrate=1,t("_jf_gateways",r);const o=[];try{o.push(...((e,t)=>{var r,l,o,a;const i=n(null!==(r=e.notifications_success)&&void 0!==r?r:{}),s=n(null!==(l=e.notifications_failed)&&void 0!==l?l:{}),c=n(null!==(o=e.notifications_before)&&void 0!==o?o:{}),u=null!==(a=e.use_success_redirect)&&void 0!==a&&a;let d=!1;if(!(i.length||s.length||c.length||u))throw"nothing_to_migrate";return t.map(e=>{var t;return e.events=null!==(t=e.events)&&void 0!==t?t:[],i.includes(e.id)&&e.events.push("GATEWAY.SUCCESS"),s.includes(e.id)&&e.events.push("GATEWAY.FAILED"),c.includes(e.id)&&e.events.push("DEFAULT.PROCESS"),u&&!d&&"redirect_to_page"===e.type&&(e.events.push("GATEWAY.SUCCESS"),d=!0),e})})(r,l))}catch(e){return}t("_jf_actions",o)})())},115(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(6758),l=n.n(r),o=n(935),a=n.n(o)()(l());a.push([e.id,".syma2t4{height:40px;min-height:40px;line-height:1.5;}\n",""]);const i=a},4239(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(6758),l=n.n(r),o=n(935),a=n.n(o)()(l());a.push([e.id,".sfqmk5y svg{height:24px;width:24px;}\n",""]);const i=a},935(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n}).join("")},t.i=function(e,n,r,l,o){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(r)for(var i=0;i0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=o),n&&(u[2]?(u[1]="@media ".concat(u[2]," {").concat(u[1],"}"),u[2]=n):u[2]=n),l&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=l):u[4]="".concat(l)),t.push(u))}},t}},6758(e){"use strict";e.exports=function(e){return e[1]}},4023(e,t,n){var r=n(115);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(611).A)("55433ea3",r,!1,{})},483(e,t,n){var r=n(4239);r.__esModule&&(r=r.default),"string"==typeof r&&(r=[[e.id,r,""]]),r.locals&&(e.exports=r.locals),(0,n(611).A)("62ebcc8a",r,!1,{})},611(e,t,n){"use strict";function r(e,t){for(var n=[],r={},l=0;lf});var l="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!l)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},a=l&&(document.head||document.getElementsByTagName("head")[0]),i=null,s=0,c=!1,u=function(){},d=null,m="data-vue-ssr-id",p="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(e,t,n,l){c=n,d=l||{};var a=r(e,t);return h(a),function(t){for(var n=[],l=0;ln.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(l=0;l{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{"use strict";const e=window.React,{createContext:t}=wp.element,r=t({name:"",data:{},index:0}),l=window.jfb.components,o=window.wp.element,{createContext:a}=wp.element,i=a({actionClick:null,onRequestClose:()=>{}}),{createSlotFill:s}=wp.components,c=s("JFBActionModalFooter"),u=window.wp.components,d=window.wp.i18n,{Slot:m}=c;let{ToggleGroupControl:p,__experimentalToggleGroupControl:f}=wp.components;p=p||f;const h=function({onRequestClose:t,children:n,title:r="",classNames:l=[],className:a="",onUpdateClick:s,onCancelClick:c,updateBtnLabel:f="Update",updateBtnProps:h={},cancelBtnProps:b={},cancelBtnLabel:g="Cancel",fixedHeight:y="",...v}){const w=["jet-form-edit-modal",...l,a],[_,E]=(0,o.useState)(null),C=()=>{s&&s(),E(!0)},k=()=>{c&&c(),E(!1)};let S={};return y&&(S={height:y},w.push("jet-modal-fixed-height")),(0,e.createElement)(u.Modal,{onRequestClose:t,className:w.join(" "),title:r,style:S,...v},!n&&(0,e.createElement)("div",{className:"jet-form-edit-modal__content"},(0,d.__)("Action callback is not found.","jet-form-builder")),n&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"jet-form-edit-modal__wrapper"},(0,e.createElement)(i.Provider,{value:{actionClick:_,onRequestClose:t}},(0,e.createElement)("div",{className:"jet-form-edit-modal__content"},"function"==typeof n&&n({actionClick:_,onRequestClose:t}),"function"!=typeof n&&n))),(0,e.createElement)(m,{fillProps:{updateClick:C,cancelClick:k}},t=>Boolean(t?.length)?t:(0,e.createElement)(p,{className:"jet-form-edit-modal__actions jfb-toggle-group-control",hideLabelFromVision:!0},(0,e.createElement)(u.Button,{isPrimary:!0,onClick:C,...h},f),(0,e.createElement)(u.Button,{isSecondary:!0,style:{margin:"0 0 0 10px"},onClick:k,...b},g)))))},{RawHTML:b,useContext:g}=wp.element;function y(e,t){return e?.length?e.map(e=>"object"==typeof e?e[t]:e):[]}const v=(0,window.wp.hooks.applyFilters)("jet.fb.tools.convertSymbols",{checkCyrRegex:/[а-яёїєґі]/i,cyrRegex:/[а-яёїєґі]/gi,charsMap:{а:"a",б:"b",в:"v",г:"g",д:"d",е:"e",ё:"io",ж:"zh",з:"z",и:"i",й:"i",к:"k",л:"l",м:"m",н:"n",о:"o",п:"p",р:"r",с:"s",т:"t",у:"u",ф:"f",х:"kh",ц:"ts",ч:"ch",ш:"sh",щ:"shch",ы:"y",э:"e",ю:"iu",я:"ia",ї:"i",є:"ie",ґ:"g",і:"i"}});function w(e){return v.checkCyrRegex.test(e)&&(e=e.replace(v.cyrRegex,function(e){return void 0===v.charsMap[e]?"":v.charsMap[e]})),e}function _(e){let t=e.toLowerCase();t=t.normalize("NFD").replace(/[\u0300-\u036f]/g,""),t=w(t);const n=t.match(/\b(\w+)\b/g);t="";for(const[e,r]of Object.entries(n)){t+=(0===+e?"":"_")+r;const l=+e+1===n.length;if(t.length>60)return t+(l?"":"__")}return t}function E(...e){const t=[],n=e=>{e.forEach(e=>{if(e&&(Array.isArray(e)&&n(e),"string"==typeof e&&t.push(e.trim()),"object"==typeof e))for(const n in e)e[n]&&t.push((n+"").trim())})};return n(e),t.join(" ")}function C(e){return null==e||("object"!=typeof e||Array.isArray(e)?"number"==typeof e?0===e:!e?.length:!Object.keys(e)?.length)}const k=class{static withPlaceholder(e,t="--",n=""){return[{label:t,value:n},...e]}static getRandomID(){return Math.floor(8999*Math.random())+1e3}},{select:S}=wp.data,j=function(e){const t=(n,r=null)=>{(n=n||S("core/block-editor").getBlocks()).forEach(n=>{if(e(n,r),n.innerBlocks.length){const e="jet-forms/repeater-field"===n.name?n:r;return void t(n.innerBlocks,e)}if("core/block"!==n.name)return;let l=S("core/block-editor")?.__unstableGetClientIdsTree?.(n.clientId);if(!l?.length)return;const o=l.map(({clientId:e})=>e);l=S("core/block-editor").getBlocksByClientId(o),t(l)})};t()},{applyFilters:x}=wp.hooks,{select:N}=wp.data,F=function(e=[],t=!1,n=!1,r="default"){let l=[];const o=["submit","form-break","heading","group-break","conditional",...e];return j(e=>{if(e.name.includes("jet-forms/")&&!o.find(t=>e.name.includes(t))){const t=N("core/blocks").getBlockType(e.name);let{fields:n=[]}=t.jfbResolveBlock.call(e,r);t.hasOwnProperty("jfbGetFields")&&(n=t.jfbGetFields.call(e,r)),l.push(...n.filter(e=>!l.some(({value:t})=>t===e.value)))}}),l=t?[{value:"",label:t},...l]:l,n?l:x("jet.fb.getFormFieldsBlocks",l,r)},T=function(e=[],t="default"){const n=[],r=F(e,!1,!1,t);return r&&r.forEach(e=>n.push(e.name)),n},{__:B}=wp.i18n,{applyFilters:I}=wp.hooks,{select:A}=wp.data,O=function(e=!1,t=!1,n="default"){const r=["submit","form-break","heading","group-break","conditional"];let l=[];const o=wp.data.select("core/block-editor").getSelectedBlock();return j(e=>{if(e.name.includes("jet-forms/")&&o?.clientId!==e.clientId&&!r.find(t=>e.name.includes(t))){const t=A("core/blocks").getBlockType(e.name);let{fields:r=[]}=t.jfbResolveBlock.call(e,n);t.hasOwnProperty("jfbGetFields")&&(r=t.jfbGetFields.call(e,n)),l.push(...r.filter(e=>!l.some(({value:t})=>t===e.value)))}}),l=e?[{value:"",label:e},...l]:l,t?l:I("jet.fb.getFormFieldsBlocks",l,n)},R=function(e){const t=wp.data.select("core/block-editor").getBlock(e);return t?t.innerBlocks:[]},{addFilter:M}=wp.hooks,P=function(e=!1,t=""){const n=window.JetFormEditorData.gateways;if(!e)return n;if(!n[e])return!1;const r=n[e];return e=>r[e]?r[e]:t},L=function(e,t=""){const n=P("labels");return r=>n(e)?n(e)[r]:t},G=function(e,t="cred"){return window.JetFBGatewaysList&&window.JetFBGatewaysList[e]&&window.JetFBGatewaysList[e][t]},D=function(t,n,r="cred"){if(!G(t,r))return null;const l=window.JetFBGatewaysList[t][r];return(0,e.createElement)(l,{...n})},{useState:q,useEffect:V}=wp.element,{useDispatch:J}=wp.data,$=function(e,t={}){const[n,r]=q(!1),l=J(wp.notices.store);return V(()=>{n&&l.createWarningNotice(e,{type:"snackbar",...t})},[n]),r},{useSelect:U}=wp.data,H=function(e){const t=U(e=>e("core/editor").getEditedPostAttribute("meta")||{});return JSON.parse(t[e]||"{}")},W=function(e){const{actionClick:t,onRequestClose:n}=(0,o.useContext)(i);(0,o.useEffect)(()=>{t&&e(),null!==t&&n()},[t])},{applyFilters:z}=wp.hooks,Y=(e,t)=>{t.forEach(t=>{e(t),t.innerBlocks.length&&Y(e,t.innerBlocks)})},K=window.jfb.actions,X=function(e){const t=e("jet-forms/gateways"),n=t.getCurrentRequestId(),r=t.getGatewaySpecific(),l=t.getScenario(),o=t.getGatewayId(),{id:a="PAY_NOW"}=l,{use_global:i=!1}=r,s=(0,K.globalTab)({slug:o}),c=P("additional")(o),u=e("jet-forms/actions").getLoading(n),d=P("labels"),m=L(o),p=function(e){return d(`${o}.${e}`)};return{gatewayGeneral:t.getGateway(),gatewayRequest:t.getCurrentRequest(),scenarioSource:c[a]||{},currentScenario:l[a]||{},CURRENT_SCENARIO:a,gatewayScenario:l,additionalSourceGateway:c,gatewaySpecific:r,gatewayRequestId:n,loadingGateway:u,getSpecificOrGlobal:(e,t="")=>i?s[e]||t:r[e]||t,globalGatewayLabel:d,specificGatewayLabel:m,customGatewayLabel:p,scenarioLabel:function(e){return p(`scenario.${a}.${e}`)}}},{useSelect:Z}=wp.data,Q=function(){const e=Z(e=>e("jet-forms/events").getAlwaysTypes()),t=[];for(const{value:n}of e)t.push(n);return[...new Set(t)]},{useSelect:ee}=wp.data,te=function(){var e;const t=H("_jf_gateways"),{scenario:n={}}=null!==(e=t[t?.gateway])&&void 0!==e?e:{};return ee(e=>{const r=e("jet-forms/events").getGatewayTypes(),l=[];for(const e of r){const r=!e.gateway||e.gateway===t.gateway,o=!e.scenario||e.scenario===n?.id;r&&o&&l.push(e.value)}return[...new Set(l)]},[t.gateway,n?.id])},{useSelect:ne}=wp.data,re=function({index:e}){const t=H("_jf_actions"),n=ne(e=>e("jet-forms/actions").getActionsMap(),[]);t.splice(e,1);const r=[];for(const e of t){const t=n?.[e.type]?.provideEvents;if("function"!=typeof t)continue;const{[e.type]:l={}}=e.settings;r.push(...t(l))}return[...new Set(r)]},{useSelect:le}=wp.data,{useSelect:oe}=wp.data,ae=function(e){const t=[...Q(),...te(),...re(e),...le(e=>e("jet-forms/events").getDynamicTypes().map(({value:e})=>e))];return oe(n=>n("jet-forms/events").filterList(e.type,t))},{useSelect:ie}=wp.data,{useSelect:se}=wp.data,ce=function(){const[e,t]=se(e=>[e("jet-forms/block-conditions").getOperators(),e("jet-forms/block-conditions").getFunctions()],[]);return{operators:e,functions:t}},{useBlockEditContext:ue}=wp.blockEditor,de=function(){const{clientId:e}=ue();return t=>t+"-"+e},me=window.wp.blockEditor,pe=window.wp.data,fe=function(e=null){const t=(0,me.useBlockEditContext)();let{clientId:n}=t;e&&(n=e);const r=(0,pe.useSelect)(e=>e("core/block-editor").getBlockAttributes(n),[n]),{updateBlock:l}=(0,pe.useDispatch)("core/block-editor");return[r,e=>{e="object"==typeof e?e:e(r),e=(0,pe.select)("jet-forms/fields").getSanitizedAttributes(e,t),l(n,{attributes:e})}]},he=function(e){const t=(0,me.useBlockProps)()["data-type"];return(0,pe.useSelect)(n=>!!n("core/blocks").getBlockType(t).attributes[e],[e,t])},{applyFilters:be}=wp.hooks,ge=function(t){return function(n){return(0,e.createElement)(t,{key:"wrapped-preset-editor",...n,parseValue:()=>{let e={};if("object"==typeof n.value)e={...n.value};else if(n.value&&"string"==typeof n.value)try{if(e=JSON.parse(n.value),"number"==typeof e)throw new Error}catch(t){e={}}return e.jet_preset=!0,e},isVisible:(e,t,n)=>(t.position&&n===t.position||!t.position||"query_var"!==e.from)&&((e,t)=>!t.condition&&!t.custom_condition||(t.custom_condition?"query_var"===t.custom_condition?"post"===e.from&&"query_var"===e.post_from||"user"===e.from&&"query_var"===e.user_from||"term"===e.from&&"query_var"===e.term_from||"query_var"===e.from:be("jet.fb.preset.editor.custom.condition",!1,t.custom_condition,e):!t.condition||e[t.condition.field]===t.condition.value))(e,t),isMapFieldVisible:(e,t,n)=>!((t.condition||t.parent_condition)&&(t.parent_condition&&!t.condition?e[t.parent_condition.field]!==t.parent_condition.value:t.parent_condition&&t.condition?!e.fields_map||!e.fields_map[n]||e.fields_map[n][t.condition.field]!==t.condition.value||e[t.parent_condition.field]!==t.parent_condition.value:!t.parent_condition&&t.condition&&(!e.fields_map||!e.fields_map[n]||e.fields_map[n][t.condition.field]!==t.condition.value))),isCurrentFieldVisible:(e,t,n)=>!((t.condition||t.parent_condition)&&(t.position&&n!==t.position||(t.parent_condition&&!t.condition?e[t.parent_condition.field]!==t.parent_condition.value:t.parent_condition&&t.condition?e["current_field_"+t.condition.field]!==t.condition.value||e[t.parent_condition.field]!==t.parent_condition.value:!t.parent_condition&&t.condition&&e["current_field_"+t.condition.field]!==t.condition.value))),excludeOptions:e=>{const t=[...e];return t.forEach((e,r)=>{n.excludeSources&&n.excludeSources.includes(e.value)&&t.splice(r,1)}),t}})}},ye=function({data:t,value:n,index:r,onChangeValue:o,isVisible:a,excludeOptions:i=e=>e,position:s}){switch(t.type){case"text":return a(n,t,s)&&(0,e.createElement)("div",{key:"field_"+t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledTextControl,{key:t.name+r,label:t.label,value:n[t.name],onChange:e=>{o(e,t.name)}}));case"select":return a(n,t,s)&&(0,e.createElement)("div",{key:"field_"+t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledSelectControl,{key:t.name+r,options:i(t.options),label:t.label,value:n[t.name],onChange:e=>{o(e,t.name)}}))}return null};function ve(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var we=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|fetchpriority|fetchPriority|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_e=ve(function(e){return we.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}),Ee=function(){const e=Array.prototype.slice.call(arguments).filter(Boolean),t={},n=[];e.forEach(e=>{(e?e.split(" "):[]).forEach(e=>{if(e.startsWith("atm_")){const[,n]=e.split("_");t[n]=e}else n.push(e)})});const r=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&r.push(t[e]);return r.push(...n),r.join(" ")},Ce=(e,t)=>{const n={};return Object.keys(e).filter((e=>t=>-1===e.indexOf(t))(t)).forEach(t=>{n[t]=e[t]}),n},ke=(e,t)=>{},Se=function(t){let n="";return r=>{const l=(l,o)=>{const{as:a=t,class:i=n}=l;var s;const c=function(e,t){const n=Ce(t,["as","class"]);if(!e){const e="function"==typeof _e?{default:_e}:_e;Object.keys(n).forEach(t=>{e.default(t)||delete n[t]})}return n}(void 0===r.propsAsIs?!("string"==typeof a&&-1===a.indexOf("-")&&(s=a[0],s.toUpperCase()!==s)):r.propsAsIs,l);c.ref=o,c.className=r.atomic?Ee(r.class,c.className||i):Ee(c.className||i,r.class);const{vars:u}=r;if(u){const e={};for(const t in u){const n=u[t],o=n[0],a=n[1]||"",i="function"==typeof o?o(l):o;ke(0,r.name),e[`--${t}`]=`${i}${a}`}const t=c.style||{},n=Object.keys(t);n.length>0&&n.forEach(n=>{e[n]=t[n]}),c.style=e}return t.__wyw_meta&&t!==a?(c.as=a,(0,e.createElement)(t,c)):(0,e.createElement)(a,c)},o=e.forwardRef?(0,e.forwardRef)(l):e=>{const t=Ce(e,["innerRef"]);return l(t,e.innerRef)};return o.displayName=r.name,o.__wyw_meta={className:r.class||n,extends:t},o}};const je=Se("select")({name:"StyledSelect",class:"syma2t4",propsAsIs:!1}),xe=function({id:t,label:n,onChange:r,options:l=[],value:o}){return!C(l)&&(0,e.createElement)(je,{id:t,className:"components-select-control__input",onChange:e=>{r(e.target.value)},value:o},(0,e.createElement)("option",{key:`${n}-placeholder`,value:""},"--"),l.map((t,n)=>!C(t.values)&&(0,e.createElement)("optgroup",{key:`${t.label}-${n}`,label:t.label},t.values.map((t,r)=>(0,e.createElement)("option",{key:`${t.value}-${r}-${n}`,value:t.value,disabled:t.disabled},t.label)))))};n(4023);const Ne=function({data:t,value:n,index:r,currentState:o,onChangeValue:a,isCurrentFieldVisible:i}){switch(t.type){case"text":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledTextControl,{key:"control_"+t.name+r,placeholder:t.label,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}));case"select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(l.StyledSelectControl,{key:"control_"+t.name+r,options:t.options,label:t.label,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}));case"custom_select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r,className:"jet-form-preset__row"},(0,e.createElement)(u.CustomSelectControl,{className:"jet-custom-select-control",label:t.label,options:t.options,onChange:({selectedItem:e})=>{n=e.key,a(n,"current_field_"+t.name)},value:t.options.find(e=>e.key===n)}));case"grouped_select":return i(o,t)&&(0,e.createElement)("div",{key:t.name+r},(0,e.createElement)(l.Label,null,t.label),(0,e.createElement)(xe,{options:t.options,value:n,onChange:e=>{a(e,"current_field_"+t.name)}}))}return null},{createContext:Fe}=wp.element,Te=Fe({});let Be=function({value:t,onChange:n,parseValue:r,excludeOptions:a,isCurrentFieldVisible:i,isVisible:s}){var c,m;const p="dynamic",f=r(t),h=(0,o.useContext)(Te),b=(e,t)=>{n(()=>JSON.stringify({...f,[t]:e}))};return(0,e.createElement)(l.StyledFlexControl,{direction:"column",gap:4},window.JetFormEditorData.presetConfig.global_fields.map((t,n)=>(0,e.createElement)(ye,{key:`current_field_${t.name}_${n}`,value:f,index:n,data:t,excludeOptions:a,onChangeValue:b,isVisible:s,position:p})),window.JetFormEditorData.presetConfig.map_fields.map((t,n)=>(0,e.createElement)(Ne,{key:`current_field_${t.name}_${n}`,currentState:f,value:f["current_field_"+t.name],index:n,data:t,onChangeValue:b,isCurrentFieldVisible:i,position:p})),h?.show&&(0,e.createElement)(u.ToggleControl,{label:(0,d.__)("Restrict access","jet-form-builder"),help:null===(c=f.restricted)||void 0===c||c?(0,d.__)("Will set default value from preset only for users who allowed to edit this value","jet-form-builder"):(0,d.__)("Always set default value from preset. Make sure it can't be accidentally changed from form Actions","jet-form-builder"),checked:null===(m=f.restricted)||void 0===m||m,onChange:e=>{b(e?void 0:e,"restricted")}}))};Be=ge(Be);const Ie=Be,{SelectControl:Ae,TextControl:Oe}=wp.components;class Re extends wp.element.Component{constructor(e){super(e),this.fieldTypes=this.props.fieldTypes,this.taxonomiesList=this.props.taxonomiesList,this.className=this.props.className,this.metaProp=this.props.metaProp?this.props.metaProp:"post_meta",this.termsProp=this.props.termsProp?this.props.termsProp:"post_terms",this.index=this.props.index,this.init(),this.bindFunctions(),this.state={type:this.getFieldType(this.props.fieldValue)}}bindFunctions(){this.onChangeType=this.onChangeType.bind(this),this.onChangeValue=this.onChangeValue.bind(this)}init(){if(this.id=`inspector-select-control-${this.index}`,this.preparedTaxes=[],this.taxPrefix="jet_tax__",this.taxonomiesList)for(let e=0;e{const t=wp.data.select(qe).getBlockType(`jet-forms/${e}`);return{title:t.title,icon:t.icon.src}}))}},Je=class{constructor(){this.items=[]}push(e){this.items.push(new Ve(e))}},{messages:$e}=window.jetFormValidation,{useState:Ue}=wp.element,He=$e.sort((e,t)=>e.supported.length-t.supported.length);function We(){const e=new Je;for(const t of He)e.push(t);return e.items}const ze=function(e,t){1>=e.label.length||e.name&&"field_name"!==e.name||t({name:_(e.label)})},{BaseControl:Ye}=wp.components,{RichText:Ke}=wp.blockEditor;let{__experimentalUseFocusOutside:Xe,useFocusOutside:Ze}=wp.compose;Ze=Ze||Xe;const{__:Qe}=wp.i18n;function et(t){return(0,e.createElement)("small",{style:{whiteSpace:"nowrap",padding:"0.2em 0.8em 0 0",color:"#8e8a8a"}},t)}const{Button:tt,Popover:nt,PanelBody:rt}=wp.components,{useState:lt}=wp.element,{__:ot}=wp.i18n,{TextControl:at}=wp.components,it=function({label:t,help:n}){const[r,l]=fe();return he("placeholder")?(0,e.createElement)(at,{label:null!=t?t:ot("Placeholder","jet-form-builder"),value:r.placeholder,help:null!=n?n:"",onChange:e=>l({placeholder:e})}):null},{__:st}=wp.i18n,{ToggleControl:ct}=wp.components,ut=function({label:t,help:n}){const[r,l]=fe();return he("add_prev")?(0,e.createElement)(ct,{label:null!=t?t:st("Add Prev Page Button","jet-form-builder"),help:null!=n?n:st('It is recommended to use the "Action Button" block with the "Go to Prev Page" type',"jet-form-builder"),checked:r.add_prev,onChange:e=>l({add_prev:e})}):null},dt=function({children:t,className:n="",style:r={},...l}){return(0,e.createElement)("p",{className:"jet-fb-base-control__help"+(n?` ${n}`:""),style:{fontSize:"12px",fontStyle:"normal",color:"rgb(117, 117, 117)",marginTop:"0px",...r},...l},t)},{useBlockEditContext:mt}=wp.blockEditor,{useSelect:pt}=wp.data,{__:ft}=wp.i18n,ht=function({name:t=!1,children:n=null}){const{name:r}=mt(),l=pt(e=>{var n;if(!1===t)return!1;const l=e("core/blocks").getBlockType(r);return null!==(n=l.attributes[t]?.jfb)&&void 0!==n&&n},[r,t]);return l?(0,e.createElement)(dt,{className:"jet-fb mb-24"},n&&(0,e.createElement)(e.Fragment,null,n," "),l?.shortcode&&!l.rich&&!n&&ft("You can use shortcodes here.","jet-form-builder"),l?.shortcode&&!l.rich&&n&&ft("You can also use shortcodes here.","jet-form-builder")):Boolean(n)&&(0,e.createElement)(dt,{className:"jet-fb mb-24"},n)},{__:bt}=wp.i18n,{TextControl:gt}=wp.components,yt=function({label:t,help:n}){const[r,l]=fe();return r.add_prev?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(gt,{label:null!=t?t:bt("Prev Page Button Label","jet-form-builder"),value:r.prev_label,className:"jet-fb m-unset",onChange:e=>l({prev_label:e})}),(0,e.createElement)(ht,{name:"prev_label"},null!=n?n:"")):null},{__:vt}=wp.i18n,{SelectControl:wt}=wp.components,_t=function({label:t,help:n}){const[r,l]=fe();return he("visibility")?(0,e.createElement)(wt,{options:[{value:"all",label:vt("For all","jet-form-builder")},{value:"logged_id",label:vt("Only for logged in users","jet-form-builder")},{value:"not_logged_in",label:vt("Only for NOT-logged in users","jet-form-builder")}],label:null!=t?t:vt("Field Visibility","jet-form-builder"),help:null!=n?n:"",value:r.visibility,onChange:e=>l({visibility:e})}):null},{__:Et}=wp.i18n,{TextControl:Ct}=wp.components,kt=function({label:t,help:n}){const[r,l]=fe();return(0,e.createElement)(Ct,{label:null!=t?t:Et("CSS Class Name","jet-form-builder"),value:r.class_name,help:null!=n?n:"",onChange:e=>l({class_name:e})})},{InspectorAdvancedControls:St}=wp.blockEditor,{__:jt}=wp.i18n,{TextControl:xt}=wp.components;let{__experimentalUseFocusOutside:Nt,useFocusOutside:Ft}=wp.compose;Ft=Ft||Nt;const Tt=function({label:t,help:n}){const[r,l]=fe(),o=Ft(function(){ze(r,l)});return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(xt,{label:null!=t?t:jt("Field Label","jet-form-builder"),className:"jet-fb m-unset",value:r.label,onChange:e=>l({label:e}),...o}),(0,e.createElement)(ht,{name:"label"},null!=n?n:""))},Bt={};for(const{id:e,name:t}of window.jetFormActionTypes)Bt[e]=t;const{__:It}=wp.i18n,{TextControl:At,Icon:Ot,Flex:Rt,Tooltip:Mt}=wp.components,{useInstanceId:Pt}=wp.compose,Lt=function t({label:n,help:r}){const[l,o]=fe(),{message:a}=function(){const{clientId:e}=(0,me.useBlockEditContext)(),t=(0,K.useRequestFields)({returnOnEmptyCurrentAction:!1}),{inFormFields:n,hasParent:r,fieldNames:l}=(0,pe.useSelect)(t=>{var n;const r=t("jet-forms/fields").getBlockById(e);return{hasParent:!!r?.parentBlock,fieldNames:null!==(n=r?.fields?.map?.(({value:e})=>e))&&void 0!==n?n:[],inFormFields:t("jet-forms/fields").isUniqueName(e)}},[e]);if(!n)return{error:"not_unique_in_fields",message:(0,d.__)("The form field name must be unique. Please change it","jet-form-builder")};if(r)return{};const o=t.find(({value:e})=>l.includes(e));return o?{error:"not_unique_in_actions",message:o?.from?(0,d.sprintf)((0,d.__)("The %s action already uses this field name. Please change it","jet-form-builder"),Bt[o.from]):(0,d.__)("The form field name must be unique. Please change it","jet-form-builder")}:{}}(),i=Pt(t,"AdvancedInspectorControl");return he("name")?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Rt,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,e.createElement)("label",{htmlFor:i,className:"jet-fb label"},null!=n?n:It("Form field name","jet-form-builder")),!!a&&(0,e.createElement)(Mt,{text:a,delay:200,placement:"top"},(0,e.createElement)(Ot,{icon:"warning",style:{color:"orange",cursor:"help"}}))),(0,e.createElement)(At,{id:i,value:l.name,help:null!=r?r:It("Should contain only lowercase Latin letters, numbers, “-”, or “_”. No spaces allowed.","jet-form-builder"),onChange:e=>o({name:e})})):null},{__:Gt}=wp.i18n,{TextControl:Dt}=wp.components,qt=function({label:t,help:n}){const[r,l]=fe();return he("desc")?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Dt,{label:null!=t?t:Gt("Field Description","jet-form-builder"),value:r.desc,className:"jet-fb m-unset",onChange:e=>l({desc:e})}),(0,e.createElement)(ht,{name:"desc"},null!=n?n:"")):null},Vt=function({value:t,onChange:n,title:r}){const[a,i]=(0,o.useState)(!1),[s,c]=(0,o.useState)(t);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(u.Button,{icon:"database",variant:"tertiary",isSmall:!0,className:"jet-fb-is-thick",onClick:()=>i(!0)}),a&&(0,e.createElement)(u.Modal,{size:"medium",title:null!=r?r:(0,d.__)("Edit Preset","jet-form-builder"),onRequestClose:()=>i(!1),className:l.ModalFooterStyle},(0,e.createElement)(Ie,{key:"dynamic_key_preset",value:s,onChange:c}),(0,e.createElement)(l.StickyModalActions,null,(0,e.createElement)(u.Button,{isPrimary:!0,onClick:()=>{n(s),i(!1)}},(0,d.__)("Update","jet-form-builder")),(0,e.createElement)(u.Button,{isSecondary:!0,onClick:()=>{i(!1)}},(0,d.__)("Cancel","jet-form-builder")))))},{createContext:Jt}=wp.element,$t=Jt(!1),{useState:Ut,useRef:Ht}=wp.element,{Button:Wt,Popover:zt}=wp.components,Yt=function({children:t,...n}){const[r,l]=Ut(!1),o=Ht();return(0,e.createElement)($t.Provider,{value:{showPopover:r,setShowPopover:l}},(0,e.createElement)(Wt,{ref:o,icon:"admin-tools",variant:"tertiary",isSmall:!0,className:"jet-fb-is-thick",onClick:()=>l(e=>!e),...n}),r&&(0,e.createElement)(zt,{anchor:o.current,position:"top-start",noArrow:!1,variant:"toolbar",onFocusOutside:e=>{e.relatedTarget!==o.current&&l(!1)},onClose:()=>l(!1)},t))},{createContext:Kt}=wp.element,Xt=Kt([]),{createContext:Zt}=wp.element,Qt=Zt({name:""});function en(){}en.prototype={fullName(){},fullHelp(){}};const tn=en,{useState:nn}=wp.element,{Button:rn}=wp.components,ln=function({current:t,children:n}){const[r,l]=nn(!1);if(!(t instanceof tn))return(0,e.createElement)("li",null,(0,e.createElement)(Qt.Provider,{value:t},n));const o=t.fullHelp.bind(t);return(0,e.createElement)("li",null,(0,e.createElement)(Qt.Provider,{value:t},(0,e.createElement)("div",{style:{display:"flex",alignItems:"center",gap:"0.6em"}},(0,e.createElement)(rn,{isSmall:!0,variant:"tertiary",icon:r?"arrow-down":"arrow-right",className:"jet-fb-is-thick",onClick:()=>l(e=>!e)}),n),r&&(0,e.createElement)(o,null)))},{Children:on,cloneElement:an}=wp.element,{PanelBody:sn}=wp.components,cn=function({title:t,items:n,children:r,initialOpen:l}){const o=n.map((t,n)=>(0,e.createElement)(ln,{key:n,current:t}));return(0,e.createElement)(sn,{title:t,initialOpen:l},(0,e.createElement)("ul",{style:{padding:"0 0.5em"}},on.map(o,e=>an(e,{},r))))},{useContext:un}=wp.element,{__:dn}=wp.i18n,mn=function({children:t,fields:n,...r}){var l,o;const a=un(Xt),i=[...null!==(l=a.beforeFields)&&void 0!==l?l:[],...n,...null!==(o=a.afterFields)&&void 0!==o?o:[]];return i.length||a?.extra?.length||a?.filters?.length?(0,e.createElement)(Yt,{...r},Boolean(i.length)&&(0,e.createElement)(cn,{title:dn("Fields:","jet-form-builder"),items:i,initialOpen:!0},t),Boolean(a?.extra?.length)&&(0,e.createElement)(cn,{title:dn("Extra macros:","jet-form-builder"),items:a.extra},t),Boolean(a?.filters?.length)&&(0,e.createElement)(cn,{title:dn("Filters:","jet-form-builder"),items:a.filters},t)):null},{useContext:pn}=wp.element,{Button:fn}=wp.components,hn=function({onClick:t}){const n=pn(Qt),r=n.fullName?n.fullName():`%${n.value}%`,l="function"==typeof n.label?n.label():n.label||r,o=Boolean(n.is_repeater)?`${l} (repeater)`:l,a=Boolean(n.is_repeater_child)?"- ":"";return n.supports_option_label?(0,e.createElement)("div",{className:"jet-fb-macro-field-item",style:{whiteSpace:"nowrap"}},(0,e.createElement)("div",{className:"jet-fb-macro-field-item__label"},o),(0,e.createElement)("div",{className:"jet-fb-macro-field-item__formats"},"- ",(0,e.createElement)(fn,{isLink:!0,onClick:()=>t(r,n)},"Format: value")," ",(0,e.createElement)("br",null),"- ",(0,e.createElement)(fn,{isLink:!0,onClick:()=>t(r,n,"option-label")},"Format: label value"))):(0,e.createElement)(e.Fragment,null,a,(0,e.createElement)(fn,{style:{whiteSpace:"nowrap"},isLink:!0,onClick:()=>t(r,n)},o))},bn=window.jfb.blocksToActions,gn=["jet-forms/checkbox-field","jet-forms/radio-field","jet-forms/select-field"];function yn(e){return gn.includes(e?.name)}function vn(e={}){return e.name||e.field_name||e.fieldName||""}const wn=function({onClick:t=()=>{},withCurrent:n=!1,...r}){const l=(0,bn.useFields)({excludeCurrent:!n}),o=(0,pe.useSelect)(e=>{const t=e("core/block-editor");return function(e=[]){const t={},n=(e,r=null)=>{(e||[]).forEach(e=>{const l=vn(e?.attributes),o="jet-forms/repeater-field"===e?.name;l&&(t[l]={is_repeater:o,is_repeater_child:Boolean(r)&&!o,repeater_name:r?vn(r.attributes):"",supports_option_label:yn(e)});const a=o?e:r;e?.innerBlocks?.length&&n(e.innerBlocks,a)})};return n(e),t}(t?.getBlocks?.()||[])},[]),a=(l||[]).map(e=>{const t=o?.[e?.value];return t?{...e,...t}:e});return(0,e.createElement)(mn,{withCurrent:n,fields:a,...r},(0,e.createElement)(hn,{onClick:t}))},{Flex:_n}=wp.components,En=function({label:t,children:n,...r}){return(0,e.createElement)(_n,{align:"center",justify:"flex-start",style:{marginBottom:"8px"}},(0,e.createElement)("label",{className:"jet-fb label",...r},t),n)},{FlexItem:Cn}=wp.components,{useInstanceId:kn}=wp.compose,Sn=function({children:t,value:n,label:r,onChangePreset:l=!1,onChangeMacros:o=!1}){const a=kn(Cn,"jfb-AdvancedInspectorControl");return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(En,{label:r,htmlFor:a},!1!==l&&(0,e.createElement)(Vt,{value:n,onChange:l}),!1!==o&&(0,e.createElement)(wn,{onClick:o})),"function"==typeof t?t({instanceId:a}):t)};function jn(){tn.call(this)}jn.prototype=Object.create(tn.prototype),jn.prototype.isServerSide=!1,jn.prototype.isClientSide=!1,jn.prototype.name="",jn.prototype.namespace="CT",jn.prototype.help=null,jn.prototype.fullHelp=function(){return this.help},jn.prototype.fullName=function(){return`%${this.namespace}::${this.name}%`};const xn=jn,{useSelect:Nn}=wp.data,{__:Fn}=wp.i18n,Tn=new xn;Tn.fullName=()=>"%this%",Tn.fullHelp=()=>Fn("Returns current field value","jet-form-builder");const Bn=function({children:t,withThis:n=!1}){const r=Nn(e=>e("jet-forms/macros").getClientMacros(),[]),l=Nn(e=>e("jet-forms/macros").getClientFilters(),[]),o=n?{extra:r,afterFields:[Tn],filters:l}:{extra:r,filters:l};return(0,e.createElement)(Xt.Provider,{value:o},t)};function In(e,t,n){const r=n.selectionStart,l=n.selectionEnd;(e=null!=e?e:"").length||(t=`'${t}'`);let o=e.slice(0,r);const a=e.slice(l);return o+=t,setTimeout(()=>{n.focus(),n.selectionStart=o.length,n.selectionEnd=o.length}),o+a}const{useRef:An}=wp.element,On=function(e){var t;const[n,r]=fe(),l=null!==(t=n[e])&&void 0!==t?t:"",o=An();return[o,t=>{r({[e]:In(l,t,o.current)})}]},{__:Rn}=wp.i18n,{TextControl:Mn}=wp.components,Pn=function({label:t,help:n,hasMacro:r=!0}){const[l,o]=fe(),[a,i]=On("default");return he("default")?(0,e.createElement)(Te.Provider,{value:{show:!0}},(0,e.createElement)(Bn,null,(0,e.createElement)(Sn,{value:l.default,label:null!=t?t:Rn("Default Value","jet-form-builder"),onChangePreset:e=>o({default:e}),onChangeMacros:!!r&&i},({instanceId:t})=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Mn,{ref:a,id:t,value:l.default,className:"jet-fb m-unset",onChange:e=>o({default:e})}),(0,e.createElement)(ht,{name:"default"},null!=n?n:""))))):null},{PanelBody:Ln}=wp.components,{__:Gn}=wp.i18n,{BlockControls:Dn}=wp.blockEditor,{useCopyToClipboard:qn}=wp.compose,{TextControl:Vn,ToolbarGroup:Jn,ToolbarItem:$n,ToolbarButton:Un}=wp.components,Hn=function({children:t=null}){const n=de(),[r,l]=fe(),o=$(`Copied "${r.name}" to clipboard.`),a=qn(r.name,()=>o(!0));return(0,e.createElement)(Dn,{key:n("ToolBarFields-BlockControls")},(0,e.createElement)(Jn,{key:n("ToolBarFields-ToolbarGroup"),className:"jet-fb-block-toolbar"},(0,e.createElement)(Un,{isSmall:!0,icon:"admin-page",showTooltip:!0,shortcut:"Copy name",ref:a}),(0,e.createElement)($n,{as:Vn,value:r.name,onChange:e=>l({name:e})}),t))},{__:Wn}=wp.i18n,{ToolbarButton:zn}=wp.components,{BlockControls:Yn}=wp.blockEditor,{SVG:Kn,Path:Xn}=wp.primitives,Zn=function(){const[t,n]=fe();return he("required")?(0,e.createElement)(Yn,{group:"block"},(0,e.createElement)(zn,{icon:(0,e.createElement)(Kn,{xmlns:"http://www.w3.org/2000/svg",width:"24px",height:"24px",viewBox:"0 0 24 24",fill:"none"},(0,e.createElement)(Xn,{d:"M12 4L12 20",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Xn,{d:"M17.3137 6.00024L6.00001 17.314",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Xn,{d:"M20 12L4 12",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),(0,e.createElement)(Xn,{d:"M17.3137 17.3137L6.00001 6.00001",stroke:"currentcolor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),title:t.required?Wn("Click to make this field optional","jet-form-builder"):Wn("Click to make this field required","jet-form-builder"),onClick:()=>n({required:!t.required}),isActive:t.required})):null},{__:Qn}=wp.i18n,{PanelBody:er}=wp.components,{applyFilters:tr}=wp.hooks,{useBlockProps:nr}=wp.blockEditor,{applyFilters:rr}=wp.hooks,lr=()=>rr("jet.fb.register.fields.controls",{}),or=window.wp.compose,ar=(0,or.compose)((0,pe.withSelect)(X))(function({initialLabel:t="Valid",label:n="InValid",apiArgs:r={},gatewayRequestId:l,loadingGateway:o,onLoading:a=()=>{},onSuccess:i=()=>{},onFail:s=()=>{},isHidden:c=!1}){return(0,e.createElement)(K.FetchApiButton,{id:l,loadingState:o,initialLabel:t,label:n,apiArgs:r,onFail:s,onLoading:a,onSuccess:i,isHidden:c})}),ir="CLEAR_GATEWAY",sr="CLEAR_SCENARIO",cr="SET_CURRENT_GATEWAY_SCENARIO",ur="SET_CURRENT_GATEWAY",dr="SET_CURRENT_GATEWAY_SPECIFIC",mr="SET_CURRENT_GATEWAY_INNER",pr="SET_CURRENT_REQUEST",fr="SET_CURRENT_SCENARIO",hr="REGISTER_EVENT_TYPE",br="HARD_SET_CURRENT_GATEWAY",gr="HARD_SET_CURRENT_GATEWAY_SPECIFIC",yr={getCurrentRequestId:e=>e.currentRequest.id,getCurrentRequest:e=>e.currentRequest,getScenario:e=>e.currentScenario,getScenarioId:e=>e.currentScenario?.id,getGatewayId:e=>e.currentGateway?.gateway,getGateway:e=>e.currentGateway,getEventTypes:e=>e.eventTypes},vr={...yr,getGatewaySpecific:e=>e.currentGateway[yr.getGatewayId(e)]||{}},wr={[ir]:e=>({...e,currentGateway:{}}),[sr]:e=>({...e,currentScenario:{}}),[cr]:(e,t)=>({...e,currentScenario:{...e.currentScenario,...t.item||{}}}),[ur]:(e,t)=>({...e,currentGateway:{...e.currentGateway,...t.item}}),[dr]:(e,t)=>({...e,currentGateway:{...e.currentGateway,[e.currentGateway.gateway]:{...vr.getGatewaySpecific(e),...t.item}}}),[mr]:(e,t)=>{const{key:n,value:r}=t.item;return{...e,currentGateway:{...e.currentGateway,[n]:{...e.currentGateway[n]||{},...r}}}},[pr]:(e,t)=>{const n=[vr.getGatewayId(e),t.item?.id].filter(e=>e);return t.item.id=n.join("/"),{...e,currentRequest:t.item}},[fr]:(e,t)=>({...e,currentScenario:{...e.currentScenario,[e.currentScenario?.id]:{...e.currentScenario[e.currentScenario?.id]||{},...t.item||{}}}}),[br]:(e,t)=>(t.item&&(e.currentGateway[t.item]=t.value),{...e}),[gr]:(e,t)=>(t.item&&e.currentGateway?.gateway&&(e.currentGateway[e.currentGateway?.gateway]={},e.currentGateway[e.currentGateway?.gateway][t.item]=t.value),{...e}),[hr]:(e,t)=>{var n,r;const l={...t.item,gateway:null!==(n=t.item?.gateway)&&void 0!==n?n:e.currentGateway?.gateway,scenario:null!==(r=t.item?.scenario)&&void 0!==r?r:e.currentScenario?.id};return e.eventTypes.push(l),e}};Object.defineProperty(Er,"name",{value:"default",configurable:!0});const _r={currentRequest:{id:-1},currentGateway:{},currentScenario:{},eventTypes:[]};function Er(e=_r,t){const n=wr[t?.type];return n?n(e,t):e}const Cr={clearGateway:()=>({type:ir}),clearScenario:()=>({type:sr}),setRequest:e=>({type:pr,item:e}),setGateway:e=>({type:ur,item:e}),setGatewayInner:e=>({type:mr,item:e}),setGatewaySpecific:e=>({type:dr,item:e}),setScenario:e=>({type:cr,item:e}),setCurrentScenario:e=>({type:fr,item:e}),registerEventType:e=>({type:hr,item:e}),hardSetGateway:(e,t="")=>({type:br,item:e,value:t}),hardSetGatewaySpecific:(e,t="")=>({type:gr,item:e,value:t})},{createReduxStore:kr}=wp.data,Sr=kr("jet-forms/gateways",{reducer:Er,actions:Cr,selectors:vr}),jr="REGISTER",xr="UNREGISTER",Nr="LOCK_ACTIONS",Fr="CLEAR_DYNAMIC_EVENTS",Tr={getTypeIndex:(e,t)=>e.types.findIndex(e=>e.value===t),getTypes:e=>e.types,getGatewayTypes:e=>e.types.filter(e=>"gateway"in e),getAlwaysTypes:e=>e.types.filter(e=>"always"in e),getDynamicTypes:e=>e.types.filter(({isDynamic:e})=>e),getType(e,t){const n=Tr.getTypeIndex(e,t);return e.types[n]},getUnsupported(e,t){var n;const r=null!==(n=e.lockedActions[t])&&void 0!==n&&n;return!1===r?[]:r.unsupported},getSupported(e,t){var n;const r=null!==(n=e.lockedActions[t])&&void 0!==n&&n;return!1===r?[]:r.supported},isValid(e,t,n){const r=Tr.getUnsupported(e,t);if(r.length&&r.includes(n))return!1;const l=Tr.getSupported(e,t);return!l.length||l.includes(n)},filterList:(e,t,n)=>n.filter(n=>Tr.isValid(e,t,n)),getHelpMap(e){const t={};for(const{value:n,help:r}of e.types)t[n]=r;return t},getEventValuesByGateway(e){const t={};for(const n of e.types){if(!n.gateway)continue;const e=n.gateway;t[e]||(t[e]=[]),t[e].push(n.value)}return t}},Br={...Tr},Ir={[jr](e,t){const{types:n}=e;for(const r of t.items){r.title=r.label;const t=Br.getTypeIndex(e,r.value);-1===t?n.push({...r}):n[t]={...r}}return{...e,types:n}},[Nr](e){for(const{id:n,self:r}of window.jetFormActionTypes){var t;const l=null!==(t=window[r])&&void 0!==t&&t;if(!1===l)continue;const{__unsupported_events:o,__supported_events:a}=l,i={unsupported:e.types.filter(({self:e})=>o.includes(e)).map(({value:e})=>e),supported:e.types.filter(({self:e})=>a.includes(e)).map(({value:e})=>e)};(i.supported.length||i.unsupported.length)&&(e.lockedActions[n]=i)}return e},[xr](e,t){const{types:n}=t;return e.types=e.types.filter(({value:e})=>!n.includes(e)),e},[Fr]:e=>(e.types=e.types.filter(({isDynamic:e=!1})=>!e),e)};Object.defineProperty(Or,"name",{value:"default",configurable:!0});const Ar={types:[],labels:{},lockedActions:{}};function Or(e=Ar,t){const n=Ir[t?.type];return n?n(e,t):e}const Rr={register:e=>({type:jr,items:e}),lockActions:()=>({type:Nr}),unRegister:e=>({type:xr,types:e}),clearDynamicEvents:()=>({type:Fr})},{createReduxStore:Mr}=wp.data,Pr=Mr("jet-forms/events",{reducer:Or,actions:Rr,selectors:Br}),Lr="REGISTER",Gr="ADD_RENDER_STATE",Dr="ADD_RENDER_STATES",qr="DELETE_RENDER_STATES",{doAction:Vr}=wp.hooks,Jr={...{[Lr](e,t){const{operators:n,functions:r,render_states:l}=t.items;return e.operators=[...n],e.functions=[...r],e.renderStates=[...l],Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e},[Gr]:(e,t)=>(e.renderStates.push(t.item),Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e),[Dr](e,t){for(const n of t.items)e.renderStates.push(n);return Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e},[qr](e,t){const n=Array.isArray(t.items)?[...t.items]:[t.items];return e.renderStates=e.renderStates.filter(({value:e})=>!n.includes(e)),Vr("jet.fb.change.blockConditions.renderState",e.renderStates),e}}},{__:$r}=wp.i18n,Ur=function(e,t="code"){var n;if(!function(e){let t;try{t=JSON.parse(e)}catch(e){return!1}return!!t?.jet_preset}(e=null!=e?e:""))return e;const r=JSON.parse(e),l=$r("Preset from","jet-form-builder"),o=null!==(n=r?.from)&&void 0!==n?n:"(empty)";let a;switch(t){case"code":a=`${o}`;break;case"b":a=`${o}`}return[l,a].join(" ")};Object.defineProperty(Kr,"name",{value:"default",configurable:!0});const{select:Hr}=wp.data,{__:Wr}=wp.i18n,zr=function(e){const t=Hr("jet-forms/block-conditions").getOperator(e?.operator);return t?[`${e?.field||"(no field)"}`,t.label].join(" "):""},Yr={functions:[],operators:[],conditionReaders:{default(e){const t=Hr("jet-forms/block-conditions").getOperator(e?.operator);if(!t)return"";const n=e?.field||"(no field)",r=Ur(e.value,"b")||"(no value)";return[`${n}`,t.label,`${r}`].join(" ")},empty:zr,not_empty:zr,render_state(e){var t;const n=(null!==(t=e?.render_state)&&void 0!==t?t:[]).map(e=>`${e}`);return[1===n.length?Wr("Is render state","jet-form-builder"):Wr("One of the render states","jet-form-builder"),n.join(", ")].join(": ")}},renderStates:[]};function Kr(e=Yr,t){const n=Jr[t?.type];return n?n(e,t):e}const Xr={register:e=>({type:Lr,items:e}),addRenderState:e=>({type:Gr,item:e}),addRenderStates:e=>({type:Dr,items:e}),deleteRenderStates:e=>({type:qr,items:e})},Zr={getFunctions:e=>e.functions,getOperators:e=>e.operators,getRenderStates:e=>e.renderStates,getSwitchableRenderStates:e=>e.renderStates.filter(({is_custom:e=!1,can_be_switched:t=!1})=>e||t),getCustomRenderStates:e=>e.renderStates.filter(({is_custom:e=!1})=>e),getOperator(e,t){const n=e.operators.findIndex(({value:e})=>e===t);return-1!==n&&e.operators[n]},readCondition(e,t){var n;const{operator:r=""}=t;if(!r)return"";const l=null!==(n=e.conditionReaders[r])&&void 0!==n&&n;return"function"==typeof l?l(t):e.conditionReaders.default(t)},getFunction:(e,t)=>e.functions.find(({value:e})=>e===t),getFunctionDisplay:(e,t)=>Zr.getFunction(e,t)?.display},Qr={...Zr},{createReduxStore:el}=wp.data,tl=el("jet-forms/block-conditions",{reducer:Kr,actions:Xr,selectors:Qr}),nl="REGISTER_MACRO",rl={[nl](e,t){const{items:n,isClient:r}=t,l=Array.isArray(n)?n:[n];for(const e of l)if(!(e instanceof xn))throw new Error("^^^ Invalid macro item ^^^");return r?e.clientMacros.push(...l):e.serverMacros.push(...l),e}},{__:ll}=wp.i18n;function ol(){xn.call(this),this.name="CurrentDate",this.isClientSide=!0,this.fullHelp=()=>(0,e.createElement)(e.Fragment,null,ll("Returns the current timestamp. Replacing","jet-form-builder")," ",(0,e.createElement)("code",null,"Date.now()"))}ol.prototype=Object.create(xn.prototype);const al=ol,{__:il}=wp.i18n;function sl(){xn.call(this),this.name="Min_In_Sec",this.isClientSide=!0,this.help=il("Number of milliseconds in one minute","jet-form-builder")}sl.prototype=Object.create(xn.prototype);const cl=sl,{__:ul}=wp.i18n;function dl(){xn.call(this),this.name="Month_In_Sec",this.isClientSide=!0,this.help=ul("Number of milliseconds in one month","jet-form-builder")}dl.prototype=Object.create(xn.prototype);const ml=dl,{__:pl}=wp.i18n;function fl(){xn.call(this),this.name="Day_In_Sec",this.isClientSide=!0,this.help=pl("Number of milliseconds in one day","jet-form-builder")}fl.prototype=Object.create(xn.prototype);const hl=fl,{__:bl}=wp.i18n;function gl(){xn.call(this),this.name="Year_In_Sec",this.isClientSide=!0,this.help=bl("Number of milliseconds in one year","jet-form-builder")}gl.prototype=Object.create(xn.prototype);const yl=gl,{__:vl}=wp.i18n;function wl(){tn.call(this)}wl.prototype=Object.create(tn.prototype),wl.prototype.docArgument=!1,wl.prototype.help=null,wl.prototype.isServerSide=!1,wl.prototype.isClientSide=!1,wl.prototype.getArgumentsList=function(){if(!this.docArgument||!this.docArgument.length)return null;const e=Array.isArray(this.docArgument)?this.docArgument:[this.docArgument],t=[];for(const n of e)switch(n){case"string":case String:t.push(vl("String","jet-form-builder"));break;case"number":case Number:t.push(vl("Number","jet-form-builder"));break;case"array":case Array:t.push(vl("Array","jet-form-builder"));break;case"any":t.push(vl("Anything","jet-form-builder"))}return t.join(" | ")},wl.prototype.fullHelp=function(){if(!this.docArgument&&!this.help)return null;const t=this.help,n=this.getArgumentsList();return(0,e.createElement)(e.Fragment,null,n&&(0,e.createElement)("div",{style:{marginBottom:"0.5em"}},vl("Arguments:","jet-form-builder")+" ",(0,e.createElement)("code",null,n)),"function"!=typeof t?t:(0,e.createElement)(t,null))};const _l=wl,{__:El}=wp.i18n;function Cl(){_l.call(this),this.label=()=>El("addDay","jet-form-builder"),this.fullName=()=>"|addDay",this.docArgument=Number,this.isClientSide=!0,this.help=El("Adds the passed number of days via an argument to a macro that returns a date or a timestamp.","jet-form-builder")}Cl.prototype=Object.create(_l.prototype);const kl=Cl,{__:Sl}=wp.i18n;function jl(){_l.call(this),this.label=()=>Sl("addMonth","jet-form-builder"),this.fullName=()=>"|addMonth",this.docArgument=Number,this.isClientSide=!0,this.help=Sl("Adds the passed number of months via an argument to a macro that returns a date or a timestamp.","jet-form-builder")}jl.prototype=Object.create(_l.prototype);const xl=jl,{__:Nl}=wp.i18n;function Fl(){_l.call(this),this.label=()=>Nl("addYear","jet-form-builder"),this.fullName=()=>"|addYear",this.docArgument=Number,this.isClientSide=!0,this.help=Nl("Adds the passed number of years through an argument to a macro that returns a date or a timestamp.","jet-form-builder")}Fl.prototype=Object.create(_l.prototype);const Tl=Fl,{__:Bl}=wp.i18n;function Il(){_l.call(this),this.label=()=>Bl("ifEmpty","jet-form-builder"),this.fullName=()=>"|ifEmpty",this.docArgument="any",this.isClientSide=!0,this.help=Bl("If the macro returns an empty value, then the filter returns the value passed in the argument","jet-form-builder")}Il.prototype=Object.create(_l.prototype);const Al=Il,{__:Ol}=wp.i18n;function Rl(){_l.call(this),this.label=()=>Ol("length","jet-form-builder"),this.fullName=()=>"|length",this.isClientSide=!0,this.help=Ol("Returns the length of a string or array","jet-form-builder")}Rl.prototype=Object.create(_l.prototype);const Ml=Rl,{__:Pl}=wp.i18n;function Ll(){_l.call(this),this.label=()=>Pl("toDate","jet-form-builder"),this.fullName=()=>"|toDate",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Pl("Formats the timestamp according to the Date Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Pl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"2022-02-24"),(0,e.createElement)("hr",null),Pl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Pl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Pl(").","jet-form-builder"),(0,e.createElement)("hr",null),Pl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toDate(false)"))}Ll.prototype=Object.create(_l.prototype);const Gl=Ll,{__:Dl}=wp.i18n;function ql(){_l.call(this),this.label=()=>Dl("toDateTime","jet-form-builder"),this.fullName=()=>"|toDateTime",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Dl("Formats the timestamp according to the Datetime Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Dl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"2022-02-24T04:25"),(0,e.createElement)("hr",null),Dl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Dl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Dl(").","jet-form-builder"),(0,e.createElement)("hr",null),Dl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toDateTime(false)"))}ql.prototype=Object.create(_l.prototype);const Vl=ql,{__:Jl}=wp.i18n;function $l(){_l.call(this),this.label=()=>Jl("toTime","jet-form-builder"),this.fullName=()=>"|toTime",this.docArgument=Boolean,this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,Jl("Formats the timestamp according to the Time Field format.","jet-form-builder"),(0,e.createElement)("hr",null),Jl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",null,"04:25"),(0,e.createElement)("hr",null),Jl("Optionally accepts ","jet-form-builder"),(0,e.createElement)("code",null,"false"),Jl(" to use the user’s local timezone instead of UTC (default: ","jet-form-builder"),(0,e.createElement)("code",null,"true"),Jl(").","jet-form-builder"),(0,e.createElement)("hr",null),Jl("Example:","jet-form-builder")+" ",(0,e.createElement)("code",{style:{fontSize:"12px"}},"toTime(false)"))}$l.prototype=Object.create(_l.prototype);const Ul=$l,{__:Hl}=wp.i18n;function Wl(){_l.call(this),this.label=()=>Hl("subDay","jet-form-builder"),this.fullName=()=>"|subDay",this.docArgument=Number,this.isClientSide=!0,this.help=Hl("Subtracts the number of days by argument from a macro that returns a date or timestamp.","jet-form-builder")}Wl.prototype=Object.create(_l.prototype);const zl=Wl,{__:Yl}=wp.i18n;function Kl(){_l.call(this),this.label=()=>Yl("subMonth","jet-form-builder"),this.fullName=()=>"|subMonth",this.docArgument=Number,this.isClientSide=!0,this.help=Yl("Subtracts the number of months by argument from a macro that returns a date or timestamp.","jet-form-builder")}Kl.prototype=Object.create(_l.prototype);const Xl=Kl,{__:Zl}=wp.i18n;function Ql(){_l.call(this),this.label=()=>Zl("subYear","jet-form-builder"),this.fullName=()=>"|subYear",this.docArgument=Number,this.isClientSide=!0,this.help=Zl("Subtracts the number of years by argument from a macro that returns a date or timestamp.","jet-form-builder")}Ql.prototype=Object.create(_l.prototype);const eo=Ql,{__:to}=wp.i18n;function no(){_l.call(this),this.label=()=>to("toDayInMs","jet-form-builder"),this.fullName=()=>"|toDayInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,to("Converts a number of days into milliseconds.","jet-form-builder"))}no.prototype=Object.create(_l.prototype);const ro=no,{__:lo}=wp.i18n;function oo(){_l.call(this),this.label=()=>lo("toHourInMs","jet-form-builder"),this.fullName=()=>"|toHourInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,lo("Converts a number of hours into milliseconds.","jet-form-builder"))}oo.prototype=Object.create(_l.prototype);const ao=oo,{__:io}=wp.i18n;function so(){_l.call(this),this.label=()=>io("toMinuteInMs","jet-form-builder"),this.fullName=()=>"|toMinuteInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,io("Converts a number of minutes into milliseconds.","jet-form-builder"))}so.prototype=Object.create(_l.prototype);const co=so,{__:uo}=wp.i18n;function mo(){_l.call(this),this.label=()=>uo("toMonthInMs","jet-form-builder"),this.fullName=()=>"|toMonthInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,uo("Converts a number of months into milliseconds.","jet-form-builder"))}mo.prototype=Object.create(_l.prototype);const po=mo,{__:fo}=wp.i18n;function ho(){_l.call(this),this.label=()=>fo("toWeekInMs","jet-form-builder"),this.fullName=()=>"|toWeekInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,fo("Converts a number of weeks into milliseconds.","jet-form-builder"))}ho.prototype=Object.create(_l.prototype);const bo=ho,{__:go}=wp.i18n;function yo(){_l.call(this),this.label=()=>go("toYearInMs","jet-form-builder"),this.fullName=()=>"|toYearInMs",this.isClientSide=!0,this.help=()=>(0,e.createElement)(e.Fragment,null,go("Converts a number of years into milliseconds.","jet-form-builder"))}yo.prototype=Object.create(_l.prototype);const vo=yo,{__:wo}=wp.i18n;function _o(){_l.call(this),this.label=()=>wo("Timestamp","jet-form-builder"),this.fullName=()=>"|T",this.isClientSide=!0,this.help=wo("Returns the time stamp. Usually used in conjunction with Date & Datetime and Time Field.","jet-form-builder",'Example\nFor Date Field\n%date_field|T%\nResult if date_field is filled with value "2022-10-22"')}_o.prototype=Object.create(_l.prototype);const Eo=_o;Object.defineProperty(ko,"name",{value:"default",configurable:!0});const Co={macros:[new al,new cl,new hl,new ml,new yl],filters:[new Al,new Eo,new Ml,new kl,new xl,new Tl,new zl,new Xl,new eo,new Gl,new Vl,new Ul,new co,new ao,new ro,new bo,new po,new vo]};function ko(e=Co,t){const n=rl[t?.type];return n?n(e,t):e}const So={registerMacro:(e,t=!0)=>({type:nl,items:e,isClient:t})},jo={getClientMacros:e=>e.macros.filter(function(e){return e.isClientSide}),getServerMacros:e=>e.macros.filter(function(e){return e.isServerSide}),getClientFilters:e=>e.filters.filter(function(e){return e.isClientSide}),getServerFilters:e=>e.filters.filter(function(e){return e.isServerSide})},{createReduxStore:xo}=wp.data,No=xo("jet-forms/macros",{reducer:ko,actions:So,selectors:jo}),Fo="REGISTER",To={[Fo](e,t){const{messages:n,ssr_callbacks:r,formats:l,rule_types:o}=t.items;return e.messages=JSON.parse(JSON.stringify(n)),e.ssrCallbacks=JSON.parse(JSON.stringify(r)),e.formats=JSON.parse(JSON.stringify(l)),e.ruleTypes=JSON.parse(JSON.stringify(o)),e}},Bo={...To};Object.defineProperty(Ro,"name",{value:"default",configurable:!0});const{select:Io}=wp.data,{__:Ao}=wp.i18n,Oo={messages:[],ssrCallbacks:[],formats:[],ruleTypes:[],ruleReaders:{default(e){const t=Io("jet-forms/validation").getRule(e.type);if(!t)return"";let n=e?.field||e?.value||"";return n=Ur(n,"b")||"(no value)",[t.label,`${n}`].join(" ")},ssr:e=>[Ao("Function:","jet-form-builder"),e?.value].join(" ")}};function Ro(e=Oo,t){const n=Bo[t?.type];return n?n(e,t):e}const Mo={register:e=>({type:Fo,items:e})},Po={...{getRule(e,t){const n=e.ruleTypes.findIndex(({value:e})=>e===t);return-1!==n&&e.ruleTypes[n]},readRule(e,t){var n;const{type:r=""}=t;if(!r)return"";const l=null!==(n=e.ruleReaders[r])&&void 0!==n&&n;return"function"==typeof l?l(t):e.ruleReaders.default(t)}}},{createReduxStore:Lo}=wp.data,Go=Lo("jet-forms/validation",{reducer:Ro,actions:Mo,selectors:Po}),Do="SET_BLOCKS",qo="SET_BLOCKS_FIRST",Vo="TOGGLE_EXECUTE",Jo={...{[Do](e,t){const n=[];for(const r in t.blockMap)t.blockMap.hasOwnProperty(r)&&!e.blockMap.hasOwnProperty(r)&&n.push(r);return{...e,blocks:t.blocks,blockMap:t.blockMap,recentlyAdded:n}},[qo]:(e,t)=>({...e,blocks:t.blocks,blockMap:t.blockMap}),[Vo]:e=>({...e,executed:!0})}};Object.defineProperty(Uo,"name",{value:"default",configurable:!0});const $o={blocks:[],blockMap:{},executed:!1,recentlyAdded:[],sanitizers:{name:[e=>e.replace(/[^\w\-]/gi,""),e=>"children"===e?"_"+e:e]}};function Uo(e=$o,t){const n=Jo[t?.type];return n?n(e,t):e}const{select:Ho}=wp.data,Wo=function(){const e=[],t={};return j((n,r)=>{var l;if(!n?.name?.includes("jet-forms/"))return;const o=Ho("core/blocks").getBlockType(n.name),a=o.jfbResolveBlock.call(n);if(o.hasOwnProperty("jfbGetFields")&&(a.fields=o.jfbGetFields.call(n)),!r?.name)return e.push(a),void(t[a.clientId]=a);const i=null!==(l=t[r?.clientId])&&void 0!==l&&l;i&&(Object.defineProperty(a,"parentBlock",{get:()=>i}),i.innerBlocks=i?.innerBlocks||[],i.innerBlocks.push(a),t[a.clientId]=a)}),{blocks:e,blockMap:t}},{select:zo,dispatch:Yo}=wp.data,Ko={setBlocks(e=null){null===e&&(e=Wo());const t=zo(ra).isExecuted();return t||Yo(ra).toggleExecute(),{type:t?Do:qo,blocks:e.blocks,blockMap:e.blockMap}},toggleExecute:()=>({type:Vo})},Xo={getBlocks:e=>e.blocks,getBlockMap:e=>e.blockMap,getFields(e,{withInner:t=!0,currentId:n=!1}){const r=[],l=e=>{for(const o of e)o.fields?.length&&o.clientId!==n&&r.push(...o.fields),t&&o.innerBlocks?.length&&l(o.innerBlocks)};return l(e.blocks),r},isExecuted:e=>e.executed,isRecentlyAdded:(e,t)=>-1!==e.recentlyAdded.indexOf(t),getUniqueNames(e,t){var n,r;const l=null!==(n=e.blockMap[t])&&void 0!==n&&n;if(!l)return{hasChanged:!1};let o=!1;const a=null!==(r=l?.fields?.map?.(({value:e})=>e))&&void 0!==r?r:[],i=l.hasOwnProperty("parentBlock")?l.parentBlock.innerBlocks:e.blocks,s=e=>{for(const t of e){const n=a.indexOf(t.value);-1!==n&&("field_name"!==t.value?(a[n]=`${a[n]}_copy`,o=!0,s(e)):o=!0)}};for(const e of i){var c;t!==e.clientId&&s(null!==(c=e?.fields)&&void 0!==c?c:[])}return{hasChanged:o,names:a.join("|")}},getSanitizedAttributes(e,t,{name:n}={}){for(const o in t){var r,l;if(!t.hasOwnProperty(o))continue;const a=null!==(r=null!==(l=e.sanitizers?.[n]?.[o])&&void 0!==l?l:e.sanitizers?.[o])&&void 0!==r&&r;if(a?.length)for(const e of a)"function"==typeof e&&(t[o]=e(t[o]))}return t},isUniqueName(e,t){const{hasChanged:n}=Xo.getUniqueNames(e,t);return!n},getBlock:(e,t)=>e.blocks.find(({name:e,clientId:n})=>[e,n].includes(t)),getBlockByName(e,t){if(!t)return!1;const n=e=>{for(const r of e){if(r.fields.some(({value:e})=>e===t))return r;r.innerBlocks?.length&&n(r.innerBlocks)}};return n(e.blocks),!1},getBlockNameByName(e,t){var n;const r=Xo.getBlockByName(e,t);return null!==(n=r?.name)&&void 0!==n?n:""},getBlockById(e,t){var n;return null!==(n=e.blockMap[t])&&void 0!==n&&n}},Zo={...Xo},{createReduxStore:Qo,dispatch:ea,select:ta,subscribe:na}=wp.data,ra="jet-forms/fields";let la,oa;na(()=>{const{debounce:e}=window._,{setBlocks:t}=ea(ra);e(()=>{const e=ta("core/block-editor").getGlobalBlockCount();if(la!==e)return la=e,void t();const n=Wo(),r=JSON.stringify(n.blocks);r!==oa&&(oa=r,t(n))},100)()});const aa=Qo(ra,{reducer:Uo,actions:Ko,selectors:Zo});n(4180);const{register:ia,dispatch:sa}=wp.data,{addAction:ca}=wp.hooks;[Sr,Pr,tl,No,Go,aa].forEach(ia),sa("jet-forms/events").register(window.jetFormEvents.types),sa("jet-forms/events").lockActions(),sa("jet-forms/validation").register(window.jetFormValidation),ca("jet.fb.change.blockConditions.renderState","jet-form-builder/events",function(e){sa("jet-forms/events").clearDynamicEvents();const t=e.map(({value:e})=>({value:e="ON."+e,label:e,isDynamic:!0}));sa("jet-forms/events").register(t)}),sa("jet-forms/block-conditions").register(window.jetFormBlockConditions);const{createContext:ua}=wp.element,da=ua(!1),{createContext:ma}=wp.element,pa=ma({currentItem:{},changeCurrentItem:()=>{},currentIndex:-1}),fa=(0,o.createContext)({isSupported:e=>!1,render:({children:e})=>e}),ha=(0,o.createContext)({isSupported:e=>!1,render:({currentItem:e,index:t})=>null}),ba=(0,o.createContext)({edit:e=>!0,move:e=>!0,clone:e=>!0,delete:e=>!0}),{createContext:ga}=wp.element,ya=ga({}),{ToggleControl:va}=wp.components,{__:wa}=wp.i18n,{useState:_a}=wp.element,{useContext:Ea}=wp.element,Ca=function(e){if(void 0===e)return null;const t=Ea(da),n=function({oldIndex:t,newIndex:n}){e(e=>{const r=JSON.parse(JSON.stringify(e));return[r[n],r[t]]=[r[t],r[n]],r})};return{changeCurrentItem:function(t,n){e(e=>{const r=JSON.parse(JSON.stringify(e));return r[n]={...e[n],...t},r})},toggleVisible:function(t){e(e=>{const n=JSON.parse(JSON.stringify(e));return n[t].__visible=!n[t].__visible,n})},moveDown:function(e){n({oldIndex:e,newIndex:e+1})},moveUp:function(e){n({oldIndex:e,newIndex:e-1})},cloneItem:function(t){e(e=>{const n=JSON.parse(JSON.stringify(e)),[r,l]=[n.slice(0,t+1),n.slice(t+1)];return[...r,n[t],...l]})},addNewItem:function(t){e(e=>[...e,{__visible:!0,...t}])},removeOption:function(n){t&&!(e=>confirm((0,d.sprintf)((0,d.__)("Are you sure you want to remove item %d?","jet-form-builder"),e+1)))(n)||e(e=>{const t=JSON.parse(JSON.stringify(e));return t.splice(n,1),t})}}},{createContext:ka}=wp.element,Sa=ka(!1),{Button:ja}=wp.components,{useContext:xa}=wp.element,Na=function(t){var n;const{item:r,onSetState:l,functions:o,children:a}=t,{addNewItem:i}=null!==(n=null!=o?o:Ca(l))&&void 0!==n?n:xa(Sa);return(0,e.createElement)(ja,{icon:"plus-alt2",isSecondary:!0,onClick:()=>i(r)},a)};let{Card:Fa,Button:Ta,CardHeader:Ba,CardBody:Ia,ToggleGroupControl:Aa,__experimentalToggleGroupControl:Oa}=wp.components;const{useContext:Ra}=wp.element,{__:Ma}=wp.i18n;Aa=Aa||Oa;const Pa=function(t){var n;const{items:r,onSetState:l,functions:o,children:a}=t,{cloneItem:i,moveUp:s,moveDown:c,toggleVisible:u,changeCurrentItem:d,removeOption:m}=null!==(n=null!=o?o:Ca(l))&&void 0!==n?n:Ra(Sa),{isSupported:p,render:f}=Ra(ha),{edit:h,move:b,clone:g,delete:y}=Ra(ba),v=({currentItem:t,index:n})=>p(t)?(0,e.createElement)(f,{currentItem:t,index:n}):(0,e.createElement)("span",{className:"repeater-item-title"},`#${n+1}`);return(0,e.createElement)("div",{className:"jet-form-builder__repeater-component",key:"jet-form-builder-repeater"},r.map((t,n)=>(0,e.createElement)(Fa,{size:"small",elevation:2,className:"jet-form-builder__repeater-component-item",key:`jet-form-builder__repeater-component-item-${n}`},(0,e.createElement)(Ba,{className:"repeater__item__header"},(0,e.createElement)("div",{className:"repeater-item__left-heading"},(0,e.createElement)(Aa,{className:"repeater-action-buttons jet-fb-toggle-group-control",hideLabelFromVision:!0},(!h||h(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,icon:t.__visible?"no-alt":"edit",onClick:()=>u(n),className:"repeater-action-button jet-fb-is-thick"}),(!b||b(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,isSecondary:!0,disabled:!Boolean(n),icon:"arrow-up-alt2",onClick:()=>s(n),className:"repeater-action-button jet-fb-is-thick"}),(!b||b(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,isSecondary:!0,disabled:!(nc(n),className:"repeater-action-button jet-fb-is-thick"})),(0,e.createElement)(v,{currentItem:t,index:n})),(0,e.createElement)(Aa,{className:"jet-fb-toggle-group-control",hideLabelFromVision:!0},(!g||g(t))&&(0,e.createElement)(Ta,{variant:"tertiary",isSmall:!0,isSecondary:!0,onClick:()=>i(n),className:"jet-fb-is-thick",icon:"admin-page"}),(!y||y(t))&&(0,e.createElement)(Yt,{icon:"trash",isDestructive:!0},(0,e.createElement)($t.Consumer,null,({setShowPopover:t})=>(0,e.createElement)("div",{style:{padding:"0.5em",width:"max-content"}},(0,e.createElement)("span",null,Ma("Delete this item?","jet-form-builder"))," ",(0,e.createElement)(Ta,{isLink:!0,isDestructive:!0,onClick:()=>m(n)},Ma("Yes","jet-form-builder"))," / ",(0,e.createElement)(Ta,{isLink:!0,onClick:()=>t(!1)},Ma("No","jet-form-builder"))))))),t.__visible&&(0,e.createElement)(Ia,{className:"repeater-item__content",key:`jet-form-builder__card-body-${n}`},(()=>{const r={currentItem:t,changeCurrentItem:e=>d(e,n),currentIndex:n};return(0,e.createElement)(pa.Provider,{value:r},!a&&"Set up your Repeater Template, please.","function"==typeof a?a(r):a)})()))))},{__experimentalToggleGroupControl:La,__experimentalToggleGroupControlOption:Ga}=wp.components,{__:Da}=wp.i18n;let{formats:qa}=window.jetFormValidation;const Va=window.jfb.data,{messages:Ja}=window.jetFormValidation,$a=function(e){return Ja.find(({id:t})=>e===t)},{TextControl:Ua}=wp.components,Ha=Se((0,o.forwardRef)(function({icon:e,size:t=24,...n},r){return(0,o.cloneElement)(e,{width:t,height:t,...n,ref:r})}))({name:"StyledIcon",class:"sfqmk5y",propsAsIs:!0});n(483);const{createContext:Wa}=wp.element,za=Wa({FieldSelect:null,property:""}),Ya=function({state:t,children:n}){const r=Ca(t);return(0,e.createElement)(Sa.Provider,{value:r},n)},Ka=window.wp.apiFetch;var Xa=n.n(Ka);const{rest_add_state:Za,rest_delete_state:Qa}=window.jetFormBlockConditions,{Fill:ei}=c,ti=({setShowModal:t,changeCurrentItem:n,currentItem:r})=>{var l;const[a,i]=(0,o.useState)(!1),[s,c]=(0,o.useState)({}),[m,p]=(0,o.useState)("");let f=[...null!==(l=r.render_state)&&void 0!==l?l:[]];const{addRenderState:b,deleteRenderStates:g}=(0,pe.useDispatch)("jet-forms/block-conditions"),y=(0,pe.useSelect)(e=>e("jet-forms/block-conditions").getCustomRenderStates(),[a,s]);return(0,e.createElement)(h,{title:(0,d.__)("Register custom render state","jet-form-builder"),onRequestClose:()=>t(!1),classNames:["width-45"]},(0,e.createElement)("div",{className:"jet-fb with-button"},(0,e.createElement)(u.TextControl,{value:m,onChange:e=>p(e),placeholder:(0,d.__)("Set your custom state name","jet-form-builder")}),(0,e.createElement)(u.Button,{variant:"secondary",onClick:()=>{i(!0),Za.data={value:m},Xa()(Za).then(e=>{var r;r=e.state,b(r),f.push(r.value),n({render_state:f}),i(!1),t(!1)}).catch(e=>{console.error(e),i(!1)})},disabled:a,isBusy:a,style:{padding:"7px 12px",height:"unset"}},(0,d.__)("Add","jet-form-builder"))),Boolean(y?.length)&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",{className:"jet-fb flex mb-05-em"},(0,d.__)("Manage your custom states:","jet-form-builder")),(0,e.createElement)("div",{className:"jet-fb-buttons-flex"},y.map(t=>{var r;return(0,e.createElement)(u.Button,{key:t.value,icon:"no-alt",iconPosition:"right",onClick:()=>{return e=t.value,Qa.data={list:[e]},c(t=>({...t,[e]:!0})),void Xa()(Qa).then(()=>{(e=>{g(e),f=f.filter(t=>t!==e),n({render_state:f})})(e)}).catch(console.error).finally(()=>{c(t=>({...t,[e]:!1}))});var e},isBusy:null!==(r=s[t.value])&&void 0!==r&&r},t.label)}))),(0,e.createElement)(ei,null,(0,e.createElement)("span",null)))},{Button:ni,BaseControl:ri,FormTokenField:li}=wp.components,{__:oi}=wp.i18n,{useState:ai}=wp.element,{useSelect:ii}=wp.data,si=({currentItem:t,changeCurrentItem:n})=>{const[r,l]=ai(!1),o=ii(e=>y(e("jet-forms/block-conditions").getRenderStates(),"value"),[r]);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ri,{label:oi("Render State","jet-form-builder"),className:"control-flex"},(0,e.createElement)("div",null,(0,e.createElement)("label",{className:"jet-fb label mb-05-em"},oi("Add render state","jet-form-builder")),(0,e.createElement)("div",{className:"jet-fb with-button clear-label"},(0,e.createElement)(li,{value:t.render_state,suggestions:o,onChange:e=>n({render_state:e}),tokenizeOnSpace:!0,__experimentalExpandOnFocus:!0}),(0,e.createElement)(ni,{label:oi("New render state","jet-form-builder"),variant:"secondary",icon:"plus-alt2",onClick:()=>l(!0)})))),r&&(0,e.createElement)(ti,{setShowModal:l,changeCurrentItem:n,currentItem:t}))},ci=function({children:t,value:n,label:r,onChangePreset:l=!1,onChangeMacros:o=!1,macroWithCurrent:a=!1}){const i=(0,or.useInstanceId)(u.FlexItem,"jfb-AdvancedModalControl");return(0,e.createElement)("div",{className:"components-base-control"},(0,e.createElement)(u.Flex,{align:"flex-start",className:"components-base-control__field"},(0,e.createElement)(u.FlexItem,{isBlock:!0},(0,e.createElement)(u.Flex,{align:"center",justify:"flex-start"},(0,e.createElement)("label",{htmlFor:i,className:"jet-fb label"},r),!1!==l&&(0,e.createElement)(Vt,{value:n,onChange:l}),!1!==o&&(0,e.createElement)(wn,{onClick:o,withCurrent:a}))),(0,e.createElement)(u.FlexItem,{isBlock:!0,style:{flex:3,marginLeft:"unset"}},"function"==typeof t?t({instanceId:i}):t)))},{TextareaControl:ui,withFilters:di}=wp.components,{__:mi}=wp.i18n,pi=di("jet.fb.block.conditions.options")(t=>{const{currentItem:n,changeCurrentItem:r}=t,l=de();return["empty","not_empty"].includes(n.operator)?null:"render_state"===n.operator?(0,e.createElement)(si,{key:l("RenderStateOptions"),changeCurrentItem:r,currentItem:n}):(0,e.createElement)(Bn,null,(0,e.createElement)(ci,{value:n.value,label:mi("Value to compare","jet-form-builder"),onChangePreset:e=>r({value:e}),onChangeMacros:e=>{var t;return r({value:(null!==(t=n.value)&&void 0!==t?t:"")+e})}},({instanceId:t})=>(0,e.createElement)(ui,{id:t,value:n.value,onChange:e=>r({value:e})})))}),{SelectControl:fi,withFilters:hi}=wp.components,{__:bi}=wp.i18n,gi=hi("jet.fb.block.conditions.options")(t=>{const{currentItem:n,changeCurrentItem:r}=t,l=(0,bn.useFields)({placeholder:"--"});return"render_state"===n.operator?null:(0,e.createElement)(fi,{label:bi("Field","jet-form-builder"),labelPosition:"side",value:n.field,options:l,onChange:e=>{r({field:e})}})}),{useContext:yi}=wp.element,{SelectControl:vi}=wp.components,{__:wi}=wp.i18n,_i=function(){const{currentItem:t,changeCurrentItem:n}=yi(pa),r=de(),{operators:l}=ce();return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(gi,{currentItem:t,changeCurrentItem:n}),(0,e.createElement)(vi,{key:r("SelectControl-operator"),label:wi("Operator","jet-form-builder"),labelPosition:"side",value:t.operator,options:l,onChange:e=>n({operator:e})}),(0,e.createElement)(pi,{currentItem:t,changeCurrentItem:n}))},{select:Ei}=wp.data,Ci=function(e){return Ei("jet-forms/block-conditions").readCondition(e)},{__:ki}=wp.i18n,Si=function({children:t}){return(0,e.createElement)(ha.Provider,{value:{isSupported:()=>!0,render:({currentItem:t})=>(0,e.createElement)("span",{className:"repeater-item-title",dangerouslySetInnerHTML:{__html:t?.or_operator?ki("OR","jet-form-builder"):Ci(t)}})}},(0,e.createElement)(ba.Provider,{value:{edit:e=>!e.or_operator}},t))},{__:ji}=wp.i18n,{useState:xi,useContext:Ni,Fragment:Fi,useEffect:Ti,useRef:Bi}=wp.element,{SelectControl:Ii,TextareaControl:Ai,FlexItem:Oi,Flex:Ri,ToggleControl:Mi}=wp.components,Pi=[{key:"commas",render:()=>(0,e.createElement)("li",null,ji("If this field supports multiple values, you can separate them with commas. If a string value is expected, wrap it in single quotes like '%value_field%'.","jet-form-builder"))}],Li=[{value:"on_change",label:ji("On change conditions result","jet-form-builder"),help:ji("The value will be applied if condition check-ups return a result different from the first check-up's cached value","jet-form-builder")},{value:"once",label:ji("Once","jet-form-builder"),help:ji("The value will be applied only the first time the condition is matched","jet-form-builder")},{value:"always",label:ji("Always","jet-form-builder"),help:ji("The value will be applied every time the condition is matched","jet-form-builder")}],Gi=e=>Li.find(t=>t.value===(null!=e?e:"on_change")).help,Di=function(){var t,n,r,l;const{current:o,update:a}=Ni(ya),[i,s]=xi(()=>o),c=Bi(null),[u,d]=xi(()=>Gi(i.frequency));Ti(()=>{d(Gi(i.frequency))},[i.frequency]);const m=e=>{s(t=>({...t,...e}))};return W(()=>a(i)),(0,e.createElement)(Fi,null,(0,e.createElement)(Ri,{align:"flex-start"},(0,e.createElement)(Oi,{isBlock:!0},(0,e.createElement)(Ri,{align:"center",justify:"flex-start"},(0,e.createElement)("span",{className:"jet-fb label"},ji("Value to set","jet-form-builder")),(0,e.createElement)(Vt,{value:i.to_set,onChange:e=>m({to_set:e})}),(0,e.createElement)(Bn,{withThis:!0},(0,e.createElement)(wn,{onClick:e=>(e=>{const t=c.current;if(t){const n=t.selectionStart,r=t.selectionEnd,l=i.to_set||"",o=l.slice(0,n)+e+l.slice(r);m({to_set:`${o}`}),setTimeout(()=>{t.focus(),t.selectionStart=t.selectionEnd=n+e.length},0)}})(e)}))),(0,e.createElement)(dt,null,(0,e.createElement)("ul",null,Pi.map(t=>(0,e.createElement)(Fi,{key:t.key},t.render()))))),(0,e.createElement)(Oi,{isBlock:!0,style:{flex:3,marginLeft:"unset"}},(0,e.createElement)(Ai,{className:"jet-control-clear",hideLabelFromVision:!0,value:null!==(t=i.to_set)&&void 0!==t?t:"",onChange:e=>m({to_set:e}),ref:c}))),(0,e.createElement)(Ii,{options:Li,value:null!==(n=i.frequency)&&void 0!==n?n:"on_change",label:ji("Apply type","jet-form-builder"),labelPosition:"side",onChange:e=>m({frequency:e}),help:u}),(0,e.createElement)(Ya,{state:e=>{var t;m({conditions:"function"==typeof e?e(null!==(t=i.conditions)&&void 0!==t?t:[]):e})}},(0,e.createElement)(Si,null,(0,e.createElement)(Pa,{items:null!==(r=i.conditions)&&void 0!==r?r:[]},(0,e.createElement)(_i,null))),(0,e.createElement)("div",{className:"jet-fb flex jc-space-between ai-center"},(0,e.createElement)(Na,null,ji("Add New Condition","jet-form-builder")),(0,e.createElement)(Mi,{className:"jet-fb m-unset clear-control",label:ji("Set value only if field is empty","jet-form-builder"),checked:null!==(l=i.set_on_empty)&&void 0!==l&&l,onChange:e=>m({set_on_empty:e})}))))},{__:qi}=wp.i18n,{Children:Vi,cloneElement:Ji}=wp.element,$i=function({conditions:t,showWarning:n=!1}){let r=[],l="";return Boolean(t?.length)&&(l=Ci(t[0]),r=t.filter((e,t)=>0!==t).map((t,n)=>(0,e.createElement)("span",{key:n,"data-title":qi("And","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:Ci(t)}}))),l?(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":qi("If","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:l}}),Vi.map(r,Ji)):n&&(0,e.createElement)("span",{"data-title":qi("The condition is not fully configured.","jet-form-builder")})},Ui=function({isHover:t=!1,children:n}){return(0,e.createElement)("div",{className:["jet-fb",t?"show":"hide","p-absolute","wh-100","flex-center","gap-05em"].join(" "),style:{backgroundColor:"#ffffffcc",transition:"0.3s"}},n)},Hi=function({children:t}){return(0,e.createElement)("div",{className:["jet-fb","flex","flex-dir-column","container","gap-1em"].join(" ")},t)},{__:Wi}=wp.i18n,{useState:zi}=wp.element,{Button:Yi}=wp.components,Ki=function({current:t,update:n,isOpenModal:r,setOpenModal:l}){const[o,a]=zi(!1),[i,s]=zi(!1),c=1>=Object.keys(t)?.length;return(0,e.createElement)(ya.Provider,{value:{update:e=>{n(n=>{const r=JSON.parse(JSON.stringify(n.groups));for(const n in r)r.hasOwnProperty(n)&&t.id===r[n].id&&(r[n]={...r[n],...e});return{groups:r}})},current:t}},(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>s(!0),onFocus:()=>s(!0),onMouseOut:()=>s(!1),onBlur:()=>s(!1)},(0,e.createElement)(Ui,{isHover:i},(0,e.createElement)(Yi,{isSmall:!0,isSecondary:!0,icon:o?"no-alt":"edit",onClick:()=>a(e=>!e)},Wi("Edit","jet-form-builder")),(0,e.createElement)(Yi,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{n(e=>({groups:JSON.parse(JSON.stringify(e.groups)).filter(({id:e})=>e!==t.id)}))}},Wi("Delete","jet-form-builder"))),(0,e.createElement)(Hi,null,c?(0,e.createElement)("div",{"data-title":Wi("This value item is empty","jet-form-builder")}):(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Wi("Set","jet-form-builder")+":",dangerouslySetInnerHTML:{__html:Ur(t.to_set)}}),(0,e.createElement)($i,{conditions:t?.conditions})))),(o||r===t.id)&&(0,e.createElement)(h,{classNames:["width-60"],onRequestClose:()=>{a(!1),l(!1)},title:Wi("Edit Dynamic Value","jet-form-builder")},(0,e.createElement)(Di,null)))},Xi=function({children:t,...n}){return(0,e.createElement)("div",{className:"jet-fb flex flex-dir-column gap-default",style:{marginBottom:"1em"},...n},t)},{__:Zi}=wp.i18n,{useState:Qi}=wp.element,{Button:es}=wp.components,ts=function(){var t,n;const[r,l]=fe(),o=de(),a=null!==(t=r.value)&&void 0!==t?t:{},i=null!==(n=a.groups)&&void 0!==n?n:[],[s,c]=Qi(!1);if(!he("value"))return null;const u=i.filter((e,t)=>0!==t),d=e=>{l({...r,value:{...a,..."function"==typeof e?e(a):e}})};return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(dt,null,Zi("Or use a condition-dependent value","jet-form-builder")+" ",(0,e.createElement)(es,{isLink:!0,onClick:()=>{},label:Zi("Former Set Value functionality, moved from the Conditional Block","jet-form-builder"),showTooltip:!0},"(?)")),Boolean(i.length)?(0,e.createElement)(Xi,null,(0,e.createElement)(Ki,{key:o(i[0].id),current:i[0],update:d,isOpenModal:s,setOpenModal:c}),Boolean(u.length)&&u.map(t=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",null,Zi("OR","jet-form-builder")),(0,e.createElement)(Ki,{key:o(t.id),current:t,update:d,isOpenModal:s,setOpenModal:c})))):null,(0,e.createElement)(es,{icon:"plus-alt2",isSecondary:!0,onClick:()=>{const e=k.getRandomID();d({groups:[...i,{id:e,conditions:[{__visible:!0}]}]}),c(e)}},Zi("Add Dynamic Value","jet-form-builder")))},{Button:ns}=wp.components,{useContext:rs}=wp.element,{SelectControl:ls}=wp.components,{useContext:os,useMemo:as}=wp.element,{__:is}=wp.i18n,ss=function(){const{currentItem:t,changeCurrentItem:n}=os(pa),r=as(()=>O(is("Custom value","jet-form-builder")),[]);return(0,e.createElement)(ls,{labelPosition:"side",options:r,label:is("Choose field","jet-form-builder"),value:t.field,onChange:e=>n({field:e})})},{SelectControl:cs,TextareaControl:us,TextControl:ds,withFilters:ms}=wp.components,{useContext:ps,useState:fs,useEffect:hs}=wp.element,{__:bs}=wp.i18n,{addFilter:gs}=wp.hooks,{rule_types:ys,ssr_callbacks:vs}=window.jetFormValidation,ws=vs.map(({value:e})=>e);function _s(e){var t;const n=ys.findIndex(({value:t})=>t===e),r=bs("Enter value","jet-form-builder");return-1===n?r:null!==(t=ys[n]?.control_label)&&void 0!==t?t:r}gs("jet.fb.advanced.rule.controls","jet-form-builder",t=>n=>{const{currentItem:r,changeCurrentItem:l}=n,[o,a]=fs(!1),[i]=(0,K.useActions)(),s=i.some(e=>"save_record"===e.type&&(void 0===e.is_execute||!0===e.is_execute))?"success":"error";if("ssr"!==r.type)return(0,e.createElement)(t,{...n});const c=r.value||"custom_jfb_field_validation";return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(cs,{labelPosition:"side",options:k.withPlaceholder(vs,bs("Custom function","jet-form-builder")),label:bs("Choose callback","jet-form-builder"),value:r.value,onChange:e=>l({value:e})}),"is_field_value_unique"===r.value&&(0,e.createElement)(u.Notice,{status:s,isDismissible:!1},bs("This callback requires the Save Form Record action to work correctly.","jet-form-builder")),"is_user_password_valid"===r.value&&(0,e.createElement)(u.Notice,{status:"success",isDismissible:!1},bs("Works only for logged users.","jet-form-builder")),!ws.includes(r.value)&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ds,{label:bs("Function name","jet-form-builder"),value:r.value,onChange:e=>l({value:e})}),(0,e.createElement)(dt,null,bs("Example of registering a function below.","jet-form-builder")+" ",(0,e.createElement)("a",{href:"javascript:void(0)",onClick:()=>a(e=>!e)},bs(o?"Hide":"Show","jet-form-builder"))),o&&(0,e.createElement)("pre",null,`/**\n * To get all the values of the fields in the form, you can use the expression:\n * jet_fb_request_handler()->get_request() or $context->get_request()\n *\n * If the field is located in the middle of the repeater, then only\n * jet_fb_request_handler()->get_request(), but $context->get_request() \n * will return the values of all fields of the current repeater element\n *\n * @param $value mixed\n * @param $context \\Jet_Form_Builder\\Request\\Parser_Context\n *\n * @return bool\n */\nfunction ${c}( $value, $context ): bool {\n\t// your logic\n\treturn true;\n}`)))});const Es=ms("jet.fb.advanced.rule.controls")(function({currentItem:t,changeCurrentItem:n}){const[r,l]=fs(()=>_s(t.type));switch(hs(()=>{l(_s(t.type))},[t.type]),t.type){case"equal":case"contain":case"contain_not":case"regexp":case"regexp_not":return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(ss,null),!Boolean(t.field)&&(0,e.createElement)(ci,{value:t.value,label:r,onChangePreset:e=>n({value:e}),onChangeMacros:e=>{var r;return n({value:(null!==(r=t.value)&&void 0!==r?r:"")+e})}},({instanceId:r})=>(0,e.createElement)(us,{id:r,value:t.value,onChange:e=>n({value:e})})));default:return null}}),Cs=function(){const{currentItem:t,changeCurrentItem:n}=ps(pa);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(cs,{labelPosition:"side",options:k.withPlaceholder(ys),label:bs("Rule type","jet-form-builder"),value:t.type,onChange:e=>n({type:e})}),(0,e.createElement)(Es,{currentItem:t,changeCurrentItem:n}),(0,e.createElement)(us,{label:bs("Error message","jet-form-builder"),value:t.message,onChange:e=>n({message:e})}))},{select:ks}=wp.data,Ss=function(e){return ks("jet-forms/validation").readRule(e)},{useState:js}=wp.element,{__:xs}=wp.i18n,Ns=function(){const[t,n]=fe(),[r,l]=js(()=>{var e;return null!==(e=t.validation?.rules)&&void 0!==e?e:[]});return W(()=>{n(e=>({...e,validation:{...t.validation,rules:r}}))}),(0,e.createElement)(Ya,{state:l},(0,e.createElement)(ha.Provider,{value:{isSupported:()=>!0,render:({currentItem:t})=>(0,e.createElement)("span",{className:"repeater-item-title",dangerouslySetInnerHTML:{__html:Ss(t)}})}},(0,e.createElement)(Pa,{items:r},(0,e.createElement)(Cs,null))),(0,e.createElement)(Na,null,xs("Add Rule","jet-form-builder")))},{createContext:Fs}=wp.element,Ts=Fs({showModal:!1,setShowModal:()=>{}}),{useContext:Bs,useState:Is}=wp.element,{__:As}=wp.i18n,{Button:Os}=wp.components,Rs=function(){const{setShowModal:t}=Bs(Ts),[n,r]=fe(),[l,o]=Is(!1);return(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>o(!0),onFocus:()=>o(!0),onMouseOut:()=>o(!1),onBlur:()=>o(!1)},(0,e.createElement)(Ui,{isHover:l},(0,e.createElement)(Os,{isSmall:!0,isSecondary:!0,icon:"plus-alt2",onClick:()=>{r({validation:{...n.validation,rules:[{__visible:!0}]}}),t(e=>!e)}},As("Add new","jet-form-builder"))),(0,e.createElement)(Hi,null,(0,e.createElement)("span",{"data-title":As("You have no rules for this field.","jet-form-builder")}),(0,e.createElement)("span",{"data-title":As("Please click here to add new.","jet-form-builder")})))},{__:Ms}=wp.i18n,Ps=function({rule:t}){return t.type?(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{"data-title":Ms("Rule:","jet-form-builder"),dangerouslySetInnerHTML:{__html:Ss(t)}}),Boolean(t.message)&&(0,e.createElement)("span",{"data-title":Ms("Message:","jet-form-builder"),dangerouslySetInnerHTML:{__html:t.message}})):(0,e.createElement)("span",{"data-title":Ms("The rule is not fully configured.","jet-form-builder")})},{useContext:Ls,useState:Gs}=wp.element,{__:Ds}=wp.i18n,{Button:qs}=wp.components,Vs=function({rule:t,index:n=0}){const{setShowModal:r}=Ls(Ts),[l,o]=fe(),[a,i]=Gs(!1);return(0,e.createElement)("div",{className:"jet-fb p-relative",onMouseOver:()=>i(!0),onFocus:()=>i(!0),onMouseOut:()=>i(!1),onBlur:()=>i(!1)},(0,e.createElement)(Ui,{isHover:a},(0,e.createElement)(qs,{isSmall:!0,isSecondary:!0,icon:"edit",onClick:()=>{o({validation:{...l.validation,rules:l.validation.rules.map((e,t)=>(e.__visible=n===t,e))}}),r(e=>!e)}},Ds("Edit","jet-form-builder")),(0,e.createElement)(qs,{isSmall:!0,isDestructive:!0,icon:"trash",onClick:()=>{o({validation:{...l.validation,rules:l.validation.rules.filter((e,t)=>t!==n)}})}},Ds("Delete","jet-form-builder"))),(0,e.createElement)(Hi,null,(0,e.createElement)(Ps,{rule:t})))},{__:Js}=wp.i18n,{Children:$s,cloneElement:Us}=wp.element;const Hs=function(){const[t]=fe();return t?.validation?.rules?.length?(0,e.createElement)(Xi,null,$s.map(function(t){const n=t.filter((e,t)=>0!==t);return[(0,e.createElement)(Vs,{rule:t[0],key:"first_item"}),...n.map((t,n)=>((t,n)=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)("b",null,Js("AND","jet-form-builder")),(0,e.createElement)(Vs,{rule:t,index:n})))(t,n+1))]}(t.validation.rules),Us)):(0,e.createElement)(Rs,null)},{useState:Ws}=wp.element,{__:zs}=wp.i18n,{useBlockProps:Ys}=wp.blockEditor,{TextControl:Ks,SelectControl:Xs,ToggleControl:Zs,BaseControl:Qs,__experimentalNumberControl:ec}=wp.components;let{NumberControl:tc}=wp.components;void 0===tc&&(tc=ec);const{FormToggle:nc,BaseControl:rc,Flex:lc}=wp.components,{useInstanceId:oc}=wp.compose,{useBlockProps:ac}=wp.blockEditor,{useEffect:ic}=wp.element,{useSelect:sc}=wp.data,{useBlockProps:cc}=wp.blockEditor,{useSelect:uc}=wp.data,{CustomSelectControl:dc,Icon:mc}=wp.components,{useBlockEditContext:pc}=wp.blockEditor,{Children:fc,cloneElement:hc,useContext:bc}=wp.element,{useSelect:gc}=wp.data,{useBlockEditContext:yc}=wp.blockEditor;let{__experimentalToggleGroupControl:vc,__experimentalToggleGroupControlOptionIcon:wc,__experimentalToolbarContext:_c,ToggleGroupControl:Ec,ToggleGroupControlOptionIcon:Cc,ToolbarItem:kc,ToolbarGroup:Sc,ToolbarContext:jc}=wp.components;function xc({value:t}){const{name:n}=yc(),r=bc(jc),[,l]=fe(),{variations:o,components:a}=gc(t=>{const{getBlockVariations:l}=t("core/blocks"),o=l(n,"block");return{variations:o,components:o.map(t=>{var n;return(null!==(n=r?.currentId)&&void 0!==n?n:r?.baseId)?(0,e.createElement)(kc,{key:t.name,as:Cc,value:t.name,label:t.title,icon:t.icon}):(0,e.createElement)(Cc,{key:t.name,value:t.name,label:t.title,icon:t.icon})})}},[]);return o.length?(0,e.createElement)("div",{className:"jfb-variations-toolbar-toggle"},(0,e.createElement)(Ec,{hideLabelFromVision:!0,onChange:e=>l({...o.find(({name:t})=>t===e).attributes}),value:t,isBlock:!0},fc.map(a,hc))):null}Ec=Ec||vc,Cc=Cc||wc,jc=jc||_c;const{useSelect:Nc}=wp.data,{useBlockEditContext:Fc}=wp.blockEditor,{get:Tc}=window._,{useBlockProps:Bc,RichText:Ic}=wp.blockEditor,{Button:Ac}=wp.components,{createContext:Oc}=wp.element,Rc=Oc({}),{useContext:Mc}=wp.element,{useState:Pc}=wp.element,{get:Lc}=window._,{useSelect:Gc,useDispatch:Dc}=wp.data;var qc,Vc,Jc;window.JetFBComponents={...null!==(qc=window?.JetFBComponents)&&void 0!==qc?qc:{},BaseLabel:En,ActionFieldsMap:function({fields:t=[],label:n="[Empty label]",children:a=null,plainHelp:i="",customHelp:s=!1}){return(0,e.createElement)(l.RowControl,{align:"flex-start"},(0,e.createElement)(l.Label,null,n),(0,e.createElement)(l.RowControlEnd,null,s&&"function"==typeof s&&s(),Boolean(i.length)&&(0,e.createElement)("span",{className:"description-controls"},i),t.map(([t,n],l)=>(0,e.createElement)(o.Fragment,{key:`field_in_map_${t+l}`},(0,e.createElement)(r.Provider,{value:{name:t,data:n,index:l}},"function"==typeof a?a({fieldId:t,fieldData:n,index:l}):a)))))},ActionModal:h,ActionModalContext:i,SafeDeleteContext:da,RepeaterItemContext:pa,RepeaterBodyContext:fa,RepeaterHeadContext:ha,RepeaterButtonsContext:ba,ActionFieldsMapContext:r,CurrentPropertyMapContext:za,BlockValueItemContext:ya,DynamicPropertySelect:function({dynamic:t=[],parseValue:n=null,children:a=null,properties:i=null}){const{source:s,settings:c,setMapField:u}=(0,o.useContext)(K.CurrentActionEditContext);i=null!=i?i:s.properties;const{name:d,index:m}=(0,o.useContext)(r),{fields_map:p={}}=c;function f(e){var r;for(const t of i)if(e===t.value)return e;return n?n(e):null!==(r=t[0])&&void 0!==r?r:""}const[h,b]=(0,o.useState)(()=>{var e;return f(null!==(e=p[d])&&void 0!==e?e:"")}),g=(0,e.createElement)(l.StyledSelectControl,{key:d+m,value:h,options:i,help:(()=>{var e;const t=i.find(({value:e})=>e===h);return null!==(e=t?.help)&&void 0!==e?e:""})(),onChange:e=>{const n=f(e);b(n),u({nameField:d,value:t.includes(e)?"":e})}});return(0,e.createElement)(za.Provider,{value:{FieldSelect:g,property:h}},a&&a,!a&&g)},SafeDeleteToggle:function(t){const[n,r]=_a(!0);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(va,{label:wa("Safe deleting","jet-form-builder"),checked:n,onChange:r}),(0,e.createElement)(da.Provider,{value:n},t.children))},RepeaterAddNew:Na,RepeaterAddOrOperator:function(t){var n;const{onSetState:r,functions:l,children:o}=t,{addNewItem:a}=null!==(n=null!=l?l:Ca(r))&&void 0!==n?n:rs(Sa);return(0,e.createElement)(ns,{isSecondary:!0,icon:"randomize",onClick:()=>a({__visible:!1,or_operator:!0})},o)},Repeater:Pa,WrapperRequiredControl:function({children:t,labelKey:n="label",requiredKey:l="required",helpKey:o="help",field:a=[]}){let{name:i,data:s}=g(r);return a.length&&([i,s]=a),(0,e.createElement)("div",{className:"jet-user-meta__row",key:"user_meta_"+i},(0,e.createElement)("div",{className:"jet-field-map__row-label"},(0,e.createElement)("span",{className:"fields-map__label"},s.hasOwnProperty(n)&&s[n]&&s[n],!s.hasOwnProperty(n)&&s),s.hasOwnProperty(l)&&s[l]&&(0,e.createElement)("span",{className:"fields-map__required"}," *"),s[o]&&(0,e.createElement)("p",{className:"components-base-control__help",style:{color:"rgb(117, 117, 117)",margin:"1em 0 0 0"}},(0,e.createElement)(b,null,s[o]))),t)},DynamicPreset:Ie,JetFieldsMapControl:Me,FieldWithPreset:function({children:t=null,ModalEditor:n,triggerClasses:r=[],baseControlProps:l={}}){const[o,a]=De(!1),i=()=>{a(e=>!e)},s=["jet-form-dynamic-preset__trigger",...r].join(" ");return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ge,{className:"jet-form-dynamic-preset",...l},t,(0,e.createElement)("div",{className:s,onClick:i},(0,e.createElement)(Le,{viewBox:"0 0 54 64",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)(Pe,{d:"M42.6396 26.4347C37.8682 27.3436 32.5666 28.0252 27.1894 28.0252C21.8121 28.0252 16.4348 27.3436 11.7391 26.4347C6.96774 25.4502 3.18093 23.8597 0.37868 21.9663L0.37868 28.0252C0.37868 29.5399 1.59046 31.1304 3.78682 32.4179C5.98317 33.7054 9.46704 34.9172 13.6325 35.5988C17.798 36.2805 22.115 36.8106 27.1894 36.8106C32.2637 36.8106 36.6564 36.5077 40.7462 35.5988C44.8359 34.69 48.3198 33.7054 50.5162 32.4179C52.7125 31.1304 54 29.5399 54 28.0252L54 21.9663C51.122 23.8597 47.3352 25.4502 42.6396 26.4347ZM42.6396 53.5484C37.8682 54.5329 32.5666 55.1388 27.1894 55.1388C21.8121 55.1388 16.4348 54.5329 11.7391 53.5484C7.04348 52.5638 3.18093 51.0491 0.378682 49.1556L0.378682 55.1388C0.378683 56.7293 1.59046 58.3197 3.78682 59.5315C6.36186 60.819 9.46705 62.1066 13.6325 62.7125C17.7223 63.697 22.115 64 27.1894 64C32.2637 64 36.6564 63.697 40.7462 62.7125C44.8359 61.8036 48.3198 60.819 50.5162 59.5315C52.7125 57.9411 54 56.7293 54 54.8359L54 48.8527C51.122 51.0491 47.3352 52.2608 42.6396 53.5484ZM42.6396 39.9915C37.8682 40.9004 32.5666 41.582 27.1894 41.582C21.8121 41.582 16.4348 40.9004 11.7391 39.9915C6.96774 39.007 3.18093 37.4922 0.378681 35.5988L0.378681 41.582C0.378681 43.1725 1.59046 44.6872 3.78682 45.9747C6.36185 47.2622 9.46705 48.474 13.6325 49.1556C17.7223 50.0645 22.115 50.3674 27.1894 50.3674C32.2637 50.3674 36.6564 50.0645 40.7462 49.1556C44.8359 48.1711 48.3198 47.2622 50.5162 45.9747C52.7125 44.3843 54 43.1725 54 41.582L54 35.5988C51.122 37.4922 47.3352 39.007 42.6396 39.9915ZM40.4432 2.12337C36.3535 1.13879 31.885 0.835848 26.8864 0.835849C21.8878 0.835849 17.4194 1.13879 13.2539 2.12337C9.08836 3.10794 5.68022 4.01678 3.48387 5.3043C1.28751 6.59181 -3.4782e-06 8.10654 -3.33916e-06 9.697L-2.95513e-06 14.0897C-2.81609e-06 15.6802 1.28752 17.2706 3.48387 18.5582C6.05891 19.7699 9.1641 21.0575 13.2539 21.6633C17.3436 22.2692 21.8121 22.9509 26.8864 22.9509C31.9607 22.9509 36.3535 22.9509 40.4432 22.345C44.533 21.7391 48.0169 20.4516 50.2132 19.164C52.7125 17.5736 54 15.9831 54 14.3927L54 9.99995C54 8.40948 52.7125 6.81902 50.5162 5.60724C48.3198 4.39546 44.533 2.72926 40.4432 2.12337Z",fill:"#7E8993"})))),o&&(0,e.createElement)(h,{onRequestClose:i,classNames:["width-60"],title:"Edit Preset"},t=>(0,e.createElement)(n,{...t})))},GlobalField:ye,AvailableMapField:function({fieldsMap:t,field:n,index:r,value:a,onChangeValue:i,isMapFieldVisible:s}){let c=null;t||(t={}),c=t[n],c&&"object"==typeof c||(c={});const d=({field:t,name:n,index:r,fIndex:o,children:a})=>(0,e.createElement)(u.Card,{key:t+n+r+o,size:"extraSmall",style:{marginBottom:"10px"}},(0,e.createElement)(u.CardHeader,null,(0,e.createElement)("span",{className:"jet-label-overflow"},t)),(0,e.createElement)(l.StyledCardBodyControl,{key:t+n+r+o,className:"jet-form-preset__fields-map-item"},a));return(0,e.createElement)(o.Fragment,{key:`map_field_preset_${n+r}`},window.JetFormEditorData.presetConfig.map_fields.map((o,m)=>{const p={field:n,name:o.name,index:r,fIndex:m},f="control_"+n+o.name+r+m;switch(o.type){case"text":return s(a,o,n)&&function({field:t,name:n,index:r,fIndex:o},a){return(0,e.createElement)(u.Card,{key:t+n+r+o,size:"extraSmall",style:{marginBottom:"10px"}},(0,e.createElement)(u.CardHeader,null,(0,e.createElement)("span",{className:"jet-label-overflow"},t)),(0,e.createElement)(l.StyledCardBodyControl,{key:t+n+r+o,className:"jet-form-preset__fields-map-item"},a))}(p,(0,e.createElement)(l.StyledTextControl,{key:f+"TextControl",placeholder:o.label,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));case"select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(l.StyledSelectControl,{options:o.options,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));case"custom_select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(u.CustomSelectControl,{options:o.options,onChange:({selectedItem:e})=>{c[o.name]=e.key,i({...t,[n]:c},"fields_map")},value:o.options.find(e=>e.key===c[o.name])}));case"grouped_select":return s(a,o,n)&&(0,e.createElement)(d,{...p,key:f},(0,e.createElement)(xe,{options:o.options,value:c[o.name],onChange:e=>{c[o.name]=e,i({...t,[n]:c},"fields_map")}}));default:return null}}))},MapField:Ne,FieldWrapper:function(t){const{attributes:n,children:r,wrapClasses:l=[],valueIfEmptyLabel:o="",setAttributes:a,childrenPosition:i="between"}=t,s=de(),c=H("_jf_args"),u=Ze(function(){ze(n,a)});function d(){return(0,e.createElement)(Ye.VisualLabel,null,et(Qe("input label:","jet-form-builder")),(0,e.createElement)("div",{className:"jet-form-builder__label"},(0,e.createElement)(Ke,{key:s("rich-label"),placeholder:"Label...",allowedFormats:[],value:n.label?n.label:o,onChange:e=>a({label:e}),isSelected:!1,...u}),n.required&&(0,e.createElement)("span",{className:"jet-form-builder__required"},c.required_mark?c.required_mark:"*")))}function m(){return(0,e.createElement)("div",{className:"jet-form-builder__desc--wrapper"},et(Qe("input description:","jet-form-builder")),(0,e.createElement)(Ye,{key:"custom_help_description",className:"jet-form-builder__desc"},(0,e.createElement)("div",{className:"components-base-control__help"},(0,e.createElement)(Ke,{key:s("rich-description"),tagName:"small",placeholder:"Description...",allowedFormats:[],value:n.desc,onChange:e=>a({desc:e}),style:{marginTop:"0px"}}))))}return"row"===c.fields_layout&&l.push("jet-form-builder-row__flex"),n?.crocoblock_styles?._uniqueClassName&&l.push(n.crocoblock_styles._uniqueClassName),(0,e.createElement)(Ye,{key:s("placeHolder_block"),className:E("jet-form-builder__field-wrap","jet-form-builder-row",l)},"row"!==c.fields_layout&&(0,e.createElement)(e.Fragment,null,"top"===i&&r,d(),"between"===i&&r,m(),"bottom"===i&&r),"row"===c.fields_layout&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"jet-form-builder-row__flex--label"},d(),m()),(0,e.createElement)("div",{className:"jet-form-builder-row__flex--content"},r)))},MacrosInserter:function({children:t,fields:n,onFieldClick:r,customMacros:l,zIndex:o=1e6,...a}){const[i,s]=lt(()=>!1);return(0,e.createElement)("div",{className:"jet-form-editor__macros-inserter"},(0,e.createElement)(tt,{isTertiary:!0,isSmall:!0,icon:i?"no-alt":"admin-tools",label:"Insert macros",className:"jet-form-editor__macros-trigger",onClick:()=>{s(e=>!e)}}),i&&(0,e.createElement)(nt,{style:{zIndex:o},position:"bottom left",...a},n.length&&(0,e.createElement)(rt,{title:"Form Fields"},n.map(t=>(0,e.createElement)("div",{key:"field_"+t.name},(0,e.createElement)(tt,{isLink:!0,onClick:()=>{r(t.name)}},"%"+t.name+"%")))),l&&(0,e.createElement)(rt,{title:"Custom Macros"},l.map(t=>(0,e.createElement)("div",{key:"macros_"+t},(0,e.createElement)(tt,{isLink:!0,onClick:()=>{r(t)}},"%"+t+"%"))))))},RepeaterWithState:function({children:t,ItemHeading:n,repeaterClasses:r=[],repeaterItemClasses:l=[],newItem:a,addNewButtonLabel:i="Add New",items:s=[],isSaveAction:c,onSaveItems:m,onUnMount:p,onAddNewItem:f,onRemoveItem:h,help:b={helpSource:{},helpVisible:()=>!1,helpKey:""},additionalControls:g=null}){const y=["jet-form-builder__repeater-component",...r].join(" "),v=["jet-form-builder__repeater-component-item",...l].join(" "),[w,_]=(0,o.useState)([]);(0,o.useEffect)(()=>{_(s&&s.length>0?s.map(e=>(e.__visible=!1,e)):[{...a,__visible:!0}])},[]);const[E,C]=(0,o.useState)(!0),k=(e,t)=>{_(n=>{const r=JSON.parse(JSON.stringify(n));return r[t]={...n[t],...e},r})},S=({oldIndex:e,newIndex:t})=>{_(n=>{const r=JSON.parse(JSON.stringify(n));return[r[t],r[e]]=[r[e],r[t]],r})},j=e=>!(e{if(!0===c){for(const e in w)for(const t in w[e])t.startsWith("__")&&delete w[e][t];m(w),p()}else!1===c&&p()},[c]);const x=e=>`jet-form-builder-repeater__item_${e}`,{helpSource:N,helpVisible:F,helpKey:T}=b,B=F(w)&&N&&N[T];return(0,e.createElement)("div",{className:y,key:"jet-form-builder-repeater"},B&&(0,e.createElement)("p",null,N[T].label),0(0,e.createElement)(u.Card,{elevation:2,className:v,key:x(l)},(0,e.createElement)(u.CardHeader,{className:"repeater__item__header"},(0,e.createElement)("div",{className:"repeater-item__left-heading"},(0,e.createElement)(u.ButtonGroup,{className:"repeater-action-buttons"},(0,e.createElement)(u.Button,{isSmall:!0,icon:r.__visible?"no-alt":"edit",onClick:()=>(e=>{_(t=>{const n=JSON.parse(JSON.stringify(t));return n[e].__visible=!n[e].__visible,n})})(l),className:"repeater-action-button"}),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,disabled:!Boolean(l),icon:"arrow-up-alt2",onClick:()=>(e=>{S({oldIndex:e,newIndex:e-1})})(l),className:"repeater-action-button"}),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,disabled:j(l),icon:"arrow-down-alt2",onClick:()=>(e=>{S({oldIndex:e,newIndex:e+1})})(l),className:"repeater-action-button"})),(0,e.createElement)("span",{className:"repeater-item-title"},n&&(0,e.createElement)(n,{currentItem:r,index:l,changeCurrentItem:e=>k(e,l)}),!n&&`#${l+1}`)),(0,e.createElement)(u.ButtonGroup,null,(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,onClick:()=>(e=>{_(t=>{const n=JSON.parse(JSON.stringify(t)),[r,l]=[n.slice(0,e+1),n.slice(e+1)];return[...r,n[e],...l]})})(l)},(0,d.__)("Clone","jet-form-builder")),(0,e.createElement)(u.Button,{isSmall:!0,isSecondary:!0,isDestructive:!0,onClick:()=>(e=>{E&&!(e=>confirm((0,d.sprintf)((0,d.__)("Are you sure you want to remove item %d?","jet-form-builder"),e+1)))(e)||h&&!h(e,w)||_(t=>{const n=JSON.parse(JSON.stringify(t));return n.splice(e,1),n})})(l)},(0,d.__)("Delete","jet-form-builder")))),r.__visible&&(0,e.createElement)(u.CardBody,{className:"repeater-item__content"},t&&(0,e.createElement)(o.Fragment,{key:`repeater-component__item_${l}`},"function"==typeof t&&t({currentItem:r,changeCurrentItem:e=>k(e,l),currentIndex:l}),"function"!=typeof t&&t),!t&&"Set up your Repeater Template, please."))),1{return e=a,f&&f(e,w),void _(t=>[...t,{...e,__visible:!0}]);var e}},i))},AdvancedFields:function(){return(0,e.createElement)(St,null,(0,e.createElement)(it,null),(0,e.createElement)(ut,null),(0,e.createElement)(yt,null),(0,e.createElement)(_t,null),(0,e.createElement)(kt,null))},GeneralFields:function({hasMacro:t=!0}){return(0,e.createElement)(Ln,{title:Gn("General","jet-form-builder"),key:"jet-form-general-fields"},(0,e.createElement)(Tt,null),(0,e.createElement)(Lt,null),(0,e.createElement)(qt,null),(0,e.createElement)(Pn,{hasMacro:t}))},ToolBarFields:function({children:t=null}){return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Hn,null,t),(0,e.createElement)(Zn,null))},FieldControl:function(t){const{setAttributes:n,attributes:r}=t,l=function({type:e,attributes:t,attrsSettings:n={}}){const r=Ys()["data-type"],l=lr();return l[e]?l[e].attrs.filter(({attrName:e,label:l,...o})=>{const a=e in t,i=(e=>{if(!e.condition)return!0;if(r&&e.condition.blockName){if("string"==typeof e.condition.blockName&&r!==e.condition.blockName)return!1;if("object"==typeof e.condition.blockName&&e.condition.blockName.length&&!e.condition.blockName.includes(r))return!1}return!(!function(){if("object"!=typeof e.condition.attr)return!0;const{operator:n="and",items:r={}}=e.condition.attr;if("or"===n.toLowerCase())for(const e in r)if(r[e]===t[e])return!0;return"and"!==n.toLowerCase()||function(){for(const e in r)if(r[e]!==t[e])return!1;return!0}()}()||"string"==typeof e.condition.attr&&e.condition.attr&&!t[e.condition.attr]||"string"==typeof e.condition&&!t[e.condition])})(o),s=e in n&&"show"in n[e]&&!1===n[e].show;return a&&i&&!s}):[]}(t),o=(e,t)=>{n({[t]:e})};return l.map(({help:t="",attrName:n,label:l,...a})=>{switch(a.type){case"text":return(0,e.createElement)(Ks,{key:`${a.type}-${n}-TextControl`,label:l,help:t,value:r[n],onChange:e=>o(e,n)});case"select":return(0,e.createElement)(Xs,{key:`${a.type}-${n}-SelectControl`,label:l,help:t,value:r[n],options:a.options,onChange:e=>{o(e,n)}});case"toggle":return(0,e.createElement)(Zs,{key:`${a.type}-${n}-ToggleControl`,label:l,help:t,checked:r[n],onChange:e=>{o(e,n)}});case"number":return(0,e.createElement)(Qs,{key:`${a.type}-${n}-BaseControl`,label:l},(0,e.createElement)(tc,{key:`${a.type}-${n}-NumberControl`,value:r[n],onChange:e=>{o(Number(e),n)}}),(0,e.createElement)("p",{className:"components-base-control__help",style:{color:"rgb(117, 117, 117)"}},t));default:return null}})},HorizontalLine:function(t){return(0,e.createElement)("hr",{style:{...t}})},FieldSettingsWrapper:function(t){const{title:n,children:r}=t,l=nr()["data-type"].replace("/","-"),o=tr(`jet.fb.render.settings.${l}`,null);return(r||o)&&(0,e.createElement)(er,{title:n||Qn("Field","jet-form-builder")},r,o)},GroupedSelectControl:xe,BaseHelp:dt,GatewayFetchButton:ar,ValidationToggleGroup:function({excludeBrowser:t=!1}){var n;const[r,l]=fe(),o=de();return qa=qa.filter(({value:e})=>"browser"!==e||!t),(0,e.createElement)(La,{onChange:e=>l(t=>({...t,validation:{...r.validation,type:e}})),value:null!==(n=r.validation?.type)&&void 0!==n?n:"inherit",label:Da("Validation type","jet-form-builder"),isBlock:!0,isAdaptiveWidth:!1},(0,e.createElement)(Ga,{label:Da("Inherit","jet-form-builder"),value:"inherit","aria-label":Da("Inherit from form's args","jet-form-builder"),showTooltip:!0}),qa.map(t=>(0,e.createElement)(Ga,{key:o(t.value+"_key"),label:t.label,value:t.value,"aria-label":t.title,showTooltip:!0})))},ValidationBlockMessage:function({name:t}){var n,r,l;const o=de(),[a,i]=fe(),[s]=(0,Va.useMetaState)("_jf_validation","{}",[]),c=!a.validation?.type,u=c?null!==(n=s?.messages)&&void 0!==n?n:{}:null!==(r=a.validation?.messages)&&void 0!==r?r:{},d=$a(t);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ua,{disabled:c,key:o("massage_"+t),label:d?.label,help:d?.help,value:null!==(l=u[t])&&void 0!==l?l:d?.initial,onChange:e=>i(n=>({...n,validation:{...a.validation,messages:{...u,[t]:e}}}))}))},ValidationMetaMessage:function({message:t,update:n,value:r=null,help:o=null}){const a=$a(t.id);return(0,e.createElement)(l.StyledFlexControl,{direction:"column"},(0,e.createElement)(u.Flex,null,(0,e.createElement)(l.Label,{htmlFor:t.id},a.label),(0,e.createElement)(u.Flex,{style:{width:"auto"}},t.blocks.map(t=>(0,e.createElement)(u.Tooltip,{key:"message_block_item"+t.title,text:t.title,delay:200,placement:"top"},(0,e.createElement)(Ha,{icon:t.icon}))))),(0,e.createElement)(l.StyledTextControl,{className:l.ClearBaseControlStyle,id:t.id,help:null!=o?o:a?.help,value:null!=r?r:a?.initial,onChange:e=>n(n=>({...n,[t.id]:e}))}))},DynamicValues:ts,EditAdvancedRulesButton:function(){const[t,n]=Ws(!1);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ts.Provider,{value:{showModal:t,setShowModal:n}},(0,e.createElement)("div",{className:"jet-fb mb-24"},(0,e.createElement)(Hs,null))),t&&(0,e.createElement)(h,{title:zs("Edit Advanced Rules","jet-form-builder"),classNames:["width-60"],onRequestClose:()=>n(!1)},(0,e.createElement)(Ns,null)))},RepeaterStateContext:Sa,RepeaterState:Ya,BlockLabel:Tt,BlockName:Lt,BlockDescription:qt,BlockDefaultValue:Pn,BlockPlaceholder:it,BlockAddPrevButton:ut,BlockPrevButtonLabel:yt,BlockVisibility:_t,BlockClassName:kt,BlockAdvancedValue:function({help:t,label:n,hasMacro:r=!0,...l}){return(0,e.createElement)("div",{...l},(0,e.createElement)(Pn,{help:t,label:n,hasMacro:r}),(0,e.createElement)("hr",null),(0,e.createElement)(ts,null))},MacrosFields:wn,MacrosButtonTemplate:Yt,MacrosFieldsTemplate:mn,ShowPopoverContext:$t,PopoverItem:Qt,PresetButton:Vt,ConditionItem:_i,AdvancedInspectorControl:Sn,AdvancedModalControl:ci,ClientSideMacros:Bn,ToggleControl:function t({checked:n=!1,disabled:r=!1,onChange:l=()=>{},children:o=null,help:a=null,flexLabelProps:i={},outsideLabel:s=null,__nextHasNoMarginBottom:c=!1,...u}){const d=a,m=`inspector-jfb-toggle-control-${oc(t)}`;return(0,e.createElement)(rc,{id:m},(0,e.createElement)(lc,{direction:"column"},(0,e.createElement)(lc,{gap:3,align:"flex-start",justify:"flex-start",...i},(0,e.createElement)(nc,{id:m,checked:n,onChange:e=>l(e.target.checked),disabled:r,...u}),(0,e.createElement)("label",{htmlFor:m},o),s),"string"==typeof d?(0,e.createElement)(dt,null,d):d&&(0,e.createElement)(d,null)))},DetailsContainer:Hi,HoverContainer:Ui,ContainersList:Xi,HumanReadableConditions:$i,ConditionsRepeaterContextProvider:Si,ServerSideMacros:function({children:t}){const n=(0,K.useRequestFields)();return(0,e.createElement)(Xt.Provider,{value:{afterFields:n}},t)},SelectVariations:function({value:t}){const{name:n}=pc(),[,r]=fe(),{variations:l,rawVariations:o}=uc(t=>{const{getBlockVariations:r}=t("core/blocks"),l=r(n,"block"),o=[],a={};for(const t of l)o.push({key:t.name,name:(0,e.createElement)("span",{className:"jet-fb flex gap-1em ai-center"},(0,e.createElement)(mc,{icon:t.icon}),t.title)}),a[t.name]=t;return{variations:o,rawVariations:a}},[n]);return l.length?(0,e.createElement)(dc,{__nextUnconstrainedWidth:!0,hideLabelFromVision:!0,options:l,size:"__unstable-large",onChange:({selectedItem:e})=>r({...o[e.key].attributes}),value:l.find(({key:e})=>e===t)}):null},ToggleGroupVariations:function(t){const n=bc(jc);return n?.currentId?(0,e.createElement)(Sc,{className:"jet-fb toggle-toolbar-group"},(0,e.createElement)(xc,{...t})):(0,e.createElement)(xc,{...t})},AttributeHelp:ht,ActionButtonPlaceholder:function(t){const n=Bc();return(0,e.createElement)("div",{...n},(0,e.createElement)("div",{className:t.wrapperClasses.join(" ")},(0,e.createElement)(Ac,{isPrimary:!0,className:t.buttonClasses.join(" ")},(0,e.createElement)(Ic,{placeholder:"Input Submit label...",allowedFormats:[],value:t.attributes.label,onChange:e=>t.setAttributes({label:e})}))))},ActionModalFooterSlotFill:c,ScopedAttributesProvider:function({children:t}){const[n,r]=fe(),[l,o]=Pc(()=>n);return(0,e.createElement)(Rc.Provider,{value:{realAttributes:n,setRealAttributes:r,attributes:l,setAttributes:o}},t)}},window.JetFBActions={...null!==(Vc=window?.JetFBActions)&&void 0!==Vc?Vc:{},withPreset:ge,getInnerBlocks:R,getAvailableFieldsString:function(e){const t=T([e]),n=[];return t.forEach(function(e){n.push("%FIELD::"+e+"%")}),B("Available fields: ","jet-form-builder")+n.join(", ")},getAvailableFields:T,getFormFieldsBlocks:F,getFieldsWithoutCurrent:O,gatewayAttr:P,gatewayLabel:L,registerGateway:function(e,t,n="cred"){window.JetFBGatewaysList=window.JetFBGatewaysList||{},window.JetFBGatewaysList[e]=window.JetFBGatewaysList[e]||{},window.JetFBGatewaysList[e][n]=t},Tools:k,event:e=>{const t=new Event(e);return()=>document.dispatchEvent(t)},listen:(e,t)=>{document.addEventListener(e,t)},renderGateway:D,renderGatewayWithPlaceholder:function(e,t,n="cred",r=null){return G(e,n)?(t.Placeholder=r,D(e,t,n)):r},maybeCyrToLatin:w,getConvertedName:_,getBlockControls:function(e="all"){if(!e)return!1;const t=lr();return"all"===e?t:!!(t[e]&&t[e].attrs&&Array.isArray(t[e].attrs)&&0{e.includes(n.name)&&t.push(n)}),t},convertObjectToOptionsList:function(e=[],{usePlaceholder:t=!0,label:n="--",value:r=""}={}){const l={label:n,value:r};if(!e)return t?[l]:[];const o=Object.entries(e).map(e=>({value:e.value,label:e.label}));return t?[l,...o]:o},appendField:function(e,t=[]){M("jet.fb.register.fields","jet-form-builder",n=>n.map(n=>t.length&&!t.includes(n.name)?n:e(n)))},insertMacro:In,column:y,getCurrentInnerBlocks:function(){const{"data-block":e}=ac();return R(e)},humanReadableCondition:Ci,assetUrl:function(e=""){return JetFormEditorData.assetsUrl+e},set:function(e,t,n){const r=JSON.parse(JSON.stringify(e));let l,o=r;for(let e=0;e{function t(){e.call(this)}return t.prototype=Object.create(e.prototype),t}},window.JetFBHooks={...null!==(Jc=window?.JetFBHooks)&&void 0!==Jc?Jc:{},useSelectPostMeta:H,useSuccessNotice:$,useEvents:ae,useRequestEvents:function(){const e=ie(e=>e("jet-forms/actions").getCurrentAction());return ae(e)},useBlockConditions:ce,useUniqKey:de,useBlockAttributes:fe,useIsAdvancedValidation:function(){const{type:e}=H("_jf_validation"),[t]=fe();return t.validation?.type?"advanced"===t.validation?.type:"advanced"===e},useGroupedValidationMessages:function(){const[e]=Ue(We);return e},withSelectFormFields:(e=[],t=!1,n=!1)=>r=>{let l=[];const o=["submit","form-break","heading","group-break","conditional",...e];return Y(e=>{e.name.includes("jet-forms/")&&e.attributes.name&&!o.find(t=>e.name.includes(t))&&l.push({blockName:e.name,name:e.attributes.name,label:e.attributes.label||e.attributes.name,value:e.attributes.name})},r("core/block-editor").getBlocks()),l=t?[{value:"",label:t},...l]:l,{formFields:n?l:z("jet.fb.getFormFieldsBlocks",l)}},withSelectGateways:X,withDispatchGateways:function(e){const t=e("jet-forms/gateways");return{setGatewayRequest:t.setRequest,setGatewayScenario:t.setScenario,setScenario:t.setCurrentScenario,setGateway:t.setGateway,setGatewayInner:t.setGatewayInner,setGatewaySpecific:t.setGatewaySpecific,clearGateway:t.clearGateway,clearScenario:t.clearScenario}},useOnUpdateModal:W,useInsertMacro:On,useIsHasAttribute:he,useUniqueNameOnDuplicate:function(e=null){const t=cc(),[,n]=fe(),r=t["data-block"],l=sc(e=>{if(!e(ra).isRecentlyAdded(r))return!1;const{hasChanged:t,names:n}=e(ra).getUniqueNames(r);return!!t&&n},[r]);ic(()=>{l&&("function"!=typeof e?n({name:l.split("|")[0]}):e(l))},[l])},useSupport:function(e){const{name:t}=Fc();return Nc(n=>{const r=n("core/blocks").getBlockType(t);return Tc(r,["supports",e],!1)},[t,e])},useScopedAttributesContext:function(){return Mc(Rc)},useOpenEditorPanel:function(e){const{enableComplementaryArea:t}=Dc("core/interface"),{toggleEditorPanelOpened:n}=Dc("core/edit-post"),r=Gc(t=>t("core/edit-post").isEditorPanelOpened(e),[e]);return()=>{t("core/edit-post","edit-post/document"),!r&&n(e)}}}})()})(); \ No newline at end of file diff --git a/assets/build/frontend/advanced.reporting.asset.php b/assets/build/frontend/advanced.reporting.asset.php index 583b9dd92..afa49f7be 100644 --- a/assets/build/frontend/advanced.reporting.asset.php +++ b/assets/build/frontend/advanced.reporting.asset.php @@ -1 +1 @@ - array('wp-api-fetch'), 'version' => 'cd9019dc6f52cd8ab6d0'); + array('wp-api-fetch'), 'version' => '430375a73ffd28e91658'); diff --git a/assets/build/frontend/advanced.reporting.js b/assets/build/frontend/advanced.reporting.js index e4b4d729d..e38fed18c 100644 --- a/assets/build/frontend/advanced.reporting.js +++ b/assets/build/frontend/advanced.reporting.js @@ -1 +1 @@ -(()=>{"use strict";var t={n:e=>{var i=e&&e.__esModule?()=>e.default:()=>e;return t.d(i,{a:i}),i},d:(e,i)=>{for(var r in i)t.o(i,r)&&!t.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:i[r]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e)};const{Restriction:e,CalculatedFormula:i}=window.JetFormBuilderAbstract;function r(){e.call(this),this.message="",this.formula=null,this.watchedAttrs=[]}r.prototype=Object.create(e.prototype),r.prototype.message="",r.prototype.formula=null,r.prototype.watchedAttrs=[],r.prototype.isServerSide=function(){return!1},r.prototype.getMessage=function(){return this.message},r.prototype.getRawMessage=function(){return"Error"},r.prototype.getMessageBySlug=function(t){return function(t,e){var i,r,s,n;const{reporting:o}=t,a=null!==(i=o.messages[e])&&void 0!==i?i:"";if(a)return a;const u=null!==(r=window?.JetFormsValidation)&&void 0!==r&&r;if(!1===u)return"";const c=o.input.getSubmit(),{messages:l}=null!==(s=u[c.getFormId()])&&void 0!==s?s:{};return null!==(n=l[e])&&void 0!==n?n:""}(this,t)},r.prototype.onReady=function(){this.formula=new i(this.reporting.input),this.formula.observe(this.getRawMessage()),this.formula.setResult=()=>{this.message=this.formula.calculateString()},this.formula.setResult(),this.watchedAttrs.length&&(this.reporting.watchAttrs=[...new Set([...this.reporting.watchAttrs,...this.watchedAttrs])])};const s=r;function n(){s.call(this),this.watchedAttrs.push("max"),this.isSupported=function(t,e){const{max:i=!1}=e.input.attrs;return!1!==i&&["number","range"].includes(t.type)},this.validate=function(){const t=this.getValue(),{max:e}=this.reporting.input.attrs;return!t||+t<=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("number_max")}}n.prototype=Object.create(s.prototype);const o=n;function a(){s.call(this),this.watchedAttrs.push("min"),this.isSupported=function(t,e){const{min:i=!1}=e.input.attrs;return!1!==i&&["number","range"].includes(t.type)},this.validate=function(){const t=this.getValue(),{min:e}=this.reporting.input.attrs;return!t||+t>=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("number_min")}}a.prototype=Object.create(s.prototype);const u=a;function c(){s.call(this),this.isSupported=function(t){return"url"===t.type},this.validate=function(){const t=this.getValue();return!t||/((mailto\:|(news|(ht|f)tp(s?))\:\/\/)\S+)/.test(t)},this.getRawMessage=function(){return this.getMessageBySlug("url")}}c.prototype=Object.create(s.prototype);const l=c;function h(){s.call(this),this.isSupported=function(t){return"email"===t.type},this.validate=function(){const t=this.getValue();return!t||/^[\w-\.\+]+@([\w-]+\.)+[\w-]{1,6}$/.test(t)},this.getRawMessage=function(){return this.getMessageBySlug("email")}}h.prototype=Object.create(s.prototype);const p=h;function d(){s.call(this),this.watchedAttrs.push("minLength"),this.isSupported=function(t,e){const{minLength:i=!1}=e.input.attrs;return!1!==i},this.validate=function(){const t=this.getValue()?.length,{minLength:e}=this.reporting.input.attrs;return!t||t>=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("char_min")}}d.prototype=Object.create(s.prototype);const g=d;function f(){s.call(this),this.watchedAttrs.push("maxLength"),this.isSupported=function(t,e){const{maxLength:i=!1}=e.input.attrs;return!1!==i},this.validate=function(){const t=this.getValue()?.length,{maxLength:e}=this.reporting.input.attrs;return!t||t<=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("char_max")}}f.prototype=Object.create(s.prototype);const m=f,{isEmpty:y}=JetFormBuilderFunctions;function v(){s.call(this),this.type="required"}v.prototype=Object.create(s.prototype),v.prototype.isSupported=function(t,e){return e.input.isRequired},v.prototype.validate=function(){const t=this.getValue();return!y(t)},v.prototype.getRawMessage=function(){return this.getMessageBySlug("empty")};const S=v;function b(){s.call(this),this.isSupported=function(t){return t.classList.contains("jet-form-builder__masked-field")&&jQuery.fn.inputmask},this.validate=function(){const t=this.getValue(),e=this.reporting.getNode();return!t||e.inputmask.isComplete()},this.getRawMessage=function(){return this.getMessageBySlug("inputmask")}}b.prototype=Object.create(s.prototype);const w=b;function j(){s.call(this),this.isSupported=function(t,e){var i;const r=t.closest(".jet-form-builder-row"),s=JSON.parse(null!==(i=r.dataset?.validationRules)&&void 0!==i?i:"[]");return!!Boolean(s.length)&&(e.restrictions=[...e.restrictions,...X(s,e)],!1)}}j.prototype=Object.create(s.prototype);const _=j;function R(){s.call(this),this.attrs={}}R.prototype=Object.create(s.prototype),R.prototype.attrs={},R.prototype.setAttrs=function(t){this.attrs=t},R.prototype.getSlug=function(){throw new Error("you need to return slug of rule")},R.prototype.getRawMessage=function(){var t;return null!==(t=this.attrs?.message)&&void 0!==t?t:""};const P=R;function A(){P.call(this),this.getSlug=function(){return"contain"}}A.prototype=Object.create(P.prototype),A.prototype.setAttrs=function(t){P.prototype.setAttrs.call(this,t),Z.call(this)},A.prototype.validate=function(){const t=this.getValue();return!t||t.includes(this.attrs.value)};const O=A;function B(){O.call(this),this.getSlug=function(){return"contain_not"},this.validate=function(){return!this.getValue()||!O.prototype.validate.call(this)}}B.prototype=Object.create(O.prototype);const V=B;function x(){P.call(this),this.getSlug=function(){return"regexp"}}x.prototype=Object.create(P.prototype),x.prototype.setAttrs=function(t){P.prototype.setAttrs.call(this,t),Z.call(this)},x.prototype.validate=function(){const t=this.getValue();return!t||new RegExp(this.attrs.value,"g").test(t)};const M=x;function F(){M.call(this),this.getSlug=function(){return"regexp_not"},this.validate=function(){return!this.getValue()||!M.prototype.validate.call(this)}}F.prototype=Object.create(M.prototype);const E=F,k=window.wp.apiFetch;var L=t.n(k);function N(){P.call(this),this.getSlug=function(){return"ssr"},this.isServerSide=function(){return!0},this.validatePromise=async function(t=null){if(!this.getValue())return Promise.resolve();const e=this.getFormData(),{rootNode:i}=this.reporting.input.getRoot();switch(i.getAttribute("ssr_validation_method")||"rest"){case"admin_ajax":return this.validateViaAdminAjax(e,t);case"self":return this.validateViaSelfRequest(e,t);default:return this.validateViaRest(e,t)}},this.validateViaRest=async function(t,e){try{const i=await L()({path:"/jet-form-builder/v1/validate-field",method:"POST",body:t,signal:e});return i?.result?Promise.resolve():Promise.reject()}catch(t){throw t}},this.validateViaAdminAjax=async function(t,e){try{const i=await fetch(window.JetFormBuilderSettings.adminajaxurl,{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:new URLSearchParams({action:"jet_fb_ssr_validation_ajax",data:JSON.stringify(Object.fromEntries(t))}),signal:e}).then((t=>t.json()));return i?.result?Promise.resolve():Promise.reject()}catch(t){throw t}},this.validateViaSelfRequest=async function(t,e){try{const i=new URL(window.location.href);i.searchParams.set("jet_fb_ssr_self_validation","1");for(const[e,r]of t.entries())i.searchParams.append(e,r);const r=await fetch(i.toString(),{method:"GET",signal:e}).then((t=>t.json()));return r?.result?Promise.resolve():Promise.reject()}catch(t){throw t}},this.getFormData=function(){const{input:t}=this.reporting,{rootNode:e}=t.getRoot(),i=new FormData(e);i.delete("_wpnonce"),i.set("_jfb_validation_rule_index",this.attrs.index);for(const e of t.path)i.append("_jfb_validation_path[]",e);return this.attrs._sig&&i.set("_jfb_validation_sig",this.attrs._sig),i}}N.prototype=Object.create(P.prototype);const J=N;function T(){P.call(this),this.getSlug=function(){return"equal"},this.validate=function(){const t=this.getValue();return!t||t===this.attrs.value}}T.prototype=Object.create(P.prototype),T.prototype.setAttrs=function(t){P.prototype.setAttrs.call(this,t),Z.call(this)};const C=T,{getTimestamp:q}=JetFormBuilderFunctions;function I(){s.call(this),this.watchedAttrs.push("min"),this.isSupported=function(t,e){const{min:i=!1}=e.input.attrs;return!1!==i&&["time","date","datetime-local"].includes(t.type)},this.validate=function(){const t=this.getValue();if(!t)return!0;const{min:e}=this.reporting.input.attrs,{time:i}=q(t),{time:r}=q(e.value.current);return i>=r},this.getRawMessage=function(){return this.getMessageBySlug("date_min")}}I.prototype=Object.create(s.prototype);const D=I,{getTimestamp:H}=JetFormBuilderFunctions;function U(){s.call(this),this.watchedAttrs.push("max"),this.isSupported=function(t,e){const{max:i=!1}=e.input.attrs;return!1!==i&&["time","date","datetime-local"].includes(t.type)},this.validate=function(){const t=this.getValue();if(!t)return!0;const{max:e}=this.reporting.input.attrs,{time:i}=H(t),{time:r}=H(e.value.current);return i<=r},this.getRawMessage=function(){return this.getMessageBySlug("date_max")}}U.prototype=Object.create(s.prototype);const G=U,{applyFilters:Q}=JetPlugins.hooks,{isEmpty:$}=JetFormBuilderFunctions,z=()=>Q("jet.fb.advanced.rules",[O,V,M,E,J,C]);let K=[],W=[];function X(t,e){const i=[];K.length||(K=z());for(const[r,s]of Object.entries(t))for(const t of K){const n=new t;if(s.type===n.getSlug()){delete s.type,n.setReporting(e),n.setAttrs({...s,index:r}),n.onReady(),i.push(n);break}}return i}function Y(t){return t.closest(".jet-form-builder-row")}function Z(){if(!this.attrs?.field)return;const{root:t}=this.reporting.input,e=t.getInput(this.attrs.field);e.watch((()=>{this.attrs.value=e.value.current,this.reporting.valuePrev=null,this.reporting.validateOnChange()})),$(e.value.current)||(this.attrs.value=e.value.current)}function tt(t){for(const e of t.children)if(e.classList.contains("error-message"))return e;const e=t.querySelector(".jet-form-builder-col__end");return!!e&&tt(e)}const{ReportingInterface:et}=JetFormBuilderAbstract,{allRejected:it}=JetFormBuilderFunctions;function rt(){et.call(this),this.type="inherit",this.messages={},this.skipServerSide=!0,this.watchAttrs=[],this.queue=[]}rt.prototype=Object.create(et.prototype),rt.prototype.skipServerSide=!0,rt.prototype.hasServerSide=!1,rt.prototype.isProcess=null,rt.prototype.queue=[],rt.prototype.setRestrictions=function(){!function(t){W.length||(W=Q("jet.fb.restrictions",[D,G,o,u,l,p,w,g,m,S,_]));for(const e of W){const i=new e;i.isSupported(t.getNode(),t)&&(i.setReporting(t),i.onReady(),t.restrictions.push(i))}}(this)},rt.prototype.isSupported=function(t,e){this.type=function(t){var e;const i=Y(t),{validationType:r=""}=null!==(e=i?.dataset)&&void 0!==e?e:{};return r}(t);const i="inherit"===this.type?function(t){var e,i;const r=null!==(e=window?.JetFormsValidation)&&void 0!==e&&e;if(!1===r)return"";const s=t.getSubmit().getFormId(),{type:n=""}=null!==(i=r[s])&&void 0!==i?i:{};return n}(e):this.type;return!!i?.length},rt.prototype.getErrorsRaw=async function(t,e=null){this.hasServerSide&&this.input.loading.start();let i=await it(t);return this.valuePrev=this.input.getValue(),this.hasServerSide&&this.input.loading.end(),e?.aborted&&(i=[]),i},rt.prototype.reportRaw=function(t){let e="";for(const i of t)if(e=i.getMessage(),e?.length)break;e?this.insertError(e):this.clearReport()},rt.prototype.setInput=function(t){this.messages=function(t){var e;const i=Y(t),{validationMessages:r="{}"}=null!==(e=i?.dataset)&&void 0!==e?e:{};return JSON.parse(r)}(t.nodes[0]),et.prototype.setInput.call(this,t)},rt.prototype.observeAttrs=function(){for(const t of this.watchAttrs)this.input.attrs.hasOwnProperty(t)&&this.input.attrs[t].value.watch((()=>{this.valuePrev=null,this.validateOnBlur()}))},rt.prototype.clearReport=function(){(()=>{const t=Y(this.getNode());if(!t)return;t.classList.remove("field-has-error");const e=tt(t);e&&e.remove()})(),this.makeValid()},rt.prototype.insertError=function(t){(()=>{const e=Y(this.getNode()),i=this.createError(e,t);if(e.classList.add("field-has-error"),i.isConnected)return;const r=e.querySelector(".jet-form-builder-col__end");r?r.appendChild(i):e.appendChild(i)})(),this.makeInvalid()},rt.prototype.createError=function(t,e){const i=tt(t);if(i)return i.innerHTML=e,i;const r=this.getNode(),s=document.createElement("div");return s.classList.add("error-message"),s.innerHTML=e,s.id=r.id+"__error",s},rt.prototype.makeInvalid=function(){var t;const e=tt(Y(this.getNode()));this.getNode().setAttribute("aria-invalid","true"),this.getNode().setAttribute("aria-describedby",null!==(t=e?.id)&&void 0!==t&&t)},rt.prototype.makeValid=function(){this.getNode().removeAttribute("aria-invalid"),this.getNode().removeAttribute("aria-describedby")},rt.prototype.validateOnChange=function(t=!1){const e=this.input.getValue();if((!e||""===e)&&null===this.valuePrev&&this.input.getContext().silence)return;this.switchButtonsState(!0);const i=()=>{this.input.getContext().setSilence(!1),this.validate().then((()=>{})).catch((()=>{})).finally((()=>{this.isProcess=null;const t=[...this.queue];this.queue=[],t.length?(this.valuePrev=null,t.forEach((t=>t())),this.switchButtonsState()):this.switchButtonsState()}))};t&&this.isProcess&&(this.queue=[i]),this.isProcess||(this.isProcess=!0,i())},rt.prototype.validateOnBlur=function(t=null){if(this.isProcess)return;const e=this.input.getValue();(e&&""!==e||null!==this.valuePrev||!this.input.getContext().silence)&&(this.isProcess=!0,this.skipServerSide=!1,this.switchButtonsState(!0),this.canSubmitForm(!1),this.canTriggerEnterSubmit(!1),this.input.getContext().setSilence(!1),this.validate(t).then((()=>{})).catch((()=>{})).finally((()=>{this.skipServerSide=!0,this.hasServerSide=!1,this.isProcess=null,this.input.nodes[0].readOnly=!1,t?.aborted||(this.switchButtonsState(),this.canSubmitForm(),this.validityState.current&&this.canTriggerEnterSubmit())})))},rt.prototype.switchButtonsState=function(t=!1){const e=this.input.nodes[0].closest(".jet-form-builder-page");if(e&&!this.input.getContext().silence){const i=e.querySelectorAll(".jet-form-builder__next-page, .jet-form-builder__prev-page, .jet-form-builder__action-button");for(const e of i)(e.classList.contains("jet-form-builder__submit")||this.isNodeBelongThis(e))&&(e.classList.contains("jet-form-builder__prev-page")?e.disabled=t:e.disabled=!0===t||!this.validityState.current)}},rt.prototype.canTriggerEnterSubmit=function(t=!0){const e=this.input.root.form;e&&(e.canTriggerEnterSubmit=t)},rt.prototype.canSubmitForm=function(t=!0){const e=this.input.root.form;e&&(e.canSubmitForm=t)},rt.prototype.isNodeBelongThis=function(t){const e=t.closest(".jet-form-builder-page");return!!e&&!e.classList.contains("jet-form-builder-page--hidden")},rt.prototype.validateOnChangeState=function(){if(this.isProcess)return Promise.resolve();const t=this.input.getValue();return t&&""!==t||null!==this.valuePrev||!this.input.getContext().silence?(this.switchButtonsState(!0),this.canTriggerEnterSubmit(!1),this.input.maskValidation&&this.input.changeStateMaskValidation(),this.isProcess=!0,this.skipServerSide=!1,new Promise(((t,e)=>{this.validate().then(t).catch(e).finally((()=>{this.skipServerSide=!0,this.hasServerSide=!1,this.isProcess=null,this.input.nodes[0].readOnly=!1,this.switchButtonsState(),this.canTriggerEnterSubmit()}))}))):Promise.resolve()},rt.prototype.canProcessRestriction=function(t){return!this.skipServerSide||!t.isServerSide()},rt.prototype.beforeProcessRestriction=function(t){this.hasServerSide=!!t.isServerSide()||this.hasServerSide};const st=rt;var nt;const{addFilter:ot,addAction:at}=JetPlugins.hooks;at("jet.fb.observe.after","jet-form-builder/observe-dynamic-attrs",(function(t){t.getInputs().forEach((t=>{t.reporting instanceof st&&t.reporting.observeAttrs()}))}),11),ot("jet.fb.reporting","jet-form-builder/advanced-reporting",(function(t){return[st,...t]})),window.JetFormBuilderAbstract={...null!==(nt=window.JetFormBuilderAbstract)&&void 0!==nt?nt:{},AdvancedRestriction:s,NotEmptyRestriction:S}})(); \ No newline at end of file +(()=>{"use strict";var t={n:e=>{var i=e&&e.__esModule?()=>e.default:()=>e;return t.d(i,{a:i}),i},d:(e,i)=>{for(var r in i)t.o(i,r)&&!t.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:i[r]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e)};const{Restriction:e,CalculatedFormula:i}=window.JetFormBuilderAbstract;function r(){e.call(this),this.message="",this.formula=null,this.watchedAttrs=[]}r.prototype=Object.create(e.prototype),r.prototype.message="",r.prototype.formula=null,r.prototype.watchedAttrs=[],r.prototype.isServerSide=function(){return!1},r.prototype.getMessage=function(){return this.message},r.prototype.getRawMessage=function(){return"Error"},r.prototype.getMessageBySlug=function(t){return function(t,e){var i,r,s,n;const{reporting:o}=t,a=null!==(i=o.messages[e])&&void 0!==i?i:"";if(a)return a;const u=null!==(r=window?.JetFormsValidation)&&void 0!==r&&r;if(!1===u)return"";const c=o.input.getSubmit(),{messages:l}=null!==(s=u[c.getFormId()])&&void 0!==s?s:{};return null!==(n=l[e])&&void 0!==n?n:""}(this,t)},r.prototype.onReady=function(){this.formula=new i(this.reporting.input),this.formula.observe(this.getRawMessage()),this.formula.setResult=()=>{this.message=this.formula.calculateString()},this.formula.setResult(),this.watchedAttrs.length&&(this.reporting.watchAttrs=[...new Set([...this.reporting.watchAttrs,...this.watchedAttrs])])};const s=r;function n(){s.call(this),this.watchedAttrs.push("max"),this.isSupported=function(t,e){const{max:i=!1}=e.input.attrs;return!1!==i&&["number","range"].includes(t.type)},this.validate=function(){const t=this.getValue(),{max:e}=this.reporting.input.attrs;return!t||+t<=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("number_max")}}n.prototype=Object.create(s.prototype);const o=n;function a(){s.call(this),this.watchedAttrs.push("min"),this.isSupported=function(t,e){const{min:i=!1}=e.input.attrs;return!1!==i&&["number","range"].includes(t.type)},this.validate=function(){const t=this.getValue(),{min:e}=this.reporting.input.attrs;return!t||+t>=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("number_min")}}a.prototype=Object.create(s.prototype);const u=a;function c(){s.call(this),this.isSupported=function(t){return"url"===t.type},this.validate=function(){const t=this.getValue();return!t||/((mailto\:|(news|(ht|f)tp(s?))\:\/\/)\S+)/.test(t)},this.getRawMessage=function(){return this.getMessageBySlug("url")}}c.prototype=Object.create(s.prototype);const l=c;function h(){s.call(this),this.isSupported=function(t){return"email"===t.type},this.validate=function(){const t=this.getValue();return!t||/^[\w-\.\+]+@([\w-]+\.)+[\w-]{1,6}$/.test(t)},this.getRawMessage=function(){return this.getMessageBySlug("email")}}h.prototype=Object.create(s.prototype);const p=h;function d(){s.call(this),this.watchedAttrs.push("minLength"),this.isSupported=function(t,e){const{minLength:i=!1}=e.input.attrs;return!1!==i},this.validate=function(){const t=this.getValue()?.length,{minLength:e}=this.reporting.input.attrs;return!t||t>=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("char_min")}}d.prototype=Object.create(s.prototype);const g=d;function f(){s.call(this),this.watchedAttrs.push("maxLength"),this.isSupported=function(t,e){const{maxLength:i=!1}=e.input.attrs;return!1!==i},this.validate=function(){const t=this.getValue()?.length,{maxLength:e}=this.reporting.input.attrs;return!t||t<=+e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("char_max")}}f.prototype=Object.create(s.prototype);const m=f,{isEmpty:y}=JetFormBuilderFunctions;function v(){s.call(this),this.type="required"}v.prototype=Object.create(s.prototype),v.prototype.isSupported=function(t,e){return e.input.isRequired},v.prototype.validate=function(){const t=this.getValue();return!y(t)},v.prototype.getRawMessage=function(){return this.getMessageBySlug("empty")};const S=v;function b(){s.call(this),this.isSupported=function(t){return t.classList.contains("jet-form-builder__masked-field")&&jQuery.fn.inputmask},this.validate=function(){const t=this.getValue(),e=this.reporting.getNode();return!t||e.inputmask.isComplete()},this.getRawMessage=function(){return this.getMessageBySlug("inputmask")}}b.prototype=Object.create(s.prototype);const w=b;function j(){s.call(this),this.isSupported=function(t,e){var i;const r=t.closest(".jet-form-builder-row"),s=JSON.parse(null!==(i=r.dataset?.validationRules)&&void 0!==i?i:"[]");return!!Boolean(s.length)&&(e.restrictions=[...e.restrictions,...X(s,e)],!1)}}j.prototype=Object.create(s.prototype);const _=j;function R(){s.call(this),this.attrs={}}R.prototype=Object.create(s.prototype),R.prototype.attrs={},R.prototype.setAttrs=function(t){this.attrs=t},R.prototype.getSlug=function(){throw new Error("you need to return slug of rule")},R.prototype.getRawMessage=function(){var t;return null!==(t=this.attrs?.message)&&void 0!==t?t:""};const P=R;function A(){P.call(this),this.getSlug=function(){return"contain"}}A.prototype=Object.create(P.prototype),A.prototype.setAttrs=function(t){P.prototype.setAttrs.call(this,t),Z.call(this)},A.prototype.validate=function(){const t=this.getValue();return!t||t.includes(this.attrs.value)};const O=A;function B(){O.call(this),this.getSlug=function(){return"contain_not"},this.validate=function(){return!this.getValue()||!O.prototype.validate.call(this)}}B.prototype=Object.create(O.prototype);const V=B;function x(){P.call(this),this.getSlug=function(){return"regexp"}}x.prototype=Object.create(P.prototype),x.prototype.setAttrs=function(t){P.prototype.setAttrs.call(this,t),Z.call(this)},x.prototype.validate=function(){const t=this.getValue();return!t||new RegExp(this.attrs.value,"g").test(t)};const M=x;function F(){M.call(this),this.getSlug=function(){return"regexp_not"},this.validate=function(){return!this.getValue()||!M.prototype.validate.call(this)}}F.prototype=Object.create(M.prototype);const E=F,k=window.wp.apiFetch;var L=t.n(k);function N(){P.call(this),this.getSlug=function(){return"ssr"},this.isServerSide=function(){return!0},this.validatePromise=async function(t=null){if(!this.getValue())return Promise.resolve();const e=this.getFormData(),{rootNode:i}=this.reporting.input.getRoot();switch(i.getAttribute("ssr_validation_method")||"rest"){case"admin_ajax":return this.validateViaAdminAjax(e,t);case"self":return this.validateViaSelfRequest(e,t);default:return this.validateViaRest(e,t)}},this.validateViaRest=async function(t,e){try{const i=await L()({path:"/jet-form-builder/v1/validate-field",method:"POST",body:t,signal:e});return i?.result?Promise.resolve():Promise.reject()}catch(t){throw t}},this.validateViaAdminAjax=async function(t,e){try{const i=await fetch(window.JetFormBuilderSettings.adminajaxurl,{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:new URLSearchParams({action:"jet_fb_ssr_validation_ajax",data:JSON.stringify(Object.fromEntries(t))}),signal:e}).then(t=>t.json());return i?.result?Promise.resolve():Promise.reject()}catch(t){throw t}},this.validateViaSelfRequest=async function(t,e){try{const i=new URL(window.location.href);i.searchParams.set("jet_fb_ssr_self_validation","1");for(const[e,r]of t.entries())i.searchParams.append(e,r);const r=await fetch(i.toString(),{method:"GET",signal:e}).then(t=>t.json());return r?.result?Promise.resolve():Promise.reject()}catch(t){throw t}},this.getFormData=function(){const{input:t}=this.reporting,{rootNode:e}=t.getRoot(),i=new FormData(e);i.delete("_wpnonce"),i.set("_jfb_validation_rule_index",this.attrs.index);for(const e of t.path)i.append("_jfb_validation_path[]",e);return this.attrs._sig&&i.set("_jfb_validation_sig",this.attrs._sig),i}}N.prototype=Object.create(P.prototype);const J=N;function T(){P.call(this),this.getSlug=function(){return"equal"},this.validate=function(){const t=this.getValue();return!t||t===this.attrs.value}}T.prototype=Object.create(P.prototype),T.prototype.setAttrs=function(t){P.prototype.setAttrs.call(this,t),Z.call(this)};const C=T,{getTimestamp:q}=JetFormBuilderFunctions;function I(){s.call(this),this.watchedAttrs.push("min"),this.isSupported=function(t,e){const{min:i=!1}=e.input.attrs;return!1!==i&&["time","date","datetime-local"].includes(t.type)},this.validate=function(){const t=this.getValue();if(!t)return!0;const{min:e}=this.reporting.input.attrs,{time:i}=q(t),{time:r}=q(e.value.current);return i>=r},this.getRawMessage=function(){return this.getMessageBySlug("date_min")}}I.prototype=Object.create(s.prototype);const D=I,{getTimestamp:H}=JetFormBuilderFunctions;function U(){s.call(this),this.watchedAttrs.push("max"),this.isSupported=function(t,e){const{max:i=!1}=e.input.attrs;return!1!==i&&["time","date","datetime-local"].includes(t.type)},this.validate=function(){const t=this.getValue();if(!t)return!0;const{max:e}=this.reporting.input.attrs,{time:i}=H(t),{time:r}=H(e.value.current);return i<=r},this.getRawMessage=function(){return this.getMessageBySlug("date_max")}}U.prototype=Object.create(s.prototype);const G=U,{applyFilters:Q}=JetPlugins.hooks,{isEmpty:$}=JetFormBuilderFunctions,z=()=>Q("jet.fb.advanced.rules",[O,V,M,E,J,C]);let K=[],W=[];function X(t,e){const i=[];K.length||(K=z());for(const[r,s]of Object.entries(t))for(const t of K){const n=new t;if(s.type===n.getSlug()){delete s.type,n.setReporting(e),n.setAttrs({...s,index:r}),n.onReady(),i.push(n);break}}return i}function Y(t){return t.closest(".jet-form-builder-row")}function Z(){if(!this.attrs?.field)return;const{root:t}=this.reporting.input,e=t.getInput(this.attrs.field);e.watch(()=>{this.attrs.value=e.value.current,this.reporting.valuePrev=null,this.reporting.validateOnChange()}),$(e.value.current)||(this.attrs.value=e.value.current)}function tt(t){for(const e of t.children)if(e.classList.contains("error-message"))return e;const e=t.querySelector(".jet-form-builder-col__end");return!!e&&tt(e)}const{ReportingInterface:et}=JetFormBuilderAbstract,{allRejected:it}=JetFormBuilderFunctions;function rt(){et.call(this),this.type="inherit",this.messages={},this.skipServerSide=!0,this.watchAttrs=[],this.queue=[]}rt.prototype=Object.create(et.prototype),rt.prototype.skipServerSide=!0,rt.prototype.hasServerSide=!1,rt.prototype.isProcess=null,rt.prototype.queue=[],rt.prototype.setRestrictions=function(){!function(t){W.length||(W=Q("jet.fb.restrictions",[D,G,o,u,l,p,w,g,m,S,_]));for(const e of W){const i=new e;i.isSupported(t.getNode(),t)&&(i.setReporting(t),i.onReady(),t.restrictions.push(i))}}(this)},rt.prototype.isSupported=function(t,e){this.type=function(t){var e;const i=Y(t),{validationType:r=""}=null!==(e=i?.dataset)&&void 0!==e?e:{};return r}(t);const i="inherit"===this.type?function(t){var e,i;const r=null!==(e=window?.JetFormsValidation)&&void 0!==e&&e;if(!1===r)return"";const s=t.getSubmit().getFormId(),{type:n=""}=null!==(i=r[s])&&void 0!==i?i:{};return n}(e):this.type;return!!i?.length},rt.prototype.getErrorsRaw=async function(t,e=null){this.hasServerSide&&this.input.loading.start();let i=await it(t);return this.valuePrev=this.input.getValue(),this.hasServerSide&&this.input.loading.end(),e?.aborted&&(i=[]),i},rt.prototype.reportRaw=function(t){let e="";for(const i of t)if(e=i.getMessage(),e?.length)break;e?this.insertError(e):this.clearReport()},rt.prototype.setInput=function(t){this.messages=function(t){var e;const i=Y(t),{validationMessages:r="{}"}=null!==(e=i?.dataset)&&void 0!==e?e:{};return JSON.parse(r)}(t.nodes[0]),et.prototype.setInput.call(this,t)},rt.prototype.observeAttrs=function(){for(const t of this.watchAttrs)this.input.attrs.hasOwnProperty(t)&&this.input.attrs[t].value.watch(()=>{this.valuePrev=null,this.validateOnBlur()})},rt.prototype.clearReport=function(){(()=>{const t=Y(this.getNode());if(!t)return;t.classList.remove("field-has-error");const e=tt(t);e&&e.remove()})(),this.makeValid()},rt.prototype.insertError=function(t){(()=>{const e=Y(this.getNode()),i=this.createError(e,t);if(e.classList.add("field-has-error"),i.isConnected)return;const r=e.querySelector(".jet-form-builder-col__end");r?r.appendChild(i):e.appendChild(i)})(),this.makeInvalid()},rt.prototype.createError=function(t,e){const i=tt(t);if(i)return i.innerHTML=e,i;const r=this.getNode(),s=document.createElement("div");return s.classList.add("error-message"),s.innerHTML=e,s.id=r.id+"__error",s},rt.prototype.makeInvalid=function(){var t;const e=tt(Y(this.getNode()));this.getNode().setAttribute("aria-invalid","true"),this.getNode().setAttribute("aria-describedby",null!==(t=e?.id)&&void 0!==t&&t)},rt.prototype.makeValid=function(){this.getNode().removeAttribute("aria-invalid"),this.getNode().removeAttribute("aria-describedby")},rt.prototype.validateOnChange=function(t=!1){const e=this.input.getValue();if((!e||""===e)&&null===this.valuePrev&&this.input.getContext().silence)return;this.switchButtonsState(!0);const i=()=>{this.input.getContext().setSilence(!1),this.validate().then(()=>{}).catch(()=>{}).finally(()=>{this.isProcess=null;const t=[...this.queue];this.queue=[],t.length?(this.valuePrev=null,t.forEach(t=>t()),this.switchButtonsState()):this.switchButtonsState()})};t&&this.isProcess&&(this.queue=[i]),this.isProcess||(this.isProcess=!0,i())},rt.prototype.validateOnBlur=function(t=null){if(this.isProcess)return;const e=this.input.getValue();(e&&""!==e||null!==this.valuePrev||!this.input.getContext().silence)&&(this.isProcess=!0,this.skipServerSide=!1,this.switchButtonsState(!0),this.canSubmitForm(!1),this.canTriggerEnterSubmit(!1),this.input.getContext().setSilence(!1),this.validate(t).then(()=>{}).catch(()=>{}).finally(()=>{this.skipServerSide=!0,this.hasServerSide=!1,this.isProcess=null,this.input.nodes[0].readOnly=!1,t?.aborted||(this.switchButtonsState(),this.canSubmitForm(),this.validityState.current&&this.canTriggerEnterSubmit())}))},rt.prototype.switchButtonsState=function(t=!1){const e=this.input.nodes[0].closest(".jet-form-builder-page");if(e&&!this.input.getContext().silence){const i=e.querySelectorAll(".jet-form-builder__next-page, .jet-form-builder__prev-page, .jet-form-builder__action-button");for(const e of i)(e.classList.contains("jet-form-builder__submit")||this.isNodeBelongThis(e))&&(e.classList.contains("jet-form-builder__prev-page")?e.disabled=t:e.disabled=!0===t||!this.validityState.current)}},rt.prototype.canTriggerEnterSubmit=function(t=!0){const e=this.input.root.form;e&&(e.canTriggerEnterSubmit=t)},rt.prototype.canSubmitForm=function(t=!0){const e=this.input.root.form;e&&(e.canSubmitForm=t)},rt.prototype.isNodeBelongThis=function(t){const e=t.closest(".jet-form-builder-page");return!!e&&!e.classList.contains("jet-form-builder-page--hidden")},rt.prototype.validateOnChangeState=function(){if(this.isProcess)return Promise.resolve();const t=this.input.getValue();return t&&""!==t||null!==this.valuePrev||!this.input.getContext().silence?(this.switchButtonsState(!0),this.canTriggerEnterSubmit(!1),this.input.maskValidation&&this.input.changeStateMaskValidation(),this.isProcess=!0,this.skipServerSide=!1,new Promise((t,e)=>{this.validate().then(t).catch(e).finally(()=>{this.skipServerSide=!0,this.hasServerSide=!1,this.isProcess=null,this.input.nodes[0].readOnly=!1,this.switchButtonsState(),this.canTriggerEnterSubmit()})})):Promise.resolve()},rt.prototype.canProcessRestriction=function(t){return!this.skipServerSide||!t.isServerSide()},rt.prototype.beforeProcessRestriction=function(t){this.hasServerSide=!!t.isServerSide()||this.hasServerSide};const st=rt;var nt;const{addFilter:ot,addAction:at}=JetPlugins.hooks;at("jet.fb.observe.after","jet-form-builder/observe-dynamic-attrs",function(t){t.getInputs().forEach(t=>{t.reporting instanceof st&&t.reporting.observeAttrs()})},11),ot("jet.fb.reporting","jet-form-builder/advanced-reporting",function(t){return[st,...t]}),window.JetFormBuilderAbstract={...null!==(nt=window.JetFormBuilderAbstract)&&void 0!==nt?nt:{},AdvancedRestriction:s,NotEmptyRestriction:S}})(); \ No newline at end of file diff --git a/assets/build/frontend/calculated.field.asset.php b/assets/build/frontend/calculated.field.asset.php index 9bf2dc471..102631206 100644 --- a/assets/build/frontend/calculated.field.asset.php +++ b/assets/build/frontend/calculated.field.asset.php @@ -1 +1 @@ - array(), 'version' => '6b5a998095272f8f2c36'); + array(), 'version' => '4ae6e0b6359e9b88a786'); diff --git a/assets/build/frontend/calculated.field.js b/assets/build/frontend/calculated.field.js index 967eb31a5..e9c657b90 100644 --- a/assets/build/frontend/calculated.field.js +++ b/assets/build/frontend/calculated.field.js @@ -1 +1 @@ -(()=>{"use strict";var __webpack_modules__={7889:(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{function getCalculatedWrapper(e){return e.closest(".jet-form-builder__calculated-field")}function isCalculated(e){var t;return!(null===(t=getCalculatedWrapper(e)?.dataset?.formula?.length)||void 0===t||!t)}function convertMillisToDateString(millisInput,format="YYYY-MM-DD"){const millis=eval(millisInput);if(!millis||isNaN(millis)||null===millis||0===millis)return 0;const date=new Date(millis),monthsFull=["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort=monthsFull.map((e=>e.slice(0,3))),daysFull=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort=daysFull.map((e=>e.slice(0,3))),hours12=date.getHours()%12||12,ampm=date.getHours()>=12?"PM":"AM",map={YYYY:date.getFullYear(),MM:String(date.getMonth()+1).padStart(2,"0"),M:date.getMonth()+1,MMM:monthsShort[date.getMonth()],MMMM:monthsFull[date.getMonth()],DD:String(date.getDate()).padStart(2,"0"),D:date.getDate(),HH:String(date.getHours()).padStart(2,"0"),H:date.getHours(),hh:String(hours12).padStart(2,"0"),h:hours12,mm:String(date.getMinutes()).padStart(2,"0"),m:date.getMinutes(),ss:String(date.getSeconds()).padStart(2,"0"),s:date.getSeconds(),dddd:daysFull[date.getDay()],ddd:daysShort[date.getDay()],A:ampm},sortedKeys=Object.keys(map).sort(((e,t)=>t.length-e.length));let formatted=format;const placeholders={};sortedKeys.forEach(((e,t)=>{const a=`\0${t}\0`;placeholders[a]=String(map[e]);const i=e.length<=2&&/^[a-zA-Z]+$/.test(e)?new RegExp(`\\b${e}\\b`,"g"):new RegExp(e,"g");formatted=formatted.replace(i,a)}));for(const[e,t]of Object.entries(placeholders))formatted=formatted.split(e).join(t);return formatted}__webpack_require__.d(__webpack_exports__,{eN:()=>convertMillisToDateString,u3:()=>getCalculatedWrapper,vf:()=>isCalculated})}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var a=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e](a,a.exports,__webpack_require__),a.exports}__webpack_require__.d=(e,t)=>{for(var a in t)__webpack_require__.o(t,a)&&!__webpack_require__.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var __webpack_exports__={},functions=__webpack_require__(7889),_window$JetFormBuilde;const{InputData,CalculatedFormula}=window.JetFormBuilderAbstract,{applyFilters}=JetPlugins.hooks,{applyFilters:deprecatedApplyFilters=!1}=null!==(_window$JetFormBuilde=window?.JetFormBuilderMain?.filters)&&void 0!==_window$JetFormBuilde?_window$JetFormBuilde:{};function CalculatedData(){InputData.call(this),this.formula="",this.precision=0,this.sepDecimal="",this.sepThousands="",this.visibleValNode=null,this.valueTypeProp="number",this.isSupported=function(e){return(0,functions.vf)(e)},this.setValue=function(){const e=new CalculatedFormula(this,{forceFunction:!0});e.observe(this.formula),e.setResult=()=>{if("date"===this.valueTypeProp){const t=e.calculate();this.value.current=(0,functions.eN)(t,this.dateFormat)}else this.value.current=e.calculate()},e.relatedCallback=e=>{const t=applyFilters("jet.fb.calculated.callback",!1,e,this);if(!1!==t)return t;const a="number"===this.valueTypeProp?e.calcValue:e.value.current;if(!1===deprecatedApplyFilters)return a;const i=deprecatedApplyFilters("forms/calculated-field-value",e.value.current,jQuery(e.nodes[0]));return i===e.value.current?a:i},e.emptyValue=()=>"number"===this.valueTypeProp?0:"",e.setResult(),this.value.current=this.value.applySanitizers(this.value.current),this.beforeSubmit((t=>{this.value.silence(),this.value.current=null,this.value.silence(),e.setResult(),t()}),this)},this.setNode=function(e){InputData.prototype.setNode.call(this,e),InputData.prototype.reQueryValue=()=>{};const{formula:t,precision:a,sepDecimal:i,valueType:r,sepThousands:l,dateFormat:s}=(0,functions.u3)(e).dataset;this.formula=t,this.precision=+a,this.sepDecimal=null!=i?i:"",this.sepThousands=null!=l?l:"",this.visibleValNode=e.nextElementSibling,this.valueTypeProp=r,this.dateFormat=s,this.inputType="calculated"},this.addListeners=function(){},this.report=()=>{},this.reQueryValue=()=>{},this.revertValue=()=>{}}CalculatedData.prototype=Object.create(InputData.prototype);const input=CalculatedData,{BaseSignal}=window.JetFormBuilderAbstract;function SignalCalculated(){BaseSignal.call(this),this.isSupported=function(e){return(0,functions.vf)(e)},this.baseSignal=function(){const[e]=this.input.nodes,t="number"===this.input.valueTypeProp;this.input.calcValue=t?this.withPrecision():this.input.value.current,this.input.value.silence(),this.input.value.current=t?this.convertValue():this.input.value.current,this.input.value.silence(),this.input.visibleValNode.textContent=this.input.value.current,e.value=this.input.calcValue},this.runSignal=function(){this.baseSignal();const[e]=this.input.nodes;this.triggerJQuery(e)}}SignalCalculated.prototype=Object.create(BaseSignal.prototype),SignalCalculated.prototype.convertValue=function(){const e=this.input.value.current;if(Number.isNaN(Number(e)))return 0;const t=this.withPrecision().toString().split(".");return this.input.sepThousands&&(t[0]=t[0].replace(/\B(?=(\d{3})+(?!\d))/g,this.input.sepThousands)),t.join(this.input.sepDecimal)},SignalCalculated.prototype.withPrecision=function(){return Number(this.input.value.current).toFixed(this.input.precision)};const signal=SignalCalculated,{addFilter}=JetPlugins.hooks;addFilter("jet.fb.inputs","jet-form-builder/calculated-field",(function(e){return[input,...e]})),addFilter("jet.fb.signals","jet-form-builder/calculated-field",(function(e){return[signal,...e]}))})(); \ No newline at end of file +(()=>{"use strict";var __webpack_modules__={7889(__unused_webpack_module,__webpack_exports__,__webpack_require__){function getCalculatedWrapper(e){return e.closest(".jet-form-builder__calculated-field")}function isCalculated(e){var t;return!(null===(t=getCalculatedWrapper(e)?.dataset?.formula?.length)||void 0===t||!t)}function convertMillisToDateString(millisInput,format="YYYY-MM-DD"){const millis=eval(millisInput);if(!millis||isNaN(millis)||null===millis||0===millis)return 0;const date=new Date(millis),monthsFull=["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort=monthsFull.map(e=>e.slice(0,3)),daysFull=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort=daysFull.map(e=>e.slice(0,3)),hours12=date.getHours()%12||12,ampm=date.getHours()>=12?"PM":"AM",map={YYYY:date.getFullYear(),MM:String(date.getMonth()+1).padStart(2,"0"),M:date.getMonth()+1,MMM:monthsShort[date.getMonth()],MMMM:monthsFull[date.getMonth()],DD:String(date.getDate()).padStart(2,"0"),D:date.getDate(),HH:String(date.getHours()).padStart(2,"0"),H:date.getHours(),hh:String(hours12).padStart(2,"0"),h:hours12,mm:String(date.getMinutes()).padStart(2,"0"),m:date.getMinutes(),ss:String(date.getSeconds()).padStart(2,"0"),s:date.getSeconds(),dddd:daysFull[date.getDay()],ddd:daysShort[date.getDay()],A:ampm},sortedKeys=Object.keys(map).sort((e,t)=>t.length-e.length);let formatted=format;const placeholders={};sortedKeys.forEach((e,t)=>{const a=`\0${t}\0`;placeholders[a]=String(map[e]);const i=e.length<=2&&/^[a-zA-Z]+$/.test(e)?new RegExp(`\\b${e}\\b`,"g"):new RegExp(e,"g");formatted=formatted.replace(i,a)});for(const[e,t]of Object.entries(placeholders))formatted=formatted.split(e).join(t);return formatted}__webpack_require__.d(__webpack_exports__,{eN:()=>convertMillisToDateString,u3:()=>getCalculatedWrapper,vf:()=>isCalculated})}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var a=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e](a,a.exports,__webpack_require__),a.exports}__webpack_require__.d=(e,t)=>{for(var a in t)__webpack_require__.o(t,a)&&!__webpack_require__.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var __webpack_exports__={},functions=__webpack_require__(7889),_window$JetFormBuilde;const{InputData,CalculatedFormula}=window.JetFormBuilderAbstract,{applyFilters}=JetPlugins.hooks,{applyFilters:deprecatedApplyFilters=!1}=null!==(_window$JetFormBuilde=window?.JetFormBuilderMain?.filters)&&void 0!==_window$JetFormBuilde?_window$JetFormBuilde:{};function CalculatedData(){InputData.call(this),this.formula="",this.precision=0,this.sepDecimal="",this.sepThousands="",this.visibleValNode=null,this.valueTypeProp="number",this.isSupported=function(e){return(0,functions.vf)(e)},this.setValue=function(){const e=new CalculatedFormula(this,{forceFunction:!0});e.observe(this.formula),e.setResult=()=>{if("date"===this.valueTypeProp){const t=e.calculate();this.value.current=(0,functions.eN)(t,this.dateFormat)}else this.value.current=e.calculate()},e.relatedCallback=e=>{const t=applyFilters("jet.fb.calculated.callback",!1,e,this);if(!1!==t)return t;const a="number"===this.valueTypeProp?e.calcValue:e.value.current;if(!1===deprecatedApplyFilters)return a;const i=deprecatedApplyFilters("forms/calculated-field-value",e.value.current,jQuery(e.nodes[0]));return i===e.value.current?a:i},e.emptyValue=()=>"number"===this.valueTypeProp?0:"",e.setResult(),this.value.current=this.value.applySanitizers(this.value.current),this.beforeSubmit(t=>{this.value.silence(),this.value.current=null,this.value.silence(),e.setResult(),t()},this)},this.setNode=function(e){InputData.prototype.setNode.call(this,e),InputData.prototype.reQueryValue=()=>{};const{formula:t,precision:a,sepDecimal:i,valueType:r,sepThousands:l,dateFormat:s}=(0,functions.u3)(e).dataset;this.formula=t,this.precision=+a,this.sepDecimal=null!=i?i:"",this.sepThousands=null!=l?l:"",this.visibleValNode=e.nextElementSibling,this.valueTypeProp=r,this.dateFormat=s,this.inputType="calculated"},this.addListeners=function(){},this.report=()=>{},this.reQueryValue=()=>{},this.revertValue=()=>{}}CalculatedData.prototype=Object.create(InputData.prototype);const input=CalculatedData,{BaseSignal}=window.JetFormBuilderAbstract;function SignalCalculated(){BaseSignal.call(this),this.isSupported=function(e){return(0,functions.vf)(e)},this.baseSignal=function(){const[e]=this.input.nodes,t="number"===this.input.valueTypeProp;this.input.calcValue=t?this.withPrecision():this.input.value.current,this.input.value.silence(),this.input.value.current=t?this.convertValue():this.input.value.current,this.input.value.silence(),this.input.visibleValNode.textContent=this.input.value.current,e.value=this.input.calcValue},this.runSignal=function(){this.baseSignal();const[e]=this.input.nodes;this.triggerJQuery(e)}}SignalCalculated.prototype=Object.create(BaseSignal.prototype),SignalCalculated.prototype.convertValue=function(){const e=this.input.value.current;if(Number.isNaN(Number(e)))return 0;const t=this.withPrecision().toString().split(".");return this.input.sepThousands&&(t[0]=t[0].replace(/\B(?=(\d{3})+(?!\d))/g,this.input.sepThousands)),t.join(this.input.sepDecimal)},SignalCalculated.prototype.withPrecision=function(){return Number(this.input.value.current).toFixed(this.input.precision)};const signal=SignalCalculated,{addFilter}=JetPlugins.hooks;addFilter("jet.fb.inputs","jet-form-builder/calculated-field",function(e){return[input,...e]}),addFilter("jet.fb.signals","jet-form-builder/calculated-field",function(e){return[signal,...e]})})(); \ No newline at end of file diff --git a/assets/build/frontend/conditional.block.asset.php b/assets/build/frontend/conditional.block.asset.php index 7197640b0..7c8a4644a 100644 --- a/assets/build/frontend/conditional.block.asset.php +++ b/assets/build/frontend/conditional.block.asset.php @@ -1 +1 @@ - array(), 'version' => '391b1d4b9d68e362bd3f'); + array(), 'version' => '8baca1b6cf0d3cc96cad'); diff --git a/assets/build/frontend/conditional.block.js b/assets/build/frontend/conditional.block.js index a63b4efa3..147a82e4e 100644 --- a/assets/build/frontend/conditional.block.js +++ b/assets/build/frontend/conditional.block.js @@ -1 +1 @@ -(()=>{"use strict";function t(){}t.prototype.isSupported=function(t){return!1},t.prototype.observe=function(){},t.prototype.setOptions=function(t){},t.prototype.isPassed=function(){throw new Error("You must provide ConditionItem::isPassed function")},t.prototype.setList=function(t){this.list=t};const e=t,{CalculatedFormula:i}=JetFormBuilderAbstract;function n(){e.call(this),this.isSupported=function(t){return!!t?.field?.length},this.observe=function(){var t;const e=this.getInput();this.list._fields=null!==(t=this.list._fields)&&void 0!==t?t:[],e&&!this.list._fields.includes(this.field)&&(this.list._fields.push(this.field),e.watch((()=>this.list.onChangeRelated())))},this.getInput=function(){return this.list.root.getInput(this.field)},this.isInputInDOM=function(t){return!!t?.nodes&&(Array.isArray(t.nodes)?t.nodes:Object.values(t.nodes)).some((t=>t&&document.contains(t)))},this.isPassed=function(){const t=this.getInput();return!!t&&!!this.isInputInDOM(t)&&t.checker.check(this,t)},this.setOptions=function(t){this.field=t.field,this.operator=t.operator,this.render_state=t.render_state,this.use_preset=t.use_preset;let e=t?.value;if(Array.isArray(e)||(e=e.split(",").map((t=>t.trim()))),this.use_preset)this.value=e;else{this.value={};for(const[t,n]of Object.entries(e)){const e=new i(this.list.root);e.observe(n),e.setResult=()=>{this.value[t]=""+e.calculate(),this.list.onChangeRelated()},e.setResult()}this.value=Object.values(this.value)}}}n.prototype=Object.create(e.prototype),n.prototype.field=null,n.prototype.value=null,n.prototype.operator=null,n.prototype.use_preset=null;const o=n;function s(){e.call(this),this.isSupported=function(t){var e;return null!==(e=t.or_operator)&&void 0!==e&&e}}s.prototype=Object.create(e.prototype);const r=s;function l(t,e){this.root=e,this.setConditions(t)}l.prototype={root:null,conditions:[],invalid:[],groups:[],onChangeRelated(){this.getResult()&&this.onMatchConditions()},onMatchConditions(){},observe(){for(const t of this.getConditions())t.observe()},setConditions(t){"string"==typeof t&&(t=JSON.parse(t)),this.conditions=t.map((t=>function(t,e){P.length||(P=J());for(const i of P){const n=new i;if(n.isSupported(t))return n.setList(e),n.setOptions(t),n}}(t,this))).filter((t=>t));const e={};let i=0;for(const t of this.getConditions()){var n;t instanceof r?i++:(e[i]=null!==(n=e[i])&&void 0!==n?n:[],e[i].push(t))}this.groups=Object.values(e)},getResult(){if(this.invalid=[],!this.groups.length)return!0;for(const t of this.groups)if(this.isValidGroup(t))return!0;return!1},isValidGroup(t){for(const e of t)if(!e.isPassed())return this.invalid.push(e),!1;return!0},getConditions(){return this.conditions}};const c=l;function a(t,e){c.call(this,t,e)}a.prototype=Object.create(c.prototype),a.prototype.block=null;const u=a,{doAction:h}=JetPlugins.hooks,{ReactiveVar:d}=JetFormBuilderAbstract,{validateInputsAll:p}=JetFormBuilderFunctions,f=new WeakSet;function m(t,e){this.node=t,t.jfbConditional=this,this.root=e,this.isObserved=!1,this.list=null,this.function=null,this.settings=null,this.page=null,this.multistep=null,this.comment=null,this.inputs=[],this.isRight=new d(null),this.isRight.make(),this.setConditions(),this.setInputs(),this.setFunction(),window?.JetFormBuilderSettings?.devmode||(delete this.node.dataset.jfbConditional,delete this.node.dataset.jfbFunc),h("jet.fb.conditional.init",this)}m.prototype={setConditions(){const{jfbConditional:t}=this.node.dataset;this.list=new u(t,this.root),this.list.block=this,this.list.onChangeRelated=()=>{this.isRight.current=this.list.getResult()}},setInputs(){this.inputs=Array.from(this.node.querySelectorAll("[data-jfb-sync]")).map((t=>t.jfbSync)).filter((t=>t))},insertComment(){this.settings?.dom&&(this.comment=document.createComment(""),this.node.parentElement.insertBefore(this.comment,this.node.nextSibling))},observe(){this.isObserved||(this.isObserved=!0,this.insertComment(),this.isRight.watch((()=>this.runFunction())),this.isRight.watch((()=>this.validateInputs())),this.list.observe())},runFunction(){const t=this.isRight.current;switch(this.function){case"show":this.showBlock(t);break;case"hide":this.showBlock(!t);break;case"disable":this.disableBlock(t);break;default:h("jet.fb.conditional.block.runFunction",this.function,t,this)}},validateInputs(){setTimeout((()=>{p(this.inputs,!0).then((()=>{})).catch((()=>{}))}))},showBlock(t){if(this.node.classList.remove("jet-form-builder--hidden"),this.settings?.dom){this.showBlockDom(t),t&&requestAnimationFrame((()=>this.reinitChildren()));const e=new CustomEvent("jet-form-builder/conditional-block/block-toggle-hidden-dom",{detail:{block:this.node,result:t}});document.dispatchEvent(e)}else this.node.style.display=t?"block":"none",t&&requestAnimationFrame((()=>this.reinitChildren()))},notifyInputs(){this.inputs.forEach((t=>{t.value?.notify?.()}))},clearChoiceInputs(){this.inputs.forEach((t=>{var e;(Array.isArray(t.nodes)?t.nodes:Object.values(null!==(e=t.nodes)&&void 0!==e?e:{})).some((t=>!!t&&("SELECT"===t.tagName||"checkbox"===t.type||"radio"===t.type)))&&(t.onClear?.(),t.value?.notify?.())}))},showBlockDom(t){const e=this.root.dataInputs;if(!t)return this.clearChoiceInputs(),this.node.remove(),this.notifyInputs(),void this.reCalculateFields(e);this.comment.parentElement.insertBefore(this.node,this.comment),this.notifyInputs(),this.reCalculateFields(e)},disableBlock(t){this.node.disabled=t},setFunction(){let t;this.function=this.node.dataset.jfbFunc;try{t=JSON.parse(this.function)}catch(t){return}const[[e,i]]=Object.entries(t);this.function=e,this.settings=i},reinitChildren(){const t=this.root;this.node.querySelectorAll("[data-jfb-conditional][data-jfb-func]").forEach((e=>{if(!e.jfbConditional&&!f.has(e))try{const i=new m(e,t);i.observe(),i.isRight.current=i.list.getResult(),f.add(e)}catch(t){console&&console.warn&&console.warn("reinitChildren: init failed",t,e)}}))},reCalculateFields(t){const e=this.getAffectedFields(t),i=new Map;e.forEach((e=>{if(t[e]&&t[e].formula){const n=t[e].nodes?.[0];let o=!1;if(n){const t=n;if(!i.has(t)){const e=this.isFieldVisible(n),o=document.contains(n);i.set(t,e||o)}o=i.get(t)}if(o)try{t[e].reCalculateFormula()}catch(t){console.warn(`Error recalculating formula for field ${e}:`,t)}}}))},isFieldVisible(t){if(!t)return!1;if(!document.contains(t))return!1;const e=window.getComputedStyle(t);if("none"===e.display||"hidden"===e.visibility)return!1;let i=t.parentElement;for(;i&&i!==document.body;){const t=window.getComputedStyle(i);if("none"===t.display||"hidden"===t.visibility)return!1;i=i.parentElement}return!0},getAffectedFields(t){const e=[],i=Array.from(this.node.querySelectorAll("[data-jfb-sync]")),n=new Set;return i.forEach((t=>{var e,i;const o=null!==(e=null!==(i=t.jfbSync?.name)&&void 0!==i?i:t.getAttribute("name"))&&void 0!==e?e:t.querySelector("[name]")?.getAttribute("name");o&&n.add(o)})),Object.keys(t).forEach((o=>{const s=t[o];if(!s||!s.formula)return;const r=s.nodes?.[0];let l=!1;r&&i.includes(r)&&(l=!0),!l&&s.formula&&n.forEach((t=>{s.formula.includes(`%${t}%`)&&(l=!0)})),l&&e.push(o)})),e}};const b=m,{isEmpty:y}=JetFormBuilderFunctions;function g(){this.operators=this.getOperators()}g.prototype={isSupported:()=>!0,operators:{},getOperators:()=>({equal:(t,e)=>t===e[0],empty:t=>y(t),greater:(t,e)=>+t>+e[0],greater_or_eq:(t,e)=>+t>=+e[0],less:(t,e)=>+t<+e[0],less_or_eq:(t,e)=>+t<=+e[0],between:(t,e)=>!(!e?.length||null===t)&&e[0]<=+t&&+t<=e[1],one_of:(t,e)=>!!e?.length&&0<=e.indexOf(t),contain:(t,e)=>!!t&&0<=t.indexOf(e[0])}),check(t,e){const i=e.value.current,n=t.value;return this.checkRaw(t.operator,i,n)},checkRaw(t,e,i){if(this.operators.hasOwnProperty(t))return this.operators[t](e,i);if(0!==t.indexOf("not_"))return!1;const n=t.slice(4);return!!this.operators.hasOwnProperty(n)&&!this.operators[n](e,i)}};const v=g;function C(){v.call(this),this.operators.one_of=(t,e)=>!(!e?.length||!t?.length)&&t.some((t=>-1!==e.indexOf(t))),this.operators.contain=(t,e)=>!!t?.length&&t.some((t=>-1!==t.indexOf(e[0]))),this.isSupported=function(t){return t.isArray()}}C.prototype=Object.create(v.prototype);const w=C,{getTimestamp:k}=JetFormBuilderFunctions,{Min_In_Sec:j,Milli_In_Sec:O}=JetFormBuilderConst,F=(new Date).getTimezoneOffset();function _(){v.call(this),this.isSupported=function(t){const[e]=t.nodes;return["date","time","datetime-local"].includes(e.type)},this.check=function(t,e){const{time:i}=k(e.value.current),n=t.value.map((e=>{const{time:i,type:n}=k(e);return"number"===n&&t.use_preset?i*O+F*j:i}));return this.checkRaw(t.operator,i,n)}}_.prototype=Object.create(v.prototype);const S=_;function I(){e.call(this),this.isSupported=function(t){return"render_state"===t?.operator},this.getInput=function(){return this.list.root.getInput("_jfb_current_render_states")},this.observe=function(){this.getInput().watch((()=>this.list.onChangeRelated()))},this.setOptions=function(t){var e;this.render_state=null!==(e=t.render_state)&&void 0!==e?e:[]},this.isPassed=function(){const{value:t}=this.getInput();return!!t.current?.length&&this.render_state.some((e=>t.current.includes(e)))}}I.prototype=Object.create(e.prototype),I.prototype.render_state=[];const A=I;function R(){v.call(this),this.isSupported=function(t){return"calculated"===t.inputType},this.check=function(t,e){const i=e.calcValue,n=t.value;return this.checkRaw(t.operator,i,n)}}R.prototype=Object.create(v.prototype);const B=R,{applyFilters:E}=JetPlugins.hooks,J=()=>E("jet.fb.conditional.types",[A,r,o]);let P=[],q=[];function x(t,e){if(t.hasOwnProperty("jfbConditional"))return t.jfbConditional;const i=new b(t,e);return i.observe(),i.list.onChangeRelated(),i}function M(t){q.length||(q=E("jet.fb.conditional.checkers",[w,S,B,v]));for(const e of q){const i=new e;if(i.isSupported(t))return i}return null}var L;const{addAction:N}=JetPlugins.hooks;N("jet.fb.observe.after","jet-form-builder/conditional-block",(function(t){for(const e of t.rootNode.querySelectorAll("[data-jfb-conditional]"))x(e,t)}),20),N("jet.fb.input.makeReactive","jet-form-builder/conditional-block",(function(t){t.checker=M(t)})),N("jet.fb.conditional.block.runFunction","jet-form-builder/conditional-block",(function(t,e,i){"setCssClass"===t&&i.settings?.className&&i.node.classList.toggle(i.settings.className,e)})),window.JetFormBuilderAbstract={...null!==(L=window.JetFormBuilderAbstract)&&void 0!==L?L:{},ConditionItem:e,ConditionalBlock:b,createConditionalBlock:x,createChecker:M,ConditionsList:c}})(); \ No newline at end of file +(()=>{"use strict";function t(){}t.prototype.isSupported=function(t){return!1},t.prototype.observe=function(){},t.prototype.setOptions=function(t){},t.prototype.isPassed=function(){throw new Error("You must provide ConditionItem::isPassed function")},t.prototype.setList=function(t){this.list=t};const e=t,{CalculatedFormula:i}=JetFormBuilderAbstract;function n(){e.call(this),this.isSupported=function(t){return!!t?.field?.length},this.observe=function(){var t;const e=this.getInput();this.list._fields=null!==(t=this.list._fields)&&void 0!==t?t:[],e&&!this.list._fields.includes(this.field)&&(this.list._fields.push(this.field),e.watch(()=>this.list.onChangeRelated()))},this.getInput=function(){return this.list.root.getInput(this.field)},this.isInputInDOM=function(t){return!!t?.nodes&&(Array.isArray(t.nodes)?t.nodes:Object.values(t.nodes)).some(t=>t&&document.contains(t))},this.isPassed=function(){const t=this.getInput();return!!t&&!!this.isInputInDOM(t)&&t.checker.check(this,t)},this.setOptions=function(t){this.field=t.field,this.operator=t.operator,this.render_state=t.render_state,this.use_preset=t.use_preset;let e=t?.value;if(Array.isArray(e)||(e=e.split(",").map(t=>t.trim())),this.use_preset)this.value=e;else{this.value={};for(const[t,n]of Object.entries(e)){const e=new i(this.list.root);e.observe(n),e.setResult=()=>{this.value[t]=""+e.calculate(),this.list.onChangeRelated()},e.setResult()}this.value=Object.values(this.value)}}}n.prototype=Object.create(e.prototype),n.prototype.field=null,n.prototype.value=null,n.prototype.operator=null,n.prototype.use_preset=null;const o=n;function s(){e.call(this),this.isSupported=function(t){var e;return null!==(e=t.or_operator)&&void 0!==e&&e}}s.prototype=Object.create(e.prototype);const r=s;function l(t,e){this.root=e,this.setConditions(t)}l.prototype={root:null,conditions:[],invalid:[],groups:[],onChangeRelated(){this.getResult()&&this.onMatchConditions()},onMatchConditions(){},observe(){for(const t of this.getConditions())t.observe()},setConditions(t){"string"==typeof t&&(t=JSON.parse(t)),this.conditions=t.map(t=>function(t,e){P.length||(P=J());for(const i of P){const n=new i;if(n.isSupported(t))return n.setList(e),n.setOptions(t),n}}(t,this)).filter(t=>t);const e={};let i=0;for(const t of this.getConditions()){var n;t instanceof r?i++:(e[i]=null!==(n=e[i])&&void 0!==n?n:[],e[i].push(t))}this.groups=Object.values(e)},getResult(){if(this.invalid=[],!this.groups.length)return!0;for(const t of this.groups)if(this.isValidGroup(t))return!0;return!1},isValidGroup(t){for(const e of t)if(!e.isPassed())return this.invalid.push(e),!1;return!0},getConditions(){return this.conditions}};const c=l;function a(t,e){c.call(this,t,e)}a.prototype=Object.create(c.prototype),a.prototype.block=null;const u=a,{doAction:h}=JetPlugins.hooks,{ReactiveVar:d}=JetFormBuilderAbstract,{validateInputsAll:p}=JetFormBuilderFunctions,f=new WeakSet;function m(t,e){this.node=t,t.jfbConditional=this,this.root=e,this.isObserved=!1,this.list=null,this.function=null,this.settings=null,this.page=null,this.multistep=null,this.comment=null,this.inputs=[],this.isRight=new d(null),this.isRight.make(),this.setConditions(),this.setInputs(),this.setFunction(),window?.JetFormBuilderSettings?.devmode||(delete this.node.dataset.jfbConditional,delete this.node.dataset.jfbFunc),h("jet.fb.conditional.init",this)}m.prototype={setConditions(){const{jfbConditional:t}=this.node.dataset;this.list=new u(t,this.root),this.list.block=this,this.list.onChangeRelated=()=>{this.isRight.current=this.list.getResult()}},setInputs(){this.inputs=Array.from(this.node.querySelectorAll("[data-jfb-sync]")).map(t=>t.jfbSync).filter(t=>t)},insertComment(){this.settings?.dom&&(this.comment=document.createComment(""),this.node.parentElement.insertBefore(this.comment,this.node.nextSibling))},observe(){this.isObserved||(this.isObserved=!0,this.insertComment(),this.isRight.watch(()=>this.runFunction()),this.isRight.watch(()=>this.validateInputs()),this.list.observe())},runFunction(){const t=this.isRight.current;switch(this.function){case"show":this.showBlock(t);break;case"hide":this.showBlock(!t);break;case"disable":this.disableBlock(t);break;default:h("jet.fb.conditional.block.runFunction",this.function,t,this)}},validateInputs(){setTimeout(()=>{p(this.inputs,!0).then(()=>{}).catch(()=>{})})},showBlock(t){if(this.node.classList.remove("jet-form-builder--hidden"),this.settings?.dom){this.showBlockDom(t),t&&requestAnimationFrame(()=>this.reinitChildren());const e=new CustomEvent("jet-form-builder/conditional-block/block-toggle-hidden-dom",{detail:{block:this.node,result:t}});return void document.dispatchEvent(e)}this.node.style.display=t?"block":"none",t&&requestAnimationFrame(()=>this.reinitChildren())},notifyInputs(){this.inputs.forEach(t=>{t.value?.notify?.()})},clearChoiceInputs(){this.inputs.forEach(t=>{var e;(Array.isArray(t.nodes)?t.nodes:Object.values(null!==(e=t.nodes)&&void 0!==e?e:{})).some(t=>!!t&&("SELECT"===t.tagName||"checkbox"===t.type||"radio"===t.type))&&(t.onClear?.(),t.value?.notify?.())})},showBlockDom(t){const e=this.root.dataInputs;if(!t)return this.clearChoiceInputs(),this.node.remove(),this.notifyInputs(),void this.reCalculateFields(e);this.comment.parentElement.insertBefore(this.node,this.comment),this.notifyInputs(),this.reCalculateFields(e)},disableBlock(t){this.node.disabled=t},setFunction(){let t;this.function=this.node.dataset.jfbFunc;try{t=JSON.parse(this.function)}catch(t){return}const[[e,i]]=Object.entries(t);this.function=e,this.settings=i},reinitChildren(){const t=this.root;this.node.querySelectorAll("[data-jfb-conditional][data-jfb-func]").forEach(e=>{if(!e.jfbConditional&&!f.has(e))try{const i=new m(e,t);i.observe(),i.isRight.current=i.list.getResult(),f.add(e)}catch(t){console&&console.warn&&console.warn("reinitChildren: init failed",t,e)}})},reCalculateFields(t){const e=this.getAffectedFields(t),i=new Map;e.forEach(e=>{if(t[e]&&t[e].formula){const n=t[e].nodes?.[0];let o=!1;if(n){const t=n;if(!i.has(t)){const e=this.isFieldVisible(n),o=document.contains(n);i.set(t,e||o)}o=i.get(t)}if(o)try{t[e].reCalculateFormula()}catch(t){console.warn(`Error recalculating formula for field ${e}:`,t)}}})},isFieldVisible(t){if(!t)return!1;if(!document.contains(t))return!1;const e=window.getComputedStyle(t);if("none"===e.display||"hidden"===e.visibility)return!1;let i=t.parentElement;for(;i&&i!==document.body;){const t=window.getComputedStyle(i);if("none"===t.display||"hidden"===t.visibility)return!1;i=i.parentElement}return!0},getAffectedFields(t){const e=[],i=Array.from(this.node.querySelectorAll("[data-jfb-sync]")),n=new Set;return i.forEach(t=>{var e,i;const o=null!==(e=null!==(i=t.jfbSync?.name)&&void 0!==i?i:t.getAttribute("name"))&&void 0!==e?e:t.querySelector("[name]")?.getAttribute("name");o&&n.add(o)}),Object.keys(t).forEach(o=>{const s=t[o];if(!s||!s.formula)return;const r=s.nodes?.[0];let l=!1;r&&i.includes(r)&&(l=!0),!l&&s.formula&&n.forEach(t=>{s.formula.includes(`%${t}%`)&&(l=!0)}),l&&e.push(o)}),e}};const b=m,{isEmpty:y}=JetFormBuilderFunctions;function g(){this.operators=this.getOperators()}g.prototype={isSupported:()=>!0,operators:{},getOperators:()=>({equal:(t,e)=>t===e[0],empty:t=>y(t),greater:(t,e)=>+t>+e[0],greater_or_eq:(t,e)=>+t>=+e[0],less:(t,e)=>+t<+e[0],less_or_eq:(t,e)=>+t<=+e[0],between:(t,e)=>!(!e?.length||null===t)&&e[0]<=+t&&+t<=e[1],one_of:(t,e)=>!!e?.length&&0<=e.indexOf(t),contain:(t,e)=>!!t&&0<=t.indexOf(e[0])}),check(t,e){const i=e.value.current,n=t.value;return this.checkRaw(t.operator,i,n)},checkRaw(t,e,i){if(this.operators.hasOwnProperty(t))return this.operators[t](e,i);if(0!==t.indexOf("not_"))return!1;const n=t.slice(4);return!!this.operators.hasOwnProperty(n)&&!this.operators[n](e,i)}};const v=g;function C(){v.call(this),this.operators.one_of=(t,e)=>!(!e?.length||!t?.length)&&t.some(t=>-1!==e.indexOf(t)),this.operators.contain=(t,e)=>!!t?.length&&t.some(t=>-1!==t.indexOf(e[0])),this.isSupported=function(t){return t.isArray()}}C.prototype=Object.create(v.prototype);const w=C,{getTimestamp:k}=JetFormBuilderFunctions,{Min_In_Sec:j,Milli_In_Sec:O}=JetFormBuilderConst,F=(new Date).getTimezoneOffset();function _(){v.call(this),this.isSupported=function(t){const[e]=t.nodes;return["date","time","datetime-local"].includes(e.type)},this.check=function(t,e){const{time:i}=k(e.value.current),n=t.value.map(e=>{const{time:i,type:n}=k(e);return"number"===n&&t.use_preset?i*O+F*j:i});return this.checkRaw(t.operator,i,n)}}_.prototype=Object.create(v.prototype);const S=_;function I(){e.call(this),this.isSupported=function(t){return"render_state"===t?.operator},this.getInput=function(){return this.list.root.getInput("_jfb_current_render_states")},this.observe=function(){this.getInput().watch(()=>this.list.onChangeRelated())},this.setOptions=function(t){var e;this.render_state=null!==(e=t.render_state)&&void 0!==e?e:[]},this.isPassed=function(){const{value:t}=this.getInput();return!!t.current?.length&&this.render_state.some(e=>t.current.includes(e))}}I.prototype=Object.create(e.prototype),I.prototype.render_state=[];const A=I;function R(){v.call(this),this.isSupported=function(t){return"calculated"===t.inputType},this.check=function(t,e){const i=e.calcValue,n=t.value;return this.checkRaw(t.operator,i,n)}}R.prototype=Object.create(v.prototype);const B=R,{applyFilters:E}=JetPlugins.hooks,J=()=>E("jet.fb.conditional.types",[A,r,o]);let P=[],q=[];function x(t,e){if(t.hasOwnProperty("jfbConditional"))return t.jfbConditional;const i=new b(t,e);return i.observe(),i.list.onChangeRelated(),i}function M(t){q.length||(q=E("jet.fb.conditional.checkers",[w,S,B,v]));for(const e of q){const i=new e;if(i.isSupported(t))return i}return null}var L;const{addAction:N}=JetPlugins.hooks;N("jet.fb.observe.after","jet-form-builder/conditional-block",function(t){for(const e of t.rootNode.querySelectorAll("[data-jfb-conditional]"))x(e,t)},20),N("jet.fb.input.makeReactive","jet-form-builder/conditional-block",function(t){t.checker=M(t)}),N("jet.fb.conditional.block.runFunction","jet-form-builder/conditional-block",function(t,e,i){"setCssClass"===t&&i.settings?.className&&i.node.classList.toggle(i.settings.className,e)}),window.JetFormBuilderAbstract={...null!==(L=window.JetFormBuilderAbstract)&&void 0!==L?L:{},ConditionItem:e,ConditionalBlock:b,createConditionalBlock:x,createChecker:M,ConditionsList:c}})(); \ No newline at end of file diff --git a/assets/build/frontend/dynamic.value.asset.php b/assets/build/frontend/dynamic.value.asset.php index ae3dc31b2..635dbf4c2 100644 --- a/assets/build/frontend/dynamic.value.asset.php +++ b/assets/build/frontend/dynamic.value.asset.php @@ -1 +1 @@ - array(), 'version' => 'e9a42e0a5a188eaeecfc'); + array(), 'version' => 'e70977c003454a43d622'); diff --git a/assets/build/frontend/dynamic.value.js b/assets/build/frontend/dynamic.value.js index edbe31613..7d974997d 100644 --- a/assets/build/frontend/dynamic.value.js +++ b/assets/build/frontend/dynamic.value.js @@ -1 +1 @@ -(()=>{"use strict";const{CalculatedFormula:t,ConditionsList:e}=JetFormBuilderAbstract;function s(){}s.prototype={to_set:"",prevResult:null,prevValue:null,input:null,frequency:"",set_on_empty:!1,formulas:[],isSupported:t=>!0,observe({to_set:t,conditions:s=[],set_on_empty:o=!1,frequency:r="on_change"},n){this.input=n,this.frequency=r,this.set_on_empty=o,this.prevResult=null,this.prevValue=null,this.to_set=t,this.formulas=[],this.observeSetValue(s,n);const a=new e(s,n.root);if(a.conditions?.length)return a.onChangeRelated=()=>this.applyValue(a),a.observe(),void a.onChangeRelated();for(const t of this.formulas){const e=t.setResult.bind(t);t.setResult=()=>{e(),this.applyValue(!1,!0)},t.setResult()}},observeSetValue(e,s){const o=new t(s);o.observe(this.to_set),o.setResult=()=>{this.to_set=""+o.calculate()},o.setResult(),this.formulas.push(o)},applyValue(t,e=null){let s=!1;switch(s=t?t.getResult():e,this.frequency){case"always":this.setValue(s);break;case"on_change":if(this.prevResult===s)break;this.prevResult=s,this.setValue(s);break;case"once":if(!s)break;this.setValue(),t&&(t.onChangeRelated=()=>{}),this.formulas.forEach((t=>t.clearWatchers()))}},setValue(t=!0){t&&(this.set_on_empty?this.input.value.setIfEmpty(this.to_set):this.input.value.current=this.to_set)}};const o=s,{CalculatedFormula:r}=JetFormBuilderAbstract;function n(...t){o.call(this,...t)}n.prototype=Object.create(o.prototype),n.prototype.isSupported=function(t){return t.isArray()},n.prototype.observeSetValue=function(t,e){let s=[];Array.isArray(this.to_set)||(s=this.to_set.split(",").map((t=>t.trim()))),this.to_set={};for(const[t,o]of Object.entries(s)){const s=new r(e);s.observe(o),s.setResult=()=>{this.to_set[t]=""+s.calculate(),this.to_set=Object.values(this.to_set).filter(Boolean)},s.setResult(),this.formulas.push(s)}};const a=n,{CalculatedFormula:u}=JetFormBuilderAbstract;function l(t=""){this.attrName=t}l.prototype={attrName:"",isSupported(t){return t.attrs.hasOwnProperty(this.attrName)},runObserve(t){const e=t.attrs[this.attrName],s=new u(t);s.observe(e.initial),this.observe(e,s)},observe(t,e){e.setResult=()=>{t.value.current=e.calculate()},e.setResult()}};const i=l,{CalculatedFormula:c}=JetFormBuilderAbstract;function p(){this.isSupported=function(t){const[e]=t.nodes;return e.dataset.hasOwnProperty("value")},this.runObserve=function(t){const[e]=t.nodes,s=new c(t);s.observe(e.dataset.value),s.setResult=()=>{t.value.current=s.calculate()},s.setResult()}}p.prototype=Object.create(i.prototype);const h=p,{applyFilters:f}=JetPlugins.hooks;let d=[];const y=t=>{d.length||(d=f("jet.fb.dynamic.value.types",[a,o]));for(const e of d){const s=new e;if(s.isSupported(t))return s}};function v(t,e){const s=JSON.parse(t);for(const t of s)y(e).observe(t,e)}function b(t){const[e]=t.nodes,s=e.closest(".jet-form-builder-row");s&&s.dataset.hasOwnProperty("value")?v(s.dataset.value,t):e.dataset.hasOwnProperty("dynamicValue")&&v(e.dataset.dynamicValue,t);for(const e of function*(t){for(const e of m)e.isSupported(t)&&(yield e)}(t))e.runObserve(t)}const m=[new i("min"),new i("max"),new h],{addAction:_}=JetPlugins.hooks;_("jet.fb.observe.after","jet-form-builder/dynamic-value",(function(t){for(const e of t.getInputs())b(e)}))})(); \ No newline at end of file +(()=>{"use strict";const{CalculatedFormula:t,ConditionsList:e}=JetFormBuilderAbstract;function s(){}s.prototype={to_set:"",prevResult:null,prevValue:null,input:null,frequency:"",set_on_empty:!1,formulas:[],isSupported:t=>!0,observe({to_set:t,conditions:s=[],set_on_empty:o=!1,frequency:r="on_change"},n){this.input=n,this.frequency=r,this.set_on_empty=o,this.prevResult=null,this.prevValue=null,this.to_set=t,this.formulas=[],this.observeSetValue(s,n);const a=new e(s,n.root);if(a.conditions?.length)return a.onChangeRelated=()=>this.applyValue(a),a.observe(),void a.onChangeRelated();for(const t of this.formulas){const e=t.setResult.bind(t);t.setResult=()=>{e(),this.applyValue(!1,!0)},t.setResult()}},observeSetValue(e,s){const o=new t(s);o.observe(this.to_set),o.setResult=()=>{this.to_set=""+o.calculate()},o.setResult(),this.formulas.push(o)},applyValue(t,e=null){let s=!1;switch(s=t?t.getResult():e,this.frequency){case"always":this.setValue(s);break;case"on_change":if(this.prevResult===s)break;this.prevResult=s,this.setValue(s);break;case"once":if(!s)break;this.setValue(),t&&(t.onChangeRelated=()=>{}),this.formulas.forEach(t=>t.clearWatchers())}},setValue(t=!0){t&&(this.set_on_empty?this.input.value.setIfEmpty(this.to_set):this.input.value.current=this.to_set)}};const o=s,{CalculatedFormula:r}=JetFormBuilderAbstract;function n(...t){o.call(this,...t)}n.prototype=Object.create(o.prototype),n.prototype.isSupported=function(t){return t.isArray()},n.prototype.observeSetValue=function(t,e){let s=[];Array.isArray(this.to_set)||(s=this.to_set.split(",").map(t=>t.trim())),this.to_set={};for(const[t,o]of Object.entries(s)){const s=new r(e);s.observe(o),s.setResult=()=>{this.to_set[t]=""+s.calculate(),this.to_set=Object.values(this.to_set).filter(Boolean)},s.setResult(),this.formulas.push(s)}};const a=n,{CalculatedFormula:u}=JetFormBuilderAbstract;function l(t=""){this.attrName=t}l.prototype={attrName:"",isSupported(t){return t.attrs.hasOwnProperty(this.attrName)},runObserve(t){const e=t.attrs[this.attrName],s=new u(t);s.observe(e.initial),this.observe(e,s)},observe(t,e){e.setResult=()=>{t.value.current=e.calculate()},e.setResult()}};const i=l,{CalculatedFormula:c}=JetFormBuilderAbstract;function p(){this.isSupported=function(t){const[e]=t.nodes;return e.dataset.hasOwnProperty("value")},this.runObserve=function(t){const[e]=t.nodes,s=new c(t);s.observe(e.dataset.value),s.setResult=()=>{t.value.current=s.calculate()},s.setResult()}}p.prototype=Object.create(i.prototype);const h=p,{applyFilters:f}=JetPlugins.hooks;let d=[];const y=t=>{d.length||(d=f("jet.fb.dynamic.value.types",[a,o]));for(const e of d){const s=new e;if(s.isSupported(t))return s}};function v(t,e){const s=JSON.parse(t);for(const t of s)y(e).observe(t,e)}function b(t){const[e]=t.nodes,s=e.closest(".jet-form-builder-row");s&&s.dataset.hasOwnProperty("value")?v(s.dataset.value,t):e.dataset.hasOwnProperty("dynamicValue")&&v(e.dataset.dynamicValue,t);for(const e of function*(t){for(const e of m)e.isSupported(t)&&(yield e)}(t))e.runObserve(t)}const m=[new i("min"),new i("max"),new h],{addAction:_}=JetPlugins.hooks;_("jet.fb.observe.after","jet-form-builder/dynamic-value",function(t){for(const e of t.getInputs())b(e)})})(); \ No newline at end of file diff --git a/assets/build/frontend/main.asset.php b/assets/build/frontend/main.asset.php index 850c2a55e..b1388ab09 100644 --- a/assets/build/frontend/main.asset.php +++ b/assets/build/frontend/main.asset.php @@ -1 +1 @@ - array('wp-i18n'), 'version' => 'f1f08db2c389dbe18b13'); + array('wp-i18n'), 'version' => 'c820aec0570af5c3482f'); diff --git a/assets/build/frontend/main.js b/assets/build/frontend/main.js index 04db5f081..0bcb756ab 100644 --- a/assets/build/frontend/main.js +++ b/assets/build/frontend/main.js @@ -1 +1 @@ -(()=>{"use strict";function t(){this.attrName="",this.initial=null,this.isFromData=!1,this.value=null}t.prototype={attrName:"",input:null,initial:null,value:null,observe(){this.value=new _(this.initial),this.value.make(),this.addWatcherAttr()},nodeSignal(){const[t]=this.input.nodes;t[this.attrName]=this.value.current},addWatcherAttr(){this.value.watch((()=>this.nodeSignal()))},isSupported(t){var e;const[n]=t.nodes,r=null!==(e=-1!==n[this.attrName])&&void 0!==e?e:-1;return!(!n.dataset.hasOwnProperty(this.attrName)&&!r)&&(this.initial=this.getInitial(t),Boolean(this.initial))},getInitial(t){const[e]=t.nodes;return e.dataset[this.attrName]||e[this.attrName]||!1},setInput(t){this.input=t}};const e=t;function n(){e.call(this),this.attrName="max_files",this.isSupported=function(t){const[e]=t.nodes;return"file"===e.type},this.setInput=function(t){e.prototype.setInput.call(this,t);const{max_files:n=1}=JSON.parse(t.previewsContainer.dataset.args);this.initial=+n},this.addWatcherAttr=()=>{}}n.prototype=Object.create(e.prototype);const r=n;function o(){r.call(this),this.attrName="max_size",this.setInput=function(t){r.prototype.setInput.call(this,t);const{max_size:e=1}=JSON.parse(t.previewsContainer.dataset.args);this.initial=+e}}o.prototype=Object.create(r.prototype);const i=o;function s(){e.call(this),this.attrName="remaining",this.isSupported=function(t){return t.attrs.hasOwnProperty("maxLength")},this.setInput=function(t){var n;e.prototype.setInput.call(this,t);const{maxLength:r}=t.attrs,o=null!==(n=t.value.current?.length)&&void 0!==n?n:0;this.initial=r.value.current-o},this.addWatcherAttr=()=>{},this.observe=function(){e.prototype.observe.call(this),this.input.value.watch((()=>this.updateAttr())),this.input.attrs.maxLength.value.watch((()=>this.updateAttr()))},this.updateAttr=function(){var t;const{maxLength:e}=this.input.attrs,n=null!==(t=this.input.value.current?.length)&&void 0!==t?t:0;this.value.current=e.value.current-n}}s.prototype=Object.create(e.prototype);const u=s;function a(){r.call(this),this.attrName="file_ext",this.isSupported=function(t){const[e]=t.nodes;return"file"===e.type&&Boolean(e.accept)},this.setInput=function(t){r.prototype.setInput.call(this,t);const[e]=t.nodes;this.initial=e.accept.split(",")},this.addWatcherAttr=function(){const[t]=this.input.nodes;this.value.watch((()=>{t.accept=this.value.current.join(",")}))}}a.prototype=Object.create(r.prototype);const c=a,l=navigator.userAgent,h={safari:/^((?!chrome|android).)*safari/i.test(l)||/constructor/i.test(window.HTMLElement)||"[object SafariRemoteNotification]"===(!window.safari||"undefined"!=typeof safari&&window.safari.pushNotification).toString()},{applyFilters:p}=JetPlugins.hooks;async function f(t){const e=await Promise.allSettled(t.map((t=>new Promise(t))));return window?.JetFormBuilderSettings?.devmode&&(console.group("allRejected"),console.info(...e),console.groupEnd()),e.filter((t=>"rejected"===t.status)).map((({reason:t,value:e})=>t?.length?t[0]:null!=t?t:e))}let d=[];function m(t){const n=new e;return n.attrName=t,n}function g(t){for(const e of(d.length||(d=p("jet.fb.input.html.attrs",["min","max","minLength","maxLength",r,i,u,c])),[...d])){let n;n="string"==typeof e?m(e):new e,n.isSupported(t)&&(t.attrs[n.attrName]=n,n.setInput(t),n.observe())}}function y(t){return"boolean"==typeof t?!t:null==t||("object"!=typeof t||Array.isArray(t)?"number"==typeof t?0===t:!t?.length:!Object.keys(t)?.length)}function b(t){return t?.isConnected&&null!==t?.offsetParent}function v(t){var e;const n=t.getBoundingClientRect(),r=S(t);return n?.top+(null!==(e=r?.scrollY)&&void 0!==e?e:0)}const w=t=>t.scrollHeight>t.clientHeight&&t;function S(t){let e=t.closest(".jet-popup__container-inner");return e?w(e):(e=t.closest(".elementor-popup-modal .dialog-message"),e?w(e):window)}function j(t){for(const e of t)if(!e.reporting.validityState.current){!e.reporting.hasAutoScroll()&&e.onFocus();break}}function N(t=null){this.current=t,this.signals=[],this.sanitizers=[],this.isDebug=!1,this.isSilence=!1,this.isMaked=!1}N.prototype={watchOnce(t){if("function"!=typeof t)return;const e=this.watch((()=>{e(),t()}))},watch(t){if("function"!=typeof t)return!1;if(this.signals.some((({signal:e})=>e===t)))return!0;this.signals.push({signal:t,trace:(new Error).stack});const e=this.signals.length-1;return()=>this.signals.splice(e,1)},sanitize(t){if("function"!=typeof t)return!1;if(-1!==this.sanitizers.indexOf(t))return!0;this.sanitizers.push(t);const e=this.sanitizers.length-1;return()=>this.sanitizers.splice(e,1)},make(){if(this.isMaked)return;this.isMaked=!0;let t=this.current,e=null;const n=this;Object.defineProperty(this,"current",{get:()=>t,set(r){t!==r&&(e=t,n.isDebug&&(console.group("ReactiveVar has changed"),console.log("current:",t),console.log("newVal:",r),console.groupEnd()),t=n.applySanitizers(r),n.isSilence||n.notify(e))}})},notify(t=null){this.signals.forEach((({signal:e})=>e.call(this,t)))},applySanitizers(t){for(const e of this.sanitizers)t=e.call(this,t);return t},setIfEmpty(t){y(this.current)&&(this.current=t)},debug(){this.isDebug=!this.isDebug},silence(){this.isSilence=!this.isSilence}};const _=N;function I(){_.call(this,!1),this.start=function(){this.current=!0},this.end=function(){this.current=!1},this.toggle=function(){this.current=!this.current}}I.prototype=Object.create(_.prototype);const F=I;function O(){this.handlers=[]}O.prototype={addFilter(t){this.handlers.push(t);const e=this.handlers.length-1;return()=>this.handlers.splice(e,1)},applyFilters(...t){let e=t[0];const n=t.slice(1);for(const t of this.handlers)e=t(e,...n);return e}};const k=O,{strict_mode:C=!1}=window?.JetFormBuilderSettings,R=Boolean(C);function E(){this.input=null,this.lock=new _,this.lock.make(),this.triggerjQuery=!R}E.prototype={input:null,lock:null,isSupported:(t,e)=>!1,setInput(t){this.input=t},run(t){if(!this.lock.current)return this.runSignal(t),void this.unlockTrigger();this.lock.signals.length||this.lock.watchOnce((()=>this.runSignal(t)))},triggerJQuery(t){this.triggerjQuery&&jQuery(t).trigger("change")},runSignal(t){},lockTrigger(){this.triggerjQuery=!1},unlockTrigger(){R||(this.triggerjQuery=!0)}};const P=E;function T(t){return"hidden"===t.type}function M(t){return"range"===t.type}function x(){P.call(this)}x.prototype=Object.create(P.prototype),x.prototype.isSupported=function(t,e){return T(t)&&e.isArray()},x.prototype.runSignal=function(){const{current:t}=this.input.value;if(!t?.length){for(const t of this.input.nodes)t.remove();return void this.input.nodes.splice(0,this.input.nodes.length)}const e=[];for(const n of t){if(this.input.nodes.some(((t,r)=>t.value===n&&(e.push(r),!0))))continue;const t=document.createElement("input");t.type="hidden",t.value=n,t.name=this.input.rawName,this.input.nodes.push(t),e.push(this.input.nodes.length-1),this.input.comment.parentElement.insertBefore(t,this.input.comment.nextElementSibling)}this.input.nodes=this.input.nodes.filter(((t,n)=>!!e.includes(n)||(t.remove(),!1)))};const B=x;function D(){P.call(this),this.isSupported=function(t){return M(t)},this.runSignal=function(){const[t]=this.input.nodes;t.value=this.input.value.current,this.input.numberNode.textContent=t.value,this.triggerJQuery(t)}}D.prototype=Object.create(P.prototype);const A=D;function V(){B.call(this),this.isSupported=function(t){return"_jfb_current_render_states[]"===t.name},this.runSignal=function(t){B.prototype.runSignal.call(this,t);const e=new URL(window.location),n=this.input.getSubmit().getFormId(),r=this.input.value.current||[],o=`jfb[${n}][state]`,i=[];for(const t of r)this.input.isCustom(t)&&i.push(t);if(!i.length){if(!e.searchParams.has(o))return;return e.searchParams.delete(o),void window.history.pushState({},"",e.toString())}const s=i.join(",");e.searchParams.get(o)!==s&&(e.searchParams.set(o,s),window.history.pushState({},"",e.toString()))}}V.prototype=Object.create(B.prototype);const L=V,{applyFilters:J}=JetPlugins.hooks;let H=[];function Q(t){Error.call(this,t),Error.captureStackTrace?Error.captureStackTrace(this,Q):this.stack=(new Error).stack}Q.prototype=Object.create(Error.prototype);const q=Q;function Y(){this.input=null,this.isRequired=!1,this.errors=null,this.restrictions=[],this.valuePrev=null,this.validityState=null,this.promisesCount=0}Y.prototype={restrictions:[],valuePrev:null,validityState:null,promisesCount:0,validateOnChange(){},validateOnBlur(){},async validate(t=null){const e=await this.getErrors(t);if(this.validityState.current=!Boolean(e.length),!e.length)return this.clearReport(),!0;throw!this.input.root.getContext().silence&&this.report(e),new q(e[0].name)},async getErrorsRaw(t){throw new Error("getError must return a Promise")},async getErrors(t=null){if(this.input.loading.current||this.input?.callable?.lock?.current||!this.input.isVisible())return[];const e=this.getPromises(t);var n;return this.hasChangedValue()||this.promisesCount!==e.length||this.input.stopValidation||"hr-select-level"===this.input.inputType?(this.promisesCount=e.length,this.errors=[],e.length?(this.errors=await this.getErrorsRaw(e,t),this.errors):this.errors):null!==(n=this.errors)&&void 0!==n?n:[]},report(t){this.input.getContext().reportedFirst?this.reportRaw(t):(this.input.getContext().reportFirst(),this.reportFirst(t))},reportRaw(t){throw new Error("report is empty")},reportFirst(t){this.report(t)},clearReport(){throw new Error("clearReport is empty")},getPromises(t=null){const e=[];for(const n of this.restrictions)this.canProcessRestriction(n)&&(this.beforeProcessRestriction(n),e.push(((e,r)=>{n.validatePromise(t).then((()=>e(n))).catch((t=>r([n,t])))})));return e},canProcessRestriction:t=>!0,beforeProcessRestriction(t){},isSupported(t,e){throw new Error("isSupported is empty")},setInput(t){this.validityState=new _,this.validityState.make(),this.input=t,this.setRestrictions(),this.filterRestrictions()},setRestrictions(){},getNode(){return this.input.nodes[0]},hasChangedValue(){return this.valuePrev!==this.input.getValue()},checkValidity(){const t=this.input.getContext().silence;return null===this.validityState.current?this.validateOnChangeState():this.validityState.current?Promise.resolve():(t||!t&&this.report(this.errors||[]),Promise.reject())},hasAutoScroll:()=>!1,filterRestrictions(){const t={};for(let[e,n]of Object.entries(this.restrictions))e=n.getType()?n.getType():e,t[e]=n;this.restrictions=Object.values(t)}};const $=Y;function W(){$.call(this),this.isSupported=function(){return!0},this.reportRaw=function(){},this.reportFirst=function(){this.getNode().reportValidity()},this.setRestrictions=function(){const[t]=this.input.nodes;!function(t,e){for(const n of(ot.length||(ot=rt()),[...ot])){const r=new n;r.isSupported(e,t)&&t.restrictions.push(r)}t.restrictions.forEach((e=>e.setReporting(t)))}(this,t)},this.clearReport=function(){},this.validateOnChange=function(){this.validate().then((()=>{})).catch((()=>{}))},this.getErrorsRaw=async function(t){const e=await f(t);return this.valuePrev=this.input.getValue(),e},this.validateOnChangeState=function(){return this.validate()},this.hasAutoScroll=function(){return this.input.hasAutoScroll()},this.getNode=function(){return this.input.getReportingNode()}}W.prototype=Object.create($.prototype);const z=W;function K(){this.reporting=null,this.type=""}K.prototype={isSupported:(t,e)=>!0,getType(){return this.type},setReporting(t){this.reporting=t},getValue(){return this.reporting.input.value.current},validate(){throw new Error("validate is wrong")},async validatePromise(){let t;try{t=await this.validate()}catch(t){var e;return Promise.reject(null!==(e=t?.message)&&void 0!==e?e:t)}return t?Promise.resolve():Promise.reject("validate is wrong")},onReady(){}};const U=K;function G(){U.call(this),this.isSupported=function(t){return!!t.checkValidity},this.validate=function(){const{nodes:t}=this.reporting.input;for(const e of t)if(e.checkValidity())return!0;return!1}}G.prototype=Object.create(U.prototype);const X=G;function Z(){U.call(this),this.type="required"}Z.prototype=Object.create(U.prototype),Z.prototype.isSupported=function(t,e){return e.input.isRequired},Z.prototype.validate=function(){const{current:t}=this.reporting.input.value;return!y(t)};const tt=Z,{applyFilters:et}=JetPlugins.hooks;let nt=[];const rt=()=>et("jet.fb.restrictions.default",[X,tt]);let ot=[];function it(t,e=!1){const n=[];t?.[0]?.getContext()?.reset({silence:e});for(const e of t){if(!(e instanceof ct))throw new Error("Input is not instance of InputData");n.push(((t,n)=>{e.reporting.validateOnChangeState().then(t).catch(n)}))}return n}function st(t,e=!1){return f(it(t,e))}const{doAction:ut}=JetPlugins.hooks;function at(){this.rawName="",this.name="",this.comment=!1,this.nodes=[],this.attrs={},this.enterKey=null,this.inputType=null,this.offsetOnFocus=75,this.path=[],this.value=this.getReactive(),this.value.watch(this.onChange.bind(this)),this.isRequired=!1,this.calcValue=null,this.reporting=null,this.checker=null,this.root=null,this.loading=new F(!1),this.loading.make(),this.isResetCalcValue=!0,this.validateTimer=!1,this.stopValidation=!1,this.abortController=null}at.prototype.attrs={},at.prototype.isSupported=function(t){return!1},at.prototype.addListeners=function(){const[t]=this.nodes;t.addEventListener("input",(t=>{this.value.current=t.target.value})),t.addEventListener("blur",(()=>{})),t.addEventListener("input",(()=>{this.reporting&&"function"==typeof this.reporting.switchButtonsState&&this.reporting.switchButtonsState(!0),this.debouncedReport()})),!R&&jQuery(t).on("change",(t=>{this.value.current!=t.target.value&&(this.callable.lockTrigger(),this.value.current=t.target.value,this.callable.unlockTrigger())})),"input"===this.inputType&&(this.enterKey=new k,t.addEventListener("keydown",this.handleEnterKey.bind(this)))},at.prototype.makeReactive=function(){this.onObserve(),this.addListeners(),this.setValue(),this.initNotifyValue(),this.value.make(),ut("jet.fb.input.makeReactive",this)},at.prototype.onChange=function(t){this.isResetCalcValue&&(this.calcValue=this.value.current),this?.callable?.run(t),this.report()},at.prototype.report=function(){this.reporting.validateOnChange()},at.prototype.reportOnBlur=function(t=null){this.reporting.validateOnBlur(t)},at.prototype.debouncedReport=function(){this.validateTimer&&(this.stopValidation=!0,clearTimeout(this.validateTimer),this.abortController&&this.abortController.abort()),this.abortController=new AbortController;let t=this.abortController.signal;this.validateTimer=setTimeout((()=>{this.reportOnBlur(t)}),450)},at.prototype.watch=function(t){return this.value.watch(t)},at.prototype.watchValidity=function(t){return this.reporting.validityState.watch(t)},at.prototype.sanitize=function(t){return this.value.sanitize(t)},at.prototype.merge=function(t){this.nodes=[...t.getNode()]},at.prototype.setValue=function(){let t;t=this.isArray()?Array.from(this.nodes).map((({value:t})=>t)):this.nodes[0]?.value,this.calcValue=t,this.value.current=t},at.prototype.setNode=function(t){var e;this.nodes=[t],this.rawName=null!==(e=t.name)&&void 0!==e?e:"",this.name=_t(this.rawName),this.inputType=t.nodeName.toLowerCase()},at.prototype.onObserve=function(){const[t]=this.nodes;t.jfbSync=this,this.isRequired=this.checkIsRequired(),this.callable=function(t,e){for(const n of(H.length||(H=J("jet.fb.signals",[A,L,B])),[...H])){const r=new n;if(r.isSupported(t,e))return r}return null}(t,this),this.callable.setInput(this),this.reporting=function(t){for(const e of(nt.length||(nt=et("jet.fb.reporting",[z])),[...nt])){const n=new e;if(n.isSupported(t.nodes[0],t))return n.setInput(t),n}throw new Error("Something went wrong")}(this),this.loading.watch((()=>this.onChangeLoading())),this.path=[...this.getParentPath(),this.name],this.getSubmit().submitter.hasOwnProperty("status")&&!this.hasParent()&&this.getSubmit().submitter.watchReset((()=>this.onClear()))},at.prototype.onChangeLoading=function(){this.getSubmit().lockState.current=this.loading.current;const[t]=this.nodes;t.closest(".jet-form-builder-row").classList.toggle("is-loading",this.loading.current)},at.prototype.setRoot=function(t){this.root=t},at.prototype.onRemove=function(){},at.prototype.getName=function(){return this.name},at.prototype.getValue=function(){return this.value.current},at.prototype.getNode=function(){return this.nodes},at.prototype.isArray=function(){return this.rawName.includes("[]")},at.prototype.beforeSubmit=function(t,e=!1){this.getSubmit().submitter.promise(t,e)},at.prototype.getSubmit=function(){return this.getRoot().form},at.prototype.getRoot=function(){return this.root?.parent?this.root.parent.getRoot():this.root},at.prototype.isVisible=function(){return b(this.getWrapperNode())},at.prototype.onClear=function(){this.silenceSet(null)},at.prototype.getReactive=function(){return new _},at.prototype.checkIsRequired=function(){var t;const[e]=this.nodes;return null!==(t=e.required)&&void 0!==t?t:!!e.dataset.required?.length},at.prototype.silenceSet=function(t){const e=this.report.bind(this);this.report=()=>{},this.value.current=t,this.report=e},at.prototype.silenceNotify=function(){const t=this.report.bind(this);this.report=()=>{},this.value.notify(),this.report=t},at.prototype.hasParent=function(){return!!this.root?.parent},at.prototype.getWrapperNode=function(){return this.nodes[0].closest(".jet-form-builder-row")},at.prototype.handleEnterKey=function(t){"Enter"!==t.key||!this.enterKey||t.shiftKey||t.isComposing||(t.preventDefault(),this.onEnterKey())},at.prototype.onEnterKey=function(){this.enterKey.applyFilters(!0)&&!0===this.getSubmit().canTriggerEnterSubmit&&this.getSubmit().submit()},at.prototype.initNotifyValue=function(){this.silenceNotify()},at.prototype.onFocus=function(){this.scrollTo(),this.focusRaw()},at.prototype.focusRaw=function(){const[t]=this.nodes;["date","time","datetime-local"].includes(t.type)||t?.focus({preventScroll:!0})},at.prototype.scrollTo=function(){const t=this.getWrapperNode();window.scrollTo({top:v(t)-this.offsetOnFocus,behavior:"smooth"})},at.prototype.getContext=function(){return this.root.getContext()},at.prototype.populateInner=function(){return!1},at.prototype.hasAutoScroll=function(){return!0},at.prototype.getReportingNode=function(){return this.nodes[0]},at.prototype.getParentPath=function(){if(!this.root?.parent)return[];const t=this.root.parent.value.current;if("object"!=typeof t)return[];for(const[e,n]of Object.entries(t))if(n===this.root)return[...this.root.parent.getParentPath(),this.root.parent.name,e];return[]},at.prototype.reQueryValue=function(){this.setValue(),this.initNotifyValue()},at.prototype.revertValue=function(t){this.value.current=t},at.prototype.reCalculateFormula=function(){this.setValue(),this.initNotifyValue()};const ct=at;function lt(){ct.call(this),this.isSupported=function(t){return function(t){return["select-one","range"].includes(t.type)}(t)},this.addListeners=function(){const[t]=this.nodes;t.addEventListener("change",(t=>{this.value.current=t.target.value})),!R&&jQuery(t).on("change",(t=>{this.value.current!=t.target.value&&(this.callable.lockTrigger(),this.value.current=t.target.value,this.callable.unlockTrigger())})),this.enterKey=new k,t.addEventListener("keydown",this.handleEnterKey.bind(this))},this.onClear=function(){this.silenceSet("")}}lt.prototype=Object.create(ct.prototype);const ht=lt;function pt(){ct.call(this),this.numberNode=null,this.isSupported=function(t){return M(t)},this.setNode=function(t){ct.prototype.setNode.call(this,t),this.numberNode=t.parentElement.querySelector(".jet-form-builder__field-value-number")}}pt.prototype=Object.create(ct.prototype);const ft=pt;function dt(){ct.call(this),this.comment=null,this.isSupported=function(t){return T(t)},this.addListeners=function(){},this.onObserve=function(){ct.prototype.onObserve.call(this),this.isArray()&&this.setComment()},this.setComment=function(){this.comment=document.createComment(this.name);const[t]=this.nodes;t.parentElement.insertBefore(this.comment,t)},this.isVisible=function(){return!1},this.merge=function(t){this.nodes.push(...t.getNode())}}dt.prototype=Object.create(ct.prototype);const mt=dt;function gt(t){_.call(this,t)}gt.prototype=Object.create(_.prototype),gt.prototype.add=function(t){var e;this.current=[...new Set([...null!==(e=this.current)&&void 0!==e?e:[],t])]},gt.prototype.remove=function(t){this.current=this.current.filter((e=>e!==t))},gt.prototype.toggle=function(t,e=null){null===e?this.current.includes(t)?this.remove(t):this.add(t):e?this.add(t):this.remove(t)};const yt=gt,{builtInStates:bt}=window.JetFormBuilderSettings;function vt(){mt.call(this),this.isSupported=function(t){return"hidden"===t?.type&&"_jfb_current_render_states[]"===t.name},this.add=function(t){this.value.add(t)},this.remove=function(t){this.value.remove(t)},this.toggle=function(t,e=null){this.value.toggle(t,e)},this.isCustom=function(t){return!bt.includes(t)}}vt.prototype=Object.create(mt.prototype),vt.prototype.getReactive=function(){return new yt};const wt=vt,{applyFilters:St,doAction:jt}=JetPlugins.hooks;let Nt=[];function _t(t){const e=[/^([\w\-]+)\[\]$/,/^[\w\-]+\[\d+\]\[([\w\-]+)\]\[?\]?$/];for(const n of e)if(n.test(t))return t.match(n)[1];return t}function It(t){const e=[];for(const n of t){const t=n.populateInner();t?.length&&e.push(...t),e.push(n)}return e}function Ft(t){this.form=t,this.lastResponse={},this.promises=[]}Ft.prototype.submit=function(){throw new Error("You need to replace this callback")},Ft.prototype.getPromises=function(){return this.promises.map((({callable:t})=>new Promise(t)))},Ft.prototype.promise=function(t,e=!1){const n=e?e.path.join("."):"";this.promises=this.promises.filter((({idPath:t})=>!t||t!==n)),this.promises.push({callable:t,idPath:e?e.path.join("."):""})};const Ot=Ft;function kt(t){return"success"===t||t?.includes("dsuccess|")}function Ct(t){Ot.call(this,t),this.status=new _,this.status.make(),this.submit=function(){const t=jQuery(this.form.observable.rootNode),{applyFilters:e}=JetPlugins.hooks;Promise.all(e("jet.fb.submit.ajax.promises",this.getPromises(),t)).then((t=>this.runSubmit(t))).catch((()=>this.form.toggle()))},this.runSubmit=function(t){const{rootNode:e}=this.form.observable,n=new FormData(e);n.append("_jet_engine_booking_form_id",this.form.getFormId()),this.status.silence(),this.status.current=null,this.status.silence(),jQuery.ajax({url:JetFormBuilderSettings.ajaxurl,type:"POST",dataType:"json",data:n,cache:!1,contentType:!1,processData:!1}).done((n=>{this.onSuccess(n);const r=jQuery(e);t.forEach((t=>{"function"==typeof t&&t.call(r,n)}))})).fail(this.onFail.bind(this))},this.onSuccess=function(t){this.form.toggle();const{rootNode:e}=this.form.observable;this.lastResponse=t;const n=jQuery(e),r=t?._jfb_csrf_token;r&&this.refreshCsrfToken(r),"success"===t.status?jQuery(document).trigger("jet-form-builder/ajax/on-success",[t,n]):jQuery(document).trigger("jet-form-builder/ajax/processing-error",[t,n]),this.status.current=t.status,t.redirect?t.open_in_new_tab?window.open(t.redirect,"_blank"):window.location=t.redirect:t.reload&&window.location.reload(),this.insertMessage(t.message)},this.onFail=function(t,e,n){this.form.toggle(),this.status.current=!1;const{rootNode:r}=this.form.observable,o=jQuery(r);jQuery(document).trigger("jet-form-builder/ajax/on-fail",[t,e,n,o]),console.error(t.responseText,n)},this.insertMessage=function(t){const{rootNode:e}=this.form.observable,n=document.createElement("div");n.classList.add("jet-form-builder-messages-wrap"),n.innerHTML=t,e.appendChild(n)},this.refreshCsrfToken=function(t){const e=this.form.getFormId(),n=document.querySelectorAll("form.jet-form-builder[data-form-id]");for(const r of n){if(+r.dataset.formId!==e)continue;const n=r.querySelectorAll('input[name="_jfb_csrf_token"]');for(const e of n)e.value=t}}}Ct.prototype=Object.create(Ot.prototype),Ct.prototype.status=null,Ct.prototype.watchReset=function(t){const{rootNode:e}=this.form.observable;e.dataset?.clear&&this.watchSuccess(t)},Ct.prototype.watchSuccess=function(t){const e=this.status;e.watch((()=>{kt(e.current)&&t()}))},Ct.prototype.watchFail=function(t){const e=this.status;e.watch((()=>{kt(e.current)||t()}))};const Rt=Ct;function Et(t){Ot.call(this,t),this.failPromises=[],this.submit=function(){const{rootNode:t}=this.form.observable,{applyFilters:e}=JetPlugins.hooks;Promise.all(e("jet.fb.submit.reload.promises",this.getPromises(),{target:t})).then((()=>t.submit())).catch((()=>{this.failPromises.forEach((t=>t())),this.form.toggle()}))},this.onFailSubmit=function(t){"function"==typeof t&&this.failPromises.push(t)}}Et.prototype=Object.create(Ot.prototype);const Pt=Et,Tt=function(t){this.observable=t,this.lockState=new F(!1),this.lockState.make(),this.autoFocus=window.JetFormBuilderSettings?.auto_focus,this.canSubmitForm=!0,this.canTriggerEnterSubmit=!0,this.onSubmit=function(t){t.preventDefault(),this.submit()},this.submit=function(){!0===this.canSubmitForm&&(this.canSubmitForm=!1,this.canTriggerEnterSubmit=!1,this.observable.inputsAreValid().then((()=>{this.clearErrors(),this.toggle(),this.submitter.submit()})).catch((()=>{this.autoFocus&&j(It(this.observable.getInputs()))})).finally((()=>{this.canTriggerEnterSubmit=!0,this.canSubmitForm=!0})))},this.clearErrors=function(){const t=this.observable.rootNode.querySelectorAll(".jet-form-builder-messages-wrap");for(const e of t)e.remove()},this.toggle=function(){this.lockState.toggle(),this.toggleLoading()},this.handleButtons=function(){const t=this.observable.rootNode.querySelectorAll(".jet-form-builder__submit");this.lockState.watch((()=>{for(const e of t)e.disabled=this.lockState.current;!1===this.lockState.current&&(this.canSubmitForm=!0)}))},this.toggleLoading=function(){this.observable.rootNode.classList.toggle("is-loading")},this.createSubmitter=function(){const{classList:t}=this.observable.rootNode;return t.contains("submit-type-ajax")?new Rt(this):new Pt(this)},this.getFormId=function(){const{rootNode:t}=this.observable;return+t.dataset.formId},this.onEndSubmit=function(t){this.submitter.hasOwnProperty("status")?this.submitter.status.watch(t):this.submitter.onFailSubmit(t)},this.observable.rootNode.addEventListener("submit",(t=>this.onSubmit(t))),this.submitter=this.createSubmitter(),this.handleButtons()},Mt=function(t,e){const{replaceAttrs:n=[]}=window.JetFormBuilderSettings,r=[];for(let t=0;tNodeFilter.FILTER_ACCEPT){const n=document.createNodeIterator(t,NodeFilter.SHOW_COMMENT,{acceptNode:e});let r;for(;r=n.nextNode();)r.nodeValue=r.nodeValue.trim(),yield r},Bt=function*(t){yield*xt(t,(t=>!t.jfbObserved&&t.textContent.includes("JFB_FIELD::")))},Dt=function(t,e,n={}){if(null===e||!e?.length)return t;let r=Boolean(n?.rawRepeaterValue);for(const o of e){const e=r&&!1===o?.isCoreFilter;t=o.applyWithProps(e?n.rawRepeaterValue:t),r=!1}return t};function At(){this.props=[]}At.prototype.getSlug=function(){throw new Error("getSlug is empty")},At.prototype.setProps=function(t){this.props.push(...t)},At.prototype.applyWithProps=function(t){return this.apply(t,...this.props)},At.prototype.apply=function(t,...e){return t};const Vt=At;function Lt(){Vt.call(this),this.getSlug=function(){return"length"},this.apply=function(t){var e;return null!==(e=t?.length)&&void 0!==e?e:0}}Lt.prototype=Object.create(Vt.prototype);const Jt=Lt;function Ht(){Vt.call(this),this.getSlug=function(){return"ifEmpty"},this.apply=function(t,e){return y(t)||Number.isNaN(t)?e:t}}Ht.prototype=Object.create(Vt.prototype);const Qt=Ht;function qt(t,e){return(t=""+t).length>=e?t:new Array(e-t.length).fill(0)+t}function Yt(t,e=!0){const n=e?t.getUTCMonth():t.getMonth(),r=e?t.getUTCDate():t.getDate();return[e?t.getUTCFullYear():t.getFullYear(),qt(n+1,2),qt(r,2)].join("-")}function $t(t,e=!0){const n=e?t.getUTCHours():t.getHours(),r=e?t.getUTCMinutes():t.getMinutes();return[qt(n,2),qt(r,2)].join(":")}function Wt(t,e=!1){return Yt(t,e)+"T"+$t(t,e)}function zt(t){if(!Number.isNaN(+t))return{time:+t,type:"number"};if((t=t.toString()).split("-").length>1)return{time:new Date(t).getTime(),type:"date"};const e=t.split(":"),n=[Date.prototype.setHours,Date.prototype.setMinutes,Date.prototype.setSeconds],r=new Date;for(const t in e)e.hasOwnProperty(t)&&n.hasOwnProperty(t)&&n[t].call(r,e[t]);return{time:r.getTime(),type:"time"}}function Kt(){Vt.call(this),this.getSlug=function(){return"toDate"},this.apply=function(t,e=!0){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"");e="false"!==t.toLowerCase()}else e=Boolean(e);return Yt(new Date(t),e)}}Kt.prototype=Object.create(Vt.prototype);const Ut=Kt;function Gt(){Vt.call(this),this.getSlug=function(){return"toTime"},this.apply=function(t,e=!0){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"");e="false"!==t.toLowerCase()}else e=Boolean(e);return $t(new Date(t),e)}}Gt.prototype=Object.create(Vt.prototype);const Xt=Gt;function Zt(){Vt.call(this),this.getSlug=function(){return"toDateTime"},this.apply=function(t,e=!1){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"").toLowerCase();e=""!==t&&"false"!==t}else e=Boolean(e);return Wt(new Date(t),e)}}Zt.prototype=Object.create(Vt.prototype);const te=Zt;function ee(){Vt.call(this),this.getSlug=function(){return"addYear"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setFullYear(r.getFullYear()+e))}}ee.prototype=Object.create(Vt.prototype);const ne=ee;function re(){Vt.call(this),this.getSlug=function(){return"addMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(r.getMonth()+e))}}re.prototype=Object.create(Vt.prototype);const oe=re;function ie(){Vt.call(this),this.getSlug=function(){return"addDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(r.getDate()+e))}}ie.prototype=Object.create(Vt.prototype);const se=ie;function ue(){Vt.call(this),this.getSlug=function(){return"addHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setHours(r.getHours()+e))}}ue.prototype=Object.create(Vt.prototype);const ae=ue;function ce(){Vt.call(this),this.getSlug=function(){return"addMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMinutes(r.getMinutes()+e))}}ce.prototype=Object.create(Vt.prototype);const le=ce;function he(){Vt.call(this),this.getSlug=function(){return"T"},this.apply=function(t){if(!t)return 0;const{time:e}=zt(t);return e}}he.prototype=Object.create(Vt.prototype);const pe=he;function fe(){Vt.call(this),this.getSlug=function(){return"setHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?t:(e=e?+e.trim():0,r.setHours(e))}}fe.prototype=Object.create(Vt.prototype);const de=fe;function me(){Vt.call(this),this.getSlug=function(){return"setMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?t:(e=e?+e.trim():0,r.setMinutes(e))}}me.prototype=Object.create(Vt.prototype);const ge=me;function ye(){Vt.call(this),this.getSlug=function(){return"setDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(e))}}ye.prototype=Object.create(Vt.prototype);const be=ye;function ve(){Vt.call(this),this.getSlug=function(){return"setYear"},this.apply=function(t,e){if(!(e=!!e&&+e.trim()))return t;const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:r.setFullYear(e)}}ve.prototype=Object.create(Vt.prototype);const we=ve;function Se(){Vt.call(this),this.getSlug=function(){return"setMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(e))}}Se.prototype=Object.create(Vt.prototype);const je=Se;function Ne(){Vt.call(this),this.getSlug=function(){return"subHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setHours(r.getHours()-e))}}Ne.prototype=Object.create(Vt.prototype);const _e=Ne;function Ie(){Vt.call(this),this.getSlug=function(){return"subDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(r.getDate()-e))}}Ie.prototype=Object.create(Vt.prototype);const Fe=Ie;function Oe(){Vt.call(this),this.getSlug=function(){return"subMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMinutes(r.getMinutes()-e))}}Oe.prototype=Object.create(Vt.prototype);const ke=Oe;function Ce(){Vt.call(this),this.getSlug=function(){return"subMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(r.getMonth()-e))}}Ce.prototype=Object.create(Vt.prototype);const Re=Ce;function Ee(){Vt.call(this),this.getSlug=function(){return"subYear"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setFullYear(r.getFullYear()-e))}}Ee.prototype=Object.create(Vt.prototype);const Pe=Ee;function Te(){Vt.call(this),this.getSlug=function(){return"toDayInMs"},this.apply=function(t){return 864e5*t}}Te.prototype=Object.create(Vt.prototype);const Me=Te;function xe(){Vt.call(this),this.getSlug=function(){return"toMonthInMs"},this.apply=function(t){return 2592e6*t}}xe.prototype=Object.create(Vt.prototype);const Be=xe;function De(){Vt.call(this),this.getSlug=function(){return"toYearInMs"},this.apply=function(t){return 31536e6*t}}De.prototype=Object.create(Vt.prototype);const Ae=De;function Ve(){Vt.call(this),this.getSlug=function(){return"toHourInMs"},this.apply=function(t){return 36e5*t}}Ve.prototype=Object.create(Vt.prototype);const Le=Ve;function Je(){Vt.call(this),this.getSlug=function(){return"toMinuteInMs"},this.apply=function(t){return 6e4*t}}Je.prototype=Object.create(Vt.prototype);const He=Je;function Qe(){Vt.call(this),this.getSlug=function(){return"toWeekInMs"},this.apply=function(t){return 6048e5*t}}Qe.prototype=Object.create(Vt.prototype);const qe=Qe,{applyFilters:Ye}=JetPlugins.hooks;let $e=[];const We=[we,je,be,de,ge,Pe,Re,Fe,_e,ke,ne,oe,se,ae,le,Jt,Qt,Ut,Xt,te,pe,Me,Be,Ae,Le,He,qe];let ze=[];function Ke(t,e=""){let n;$e.length||($e=Ye("jet.fb.filters",[...We]));for(let e of $e){const r=e;if(e=new r,t===e.getSlug()){e.isCoreFilter=We.includes(r),n=e;break}}n&&(e=e.split(",").map((t=>t.trim())),n.setProps(e),ze.push(n))}const Ue=function(t){if(null===t||!t?.length)return null;for(const e of t){const t=e.match(/^(\w+)\(([^()]+)\)/);null!==t?Ke(t[1],t[2]):Ke(e)}const e=[...ze];return ze=[],e};function Ge(){}Ge.prototype={getId(){throw new Error("You need to rewrite this method")},getResult(){throw new Error("You need to rewrite this method")}};const Xe=Ge;function Ze(){Xe.call(this),this.getId=()=>"CurrentDate",this.getResult=()=>(new Date).getTime()}Ze.prototype=Object.create(Xe.prototype);const tn=Ze,en={Milli_In_Sec:1e3,Sec_In_Min:60,Min_In_Hour:60,Hour_In_Day:24,Day_In_Month:30,Year_In_Day:365,Kb_In_Bytes:1024};en.Min_In_Sec=en.Sec_In_Min*en.Milli_In_Sec,en.Hour_In_Sec=en.Min_In_Hour*en.Min_In_Sec,en.Day_In_Sec=en.Hour_In_Day*en.Hour_In_Sec,en.Month_In_Sec=en.Day_In_Month*en.Day_In_Sec,en.Year_In_Sec=en.Year_In_Day*en.Day_In_Sec,en.Mb_In_Bytes=1024*en.Kb_In_Bytes,en.Gb_In_Bytes=1024*en.Mb_In_Bytes,en.Tb_In_Bytes=1024*en.Gb_In_Bytes;const nn=en;function rn(){Xe.call(this),this.getId=()=>"Min_In_Sec",this.getResult=()=>nn.Min_In_Sec}rn.prototype=Object.create(Xe.prototype);const on=rn;function sn(){Xe.call(this),this.getId=()=>"Month_In_Sec",this.getResult=()=>nn.Month_In_Sec}sn.prototype=Object.create(Xe.prototype);const un=sn;function an(){Xe.call(this),this.getId=()=>"Hour_In_Sec",this.getResult=()=>nn.Hour_In_Sec}an.prototype=Object.create(Xe.prototype);const cn=an;function ln(){Xe.call(this),this.getId=()=>"Day_In_Sec",this.getResult=()=>nn.Day_In_Sec}ln.prototype=Object.create(Xe.prototype);const hn=ln;function pn(){Xe.call(this),this.getId=()=>"Year_In_Sec",this.getResult=()=>nn.Year_In_Sec}pn.prototype=Object.create(Xe.prototype);const fn=pn,{applyFilters:dn}=JetPlugins.hooks;let mn=[];const gn=window.wp.i18n,{applyFilters:yn,addFilter:bn}=JetPlugins.hooks;function vn(t){if(!t)return"";if("SELECT"===t.tagName)return Array.from(t.selectedOptions||[]).map((t=>String(t.label||t.textContent||t.value||"").trim())).filter(Boolean).join(", ");if(("checkbox"===t.type||"radio"===t.type)&&!t.checked)return"";if("checkbox"===t.type||"radio"===t.type){const e=t.closest("label");if(!e)return"";const n=e.querySelector("span");return String(n?.textContent||e.textContent||t.value||"").trim()}return""}function wn(t,e={}){var n;this.parts=[],this.related=[],this.relatedAttrs=[],this.regexp=/%([\w\-].*?\S?)%/g,this.watchers=[];const{forceFunction:r=!1}=e;this.forceFunction=r,t instanceof ct&&(this.input=t),this.root=null!==(n=this.input?.root)&&void 0!==n?n:t}bn("jet.fb.custom.formula.macro","jet-form-builder",(function(t,e){if(!e.includes("CT::"))return t;const n=function(t){mn.length||(mn=dn("jet.fb.static.functions",[tn,on,un,cn,hn,fn]));for(const e of mn){const n=new e;if(n.getId()===t)return n}return!1}(e=e.replace("CT::",""));return!1===n?t:n.getResult()})),wn.prototype={formula:null,parts:[],related:[],relatedAttrs:[],input:null,root:null,regexp:null,forceFunction:!1,setResult:()=>{throw new Error("CalculatedFormula.setResult is not set!")},relatedCallback:t=>t.value.current,relatedLabelCallback:t=>function(t){const e=Array.from(t.nodes||[]).map(vn).filter(Boolean);return e.length?e.join(", "):t.value.current}(t),observe(t){this.formula=t,Array.isArray(t)?t.forEach((t=>{this.observeItem(t)})):this.observeItem(t)},observeItem(t){let e,n=0;for(t+="";null!==(e=this.regexp.exec(t));){const r=this.observeMacro(e[1]);0!==e.index&&this.parts.push(t.slice(n,e.index)),n=e.index+e[0].length,!1===r?this.onMissingPart(e[0]):this.parts.push(r)}n!==t.length&&(this.parts.push(t.slice(n)),1===this.parts.length&&(this.parts=[]))},onMissingPart(t){this.parts.push(t)},isFieldNodeExists(t){if(void 0===this.root.dataInputs[t])return!1;let e=this.root.rootNode[t]||this.root.rootNode[t+"[]"]||this.root.rootNode.querySelectorAll('[data-field-name="'+t+'"]');if(e&&0===e.length&&(e=void 0),void 0===e){const n=t.replace(/([\\^$*+?.()|{}\[\]])/g,"\\$1"),r=`[name$="[${n}]"],[name$="[${n}][]"],[name*="[${n}]["]`,o=this.root.rootNode.querySelectorAll(r);o&&o.length&&(e=o)}return e=yn("jet.fb.formula.node.exists",e,t,this),e},observeMacro(t){null===this.formula&&(this.formula=t);const[e,...n]=t.split("|"),r=e.match(/[\w\-:]+/g);if(!r)return!1;let[o,...i]=r;if(e.includes("::")){const[t,...n]=e.split("::");this.root.getInput(t)&&(o=t,i=n)}if(void 0===this.isFieldNodeExists(o)){const t=new RegExp(`%${o}%`,"g");let e,n=0,r=this.formula;for(;null!==(e=t.exec(this.formula));){const t=this.formula[e.index-1],r=this.formula[e.index+e[0].length];if("*"===t||"/"===t||"*"===r||"/"===r){n="/"===t||"*"===t&&"*"===r?1:0;break}n=0;break}return r=r.replace(e[0],n),this.formula=r,n}const s="this"!==o?this.root.getInput(o):this.input;if(!s&&!o.includes("::"))return!1;const u=Ue(n);if(o.includes("::")){const t=yn("jet.fb.custom.formula.macro",!1,o,i,this);return!1!==t&&("function"==typeof t?()=>Dt(t(),u):Dt(t,u))}if(this.related.includes(s.name)||(this.related.push(s.name),this.watchers.push(s.watch((()=>this.setResult())))),!i?.length)return()=>Dt(this.relatedCallback(s),u);const[a]=i;if("label"===a)return()=>Dt(this.relatedLabelCallback(s),u);if(!s.attrs.hasOwnProperty(a))return!1;const c=s.attrs[a];return this.relatedAttrs.includes(s.name+a)||(this.relatedAttrs.push(s.name+a),this.watchers.push(c.value.watch((()=>this.setResult())))),()=>Dt(c.value.current,u)},calculateString(){var t;if(!this.parts.length)return this.formula;const{applyFilters:e=!1}=null!==(t=window?.JetFormBuilderMain?.filters)&&void 0!==t?t:{};return this.parts.map((t=>{if("function"!=typeof t)return this.input?.nodes&&!1!==e&&"string"==typeof t?(t=yn("jet.fb.onCalculate.part",t,this),e("forms/calculated-formula-before-value",t,jQuery(this.input.nodes[0]))):t;const n=t();return null===n||""===n||Number.isNaN(n)?this.emptyValue():n})).join("")},emptyValue:()=>"",calculate(){if(!this.parts.length&&!this.forceFunction)return this.formula;const t=function(t){if("string"!=typeof t)return t;let e="",n=!1,r="code",o=0;for(let i=0;i"function"==typeof t&&t())),this.watchers=[],this.relatedAttrs=[],this.related=[]},showError(t){console.group((0,gn.__)("JetFormBuilder: You have invalid calculated formula","jet-form-builder")),this.showErrorDetails(t),console.groupEnd()},showErrorDetails(t){if(console.error((0,gn.sprintf)((0,gn.__)("Initial: %s","jet-form-builder"),this.formula)),console.error((0,gn.sprintf)((0,gn.__)("Computed: %s","jet-form-builder"),t)),!this.input&&!this.root?.parent)return;if(this.input)return void console.error((0,gn.sprintf)((0,gn.__)("Field: %s","jet-form-builder"),this.input.path.join(".")));const e=this.root.parent.findIndex(this.root);console.error((0,gn.sprintf)((0,gn.__)("Scope: %s","jet-form-builder"),[...this.root.parent.path,-1===e?"":e].filter(Boolean).join(".")))}};const Sn=wn,{applyFilters:jn}=JetPlugins.hooks;function Nn(t){if(!t)return"";if("SELECT"===t.tagName)return Array.from(t.selectedOptions||[]).map((t=>String(t.label||t.textContent||t.value||"").trim())).filter(Boolean).join(", ");if(("checkbox"===t.type||"radio"===t.type)&&!t.checked)return"";if("checkbox"===t.type||"radio"===t.type){const e=t.closest("label");if(!e)return"";const n=e.querySelector("span");return String(n?.textContent||e.textContent||t.value||"").trim()}return""}function _n(t,{withPrefix:e=!0,macroHost:n=!1,macroFormat:r="",...o}={}){Sn.call(this,t,o),e&&(this.regexp=/JFB_FIELD::(.+)/gi),this.macroHost=n||!1,this.macroFormat=r||"",this.relatedCallback=function(t){const e=jQuery(t.nodes[0]),n=!!this.macroHost&&jQuery(this.macroHost);let r=jn("jet.fb.macro.field.value",!1,e,n,this.macroFormat);return r=wp?.hooks?.applyFilters?wp.hooks.applyFilters("jet.fb.macro.field.value",r,e,n,this.macroFormat):r,!1!==r?r:"option-label"===this.macroFormat&&function(t){return Array.from(t.nodes||[]).map(Nn).filter(Boolean).join(", ")}(t)||t.value.current}.bind(this),this.onMissingPart=function(){}}_n.prototype=Object.create(Sn.prototype),_n.prototype.observeMacro=function(t){null===this.formula&&(this.formula=t);const[e,...n]=t.split("|"),r=e.match(/[\w\-:]+/g);if(!r)return!1;const[o,...i]=r;if(void 0===this.isFieldNodeExists(o))return!1;const s="this"!==o?this.root.getInput(o):this.input;if(!s&&!o.includes("::"))return!1;const u=Ue(n);if(o.includes("::"))return Sn.prototype.observeMacro.call(this,t);if(this.related.includes(s.name)||(this.related.push(s.name),this.watchers.push(s.watch((()=>this.setResult())))),!i?.length)return()=>{if("repeater"===s.inputType&&u?.length){const t=this.relatedCallback(s);return s.reQueryValue?.(),Dt(t,u,{rawRepeaterValue:s.value.current})}return Dt(this.relatedCallback(s),u)};const[a]=i;if(!s.attrs.hasOwnProperty(a))return!1;const c=s.attrs[a];return this.relatedAttrs.includes(s.name+a)||(this.relatedAttrs.push(s.name+a),this.watchers.push(c.value.watch((()=>this.setResult())))),()=>Dt(c.value.current,u)},_n.prototype.calculateString=function(){return this.parts.length?this.parts.map((t=>{if("function"!=typeof t)return t;const e=t();return null===e||""===e?"":e})).join(""):this.formula};const In=_n,{__:Fn,sprintf:On}=wp.i18n,kn=function(t,e){if(t.jfbObserved)return;const n=new In(e);if(n.observe(t.textContent),!n.parts?.length)return console.group(Fn("JetFormBuilder: You have invalid html macro","jet-form-builder")),console.error(On(Fn("Content: %s","jet-form-builder"),t.textContent)),console.groupEnd(),void n.clearWatchers();const r=document.createElement("span"),o=t.parentNode.insertBefore(r,t);n.setResult=()=>{o.innerHTML=n.calculateString()},n.setResult(),t.jfbObserved=!0},Cn=function(t,e,n){var r;const o=null!==(r=t[e])&&void 0!==r?r:"";if("string"!=typeof o)return null;const i=new In(n);i.observe(o),i.setResult=()=>{t[e]=i.calculateString()},i.setResult()},Rn=function(t,e){t.__jfbMacroTemplate||(t.__jfbMacroTemplate=t.innerHTML);const n=new In(e,{withPrefix:!1,macroHost:t,macroFormat:t.dataset.jfbMacroFormat||""});if(n.observe(`%${t.dataset.jfbMacro}%`),!n.parts?.length)return console.group((0,gn.__)("JetFormBuilder: You have invalid html macro","jet-form-builder")),console.error((0,gn.sprintf)((0,gn.__)("Content: %s","jet-form-builder"),t.dataset.jfbMacro)),console.groupEnd(),void n.clearWatchers();t.dataset.jfbObserved=1,n.setResult=()=>{let e=String(n.calculateString());const r=t.querySelector?.("textarea");r&&(e=e.replace(/\r\n|\r|\n/g,"
    ")),t.innerHTML=e},n.setResult()};function En(t){this.root=t,this.reportedFirst=!1,this.silence=!0}En.prototype={reset(t={}){var e;this.reportedFirst=!1,this.setSilence(null===(e=t?.silence)||void 0===e||e)},reportFirst(){this.reportedFirst=!0},setSilence(t){this.silence=!!t}};const Pn=En,{doAction:Tn}=JetPlugins.hooks;function Mn(t=null){this.parent=t,this.dataInputs={},this.form=null,this.multistep=null,this.rootNode=null,this.isObserved=!1,this.context=this.parent?null:new Pn(this)}Mn.prototype={parent:null,dataInputs:{},form:null,multistep:null,rootNode:null,isObserved:!1,value:null,observe(t=null){this.isObserved||(null!==t&&(this.rootNode=t),this.isObserved=!0,Tn("jet.fb.observe.before",this),this.initSubmitHandler(),this.initFields(),this.makeReactiveProxy(),this.initMacros(),this.initActionButtons(),this.initValue(),Tn("jet.fb.observe.after",this))},initFields(){for(const t of this.rootNode.querySelectorAll("[data-jfb-sync]"))this.pushInput(t)},initMacros(){for(const t of Bt(this.rootNode))kn(t,this);const t=Mt(this.rootNode,"JFB_FIELD::"),{replaceAttrs:e=[]}=window.JetFormBuilderSettings;for(const n of t)for(const t of e)Cn(n,t,this);const n=this.rootNode.querySelectorAll("[data-jfb-macro]:not([data-jfb-observed])");for(const t of n)Rn(t,this)},initSubmitHandler(){this.parent||(this.form=new Tt(this))},initActionButtons(){if(!this.parent)for(const t of this.rootNode.querySelectorAll(".jet-form-builder__button-switch-state")){let e;try{e=JSON.parse(t.dataset.switchOn)}catch(t){continue}t.addEventListener("click",(()=>{this.getState().value.current=e}))}},async inputsAreValid(){const t=await st(It(this.getInputs()));return Boolean(t.length)?Promise.reject(t):Promise.resolve()},watch(t,e){const n=this.getInput(t);if(n)return n.watch(e);throw new Error(`dataInputs in Observable don't have ${t} field`)},observeInput(t,e=!1){const n=this.pushInput(t,e);n.makeReactive(),Tn("jet.fb.observe.input.manual",n)},makeReactiveProxy(){for(const t of this.getInputs())t.makeReactive()},pushInput(t,e=!1){var n;if(!this.parent&&t.parentElement.closest(".jet-form-builder-repeater"))return;const r=function(t,e){for(const n of(Nt.length||(Nt=St("jet.fb.inputs",[wt,ft,ht,mt])),[...Nt])){const r=new n;if(r.isSupported(t))return r.setRoot(e),r.setNode(t),g(r),jt("jet.fb.input.created",r),r}throw new Error("Something went wrong")}(t,this),o=null!==(n=this.dataInputs[r.getName()])&&void 0!==n&&n;return!1===o||e?(this.dataInputs[r.getName()]=r,r):(o.merge(r),o)},getInputs(){return Object.values(this.dataInputs)},getState(){return this.getInput("_jfb_current_render_states")},getInput(t){var e;if(this.dataInputs.hasOwnProperty(t))return this.dataInputs[t];const n=null!==(e=this.parent?.root)&&void 0!==e?e:null;return n&&n.dataInputs.hasOwnProperty(t)?n.dataInputs[t]:null},getSubmit(){return this.form?this.form:this.parent.root.form},getContext(){var t;return null!==(t=this.context)&&void 0!==t?t:this.parent.root.context},remove(){for(const t of this.getInputs())t.onRemove()},reQueryValues(){for(const t of this.getInputs())t.reQueryValue()},initValue(){this.value=new _({}),this.value.watch((()=>{const t=Object.entries(this.value.current);for(const[e,n]of t)this.getInput(e).revertValue(n)}));for(const t of this.getInputs())t.watch((()=>{this.value.current[t.getName()]=t.getValue()}));this.value.make()}};const xn=Mn;var Bn;window.JetFormBuilder=null!==(Bn=window.JetFormBuilder)&&void 0!==Bn?Bn:{};const Dn=function(t){const e=t[0].querySelector("form.jet-form-builder");if(!e)return;const n=new xn;window.JetFormBuilder[e.dataset.formId]=n,jQuery(document).trigger("jet-form-builder/init",[t,n]),n.observe(e),jQuery(document).trigger("jet-form-builder/after-init",[t,n])};var An,Vn,Ln,Jn,Hn;window.JetFormBuilderAbstract={...null!==(An=window.JetFormBuilderAbstract)&&void 0!==An?An:{},Filter:Vt,CalculatedFormula:Sn,BaseInternalMacro:Xe},window.JetFormBuilderFunctions={...null!==(Vn=window.JetFormBuilderFunctions)&&void 0!==Vn?Vn:{},getFilters:Ue,applyFilters:Dt,toDate:Yt,toDateTime:Wt,toTime:$t,getTimestamp:zt},window.JetFormBuilderConst={...null!==(Ln=window.JetFormBuilderConst)&&void 0!==Ln?Ln:{},...nn},window.JetFormBuilderAbstract={...null!==(Jn=window.JetFormBuilderAbstract)&&void 0!==Jn?Jn:{},InputData:ct,BaseSignal:P,ReactiveVar:_,ReactiveHook:k,LoadingReactiveVar:F,Observable:xn,ReportingInterface:$,Restriction:U,RestrictionError:q,BaseHtmlAttr:e,ReactiveSet:yt,RequiredRestriction:tt},window.JetFormBuilderFunctions={...null!==(Hn=window.JetFormBuilderFunctions)&&void 0!==Hn?Hn:{},allRejected:f,getLanguage:function(){const t=window?.navigator?.languages?.length?window.navigator.languages[0]:window?.navigator?.language;return null!=t?t:"en-US"},toHTML:function(t){const e=document.createElement("template");return e.innerHTML=t.trim(),e.content},validateInputs:function(t,e=!1){return Promise.all(it(t,e).map((t=>new Promise(t))))},validateInputsAll:st,getParsedName:_t,isEmpty:y,getValidateCallbacks:it,getOffsetTop:v,focusOnInvalidInput:j,populateInputs:It,isVisible:b,queryByAttrValue:Mt,iterateComments:xt,observeMacroAttr:Cn,observeComment:kn,iterateJfbComments:Bt,getScrollParent:S,isUA:function(t){return h?.[t]},resetRuntimeRegistries:function(){d=[],Nt=[],H=[],nt=[],ot=[]}},document.addEventListener("DOMContentLoaded",(function(){for(const[t,e]of Object.entries(h))e&&document.body.classList.add(`jet--ua-${t}`)})),jQuery((()=>JetPlugins.init())),JetPlugins.bulkBlocksInit([{block:"jet-forms.form-block",callback:Dn,condition:()=>"loading"!==document.readyState}]),jQuery(window).on("elementor/frontend/init",(function(){if(!window.elementorFrontend)return;const t={"jet-engine-booking-form.default":Dn,"jet-form-builder-form.default":Dn};jQuery.each(t,(function(t,e){window.elementorFrontend.hooks.addAction("frontend/element_ready/"+t,e)}))})),addEventListener("load",(()=>{const t=Object.values(window.JetFormBuilder);for(const e of t)e instanceof xn&&e.reQueryValues()}))})(); \ No newline at end of file +(()=>{"use strict";function t(){this.attrName="",this.initial=null,this.isFromData=!1,this.value=null}t.prototype={attrName:"",input:null,initial:null,value:null,observe(){this.value=new _(this.initial),this.value.make(),this.addWatcherAttr()},nodeSignal(){const[t]=this.input.nodes;t[this.attrName]=this.value.current},addWatcherAttr(){this.value.watch(()=>this.nodeSignal())},isSupported(t){var e;const[n]=t.nodes,r=null!==(e=-1!==n[this.attrName])&&void 0!==e?e:-1;return!(!n.dataset.hasOwnProperty(this.attrName)&&!r)&&(this.initial=this.getInitial(t),Boolean(this.initial))},getInitial(t){const[e]=t.nodes;return e.dataset[this.attrName]||e[this.attrName]||!1},setInput(t){this.input=t}};const e=t;function n(){e.call(this),this.attrName="max_files",this.isSupported=function(t){const[e]=t.nodes;return"file"===e.type},this.setInput=function(t){e.prototype.setInput.call(this,t);const{max_files:n=1}=JSON.parse(t.previewsContainer.dataset.args);this.initial=+n},this.addWatcherAttr=()=>{}}n.prototype=Object.create(e.prototype);const r=n;function o(){r.call(this),this.attrName="max_size",this.setInput=function(t){r.prototype.setInput.call(this,t);const{max_size:e=1}=JSON.parse(t.previewsContainer.dataset.args);this.initial=+e}}o.prototype=Object.create(r.prototype);const i=o;function s(){e.call(this),this.attrName="remaining",this.isSupported=function(t){return t.attrs.hasOwnProperty("maxLength")},this.setInput=function(t){var n;e.prototype.setInput.call(this,t);const{maxLength:r}=t.attrs,o=null!==(n=t.value.current?.length)&&void 0!==n?n:0;this.initial=r.value.current-o},this.addWatcherAttr=()=>{},this.observe=function(){e.prototype.observe.call(this),this.input.value.watch(()=>this.updateAttr()),this.input.attrs.maxLength.value.watch(()=>this.updateAttr())},this.updateAttr=function(){var t;const{maxLength:e}=this.input.attrs,n=null!==(t=this.input.value.current?.length)&&void 0!==t?t:0;this.value.current=e.value.current-n}}s.prototype=Object.create(e.prototype);const u=s;function a(){r.call(this),this.attrName="file_ext",this.isSupported=function(t){const[e]=t.nodes;return"file"===e.type&&Boolean(e.accept)},this.setInput=function(t){r.prototype.setInput.call(this,t);const[e]=t.nodes;this.initial=e.accept.split(",")},this.addWatcherAttr=function(){const[t]=this.input.nodes;this.value.watch(()=>{t.accept=this.value.current.join(",")})}}a.prototype=Object.create(r.prototype);const c=a,l=navigator.userAgent,h={safari:/^((?!chrome|android).)*safari/i.test(l)||/constructor/i.test(window.HTMLElement)||"[object SafariRemoteNotification]"===(!window.safari||"undefined"!=typeof safari&&window.safari.pushNotification).toString()},{applyFilters:p}=JetPlugins.hooks;async function f(t){const e=await Promise.allSettled(t.map(t=>new Promise(t)));return window?.JetFormBuilderSettings?.devmode&&(console.group("allRejected"),console.info(...e),console.groupEnd()),e.filter(t=>"rejected"===t.status).map(({reason:t,value:e})=>t?.length?t[0]:null!=t?t:e)}let d=[];function m(t){const n=new e;return n.attrName=t,n}function g(t){for(const e of(d.length||(d=p("jet.fb.input.html.attrs",["min","max","minLength","maxLength",r,i,u,c])),[...d])){let n;n="string"==typeof e?m(e):new e,n.isSupported(t)&&(t.attrs[n.attrName]=n,n.setInput(t),n.observe())}}function y(t){return"boolean"==typeof t?!t:null==t||("object"!=typeof t||Array.isArray(t)?"number"==typeof t?0===t:!t?.length:!Object.keys(t)?.length)}function b(t){return t?.isConnected&&null!==t?.offsetParent}function v(t){var e;const n=t.getBoundingClientRect(),r=S(t);return n?.top+(null!==(e=r?.scrollY)&&void 0!==e?e:0)}const w=t=>t.scrollHeight>t.clientHeight&&t;function S(t){let e=t.closest(".jet-popup__container-inner");return e?w(e):(e=t.closest(".elementor-popup-modal .dialog-message"),e?w(e):window)}function j(t){for(const e of t)if(!e.reporting.validityState.current){!e.reporting.hasAutoScroll()&&e.onFocus();break}}function N(t=null){this.current=t,this.signals=[],this.sanitizers=[],this.isDebug=!1,this.isSilence=!1,this.isMaked=!1}N.prototype={watchOnce(t){if("function"!=typeof t)return;const e=this.watch(()=>{e(),t()})},watch(t){if("function"!=typeof t)return!1;if(this.signals.some(({signal:e})=>e===t))return!0;this.signals.push({signal:t,trace:(new Error).stack});const e=this.signals.length-1;return()=>this.signals.splice(e,1)},sanitize(t){if("function"!=typeof t)return!1;if(-1!==this.sanitizers.indexOf(t))return!0;this.sanitizers.push(t);const e=this.sanitizers.length-1;return()=>this.sanitizers.splice(e,1)},make(){if(this.isMaked)return;this.isMaked=!0;let t=this.current,e=null;const n=this;Object.defineProperty(this,"current",{get:()=>t,set(r){t!==r&&(e=t,n.isDebug&&(console.group("ReactiveVar has changed"),console.log("current:",t),console.log("newVal:",r),console.groupEnd()),t=n.applySanitizers(r),n.isSilence||n.notify(e))}})},notify(t=null){this.signals.forEach(({signal:e})=>e.call(this,t))},applySanitizers(t){for(const e of this.sanitizers)t=e.call(this,t);return t},setIfEmpty(t){y(this.current)&&(this.current=t)},debug(){this.isDebug=!this.isDebug},silence(){this.isSilence=!this.isSilence}};const _=N;function I(){_.call(this,!1),this.start=function(){this.current=!0},this.end=function(){this.current=!1},this.toggle=function(){this.current=!this.current}}I.prototype=Object.create(_.prototype);const F=I;function O(){this.handlers=[]}O.prototype={addFilter(t){this.handlers.push(t);const e=this.handlers.length-1;return()=>this.handlers.splice(e,1)},applyFilters(...t){let e=t[0];const n=t.slice(1);for(const t of this.handlers)e=t(e,...n);return e}};const k=O,{strict_mode:C=!1}=window?.JetFormBuilderSettings,R=Boolean(C);function E(){this.input=null,this.lock=new _,this.lock.make(),this.triggerjQuery=!R}E.prototype={input:null,lock:null,isSupported:(t,e)=>!1,setInput(t){this.input=t},run(t){if(!this.lock.current)return this.runSignal(t),void this.unlockTrigger();this.lock.signals.length||this.lock.watchOnce(()=>this.runSignal(t))},triggerJQuery(t){this.triggerjQuery&&jQuery(t).trigger("change")},runSignal(t){},lockTrigger(){this.triggerjQuery=!1},unlockTrigger(){R||(this.triggerjQuery=!0)}};const P=E;function T(t){return"hidden"===t.type}function M(t){return"range"===t.type}function x(){P.call(this)}x.prototype=Object.create(P.prototype),x.prototype.isSupported=function(t,e){return T(t)&&e.isArray()},x.prototype.runSignal=function(){const{current:t}=this.input.value;if(!t?.length){for(const t of this.input.nodes)t.remove();return void this.input.nodes.splice(0,this.input.nodes.length)}const e=[];for(const n of t){if(this.input.nodes.some((t,r)=>t.value===n&&(e.push(r),!0)))continue;const t=document.createElement("input");t.type="hidden",t.value=n,t.name=this.input.rawName,this.input.nodes.push(t),e.push(this.input.nodes.length-1),this.input.comment.parentElement.insertBefore(t,this.input.comment.nextElementSibling)}this.input.nodes=this.input.nodes.filter((t,n)=>!!e.includes(n)||(t.remove(),!1))};const B=x;function D(){P.call(this),this.isSupported=function(t){return M(t)},this.runSignal=function(){const[t]=this.input.nodes;t.value=this.input.value.current,this.input.numberNode.textContent=t.value,this.triggerJQuery(t)}}D.prototype=Object.create(P.prototype);const A=D;function V(){B.call(this),this.isSupported=function(t){return"_jfb_current_render_states[]"===t.name},this.runSignal=function(t){B.prototype.runSignal.call(this,t);const e=new URL(window.location),n=this.input.getSubmit().getFormId(),r=this.input.value.current||[],o=`jfb[${n}][state]`,i=[];for(const t of r)this.input.isCustom(t)&&i.push(t);if(!i.length){if(!e.searchParams.has(o))return;return e.searchParams.delete(o),void window.history.pushState({},"",e.toString())}const s=i.join(",");e.searchParams.get(o)!==s&&(e.searchParams.set(o,s),window.history.pushState({},"",e.toString()))}}V.prototype=Object.create(B.prototype);const L=V,{applyFilters:J}=JetPlugins.hooks;let H=[];function Q(t){Error.call(this,t),Error.captureStackTrace?Error.captureStackTrace(this,Q):this.stack=(new Error).stack}Q.prototype=Object.create(Error.prototype);const q=Q;function Y(){this.input=null,this.isRequired=!1,this.errors=null,this.restrictions=[],this.valuePrev=null,this.validityState=null,this.promisesCount=0}Y.prototype={restrictions:[],valuePrev:null,validityState:null,promisesCount:0,validateOnChange(){},validateOnBlur(){},async validate(t=null){const e=await this.getErrors(t);if(this.validityState.current=!Boolean(e.length),!e.length)return this.clearReport(),!0;throw!this.input.root.getContext().silence&&this.report(e),new q(e[0].name)},async getErrorsRaw(t){throw new Error("getError must return a Promise")},async getErrors(t=null){if(this.input.loading.current||this.input?.callable?.lock?.current||!this.input.isVisible())return[];const e=this.getPromises(t);var n;return this.hasChangedValue()||this.promisesCount!==e.length||this.input.stopValidation||"hr-select-level"===this.input.inputType?(this.promisesCount=e.length,this.errors=[],e.length?(this.errors=await this.getErrorsRaw(e,t),this.errors):this.errors):null!==(n=this.errors)&&void 0!==n?n:[]},report(t){this.input.getContext().reportedFirst?this.reportRaw(t):(this.input.getContext().reportFirst(),this.reportFirst(t))},reportRaw(t){throw new Error("report is empty")},reportFirst(t){this.report(t)},clearReport(){throw new Error("clearReport is empty")},getPromises(t=null){const e=[];for(const n of this.restrictions)this.canProcessRestriction(n)&&(this.beforeProcessRestriction(n),e.push((e,r)=>{n.validatePromise(t).then(()=>e(n)).catch(t=>r([n,t]))}));return e},canProcessRestriction:t=>!0,beforeProcessRestriction(t){},isSupported(t,e){throw new Error("isSupported is empty")},setInput(t){this.validityState=new _,this.validityState.make(),this.input=t,this.setRestrictions(),this.filterRestrictions()},setRestrictions(){},getNode(){return this.input.nodes[0]},hasChangedValue(){return this.valuePrev!==this.input.getValue()},checkValidity(){const t=this.input.getContext().silence;return null===this.validityState.current?this.validateOnChangeState():this.validityState.current?Promise.resolve():(t||!t&&this.report(this.errors||[]),Promise.reject())},hasAutoScroll:()=>!1,filterRestrictions(){const t={};for(let[e,n]of Object.entries(this.restrictions))e=n.getType()?n.getType():e,t[e]=n;this.restrictions=Object.values(t)}};const $=Y;function W(){$.call(this),this.isSupported=function(){return!0},this.reportRaw=function(){},this.reportFirst=function(){this.getNode().reportValidity()},this.setRestrictions=function(){const[t]=this.input.nodes;!function(t,e){for(const n of(ot.length||(ot=rt()),[...ot])){const r=new n;r.isSupported(e,t)&&t.restrictions.push(r)}t.restrictions.forEach(e=>e.setReporting(t))}(this,t)},this.clearReport=function(){},this.validateOnChange=function(){this.validate().then(()=>{}).catch(()=>{})},this.getErrorsRaw=async function(t){const e=await f(t);return this.valuePrev=this.input.getValue(),e},this.validateOnChangeState=function(){return this.validate()},this.hasAutoScroll=function(){return this.input.hasAutoScroll()},this.getNode=function(){return this.input.getReportingNode()}}W.prototype=Object.create($.prototype);const z=W;function K(){this.reporting=null,this.type=""}K.prototype={isSupported:(t,e)=>!0,getType(){return this.type},setReporting(t){this.reporting=t},getValue(){return this.reporting.input.value.current},validate(){throw new Error("validate is wrong")},async validatePromise(){let t;try{t=await this.validate()}catch(t){var e;return Promise.reject(null!==(e=t?.message)&&void 0!==e?e:t)}return t?Promise.resolve():Promise.reject("validate is wrong")},onReady(){}};const U=K;function G(){U.call(this),this.isSupported=function(t){return!!t.checkValidity},this.validate=function(){const{nodes:t}=this.reporting.input;for(const e of t)if(e.checkValidity())return!0;return!1}}G.prototype=Object.create(U.prototype);const X=G;function Z(){U.call(this),this.type="required"}Z.prototype=Object.create(U.prototype),Z.prototype.isSupported=function(t,e){return e.input.isRequired},Z.prototype.validate=function(){const{current:t}=this.reporting.input.value;return!y(t)};const tt=Z,{applyFilters:et}=JetPlugins.hooks;let nt=[];const rt=()=>et("jet.fb.restrictions.default",[X,tt]);let ot=[];function it(t,e=!1){const n=[];t?.[0]?.getContext()?.reset({silence:e});for(const e of t){if(!(e instanceof ct))throw new Error("Input is not instance of InputData");n.push((t,n)=>{e.reporting.validateOnChangeState().then(t).catch(n)})}return n}function st(t,e=!1){return f(it(t,e))}const{doAction:ut}=JetPlugins.hooks;function at(){this.rawName="",this.name="",this.comment=!1,this.nodes=[],this.attrs={},this.enterKey=null,this.inputType=null,this.offsetOnFocus=75,this.path=[],this.value=this.getReactive(),this.value.watch(this.onChange.bind(this)),this.isRequired=!1,this.calcValue=null,this.reporting=null,this.checker=null,this.root=null,this.loading=new F(!1),this.loading.make(),this.isResetCalcValue=!0,this.validateTimer=!1,this.stopValidation=!1,this.abortController=null}at.prototype.attrs={},at.prototype.isSupported=function(t){return!1},at.prototype.addListeners=function(){const[t]=this.nodes;t.addEventListener("input",t=>{this.value.current=t.target.value}),t.addEventListener("blur",()=>{}),t.addEventListener("input",()=>{this.reporting&&"function"==typeof this.reporting.switchButtonsState&&this.reporting.switchButtonsState(!0),this.debouncedReport()}),!R&&jQuery(t).on("change",t=>{this.value.current!=t.target.value&&(this.callable.lockTrigger(),this.value.current=t.target.value,this.callable.unlockTrigger())}),"input"===this.inputType&&(this.enterKey=new k,t.addEventListener("keydown",this.handleEnterKey.bind(this)))},at.prototype.makeReactive=function(){this.onObserve(),this.addListeners(),this.setValue(),this.initNotifyValue(),this.value.make(),ut("jet.fb.input.makeReactive",this)},at.prototype.onChange=function(t){this.isResetCalcValue&&(this.calcValue=this.value.current),this?.callable?.run(t),this.report()},at.prototype.report=function(){this.reporting.validateOnChange()},at.prototype.reportOnBlur=function(t=null){this.reporting.validateOnBlur(t)},at.prototype.debouncedReport=function(){this.validateTimer&&(this.stopValidation=!0,clearTimeout(this.validateTimer),this.abortController&&this.abortController.abort()),this.abortController=new AbortController;let t=this.abortController.signal;this.validateTimer=setTimeout(()=>{this.reportOnBlur(t)},450)},at.prototype.watch=function(t){return this.value.watch(t)},at.prototype.watchValidity=function(t){return this.reporting.validityState.watch(t)},at.prototype.sanitize=function(t){return this.value.sanitize(t)},at.prototype.merge=function(t){this.nodes=[...t.getNode()]},at.prototype.setValue=function(){let t;t=this.isArray()?Array.from(this.nodes).map(({value:t})=>t):this.nodes[0]?.value,this.calcValue=t,this.value.current=t},at.prototype.setNode=function(t){var e;this.nodes=[t],this.rawName=null!==(e=t.name)&&void 0!==e?e:"",this.name=_t(this.rawName),this.inputType=t.nodeName.toLowerCase()},at.prototype.onObserve=function(){const[t]=this.nodes;t.jfbSync=this,this.isRequired=this.checkIsRequired(),this.callable=function(t,e){for(const n of(H.length||(H=J("jet.fb.signals",[A,L,B])),[...H])){const r=new n;if(r.isSupported(t,e))return r}return null}(t,this),this.callable.setInput(this),this.reporting=function(t){for(const e of(nt.length||(nt=et("jet.fb.reporting",[z])),[...nt])){const n=new e;if(n.isSupported(t.nodes[0],t))return n.setInput(t),n}throw new Error("Something went wrong")}(this),this.loading.watch(()=>this.onChangeLoading()),this.path=[...this.getParentPath(),this.name],this.getSubmit().submitter.hasOwnProperty("status")&&!this.hasParent()&&this.getSubmit().submitter.watchReset(()=>this.onClear())},at.prototype.onChangeLoading=function(){this.getSubmit().lockState.current=this.loading.current;const[t]=this.nodes;t.closest(".jet-form-builder-row").classList.toggle("is-loading",this.loading.current)},at.prototype.setRoot=function(t){this.root=t},at.prototype.onRemove=function(){},at.prototype.getName=function(){return this.name},at.prototype.getValue=function(){return this.value.current},at.prototype.getNode=function(){return this.nodes},at.prototype.isArray=function(){return this.rawName.includes("[]")},at.prototype.beforeSubmit=function(t,e=!1){this.getSubmit().submitter.promise(t,e)},at.prototype.getSubmit=function(){return this.getRoot().form},at.prototype.getRoot=function(){return this.root?.parent?this.root.parent.getRoot():this.root},at.prototype.isVisible=function(){return b(this.getWrapperNode())},at.prototype.onClear=function(){this.silenceSet(null)},at.prototype.getReactive=function(){return new _},at.prototype.checkIsRequired=function(){var t;const[e]=this.nodes;return null!==(t=e.required)&&void 0!==t?t:!!e.dataset.required?.length},at.prototype.silenceSet=function(t){const e=this.report.bind(this);this.report=()=>{},this.value.current=t,this.report=e},at.prototype.silenceNotify=function(){const t=this.report.bind(this);this.report=()=>{},this.value.notify(),this.report=t},at.prototype.hasParent=function(){return!!this.root?.parent},at.prototype.getWrapperNode=function(){return this.nodes[0].closest(".jet-form-builder-row")},at.prototype.handleEnterKey=function(t){"Enter"!==t.key||!this.enterKey||t.shiftKey||t.isComposing||(t.preventDefault(),this.onEnterKey())},at.prototype.onEnterKey=function(){this.enterKey.applyFilters(!0)&&!0===this.getSubmit().canTriggerEnterSubmit&&this.getSubmit().submit()},at.prototype.initNotifyValue=function(){this.silenceNotify()},at.prototype.onFocus=function(){this.scrollTo(),this.focusRaw()},at.prototype.focusRaw=function(){const[t]=this.nodes;["date","time","datetime-local"].includes(t.type)||t?.focus({preventScroll:!0})},at.prototype.scrollTo=function(){const t=this.getWrapperNode();window.scrollTo({top:v(t)-this.offsetOnFocus,behavior:"smooth"})},at.prototype.getContext=function(){return this.root.getContext()},at.prototype.populateInner=function(){return!1},at.prototype.hasAutoScroll=function(){return!0},at.prototype.getReportingNode=function(){return this.nodes[0]},at.prototype.getParentPath=function(){if(!this.root?.parent)return[];const t=this.root.parent.value.current;if("object"!=typeof t)return[];for(const[e,n]of Object.entries(t))if(n===this.root)return[...this.root.parent.getParentPath(),this.root.parent.name,e];return[]},at.prototype.reQueryValue=function(){this.setValue(),this.initNotifyValue()},at.prototype.revertValue=function(t){this.value.current=t},at.prototype.reCalculateFormula=function(){this.setValue(),this.initNotifyValue()};const ct=at;function lt(){ct.call(this),this.isSupported=function(t){return function(t){return["select-one","range"].includes(t.type)}(t)},this.addListeners=function(){const[t]=this.nodes;t.addEventListener("change",t=>{this.value.current=t.target.value}),!R&&jQuery(t).on("change",t=>{this.value.current!=t.target.value&&(this.callable.lockTrigger(),this.value.current=t.target.value,this.callable.unlockTrigger())}),this.enterKey=new k,t.addEventListener("keydown",this.handleEnterKey.bind(this))},this.onClear=function(){this.silenceSet("")}}lt.prototype=Object.create(ct.prototype);const ht=lt;function pt(){ct.call(this),this.numberNode=null,this.isSupported=function(t){return M(t)},this.setNode=function(t){ct.prototype.setNode.call(this,t),this.numberNode=t.parentElement.querySelector(".jet-form-builder__field-value-number")}}pt.prototype=Object.create(ct.prototype);const ft=pt;function dt(){ct.call(this),this.comment=null,this.isSupported=function(t){return T(t)},this.addListeners=function(){},this.onObserve=function(){ct.prototype.onObserve.call(this),this.isArray()&&this.setComment()},this.setComment=function(){this.comment=document.createComment(this.name);const[t]=this.nodes;t.parentElement.insertBefore(this.comment,t)},this.isVisible=function(){return!1},this.merge=function(t){this.nodes.push(...t.getNode())}}dt.prototype=Object.create(ct.prototype);const mt=dt;function gt(t){_.call(this,t)}gt.prototype=Object.create(_.prototype),gt.prototype.add=function(t){var e;this.current=[...new Set([...null!==(e=this.current)&&void 0!==e?e:[],t])]},gt.prototype.remove=function(t){this.current=this.current.filter(e=>e!==t)},gt.prototype.toggle=function(t,e=null){null===e?this.current.includes(t)?this.remove(t):this.add(t):e?this.add(t):this.remove(t)};const yt=gt,{builtInStates:bt}=window.JetFormBuilderSettings;function vt(){mt.call(this),this.isSupported=function(t){return"hidden"===t?.type&&"_jfb_current_render_states[]"===t.name},this.add=function(t){this.value.add(t)},this.remove=function(t){this.value.remove(t)},this.toggle=function(t,e=null){this.value.toggle(t,e)},this.isCustom=function(t){return!bt.includes(t)}}vt.prototype=Object.create(mt.prototype),vt.prototype.getReactive=function(){return new yt};const wt=vt,{applyFilters:St,doAction:jt}=JetPlugins.hooks;let Nt=[];function _t(t){const e=[/^([\w\-]+)\[\]$/,/^[\w\-]+\[\d+\]\[([\w\-]+)\]\[?\]?$/];for(const n of e)if(n.test(t))return t.match(n)[1];return t}function It(t){const e=[];for(const n of t){const t=n.populateInner();t?.length&&e.push(...t),e.push(n)}return e}function Ft(t){this.form=t,this.lastResponse={},this.promises=[]}Ft.prototype.submit=function(){throw new Error("You need to replace this callback")},Ft.prototype.getPromises=function(){return this.promises.map(({callable:t})=>new Promise(t))},Ft.prototype.promise=function(t,e=!1){const n=e?e.path.join("."):"";this.promises=this.promises.filter(({idPath:t})=>!t||t!==n),this.promises.push({callable:t,idPath:e?e.path.join("."):""})};const Ot=Ft;function kt(t){return"success"===t||t?.includes("dsuccess|")}function Ct(t){Ot.call(this,t),this.status=new _,this.status.make(),this.submit=function(){const t=jQuery(this.form.observable.rootNode),{applyFilters:e}=JetPlugins.hooks;Promise.all(e("jet.fb.submit.ajax.promises",this.getPromises(),t)).then(t=>this.runSubmit(t)).catch(()=>this.form.toggle())},this.runSubmit=function(t){const{rootNode:e}=this.form.observable,n=new FormData(e);n.append("_jet_engine_booking_form_id",this.form.getFormId()),this.status.silence(),this.status.current=null,this.status.silence(),jQuery.ajax({url:JetFormBuilderSettings.ajaxurl,type:"POST",dataType:"json",data:n,cache:!1,contentType:!1,processData:!1}).done(n=>{this.onSuccess(n);const r=jQuery(e);t.forEach(t=>{"function"==typeof t&&t.call(r,n)})}).fail(this.onFail.bind(this))},this.onSuccess=function(t){this.form.toggle();const{rootNode:e}=this.form.observable;this.lastResponse=t;const n=jQuery(e),r=t?._jfb_csrf_token;r&&this.refreshCsrfToken(r),"success"===t.status?jQuery(document).trigger("jet-form-builder/ajax/on-success",[t,n]):jQuery(document).trigger("jet-form-builder/ajax/processing-error",[t,n]),this.status.current=t.status,t.redirect?t.open_in_new_tab?window.open(t.redirect,"_blank"):window.location=t.redirect:t.reload&&window.location.reload(),this.insertMessage(t.message)},this.onFail=function(t,e,n){this.form.toggle(),this.status.current=!1;const{rootNode:r}=this.form.observable,o=jQuery(r);jQuery(document).trigger("jet-form-builder/ajax/on-fail",[t,e,n,o]),console.error(t.responseText,n)},this.insertMessage=function(t){const{rootNode:e}=this.form.observable,n=document.createElement("div");n.classList.add("jet-form-builder-messages-wrap"),n.innerHTML=t,e.appendChild(n)},this.refreshCsrfToken=function(t){const e=this.form.getFormId(),n=document.querySelectorAll("form.jet-form-builder[data-form-id]");for(const r of n){if(+r.dataset.formId!==e)continue;const n=r.querySelectorAll('input[name="_jfb_csrf_token"]');for(const e of n)e.value=t}}}Ct.prototype=Object.create(Ot.prototype),Ct.prototype.status=null,Ct.prototype.watchReset=function(t){const{rootNode:e}=this.form.observable;e.dataset?.clear&&this.watchSuccess(t)},Ct.prototype.watchSuccess=function(t){const e=this.status;e.watch(()=>{kt(e.current)&&t()})},Ct.prototype.watchFail=function(t){const e=this.status;e.watch(()=>{kt(e.current)||t()})};const Rt=Ct;function Et(t){Ot.call(this,t),this.failPromises=[],this.submit=function(){const{rootNode:t}=this.form.observable,{applyFilters:e}=JetPlugins.hooks;Promise.all(e("jet.fb.submit.reload.promises",this.getPromises(),{target:t})).then(()=>t.submit()).catch(()=>{this.failPromises.forEach(t=>t()),this.form.toggle()})},this.onFailSubmit=function(t){"function"==typeof t&&this.failPromises.push(t)}}Et.prototype=Object.create(Ot.prototype);const Pt=Et,Tt=function(t){this.observable=t,this.lockState=new F(!1),this.lockState.make(),this.autoFocus=window.JetFormBuilderSettings?.auto_focus,this.canSubmitForm=!0,this.canTriggerEnterSubmit=!0,this.onSubmit=function(t){t.preventDefault(),this.submit()},this.submit=function(){!0===this.canSubmitForm&&(this.canSubmitForm=!1,this.canTriggerEnterSubmit=!1,this.observable.inputsAreValid().then(()=>{this.clearErrors(),this.toggle(),this.submitter.submit()}).catch(()=>{this.autoFocus&&j(It(this.observable.getInputs()))}).finally(()=>{this.canTriggerEnterSubmit=!0,this.canSubmitForm=!0}))},this.clearErrors=function(){const t=this.observable.rootNode.querySelectorAll(".jet-form-builder-messages-wrap");for(const e of t)e.remove()},this.toggle=function(){this.lockState.toggle(),this.toggleLoading()},this.handleButtons=function(){const t=this.observable.rootNode.querySelectorAll(".jet-form-builder__submit");this.lockState.watch(()=>{for(const e of t)e.disabled=this.lockState.current;!1===this.lockState.current&&(this.canSubmitForm=!0)})},this.toggleLoading=function(){this.observable.rootNode.classList.toggle("is-loading")},this.createSubmitter=function(){const{classList:t}=this.observable.rootNode;return t.contains("submit-type-ajax")?new Rt(this):new Pt(this)},this.getFormId=function(){const{rootNode:t}=this.observable;return+t.dataset.formId},this.onEndSubmit=function(t){this.submitter.hasOwnProperty("status")?this.submitter.status.watch(t):this.submitter.onFailSubmit(t)},this.observable.rootNode.addEventListener("submit",t=>this.onSubmit(t)),this.submitter=this.createSubmitter(),this.handleButtons()},Mt=function(t,e){const{replaceAttrs:n=[]}=window.JetFormBuilderSettings,r=[];for(let t=0;tNodeFilter.FILTER_ACCEPT){const n=document.createNodeIterator(t,NodeFilter.SHOW_COMMENT,{acceptNode:e});let r;for(;r=n.nextNode();)r.nodeValue=r.nodeValue.trim(),yield r},Bt=function*(t){yield*xt(t,t=>!t.jfbObserved&&t.textContent.includes("JFB_FIELD::"))},Dt=function(t,e,n={}){if(null===e||!e?.length)return t;let r=Boolean(n?.rawRepeaterValue);for(const o of e){const e=r&&!1===o?.isCoreFilter;t=o.applyWithProps(e?n.rawRepeaterValue:t),r=!1}return t};function At(){this.props=[]}At.prototype.getSlug=function(){throw new Error("getSlug is empty")},At.prototype.setProps=function(t){this.props.push(...t)},At.prototype.applyWithProps=function(t){return this.apply(t,...this.props)},At.prototype.apply=function(t,...e){return t};const Vt=At;function Lt(){Vt.call(this),this.getSlug=function(){return"length"},this.apply=function(t){var e;return null!==(e=t?.length)&&void 0!==e?e:0}}Lt.prototype=Object.create(Vt.prototype);const Jt=Lt;function Ht(){Vt.call(this),this.getSlug=function(){return"ifEmpty"},this.apply=function(t,e){return y(t)||Number.isNaN(t)?e:t}}Ht.prototype=Object.create(Vt.prototype);const Qt=Ht;function qt(t,e){return(t=""+t).length>=e?t:new Array(e-t.length).fill(0)+t}function Yt(t,e=!0){const n=e?t.getUTCMonth():t.getMonth(),r=e?t.getUTCDate():t.getDate();return[e?t.getUTCFullYear():t.getFullYear(),qt(n+1,2),qt(r,2)].join("-")}function $t(t,e=!0){const n=e?t.getUTCHours():t.getHours(),r=e?t.getUTCMinutes():t.getMinutes();return[qt(n,2),qt(r,2)].join(":")}function Wt(t,e=!1){return Yt(t,e)+"T"+$t(t,e)}function zt(t){if(!Number.isNaN(+t))return{time:+t,type:"number"};if((t=t.toString()).split("-").length>1)return{time:new Date(t).getTime(),type:"date"};const e=t.split(":"),n=[Date.prototype.setHours,Date.prototype.setMinutes,Date.prototype.setSeconds],r=new Date;for(const t in e)e.hasOwnProperty(t)&&n.hasOwnProperty(t)&&n[t].call(r,e[t]);return{time:r.getTime(),type:"time"}}function Kt(){Vt.call(this),this.getSlug=function(){return"toDate"},this.apply=function(t,e=!0){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"");e="false"!==t.toLowerCase()}else e=Boolean(e);return Yt(new Date(t),e)}}Kt.prototype=Object.create(Vt.prototype);const Ut=Kt;function Gt(){Vt.call(this),this.getSlug=function(){return"toTime"},this.apply=function(t,e=!0){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"");e="false"!==t.toLowerCase()}else e=Boolean(e);return $t(new Date(t),e)}}Gt.prototype=Object.create(Vt.prototype);const Xt=Gt;function Zt(){Vt.call(this),this.getSlug=function(){return"toDateTime"},this.apply=function(t,e=!1){if("string"==typeof e){const t=e.trim().replace(/^['"]|['"]$/g,"").toLowerCase();e=""!==t&&"false"!==t}else e=Boolean(e);return Wt(new Date(t),e)}}Zt.prototype=Object.create(Vt.prototype);const te=Zt;function ee(){Vt.call(this),this.getSlug=function(){return"addYear"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setFullYear(r.getFullYear()+e))}}ee.prototype=Object.create(Vt.prototype);const ne=ee;function re(){Vt.call(this),this.getSlug=function(){return"addMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(r.getMonth()+e))}}re.prototype=Object.create(Vt.prototype);const oe=re;function ie(){Vt.call(this),this.getSlug=function(){return"addDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(r.getDate()+e))}}ie.prototype=Object.create(Vt.prototype);const se=ie;function ue(){Vt.call(this),this.getSlug=function(){return"addHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setHours(r.getHours()+e))}}ue.prototype=Object.create(Vt.prototype);const ae=ue;function ce(){Vt.call(this),this.getSlug=function(){return"addMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMinutes(r.getMinutes()+e))}}ce.prototype=Object.create(Vt.prototype);const le=ce;function he(){Vt.call(this),this.getSlug=function(){return"T"},this.apply=function(t){if(!t)return 0;const{time:e}=zt(t);return e}}he.prototype=Object.create(Vt.prototype);const pe=he;function fe(){Vt.call(this),this.getSlug=function(){return"setHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?t:(e=e?+e.trim():0,r.setHours(e))}}fe.prototype=Object.create(Vt.prototype);const de=fe;function me(){Vt.call(this),this.getSlug=function(){return"setMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?t:(e=e?+e.trim():0,r.setMinutes(e))}}me.prototype=Object.create(Vt.prototype);const ge=me;function ye(){Vt.call(this),this.getSlug=function(){return"setDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(e))}}ye.prototype=Object.create(Vt.prototype);const be=ye;function ve(){Vt.call(this),this.getSlug=function(){return"setYear"},this.apply=function(t,e){if(!(e=!!e&&+e.trim()))return t;const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:r.setFullYear(e)}}ve.prototype=Object.create(Vt.prototype);const we=ve;function Se(){Vt.call(this),this.getSlug=function(){return"setMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(e))}}Se.prototype=Object.create(Vt.prototype);const je=Se;function Ne(){Vt.call(this),this.getSlug=function(){return"subHour"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setHours(r.getHours()-e))}}Ne.prototype=Object.create(Vt.prototype);const _e=Ne;function Ie(){Vt.call(this),this.getSlug=function(){return"subDay"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setDate(r.getDate()-e))}}Ie.prototype=Object.create(Vt.prototype);const Fe=Ie;function Oe(){Vt.call(this),this.getSlug=function(){return"subMin"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMinutes(r.getMinutes()-e))}}Oe.prototype=Object.create(Vt.prototype);const ke=Oe;function Ce(){Vt.call(this),this.getSlug=function(){return"subMonth"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setMonth(r.getMonth()-e))}}Ce.prototype=Object.create(Vt.prototype);const Re=Ce;function Ee(){Vt.call(this),this.getSlug=function(){return"subYear"},this.apply=function(t,e){const{time:n}=zt(t),r=new Date(n);return Number.isNaN(r.getTime())?0:(e=e?+e.trim():1,r.setFullYear(r.getFullYear()-e))}}Ee.prototype=Object.create(Vt.prototype);const Pe=Ee;function Te(){Vt.call(this),this.getSlug=function(){return"toDayInMs"},this.apply=function(t){return 864e5*t}}Te.prototype=Object.create(Vt.prototype);const Me=Te;function xe(){Vt.call(this),this.getSlug=function(){return"toMonthInMs"},this.apply=function(t){return 2592e6*t}}xe.prototype=Object.create(Vt.prototype);const Be=xe;function De(){Vt.call(this),this.getSlug=function(){return"toYearInMs"},this.apply=function(t){return 31536e6*t}}De.prototype=Object.create(Vt.prototype);const Ae=De;function Ve(){Vt.call(this),this.getSlug=function(){return"toHourInMs"},this.apply=function(t){return 36e5*t}}Ve.prototype=Object.create(Vt.prototype);const Le=Ve;function Je(){Vt.call(this),this.getSlug=function(){return"toMinuteInMs"},this.apply=function(t){return 6e4*t}}Je.prototype=Object.create(Vt.prototype);const He=Je;function Qe(){Vt.call(this),this.getSlug=function(){return"toWeekInMs"},this.apply=function(t){return 6048e5*t}}Qe.prototype=Object.create(Vt.prototype);const qe=Qe,{applyFilters:Ye}=JetPlugins.hooks;let $e=[];const We=[we,je,be,de,ge,Pe,Re,Fe,_e,ke,ne,oe,se,ae,le,Jt,Qt,Ut,Xt,te,pe,Me,Be,Ae,Le,He,qe];let ze=[];function Ke(t,e=""){let n;$e.length||($e=Ye("jet.fb.filters",[...We]));for(let e of $e){const r=e;if(e=new r,t===e.getSlug()){e.isCoreFilter=We.includes(r),n=e;break}}n&&(e=e.split(",").map(t=>t.trim()),n.setProps(e),ze.push(n))}const Ue=function(t){if(null===t||!t?.length)return null;for(const e of t){const t=e.match(/^(\w+)\(([^()]+)\)/);null!==t?Ke(t[1],t[2]):Ke(e)}const e=[...ze];return ze=[],e};function Ge(){}Ge.prototype={getId(){throw new Error("You need to rewrite this method")},getResult(){throw new Error("You need to rewrite this method")}};const Xe=Ge;function Ze(){Xe.call(this),this.getId=()=>"CurrentDate",this.getResult=()=>(new Date).getTime()}Ze.prototype=Object.create(Xe.prototype);const tn=Ze,en={Milli_In_Sec:1e3,Sec_In_Min:60,Min_In_Hour:60,Hour_In_Day:24,Day_In_Month:30,Year_In_Day:365,Kb_In_Bytes:1024};en.Min_In_Sec=en.Sec_In_Min*en.Milli_In_Sec,en.Hour_In_Sec=en.Min_In_Hour*en.Min_In_Sec,en.Day_In_Sec=en.Hour_In_Day*en.Hour_In_Sec,en.Month_In_Sec=en.Day_In_Month*en.Day_In_Sec,en.Year_In_Sec=en.Year_In_Day*en.Day_In_Sec,en.Mb_In_Bytes=1024*en.Kb_In_Bytes,en.Gb_In_Bytes=1024*en.Mb_In_Bytes,en.Tb_In_Bytes=1024*en.Gb_In_Bytes;const nn=en;function rn(){Xe.call(this),this.getId=()=>"Min_In_Sec",this.getResult=()=>nn.Min_In_Sec}rn.prototype=Object.create(Xe.prototype);const on=rn;function sn(){Xe.call(this),this.getId=()=>"Month_In_Sec",this.getResult=()=>nn.Month_In_Sec}sn.prototype=Object.create(Xe.prototype);const un=sn;function an(){Xe.call(this),this.getId=()=>"Hour_In_Sec",this.getResult=()=>nn.Hour_In_Sec}an.prototype=Object.create(Xe.prototype);const cn=an;function ln(){Xe.call(this),this.getId=()=>"Day_In_Sec",this.getResult=()=>nn.Day_In_Sec}ln.prototype=Object.create(Xe.prototype);const hn=ln;function pn(){Xe.call(this),this.getId=()=>"Year_In_Sec",this.getResult=()=>nn.Year_In_Sec}pn.prototype=Object.create(Xe.prototype);const fn=pn,{applyFilters:dn}=JetPlugins.hooks;let mn=[];const gn=window.wp.i18n,{applyFilters:yn,addFilter:bn}=JetPlugins.hooks;function vn(t){if(!t)return"";if("SELECT"===t.tagName)return Array.from(t.selectedOptions||[]).map(t=>String(t.label||t.textContent||t.value||"").trim()).filter(Boolean).join(", ");if(("checkbox"===t.type||"radio"===t.type)&&!t.checked)return"";if("checkbox"===t.type||"radio"===t.type){const e=t.closest("label");if(!e)return"";const n=e.querySelector("span");return String(n?.textContent||e.textContent||t.value||"").trim()}return""}function wn(t,e={}){var n;this.parts=[],this.related=[],this.relatedAttrs=[],this.regexp=/%([\w\-].*?\S?)%/g,this.watchers=[];const{forceFunction:r=!1}=e;this.forceFunction=r,t instanceof ct&&(this.input=t),this.root=null!==(n=this.input?.root)&&void 0!==n?n:t}bn("jet.fb.custom.formula.macro","jet-form-builder",function(t,e){if(!e.includes("CT::"))return t;const n=function(t){mn.length||(mn=dn("jet.fb.static.functions",[tn,on,un,cn,hn,fn]));for(const e of mn){const n=new e;if(n.getId()===t)return n}return!1}(e=e.replace("CT::",""));return!1===n?t:n.getResult()}),wn.prototype={formula:null,parts:[],related:[],relatedAttrs:[],input:null,root:null,regexp:null,forceFunction:!1,setResult:()=>{throw new Error("CalculatedFormula.setResult is not set!")},relatedCallback:t=>t.value.current,relatedLabelCallback:t=>function(t){const e=Array.from(t.nodes||[]).map(vn).filter(Boolean);return e.length?e.join(", "):t.value.current}(t),observe(t){this.formula=t,Array.isArray(t)?t.forEach(t=>{this.observeItem(t)}):this.observeItem(t)},observeItem(t){let e,n=0;for(t+="";null!==(e=this.regexp.exec(t));){const r=this.observeMacro(e[1]);0!==e.index&&this.parts.push(t.slice(n,e.index)),n=e.index+e[0].length,!1===r?this.onMissingPart(e[0]):this.parts.push(r)}n!==t.length&&(this.parts.push(t.slice(n)),1===this.parts.length&&(this.parts=[]))},onMissingPart(t){this.parts.push(t)},isFieldNodeExists(t){if(void 0===this.root.dataInputs[t])return!1;let e=this.root.rootNode[t]||this.root.rootNode[t+"[]"]||this.root.rootNode.querySelectorAll('[data-field-name="'+t+'"]');if(e&&0===e.length&&(e=void 0),void 0===e){const n=t.replace(/([\\^$*+?.()|{}\[\]])/g,"\\$1"),r=`[name$="[${n}]"],[name$="[${n}][]"],[name*="[${n}]["]`,o=this.root.rootNode.querySelectorAll(r);o&&o.length&&(e=o)}return e=yn("jet.fb.formula.node.exists",e,t,this),e},observeMacro(t){null===this.formula&&(this.formula=t);const[e,...n]=t.split("|"),r=e.match(/[\w\-:]+/g);if(!r)return!1;let[o,...i]=r;if(e.includes("::")){const[t,...n]=e.split("::");this.root.getInput(t)&&(o=t,i=n)}if(void 0===this.isFieldNodeExists(o)){const t=new RegExp(`%${o}%`,"g");let e,n=0,r=this.formula;for(;null!==(e=t.exec(this.formula));){const t=this.formula[e.index-1],r=this.formula[e.index+e[0].length];if("*"===t||"/"===t||"*"===r||"/"===r){n="/"===t||"*"===t&&"*"===r?1:0;break}n=0;break}return r=r.replace(e[0],n),this.formula=r,n}const s="this"!==o?this.root.getInput(o):this.input;if(!s&&!o.includes("::"))return!1;const u=Ue(n);if(o.includes("::")){const t=yn("jet.fb.custom.formula.macro",!1,o,i,this);return!1!==t&&("function"==typeof t?()=>Dt(t(),u):Dt(t,u))}if(this.related.includes(s.name)||(this.related.push(s.name),this.watchers.push(s.watch(()=>this.setResult()))),!i?.length)return()=>Dt(this.relatedCallback(s),u);const[a]=i;if("label"===a)return()=>Dt(this.relatedLabelCallback(s),u);if(!s.attrs.hasOwnProperty(a))return!1;const c=s.attrs[a];return this.relatedAttrs.includes(s.name+a)||(this.relatedAttrs.push(s.name+a),this.watchers.push(c.value.watch(()=>this.setResult()))),()=>Dt(c.value.current,u)},calculateString(){var t;if(!this.parts.length)return this.formula;const{applyFilters:e=!1}=null!==(t=window?.JetFormBuilderMain?.filters)&&void 0!==t?t:{};return this.parts.map(t=>{if("function"!=typeof t)return this.input?.nodes&&!1!==e&&"string"==typeof t?(t=yn("jet.fb.onCalculate.part",t,this),e("forms/calculated-formula-before-value",t,jQuery(this.input.nodes[0]))):t;const n=t();return null===n||""===n||Number.isNaN(n)?this.emptyValue():n}).join("")},emptyValue:()=>"",calculate(){if(!this.parts.length&&!this.forceFunction)return this.formula;const t=function(t){if("string"!=typeof t)return t;let e="",n=!1,r="code",o=0;for(let i=0;i"function"==typeof t&&t()),this.watchers=[],this.relatedAttrs=[],this.related=[]},showError(t){console.group((0,gn.__)("JetFormBuilder: You have invalid calculated formula","jet-form-builder")),this.showErrorDetails(t),console.groupEnd()},showErrorDetails(t){if(console.error((0,gn.sprintf)((0,gn.__)("Initial: %s","jet-form-builder"),this.formula)),console.error((0,gn.sprintf)((0,gn.__)("Computed: %s","jet-form-builder"),t)),!this.input&&!this.root?.parent)return;if(this.input)return void console.error((0,gn.sprintf)((0,gn.__)("Field: %s","jet-form-builder"),this.input.path.join(".")));const e=this.root.parent.findIndex(this.root);console.error((0,gn.sprintf)((0,gn.__)("Scope: %s","jet-form-builder"),[...this.root.parent.path,-1===e?"":e].filter(Boolean).join(".")))}};const Sn=wn,{applyFilters:jn}=JetPlugins.hooks;function Nn(t){if(!t)return"";if("SELECT"===t.tagName)return Array.from(t.selectedOptions||[]).map(t=>String(t.label||t.textContent||t.value||"").trim()).filter(Boolean).join(", ");if(("checkbox"===t.type||"radio"===t.type)&&!t.checked)return"";if("checkbox"===t.type||"radio"===t.type){const e=t.closest("label");if(!e)return"";const n=e.querySelector("span");return String(n?.textContent||e.textContent||t.value||"").trim()}return""}function _n(t,{withPrefix:e=!0,macroHost:n=!1,macroFormat:r="",...o}={}){Sn.call(this,t,o),e&&(this.regexp=/JFB_FIELD::(.+)/gi),this.macroHost=n||!1,this.macroFormat=r||"",this.relatedCallback=function(t){const e=jQuery(t.nodes[0]),n=!!this.macroHost&&jQuery(this.macroHost);let r=jn("jet.fb.macro.field.value",!1,e,n,this.macroFormat);return r=wp?.hooks?.applyFilters?wp.hooks.applyFilters("jet.fb.macro.field.value",r,e,n,this.macroFormat):r,!1!==r?r:"option-label"===this.macroFormat&&function(t){return Array.from(t.nodes||[]).map(Nn).filter(Boolean).join(", ")}(t)||t.value.current}.bind(this),this.onMissingPart=function(){}}_n.prototype=Object.create(Sn.prototype),_n.prototype.observeMacro=function(t){null===this.formula&&(this.formula=t);const[e,...n]=t.split("|"),r=e.match(/[\w\-:]+/g);if(!r)return!1;const[o,...i]=r;if(void 0===this.isFieldNodeExists(o))return!1;const s="this"!==o?this.root.getInput(o):this.input;if(!s&&!o.includes("::"))return!1;const u=Ue(n);if(o.includes("::"))return Sn.prototype.observeMacro.call(this,t);if(this.related.includes(s.name)||(this.related.push(s.name),this.watchers.push(s.watch(()=>this.setResult()))),!i?.length)return()=>{if("repeater"===s.inputType&&u?.length){const t=this.relatedCallback(s);return s.reQueryValue?.(),Dt(t,u,{rawRepeaterValue:s.value.current})}return Dt(this.relatedCallback(s),u)};const[a]=i;if(!s.attrs.hasOwnProperty(a))return!1;const c=s.attrs[a];return this.relatedAttrs.includes(s.name+a)||(this.relatedAttrs.push(s.name+a),this.watchers.push(c.value.watch(()=>this.setResult()))),()=>Dt(c.value.current,u)},_n.prototype.calculateString=function(){return this.parts.length?this.parts.map(t=>{if("function"!=typeof t)return t;const e=t();return null===e||""===e?"":e}).join(""):this.formula};const In=_n,{__:Fn,sprintf:On}=wp.i18n,kn=function(t,e){if(t.jfbObserved)return;const n=new In(e);if(n.observe(t.textContent),!n.parts?.length)return console.group(Fn("JetFormBuilder: You have invalid html macro","jet-form-builder")),console.error(On(Fn("Content: %s","jet-form-builder"),t.textContent)),console.groupEnd(),void n.clearWatchers();const r=document.createElement("span"),o=t.parentNode.insertBefore(r,t);n.setResult=()=>{o.innerHTML=n.calculateString()},n.setResult(),t.jfbObserved=!0},Cn=function(t,e,n){var r;const o=null!==(r=t[e])&&void 0!==r?r:"";if("string"!=typeof o)return null;const i=new In(n);i.observe(o),i.setResult=()=>{t[e]=i.calculateString()},i.setResult()},Rn=function(t,e){t.__jfbMacroTemplate||(t.__jfbMacroTemplate=t.innerHTML);const n=new In(e,{withPrefix:!1,macroHost:t,macroFormat:t.dataset.jfbMacroFormat||""});if(n.observe(`%${t.dataset.jfbMacro}%`),!n.parts?.length)return console.group((0,gn.__)("JetFormBuilder: You have invalid html macro","jet-form-builder")),console.error((0,gn.sprintf)((0,gn.__)("Content: %s","jet-form-builder"),t.dataset.jfbMacro)),console.groupEnd(),void n.clearWatchers();t.dataset.jfbObserved=1,n.setResult=()=>{let e=String(n.calculateString());const r=t.querySelector?.("textarea");r&&(e=e.replace(/\r\n|\r|\n/g,"
    ")),t.innerHTML=e},n.setResult()};function En(t){this.root=t,this.reportedFirst=!1,this.silence=!0}En.prototype={reset(t={}){var e;this.reportedFirst=!1,this.setSilence(null===(e=t?.silence)||void 0===e||e)},reportFirst(){this.reportedFirst=!0},setSilence(t){this.silence=!!t}};const Pn=En,{doAction:Tn}=JetPlugins.hooks;function Mn(t=null){this.parent=t,this.dataInputs={},this.form=null,this.multistep=null,this.rootNode=null,this.isObserved=!1,this.context=this.parent?null:new Pn(this)}Mn.prototype={parent:null,dataInputs:{},form:null,multistep:null,rootNode:null,isObserved:!1,value:null,observe(t=null){this.isObserved||(null!==t&&(this.rootNode=t),this.isObserved=!0,Tn("jet.fb.observe.before",this),this.initSubmitHandler(),this.initFields(),this.makeReactiveProxy(),this.initMacros(),this.initActionButtons(),this.initValue(),Tn("jet.fb.observe.after",this))},initFields(){for(const t of this.rootNode.querySelectorAll("[data-jfb-sync]"))this.pushInput(t)},initMacros(){for(const t of Bt(this.rootNode))kn(t,this);const t=Mt(this.rootNode,"JFB_FIELD::"),{replaceAttrs:e=[]}=window.JetFormBuilderSettings;for(const n of t)for(const t of e)Cn(n,t,this);const n=this.rootNode.querySelectorAll("[data-jfb-macro]:not([data-jfb-observed])");for(const t of n)Rn(t,this)},initSubmitHandler(){this.parent||(this.form=new Tt(this))},initActionButtons(){if(!this.parent)for(const t of this.rootNode.querySelectorAll(".jet-form-builder__button-switch-state")){let e;try{e=JSON.parse(t.dataset.switchOn)}catch(t){continue}t.addEventListener("click",()=>{this.getState().value.current=e})}},async inputsAreValid(){const t=await st(It(this.getInputs()));return Boolean(t.length)?Promise.reject(t):Promise.resolve()},watch(t,e){const n=this.getInput(t);if(n)return n.watch(e);throw new Error(`dataInputs in Observable don't have ${t} field`)},observeInput(t,e=!1){const n=this.pushInput(t,e);n.makeReactive(),Tn("jet.fb.observe.input.manual",n)},makeReactiveProxy(){for(const t of this.getInputs())t.makeReactive()},pushInput(t,e=!1){var n;if(!this.parent&&t.parentElement.closest(".jet-form-builder-repeater"))return;const r=function(t,e){for(const n of(Nt.length||(Nt=St("jet.fb.inputs",[wt,ft,ht,mt])),[...Nt])){const r=new n;if(r.isSupported(t))return r.setRoot(e),r.setNode(t),g(r),jt("jet.fb.input.created",r),r}throw new Error("Something went wrong")}(t,this),o=null!==(n=this.dataInputs[r.getName()])&&void 0!==n&&n;return!1===o||e?(this.dataInputs[r.getName()]=r,r):(o.merge(r),o)},getInputs(){return Object.values(this.dataInputs)},getState(){return this.getInput("_jfb_current_render_states")},getInput(t){var e;if(this.dataInputs.hasOwnProperty(t))return this.dataInputs[t];const n=null!==(e=this.parent?.root)&&void 0!==e?e:null;return n&&n.dataInputs.hasOwnProperty(t)?n.dataInputs[t]:null},getSubmit(){return this.form?this.form:this.parent.root.form},getContext(){var t;return null!==(t=this.context)&&void 0!==t?t:this.parent.root.context},remove(){for(const t of this.getInputs())t.onRemove()},reQueryValues(){for(const t of this.getInputs())t.reQueryValue()},initValue(){this.value=new _({}),this.value.watch(()=>{const t=Object.entries(this.value.current);for(const[e,n]of t)this.getInput(e).revertValue(n)});for(const t of this.getInputs())t.watch(()=>{this.value.current[t.getName()]=t.getValue()});this.value.make()}};const xn=Mn;var Bn;window.JetFormBuilder=null!==(Bn=window.JetFormBuilder)&&void 0!==Bn?Bn:{};const Dn=function(t){const e=t[0].querySelector("form.jet-form-builder");if(!e)return;const n=new xn;window.JetFormBuilder[e.dataset.formId]=n,jQuery(document).trigger("jet-form-builder/init",[t,n]),n.observe(e),jQuery(document).trigger("jet-form-builder/after-init",[t,n])};var An,Vn,Ln,Jn,Hn;window.JetFormBuilderAbstract={...null!==(An=window.JetFormBuilderAbstract)&&void 0!==An?An:{},Filter:Vt,CalculatedFormula:Sn,BaseInternalMacro:Xe},window.JetFormBuilderFunctions={...null!==(Vn=window.JetFormBuilderFunctions)&&void 0!==Vn?Vn:{},getFilters:Ue,applyFilters:Dt,toDate:Yt,toDateTime:Wt,toTime:$t,getTimestamp:zt},window.JetFormBuilderConst={...null!==(Ln=window.JetFormBuilderConst)&&void 0!==Ln?Ln:{},...nn},window.JetFormBuilderAbstract={...null!==(Jn=window.JetFormBuilderAbstract)&&void 0!==Jn?Jn:{},InputData:ct,BaseSignal:P,ReactiveVar:_,ReactiveHook:k,LoadingReactiveVar:F,Observable:xn,ReportingInterface:$,Restriction:U,RestrictionError:q,BaseHtmlAttr:e,ReactiveSet:yt,RequiredRestriction:tt},window.JetFormBuilderFunctions={...null!==(Hn=window.JetFormBuilderFunctions)&&void 0!==Hn?Hn:{},allRejected:f,getLanguage:function(){const t=window?.navigator?.languages?.length?window.navigator.languages[0]:window?.navigator?.language;return null!=t?t:"en-US"},toHTML:function(t){const e=document.createElement("template");return e.innerHTML=t.trim(),e.content},validateInputs:function(t,e=!1){return Promise.all(it(t,e).map(t=>new Promise(t)))},validateInputsAll:st,getParsedName:_t,isEmpty:y,getValidateCallbacks:it,getOffsetTop:v,focusOnInvalidInput:j,populateInputs:It,isVisible:b,queryByAttrValue:Mt,iterateComments:xt,observeMacroAttr:Cn,observeComment:kn,iterateJfbComments:Bt,getScrollParent:S,isUA:function(t){return h?.[t]},resetRuntimeRegistries:function(){d=[],Nt=[],H=[],nt=[],ot=[]}},document.addEventListener("DOMContentLoaded",function(){for(const[t,e]of Object.entries(h))e&&document.body.classList.add(`jet--ua-${t}`)}),jQuery(()=>JetPlugins.init()),JetPlugins.bulkBlocksInit([{block:"jet-forms.form-block",callback:Dn,condition:()=>"loading"!==document.readyState}]),jQuery(window).on("elementor/frontend/init",function(){if(!window.elementorFrontend)return;const t={"jet-engine-booking-form.default":Dn,"jet-form-builder-form.default":Dn};jQuery.each(t,function(t,e){window.elementorFrontend.hooks.addAction("frontend/element_ready/"+t,e)})}),addEventListener("load",()=>{const t=Object.values(window.JetFormBuilder);for(const e of t)e instanceof xn&&e.reQueryValues()})})(); \ No newline at end of file diff --git a/assets/build/frontend/media.field.asset.php b/assets/build/frontend/media.field.asset.php index f36a65a32..35968b0d2 100644 --- a/assets/build/frontend/media.field.asset.php +++ b/assets/build/frontend/media.field.asset.php @@ -1 +1 @@ - array(), 'version' => '30c843e4babb74fe5b01'); + array(), 'version' => '28178af33faa443b8680'); diff --git a/assets/build/frontend/media.field.js b/assets/build/frontend/media.field.js index 5d758e53d..1df2f1579 100644 --- a/assets/build/frontend/media.field.js +++ b/assets/build/frontend/media.field.js @@ -1 +1 @@ -(()=>{"use strict";function t(t){const e=new DataTransfer;for(const n of t)e.items.add(n);return e.files}function e(t){return!!t.classList.contains("jet-form-builder-file-upload__input")&&"file"===t.type}const{InputData:n}=window.JetFormBuilderAbstract;function i(){n.call(this),this.isMultiple=!1,this.prevFiles=null,this.template=null,this.previewsContainer=null,this.wrapper=null,this.isSupported=function(t){return e(t)},this.addListeners=function(){const[e]=this.nodes;e.addEventListener("change",(e=>{var n;this.value.current=t(this.isMultiple?[...null!==(n=this.prevFiles)&&void 0!==n?n:[],...e.target.files]:[...e.target.files])}))},this.setNode=function(t){n.prototype.setNode.call(this,t),this.isMultiple=t.multiple,this.wrapper=t.closest(".jet-form-builder-file-upload"),this.previewsContainer=this.wrapper.querySelector(".jet-form-builder-file-upload__files"),this.template=this.wrapper.closest(".field-type-media-field").querySelector(".jet-form-builder__preview-template")},this.setValue=function(){this.callable.loadFiles()},this.initNotifyValue=()=>{},this.reQueryValue=()=>{}}i.prototype=Object.create(n.prototype),i.prototype.wrapper=null,i.prototype.previewsContainer=null,i.prototype.template=null;const r=i,{BaseSignal:l}=window.JetFormBuilderAbstract;function o(){l.call(this),this.lock.current=!0,this.isSupported=function(t){return e(t)},this.runSignal=function(){const[e]=this.input.nodes,n=[],{current:i}=this.input.value,r=a(null!=i?i:[]);for(const t of r)n.push(this.getPreview(t));!function(t,e){const n=t.querySelectorAll(".jet-form-builder-file-upload__file");for(const t of n)e.some((e=>e.isEqualNode(t)))||t.remove();for(const n in e){if(!e.hasOwnProperty(n))continue;const i=e[n];i.isConnected||t.appendChild(i)}}(this.input.previewsContainer,n),e.files=t(r),this.input.prevFiles=r,this.sortable()}}o.prototype=Object.create(l.prototype),o.prototype.loadFiles=function(){const e=this.input.previewsContainer.querySelectorAll(".jet-form-builder-file-upload__file"),n=[];for(const t of e){this.addRemoveHandler(t);const e=t.dataset.file,i=t.querySelector(".jet-form-builder-file-upload__file-remove"),{fileName:r}=i.dataset;n.push([e,r])}n.length?Promise.allSettled(n.map((([t,e])=>new Promise(((n,i)=>{fetch(t).then((t=>t.blob())).then((t=>n(function(t,e){return new File([t],e,t)}(t,e)))).catch(i)}))))).then((e=>{const n=a(e.map((({value:t})=>t)));this.lock.current=!1,this.input.silenceSet(t(n))})).catch((()=>{this.lock.current=!1})):this.lock.current=!1},o.prototype.sortable=function(){jQuery(this.input.previewsContainer).unbind(),jQuery(this.input.previewsContainer).sortable({items:".jet-form-builder-file-upload__file",forcePlaceholderSize:!0}).bind("sortupdate",(()=>this.onSortCallback()))},o.prototype.onSortCallback=function(){const t=new DataTransfer,[e]=this.input.nodes,n=this.input.previewsContainer.querySelectorAll(".jet-form-builder-file-upload__file-remove");for(const i of n){const{fileName:n}=i.dataset;for(const i of e.files)i.name===n&&t.items.add(i)}this.input.value.current=t.files},o.prototype.addRemoveHandler=function(t){t.querySelector(".jet-form-builder-file-upload__file-remove").addEventListener("click",this.removeFile.bind(this))},o.prototype.getPreview=function(t){const e=this.input.previewsContainer.querySelector(`[data-file-name="${t.name}"]`);if(!e){const e=this.createPreview(t);return this.addRemoveHandler(e),e}return e.closest(".jet-form-builder-file-upload__file")},o.prototype.createPreview=function(t){const e=URL.createObjectURL(t);let{innerHTML:n}=this.input.template;n=n.replace("%file_url%",e),n=n.replace("%file_name%",t.name);const i=document.createElement("template");i.innerHTML=n;const r=i.content.firstChild;if(/^image\//.test(t.type)){const n=document.createElement("img");n.src=e,n.alt=t.name,r.prepend(n)}return r},o.prototype.removeFile=function({target:t}){const e=".jet-form-builder-file-upload__file-remove",{value:n}=this.input;t.matches(e)||(t=t.closest(e));const{fileName:i}=t.dataset,r=new DataTransfer;for(const t of n.current)i!==t.name&&r.items.add(t);n.current=r.files},o.prototype.getFileNode=function(t){const e=`data-file-name="${t}"`;return this.input.previewsContainer.querySelector(`.jet-form-builder-file-upload__file-remove[${e}]`).closest(".jet-form-builder-file-upload__file")};const s=o;function a(t){const e=new Set,n=[];for(const i of function(t){return t?Array.isArray(t)?t:"function"==typeof t[Symbol.iterator]?Array.from(t):"object"==typeof t?Object.values(t):[]:[]}(t))i?.name&&(e.has(i.name)||(e.add(i.name),n.push(i)));return n}function u(t){return String(null!=t?t:"").replaceAll("&","&").replaceAll("<","<").replaceAll(">",">").replaceAll('"',""").replaceAll("'","'")}function c(t){const e=t.closest(".field-type-media-field");if(!e)return"";const n=e.querySelectorAll(".jet-form-builder-file-upload__file");if(!n.length)return"";const i=[];return n.forEach((t=>{var e,n;const r=String(null!==(e=t.dataset?.file)&&void 0!==e?e:"").trim(),l=t.querySelector(".jet-form-builder-file-upload__file-remove"),o=String(null!==(n=l?.dataset?.fileName)&&void 0!==n?n:"").trim();t.querySelector("img")&&r?i.push(function(t,e=""){const n=e||"Image";return`\n\t\t
  • \n\t\t\t
    \n\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t\t${u(n)}\n\t\t\t\t
    \n\t\t\t
    \n\t\t
  • \n\t`}(r,o)):(o||r)&&i.push(function(t,e=""){const n=e||t||"File";return t?`\n\t\t\t
  • \n\t\t\t\t\n\t\t\t\t\t📄 ${u(n)}\n\t\t\t\t\n\t\t\t
  • \n\t\t`:`\n\t\t
  • \n\t\t\t📄 ${u(n)}\n\t\t
  • \n\t`}(r,o))})),function(t){return t.length?`\n\t\t
    \n\t\t\t
      \n\t\t\t\t${t.join("")}\n\t\t\t
    \n\t\t
    \n\t`:""}(i)}function f(t){t.dispatchEvent(new Event("input",{bubbles:!0})),t.dispatchEvent(new Event("change",{bubbles:!0}))}function d(t,e){const n=e?.[0]||e;return function(t){return!!t&&!!t.closest(".field-type-media-field")}(n)?(function(t){if(!t||t.__jfbMediaRemoveBound)return;const e=t.closest(".field-type-media-field");e&&(t.__jfbMediaRemoveBound=!0,e.addEventListener("click",(e=>{e.target.closest(".jet-form-builder-file-upload__file-remove")&&setTimeout((()=>{f(t)}),0)})))}(n),function(t){if(!t)return;const e=function(t){const e=t.closest(".field-type-media-field");return e?e.querySelector(".jet-form-builder-file-upload__files")||e.querySelector(".jet-form-builder-file-upload")||e:null}(t);if(!e)return;t.__jfbMediaMacrosObserver&&(t.__jfbMediaMacrosObserver.disconnect(),t.__jfbMediaMacrosObserver=null);const n=c(t),i=new MutationObserver((()=>{c(t)!==n&&(i.disconnect(),t.__jfbMediaMacrosObserver=null,f(t))}));t.__jfbMediaMacrosObserver=i,i.observe(e,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["data-file","src"]}),setTimeout((()=>{t.__jfbMediaMacrosObserver===i&&(i.disconnect(),t.__jfbMediaMacrosObserver=null,c(t)!==n&&f(t))}),300)}(n),c(n)):t}const{addFilter:p}=JetPlugins.hooks;p("jet.fb.inputs","jet-form-builder/media-field",(function(t){return[r,...t]})),p("jet.fb.signals","jet-form-builder/media-field",(function(t){return[s,...t]})),p("jet.fb.macro.field.value","jet-form-builder/media-field",d),p("jet.fb.macro.inside.repeater.field.value","jet-form-builder/media-field",d)})(); \ No newline at end of file +(()=>{"use strict";function t(t){const e=new DataTransfer;for(const n of t)e.items.add(n);return e.files}function e(t){return!!t.classList.contains("jet-form-builder-file-upload__input")&&"file"===t.type}const{InputData:n}=window.JetFormBuilderAbstract;function i(){n.call(this),this.isMultiple=!1,this.prevFiles=null,this.template=null,this.previewsContainer=null,this.wrapper=null,this.isSupported=function(t){return e(t)},this.addListeners=function(){const[e]=this.nodes;e.addEventListener("change",e=>{var n;this.value.current=t(this.isMultiple?[...null!==(n=this.prevFiles)&&void 0!==n?n:[],...e.target.files]:[...e.target.files])})},this.setNode=function(t){n.prototype.setNode.call(this,t),this.isMultiple=t.multiple,this.wrapper=t.closest(".jet-form-builder-file-upload"),this.previewsContainer=this.wrapper.querySelector(".jet-form-builder-file-upload__files"),this.template=this.wrapper.closest(".field-type-media-field").querySelector(".jet-form-builder__preview-template")},this.setValue=function(){this.callable.loadFiles()},this.initNotifyValue=()=>{},this.reQueryValue=()=>{}}i.prototype=Object.create(n.prototype),i.prototype.wrapper=null,i.prototype.previewsContainer=null,i.prototype.template=null;const r=i,{BaseSignal:l}=window.JetFormBuilderAbstract;function o(){l.call(this),this.lock.current=!0,this.isSupported=function(t){return e(t)},this.runSignal=function(){const[e]=this.input.nodes,n=[],{current:i}=this.input.value,r=a(null!=i?i:[]);for(const t of r)n.push(this.getPreview(t));!function(t,e){const n=t.querySelectorAll(".jet-form-builder-file-upload__file");for(const t of n)e.some(e=>e.isEqualNode(t))||t.remove();for(const n in e){if(!e.hasOwnProperty(n))continue;const i=e[n];i.isConnected||t.appendChild(i)}}(this.input.previewsContainer,n),e.files=t(r),this.input.prevFiles=r,this.sortable()}}o.prototype=Object.create(l.prototype),o.prototype.loadFiles=function(){const e=this.input.previewsContainer.querySelectorAll(".jet-form-builder-file-upload__file"),n=[];for(const t of e){this.addRemoveHandler(t);const e=t.dataset.file,i=t.querySelector(".jet-form-builder-file-upload__file-remove"),{fileName:r}=i.dataset;n.push([e,r])}n.length?Promise.allSettled(n.map(([t,e])=>new Promise((n,i)=>{fetch(t).then(t=>t.blob()).then(t=>n(function(t,e){return new File([t],e,t)}(t,e))).catch(i)}))).then(e=>{const n=a(e.map(({value:t})=>t));this.lock.current=!1,this.input.silenceSet(t(n))}).catch(()=>{this.lock.current=!1}):this.lock.current=!1},o.prototype.sortable=function(){jQuery(this.input.previewsContainer).unbind(),jQuery(this.input.previewsContainer).sortable({items:".jet-form-builder-file-upload__file",forcePlaceholderSize:!0}).bind("sortupdate",()=>this.onSortCallback())},o.prototype.onSortCallback=function(){const t=new DataTransfer,[e]=this.input.nodes,n=this.input.previewsContainer.querySelectorAll(".jet-form-builder-file-upload__file-remove");for(const i of n){const{fileName:n}=i.dataset;for(const i of e.files)i.name===n&&t.items.add(i)}this.input.value.current=t.files},o.prototype.addRemoveHandler=function(t){t.querySelector(".jet-form-builder-file-upload__file-remove").addEventListener("click",this.removeFile.bind(this))},o.prototype.getPreview=function(t){const e=this.input.previewsContainer.querySelector(`[data-file-name="${t.name}"]`);if(!e){const e=this.createPreview(t);return this.addRemoveHandler(e),e}return e.closest(".jet-form-builder-file-upload__file")},o.prototype.createPreview=function(t){const e=URL.createObjectURL(t);let{innerHTML:n}=this.input.template;n=n.replace("%file_url%",e),n=n.replace("%file_name%",t.name);const i=document.createElement("template");i.innerHTML=n;const r=i.content.firstChild;if(/^image\//.test(t.type)){const n=document.createElement("img");n.src=e,n.alt=t.name,r.prepend(n)}return r},o.prototype.removeFile=function({target:t}){const e=".jet-form-builder-file-upload__file-remove",{value:n}=this.input;t.matches(e)||(t=t.closest(e));const{fileName:i}=t.dataset,r=new DataTransfer;for(const t of n.current)i!==t.name&&r.items.add(t);n.current=r.files},o.prototype.getFileNode=function(t){const e=`data-file-name="${t}"`;return this.input.previewsContainer.querySelector(`.jet-form-builder-file-upload__file-remove[${e}]`).closest(".jet-form-builder-file-upload__file")};const s=o;function a(t){const e=new Set,n=[];for(const i of function(t){return t?Array.isArray(t)?t:"function"==typeof t[Symbol.iterator]?Array.from(t):"object"==typeof t?Object.values(t):[]:[]}(t))i?.name&&(e.has(i.name)||(e.add(i.name),n.push(i)));return n}function u(t){return String(null!=t?t:"").replaceAll("&","&").replaceAll("<","<").replaceAll(">",">").replaceAll('"',""").replaceAll("'","'")}function c(t){const e=t.closest(".field-type-media-field");if(!e)return"";const n=e.querySelectorAll(".jet-form-builder-file-upload__file");if(!n.length)return"";const i=[];return n.forEach(t=>{var e,n;const r=String(null!==(e=t.dataset?.file)&&void 0!==e?e:"").trim(),l=t.querySelector(".jet-form-builder-file-upload__file-remove"),o=String(null!==(n=l?.dataset?.fileName)&&void 0!==n?n:"").trim();t.querySelector("img")&&r?i.push(function(t,e=""){const n=e||"Image";return`\n\t\t
  • \n\t\t\t
    \n\t\t\t\t\n\t\t\t\t
    \n\t\t\t\t\t${u(n)}\n\t\t\t\t
    \n\t\t\t
    \n\t\t
  • \n\t`}(r,o)):(o||r)&&i.push(function(t,e=""){const n=e||t||"File";return t?`\n\t\t\t
  • \n\t\t\t\t\n\t\t\t\t\t📄 ${u(n)}\n\t\t\t\t\n\t\t\t
  • \n\t\t`:`\n\t\t
  • \n\t\t\t📄 ${u(n)}\n\t\t
  • \n\t`}(r,o))}),function(t){return t.length?`\n\t\t
    \n\t\t\t
      \n\t\t\t\t${t.join("")}\n\t\t\t
    \n\t\t
    \n\t`:""}(i)}function f(t){t.dispatchEvent(new Event("input",{bubbles:!0})),t.dispatchEvent(new Event("change",{bubbles:!0}))}function d(t,e){const n=e?.[0]||e;return function(t){return!!t&&!!t.closest(".field-type-media-field")}(n)?(function(t){if(!t||t.__jfbMediaRemoveBound)return;const e=t.closest(".field-type-media-field");e&&(t.__jfbMediaRemoveBound=!0,e.addEventListener("click",e=>{e.target.closest(".jet-form-builder-file-upload__file-remove")&&setTimeout(()=>{f(t)},0)}))}(n),function(t){if(!t)return;const e=function(t){const e=t.closest(".field-type-media-field");return e?e.querySelector(".jet-form-builder-file-upload__files")||e.querySelector(".jet-form-builder-file-upload")||e:null}(t);if(!e)return;t.__jfbMediaMacrosObserver&&(t.__jfbMediaMacrosObserver.disconnect(),t.__jfbMediaMacrosObserver=null);const n=c(t),i=new MutationObserver(()=>{c(t)!==n&&(i.disconnect(),t.__jfbMediaMacrosObserver=null,f(t))});t.__jfbMediaMacrosObserver=i,i.observe(e,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["data-file","src"]}),setTimeout(()=>{t.__jfbMediaMacrosObserver===i&&(i.disconnect(),t.__jfbMediaMacrosObserver=null,c(t)!==n&&f(t))},300)}(n),c(n)):t}const{addFilter:p}=JetPlugins.hooks;p("jet.fb.inputs","jet-form-builder/media-field",function(t){return[r,...t]}),p("jet.fb.signals","jet-form-builder/media-field",function(t){return[s,...t]}),p("jet.fb.macro.field.value","jet-form-builder/media-field",d),p("jet.fb.macro.inside.repeater.field.value","jet-form-builder/media-field",d)})(); \ No newline at end of file diff --git a/assets/build/frontend/media.field.restrictions.asset.php b/assets/build/frontend/media.field.restrictions.asset.php index 0e33301e4..b652f2850 100644 --- a/assets/build/frontend/media.field.restrictions.asset.php +++ b/assets/build/frontend/media.field.restrictions.asset.php @@ -1 +1 @@ - array('wp-i18n'), 'version' => 'edbabb0dd8297d42715a'); + array('wp-i18n'), 'version' => '2fa8b05f10aab57b1eae'); diff --git a/assets/build/frontend/media.field.restrictions.js b/assets/build/frontend/media.field.restrictions.js index 8601bd0eb..5b26954a1 100644 --- a/assets/build/frontend/media.field.restrictions.js +++ b/assets/build/frontend/media.field.restrictions.js @@ -1 +1 @@ -(()=>{"use strict";const{AdvancedRestriction:t}=JetFormBuilderAbstract;function e(){t.call(this),this.watchedAttrs.push("max_files"),this.isSupported=function(t){return"file"===t?.type},this.validate=function(){var t;const{max_files:e}=this.reporting.input.attrs;let{current:i}=this.reporting.input.value;return i=null!==(t=i?.length)&&void 0!==t?t:0,!i||i<=e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("max_files")}}e.prototype=Object.create(t.prototype);const i=e,{AdvancedRestriction:r}=JetFormBuilderAbstract;function n(){r.call(this)}n.prototype=Object.create(r.prototype),n.prototype.file=null,n.prototype.setFile=function(t){this.file=t};const o=n;function s(){o.call(this),this.watchedAttrs.push("max_size"),this.validate=function(){const{max_size:t}=this.reporting.input.attrs;return this.file.size(i,r)=>{e.setFile(t),e.validatePromise().then(i).catch((()=>r(e)))}));r.push(((i,r)=>{Promise.allSettled(e.map((t=>new Promise(t)))).then((e=>{const n=e.filter((({status:t})=>"rejected"===t)).map((({reason:t,value:e})=>null!=t?t:e));n.length?r({file:t,rejected:n}):i()}))}))}if(!r?.length)return Promise.resolve();const n=await f(r);for(const t of i){const i=e.getFileNode(t.name).querySelector(".jet-form-builder-file-upload__file-invalid-marker"),[r={}]=n.filter((({file:e})=>e===t));i.style.display=r?.rejected?.length?"block":"none",i.title=r?.rejected?.length?r?.rejected[0].getMessage():""}return Boolean(n.length)?Promise.reject("validate is wrong"):Promise.resolve()};const g=h,m=window.wp.i18n,{Filter:y}=JetFormBuilderAbstract,{Kb_In_Bytes:b,Mb_In_Bytes:_,Gb_In_Bytes:j,Tb_In_Bytes:v}=JetFormBuilderConst,{getLanguage:B}=JetFormBuilderFunctions,F={[(0,m._x)("TB","unit symbol","jet-form-builder")]:v,[(0,m._x)("GB","unit symbol","jet-form-builder")]:j,[(0,m._x)("MB","unit symbol","jet-form-builder")]:_,[(0,m._x)("KB","unit symbol","jet-form-builder")]:b,[(0,m._x)("B","unit symbol","jet-form-builder")]:1},x=B();function w(){y.call(this),this.getSlug=function(){return"sizeFormat"},this.apply=function(t){if(t=+t,Number.isNaN(t)||0===t)return"0 B";for(const[e,i]of Object.entries(F))if(!(t{"use strict";const{AdvancedRestriction:t}=JetFormBuilderAbstract;function e(){t.call(this),this.watchedAttrs.push("max_files"),this.isSupported=function(t){return"file"===t?.type},this.validate=function(){var t;const{max_files:e}=this.reporting.input.attrs;let{current:i}=this.reporting.input.value;return i=null!==(t=i?.length)&&void 0!==t?t:0,!i||i<=e.value.current},this.getRawMessage=function(){return this.getMessageBySlug("max_files")}}e.prototype=Object.create(t.prototype);const i=e,{AdvancedRestriction:r}=JetFormBuilderAbstract;function n(){r.call(this)}n.prototype=Object.create(r.prototype),n.prototype.file=null,n.prototype.setFile=function(t){this.file=t};const o=n;function s(){o.call(this),this.watchedAttrs.push("max_size"),this.validate=function(){const{max_size:t}=this.reporting.input.attrs;return this.file.size(i,r)=>{e.setFile(t),e.validatePromise().then(i).catch(()=>r(e))});r.push((i,r)=>{Promise.allSettled(e.map(t=>new Promise(t))).then(e=>{const n=e.filter(({status:t})=>"rejected"===t).map(({reason:t,value:e})=>null!=t?t:e);n.length?r({file:t,rejected:n}):i()})})}if(!r?.length)return Promise.resolve();const n=await f(r);for(const t of i){const i=e.getFileNode(t.name).querySelector(".jet-form-builder-file-upload__file-invalid-marker"),[r={}]=n.filter(({file:e})=>e===t);i.style.display=r?.rejected?.length?"block":"none",i.title=r?.rejected?.length?r?.rejected[0].getMessage():""}return Boolean(n.length)?Promise.reject("validate is wrong"):Promise.resolve()};const g=h,m=window.wp.i18n,{Filter:y}=JetFormBuilderAbstract,{Kb_In_Bytes:b,Mb_In_Bytes:_,Gb_In_Bytes:j,Tb_In_Bytes:v}=JetFormBuilderConst,{getLanguage:B}=JetFormBuilderFunctions,F={[(0,m._x)("TB","unit symbol","jet-form-builder")]:v,[(0,m._x)("GB","unit symbol","jet-form-builder")]:j,[(0,m._x)("MB","unit symbol","jet-form-builder")]:_,[(0,m._x)("KB","unit symbol","jet-form-builder")]:b,[(0,m._x)("B","unit symbol","jet-form-builder")]:1},x=B();function w(){y.call(this),this.getSlug=function(){return"sizeFormat"},this.apply=function(t){if(t=+t,Number.isNaN(t)||0===t)return"0 B";for(const[e,i]of Object.entries(F))if(!(t array(), 'version' => 'e83af9d8f1cb783352c9'); + array(), 'version' => '8f1b0776132576e4f360'); diff --git a/assets/build/frontend/multi.step.js b/assets/build/frontend/multi.step.js index 97068e7e9..bbb7bc009 100644 --- a/assets/build/frontend/multi.step.js +++ b/assets/build/frontend/multi.step.js @@ -1 +1 @@ -(()=>{"use strict";const{ConditionItem:t}=JetFormBuilderAbstract;function e(){t.call(this),this.isSupported=function(t){return!!t?.page_state?.length},this.setOptions=function({page_state:t}){this.pageState=t},this.isPassed=function(){const t=this.list?.block?.page?.canSwitch?.current;return"active"===this.pageState&&!t}}e.prototype=Object.create(t.prototype);const i=e,{ReactiveVar:s,createConditionalBlock:n}=JetFormBuilderAbstract,{validateInputs:o,getOffsetTop:r,focusOnInvalidInput:a,populateInputs:c}=JetFormBuilderFunctions,{addAction:h,doAction:u}=JetPlugins.hooks;function d(t,e){this.node=t,this.index=+t.dataset.page,this.offset=+t.dataset.pageOffset,this.state=e,this.inputs=[],this.inputBindings=new Map,this.canSwitch=new s(null),this.isShow=new s(1===this.index),this.autoFocus=window.JetFormBuilderSettings?.auto_focus,this.initialObserveState=!1}d.prototype.observe=function(){this.isLast()||this.observeInputs(),this.canSwitch.make(),this.isShow.make(),this.isShow.watch((()=>{this.isShow.current?this.onShow():this.onHide()})),this.addButtonsListeners(),this.isFirst()&&(this.initialObserveState=!0,this.updateStateAsync().then((()=>{})).catch((()=>{}))),this.updateOffsetByProgress(),h("jet.fb.observe.input.manual","jet-form-builder/page-state",(t=>this.observeInput(t.nodes[0]))),u("jet.fb.multistep.page.init",this)},d.prototype.observeInputs=function(){for(const t of this.node.querySelectorAll("[data-jfb-sync]")){const e=this.observeInput(t);e&&u("jet.fb.multistep.page.observed.input",e,this)}},d.prototype.observeInput=function(t){if(!this.isNodeBelongThis(t)||!t.hasOwnProperty("jfbSync")||t.jfbSync.hasParent())return!1;const e=t.jfbSync;return this.registerInput(e)},d.prototype.observeConditionalBlocks=function(){if(!this.isLast())for(const t of this.node.querySelectorAll("[data-jfb-conditional]")){if(!this.isNodeBelongThis(t))continue;const e=n(t,this.state.getRoot());for(const t of e.list.getConditions())if(t instanceof i){e.page=this,this.canSwitch.watch((()=>e.list.onChangeRelated())),e.list.onChangeRelated();break}}},d.prototype.onShow=function(){this.node.classList.remove("jet-form-builder-page--hidden"),this.initialObserveState||(this.initialObserveState=!0,this.updateStateAsync().then((()=>{})).catch((()=>{})))},d.prototype.onHide=function(){this.node.classList.add("jet-form-builder-page--hidden")},d.prototype.updateState=function(){for(const t of this.getInputs())if(!t.reporting.validityState.current&&null!==t.reporting.validityState.current)return void(this.canSwitch.current=!1);this.canSwitch.current=!0},d.prototype.updateStateAsync=async function(t=!0){try{await o(this.getInputs(),t),this.canSwitch.current=!0}catch(t){this.canSwitch.current=!1}},d.prototype.addButtonsListeners=function(){const t=this.node.querySelectorAll(".jet-form-builder__next-page, .jet-form-builder__prev-page");for(const e of t){if(!this.isNodeBelongThis(e))continue;const t=e.classList.contains("jet-form-builder__prev-page");e.addEventListener("click",(()=>this.changePage(t)))}},d.prototype.changePage=async function(t){t?this.state.index.current=this.index-1:this.isLast()||this.getLockState().current||(await this.updateStateAsync(!1),this.canSwitch.current?this.state.index.current=this.index+1:this.autoFocus&&a(this.getInputs()))},d.prototype.isNodeBelongThis=function(t){const e=t.closest(".jet-form-builder-page");return!!e&&e.isEqualNode(this.node)},d.prototype.getInputs=function(){return c(this.inputs)},d.prototype.getLockState=function(){var t;const e=this.state.getRoot();return(null!==(t=e?.parent?.root?.form)&&void 0!==t?t:e.form).lockState},d.prototype.isLast=function(){return this.state.isLastPage(this)},d.prototype.isFirst=function(){return this.state.isFirstPage(this)},d.prototype.handleInputEnter=function(t){t?.enterKey?.addFilter((()=>{const e=t.root.form;return e?!0===e.canTriggerEnterSubmit&&this.changePage().then((()=>{})).catch((()=>{})):this.changePage().then((()=>{})).catch((()=>{})),!1}))},d.prototype.registerInput=function(t,{includeInValidation:e=!0}={}){if(!t||this.inputBindings.has(t))return t;this.handleInputEnter(t);const i={clearLoadingWatch:t.loading.watch((()=>{t.loading.current?this.canSwitch.current=!1:this.updateState()})),clearValidityWatch:null};return t.reporting.restrictions.length&&(this.inputs.push(t),i.clearValidityWatch=t.watchValidity((()=>this.updateState())),e||(this.inputs=this.inputs.filter((e=>e!==t)))),this.inputBindings.set(t,i),t},d.prototype.unregisterInput=function(t){if(!this.inputBindings.has(t))return;const e=this.inputBindings.get(t);e?.clearLoadingWatch?.(),e?.clearValidityWatch?.(),this.inputBindings.delete(t),this.inputs=this.inputs.filter((e=>e!==t))},d.prototype.getTrackedInputs=function(){return Array.from(this.inputBindings.keys())},d.prototype.getOffsetTop=function(){return r(this.node)-this.offset},d.prototype.updateOffsetByProgress=function(){this.state?.progress?.node&&(this.offset+=+this.state.progress.node.clientHeight)};const p=d,l=function(t,e){this.node=t,this.state=e,this.state.index.watch((()=>this.updateItems())),this.updateItems=function(){const{current:t}=this.state.index;for(const e of this.node.children){const i=+e.dataset.page;inew p(t,this))),this.elements.forEach((t=>t.observe())),this.elements.forEach((t=>t.observeConditionalBlocks()));const{submitter:e}=this.getRoot().getSubmit();e.hasOwnProperty("status")&&e.watchReset((()=>{this.index.current=1}))},this.onChangeIndex=function(){for(const t of this.getPages())t.isShow.current=t.index===this.index.current;window?.jQuery(document)?.trigger("jet-form-builder/switch-page")},this.getCurrentPage=function(){for(const t of this.getPages())if(t.isShow.current)return t;return!1},this.getPages=function(){return this.elements},this.getScopeNode=function(){var t;return null!==(t=this.block?.node)&&void 0!==t?t:this.root.rootNode},this.getRoot=function(){var t;return null!==(t=this.block?.root)&&void 0!==t?t:this.root},this.isLastPage=function(t){return this.elements.at(-1)===t},this.isFirstPage=function(t){return this.elements[0]===t},this.onReady=function(){m("jet.fb.multistep.init",this)}};function y(t){const e=new b;e.setScope(t);const i=[];for(const t of e.getScopeNode().childNodes)t?.classList?.contains("jet-form-builder-page")&&i.push(t);return i.length?(e.setProgress(),e.setPages(i),e):e}const{addAction:S,addFilter:w}=JetPlugins.hooks,{getScrollParent:v}=JetFormBuilderFunctions;S("jet.fb.observe.after","jet-form-builder/multi-step",(function(t){const e=y(t);e.getPages()?.length&&(t.multistep=e,e.onReady())}),15),S("jet.fb.conditional.init","jet-form-builder/multi-step",(function(t){const e=y(t);e.getPages()?.length&&(t.multistep=e,e.onReady())})),w("jet.fb.conditional.types","jet-form-builder/multi-step",(function(t){return[i,...t]})),S("jet.fb.multistep.init","jet-form-builder/multi-step/autoscroll",(function(t){window?.JetFormBuilderSettings?.scroll_on_next&&t.index.watch((()=>{const e=t.getCurrentPage(),i=v(e.node),s=e.getOffsetTop();i?.scrollTo?.({top:s,behavior:"smooth"})}))}))})(); \ No newline at end of file +(()=>{"use strict";const{ConditionItem:t}=JetFormBuilderAbstract;function e(){t.call(this),this.isSupported=function(t){return!!t?.page_state?.length},this.setOptions=function({page_state:t}){this.pageState=t},this.isPassed=function(){const t=this.list?.block?.page?.canSwitch?.current;return"active"===this.pageState&&!t}}e.prototype=Object.create(t.prototype);const i=e,{ReactiveVar:s,createConditionalBlock:n}=JetFormBuilderAbstract,{validateInputs:o,getOffsetTop:r,focusOnInvalidInput:a,populateInputs:c}=JetFormBuilderFunctions,{addAction:h,doAction:u}=JetPlugins.hooks;function d(t,e){this.node=t,this.index=+t.dataset.page,this.offset=+t.dataset.pageOffset,this.state=e,this.inputs=[],this.inputBindings=new Map,this.canSwitch=new s(null),this.isShow=new s(1===this.index),this.autoFocus=window.JetFormBuilderSettings?.auto_focus,this.initialObserveState=!1}d.prototype.observe=function(){this.isLast()||this.observeInputs(),this.canSwitch.make(),this.isShow.make(),this.isShow.watch(()=>{this.isShow.current?this.onShow():this.onHide()}),this.addButtonsListeners(),this.isFirst()&&(this.initialObserveState=!0,this.updateStateAsync().then(()=>{}).catch(()=>{})),this.updateOffsetByProgress(),h("jet.fb.observe.input.manual","jet-form-builder/page-state",t=>this.observeInput(t.nodes[0])),u("jet.fb.multistep.page.init",this)},d.prototype.observeInputs=function(){for(const t of this.node.querySelectorAll("[data-jfb-sync]")){const e=this.observeInput(t);e&&u("jet.fb.multistep.page.observed.input",e,this)}},d.prototype.observeInput=function(t){if(!this.isNodeBelongThis(t)||!t.hasOwnProperty("jfbSync")||t.jfbSync.hasParent())return!1;const e=t.jfbSync;return this.registerInput(e)},d.prototype.observeConditionalBlocks=function(){if(!this.isLast())for(const t of this.node.querySelectorAll("[data-jfb-conditional]")){if(!this.isNodeBelongThis(t))continue;const e=n(t,this.state.getRoot());for(const t of e.list.getConditions())if(t instanceof i){e.page=this,this.canSwitch.watch(()=>e.list.onChangeRelated()),e.list.onChangeRelated();break}}},d.prototype.onShow=function(){this.node.classList.remove("jet-form-builder-page--hidden"),this.initialObserveState||(this.initialObserveState=!0,this.updateStateAsync().then(()=>{}).catch(()=>{}))},d.prototype.onHide=function(){this.node.classList.add("jet-form-builder-page--hidden")},d.prototype.updateState=function(){for(const t of this.getInputs())if(!t.reporting.validityState.current&&null!==t.reporting.validityState.current)return void(this.canSwitch.current=!1);this.canSwitch.current=!0},d.prototype.updateStateAsync=async function(t=!0){try{await o(this.getInputs(),t),this.canSwitch.current=!0}catch(t){this.canSwitch.current=!1}},d.prototype.addButtonsListeners=function(){const t=this.node.querySelectorAll(".jet-form-builder__next-page, .jet-form-builder__prev-page");for(const e of t){if(!this.isNodeBelongThis(e))continue;const t=e.classList.contains("jet-form-builder__prev-page");e.addEventListener("click",()=>this.changePage(t))}},d.prototype.changePage=async function(t){t?this.state.index.current=this.index-1:this.isLast()||this.getLockState().current||(await this.updateStateAsync(!1),this.canSwitch.current?this.state.index.current=this.index+1:this.autoFocus&&a(this.getInputs()))},d.prototype.isNodeBelongThis=function(t){const e=t.closest(".jet-form-builder-page");return!!e&&e.isEqualNode(this.node)},d.prototype.getInputs=function(){return c(this.inputs)},d.prototype.getLockState=function(){var t;const e=this.state.getRoot();return(null!==(t=e?.parent?.root?.form)&&void 0!==t?t:e.form).lockState},d.prototype.isLast=function(){return this.state.isLastPage(this)},d.prototype.isFirst=function(){return this.state.isFirstPage(this)},d.prototype.handleInputEnter=function(t){t?.enterKey?.addFilter(()=>{const e=t.root.form;return e?!0===e.canTriggerEnterSubmit&&this.changePage().then(()=>{}).catch(()=>{}):this.changePage().then(()=>{}).catch(()=>{}),!1})},d.prototype.registerInput=function(t,{includeInValidation:e=!0}={}){if(!t||this.inputBindings.has(t))return t;this.handleInputEnter(t);const i={clearLoadingWatch:t.loading.watch(()=>{t.loading.current?this.canSwitch.current=!1:this.updateState()}),clearValidityWatch:null};return t.reporting.restrictions.length&&(this.inputs.push(t),i.clearValidityWatch=t.watchValidity(()=>this.updateState()),e||(this.inputs=this.inputs.filter(e=>e!==t))),this.inputBindings.set(t,i),t},d.prototype.unregisterInput=function(t){if(!this.inputBindings.has(t))return;const e=this.inputBindings.get(t);e?.clearLoadingWatch?.(),e?.clearValidityWatch?.(),this.inputBindings.delete(t),this.inputs=this.inputs.filter(e=>e!==t)},d.prototype.getTrackedInputs=function(){return Array.from(this.inputBindings.keys())},d.prototype.getOffsetTop=function(){return r(this.node)-this.offset},d.prototype.updateOffsetByProgress=function(){this.state?.progress?.node&&(this.offset+=+this.state.progress.node.clientHeight)};const p=d,l=function(t,e){this.node=t,this.state=e,this.state.index.watch(()=>this.updateItems()),this.updateItems=function(){const{current:t}=this.state.index;for(const e of this.node.children){const i=+e.dataset.page;inew p(t,this)),this.elements.forEach(t=>t.observe()),this.elements.forEach(t=>t.observeConditionalBlocks());const{submitter:e}=this.getRoot().getSubmit();e.hasOwnProperty("status")&&e.watchReset(()=>{this.index.current=1})},this.onChangeIndex=function(){for(const t of this.getPages())t.isShow.current=t.index===this.index.current;window?.jQuery(document)?.trigger("jet-form-builder/switch-page")},this.getCurrentPage=function(){for(const t of this.getPages())if(t.isShow.current)return t;return!1},this.getPages=function(){return this.elements},this.getScopeNode=function(){var t;return null!==(t=this.block?.node)&&void 0!==t?t:this.root.rootNode},this.getRoot=function(){var t;return null!==(t=this.block?.root)&&void 0!==t?t:this.root},this.isLastPage=function(t){return this.elements.at(-1)===t},this.isFirstPage=function(t){return this.elements[0]===t},this.onReady=function(){m("jet.fb.multistep.init",this)}};function y(t){const e=new b;e.setScope(t);const i=[];for(const t of e.getScopeNode().childNodes)t?.classList?.contains("jet-form-builder-page")&&i.push(t);return i.length?(e.setProgress(),e.setPages(i),e):e}const{addAction:S,addFilter:w}=JetPlugins.hooks,{getScrollParent:v}=JetFormBuilderFunctions;S("jet.fb.observe.after","jet-form-builder/multi-step",function(t){const e=y(t);e.getPages()?.length&&(t.multistep=e,e.onReady())},15),S("jet.fb.conditional.init","jet-form-builder/multi-step",function(t){const e=y(t);e.getPages()?.length&&(t.multistep=e,e.onReady())}),w("jet.fb.conditional.types","jet-form-builder/multi-step",function(t){return[i,...t]}),S("jet.fb.multistep.init","jet-form-builder/multi-step/autoscroll",function(t){window?.JetFormBuilderSettings?.scroll_on_next&&t.index.watch(()=>{const e=t.getCurrentPage(),i=v(e.node),s=e.getOffsetTop();i?.scrollTo?.({top:s,behavior:"smooth"})})})})(); \ No newline at end of file diff --git a/modules/gateways/assets/build/admin/pages/jfb-payments-single.asset.php b/modules/gateways/assets/build/admin/pages/jfb-payments-single.asset.php index fb72c714d..9ef277f05 100644 --- a/modules/gateways/assets/build/admin/pages/jfb-payments-single.asset.php +++ b/modules/gateways/assets/build/admin/pages/jfb-payments-single.asset.php @@ -1 +1 @@ - array(), 'version' => 'f1b3e0ce05ec27b49a2b'); + array(), 'version' => '9c204f4f6820fa03877e'); diff --git a/modules/gateways/assets/build/admin/pages/jfb-payments-single.js b/modules/gateways/assets/build/admin/pages/jfb-payments-single.js index 379a09680..b167f1c0d 100644 --- a/modules/gateways/assets/build/admin/pages/jfb-payments-single.js +++ b/modules/gateways/assets/build/admin/pages/jfb-payments-single.js @@ -1 +1 @@ -(()=>{"use strict";var e=function(){var e=this.$createElement,t=this._self._c||e;return t("FormBuilderPage",[t("PostBoxGrid")],1)};e._withStripped=!0;const{PostBoxGrid:t,FormBuilderPage:r}=JetFBComponents,{mapGetters:n,mapMutations:o,mapActions:s}=Vuex;var a=function(e,t){var r,n=e;if(t&&(n.render=t,n.staticRenderFns=[],n._compiled=!0),r)if(n.functional){n._injectStyles=r;var o=n.render;n.render=function(e,t){return r.call(t),o(e,t)}}else{var s=n.beforeCreate;n.beforeCreate=s?[].concat(s,r):[r]}return{exports:e,options:n}}({name:"jfb-payments-single",components:{PostBoxGrid:t,FormBuilderPage:r},created(){jfbEventBus.$on("payment-details-delete",(()=>{this["scope-payment-details/actions/defaultDelete"]()}))},methods:{...s(["scope-payment-details/actions/defaultDelete"])}},e);const i=a.exports,{BaseStore:c,SingleMetaBoxesPlugin:l}=JetFBStore,{renderCurrentPage:d}=window.JetFBActions;d(i,{store:new Vuex.Store({...c,plugins:[l]})})})(); \ No newline at end of file +(()=>{"use strict";var e=function(){var e=this.$createElement,t=this._self._c||e;return t("FormBuilderPage",[t("PostBoxGrid")],1)};e._withStripped=!0;const{PostBoxGrid:t,FormBuilderPage:r}=JetFBComponents,{mapGetters:n,mapMutations:o,mapActions:s}=Vuex;var a=function(e,t){var r,n=e;if(t&&(n.render=t,n.staticRenderFns=[],n._compiled=!0),r)if(n.functional){n._injectStyles=r;var o=n.render;n.render=function(e,t){return r.call(t),o(e,t)}}else{var s=n.beforeCreate;n.beforeCreate=s?[].concat(s,r):[r]}return{exports:e,options:n}}({name:"jfb-payments-single",components:{PostBoxGrid:t,FormBuilderPage:r},created(){jfbEventBus.$on("payment-details-delete",()=>{this["scope-payment-details/actions/defaultDelete"]()})},methods:{...s(["scope-payment-details/actions/defaultDelete"])}},e);const i=a.exports,{BaseStore:c,SingleMetaBoxesPlugin:l}=JetFBStore,{renderCurrentPage:d}=window.JetFBActions;d(i,{store:new Vuex.Store({...c,plugins:[l]})})})(); \ No newline at end of file diff --git a/modules/onboarding/assets/build/editor.asset.php b/modules/onboarding/assets/build/editor.asset.php index cb32f382a..7cf132a3b 100644 --- a/modules/onboarding/assets/build/editor.asset.php +++ b/modules/onboarding/assets/build/editor.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-primitives'), 'version' => '33408e8eb838eb424e59'); + array('react', 'wp-components', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-primitives'), 'version' => '2b1e735cab4c1207a1d2'); diff --git a/modules/onboarding/assets/build/editor.js b/modules/onboarding/assets/build/editor.js index 80c4b106b..f9d561ec0 100644 --- a/modules/onboarding/assets/build/editor.js +++ b/modules/onboarding/assets/build/editor.js @@ -1 +1 @@ -(()=>{"use strict";var e={168:e=>{e.exports=function(e){return e[1]}},262:e=>{var C={};e.exports=function(e,t){var r=function(e){if(void 0===C[e]){var t=document.querySelector(e);if(window.HTMLIFrameElement&&t instanceof window.HTMLIFrameElement)try{t=t.contentDocument.head}catch(e){t=null}C[e]=t}return C[e]}(e);if(!r)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");r.appendChild(t)}},357:e=>{e.exports=function(e){var C=document.createElement("style");return e.setAttributes(C,e.attributes),e.insert(C,e.options),C}},363:(e,C,t)=>{t.d(C,{A:()=>i});var r=t(168),n=t.n(r),o=t(433),l=t.n(o)()(n());l.push([e.id,'.wp-block-jet-forms-welcome li.is-pro{position:relative;opacity:0.5}.wp-block-jet-forms-welcome li.is-pro .block-editor-block-variation-picker__variation::after{content:"PRO";position:absolute;top:0.4em;right:0.4em;background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));padding:0 0.2em;border-radius:0.5em;color:var(--wp-components-color-accent-inverted,#fff);border:1px solid var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));font-size:0.9em}.wp-block-jet-forms-welcome .block-editor-block-variation-picker__variations{gap:0.4em}.wp-block-jet-forms-welcome .block-editor-block-variation-picker__variations>li{width:-moz-min-content;width:min-content;margin:0.6em 0}.wp-block-jet-forms-welcome .block-editor-block-variation-picker__variations>li .components-button{padding:1.5em}',""]);const i=l},433:e=>{e.exports=function(e){var C=[];return C.toString=function(){return this.map((function(C){var t="",r=void 0!==C[5];return C[4]&&(t+="@supports (".concat(C[4],") {")),C[2]&&(t+="@media ".concat(C[2]," {")),r&&(t+="@layer".concat(C[5].length>0?" ".concat(C[5]):""," {")),t+=e(C),r&&(t+="}"),C[2]&&(t+="}"),C[4]&&(t+="}"),t})).join("")},C.i=function(e,t,r,n,o){"string"==typeof e&&(e=[[null,e,void 0]]);var l={};if(r)for(var i=0;i0?" ".concat(s[5]):""," {").concat(s[1],"}")),s[5]=o),t&&(s[2]?(s[1]="@media ".concat(s[2]," {").concat(s[1],"}"),s[2]=t):s[2]=t),n&&(s[4]?(s[1]="@supports (".concat(s[4],") {").concat(s[1],"}"),s[4]=n):s[4]="".concat(n)),C.push(s))}},C}},598:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var C=e.insertStyleElement(e);return{update:function(t){!function(e,C,t){var r="";t.supports&&(r+="@supports (".concat(t.supports,") {")),t.media&&(r+="@media ".concat(t.media," {"));var n=void 0!==t.layer;n&&(r+="@layer".concat(t.layer.length>0?" ".concat(t.layer):""," {")),r+=t.css,n&&(r+="}"),t.media&&(r+="}"),t.supports&&(r+="}");var o=t.sourceMap;o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),C.styleTagTransform(r,e,C.options)}(C,e,t)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(C)}}}},626:e=>{e.exports=function(e,C){if(C.styleSheet)C.styleSheet.cssText=e;else{for(;C.firstChild;)C.removeChild(C.firstChild);C.appendChild(document.createTextNode(e))}}},657:(e,C,t)=>{e.exports=function(e){var C=t.nc;C&&e.setAttribute("nonce",C)}},673:e=>{var C=[];function t(e){for(var t=-1,r=0;r{t.d(C,{A:()=>i});var r=t(168),n=t.n(r),o=t(433),l=t.n(o)()(n());l.push([e.id,'div[id="jfb-use-form:sidebar"]{display:none}button[aria-controls="jfb-use-form:sidebar"]>svg{transform:rotateY(180deg)}',""]);const i=l}},C={};function t(r){var n=C[r];if(void 0!==n)return n.exports;var o=C[r]={id:r,exports:{}};return e[r](o,o.exports,t),o.exports}t.n=e=>{var C=e&&e.__esModule?()=>e.default:()=>e;return t.d(C,{a:C}),C},t.d=(e,C)=>{for(var r in C)t.o(C,r)&&!t.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:C[r]})},t.o=(e,C)=>Object.prototype.hasOwnProperty.call(e,C),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.nc=void 0;var r={};t.r(r),t.d(r,{metadata:()=>V,name:()=>B,settings:()=>P});const n=window.React,o=(0,n.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,n.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,n.createElement)("rect",{x:"12",y:"12",width:"86",height:"120",rx:"4",fill:"white"}),(0,n.createElement)("rect",{x:"25",y:"25",width:"60",height:"60",rx:"4",fill:"#F1F5F9"}),(0,n.createElement)("path",{d:"M47.8 41C47.3582 41 47 41.4477 47 42C47 42.5523 47.3582 43 47.8 43H62.2C62.6418 43 63 42.5523 63 42C63 41.4477 62.6418 41 62.2 41H47.8Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M43 50C43 48.3431 44.3431 47 46 47H64C65.6569 47 67 48.3431 67 50C67 51.6569 65.6569 53 64 53H46C44.3431 53 43 51.6569 43 50ZM46 49C45.4477 49 45 49.4477 45 50C45 50.5523 45.4477 51 46 51H64C64.5523 51 65 50.5523 65 50C65 49.4477 64.5523 49 64 49H46Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M46 55C44.3431 55 43 56.3431 43 58C43 59.6569 44.3431 61 46 61H64C65.6569 61 67 59.6569 67 58C67 56.3431 65.6569 55 64 55H46ZM45 58C45 57.4477 45.4477 57 46 57H64C64.5523 57 65 57.4477 65 58C65 58.5523 64.5523 59 64 59H46C45.4477 59 45 58.5523 45 58Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M49 66C49 64.3431 50.3431 63 52 63H58C59.6569 63 61 64.3431 61 66C61 67.6569 59.6569 69 58 69H52C50.3431 69 49 67.6569 49 66ZM52 65C51.4477 65 51 65.4477 51 66C51 66.5523 51.4477 67 52 67H58C58.5523 67 59 66.5523 59 66C59 65.4477 58.5523 65 58 65H52Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M39 39C39 36.7909 40.7909 35 43 35H67C69.2091 35 71 36.7909 71 39V71C71 73.2091 69.2091 75 67 75H43C40.7909 75 39 73.2091 39 71V39ZM43 37H67C68.1046 37 69 37.8954 69 39V71C69 72.1046 68.1046 73 67 73H43C41.8954 73 41 72.1046 41 71V39C41 37.8954 41.8954 37 43 37Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M25.207 99.2871H26.332C26.2734 99.8262 26.1191 100.309 25.8691 100.734C25.6191 101.16 25.2656 101.498 24.8086 101.748C24.3516 101.994 23.7812 102.117 23.0977 102.117C22.5977 102.117 22.1426 102.023 21.7324 101.836C21.3262 101.648 20.9766 101.383 20.6836 101.039C20.3906 100.691 20.1641 100.275 20.0039 99.791C19.8477 99.3027 19.7695 98.7598 19.7695 98.1621V97.3125C19.7695 96.7148 19.8477 96.1738 20.0039 95.6895C20.1641 95.2012 20.3926 94.7832 20.6895 94.4355C20.9902 94.0879 21.3516 93.8203 21.7734 93.6328C22.1953 93.4453 22.6699 93.3516 23.1973 93.3516C23.8418 93.3516 24.3867 93.4727 24.832 93.7148C25.2773 93.957 25.623 94.293 25.8691 94.7227C26.1191 95.1484 26.2734 95.6426 26.332 96.2051H25.207C25.1523 95.8066 25.0508 95.4648 24.9023 95.1797C24.7539 94.8906 24.543 94.668 24.2695 94.5117C23.9961 94.3555 23.6387 94.2773 23.1973 94.2773C22.8184 94.2773 22.4844 94.3496 22.1953 94.4941C21.9102 94.6387 21.6699 94.8438 21.4746 95.1094C21.2832 95.375 21.1387 95.6934 21.041 96.0645C20.9434 96.4355 20.8945 96.8477 20.8945 97.3008V98.1621C20.8945 98.5801 20.9375 98.9727 21.0234 99.3398C21.1133 99.707 21.248 100.029 21.4277 100.307C21.6074 100.584 21.8359 100.803 22.1133 100.963C22.3906 101.119 22.7188 101.197 23.0977 101.197C23.5781 101.197 23.9609 101.121 24.2461 100.969C24.5312 100.816 24.7461 100.598 24.8906 100.312C25.0391 100.027 25.1445 99.6855 25.207 99.2871ZM27.4219 98.9004V98.7656C27.4219 98.3086 27.4883 97.8848 27.6211 97.4941C27.7539 97.0996 27.9453 96.7578 28.1953 96.4688C28.4453 96.1758 28.748 95.9492 29.1035 95.7891C29.459 95.625 29.8574 95.543 30.2988 95.543C30.7441 95.543 31.1445 95.625 31.5 95.7891C31.8594 95.9492 32.1641 96.1758 32.4141 96.4688C32.668 96.7578 32.8613 97.0996 32.9941 97.4941C33.127 97.8848 33.1934 98.3086 33.1934 98.7656V98.9004C33.1934 99.3574 33.127 99.7812 32.9941 100.172C32.8613 100.562 32.668 100.904 32.4141 101.197C32.1641 101.486 31.8613 101.713 31.5059 101.877C31.1543 102.037 30.7559 102.117 30.3105 102.117C29.8652 102.117 29.4648 102.037 29.1094 101.877C28.7539 101.713 28.4492 101.486 28.1953 101.197C27.9453 100.904 27.7539 100.562 27.6211 100.172C27.4883 99.7812 27.4219 99.3574 27.4219 98.9004ZM28.5059 98.7656V98.9004C28.5059 99.2168 28.543 99.5156 28.6172 99.7969C28.6914 100.074 28.8027 100.32 28.9512 100.535C29.1035 100.75 29.293 100.92 29.5195 101.045C29.7461 101.166 30.0098 101.227 30.3105 101.227C30.6074 101.227 30.8672 101.166 31.0898 101.045C31.3164 100.92 31.5039 100.75 31.6523 100.535C31.8008 100.32 31.9121 100.074 31.9863 99.7969C32.0645 99.5156 32.1035 99.2168 32.1035 98.9004V98.7656C32.1035 98.4531 32.0645 98.1582 31.9863 97.8809C31.9121 97.5996 31.7988 97.3516 31.6465 97.1367C31.498 96.918 31.3105 96.7461 31.084 96.6211C30.8613 96.4961 30.5996 96.4336 30.2988 96.4336C30.002 96.4336 29.7402 96.4961 29.5137 96.6211C29.291 96.7461 29.1035 96.918 28.9512 97.1367C28.8027 97.3516 28.6914 97.5996 28.6172 97.8809C28.543 98.1582 28.5059 98.4531 28.5059 98.7656ZM35.6367 97.0137V102H34.5527V95.6602H35.5781L35.6367 97.0137ZM35.3789 98.5898L34.9277 98.5723C34.9316 98.1387 34.9961 97.7383 35.1211 97.3711C35.2461 97 35.4219 96.6777 35.6484 96.4043C35.875 96.1309 36.1445 95.9199 36.457 95.7715C36.7734 95.6191 37.123 95.543 37.5059 95.543C37.8184 95.543 38.0996 95.5859 38.3496 95.6719C38.5996 95.7539 38.8125 95.8867 38.9883 96.0703C39.168 96.2539 39.3047 96.4922 39.3984 96.7852C39.4922 97.0742 39.5391 97.4277 39.5391 97.8457V102H38.4492V97.834C38.4492 97.502 38.4004 97.2363 38.3027 97.0371C38.2051 96.834 38.0625 96.6875 37.875 96.5977C37.6875 96.5039 37.457 96.457 37.1836 96.457C36.9141 96.457 36.668 96.5137 36.4453 96.627C36.2266 96.7402 36.0371 96.8965 35.877 97.0957C35.7207 97.2949 35.5977 97.5234 35.5078 97.7812C35.4219 98.0352 35.3789 98.3047 35.3789 98.5898ZM43.8398 95.6602V96.4922H40.4121V95.6602H43.8398ZM41.5723 94.1191H42.6562V100.43C42.6562 100.645 42.6895 100.807 42.7559 100.916C42.8223 101.025 42.9082 101.098 43.0137 101.133C43.1191 101.168 43.2324 101.186 43.3535 101.186C43.4434 101.186 43.5371 101.178 43.6348 101.162C43.7363 101.143 43.8125 101.127 43.8633 101.115L43.8691 102C43.7832 102.027 43.6699 102.053 43.5293 102.076C43.3926 102.104 43.2266 102.117 43.0312 102.117C42.7656 102.117 42.5215 102.064 42.2988 101.959C42.0762 101.854 41.8984 101.678 41.7656 101.432C41.6367 101.182 41.5723 100.846 41.5723 100.424V94.1191ZM48.8496 100.916V97.6523C48.8496 97.4023 48.7988 97.1855 48.6973 97.002C48.5996 96.8145 48.4512 96.6699 48.252 96.5684C48.0527 96.4668 47.8066 96.416 47.5137 96.416C47.2402 96.416 47 96.4629 46.793 96.5566C46.5898 96.6504 46.4297 96.7734 46.3125 96.9258C46.1992 97.0781 46.1426 97.2422 46.1426 97.418H45.0586C45.0586 97.1914 45.1172 96.9668 45.2344 96.7441C45.3516 96.5215 45.5195 96.3203 45.7383 96.1406C45.9609 95.957 46.2266 95.8125 46.5352 95.707C46.8477 95.5977 47.1953 95.543 47.5781 95.543C48.0391 95.543 48.4453 95.6211 48.7969 95.7773C49.1523 95.9336 49.4297 96.1699 49.6289 96.4863C49.832 96.7988 49.9336 97.1914 49.9336 97.6641V100.617C49.9336 100.828 49.9512 101.053 49.9863 101.291C50.0254 101.529 50.082 101.734 50.1562 101.906V102H49.0254C48.9707 101.875 48.9277 101.709 48.8965 101.502C48.8652 101.291 48.8496 101.096 48.8496 100.916ZM49.0371 98.1562L49.0488 98.918H47.9531C47.6445 98.918 47.3691 98.9434 47.127 98.9941C46.8848 99.041 46.6816 99.1133 46.5176 99.2109C46.3535 99.3086 46.2285 99.4316 46.1426 99.5801C46.0566 99.7246 46.0137 99.8945 46.0137 100.09C46.0137 100.289 46.0586 100.471 46.1484 100.635C46.2383 100.799 46.373 100.93 46.5527 101.027C46.7363 101.121 46.9609 101.168 47.2266 101.168C47.5586 101.168 47.8516 101.098 48.1055 100.957C48.3594 100.816 48.5605 100.645 48.709 100.441C48.8613 100.238 48.9434 100.041 48.9551 99.8496L49.418 100.371C49.3906 100.535 49.3164 100.717 49.1953 100.916C49.0742 101.115 48.9121 101.307 48.709 101.49C48.5098 101.67 48.2715 101.82 47.9941 101.941C47.7207 102.059 47.4121 102.117 47.0684 102.117C46.6387 102.117 46.2617 102.033 45.9375 101.865C45.6172 101.697 45.3672 101.473 45.1875 101.191C45.0117 100.906 44.9238 100.588 44.9238 100.236C44.9238 99.8965 44.9902 99.5977 45.123 99.3398C45.2559 99.0781 45.4473 98.8613 45.6973 98.6895C45.9473 98.5137 46.248 98.3809 46.5996 98.291C46.9512 98.2012 47.3438 98.1562 47.7773 98.1562H49.0371ZM54.1758 101.227C54.4336 101.227 54.6719 101.174 54.8906 101.068C55.1094 100.963 55.2891 100.818 55.4297 100.635C55.5703 100.447 55.6504 100.234 55.6699 99.9961H56.7012C56.6816 100.371 56.5547 100.721 56.3203 101.045C56.0898 101.365 55.7871 101.625 55.4121 101.824C55.0371 102.02 54.625 102.117 54.1758 102.117C53.6992 102.117 53.2832 102.033 52.9277 101.865C52.5762 101.697 52.2832 101.467 52.0488 101.174C51.8184 100.881 51.6445 100.545 51.5273 100.166C51.4141 99.7832 51.3574 99.3789 51.3574 98.9531V98.707C51.3574 98.2812 51.4141 97.8789 51.5273 97.5C51.6445 97.1172 51.8184 96.7793 52.0488 96.4863C52.2832 96.1934 52.5762 95.9629 52.9277 95.7949C53.2832 95.627 53.6992 95.543 54.1758 95.543C54.6719 95.543 55.1055 95.6445 55.4766 95.8477C55.8477 96.0469 56.1387 96.3203 56.3496 96.668C56.5645 97.0117 56.6816 97.4023 56.7012 97.8398H55.6699C55.6504 97.5781 55.5762 97.3418 55.4473 97.1309C55.3223 96.9199 55.1504 96.752 54.9316 96.627C54.7168 96.498 54.4648 96.4336 54.1758 96.4336C53.8438 96.4336 53.5645 96.5 53.3379 96.6328C53.1152 96.7617 52.9375 96.9375 52.8047 97.1602C52.6758 97.3789 52.582 97.623 52.5234 97.8926C52.4688 98.1582 52.4414 98.4297 52.4414 98.707V98.9531C52.4414 99.2305 52.4688 99.5039 52.5234 99.7734C52.5781 100.043 52.6699 100.287 52.7988 100.506C52.9316 100.725 53.1094 100.9 53.332 101.033C53.5586 101.162 53.8398 101.227 54.1758 101.227ZM60.5742 95.6602V96.4922H57.1465V95.6602H60.5742ZM58.3066 94.1191H59.3906V100.43C59.3906 100.645 59.4238 100.807 59.4902 100.916C59.5566 101.025 59.6426 101.098 59.748 101.133C59.8535 101.168 59.9668 101.186 60.0879 101.186C60.1777 101.186 60.2715 101.178 60.3691 101.162C60.4707 101.143 60.5469 101.127 60.5977 101.115L60.6035 102C60.5176 102.027 60.4043 102.053 60.2637 102.076C60.127 102.104 59.9609 102.117 59.7656 102.117C59.5 102.117 59.2559 102.064 59.0332 101.959C58.8105 101.854 58.6328 101.678 58.5 101.432C58.3711 101.182 58.3066 100.846 58.3066 100.424V94.1191ZM66.1172 93.4688V102H64.9863V93.4688H66.1172ZM69.6914 97.3066V98.2324H65.8711V97.3066H69.6914ZM70.2715 93.4688V94.3945H65.8711V93.4688H70.2715ZM71.0391 98.9004V98.7656C71.0391 98.3086 71.1055 97.8848 71.2383 97.4941C71.3711 97.0996 71.5625 96.7578 71.8125 96.4688C72.0625 96.1758 72.3652 95.9492 72.7207 95.7891C73.0762 95.625 73.4746 95.543 73.916 95.543C74.3613 95.543 74.7617 95.625 75.1172 95.7891C75.4766 95.9492 75.7812 96.1758 76.0312 96.4688C76.2852 96.7578 76.4785 97.0996 76.6113 97.4941C76.7441 97.8848 76.8105 98.3086 76.8105 98.7656V98.9004C76.8105 99.3574 76.7441 99.7812 76.6113 100.172C76.4785 100.562 76.2852 100.904 76.0312 101.197C75.7812 101.486 75.4785 101.713 75.123 101.877C74.7715 102.037 74.373 102.117 73.9277 102.117C73.4824 102.117 73.082 102.037 72.7266 101.877C72.3711 101.713 72.0664 101.486 71.8125 101.197C71.5625 100.904 71.3711 100.562 71.2383 100.172C71.1055 99.7812 71.0391 99.3574 71.0391 98.9004ZM72.123 98.7656V98.9004C72.123 99.2168 72.1602 99.5156 72.2344 99.7969C72.3086 100.074 72.4199 100.32 72.5684 100.535C72.7207 100.75 72.9102 100.92 73.1367 101.045C73.3633 101.166 73.627 101.227 73.9277 101.227C74.2246 101.227 74.4844 101.166 74.707 101.045C74.9336 100.92 75.1211 100.75 75.2695 100.535C75.418 100.32 75.5293 100.074 75.6035 99.7969C75.6816 99.5156 75.7207 99.2168 75.7207 98.9004V98.7656C75.7207 98.4531 75.6816 98.1582 75.6035 97.8809C75.5293 97.5996 75.416 97.3516 75.2637 97.1367C75.1152 96.918 74.9277 96.7461 74.7012 96.6211C74.4785 96.4961 74.2168 96.4336 73.916 96.4336C73.6191 96.4336 73.3574 96.4961 73.1309 96.6211C72.9082 96.7461 72.7207 96.918 72.5684 97.1367C72.4199 97.3516 72.3086 97.5996 72.2344 97.8809C72.1602 98.1582 72.123 98.4531 72.123 98.7656ZM79.2539 96.6562V102H78.1699V95.6602H79.2246L79.2539 96.6562ZM81.2344 95.625L81.2285 96.6328C81.1387 96.6133 81.0527 96.6016 80.9707 96.5977C80.8926 96.5898 80.8027 96.5859 80.7012 96.5859C80.4512 96.5859 80.2305 96.625 80.0391 96.7031C79.8477 96.7812 79.6855 96.8906 79.5527 97.0312C79.4199 97.1719 79.3145 97.3398 79.2363 97.5352C79.1621 97.7266 79.1133 97.9375 79.0898 98.168L78.7852 98.3438C78.7852 97.9609 78.8223 97.6016 78.8965 97.2656C78.9746 96.9297 79.0938 96.6328 79.2539 96.375C79.4141 96.1133 79.6172 95.9102 79.8633 95.7656C80.1133 95.6172 80.4102 95.543 80.7539 95.543C80.832 95.543 80.9219 95.5527 81.0234 95.5723C81.125 95.5879 81.1953 95.6055 81.2344 95.625ZM83.3145 96.9199V102H82.2246V95.6602H83.2559L83.3145 96.9199ZM83.0918 98.5898L82.5879 98.5723C82.5918 98.1387 82.6484 97.7383 82.7578 97.3711C82.8672 97 83.0293 96.6777 83.2441 96.4043C83.459 96.1309 83.7266 95.9199 84.0469 95.7715C84.3672 95.6191 84.7383 95.543 85.1602 95.543C85.457 95.543 85.7305 95.5859 85.9805 95.6719C86.2305 95.7539 86.4473 95.8848 86.6309 96.0645C86.8145 96.2441 86.957 96.4746 87.0586 96.7559C87.1602 97.0371 87.2109 97.377 87.2109 97.7754V102H86.127V97.8281C86.127 97.4961 86.0703 97.2305 85.957 97.0312C85.8477 96.832 85.6914 96.6875 85.4883 96.5977C85.2852 96.5039 85.0469 96.457 84.7734 96.457C84.4531 96.457 84.1855 96.5137 83.9707 96.627C83.7559 96.7402 83.584 96.8965 83.4551 97.0957C83.3262 97.2949 83.2324 97.5234 83.1738 97.7812C83.1191 98.0352 83.0918 98.3047 83.0918 98.5898ZM87.1992 97.9922L86.4727 98.2148C86.4766 97.8672 86.5332 97.5332 86.6426 97.2129C86.7559 96.8926 86.918 96.6074 87.1289 96.3574C87.3438 96.1074 87.6074 95.9102 87.9199 95.7656C88.2324 95.6172 88.5898 95.543 88.9922 95.543C89.332 95.543 89.6328 95.5879 89.8945 95.6777C90.1602 95.7676 90.3828 95.9062 90.5625 96.0938C90.7461 96.2773 90.8848 96.5137 90.9785 96.8027C91.0723 97.0918 91.1191 97.4355 91.1191 97.834V102H90.0293V97.8223C90.0293 97.4668 89.9727 97.1914 89.8594 96.9961C89.75 96.7969 89.5938 96.6582 89.3906 96.5801C89.1914 96.498 88.9531 96.457 88.6758 96.457C88.4375 96.457 88.2266 96.498 88.043 96.5801C87.8594 96.6621 87.7051 96.7754 87.5801 96.9199C87.4551 97.0605 87.3594 97.2227 87.293 97.4062C87.2305 97.5898 87.1992 97.7852 87.1992 97.9922Z",fill:"#0F172A"}),(0,n.createElement)("rect",{x:"19",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"25",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"107",y:"13",width:"84",height:"118",rx:"3",fill:"white",stroke:"#4272F9",strokeWidth:"2"}),(0,n.createElement)("rect",{x:"119",y:"25",width:"60",height:"60",rx:"4",fill:"#F1F5F9"}),(0,n.createElement)("path",{d:"M136 46.0444C135.448 46.0444 135 46.4954 135 47.0517C135 47.6081 135.448 48.0591 136 48.0591H156C156.552 48.0591 157 47.6081 157 47.0517C157 46.4954 156.552 46.0444 156 46.0444H136Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M135 51.0813C135 50.5249 135.448 50.0739 136 50.0739H156C156.552 50.0739 157 50.5249 157 51.0813C157 51.6377 156.552 52.0887 156 52.0887H136C135.448 52.0887 135 51.6377 135 51.0813Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M136 54.1035C135.448 54.1035 135 54.5545 135 55.1109C135 55.6672 135.448 56.1183 136 56.1183H151C151.552 56.1183 152 55.6672 152 55.1109C152 54.5545 151.552 54.1035 151 54.1035H136Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M131 44.0296C131 41.8041 132.791 40 135 40H157C159.209 40 161 41.8041 161 44.0296V55.1109H163C165.209 55.1109 167 56.915 167 59.1404V65.1848C167 67.4103 165.209 69.2144 163 69.2144H162.286L159.866 71.839C159.669 72.0537 159.331 72.0537 159.134 71.839L156.714 69.2144H151C148.791 69.2144 147 67.4103 147 65.1848V62.1626H144.214L140.866 65.7947C140.669 66.0093 140.331 66.0093 140.134 65.7947L136.786 62.1626H135C132.791 62.1626 131 60.3585 131 58.1331V44.0296ZM137.658 60.1478L140.5 63.2312L143.342 60.1478H157C158.105 60.1478 159 59.2458 159 58.1331V44.0296C159 42.9168 158.105 42.0148 157 42.0148H135C133.895 42.0148 133 42.9168 133 44.0296V58.1331C133 59.2458 133.895 60.1478 135 60.1478H137.658ZM149 62.1626V65.1848C149 66.2975 149.895 67.1996 151 67.1996H157.586L159.5 69.2756L161.414 67.1996H163C164.105 67.1996 165 66.2975 165 65.1848V59.1404C165 58.0277 164.105 57.1257 163 57.1257H161V58.1331C161 60.3585 159.209 62.1626 157 62.1626H149Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M125.436 93.4688V102H124.305V93.4688H125.436ZM129.01 97.3066V98.2324H125.189V97.3066H129.01ZM129.59 93.4688V94.3945H125.189V93.4688H129.59ZM133.275 102.117C132.834 102.117 132.434 102.043 132.074 101.895C131.719 101.742 131.412 101.529 131.154 101.256C130.9 100.982 130.705 100.658 130.568 100.283C130.432 99.9082 130.363 99.498 130.363 99.0527V98.8066C130.363 98.291 130.439 97.832 130.592 97.4297C130.744 97.0234 130.951 96.6797 131.213 96.3984C131.475 96.1172 131.771 95.9043 132.104 95.7598C132.436 95.6152 132.779 95.543 133.135 95.543C133.588 95.543 133.979 95.6211 134.307 95.7773C134.639 95.9336 134.91 96.1523 135.121 96.4336C135.332 96.7109 135.488 97.0391 135.59 97.418C135.691 97.793 135.742 98.2031 135.742 98.6484V99.1348H131.008V98.25H134.658V98.168C134.643 97.8867 134.584 97.6133 134.482 97.3477C134.385 97.082 134.229 96.8633 134.014 96.6914C133.799 96.5195 133.506 96.4336 133.135 96.4336C132.889 96.4336 132.662 96.4863 132.455 96.5918C132.248 96.6934 132.07 96.8457 131.922 97.0488C131.773 97.252 131.658 97.5 131.576 97.793C131.494 98.0859 131.453 98.4238 131.453 98.8066V99.0527C131.453 99.3535 131.494 99.6367 131.576 99.9023C131.662 100.164 131.785 100.395 131.945 100.594C132.109 100.793 132.307 100.949 132.537 101.062C132.771 101.176 133.037 101.232 133.334 101.232C133.717 101.232 134.041 101.154 134.307 100.998C134.572 100.842 134.805 100.633 135.004 100.371L135.66 100.893C135.523 101.1 135.35 101.297 135.139 101.484C134.928 101.672 134.668 101.824 134.359 101.941C134.055 102.059 133.693 102.117 133.275 102.117ZM139.639 102.117C139.197 102.117 138.797 102.043 138.438 101.895C138.082 101.742 137.775 101.529 137.518 101.256C137.264 100.982 137.068 100.658 136.932 100.283C136.795 99.9082 136.727 99.498 136.727 99.0527V98.8066C136.727 98.291 136.803 97.832 136.955 97.4297C137.107 97.0234 137.314 96.6797 137.576 96.3984C137.838 96.1172 138.135 95.9043 138.467 95.7598C138.799 95.6152 139.143 95.543 139.498 95.543C139.951 95.543 140.342 95.6211 140.67 95.7773C141.002 95.9336 141.273 96.1523 141.484 96.4336C141.695 96.7109 141.852 97.0391 141.953 97.418C142.055 97.793 142.105 98.2031 142.105 98.6484V99.1348H137.371V98.25H141.021V98.168C141.006 97.8867 140.947 97.6133 140.846 97.3477C140.748 97.082 140.592 96.8633 140.377 96.6914C140.162 96.5195 139.869 96.4336 139.498 96.4336C139.252 96.4336 139.025 96.4863 138.818 96.5918C138.611 96.6934 138.434 96.8457 138.285 97.0488C138.137 97.252 138.021 97.5 137.939 97.793C137.857 98.0859 137.816 98.4238 137.816 98.8066V99.0527C137.816 99.3535 137.857 99.6367 137.939 99.9023C138.025 100.164 138.148 100.395 138.309 100.594C138.473 100.793 138.67 100.949 138.9 101.062C139.135 101.176 139.4 101.232 139.697 101.232C140.08 101.232 140.404 101.154 140.67 100.998C140.936 100.842 141.168 100.633 141.367 100.371L142.023 100.893C141.887 101.1 141.713 101.297 141.502 101.484C141.291 101.672 141.031 101.824 140.723 101.941C140.418 102.059 140.057 102.117 139.639 102.117ZM147.367 100.77V93H148.457V102H147.461L147.367 100.77ZM143.102 98.9004V98.7773C143.102 98.293 143.16 97.8535 143.277 97.459C143.398 97.0605 143.568 96.7188 143.787 96.4336C144.01 96.1484 144.273 95.9297 144.578 95.7773C144.887 95.6211 145.23 95.543 145.609 95.543C146.008 95.543 146.355 95.6133 146.652 95.7539C146.953 95.8906 147.207 96.0918 147.414 96.3574C147.625 96.6191 147.791 96.9355 147.912 97.3066C148.033 97.6777 148.117 98.0977 148.164 98.5664V99.1055C148.121 99.5703 148.037 99.9883 147.912 100.359C147.791 100.73 147.625 101.047 147.414 101.309C147.207 101.57 146.953 101.771 146.652 101.912C146.352 102.049 146 102.117 145.598 102.117C145.227 102.117 144.887 102.037 144.578 101.877C144.273 101.717 144.01 101.492 143.787 101.203C143.568 100.914 143.398 100.574 143.277 100.184C143.16 99.7891 143.102 99.3613 143.102 98.9004ZM144.191 98.7773V98.9004C144.191 99.2168 144.223 99.5137 144.285 99.791C144.352 100.068 144.453 100.312 144.59 100.523C144.727 100.734 144.9 100.9 145.111 101.021C145.322 101.139 145.574 101.197 145.867 101.197C146.227 101.197 146.521 101.121 146.752 100.969C146.986 100.816 147.174 100.615 147.314 100.365C147.455 100.115 147.564 99.8438 147.643 99.5508V98.1387C147.596 97.9238 147.527 97.7168 147.438 97.5176C147.352 97.3145 147.238 97.1348 147.098 96.9785C146.961 96.8184 146.791 96.6914 146.588 96.5977C146.389 96.5039 146.152 96.457 145.879 96.457C145.582 96.457 145.326 96.5195 145.111 96.6445C144.9 96.7656 144.727 96.9336 144.59 97.1484C144.453 97.3594 144.352 97.6055 144.285 97.8867C144.223 98.1641 144.191 98.4609 144.191 98.7773ZM153.35 98.0098H151.188L151.176 97.1016H153.139C153.463 97.1016 153.746 97.0469 153.988 96.9375C154.23 96.8281 154.418 96.6719 154.551 96.4688C154.688 96.2617 154.756 96.0156 154.756 95.7305C154.756 95.418 154.695 95.1641 154.574 94.9688C154.457 94.7695 154.275 94.625 154.029 94.5352C153.787 94.4414 153.479 94.3945 153.104 94.3945H151.439V102H150.309V93.4688H153.104C153.541 93.4688 153.932 93.5137 154.275 93.6035C154.619 93.6895 154.91 93.8262 155.148 94.0137C155.391 94.1973 155.574 94.4316 155.699 94.7168C155.824 95.002 155.887 95.3438 155.887 95.7422C155.887 96.0938 155.797 96.4121 155.617 96.6973C155.438 96.9785 155.188 97.209 154.867 97.3887C154.551 97.5684 154.18 97.6836 153.754 97.7344L153.35 98.0098ZM153.297 102H150.742L151.381 101.08H153.297C153.656 101.08 153.961 101.018 154.211 100.893C154.465 100.768 154.658 100.592 154.791 100.365C154.924 100.135 154.99 99.8633 154.99 99.5508C154.99 99.2344 154.934 98.9609 154.82 98.7305C154.707 98.5 154.529 98.3223 154.287 98.1973C154.045 98.0723 153.732 98.0098 153.35 98.0098H151.738L151.75 97.1016H153.953L154.193 97.4297C154.604 97.4648 154.951 97.582 155.236 97.7812C155.521 97.9766 155.738 98.2266 155.887 98.5312C156.039 98.8359 156.115 99.1719 156.115 99.5391C156.115 100.07 155.998 100.52 155.764 100.887C155.533 101.25 155.207 101.527 154.785 101.719C154.363 101.906 153.867 102 153.297 102ZM161.359 100.916V97.6523C161.359 97.4023 161.309 97.1855 161.207 97.002C161.109 96.8145 160.961 96.6699 160.762 96.5684C160.562 96.4668 160.316 96.416 160.023 96.416C159.75 96.416 159.51 96.4629 159.303 96.5566C159.1 96.6504 158.939 96.7734 158.822 96.9258C158.709 97.0781 158.652 97.2422 158.652 97.418H157.568C157.568 97.1914 157.627 96.9668 157.744 96.7441C157.861 96.5215 158.029 96.3203 158.248 96.1406C158.471 95.957 158.736 95.8125 159.045 95.707C159.357 95.5977 159.705 95.543 160.088 95.543C160.549 95.543 160.955 95.6211 161.307 95.7773C161.662 95.9336 161.939 96.1699 162.139 96.4863C162.342 96.7988 162.443 97.1914 162.443 97.6641V100.617C162.443 100.828 162.461 101.053 162.496 101.291C162.535 101.529 162.592 101.734 162.666 101.906V102H161.535C161.48 101.875 161.438 101.709 161.406 101.502C161.375 101.291 161.359 101.096 161.359 100.916ZM161.547 98.1562L161.559 98.918H160.463C160.154 98.918 159.879 98.9434 159.637 98.9941C159.395 99.041 159.191 99.1133 159.027 99.2109C158.863 99.3086 158.738 99.4316 158.652 99.5801C158.566 99.7246 158.523 99.8945 158.523 100.09C158.523 100.289 158.568 100.471 158.658 100.635C158.748 100.799 158.883 100.93 159.062 101.027C159.246 101.121 159.471 101.168 159.736 101.168C160.068 101.168 160.361 101.098 160.615 100.957C160.869 100.816 161.07 100.645 161.219 100.441C161.371 100.238 161.453 100.041 161.465 99.8496L161.928 100.371C161.9 100.535 161.826 100.717 161.705 100.916C161.584 101.115 161.422 101.307 161.219 101.49C161.02 101.67 160.781 101.82 160.504 101.941C160.23 102.059 159.922 102.117 159.578 102.117C159.148 102.117 158.771 102.033 158.447 101.865C158.127 101.697 157.877 101.473 157.697 101.191C157.521 100.906 157.434 100.588 157.434 100.236C157.434 99.8965 157.5 99.5977 157.633 99.3398C157.766 99.0781 157.957 98.8613 158.207 98.6895C158.457 98.5137 158.758 98.3809 159.109 98.291C159.461 98.2012 159.854 98.1562 160.287 98.1562H161.547ZM166.686 101.227C166.943 101.227 167.182 101.174 167.4 101.068C167.619 100.963 167.799 100.818 167.939 100.635C168.08 100.447 168.16 100.234 168.18 99.9961H169.211C169.191 100.371 169.064 100.721 168.83 101.045C168.6 101.365 168.297 101.625 167.922 101.824C167.547 102.02 167.135 102.117 166.686 102.117C166.209 102.117 165.793 102.033 165.438 101.865C165.086 101.697 164.793 101.467 164.559 101.174C164.328 100.881 164.154 100.545 164.037 100.166C163.924 99.7832 163.867 99.3789 163.867 98.9531V98.707C163.867 98.2812 163.924 97.8789 164.037 97.5C164.154 97.1172 164.328 96.7793 164.559 96.4863C164.793 96.1934 165.086 95.9629 165.438 95.7949C165.793 95.627 166.209 95.543 166.686 95.543C167.182 95.543 167.615 95.6445 167.986 95.8477C168.357 96.0469 168.648 96.3203 168.859 96.668C169.074 97.0117 169.191 97.4023 169.211 97.8398H168.18C168.16 97.5781 168.086 97.3418 167.957 97.1309C167.832 96.9199 167.66 96.752 167.441 96.627C167.227 96.498 166.975 96.4336 166.686 96.4336C166.354 96.4336 166.074 96.5 165.848 96.6328C165.625 96.7617 165.447 96.9375 165.314 97.1602C165.186 97.3789 165.092 97.623 165.033 97.8926C164.979 98.1582 164.951 98.4297 164.951 98.707V98.9531C164.951 99.2305 164.979 99.5039 165.033 99.7734C165.088 100.043 165.18 100.287 165.309 100.506C165.441 100.725 165.619 100.9 165.842 101.033C166.068 101.162 166.35 101.227 166.686 101.227ZM171.52 93V102H170.43V93H171.52ZM175.393 95.6602L172.627 98.6191L171.08 100.225L170.992 99.0703L172.1 97.7461L174.068 95.6602H175.393ZM174.402 102L172.141 98.9766L172.703 98.0098L175.68 102H174.402Z",fill:"#0F172A"}),(0,n.createElement)("rect",{x:"113",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"119",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"200",y:"12",width:"86",height:"120",rx:"4",fill:"white"}),(0,n.createElement)("rect",{x:"213",y:"25",width:"60",height:"60",rx:"4",fill:"#F1F5F9"}),(0,n.createElement)("path",{d:"M231 46.0074C231 45.451 231.448 45 232 45H246C246.552 45 247 45.451 247 46.0074C247 46.5638 246.552 47.0148 246 47.0148H232C231.448 47.0148 231 46.5638 231 46.0074Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M232 49.0296C231.448 49.0296 231 49.4806 231 50.037C231 50.5933 231.448 51.0444 232 51.0444H246C246.552 51.0444 247 50.5933 247 50.037C247 49.4806 246.552 49.0296 246 49.0296H232Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M232 53.0591C231.448 53.0591 231 53.5102 231 54.0665C231 54.6229 231.448 55.0739 232 55.0739H241C241.552 55.0739 242 54.6229 242 54.0665C242 53.5102 241.552 53.0591 241 53.0591H232Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M231 57.9926C231 57.4362 231.448 56.9852 232 56.9852H238C238.552 56.9852 239 57.4362 239 57.9926C239 58.549 238.552 59 238 59H232C231.448 59 231 58.549 231 57.9926Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M249 59C249 58.4477 249.448 58 250 58C250.552 58 251 58.4477 251 59V61H253C253.552 61 254 61.4477 254 62C254 62.5523 253.552 63 253 63H251V65C251 65.5523 250.552 66 250 66C249.448 66 249 65.5523 249 65V63H247C246.448 63 246 62.5523 246 62C246 61.4477 246.448 61 247 61H249V59Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M251 43V53.0549C255.5 53.5524 259 57.3674 259 62C259 66.9706 254.971 71 250 71C247.857 71 245.888 70.2508 244.343 69H231C228.791 69 227 67.2091 227 65V43C227 40.7909 228.791 39 231 39H247C249.209 39 251 40.7909 251 43ZM231 41H247C248.105 41 249 41.8954 249 43V53.0549C244.5 53.5524 241 57.3674 241 62C241 63.8501 241.558 65.5699 242.516 67H231C229.895 67 229 66.1046 229 65V43C229 41.8954 229.895 41 231 41ZM257 62C257 65.866 253.866 69 250 69C246.134 69 243 65.866 243 62C243 58.134 246.134 55 250 55C253.866 55 257 58.134 257 62Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M216.611 93.4688V102H215.48V93.4688H216.611ZM219.588 97.0137V102H218.504V95.6602H219.529L219.588 97.0137ZM219.33 98.5898L218.879 98.5723C218.883 98.1387 218.947 97.7383 219.072 97.3711C219.197 97 219.373 96.6777 219.6 96.4043C219.826 96.1309 220.096 95.9199 220.408 95.7715C220.725 95.6191 221.074 95.543 221.457 95.543C221.77 95.543 222.051 95.5859 222.301 95.6719C222.551 95.7539 222.764 95.8867 222.939 96.0703C223.119 96.2539 223.256 96.4922 223.35 96.7852C223.443 97.0742 223.49 97.4277 223.49 97.8457V102H222.4V97.834C222.4 97.502 222.352 97.2363 222.254 97.0371C222.156 96.834 222.014 96.6875 221.826 96.5977C221.639 96.5039 221.408 96.457 221.135 96.457C220.865 96.457 220.619 96.5137 220.396 96.627C220.178 96.7402 219.988 96.8965 219.828 97.0957C219.672 97.2949 219.549 97.5234 219.459 97.7812C219.373 98.0352 219.33 98.3047 219.33 98.5898ZM228.828 100.318C228.828 100.162 228.793 100.018 228.723 99.8848C228.656 99.748 228.518 99.625 228.307 99.5156C228.1 99.4023 227.787 99.3047 227.369 99.2227C227.018 99.1484 226.699 99.0605 226.414 98.959C226.133 98.8574 225.893 98.7344 225.693 98.5898C225.498 98.4453 225.348 98.2754 225.242 98.0801C225.137 97.8848 225.084 97.6562 225.084 97.3945C225.084 97.1445 225.139 96.9082 225.248 96.6855C225.361 96.4629 225.52 96.2656 225.723 96.0938C225.93 95.9219 226.178 95.7871 226.467 95.6895C226.756 95.5918 227.078 95.543 227.434 95.543C227.941 95.543 228.375 95.6328 228.734 95.8125C229.094 95.9922 229.369 96.2324 229.561 96.5332C229.752 96.8301 229.848 97.1602 229.848 97.5234H228.764C228.764 97.3477 228.711 97.1777 228.605 97.0137C228.504 96.8457 228.354 96.707 228.154 96.5977C227.959 96.4883 227.719 96.4336 227.434 96.4336C227.133 96.4336 226.889 96.4805 226.701 96.5742C226.518 96.6641 226.383 96.7793 226.297 96.9199C226.215 97.0605 226.174 97.209 226.174 97.3652C226.174 97.4824 226.193 97.5879 226.232 97.6816C226.275 97.7715 226.35 97.8555 226.455 97.9336C226.561 98.0078 226.709 98.0781 226.9 98.1445C227.092 98.2109 227.336 98.2773 227.633 98.3438C228.152 98.4609 228.58 98.6016 228.916 98.7656C229.252 98.9297 229.502 99.1309 229.666 99.3691C229.83 99.6074 229.912 99.8965 229.912 100.236C229.912 100.514 229.854 100.768 229.736 100.998C229.623 101.229 229.457 101.428 229.238 101.596C229.023 101.76 228.766 101.889 228.465 101.982C228.168 102.072 227.834 102.117 227.463 102.117C226.904 102.117 226.432 102.018 226.045 101.818C225.658 101.619 225.365 101.361 225.166 101.045C224.967 100.729 224.867 100.395 224.867 100.043H225.957C225.973 100.34 226.059 100.576 226.215 100.752C226.371 100.924 226.562 101.047 226.789 101.121C227.016 101.191 227.24 101.227 227.463 101.227C227.76 101.227 228.008 101.188 228.207 101.109C228.41 101.031 228.564 100.924 228.67 100.787C228.775 100.65 228.828 100.494 228.828 100.318ZM233.967 102.117C233.525 102.117 233.125 102.043 232.766 101.895C232.41 101.742 232.104 101.529 231.846 101.256C231.592 100.982 231.396 100.658 231.26 100.283C231.123 99.9082 231.055 99.498 231.055 99.0527V98.8066C231.055 98.291 231.131 97.832 231.283 97.4297C231.436 97.0234 231.643 96.6797 231.904 96.3984C232.166 96.1172 232.463 95.9043 232.795 95.7598C233.127 95.6152 233.471 95.543 233.826 95.543C234.279 95.543 234.67 95.6211 234.998 95.7773C235.33 95.9336 235.602 96.1523 235.812 96.4336C236.023 96.7109 236.18 97.0391 236.281 97.418C236.383 97.793 236.434 98.2031 236.434 98.6484V99.1348H231.699V98.25H235.35V98.168C235.334 97.8867 235.275 97.6133 235.174 97.3477C235.076 97.082 234.92 96.8633 234.705 96.6914C234.49 96.5195 234.197 96.4336 233.826 96.4336C233.58 96.4336 233.354 96.4863 233.146 96.5918C232.939 96.6934 232.762 96.8457 232.613 97.0488C232.465 97.252 232.35 97.5 232.268 97.793C232.186 98.0859 232.145 98.4238 232.145 98.8066V99.0527C232.145 99.3535 232.186 99.6367 232.268 99.9023C232.354 100.164 232.477 100.395 232.637 100.594C232.801 100.793 232.998 100.949 233.229 101.062C233.463 101.176 233.729 101.232 234.025 101.232C234.408 101.232 234.732 101.154 234.998 100.998C235.264 100.842 235.496 100.633 235.695 100.371L236.352 100.893C236.215 101.1 236.041 101.297 235.83 101.484C235.619 101.672 235.359 101.824 235.051 101.941C234.746 102.059 234.385 102.117 233.967 102.117ZM238.783 96.6562V102H237.699V95.6602H238.754L238.783 96.6562ZM240.764 95.625L240.758 96.6328C240.668 96.6133 240.582 96.6016 240.5 96.5977C240.422 96.5898 240.332 96.5859 240.23 96.5859C239.98 96.5859 239.76 96.625 239.568 96.7031C239.377 96.7812 239.215 96.8906 239.082 97.0312C238.949 97.1719 238.844 97.3398 238.766 97.5352C238.691 97.7266 238.643 97.9375 238.619 98.168L238.314 98.3438C238.314 97.9609 238.352 97.6016 238.426 97.2656C238.504 96.9297 238.623 96.6328 238.783 96.375C238.943 96.1133 239.146 95.9102 239.393 95.7656C239.643 95.6172 239.939 95.543 240.283 95.543C240.361 95.543 240.451 95.5527 240.553 95.5723C240.654 95.5879 240.725 95.6055 240.764 95.625ZM244.713 95.6602V96.4922H241.285V95.6602H244.713ZM242.445 94.1191H243.529V100.43C243.529 100.645 243.562 100.807 243.629 100.916C243.695 101.025 243.781 101.098 243.887 101.133C243.992 101.168 244.105 101.186 244.227 101.186C244.316 101.186 244.41 101.178 244.508 101.162C244.609 101.143 244.686 101.127 244.736 101.115L244.742 102C244.656 102.027 244.543 102.053 244.402 102.076C244.266 102.104 244.1 102.117 243.904 102.117C243.639 102.117 243.395 102.064 243.172 101.959C242.949 101.854 242.771 101.678 242.639 101.432C242.51 101.182 242.445 100.846 242.445 100.424V94.1191ZM252.271 98.6543H249.992V97.7344H252.271C252.713 97.7344 253.07 97.6641 253.344 97.5234C253.617 97.3828 253.816 97.1875 253.941 96.9375C254.07 96.6875 254.135 96.4023 254.135 96.082C254.135 95.7891 254.07 95.5137 253.941 95.2559C253.816 94.998 253.617 94.791 253.344 94.6348C253.07 94.4746 252.713 94.3945 252.271 94.3945H250.256V102H249.125V93.4688H252.271C252.916 93.4688 253.461 93.5801 253.906 93.8027C254.352 94.0254 254.689 94.334 254.92 94.7285C255.15 95.1191 255.266 95.5664 255.266 96.0703C255.266 96.6172 255.15 97.084 254.92 97.4707C254.689 97.8574 254.352 98.1523 253.906 98.3555C253.461 98.5547 252.916 98.6543 252.271 98.6543ZM256.162 98.9004V98.7656C256.162 98.3086 256.229 97.8848 256.361 97.4941C256.494 97.0996 256.686 96.7578 256.936 96.4688C257.186 96.1758 257.488 95.9492 257.844 95.7891C258.199 95.625 258.598 95.543 259.039 95.543C259.484 95.543 259.885 95.625 260.24 95.7891C260.6 95.9492 260.904 96.1758 261.154 96.4688C261.408 96.7578 261.602 97.0996 261.734 97.4941C261.867 97.8848 261.934 98.3086 261.934 98.7656V98.9004C261.934 99.3574 261.867 99.7812 261.734 100.172C261.602 100.562 261.408 100.904 261.154 101.197C260.904 101.486 260.602 101.713 260.246 101.877C259.895 102.037 259.496 102.117 259.051 102.117C258.605 102.117 258.205 102.037 257.85 101.877C257.494 101.713 257.189 101.486 256.936 101.197C256.686 100.904 256.494 100.562 256.361 100.172C256.229 99.7812 256.162 99.3574 256.162 98.9004ZM257.246 98.7656V98.9004C257.246 99.2168 257.283 99.5156 257.357 99.7969C257.432 100.074 257.543 100.32 257.691 100.535C257.844 100.75 258.033 100.92 258.26 101.045C258.486 101.166 258.75 101.227 259.051 101.227C259.348 101.227 259.607 101.166 259.83 101.045C260.057 100.92 260.244 100.75 260.393 100.535C260.541 100.32 260.652 100.074 260.727 99.7969C260.805 99.5156 260.844 99.2168 260.844 98.9004V98.7656C260.844 98.4531 260.805 98.1582 260.727 97.8809C260.652 97.5996 260.539 97.3516 260.387 97.1367C260.238 96.918 260.051 96.7461 259.824 96.6211C259.602 96.4961 259.34 96.4336 259.039 96.4336C258.742 96.4336 258.48 96.4961 258.254 96.6211C258.031 96.7461 257.844 96.918 257.691 97.1367C257.543 97.3516 257.432 97.5996 257.357 97.8809C257.283 98.1582 257.246 98.4531 257.246 98.7656ZM266.984 100.318C266.984 100.162 266.949 100.018 266.879 99.8848C266.812 99.748 266.674 99.625 266.463 99.5156C266.256 99.4023 265.943 99.3047 265.525 99.2227C265.174 99.1484 264.855 99.0605 264.57 98.959C264.289 98.8574 264.049 98.7344 263.85 98.5898C263.654 98.4453 263.504 98.2754 263.398 98.0801C263.293 97.8848 263.24 97.6562 263.24 97.3945C263.24 97.1445 263.295 96.9082 263.404 96.6855C263.518 96.4629 263.676 96.2656 263.879 96.0938C264.086 95.9219 264.334 95.7871 264.623 95.6895C264.912 95.5918 265.234 95.543 265.59 95.543C266.098 95.543 266.531 95.6328 266.891 95.8125C267.25 95.9922 267.525 96.2324 267.717 96.5332C267.908 96.8301 268.004 97.1602 268.004 97.5234H266.92C266.92 97.3477 266.867 97.1777 266.762 97.0137C266.66 96.8457 266.51 96.707 266.311 96.5977C266.115 96.4883 265.875 96.4336 265.59 96.4336C265.289 96.4336 265.045 96.4805 264.857 96.5742C264.674 96.6641 264.539 96.7793 264.453 96.9199C264.371 97.0605 264.33 97.209 264.33 97.3652C264.33 97.4824 264.35 97.5879 264.389 97.6816C264.432 97.7715 264.506 97.8555 264.611 97.9336C264.717 98.0078 264.865 98.0781 265.057 98.1445C265.248 98.2109 265.492 98.2773 265.789 98.3438C266.309 98.4609 266.736 98.6016 267.072 98.7656C267.408 98.9297 267.658 99.1309 267.822 99.3691C267.986 99.6074 268.068 99.8965 268.068 100.236C268.068 100.514 268.01 100.768 267.893 100.998C267.779 101.229 267.613 101.428 267.395 101.596C267.18 101.76 266.922 101.889 266.621 101.982C266.324 102.072 265.99 102.117 265.619 102.117C265.061 102.117 264.588 102.018 264.201 101.818C263.814 101.619 263.521 101.361 263.322 101.045C263.123 100.729 263.023 100.395 263.023 100.043H264.113C264.129 100.34 264.215 100.576 264.371 100.752C264.527 100.924 264.719 101.047 264.945 101.121C265.172 101.191 265.396 101.227 265.619 101.227C265.916 101.227 266.164 101.188 266.363 101.109C266.566 101.031 266.721 100.924 266.826 100.787C266.932 100.65 266.984 100.494 266.984 100.318ZM272.146 95.6602V96.4922H268.719V95.6602H272.146ZM269.879 94.1191H270.963V100.43C270.963 100.645 270.996 100.807 271.062 100.916C271.129 101.025 271.215 101.098 271.32 101.133C271.426 101.168 271.539 101.186 271.66 101.186C271.75 101.186 271.844 101.178 271.941 101.162C272.043 101.143 272.119 101.127 272.17 101.115L272.176 102C272.09 102.027 271.977 102.053 271.836 102.076C271.699 102.104 271.533 102.117 271.338 102.117C271.072 102.117 270.828 102.064 270.605 101.959C270.383 101.854 270.205 101.678 270.072 101.432C269.943 101.182 269.879 100.846 269.879 100.424V94.1191Z",fill:"#0F172A"}),(0,n.createElement)("rect",{x:"207",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"213",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"})),{__:l}=wp.i18n,{cloneElement:i,Children:a}=wp.element,{Placeholder:c,Flex:s,ExternalLink:d,Tooltip:u}=wp.components,{useBlockProps:m}=wp.blockEditor,{useSelect:p,useDispatch:f}=wp.data,{PatternInserterButton:h,ToggleControl:H}=JetFBComponents,v=(0,n.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",style:{color:"rgb(117, 117, 117)"}},(0,n.createElement)("path",{fill:"currentColor",d:"M12 4.75a7.25 7.25 0 100 14.5 7.25 7.25 0 000-14.5zM3.25 12a8.75 8.75 0 1117.5 0 8.75 8.75 0 01-17.5 0zM12 8.75a1.5 1.5 0 01.167 2.99c-.465.052-.917.44-.917 1.01V14h1.5v-.845A3 3 0 109 10.25h1.5a1.5 1.5 0 011.5-1.5zM11.25 15v1.5h1.5V15h-1.5z"})),V=JSON.parse('{"apiVersion":3,"name":"jet-forms/welcome","title":"Welcome","category":"jet-form-builder-elements","icon":"\\n\\n\\n\\n\\n\\n\\n\\n","keywords":["jetformbuilder","start","welcome"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"attributes":{}}');var w=t(673),M=t.n(w),b=t(598),g=t.n(b),E=t(262),Z=t.n(E),L=t(657),y=t.n(L),x=t(357),j=t.n(x),k=t(626),_=t.n(k),F=t(363),A={};A.styleTagTransform=_(),A.setAttributes=y(),A.insert=Z().bind(null,"head"),A.domAPI=g(),A.insertStyleElement=j(),M()(F.A,A),F.A&&F.A.locals&&F.A.locals;const{name:B,icon:S}=V,{__:D}=wp.i18n;V.attributes.isPreview={type:"boolean",default:!1};const P={icon:(0,n.createElement)("span",{dangerouslySetInnerHTML:{__html:S}}),description:D("Use the Welcome block to quickly fetch all pre-made Form Patterns, start building from scratch, generate via AI, save form records, etc.","jet-form-builder"),example:{attributes:{isPreview:!0}},edit:function({attributes:e}){const C=m(),t=p((e=>e("jet-forms/patterns").getTypes().map((({view:e,...C})=>(0,n.createElement)(e,{pattern:C})))),[]),r=p((e=>e("jet-forms/patterns").getSetting("saveRecord"))),{updateSettings:V}=f("jet-forms/patterns");return e.isPreview?(0,n.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},o):(console.log(t),(0,n.createElement)("div",{...C},(0,n.createElement)(c,{icon:"admin-tools",label:l("Select form pattern","jet-form-builder"),instructions:l("You can select one of predefined layout, or build custom","jet-form-builder")},(0,n.createElement)("ul",{className:"block-editor-block-variation-picker__variations jet-fb",role:"list","aria-label":l("Form patterns","jet-form-builder")},a.map(t,i)),(0,n.createElement)(s,{className:"block-editor-block-variation-picker__skip",justify:"space-between"},(0,n.createElement)(s,{justify:"flex-start",style:{width:"auto"}},(0,n.createElement)(h,{patternName:"default",variant:"secondary",style:{margin:"unset"}},l("Start from scratch","jet-form-builder")),(0,n.createElement)(d,{href:"https://jetformbuilder.com/features/creating-a-form/"},l("Learn more about creating forms","jet-form-builder"))),(0,n.createElement)("div",{className:"jfb-block-variation-picker-toggle"},(0,n.createElement)(H,{checked:r,onChange:e=>V({saveRecord:e}),flexLabelProps:{align:"center"}},(0,n.createElement)(s,null,l("Save form records","jet-form-builder"),(0,n.createElement)(u,{text:l('Adds "Save Form Record" action to store\n\tall form submissions into database',"jet-form-builder"),delay:200},v))))))))}},T=window.wp.data,R=window.wp.domReady;var I=t.n(R);const N=window.wp.element,O=window.wp.components,z=window.wp.primitives,U=(0,n.createElement)(z.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(z.Path,{d:"M19.5 4.5h-7V6h4.44l-5.97 5.97 1.06 1.06L18 7.06v4.44h1.5v-7Zm-13 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3H17v3a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h3V5.5h-3Z"})),q=window.wp.i18n,J=document.createElement("div");J.classList.add("jfb-preview-wrapper"),(0,N.createRoot)(J).render((0,n.createElement)((function(){const[e,C]=(0,N.useState)(!1),t=(0,T.useSelect)((e=>{const C=e("core/editor");return C.isSavingPost()||C.isAutosavingPost()}),[]),{autosave:r}=(0,T.useDispatch)("core/editor"),o=(0,N.useRef)(!1);return(0,N.useEffect)((()=>{e&&(!o.current&&t&&(o.current=!0),o.current&&!t&&(e.location.reload(),o.current=!1))}),[t]),(0,n.createElement)(O.Button,{icon:U,onClick:()=>{!e||e?.closed?r().then((()=>{C(window.open(window.JFBOnboardingConfig.previewURL))})):r().finally((()=>{e.focus()}))},label:(0,q.__)("Preview the form","jet-form-builder")})}),null));I()((()=>{const e=(0,T.subscribe)((()=>function(e){const C=document.querySelector(".edit-post-header__settings, .editor-header__settings");if(!C)return null;e(),C.insertBefore(J,C.querySelector(".editor-post-publish-button__button"))}(e)))}));const G=window.wp.plugins,W=window.wp.editor,Y=(0,n.createElement)(z.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(z.Path,{d:"M6.6 6L5.4 7l4.5 5-4.5 5 1.1 1 5.5-6-5.4-6zm6 0l-1.1 1 4.5 5-4.5 5 1.1 1 5.5-6-5.5-6z"})),K=window.jfb.useForm,{useMetaState:Q}=JetFBHooks;var X=t(695),$={};$.styleTagTransform=_(),$.setAttributes=y(),$.insert=Z().bind(null,"head"),$.domAPI=g(),$.insertStyleElement=j(),M()(X.A,$),X.A&&X.A.locals&&X.A.locals,(0,G.registerPlugin)("jfb-use-form",{render:function(){const{closeGeneralSidebar:e}=(0,T.useDispatch)("core/edit-post"),C=(0,T.useSelect)((e=>e(W.store).getEditedPostAttribute("id")),[]),[t]=Q("_jf_args");return(0,n.createElement)(W.PluginSidebar,{icon:Y,name:"sidebar",title:(0,q.__)("Use the form","jet-form-builder")},(0,n.createElement)(K.ResponsiveModal,{title:(0,q.__)("Use the form","jet-form-builder"),onRequestClose:e},(0,n.createElement)(K.FormAttributesContext.Provider,{value:{formId:C,args:t,shouldUpdateForm:!0}},(0,n.createElement)(K.UseFormRoot,null))))}}),(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/welcome-block",(function(e){return e.push(r),e}))})(); \ No newline at end of file +(()=>{"use strict";var e={695(e,C,t){t.d(C,{A:()=>i});var r=t(168),n=t.n(r),o=t(433),l=t.n(o)()(n());l.push([e.id,'div[id="jfb-use-form:sidebar"]{display:none}button[aria-controls="jfb-use-form:sidebar"]>svg{transform:rotateY(180deg)}',""]);const i=l},363(e,C,t){t.d(C,{A:()=>i});var r=t(168),n=t.n(r),o=t(433),l=t.n(o)()(n());l.push([e.id,'.wp-block-jet-forms-welcome li.is-pro{position:relative;opacity:0.5}.wp-block-jet-forms-welcome li.is-pro .block-editor-block-variation-picker__variation::after{content:"PRO";position:absolute;top:0.4em;right:0.4em;background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));padding:0 0.2em;border-radius:0.5em;color:var(--wp-components-color-accent-inverted,#fff);border:1px solid var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));font-size:0.9em}.wp-block-jet-forms-welcome .block-editor-block-variation-picker__variations{gap:0.4em}.wp-block-jet-forms-welcome .block-editor-block-variation-picker__variations>li{width:-moz-min-content;width:min-content;margin:0.6em 0}.wp-block-jet-forms-welcome .block-editor-block-variation-picker__variations>li .components-button{padding:1.5em}',""]);const i=l},433(e){e.exports=function(e){var C=[];return C.toString=function(){return this.map(function(C){var t="",r=void 0!==C[5];return C[4]&&(t+="@supports (".concat(C[4],") {")),C[2]&&(t+="@media ".concat(C[2]," {")),r&&(t+="@layer".concat(C[5].length>0?" ".concat(C[5]):""," {")),t+=e(C),r&&(t+="}"),C[2]&&(t+="}"),C[4]&&(t+="}"),t}).join("")},C.i=function(e,t,r,n,o){"string"==typeof e&&(e=[[null,e,void 0]]);var l={};if(r)for(var i=0;i0?" ".concat(s[5]):""," {").concat(s[1],"}")),s[5]=o),t&&(s[2]?(s[1]="@media ".concat(s[2]," {").concat(s[1],"}"),s[2]=t):s[2]=t),n&&(s[4]?(s[1]="@supports (".concat(s[4],") {").concat(s[1],"}"),s[4]=n):s[4]="".concat(n)),C.push(s))}},C}},168(e){e.exports=function(e){return e[1]}},673(e){var C=[];function t(e){for(var t=-1,r=0;r0?" ".concat(t.layer):""," {")),r+=t.css,n&&(r+="}"),t.media&&(r+="}"),t.supports&&(r+="}");var o=t.sourceMap;o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),C.styleTagTransform(r,e,C.options)}(C,e,t)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(C)}}}},626(e){e.exports=function(e,C){if(C.styleSheet)C.styleSheet.cssText=e;else{for(;C.firstChild;)C.removeChild(C.firstChild);C.appendChild(document.createTextNode(e))}}}},C={};function t(r){var n=C[r];if(void 0!==n)return n.exports;var o=C[r]={id:r,exports:{}};return e[r](o,o.exports,t),o.exports}t.n=e=>{var C=e&&e.__esModule?()=>e.default:()=>e;return t.d(C,{a:C}),C},t.d=(e,C)=>{for(var r in C)t.o(C,r)&&!t.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:C[r]})},t.o=(e,C)=>Object.prototype.hasOwnProperty.call(e,C),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.nc=void 0;var r={};t.r(r),t.d(r,{metadata:()=>V,name:()=>B,settings:()=>P});const n=window.React,o=(0,n.createElement)("svg",{width:"298",height:"144",viewBox:"0 0 298 144",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,n.createElement)("rect",{width:"298",height:"144",fill:"#E2E8F0"}),(0,n.createElement)("rect",{x:"12",y:"12",width:"86",height:"120",rx:"4",fill:"white"}),(0,n.createElement)("rect",{x:"25",y:"25",width:"60",height:"60",rx:"4",fill:"#F1F5F9"}),(0,n.createElement)("path",{d:"M47.8 41C47.3582 41 47 41.4477 47 42C47 42.5523 47.3582 43 47.8 43H62.2C62.6418 43 63 42.5523 63 42C63 41.4477 62.6418 41 62.2 41H47.8Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M43 50C43 48.3431 44.3431 47 46 47H64C65.6569 47 67 48.3431 67 50C67 51.6569 65.6569 53 64 53H46C44.3431 53 43 51.6569 43 50ZM46 49C45.4477 49 45 49.4477 45 50C45 50.5523 45.4477 51 46 51H64C64.5523 51 65 50.5523 65 50C65 49.4477 64.5523 49 64 49H46Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M46 55C44.3431 55 43 56.3431 43 58C43 59.6569 44.3431 61 46 61H64C65.6569 61 67 59.6569 67 58C67 56.3431 65.6569 55 64 55H46ZM45 58C45 57.4477 45.4477 57 46 57H64C64.5523 57 65 57.4477 65 58C65 58.5523 64.5523 59 64 59H46C45.4477 59 45 58.5523 45 58Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M49 66C49 64.3431 50.3431 63 52 63H58C59.6569 63 61 64.3431 61 66C61 67.6569 59.6569 69 58 69H52C50.3431 69 49 67.6569 49 66ZM52 65C51.4477 65 51 65.4477 51 66C51 66.5523 51.4477 67 52 67H58C58.5523 67 59 66.5523 59 66C59 65.4477 58.5523 65 58 65H52Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M39 39C39 36.7909 40.7909 35 43 35H67C69.2091 35 71 36.7909 71 39V71C71 73.2091 69.2091 75 67 75H43C40.7909 75 39 73.2091 39 71V39ZM43 37H67C68.1046 37 69 37.8954 69 39V71C69 72.1046 68.1046 73 67 73H43C41.8954 73 41 72.1046 41 71V39C41 37.8954 41.8954 37 43 37Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M25.207 99.2871H26.332C26.2734 99.8262 26.1191 100.309 25.8691 100.734C25.6191 101.16 25.2656 101.498 24.8086 101.748C24.3516 101.994 23.7812 102.117 23.0977 102.117C22.5977 102.117 22.1426 102.023 21.7324 101.836C21.3262 101.648 20.9766 101.383 20.6836 101.039C20.3906 100.691 20.1641 100.275 20.0039 99.791C19.8477 99.3027 19.7695 98.7598 19.7695 98.1621V97.3125C19.7695 96.7148 19.8477 96.1738 20.0039 95.6895C20.1641 95.2012 20.3926 94.7832 20.6895 94.4355C20.9902 94.0879 21.3516 93.8203 21.7734 93.6328C22.1953 93.4453 22.6699 93.3516 23.1973 93.3516C23.8418 93.3516 24.3867 93.4727 24.832 93.7148C25.2773 93.957 25.623 94.293 25.8691 94.7227C26.1191 95.1484 26.2734 95.6426 26.332 96.2051H25.207C25.1523 95.8066 25.0508 95.4648 24.9023 95.1797C24.7539 94.8906 24.543 94.668 24.2695 94.5117C23.9961 94.3555 23.6387 94.2773 23.1973 94.2773C22.8184 94.2773 22.4844 94.3496 22.1953 94.4941C21.9102 94.6387 21.6699 94.8438 21.4746 95.1094C21.2832 95.375 21.1387 95.6934 21.041 96.0645C20.9434 96.4355 20.8945 96.8477 20.8945 97.3008V98.1621C20.8945 98.5801 20.9375 98.9727 21.0234 99.3398C21.1133 99.707 21.248 100.029 21.4277 100.307C21.6074 100.584 21.8359 100.803 22.1133 100.963C22.3906 101.119 22.7188 101.197 23.0977 101.197C23.5781 101.197 23.9609 101.121 24.2461 100.969C24.5312 100.816 24.7461 100.598 24.8906 100.312C25.0391 100.027 25.1445 99.6855 25.207 99.2871ZM27.4219 98.9004V98.7656C27.4219 98.3086 27.4883 97.8848 27.6211 97.4941C27.7539 97.0996 27.9453 96.7578 28.1953 96.4688C28.4453 96.1758 28.748 95.9492 29.1035 95.7891C29.459 95.625 29.8574 95.543 30.2988 95.543C30.7441 95.543 31.1445 95.625 31.5 95.7891C31.8594 95.9492 32.1641 96.1758 32.4141 96.4688C32.668 96.7578 32.8613 97.0996 32.9941 97.4941C33.127 97.8848 33.1934 98.3086 33.1934 98.7656V98.9004C33.1934 99.3574 33.127 99.7812 32.9941 100.172C32.8613 100.562 32.668 100.904 32.4141 101.197C32.1641 101.486 31.8613 101.713 31.5059 101.877C31.1543 102.037 30.7559 102.117 30.3105 102.117C29.8652 102.117 29.4648 102.037 29.1094 101.877C28.7539 101.713 28.4492 101.486 28.1953 101.197C27.9453 100.904 27.7539 100.562 27.6211 100.172C27.4883 99.7812 27.4219 99.3574 27.4219 98.9004ZM28.5059 98.7656V98.9004C28.5059 99.2168 28.543 99.5156 28.6172 99.7969C28.6914 100.074 28.8027 100.32 28.9512 100.535C29.1035 100.75 29.293 100.92 29.5195 101.045C29.7461 101.166 30.0098 101.227 30.3105 101.227C30.6074 101.227 30.8672 101.166 31.0898 101.045C31.3164 100.92 31.5039 100.75 31.6523 100.535C31.8008 100.32 31.9121 100.074 31.9863 99.7969C32.0645 99.5156 32.1035 99.2168 32.1035 98.9004V98.7656C32.1035 98.4531 32.0645 98.1582 31.9863 97.8809C31.9121 97.5996 31.7988 97.3516 31.6465 97.1367C31.498 96.918 31.3105 96.7461 31.084 96.6211C30.8613 96.4961 30.5996 96.4336 30.2988 96.4336C30.002 96.4336 29.7402 96.4961 29.5137 96.6211C29.291 96.7461 29.1035 96.918 28.9512 97.1367C28.8027 97.3516 28.6914 97.5996 28.6172 97.8809C28.543 98.1582 28.5059 98.4531 28.5059 98.7656ZM35.6367 97.0137V102H34.5527V95.6602H35.5781L35.6367 97.0137ZM35.3789 98.5898L34.9277 98.5723C34.9316 98.1387 34.9961 97.7383 35.1211 97.3711C35.2461 97 35.4219 96.6777 35.6484 96.4043C35.875 96.1309 36.1445 95.9199 36.457 95.7715C36.7734 95.6191 37.123 95.543 37.5059 95.543C37.8184 95.543 38.0996 95.5859 38.3496 95.6719C38.5996 95.7539 38.8125 95.8867 38.9883 96.0703C39.168 96.2539 39.3047 96.4922 39.3984 96.7852C39.4922 97.0742 39.5391 97.4277 39.5391 97.8457V102H38.4492V97.834C38.4492 97.502 38.4004 97.2363 38.3027 97.0371C38.2051 96.834 38.0625 96.6875 37.875 96.5977C37.6875 96.5039 37.457 96.457 37.1836 96.457C36.9141 96.457 36.668 96.5137 36.4453 96.627C36.2266 96.7402 36.0371 96.8965 35.877 97.0957C35.7207 97.2949 35.5977 97.5234 35.5078 97.7812C35.4219 98.0352 35.3789 98.3047 35.3789 98.5898ZM43.8398 95.6602V96.4922H40.4121V95.6602H43.8398ZM41.5723 94.1191H42.6562V100.43C42.6562 100.645 42.6895 100.807 42.7559 100.916C42.8223 101.025 42.9082 101.098 43.0137 101.133C43.1191 101.168 43.2324 101.186 43.3535 101.186C43.4434 101.186 43.5371 101.178 43.6348 101.162C43.7363 101.143 43.8125 101.127 43.8633 101.115L43.8691 102C43.7832 102.027 43.6699 102.053 43.5293 102.076C43.3926 102.104 43.2266 102.117 43.0312 102.117C42.7656 102.117 42.5215 102.064 42.2988 101.959C42.0762 101.854 41.8984 101.678 41.7656 101.432C41.6367 101.182 41.5723 100.846 41.5723 100.424V94.1191ZM48.8496 100.916V97.6523C48.8496 97.4023 48.7988 97.1855 48.6973 97.002C48.5996 96.8145 48.4512 96.6699 48.252 96.5684C48.0527 96.4668 47.8066 96.416 47.5137 96.416C47.2402 96.416 47 96.4629 46.793 96.5566C46.5898 96.6504 46.4297 96.7734 46.3125 96.9258C46.1992 97.0781 46.1426 97.2422 46.1426 97.418H45.0586C45.0586 97.1914 45.1172 96.9668 45.2344 96.7441C45.3516 96.5215 45.5195 96.3203 45.7383 96.1406C45.9609 95.957 46.2266 95.8125 46.5352 95.707C46.8477 95.5977 47.1953 95.543 47.5781 95.543C48.0391 95.543 48.4453 95.6211 48.7969 95.7773C49.1523 95.9336 49.4297 96.1699 49.6289 96.4863C49.832 96.7988 49.9336 97.1914 49.9336 97.6641V100.617C49.9336 100.828 49.9512 101.053 49.9863 101.291C50.0254 101.529 50.082 101.734 50.1562 101.906V102H49.0254C48.9707 101.875 48.9277 101.709 48.8965 101.502C48.8652 101.291 48.8496 101.096 48.8496 100.916ZM49.0371 98.1562L49.0488 98.918H47.9531C47.6445 98.918 47.3691 98.9434 47.127 98.9941C46.8848 99.041 46.6816 99.1133 46.5176 99.2109C46.3535 99.3086 46.2285 99.4316 46.1426 99.5801C46.0566 99.7246 46.0137 99.8945 46.0137 100.09C46.0137 100.289 46.0586 100.471 46.1484 100.635C46.2383 100.799 46.373 100.93 46.5527 101.027C46.7363 101.121 46.9609 101.168 47.2266 101.168C47.5586 101.168 47.8516 101.098 48.1055 100.957C48.3594 100.816 48.5605 100.645 48.709 100.441C48.8613 100.238 48.9434 100.041 48.9551 99.8496L49.418 100.371C49.3906 100.535 49.3164 100.717 49.1953 100.916C49.0742 101.115 48.9121 101.307 48.709 101.49C48.5098 101.67 48.2715 101.82 47.9941 101.941C47.7207 102.059 47.4121 102.117 47.0684 102.117C46.6387 102.117 46.2617 102.033 45.9375 101.865C45.6172 101.697 45.3672 101.473 45.1875 101.191C45.0117 100.906 44.9238 100.588 44.9238 100.236C44.9238 99.8965 44.9902 99.5977 45.123 99.3398C45.2559 99.0781 45.4473 98.8613 45.6973 98.6895C45.9473 98.5137 46.248 98.3809 46.5996 98.291C46.9512 98.2012 47.3438 98.1562 47.7773 98.1562H49.0371ZM54.1758 101.227C54.4336 101.227 54.6719 101.174 54.8906 101.068C55.1094 100.963 55.2891 100.818 55.4297 100.635C55.5703 100.447 55.6504 100.234 55.6699 99.9961H56.7012C56.6816 100.371 56.5547 100.721 56.3203 101.045C56.0898 101.365 55.7871 101.625 55.4121 101.824C55.0371 102.02 54.625 102.117 54.1758 102.117C53.6992 102.117 53.2832 102.033 52.9277 101.865C52.5762 101.697 52.2832 101.467 52.0488 101.174C51.8184 100.881 51.6445 100.545 51.5273 100.166C51.4141 99.7832 51.3574 99.3789 51.3574 98.9531V98.707C51.3574 98.2812 51.4141 97.8789 51.5273 97.5C51.6445 97.1172 51.8184 96.7793 52.0488 96.4863C52.2832 96.1934 52.5762 95.9629 52.9277 95.7949C53.2832 95.627 53.6992 95.543 54.1758 95.543C54.6719 95.543 55.1055 95.6445 55.4766 95.8477C55.8477 96.0469 56.1387 96.3203 56.3496 96.668C56.5645 97.0117 56.6816 97.4023 56.7012 97.8398H55.6699C55.6504 97.5781 55.5762 97.3418 55.4473 97.1309C55.3223 96.9199 55.1504 96.752 54.9316 96.627C54.7168 96.498 54.4648 96.4336 54.1758 96.4336C53.8438 96.4336 53.5645 96.5 53.3379 96.6328C53.1152 96.7617 52.9375 96.9375 52.8047 97.1602C52.6758 97.3789 52.582 97.623 52.5234 97.8926C52.4688 98.1582 52.4414 98.4297 52.4414 98.707V98.9531C52.4414 99.2305 52.4688 99.5039 52.5234 99.7734C52.5781 100.043 52.6699 100.287 52.7988 100.506C52.9316 100.725 53.1094 100.9 53.332 101.033C53.5586 101.162 53.8398 101.227 54.1758 101.227ZM60.5742 95.6602V96.4922H57.1465V95.6602H60.5742ZM58.3066 94.1191H59.3906V100.43C59.3906 100.645 59.4238 100.807 59.4902 100.916C59.5566 101.025 59.6426 101.098 59.748 101.133C59.8535 101.168 59.9668 101.186 60.0879 101.186C60.1777 101.186 60.2715 101.178 60.3691 101.162C60.4707 101.143 60.5469 101.127 60.5977 101.115L60.6035 102C60.5176 102.027 60.4043 102.053 60.2637 102.076C60.127 102.104 59.9609 102.117 59.7656 102.117C59.5 102.117 59.2559 102.064 59.0332 101.959C58.8105 101.854 58.6328 101.678 58.5 101.432C58.3711 101.182 58.3066 100.846 58.3066 100.424V94.1191ZM66.1172 93.4688V102H64.9863V93.4688H66.1172ZM69.6914 97.3066V98.2324H65.8711V97.3066H69.6914ZM70.2715 93.4688V94.3945H65.8711V93.4688H70.2715ZM71.0391 98.9004V98.7656C71.0391 98.3086 71.1055 97.8848 71.2383 97.4941C71.3711 97.0996 71.5625 96.7578 71.8125 96.4688C72.0625 96.1758 72.3652 95.9492 72.7207 95.7891C73.0762 95.625 73.4746 95.543 73.916 95.543C74.3613 95.543 74.7617 95.625 75.1172 95.7891C75.4766 95.9492 75.7812 96.1758 76.0312 96.4688C76.2852 96.7578 76.4785 97.0996 76.6113 97.4941C76.7441 97.8848 76.8105 98.3086 76.8105 98.7656V98.9004C76.8105 99.3574 76.7441 99.7812 76.6113 100.172C76.4785 100.562 76.2852 100.904 76.0312 101.197C75.7812 101.486 75.4785 101.713 75.123 101.877C74.7715 102.037 74.373 102.117 73.9277 102.117C73.4824 102.117 73.082 102.037 72.7266 101.877C72.3711 101.713 72.0664 101.486 71.8125 101.197C71.5625 100.904 71.3711 100.562 71.2383 100.172C71.1055 99.7812 71.0391 99.3574 71.0391 98.9004ZM72.123 98.7656V98.9004C72.123 99.2168 72.1602 99.5156 72.2344 99.7969C72.3086 100.074 72.4199 100.32 72.5684 100.535C72.7207 100.75 72.9102 100.92 73.1367 101.045C73.3633 101.166 73.627 101.227 73.9277 101.227C74.2246 101.227 74.4844 101.166 74.707 101.045C74.9336 100.92 75.1211 100.75 75.2695 100.535C75.418 100.32 75.5293 100.074 75.6035 99.7969C75.6816 99.5156 75.7207 99.2168 75.7207 98.9004V98.7656C75.7207 98.4531 75.6816 98.1582 75.6035 97.8809C75.5293 97.5996 75.416 97.3516 75.2637 97.1367C75.1152 96.918 74.9277 96.7461 74.7012 96.6211C74.4785 96.4961 74.2168 96.4336 73.916 96.4336C73.6191 96.4336 73.3574 96.4961 73.1309 96.6211C72.9082 96.7461 72.7207 96.918 72.5684 97.1367C72.4199 97.3516 72.3086 97.5996 72.2344 97.8809C72.1602 98.1582 72.123 98.4531 72.123 98.7656ZM79.2539 96.6562V102H78.1699V95.6602H79.2246L79.2539 96.6562ZM81.2344 95.625L81.2285 96.6328C81.1387 96.6133 81.0527 96.6016 80.9707 96.5977C80.8926 96.5898 80.8027 96.5859 80.7012 96.5859C80.4512 96.5859 80.2305 96.625 80.0391 96.7031C79.8477 96.7812 79.6855 96.8906 79.5527 97.0312C79.4199 97.1719 79.3145 97.3398 79.2363 97.5352C79.1621 97.7266 79.1133 97.9375 79.0898 98.168L78.7852 98.3438C78.7852 97.9609 78.8223 97.6016 78.8965 97.2656C78.9746 96.9297 79.0938 96.6328 79.2539 96.375C79.4141 96.1133 79.6172 95.9102 79.8633 95.7656C80.1133 95.6172 80.4102 95.543 80.7539 95.543C80.832 95.543 80.9219 95.5527 81.0234 95.5723C81.125 95.5879 81.1953 95.6055 81.2344 95.625ZM83.3145 96.9199V102H82.2246V95.6602H83.2559L83.3145 96.9199ZM83.0918 98.5898L82.5879 98.5723C82.5918 98.1387 82.6484 97.7383 82.7578 97.3711C82.8672 97 83.0293 96.6777 83.2441 96.4043C83.459 96.1309 83.7266 95.9199 84.0469 95.7715C84.3672 95.6191 84.7383 95.543 85.1602 95.543C85.457 95.543 85.7305 95.5859 85.9805 95.6719C86.2305 95.7539 86.4473 95.8848 86.6309 96.0645C86.8145 96.2441 86.957 96.4746 87.0586 96.7559C87.1602 97.0371 87.2109 97.377 87.2109 97.7754V102H86.127V97.8281C86.127 97.4961 86.0703 97.2305 85.957 97.0312C85.8477 96.832 85.6914 96.6875 85.4883 96.5977C85.2852 96.5039 85.0469 96.457 84.7734 96.457C84.4531 96.457 84.1855 96.5137 83.9707 96.627C83.7559 96.7402 83.584 96.8965 83.4551 97.0957C83.3262 97.2949 83.2324 97.5234 83.1738 97.7812C83.1191 98.0352 83.0918 98.3047 83.0918 98.5898ZM87.1992 97.9922L86.4727 98.2148C86.4766 97.8672 86.5332 97.5332 86.6426 97.2129C86.7559 96.8926 86.918 96.6074 87.1289 96.3574C87.3438 96.1074 87.6074 95.9102 87.9199 95.7656C88.2324 95.6172 88.5898 95.543 88.9922 95.543C89.332 95.543 89.6328 95.5879 89.8945 95.6777C90.1602 95.7676 90.3828 95.9062 90.5625 96.0938C90.7461 96.2773 90.8848 96.5137 90.9785 96.8027C91.0723 97.0918 91.1191 97.4355 91.1191 97.834V102H90.0293V97.8223C90.0293 97.4668 89.9727 97.1914 89.8594 96.9961C89.75 96.7969 89.5938 96.6582 89.3906 96.5801C89.1914 96.498 88.9531 96.457 88.6758 96.457C88.4375 96.457 88.2266 96.498 88.043 96.5801C87.8594 96.6621 87.7051 96.7754 87.5801 96.9199C87.4551 97.0605 87.3594 97.2227 87.293 97.4062C87.2305 97.5898 87.1992 97.7852 87.1992 97.9922Z",fill:"#0F172A"}),(0,n.createElement)("rect",{x:"19",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"25",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"107",y:"13",width:"84",height:"118",rx:"3",fill:"white",stroke:"#4272F9",strokeWidth:"2"}),(0,n.createElement)("rect",{x:"119",y:"25",width:"60",height:"60",rx:"4",fill:"#F1F5F9"}),(0,n.createElement)("path",{d:"M136 46.0444C135.448 46.0444 135 46.4954 135 47.0517C135 47.6081 135.448 48.0591 136 48.0591H156C156.552 48.0591 157 47.6081 157 47.0517C157 46.4954 156.552 46.0444 156 46.0444H136Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M135 51.0813C135 50.5249 135.448 50.0739 136 50.0739H156C156.552 50.0739 157 50.5249 157 51.0813C157 51.6377 156.552 52.0887 156 52.0887H136C135.448 52.0887 135 51.6377 135 51.0813Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M136 54.1035C135.448 54.1035 135 54.5545 135 55.1109C135 55.6672 135.448 56.1183 136 56.1183H151C151.552 56.1183 152 55.6672 152 55.1109C152 54.5545 151.552 54.1035 151 54.1035H136Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M131 44.0296C131 41.8041 132.791 40 135 40H157C159.209 40 161 41.8041 161 44.0296V55.1109H163C165.209 55.1109 167 56.915 167 59.1404V65.1848C167 67.4103 165.209 69.2144 163 69.2144H162.286L159.866 71.839C159.669 72.0537 159.331 72.0537 159.134 71.839L156.714 69.2144H151C148.791 69.2144 147 67.4103 147 65.1848V62.1626H144.214L140.866 65.7947C140.669 66.0093 140.331 66.0093 140.134 65.7947L136.786 62.1626H135C132.791 62.1626 131 60.3585 131 58.1331V44.0296ZM137.658 60.1478L140.5 63.2312L143.342 60.1478H157C158.105 60.1478 159 59.2458 159 58.1331V44.0296C159 42.9168 158.105 42.0148 157 42.0148H135C133.895 42.0148 133 42.9168 133 44.0296V58.1331C133 59.2458 133.895 60.1478 135 60.1478H137.658ZM149 62.1626V65.1848C149 66.2975 149.895 67.1996 151 67.1996H157.586L159.5 69.2756L161.414 67.1996H163C164.105 67.1996 165 66.2975 165 65.1848V59.1404C165 58.0277 164.105 57.1257 163 57.1257H161V58.1331C161 60.3585 159.209 62.1626 157 62.1626H149Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M125.436 93.4688V102H124.305V93.4688H125.436ZM129.01 97.3066V98.2324H125.189V97.3066H129.01ZM129.59 93.4688V94.3945H125.189V93.4688H129.59ZM133.275 102.117C132.834 102.117 132.434 102.043 132.074 101.895C131.719 101.742 131.412 101.529 131.154 101.256C130.9 100.982 130.705 100.658 130.568 100.283C130.432 99.9082 130.363 99.498 130.363 99.0527V98.8066C130.363 98.291 130.439 97.832 130.592 97.4297C130.744 97.0234 130.951 96.6797 131.213 96.3984C131.475 96.1172 131.771 95.9043 132.104 95.7598C132.436 95.6152 132.779 95.543 133.135 95.543C133.588 95.543 133.979 95.6211 134.307 95.7773C134.639 95.9336 134.91 96.1523 135.121 96.4336C135.332 96.7109 135.488 97.0391 135.59 97.418C135.691 97.793 135.742 98.2031 135.742 98.6484V99.1348H131.008V98.25H134.658V98.168C134.643 97.8867 134.584 97.6133 134.482 97.3477C134.385 97.082 134.229 96.8633 134.014 96.6914C133.799 96.5195 133.506 96.4336 133.135 96.4336C132.889 96.4336 132.662 96.4863 132.455 96.5918C132.248 96.6934 132.07 96.8457 131.922 97.0488C131.773 97.252 131.658 97.5 131.576 97.793C131.494 98.0859 131.453 98.4238 131.453 98.8066V99.0527C131.453 99.3535 131.494 99.6367 131.576 99.9023C131.662 100.164 131.785 100.395 131.945 100.594C132.109 100.793 132.307 100.949 132.537 101.062C132.771 101.176 133.037 101.232 133.334 101.232C133.717 101.232 134.041 101.154 134.307 100.998C134.572 100.842 134.805 100.633 135.004 100.371L135.66 100.893C135.523 101.1 135.35 101.297 135.139 101.484C134.928 101.672 134.668 101.824 134.359 101.941C134.055 102.059 133.693 102.117 133.275 102.117ZM139.639 102.117C139.197 102.117 138.797 102.043 138.438 101.895C138.082 101.742 137.775 101.529 137.518 101.256C137.264 100.982 137.068 100.658 136.932 100.283C136.795 99.9082 136.727 99.498 136.727 99.0527V98.8066C136.727 98.291 136.803 97.832 136.955 97.4297C137.107 97.0234 137.314 96.6797 137.576 96.3984C137.838 96.1172 138.135 95.9043 138.467 95.7598C138.799 95.6152 139.143 95.543 139.498 95.543C139.951 95.543 140.342 95.6211 140.67 95.7773C141.002 95.9336 141.273 96.1523 141.484 96.4336C141.695 96.7109 141.852 97.0391 141.953 97.418C142.055 97.793 142.105 98.2031 142.105 98.6484V99.1348H137.371V98.25H141.021V98.168C141.006 97.8867 140.947 97.6133 140.846 97.3477C140.748 97.082 140.592 96.8633 140.377 96.6914C140.162 96.5195 139.869 96.4336 139.498 96.4336C139.252 96.4336 139.025 96.4863 138.818 96.5918C138.611 96.6934 138.434 96.8457 138.285 97.0488C138.137 97.252 138.021 97.5 137.939 97.793C137.857 98.0859 137.816 98.4238 137.816 98.8066V99.0527C137.816 99.3535 137.857 99.6367 137.939 99.9023C138.025 100.164 138.148 100.395 138.309 100.594C138.473 100.793 138.67 100.949 138.9 101.062C139.135 101.176 139.4 101.232 139.697 101.232C140.08 101.232 140.404 101.154 140.67 100.998C140.936 100.842 141.168 100.633 141.367 100.371L142.023 100.893C141.887 101.1 141.713 101.297 141.502 101.484C141.291 101.672 141.031 101.824 140.723 101.941C140.418 102.059 140.057 102.117 139.639 102.117ZM147.367 100.77V93H148.457V102H147.461L147.367 100.77ZM143.102 98.9004V98.7773C143.102 98.293 143.16 97.8535 143.277 97.459C143.398 97.0605 143.568 96.7188 143.787 96.4336C144.01 96.1484 144.273 95.9297 144.578 95.7773C144.887 95.6211 145.23 95.543 145.609 95.543C146.008 95.543 146.355 95.6133 146.652 95.7539C146.953 95.8906 147.207 96.0918 147.414 96.3574C147.625 96.6191 147.791 96.9355 147.912 97.3066C148.033 97.6777 148.117 98.0977 148.164 98.5664V99.1055C148.121 99.5703 148.037 99.9883 147.912 100.359C147.791 100.73 147.625 101.047 147.414 101.309C147.207 101.57 146.953 101.771 146.652 101.912C146.352 102.049 146 102.117 145.598 102.117C145.227 102.117 144.887 102.037 144.578 101.877C144.273 101.717 144.01 101.492 143.787 101.203C143.568 100.914 143.398 100.574 143.277 100.184C143.16 99.7891 143.102 99.3613 143.102 98.9004ZM144.191 98.7773V98.9004C144.191 99.2168 144.223 99.5137 144.285 99.791C144.352 100.068 144.453 100.312 144.59 100.523C144.727 100.734 144.9 100.9 145.111 101.021C145.322 101.139 145.574 101.197 145.867 101.197C146.227 101.197 146.521 101.121 146.752 100.969C146.986 100.816 147.174 100.615 147.314 100.365C147.455 100.115 147.564 99.8438 147.643 99.5508V98.1387C147.596 97.9238 147.527 97.7168 147.438 97.5176C147.352 97.3145 147.238 97.1348 147.098 96.9785C146.961 96.8184 146.791 96.6914 146.588 96.5977C146.389 96.5039 146.152 96.457 145.879 96.457C145.582 96.457 145.326 96.5195 145.111 96.6445C144.9 96.7656 144.727 96.9336 144.59 97.1484C144.453 97.3594 144.352 97.6055 144.285 97.8867C144.223 98.1641 144.191 98.4609 144.191 98.7773ZM153.35 98.0098H151.188L151.176 97.1016H153.139C153.463 97.1016 153.746 97.0469 153.988 96.9375C154.23 96.8281 154.418 96.6719 154.551 96.4688C154.688 96.2617 154.756 96.0156 154.756 95.7305C154.756 95.418 154.695 95.1641 154.574 94.9688C154.457 94.7695 154.275 94.625 154.029 94.5352C153.787 94.4414 153.479 94.3945 153.104 94.3945H151.439V102H150.309V93.4688H153.104C153.541 93.4688 153.932 93.5137 154.275 93.6035C154.619 93.6895 154.91 93.8262 155.148 94.0137C155.391 94.1973 155.574 94.4316 155.699 94.7168C155.824 95.002 155.887 95.3438 155.887 95.7422C155.887 96.0938 155.797 96.4121 155.617 96.6973C155.438 96.9785 155.188 97.209 154.867 97.3887C154.551 97.5684 154.18 97.6836 153.754 97.7344L153.35 98.0098ZM153.297 102H150.742L151.381 101.08H153.297C153.656 101.08 153.961 101.018 154.211 100.893C154.465 100.768 154.658 100.592 154.791 100.365C154.924 100.135 154.99 99.8633 154.99 99.5508C154.99 99.2344 154.934 98.9609 154.82 98.7305C154.707 98.5 154.529 98.3223 154.287 98.1973C154.045 98.0723 153.732 98.0098 153.35 98.0098H151.738L151.75 97.1016H153.953L154.193 97.4297C154.604 97.4648 154.951 97.582 155.236 97.7812C155.521 97.9766 155.738 98.2266 155.887 98.5312C156.039 98.8359 156.115 99.1719 156.115 99.5391C156.115 100.07 155.998 100.52 155.764 100.887C155.533 101.25 155.207 101.527 154.785 101.719C154.363 101.906 153.867 102 153.297 102ZM161.359 100.916V97.6523C161.359 97.4023 161.309 97.1855 161.207 97.002C161.109 96.8145 160.961 96.6699 160.762 96.5684C160.562 96.4668 160.316 96.416 160.023 96.416C159.75 96.416 159.51 96.4629 159.303 96.5566C159.1 96.6504 158.939 96.7734 158.822 96.9258C158.709 97.0781 158.652 97.2422 158.652 97.418H157.568C157.568 97.1914 157.627 96.9668 157.744 96.7441C157.861 96.5215 158.029 96.3203 158.248 96.1406C158.471 95.957 158.736 95.8125 159.045 95.707C159.357 95.5977 159.705 95.543 160.088 95.543C160.549 95.543 160.955 95.6211 161.307 95.7773C161.662 95.9336 161.939 96.1699 162.139 96.4863C162.342 96.7988 162.443 97.1914 162.443 97.6641V100.617C162.443 100.828 162.461 101.053 162.496 101.291C162.535 101.529 162.592 101.734 162.666 101.906V102H161.535C161.48 101.875 161.438 101.709 161.406 101.502C161.375 101.291 161.359 101.096 161.359 100.916ZM161.547 98.1562L161.559 98.918H160.463C160.154 98.918 159.879 98.9434 159.637 98.9941C159.395 99.041 159.191 99.1133 159.027 99.2109C158.863 99.3086 158.738 99.4316 158.652 99.5801C158.566 99.7246 158.523 99.8945 158.523 100.09C158.523 100.289 158.568 100.471 158.658 100.635C158.748 100.799 158.883 100.93 159.062 101.027C159.246 101.121 159.471 101.168 159.736 101.168C160.068 101.168 160.361 101.098 160.615 100.957C160.869 100.816 161.07 100.645 161.219 100.441C161.371 100.238 161.453 100.041 161.465 99.8496L161.928 100.371C161.9 100.535 161.826 100.717 161.705 100.916C161.584 101.115 161.422 101.307 161.219 101.49C161.02 101.67 160.781 101.82 160.504 101.941C160.23 102.059 159.922 102.117 159.578 102.117C159.148 102.117 158.771 102.033 158.447 101.865C158.127 101.697 157.877 101.473 157.697 101.191C157.521 100.906 157.434 100.588 157.434 100.236C157.434 99.8965 157.5 99.5977 157.633 99.3398C157.766 99.0781 157.957 98.8613 158.207 98.6895C158.457 98.5137 158.758 98.3809 159.109 98.291C159.461 98.2012 159.854 98.1562 160.287 98.1562H161.547ZM166.686 101.227C166.943 101.227 167.182 101.174 167.4 101.068C167.619 100.963 167.799 100.818 167.939 100.635C168.08 100.447 168.16 100.234 168.18 99.9961H169.211C169.191 100.371 169.064 100.721 168.83 101.045C168.6 101.365 168.297 101.625 167.922 101.824C167.547 102.02 167.135 102.117 166.686 102.117C166.209 102.117 165.793 102.033 165.438 101.865C165.086 101.697 164.793 101.467 164.559 101.174C164.328 100.881 164.154 100.545 164.037 100.166C163.924 99.7832 163.867 99.3789 163.867 98.9531V98.707C163.867 98.2812 163.924 97.8789 164.037 97.5C164.154 97.1172 164.328 96.7793 164.559 96.4863C164.793 96.1934 165.086 95.9629 165.438 95.7949C165.793 95.627 166.209 95.543 166.686 95.543C167.182 95.543 167.615 95.6445 167.986 95.8477C168.357 96.0469 168.648 96.3203 168.859 96.668C169.074 97.0117 169.191 97.4023 169.211 97.8398H168.18C168.16 97.5781 168.086 97.3418 167.957 97.1309C167.832 96.9199 167.66 96.752 167.441 96.627C167.227 96.498 166.975 96.4336 166.686 96.4336C166.354 96.4336 166.074 96.5 165.848 96.6328C165.625 96.7617 165.447 96.9375 165.314 97.1602C165.186 97.3789 165.092 97.623 165.033 97.8926C164.979 98.1582 164.951 98.4297 164.951 98.707V98.9531C164.951 99.2305 164.979 99.5039 165.033 99.7734C165.088 100.043 165.18 100.287 165.309 100.506C165.441 100.725 165.619 100.9 165.842 101.033C166.068 101.162 166.35 101.227 166.686 101.227ZM171.52 93V102H170.43V93H171.52ZM175.393 95.6602L172.627 98.6191L171.08 100.225L170.992 99.0703L172.1 97.7461L174.068 95.6602H175.393ZM174.402 102L172.141 98.9766L172.703 98.0098L175.68 102H174.402Z",fill:"#0F172A"}),(0,n.createElement)("rect",{x:"113",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"119",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"200",y:"12",width:"86",height:"120",rx:"4",fill:"white"}),(0,n.createElement)("rect",{x:"213",y:"25",width:"60",height:"60",rx:"4",fill:"#F1F5F9"}),(0,n.createElement)("path",{d:"M231 46.0074C231 45.451 231.448 45 232 45H246C246.552 45 247 45.451 247 46.0074C247 46.5638 246.552 47.0148 246 47.0148H232C231.448 47.0148 231 46.5638 231 46.0074Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M232 49.0296C231.448 49.0296 231 49.4806 231 50.037C231 50.5933 231.448 51.0444 232 51.0444H246C246.552 51.0444 247 50.5933 247 50.037C247 49.4806 246.552 49.0296 246 49.0296H232Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M232 53.0591C231.448 53.0591 231 53.5102 231 54.0665C231 54.6229 231.448 55.0739 232 55.0739H241C241.552 55.0739 242 54.6229 242 54.0665C242 53.5102 241.552 53.0591 241 53.0591H232Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M231 57.9926C231 57.4362 231.448 56.9852 232 56.9852H238C238.552 56.9852 239 57.4362 239 57.9926C239 58.549 238.552 59 238 59H232C231.448 59 231 58.549 231 57.9926Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M249 59C249 58.4477 249.448 58 250 58C250.552 58 251 58.4477 251 59V61H253C253.552 61 254 61.4477 254 62C254 62.5523 253.552 63 253 63H251V65C251 65.5523 250.552 66 250 66C249.448 66 249 65.5523 249 65V63H247C246.448 63 246 62.5523 246 62C246 61.4477 246.448 61 247 61H249V59Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M251 43V53.0549C255.5 53.5524 259 57.3674 259 62C259 66.9706 254.971 71 250 71C247.857 71 245.888 70.2508 244.343 69H231C228.791 69 227 67.2091 227 65V43C227 40.7909 228.791 39 231 39H247C249.209 39 251 40.7909 251 43ZM231 41H247C248.105 41 249 41.8954 249 43V53.0549C244.5 53.5524 241 57.3674 241 62C241 63.8501 241.558 65.5699 242.516 67H231C229.895 67 229 66.1046 229 65V43C229 41.8954 229.895 41 231 41ZM257 62C257 65.866 253.866 69 250 69C246.134 69 243 65.866 243 62C243 58.134 246.134 55 250 55C253.866 55 257 58.134 257 62Z",fill:"#CBD5E1"}),(0,n.createElement)("path",{d:"M216.611 93.4688V102H215.48V93.4688H216.611ZM219.588 97.0137V102H218.504V95.6602H219.529L219.588 97.0137ZM219.33 98.5898L218.879 98.5723C218.883 98.1387 218.947 97.7383 219.072 97.3711C219.197 97 219.373 96.6777 219.6 96.4043C219.826 96.1309 220.096 95.9199 220.408 95.7715C220.725 95.6191 221.074 95.543 221.457 95.543C221.77 95.543 222.051 95.5859 222.301 95.6719C222.551 95.7539 222.764 95.8867 222.939 96.0703C223.119 96.2539 223.256 96.4922 223.35 96.7852C223.443 97.0742 223.49 97.4277 223.49 97.8457V102H222.4V97.834C222.4 97.502 222.352 97.2363 222.254 97.0371C222.156 96.834 222.014 96.6875 221.826 96.5977C221.639 96.5039 221.408 96.457 221.135 96.457C220.865 96.457 220.619 96.5137 220.396 96.627C220.178 96.7402 219.988 96.8965 219.828 97.0957C219.672 97.2949 219.549 97.5234 219.459 97.7812C219.373 98.0352 219.33 98.3047 219.33 98.5898ZM228.828 100.318C228.828 100.162 228.793 100.018 228.723 99.8848C228.656 99.748 228.518 99.625 228.307 99.5156C228.1 99.4023 227.787 99.3047 227.369 99.2227C227.018 99.1484 226.699 99.0605 226.414 98.959C226.133 98.8574 225.893 98.7344 225.693 98.5898C225.498 98.4453 225.348 98.2754 225.242 98.0801C225.137 97.8848 225.084 97.6562 225.084 97.3945C225.084 97.1445 225.139 96.9082 225.248 96.6855C225.361 96.4629 225.52 96.2656 225.723 96.0938C225.93 95.9219 226.178 95.7871 226.467 95.6895C226.756 95.5918 227.078 95.543 227.434 95.543C227.941 95.543 228.375 95.6328 228.734 95.8125C229.094 95.9922 229.369 96.2324 229.561 96.5332C229.752 96.8301 229.848 97.1602 229.848 97.5234H228.764C228.764 97.3477 228.711 97.1777 228.605 97.0137C228.504 96.8457 228.354 96.707 228.154 96.5977C227.959 96.4883 227.719 96.4336 227.434 96.4336C227.133 96.4336 226.889 96.4805 226.701 96.5742C226.518 96.6641 226.383 96.7793 226.297 96.9199C226.215 97.0605 226.174 97.209 226.174 97.3652C226.174 97.4824 226.193 97.5879 226.232 97.6816C226.275 97.7715 226.35 97.8555 226.455 97.9336C226.561 98.0078 226.709 98.0781 226.9 98.1445C227.092 98.2109 227.336 98.2773 227.633 98.3438C228.152 98.4609 228.58 98.6016 228.916 98.7656C229.252 98.9297 229.502 99.1309 229.666 99.3691C229.83 99.6074 229.912 99.8965 229.912 100.236C229.912 100.514 229.854 100.768 229.736 100.998C229.623 101.229 229.457 101.428 229.238 101.596C229.023 101.76 228.766 101.889 228.465 101.982C228.168 102.072 227.834 102.117 227.463 102.117C226.904 102.117 226.432 102.018 226.045 101.818C225.658 101.619 225.365 101.361 225.166 101.045C224.967 100.729 224.867 100.395 224.867 100.043H225.957C225.973 100.34 226.059 100.576 226.215 100.752C226.371 100.924 226.562 101.047 226.789 101.121C227.016 101.191 227.24 101.227 227.463 101.227C227.76 101.227 228.008 101.188 228.207 101.109C228.41 101.031 228.564 100.924 228.67 100.787C228.775 100.65 228.828 100.494 228.828 100.318ZM233.967 102.117C233.525 102.117 233.125 102.043 232.766 101.895C232.41 101.742 232.104 101.529 231.846 101.256C231.592 100.982 231.396 100.658 231.26 100.283C231.123 99.9082 231.055 99.498 231.055 99.0527V98.8066C231.055 98.291 231.131 97.832 231.283 97.4297C231.436 97.0234 231.643 96.6797 231.904 96.3984C232.166 96.1172 232.463 95.9043 232.795 95.7598C233.127 95.6152 233.471 95.543 233.826 95.543C234.279 95.543 234.67 95.6211 234.998 95.7773C235.33 95.9336 235.602 96.1523 235.812 96.4336C236.023 96.7109 236.18 97.0391 236.281 97.418C236.383 97.793 236.434 98.2031 236.434 98.6484V99.1348H231.699V98.25H235.35V98.168C235.334 97.8867 235.275 97.6133 235.174 97.3477C235.076 97.082 234.92 96.8633 234.705 96.6914C234.49 96.5195 234.197 96.4336 233.826 96.4336C233.58 96.4336 233.354 96.4863 233.146 96.5918C232.939 96.6934 232.762 96.8457 232.613 97.0488C232.465 97.252 232.35 97.5 232.268 97.793C232.186 98.0859 232.145 98.4238 232.145 98.8066V99.0527C232.145 99.3535 232.186 99.6367 232.268 99.9023C232.354 100.164 232.477 100.395 232.637 100.594C232.801 100.793 232.998 100.949 233.229 101.062C233.463 101.176 233.729 101.232 234.025 101.232C234.408 101.232 234.732 101.154 234.998 100.998C235.264 100.842 235.496 100.633 235.695 100.371L236.352 100.893C236.215 101.1 236.041 101.297 235.83 101.484C235.619 101.672 235.359 101.824 235.051 101.941C234.746 102.059 234.385 102.117 233.967 102.117ZM238.783 96.6562V102H237.699V95.6602H238.754L238.783 96.6562ZM240.764 95.625L240.758 96.6328C240.668 96.6133 240.582 96.6016 240.5 96.5977C240.422 96.5898 240.332 96.5859 240.23 96.5859C239.98 96.5859 239.76 96.625 239.568 96.7031C239.377 96.7812 239.215 96.8906 239.082 97.0312C238.949 97.1719 238.844 97.3398 238.766 97.5352C238.691 97.7266 238.643 97.9375 238.619 98.168L238.314 98.3438C238.314 97.9609 238.352 97.6016 238.426 97.2656C238.504 96.9297 238.623 96.6328 238.783 96.375C238.943 96.1133 239.146 95.9102 239.393 95.7656C239.643 95.6172 239.939 95.543 240.283 95.543C240.361 95.543 240.451 95.5527 240.553 95.5723C240.654 95.5879 240.725 95.6055 240.764 95.625ZM244.713 95.6602V96.4922H241.285V95.6602H244.713ZM242.445 94.1191H243.529V100.43C243.529 100.645 243.562 100.807 243.629 100.916C243.695 101.025 243.781 101.098 243.887 101.133C243.992 101.168 244.105 101.186 244.227 101.186C244.316 101.186 244.41 101.178 244.508 101.162C244.609 101.143 244.686 101.127 244.736 101.115L244.742 102C244.656 102.027 244.543 102.053 244.402 102.076C244.266 102.104 244.1 102.117 243.904 102.117C243.639 102.117 243.395 102.064 243.172 101.959C242.949 101.854 242.771 101.678 242.639 101.432C242.51 101.182 242.445 100.846 242.445 100.424V94.1191ZM252.271 98.6543H249.992V97.7344H252.271C252.713 97.7344 253.07 97.6641 253.344 97.5234C253.617 97.3828 253.816 97.1875 253.941 96.9375C254.07 96.6875 254.135 96.4023 254.135 96.082C254.135 95.7891 254.07 95.5137 253.941 95.2559C253.816 94.998 253.617 94.791 253.344 94.6348C253.07 94.4746 252.713 94.3945 252.271 94.3945H250.256V102H249.125V93.4688H252.271C252.916 93.4688 253.461 93.5801 253.906 93.8027C254.352 94.0254 254.689 94.334 254.92 94.7285C255.15 95.1191 255.266 95.5664 255.266 96.0703C255.266 96.6172 255.15 97.084 254.92 97.4707C254.689 97.8574 254.352 98.1523 253.906 98.3555C253.461 98.5547 252.916 98.6543 252.271 98.6543ZM256.162 98.9004V98.7656C256.162 98.3086 256.229 97.8848 256.361 97.4941C256.494 97.0996 256.686 96.7578 256.936 96.4688C257.186 96.1758 257.488 95.9492 257.844 95.7891C258.199 95.625 258.598 95.543 259.039 95.543C259.484 95.543 259.885 95.625 260.24 95.7891C260.6 95.9492 260.904 96.1758 261.154 96.4688C261.408 96.7578 261.602 97.0996 261.734 97.4941C261.867 97.8848 261.934 98.3086 261.934 98.7656V98.9004C261.934 99.3574 261.867 99.7812 261.734 100.172C261.602 100.562 261.408 100.904 261.154 101.197C260.904 101.486 260.602 101.713 260.246 101.877C259.895 102.037 259.496 102.117 259.051 102.117C258.605 102.117 258.205 102.037 257.85 101.877C257.494 101.713 257.189 101.486 256.936 101.197C256.686 100.904 256.494 100.562 256.361 100.172C256.229 99.7812 256.162 99.3574 256.162 98.9004ZM257.246 98.7656V98.9004C257.246 99.2168 257.283 99.5156 257.357 99.7969C257.432 100.074 257.543 100.32 257.691 100.535C257.844 100.75 258.033 100.92 258.26 101.045C258.486 101.166 258.75 101.227 259.051 101.227C259.348 101.227 259.607 101.166 259.83 101.045C260.057 100.92 260.244 100.75 260.393 100.535C260.541 100.32 260.652 100.074 260.727 99.7969C260.805 99.5156 260.844 99.2168 260.844 98.9004V98.7656C260.844 98.4531 260.805 98.1582 260.727 97.8809C260.652 97.5996 260.539 97.3516 260.387 97.1367C260.238 96.918 260.051 96.7461 259.824 96.6211C259.602 96.4961 259.34 96.4336 259.039 96.4336C258.742 96.4336 258.48 96.4961 258.254 96.6211C258.031 96.7461 257.844 96.918 257.691 97.1367C257.543 97.3516 257.432 97.5996 257.357 97.8809C257.283 98.1582 257.246 98.4531 257.246 98.7656ZM266.984 100.318C266.984 100.162 266.949 100.018 266.879 99.8848C266.812 99.748 266.674 99.625 266.463 99.5156C266.256 99.4023 265.943 99.3047 265.525 99.2227C265.174 99.1484 264.855 99.0605 264.57 98.959C264.289 98.8574 264.049 98.7344 263.85 98.5898C263.654 98.4453 263.504 98.2754 263.398 98.0801C263.293 97.8848 263.24 97.6562 263.24 97.3945C263.24 97.1445 263.295 96.9082 263.404 96.6855C263.518 96.4629 263.676 96.2656 263.879 96.0938C264.086 95.9219 264.334 95.7871 264.623 95.6895C264.912 95.5918 265.234 95.543 265.59 95.543C266.098 95.543 266.531 95.6328 266.891 95.8125C267.25 95.9922 267.525 96.2324 267.717 96.5332C267.908 96.8301 268.004 97.1602 268.004 97.5234H266.92C266.92 97.3477 266.867 97.1777 266.762 97.0137C266.66 96.8457 266.51 96.707 266.311 96.5977C266.115 96.4883 265.875 96.4336 265.59 96.4336C265.289 96.4336 265.045 96.4805 264.857 96.5742C264.674 96.6641 264.539 96.7793 264.453 96.9199C264.371 97.0605 264.33 97.209 264.33 97.3652C264.33 97.4824 264.35 97.5879 264.389 97.6816C264.432 97.7715 264.506 97.8555 264.611 97.9336C264.717 98.0078 264.865 98.0781 265.057 98.1445C265.248 98.2109 265.492 98.2773 265.789 98.3438C266.309 98.4609 266.736 98.6016 267.072 98.7656C267.408 98.9297 267.658 99.1309 267.822 99.3691C267.986 99.6074 268.068 99.8965 268.068 100.236C268.068 100.514 268.01 100.768 267.893 100.998C267.779 101.229 267.613 101.428 267.395 101.596C267.18 101.76 266.922 101.889 266.621 101.982C266.324 102.072 265.99 102.117 265.619 102.117C265.061 102.117 264.588 102.018 264.201 101.818C263.814 101.619 263.521 101.361 263.322 101.045C263.123 100.729 263.023 100.395 263.023 100.043H264.113C264.129 100.34 264.215 100.576 264.371 100.752C264.527 100.924 264.719 101.047 264.945 101.121C265.172 101.191 265.396 101.227 265.619 101.227C265.916 101.227 266.164 101.188 266.363 101.109C266.566 101.031 266.721 100.924 266.826 100.787C266.932 100.65 266.984 100.494 266.984 100.318ZM272.146 95.6602V96.4922H268.719V95.6602H272.146ZM269.879 94.1191H270.963V100.43C270.963 100.645 270.996 100.807 271.062 100.916C271.129 101.025 271.215 101.098 271.32 101.133C271.426 101.168 271.539 101.186 271.66 101.186C271.75 101.186 271.844 101.178 271.941 101.162C272.043 101.143 272.119 101.127 272.17 101.115L272.176 102C272.09 102.027 271.977 102.053 271.836 102.076C271.699 102.104 271.533 102.117 271.338 102.117C271.072 102.117 270.828 102.064 270.605 101.959C270.383 101.854 270.205 101.678 270.072 101.432C269.943 101.182 269.879 100.846 269.879 100.424V94.1191Z",fill:"#0F172A"}),(0,n.createElement)("rect",{x:"207",y:"110",width:"70",height:"4",rx:"2",fill:"#CBD5E1"}),(0,n.createElement)("rect",{x:"213",y:"116",width:"58",height:"4",rx:"2",fill:"#CBD5E1"})),{__:l}=wp.i18n,{cloneElement:i,Children:a}=wp.element,{Placeholder:c,Flex:s,ExternalLink:d,Tooltip:u}=wp.components,{useBlockProps:m}=wp.blockEditor,{useSelect:p,useDispatch:f}=wp.data,{PatternInserterButton:h,ToggleControl:H}=JetFBComponents,v=(0,n.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false",style:{color:"rgb(117, 117, 117)"}},(0,n.createElement)("path",{fill:"currentColor",d:"M12 4.75a7.25 7.25 0 100 14.5 7.25 7.25 0 000-14.5zM3.25 12a8.75 8.75 0 1117.5 0 8.75 8.75 0 01-17.5 0zM12 8.75a1.5 1.5 0 01.167 2.99c-.465.052-.917.44-.917 1.01V14h1.5v-.845A3 3 0 109 10.25h1.5a1.5 1.5 0 011.5-1.5zM11.25 15v1.5h1.5V15h-1.5z"})),V=JSON.parse('{"apiVersion":3,"name":"jet-forms/welcome","title":"Welcome","category":"jet-form-builder-elements","icon":"\\n\\n\\n\\n\\n\\n\\n\\n","keywords":["jetformbuilder","start","welcome"],"textdomain":"jet-form-builder","supports":{"customClassName":false,"html":false},"attributes":{}}');var w=t(673),M=t.n(w),b=t(598),g=t.n(b),E=t(262),Z=t.n(E),L=t(657),y=t.n(L),x=t(357),j=t.n(x),k=t(626),_=t.n(k),F=t(363),A={};A.styleTagTransform=_(),A.setAttributes=y(),A.insert=Z().bind(null,"head"),A.domAPI=g(),A.insertStyleElement=j(),M()(F.A,A),F.A&&F.A.locals&&F.A.locals;const{name:B,icon:S}=V,{__:D}=wp.i18n;V.attributes.isPreview={type:"boolean",default:!1};const P={icon:(0,n.createElement)("span",{dangerouslySetInnerHTML:{__html:S}}),description:D("Use the Welcome block to quickly fetch all pre-made Form Patterns, start building from scratch, generate via AI, save form records, etc.","jet-form-builder"),example:{attributes:{isPreview:!0}},edit:function({attributes:e}){const C=m(),t=p(e=>e("jet-forms/patterns").getTypes().map(({view:e,...C})=>(0,n.createElement)(e,{pattern:C})),[]),r=p(e=>e("jet-forms/patterns").getSetting("saveRecord")),{updateSettings:V}=f("jet-forms/patterns");return e.isPreview?(0,n.createElement)("div",{style:{width:"100%",display:"flex",justifyContent:"center"}},o):(console.log(t),(0,n.createElement)("div",{...C},(0,n.createElement)(c,{icon:"admin-tools",label:l("Select form pattern","jet-form-builder"),instructions:l("You can select one of predefined layout, or build custom","jet-form-builder")},(0,n.createElement)("ul",{className:"block-editor-block-variation-picker__variations jet-fb",role:"list","aria-label":l("Form patterns","jet-form-builder")},a.map(t,i)),(0,n.createElement)(s,{className:"block-editor-block-variation-picker__skip",justify:"space-between"},(0,n.createElement)(s,{justify:"flex-start",style:{width:"auto"}},(0,n.createElement)(h,{patternName:"default",variant:"secondary",style:{margin:"unset"}},l("Start from scratch","jet-form-builder")),(0,n.createElement)(d,{href:"https://jetformbuilder.com/features/creating-a-form/"},l("Learn more about creating forms","jet-form-builder"))),(0,n.createElement)("div",{className:"jfb-block-variation-picker-toggle"},(0,n.createElement)(H,{checked:r,onChange:e=>V({saveRecord:e}),flexLabelProps:{align:"center"}},(0,n.createElement)(s,null,l("Save form records","jet-form-builder"),(0,n.createElement)(u,{text:l('Adds "Save Form Record" action to store\n\tall form submissions into database',"jet-form-builder"),delay:200},v))))))))}},T=window.wp.data,R=window.wp.domReady;var I=t.n(R);const N=window.wp.element,O=window.wp.components,z=window.wp.primitives,U=(0,n.createElement)(z.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(z.Path,{d:"M19.5 4.5h-7V6h4.44l-5.97 5.97 1.06 1.06L18 7.06v4.44h1.5v-7Zm-13 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3H17v3a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h3V5.5h-3Z"})),q=window.wp.i18n,J=document.createElement("div");J.classList.add("jfb-preview-wrapper"),(0,N.createRoot)(J).render((0,n.createElement)(function(){const[e,C]=(0,N.useState)(!1),t=(0,T.useSelect)(e=>{const C=e("core/editor");return C.isSavingPost()||C.isAutosavingPost()},[]),{autosave:r}=(0,T.useDispatch)("core/editor"),o=(0,N.useRef)(!1);return(0,N.useEffect)(()=>{e&&(!o.current&&t&&(o.current=!0),o.current&&!t&&(e.location.reload(),o.current=!1))},[t]),(0,n.createElement)(O.Button,{icon:U,onClick:()=>{!e||e?.closed?r().then(()=>{C(window.open(window.JFBOnboardingConfig.previewURL))}):r().finally(()=>{e.focus()})},label:(0,q.__)("Preview the form","jet-form-builder")})},null));I()(()=>{const e=(0,T.subscribe)(()=>function(e){const C=document.querySelector(".edit-post-header__settings, .editor-header__settings");if(!C)return null;e(),C.insertBefore(J,C.querySelector(".editor-post-publish-button__button"))}(e))});const G=window.wp.plugins,W=window.wp.editor,Y=(0,n.createElement)(z.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(z.Path,{d:"M6.6 6L5.4 7l4.5 5-4.5 5 1.1 1 5.5-6-5.4-6zm6 0l-1.1 1 4.5 5-4.5 5 1.1 1 5.5-6-5.5-6z"})),K=window.jfb.useForm,{useMetaState:Q}=JetFBHooks;var X=t(695),$={};$.styleTagTransform=_(),$.setAttributes=y(),$.insert=Z().bind(null,"head"),$.domAPI=g(),$.insertStyleElement=j(),M()(X.A,$),X.A&&X.A.locals&&X.A.locals,(0,G.registerPlugin)("jfb-use-form",{render:function(){const{closeGeneralSidebar:e}=(0,T.useDispatch)("core/edit-post"),C=(0,T.useSelect)(e=>e(W.store).getEditedPostAttribute("id"),[]),[t]=Q("_jf_args");return(0,n.createElement)(W.PluginSidebar,{icon:Y,name:"sidebar",title:(0,q.__)("Use the form","jet-form-builder")},(0,n.createElement)(K.ResponsiveModal,{title:(0,q.__)("Use the form","jet-form-builder"),onRequestClose:e},(0,n.createElement)(K.FormAttributesContext.Provider,{value:{formId:C,args:t,shouldUpdateForm:!0}},(0,n.createElement)(K.UseFormRoot,null))))}}),(0,window.wp.hooks.addFilter)("jet.fb.register.fields","jet-form-builder/welcome-block",function(e){return e.push(r),e})})(); \ No newline at end of file diff --git a/modules/onboarding/assets/build/preview.frontend.asset.php b/modules/onboarding/assets/build/preview.frontend.asset.php index 6b9aa574a..41cf2d78a 100644 --- a/modules/onboarding/assets/build/preview.frontend.asset.php +++ b/modules/onboarding/assets/build/preview.frontend.asset.php @@ -1 +1 @@ - array('react', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => '365094521d4249be810d'); + array('react', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => '199c91a398c07de13c85'); diff --git a/modules/onboarding/assets/build/preview.frontend.js b/modules/onboarding/assets/build/preview.frontend.js index f5f2acd1d..4f42296f2 100644 --- a/modules/onboarding/assets/build/preview.frontend.js +++ b/modules/onboarding/assets/build/preview.frontend.js @@ -1 +1 @@ -(()=>{"use strict";var e={168:e=>{e.exports=function(e){return e[1]}},262:e=>{var t={};e.exports=function(e,r){var n=function(e){if(void 0===t[e]){var r=document.querySelector(e);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(e){r=null}t[e]=r}return t[e]}(e);if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");n.appendChild(r)}},357:e=>{e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},433:e=>{e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r})).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var s=0;s0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=a),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),o&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=o):d[4]="".concat(o)),t.push(d))}},t}},598:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(r){!function(e,t,r){var n="";r.supports&&(n+="@supports (".concat(r.supports,") {")),r.media&&(n+="@media ".concat(r.media," {"));var o=void 0!==r.layer;o&&(n+="@layer".concat(r.layer.length>0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(n,e,t.options)}(t,e,r)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},626:e=>{e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},657:(e,t,r)=>{e.exports=function(e){var t=r.nc;t&&e.setAttribute("nonce",t)}},673:e=>{var t=[];function r(e){for(var r=-1,n=0;n{r.d(t,{A:()=>s});var n=r(168),o=r.n(n),a=r(433),i=r.n(a)()(o());i.push([e.id,"header.page-header,header.entry-header,.jfb-use-form-container{align-items:center;display:flex;justify-content:flex-start;flex-wrap:wrap;gap:2em}header.page-header h1,header.entry-header h1,.jfb-use-form-container h1{flex:0;text-wrap:nowrap}header.page-header .jfb-use-form-wrapper,header.entry-header .jfb-use-form-wrapper,.jfb-use-form-container .jfb-use-form-wrapper{flex:1}",""]);const s=i}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.nc=void 0;const n=window.React,o=window.wp.element,a=window.wp.components,i=window.wp.i18n,s=window.wp.primitives,c=(0,n.createElement)(s.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(s.Path,{d:"M6.6 6L5.4 7l4.5 5-4.5 5 1.1 1 5.5-6-5.4-6zm6 0l-1.1 1 4.5 5-4.5 5 1.1 1 5.5-6-5.5-6z"})),u=window.jfb.useForm,d=window.wp.url,l=window.wp.data,p=+(0,d.getQueryArg)(window.location.href,"p"),f=document.createElement("div");f.classList.add("jfb-use-form-wrapper"),(0,o.createRoot)(f).render((0,n.createElement)((function(){const[e,t]=(0,o.useState)(!1),r=(0,l.useSelect)((e=>{const t=e("core").getEntityRecord("postType","jet-form-builder",p);return t?.meta?JSON.parse(t.meta._jf_args):{}}),[]);return(0,n.createElement)(a.SlotFillProvider,null,(0,n.createElement)(a.Button,{variant:"secondary",icon:c,onClick:()=>t(!0)},(0,i.__)("Use the form","jet-form-builder")),e&&(0,n.createElement)(u.ResponsiveModal,{title:(0,i.__)("Use the form","jet-form-builder"),onRequestClose:()=>t(!1)},(0,n.createElement)(u.FormAttributesContext.Provider,{value:{formId:p,args:r,shouldUpdateForm:!1}},(0,n.createElement)(u.UseFormRoot,null))))}),null));var m=r(673),v=r.n(m),h=r(598),w=r.n(h),y=r(262),b=r.n(y),g=r(657),x=r.n(g),j=r(357),E=r.n(j),S=r(626),A=r.n(S),C=r(996),M={};M.styleTagTransform=A(),M.setAttributes=x(),M.insert=b().bind(null,"head"),M.domAPI=w(),M.insertStyleElement=E(),v()(C.A,M),C.A&&C.A.locals&&C.A.locals;const{addAction:T}=JetPlugins.hooks;T("jet.fb.observe.after","jet-form-builder/use-form",(function(e){if(e.parent)return;const t=e.rootNode.ownerDocument,r=t.querySelector("header.page-header, header.entry-header");if(r)return void r.append(f);const n=t.querySelector(".wp-block-post-title");if(n){const e=document.createElement("div");return e.classList.add("jfb-use-form-container"),n.parentElement.insertBefore(e,n),e.append(n),void e.append(f)}e.rootNode.parentElement.insertBefore(f,e.rootNode)}))})(); \ No newline at end of file +(()=>{"use strict";var e={996(e,t,r){r.d(t,{A:()=>s});var n=r(168),o=r.n(n),a=r(433),i=r.n(a)()(o());i.push([e.id,"header.page-header,header.entry-header,.jfb-use-form-container{align-items:center;display:flex;justify-content:flex-start;flex-wrap:wrap;gap:2em}header.page-header h1,header.entry-header h1,.jfb-use-form-container h1{flex:0;text-wrap:nowrap}header.page-header .jfb-use-form-wrapper,header.entry-header .jfb-use-form-wrapper,.jfb-use-form-container .jfb-use-form-wrapper{flex:1}",""]);const s=i},433(e){e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r}).join("")},t.i=function(e,r,n,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(n)for(var s=0;s0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=a),r&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=r):d[2]=r),o&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=o):d[4]="".concat(o)),t.push(d))}},t}},168(e){e.exports=function(e){return e[1]}},673(e){var t=[];function r(e){for(var r=-1,n=0;n0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var a=r.sourceMap;a&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),t.styleTagTransform(n,e,t.options)}(t,e,r)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},626(e){e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var a=t[n]={id:n,exports:{}};return e[n](a,a.exports,r),a.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.nc=void 0;const n=window.React,o=window.wp.element,a=window.wp.components,i=window.wp.i18n,s=window.wp.primitives,c=(0,n.createElement)(s.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,n.createElement)(s.Path,{d:"M6.6 6L5.4 7l4.5 5-4.5 5 1.1 1 5.5-6-5.4-6zm6 0l-1.1 1 4.5 5-4.5 5 1.1 1 5.5-6-5.5-6z"})),u=window.jfb.useForm,d=window.wp.url,l=window.wp.data,p=+(0,d.getQueryArg)(window.location.href,"p"),f=document.createElement("div");f.classList.add("jfb-use-form-wrapper"),(0,o.createRoot)(f).render((0,n.createElement)(function(){const[e,t]=(0,o.useState)(!1),r=(0,l.useSelect)(e=>{const t=e("core").getEntityRecord("postType","jet-form-builder",p);return t?.meta?JSON.parse(t.meta._jf_args):{}},[]);return(0,n.createElement)(a.SlotFillProvider,null,(0,n.createElement)(a.Button,{variant:"secondary",icon:c,onClick:()=>t(!0)},(0,i.__)("Use the form","jet-form-builder")),e&&(0,n.createElement)(u.ResponsiveModal,{title:(0,i.__)("Use the form","jet-form-builder"),onRequestClose:()=>t(!1)},(0,n.createElement)(u.FormAttributesContext.Provider,{value:{formId:p,args:r,shouldUpdateForm:!1}},(0,n.createElement)(u.UseFormRoot,null))))},null));var m=r(673),v=r.n(m),h=r(598),w=r.n(h),y=r(262),b=r.n(y),g=r(657),x=r.n(g),j=r(357),E=r.n(j),S=r(626),A=r.n(S),C=r(996),M={};M.styleTagTransform=A(),M.setAttributes=x(),M.insert=b().bind(null,"head"),M.domAPI=w(),M.insertStyleElement=E(),v()(C.A,M),C.A&&C.A.locals&&C.A.locals;const{addAction:T}=JetPlugins.hooks;T("jet.fb.observe.after","jet-form-builder/use-form",function(e){if(e.parent)return;const t=e.rootNode.ownerDocument,r=t.querySelector("header.page-header, header.entry-header");if(r)return void r.append(f);const n=t.querySelector(".wp-block-post-title");if(n){const e=document.createElement("div");return e.classList.add("jfb-use-form-container"),n.parentElement.insertBefore(e,n),e.append(n),void e.append(f)}e.rootNode.parentElement.insertBefore(f,e.rootNode)})})(); \ No newline at end of file